This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
abb4f32b0a12e32bb4721e79abb7c7ef68e03281
[perl5.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5  *    and others
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  *
10  */
11
12 /*
13  * 'I wonder what the Entish is for "yes" and "no",' he thought.
14  *                                                      --Pippin
15  *
16  *     [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17  */
18
19 /*
20  *
21  *
22  * This file contains the code that creates, manipulates and destroys
23  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24  * structure of an SV, so their creation and destruction is handled
25  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26  * level functions (eg. substr, split, join) for each of the types are
27  * in the pp*.c files.
28  */
29
30 #include "EXTERN.h"
31 #define PERL_IN_SV_C
32 #include "perl.h"
33 #include "regcomp.h"
34
35 #define FCALL *f
36
37 #ifdef __Lynx__
38 /* Missing proto on LynxOS */
39   char *gconvert(double, int, int,  char *);
40 #endif
41
42 #ifdef PERL_UTF8_CACHE_ASSERT
43 /* if adding more checks watch out for the following tests:
44  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
45  *   lib/utf8.t lib/Unicode/Collate/t/index.t
46  * --jhi
47  */
48 #   define ASSERT_UTF8_CACHE(cache) \
49     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
50                               assert((cache)[2] <= (cache)[3]); \
51                               assert((cache)[3] <= (cache)[1]);} \
52                               } STMT_END
53 #else
54 #   define ASSERT_UTF8_CACHE(cache) NOOP
55 #endif
56
57 #ifdef PERL_OLD_COPY_ON_WRITE
58 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
59 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
60 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
61    on-write.  */
62 #endif
63
64 /* ============================================================================
65
66 =head1 Allocation and deallocation of SVs.
67
68 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
69 sv, av, hv...) contains type and reference count information, and for
70 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
71 contains fields specific to each type.  Some types store all they need
72 in the head, so don't have a body.
73
74 In all but the most memory-paranoid configuations (ex: PURIFY), heads
75 and bodies are allocated out of arenas, which by default are
76 approximately 4K chunks of memory parcelled up into N heads or bodies.
77 Sv-bodies are allocated by their sv-type, guaranteeing size
78 consistency needed to allocate safely from arrays.
79
80 For SV-heads, the first slot in each arena is reserved, and holds a
81 link to the next arena, some flags, and a note of the number of slots.
82 Snaked through each arena chain is a linked list of free items; when
83 this becomes empty, an extra arena is allocated and divided up into N
84 items which are threaded into the free list.
85
86 SV-bodies are similar, but they use arena-sets by default, which
87 separate the link and info from the arena itself, and reclaim the 1st
88 slot in the arena.  SV-bodies are further described later.
89
90 The following global variables are associated with arenas:
91
92     PL_sv_arenaroot     pointer to list of SV arenas
93     PL_sv_root          pointer to list of free SV structures
94
95     PL_body_arenas      head of linked-list of body arenas
96     PL_body_roots[]     array of pointers to list of free bodies of svtype
97                         arrays are indexed by the svtype needed
98
99 A few special SV heads are not allocated from an arena, but are
100 instead directly created in the interpreter structure, eg PL_sv_undef.
101 The size of arenas can be changed from the default by setting
102 PERL_ARENA_SIZE appropriately at compile time.
103
104 The SV arena serves the secondary purpose of allowing still-live SVs
105 to be located and destroyed during final cleanup.
106
107 At the lowest level, the macros new_SV() and del_SV() grab and free
108 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
109 to return the SV to the free list with error checking.) new_SV() calls
110 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
111 SVs in the free list have their SvTYPE field set to all ones.
112
113 At the time of very final cleanup, sv_free_arenas() is called from
114 perl_destruct() to physically free all the arenas allocated since the
115 start of the interpreter.
116
117 The function visit() scans the SV arenas list, and calls a specified
118 function for each SV it finds which is still live - ie which has an SvTYPE
119 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
120 following functions (specified as [function that calls visit()] / [function
121 called by visit() for each SV]):
122
123     sv_report_used() / do_report_used()
124                         dump all remaining SVs (debugging aid)
125
126     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
127                       do_clean_named_io_objs()
128                         Attempt to free all objects pointed to by RVs,
129                         and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
130                         try to do the same for all objects indirectly
131                         referenced by typeglobs too.  Called once from
132                         perl_destruct(), prior to calling sv_clean_all()
133                         below.
134
135     sv_clean_all() / do_clean_all()
136                         SvREFCNT_dec(sv) each remaining SV, possibly
137                         triggering an sv_free(). It also sets the
138                         SVf_BREAK flag on the SV to indicate that the
139                         refcnt has been artificially lowered, and thus
140                         stopping sv_free() from giving spurious warnings
141                         about SVs which unexpectedly have a refcnt
142                         of zero.  called repeatedly from perl_destruct()
143                         until there are no SVs left.
144
145 =head2 Arena allocator API Summary
146
147 Private API to rest of sv.c
148
149     new_SV(),  del_SV(),
150
151     new_XPVNV(), del_XPVGV(),
152     etc
153
154 Public API:
155
156     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
157
158 =cut
159
160  * ========================================================================= */
161
162 /*
163  * "A time to plant, and a time to uproot what was planted..."
164  */
165
166 #ifdef PERL_MEM_LOG
167 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
168             Perl_mem_log_new_sv(sv, file, line, func)
169 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
170             Perl_mem_log_del_sv(sv, file, line, func)
171 #else
172 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
173 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
174 #endif
175
176 #ifdef DEBUG_LEAKING_SCALARS
177 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
178 #  define DEBUG_SV_SERIAL(sv)                                               \
179     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
180             PTR2UV(sv), (long)(sv)->sv_debug_serial))
181 #else
182 #  define FREE_SV_DEBUG_FILE(sv)
183 #  define DEBUG_SV_SERIAL(sv)   NOOP
184 #endif
185
186 #ifdef PERL_POISON
187 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
188 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
189 /* Whilst I'd love to do this, it seems that things like to check on
190    unreferenced scalars
191 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
192 */
193 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
194                                 PoisonNew(&SvREFCNT(sv), 1, U32)
195 #else
196 #  define SvARENA_CHAIN(sv)     SvANY(sv)
197 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
198 #  define POSION_SV_HEAD(sv)
199 #endif
200
201 /* Mark an SV head as unused, and add to free list.
202  *
203  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
204  * its refcount artificially decremented during global destruction, so
205  * there may be dangling pointers to it. The last thing we want in that
206  * case is for it to be reused. */
207
208 #define plant_SV(p) \
209     STMT_START {                                        \
210         const U32 old_flags = SvFLAGS(p);                       \
211         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
212         DEBUG_SV_SERIAL(p);                             \
213         FREE_SV_DEBUG_FILE(p);                          \
214         POSION_SV_HEAD(p);                              \
215         SvFLAGS(p) = SVTYPEMASK;                        \
216         if (!(old_flags & SVf_BREAK)) {         \
217             SvARENA_CHAIN_SET(p, PL_sv_root);   \
218             PL_sv_root = (p);                           \
219         }                                               \
220         --PL_sv_count;                                  \
221     } STMT_END
222
223 #define uproot_SV(p) \
224     STMT_START {                                        \
225         (p) = PL_sv_root;                               \
226         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
227         ++PL_sv_count;                                  \
228     } STMT_END
229
230
231 /* make some more SVs by adding another arena */
232
233 STATIC SV*
234 S_more_sv(pTHX)
235 {
236     dVAR;
237     SV* sv;
238     char *chunk;                /* must use New here to match call to */
239     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
240     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
241     uproot_SV(sv);
242     return sv;
243 }
244
245 /* new_SV(): return a new, empty SV head */
246
247 #ifdef DEBUG_LEAKING_SCALARS
248 /* provide a real function for a debugger to play with */
249 STATIC SV*
250 S_new_SV(pTHX_ const char *file, int line, const char *func)
251 {
252     SV* sv;
253
254     if (PL_sv_root)
255         uproot_SV(sv);
256     else
257         sv = S_more_sv(aTHX);
258     SvANY(sv) = 0;
259     SvREFCNT(sv) = 1;
260     SvFLAGS(sv) = 0;
261     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
262     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
263                 ? PL_parser->copline
264                 :  PL_curcop
265                     ? CopLINE(PL_curcop)
266                     : 0
267             );
268     sv->sv_debug_inpad = 0;
269     sv->sv_debug_parent = NULL;
270     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
271
272     sv->sv_debug_serial = PL_sv_serial++;
273
274     MEM_LOG_NEW_SV(sv, file, line, func);
275     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
276             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
277
278     return sv;
279 }
280 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
281
282 #else
283 #  define new_SV(p) \
284     STMT_START {                                        \
285         if (PL_sv_root)                                 \
286             uproot_SV(p);                               \
287         else                                            \
288             (p) = S_more_sv(aTHX);                      \
289         SvANY(p) = 0;                                   \
290         SvREFCNT(p) = 1;                                \
291         SvFLAGS(p) = 0;                                 \
292         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
293     } STMT_END
294 #endif
295
296
297 /* del_SV(): return an empty SV head to the free list */
298
299 #ifdef DEBUGGING
300
301 #define del_SV(p) \
302     STMT_START {                                        \
303         if (DEBUG_D_TEST)                               \
304             del_sv(p);                                  \
305         else                                            \
306             plant_SV(p);                                \
307     } STMT_END
308
309 STATIC void
310 S_del_sv(pTHX_ SV *p)
311 {
312     dVAR;
313
314     PERL_ARGS_ASSERT_DEL_SV;
315
316     if (DEBUG_D_TEST) {
317         SV* sva;
318         bool ok = 0;
319         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
320             const SV * const sv = sva + 1;
321             const SV * const svend = &sva[SvREFCNT(sva)];
322             if (p >= sv && p < svend) {
323                 ok = 1;
324                 break;
325             }
326         }
327         if (!ok) {
328             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
329                              "Attempt to free non-arena SV: 0x%"UVxf
330                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
331             return;
332         }
333     }
334     plant_SV(p);
335 }
336
337 #else /* ! DEBUGGING */
338
339 #define del_SV(p)   plant_SV(p)
340
341 #endif /* DEBUGGING */
342
343
344 /*
345 =head1 SV Manipulation Functions
346
347 =for apidoc sv_add_arena
348
349 Given a chunk of memory, link it to the head of the list of arenas,
350 and split it into a list of free SVs.
351
352 =cut
353 */
354
355 static void
356 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
357 {
358     dVAR;
359     SV *const sva = MUTABLE_SV(ptr);
360     register SV* sv;
361     register SV* svend;
362
363     PERL_ARGS_ASSERT_SV_ADD_ARENA;
364
365     /* The first SV in an arena isn't an SV. */
366     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
367     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
368     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
369
370     PL_sv_arenaroot = sva;
371     PL_sv_root = sva + 1;
372
373     svend = &sva[SvREFCNT(sva) - 1];
374     sv = sva + 1;
375     while (sv < svend) {
376         SvARENA_CHAIN_SET(sv, (sv + 1));
377 #ifdef DEBUGGING
378         SvREFCNT(sv) = 0;
379 #endif
380         /* Must always set typemask because it's always checked in on cleanup
381            when the arenas are walked looking for objects.  */
382         SvFLAGS(sv) = SVTYPEMASK;
383         sv++;
384     }
385     SvARENA_CHAIN_SET(sv, 0);
386 #ifdef DEBUGGING
387     SvREFCNT(sv) = 0;
388 #endif
389     SvFLAGS(sv) = SVTYPEMASK;
390 }
391
392 /* visit(): call the named function for each non-free SV in the arenas
393  * whose flags field matches the flags/mask args. */
394
395 STATIC I32
396 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
397 {
398     dVAR;
399     SV* sva;
400     I32 visited = 0;
401
402     PERL_ARGS_ASSERT_VISIT;
403
404     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
405         register const SV * const svend = &sva[SvREFCNT(sva)];
406         register SV* sv;
407         for (sv = sva + 1; sv < svend; ++sv) {
408             if (SvTYPE(sv) != SVTYPEMASK
409                     && (sv->sv_flags & mask) == flags
410                     && SvREFCNT(sv))
411             {
412                 (FCALL)(aTHX_ sv);
413                 ++visited;
414             }
415         }
416     }
417     return visited;
418 }
419
420 #ifdef DEBUGGING
421
422 /* called by sv_report_used() for each live SV */
423
424 static void
425 do_report_used(pTHX_ SV *const sv)
426 {
427     if (SvTYPE(sv) != SVTYPEMASK) {
428         PerlIO_printf(Perl_debug_log, "****\n");
429         sv_dump(sv);
430     }
431 }
432 #endif
433
434 /*
435 =for apidoc sv_report_used
436
437 Dump the contents of all SVs not yet freed. (Debugging aid).
438
439 =cut
440 */
441
442 void
443 Perl_sv_report_used(pTHX)
444 {
445 #ifdef DEBUGGING
446     visit(do_report_used, 0, 0);
447 #else
448     PERL_UNUSED_CONTEXT;
449 #endif
450 }
451
452 /* called by sv_clean_objs() for each live SV */
453
454 static void
455 do_clean_objs(pTHX_ SV *const ref)
456 {
457     dVAR;
458     assert (SvROK(ref));
459     {
460         SV * const target = SvRV(ref);
461         if (SvOBJECT(target)) {
462             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
463             if (SvWEAKREF(ref)) {
464                 sv_del_backref(target, ref);
465                 SvWEAKREF_off(ref);
466                 SvRV_set(ref, NULL);
467             } else {
468                 SvROK_off(ref);
469                 SvRV_set(ref, NULL);
470                 SvREFCNT_dec(target);
471             }
472         }
473     }
474
475     /* XXX Might want to check arrays, etc. */
476 }
477
478
479 #ifndef DISABLE_DESTRUCTOR_KLUDGE
480
481 /* clear any slots in a GV which hold objects - except IO;
482  * called by sv_clean_objs() for each live GV */
483
484 static void
485 do_clean_named_objs(pTHX_ SV *const sv)
486 {
487     dVAR;
488     SV *obj;
489     assert(SvTYPE(sv) == SVt_PVGV);
490     assert(isGV_with_GP(sv));
491     if (!GvGP(sv))
492         return;
493
494     /* freeing GP entries may indirectly free the current GV;
495      * hold onto it while we mess with the GP slots */
496     SvREFCNT_inc(sv);
497
498     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
499         DEBUG_D((PerlIO_printf(Perl_debug_log,
500                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
501         GvSV(sv) = NULL;
502         SvREFCNT_dec(obj);
503     }
504     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
505         DEBUG_D((PerlIO_printf(Perl_debug_log,
506                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
507         GvAV(sv) = NULL;
508         SvREFCNT_dec(obj);
509     }
510     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
511         DEBUG_D((PerlIO_printf(Perl_debug_log,
512                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
513         GvHV(sv) = NULL;
514         SvREFCNT_dec(obj);
515     }
516     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
517         DEBUG_D((PerlIO_printf(Perl_debug_log,
518                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
519         GvCV(sv) = NULL;
520         SvREFCNT_dec(obj);
521     }
522     SvREFCNT_dec(sv); /* undo the inc above */
523 }
524
525 /* clear any IO slots in a GV which hold objects (except stderr, defout);
526  * called by sv_clean_objs() for each live GV */
527
528 static void
529 do_clean_named_io_objs(pTHX_ SV *const sv)
530 {
531     dVAR;
532     SV *obj;
533     assert(SvTYPE(sv) == SVt_PVGV);
534     assert(isGV_with_GP(sv));
535     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
536         return;
537
538     SvREFCNT_inc(sv);
539     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
540         DEBUG_D((PerlIO_printf(Perl_debug_log,
541                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
542         GvIOp(sv) = NULL;
543         SvREFCNT_dec(obj);
544     }
545     SvREFCNT_dec(sv); /* undo the inc above */
546 }
547 #endif
548
549 /*
550 =for apidoc sv_clean_objs
551
552 Attempt to destroy all objects not yet freed
553
554 =cut
555 */
556
557 void
558 Perl_sv_clean_objs(pTHX)
559 {
560     dVAR;
561     GV *olddef, *olderr;
562     PL_in_clean_objs = TRUE;
563     visit(do_clean_objs, SVf_ROK, SVf_ROK);
564 #ifndef DISABLE_DESTRUCTOR_KLUDGE
565     /* Some barnacles may yet remain, clinging to typeglobs.
566      * Run the non-IO destructors first: they may want to output
567      * error messages, close files etc */
568     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
569     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
570     olddef = PL_defoutgv;
571     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
572     if (olddef && isGV_with_GP(olddef))
573         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
574     olderr = PL_stderrgv;
575     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
576     if (olderr && isGV_with_GP(olderr))
577         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
578     SvREFCNT_dec(olddef);
579 #endif
580     PL_in_clean_objs = FALSE;
581 }
582
583 /* called by sv_clean_all() for each live SV */
584
585 static void
586 do_clean_all(pTHX_ SV *const sv)
587 {
588     dVAR;
589     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
590         /* don't clean pid table and strtab */
591         return;
592     }
593     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
594     SvFLAGS(sv) |= SVf_BREAK;
595     SvREFCNT_dec(sv);
596 }
597
598 /*
599 =for apidoc sv_clean_all
600
601 Decrement the refcnt of each remaining SV, possibly triggering a
602 cleanup. This function may have to be called multiple times to free
603 SVs which are in complex self-referential hierarchies.
604
605 =cut
606 */
607
608 I32
609 Perl_sv_clean_all(pTHX)
610 {
611     dVAR;
612     I32 cleaned;
613     PL_in_clean_all = TRUE;
614     cleaned = visit(do_clean_all, 0,0);
615     return cleaned;
616 }
617
618 /*
619   ARENASETS: a meta-arena implementation which separates arena-info
620   into struct arena_set, which contains an array of struct
621   arena_descs, each holding info for a single arena.  By separating
622   the meta-info from the arena, we recover the 1st slot, formerly
623   borrowed for list management.  The arena_set is about the size of an
624   arena, avoiding the needless malloc overhead of a naive linked-list.
625
626   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
627   memory in the last arena-set (1/2 on average).  In trade, we get
628   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
629   smaller types).  The recovery of the wasted space allows use of
630   small arenas for large, rare body types, by changing array* fields
631   in body_details_by_type[] below.
632 */
633 struct arena_desc {
634     char       *arena;          /* the raw storage, allocated aligned */
635     size_t      size;           /* its size ~4k typ */
636     svtype      utype;          /* bodytype stored in arena */
637 };
638
639 struct arena_set;
640
641 /* Get the maximum number of elements in set[] such that struct arena_set
642    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
643    therefore likely to be 1 aligned memory page.  */
644
645 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
646                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
647
648 struct arena_set {
649     struct arena_set* next;
650     unsigned int   set_size;    /* ie ARENAS_PER_SET */
651     unsigned int   curr;        /* index of next available arena-desc */
652     struct arena_desc set[ARENAS_PER_SET];
653 };
654
655 /*
656 =for apidoc sv_free_arenas
657
658 Deallocate the memory used by all arenas. Note that all the individual SV
659 heads and bodies within the arenas must already have been freed.
660
661 =cut
662 */
663 void
664 Perl_sv_free_arenas(pTHX)
665 {
666     dVAR;
667     SV* sva;
668     SV* svanext;
669     unsigned int i;
670
671     /* Free arenas here, but be careful about fake ones.  (We assume
672        contiguity of the fake ones with the corresponding real ones.) */
673
674     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
675         svanext = MUTABLE_SV(SvANY(sva));
676         while (svanext && SvFAKE(svanext))
677             svanext = MUTABLE_SV(SvANY(svanext));
678
679         if (!SvFAKE(sva))
680             Safefree(sva);
681     }
682
683     {
684         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
685
686         while (aroot) {
687             struct arena_set *current = aroot;
688             i = aroot->curr;
689             while (i--) {
690                 assert(aroot->set[i].arena);
691                 Safefree(aroot->set[i].arena);
692             }
693             aroot = aroot->next;
694             Safefree(current);
695         }
696     }
697     PL_body_arenas = 0;
698
699     i = PERL_ARENA_ROOTS_SIZE;
700     while (i--)
701         PL_body_roots[i] = 0;
702
703     PL_sv_arenaroot = 0;
704     PL_sv_root = 0;
705 }
706
707 /*
708   Here are mid-level routines that manage the allocation of bodies out
709   of the various arenas.  There are 5 kinds of arenas:
710
711   1. SV-head arenas, which are discussed and handled above
712   2. regular body arenas
713   3. arenas for reduced-size bodies
714   4. Hash-Entry arenas
715
716   Arena types 2 & 3 are chained by body-type off an array of
717   arena-root pointers, which is indexed by svtype.  Some of the
718   larger/less used body types are malloced singly, since a large
719   unused block of them is wasteful.  Also, several svtypes dont have
720   bodies; the data fits into the sv-head itself.  The arena-root
721   pointer thus has a few unused root-pointers (which may be hijacked
722   later for arena types 4,5)
723
724   3 differs from 2 as an optimization; some body types have several
725   unused fields in the front of the structure (which are kept in-place
726   for consistency).  These bodies can be allocated in smaller chunks,
727   because the leading fields arent accessed.  Pointers to such bodies
728   are decremented to point at the unused 'ghost' memory, knowing that
729   the pointers are used with offsets to the real memory.
730
731
732 =head1 SV-Body Allocation
733
734 Allocation of SV-bodies is similar to SV-heads, differing as follows;
735 the allocation mechanism is used for many body types, so is somewhat
736 more complicated, it uses arena-sets, and has no need for still-live
737 SV detection.
738
739 At the outermost level, (new|del)_X*V macros return bodies of the
740 appropriate type.  These macros call either (new|del)_body_type or
741 (new|del)_body_allocated macro pairs, depending on specifics of the
742 type.  Most body types use the former pair, the latter pair is used to
743 allocate body types with "ghost fields".
744
745 "ghost fields" are fields that are unused in certain types, and
746 consequently don't need to actually exist.  They are declared because
747 they're part of a "base type", which allows use of functions as
748 methods.  The simplest examples are AVs and HVs, 2 aggregate types
749 which don't use the fields which support SCALAR semantics.
750
751 For these types, the arenas are carved up into appropriately sized
752 chunks, we thus avoid wasted memory for those unaccessed members.
753 When bodies are allocated, we adjust the pointer back in memory by the
754 size of the part not allocated, so it's as if we allocated the full
755 structure.  (But things will all go boom if you write to the part that
756 is "not there", because you'll be overwriting the last members of the
757 preceding structure in memory.)
758
759 We calculate the correction using the STRUCT_OFFSET macro on the first
760 member present. If the allocated structure is smaller (no initial NV
761 actually allocated) then the net effect is to subtract the size of the NV
762 from the pointer, to return a new pointer as if an initial NV were actually
763 allocated. (We were using structures named *_allocated for this, but
764 this turned out to be a subtle bug, because a structure without an NV
765 could have a lower alignment constraint, but the compiler is allowed to
766 optimised accesses based on the alignment constraint of the actual pointer
767 to the full structure, for example, using a single 64 bit load instruction
768 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
769
770 This is the same trick as was used for NV and IV bodies. Ironically it
771 doesn't need to be used for NV bodies any more, because NV is now at
772 the start of the structure. IV bodies don't need it either, because
773 they are no longer allocated.
774
775 In turn, the new_body_* allocators call S_new_body(), which invokes
776 new_body_inline macro, which takes a lock, and takes a body off the
777 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
778 necessary to refresh an empty list.  Then the lock is released, and
779 the body is returned.
780
781 Perl_more_bodies allocates a new arena, and carves it up into an array of N
782 bodies, which it strings into a linked list.  It looks up arena-size
783 and body-size from the body_details table described below, thus
784 supporting the multiple body-types.
785
786 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
787 the (new|del)_X*V macros are mapped directly to malloc/free.
788
789 For each sv-type, struct body_details bodies_by_type[] carries
790 parameters which control these aspects of SV handling:
791
792 Arena_size determines whether arenas are used for this body type, and if
793 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
794 zero, forcing individual mallocs and frees.
795
796 Body_size determines how big a body is, and therefore how many fit into
797 each arena.  Offset carries the body-pointer adjustment needed for
798 "ghost fields", and is used in *_allocated macros.
799
800 But its main purpose is to parameterize info needed in
801 Perl_sv_upgrade().  The info here dramatically simplifies the function
802 vs the implementation in 5.8.8, making it table-driven.  All fields
803 are used for this, except for arena_size.
804
805 For the sv-types that have no bodies, arenas are not used, so those
806 PL_body_roots[sv_type] are unused, and can be overloaded.  In
807 something of a special case, SVt_NULL is borrowed for HE arenas;
808 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
809 bodies_by_type[SVt_NULL] slot is not used, as the table is not
810 available in hv.c.
811
812 */
813
814 struct body_details {
815     U8 body_size;       /* Size to allocate  */
816     U8 copy;            /* Size of structure to copy (may be shorter)  */
817     U8 offset;
818     unsigned int type : 4;          /* We have space for a sanity check.  */
819     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
820     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
821     unsigned int arena : 1;         /* Allocated from an arena */
822     size_t arena_size;              /* Size of arena to allocate */
823 };
824
825 #define HADNV FALSE
826 #define NONV TRUE
827
828
829 #ifdef PURIFY
830 /* With -DPURFIY we allocate everything directly, and don't use arenas.
831    This seems a rather elegant way to simplify some of the code below.  */
832 #define HASARENA FALSE
833 #else
834 #define HASARENA TRUE
835 #endif
836 #define NOARENA FALSE
837
838 /* Size the arenas to exactly fit a given number of bodies.  A count
839    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
840    simplifying the default.  If count > 0, the arena is sized to fit
841    only that many bodies, allowing arenas to be used for large, rare
842    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
843    limited by PERL_ARENA_SIZE, so we can safely oversize the
844    declarations.
845  */
846 #define FIT_ARENA0(body_size)                           \
847     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
848 #define FIT_ARENAn(count,body_size)                     \
849     ( count * body_size <= PERL_ARENA_SIZE)             \
850     ? count * body_size                                 \
851     : FIT_ARENA0 (body_size)
852 #define FIT_ARENA(count,body_size)                      \
853     count                                               \
854     ? FIT_ARENAn (count, body_size)                     \
855     : FIT_ARENA0 (body_size)
856
857 /* Calculate the length to copy. Specifically work out the length less any
858    final padding the compiler needed to add.  See the comment in sv_upgrade
859    for why copying the padding proved to be a bug.  */
860
861 #define copy_length(type, last_member) \
862         STRUCT_OFFSET(type, last_member) \
863         + sizeof (((type*)SvANY((const SV *)0))->last_member)
864
865 static const struct body_details bodies_by_type[] = {
866     /* HEs use this offset for their arena.  */
867     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
868
869     /* The bind placeholder pretends to be an RV for now.
870        Also it's marked as "can't upgrade" to stop anyone using it before it's
871        implemented.  */
872     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
873
874     /* IVs are in the head, so the allocation size is 0.  */
875     { 0,
876       sizeof(IV), /* This is used to copy out the IV body.  */
877       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
878       NOARENA /* IVS don't need an arena  */, 0
879     },
880
881     /* 8 bytes on most ILP32 with IEEE doubles */
882     { sizeof(NV), sizeof(NV),
883       STRUCT_OFFSET(XPVNV, xnv_u),
884       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
885
886     /* 8 bytes on most ILP32 with IEEE doubles */
887     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
888       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
889       + STRUCT_OFFSET(XPV, xpv_cur),
890       SVt_PV, FALSE, NONV, HASARENA,
891       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
892
893     /* 12 */
894     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
895       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
896       + STRUCT_OFFSET(XPV, xpv_cur),
897       SVt_PVIV, FALSE, NONV, HASARENA,
898       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
899
900     /* 20 */
901     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
902       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
903       + STRUCT_OFFSET(XPV, xpv_cur),
904       SVt_PVNV, FALSE, HADNV, HASARENA,
905       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
906
907     /* 28 */
908     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
909       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
910
911     /* something big */
912     { sizeof(regexp),
913       sizeof(regexp),
914       0,
915       SVt_REGEXP, FALSE, NONV, HASARENA,
916       FIT_ARENA(0, sizeof(regexp))
917     },
918
919     /* 48 */
920     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
921       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
922     
923     /* 64 */
924     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
925       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
926
927     { sizeof(XPVAV),
928       copy_length(XPVAV, xav_alloc),
929       0,
930       SVt_PVAV, TRUE, NONV, HASARENA,
931       FIT_ARENA(0, sizeof(XPVAV)) },
932
933     { sizeof(XPVHV),
934       copy_length(XPVHV, xhv_max),
935       0,
936       SVt_PVHV, TRUE, NONV, HASARENA,
937       FIT_ARENA(0, sizeof(XPVHV)) },
938
939     /* 56 */
940     { sizeof(XPVCV),
941       sizeof(XPVCV),
942       0,
943       SVt_PVCV, TRUE, NONV, HASARENA,
944       FIT_ARENA(0, sizeof(XPVCV)) },
945
946     { sizeof(XPVFM),
947       sizeof(XPVFM),
948       0,
949       SVt_PVFM, TRUE, NONV, NOARENA,
950       FIT_ARENA(20, sizeof(XPVFM)) },
951
952     /* XPVIO is 84 bytes, fits 48x */
953     { sizeof(XPVIO),
954       sizeof(XPVIO),
955       0,
956       SVt_PVIO, TRUE, NONV, HASARENA,
957       FIT_ARENA(24, sizeof(XPVIO)) },
958 };
959
960 #define new_body_allocated(sv_type)             \
961     (void *)((char *)S_new_body(aTHX_ sv_type)  \
962              - bodies_by_type[sv_type].offset)
963
964 /* return a thing to the free list */
965
966 #define del_body(thing, root)                           \
967     STMT_START {                                        \
968         void ** const thing_copy = (void **)thing;      \
969         *thing_copy = *root;                            \
970         *root = (void*)thing_copy;                      \
971     } STMT_END
972
973 #ifdef PURIFY
974
975 #define new_XNV()       safemalloc(sizeof(XPVNV))
976 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
977 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
978
979 #define del_XPVGV(p)    safefree(p)
980
981 #else /* !PURIFY */
982
983 #define new_XNV()       new_body_allocated(SVt_NV)
984 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
985 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
986
987 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
988                                  &PL_body_roots[SVt_PVGV])
989
990 #endif /* PURIFY */
991
992 /* no arena for you! */
993
994 #define new_NOARENA(details) \
995         safemalloc((details)->body_size + (details)->offset)
996 #define new_NOARENAZ(details) \
997         safecalloc((details)->body_size + (details)->offset, 1)
998
999 void *
1000 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1001                   const size_t arena_size)
1002 {
1003     dVAR;
1004     void ** const root = &PL_body_roots[sv_type];
1005     struct arena_desc *adesc;
1006     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1007     unsigned int curr;
1008     char *start;
1009     const char *end;
1010     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1011 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1012     static bool done_sanity_check;
1013
1014     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1015      * variables like done_sanity_check. */
1016     if (!done_sanity_check) {
1017         unsigned int i = SVt_LAST;
1018
1019         done_sanity_check = TRUE;
1020
1021         while (i--)
1022             assert (bodies_by_type[i].type == i);
1023     }
1024 #endif
1025
1026     assert(arena_size);
1027
1028     /* may need new arena-set to hold new arena */
1029     if (!aroot || aroot->curr >= aroot->set_size) {
1030         struct arena_set *newroot;
1031         Newxz(newroot, 1, struct arena_set);
1032         newroot->set_size = ARENAS_PER_SET;
1033         newroot->next = aroot;
1034         aroot = newroot;
1035         PL_body_arenas = (void *) newroot;
1036         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1037     }
1038
1039     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1040     curr = aroot->curr++;
1041     adesc = &(aroot->set[curr]);
1042     assert(!adesc->arena);
1043     
1044     Newx(adesc->arena, good_arena_size, char);
1045     adesc->size = good_arena_size;
1046     adesc->utype = sv_type;
1047     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1048                           curr, (void*)adesc->arena, (UV)good_arena_size));
1049
1050     start = (char *) adesc->arena;
1051
1052     /* Get the address of the byte after the end of the last body we can fit.
1053        Remember, this is integer division:  */
1054     end = start + good_arena_size / body_size * body_size;
1055
1056     /* computed count doesnt reflect the 1st slot reservation */
1057 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1058     DEBUG_m(PerlIO_printf(Perl_debug_log,
1059                           "arena %p end %p arena-size %d (from %d) type %d "
1060                           "size %d ct %d\n",
1061                           (void*)start, (void*)end, (int)good_arena_size,
1062                           (int)arena_size, sv_type, (int)body_size,
1063                           (int)good_arena_size / (int)body_size));
1064 #else
1065     DEBUG_m(PerlIO_printf(Perl_debug_log,
1066                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1067                           (void*)start, (void*)end,
1068                           (int)arena_size, sv_type, (int)body_size,
1069                           (int)good_arena_size / (int)body_size));
1070 #endif
1071     *root = (void *)start;
1072
1073     while (1) {
1074         /* Where the next body would start:  */
1075         char * const next = start + body_size;
1076
1077         if (next >= end) {
1078             /* This is the last body:  */
1079             assert(next == end);
1080
1081             *(void **)start = 0;
1082             return *root;
1083         }
1084
1085         *(void**) start = (void *)next;
1086         start = next;
1087     }
1088 }
1089
1090 /* grab a new thing from the free list, allocating more if necessary.
1091    The inline version is used for speed in hot routines, and the
1092    function using it serves the rest (unless PURIFY).
1093 */
1094 #define new_body_inline(xpv, sv_type) \
1095     STMT_START { \
1096         void ** const r3wt = &PL_body_roots[sv_type]; \
1097         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1098           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1099                                              bodies_by_type[sv_type].body_size,\
1100                                              bodies_by_type[sv_type].arena_size)); \
1101         *(r3wt) = *(void**)(xpv); \
1102     } STMT_END
1103
1104 #ifndef PURIFY
1105
1106 STATIC void *
1107 S_new_body(pTHX_ const svtype sv_type)
1108 {
1109     dVAR;
1110     void *xpv;
1111     new_body_inline(xpv, sv_type);
1112     return xpv;
1113 }
1114
1115 #endif
1116
1117 static const struct body_details fake_rv =
1118     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1119
1120 /*
1121 =for apidoc sv_upgrade
1122
1123 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1124 SV, then copies across as much information as possible from the old body.
1125 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1126
1127 =cut
1128 */
1129
1130 void
1131 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1132 {
1133     dVAR;
1134     void*       old_body;
1135     void*       new_body;
1136     const svtype old_type = SvTYPE(sv);
1137     const struct body_details *new_type_details;
1138     const struct body_details *old_type_details
1139         = bodies_by_type + old_type;
1140     SV *referant = NULL;
1141
1142     PERL_ARGS_ASSERT_SV_UPGRADE;
1143
1144     if (old_type == new_type)
1145         return;
1146
1147     /* This clause was purposefully added ahead of the early return above to
1148        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1149        inference by Nick I-S that it would fix other troublesome cases. See
1150        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1151
1152        Given that shared hash key scalars are no longer PVIV, but PV, there is
1153        no longer need to unshare so as to free up the IVX slot for its proper
1154        purpose. So it's safe to move the early return earlier.  */
1155
1156     if (new_type != SVt_PV && SvIsCOW(sv)) {
1157         sv_force_normal_flags(sv, 0);
1158     }
1159
1160     old_body = SvANY(sv);
1161
1162     /* Copying structures onto other structures that have been neatly zeroed
1163        has a subtle gotcha. Consider XPVMG
1164
1165        +------+------+------+------+------+-------+-------+
1166        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1167        +------+------+------+------+------+-------+-------+
1168        0      4      8     12     16     20      24      28
1169
1170        where NVs are aligned to 8 bytes, so that sizeof that structure is
1171        actually 32 bytes long, with 4 bytes of padding at the end:
1172
1173        +------+------+------+------+------+-------+-------+------+
1174        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1175        +------+------+------+------+------+-------+-------+------+
1176        0      4      8     12     16     20      24      28     32
1177
1178        so what happens if you allocate memory for this structure:
1179
1180        +------+------+------+------+------+-------+-------+------+------+...
1181        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1182        +------+------+------+------+------+-------+-------+------+------+...
1183        0      4      8     12     16     20      24      28     32     36
1184
1185        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1186        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1187        started out as zero once, but it's quite possible that it isn't. So now,
1188        rather than a nicely zeroed GP, you have it pointing somewhere random.
1189        Bugs ensue.
1190
1191        (In fact, GP ends up pointing at a previous GP structure, because the
1192        principle cause of the padding in XPVMG getting garbage is a copy of
1193        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1194        this happens to be moot because XPVGV has been re-ordered, with GP
1195        no longer after STASH)
1196
1197        So we are careful and work out the size of used parts of all the
1198        structures.  */
1199
1200     switch (old_type) {
1201     case SVt_NULL:
1202         break;
1203     case SVt_IV:
1204         if (SvROK(sv)) {
1205             referant = SvRV(sv);
1206             old_type_details = &fake_rv;
1207             if (new_type == SVt_NV)
1208                 new_type = SVt_PVNV;
1209         } else {
1210             if (new_type < SVt_PVIV) {
1211                 new_type = (new_type == SVt_NV)
1212                     ? SVt_PVNV : SVt_PVIV;
1213             }
1214         }
1215         break;
1216     case SVt_NV:
1217         if (new_type < SVt_PVNV) {
1218             new_type = SVt_PVNV;
1219         }
1220         break;
1221     case SVt_PV:
1222         assert(new_type > SVt_PV);
1223         assert(SVt_IV < SVt_PV);
1224         assert(SVt_NV < SVt_PV);
1225         break;
1226     case SVt_PVIV:
1227         break;
1228     case SVt_PVNV:
1229         break;
1230     case SVt_PVMG:
1231         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1232            there's no way that it can be safely upgraded, because perl.c
1233            expects to Safefree(SvANY(PL_mess_sv))  */
1234         assert(sv != PL_mess_sv);
1235         /* This flag bit is used to mean other things in other scalar types.
1236            Given that it only has meaning inside the pad, it shouldn't be set
1237            on anything that can get upgraded.  */
1238         assert(!SvPAD_TYPED(sv));
1239         break;
1240     default:
1241         if (old_type_details->cant_upgrade)
1242             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1243                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1244     }
1245
1246     if (old_type > new_type)
1247         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1248                 (int)old_type, (int)new_type);
1249
1250     new_type_details = bodies_by_type + new_type;
1251
1252     SvFLAGS(sv) &= ~SVTYPEMASK;
1253     SvFLAGS(sv) |= new_type;
1254
1255     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1256        the return statements above will have triggered.  */
1257     assert (new_type != SVt_NULL);
1258     switch (new_type) {
1259     case SVt_IV:
1260         assert(old_type == SVt_NULL);
1261         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1262         SvIV_set(sv, 0);
1263         return;
1264     case SVt_NV:
1265         assert(old_type == SVt_NULL);
1266         SvANY(sv) = new_XNV();
1267         SvNV_set(sv, 0);
1268         return;
1269     case SVt_PVHV:
1270     case SVt_PVAV:
1271         assert(new_type_details->body_size);
1272
1273 #ifndef PURIFY  
1274         assert(new_type_details->arena);
1275         assert(new_type_details->arena_size);
1276         /* This points to the start of the allocated area.  */
1277         new_body_inline(new_body, new_type);
1278         Zero(new_body, new_type_details->body_size, char);
1279         new_body = ((char *)new_body) - new_type_details->offset;
1280 #else
1281         /* We always allocated the full length item with PURIFY. To do this
1282            we fake things so that arena is false for all 16 types..  */
1283         new_body = new_NOARENAZ(new_type_details);
1284 #endif
1285         SvANY(sv) = new_body;
1286         if (new_type == SVt_PVAV) {
1287             AvMAX(sv)   = -1;
1288             AvFILLp(sv) = -1;
1289             AvREAL_only(sv);
1290             if (old_type_details->body_size) {
1291                 AvALLOC(sv) = 0;
1292             } else {
1293                 /* It will have been zeroed when the new body was allocated.
1294                    Lets not write to it, in case it confuses a write-back
1295                    cache.  */
1296             }
1297         } else {
1298             assert(!SvOK(sv));
1299             SvOK_off(sv);
1300 #ifndef NODEFAULT_SHAREKEYS
1301             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1302 #endif
1303             HvMAX(sv) = 7; /* (start with 8 buckets) */
1304         }
1305
1306         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1307            The target created by newSVrv also is, and it can have magic.
1308            However, it never has SvPVX set.
1309         */
1310         if (old_type == SVt_IV) {
1311             assert(!SvROK(sv));
1312         } else if (old_type >= SVt_PV) {
1313             assert(SvPVX_const(sv) == 0);
1314         }
1315
1316         if (old_type >= SVt_PVMG) {
1317             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1318             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1319         } else {
1320             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1321         }
1322         break;
1323
1324
1325     case SVt_REGEXP:
1326         /* This ensures that SvTHINKFIRST(sv) is true, and hence that
1327            sv_force_normal_flags(sv) is called.  */
1328         SvFAKE_on(sv);
1329     case SVt_PVIV:
1330         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1331            no route from NV to PVIV, NOK can never be true  */
1332         assert(!SvNOKp(sv));
1333         assert(!SvNOK(sv));
1334     case SVt_PVIO:
1335     case SVt_PVFM:
1336     case SVt_PVGV:
1337     case SVt_PVCV:
1338     case SVt_PVLV:
1339     case SVt_PVMG:
1340     case SVt_PVNV:
1341     case SVt_PV:
1342
1343         assert(new_type_details->body_size);
1344         /* We always allocated the full length item with PURIFY. To do this
1345            we fake things so that arena is false for all 16 types..  */
1346         if(new_type_details->arena) {
1347             /* This points to the start of the allocated area.  */
1348             new_body_inline(new_body, new_type);
1349             Zero(new_body, new_type_details->body_size, char);
1350             new_body = ((char *)new_body) - new_type_details->offset;
1351         } else {
1352             new_body = new_NOARENAZ(new_type_details);
1353         }
1354         SvANY(sv) = new_body;
1355
1356         if (old_type_details->copy) {
1357             /* There is now the potential for an upgrade from something without
1358                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1359             int offset = old_type_details->offset;
1360             int length = old_type_details->copy;
1361
1362             if (new_type_details->offset > old_type_details->offset) {
1363                 const int difference
1364                     = new_type_details->offset - old_type_details->offset;
1365                 offset += difference;
1366                 length -= difference;
1367             }
1368             assert (length >= 0);
1369                 
1370             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1371                  char);
1372         }
1373
1374 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1375         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1376          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1377          * NV slot, but the new one does, then we need to initialise the
1378          * freshly created NV slot with whatever the correct bit pattern is
1379          * for 0.0  */
1380         if (old_type_details->zero_nv && !new_type_details->zero_nv
1381             && !isGV_with_GP(sv))
1382             SvNV_set(sv, 0);
1383 #endif
1384
1385         if (new_type == SVt_PVIO) {
1386             IO * const io = MUTABLE_IO(sv);
1387             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1388
1389             SvOBJECT_on(io);
1390             /* Clear the stashcache because a new IO could overrule a package
1391                name */
1392             hv_clear(PL_stashcache);
1393
1394             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1395             IoPAGE_LEN(sv) = 60;
1396         }
1397         if (old_type < SVt_PV) {
1398             /* referant will be NULL unless the old type was SVt_IV emulating
1399                SVt_RV */
1400             sv->sv_u.svu_rv = referant;
1401         }
1402         break;
1403     default:
1404         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1405                    (unsigned long)new_type);
1406     }
1407
1408     if (old_type > SVt_IV) {
1409 #ifdef PURIFY
1410         safefree(old_body);
1411 #else
1412         /* Note that there is an assumption that all bodies of types that
1413            can be upgraded came from arenas. Only the more complex non-
1414            upgradable types are allowed to be directly malloc()ed.  */
1415         assert(old_type_details->arena);
1416         del_body((void*)((char*)old_body + old_type_details->offset),
1417                  &PL_body_roots[old_type]);
1418 #endif
1419     }
1420 }
1421
1422 /*
1423 =for apidoc sv_backoff
1424
1425 Remove any string offset. You should normally use the C<SvOOK_off> macro
1426 wrapper instead.
1427
1428 =cut
1429 */
1430
1431 int
1432 Perl_sv_backoff(pTHX_ register SV *const sv)
1433 {
1434     STRLEN delta;
1435     const char * const s = SvPVX_const(sv);
1436
1437     PERL_ARGS_ASSERT_SV_BACKOFF;
1438     PERL_UNUSED_CONTEXT;
1439
1440     assert(SvOOK(sv));
1441     assert(SvTYPE(sv) != SVt_PVHV);
1442     assert(SvTYPE(sv) != SVt_PVAV);
1443
1444     SvOOK_offset(sv, delta);
1445     
1446     SvLEN_set(sv, SvLEN(sv) + delta);
1447     SvPV_set(sv, SvPVX(sv) - delta);
1448     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1449     SvFLAGS(sv) &= ~SVf_OOK;
1450     return 0;
1451 }
1452
1453 /*
1454 =for apidoc sv_grow
1455
1456 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1457 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1458 Use the C<SvGROW> wrapper instead.
1459
1460 =cut
1461 */
1462
1463 char *
1464 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1465 {
1466     register char *s;
1467
1468     PERL_ARGS_ASSERT_SV_GROW;
1469
1470     if (PL_madskills && newlen >= 0x100000) {
1471         PerlIO_printf(Perl_debug_log,
1472                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1473     }
1474 #ifdef HAS_64K_LIMIT
1475     if (newlen >= 0x10000) {
1476         PerlIO_printf(Perl_debug_log,
1477                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1478         my_exit(1);
1479     }
1480 #endif /* HAS_64K_LIMIT */
1481     if (SvROK(sv))
1482         sv_unref(sv);
1483     if (SvTYPE(sv) < SVt_PV) {
1484         sv_upgrade(sv, SVt_PV);
1485         s = SvPVX_mutable(sv);
1486     }
1487     else if (SvOOK(sv)) {       /* pv is offset? */
1488         sv_backoff(sv);
1489         s = SvPVX_mutable(sv);
1490         if (newlen > SvLEN(sv))
1491             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1492 #ifdef HAS_64K_LIMIT
1493         if (newlen >= 0x10000)
1494             newlen = 0xFFFF;
1495 #endif
1496     }
1497     else
1498         s = SvPVX_mutable(sv);
1499
1500     if (newlen > SvLEN(sv)) {           /* need more room? */
1501         STRLEN minlen = SvCUR(sv);
1502         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1503         if (newlen < minlen)
1504             newlen = minlen;
1505 #ifndef Perl_safesysmalloc_size
1506         newlen = PERL_STRLEN_ROUNDUP(newlen);
1507 #endif
1508         if (SvLEN(sv) && s) {
1509             s = (char*)saferealloc(s, newlen);
1510         }
1511         else {
1512             s = (char*)safemalloc(newlen);
1513             if (SvPVX_const(sv) && SvCUR(sv)) {
1514                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1515             }
1516         }
1517         SvPV_set(sv, s);
1518 #ifdef Perl_safesysmalloc_size
1519         /* Do this here, do it once, do it right, and then we will never get
1520            called back into sv_grow() unless there really is some growing
1521            needed.  */
1522         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1523 #else
1524         SvLEN_set(sv, newlen);
1525 #endif
1526     }
1527     return s;
1528 }
1529
1530 /*
1531 =for apidoc sv_setiv
1532
1533 Copies an integer into the given SV, upgrading first if necessary.
1534 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1535
1536 =cut
1537 */
1538
1539 void
1540 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1541 {
1542     dVAR;
1543
1544     PERL_ARGS_ASSERT_SV_SETIV;
1545
1546     SV_CHECK_THINKFIRST_COW_DROP(sv);
1547     switch (SvTYPE(sv)) {
1548     case SVt_NULL:
1549     case SVt_NV:
1550         sv_upgrade(sv, SVt_IV);
1551         break;
1552     case SVt_PV:
1553         sv_upgrade(sv, SVt_PVIV);
1554         break;
1555
1556     case SVt_PVGV:
1557         if (!isGV_with_GP(sv))
1558             break;
1559     case SVt_PVAV:
1560     case SVt_PVHV:
1561     case SVt_PVCV:
1562     case SVt_PVFM:
1563     case SVt_PVIO:
1564         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1565                    OP_DESC(PL_op));
1566     default: NOOP;
1567     }
1568     (void)SvIOK_only(sv);                       /* validate number */
1569     SvIV_set(sv, i);
1570     SvTAINT(sv);
1571 }
1572
1573 /*
1574 =for apidoc sv_setiv_mg
1575
1576 Like C<sv_setiv>, but also handles 'set' magic.
1577
1578 =cut
1579 */
1580
1581 void
1582 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1583 {
1584     PERL_ARGS_ASSERT_SV_SETIV_MG;
1585
1586     sv_setiv(sv,i);
1587     SvSETMAGIC(sv);
1588 }
1589
1590 /*
1591 =for apidoc sv_setuv
1592
1593 Copies an unsigned integer into the given SV, upgrading first if necessary.
1594 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1595
1596 =cut
1597 */
1598
1599 void
1600 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1601 {
1602     PERL_ARGS_ASSERT_SV_SETUV;
1603
1604     /* With these two if statements:
1605        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1606
1607        without
1608        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1609
1610        If you wish to remove them, please benchmark to see what the effect is
1611     */
1612     if (u <= (UV)IV_MAX) {
1613        sv_setiv(sv, (IV)u);
1614        return;
1615     }
1616     sv_setiv(sv, 0);
1617     SvIsUV_on(sv);
1618     SvUV_set(sv, u);
1619 }
1620
1621 /*
1622 =for apidoc sv_setuv_mg
1623
1624 Like C<sv_setuv>, but also handles 'set' magic.
1625
1626 =cut
1627 */
1628
1629 void
1630 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1631 {
1632     PERL_ARGS_ASSERT_SV_SETUV_MG;
1633
1634     sv_setuv(sv,u);
1635     SvSETMAGIC(sv);
1636 }
1637
1638 /*
1639 =for apidoc sv_setnv
1640
1641 Copies a double into the given SV, upgrading first if necessary.
1642 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1643
1644 =cut
1645 */
1646
1647 void
1648 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1649 {
1650     dVAR;
1651
1652     PERL_ARGS_ASSERT_SV_SETNV;
1653
1654     SV_CHECK_THINKFIRST_COW_DROP(sv);
1655     switch (SvTYPE(sv)) {
1656     case SVt_NULL:
1657     case SVt_IV:
1658         sv_upgrade(sv, SVt_NV);
1659         break;
1660     case SVt_PV:
1661     case SVt_PVIV:
1662         sv_upgrade(sv, SVt_PVNV);
1663         break;
1664
1665     case SVt_PVGV:
1666         if (!isGV_with_GP(sv))
1667             break;
1668     case SVt_PVAV:
1669     case SVt_PVHV:
1670     case SVt_PVCV:
1671     case SVt_PVFM:
1672     case SVt_PVIO:
1673         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1674                    OP_DESC(PL_op));
1675     default: NOOP;
1676     }
1677     SvNV_set(sv, num);
1678     (void)SvNOK_only(sv);                       /* validate number */
1679     SvTAINT(sv);
1680 }
1681
1682 /*
1683 =for apidoc sv_setnv_mg
1684
1685 Like C<sv_setnv>, but also handles 'set' magic.
1686
1687 =cut
1688 */
1689
1690 void
1691 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1692 {
1693     PERL_ARGS_ASSERT_SV_SETNV_MG;
1694
1695     sv_setnv(sv,num);
1696     SvSETMAGIC(sv);
1697 }
1698
1699 /* Print an "isn't numeric" warning, using a cleaned-up,
1700  * printable version of the offending string
1701  */
1702
1703 STATIC void
1704 S_not_a_number(pTHX_ SV *const sv)
1705 {
1706      dVAR;
1707      SV *dsv;
1708      char tmpbuf[64];
1709      const char *pv;
1710
1711      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1712
1713      if (DO_UTF8(sv)) {
1714           dsv = newSVpvs_flags("", SVs_TEMP);
1715           pv = sv_uni_display(dsv, sv, 10, 0);
1716      } else {
1717           char *d = tmpbuf;
1718           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1719           /* each *s can expand to 4 chars + "...\0",
1720              i.e. need room for 8 chars */
1721         
1722           const char *s = SvPVX_const(sv);
1723           const char * const end = s + SvCUR(sv);
1724           for ( ; s < end && d < limit; s++ ) {
1725                int ch = *s & 0xFF;
1726                if (ch & 128 && !isPRINT_LC(ch)) {
1727                     *d++ = 'M';
1728                     *d++ = '-';
1729                     ch &= 127;
1730                }
1731                if (ch == '\n') {
1732                     *d++ = '\\';
1733                     *d++ = 'n';
1734                }
1735                else if (ch == '\r') {
1736                     *d++ = '\\';
1737                     *d++ = 'r';
1738                }
1739                else if (ch == '\f') {
1740                     *d++ = '\\';
1741                     *d++ = 'f';
1742                }
1743                else if (ch == '\\') {
1744                     *d++ = '\\';
1745                     *d++ = '\\';
1746                }
1747                else if (ch == '\0') {
1748                     *d++ = '\\';
1749                     *d++ = '0';
1750                }
1751                else if (isPRINT_LC(ch))
1752                     *d++ = ch;
1753                else {
1754                     *d++ = '^';
1755                     *d++ = toCTRL(ch);
1756                }
1757           }
1758           if (s < end) {
1759                *d++ = '.';
1760                *d++ = '.';
1761                *d++ = '.';
1762           }
1763           *d = '\0';
1764           pv = tmpbuf;
1765     }
1766
1767     if (PL_op)
1768         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1769                     "Argument \"%s\" isn't numeric in %s", pv,
1770                     OP_DESC(PL_op));
1771     else
1772         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1773                     "Argument \"%s\" isn't numeric", pv);
1774 }
1775
1776 /*
1777 =for apidoc looks_like_number
1778
1779 Test if the content of an SV looks like a number (or is a number).
1780 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1781 non-numeric warning), even if your atof() doesn't grok them.
1782
1783 =cut
1784 */
1785
1786 I32
1787 Perl_looks_like_number(pTHX_ SV *const sv)
1788 {
1789     register const char *sbegin;
1790     STRLEN len;
1791
1792     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1793
1794     if (SvPOK(sv)) {
1795         sbegin = SvPVX_const(sv);
1796         len = SvCUR(sv);
1797     }
1798     else if (SvPOKp(sv))
1799         sbegin = SvPV_const(sv, len);
1800     else
1801         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1802     return grok_number(sbegin, len, NULL);
1803 }
1804
1805 STATIC bool
1806 S_glob_2number(pTHX_ GV * const gv)
1807 {
1808     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1809     SV *const buffer = sv_newmortal();
1810
1811     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1812
1813     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1814        is on.  */
1815     SvFAKE_off(gv);
1816     gv_efullname3(buffer, gv, "*");
1817     SvFLAGS(gv) |= wasfake;
1818
1819     /* We know that all GVs stringify to something that is not-a-number,
1820         so no need to test that.  */
1821     if (ckWARN(WARN_NUMERIC))
1822         not_a_number(buffer);
1823     /* We just want something true to return, so that S_sv_2iuv_common
1824         can tail call us and return true.  */
1825     return TRUE;
1826 }
1827
1828 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1829    until proven guilty, assume that things are not that bad... */
1830
1831 /*
1832    NV_PRESERVES_UV:
1833
1834    As 64 bit platforms often have an NV that doesn't preserve all bits of
1835    an IV (an assumption perl has been based on to date) it becomes necessary
1836    to remove the assumption that the NV always carries enough precision to
1837    recreate the IV whenever needed, and that the NV is the canonical form.
1838    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1839    precision as a side effect of conversion (which would lead to insanity
1840    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1841    1) to distinguish between IV/UV/NV slots that have cached a valid
1842       conversion where precision was lost and IV/UV/NV slots that have a
1843       valid conversion which has lost no precision
1844    2) to ensure that if a numeric conversion to one form is requested that
1845       would lose precision, the precise conversion (or differently
1846       imprecise conversion) is also performed and cached, to prevent
1847       requests for different numeric formats on the same SV causing
1848       lossy conversion chains. (lossless conversion chains are perfectly
1849       acceptable (still))
1850
1851
1852    flags are used:
1853    SvIOKp is true if the IV slot contains a valid value
1854    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1855    SvNOKp is true if the NV slot contains a valid value
1856    SvNOK  is true only if the NV value is accurate
1857
1858    so
1859    while converting from PV to NV, check to see if converting that NV to an
1860    IV(or UV) would lose accuracy over a direct conversion from PV to
1861    IV(or UV). If it would, cache both conversions, return NV, but mark
1862    SV as IOK NOKp (ie not NOK).
1863
1864    While converting from PV to IV, check to see if converting that IV to an
1865    NV would lose accuracy over a direct conversion from PV to NV. If it
1866    would, cache both conversions, flag similarly.
1867
1868    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1869    correctly because if IV & NV were set NV *always* overruled.
1870    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1871    changes - now IV and NV together means that the two are interchangeable:
1872    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1873
1874    The benefit of this is that operations such as pp_add know that if
1875    SvIOK is true for both left and right operands, then integer addition
1876    can be used instead of floating point (for cases where the result won't
1877    overflow). Before, floating point was always used, which could lead to
1878    loss of precision compared with integer addition.
1879
1880    * making IV and NV equal status should make maths accurate on 64 bit
1881      platforms
1882    * may speed up maths somewhat if pp_add and friends start to use
1883      integers when possible instead of fp. (Hopefully the overhead in
1884      looking for SvIOK and checking for overflow will not outweigh the
1885      fp to integer speedup)
1886    * will slow down integer operations (callers of SvIV) on "inaccurate"
1887      values, as the change from SvIOK to SvIOKp will cause a call into
1888      sv_2iv each time rather than a macro access direct to the IV slot
1889    * should speed up number->string conversion on integers as IV is
1890      favoured when IV and NV are equally accurate
1891
1892    ####################################################################
1893    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1894    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1895    On the other hand, SvUOK is true iff UV.
1896    ####################################################################
1897
1898    Your mileage will vary depending your CPU's relative fp to integer
1899    performance ratio.
1900 */
1901
1902 #ifndef NV_PRESERVES_UV
1903 #  define IS_NUMBER_UNDERFLOW_IV 1
1904 #  define IS_NUMBER_UNDERFLOW_UV 2
1905 #  define IS_NUMBER_IV_AND_UV    2
1906 #  define IS_NUMBER_OVERFLOW_IV  4
1907 #  define IS_NUMBER_OVERFLOW_UV  5
1908
1909 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1910
1911 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1912 STATIC int
1913 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1914 #  ifdef DEBUGGING
1915                        , I32 numtype
1916 #  endif
1917                        )
1918 {
1919     dVAR;
1920
1921     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1922
1923     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));
1924     if (SvNVX(sv) < (NV)IV_MIN) {
1925         (void)SvIOKp_on(sv);
1926         (void)SvNOK_on(sv);
1927         SvIV_set(sv, IV_MIN);
1928         return IS_NUMBER_UNDERFLOW_IV;
1929     }
1930     if (SvNVX(sv) > (NV)UV_MAX) {
1931         (void)SvIOKp_on(sv);
1932         (void)SvNOK_on(sv);
1933         SvIsUV_on(sv);
1934         SvUV_set(sv, UV_MAX);
1935         return IS_NUMBER_OVERFLOW_UV;
1936     }
1937     (void)SvIOKp_on(sv);
1938     (void)SvNOK_on(sv);
1939     /* Can't use strtol etc to convert this string.  (See truth table in
1940        sv_2iv  */
1941     if (SvNVX(sv) <= (UV)IV_MAX) {
1942         SvIV_set(sv, I_V(SvNVX(sv)));
1943         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1944             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1945         } else {
1946             /* Integer is imprecise. NOK, IOKp */
1947         }
1948         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1949     }
1950     SvIsUV_on(sv);
1951     SvUV_set(sv, U_V(SvNVX(sv)));
1952     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1953         if (SvUVX(sv) == UV_MAX) {
1954             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1955                possibly be preserved by NV. Hence, it must be overflow.
1956                NOK, IOKp */
1957             return IS_NUMBER_OVERFLOW_UV;
1958         }
1959         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1960     } else {
1961         /* Integer is imprecise. NOK, IOKp */
1962     }
1963     return IS_NUMBER_OVERFLOW_IV;
1964 }
1965 #endif /* !NV_PRESERVES_UV*/
1966
1967 STATIC bool
1968 S_sv_2iuv_common(pTHX_ SV *const sv)
1969 {
1970     dVAR;
1971
1972     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1973
1974     if (SvNOKp(sv)) {
1975         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1976          * without also getting a cached IV/UV from it at the same time
1977          * (ie PV->NV conversion should detect loss of accuracy and cache
1978          * IV or UV at same time to avoid this. */
1979         /* IV-over-UV optimisation - choose to cache IV if possible */
1980
1981         if (SvTYPE(sv) == SVt_NV)
1982             sv_upgrade(sv, SVt_PVNV);
1983
1984         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
1985         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1986            certainly cast into the IV range at IV_MAX, whereas the correct
1987            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1988            cases go to UV */
1989 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1990         if (Perl_isnan(SvNVX(sv))) {
1991             SvUV_set(sv, 0);
1992             SvIsUV_on(sv);
1993             return FALSE;
1994         }
1995 #endif
1996         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
1997             SvIV_set(sv, I_V(SvNVX(sv)));
1998             if (SvNVX(sv) == (NV) SvIVX(sv)
1999 #ifndef NV_PRESERVES_UV
2000                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2001                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2002                 /* Don't flag it as "accurately an integer" if the number
2003                    came from a (by definition imprecise) NV operation, and
2004                    we're outside the range of NV integer precision */
2005 #endif
2006                 ) {
2007                 if (SvNOK(sv))
2008                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2009                 else {
2010                     /* scalar has trailing garbage, eg "42a" */
2011                 }
2012                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2013                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2014                                       PTR2UV(sv),
2015                                       SvNVX(sv),
2016                                       SvIVX(sv)));
2017
2018             } else {
2019                 /* IV not precise.  No need to convert from PV, as NV
2020                    conversion would already have cached IV if it detected
2021                    that PV->IV would be better than PV->NV->IV
2022                    flags already correct - don't set public IOK.  */
2023                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2024                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2025                                       PTR2UV(sv),
2026                                       SvNVX(sv),
2027                                       SvIVX(sv)));
2028             }
2029             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2030                but the cast (NV)IV_MIN rounds to a the value less (more
2031                negative) than IV_MIN which happens to be equal to SvNVX ??
2032                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2033                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2034                (NV)UVX == NVX are both true, but the values differ. :-(
2035                Hopefully for 2s complement IV_MIN is something like
2036                0x8000000000000000 which will be exact. NWC */
2037         }
2038         else {
2039             SvUV_set(sv, U_V(SvNVX(sv)));
2040             if (
2041                 (SvNVX(sv) == (NV) SvUVX(sv))
2042 #ifndef  NV_PRESERVES_UV
2043                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2044                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2045                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2046                 /* Don't flag it as "accurately an integer" if the number
2047                    came from a (by definition imprecise) NV operation, and
2048                    we're outside the range of NV integer precision */
2049 #endif
2050                 && SvNOK(sv)
2051                 )
2052                 SvIOK_on(sv);
2053             SvIsUV_on(sv);
2054             DEBUG_c(PerlIO_printf(Perl_debug_log,
2055                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2056                                   PTR2UV(sv),
2057                                   SvUVX(sv),
2058                                   SvUVX(sv)));
2059         }
2060     }
2061     else if (SvPOKp(sv) && SvLEN(sv)) {
2062         UV value;
2063         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2064         /* We want to avoid a possible problem when we cache an IV/ a UV which
2065            may be later translated to an NV, and the resulting NV is not
2066            the same as the direct translation of the initial string
2067            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2068            be careful to ensure that the value with the .456 is around if the
2069            NV value is requested in the future).
2070         
2071            This means that if we cache such an IV/a UV, we need to cache the
2072            NV as well.  Moreover, we trade speed for space, and do not
2073            cache the NV if we are sure it's not needed.
2074          */
2075
2076         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2077         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2078              == IS_NUMBER_IN_UV) {
2079             /* It's definitely an integer, only upgrade to PVIV */
2080             if (SvTYPE(sv) < SVt_PVIV)
2081                 sv_upgrade(sv, SVt_PVIV);
2082             (void)SvIOK_on(sv);
2083         } else if (SvTYPE(sv) < SVt_PVNV)
2084             sv_upgrade(sv, SVt_PVNV);
2085
2086         /* If NVs preserve UVs then we only use the UV value if we know that
2087            we aren't going to call atof() below. If NVs don't preserve UVs
2088            then the value returned may have more precision than atof() will
2089            return, even though value isn't perfectly accurate.  */
2090         if ((numtype & (IS_NUMBER_IN_UV
2091 #ifdef NV_PRESERVES_UV
2092                         | IS_NUMBER_NOT_INT
2093 #endif
2094             )) == IS_NUMBER_IN_UV) {
2095             /* This won't turn off the public IOK flag if it was set above  */
2096             (void)SvIOKp_on(sv);
2097
2098             if (!(numtype & IS_NUMBER_NEG)) {
2099                 /* positive */;
2100                 if (value <= (UV)IV_MAX) {
2101                     SvIV_set(sv, (IV)value);
2102                 } else {
2103                     /* it didn't overflow, and it was positive. */
2104                     SvUV_set(sv, value);
2105                     SvIsUV_on(sv);
2106                 }
2107             } else {
2108                 /* 2s complement assumption  */
2109                 if (value <= (UV)IV_MIN) {
2110                     SvIV_set(sv, -(IV)value);
2111                 } else {
2112                     /* Too negative for an IV.  This is a double upgrade, but
2113                        I'm assuming it will be rare.  */
2114                     if (SvTYPE(sv) < SVt_PVNV)
2115                         sv_upgrade(sv, SVt_PVNV);
2116                     SvNOK_on(sv);
2117                     SvIOK_off(sv);
2118                     SvIOKp_on(sv);
2119                     SvNV_set(sv, -(NV)value);
2120                     SvIV_set(sv, IV_MIN);
2121                 }
2122             }
2123         }
2124         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2125            will be in the previous block to set the IV slot, and the next
2126            block to set the NV slot.  So no else here.  */
2127         
2128         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2129             != IS_NUMBER_IN_UV) {
2130             /* It wasn't an (integer that doesn't overflow the UV). */
2131             SvNV_set(sv, Atof(SvPVX_const(sv)));
2132
2133             if (! numtype && ckWARN(WARN_NUMERIC))
2134                 not_a_number(sv);
2135
2136 #if defined(USE_LONG_DOUBLE)
2137             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2138                                   PTR2UV(sv), SvNVX(sv)));
2139 #else
2140             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2141                                   PTR2UV(sv), SvNVX(sv)));
2142 #endif
2143
2144 #ifdef NV_PRESERVES_UV
2145             (void)SvIOKp_on(sv);
2146             (void)SvNOK_on(sv);
2147             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2148                 SvIV_set(sv, I_V(SvNVX(sv)));
2149                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2150                     SvIOK_on(sv);
2151                 } else {
2152                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2153                 }
2154                 /* UV will not work better than IV */
2155             } else {
2156                 if (SvNVX(sv) > (NV)UV_MAX) {
2157                     SvIsUV_on(sv);
2158                     /* Integer is inaccurate. NOK, IOKp, is UV */
2159                     SvUV_set(sv, UV_MAX);
2160                 } else {
2161                     SvUV_set(sv, U_V(SvNVX(sv)));
2162                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2163                        NV preservse UV so can do correct comparison.  */
2164                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2165                         SvIOK_on(sv);
2166                     } else {
2167                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2168                     }
2169                 }
2170                 SvIsUV_on(sv);
2171             }
2172 #else /* NV_PRESERVES_UV */
2173             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2174                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2175                 /* The IV/UV slot will have been set from value returned by
2176                    grok_number above.  The NV slot has just been set using
2177                    Atof.  */
2178                 SvNOK_on(sv);
2179                 assert (SvIOKp(sv));
2180             } else {
2181                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2182                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2183                     /* Small enough to preserve all bits. */
2184                     (void)SvIOKp_on(sv);
2185                     SvNOK_on(sv);
2186                     SvIV_set(sv, I_V(SvNVX(sv)));
2187                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2188                         SvIOK_on(sv);
2189                     /* Assumption: first non-preserved integer is < IV_MAX,
2190                        this NV is in the preserved range, therefore: */
2191                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2192                           < (UV)IV_MAX)) {
2193                         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);
2194                     }
2195                 } else {
2196                     /* IN_UV NOT_INT
2197                          0      0       already failed to read UV.
2198                          0      1       already failed to read UV.
2199                          1      0       you won't get here in this case. IV/UV
2200                                         slot set, public IOK, Atof() unneeded.
2201                          1      1       already read UV.
2202                        so there's no point in sv_2iuv_non_preserve() attempting
2203                        to use atol, strtol, strtoul etc.  */
2204 #  ifdef DEBUGGING
2205                     sv_2iuv_non_preserve (sv, numtype);
2206 #  else
2207                     sv_2iuv_non_preserve (sv);
2208 #  endif
2209                 }
2210             }
2211 #endif /* NV_PRESERVES_UV */
2212         /* It might be more code efficient to go through the entire logic above
2213            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2214            gets complex and potentially buggy, so more programmer efficient
2215            to do it this way, by turning off the public flags:  */
2216         if (!numtype)
2217             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2218         }
2219     }
2220     else  {
2221         if (isGV_with_GP(sv))
2222             return glob_2number(MUTABLE_GV(sv));
2223
2224         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2225             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2226                 report_uninit(sv);
2227         }
2228         if (SvTYPE(sv) < SVt_IV)
2229             /* Typically the caller expects that sv_any is not NULL now.  */
2230             sv_upgrade(sv, SVt_IV);
2231         /* Return 0 from the caller.  */
2232         return TRUE;
2233     }
2234     return FALSE;
2235 }
2236
2237 /*
2238 =for apidoc sv_2iv_flags
2239
2240 Return the integer value of an SV, doing any necessary string
2241 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2242 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2243
2244 =cut
2245 */
2246
2247 IV
2248 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2249 {
2250     dVAR;
2251     if (!sv)
2252         return 0;
2253     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2254         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2255            cache IVs just in case. In practice it seems that they never
2256            actually anywhere accessible by user Perl code, let alone get used
2257            in anything other than a string context.  */
2258         if (flags & SV_GMAGIC)
2259             mg_get(sv);
2260         if (SvIOKp(sv))
2261             return SvIVX(sv);
2262         if (SvNOKp(sv)) {
2263             return I_V(SvNVX(sv));
2264         }
2265         if (SvPOKp(sv) && SvLEN(sv)) {
2266             UV value;
2267             const int numtype
2268                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2269
2270             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2271                 == IS_NUMBER_IN_UV) {
2272                 /* It's definitely an integer */
2273                 if (numtype & IS_NUMBER_NEG) {
2274                     if (value < (UV)IV_MIN)
2275                         return -(IV)value;
2276                 } else {
2277                     if (value < (UV)IV_MAX)
2278                         return (IV)value;
2279                 }
2280             }
2281             if (!numtype) {
2282                 if (ckWARN(WARN_NUMERIC))
2283                     not_a_number(sv);
2284             }
2285             return I_V(Atof(SvPVX_const(sv)));
2286         }
2287         if (SvROK(sv)) {
2288             goto return_rok;
2289         }
2290         assert(SvTYPE(sv) >= SVt_PVMG);
2291         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2292     } else if (SvTHINKFIRST(sv)) {
2293         if (SvROK(sv)) {
2294         return_rok:
2295             if (SvAMAGIC(sv)) {
2296                 SV * tmpstr;
2297                 if (flags & SV_SKIP_OVERLOAD)
2298                     return 0;
2299                 tmpstr=AMG_CALLun(sv,numer);
2300                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2301                     return SvIV(tmpstr);
2302                 }
2303             }
2304             return PTR2IV(SvRV(sv));
2305         }
2306         if (SvIsCOW(sv)) {
2307             sv_force_normal_flags(sv, 0);
2308         }
2309         if (SvREADONLY(sv) && !SvOK(sv)) {
2310             if (ckWARN(WARN_UNINITIALIZED))
2311                 report_uninit(sv);
2312             return 0;
2313         }
2314     }
2315     if (!SvIOKp(sv)) {
2316         if (S_sv_2iuv_common(aTHX_ sv))
2317             return 0;
2318     }
2319     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2320         PTR2UV(sv),SvIVX(sv)));
2321     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2322 }
2323
2324 /*
2325 =for apidoc sv_2uv_flags
2326
2327 Return the unsigned integer value of an SV, doing any necessary string
2328 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2329 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2330
2331 =cut
2332 */
2333
2334 UV
2335 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2336 {
2337     dVAR;
2338     if (!sv)
2339         return 0;
2340     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2341         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2342            cache IVs just in case.  */
2343         if (flags & SV_GMAGIC)
2344             mg_get(sv);
2345         if (SvIOKp(sv))
2346             return SvUVX(sv);
2347         if (SvNOKp(sv))
2348             return U_V(SvNVX(sv));
2349         if (SvPOKp(sv) && SvLEN(sv)) {
2350             UV value;
2351             const int numtype
2352                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2353
2354             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2355                 == IS_NUMBER_IN_UV) {
2356                 /* It's definitely an integer */
2357                 if (!(numtype & IS_NUMBER_NEG))
2358                     return value;
2359             }
2360             if (!numtype) {
2361                 if (ckWARN(WARN_NUMERIC))
2362                     not_a_number(sv);
2363             }
2364             return U_V(Atof(SvPVX_const(sv)));
2365         }
2366         if (SvROK(sv)) {
2367             goto return_rok;
2368         }
2369         assert(SvTYPE(sv) >= SVt_PVMG);
2370         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2371     } else if (SvTHINKFIRST(sv)) {
2372         if (SvROK(sv)) {
2373         return_rok:
2374             if (SvAMAGIC(sv)) {
2375                 SV *tmpstr;
2376                 if (flags & SV_SKIP_OVERLOAD)
2377                     return 0;
2378                 tmpstr = AMG_CALLun(sv,numer);
2379                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2380                     return SvUV(tmpstr);
2381                 }
2382             }
2383             return PTR2UV(SvRV(sv));
2384         }
2385         if (SvIsCOW(sv)) {
2386             sv_force_normal_flags(sv, 0);
2387         }
2388         if (SvREADONLY(sv) && !SvOK(sv)) {
2389             if (ckWARN(WARN_UNINITIALIZED))
2390                 report_uninit(sv);
2391             return 0;
2392         }
2393     }
2394     if (!SvIOKp(sv)) {
2395         if (S_sv_2iuv_common(aTHX_ sv))
2396             return 0;
2397     }
2398
2399     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2400                           PTR2UV(sv),SvUVX(sv)));
2401     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2402 }
2403
2404 /*
2405 =for apidoc sv_2nv_flags
2406
2407 Return the num value of an SV, doing any necessary string or integer
2408 conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2409 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2410
2411 =cut
2412 */
2413
2414 NV
2415 Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
2416 {
2417     dVAR;
2418     if (!sv)
2419         return 0.0;
2420     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2421         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2422            cache IVs just in case.  */
2423         if (flags & SV_GMAGIC)
2424             mg_get(sv);
2425         if (SvNOKp(sv))
2426             return SvNVX(sv);
2427         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2428             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2429                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2430                 not_a_number(sv);
2431             return Atof(SvPVX_const(sv));
2432         }
2433         if (SvIOKp(sv)) {
2434             if (SvIsUV(sv))
2435                 return (NV)SvUVX(sv);
2436             else
2437                 return (NV)SvIVX(sv);
2438         }
2439         if (SvROK(sv)) {
2440             goto return_rok;
2441         }
2442         assert(SvTYPE(sv) >= SVt_PVMG);
2443         /* This falls through to the report_uninit near the end of the
2444            function. */
2445     } else if (SvTHINKFIRST(sv)) {
2446         if (SvROK(sv)) {
2447         return_rok:
2448             if (SvAMAGIC(sv)) {
2449                 SV *tmpstr;
2450                 if (flags & SV_SKIP_OVERLOAD)
2451                     return 0;
2452                 tmpstr = AMG_CALLun(sv,numer);
2453                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2454                     return SvNV(tmpstr);
2455                 }
2456             }
2457             return PTR2NV(SvRV(sv));
2458         }
2459         if (SvIsCOW(sv)) {
2460             sv_force_normal_flags(sv, 0);
2461         }
2462         if (SvREADONLY(sv) && !SvOK(sv)) {
2463             if (ckWARN(WARN_UNINITIALIZED))
2464                 report_uninit(sv);
2465             return 0.0;
2466         }
2467     }
2468     if (SvTYPE(sv) < SVt_NV) {
2469         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2470         sv_upgrade(sv, SVt_NV);
2471 #ifdef USE_LONG_DOUBLE
2472         DEBUG_c({
2473             STORE_NUMERIC_LOCAL_SET_STANDARD();
2474             PerlIO_printf(Perl_debug_log,
2475                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2476                           PTR2UV(sv), SvNVX(sv));
2477             RESTORE_NUMERIC_LOCAL();
2478         });
2479 #else
2480         DEBUG_c({
2481             STORE_NUMERIC_LOCAL_SET_STANDARD();
2482             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2483                           PTR2UV(sv), SvNVX(sv));
2484             RESTORE_NUMERIC_LOCAL();
2485         });
2486 #endif
2487     }
2488     else if (SvTYPE(sv) < SVt_PVNV)
2489         sv_upgrade(sv, SVt_PVNV);
2490     if (SvNOKp(sv)) {
2491         return SvNVX(sv);
2492     }
2493     if (SvIOKp(sv)) {
2494         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2495 #ifdef NV_PRESERVES_UV
2496         if (SvIOK(sv))
2497             SvNOK_on(sv);
2498         else
2499             SvNOKp_on(sv);
2500 #else
2501         /* Only set the public NV OK flag if this NV preserves the IV  */
2502         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2503         if (SvIOK(sv) &&
2504             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2505                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2506             SvNOK_on(sv);
2507         else
2508             SvNOKp_on(sv);
2509 #endif
2510     }
2511     else if (SvPOKp(sv) && SvLEN(sv)) {
2512         UV value;
2513         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2514         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2515             not_a_number(sv);
2516 #ifdef NV_PRESERVES_UV
2517         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2518             == IS_NUMBER_IN_UV) {
2519             /* It's definitely an integer */
2520             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2521         } else
2522             SvNV_set(sv, Atof(SvPVX_const(sv)));
2523         if (numtype)
2524             SvNOK_on(sv);
2525         else
2526             SvNOKp_on(sv);
2527 #else
2528         SvNV_set(sv, Atof(SvPVX_const(sv)));
2529         /* Only set the public NV OK flag if this NV preserves the value in
2530            the PV at least as well as an IV/UV would.
2531            Not sure how to do this 100% reliably. */
2532         /* if that shift count is out of range then Configure's test is
2533            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2534            UV_BITS */
2535         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2536             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2537             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2538         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2539             /* Can't use strtol etc to convert this string, so don't try.
2540                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2541             SvNOK_on(sv);
2542         } else {
2543             /* value has been set.  It may not be precise.  */
2544             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2545                 /* 2s complement assumption for (UV)IV_MIN  */
2546                 SvNOK_on(sv); /* Integer is too negative.  */
2547             } else {
2548                 SvNOKp_on(sv);
2549                 SvIOKp_on(sv);
2550
2551                 if (numtype & IS_NUMBER_NEG) {
2552                     SvIV_set(sv, -(IV)value);
2553                 } else if (value <= (UV)IV_MAX) {
2554                     SvIV_set(sv, (IV)value);
2555                 } else {
2556                     SvUV_set(sv, value);
2557                     SvIsUV_on(sv);
2558                 }
2559
2560                 if (numtype & IS_NUMBER_NOT_INT) {
2561                     /* I believe that even if the original PV had decimals,
2562                        they are lost beyond the limit of the FP precision.
2563                        However, neither is canonical, so both only get p
2564                        flags.  NWC, 2000/11/25 */
2565                     /* Both already have p flags, so do nothing */
2566                 } else {
2567                     const NV nv = SvNVX(sv);
2568                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2569                         if (SvIVX(sv) == I_V(nv)) {
2570                             SvNOK_on(sv);
2571                         } else {
2572                             /* It had no "." so it must be integer.  */
2573                         }
2574                         SvIOK_on(sv);
2575                     } else {
2576                         /* between IV_MAX and NV(UV_MAX).
2577                            Could be slightly > UV_MAX */
2578
2579                         if (numtype & IS_NUMBER_NOT_INT) {
2580                             /* UV and NV both imprecise.  */
2581                         } else {
2582                             const UV nv_as_uv = U_V(nv);
2583
2584                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2585                                 SvNOK_on(sv);
2586                             }
2587                             SvIOK_on(sv);
2588                         }
2589                     }
2590                 }
2591             }
2592         }
2593         /* It might be more code efficient to go through the entire logic above
2594            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2595            gets complex and potentially buggy, so more programmer efficient
2596            to do it this way, by turning off the public flags:  */
2597         if (!numtype)
2598             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2599 #endif /* NV_PRESERVES_UV */
2600     }
2601     else  {
2602         if (isGV_with_GP(sv)) {
2603             glob_2number(MUTABLE_GV(sv));
2604             return 0.0;
2605         }
2606
2607         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2608             report_uninit(sv);
2609         assert (SvTYPE(sv) >= SVt_NV);
2610         /* Typically the caller expects that sv_any is not NULL now.  */
2611         /* XXX Ilya implies that this is a bug in callers that assume this
2612            and ideally should be fixed.  */
2613         return 0.0;
2614     }
2615 #if defined(USE_LONG_DOUBLE)
2616     DEBUG_c({
2617         STORE_NUMERIC_LOCAL_SET_STANDARD();
2618         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2619                       PTR2UV(sv), SvNVX(sv));
2620         RESTORE_NUMERIC_LOCAL();
2621     });
2622 #else
2623     DEBUG_c({
2624         STORE_NUMERIC_LOCAL_SET_STANDARD();
2625         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2626                       PTR2UV(sv), SvNVX(sv));
2627         RESTORE_NUMERIC_LOCAL();
2628     });
2629 #endif
2630     return SvNVX(sv);
2631 }
2632
2633 /*
2634 =for apidoc sv_2num
2635
2636 Return an SV with the numeric value of the source SV, doing any necessary
2637 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2638 access this function.
2639
2640 =cut
2641 */
2642
2643 SV *
2644 Perl_sv_2num(pTHX_ register SV *const sv)
2645 {
2646     PERL_ARGS_ASSERT_SV_2NUM;
2647
2648     if (!SvROK(sv))
2649         return sv;
2650     if (SvAMAGIC(sv)) {
2651         SV * const tmpsv = AMG_CALLun(sv,numer);
2652         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2653         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2654             return sv_2num(tmpsv);
2655     }
2656     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2657 }
2658
2659 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2660  * UV as a string towards the end of buf, and return pointers to start and
2661  * end of it.
2662  *
2663  * We assume that buf is at least TYPE_CHARS(UV) long.
2664  */
2665
2666 static char *
2667 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2668 {
2669     char *ptr = buf + TYPE_CHARS(UV);
2670     char * const ebuf = ptr;
2671     int sign;
2672
2673     PERL_ARGS_ASSERT_UIV_2BUF;
2674
2675     if (is_uv)
2676         sign = 0;
2677     else if (iv >= 0) {
2678         uv = iv;
2679         sign = 0;
2680     } else {
2681         uv = -iv;
2682         sign = 1;
2683     }
2684     do {
2685         *--ptr = '0' + (char)(uv % 10);
2686     } while (uv /= 10);
2687     if (sign)
2688         *--ptr = '-';
2689     *peob = ebuf;
2690     return ptr;
2691 }
2692
2693 /*
2694 =for apidoc sv_2pv_flags
2695
2696 Returns a pointer to the string value of an SV, and sets *lp to its length.
2697 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2698 if necessary.
2699 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2700 usually end up here too.
2701
2702 =cut
2703 */
2704
2705 char *
2706 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2707 {
2708     dVAR;
2709     register char *s;
2710
2711     if (!sv) {
2712         if (lp)
2713             *lp = 0;
2714         return (char *)"";
2715     }
2716     if (SvGMAGICAL(sv)) {
2717         if (flags & SV_GMAGIC)
2718             mg_get(sv);
2719         if (SvPOKp(sv)) {
2720             if (lp)
2721                 *lp = SvCUR(sv);
2722             if (flags & SV_MUTABLE_RETURN)
2723                 return SvPVX_mutable(sv);
2724             if (flags & SV_CONST_RETURN)
2725                 return (char *)SvPVX_const(sv);
2726             return SvPVX(sv);
2727         }
2728         if (SvIOKp(sv) || SvNOKp(sv)) {
2729             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2730             STRLEN len;
2731
2732             if (SvIOKp(sv)) {
2733                 len = SvIsUV(sv)
2734                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2735                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2736             } else {
2737                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2738                 len = strlen(tbuf);
2739             }
2740             assert(!SvROK(sv));
2741             {
2742                 dVAR;
2743
2744                 if (len == 2 && tbuf[0] == '-' && tbuf[1] == '0') {
2745                     tbuf[0] = '0';
2746                     tbuf[1] = 0;
2747                     len = 1;
2748                 }
2749                 SvUPGRADE(sv, SVt_PV);
2750                 if (lp)
2751                     *lp = len;
2752                 s = SvGROW_mutable(sv, len + 1);
2753                 SvCUR_set(sv, len);
2754                 SvPOKp_on(sv);
2755                 return (char*)memcpy(s, tbuf, len + 1);
2756             }
2757         }
2758         if (SvROK(sv)) {
2759             goto return_rok;
2760         }
2761         assert(SvTYPE(sv) >= SVt_PVMG);
2762         /* This falls through to the report_uninit near the end of the
2763            function. */
2764     } else if (SvTHINKFIRST(sv)) {
2765         if (SvROK(sv)) {
2766         return_rok:
2767             if (SvAMAGIC(sv)) {
2768                 SV *tmpstr;
2769                 if (flags & SV_SKIP_OVERLOAD)
2770                     return NULL;
2771                 tmpstr = AMG_CALLun(sv,string);
2772                 TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2773                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2774                     /* Unwrap this:  */
2775                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2776                      */
2777
2778                     char *pv;
2779                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2780                         if (flags & SV_CONST_RETURN) {
2781                             pv = (char *) SvPVX_const(tmpstr);
2782                         } else {
2783                             pv = (flags & SV_MUTABLE_RETURN)
2784                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2785                         }
2786                         if (lp)
2787                             *lp = SvCUR(tmpstr);
2788                     } else {
2789                         pv = sv_2pv_flags(tmpstr, lp, flags);
2790                     }
2791                     if (SvUTF8(tmpstr))
2792                         SvUTF8_on(sv);
2793                     else
2794                         SvUTF8_off(sv);
2795                     return pv;
2796                 }
2797             }
2798             {
2799                 STRLEN len;
2800                 char *retval;
2801                 char *buffer;
2802                 SV *const referent = SvRV(sv);
2803
2804                 if (!referent) {
2805                     len = 7;
2806                     retval = buffer = savepvn("NULLREF", len);
2807                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2808                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2809                     I32 seen_evals = 0;
2810
2811                     assert(re);
2812                         
2813                     /* If the regex is UTF-8 we want the containing scalar to
2814                        have an UTF-8 flag too */
2815                     if (RX_UTF8(re))
2816                         SvUTF8_on(sv);
2817                     else
2818                         SvUTF8_off(sv); 
2819
2820                     if ((seen_evals = RX_SEEN_EVALS(re)))
2821                         PL_reginterp_cnt += seen_evals;
2822
2823                     if (lp)
2824                         *lp = RX_WRAPLEN(re);
2825  
2826                     return RX_WRAPPED(re);
2827                 } else {
2828                     const char *const typestr = sv_reftype(referent, 0);
2829                     const STRLEN typelen = strlen(typestr);
2830                     UV addr = PTR2UV(referent);
2831                     const char *stashname = NULL;
2832                     STRLEN stashnamelen = 0; /* hush, gcc */
2833                     const char *buffer_end;
2834
2835                     if (SvOBJECT(referent)) {
2836                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2837
2838                         if (name) {
2839                             stashname = HEK_KEY(name);
2840                             stashnamelen = HEK_LEN(name);
2841
2842                             if (HEK_UTF8(name)) {
2843                                 SvUTF8_on(sv);
2844                             } else {
2845                                 SvUTF8_off(sv);
2846                             }
2847                         } else {
2848                             stashname = "__ANON__";
2849                             stashnamelen = 8;
2850                         }
2851                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2852                             + 2 * sizeof(UV) + 2 /* )\0 */;
2853                     } else {
2854                         len = typelen + 3 /* (0x */
2855                             + 2 * sizeof(UV) + 2 /* )\0 */;
2856                     }
2857
2858                     Newx(buffer, len, char);
2859                     buffer_end = retval = buffer + len;
2860
2861                     /* Working backwards  */
2862                     *--retval = '\0';
2863                     *--retval = ')';
2864                     do {
2865                         *--retval = PL_hexdigit[addr & 15];
2866                     } while (addr >>= 4);
2867                     *--retval = 'x';
2868                     *--retval = '0';
2869                     *--retval = '(';
2870
2871                     retval -= typelen;
2872                     memcpy(retval, typestr, typelen);
2873
2874                     if (stashname) {
2875                         *--retval = '=';
2876                         retval -= stashnamelen;
2877                         memcpy(retval, stashname, stashnamelen);
2878                     }
2879                     /* retval may not neccesarily have reached the start of the
2880                        buffer here.  */
2881                     assert (retval >= buffer);
2882
2883                     len = buffer_end - retval - 1; /* -1 for that \0  */
2884                 }
2885                 if (lp)
2886                     *lp = len;
2887                 SAVEFREEPV(buffer);
2888                 return retval;
2889             }
2890         }
2891         if (SvREADONLY(sv) && !SvOK(sv)) {
2892             if (lp)
2893                 *lp = 0;
2894             if (flags & SV_UNDEF_RETURNS_NULL)
2895                 return NULL;
2896             if (ckWARN(WARN_UNINITIALIZED))
2897                 report_uninit(sv);
2898             return (char *)"";
2899         }
2900     }
2901     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2902         /* I'm assuming that if both IV and NV are equally valid then
2903            converting the IV is going to be more efficient */
2904         const U32 isUIOK = SvIsUV(sv);
2905         char buf[TYPE_CHARS(UV)];
2906         char *ebuf, *ptr;
2907         STRLEN len;
2908
2909         if (SvTYPE(sv) < SVt_PVIV)
2910             sv_upgrade(sv, SVt_PVIV);
2911         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2912         len = ebuf - ptr;
2913         /* inlined from sv_setpvn */
2914         s = SvGROW_mutable(sv, len + 1);
2915         Move(ptr, s, len, char);
2916         s += len;
2917         *s = '\0';
2918     }
2919     else if (SvNOKp(sv)) {
2920         dSAVE_ERRNO;
2921         if (SvTYPE(sv) < SVt_PVNV)
2922             sv_upgrade(sv, SVt_PVNV);
2923         /* The +20 is pure guesswork.  Configure test needed. --jhi */
2924         s = SvGROW_mutable(sv, NV_DIG + 20);
2925         /* some Xenix systems wipe out errno here */
2926 #ifdef apollo
2927         if (SvNVX(sv) == 0.0)
2928             my_strlcpy(s, "0", SvLEN(sv));
2929         else
2930 #endif /*apollo*/
2931         {
2932             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2933         }
2934         RESTORE_ERRNO;
2935         if (*s == '-' && s[1] == '0' && !s[2]) {
2936             s[0] = '0';
2937             s[1] = 0;
2938         }
2939         while (*s) s++;
2940 #ifdef hcx
2941         if (s[-1] == '.')
2942             *--s = '\0';
2943 #endif
2944     }
2945     else {
2946         if (isGV_with_GP(sv)) {
2947             GV *const gv = MUTABLE_GV(sv);
2948             const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
2949             SV *const buffer = sv_newmortal();
2950
2951             /* FAKE globs can get coerced, so need to turn this off temporarily
2952                if it is on.  */
2953             SvFAKE_off(gv);
2954             gv_efullname3(buffer, gv, "*");
2955             SvFLAGS(gv) |= wasfake;
2956
2957             if (SvPOK(buffer)) {
2958                 if (lp) {
2959                     *lp = SvCUR(buffer);
2960                 }
2961                 return SvPVX(buffer);
2962             }
2963             else {
2964                 if (lp)
2965                     *lp = 0;
2966                 return (char *)"";
2967             }
2968         }
2969
2970         if (lp)
2971             *lp = 0;
2972         if (flags & SV_UNDEF_RETURNS_NULL)
2973             return NULL;
2974         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2975             report_uninit(sv);
2976         if (SvTYPE(sv) < SVt_PV)
2977             /* Typically the caller expects that sv_any is not NULL now.  */
2978             sv_upgrade(sv, SVt_PV);
2979         return (char *)"";
2980     }
2981     {
2982         const STRLEN len = s - SvPVX_const(sv);
2983         if (lp) 
2984             *lp = len;
2985         SvCUR_set(sv, len);
2986     }
2987     SvPOK_on(sv);
2988     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
2989                           PTR2UV(sv),SvPVX_const(sv)));
2990     if (flags & SV_CONST_RETURN)
2991         return (char *)SvPVX_const(sv);
2992     if (flags & SV_MUTABLE_RETURN)
2993         return SvPVX_mutable(sv);
2994     return SvPVX(sv);
2995 }
2996
2997 /*
2998 =for apidoc sv_copypv
2999
3000 Copies a stringified representation of the source SV into the
3001 destination SV.  Automatically performs any necessary mg_get and
3002 coercion of numeric values into strings.  Guaranteed to preserve
3003 UTF8 flag even from overloaded objects.  Similar in nature to
3004 sv_2pv[_flags] but operates directly on an SV instead of just the
3005 string.  Mostly uses sv_2pv_flags to do its work, except when that
3006 would lose the UTF-8'ness of the PV.
3007
3008 =cut
3009 */
3010
3011 void
3012 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3013 {
3014     STRLEN len;
3015     const char * const s = SvPV_const(ssv,len);
3016
3017     PERL_ARGS_ASSERT_SV_COPYPV;
3018
3019     sv_setpvn(dsv,s,len);
3020     if (SvUTF8(ssv))
3021         SvUTF8_on(dsv);
3022     else
3023         SvUTF8_off(dsv);
3024 }
3025
3026 /*
3027 =for apidoc sv_2pvbyte
3028
3029 Return a pointer to the byte-encoded representation of the SV, and set *lp
3030 to its length.  May cause the SV to be downgraded from UTF-8 as a
3031 side-effect.
3032
3033 Usually accessed via the C<SvPVbyte> macro.
3034
3035 =cut
3036 */
3037
3038 char *
3039 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3040 {
3041     PERL_ARGS_ASSERT_SV_2PVBYTE;
3042
3043     sv_utf8_downgrade(sv,0);
3044     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3045 }
3046
3047 /*
3048 =for apidoc sv_2pvutf8
3049
3050 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3051 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3052
3053 Usually accessed via the C<SvPVutf8> macro.
3054
3055 =cut
3056 */
3057
3058 char *
3059 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3060 {
3061     PERL_ARGS_ASSERT_SV_2PVUTF8;
3062
3063     sv_utf8_upgrade(sv);
3064     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3065 }
3066
3067
3068 /*
3069 =for apidoc sv_2bool
3070
3071 This macro is only used by sv_true() or its macro equivalent, and only if
3072 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3073 It calls sv_2bool_flags with the SV_GMAGIC flag.
3074
3075 =for apidoc sv_2bool_flags
3076
3077 This function is only used by sv_true() and friends,  and only if
3078 the latter's argument is neither SvPOK, SvIOK nor SvNOK. If the flags
3079 contain SV_GMAGIC, then it does an mg_get() first.
3080
3081
3082 =cut
3083 */
3084
3085 bool
3086 Perl_sv_2bool_flags(pTHX_ register SV *const sv, const I32 flags)
3087 {
3088     dVAR;
3089
3090     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3091
3092     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3093
3094     if (!SvOK(sv))
3095         return 0;
3096     if (SvROK(sv)) {
3097         if (SvAMAGIC(sv)) {
3098             SV * const tmpsv = AMG_CALLun(sv,bool_);
3099             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3100                 return cBOOL(SvTRUE(tmpsv));
3101         }
3102         return SvRV(sv) != 0;
3103     }
3104     if (SvPOKp(sv)) {
3105         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3106         if (Xpvtmp &&
3107                 (*sv->sv_u.svu_pv > '0' ||
3108                 Xpvtmp->xpv_cur > 1 ||
3109                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3110             return 1;
3111         else
3112             return 0;
3113     }
3114     else {
3115         if (SvIOKp(sv))
3116             return SvIVX(sv) != 0;
3117         else {
3118             if (SvNOKp(sv))
3119                 return SvNVX(sv) != 0.0;
3120             else {
3121                 if (isGV_with_GP(sv))
3122                     return TRUE;
3123                 else
3124                     return FALSE;
3125             }
3126         }
3127     }
3128 }
3129
3130 /*
3131 =for apidoc sv_utf8_upgrade
3132
3133 Converts the PV of an SV to its UTF-8-encoded form.
3134 Forces the SV to string form if it is not already.
3135 Will C<mg_get> on C<sv> if appropriate.
3136 Always sets the SvUTF8 flag to avoid future validity checks even
3137 if the whole string is the same in UTF-8 as not.
3138 Returns the number of bytes in the converted string
3139
3140 This is not as a general purpose byte encoding to Unicode interface:
3141 use the Encode extension for that.
3142
3143 =for apidoc sv_utf8_upgrade_nomg
3144
3145 Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3146
3147 =for apidoc sv_utf8_upgrade_flags
3148
3149 Converts the PV of an SV to its UTF-8-encoded form.
3150 Forces the SV to string form if it is not already.
3151 Always sets the SvUTF8 flag to avoid future validity checks even
3152 if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3153 will C<mg_get> on C<sv> if appropriate, else not.
3154 Returns the number of bytes in the converted string
3155 C<sv_utf8_upgrade> and
3156 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3157
3158 This is not as a general purpose byte encoding to Unicode interface:
3159 use the Encode extension for that.
3160
3161 =cut
3162
3163 The grow version is currently not externally documented.  It adds a parameter,
3164 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3165 have free after it upon return.  This allows the caller to reserve extra space
3166 that it intends to fill, to avoid extra grows.
3167
3168 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3169 which can be used to tell this function to not first check to see if there are
3170 any characters that are different in UTF-8 (variant characters) which would
3171 force it to allocate a new string to sv, but to assume there are.  Typically
3172 this flag is used by a routine that has already parsed the string to find that
3173 there are such characters, and passes this information on so that the work
3174 doesn't have to be repeated.
3175
3176 (One might think that the calling routine could pass in the position of the
3177 first such variant, so it wouldn't have to be found again.  But that is not the
3178 case, because typically when the caller is likely to use this flag, it won't be
3179 calling this routine unless it finds something that won't fit into a byte.
3180 Otherwise it tries to not upgrade and just use bytes.  But some things that
3181 do fit into a byte are variants in utf8, and the caller may not have been
3182 keeping track of these.)
3183
3184 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3185 isn't guaranteed due to having other routines do the work in some input cases,
3186 or if the input is already flagged as being in utf8.
3187
3188 The speed of this could perhaps be improved for many cases if someone wanted to
3189 write a fast function that counts the number of variant characters in a string,
3190 especially if it could return the position of the first one.
3191
3192 */
3193
3194 STRLEN
3195 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3196 {
3197     dVAR;
3198
3199     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3200
3201     if (sv == &PL_sv_undef)
3202         return 0;
3203     if (!SvPOK(sv)) {
3204         STRLEN len = 0;
3205         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3206             (void) sv_2pv_flags(sv,&len, flags);
3207             if (SvUTF8(sv)) {
3208                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3209                 return len;
3210             }
3211         } else {
3212             (void) SvPV_force(sv,len);
3213         }
3214     }
3215
3216     if (SvUTF8(sv)) {
3217         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3218         return SvCUR(sv);
3219     }
3220
3221     if (SvIsCOW(sv)) {
3222         sv_force_normal_flags(sv, 0);
3223     }
3224
3225     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3226         sv_recode_to_utf8(sv, PL_encoding);
3227         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3228         return SvCUR(sv);
3229     }
3230
3231     if (SvCUR(sv) == 0) {
3232         if (extra) SvGROW(sv, extra);
3233     } else { /* Assume Latin-1/EBCDIC */
3234         /* This function could be much more efficient if we
3235          * had a FLAG in SVs to signal if there are any variant
3236          * chars in the PV.  Given that there isn't such a flag
3237          * make the loop as fast as possible (although there are certainly ways
3238          * to speed this up, eg. through vectorization) */
3239         U8 * s = (U8 *) SvPVX_const(sv);
3240         U8 * e = (U8 *) SvEND(sv);
3241         U8 *t = s;
3242         STRLEN two_byte_count = 0;
3243         
3244         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3245
3246         /* See if really will need to convert to utf8.  We mustn't rely on our
3247          * incoming SV being well formed and having a trailing '\0', as certain
3248          * code in pp_formline can send us partially built SVs. */
3249
3250         while (t < e) {
3251             const U8 ch = *t++;
3252             if (NATIVE_IS_INVARIANT(ch)) continue;
3253
3254             t--;    /* t already incremented; re-point to first variant */
3255             two_byte_count = 1;
3256             goto must_be_utf8;
3257         }
3258
3259         /* utf8 conversion not needed because all are invariants.  Mark as
3260          * UTF-8 even if no variant - saves scanning loop */
3261         SvUTF8_on(sv);
3262         return SvCUR(sv);
3263
3264 must_be_utf8:
3265
3266         /* Here, the string should be converted to utf8, either because of an
3267          * input flag (two_byte_count = 0), or because a character that
3268          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3269          * the beginning of the string (if we didn't examine anything), or to
3270          * the first variant.  In either case, everything from s to t - 1 will
3271          * occupy only 1 byte each on output.
3272          *
3273          * There are two main ways to convert.  One is to create a new string
3274          * and go through the input starting from the beginning, appending each
3275          * converted value onto the new string as we go along.  It's probably
3276          * best to allocate enough space in the string for the worst possible
3277          * case rather than possibly running out of space and having to
3278          * reallocate and then copy what we've done so far.  Since everything
3279          * from s to t - 1 is invariant, the destination can be initialized
3280          * with these using a fast memory copy
3281          *
3282          * The other way is to figure out exactly how big the string should be
3283          * by parsing the entire input.  Then you don't have to make it big
3284          * enough to handle the worst possible case, and more importantly, if
3285          * the string you already have is large enough, you don't have to
3286          * allocate a new string, you can copy the last character in the input
3287          * string to the final position(s) that will be occupied by the
3288          * converted string and go backwards, stopping at t, since everything
3289          * before that is invariant.
3290          *
3291          * There are advantages and disadvantages to each method.
3292          *
3293          * In the first method, we can allocate a new string, do the memory
3294          * copy from the s to t - 1, and then proceed through the rest of the
3295          * string byte-by-byte.
3296          *
3297          * In the second method, we proceed through the rest of the input
3298          * string just calculating how big the converted string will be.  Then
3299          * there are two cases:
3300          *  1)  if the string has enough extra space to handle the converted
3301          *      value.  We go backwards through the string, converting until we
3302          *      get to the position we are at now, and then stop.  If this
3303          *      position is far enough along in the string, this method is
3304          *      faster than the other method.  If the memory copy were the same
3305          *      speed as the byte-by-byte loop, that position would be about
3306          *      half-way, as at the half-way mark, parsing to the end and back
3307          *      is one complete string's parse, the same amount as starting
3308          *      over and going all the way through.  Actually, it would be
3309          *      somewhat less than half-way, as it's faster to just count bytes
3310          *      than to also copy, and we don't have the overhead of allocating
3311          *      a new string, changing the scalar to use it, and freeing the
3312          *      existing one.  But if the memory copy is fast, the break-even
3313          *      point is somewhere after half way.  The counting loop could be
3314          *      sped up by vectorization, etc, to move the break-even point
3315          *      further towards the beginning.
3316          *  2)  if the string doesn't have enough space to handle the converted
3317          *      value.  A new string will have to be allocated, and one might
3318          *      as well, given that, start from the beginning doing the first
3319          *      method.  We've spent extra time parsing the string and in
3320          *      exchange all we've gotten is that we know precisely how big to
3321          *      make the new one.  Perl is more optimized for time than space,
3322          *      so this case is a loser.
3323          * So what I've decided to do is not use the 2nd method unless it is
3324          * guaranteed that a new string won't have to be allocated, assuming
3325          * the worst case.  I also decided not to put any more conditions on it
3326          * than this, for now.  It seems likely that, since the worst case is
3327          * twice as big as the unknown portion of the string (plus 1), we won't
3328          * be guaranteed enough space, causing us to go to the first method,
3329          * unless the string is short, or the first variant character is near
3330          * the end of it.  In either of these cases, it seems best to use the
3331          * 2nd method.  The only circumstance I can think of where this would
3332          * be really slower is if the string had once had much more data in it
3333          * than it does now, but there is still a substantial amount in it  */
3334
3335         {
3336             STRLEN invariant_head = t - s;
3337             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3338             if (SvLEN(sv) < size) {
3339
3340                 /* Here, have decided to allocate a new string */
3341
3342                 U8 *dst;
3343                 U8 *d;
3344
3345                 Newx(dst, size, U8);
3346
3347                 /* If no known invariants at the beginning of the input string,
3348                  * set so starts from there.  Otherwise, can use memory copy to
3349                  * get up to where we are now, and then start from here */
3350
3351                 if (invariant_head <= 0) {
3352                     d = dst;
3353                 } else {
3354                     Copy(s, dst, invariant_head, char);
3355                     d = dst + invariant_head;
3356                 }
3357
3358                 while (t < e) {
3359                     const UV uv = NATIVE8_TO_UNI(*t++);
3360                     if (UNI_IS_INVARIANT(uv))
3361                         *d++ = (U8)UNI_TO_NATIVE(uv);
3362                     else {
3363                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3364                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3365                     }
3366                 }
3367                 *d = '\0';
3368                 SvPV_free(sv); /* No longer using pre-existing string */
3369                 SvPV_set(sv, (char*)dst);
3370                 SvCUR_set(sv, d - dst);
3371                 SvLEN_set(sv, size);
3372             } else {
3373
3374                 /* Here, have decided to get the exact size of the string.
3375                  * Currently this happens only when we know that there is
3376                  * guaranteed enough space to fit the converted string, so
3377                  * don't have to worry about growing.  If two_byte_count is 0,
3378                  * then t points to the first byte of the string which hasn't
3379                  * been examined yet.  Otherwise two_byte_count is 1, and t
3380                  * points to the first byte in the string that will expand to
3381                  * two.  Depending on this, start examining at t or 1 after t.
3382                  * */
3383
3384                 U8 *d = t + two_byte_count;
3385
3386
3387                 /* Count up the remaining bytes that expand to two */
3388
3389                 while (d < e) {
3390                     const U8 chr = *d++;
3391                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3392                 }
3393
3394                 /* The string will expand by just the number of bytes that
3395                  * occupy two positions.  But we are one afterwards because of
3396                  * the increment just above.  This is the place to put the
3397                  * trailing NUL, and to set the length before we decrement */
3398
3399                 d += two_byte_count;
3400                 SvCUR_set(sv, d - s);
3401                 *d-- = '\0';
3402
3403
3404                 /* Having decremented d, it points to the position to put the
3405                  * very last byte of the expanded string.  Go backwards through
3406                  * the string, copying and expanding as we go, stopping when we
3407                  * get to the part that is invariant the rest of the way down */
3408
3409                 e--;
3410                 while (e >= t) {
3411                     const U8 ch = NATIVE8_TO_UNI(*e--);
3412                     if (UNI_IS_INVARIANT(ch)) {
3413                         *d-- = UNI_TO_NATIVE(ch);
3414                     } else {
3415                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3416                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3417                     }
3418                 }
3419             }
3420         }
3421     }
3422
3423     /* Mark as UTF-8 even if no variant - saves scanning loop */
3424     SvUTF8_on(sv);
3425     return SvCUR(sv);
3426 }
3427
3428 /*
3429 =for apidoc sv_utf8_downgrade
3430
3431 Attempts to convert the PV of an SV from characters to bytes.
3432 If the PV contains a character that cannot fit
3433 in a byte, this conversion will fail;
3434 in this case, either returns false or, if C<fail_ok> is not
3435 true, croaks.
3436
3437 This is not as a general purpose Unicode to byte encoding interface:
3438 use the Encode extension for that.
3439
3440 =cut
3441 */
3442
3443 bool
3444 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3445 {
3446     dVAR;
3447
3448     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3449
3450     if (SvPOKp(sv) && SvUTF8(sv)) {
3451         if (SvCUR(sv)) {
3452             U8 *s;
3453             STRLEN len;
3454
3455             if (SvIsCOW(sv)) {
3456                 sv_force_normal_flags(sv, 0);
3457             }
3458             s = (U8 *) SvPV(sv, len);
3459             if (!utf8_to_bytes(s, &len)) {
3460                 if (fail_ok)
3461                     return FALSE;
3462                 else {
3463                     if (PL_op)
3464                         Perl_croak(aTHX_ "Wide character in %s",
3465                                    OP_DESC(PL_op));
3466                     else
3467                         Perl_croak(aTHX_ "Wide character");
3468                 }
3469             }
3470             SvCUR_set(sv, len);
3471         }
3472     }
3473     SvUTF8_off(sv);
3474     return TRUE;
3475 }
3476
3477 /*
3478 =for apidoc sv_utf8_encode
3479
3480 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3481 flag off so that it looks like octets again.
3482
3483 =cut
3484 */
3485
3486 void
3487 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3488 {
3489     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3490
3491     if (SvIsCOW(sv)) {
3492         sv_force_normal_flags(sv, 0);
3493     }
3494     if (SvREADONLY(sv)) {
3495         Perl_croak_no_modify(aTHX);
3496     }
3497     (void) sv_utf8_upgrade(sv);
3498     SvUTF8_off(sv);
3499 }
3500
3501 /*
3502 =for apidoc sv_utf8_decode
3503
3504 If the PV of the SV is an octet sequence in UTF-8
3505 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3506 so that it looks like a character. If the PV contains only single-byte
3507 characters, the C<SvUTF8> flag stays being off.
3508 Scans PV for validity and returns false if the PV is invalid UTF-8.
3509
3510 =cut
3511 */
3512
3513 bool
3514 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3515 {
3516     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3517
3518     if (SvPOKp(sv)) {
3519         const U8 *c;
3520         const U8 *e;
3521
3522         /* The octets may have got themselves encoded - get them back as
3523          * bytes
3524          */
3525         if (!sv_utf8_downgrade(sv, TRUE))
3526             return FALSE;
3527
3528         /* it is actually just a matter of turning the utf8 flag on, but
3529          * we want to make sure everything inside is valid utf8 first.
3530          */
3531         c = (const U8 *) SvPVX_const(sv);
3532         if (!is_utf8_string(c, SvCUR(sv)+1))
3533             return FALSE;
3534         e = (const U8 *) SvEND(sv);
3535         while (c < e) {
3536             const U8 ch = *c++;
3537             if (!UTF8_IS_INVARIANT(ch)) {
3538                 SvUTF8_on(sv);
3539                 break;
3540             }
3541         }
3542     }
3543     return TRUE;
3544 }
3545
3546 /*
3547 =for apidoc sv_setsv
3548
3549 Copies the contents of the source SV C<ssv> into the destination SV
3550 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3551 function if the source SV needs to be reused. Does not handle 'set' magic.
3552 Loosely speaking, it performs a copy-by-value, obliterating any previous
3553 content of the destination.
3554
3555 You probably want to use one of the assortment of wrappers, such as
3556 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3557 C<SvSetMagicSV_nosteal>.
3558
3559 =for apidoc sv_setsv_flags
3560
3561 Copies the contents of the source SV C<ssv> into the destination SV
3562 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3563 function if the source SV needs to be reused. Does not handle 'set' magic.
3564 Loosely speaking, it performs a copy-by-value, obliterating any previous
3565 content of the destination.
3566 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3567 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3568 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3569 and C<sv_setsv_nomg> are implemented in terms of this function.
3570
3571 You probably want to use one of the assortment of wrappers, such as
3572 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3573 C<SvSetMagicSV_nosteal>.
3574
3575 This is the primary function for copying scalars, and most other
3576 copy-ish functions and macros use this underneath.
3577
3578 =cut
3579 */
3580
3581 static void
3582 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3583 {
3584     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3585     HV *old_stash = NULL;
3586
3587     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3588
3589     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3590         const char * const name = GvNAME(sstr);
3591         const STRLEN len = GvNAMELEN(sstr);
3592         {
3593             if (dtype >= SVt_PV) {
3594                 SvPV_free(dstr);
3595                 SvPV_set(dstr, 0);
3596                 SvLEN_set(dstr, 0);
3597                 SvCUR_set(dstr, 0);
3598             }
3599             SvUPGRADE(dstr, SVt_PVGV);
3600             (void)SvOK_off(dstr);
3601             /* FIXME - why are we doing this, then turning it off and on again
3602                below?  */
3603             isGV_with_GP_on(dstr);
3604         }
3605         GvSTASH(dstr) = GvSTASH(sstr);
3606         if (GvSTASH(dstr))
3607             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3608         gv_name_set(MUTABLE_GV(dstr), name, len, GV_ADD);
3609         SvFAKE_on(dstr);        /* can coerce to non-glob */
3610     }
3611
3612     if(GvGP(MUTABLE_GV(sstr))) {
3613         /* If source has method cache entry, clear it */
3614         if(GvCVGEN(sstr)) {
3615             SvREFCNT_dec(GvCV(sstr));
3616             GvCV(sstr) = NULL;
3617             GvCVGEN(sstr) = 0;
3618         }
3619         /* If source has a real method, then a method is
3620            going to change */
3621         else if(GvCV((const GV *)sstr)) {
3622             mro_changes = 1;
3623         }
3624     }
3625
3626     /* If dest already had a real method, that's a change as well */
3627     if(!mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)) {
3628         mro_changes = 1;
3629     }
3630
3631     /* We don’t need to check the name of the destination if it was not a
3632        glob to begin with. */
3633     if(dtype == SVt_PVGV) {
3634         const char * const name = GvNAME((const GV *)dstr);
3635         if(strEQ(name,"ISA"))
3636             mro_changes = 2;
3637         else {
3638             const STRLEN len = GvNAMELEN(dstr);
3639             if (len > 1 && name[len-2] == ':' && name[len-1] == ':') {
3640                 mro_changes = 3;
3641
3642                 /* Set aside the old stash, so we can reset isa caches on
3643                    its subclasses. */
3644                 old_stash = GvHV(dstr);
3645             }
3646         }
3647     }
3648
3649     gp_free(MUTABLE_GV(dstr));
3650     isGV_with_GP_off(dstr);
3651     (void)SvOK_off(dstr);
3652     isGV_with_GP_on(dstr);
3653     GvINTRO_off(dstr);          /* one-shot flag */
3654     GvGP(dstr) = gp_ref(GvGP(sstr));
3655     if (SvTAINTED(sstr))
3656         SvTAINT(dstr);
3657     if (GvIMPORTED(dstr) != GVf_IMPORTED
3658         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3659         {
3660             GvIMPORTED_on(dstr);
3661         }
3662     GvMULTI_on(dstr);
3663     if(mro_changes == 2) mro_isa_changed_in(GvSTASH(dstr));
3664     else if(mro_changes == 3) {
3665         const HV * const stash = GvHV(dstr);
3666         if(stash && HvNAME(stash)) mro_package_moved(stash);
3667         if(old_stash && HvNAME(old_stash)) mro_package_moved(old_stash);
3668     }
3669     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3670     return;
3671 }
3672
3673 static void
3674 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3675 {
3676     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3677     SV *dref = NULL;
3678     const int intro = GvINTRO(dstr);
3679     SV **location;
3680     U8 import_flag = 0;
3681     const U32 stype = SvTYPE(sref);
3682
3683     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3684
3685     if (intro) {
3686         GvINTRO_off(dstr);      /* one-shot flag */
3687         GvLINE(dstr) = CopLINE(PL_curcop);
3688         GvEGV(dstr) = MUTABLE_GV(dstr);
3689     }
3690     GvMULTI_on(dstr);
3691     switch (stype) {
3692     case SVt_PVCV:
3693         location = (SV **) &GvCV(dstr);
3694         import_flag = GVf_IMPORTED_CV;
3695         goto common;
3696     case SVt_PVHV:
3697         location = (SV **) &GvHV(dstr);
3698         import_flag = GVf_IMPORTED_HV;
3699         goto common;
3700     case SVt_PVAV:
3701         location = (SV **) &GvAV(dstr);
3702         import_flag = GVf_IMPORTED_AV;
3703         goto common;
3704     case SVt_PVIO:
3705         location = (SV **) &GvIOp(dstr);
3706         goto common;
3707     case SVt_PVFM:
3708         location = (SV **) &GvFORM(dstr);
3709         goto common;
3710     default:
3711         location = &GvSV(dstr);
3712         import_flag = GVf_IMPORTED_SV;
3713     common:
3714         if (intro) {
3715             if (stype == SVt_PVCV) {
3716                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3717                 if (GvCVGEN(dstr)) {
3718                     SvREFCNT_dec(GvCV(dstr));
3719                     GvCV(dstr) = NULL;
3720                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3721                 }
3722             }
3723             SAVEGENERICSV(*location);
3724         }
3725         else
3726             dref = *location;
3727         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3728             CV* const cv = MUTABLE_CV(*location);
3729             if (cv) {
3730                 if (!GvCVGEN((const GV *)dstr) &&
3731                     (CvROOT(cv) || CvXSUB(cv)))
3732                     {
3733                         /* Redefining a sub - warning is mandatory if
3734                            it was a const and its value changed. */
3735                         if (CvCONST(cv) && CvCONST((const CV *)sref)
3736                             && cv_const_sv(cv)
3737                             == cv_const_sv((const CV *)sref)) {
3738                             NOOP;
3739                             /* They are 2 constant subroutines generated from
3740                                the same constant. This probably means that
3741                                they are really the "same" proxy subroutine
3742                                instantiated in 2 places. Most likely this is
3743                                when a constant is exported twice.  Don't warn.
3744                             */
3745                         }
3746                         else if (ckWARN(WARN_REDEFINE)
3747                                  || (CvCONST(cv)
3748                                      && (!CvCONST((const CV *)sref)
3749                                          || sv_cmp(cv_const_sv(cv),
3750                                                    cv_const_sv((const CV *)
3751                                                                sref))))) {
3752                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3753                                         (const char *)
3754                                         (CvCONST(cv)
3755                                          ? "Constant subroutine %s::%s redefined"
3756                                          : "Subroutine %s::%s redefined"),
3757                                         HvNAME_get(GvSTASH((const GV *)dstr)),
3758                                         GvENAME(MUTABLE_GV(dstr)));
3759                         }
3760                     }
3761                 if (!intro)
3762                     cv_ckproto_len(cv, (const GV *)dstr,
3763                                    SvPOK(sref) ? SvPVX_const(sref) : NULL,
3764                                    SvPOK(sref) ? SvCUR(sref) : 0);
3765             }
3766             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3767             GvASSUMECV_on(dstr);
3768             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3769         }
3770         *location = sref;
3771         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3772             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3773             GvFLAGS(dstr) |= import_flag;
3774         }
3775         if (stype == SVt_PVHV) {
3776             const char * const name = GvNAME((GV*)dstr);
3777             const STRLEN len = GvNAMELEN(dstr);
3778             if (len > 1 && name[len-2] == ':' && name[len-1] == ':') {
3779                 if(HvNAME(dref)) mro_package_moved((HV *)dref);
3780                 if(HvNAME(sref)) mro_package_moved((HV *)sref);
3781             }
3782         }
3783         else if (stype == SVt_PVAV && strEQ(GvNAME((GV*)dstr), "ISA")) {
3784             sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3785             mro_isa_changed_in(GvSTASH(dstr));
3786         }
3787         break;
3788     }
3789     SvREFCNT_dec(dref);
3790     if (SvTAINTED(sstr))
3791         SvTAINT(dstr);
3792     return;
3793 }
3794
3795 void
3796 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3797 {
3798     dVAR;
3799     register U32 sflags;
3800     register int dtype;
3801     register svtype stype;
3802
3803     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3804
3805     if (sstr == dstr)
3806         return;
3807
3808     if (SvIS_FREED(dstr)) {
3809         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3810                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3811     }
3812     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3813     if (!sstr)
3814         sstr = &PL_sv_undef;
3815     if (SvIS_FREED(sstr)) {
3816         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3817                    (void*)sstr, (void*)dstr);
3818     }
3819     stype = SvTYPE(sstr);
3820     dtype = SvTYPE(dstr);
3821
3822     (void)SvAMAGIC_off(dstr);
3823     if ( SvVOK(dstr) )
3824     {
3825         /* need to nuke the magic */
3826         mg_free(dstr);
3827     }
3828
3829     /* There's a lot of redundancy below but we're going for speed here */
3830
3831     switch (stype) {
3832     case SVt_NULL:
3833       undef_sstr:
3834         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
3835             (void)SvOK_off(dstr);
3836             return;
3837         }
3838         break;
3839     case SVt_IV:
3840         if (SvIOK(sstr)) {
3841             switch (dtype) {
3842             case SVt_NULL:
3843                 sv_upgrade(dstr, SVt_IV);
3844                 break;
3845             case SVt_NV:
3846             case SVt_PV:
3847                 sv_upgrade(dstr, SVt_PVIV);
3848                 break;
3849             case SVt_PVGV:
3850             case SVt_PVLV:
3851                 goto end_of_first_switch;
3852             }
3853             (void)SvIOK_only(dstr);
3854             SvIV_set(dstr,  SvIVX(sstr));
3855             if (SvIsUV(sstr))
3856                 SvIsUV_on(dstr);
3857             /* SvTAINTED can only be true if the SV has taint magic, which in
3858                turn means that the SV type is PVMG (or greater). This is the
3859                case statement for SVt_IV, so this cannot be true (whatever gcov
3860                may say).  */
3861             assert(!SvTAINTED(sstr));
3862             return;
3863         }
3864         if (!SvROK(sstr))
3865             goto undef_sstr;
3866         if (dtype < SVt_PV && dtype != SVt_IV)
3867             sv_upgrade(dstr, SVt_IV);
3868         break;
3869
3870     case SVt_NV:
3871         if (SvNOK(sstr)) {
3872             switch (dtype) {
3873             case SVt_NULL:
3874             case SVt_IV:
3875                 sv_upgrade(dstr, SVt_NV);
3876                 break;
3877             case SVt_PV:
3878             case SVt_PVIV:
3879                 sv_upgrade(dstr, SVt_PVNV);
3880                 break;
3881             case SVt_PVGV:
3882             case SVt_PVLV:
3883                 goto end_of_first_switch;
3884             }
3885             SvNV_set(dstr, SvNVX(sstr));
3886             (void)SvNOK_only(dstr);
3887             /* SvTAINTED can only be true if the SV has taint magic, which in
3888                turn means that the SV type is PVMG (or greater). This is the
3889                case statement for SVt_NV, so this cannot be true (whatever gcov
3890                may say).  */
3891             assert(!SvTAINTED(sstr));
3892             return;
3893         }
3894         goto undef_sstr;
3895
3896     case SVt_PVFM:
3897 #ifdef PERL_OLD_COPY_ON_WRITE
3898         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3899             if (dtype < SVt_PVIV)
3900                 sv_upgrade(dstr, SVt_PVIV);
3901             break;
3902         }
3903         /* Fall through */
3904 #endif
3905     case SVt_PV:
3906         if (dtype < SVt_PV)
3907             sv_upgrade(dstr, SVt_PV);
3908         break;
3909     case SVt_PVIV:
3910         if (dtype < SVt_PVIV)
3911             sv_upgrade(dstr, SVt_PVIV);
3912         break;
3913     case SVt_PVNV:
3914         if (dtype < SVt_PVNV)
3915             sv_upgrade(dstr, SVt_PVNV);
3916         break;
3917     default:
3918         {
3919         const char * const type = sv_reftype(sstr,0);
3920         if (PL_op)
3921             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
3922         else
3923             Perl_croak(aTHX_ "Bizarre copy of %s", type);
3924         }
3925         break;
3926
3927     case SVt_REGEXP:
3928         if (dtype < SVt_REGEXP)
3929             sv_upgrade(dstr, SVt_REGEXP);
3930         break;
3931
3932         /* case SVt_BIND: */
3933     case SVt_PVLV:
3934     case SVt_PVGV:
3935         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
3936             glob_assign_glob(dstr, sstr, dtype);
3937             return;
3938         }
3939         /* SvVALID means that this PVGV is playing at being an FBM.  */
3940         /*FALLTHROUGH*/
3941
3942     case SVt_PVMG:
3943         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3944             mg_get(sstr);
3945             if (SvTYPE(sstr) != stype)
3946                 stype = SvTYPE(sstr);
3947             if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
3948                     glob_assign_glob(dstr, sstr, dtype);
3949                     return;
3950             }
3951         }
3952         if (stype == SVt_PVLV)
3953             SvUPGRADE(dstr, SVt_PVNV);
3954         else
3955             SvUPGRADE(dstr, (svtype)stype);
3956     }
3957  end_of_first_switch:
3958
3959     /* dstr may have been upgraded.  */
3960     dtype = SvTYPE(dstr);
3961     sflags = SvFLAGS(sstr);
3962
3963     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
3964         /* Assigning to a subroutine sets the prototype.  */
3965         if (SvOK(sstr)) {
3966             STRLEN len;
3967             const char *const ptr = SvPV_const(sstr, len);
3968
3969             SvGROW(dstr, len + 1);
3970             Copy(ptr, SvPVX(dstr), len + 1, char);
3971             SvCUR_set(dstr, len);
3972             SvPOK_only(dstr);
3973             SvFLAGS(dstr) |= sflags & SVf_UTF8;
3974         } else {
3975             SvOK_off(dstr);
3976         }
3977     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
3978         const char * const type = sv_reftype(dstr,0);
3979         if (PL_op)
3980             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
3981         else
3982             Perl_croak(aTHX_ "Cannot copy to %s", type);
3983     } else if (sflags & SVf_ROK) {
3984         if (isGV_with_GP(dstr)
3985             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
3986             sstr = SvRV(sstr);
3987             if (sstr == dstr) {
3988                 if (GvIMPORTED(dstr) != GVf_IMPORTED
3989                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3990                 {
3991                     GvIMPORTED_on(dstr);
3992                 }
3993                 GvMULTI_on(dstr);
3994                 return;
3995             }
3996             glob_assign_glob(dstr, sstr, dtype);
3997             return;
3998         }
3999
4000         if (dtype >= SVt_PV) {
4001             if (isGV_with_GP(dstr)) {
4002                 glob_assign_ref(dstr, sstr);
4003                 return;
4004             }
4005             if (SvPVX_const(dstr)) {
4006                 SvPV_free(dstr);
4007                 SvLEN_set(dstr, 0);
4008                 SvCUR_set(dstr, 0);
4009             }
4010         }
4011         (void)SvOK_off(dstr);
4012         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4013         SvFLAGS(dstr) |= sflags & SVf_ROK;
4014         assert(!(sflags & SVp_NOK));
4015         assert(!(sflags & SVp_IOK));
4016         assert(!(sflags & SVf_NOK));
4017         assert(!(sflags & SVf_IOK));
4018     }
4019     else if (isGV_with_GP(dstr)) {
4020         if (!(sflags & SVf_OK)) {
4021             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4022                            "Undefined value assigned to typeglob");
4023         }
4024         else {
4025             GV *gv = gv_fetchsv(sstr, GV_ADD, SVt_PVGV);
4026             if (dstr != (const SV *)gv) {
4027                 const char * const name = GvNAME((const GV *)dstr);
4028                 const STRLEN len = GvNAMELEN(dstr);
4029                 HV *old_stash = NULL;
4030                 bool reset_isa = FALSE;
4031                 if (len > 1 && name[len-2] == ':' && name[len-1] == ':') {
4032                     /* Set aside the old stash, so we can reset isa caches
4033                        on its subclasses. */
4034                     old_stash = GvHV(dstr);
4035                     reset_isa = TRUE;
4036                 }
4037
4038                 if (GvGP(dstr))
4039                     gp_free(MUTABLE_GV(dstr));
4040                 GvGP(dstr) = gp_ref(GvGP(gv));
4041
4042                 if (reset_isa) {
4043                     const HV * const stash = GvHV(dstr);
4044                     if(stash && HvNAME(stash)) mro_package_moved(stash);
4045                     if(old_stash && HvNAME(old_stash))
4046                         mro_package_moved(old_stash);
4047                 }
4048             }
4049         }
4050     }
4051     else if (dtype == SVt_REGEXP && stype == SVt_REGEXP) {
4052         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4053     }
4054     else if (sflags & SVp_POK) {
4055         bool isSwipe = 0;
4056
4057         /*
4058          * Check to see if we can just swipe the string.  If so, it's a
4059          * possible small lose on short strings, but a big win on long ones.
4060          * It might even be a win on short strings if SvPVX_const(dstr)
4061          * has to be allocated and SvPVX_const(sstr) has to be freed.
4062          * Likewise if we can set up COW rather than doing an actual copy, we
4063          * drop to the else clause, as the swipe code and the COW setup code
4064          * have much in common.
4065          */
4066
4067         /* Whichever path we take through the next code, we want this true,
4068            and doing it now facilitates the COW check.  */
4069         (void)SvPOK_only(dstr);
4070
4071         if (
4072             /* If we're already COW then this clause is not true, and if COW
4073                is allowed then we drop down to the else and make dest COW 
4074                with us.  If caller hasn't said that we're allowed to COW
4075                shared hash keys then we don't do the COW setup, even if the
4076                source scalar is a shared hash key scalar.  */
4077             (((flags & SV_COW_SHARED_HASH_KEYS)
4078                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4079                : 1 /* If making a COW copy is forbidden then the behaviour we
4080                        desire is as if the source SV isn't actually already
4081                        COW, even if it is.  So we act as if the source flags
4082                        are not COW, rather than actually testing them.  */
4083               )
4084 #ifndef PERL_OLD_COPY_ON_WRITE
4085              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4086                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4087                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4088                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4089                 but in turn, it's somewhat dead code, never expected to go
4090                 live, but more kept as a placeholder on how to do it better
4091                 in a newer implementation.  */
4092              /* If we are COW and dstr is a suitable target then we drop down
4093                 into the else and make dest a COW of us.  */
4094              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4095 #endif
4096              )
4097             &&
4098             !(isSwipe =
4099                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4100                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4101                  (!(flags & SV_NOSTEAL)) &&
4102                                         /* and we're allowed to steal temps */
4103                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4104                  SvLEN(sstr))             /* and really is a string */
4105 #ifdef PERL_OLD_COPY_ON_WRITE
4106             && ((flags & SV_COW_SHARED_HASH_KEYS)
4107                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4108                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4109                      && SvTYPE(sstr) >= SVt_PVIV && SvTYPE(sstr) != SVt_PVFM))
4110                 : 1)
4111 #endif
4112             ) {
4113             /* Failed the swipe test, and it's not a shared hash key either.
4114                Have to copy the string.  */
4115             STRLEN len = SvCUR(sstr);
4116             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4117             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4118             SvCUR_set(dstr, len);
4119             *SvEND(dstr) = '\0';
4120         } else {
4121             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4122                be true in here.  */
4123             /* Either it's a shared hash key, or it's suitable for
4124                copy-on-write or we can swipe the string.  */
4125             if (DEBUG_C_TEST) {
4126                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4127                 sv_dump(sstr);
4128                 sv_dump(dstr);
4129             }
4130 #ifdef PERL_OLD_COPY_ON_WRITE
4131             if (!isSwipe) {
4132                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4133                     != (SVf_FAKE | SVf_READONLY)) {
4134                     SvREADONLY_on(sstr);
4135                     SvFAKE_on(sstr);
4136                     /* Make the source SV into a loop of 1.
4137                        (about to become 2) */
4138                     SV_COW_NEXT_SV_SET(sstr, sstr);
4139                 }
4140             }
4141 #endif
4142             /* Initial code is common.  */
4143             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4144                 SvPV_free(dstr);
4145             }
4146
4147             if (!isSwipe) {
4148                 /* making another shared SV.  */
4149                 STRLEN cur = SvCUR(sstr);
4150                 STRLEN len = SvLEN(sstr);
4151 #ifdef PERL_OLD_COPY_ON_WRITE
4152                 if (len) {
4153                     assert (SvTYPE(dstr) >= SVt_PVIV);
4154                     /* SvIsCOW_normal */
4155                     /* splice us in between source and next-after-source.  */
4156                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4157                     SV_COW_NEXT_SV_SET(sstr, dstr);
4158                     SvPV_set(dstr, SvPVX_mutable(sstr));
4159                 } else
4160 #endif
4161                 {
4162                     /* SvIsCOW_shared_hash */
4163                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4164                                           "Copy on write: Sharing hash\n"));
4165
4166                     assert (SvTYPE(dstr) >= SVt_PV);
4167                     SvPV_set(dstr,
4168                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4169                 }
4170                 SvLEN_set(dstr, len);
4171                 SvCUR_set(dstr, cur);
4172                 SvREADONLY_on(dstr);
4173                 SvFAKE_on(dstr);
4174             }
4175             else
4176                 {       /* Passes the swipe test.  */
4177                 SvPV_set(dstr, SvPVX_mutable(sstr));
4178                 SvLEN_set(dstr, SvLEN(sstr));
4179                 SvCUR_set(dstr, SvCUR(sstr));
4180
4181                 SvTEMP_off(dstr);
4182                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4183                 SvPV_set(sstr, NULL);
4184                 SvLEN_set(sstr, 0);
4185                 SvCUR_set(sstr, 0);
4186                 SvTEMP_off(sstr);
4187             }
4188         }
4189         if (sflags & SVp_NOK) {
4190             SvNV_set(dstr, SvNVX(sstr));
4191         }
4192         if (sflags & SVp_IOK) {
4193             SvIV_set(dstr, SvIVX(sstr));
4194             /* Must do this otherwise some other overloaded use of 0x80000000
4195                gets confused. I guess SVpbm_VALID */
4196             if (sflags & SVf_IVisUV)
4197                 SvIsUV_on(dstr);
4198         }
4199         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4200         {
4201             const MAGIC * const smg = SvVSTRING_mg(sstr);
4202             if (smg) {
4203                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4204                          smg->mg_ptr, smg->mg_len);
4205                 SvRMAGICAL_on(dstr);
4206             }
4207         }
4208     }
4209     else if (sflags & (SVp_IOK|SVp_NOK)) {
4210         (void)SvOK_off(dstr);
4211         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4212         if (sflags & SVp_IOK) {
4213             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4214             SvIV_set(dstr, SvIVX(sstr));
4215         }
4216         if (sflags & SVp_NOK) {
4217             SvNV_set(dstr, SvNVX(sstr));
4218         }
4219     }
4220     else {
4221         if (isGV_with_GP(sstr)) {
4222             /* This stringification rule for globs is spread in 3 places.
4223                This feels bad. FIXME.  */
4224             const U32 wasfake = sflags & SVf_FAKE;
4225
4226             /* FAKE globs can get coerced, so need to turn this off
4227                temporarily if it is on.  */
4228             SvFAKE_off(sstr);
4229             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4230             SvFLAGS(sstr) |= wasfake;
4231         }
4232         else
4233             (void)SvOK_off(dstr);
4234     }
4235     if (SvTAINTED(sstr))
4236         SvTAINT(dstr);
4237 }
4238
4239 /*
4240 =for apidoc sv_setsv_mg
4241
4242 Like C<sv_setsv>, but also handles 'set' magic.
4243
4244 =cut
4245 */
4246
4247 void
4248 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4249 {
4250     PERL_ARGS_ASSERT_SV_SETSV_MG;
4251
4252     sv_setsv(dstr,sstr);
4253     SvSETMAGIC(dstr);
4254 }
4255
4256 #ifdef PERL_OLD_COPY_ON_WRITE
4257 SV *
4258 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4259 {
4260     STRLEN cur = SvCUR(sstr);
4261     STRLEN len = SvLEN(sstr);
4262     register char *new_pv;
4263
4264     PERL_ARGS_ASSERT_SV_SETSV_COW;
4265
4266     if (DEBUG_C_TEST) {
4267         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4268                       (void*)sstr, (void*)dstr);
4269         sv_dump(sstr);
4270         if (dstr)
4271                     sv_dump(dstr);
4272     }
4273
4274     if (dstr) {
4275         if (SvTHINKFIRST(dstr))
4276             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4277         else if (SvPVX_const(dstr))
4278             Safefree(SvPVX_const(dstr));
4279     }
4280     else
4281         new_SV(dstr);
4282     SvUPGRADE(dstr, SVt_PVIV);
4283
4284     assert (SvPOK(sstr));
4285     assert (SvPOKp(sstr));
4286     assert (!SvIOK(sstr));
4287     assert (!SvIOKp(sstr));
4288     assert (!SvNOK(sstr));
4289     assert (!SvNOKp(sstr));
4290
4291     if (SvIsCOW(sstr)) {
4292
4293         if (SvLEN(sstr) == 0) {
4294             /* source is a COW shared hash key.  */
4295             DEBUG_C(PerlIO_printf(Perl_debug_log,
4296                                   "Fast copy on write: Sharing hash\n"));
4297             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4298             goto common_exit;
4299         }
4300         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4301     } else {
4302         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4303         SvUPGRADE(sstr, SVt_PVIV);
4304         SvREADONLY_on(sstr);
4305         SvFAKE_on(sstr);
4306         DEBUG_C(PerlIO_printf(Perl_debug_log,
4307                               "Fast copy on write: Converting sstr to COW\n"));
4308         SV_COW_NEXT_SV_SET(dstr, sstr);
4309     }
4310     SV_COW_NEXT_SV_SET(sstr, dstr);
4311     new_pv = SvPVX_mutable(sstr);
4312
4313   common_exit:
4314     SvPV_set(dstr, new_pv);
4315     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4316     if (SvUTF8(sstr))
4317         SvUTF8_on(dstr);
4318     SvLEN_set(dstr, len);
4319     SvCUR_set(dstr, cur);
4320     if (DEBUG_C_TEST) {
4321         sv_dump(dstr);
4322     }
4323     return dstr;
4324 }
4325 #endif
4326
4327 /*
4328 =for apidoc sv_setpvn
4329
4330 Copies a string into an SV.  The C<len> parameter indicates the number of
4331 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4332 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4333
4334 =cut
4335 */
4336
4337 void
4338 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4339 {
4340     dVAR;
4341     register char *dptr;
4342
4343     PERL_ARGS_ASSERT_SV_SETPVN;
4344
4345     SV_CHECK_THINKFIRST_COW_DROP(sv);
4346     if (!ptr) {
4347         (void)SvOK_off(sv);
4348         return;
4349     }
4350     else {
4351         /* len is STRLEN which is unsigned, need to copy to signed */
4352         const IV iv = len;
4353         if (iv < 0)
4354             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4355     }
4356     SvUPGRADE(sv, SVt_PV);
4357
4358     dptr = SvGROW(sv, len + 1);
4359     Move(ptr,dptr,len,char);
4360     dptr[len] = '\0';
4361     SvCUR_set(sv, len);
4362     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4363     SvTAINT(sv);
4364 }
4365
4366 /*
4367 =for apidoc sv_setpvn_mg
4368
4369 Like C<sv_setpvn>, but also handles 'set' magic.
4370
4371 =cut
4372 */
4373
4374 void
4375 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4376 {
4377     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4378
4379     sv_setpvn(sv,ptr,len);
4380     SvSETMAGIC(sv);
4381 }
4382
4383 /*
4384 =for apidoc sv_setpv
4385
4386 Copies a string into an SV.  The string must be null-terminated.  Does not
4387 handle 'set' magic.  See C<sv_setpv_mg>.
4388
4389 =cut
4390 */
4391
4392 void
4393 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4394 {
4395     dVAR;
4396     register STRLEN len;
4397
4398     PERL_ARGS_ASSERT_SV_SETPV;
4399
4400     SV_CHECK_THINKFIRST_COW_DROP(sv);
4401     if (!ptr) {
4402         (void)SvOK_off(sv);
4403         return;
4404     }
4405     len = strlen(ptr);
4406     SvUPGRADE(sv, SVt_PV);
4407
4408     SvGROW(sv, len + 1);
4409     Move(ptr,SvPVX(sv),len+1,char);
4410     SvCUR_set(sv, len);
4411     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4412     SvTAINT(sv);
4413 }
4414
4415 /*
4416 =for apidoc sv_setpv_mg
4417
4418 Like C<sv_setpv>, but also handles 'set' magic.
4419
4420 =cut
4421 */
4422
4423 void
4424 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4425 {
4426     PERL_ARGS_ASSERT_SV_SETPV_MG;
4427
4428     sv_setpv(sv,ptr);
4429     SvSETMAGIC(sv);
4430 }
4431
4432 /*
4433 =for apidoc sv_usepvn_flags
4434
4435 Tells an SV to use C<ptr> to find its string value.  Normally the
4436 string is stored inside the SV but sv_usepvn allows the SV to use an
4437 outside string.  The C<ptr> should point to memory that was allocated
4438 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4439 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4440 so that pointer should not be freed or used by the programmer after
4441 giving it to sv_usepvn, and neither should any pointers from "behind"
4442 that pointer (e.g. ptr + 1) be used.
4443
4444 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4445 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4446 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4447 C<len>, and already meets the requirements for storing in C<SvPVX>)
4448
4449 =cut
4450 */
4451
4452 void
4453 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4454 {
4455     dVAR;
4456     STRLEN allocate;
4457
4458     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4459
4460     SV_CHECK_THINKFIRST_COW_DROP(sv);
4461     SvUPGRADE(sv, SVt_PV);
4462     if (!ptr) {
4463         (void)SvOK_off(sv);
4464         if (flags & SV_SMAGIC)
4465             SvSETMAGIC(sv);
4466         return;
4467     }
4468     if (SvPVX_const(sv))
4469         SvPV_free(sv);
4470
4471 #ifdef DEBUGGING
4472     if (flags & SV_HAS_TRAILING_NUL)
4473         assert(ptr[len] == '\0');
4474 #endif
4475
4476     allocate = (flags & SV_HAS_TRAILING_NUL)
4477         ? len + 1 :
4478 #ifdef Perl_safesysmalloc_size
4479         len + 1;
4480 #else 
4481         PERL_STRLEN_ROUNDUP(len + 1);
4482 #endif
4483     if (flags & SV_HAS_TRAILING_NUL) {
4484         /* It's long enough - do nothing.
4485            Specfically Perl_newCONSTSUB is relying on this.  */
4486     } else {
4487 #ifdef DEBUGGING
4488         /* Force a move to shake out bugs in callers.  */
4489         char *new_ptr = (char*)safemalloc(allocate);
4490         Copy(ptr, new_ptr, len, char);
4491         PoisonFree(ptr,len,char);
4492         Safefree(ptr);
4493         ptr = new_ptr;
4494 #else
4495         ptr = (char*) saferealloc (ptr, allocate);
4496 #endif
4497     }
4498 #ifdef Perl_safesysmalloc_size
4499     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4500 #else
4501     SvLEN_set(sv, allocate);
4502 #endif
4503     SvCUR_set(sv, len);
4504     SvPV_set(sv, ptr);
4505     if (!(flags & SV_HAS_TRAILING_NUL)) {
4506         ptr[len] = '\0';
4507     }
4508     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4509     SvTAINT(sv);
4510     if (flags & SV_SMAGIC)
4511         SvSETMAGIC(sv);
4512 }
4513
4514 #ifdef PERL_OLD_COPY_ON_WRITE
4515 /* Need to do this *after* making the SV normal, as we need the buffer
4516    pointer to remain valid until after we've copied it.  If we let go too early,
4517    another thread could invalidate it by unsharing last of the same hash key
4518    (which it can do by means other than releasing copy-on-write Svs)
4519    or by changing the other copy-on-write SVs in the loop.  */
4520 STATIC void
4521 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4522 {
4523     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4524
4525     { /* this SV was SvIsCOW_normal(sv) */
4526          /* we need to find the SV pointing to us.  */
4527         SV *current = SV_COW_NEXT_SV(after);
4528
4529         if (current == sv) {
4530             /* The SV we point to points back to us (there were only two of us
4531                in the loop.)
4532                Hence other SV is no longer copy on write either.  */
4533             SvFAKE_off(after);
4534             SvREADONLY_off(after);
4535         } else {
4536             /* We need to follow the pointers around the loop.  */
4537             SV *next;
4538             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4539                 assert (next);
4540                 current = next;
4541                  /* don't loop forever if the structure is bust, and we have
4542                     a pointer into a closed loop.  */
4543                 assert (current != after);
4544                 assert (SvPVX_const(current) == pvx);
4545             }
4546             /* Make the SV before us point to the SV after us.  */
4547             SV_COW_NEXT_SV_SET(current, after);
4548         }
4549     }
4550 }
4551 #endif
4552 /*
4553 =for apidoc sv_force_normal_flags
4554
4555 Undo various types of fakery on an SV: if the PV is a shared string, make
4556 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4557 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4558 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4559 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4560 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4561 set to some other value.) In addition, the C<flags> parameter gets passed to
4562 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4563 with flags set to 0.
4564
4565 =cut
4566 */
4567
4568 void
4569 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4570 {
4571     dVAR;
4572
4573     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4574
4575 #ifdef PERL_OLD_COPY_ON_WRITE
4576     if (SvREADONLY(sv)) {
4577         if (SvFAKE(sv)) {
4578             const char * const pvx = SvPVX_const(sv);
4579             const STRLEN len = SvLEN(sv);
4580             const STRLEN cur = SvCUR(sv);
4581             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4582                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4583                we'll fail an assertion.  */
4584             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4585
4586             if (DEBUG_C_TEST) {
4587                 PerlIO_printf(Perl_debug_log,
4588                               "Copy on write: Force normal %ld\n",
4589                               (long) flags);
4590                 sv_dump(sv);
4591             }
4592             SvFAKE_off(sv);
4593             SvREADONLY_off(sv);
4594             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4595             SvPV_set(sv, NULL);
4596             SvLEN_set(sv, 0);
4597             if (flags & SV_COW_DROP_PV) {
4598                 /* OK, so we don't need to copy our buffer.  */
4599                 SvPOK_off(sv);
4600             } else {
4601                 SvGROW(sv, cur + 1);
4602                 Move(pvx,SvPVX(sv),cur,char);
4603                 SvCUR_set(sv, cur);
4604                 *SvEND(sv) = '\0';
4605             }
4606             if (len) {
4607                 sv_release_COW(sv, pvx, next);
4608             } else {
4609                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4610             }
4611             if (DEBUG_C_TEST) {
4612                 sv_dump(sv);
4613             }
4614         }
4615         else if (IN_PERL_RUNTIME)
4616             Perl_croak_no_modify(aTHX);
4617     }
4618 #else
4619     if (SvREADONLY(sv)) {
4620         if (SvFAKE(sv)) {
4621             const char * const pvx = SvPVX_const(sv);
4622             const STRLEN len = SvCUR(sv);
4623             SvFAKE_off(sv);
4624             SvREADONLY_off(sv);
4625             SvPV_set(sv, NULL);
4626             SvLEN_set(sv, 0);
4627             SvGROW(sv, len + 1);
4628             Move(pvx,SvPVX(sv),len,char);
4629             *SvEND(sv) = '\0';
4630             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4631         }
4632         else if (IN_PERL_RUNTIME)
4633             Perl_croak_no_modify(aTHX);
4634     }
4635 #endif
4636     if (SvROK(sv))
4637         sv_unref_flags(sv, flags);
4638     else if (SvFAKE(sv) && isGV_with_GP(sv))
4639         sv_unglob(sv);
4640     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_REGEXP) {
4641         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analagous
4642            to sv_unglob. We only need it here, so inline it.  */
4643         const svtype new_type = SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
4644         SV *const temp = newSV_type(new_type);
4645         void *const temp_p = SvANY(sv);
4646
4647         if (new_type == SVt_PVMG) {
4648             SvMAGIC_set(temp, SvMAGIC(sv));
4649             SvMAGIC_set(sv, NULL);
4650             SvSTASH_set(temp, SvSTASH(sv));
4651             SvSTASH_set(sv, NULL);
4652         }
4653         SvCUR_set(temp, SvCUR(sv));
4654         /* Remember that SvPVX is in the head, not the body. */
4655         if (SvLEN(temp)) {
4656             SvLEN_set(temp, SvLEN(sv));
4657             /* This signals "buffer is owned by someone else" in sv_clear,
4658                which is the least effort way to stop it freeing the buffer.
4659             */
4660             SvLEN_set(sv, SvLEN(sv)+1);
4661         } else {
4662             /* Their buffer is already owned by someone else. */
4663             SvPVX(sv) = savepvn(SvPVX(sv), SvCUR(sv));
4664             SvLEN_set(temp, SvCUR(sv)+1);
4665         }
4666
4667         /* Now swap the rest of the bodies. */
4668
4669         SvFLAGS(sv) &= ~(SVf_FAKE|SVTYPEMASK);
4670         SvFLAGS(sv) |= new_type;
4671         SvANY(sv) = SvANY(temp);
4672
4673         SvFLAGS(temp) &= ~(SVTYPEMASK);
4674         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
4675         SvANY(temp) = temp_p;
4676
4677         SvREFCNT_dec(temp);
4678     }
4679 }
4680
4681 /*
4682 =for apidoc sv_chop
4683
4684 Efficient removal of characters from the beginning of the string buffer.
4685 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4686 the string buffer.  The C<ptr> becomes the first character of the adjusted
4687 string. Uses the "OOK hack".
4688 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4689 refer to the same chunk of data.
4690
4691 =cut
4692 */
4693
4694 void
4695 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4696 {
4697     STRLEN delta;
4698     STRLEN old_delta;
4699     U8 *p;
4700 #ifdef DEBUGGING
4701     const U8 *real_start;
4702 #endif
4703     STRLEN max_delta;
4704
4705     PERL_ARGS_ASSERT_SV_CHOP;
4706
4707     if (!ptr || !SvPOKp(sv))
4708         return;
4709     delta = ptr - SvPVX_const(sv);
4710     if (!delta) {
4711         /* Nothing to do.  */
4712         return;
4713     }
4714     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), but after this line,
4715        nothing uses the value of ptr any more.  */
4716     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4717     if (ptr <= SvPVX_const(sv))
4718         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4719                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4720     SV_CHECK_THINKFIRST(sv);
4721     if (delta > max_delta)
4722         Perl_croak(aTHX_ "panic: sv_chop ptr=%p (was %p), start=%p, end=%p",
4723                    SvPVX_const(sv) + delta, ptr, SvPVX_const(sv),
4724                    SvPVX_const(sv) + max_delta);
4725
4726     if (!SvOOK(sv)) {
4727         if (!SvLEN(sv)) { /* make copy of shared string */
4728             const char *pvx = SvPVX_const(sv);
4729             const STRLEN len = SvCUR(sv);
4730             SvGROW(sv, len + 1);
4731             Move(pvx,SvPVX(sv),len,char);
4732             *SvEND(sv) = '\0';
4733         }
4734         SvFLAGS(sv) |= SVf_OOK;
4735         old_delta = 0;
4736     } else {
4737         SvOOK_offset(sv, old_delta);
4738     }
4739     SvLEN_set(sv, SvLEN(sv) - delta);
4740     SvCUR_set(sv, SvCUR(sv) - delta);
4741     SvPV_set(sv, SvPVX(sv) + delta);
4742
4743     p = (U8 *)SvPVX_const(sv);
4744
4745     delta += old_delta;
4746
4747 #ifdef DEBUGGING
4748     real_start = p - delta;
4749 #endif
4750
4751     assert(delta);
4752     if (delta < 0x100) {
4753         *--p = (U8) delta;
4754     } else {
4755         *--p = 0;
4756         p -= sizeof(STRLEN);
4757         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4758     }
4759
4760 #ifdef DEBUGGING
4761     /* Fill the preceding buffer with sentinals to verify that no-one is
4762        using it.  */
4763     while (p > real_start) {
4764         --p;
4765         *p = (U8)PTR2UV(p);
4766     }
4767 #endif
4768 }
4769
4770 /*
4771 =for apidoc sv_catpvn
4772
4773 Concatenates the string onto the end of the string which is in the SV.  The
4774 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4775 status set, then the bytes appended should be valid UTF-8.
4776 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4777
4778 =for apidoc sv_catpvn_flags
4779
4780 Concatenates the string onto the end of the string which is in the SV.  The
4781 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4782 status set, then the bytes appended should be valid UTF-8.
4783 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4784 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4785 in terms of this function.
4786
4787 =cut
4788 */
4789
4790 void
4791 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4792 {
4793     dVAR;
4794     STRLEN dlen;
4795     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4796
4797     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4798
4799     SvGROW(dsv, dlen + slen + 1);
4800     if (sstr == dstr)
4801         sstr = SvPVX_const(dsv);
4802     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4803     SvCUR_set(dsv, SvCUR(dsv) + slen);
4804     *SvEND(dsv) = '\0';
4805     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4806     SvTAINT(dsv);
4807     if (flags & SV_SMAGIC)
4808         SvSETMAGIC(dsv);
4809 }
4810
4811 /*
4812 =for apidoc sv_catsv
4813
4814 Concatenates the string from SV C<ssv> onto the end of the string in
4815 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4816 not 'set' magic.  See C<sv_catsv_mg>.
4817
4818 =for apidoc sv_catsv_flags
4819
4820 Concatenates the string from SV C<ssv> onto the end of the string in
4821 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4822 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4823 and C<sv_catsv_nomg> are implemented in terms of this function.
4824
4825 =cut */
4826
4827 void
4828 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
4829 {
4830     dVAR;
4831  
4832     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
4833
4834    if (ssv) {
4835         STRLEN slen;
4836         const char *spv = SvPV_flags_const(ssv, slen, flags);
4837         if (spv) {
4838             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4839                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4840                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4841                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4842                 dsv->sv_flags doesn't have that bit set.
4843                 Andy Dougherty  12 Oct 2001
4844             */
4845             const I32 sutf8 = DO_UTF8(ssv);
4846             I32 dutf8;
4847
4848             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4849                 mg_get(dsv);
4850             dutf8 = DO_UTF8(dsv);
4851
4852             if (dutf8 != sutf8) {
4853                 if (dutf8) {
4854                     /* Not modifying source SV, so taking a temporary copy. */
4855                     SV* const csv = newSVpvn_flags(spv, slen, SVs_TEMP);
4856
4857                     sv_utf8_upgrade(csv);
4858                     spv = SvPV_const(csv, slen);
4859                 }
4860                 else
4861                     /* Leave enough space for the cat that's about to happen */
4862                     sv_utf8_upgrade_flags_grow(dsv, 0, slen);
4863             }
4864             sv_catpvn_nomg(dsv, spv, slen);
4865         }
4866     }
4867     if (flags & SV_SMAGIC)
4868         SvSETMAGIC(dsv);
4869 }
4870
4871 /*
4872 =for apidoc sv_catpv
4873
4874 Concatenates the string onto the end of the string which is in the SV.
4875 If the SV has the UTF-8 status set, then the bytes appended should be
4876 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
4877
4878 =cut */
4879
4880 void
4881 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
4882 {
4883     dVAR;
4884     register STRLEN len;
4885     STRLEN tlen;
4886     char *junk;
4887
4888     PERL_ARGS_ASSERT_SV_CATPV;
4889
4890     if (!ptr)
4891         return;
4892     junk = SvPV_force(sv, tlen);
4893     len = strlen(ptr);
4894     SvGROW(sv, tlen + len + 1);
4895     if (ptr == junk)
4896         ptr = SvPVX_const(sv);
4897     Move(ptr,SvPVX(sv)+tlen,len+1,char);
4898     SvCUR_set(sv, SvCUR(sv) + len);
4899     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4900     SvTAINT(sv);
4901 }
4902
4903 /*
4904 =for apidoc sv_catpv_flags
4905
4906 Concatenates the string onto the end of the string which is in the SV.
4907 If the SV has the UTF-8 status set, then the bytes appended should
4908 be valid UTF-8.  If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get>
4909 on the SVs if appropriate, else not.
4910
4911 =cut
4912 */
4913
4914 void
4915 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, I32 flags)
4916 {
4917     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
4918     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
4919 }
4920
4921 /*
4922 =for apidoc sv_catpv_mg
4923
4924 Like C<sv_catpv>, but also handles 'set' magic.
4925
4926 =cut
4927 */
4928
4929 void
4930 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4931 {
4932     PERL_ARGS_ASSERT_SV_CATPV_MG;
4933
4934     sv_catpv(sv,ptr);
4935     SvSETMAGIC(sv);
4936 }
4937
4938 /*
4939 =for apidoc newSV
4940
4941 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4942 bytes of preallocated string space the SV should have.  An extra byte for a
4943 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4944 space is allocated.)  The reference count for the new SV is set to 1.
4945
4946 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4947 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4948 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4949 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4950 modules supporting older perls.
4951
4952 =cut
4953 */
4954
4955 SV *
4956 Perl_newSV(pTHX_ const STRLEN len)
4957 {
4958     dVAR;
4959     register SV *sv;
4960
4961     new_SV(sv);
4962     if (len) {
4963         sv_upgrade(sv, SVt_PV);
4964         SvGROW(sv, len + 1);
4965     }
4966     return sv;
4967 }
4968 /*
4969 =for apidoc sv_magicext
4970
4971 Adds magic to an SV, upgrading it if necessary. Applies the
4972 supplied vtable and returns a pointer to the magic added.
4973
4974 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4975 In particular, you can add magic to SvREADONLY SVs, and add more than
4976 one instance of the same 'how'.
4977
4978 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4979 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4980 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4981 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4982
4983 (This is now used as a subroutine by C<sv_magic>.)
4984
4985 =cut
4986 */
4987 MAGIC * 
4988 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
4989                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
4990 {
4991     dVAR;
4992     MAGIC* mg;
4993
4994     PERL_ARGS_ASSERT_SV_MAGICEXT;
4995
4996     SvUPGRADE(sv, SVt_PVMG);
4997     Newxz(mg, 1, MAGIC);
4998     mg->mg_moremagic = SvMAGIC(sv);
4999     SvMAGIC_set(sv, mg);
5000
5001     /* Sometimes a magic contains a reference loop, where the sv and
5002        object refer to each other.  To prevent a reference loop that
5003        would prevent such objects being freed, we look for such loops
5004        and if we find one we avoid incrementing the object refcount.
5005
5006        Note we cannot do this to avoid self-tie loops as intervening RV must
5007        have its REFCNT incremented to keep it in existence.
5008
5009     */
5010     if (!obj || obj == sv ||
5011         how == PERL_MAGIC_arylen ||
5012         how == PERL_MAGIC_symtab ||
5013         (SvTYPE(obj) == SVt_PVGV &&
5014             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5015              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5016              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5017     {
5018         mg->mg_obj = obj;
5019     }
5020     else {
5021         mg->mg_obj = SvREFCNT_inc_simple(obj);
5022         mg->mg_flags |= MGf_REFCOUNTED;
5023     }
5024
5025     /* Normal self-ties simply pass a null object, and instead of
5026        using mg_obj directly, use the SvTIED_obj macro to produce a
5027        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5028        with an RV obj pointing to the glob containing the PVIO.  In
5029        this case, to avoid a reference loop, we need to weaken the
5030        reference.
5031     */
5032
5033     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5034         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5035     {
5036       sv_rvweaken(obj);
5037     }
5038
5039     mg->mg_type = how;
5040     mg->mg_len = namlen;
5041     if (name) {
5042         if (namlen > 0)
5043             mg->mg_ptr = savepvn(name, namlen);
5044         else if (namlen == HEf_SVKEY) {
5045             /* Yes, this is casting away const. This is only for the case of
5046                HEf_SVKEY. I think we need to document this abberation of the
5047                constness of the API, rather than making name non-const, as
5048                that change propagating outwards a long way.  */
5049             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5050         } else
5051             mg->mg_ptr = (char *) name;
5052     }
5053     mg->mg_virtual = (MGVTBL *) vtable;
5054
5055     mg_magical(sv);
5056     if (SvGMAGICAL(sv))
5057         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5058     return mg;
5059 }
5060
5061 /*
5062 =for apidoc sv_magic
5063
5064 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5065 then adds a new magic item of type C<how> to the head of the magic list.
5066
5067 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5068 handling of the C<name> and C<namlen> arguments.
5069
5070 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5071 to add more than one instance of the same 'how'.
5072
5073 =cut
5074 */
5075
5076 void
5077 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
5078              const char *const name, const I32 namlen)
5079 {
5080     dVAR;
5081     const MGVTBL *vtable;
5082     MAGIC* mg;
5083
5084     PERL_ARGS_ASSERT_SV_MAGIC;
5085
5086 #ifdef PERL_OLD_COPY_ON_WRITE
5087     if (SvIsCOW(sv))
5088         sv_force_normal_flags(sv, 0);
5089 #endif
5090     if (SvREADONLY(sv)) {
5091         if (
5092             /* its okay to attach magic to shared strings; the subsequent
5093              * upgrade to PVMG will unshare the string */
5094             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
5095
5096             && IN_PERL_RUNTIME
5097             && how != PERL_MAGIC_regex_global
5098             && how != PERL_MAGIC_bm
5099             && how != PERL_MAGIC_fm
5100             && how != PERL_MAGIC_sv
5101             && how != PERL_MAGIC_backref
5102            )
5103         {
5104             Perl_croak_no_modify(aTHX);
5105         }
5106     }
5107     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5108         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5109             /* sv_magic() refuses to add a magic of the same 'how' as an
5110                existing one
5111              */
5112             if (how == PERL_MAGIC_taint) {
5113                 mg->mg_len |= 1;
5114                 /* Any scalar which already had taint magic on which someone
5115                    (erroneously?) did SvIOK_on() or similar will now be
5116                    incorrectly sporting public "OK" flags.  */
5117                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5118             }
5119             return;
5120         }
5121     }
5122
5123     switch (how) {
5124     case PERL_MAGIC_sv:
5125         vtable = &PL_vtbl_sv;
5126         break;
5127     case PERL_MAGIC_overload:
5128         vtable = &PL_vtbl_amagic;
5129         break;
5130     case PERL_MAGIC_overload_elem:
5131         vtable = &PL_vtbl_amagicelem;
5132         break;
5133     case PERL_MAGIC_overload_table:
5134         vtable = &PL_vtbl_ovrld;
5135         break;
5136     case PERL_MAGIC_bm:
5137         vtable = &PL_vtbl_bm;
5138         break;
5139     case PERL_MAGIC_regdata:
5140         vtable = &PL_vtbl_regdata;
5141         break;
5142     case PERL_MAGIC_regdatum:
5143         vtable = &PL_vtbl_regdatum;
5144         break;
5145     case PERL_MAGIC_env:
5146         vtable = &PL_vtbl_env;
5147         break;
5148     case PERL_MAGIC_fm:
5149         vtable = &PL_vtbl_fm;
5150         break;
5151     case PERL_MAGIC_envelem:
5152         vtable = &PL_vtbl_envelem;
5153         break;
5154     case PERL_MAGIC_regex_global:
5155         vtable = &PL_vtbl_mglob;
5156         break;
5157     case PERL_MAGIC_isa:
5158         vtable = &PL_vtbl_isa;
5159         break;
5160     case PERL_MAGIC_isaelem:
5161         vtable = &PL_vtbl_isaelem;
5162         break;
5163     case PERL_MAGIC_nkeys:
5164         vtable = &PL_vtbl_nkeys;
5165         break;
5166     case PERL_MAGIC_dbfile:
5167         vtable = NULL;
5168         break;
5169     case PERL_MAGIC_dbline:
5170         vtable = &PL_vtbl_dbline;
5171         break;
5172 #ifdef USE_LOCALE_COLLATE
5173     case PERL_MAGIC_collxfrm:
5174         vtable = &PL_vtbl_collxfrm;
5175         break;
5176 #endif /* USE_LOCALE_COLLATE */
5177     case PERL_MAGIC_tied:
5178         vtable = &PL_vtbl_pack;
5179         break;
5180     case PERL_MAGIC_tiedelem:
5181     case PERL_MAGIC_tiedscalar:
5182         vtable = &PL_vtbl_packelem;
5183         break;
5184     case PERL_MAGIC_qr:
5185         vtable = &PL_vtbl_regexp;
5186         break;
5187     case PERL_MAGIC_sig:
5188         vtable = &PL_vtbl_sig;
5189         break;
5190     case PERL_MAGIC_sigelem:
5191         vtable = &PL_vtbl_sigelem;
5192         break;
5193     case PERL_MAGIC_taint:
5194         vtable = &PL_vtbl_taint;
5195         break;
5196     case PERL_MAGIC_uvar:
5197         vtable = &PL_vtbl_uvar;
5198         break;
5199     case PERL_MAGIC_vec:
5200         vtable = &PL_vtbl_vec;
5201         break;
5202     case PERL_MAGIC_arylen_p:
5203     case PERL_MAGIC_rhash:
5204     case PERL_MAGIC_symtab:
5205     case PERL_MAGIC_vstring:
5206         vtable = NULL;
5207         break;
5208     case PERL_MAGIC_utf8:
5209         vtable = &PL_vtbl_utf8;
5210         break;
5211     case PERL_MAGIC_substr:
5212         vtable = &PL_vtbl_substr;
5213         break;
5214     case PERL_MAGIC_defelem:
5215         vtable = &PL_vtbl_defelem;
5216         break;
5217     case PERL_MAGIC_arylen:
5218         vtable = &PL_vtbl_arylen;
5219         break;
5220     case PERL_MAGIC_pos:
5221         vtable = &PL_vtbl_pos;
5222         break;
5223     case PERL_MAGIC_backref:
5224         vtable = &PL_vtbl_backref;
5225         break;
5226     case PERL_MAGIC_hintselem:
5227         vtable = &PL_vtbl_hintselem;
5228         break;
5229     case PERL_MAGIC_hints:
5230         vtable = &PL_vtbl_hints;
5231         break;
5232     case PERL_MAGIC_ext:
5233         /* Reserved for use by extensions not perl internals.           */
5234         /* Useful for attaching extension internal data to perl vars.   */
5235         /* Note that multiple extensions may clash if magical scalars   */
5236         /* etc holding private data from one are passed to another.     */
5237         vtable = NULL;
5238         break;
5239     default:
5240         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5241     }
5242
5243     /* Rest of work is done else where */
5244     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5245
5246     switch (how) {
5247     case PERL_MAGIC_taint:
5248         mg->mg_len = 1;
5249         break;
5250     case PERL_MAGIC_ext:
5251     case PERL_MAGIC_dbfile:
5252         SvRMAGICAL_on(sv);
5253         break;
5254     }
5255 }
5256
5257 /*
5258 =for apidoc sv_unmagic
5259
5260 Removes all magic of type C<type> from an SV.
5261
5262 =cut
5263 */
5264
5265 int
5266 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5267 {
5268     MAGIC* mg;
5269     MAGIC** mgp;
5270
5271     PERL_ARGS_ASSERT_SV_UNMAGIC;
5272
5273     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5274         return 0;
5275     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5276     for (mg = *mgp; mg; mg = *mgp) {
5277         if (mg->mg_type == type) {
5278             const MGVTBL* const vtbl = mg->mg_virtual;
5279             *mgp = mg->mg_moremagic;
5280             if (vtbl && vtbl->svt_free)
5281                 vtbl->svt_free(aTHX_ sv, mg);
5282             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5283                 if (mg->mg_len > 0)
5284                     Safefree(mg->mg_ptr);
5285                 else if (mg->mg_len == HEf_SVKEY)
5286                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5287                 else if (mg->mg_type == PERL_MAGIC_utf8)
5288                     Safefree(mg->mg_ptr);
5289             }
5290             if (mg->mg_flags & MGf_REFCOUNTED)
5291                 SvREFCNT_dec(mg->mg_obj);
5292             Safefree(mg);
5293         }
5294         else
5295             mgp = &mg->mg_moremagic;
5296     }
5297     if (SvMAGIC(sv)) {
5298         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5299             mg_magical(sv);     /*    else fix the flags now */
5300     }
5301     else {
5302         SvMAGICAL_off(sv);
5303         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5304     }
5305     return 0;
5306 }
5307
5308 /*
5309 =for apidoc sv_rvweaken
5310
5311 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5312 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5313 push a back-reference to this RV onto the array of backreferences
5314 associated with that magic. If the RV is magical, set magic will be
5315 called after the RV is cleared.
5316
5317 =cut
5318 */
5319
5320 SV *
5321 Perl_sv_rvweaken(pTHX_ SV *const sv)
5322 {
5323     SV *tsv;
5324
5325     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5326
5327     if (!SvOK(sv))  /* let undefs pass */
5328         return sv;
5329     if (!SvROK(sv))
5330         Perl_croak(aTHX_ "Can't weaken a nonreference");
5331     else if (SvWEAKREF(sv)) {
5332         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5333         return sv;
5334     }
5335     tsv = SvRV(sv);
5336     Perl_sv_add_backref(aTHX_ tsv, sv);
5337     SvWEAKREF_on(sv);
5338     SvREFCNT_dec(tsv);
5339     return sv;
5340 }
5341
5342 /* Give tsv backref magic if it hasn't already got it, then push a
5343  * back-reference to sv onto the array associated with the backref magic.
5344  *
5345  * As an optimisation, if there's only one backref and it's not an AV,
5346  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5347  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5348  * active.)
5349  *
5350  * If an HV's backref is stored in magic, it is moved back to HvAUX.
5351  */
5352
5353 /* A discussion about the backreferences array and its refcount:
5354  *
5355  * The AV holding the backreferences is pointed to either as the mg_obj of
5356  * PERL_MAGIC_backref, or in the specific case of a HV that has the hv_aux
5357  * structure, from the xhv_backreferences field. (A HV without hv_aux will
5358  * have the standard magic instead.) The array is created with a refcount
5359  * of 2. This means that if during global destruction the array gets
5360  * picked on before its parent to have its refcount decremented by the
5361  * random zapper, it won't actually be freed, meaning it's still there for
5362  * when its parent gets freed.
5363  *
5364  * When the parent SV is freed, the extra ref is killed by
5365  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5366  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5367  *
5368  * When a single backref SV is stored directly, it is not reference
5369  * counted.
5370  */
5371
5372 void
5373 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5374 {
5375     dVAR;
5376     SV **svp;
5377     AV *av = NULL;
5378     MAGIC *mg = NULL;
5379
5380     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5381
5382     /* find slot to store array or singleton backref */
5383
5384     if (SvTYPE(tsv) == SVt_PVHV) {
5385         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5386
5387         if (!*svp) {
5388             if ((mg = mg_find(tsv, PERL_MAGIC_backref))) {
5389                 /* Aha. They've got it stowed in magic instead.
5390                  * Move it back to xhv_backreferences */
5391                 *svp = mg->mg_obj;
5392                 /* Stop mg_free decreasing the reference count.  */
5393                 mg->mg_obj = NULL;
5394                 /* Stop mg_free even calling the destructor, given that
5395                    there's no AV to free up.  */
5396                 mg->mg_virtual = 0;
5397                 sv_unmagic(tsv, PERL_MAGIC_backref);
5398                 mg = NULL;
5399             }
5400         }
5401     } else {
5402         if (! ((mg =
5403             (SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL))))
5404         {
5405             sv_magic(tsv, NULL, PERL_MAGIC_backref, NULL, 0);
5406             mg = mg_find(tsv, PERL_MAGIC_backref);
5407         }
5408         svp = &(mg->mg_obj);
5409     }
5410
5411     /* create or retrieve the array */
5412
5413     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5414         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5415     ) {
5416         /* create array */
5417         av = newAV();
5418         AvREAL_off(av);
5419         SvREFCNT_inc_simple_void(av);
5420         /* av now has a refcnt of 2; see discussion above */
5421         if (*svp) {
5422             /* move single existing backref to the array */
5423             av_extend(av, 1);
5424             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5425         }
5426         *svp = (SV*)av;
5427         if (mg)
5428             mg->mg_flags |= MGf_REFCOUNTED;
5429     }
5430     else
5431         av = MUTABLE_AV(*svp);
5432
5433     if (!av) {
5434         /* optimisation: store single backref directly in HvAUX or mg_obj */
5435         *svp = sv;
5436         return;
5437     }
5438     /* push new backref */
5439     assert(SvTYPE(av) == SVt_PVAV);
5440     if (AvFILLp(av) >= AvMAX(av)) {
5441         av_extend(av, AvFILLp(av)+1);
5442     }
5443     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5444 }
5445
5446 /* delete a back-reference to ourselves from the backref magic associated
5447  * with the SV we point to.
5448  */
5449
5450 void
5451 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5452 {
5453     dVAR;
5454     SV **svp = NULL;
5455     I32 i;
5456
5457     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5458
5459     if (SvTYPE(tsv) == SVt_PVHV && SvOOK(tsv)) {
5460         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5461     }
5462     if (!svp || !*svp) {
5463         MAGIC *const mg
5464             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5465         svp =  mg ? &(mg->mg_obj) : NULL;
5466     }
5467
5468     if (!svp || !*svp)
5469         Perl_croak(aTHX_ "panic: del_backref");
5470
5471     if (SvTYPE(*svp) == SVt_PVAV) {
5472         int count = 0;
5473         AV * const av = (AV*)*svp;
5474         assert(!SvIS_FREED(av));
5475         svp = AvARRAY(av);
5476         for (i = AvFILLp(av); i >= 0; i--) {
5477             if (svp[i] == sv) {
5478                 const SSize_t fill = AvFILLp(av);
5479                 if (i != fill) {
5480                     /* We weren't the last entry.
5481                        An unordered list has this property that you can take the
5482                        last element off the end to fill the hole, and it's still
5483                        an unordered list :-)
5484                     */
5485                     svp[i] = svp[fill];
5486                 }
5487                 svp[fill] = NULL;
5488                 AvFILLp(av) = fill - 1;
5489                 count++;
5490 #ifndef DEBUGGING
5491                 break; /* should only be one */
5492 #endif
5493             }
5494         }
5495         assert(count == 1);
5496     }
5497     else {
5498         /* optimisation: only a single backref, stored directly */
5499         if (*svp != sv)
5500             Perl_croak(aTHX_ "panic: del_backref");
5501         *svp = NULL;
5502     }
5503
5504 }
5505
5506 void
5507 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5508 {
5509     SV **svp;
5510     SV **last;
5511     bool is_array;
5512
5513     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5514
5515     if (!av)
5516         return;
5517
5518     is_array = (SvTYPE(av) == SVt_PVAV);
5519     if (is_array) {
5520         assert(!SvIS_FREED(av));
5521         svp = AvARRAY(av);
5522         if (svp)
5523             last = svp + AvFILLp(av);
5524     }
5525     else {
5526         /* optimisation: only a single backref, stored directly */
5527         svp = (SV**)&av;
5528         last = svp;
5529     }
5530
5531     if (svp) {
5532         while (svp <= last) {
5533             if (*svp) {
5534                 SV *const referrer = *svp;
5535                 if (SvWEAKREF(referrer)) {
5536                     /* XXX Should we check that it hasn't changed? */
5537                     assert(SvROK(referrer));
5538                     SvRV_set(referrer, 0);
5539                     SvOK_off(referrer);
5540                     SvWEAKREF_off(referrer);
5541                     SvSETMAGIC(referrer);
5542                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5543                            SvTYPE(referrer) == SVt_PVLV) {
5544                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5545                     /* You lookin' at me?  */
5546                     assert(GvSTASH(referrer));
5547                     assert(GvSTASH(referrer) == (const HV *)sv);
5548                     GvSTASH(referrer) = 0;
5549                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5550                            SvTYPE(referrer) == SVt_PVFM) {
5551                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5552                         /* You lookin' at me?  */
5553                         assert(CvSTASH(referrer));
5554                         assert(CvSTASH(referrer) == (const HV *)sv);
5555                         CvSTASH(referrer) = 0;
5556                     }
5557                     else {
5558                         assert(SvTYPE(sv) == SVt_PVGV);
5559                         /* You lookin' at me?  */
5560                         assert(CvGV(referrer));
5561                         assert(CvGV(referrer) == (const GV *)sv);
5562                         anonymise_cv_maybe(MUTABLE_GV(sv),
5563                                                 MUTABLE_CV(referrer));
5564                     }
5565
5566                 } else {
5567                     Perl_croak(aTHX_
5568                                "panic: magic_killbackrefs (flags=%"UVxf")",
5569                                (UV)SvFLAGS(referrer));
5570                 }
5571
5572                 if (is_array)
5573                     *svp = NULL;
5574             }
5575             svp++;
5576         }
5577     }
5578     if (is_array) {
5579         AvFILLp(av) = -1;
5580         SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5581     }
5582     return;
5583 }
5584
5585 /*
5586 =for apidoc sv_insert
5587
5588 Inserts a string at the specified offset/length within the SV. Similar to
5589 the Perl substr() function. Handles get magic.
5590
5591 =for apidoc sv_insert_flags
5592
5593 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5594
5595 =cut
5596 */
5597
5598 void
5599 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5600 {
5601     dVAR;
5602     register char *big;
5603     register char *mid;
5604     register char *midend;
5605     register char *bigend;
5606     register I32 i;
5607     STRLEN curlen;
5608
5609     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5610
5611     if (!bigstr)
5612         Perl_croak(aTHX_ "Can't modify non-existent substring");
5613     SvPV_force_flags(bigstr, curlen, flags);
5614     (void)SvPOK_only_UTF8(bigstr);
5615     if (offset + len > curlen) {
5616         SvGROW(bigstr, offset+len+1);
5617         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5618         SvCUR_set(bigstr, offset+len);
5619     }
5620
5621     SvTAINT(bigstr);
5622     i = littlelen - len;
5623     if (i > 0) {                        /* string might grow */
5624         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5625         mid = big + offset + len;
5626         midend = bigend = big + SvCUR(bigstr);
5627         bigend += i;
5628         *bigend = '\0';
5629         while (midend > mid)            /* shove everything down */
5630             *--bigend = *--midend;
5631         Move(little,big+offset,littlelen,char);
5632         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5633         SvSETMAGIC(bigstr);
5634         return;
5635     }
5636     else if (i == 0) {
5637         Move(little,SvPVX(bigstr)+offset,len,char);
5638         SvSETMAGIC(bigstr);
5639         return;
5640     }
5641
5642     big = SvPVX(bigstr);
5643     mid = big + offset;
5644     midend = mid + len;
5645     bigend = big + SvCUR(bigstr);
5646
5647     if (midend > bigend)
5648         Perl_croak(aTHX_ "panic: sv_insert");
5649
5650     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5651         if (littlelen) {
5652             Move(little, mid, littlelen,char);
5653             mid += littlelen;
5654         }
5655         i = bigend - midend;
5656         if (i > 0) {
5657             Move(midend, mid, i,char);
5658             mid += i;
5659         }
5660         *mid = '\0';
5661         SvCUR_set(bigstr, mid - big);
5662     }
5663     else if ((i = mid - big)) { /* faster from front */
5664         midend -= littlelen;
5665         mid = midend;
5666         Move(big, midend - i, i, char);
5667         sv_chop(bigstr,midend-i);
5668         if (littlelen)
5669             Move(little, mid, littlelen,char);
5670     }
5671     else if (littlelen) {
5672         midend -= littlelen;
5673         sv_chop(bigstr,midend);
5674         Move(little,midend,littlelen,char);
5675     }
5676     else {
5677         sv_chop(bigstr,midend);
5678     }
5679     SvSETMAGIC(bigstr);
5680 }
5681
5682 /*
5683 =for apidoc sv_replace
5684
5685 Make the first argument a copy of the second, then delete the original.
5686 The target SV physically takes over ownership of the body of the source SV
5687 and inherits its flags; however, the target keeps any magic it owns,
5688 and any magic in the source is discarded.
5689 Note that this is a rather specialist SV copying operation; most of the
5690 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5691
5692 =cut
5693 */
5694
5695 void
5696 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5697 {
5698     dVAR;
5699     const U32 refcnt = SvREFCNT(sv);
5700
5701     PERL_ARGS_ASSERT_SV_REPLACE;
5702
5703     SV_CHECK_THINKFIRST_COW_DROP(sv);
5704     if (SvREFCNT(nsv) != 1) {
5705         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
5706                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
5707     }
5708     if (SvMAGICAL(sv)) {
5709         if (SvMAGICAL(nsv))
5710             mg_free(nsv);
5711         else
5712             sv_upgrade(nsv, SVt_PVMG);
5713         SvMAGIC_set(nsv, SvMAGIC(sv));
5714         SvFLAGS(nsv) |= SvMAGICAL(sv);
5715         SvMAGICAL_off(sv);
5716         SvMAGIC_set(sv, NULL);
5717     }
5718     SvREFCNT(sv) = 0;
5719     sv_clear(sv);
5720     assert(!SvREFCNT(sv));
5721 #ifdef DEBUG_LEAKING_SCALARS
5722     sv->sv_flags  = nsv->sv_flags;
5723     sv->sv_any    = nsv->sv_any;
5724     sv->sv_refcnt = nsv->sv_refcnt;
5725     sv->sv_u      = nsv->sv_u;
5726 #else
5727     StructCopy(nsv,sv,SV);
5728 #endif
5729     if(SvTYPE(sv) == SVt_IV) {
5730         SvANY(sv)
5731             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5732     }
5733         
5734
5735 #ifdef PERL_OLD_COPY_ON_WRITE
5736     if (SvIsCOW_normal(nsv)) {
5737         /* We need to follow the pointers around the loop to make the
5738            previous SV point to sv, rather than nsv.  */
5739         SV *next;
5740         SV *current = nsv;
5741         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5742             assert(next);
5743             current = next;
5744             assert(SvPVX_const(current) == SvPVX_const(nsv));
5745         }
5746         /* Make the SV before us point to the SV after us.  */
5747         if (DEBUG_C_TEST) {
5748             PerlIO_printf(Perl_debug_log, "previous is\n");
5749             sv_dump(current);
5750             PerlIO_printf(Perl_debug_log,
5751                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5752                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5753         }
5754         SV_COW_NEXT_SV_SET(current, sv);
5755     }
5756 #endif
5757     SvREFCNT(sv) = refcnt;
5758     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5759     SvREFCNT(nsv) = 0;
5760     del_SV(nsv);
5761 }
5762
5763 /* We're about to free a GV which has a CV that refers back to us.
5764  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
5765  * field) */
5766
5767 STATIC void
5768 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
5769 {
5770     char *stash;
5771     SV *gvname;
5772     GV *anongv;
5773
5774     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
5775
5776     /* be assertive! */
5777     assert(SvREFCNT(gv) == 0);
5778     assert(isGV(gv) && isGV_with_GP(gv));
5779     assert(GvGP(gv));
5780     assert(!CvANON(cv));
5781     assert(CvGV(cv) == gv);
5782
5783     /* will the CV shortly be freed by gp_free() ? */
5784     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
5785         SvANY(cv)->xcv_gv = NULL;
5786         return;
5787     }
5788
5789     /* if not, anonymise: */
5790     stash  = GvSTASH(gv) ? HvNAME(GvSTASH(gv)) : NULL;
5791     gvname = Perl_newSVpvf(aTHX_ "%s::__ANON__",
5792                                         stash ? stash : "__ANON__");
5793     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
5794     SvREFCNT_dec(gvname);
5795
5796     CvANON_on(cv);
5797     CvCVGV_RC_on(cv);
5798     SvANY(cv)->xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
5799 }
5800
5801
5802 /*
5803 =for apidoc sv_clear
5804
5805 Clear an SV: call any destructors, free up any memory used by the body,
5806 and free the body itself. The SV's head is I<not> freed, although
5807 its type is set to all 1's so that it won't inadvertently be assumed
5808 to be live during global destruction etc.
5809 This function should only be called when REFCNT is zero. Most of the time
5810 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5811 instead.
5812
5813 =cut
5814 */
5815
5816 void
5817 Perl_sv_clear(pTHX_ register SV *const sv)
5818 {
5819     dVAR;
5820     const U32 type = SvTYPE(sv);
5821     const struct body_details *const sv_type_details
5822         = bodies_by_type + type;
5823     HV *stash;
5824
5825     PERL_ARGS_ASSERT_SV_CLEAR;
5826     assert(SvREFCNT(sv) == 0);
5827     assert(SvTYPE(sv) != SVTYPEMASK);
5828
5829     if (type <= SVt_IV) {
5830         /* See the comment in sv.h about the collusion between this early
5831            return and the overloading of the NULL slots in the size table.  */
5832         if (SvROK(sv))
5833             goto free_rv;
5834         SvFLAGS(sv) &= SVf_BREAK;
5835         SvFLAGS(sv) |= SVTYPEMASK;
5836         return;
5837     }
5838
5839     if (SvOBJECT(sv)) {
5840         if (PL_defstash &&      /* Still have a symbol table? */
5841             SvDESTROYABLE(sv))
5842         {
5843             dSP;
5844             HV* stash;
5845             do {        
5846                 CV* destructor;
5847                 stash = SvSTASH(sv);
5848                 destructor = StashHANDLER(stash,DESTROY);
5849                 if (destructor
5850                         /* A constant subroutine can have no side effects, so
5851                            don't bother calling it.  */
5852                         && !CvCONST(destructor)
5853                         /* Don't bother calling an empty destructor */
5854                         && (CvISXSUB(destructor)
5855                         || (CvSTART(destructor)
5856                             && (CvSTART(destructor)->op_next->op_type != OP_LEAVESUB))))
5857                 {
5858                     SV* const tmpref = newRV(sv);
5859                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5860                     ENTER;
5861                     PUSHSTACKi(PERLSI_DESTROY);
5862                     EXTEND(SP, 2);
5863                     PUSHMARK(SP);
5864                     PUSHs(tmpref);
5865                     PUTBACK;
5866                     call_sv(MUTABLE_SV(destructor), G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5867                 
5868                 
5869                     POPSTACK;
5870                     SPAGAIN;
5871                     LEAVE;
5872                     if(SvREFCNT(tmpref) < 2) {
5873                         /* tmpref is not kept alive! */
5874                         SvREFCNT(sv)--;
5875                         SvRV_set(tmpref, NULL);
5876                         SvROK_off(tmpref);
5877                     }
5878                     SvREFCNT_dec(tmpref);
5879                 }
5880             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5881
5882
5883             if (SvREFCNT(sv)) {
5884                 if (PL_in_clean_objs)
5885                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5886                           HvNAME_get(stash));
5887                 /* DESTROY gave object new lease on life */
5888                 return;
5889             }
5890         }
5891
5892         if (SvOBJECT(sv)) {
5893             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5894             SvOBJECT_off(sv);   /* Curse the object. */
5895             if (type != SVt_PVIO)
5896                 --PL_sv_objcount;       /* XXX Might want something more general */
5897         }
5898     }
5899     if (type >= SVt_PVMG) {
5900         if (type == SVt_PVMG && SvPAD_OUR(sv)) {
5901             SvREFCNT_dec(SvOURSTASH(sv));
5902         } else if (SvMAGIC(sv))
5903             mg_free(sv);
5904         if (type == SVt_PVMG && SvPAD_TYPED(sv))
5905             SvREFCNT_dec(SvSTASH(sv));
5906     }
5907     switch (type) {
5908         /* case SVt_BIND: */
5909     case SVt_PVIO:
5910         if (IoIFP(sv) &&
5911             IoIFP(sv) != PerlIO_stdin() &&
5912             IoIFP(sv) != PerlIO_stdout() &&
5913             IoIFP(sv) != PerlIO_stderr() &&
5914             !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5915         {
5916             io_close(MUTABLE_IO(sv), FALSE);
5917         }
5918         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5919             PerlDir_close(IoDIRP(sv));
5920         IoDIRP(sv) = (DIR*)NULL;
5921         Safefree(IoTOP_NAME(sv));
5922         Safefree(IoFMT_NAME(sv));
5923         Safefree(IoBOTTOM_NAME(sv));
5924         goto freescalar;
5925     case SVt_REGEXP:
5926         /* FIXME for plugins */
5927         pregfree2((REGEXP*) sv);
5928         goto freescalar;
5929     case SVt_PVCV:
5930     case SVt_PVFM:
5931         cv_undef(MUTABLE_CV(sv));
5932         /* If we're in a stash, we don't own a reference to it. However it does
5933            have a back reference to us, which needs to be cleared.  */
5934         if ((stash = CvSTASH(sv)))
5935             sv_del_backref(MUTABLE_SV(stash), sv);
5936         goto freescalar;
5937     case SVt_PVHV:
5938         if (PL_last_swash_hv == (const HV *)sv) {
5939             PL_last_swash_hv = NULL;
5940         }
5941         Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
5942         hv_undef(MUTABLE_HV(sv));
5943         break;
5944     case SVt_PVAV:
5945         if (PL_comppad == MUTABLE_AV(sv)) {
5946             PL_comppad = NULL;
5947             PL_curpad = NULL;
5948         }
5949         av_undef(MUTABLE_AV(sv));
5950         break;
5951     case SVt_PVLV:
5952         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5953             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5954             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5955             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5956         }
5957         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5958             SvREFCNT_dec(LvTARG(sv));
5959     case SVt_PVGV:
5960         if (isGV_with_GP(sv)) {
5961             if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
5962                && HvNAME_get(stash))
5963                 mro_method_changed_in(stash);
5964             gp_free(MUTABLE_GV(sv));
5965             if (GvNAME_HEK(sv))
5966                 unshare_hek(GvNAME_HEK(sv));
5967             /* If we're in a stash, we don't own a reference to it. However it does
5968                have a back reference to us, which needs to be cleared.  */
5969             if (!SvVALID(sv) && (stash = GvSTASH(sv)))
5970                     sv_del_backref(MUTABLE_SV(stash), sv);
5971         }
5972         /* FIXME. There are probably more unreferenced pointers to SVs in the
5973            interpreter struct that we should check and tidy in a similar
5974            fashion to this:  */
5975         if ((const GV *)sv == PL_last_in_gv)
5976             PL_last_in_gv = NULL;
5977     case SVt_PVMG:
5978     case SVt_PVNV:
5979     case SVt_PVIV:
5980     case SVt_PV:
5981       freescalar:
5982         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5983         if (SvOOK(sv)) {
5984             STRLEN offset;
5985             SvOOK_offset(sv, offset);
5986             SvPV_set(sv, SvPVX_mutable(sv) - offset);
5987             /* Don't even bother with turning off the OOK flag.  */
5988         }
5989         if (SvROK(sv)) {
5990         free_rv:
5991             {
5992                 SV * const target = SvRV(sv);
5993                 if (SvWEAKREF(sv))
5994                     sv_del_backref(target, sv);
5995                 else
5996                     SvREFCNT_dec(target);
5997             }
5998         }
5999 #ifdef PERL_OLD_COPY_ON_WRITE
6000         else if (SvPVX_const(sv)
6001                  && !(SvTYPE(sv) == SVt_PVIO && !(IoFLAGS(sv) & IOf_FAKE_DIRP))) {
6002             if (SvIsCOW(sv)) {
6003                 if (DEBUG_C_TEST) {
6004                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6005                     sv_dump(sv);
6006                 }
6007                 if (SvLEN(sv)) {
6008                     sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6009                 } else {
6010                     unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6011                 }
6012
6013                 SvFAKE_off(sv);
6014             } else if (SvLEN(sv)) {
6015                 Safefree(SvPVX_const(sv));
6016             }
6017         }
6018 #else
6019         else if (SvPVX_const(sv) && SvLEN(sv)
6020                  && !(SvTYPE(sv) == SVt_PVIO && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6021             Safefree(SvPVX_mutable(sv));
6022         else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
6023             unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6024             SvFAKE_off(sv);
6025         }
6026 #endif
6027         break;
6028     case SVt_NV:
6029         break;
6030     }
6031
6032     SvFLAGS(sv) &= SVf_BREAK;
6033     SvFLAGS(sv) |= SVTYPEMASK;
6034
6035     if (sv_type_details->arena) {
6036         del_body(((char *)SvANY(sv) + sv_type_details->offset),
6037                  &PL_body_roots[type]);
6038     }
6039     else if (sv_type_details->body_size) {
6040         safefree(SvANY(sv));
6041     }
6042 }
6043
6044 /*
6045 =for apidoc sv_newref
6046
6047 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
6048 instead.
6049
6050 =cut
6051 */
6052
6053 SV *
6054 Perl_sv_newref(pTHX_ SV *const sv)
6055 {
6056     PERL_UNUSED_CONTEXT;
6057     if (sv)
6058         (SvREFCNT(sv))++;
6059     return sv;
6060 }
6061
6062 /*
6063 =for apidoc sv_free
6064
6065 Decrement an SV's reference count, and if it drops to zero, call
6066 C<sv_clear> to invoke destructors and free up any memory used by
6067 the body; finally, deallocate the SV's head itself.
6068 Normally called via a wrapper macro C<SvREFCNT_dec>.
6069
6070 =cut
6071 */
6072
6073 void
6074 Perl_sv_free(pTHX_ SV *const sv)
6075 {
6076     dVAR;
6077     if (!sv)
6078         return;
6079     if (SvREFCNT(sv) == 0) {
6080         if (SvFLAGS(sv) & SVf_BREAK)
6081             /* this SV's refcnt has been artificially decremented to
6082              * trigger cleanup */
6083             return;
6084         if (PL_in_clean_all) /* All is fair */
6085             return;
6086         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6087             /* make sure SvREFCNT(sv)==0 happens very seldom */
6088             SvREFCNT(sv) = (~(U32)0)/2;
6089             return;
6090         }
6091         if (ckWARN_d(WARN_INTERNAL)) {
6092 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6093             Perl_dump_sv_child(aTHX_ sv);
6094 #else
6095   #ifdef DEBUG_LEAKING_SCALARS
6096             sv_dump(sv);
6097   #endif
6098 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6099             if (PL_warnhook == PERL_WARNHOOK_FATAL
6100                 || ckDEAD(packWARN(WARN_INTERNAL))) {
6101                 /* Don't let Perl_warner cause us to escape our fate:  */
6102                 abort();
6103             }
6104 #endif
6105             /* This may not return:  */
6106             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6107                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
6108                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6109 #endif
6110         }
6111 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6112         abort();
6113 #endif
6114         return;
6115     }
6116     if (--(SvREFCNT(sv)) > 0)
6117         return;
6118     Perl_sv_free2(aTHX_ sv);
6119 }
6120
6121 void
6122 Perl_sv_free2(pTHX_ SV *const sv)
6123 {
6124     dVAR;
6125
6126     PERL_ARGS_ASSERT_SV_FREE2;
6127
6128 #ifdef DEBUGGING
6129     if (SvTEMP(sv)) {
6130         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6131                          "Attempt to free temp prematurely: SV 0x%"UVxf
6132                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6133         return;
6134     }
6135 #endif
6136     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6137         /* make sure SvREFCNT(sv)==0 happens very seldom */
6138         SvREFCNT(sv) = (~(U32)0)/2;
6139         return;
6140     }
6141     sv_clear(sv);
6142     if (! SvREFCNT(sv))
6143         del_SV(sv);
6144 }
6145
6146 /*
6147 =for apidoc sv_len
6148
6149 Returns the length of the string in the SV. Handles magic and type
6150 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
6151
6152 =cut
6153 */
6154
6155 STRLEN
6156 Perl_sv_len(pTHX_ register SV *const sv)
6157 {
6158     STRLEN len;
6159
6160     if (!sv)
6161         return 0;
6162
6163     if (SvGMAGICAL(sv))
6164         len = mg_length(sv);
6165     else
6166         (void)SvPV_const(sv, len);
6167     return len;
6168 }
6169
6170 /*
6171 =for apidoc sv_len_utf8
6172
6173 Returns the number of characters in the string in an SV, counting wide
6174 UTF-8 bytes as a single character. Handles magic and type coercion.
6175
6176 =cut
6177 */
6178
6179 /*
6180  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6181  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6182  * (Note that the mg_len is not the length of the mg_ptr field.
6183  * This allows the cache to store the character length of the string without
6184  * needing to malloc() extra storage to attach to the mg_ptr.)
6185  *
6186  */
6187
6188 STRLEN
6189 Perl_sv_len_utf8(pTHX_ register SV *const sv)
6190 {
6191     if (!sv)
6192         return 0;
6193
6194     if (SvGMAGICAL(sv))
6195         return mg_length(sv);
6196     else
6197     {
6198         STRLEN len;
6199         const U8 *s = (U8*)SvPV_const(sv, len);
6200
6201         if (PL_utf8cache) {
6202             STRLEN ulen;
6203             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6204
6205             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6206                 if (mg->mg_len != -1)
6207                     ulen = mg->mg_len;
6208                 else {
6209                     /* We can use the offset cache for a headstart.
6210                        The longer value is stored in the first pair.  */
6211                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6212
6213                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6214                                                        s + len);
6215                 }
6216                 
6217                 if (PL_utf8cache < 0) {
6218                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6219                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6220                 }
6221             }
6222             else {
6223                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6224                 utf8_mg_len_cache_update(sv, &mg, ulen);
6225             }
6226             return ulen;
6227         }
6228         return Perl_utf8_length(aTHX_ s, s + len);
6229     }
6230 }
6231
6232 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6233    offset.  */
6234 static STRLEN
6235 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6236                       STRLEN *const uoffset_p, bool *const at_end)
6237 {
6238     const U8 *s = start;
6239     STRLEN uoffset = *uoffset_p;
6240
6241     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6242
6243     while (s < send && uoffset) {
6244         --uoffset;
6245         s += UTF8SKIP(s);
6246     }
6247     if (s == send) {
6248         *at_end = TRUE;
6249     }
6250     else if (s > send) {
6251         *at_end = TRUE;
6252         /* This is the existing behaviour. Possibly it should be a croak, as
6253            it's actually a bounds error  */
6254         s = send;
6255     }
6256     *uoffset_p -= uoffset;
6257     return s - start;
6258 }
6259
6260 /* Given the length of the string in both bytes and UTF-8 characters, decide
6261    whether to walk forwards or backwards to find the byte corresponding to
6262    the passed in UTF-8 offset.  */
6263 static STRLEN
6264 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6265                     STRLEN uoffset, const STRLEN uend)
6266 {
6267     STRLEN backw = uend - uoffset;
6268
6269     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6270
6271     if (uoffset < 2 * backw) {
6272         /* The assumption is that going forwards is twice the speed of going
6273            forward (that's where the 2 * backw comes from).
6274            (The real figure of course depends on the UTF-8 data.)  */
6275         const U8 *s = start;
6276
6277         while (s < send && uoffset--)
6278             s += UTF8SKIP(s);
6279         assert (s <= send);
6280         if (s > send)
6281             s = send;
6282         return s - start;
6283     }
6284
6285     while (backw--) {
6286         send--;
6287         while (UTF8_IS_CONTINUATION(*send))
6288             send--;
6289     }
6290     return send - start;
6291 }
6292
6293 /* For the string representation of the given scalar, find the byte
6294    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6295    give another position in the string, *before* the sought offset, which
6296    (which is always true, as 0, 0 is a valid pair of positions), which should
6297    help reduce the amount of linear searching.
6298    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6299    will be used to reduce the amount of linear searching. The cache will be
6300    created if necessary, and the found value offered to it for update.  */
6301 static STRLEN
6302 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6303                     const U8 *const send, STRLEN uoffset,
6304                     STRLEN uoffset0, STRLEN boffset0)
6305 {
6306     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6307     bool found = FALSE;
6308     bool at_end = FALSE;
6309
6310     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6311
6312     assert (uoffset >= uoffset0);
6313
6314     if (!uoffset)
6315         return 0;
6316
6317     if (!SvREADONLY(sv)
6318         && PL_utf8cache
6319         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6320                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6321         if ((*mgp)->mg_ptr) {
6322             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6323             if (cache[0] == uoffset) {
6324                 /* An exact match. */
6325                 return cache[1];
6326             }
6327             if (cache[2] == uoffset) {
6328                 /* An exact match. */
6329                 return cache[3];
6330             }
6331
6332             if (cache[0] < uoffset) {
6333                 /* The cache already knows part of the way.   */
6334                 if (cache[0] > uoffset0) {
6335                     /* The cache knows more than the passed in pair  */
6336                     uoffset0 = cache[0];
6337                     boffset0 = cache[1];
6338                 }
6339                 if ((*mgp)->mg_len != -1) {
6340                     /* And we know the end too.  */
6341                     boffset = boffset0
6342                         + sv_pos_u2b_midway(start + boffset0, send,
6343                                               uoffset - uoffset0,
6344                                               (*mgp)->mg_len - uoffset0);
6345                 } else {
6346                     uoffset -= uoffset0;
6347                     boffset = boffset0
6348                         + sv_pos_u2b_forwards(start + boffset0,
6349                                               send, &uoffset, &at_end);
6350                     uoffset += uoffset0;
6351                 }
6352             }
6353             else if (cache[2] < uoffset) {
6354                 /* We're between the two cache entries.  */
6355                 if (cache[2] > uoffset0) {
6356                     /* and the cache knows more than the passed in pair  */
6357                     uoffset0 = cache[2];
6358                     boffset0 = cache[3];
6359                 }
6360
6361                 boffset = boffset0
6362                     + sv_pos_u2b_midway(start + boffset0,
6363                                           start + cache[1],
6364                                           uoffset - uoffset0,
6365                                           cache[0] - uoffset0);
6366             } else {
6367                 boffset = boffset0
6368                     + sv_pos_u2b_midway(start + boffset0,
6369                                           start + cache[3],
6370                                           uoffset - uoffset0,
6371                                           cache[2] - uoffset0);
6372             }
6373             found = TRUE;
6374         }
6375         else if ((*mgp)->mg_len != -1) {
6376             /* If we can take advantage of a passed in offset, do so.  */
6377             /* In fact, offset0 is either 0, or less than offset, so don't
6378                need to worry about the other possibility.  */
6379             boffset = boffset0
6380                 + sv_pos_u2b_midway(start + boffset0, send,
6381                                       uoffset - uoffset0,
6382                                       (*mgp)->mg_len - uoffset0);
6383             found = TRUE;
6384         }
6385     }
6386
6387     if (!found || PL_utf8cache < 0) {
6388         STRLEN real_boffset;
6389         uoffset -= uoffset0;
6390         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6391                                                       send, &uoffset, &at_end);
6392         uoffset += uoffset0;
6393
6394         if (found && PL_utf8cache < 0)
6395             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
6396                                        real_boffset, sv);
6397         boffset = real_boffset;
6398     }
6399
6400     if (PL_utf8cache) {
6401         if (at_end)
6402             utf8_mg_len_cache_update(sv, mgp, uoffset);
6403         else
6404             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6405     }
6406     return boffset;
6407 }
6408
6409
6410 /*
6411 =for apidoc sv_pos_u2b_flags
6412
6413 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6414 the start of the string, to a count of the equivalent number of bytes; if
6415 lenp is non-zero, it does the same to lenp, but this time starting from
6416 the offset, rather than from the start of the string. Handles type coercion.
6417 I<flags> is passed to C<SvPV_flags>, and usually should be
6418 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
6419
6420 =cut
6421 */
6422
6423 /*
6424  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
6425  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6426  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6427  *
6428  */
6429
6430 STRLEN
6431 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
6432                       U32 flags)
6433 {
6434     const U8 *start;
6435     STRLEN len;
6436     STRLEN boffset;
6437
6438     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
6439
6440     start = (U8*)SvPV_flags(sv, len, flags);
6441     if (len) {
6442         const U8 * const send = start + len;
6443         MAGIC *mg = NULL;
6444         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
6445
6446         if (lenp
6447             && *lenp /* don't bother doing work for 0, as its bytes equivalent
6448                         is 0, and *lenp is already set to that.  */) {
6449             /* Convert the relative offset to absolute.  */
6450             const STRLEN uoffset2 = uoffset + *lenp;
6451             const STRLEN boffset2
6452                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6453                                       uoffset, boffset) - boffset;
6454
6455             *lenp = boffset2;
6456         }
6457     } else {
6458         if (lenp)
6459             *lenp = 0;
6460         boffset = 0;
6461     }
6462
6463     return boffset;
6464 }
6465
6466 /*
6467 =for apidoc sv_pos_u2b
6468
6469 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6470 the start of the string, to a count of the equivalent number of bytes; if
6471 lenp is non-zero, it does the same to lenp, but this time starting from
6472 the offset, rather than from the start of the string. Handles magic and
6473 type coercion.
6474
6475 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
6476 than 2Gb.
6477
6478 =cut
6479 */
6480
6481 /*
6482  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6483  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6484  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6485  *
6486  */
6487
6488 /* This function is subject to size and sign problems */
6489
6490 void
6491 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6492 {
6493     PERL_ARGS_ASSERT_SV_POS_U2B;
6494
6495     if (lenp) {
6496         STRLEN ulen = (STRLEN)*lenp;
6497         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
6498                                          SV_GMAGIC|SV_CONST_RETURN);
6499         *lenp = (I32)ulen;
6500     } else {
6501         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
6502                                          SV_GMAGIC|SV_CONST_RETURN);
6503     }
6504 }
6505
6506 static void
6507 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
6508                            const STRLEN ulen)
6509 {
6510     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
6511     if (SvREADONLY(sv))
6512         return;
6513
6514     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6515                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6516         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
6517     }
6518     assert(*mgp);
6519
6520     (*mgp)->mg_len = ulen;
6521     /* For now, treat "overflowed" as "still unknown". See RT #72924.  */
6522     if (ulen != (STRLEN) (*mgp)->mg_len)
6523         (*mgp)->mg_len = -1;
6524 }
6525
6526 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6527    byte length pairing. The (byte) length of the total SV is passed in too,
6528    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6529    may not have updated SvCUR, so we can't rely on reading it directly.
6530
6531    The proffered utf8/byte length pairing isn't used if the cache already has
6532    two pairs, and swapping either for the proffered pair would increase the
6533    RMS of the intervals between known byte offsets.
6534
6535    The cache itself consists of 4 STRLEN values
6536    0: larger UTF-8 offset
6537    1: corresponding byte offset
6538    2: smaller UTF-8 offset
6539    3: corresponding byte offset
6540
6541    Unused cache pairs have the value 0, 0.
6542    Keeping the cache "backwards" means that the invariant of
6543    cache[0] >= cache[2] is maintained even with empty slots, which means that
6544    the code that uses it doesn't need to worry if only 1 entry has actually
6545    been set to non-zero.  It also makes the "position beyond the end of the
6546    cache" logic much simpler, as the first slot is always the one to start
6547    from.   
6548 */
6549 static void
6550 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6551                            const STRLEN utf8, const STRLEN blen)
6552 {
6553     STRLEN *cache;
6554
6555     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6556
6557     if (SvREADONLY(sv))
6558         return;
6559
6560     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6561                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6562         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6563                            0);
6564         (*mgp)->mg_len = -1;
6565     }
6566     assert(*mgp);
6567
6568     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6569         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6570         (*mgp)->mg_ptr = (char *) cache;
6571     }
6572     assert(cache);
6573
6574     if (PL_utf8cache < 0 && SvPOKp(sv)) {
6575         /* SvPOKp() because it's possible that sv has string overloading, and
6576            therefore is a reference, hence SvPVX() is actually a pointer.
6577            This cures the (very real) symptoms of RT 69422, but I'm not actually
6578            sure whether we should even be caching the results of UTF-8
6579            operations on overloading, given that nothing stops overloading
6580            returning a different value every time it's called.  */
6581         const U8 *start = (const U8 *) SvPVX_const(sv);
6582         const STRLEN realutf8 = utf8_length(start, start + byte);
6583
6584         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
6585                                    sv);
6586     }
6587
6588     /* Cache is held with the later position first, to simplify the code
6589        that deals with unbounded ends.  */
6590        
6591     ASSERT_UTF8_CACHE(cache);
6592     if (cache[1] == 0) {
6593         /* Cache is totally empty  */
6594         cache[0] = utf8;
6595         cache[1] = byte;
6596     } else if (cache[3] == 0) {
6597         if (byte > cache[1]) {
6598             /* New one is larger, so goes first.  */
6599             cache[2] = cache[0];
6600             cache[3] = cache[1];
6601             cache[0] = utf8;
6602             cache[1] = byte;
6603         } else {
6604             cache[2] = utf8;
6605             cache[3] = byte;
6606         }
6607     } else {
6608 #define THREEWAY_SQUARE(a,b,c,d) \
6609             ((float)((d) - (c))) * ((float)((d) - (c))) \
6610             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6611                + ((float)((b) - (a))) * ((float)((b) - (a)))
6612
6613         /* Cache has 2 slots in use, and we know three potential pairs.
6614            Keep the two that give the lowest RMS distance. Do the
6615            calcualation in bytes simply because we always know the byte
6616            length.  squareroot has the same ordering as the positive value,
6617            so don't bother with the actual square root.  */
6618         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6619         if (byte > cache[1]) {
6620             /* New position is after the existing pair of pairs.  */
6621             const float keep_earlier
6622                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6623             const float keep_later
6624                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6625
6626             if (keep_later < keep_earlier) {
6627                 if (keep_later < existing) {
6628                     cache[2] = cache[0];
6629                     cache[3] = cache[1];
6630                     cache[0] = utf8;
6631                     cache[1] = byte;
6632                 }
6633             }
6634             else {
6635                 if (keep_earlier < existing) {
6636                     cache[0] = utf8;
6637                     cache[1] = byte;
6638                 }
6639             }
6640         }
6641         else if (byte > cache[3]) {
6642             /* New position is between the existing pair of pairs.  */
6643             const float keep_earlier
6644                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6645             const float keep_later
6646                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6647
6648             if (keep_later < keep_earlier) {
6649                 if (keep_later < existing) {
6650                     cache[2] = utf8;
6651                     cache[3] = byte;
6652                 }
6653             }
6654             else {
6655                 if (keep_earlier < existing) {
6656                     cache[0] = utf8;
6657                     cache[1] = byte;
6658                 }
6659             }
6660         }
6661         else {
6662             /* New position is before the existing pair of pairs.  */
6663             const float keep_earlier
6664                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6665             const float keep_later
6666                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6667
6668             if (keep_later < keep_earlier) {
6669                 if (keep_later < existing) {
6670                     cache[2] = utf8;
6671                     cache[3] = byte;
6672                 }
6673             }
6674             else {
6675                 if (keep_earlier < existing) {
6676                     cache[0] = cache[2];
6677                     cache[1] = cache[3];
6678                     cache[2] = utf8;
6679                     cache[3] = byte;
6680                 }
6681             }
6682         }
6683     }
6684     ASSERT_UTF8_CACHE(cache);
6685 }
6686
6687 /* We already know all of the way, now we may be able to walk back.  The same
6688    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
6689    backward is half the speed of walking forward. */
6690 static STRLEN
6691 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
6692                     const U8 *end, STRLEN endu)
6693 {
6694     const STRLEN forw = target - s;
6695     STRLEN backw = end - target;
6696
6697     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
6698
6699     if (forw < 2 * backw) {
6700         return utf8_length(s, target);
6701     }
6702
6703     while (end > target) {
6704         end--;
6705         while (UTF8_IS_CONTINUATION(*end)) {
6706             end--;
6707         }
6708         endu--;
6709     }
6710     return endu;
6711 }
6712
6713 /*
6714 =for apidoc sv_pos_b2u
6715
6716 Converts the value pointed to by offsetp from a count of bytes from the
6717 start of the string, to a count of the equivalent number of UTF-8 chars.
6718 Handles magic and type coercion.
6719
6720 =cut
6721 */
6722
6723 /*
6724  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6725  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6726  * byte offsets.
6727  *
6728  */
6729 void
6730 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
6731 {
6732     const U8* s;
6733     const STRLEN byte = *offsetp;
6734     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
6735     STRLEN blen;
6736     MAGIC* mg = NULL;
6737     const U8* send;
6738     bool found = FALSE;
6739
6740     PERL_ARGS_ASSERT_SV_POS_B2U;
6741
6742     if (!sv)
6743         return;
6744
6745     s = (const U8*)SvPV_const(sv, blen);
6746
6747     if (blen < byte)
6748         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
6749
6750     send = s + byte;
6751
6752     if (!SvREADONLY(sv)
6753         && PL_utf8cache
6754         && SvTYPE(sv) >= SVt_PVMG
6755         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
6756     {
6757         if (mg->mg_ptr) {
6758             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
6759             if (cache[1] == byte) {
6760                 /* An exact match. */
6761                 *offsetp = cache[0];
6762                 return;
6763             }
6764             if (cache[3] == byte) {
6765                 /* An exact match. */
6766                 *offsetp = cache[2];
6767                 return;
6768             }
6769
6770             if (cache[1] < byte) {
6771                 /* We already know part of the way. */
6772                 if (mg->mg_len != -1) {
6773                     /* Actually, we know the end too.  */
6774                     len = cache[0]
6775                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
6776                                               s + blen, mg->mg_len - cache[0]);
6777                 } else {
6778                     len = cache[0] + utf8_length(s + cache[1], send);
6779                 }
6780             }
6781             else if (cache[3] < byte) {
6782                 /* We're between the two cached pairs, so we do the calculation
6783                    offset by the byte/utf-8 positions for the earlier pair,
6784                    then add the utf-8 characters from the string start to
6785                    there.  */
6786                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
6787                                           s + cache[1], cache[0] - cache[2])
6788                     + cache[2];
6789
6790             }
6791             else { /* cache[3] > byte */
6792                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
6793                                           cache[2]);
6794
6795             }
6796             ASSERT_UTF8_CACHE(cache);
6797             found = TRUE;
6798         } else if (mg->mg_len != -1) {
6799             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
6800             found = TRUE;
6801         }
6802     }
6803     if (!found || PL_utf8cache < 0) {
6804         const STRLEN real_len = utf8_length(s, send);
6805
6806         if (found && PL_utf8cache < 0)
6807             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
6808         len = real_len;
6809     }
6810     *offsetp = len;
6811
6812     if (PL_utf8cache) {
6813         if (blen == byte)
6814             utf8_mg_len_cache_update(sv, &mg, len);
6815         else
6816             utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
6817     }
6818 }
6819
6820 static void
6821 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
6822                              STRLEN real, SV *const sv)
6823 {
6824     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
6825
6826     /* As this is debugging only code, save space by keeping this test here,
6827        rather than inlining it in all the callers.  */
6828     if (from_cache == real)
6829         return;
6830
6831     /* Need to turn the assertions off otherwise we may recurse infinitely
6832        while printing error messages.  */
6833     SAVEI8(PL_utf8cache);
6834     PL_utf8cache = 0;
6835     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
6836                func, (UV) from_cache, (UV) real, SVfARG(sv));
6837 }
6838
6839 /*
6840 =for apidoc sv_eq
6841
6842 Returns a boolean indicating whether the strings in the two SVs are
6843 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6844 coerce its args to strings if necessary.
6845
6846 =for apidoc sv_eq_flags
6847
6848 Returns a boolean indicating whether the strings in the two SVs are
6849 identical. Is UTF-8 and 'use bytes' aware and coerces its args to strings
6850 if necessary. If the flags include SV_GMAGIC, it handles get-magic, too.
6851
6852 =cut
6853 */
6854
6855 I32
6856 Perl_sv_eq_flags(pTHX_ register SV *sv1, register SV *sv2, const I32 flags)
6857 {
6858     dVAR;
6859     const char *pv1;
6860     STRLEN cur1;
6861     const char *pv2;
6862     STRLEN cur2;
6863     I32  eq     = 0;
6864     char *tpv   = NULL;
6865     SV* svrecode = NULL;
6866
6867     if (!sv1) {
6868         pv1 = "";
6869         cur1 = 0;
6870     }
6871     else {
6872         /* if pv1 and pv2 are the same, second SvPV_const call may
6873          * invalidate pv1 (if we are handling magic), so we may need to
6874          * make a copy */
6875         if (sv1 == sv2 && flags & SV_GMAGIC
6876          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
6877             pv1 = SvPV_const(sv1, cur1);
6878             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
6879         }
6880         pv1 = SvPV_flags_const(sv1, cur1, flags);
6881     }
6882
6883     if (!sv2){
6884         pv2 = "";
6885         cur2 = 0;
6886     }
6887     else
6888         pv2 = SvPV_flags_const(sv2, cur2, flags);
6889
6890     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6891         /* Differing utf8ness.
6892          * Do not UTF8size the comparands as a side-effect. */
6893          if (PL_encoding) {
6894               if (SvUTF8(sv1)) {
6895                    svrecode = newSVpvn(pv2, cur2);
6896                    sv_recode_to_utf8(svrecode, PL_encoding);
6897                    pv2 = SvPV_const(svrecode, cur2);
6898               }
6899               else {
6900                    svrecode = newSVpvn(pv1, cur1);
6901                    sv_recode_to_utf8(svrecode, PL_encoding);
6902                    pv1 = SvPV_const(svrecode, cur1);
6903               }
6904               /* Now both are in UTF-8. */
6905               if (cur1 != cur2) {
6906                    SvREFCNT_dec(svrecode);
6907                    return FALSE;
6908               }
6909          }
6910          else {
6911               bool is_utf8 = TRUE;
6912
6913               if (SvUTF8(sv1)) {
6914                    /* sv1 is the UTF-8 one,
6915                     * if is equal it must be downgrade-able */
6916                    char * const pv = (char*)bytes_from_utf8((const U8*)pv1,
6917                                                      &cur1, &is_utf8);
6918                    if (pv != pv1)
6919                         pv1 = tpv = pv;
6920               }
6921               else {
6922                    /* sv2 is the UTF-8 one,
6923                     * if is equal it must be downgrade-able */
6924                    char * const pv = (char *)bytes_from_utf8((const U8*)pv2,
6925                                                       &cur2, &is_utf8);
6926                    if (pv != pv2)
6927                         pv2 = tpv = pv;
6928               }
6929               if (is_utf8) {
6930                    /* Downgrade not possible - cannot be eq */
6931                    assert (tpv == 0);
6932                    return FALSE;
6933               }
6934          }
6935     }
6936
6937     if (cur1 == cur2)
6938         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
6939         
6940     SvREFCNT_dec(svrecode);
6941     if (tpv)
6942         Safefree(tpv);
6943
6944     return eq;
6945 }
6946
6947 /*
6948 =for apidoc sv_cmp
6949
6950 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6951 string in C<sv1> is less than, equal to, or greater than the string in
6952 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6953 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
6954
6955 =for apidoc sv_cmp_flags
6956
6957 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6958 string in C<sv1> is less than, equal to, or greater than the string in
6959 C<sv2>. Is UTF-8 and 'use bytes' aware and will coerce its args to strings
6960 if necessary. If the flags include SV_GMAGIC, it handles get magic. See
6961 also C<sv_cmp_locale_flags>.
6962
6963 =cut
6964 */
6965
6966 I32
6967 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
6968 {
6969     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
6970 }
6971
6972 I32
6973 Perl_sv_cmp_flags(pTHX_ register SV *const sv1, register SV *const sv2, const I32 flags)
6974 {
6975     dVAR;
6976     STRLEN cur1, cur2;
6977     const char *pv1, *pv2;
6978     char *tpv = NULL;
6979     I32  cmp;
6980     SV *svrecode = NULL;
6981
6982     if (!sv1) {
6983         pv1 = "";
6984         cur1 = 0;
6985     }
6986     else
6987         pv1 = SvPV_flags_const(sv1, cur1, flags);
6988
6989     if (!sv2) {
6990         pv2 = "";
6991         cur2 = 0;
6992     }
6993     else
6994         pv2 = SvPV_flags_const(sv2, cur2, flags);
6995
6996     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6997         /* Differing utf8ness.
6998          * Do not UTF8size the comparands as a side-effect. */
6999         if (SvUTF8(sv1)) {
7000             if (PL_encoding) {
7001                  svrecode = newSVpvn(pv2, cur2);
7002                  sv_recode_to_utf8(svrecode, PL_encoding);
7003                  pv2 = SvPV_const(svrecode, cur2);
7004             }
7005             else {
7006                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
7007             }
7008         }
7009         else {
7010             if (PL_encoding) {
7011                  svrecode = newSVpvn(pv1, cur1);
7012                  sv_recode_to_utf8(svrecode, PL_encoding);
7013                  pv1 = SvPV_const(svrecode, cur1);
7014             }
7015             else {
7016                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
7017             }
7018         }
7019     }
7020
7021     if (!cur1) {
7022         cmp = cur2 ? -1 : 0;
7023     } else if (!cur2) {
7024         cmp = 1;
7025     } else {
7026         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7027
7028         if (retval) {
7029             cmp = retval < 0 ? -1 : 1;
7030         } else if (cur1 == cur2) {
7031             cmp = 0;
7032         } else {
7033             cmp = cur1 < cur2 ? -1 : 1;
7034         }
7035     }
7036
7037     SvREFCNT_dec(svrecode);
7038     if (tpv)
7039         Safefree(tpv);
7040
7041     return cmp;
7042 }
7043
7044 /*
7045 =for apidoc sv_cmp_locale
7046
7047 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
7048 'use bytes' aware, handles get magic, and will coerce its args to strings
7049 if necessary.  See also C<sv_cmp>.
7050
7051 =for apidoc sv_cmp_locale_flags
7052
7053 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
7054 'use bytes' aware and will coerce its args to strings if necessary. If the
7055 flags contain SV_GMAGIC, it handles get magic. See also C<sv_cmp_flags>.
7056
7057 =cut
7058 */
7059
7060 I32
7061 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
7062 {
7063     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7064 }
7065
7066 I32
7067 Perl_sv_cmp_locale_flags(pTHX_ register SV *const sv1, register SV *const sv2, const I32 flags)
7068 {
7069     dVAR;
7070 #ifdef USE_LOCALE_COLLATE
7071
7072     char *pv1, *pv2;
7073     STRLEN len1, len2;
7074     I32 retval;
7075
7076     if (PL_collation_standard)
7077         goto raw_compare;
7078
7079     len1 = 0;
7080     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7081     len2 = 0;
7082     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7083
7084     if (!pv1 || !len1) {
7085         if (pv2 && len2)
7086             return -1;
7087         else
7088             goto raw_compare;
7089     }
7090     else {
7091         if (!pv2 || !len2)
7092             return 1;
7093     }
7094
7095     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7096
7097     if (retval)
7098         return retval < 0 ? -1 : 1;
7099
7100     /*
7101      * When the result of collation is equality, that doesn't mean
7102      * that there are no differences -- some locales exclude some
7103      * characters from consideration.  So to avoid false equalities,
7104      * we use the raw string as a tiebreaker.
7105      */
7106
7107   raw_compare:
7108     /*FALLTHROUGH*/
7109
7110 #endif /* USE_LOCALE_COLLATE */
7111
7112     return sv_cmp(sv1, sv2);
7113 }
7114
7115
7116 #ifdef USE_LOCALE_COLLATE
7117
7118 /*
7119 =for apidoc sv_collxfrm
7120
7121 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag. See
7122 C<sv_collxfrm_flags>.
7123
7124 =for apidoc sv_collxfrm_flags
7125
7126 Add Collate Transform magic to an SV if it doesn't already have it. If the
7127 flags contain SV_GMAGIC, it handles get-magic.
7128
7129 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7130 scalar data of the variable, but transformed to such a format that a normal
7131 memory comparison can be used to compare the data according to the locale
7132 settings.
7133
7134 =cut
7135 */
7136
7137 char *
7138 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7139 {
7140     dVAR;
7141     MAGIC *mg;
7142
7143     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7144
7145     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7146     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7147         const char *s;
7148         char *xf;
7149         STRLEN len, xlen;
7150
7151         if (mg)
7152             Safefree(mg->mg_ptr);
7153         s = SvPV_flags_const(sv, len, flags);
7154         if ((xf = mem_collxfrm(s, len, &xlen))) {
7155             if (! mg) {
7156 #ifdef PERL_OLD_COPY_ON_WRITE
7157                 if (SvIsCOW(sv))
7158                     sv_force_normal_flags(sv, 0);
7159 #endif
7160                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7161                                  0, 0);
7162                 assert(mg);
7163             }
7164             mg->mg_ptr = xf;
7165             mg->mg_len = xlen;
7166         }
7167         else {
7168             if (mg) {
7169                 mg->mg_ptr = NULL;
7170                 mg->mg_len = -1;
7171             }
7172         }
7173     }
7174     if (mg && mg->mg_ptr) {
7175         *nxp = mg->mg_len;
7176         return mg->mg_ptr + sizeof(PL_collation_ix);
7177     }
7178     else {
7179         *nxp = 0;
7180         return NULL;
7181     }
7182 }
7183
7184 #endif /* USE_LOCALE_COLLATE */
7185
7186 /*
7187 =for apidoc sv_gets
7188
7189 Get a line from the filehandle and store it into the SV, optionally
7190 appending to the currently-stored string.
7191
7192 =cut
7193 */
7194
7195 char *
7196 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
7197 {
7198     dVAR;
7199     const char *rsptr;
7200     STRLEN rslen;
7201     register STDCHAR rslast;
7202     register STDCHAR *bp;
7203     register I32 cnt;
7204     I32 i = 0;
7205     I32 rspara = 0;
7206
7207     PERL_ARGS_ASSERT_SV_GETS;
7208
7209     if (SvTHINKFIRST(sv))
7210         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7211     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7212        from <>.
7213        However, perlbench says it's slower, because the existing swipe code
7214        is faster than copy on write.
7215        Swings and roundabouts.  */
7216     SvUPGRADE(sv, SVt_PV);
7217
7218     SvSCREAM_off(sv);
7219
7220     if (append) {
7221         if (PerlIO_isutf8(fp)) {
7222             if (!SvUTF8(sv)) {
7223                 sv_utf8_upgrade_nomg(sv);
7224                 sv_pos_u2b(sv,&append,0);
7225             }
7226         } else if (SvUTF8(sv)) {
7227             SV * const tsv = newSV(0);
7228             sv_gets(tsv, fp, 0);
7229             sv_utf8_upgrade_nomg(tsv);
7230             SvCUR_set(sv,append);
7231             sv_catsv(sv,tsv);
7232             sv_free(tsv);
7233             goto return_string_or_null;
7234         }
7235     }
7236
7237     SvPOK_only(sv);
7238     if (!append) {
7239         SvCUR_set(sv,0);
7240     }
7241     if (PerlIO_isutf8(fp))
7242         SvUTF8_on(sv);
7243
7244     if (IN_PERL_COMPILETIME) {
7245         /* we always read code in line mode */
7246         rsptr = "\n";
7247         rslen = 1;
7248     }
7249     else if (RsSNARF(PL_rs)) {
7250         /* If it is a regular disk file use size from stat() as estimate
7251            of amount we are going to read -- may result in mallocing
7252            more memory than we really need if the layers below reduce
7253            the size we read (e.g. CRLF or a gzip layer).
7254          */
7255         Stat_t st;
7256         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7257             const Off_t offset = PerlIO_tell(fp);
7258             if (offset != (Off_t) -1 && st.st_size + append > offset) {
7259                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
7260             }
7261         }
7262         rsptr = NULL;
7263         rslen = 0;
7264     }
7265     else if (RsRECORD(PL_rs)) {
7266       I32 bytesread;
7267       char *buffer;
7268       U32 recsize;
7269 #ifdef VMS
7270       int fd;
7271 #endif
7272
7273       /* Grab the size of the record we're getting */
7274       recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7275       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7276       /* Go yank in */
7277 #ifdef VMS
7278       /* VMS wants read instead of fread, because fread doesn't respect */
7279       /* RMS record boundaries. This is not necessarily a good thing to be */
7280       /* doing, but we've got no other real choice - except avoid stdio
7281          as implementation - perhaps write a :vms layer ?
7282        */
7283       fd = PerlIO_fileno(fp);
7284       if (fd == -1) { /* in-memory file from PerlIO::Scalar */
7285           bytesread = PerlIO_read(fp, buffer, recsize);
7286       }
7287       else {
7288           bytesread = PerlLIO_read(fd, buffer, recsize);
7289       }
7290 #else
7291       bytesread = PerlIO_read(fp, buffer, recsize);
7292 #endif
7293       if (bytesread < 0)
7294           bytesread = 0;
7295       SvCUR_set(sv, bytesread + append);
7296       buffer[bytesread] = '\0';
7297       goto return_string_or_null;
7298     }
7299     else if (RsPARA(PL_rs)) {
7300         rsptr = "\n\n";
7301         rslen = 2;
7302         rspara = 1;
7303     }
7304     else {
7305         /* Get $/ i.e. PL_rs into same encoding as stream wants */
7306         if (PerlIO_isutf8(fp)) {
7307             rsptr = SvPVutf8(PL_rs, rslen);
7308         }
7309         else {
7310             if (SvUTF8(PL_rs)) {
7311                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
7312                     Perl_croak(aTHX_ "Wide character in $/");
7313                 }
7314             }
7315             rsptr = SvPV_const(PL_rs, rslen);
7316         }
7317     }
7318
7319     rslast = rslen ? rsptr[rslen - 1] : '\0';
7320
7321     if (rspara) {               /* have to do this both before and after */
7322         do {                    /* to make sure file boundaries work right */
7323             if (PerlIO_eof(fp))
7324                 return 0;
7325             i = PerlIO_getc(fp);
7326             if (i != '\n') {
7327                 if (i == -1)
7328                     return 0;
7329                 PerlIO_ungetc(fp,i);
7330                 break;
7331             }
7332         } while (i != EOF);
7333     }
7334
7335     /* See if we know enough about I/O mechanism to cheat it ! */
7336
7337     /* This used to be #ifdef test - it is made run-time test for ease
7338        of abstracting out stdio interface. One call should be cheap
7339        enough here - and may even be a macro allowing compile
7340        time optimization.
7341      */
7342
7343     if (PerlIO_fast_gets(fp)) {
7344
7345     /*
7346      * We're going to steal some values from the stdio struct
7347      * and put EVERYTHING in the innermost loop into registers.
7348      */
7349     register STDCHAR *ptr;
7350     STRLEN bpx;
7351     I32 shortbuffered;
7352
7353 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7354     /* An ungetc()d char is handled separately from the regular
7355      * buffer, so we getc() it back out and stuff it in the buffer.
7356      */
7357     i = PerlIO_getc(fp);
7358     if (i == EOF) return 0;
7359     *(--((*fp)->_ptr)) = (unsigned char) i;
7360     (*fp)->_cnt++;
7361 #endif
7362
7363     /* Here is some breathtakingly efficient cheating */
7364
7365     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7366     /* make sure we have the room */
7367     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7368         /* Not room for all of it
7369            if we are looking for a separator and room for some
7370          */
7371         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7372             /* just process what we have room for */
7373             shortbuffered = cnt - SvLEN(sv) + append + 1;
7374             cnt -= shortbuffered;
7375         }
7376         else {
7377             shortbuffered = 0;
7378             /* remember that cnt can be negative */
7379             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7380         }
7381     }
7382     else
7383         shortbuffered = 0;
7384     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7385     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7386     DEBUG_P(PerlIO_printf(Perl_debug_log,
7387         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7388     DEBUG_P(PerlIO_printf(Perl_debug_log,
7389         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7390                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7391                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7392     for (;;) {
7393       screamer:
7394         if (cnt > 0) {
7395             if (rslen) {
7396                 while (cnt > 0) {                    /* this     |  eat */
7397                     cnt--;
7398                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7399                         goto thats_all_folks;        /* screams  |  sed :-) */
7400                 }
7401             }
7402             else {
7403                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7404                 bp += cnt;                           /* screams  |  dust */
7405                 ptr += cnt;                          /* louder   |  sed :-) */
7406                 cnt = 0;
7407             }
7408         }
7409         
7410         if (shortbuffered) {            /* oh well, must extend */
7411             cnt = shortbuffered;
7412             shortbuffered = 0;
7413             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7414             SvCUR_set(sv, bpx);
7415             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7416             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7417             continue;
7418         }
7419
7420         DEBUG_P(PerlIO_printf(Perl_debug_log,
7421                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7422                               PTR2UV(ptr),(long)cnt));
7423         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7424 #if 0
7425         DEBUG_P(PerlIO_printf(Perl_debug_log,
7426             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7427             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7428             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7429 #endif
7430         /* This used to call 'filbuf' in stdio form, but as that behaves like
7431            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7432            another abstraction.  */
7433         i   = PerlIO_getc(fp);          /* get more characters */
7434 #if 0
7435         DEBUG_P(PerlIO_printf(Perl_debug_log,
7436             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7437             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7438             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7439 #endif
7440         cnt = PerlIO_get_cnt(fp);
7441         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7442         DEBUG_P(PerlIO_printf(Perl_debug_log,
7443             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7444
7445         if (i == EOF)                   /* all done for ever? */
7446             goto thats_really_all_folks;
7447
7448         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7449         SvCUR_set(sv, bpx);
7450         SvGROW(sv, bpx + cnt + 2);
7451         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7452
7453         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7454
7455         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7456             goto thats_all_folks;
7457     }
7458
7459 thats_all_folks:
7460     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7461           memNE((char*)bp - rslen, rsptr, rslen))
7462         goto screamer;                          /* go back to the fray */
7463 thats_really_all_folks:
7464     if (shortbuffered)
7465         cnt += shortbuffered;
7466         DEBUG_P(PerlIO_printf(Perl_debug_log,
7467             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7468     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7469     DEBUG_P(PerlIO_printf(Perl_debug_log,
7470         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7471         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7472         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7473     *bp = '\0';
7474     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7475     DEBUG_P(PerlIO_printf(Perl_debug_log,
7476         "Screamer: done, len=%ld, string=|%.*s|\n",
7477         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7478     }
7479    else
7480     {
7481        /*The big, slow, and stupid way. */
7482 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7483         STDCHAR *buf = NULL;
7484         Newx(buf, 8192, STDCHAR);
7485         assert(buf);
7486 #else
7487         STDCHAR buf[8192];
7488 #endif
7489
7490 screamer2:
7491         if (rslen) {
7492             register const STDCHAR * const bpe = buf + sizeof(buf);
7493             bp = buf;
7494             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7495                 ; /* keep reading */
7496             cnt = bp - buf;
7497         }
7498         else {
7499             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7500             /* Accomodate broken VAXC compiler, which applies U8 cast to
7501              * both args of ?: operator, causing EOF to change into 255
7502              */
7503             if (cnt > 0)
7504                  i = (U8)buf[cnt - 1];
7505             else
7506                  i = EOF;
7507         }
7508
7509         if (cnt < 0)
7510             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7511         if (append)
7512              sv_catpvn(sv, (char *) buf, cnt);
7513         else
7514              sv_setpvn(sv, (char *) buf, cnt);
7515
7516         if (i != EOF &&                 /* joy */
7517             (!rslen ||
7518              SvCUR(sv) < rslen ||
7519              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7520         {
7521             append = -1;
7522             /*
7523              * If we're reading from a TTY and we get a short read,
7524              * indicating that the user hit his EOF character, we need
7525              * to notice it now, because if we try to read from the TTY
7526              * again, the EOF condition will disappear.
7527              *
7528              * The comparison of cnt to sizeof(buf) is an optimization
7529              * that prevents unnecessary calls to feof().
7530              *
7531              * - jik 9/25/96
7532              */
7533             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7534                 goto screamer2;
7535         }
7536
7537 #ifdef USE_HEAP_INSTEAD_OF_STACK
7538         Safefree(buf);
7539 #endif
7540     }
7541
7542     if (rspara) {               /* have to do this both before and after */
7543         while (i != EOF) {      /* to make sure file boundaries work right */
7544             i = PerlIO_getc(fp);
7545             if (i != '\n') {
7546                 PerlIO_ungetc(fp,i);
7547                 break;
7548             }
7549         }
7550     }
7551
7552 return_string_or_null:
7553     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7554 }
7555
7556 /*
7557 =for apidoc sv_inc
7558
7559 Auto-increment of the value in the SV, doing string to numeric conversion
7560 if necessary. Handles 'get' magic and operator overloading.
7561
7562 =cut
7563 */
7564
7565 void
7566 Perl_sv_inc(pTHX_ register SV *const sv)
7567 {
7568     if (!sv)
7569         return;
7570     SvGETMAGIC(sv);
7571     sv_inc_nomg(sv);
7572 }
7573
7574 /*
7575 =for apidoc sv_inc_nomg
7576
7577 Auto-increment of the value in the SV, doing string to numeric conversion
7578 if necessary. Handles operator overloading. Skips handling 'get' magic.
7579
7580 =cut
7581 */
7582
7583 void
7584 Perl_sv_inc_nomg(pTHX_ register SV *const sv)
7585 {
7586     dVAR;
7587     register char *d;
7588     int flags;
7589
7590     if (!sv)
7591         return;
7592     if (SvTHINKFIRST(sv)) {
7593         if (SvIsCOW(sv))
7594             sv_force_normal_flags(sv, 0);
7595         if (SvREADONLY(sv)) {
7596             if (IN_PERL_RUNTIME)
7597                 Perl_croak_no_modify(aTHX);
7598         }
7599         if (SvROK(sv)) {
7600             IV i;
7601             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
7602                 return;
7603             i = PTR2IV(SvRV(sv));
7604             sv_unref(sv);
7605             sv_setiv(sv, i);
7606         }
7607     }
7608     flags = SvFLAGS(sv);
7609     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7610         /* It's (privately or publicly) a float, but not tested as an
7611            integer, so test it to see. */
7612         (void) SvIV(sv);
7613         flags = SvFLAGS(sv);
7614     }
7615     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7616         /* It's publicly an integer, or privately an integer-not-float */
7617 #ifdef PERL_PRESERVE_IVUV
7618       oops_its_int:
7619 #endif
7620         if (SvIsUV(sv)) {
7621             if (SvUVX(sv) == UV_MAX)
7622                 sv_setnv(sv, UV_MAX_P1);
7623             else
7624                 (void)SvIOK_only_UV(sv);
7625                 SvUV_set(sv, SvUVX(sv) + 1);
7626         } else {
7627             if (SvIVX(sv) == IV_MAX)
7628                 sv_setuv(sv, (UV)IV_MAX + 1);
7629             else {
7630                 (void)SvIOK_only(sv);
7631                 SvIV_set(sv, SvIVX(sv) + 1);
7632             }   
7633         }
7634         return;
7635     }
7636     if (flags & SVp_NOK) {
7637         const NV was = SvNVX(sv);
7638         if (NV_OVERFLOWS_INTEGERS_AT &&
7639             was >= NV_OVERFLOWS_INTEGERS_AT) {
7640             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7641                            "Lost precision when incrementing %" NVff " by 1",
7642                            was);
7643         }
7644         (void)SvNOK_only(sv);
7645         SvNV_set(sv, was + 1.0);
7646         return;
7647     }
7648
7649     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7650         if ((flags & SVTYPEMASK) < SVt_PVIV)
7651             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7652         (void)SvIOK_only(sv);
7653         SvIV_set(sv, 1);
7654         return;
7655     }
7656     d = SvPVX(sv);
7657     while (isALPHA(*d)) d++;
7658     while (isDIGIT(*d)) d++;
7659     if (d < SvEND(sv)) {
7660 #ifdef PERL_PRESERVE_IVUV
7661         /* Got to punt this as an integer if needs be, but we don't issue
7662            warnings. Probably ought to make the sv_iv_please() that does
7663            the conversion if possible, and silently.  */
7664         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7665         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7666             /* Need to try really hard to see if it's an integer.
7667                9.22337203685478e+18 is an integer.
7668                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7669                so $a="9.22337203685478e+18"; $a+0; $a++
7670                needs to be the same as $a="9.22337203685478e+18"; $a++
7671                or we go insane. */
7672         
7673             (void) sv_2iv(sv);
7674             if (SvIOK(sv))
7675                 goto oops_its_int;
7676
7677             /* sv_2iv *should* have made this an NV */
7678             if (flags & SVp_NOK) {
7679                 (void)SvNOK_only(sv);
7680                 SvNV_set(sv, SvNVX(sv) + 1.0);
7681                 return;
7682             }
7683             /* I don't think we can get here. Maybe I should assert this
7684                And if we do get here I suspect that sv_setnv will croak. NWC
7685                Fall through. */
7686 #if defined(USE_LONG_DOUBLE)
7687             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",
7688                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7689 #else
7690             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7691                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7692 #endif
7693         }
7694 #endif /* PERL_PRESERVE_IVUV */
7695         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
7696         return;
7697     }
7698     d--;
7699     while (d >= SvPVX_const(sv)) {
7700         if (isDIGIT(*d)) {
7701             if (++*d <= '9')
7702                 return;
7703             *(d--) = '0';
7704         }
7705         else {
7706 #ifdef EBCDIC
7707             /* MKS: The original code here died if letters weren't consecutive.
7708              * at least it didn't have to worry about non-C locales.  The
7709              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7710              * arranged in order (although not consecutively) and that only
7711              * [A-Za-z] are accepted by isALPHA in the C locale.
7712              */
7713             if (*d != 'z' && *d != 'Z') {
7714                 do { ++*d; } while (!isALPHA(*d));
7715                 return;
7716             }
7717             *(d--) -= 'z' - 'a';
7718 #else
7719             ++*d;
7720             if (isALPHA(*d))
7721                 return;
7722             *(d--) -= 'z' - 'a' + 1;
7723 #endif
7724         }
7725     }
7726     /* oh,oh, the number grew */
7727     SvGROW(sv, SvCUR(sv) + 2);
7728     SvCUR_set(sv, SvCUR(sv) + 1);
7729     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
7730         *d = d[-1];
7731     if (isDIGIT(d[1]))
7732         *d = '1';
7733     else
7734         *d = d[1];
7735 }
7736
7737 /*
7738 =for apidoc sv_dec
7739
7740 Auto-decrement of the value in the SV, doing string to numeric conversion
7741 if necessary. Handles 'get' magic and operator overloading.
7742
7743 =cut
7744 */
7745
7746 void
7747 Perl_sv_dec(pTHX_ register SV *const sv)
7748 {
7749     dVAR;
7750     if (!sv)
7751         return;
7752     SvGETMAGIC(sv);
7753     sv_dec_nomg(sv);
7754 }
7755
7756 /*
7757 =for apidoc sv_dec_nomg
7758
7759 Auto-decrement of the value in the SV, doing string to numeric conversion
7760 if necessary. Handles operator overloading. Skips handling 'get' magic.
7761
7762 =cut
7763 */
7764
7765 void
7766 Perl_sv_dec_nomg(pTHX_ register SV *const sv)
7767 {
7768     dVAR;
7769     int flags;
7770
7771     if (!sv)
7772         return;
7773     if (SvTHINKFIRST(sv)) {
7774         if (SvIsCOW(sv))
7775             sv_force_normal_flags(sv, 0);
7776         if (SvREADONLY(sv)) {
7777             if (IN_PERL_RUNTIME)
7778                 Perl_croak_no_modify(aTHX);
7779         }
7780         if (SvROK(sv)) {
7781             IV i;
7782             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
7783                 return;
7784             i = PTR2IV(SvRV(sv));
7785             sv_unref(sv);
7786             sv_setiv(sv, i);
7787         }
7788     }
7789     /* Unlike sv_inc we don't have to worry about string-never-numbers
7790        and keeping them magic. But we mustn't warn on punting */
7791     flags = SvFLAGS(sv);
7792     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7793         /* It's publicly an integer, or privately an integer-not-float */
7794 #ifdef PERL_PRESERVE_IVUV
7795       oops_its_int:
7796 #endif
7797         if (SvIsUV(sv)) {
7798             if (SvUVX(sv) == 0) {
7799                 (void)SvIOK_only(sv);
7800                 SvIV_set(sv, -1);
7801             }
7802             else {
7803                 (void)SvIOK_only_UV(sv);
7804                 SvUV_set(sv, SvUVX(sv) - 1);
7805             }   
7806         } else {
7807             if (SvIVX(sv) == IV_MIN) {
7808                 sv_setnv(sv, (NV)IV_MIN);
7809                 goto oops_its_num;
7810             }
7811             else {
7812                 (void)SvIOK_only(sv);
7813                 SvIV_set(sv, SvIVX(sv) - 1);
7814             }   
7815         }
7816         return;
7817     }
7818     if (flags & SVp_NOK) {
7819     oops_its_num:
7820         {
7821             const NV was = SvNVX(sv);
7822             if (NV_OVERFLOWS_INTEGERS_AT &&
7823                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
7824                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7825                                "Lost precision when decrementing %" NVff " by 1",
7826                                was);
7827             }
7828             (void)SvNOK_only(sv);
7829             SvNV_set(sv, was - 1.0);
7830             return;
7831         }
7832     }
7833     if (!(flags & SVp_POK)) {
7834         if ((flags & SVTYPEMASK) < SVt_PVIV)
7835             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
7836         SvIV_set(sv, -1);
7837         (void)SvIOK_only(sv);
7838         return;
7839     }
7840 #ifdef PERL_PRESERVE_IVUV
7841     {
7842         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7843         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7844             /* Need to try really hard to see if it's an integer.
7845                9.22337203685478e+18 is an integer.
7846                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7847                so $a="9.22337203685478e+18"; $a+0; $a--
7848                needs to be the same as $a="9.22337203685478e+18"; $a--
7849                or we go insane. */
7850         
7851             (void) sv_2iv(sv);
7852             if (SvIOK(sv))
7853                 goto oops_its_int;
7854
7855             /* sv_2iv *should* have made this an NV */
7856             if (flags & SVp_NOK) {
7857                 (void)SvNOK_only(sv);
7858                 SvNV_set(sv, SvNVX(sv) - 1.0);
7859                 return;
7860             }
7861             /* I don't think we can get here. Maybe I should assert this
7862                And if we do get here I suspect that sv_setnv will croak. NWC
7863                Fall through. */
7864 #if defined(USE_LONG_DOUBLE)
7865             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",
7866                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7867 #else
7868             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7869                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7870 #endif
7871         }
7872     }
7873 #endif /* PERL_PRESERVE_IVUV */
7874     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
7875 }
7876
7877 /* this define is used to eliminate a chunk of duplicated but shared logic
7878  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
7879  * used anywhere but here - yves
7880  */
7881 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
7882     STMT_START {      \
7883         EXTEND_MORTAL(1); \
7884         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
7885     } STMT_END
7886
7887 /*
7888 =for apidoc sv_mortalcopy
7889
7890 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
7891 The new SV is marked as mortal. It will be destroyed "soon", either by an
7892 explicit call to FREETMPS, or by an implicit call at places such as
7893 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
7894
7895 =cut
7896 */
7897
7898 /* Make a string that will exist for the duration of the expression
7899  * evaluation.  Actually, it may have to last longer than that, but
7900  * hopefully we won't free it until it has been assigned to a
7901  * permanent location. */
7902
7903 SV *
7904 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
7905 {
7906     dVAR;
7907     register SV *sv;
7908
7909     new_SV(sv);
7910     sv_setsv(sv,oldstr);
7911     PUSH_EXTEND_MORTAL__SV_C(sv);
7912     SvTEMP_on(sv);
7913     return sv;
7914 }
7915
7916 /*
7917 =for apidoc sv_newmortal
7918
7919 Creates a new null SV which is mortal.  The reference count of the SV is
7920 set to 1. It will be destroyed "soon", either by an explicit call to
7921 FREETMPS, or by an implicit call at places such as statement boundaries.
7922 See also C<sv_mortalcopy> and C<sv_2mortal>.
7923
7924 =cut
7925 */
7926
7927 SV *
7928 Perl_sv_newmortal(pTHX)
7929 {
7930     dVAR;
7931     register SV *sv;
7932
7933     new_SV(sv);
7934     SvFLAGS(sv) = SVs_TEMP;
7935     PUSH_EXTEND_MORTAL__SV_C(sv);
7936     return sv;
7937 }
7938
7939
7940 /*
7941 =for apidoc newSVpvn_flags
7942
7943 Creates a new SV and copies a string into it.  The reference count for the
7944 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7945 string.  You are responsible for ensuring that the source string is at least
7946 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7947 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
7948 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
7949 returning. If C<SVf_UTF8> is set, C<s> is considered to be in UTF-8 and the
7950 C<SVf_UTF8> flag will be set on the new SV.
7951 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
7952
7953     #define newSVpvn_utf8(s, len, u)                    \
7954         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
7955
7956 =cut
7957 */
7958
7959 SV *
7960 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
7961 {
7962     dVAR;
7963     register SV *sv;
7964
7965     /* All the flags we don't support must be zero.
7966        And we're new code so I'm going to assert this from the start.  */
7967     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
7968     new_SV(sv);
7969     sv_setpvn(sv,s,len);
7970
7971     /* This code used to a sv_2mortal(), however we now unroll the call to sv_2mortal()
7972      * and do what it does outselves here.
7973      * Since we have asserted that flags can only have the SVf_UTF8 and/or SVs_TEMP flags
7974      * set above we can use it to enable the sv flags directly (bypassing SvTEMP_on), which
7975      * in turn means we dont need to mask out the SVf_UTF8 flag below, which means that we
7976      * eleminate quite a few steps than it looks - Yves (explaining patch by gfx)
7977      */
7978
7979     SvFLAGS(sv) |= flags;
7980
7981     if(flags & SVs_TEMP){
7982         PUSH_EXTEND_MORTAL__SV_C(sv);
7983     }
7984
7985     return sv;
7986 }
7987
7988 /*
7989 =for apidoc sv_2mortal
7990
7991 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
7992 by an explicit call to FREETMPS, or by an implicit call at places such as
7993 statement boundaries.  SvTEMP() is turned on which means that the SV's
7994 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7995 and C<sv_mortalcopy>.
7996
7997 =cut
7998 */
7999
8000 SV *
8001 Perl_sv_2mortal(pTHX_ register SV *const sv)
8002 {
8003     dVAR;
8004     if (!sv)
8005         return NULL;
8006     if (SvREADONLY(sv) && SvIMMORTAL(sv))
8007         return sv;
8008     PUSH_EXTEND_MORTAL__SV_C(sv);
8009     SvTEMP_on(sv);
8010     return sv;
8011 }
8012
8013 /*
8014 =for apidoc newSVpv
8015
8016 Creates a new SV and copies a string into it.  The reference count for the
8017 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8018 strlen().  For efficiency, consider using C<newSVpvn> instead.
8019
8020 =cut
8021 */
8022
8023 SV *
8024 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8025 {
8026     dVAR;
8027     register SV *sv;
8028
8029     new_SV(sv);
8030     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8031     return sv;
8032 }
8033
8034 /*
8035 =for apidoc newSVpvn
8036
8037 Creates a new SV and copies a string into it.  The reference count for the
8038 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8039 string.  You are responsible for ensuring that the source string is at least
8040 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8041
8042 =cut
8043 */
8044
8045 SV *
8046 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
8047 {
8048     dVAR;
8049     register SV *sv;
8050
8051     new_SV(sv);
8052     sv_setpvn(sv,s,len);
8053     return sv;
8054 }
8055
8056 /*
8057 =for apidoc newSVhek
8058
8059 Creates a new SV from the hash key structure.  It will generate scalars that
8060 point to the shared string table where possible. Returns a new (undefined)
8061 SV if the hek is NULL.
8062
8063 =cut
8064 */
8065
8066 SV *
8067 Perl_newSVhek(pTHX_ const HEK *const hek)
8068 {
8069     dVAR;
8070     if (!hek) {
8071         SV *sv;
8072
8073         new_SV(sv);
8074         return sv;
8075     }
8076
8077     if (HEK_LEN(hek) == HEf_SVKEY) {
8078         return newSVsv(*(SV**)HEK_KEY(hek));
8079     } else {
8080         const int flags = HEK_FLAGS(hek);
8081         if (flags & HVhek_WASUTF8) {
8082             /* Trouble :-)
8083                Andreas would like keys he put in as utf8 to come back as utf8
8084             */
8085             STRLEN utf8_len = HEK_LEN(hek);
8086             const U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8087             SV * const sv = newSVpvn ((const char*)as_utf8, utf8_len);
8088
8089             SvUTF8_on (sv);
8090             Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
8091             return sv;
8092         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
8093             /* We don't have a pointer to the hv, so we have to replicate the
8094                flag into every HEK. This hv is using custom a hasing
8095                algorithm. Hence we can't return a shared string scalar, as
8096                that would contain the (wrong) hash value, and might get passed
8097                into an hv routine with a regular hash.
8098                Similarly, a hash that isn't using shared hash keys has to have
8099                the flag in every key so that we know not to try to call
8100                share_hek_kek on it.  */
8101
8102             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8103             if (HEK_UTF8(hek))
8104                 SvUTF8_on (sv);
8105             return sv;
8106         }
8107         /* This will be overwhelminly the most common case.  */
8108         {
8109             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8110                more efficient than sharepvn().  */
8111             SV *sv;
8112
8113             new_SV(sv);
8114             sv_upgrade(sv, SVt_PV);
8115             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8116             SvCUR_set(sv, HEK_LEN(hek));
8117             SvLEN_set(sv, 0);
8118             SvREADONLY_on(sv);
8119             SvFAKE_on(sv);
8120             SvPOK_on(sv);
8121             if (HEK_UTF8(hek))
8122                 SvUTF8_on(sv);
8123             return sv;
8124         }
8125     }
8126 }
8127
8128 /*
8129 =for apidoc newSVpvn_share
8130
8131 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8132 table. If the string does not already exist in the table, it is created
8133 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
8134 value is used; otherwise the hash is computed. The string's hash can be later
8135 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
8136 that as the string table is used for shared hash keys these strings will have
8137 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8138
8139 =cut
8140 */
8141
8142 SV *
8143 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8144 {
8145     dVAR;
8146     register SV *sv;
8147     bool is_utf8 = FALSE;
8148     const char *const orig_src = src;
8149
8150     if (len < 0) {
8151         STRLEN tmplen = -len;
8152         is_utf8 = TRUE;
8153         /* See the note in hv.c:hv_fetch() --jhi */
8154         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8155         len = tmplen;
8156     }
8157     if (!hash)
8158         PERL_HASH(hash, src, len);
8159     new_SV(sv);
8160     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8161        changes here, update it there too.  */
8162     sv_upgrade(sv, SVt_PV);
8163     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8164     SvCUR_set(sv, len);
8165     SvLEN_set(sv, 0);
8166     SvREADONLY_on(sv);
8167     SvFAKE_on(sv);
8168     SvPOK_on(sv);
8169     if (is_utf8)
8170         SvUTF8_on(sv);
8171     if (src != orig_src)
8172         Safefree(src);
8173     return sv;
8174 }
8175
8176 /*
8177 =for apidoc newSVpv_share
8178
8179 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8180 string/length pair.
8181
8182 =cut
8183 */
8184
8185 SV *
8186 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8187 {
8188     return newSVpvn_share(src, strlen(src), hash);
8189 }
8190
8191 #if defined(PERL_IMPLICIT_CONTEXT)
8192
8193 /* pTHX_ magic can't cope with varargs, so this is a no-context
8194  * version of the main function, (which may itself be aliased to us).
8195  * Don't access this version directly.
8196  */
8197
8198 SV *
8199 Perl_newSVpvf_nocontext(const char *const pat, ...)
8200 {
8201     dTHX;
8202     register SV *sv;
8203     va_list args;
8204
8205     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8206
8207     va_start(args, pat);
8208     sv = vnewSVpvf(pat, &args);
8209     va_end(args);
8210     return sv;
8211 }
8212 #endif
8213
8214 /*
8215 =for apidoc newSVpvf
8216
8217 Creates a new SV and initializes it with the string formatted like
8218 C<sprintf>.
8219
8220 =cut
8221 */
8222
8223 SV *
8224 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8225 {
8226     register SV *sv;
8227     va_list args;
8228
8229     PERL_ARGS_ASSERT_NEWSVPVF;
8230
8231     va_start(args, pat);
8232     sv = vnewSVpvf(pat, &args);
8233     va_end(args);
8234     return sv;
8235 }
8236
8237 /* backend for newSVpvf() and newSVpvf_nocontext() */
8238
8239 SV *
8240 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8241 {
8242     dVAR;
8243     register SV *sv;
8244
8245     PERL_ARGS_ASSERT_VNEWSVPVF;
8246
8247     new_SV(sv);
8248     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8249     return sv;
8250 }
8251
8252 /*
8253 =for apidoc newSVnv
8254
8255 Creates a new SV and copies a floating point value into it.
8256 The reference count for the SV is set to 1.
8257
8258 =cut
8259 */
8260
8261 SV *
8262 Perl_newSVnv(pTHX_ const NV n)
8263 {
8264     dVAR;
8265     register SV *sv;
8266
8267     new_SV(sv);
8268     sv_setnv(sv,n);
8269     return sv;
8270 }
8271
8272 /*
8273 =for apidoc newSViv
8274
8275 Creates a new SV and copies an integer into it.  The reference count for the
8276 SV is set to 1.
8277
8278 =cut
8279 */
8280
8281 SV *
8282 Perl_newSViv(pTHX_ const IV i)
8283 {
8284     dVAR;
8285     register SV *sv;
8286
8287     new_SV(sv);
8288     sv_setiv(sv,i);
8289     return sv;
8290 }
8291
8292 /*
8293 =for apidoc newSVuv
8294
8295 Creates a new SV and copies an unsigned integer into it.
8296 The reference count for the SV is set to 1.
8297
8298 =cut
8299 */
8300
8301 SV *
8302 Perl_newSVuv(pTHX_ const UV u)
8303 {
8304     dVAR;
8305     register SV *sv;
8306
8307     new_SV(sv);
8308     sv_setuv(sv,u);
8309     return sv;
8310 }
8311
8312 /*
8313 =for apidoc newSV_type
8314
8315 Creates a new SV, of the type specified.  The reference count for the new SV
8316 is set to 1.
8317
8318 =cut
8319 */
8320
8321 SV *
8322 Perl_newSV_type(pTHX_ const svtype type)
8323 {
8324     register SV *sv;
8325
8326     new_SV(sv);
8327     sv_upgrade(sv, type);
8328     return sv;
8329 }
8330
8331 /*
8332 =for apidoc newRV_noinc
8333
8334 Creates an RV wrapper for an SV.  The reference count for the original
8335 SV is B<not> incremented.
8336
8337 =cut
8338 */
8339
8340 SV *
8341 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
8342 {
8343     dVAR;
8344     register SV *sv = newSV_type(SVt_IV);
8345
8346     PERL_ARGS_ASSERT_NEWRV_NOINC;
8347
8348     SvTEMP_off(tmpRef);
8349     SvRV_set(sv, tmpRef);
8350     SvROK_on(sv);
8351     return sv;
8352 }
8353
8354 /* newRV_inc is the official function name to use now.
8355  * newRV_inc is in fact #defined to newRV in sv.h
8356  */
8357
8358 SV *
8359 Perl_newRV(pTHX_ SV *const sv)
8360 {
8361     dVAR;
8362
8363     PERL_ARGS_ASSERT_NEWRV;
8364
8365     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
8366 }
8367
8368 /*
8369 =for apidoc newSVsv
8370
8371 Creates a new SV which is an exact duplicate of the original SV.
8372 (Uses C<sv_setsv>).
8373
8374 =cut
8375 */
8376
8377 SV *
8378 Perl_newSVsv(pTHX_ register SV *const old)
8379 {
8380     dVAR;
8381     register SV *sv;
8382
8383     if (!old)
8384         return NULL;
8385     if (SvTYPE(old) == SVTYPEMASK) {
8386         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
8387         return NULL;
8388     }
8389     new_SV(sv);
8390     /* SV_GMAGIC is the default for sv_setv()
8391        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
8392        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
8393     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
8394     return sv;
8395 }
8396
8397 /*
8398 =for apidoc sv_reset
8399
8400 Underlying implementation for the C<reset> Perl function.
8401 Note that the perl-level function is vaguely deprecated.
8402
8403 =cut
8404 */
8405
8406 void
8407 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
8408 {
8409     dVAR;
8410     char todo[PERL_UCHAR_MAX+1];
8411
8412     PERL_ARGS_ASSERT_SV_RESET;
8413
8414     if (!stash)
8415         return;
8416
8417     if (!*s) {          /* reset ?? searches */
8418         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8419         if (mg) {
8420             const U32 count = mg->mg_len / sizeof(PMOP**);
8421             PMOP **pmp = (PMOP**) mg->mg_ptr;
8422             PMOP *const *const end = pmp + count;
8423
8424             while (pmp < end) {
8425 #ifdef USE_ITHREADS
8426                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8427 #else
8428                 (*pmp)->op_pmflags &= ~PMf_USED;
8429 #endif
8430                 ++pmp;
8431             }
8432         }
8433         return;
8434     }
8435
8436     /* reset variables */
8437
8438     if (!HvARRAY(stash))
8439         return;
8440
8441     Zero(todo, 256, char);
8442     while (*s) {
8443         I32 max;
8444         I32 i = (unsigned char)*s;
8445         if (s[1] == '-') {
8446             s += 2;
8447         }
8448         max = (unsigned char)*s++;
8449         for ( ; i <= max; i++) {
8450             todo[i] = 1;
8451         }
8452         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8453             HE *entry;
8454             for (entry = HvARRAY(stash)[i];
8455                  entry;
8456                  entry = HeNEXT(entry))
8457             {
8458                 register GV *gv;
8459                 register SV *sv;
8460
8461                 if (!todo[(U8)*HeKEY(entry)])
8462                     continue;
8463                 gv = MUTABLE_GV(HeVAL(entry));
8464                 sv = GvSV(gv);
8465                 if (sv) {
8466                     if (SvTHINKFIRST(sv)) {
8467                         if (!SvREADONLY(sv) && SvROK(sv))
8468                             sv_unref(sv);
8469                         /* XXX Is this continue a bug? Why should THINKFIRST
8470                            exempt us from resetting arrays and hashes?  */
8471                         continue;
8472                     }
8473                     SvOK_off(sv);
8474                     if (SvTYPE(sv) >= SVt_PV) {
8475                         SvCUR_set(sv, 0);
8476                         if (SvPVX_const(sv) != NULL)
8477                             *SvPVX(sv) = '\0';
8478                         SvTAINT(sv);
8479                     }
8480                 }
8481                 if (GvAV(gv)) {
8482                     av_clear(GvAV(gv));
8483                 }
8484                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8485 #if defined(VMS)
8486                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8487 #else /* ! VMS */
8488                     hv_clear(GvHV(gv));
8489 #  if defined(USE_ENVIRON_ARRAY)
8490                     if (gv == PL_envgv)
8491                         my_clearenv();
8492 #  endif /* USE_ENVIRON_ARRAY */
8493 #endif /* VMS */
8494                 }
8495             }
8496         }
8497     }
8498 }
8499
8500 /*
8501 =for apidoc sv_2io
8502
8503 Using various gambits, try to get an IO from an SV: the IO slot if its a
8504 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8505 named after the PV if we're a string.
8506
8507 =cut
8508 */
8509
8510 IO*
8511 Perl_sv_2io(pTHX_ SV *const sv)
8512 {
8513     IO* io;
8514     GV* gv;
8515
8516     PERL_ARGS_ASSERT_SV_2IO;
8517
8518     switch (SvTYPE(sv)) {
8519     case SVt_PVIO:
8520         io = MUTABLE_IO(sv);
8521         break;
8522     case SVt_PVGV:
8523     case SVt_PVLV:
8524         if (isGV_with_GP(sv)) {
8525             gv = MUTABLE_GV(sv);
8526             io = GvIO(gv);
8527             if (!io)
8528                 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
8529             break;
8530         }
8531         /* FALL THROUGH */
8532     default:
8533         if (!SvOK(sv))
8534             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8535         if (SvROK(sv))
8536             return sv_2io(SvRV(sv));
8537         gv = gv_fetchsv(sv, 0, SVt_PVIO);
8538         if (gv)
8539             io = GvIO(gv);
8540         else
8541             io = 0;
8542         if (!io)
8543             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
8544         break;
8545     }
8546     return io;
8547 }
8548
8549 /*
8550 =for apidoc sv_2cv
8551
8552 Using various gambits, try to get a CV from an SV; in addition, try if
8553 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8554 The flags in C<lref> are passed to gv_fetchsv.
8555
8556 =cut
8557 */
8558
8559 CV *
8560 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8561 {
8562     dVAR;
8563     GV *gv = NULL;
8564     CV *cv = NULL;
8565
8566     PERL_ARGS_ASSERT_SV_2CV;
8567
8568     if (!sv) {
8569         *st = NULL;
8570         *gvp = NULL;
8571         return NULL;
8572     }
8573     switch (SvTYPE(sv)) {
8574     case SVt_PVCV:
8575         *st = CvSTASH(sv);
8576         *gvp = NULL;
8577         return MUTABLE_CV(sv);
8578     case SVt_PVHV:
8579     case SVt_PVAV:
8580         *st = NULL;
8581         *gvp = NULL;
8582         return NULL;
8583     case SVt_PVGV:
8584         if (isGV_with_GP(sv)) {
8585             gv = MUTABLE_GV(sv);
8586             *gvp = gv;
8587             *st = GvESTASH(gv);
8588             goto fix_gv;
8589         }
8590         /* FALL THROUGH */
8591
8592     default:
8593         if (SvROK(sv)) {
8594             SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
8595             SvGETMAGIC(sv);
8596             tryAMAGICunDEREF(to_cv);
8597
8598             sv = SvRV(sv);
8599             if (SvTYPE(sv) == SVt_PVCV) {
8600                 cv = MUTABLE_CV(sv);
8601                 *gvp = NULL;
8602                 *st = CvSTASH(cv);
8603                 return cv;
8604             }
8605             else if(isGV_with_GP(sv))
8606                 gv = MUTABLE_GV(sv);
8607             else
8608                 Perl_croak(aTHX_ "Not a subroutine reference");
8609         }
8610         else if (isGV_with_GP(sv)) {
8611             SvGETMAGIC(sv);
8612             gv = MUTABLE_GV(sv);
8613         }
8614         else
8615             gv = gv_fetchsv(sv, lref, SVt_PVCV); /* Calls get magic */
8616         *gvp = gv;
8617         if (!gv) {
8618             *st = NULL;
8619             return NULL;
8620         }
8621         /* Some flags to gv_fetchsv mean don't really create the GV  */
8622         if (!isGV_with_GP(gv)) {
8623             *st = NULL;
8624             return NULL;
8625         }
8626         *st = GvESTASH(gv);
8627     fix_gv:
8628         if (lref && !GvCVu(gv)) {
8629             SV *tmpsv;
8630             ENTER;
8631             tmpsv = newSV(0);
8632             gv_efullname3(tmpsv, gv, NULL);
8633             /* XXX this is probably not what they think they're getting.
8634              * It has the same effect as "sub name;", i.e. just a forward
8635              * declaration! */
8636             newSUB(start_subparse(FALSE, 0),
8637                    newSVOP(OP_CONST, 0, tmpsv),
8638                    NULL, NULL);
8639             LEAVE;
8640             if (!GvCVu(gv))
8641                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8642                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8643         }
8644         return GvCVu(gv);
8645     }
8646 }
8647
8648 /*
8649 =for apidoc sv_true
8650
8651 Returns true if the SV has a true value by Perl's rules.
8652 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8653 instead use an in-line version.
8654
8655 =cut
8656 */
8657
8658 I32
8659 Perl_sv_true(pTHX_ register SV *const sv)
8660 {
8661     if (!sv)
8662         return 0;
8663     if (SvPOK(sv)) {
8664         register const XPV* const tXpv = (XPV*)SvANY(sv);
8665         if (tXpv &&
8666                 (tXpv->xpv_cur > 1 ||
8667                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8668             return 1;
8669         else
8670             return 0;
8671     }
8672     else {
8673         if (SvIOK(sv))
8674             return SvIVX(sv) != 0;
8675         else {
8676             if (SvNOK(sv))
8677                 return SvNVX(sv) != 0.0;
8678             else
8679                 return sv_2bool(sv);
8680         }
8681     }
8682 }
8683
8684 /*
8685 =for apidoc sv_pvn_force
8686
8687 Get a sensible string out of the SV somehow.
8688 A private implementation of the C<SvPV_force> macro for compilers which
8689 can't cope with complex macro expressions. Always use the macro instead.
8690
8691 =for apidoc sv_pvn_force_flags
8692
8693 Get a sensible string out of the SV somehow.
8694 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8695 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8696 implemented in terms of this function.
8697 You normally want to use the various wrapper macros instead: see
8698 C<SvPV_force> and C<SvPV_force_nomg>
8699
8700 =cut
8701 */
8702
8703 char *
8704 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
8705 {
8706     dVAR;
8707
8708     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
8709
8710     if (SvTHINKFIRST(sv) && !SvROK(sv))
8711         sv_force_normal_flags(sv, 0);
8712
8713     if (SvPOK(sv)) {
8714         if (lp)
8715             *lp = SvCUR(sv);
8716     }
8717     else {
8718         char *s;
8719         STRLEN len;
8720  
8721         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
8722             const char * const ref = sv_reftype(sv,0);
8723             if (PL_op)
8724                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
8725                            ref, OP_DESC(PL_op));
8726             else
8727                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
8728         }
8729         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
8730             || isGV_with_GP(sv))
8731             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8732                 OP_DESC(PL_op));
8733         s = sv_2pv_flags(sv, &len, flags);
8734         if (lp)
8735             *lp = len;
8736
8737         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
8738             if (SvROK(sv))
8739                 sv_unref(sv);
8740             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
8741             SvGROW(sv, len + 1);
8742             Move(s,SvPVX(sv),len,char);
8743             SvCUR_set(sv, len);
8744             SvPVX(sv)[len] = '\0';
8745         }
8746         if (!SvPOK(sv)) {
8747             SvPOK_on(sv);               /* validate pointer */
8748             SvTAINT(sv);
8749             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
8750                                   PTR2UV(sv),SvPVX_const(sv)));
8751         }
8752     }
8753     return SvPVX_mutable(sv);
8754 }
8755
8756 /*
8757 =for apidoc sv_pvbyten_force
8758
8759 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
8760
8761 =cut
8762 */
8763
8764 char *
8765 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
8766 {
8767     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
8768
8769     sv_pvn_force(sv,lp);
8770     sv_utf8_downgrade(sv,0);
8771     *lp = SvCUR(sv);
8772     return SvPVX(sv);
8773 }
8774
8775 /*
8776 =for apidoc sv_pvutf8n_force
8777
8778 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
8779
8780 =cut
8781 */
8782
8783 char *
8784 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
8785 {
8786     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
8787
8788     sv_pvn_force(sv,lp);
8789     sv_utf8_upgrade(sv);
8790     *lp = SvCUR(sv);
8791     return SvPVX(sv);
8792 }
8793
8794 /*
8795 =for apidoc sv_reftype
8796
8797 Returns a string describing what the SV is a reference to.
8798
8799 =cut
8800 */
8801
8802 const char *
8803 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
8804 {
8805     PERL_ARGS_ASSERT_SV_REFTYPE;
8806
8807     /* The fact that I don't need to downcast to char * everywhere, only in ?:
8808        inside return suggests a const propagation bug in g++.  */
8809     if (ob && SvOBJECT(sv)) {
8810         char * const name = HvNAME_get(SvSTASH(sv));
8811         return name ? name : (char *) "__ANON__";
8812     }
8813     else {
8814         switch (SvTYPE(sv)) {
8815         case SVt_NULL:
8816         case SVt_IV:
8817         case SVt_NV:
8818         case SVt_PV:
8819         case SVt_PVIV:
8820         case SVt_PVNV:
8821         case SVt_PVMG:
8822                                 if (SvVOK(sv))
8823                                     return "VSTRING";
8824                                 if (SvROK(sv))
8825                                     return "REF";
8826                                 else
8827                                     return "SCALAR";
8828
8829         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
8830                                 /* tied lvalues should appear to be
8831                                  * scalars for backwards compatitbility */
8832                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
8833                                     ? "SCALAR" : "LVALUE");
8834         case SVt_PVAV:          return "ARRAY";
8835         case SVt_PVHV:          return "HASH";
8836         case SVt_PVCV:          return "CODE";
8837         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
8838                                     ? "GLOB" : "SCALAR");
8839         case SVt_PVFM:          return "FORMAT";
8840         case SVt_PVIO:          return "IO";
8841         case SVt_BIND:          return "BIND";
8842         case SVt_REGEXP:        return "REGEXP";
8843         default:                return "UNKNOWN";
8844         }
8845     }
8846 }
8847
8848 /*
8849 =for apidoc sv_isobject
8850
8851 Returns a boolean indicating whether the SV is an RV pointing to a blessed
8852 object.  If the SV is not an RV, or if the object is not blessed, then this
8853 will return false.
8854
8855 =cut
8856 */
8857
8858 int
8859 Perl_sv_isobject(pTHX_ SV *sv)
8860 {
8861     if (!sv)
8862         return 0;
8863     SvGETMAGIC(sv);
8864     if (!SvROK(sv))
8865         return 0;
8866     sv = SvRV(sv);
8867     if (!SvOBJECT(sv))
8868         return 0;
8869     return 1;
8870 }
8871
8872 /*
8873 =for apidoc sv_isa
8874
8875 Returns a boolean indicating whether the SV is blessed into the specified
8876 class.  This does not check for subtypes; use C<sv_derived_from> to verify
8877 an inheritance relationship.
8878
8879 =cut
8880 */
8881
8882 int
8883 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
8884 {
8885     const char *hvname;
8886
8887     PERL_ARGS_ASSERT_SV_ISA;
8888
8889     if (!sv)
8890         return 0;
8891     SvGETMAGIC(sv);
8892     if (!SvROK(sv))
8893         return 0;
8894     sv = SvRV(sv);
8895     if (!SvOBJECT(sv))
8896         return 0;
8897     hvname = HvNAME_get(SvSTASH(sv));
8898     if (!hvname)
8899         return 0;
8900
8901     return strEQ(hvname, name);
8902 }
8903
8904 /*
8905 =for apidoc newSVrv
8906
8907 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
8908 it will be upgraded to one.  If C<classname> is non-null then the new SV will
8909 be blessed in the specified package.  The new SV is returned and its
8910 reference count is 1.
8911
8912 =cut
8913 */
8914
8915 SV*
8916 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
8917 {
8918     dVAR;
8919     SV *sv;
8920
8921     PERL_ARGS_ASSERT_NEWSVRV;
8922
8923     new_SV(sv);
8924
8925     SV_CHECK_THINKFIRST_COW_DROP(rv);
8926     (void)SvAMAGIC_off(rv);
8927
8928     if (SvTYPE(rv) >= SVt_PVMG) {
8929         const U32 refcnt = SvREFCNT(rv);
8930         SvREFCNT(rv) = 0;
8931         sv_clear(rv);
8932         SvFLAGS(rv) = 0;
8933         SvREFCNT(rv) = refcnt;
8934
8935         sv_upgrade(rv, SVt_IV);
8936     } else if (SvROK(rv)) {
8937         SvREFCNT_dec(SvRV(rv));
8938     } else {
8939         prepare_SV_for_RV(rv);
8940     }
8941
8942     SvOK_off(rv);
8943     SvRV_set(rv, sv);
8944     SvROK_on(rv);
8945
8946     if (classname) {
8947         HV* const stash = gv_stashpv(classname, GV_ADD);
8948         (void)sv_bless(rv, stash);
8949     }
8950     return sv;
8951 }
8952
8953 /*
8954 =for apidoc sv_setref_pv
8955
8956 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
8957 argument will be upgraded to an RV.  That RV will be modified to point to
8958 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8959 into the SV.  The C<classname> argument indicates the package for the
8960 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8961 will have a reference count of 1, and the RV will be returned.
8962
8963 Do not use with other Perl types such as HV, AV, SV, CV, because those
8964 objects will become corrupted by the pointer copy process.
8965
8966 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8967
8968 =cut
8969 */
8970
8971 SV*
8972 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
8973 {
8974     dVAR;
8975
8976     PERL_ARGS_ASSERT_SV_SETREF_PV;
8977
8978     if (!pv) {
8979         sv_setsv(rv, &PL_sv_undef);
8980         SvSETMAGIC(rv);
8981     }
8982     else
8983         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
8984     return rv;
8985 }
8986
8987 /*
8988 =for apidoc sv_setref_iv
8989
8990 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
8991 argument will be upgraded to an RV.  That RV will be modified to point to
8992 the new SV.  The C<classname> argument indicates the package for the
8993 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8994 will have a reference count of 1, and the RV will be returned.
8995
8996 =cut
8997 */
8998
8999 SV*
9000 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9001 {
9002     PERL_ARGS_ASSERT_SV_SETREF_IV;
9003
9004     sv_setiv(newSVrv(rv,classname), iv);
9005     return rv;
9006 }
9007
9008 /*
9009 =for apidoc sv_setref_uv
9010
9011 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9012 argument will be upgraded to an RV.  That RV will be modified to point to
9013 the new SV.  The C<classname> argument indicates the package for the
9014 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9015 will have a reference count of 1, and the RV will be returned.
9016
9017 =cut
9018 */
9019
9020 SV*
9021 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9022 {
9023     PERL_ARGS_ASSERT_SV_SETREF_UV;
9024
9025     sv_setuv(newSVrv(rv,classname), uv);
9026     return rv;
9027 }
9028
9029 /*
9030 =for apidoc sv_setref_nv
9031
9032 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9033 argument will be upgraded to an RV.  That RV will be modified to point to
9034 the new SV.  The C<classname> argument indicates the package for the
9035 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9036 will have a reference count of 1, and the RV will be returned.
9037
9038 =cut
9039 */
9040
9041 SV*
9042 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9043 {
9044     PERL_ARGS_ASSERT_SV_SETREF_NV;
9045
9046     sv_setnv(newSVrv(rv,classname), nv);
9047     return rv;
9048 }
9049
9050 /*
9051 =for apidoc sv_setref_pvn
9052
9053 Copies a string into a new SV, optionally blessing the SV.  The length of the
9054 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9055 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9056 argument indicates the package for the blessing.  Set C<classname> to
9057 C<NULL> to avoid the blessing.  The new SV will have a reference count
9058 of 1, and the RV will be returned.
9059
9060 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9061
9062 =cut
9063 */
9064
9065 SV*
9066 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9067                    const char *const pv, const STRLEN n)
9068 {
9069     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9070
9071     sv_setpvn(newSVrv(rv,classname), pv, n);
9072     return rv;
9073 }
9074
9075 /*
9076 =for apidoc sv_bless
9077
9078 Blesses an SV into a specified package.  The SV must be an RV.  The package
9079 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9080 of the SV is unaffected.
9081
9082 =cut
9083 */
9084
9085 SV*
9086 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9087 {
9088     dVAR;
9089     SV *tmpRef;
9090
9091     PERL_ARGS_ASSERT_SV_BLESS;
9092
9093     if (!SvROK(sv))
9094         Perl_croak(aTHX_ "Can't bless non-reference value");
9095     tmpRef = SvRV(sv);
9096     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9097         if (SvIsCOW(tmpRef))
9098             sv_force_normal_flags(tmpRef, 0);
9099         if (SvREADONLY(tmpRef))
9100             Perl_croak_no_modify(aTHX);
9101         if (SvOBJECT(tmpRef)) {
9102             if (SvTYPE(tmpRef) != SVt_PVIO)
9103                 --PL_sv_objcount;
9104             SvREFCNT_dec(SvSTASH(tmpRef));
9105         }
9106     }
9107     SvOBJECT_on(tmpRef);
9108     if (SvTYPE(tmpRef) != SVt_PVIO)
9109         ++PL_sv_objcount;
9110     SvUPGRADE(tmpRef, SVt_PVMG);
9111     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9112
9113     if (Gv_AMG(stash))
9114         SvAMAGIC_on(sv);
9115     else
9116         (void)SvAMAGIC_off(sv);
9117
9118     if(SvSMAGICAL(tmpRef))
9119         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9120             mg_set(tmpRef);
9121
9122
9123
9124     return sv;
9125 }
9126
9127 /* Downgrades a PVGV to a PVMG. If it’s actually a PVLV, we leave the type
9128  * as it is after unglobbing it.
9129  */
9130
9131 STATIC void
9132 S_sv_unglob(pTHX_ SV *const sv)
9133 {
9134     dVAR;
9135     void *xpvmg;
9136     HV *stash;
9137     SV * const temp = sv_newmortal();
9138
9139     PERL_ARGS_ASSERT_SV_UNGLOB;
9140
9141     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9142     SvFAKE_off(sv);
9143     gv_efullname3(temp, MUTABLE_GV(sv), "*");
9144
9145     if (GvGP(sv)) {
9146         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9147            && HvNAME_get(stash))
9148             mro_method_changed_in(stash);
9149         gp_free(MUTABLE_GV(sv));
9150     }
9151     if (GvSTASH(sv)) {
9152         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9153         GvSTASH(sv) = NULL;
9154     }
9155     GvMULTI_off(sv);
9156     if (GvNAME_HEK(sv)) {
9157         unshare_hek(GvNAME_HEK(sv));
9158     }
9159     isGV_with_GP_off(sv);
9160
9161     if(SvTYPE(sv) == SVt_PVGV) {
9162         /* need to keep SvANY(sv) in the right arena */
9163         xpvmg = new_XPVMG();
9164         StructCopy(SvANY(sv), xpvmg, XPVMG);
9165         del_XPVGV(SvANY(sv));
9166         SvANY(sv) = xpvmg;
9167
9168         SvFLAGS(sv) &= ~SVTYPEMASK;
9169         SvFLAGS(sv) |= SVt_PVMG;
9170     }
9171
9172     /* Intentionally not calling any local SET magic, as this isn't so much a
9173        set operation as merely an internal storage change.  */
9174     sv_setsv_flags(sv, temp, 0);
9175 }
9176
9177 /*
9178 =for apidoc sv_unref_flags
9179
9180 Unsets the RV status of the SV, and decrements the reference count of
9181 whatever was being referenced by the RV.  This can almost be thought of
9182 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9183 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9184 (otherwise the decrementing is conditional on the reference count being
9185 different from one or the reference being a readonly SV).
9186 See C<SvROK_off>.
9187
9188 =cut
9189 */
9190
9191 void
9192 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9193 {
9194     SV* const target = SvRV(ref);
9195
9196     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9197
9198     if (SvWEAKREF(ref)) {
9199         sv_del_backref(target, ref);
9200         SvWEAKREF_off(ref);
9201         SvRV_set(ref, NULL);
9202         return;
9203     }
9204     SvRV_set(ref, NULL);
9205     SvROK_off(ref);
9206     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9207        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9208     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9209         SvREFCNT_dec(target);
9210     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9211         sv_2mortal(target);     /* Schedule for freeing later */
9212 }
9213
9214 /*
9215 =for apidoc sv_untaint
9216
9217 Untaint an SV. Use C<SvTAINTED_off> instead.
9218 =cut
9219 */
9220
9221 void
9222 Perl_sv_untaint(pTHX_ SV *const sv)
9223 {
9224     PERL_ARGS_ASSERT_SV_UNTAINT;
9225
9226     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9227         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9228         if (mg)
9229             mg->mg_len &= ~1;
9230     }
9231 }
9232
9233 /*
9234 =for apidoc sv_tainted
9235
9236 Test an SV for taintedness. Use C<SvTAINTED> instead.
9237 =cut
9238 */
9239
9240 bool
9241 Perl_sv_tainted(pTHX_ SV *const sv)
9242 {
9243     PERL_ARGS_ASSERT_SV_TAINTED;
9244
9245     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9246         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9247         if (mg && (mg->mg_len & 1) )
9248             return TRUE;
9249     }
9250     return FALSE;
9251 }
9252
9253 /*
9254 =for apidoc sv_setpviv
9255
9256 Copies an integer into the given SV, also updating its string value.
9257 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9258
9259 =cut
9260 */
9261
9262 void
9263 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9264 {
9265     char buf[TYPE_CHARS(UV)];
9266     char *ebuf;
9267     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
9268
9269     PERL_ARGS_ASSERT_SV_SETPVIV;
9270
9271     sv_setpvn(sv, ptr, ebuf - ptr);
9272 }
9273
9274 /*
9275 =for apidoc sv_setpviv_mg
9276
9277 Like C<sv_setpviv>, but also handles 'set' magic.
9278
9279 =cut
9280 */
9281
9282 void
9283 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
9284 {
9285     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
9286
9287     sv_setpviv(sv, iv);
9288     SvSETMAGIC(sv);
9289 }
9290
9291 #if defined(PERL_IMPLICIT_CONTEXT)
9292
9293 /* pTHX_ magic can't cope with varargs, so this is a no-context
9294  * version of the main function, (which may itself be aliased to us).
9295  * Don't access this version directly.
9296  */
9297
9298 void
9299 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
9300 {
9301     dTHX;
9302     va_list args;
9303
9304     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
9305
9306     va_start(args, pat);
9307     sv_vsetpvf(sv, pat, &args);
9308     va_end(args);
9309 }
9310
9311 /* pTHX_ magic can't cope with varargs, so this is a no-context
9312  * version of the main function, (which may itself be aliased to us).
9313  * Don't access this version directly.
9314  */
9315
9316 void
9317 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9318 {
9319     dTHX;
9320     va_list args;
9321
9322     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
9323
9324     va_start(args, pat);
9325     sv_vsetpvf_mg(sv, pat, &args);
9326     va_end(args);
9327 }
9328 #endif
9329
9330 /*
9331 =for apidoc sv_setpvf
9332
9333 Works like C<sv_catpvf> but copies the text into the SV instead of
9334 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
9335
9336 =cut
9337 */
9338
9339 void
9340 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
9341 {
9342     va_list args;
9343
9344     PERL_ARGS_ASSERT_SV_SETPVF;
9345
9346     va_start(args, pat);
9347     sv_vsetpvf(sv, pat, &args);
9348     va_end(args);
9349 }
9350
9351 /*
9352 =for apidoc sv_vsetpvf
9353
9354 Works like C<sv_vcatpvf> but copies the text into the SV instead of
9355 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
9356
9357 Usually used via its frontend C<sv_setpvf>.
9358
9359 =cut
9360 */
9361
9362 void
9363 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9364 {
9365     PERL_ARGS_ASSERT_SV_VSETPVF;
9366
9367     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9368 }
9369
9370 /*
9371 =for apidoc sv_setpvf_mg
9372
9373 Like C<sv_setpvf>, but also handles 'set' magic.
9374
9375 =cut
9376 */
9377
9378 void
9379 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9380 {
9381     va_list args;
9382
9383     PERL_ARGS_ASSERT_SV_SETPVF_MG;
9384
9385     va_start(args, pat);
9386     sv_vsetpvf_mg(sv, pat, &args);
9387     va_end(args);
9388 }
9389
9390 /*
9391 =for apidoc sv_vsetpvf_mg
9392
9393 Like C<sv_vsetpvf>, but also handles 'set' magic.
9394
9395 Usually used via its frontend C<sv_setpvf_mg>.
9396
9397 =cut
9398 */
9399
9400 void
9401 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9402 {
9403     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
9404
9405     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9406     SvSETMAGIC(sv);
9407 }
9408
9409 #if defined(PERL_IMPLICIT_CONTEXT)
9410
9411 /* pTHX_ magic can't cope with varargs, so this is a no-context
9412  * version of the main function, (which may itself be aliased to us).
9413  * Don't access this version directly.
9414  */
9415
9416 void
9417 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9418 {
9419     dTHX;
9420     va_list args;
9421
9422     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9423
9424     va_start(args, pat);
9425     sv_vcatpvf(sv, pat, &args);
9426     va_end(args);
9427 }
9428
9429 /* pTHX_ magic can't cope with varargs, so this is a no-context
9430  * version of the main function, (which may itself be aliased to us).
9431  * Don't access this version directly.
9432  */
9433
9434 void
9435 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9436 {
9437     dTHX;
9438     va_list args;
9439
9440     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9441
9442     va_start(args, pat);
9443     sv_vcatpvf_mg(sv, pat, &args);
9444     va_end(args);
9445 }
9446 #endif
9447
9448 /*
9449 =for apidoc sv_catpvf
9450
9451 Processes its arguments like C<sprintf> and appends the formatted
9452 output to an SV.  If the appended data contains "wide" characters
9453 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9454 and characters >255 formatted with %c), the original SV might get
9455 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9456 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
9457 valid UTF-8; if the original SV was bytes, the pattern should be too.
9458
9459 =cut */
9460
9461 void
9462 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9463 {
9464     va_list args;
9465
9466     PERL_ARGS_ASSERT_SV_CATPVF;
9467
9468     va_start(args, pat);
9469     sv_vcatpvf(sv, pat, &args);
9470     va_end(args);
9471 }
9472
9473 /*
9474 =for apidoc sv_vcatpvf
9475
9476 Processes its arguments like C<vsprintf> and appends the formatted output
9477 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9478
9479 Usually used via its frontend C<sv_catpvf>.
9480
9481 =cut
9482 */
9483
9484 void
9485 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9486 {
9487     PERL_ARGS_ASSERT_SV_VCATPVF;
9488
9489     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9490 }
9491
9492 /*
9493 =for apidoc sv_catpvf_mg
9494
9495 Like C<sv_catpvf>, but also handles 'set' magic.
9496
9497 =cut
9498 */
9499
9500 void
9501 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9502 {
9503     va_list args;
9504
9505     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9506
9507     va_start(args, pat);
9508     sv_vcatpvf_mg(sv, pat, &args);
9509     va_end(args);
9510 }
9511
9512 /*
9513 =for apidoc sv_vcatpvf_mg
9514
9515 Like C<sv_vcatpvf>, but also handles 'set' magic.
9516
9517 Usually used via its frontend C<sv_catpvf_mg>.
9518
9519 =cut
9520 */
9521
9522 void
9523 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9524 {
9525     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9526
9527     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9528     SvSETMAGIC(sv);
9529 }
9530
9531 /*
9532 =for apidoc sv_vsetpvfn
9533
9534 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9535 appending it.
9536
9537 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9538
9539 =cut
9540 */
9541
9542 void
9543 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9544                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9545 {
9546     PERL_ARGS_ASSERT_SV_VSETPVFN;
9547
9548     sv_setpvs(sv, "");
9549     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9550 }
9551
9552
9553 /*
9554  * Warn of missing argument to sprintf, and then return a defined value
9555  * to avoid inappropriate "use of uninit" warnings [perl #71000].
9556  */
9557 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
9558 STATIC SV*
9559 S_vcatpvfn_missing_argument(pTHX) {
9560     if (ckWARN(WARN_MISSING)) {
9561         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
9562                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
9563     }
9564     return &PL_sv_no;
9565 }
9566
9567
9568 STATIC I32
9569 S_expect_number(pTHX_ char **const pattern)
9570 {
9571     dVAR;
9572     I32 var = 0;
9573
9574     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9575
9576     switch (**pattern) {
9577     case '1': case '2': case '3':
9578     case '4': case '5': case '6':
9579     case '7': case '8': case '9':
9580         var = *(*pattern)++ - '0';
9581         while (isDIGIT(**pattern)) {
9582             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9583             if (tmp < var)
9584                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
9585             var = tmp;
9586         }
9587     }
9588     return var;
9589 }
9590
9591 STATIC char *
9592 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9593 {
9594     const int neg = nv < 0;
9595     UV uv;
9596
9597     PERL_ARGS_ASSERT_F0CONVERT;
9598
9599     if (neg)
9600         nv = -nv;
9601     if (nv < UV_MAX) {
9602         char *p = endbuf;
9603         nv += 0.5;
9604         uv = (UV)nv;
9605         if (uv & 1 && uv == nv)
9606             uv--;                       /* Round to even */
9607         do {
9608             const unsigned dig = uv % 10;
9609             *--p = '0' + dig;
9610         } while (uv /= 10);
9611         if (neg)
9612             *--p = '-';
9613         *len = endbuf - p;
9614         return p;
9615     }
9616     return NULL;
9617 }
9618
9619
9620 /*
9621 =for apidoc sv_vcatpvfn
9622
9623 Processes its arguments like C<vsprintf> and appends the formatted output
9624 to an SV.  Uses an array of SVs if the C style variable argument list is
9625 missing (NULL).  When running with taint checks enabled, indicates via
9626 C<maybe_tainted> if results are untrustworthy (often due to the use of
9627 locales).
9628
9629 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9630
9631 =cut
9632 */
9633
9634
9635 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9636                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9637                         vec_utf8 = DO_UTF8(vecsv);
9638
9639 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9640
9641 void
9642 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9643                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9644 {
9645     dVAR;
9646     char *p;
9647     char *q;
9648     const char *patend;
9649     STRLEN origlen;
9650     I32 svix = 0;
9651     static const char nullstr[] = "(null)";
9652     SV *argsv = NULL;
9653     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
9654     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
9655     SV *nsv = NULL;
9656     /* Times 4: a decimal digit takes more than 3 binary digits.
9657      * NV_DIG: mantissa takes than many decimal digits.
9658      * Plus 32: Playing safe. */
9659     char ebuf[IV_DIG * 4 + NV_DIG + 32];
9660     /* large enough for "%#.#f" --chip */
9661     /* what about long double NVs? --jhi */
9662
9663     PERL_ARGS_ASSERT_SV_VCATPVFN;
9664     PERL_UNUSED_ARG(maybe_tainted);
9665
9666     /* no matter what, this is a string now */
9667     (void)SvPV_force(sv, origlen);
9668
9669     /* special-case "", "%s", and "%-p" (SVf - see below) */
9670     if (patlen == 0)
9671         return;
9672     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
9673         if (args) {
9674             const char * const s = va_arg(*args, char*);
9675             sv_catpv(sv, s ? s : nullstr);
9676         }
9677         else if (svix < svmax) {
9678             sv_catsv(sv, *svargs);
9679         }
9680         else
9681             S_vcatpvfn_missing_argument(aTHX);
9682         return;
9683     }
9684     if (args && patlen == 3 && pat[0] == '%' &&
9685                 pat[1] == '-' && pat[2] == 'p') {
9686         argsv = MUTABLE_SV(va_arg(*args, void*));
9687         sv_catsv(sv, argsv);
9688         return;
9689     }
9690
9691 #ifndef USE_LONG_DOUBLE
9692     /* special-case "%.<number>[gf]" */
9693     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
9694          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
9695         unsigned digits = 0;
9696         const char *pp;
9697
9698         pp = pat + 2;
9699         while (*pp >= '0' && *pp <= '9')
9700             digits = 10 * digits + (*pp++ - '0');
9701         if (pp - pat == (int)patlen - 1 && svix < svmax) {
9702             const NV nv = SvNV(*svargs);
9703             if (*pp == 'g') {
9704                 /* Add check for digits != 0 because it seems that some
9705                    gconverts are buggy in this case, and we don't yet have
9706                    a Configure test for this.  */
9707                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9708                      /* 0, point, slack */
9709                     Gconvert(nv, (int)digits, 0, ebuf);
9710                     sv_catpv(sv, ebuf);
9711                     if (*ebuf)  /* May return an empty string for digits==0 */
9712                         return;
9713                 }
9714             } else if (!digits) {
9715                 STRLEN l;
9716
9717                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9718                     sv_catpvn(sv, p, l);
9719                     return;
9720                 }
9721             }
9722         }
9723     }
9724 #endif /* !USE_LONG_DOUBLE */
9725
9726     if (!args && svix < svmax && DO_UTF8(*svargs))
9727         has_utf8 = TRUE;
9728
9729     patend = (char*)pat + patlen;
9730     for (p = (char*)pat; p < patend; p = q) {
9731         bool alt = FALSE;
9732         bool left = FALSE;
9733         bool vectorize = FALSE;
9734         bool vectorarg = FALSE;
9735         bool vec_utf8 = FALSE;
9736         char fill = ' ';
9737         char plus = 0;
9738         char intsize = 0;
9739         STRLEN width = 0;
9740         STRLEN zeros = 0;
9741         bool has_precis = FALSE;
9742         STRLEN precis = 0;
9743         const I32 osvix = svix;
9744         bool is_utf8 = FALSE;  /* is this item utf8?   */
9745 #ifdef HAS_LDBL_SPRINTF_BUG
9746         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9747            with sfio - Allen <allens@cpan.org> */
9748         bool fix_ldbl_sprintf_bug = FALSE;
9749 #endif
9750
9751         char esignbuf[4];
9752         U8 utf8buf[UTF8_MAXBYTES+1];
9753         STRLEN esignlen = 0;
9754
9755         const char *eptr = NULL;
9756         const char *fmtstart;
9757         STRLEN elen = 0;
9758         SV *vecsv = NULL;
9759         const U8 *vecstr = NULL;
9760         STRLEN veclen = 0;
9761         char c = 0;
9762         int i;
9763         unsigned base = 0;
9764         IV iv = 0;
9765         UV uv = 0;
9766         /* we need a long double target in case HAS_LONG_DOUBLE but
9767            not USE_LONG_DOUBLE
9768         */
9769 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9770         long double nv;
9771 #else
9772         NV nv;
9773 #endif
9774         STRLEN have;
9775         STRLEN need;
9776         STRLEN gap;
9777         const char *dotstr = ".";
9778         STRLEN dotstrlen = 1;
9779         I32 efix = 0; /* explicit format parameter index */
9780         I32 ewix = 0; /* explicit width index */
9781         I32 epix = 0; /* explicit precision index */
9782         I32 evix = 0; /* explicit vector index */
9783         bool asterisk = FALSE;
9784
9785         /* echo everything up to the next format specification */
9786         for (q = p; q < patend && *q != '%'; ++q) ;
9787         if (q > p) {
9788             if (has_utf8 && !pat_utf8)
9789                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
9790             else
9791                 sv_catpvn(sv, p, q - p);
9792             p = q;
9793         }
9794         if (q++ >= patend)
9795             break;
9796
9797         fmtstart = q;
9798
9799 /*
9800     We allow format specification elements in this order:
9801         \d+\$              explicit format parameter index
9802         [-+ 0#]+           flags
9803         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
9804         0                  flag (as above): repeated to allow "v02"     
9805         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
9806         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
9807         [hlqLV]            size
9808     [%bcdefginopsuxDFOUX] format (mandatory)
9809 */
9810
9811         if (args) {
9812 /*  
9813         As of perl5.9.3, printf format checking is on by default.
9814         Internally, perl uses %p formats to provide an escape to
9815         some extended formatting.  This block deals with those
9816         extensions: if it does not match, (char*)q is reset and
9817         the normal format processing code is used.
9818
9819         Currently defined extensions are:
9820                 %p              include pointer address (standard)      
9821                 %-p     (SVf)   include an SV (previously %_)
9822                 %-<num>p        include an SV with precision <num>      
9823                 %<num>p         reserved for future extensions
9824
9825         Robin Barker 2005-07-14
9826
9827                 %1p     (VDf)   removed.  RMB 2007-10-19
9828 */
9829             char* r = q; 
9830             bool sv = FALSE;    
9831             STRLEN n = 0;
9832             if (*q == '-')
9833                 sv = *q++;
9834             n = expect_number(&q);
9835             if (*q++ == 'p') {
9836                 if (sv) {                       /* SVf */
9837                     if (n) {
9838                         precis = n;
9839                         has_precis = TRUE;
9840                     }
9841                     argsv = MUTABLE_SV(va_arg(*args, void*));
9842                     eptr = SvPV_const(argsv, elen);
9843                     if (DO_UTF8(argsv))
9844                         is_utf8 = TRUE;
9845                     goto string;
9846                 }
9847                 else if (n) {
9848                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
9849                                      "internal %%<num>p might conflict with future printf extensions");
9850                 }
9851             }
9852             q = r; 
9853         }
9854
9855         if ( (width = expect_number(&q)) ) {
9856             if (*q == '$') {
9857                 ++q;
9858                 efix = width;
9859             } else {
9860                 goto gotwidth;
9861             }
9862         }
9863
9864         /* FLAGS */
9865
9866         while (*q) {
9867             switch (*q) {
9868             case ' ':
9869             case '+':
9870                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
9871                     q++;
9872                 else
9873                     plus = *q++;
9874                 continue;
9875
9876             case '-':
9877                 left = TRUE;
9878                 q++;
9879                 continue;
9880
9881             case '0':
9882                 fill = *q++;
9883                 continue;
9884
9885             case '#':
9886                 alt = TRUE;
9887                 q++;
9888                 continue;
9889
9890             default:
9891                 break;
9892             }
9893             break;
9894         }
9895
9896       tryasterisk:
9897         if (*q == '*') {
9898             q++;
9899             if ( (ewix = expect_number(&q)) )
9900                 if (*q++ != '$')
9901                     goto unknown;
9902             asterisk = TRUE;
9903         }
9904         if (*q == 'v') {
9905             q++;
9906             if (vectorize)
9907                 goto unknown;
9908             if ((vectorarg = asterisk)) {
9909                 evix = ewix;
9910                 ewix = 0;
9911                 asterisk = FALSE;
9912             }
9913             vectorize = TRUE;
9914             goto tryasterisk;
9915         }
9916
9917         if (!asterisk)
9918         {
9919             if( *q == '0' )
9920                 fill = *q++;
9921             width = expect_number(&q);
9922         }
9923
9924         if (vectorize) {
9925             if (vectorarg) {
9926                 if (args)
9927                     vecsv = va_arg(*args, SV*);
9928                 else if (evix) {
9929                     vecsv = (evix > 0 && evix <= svmax)
9930                         ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
9931                 } else {
9932                     vecsv = svix < svmax
9933                         ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
9934                 }
9935                 dotstr = SvPV_const(vecsv, dotstrlen);
9936                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
9937                    bad with tied or overloaded values that return UTF8.  */
9938                 if (DO_UTF8(vecsv))
9939                     is_utf8 = TRUE;
9940                 else if (has_utf8) {
9941                     vecsv = sv_mortalcopy(vecsv);
9942                     sv_utf8_upgrade(vecsv);
9943                     dotstr = SvPV_const(vecsv, dotstrlen);
9944                     is_utf8 = TRUE;
9945                 }                   
9946             }
9947             if (args) {
9948                 VECTORIZE_ARGS
9949             }
9950             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
9951                 vecsv = svargs[efix ? efix-1 : svix++];
9952                 vecstr = (U8*)SvPV_const(vecsv,veclen);
9953                 vec_utf8 = DO_UTF8(vecsv);
9954
9955                 /* if this is a version object, we need to convert
9956                  * back into v-string notation and then let the
9957                  * vectorize happen normally
9958                  */
9959                 if (sv_derived_from(vecsv, "version")) {
9960                     char *version = savesvpv(vecsv);
9961                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
9962                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9963                         "vector argument not supported with alpha versions");
9964                         goto unknown;
9965                     }
9966                     vecsv = sv_newmortal();
9967                     scan_vstring(version, version + veclen, vecsv);
9968                     vecstr = (U8*)SvPV_const(vecsv, veclen);
9969                     vec_utf8 = DO_UTF8(vecsv);
9970                     Safefree(version);
9971                 }
9972             }
9973             else {
9974                 vecstr = (U8*)"";
9975                 veclen = 0;
9976             }
9977         }
9978
9979         if (asterisk) {
9980             if (args)
9981                 i = va_arg(*args, int);
9982             else
9983                 i = (ewix ? ewix <= svmax : svix < svmax) ?
9984                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9985             left |= (i < 0);
9986             width = (i < 0) ? -i : i;
9987         }
9988       gotwidth:
9989
9990         /* PRECISION */
9991
9992         if (*q == '.') {
9993             q++;
9994             if (*q == '*') {
9995                 q++;
9996                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
9997                     goto unknown;
9998                 /* XXX: todo, support specified precision parameter */
9999                 if (epix)
10000                     goto unknown;
10001                 if (args)
10002                     i = va_arg(*args, int);
10003                 else
10004                     i = (ewix ? ewix <= svmax : svix < svmax)
10005                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10006                 precis = i;
10007                 has_precis = !(i < 0);
10008             }
10009             else {
10010                 precis = 0;
10011                 while (isDIGIT(*q))
10012                     precis = precis * 10 + (*q++ - '0');
10013                 has_precis = TRUE;
10014             }
10015         }
10016
10017         /* SIZE */
10018
10019         switch (*q) {
10020 #ifdef WIN32
10021         case 'I':                       /* Ix, I32x, and I64x */
10022 #  ifdef WIN64
10023             if (q[1] == '6' && q[2] == '4') {
10024                 q += 3;
10025                 intsize = 'q';
10026                 break;
10027             }
10028 #  endif
10029             if (q[1] == '3' && q[2] == '2') {
10030                 q += 3;
10031                 break;
10032             }
10033 #  ifdef WIN64
10034             intsize = 'q';
10035 #  endif
10036             q++;
10037             break;
10038 #endif
10039 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10040         case 'L':                       /* Ld */
10041             /*FALLTHROUGH*/
10042 #ifdef HAS_QUAD
10043         case 'q':                       /* qd */
10044 #endif
10045             intsize = 'q';
10046             q++;
10047             break;
10048 #endif
10049         case 'l':
10050 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10051             if (*(q + 1) == 'l') {      /* lld, llf */
10052                 intsize = 'q';
10053                 q += 2;
10054                 break;
10055              }
10056 #endif
10057             /*FALLTHROUGH*/
10058         case 'h':
10059             /*FALLTHROUGH*/
10060         case 'V':
10061             intsize = *q++;
10062             break;
10063         }
10064
10065         /* CONVERSION */
10066
10067         if (*q == '%') {
10068             eptr = q++;
10069             elen = 1;
10070             if (vectorize) {
10071                 c = '%';
10072                 goto unknown;
10073             }
10074             goto string;
10075         }
10076
10077         if (!vectorize && !args) {
10078             if (efix) {
10079                 const I32 i = efix-1;
10080                 argsv = (i >= 0 && i < svmax)
10081                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10082             } else {
10083                 argsv = (svix >= 0 && svix < svmax)
10084                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10085             }
10086         }
10087
10088         switch (c = *q++) {
10089
10090             /* STRINGS */
10091
10092         case 'c':
10093             if (vectorize)
10094                 goto unknown;
10095             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10096             if ((uv > 255 ||
10097                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
10098                 && !IN_BYTES) {
10099                 eptr = (char*)utf8buf;
10100                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10101                 is_utf8 = TRUE;
10102             }
10103             else {
10104                 c = (char)uv;
10105                 eptr = &c;
10106                 elen = 1;
10107             }
10108             goto string;
10109
10110         case 's':
10111             if (vectorize)
10112                 goto unknown;
10113             if (args) {
10114                 eptr = va_arg(*args, char*);
10115                 if (eptr)
10116                     elen = strlen(eptr);
10117                 else {
10118                     eptr = (char *)nullstr;
10119                     elen = sizeof nullstr - 1;
10120                 }
10121             }
10122             else {
10123                 eptr = SvPV_const(argsv, elen);
10124                 if (DO_UTF8(argsv)) {
10125                     STRLEN old_precis = precis;
10126                     if (has_precis && precis < elen) {
10127                         STRLEN ulen = sv_len_utf8(argsv);
10128                         I32 p = precis > ulen ? ulen : precis;
10129                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
10130                         precis = p;
10131                     }
10132                     if (width) { /* fudge width (can't fudge elen) */
10133                         if (has_precis && precis < elen)
10134                             width += precis - old_precis;
10135                         else
10136                             width += elen - sv_len_utf8(argsv);
10137                     }
10138                     is_utf8 = TRUE;
10139                 }
10140             }
10141
10142         string:
10143             if (has_precis && precis < elen)
10144                 elen = precis;
10145             break;
10146
10147             /* INTEGERS */
10148
10149         case 'p':
10150             if (alt || vectorize)
10151                 goto unknown;
10152             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
10153             base = 16;
10154             goto integer;
10155
10156         case 'D':
10157 #ifdef IV_IS_QUAD
10158             intsize = 'q';
10159 #else
10160             intsize = 'l';
10161 #endif
10162             /*FALLTHROUGH*/
10163         case 'd':
10164         case 'i':
10165 #if vdNUMBER
10166         format_vd:
10167 #endif
10168             if (vectorize) {
10169                 STRLEN ulen;
10170                 if (!veclen)
10171                     continue;
10172                 if (vec_utf8)
10173                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10174                                         UTF8_ALLOW_ANYUV);
10175                 else {
10176                     uv = *vecstr;
10177                     ulen = 1;
10178                 }
10179                 vecstr += ulen;
10180                 veclen -= ulen;
10181                 if (plus)
10182                      esignbuf[esignlen++] = plus;
10183             }
10184             else if (args) {
10185                 switch (intsize) {
10186                 case 'h':       iv = (short)va_arg(*args, int); break;
10187                 case 'l':       iv = va_arg(*args, long); break;
10188                 case 'V':       iv = va_arg(*args, IV); break;
10189                 default:        iv = va_arg(*args, int); break;
10190                 case 'q':
10191 #ifdef HAS_QUAD
10192                                 iv = va_arg(*args, Quad_t); break;
10193 #else
10194                                 goto unknown;
10195 #endif
10196                 }
10197             }
10198             else {
10199                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10200                 switch (intsize) {
10201                 case 'h':       iv = (short)tiv; break;
10202                 case 'l':       iv = (long)tiv; break;
10203                 case 'V':
10204                 default:        iv = tiv; break;
10205                 case 'q':
10206 #ifdef HAS_QUAD
10207                                 iv = (Quad_t)tiv; break;
10208 #else
10209                                 goto unknown;
10210 #endif
10211                 }
10212             }
10213             if ( !vectorize )   /* we already set uv above */
10214             {
10215                 if (iv >= 0) {
10216                     uv = iv;
10217                     if (plus)
10218                         esignbuf[esignlen++] = plus;
10219                 }
10220                 else {
10221                     uv = -iv;
10222                     esignbuf[esignlen++] = '-';
10223                 }
10224             }
10225             base = 10;
10226             goto integer;
10227
10228         case 'U':
10229 #ifdef IV_IS_QUAD
10230             intsize = 'q';
10231 #else
10232             intsize = 'l';
10233 #endif
10234             /*FALLTHROUGH*/
10235         case 'u':
10236             base = 10;
10237             goto uns_integer;
10238
10239         case 'B':
10240         case 'b':
10241             base = 2;
10242             goto uns_integer;
10243
10244         case 'O':
10245 #ifdef IV_IS_QUAD
10246             intsize = 'q';
10247 #else
10248             intsize = 'l';
10249 #endif
10250             /*FALLTHROUGH*/
10251         case 'o':
10252             base = 8;
10253             goto uns_integer;
10254
10255         case 'X':
10256         case 'x':
10257             base = 16;
10258
10259         uns_integer:
10260             if (vectorize) {
10261                 STRLEN ulen;
10262         vector:
10263                 if (!veclen)
10264                     continue;
10265                 if (vec_utf8)
10266                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10267                                         UTF8_ALLOW_ANYUV);
10268                 else {
10269                     uv = *vecstr;
10270                     ulen = 1;
10271                 }
10272                 vecstr += ulen;
10273                 veclen -= ulen;
10274             }
10275             else if (args) {
10276                 switch (intsize) {
10277                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
10278                 case 'l':  uv = va_arg(*args, unsigned long); break;
10279                 case 'V':  uv = va_arg(*args, UV); break;
10280                 default:   uv = va_arg(*args, unsigned); break;
10281                 case 'q':
10282 #ifdef HAS_QUAD
10283                            uv = va_arg(*args, Uquad_t); break;
10284 #else
10285                            goto unknown;
10286 #endif
10287                 }
10288             }
10289             else {
10290                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
10291                 switch (intsize) {
10292                 case 'h':       uv = (unsigned short)tuv; break;
10293                 case 'l':       uv = (unsigned long)tuv; break;
10294                 case 'V':
10295                 default:        uv = tuv; break;
10296                 case 'q':
10297 #ifdef HAS_QUAD
10298                                 uv = (Uquad_t)tuv; break;
10299 #else
10300                                 goto unknown;
10301 #endif
10302                 }
10303             }
10304
10305         integer:
10306             {
10307                 char *ptr = ebuf + sizeof ebuf;
10308                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
10309                 zeros = 0;
10310
10311                 switch (base) {
10312                     unsigned dig;
10313                 case 16:
10314                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
10315                     do {
10316                         dig = uv & 15;
10317                         *--ptr = p[dig];
10318                     } while (uv >>= 4);
10319                     if (tempalt) {
10320                         esignbuf[esignlen++] = '0';
10321                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
10322                     }
10323                     break;
10324                 case 8:
10325                     do {
10326                         dig = uv & 7;
10327                         *--ptr = '0' + dig;
10328                     } while (uv >>= 3);
10329                     if (alt && *ptr != '0')
10330                         *--ptr = '0';
10331                     break;
10332                 case 2:
10333                     do {
10334                         dig = uv & 1;
10335                         *--ptr = '0' + dig;
10336                     } while (uv >>= 1);
10337                     if (tempalt) {
10338                         esignbuf[esignlen++] = '0';
10339                         esignbuf[esignlen++] = c;
10340                     }
10341                     break;
10342                 default:                /* it had better be ten or less */
10343                     do {
10344                         dig = uv % base;
10345                         *--ptr = '0' + dig;
10346                     } while (uv /= base);
10347                     break;
10348                 }
10349                 elen = (ebuf + sizeof ebuf) - ptr;
10350                 eptr = ptr;
10351                 if (has_precis) {
10352                     if (precis > elen)
10353                         zeros = precis - elen;
10354                     else if (precis == 0 && elen == 1 && *eptr == '0'
10355                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
10356                         elen = 0;
10357
10358                 /* a precision nullifies the 0 flag. */
10359                     if (fill == '0')
10360                         fill = ' ';
10361                 }
10362             }
10363             break;
10364
10365             /* FLOATING POINT */
10366
10367         case 'F':
10368             c = 'f';            /* maybe %F isn't supported here */
10369             /*FALLTHROUGH*/
10370         case 'e': case 'E':
10371         case 'f':
10372         case 'g': case 'G':
10373             if (vectorize)
10374                 goto unknown;
10375
10376             /* This is evil, but floating point is even more evil */
10377
10378             /* for SV-style calling, we can only get NV
10379                for C-style calling, we assume %f is double;
10380                for simplicity we allow any of %Lf, %llf, %qf for long double
10381             */
10382             switch (intsize) {
10383             case 'V':
10384 #if defined(USE_LONG_DOUBLE)
10385                 intsize = 'q';
10386 #endif
10387                 break;
10388 /* [perl #20339] - we should accept and ignore %lf rather than die */
10389             case 'l':
10390                 /*FALLTHROUGH*/
10391             default:
10392 #if defined(USE_LONG_DOUBLE)
10393                 intsize = args ? 0 : 'q';
10394 #endif
10395                 break;
10396             case 'q':
10397 #if defined(HAS_LONG_DOUBLE)
10398                 break;
10399 #else
10400                 /*FALLTHROUGH*/
10401 #endif
10402             case 'h':
10403                 goto unknown;
10404             }
10405
10406             /* now we need (long double) if intsize == 'q', else (double) */
10407             nv = (args) ?
10408 #if LONG_DOUBLESIZE > DOUBLESIZE
10409                 intsize == 'q' ?
10410                     va_arg(*args, long double) :
10411                     va_arg(*args, double)
10412 #else
10413                     va_arg(*args, double)
10414 #endif
10415                 : SvNV(argsv);
10416
10417             need = 0;
10418             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
10419                else. frexp() has some unspecified behaviour for those three */
10420             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
10421                 i = PERL_INT_MIN;
10422                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10423                    will cast our (long double) to (double) */
10424                 (void)Perl_frexp(nv, &i);
10425                 if (i == PERL_INT_MIN)
10426                     Perl_die(aTHX_ "panic: frexp");
10427                 if (i > 0)
10428                     need = BIT_DIGITS(i);
10429             }
10430             need += has_precis ? precis : 6; /* known default */
10431
10432             if (need < width)
10433                 need = width;
10434
10435 #ifdef HAS_LDBL_SPRINTF_BUG
10436             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10437                with sfio - Allen <allens@cpan.org> */
10438
10439 #  ifdef DBL_MAX
10440 #    define MY_DBL_MAX DBL_MAX
10441 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10442 #    if DOUBLESIZE >= 8
10443 #      define MY_DBL_MAX 1.7976931348623157E+308L
10444 #    else
10445 #      define MY_DBL_MAX 3.40282347E+38L
10446 #    endif
10447 #  endif
10448
10449 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10450 #    define MY_DBL_MAX_BUG 1L
10451 #  else
10452 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10453 #  endif
10454
10455 #  ifdef DBL_MIN
10456 #    define MY_DBL_MIN DBL_MIN
10457 #  else  /* XXX guessing! -Allen */
10458 #    if DOUBLESIZE >= 8
10459 #      define MY_DBL_MIN 2.2250738585072014E-308L
10460 #    else
10461 #      define MY_DBL_MIN 1.17549435E-38L
10462 #    endif
10463 #  endif
10464
10465             if ((intsize == 'q') && (c == 'f') &&
10466                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10467                 (need < DBL_DIG)) {
10468                 /* it's going to be short enough that
10469                  * long double precision is not needed */
10470
10471                 if ((nv <= 0L) && (nv >= -0L))
10472                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10473                 else {
10474                     /* would use Perl_fp_class as a double-check but not
10475                      * functional on IRIX - see perl.h comments */
10476
10477                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10478                         /* It's within the range that a double can represent */
10479 #if defined(DBL_MAX) && !defined(DBL_MIN)
10480                         if ((nv >= ((long double)1/DBL_MAX)) ||
10481                             (nv <= (-(long double)1/DBL_MAX)))
10482 #endif
10483                         fix_ldbl_sprintf_bug = TRUE;
10484                     }
10485                 }
10486                 if (fix_ldbl_sprintf_bug == TRUE) {
10487                     double temp;
10488
10489                     intsize = 0;
10490                     temp = (double)nv;
10491                     nv = (NV)temp;
10492                 }
10493             }
10494
10495 #  undef MY_DBL_MAX
10496 #  undef MY_DBL_MAX_BUG
10497 #  undef MY_DBL_MIN
10498
10499 #endif /* HAS_LDBL_SPRINTF_BUG */
10500
10501             need += 20; /* fudge factor */
10502             if (PL_efloatsize < need) {
10503                 Safefree(PL_efloatbuf);
10504                 PL_efloatsize = need + 20; /* more fudge */
10505                 Newx(PL_efloatbuf, PL_efloatsize, char);
10506                 PL_efloatbuf[0] = '\0';
10507             }
10508
10509             if ( !(width || left || plus || alt) && fill != '0'
10510                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10511                 /* See earlier comment about buggy Gconvert when digits,
10512                    aka precis is 0  */
10513                 if ( c == 'g' && precis) {
10514                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10515                     /* May return an empty string for digits==0 */
10516                     if (*PL_efloatbuf) {
10517                         elen = strlen(PL_efloatbuf);
10518                         goto float_converted;
10519                     }
10520                 } else if ( c == 'f' && !precis) {
10521                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10522                         break;
10523                 }
10524             }
10525             {
10526                 char *ptr = ebuf + sizeof ebuf;
10527                 *--ptr = '\0';
10528                 *--ptr = c;
10529                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10530 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10531                 if (intsize == 'q') {
10532                     /* Copy the one or more characters in a long double
10533                      * format before the 'base' ([efgEFG]) character to
10534                      * the format string. */
10535                     static char const prifldbl[] = PERL_PRIfldbl;
10536                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10537                     while (p >= prifldbl) { *--ptr = *p--; }
10538                 }
10539 #endif
10540                 if (has_precis) {
10541                     base = precis;
10542                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10543                     *--ptr = '.';
10544                 }
10545                 if (width) {
10546                     base = width;
10547                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10548                 }
10549                 if (fill == '0')
10550                     *--ptr = fill;
10551                 if (left)
10552                     *--ptr = '-';
10553                 if (plus)
10554                     *--ptr = plus;
10555                 if (alt)
10556                     *--ptr = '#';
10557                 *--ptr = '%';
10558
10559                 /* No taint.  Otherwise we are in the strange situation
10560                  * where printf() taints but print($float) doesn't.
10561                  * --jhi */
10562 #if defined(HAS_LONG_DOUBLE)
10563                 elen = ((intsize == 'q')
10564                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10565                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10566 #else
10567                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10568 #endif
10569             }
10570         float_converted:
10571             eptr = PL_efloatbuf;
10572             break;
10573
10574             /* SPECIAL */
10575
10576         case 'n':
10577             if (vectorize)
10578                 goto unknown;
10579             i = SvCUR(sv) - origlen;
10580             if (args) {
10581                 switch (intsize) {
10582                 case 'h':       *(va_arg(*args, short*)) = i; break;
10583                 default:        *(va_arg(*args, int*)) = i; break;
10584                 case 'l':       *(va_arg(*args, long*)) = i; break;
10585                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10586                 case 'q':
10587 #ifdef HAS_QUAD
10588                                 *(va_arg(*args, Quad_t*)) = i; break;
10589 #else
10590                                 goto unknown;
10591 #endif
10592                 }
10593             }
10594             else
10595                 sv_setuv_mg(argsv, (UV)i);
10596             continue;   /* not "break" */
10597
10598             /* UNKNOWN */
10599
10600         default:
10601       unknown:
10602             if (!args
10603                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
10604                 && ckWARN(WARN_PRINTF))
10605             {
10606                 SV * const msg = sv_newmortal();
10607                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
10608                           (PL_op->op_type == OP_PRTF) ? "" : "s");
10609                 if (fmtstart < patend) {
10610                     const char * const fmtend = q < patend ? q : patend;
10611                     const char * f;
10612                     sv_catpvs(msg, "\"%");
10613                     for (f = fmtstart; f < fmtend; f++) {
10614                         if (isPRINT(*f)) {
10615                             sv_catpvn(msg, f, 1);
10616                         } else {
10617                             Perl_sv_catpvf(aTHX_ msg,
10618                                            "\\%03"UVof, (UV)*f & 0xFF);
10619                         }
10620                     }
10621                     sv_catpvs(msg, "\"");
10622                 } else {
10623                     sv_catpvs(msg, "end of string");
10624                 }
10625                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
10626             }
10627
10628             /* output mangled stuff ... */
10629             if (c == '\0')
10630                 --q;
10631             eptr = p;
10632             elen = q - p;
10633
10634             /* ... right here, because formatting flags should not apply */
10635             SvGROW(sv, SvCUR(sv) + elen + 1);
10636             p = SvEND(sv);
10637             Copy(eptr, p, elen, char);
10638             p += elen;
10639             *p = '\0';
10640             SvCUR_set(sv, p - SvPVX_const(sv));
10641             svix = osvix;
10642             continue;   /* not "break" */
10643         }
10644
10645         if (is_utf8 != has_utf8) {
10646             if (is_utf8) {
10647                 if (SvCUR(sv))
10648                     sv_utf8_upgrade(sv);
10649             }
10650             else {
10651                 const STRLEN old_elen = elen;
10652                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
10653                 sv_utf8_upgrade(nsv);
10654                 eptr = SvPVX_const(nsv);
10655                 elen = SvCUR(nsv);
10656
10657                 if (width) { /* fudge width (can't fudge elen) */
10658                     width += elen - old_elen;
10659                 }
10660                 is_utf8 = TRUE;
10661             }
10662         }
10663
10664         have = esignlen + zeros + elen;
10665         if (have < zeros)
10666             Perl_croak_nocontext("%s", PL_memory_wrap);
10667
10668         need = (have > width ? have : width);
10669         gap = need - have;
10670
10671         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
10672             Perl_croak_nocontext("%s", PL_memory_wrap);
10673         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
10674         p = SvEND(sv);
10675         if (esignlen && fill == '0') {
10676             int i;
10677             for (i = 0; i < (int)esignlen; i++)
10678                 *p++ = esignbuf[i];
10679         }
10680         if (gap && !left) {
10681             memset(p, fill, gap);
10682             p += gap;
10683         }
10684         if (esignlen && fill != '0') {
10685             int i;
10686             for (i = 0; i < (int)esignlen; i++)
10687                 *p++ = esignbuf[i];
10688         }
10689         if (zeros) {
10690             int i;
10691             for (i = zeros; i; i--)
10692                 *p++ = '0';
10693         }
10694         if (elen) {
10695             Copy(eptr, p, elen, char);
10696             p += elen;
10697         }
10698         if (gap && left) {
10699             memset(p, ' ', gap);
10700             p += gap;
10701         }
10702         if (vectorize) {
10703             if (veclen) {
10704                 Copy(dotstr, p, dotstrlen, char);
10705                 p += dotstrlen;
10706             }
10707             else
10708                 vectorize = FALSE;              /* done iterating over vecstr */
10709         }
10710         if (is_utf8)
10711             has_utf8 = TRUE;
10712         if (has_utf8)
10713             SvUTF8_on(sv);
10714         *p = '\0';
10715         SvCUR_set(sv, p - SvPVX_const(sv));
10716         if (vectorize) {
10717             esignlen = 0;
10718             goto vector;
10719         }
10720     }
10721     SvTAINT(sv);
10722 }
10723
10724 /* =========================================================================
10725
10726 =head1 Cloning an interpreter
10727
10728 All the macros and functions in this section are for the private use of
10729 the main function, perl_clone().
10730
10731 The foo_dup() functions make an exact copy of an existing foo thingy.
10732 During the course of a cloning, a hash table is used to map old addresses
10733 to new addresses. The table is created and manipulated with the
10734 ptr_table_* functions.
10735
10736 =cut
10737
10738  * =========================================================================*/
10739
10740
10741 #if defined(USE_ITHREADS)
10742
10743 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
10744 #ifndef GpREFCNT_inc
10745 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
10746 #endif
10747
10748
10749 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
10750    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
10751    If this changes, please unmerge ss_dup.
10752    Likewise, sv_dup_inc_multiple() relies on this fact.  */
10753 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
10754 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
10755 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
10756 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
10757 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
10758 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
10759 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
10760 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
10761 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
10762 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
10763 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
10764 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
10765 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
10766
10767 /* clone a parser */
10768
10769 yy_parser *
10770 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
10771 {
10772     yy_parser *parser;
10773
10774     PERL_ARGS_ASSERT_PARSER_DUP;
10775
10776     if (!proto)
10777         return NULL;
10778
10779     /* look for it in the table first */
10780     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
10781     if (parser)
10782         return parser;
10783
10784     /* create anew and remember what it is */
10785     Newxz(parser, 1, yy_parser);
10786     ptr_table_store(PL_ptr_table, proto, parser);
10787
10788     /* XXX these not yet duped */
10789     parser->old_parser = NULL;
10790     parser->stack = NULL;
10791     parser->ps = NULL;
10792     parser->stack_size = 0;
10793     /* XXX parser->stack->state = 0; */
10794
10795     /* XXX eventually, just Copy() most of the parser struct ? */
10796
10797     parser->lex_brackets = proto->lex_brackets;
10798     parser->lex_casemods = proto->lex_casemods;
10799     parser->lex_brackstack = savepvn(proto->lex_brackstack,
10800                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
10801     parser->lex_casestack = savepvn(proto->lex_casestack,
10802                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
10803     parser->lex_defer   = proto->lex_defer;
10804     parser->lex_dojoin  = proto->lex_dojoin;
10805     parser->lex_expect  = proto->lex_expect;
10806     parser->lex_formbrack = proto->lex_formbrack;
10807     parser->lex_inpat   = proto->lex_inpat;
10808     parser->lex_inwhat  = proto->lex_inwhat;
10809     parser->lex_op      = proto->lex_op;
10810     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
10811     parser->lex_starts  = proto->lex_starts;
10812     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
10813     parser->multi_close = proto->multi_close;
10814     parser->multi_open  = proto->multi_open;
10815     parser->multi_start = proto->multi_start;
10816     parser->multi_end   = proto->multi_end;
10817     parser->pending_ident = proto->pending_ident;
10818     parser->preambled   = proto->preambled;
10819     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
10820     parser->linestr     = sv_dup_inc(proto->linestr, param);
10821     parser->expect      = proto->expect;
10822     parser->copline     = proto->copline;
10823     parser->last_lop_op = proto->last_lop_op;
10824     parser->lex_state   = proto->lex_state;
10825     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
10826     /* rsfp_filters entries have fake IoDIRP() */
10827     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
10828     parser->in_my       = proto->in_my;
10829     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
10830     parser->error_count = proto->error_count;
10831
10832
10833     parser->linestr     = sv_dup_inc(proto->linestr, param);
10834
10835     {
10836         char * const ols = SvPVX(proto->linestr);
10837         char * const ls  = SvPVX(parser->linestr);
10838
10839         parser->bufptr      = ls + (proto->bufptr >= ols ?
10840                                     proto->bufptr -  ols : 0);
10841         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
10842                                     proto->oldbufptr -  ols : 0);
10843         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
10844                                     proto->oldoldbufptr -  ols : 0);
10845         parser->linestart   = ls + (proto->linestart >= ols ?
10846                                     proto->linestart -  ols : 0);
10847         parser->last_uni    = ls + (proto->last_uni >= ols ?
10848                                     proto->last_uni -  ols : 0);
10849         parser->last_lop    = ls + (proto->last_lop >= ols ?
10850                                     proto->last_lop -  ols : 0);
10851
10852         parser->bufend      = ls + SvCUR(parser->linestr);
10853     }
10854
10855     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
10856
10857
10858 #ifdef PERL_MAD
10859     parser->endwhite    = proto->endwhite;
10860     parser->faketokens  = proto->faketokens;
10861     parser->lasttoke    = proto->lasttoke;
10862     parser->nextwhite   = proto->nextwhite;
10863     parser->realtokenstart = proto->realtokenstart;
10864     parser->skipwhite   = proto->skipwhite;
10865     parser->thisclose   = proto->thisclose;
10866     parser->thismad     = proto->thismad;
10867     parser->thisopen    = proto->thisopen;
10868     parser->thisstuff   = proto->thisstuff;
10869     parser->thistoken   = proto->thistoken;
10870     parser->thiswhite   = proto->thiswhite;
10871
10872     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
10873     parser->curforce    = proto->curforce;
10874 #else
10875     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
10876     Copy(proto->nexttype, parser->nexttype, 5,  I32);
10877     parser->nexttoke    = proto->nexttoke;
10878 #endif
10879
10880     /* XXX should clone saved_curcop here, but we aren't passed
10881      * proto_perl; so do it in perl_clone_using instead */
10882
10883     return parser;
10884 }
10885
10886
10887 /* duplicate a file handle */
10888
10889 PerlIO *
10890 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
10891 {
10892     PerlIO *ret;
10893
10894     PERL_ARGS_ASSERT_FP_DUP;
10895     PERL_UNUSED_ARG(type);
10896
10897     if (!fp)
10898         return (PerlIO*)NULL;
10899
10900     /* look for it in the table first */
10901     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
10902     if (ret)
10903         return ret;
10904
10905     /* create anew and remember what it is */
10906     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
10907     ptr_table_store(PL_ptr_table, fp, ret);
10908     return ret;
10909 }
10910
10911 /* duplicate a directory handle */
10912
10913 DIR *
10914 Perl_dirp_dup(pTHX_ DIR *const dp)
10915 {
10916 #ifdef HAS_FCHDIR
10917     DIR *ret;
10918     DIR *pwd;
10919     register const Direntry_t *dirent;
10920     char smallbuf[256];
10921     char *name = NULL;
10922     STRLEN len = -1;
10923     long pos;
10924 #endif
10925
10926     PERL_UNUSED_CONTEXT;
10927
10928 #ifdef HAS_FCHDIR
10929     if (!dp)
10930         return (DIR*)NULL;
10931     /* look for it in the table first */
10932     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
10933     if (ret)
10934         return ret;
10935
10936     /* create anew */
10937
10938     /* open the current directory (so we can switch back) */
10939     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
10940
10941     /* chdir to our dir handle and open the present working directory */
10942     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
10943         PerlDir_close(pwd);
10944         return (DIR *)NULL;
10945     }
10946     /* Now we should have two dir handles pointing to the same dir. */
10947
10948     /* Be nice to the calling code and chdir back to where we were. */
10949     fchdir(my_dirfd(pwd)); /* If this fails, then what? */
10950
10951     /* We have no need of the pwd handle any more. */
10952     PerlDir_close(pwd);
10953
10954 #ifdef DIRNAMLEN
10955 # define d_namlen(d) (d)->d_namlen
10956 #else
10957 # define d_namlen(d) strlen((d)->d_name)
10958 #endif
10959     /* Iterate once through dp, to get the file name at the current posi-
10960        tion. Then step back. */
10961     pos = PerlDir_tell(dp);
10962     if ((dirent = PerlDir_read(dp))) {
10963         len = d_namlen(dirent);
10964         if (len <= sizeof smallbuf) name = smallbuf;
10965         else Newx(name, len, char);
10966         Move(dirent->d_name, name, len, char);
10967     }
10968     PerlDir_seek(dp, pos);
10969
10970     /* Iterate through the new dir handle, till we find a file with the
10971        right name. */
10972     if (!dirent) /* just before the end */
10973         for(;;) {
10974             pos = PerlDir_tell(ret);
10975             if (PerlDir_read(ret)) continue; /* not there yet */
10976             PerlDir_seek(ret, pos); /* step back */
10977             break;
10978         }
10979     else {
10980         const long pos0 = PerlDir_tell(ret);
10981         for(;;) {
10982             pos = PerlDir_tell(ret);
10983             if ((dirent = PerlDir_read(ret))) {
10984                 if (len == d_namlen(dirent)
10985                  && memEQ(name, dirent->d_name, len)) {
10986                     /* found it */
10987                     PerlDir_seek(ret, pos); /* step back */
10988                     break;
10989                 }
10990                 /* else we are not there yet; keep iterating */
10991             }
10992             else { /* This is not meant to happen. The best we can do is
10993                       reset the iterator to the beginning. */
10994                 PerlDir_seek(ret, pos0);
10995                 break;
10996             }
10997         }
10998     }
10999 #undef d_namlen
11000
11001     if (name && name != smallbuf)
11002         Safefree(name);
11003
11004     /* pop it in the pointer table */
11005     ptr_table_store(PL_ptr_table, dp, ret);
11006
11007     return ret;
11008 #else
11009     return (DIR*)NULL;
11010 #endif
11011 }
11012
11013 /* duplicate a typeglob */
11014
11015 GP *
11016 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11017 {
11018     GP *ret;
11019
11020     PERL_ARGS_ASSERT_GP_DUP;
11021
11022     if (!gp)
11023         return (GP*)NULL;
11024     /* look for it in the table first */
11025     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11026     if (ret)
11027         return ret;
11028
11029     /* create anew and remember what it is */
11030     Newxz(ret, 1, GP);
11031     ptr_table_store(PL_ptr_table, gp, ret);
11032
11033     /* clone */
11034     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11035        on Newxz() to do this for us.  */
11036     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11037     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11038     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11039     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11040     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11041     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11042     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11043     ret->gp_cvgen       = gp->gp_cvgen;
11044     ret->gp_line        = gp->gp_line;
11045     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11046     return ret;
11047 }
11048
11049 /* duplicate a chain of magic */
11050
11051 MAGIC *
11052 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11053 {
11054     MAGIC *mgret = NULL;
11055     MAGIC **mgprev_p = &mgret;
11056
11057     PERL_ARGS_ASSERT_MG_DUP;
11058
11059     for (; mg; mg = mg->mg_moremagic) {
11060         MAGIC *nmg;
11061
11062         if ((param->flags & CLONEf_JOIN_IN)
11063                 && mg->mg_type == PERL_MAGIC_backref)
11064             /* when joining, we let the individual SVs add themselves to
11065              * backref as needed. */
11066             continue;
11067
11068         Newx(nmg, 1, MAGIC);
11069         *mgprev_p = nmg;
11070         mgprev_p = &(nmg->mg_moremagic);
11071
11072         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
11073            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
11074            from the original commit adding Perl_mg_dup() - revision 4538.
11075            Similarly there is the annotation "XXX random ptr?" next to the
11076            assignment to nmg->mg_ptr.  */
11077         *nmg = *mg;
11078
11079         /* FIXME for plugins
11080         if (nmg->mg_type == PERL_MAGIC_qr) {
11081             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
11082         }
11083         else
11084         */
11085         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
11086                           ? nmg->mg_type == PERL_MAGIC_backref
11087                                 /* The backref AV has its reference
11088                                  * count deliberately bumped by 1 */
11089                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
11090                                                     nmg->mg_obj, param))
11091                                 : sv_dup_inc(nmg->mg_obj, param)
11092                           : sv_dup(nmg->mg_obj, param);
11093
11094         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
11095             if (nmg->mg_len > 0) {
11096                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
11097                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
11098                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
11099                 {
11100                     AMT * const namtp = (AMT*)nmg->mg_ptr;
11101                     sv_dup_inc_multiple((SV**)(namtp->table),
11102                                         (SV**)(namtp->table), NofAMmeth, param);
11103                 }
11104             }
11105             else if (nmg->mg_len == HEf_SVKEY)
11106                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
11107         }
11108         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
11109             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
11110         }
11111     }
11112     return mgret;
11113 }
11114
11115 #endif /* USE_ITHREADS */
11116
11117 struct ptr_tbl_arena {
11118     struct ptr_tbl_arena *next;
11119     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
11120 };
11121
11122 /* create a new pointer-mapping table */
11123
11124 PTR_TBL_t *
11125 Perl_ptr_table_new(pTHX)
11126 {
11127     PTR_TBL_t *tbl;
11128     PERL_UNUSED_CONTEXT;
11129
11130     Newx(tbl, 1, PTR_TBL_t);
11131     tbl->tbl_max        = 511;
11132     tbl->tbl_items      = 0;
11133     tbl->tbl_arena      = NULL;
11134     tbl->tbl_arena_next = NULL;
11135     tbl->tbl_arena_end  = NULL;
11136     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
11137     return tbl;
11138 }
11139
11140 #define PTR_TABLE_HASH(ptr) \
11141   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
11142
11143 /* map an existing pointer using a table */
11144
11145 STATIC PTR_TBL_ENT_t *
11146 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
11147 {
11148     PTR_TBL_ENT_t *tblent;
11149     const UV hash = PTR_TABLE_HASH(sv);
11150
11151     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
11152
11153     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
11154     for (; tblent; tblent = tblent->next) {
11155         if (tblent->oldval == sv)
11156             return tblent;
11157     }
11158     return NULL;
11159 }
11160
11161 void *
11162 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
11163 {
11164     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
11165
11166     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
11167     PERL_UNUSED_CONTEXT;
11168
11169     return tblent ? tblent->newval : NULL;
11170 }
11171
11172 /* add a new entry to a pointer-mapping table */
11173
11174 void
11175 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
11176 {
11177     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
11178
11179     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
11180     PERL_UNUSED_CONTEXT;
11181
11182     if (tblent) {
11183         tblent->newval = newsv;
11184     } else {
11185         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
11186
11187         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
11188             struct ptr_tbl_arena *new_arena;
11189
11190             Newx(new_arena, 1, struct ptr_tbl_arena);
11191             new_arena->next = tbl->tbl_arena;
11192             tbl->tbl_arena = new_arena;
11193             tbl->tbl_arena_next = new_arena->array;
11194             tbl->tbl_arena_end = new_arena->array
11195                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
11196         }
11197
11198         tblent = tbl->tbl_arena_next++;
11199
11200         tblent->oldval = oldsv;
11201         tblent->newval = newsv;
11202         tblent->next = tbl->tbl_ary[entry];
11203         tbl->tbl_ary[entry] = tblent;
11204         tbl->tbl_items++;
11205         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
11206             ptr_table_split(tbl);
11207     }
11208 }
11209
11210 /* double the hash bucket size of an existing ptr table */
11211
11212 void
11213 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
11214 {
11215     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
11216     const UV oldsize = tbl->tbl_max + 1;
11217     UV newsize = oldsize * 2;
11218     UV i;
11219
11220     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
11221     PERL_UNUSED_CONTEXT;
11222
11223     Renew(ary, newsize, PTR_TBL_ENT_t*);
11224     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
11225     tbl->tbl_max = --newsize;
11226     tbl->tbl_ary = ary;
11227     for (i=0; i < oldsize; i++, ary++) {
11228         PTR_TBL_ENT_t **entp = ary;
11229         PTR_TBL_ENT_t *ent = *ary;
11230         PTR_TBL_ENT_t **curentp;
11231         if (!ent)
11232             continue;
11233         curentp = ary + oldsize;
11234         do {
11235             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
11236                 *entp = ent->next;
11237                 ent->next = *curentp;
11238                 *curentp = ent;
11239             }
11240             else
11241                 entp = &ent->next;
11242             ent = *entp;
11243         } while (ent);
11244     }
11245 }
11246
11247 /* remove all the entries from a ptr table */
11248 /* Deprecated - will be removed post 5.14 */
11249
11250 void
11251 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
11252 {
11253     if (tbl && tbl->tbl_items) {
11254         struct ptr_tbl_arena *arena = tbl->tbl_arena;
11255
11256         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
11257
11258         while (arena) {
11259             struct ptr_tbl_arena *next = arena->next;
11260
11261             Safefree(arena);
11262             arena = next;
11263         };
11264
11265         tbl->tbl_items = 0;
11266         tbl->tbl_arena = NULL;
11267         tbl->tbl_arena_next = NULL;
11268         tbl->tbl_arena_end = NULL;
11269     }
11270 }
11271
11272 /* clear and free a ptr table */
11273
11274 void
11275 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
11276 {
11277     struct ptr_tbl_arena *arena;
11278
11279     if (!tbl) {
11280         return;
11281     }
11282
11283     arena = tbl->tbl_arena;
11284
11285     while (arena) {
11286         struct ptr_tbl_arena *next = arena->next;
11287
11288         Safefree(arena);
11289         arena = next;
11290     }
11291
11292     Safefree(tbl->tbl_ary);
11293     Safefree(tbl);
11294 }
11295
11296 #if defined(USE_ITHREADS)
11297
11298 void
11299 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
11300 {
11301     PERL_ARGS_ASSERT_RVPV_DUP;
11302
11303     if (SvROK(sstr)) {
11304         if (SvWEAKREF(sstr)) {
11305             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
11306             if (param->flags & CLONEf_JOIN_IN) {
11307                 /* if joining, we add any back references individually rather
11308                  * than copying the whole backref array */
11309                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
11310             }
11311         }
11312         else
11313             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
11314     }
11315     else if (SvPVX_const(sstr)) {
11316         /* Has something there */
11317         if (SvLEN(sstr)) {
11318             /* Normal PV - clone whole allocated space */
11319             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
11320             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
11321                 /* Not that normal - actually sstr is copy on write.
11322                    But we are a true, independant SV, so:  */
11323                 SvREADONLY_off(dstr);
11324                 SvFAKE_off(dstr);
11325             }
11326         }
11327         else {
11328             /* Special case - not normally malloced for some reason */
11329             if (isGV_with_GP(sstr)) {
11330                 /* Don't need to do anything here.  */
11331             }
11332             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
11333                 /* A "shared" PV - clone it as "shared" PV */
11334                 SvPV_set(dstr,
11335                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
11336                                          param)));
11337             }
11338             else {
11339                 /* Some other special case - random pointer */
11340                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
11341             }
11342         }
11343     }
11344     else {
11345         /* Copy the NULL */
11346         SvPV_set(dstr, NULL);
11347     }
11348 }
11349
11350 /* duplicate a list of SVs. source and dest may point to the same memory.  */
11351 static SV **
11352 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
11353                       SSize_t items, CLONE_PARAMS *const param)
11354 {
11355     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
11356
11357     while (items-- > 0) {
11358         *dest++ = sv_dup_inc(*source++, param);
11359     }
11360
11361     return dest;
11362 }
11363
11364 /* duplicate an SV of any type (including AV, HV etc) */
11365
11366 static SV *
11367 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11368 {
11369     dVAR;
11370     SV *dstr;
11371
11372     PERL_ARGS_ASSERT_SV_DUP_COMMON;
11373
11374     if (SvTYPE(sstr) == SVTYPEMASK) {
11375 #ifdef DEBUG_LEAKING_SCALARS_ABORT
11376         abort();
11377 #endif
11378         return NULL;
11379     }
11380     /* look for it in the table first */
11381     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
11382     if (dstr)
11383         return dstr;
11384
11385     if(param->flags & CLONEf_JOIN_IN) {
11386         /** We are joining here so we don't want do clone
11387             something that is bad **/
11388         if (SvTYPE(sstr) == SVt_PVHV) {
11389             const HEK * const hvname = HvNAME_HEK(sstr);
11390             if (hvname) {
11391                 /** don't clone stashes if they already exist **/
11392                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname), 0));
11393                 ptr_table_store(PL_ptr_table, sstr, dstr);
11394                 return dstr;
11395             }
11396         }
11397     }
11398
11399     /* create anew and remember what it is */
11400     new_SV(dstr);
11401
11402 #ifdef DEBUG_LEAKING_SCALARS
11403     dstr->sv_debug_optype = sstr->sv_debug_optype;
11404     dstr->sv_debug_line = sstr->sv_debug_line;
11405     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
11406     dstr->sv_debug_parent = (SV*)sstr;
11407     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
11408 #endif
11409
11410     ptr_table_store(PL_ptr_table, sstr, dstr);
11411
11412     /* clone */
11413     SvFLAGS(dstr)       = SvFLAGS(sstr);
11414     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
11415     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
11416
11417 #ifdef DEBUGGING
11418     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
11419         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
11420                       (void*)PL_watch_pvx, SvPVX_const(sstr));
11421 #endif
11422
11423     /* don't clone objects whose class has asked us not to */
11424     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
11425         SvFLAGS(dstr) = 0;
11426         return dstr;
11427     }
11428
11429     switch (SvTYPE(sstr)) {
11430     case SVt_NULL:
11431         SvANY(dstr)     = NULL;
11432         break;
11433     case SVt_IV:
11434         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
11435         if(SvROK(sstr)) {
11436             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11437         } else {
11438             SvIV_set(dstr, SvIVX(sstr));
11439         }
11440         break;
11441     case SVt_NV:
11442         SvANY(dstr)     = new_XNV();
11443         SvNV_set(dstr, SvNVX(sstr));
11444         break;
11445         /* case SVt_BIND: */
11446     default:
11447         {
11448             /* These are all the types that need complex bodies allocating.  */
11449             void *new_body;
11450             const svtype sv_type = SvTYPE(sstr);
11451             const struct body_details *const sv_type_details
11452                 = bodies_by_type + sv_type;
11453
11454             switch (sv_type) {
11455             default:
11456                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11457                 break;
11458
11459             case SVt_PVGV:
11460             case SVt_PVIO:
11461             case SVt_PVFM:
11462             case SVt_PVHV:
11463             case SVt_PVAV:
11464             case SVt_PVCV:
11465             case SVt_PVLV:
11466             case SVt_REGEXP:
11467             case SVt_PVMG:
11468             case SVt_PVNV:
11469             case SVt_PVIV:
11470             case SVt_PV:
11471                 assert(sv_type_details->body_size);
11472                 if (sv_type_details->arena) {
11473                     new_body_inline(new_body, sv_type);
11474                     new_body
11475                         = (void*)((char*)new_body - sv_type_details->offset);
11476                 } else {
11477                     new_body = new_NOARENA(sv_type_details);
11478                 }
11479             }
11480             assert(new_body);
11481             SvANY(dstr) = new_body;
11482
11483 #ifndef PURIFY
11484             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
11485                  ((char*)SvANY(dstr)) + sv_type_details->offset,
11486                  sv_type_details->copy, char);
11487 #else
11488             Copy(((char*)SvANY(sstr)),
11489                  ((char*)SvANY(dstr)),
11490                  sv_type_details->body_size + sv_type_details->offset, char);
11491 #endif
11492
11493             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
11494                 && !isGV_with_GP(dstr)
11495                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
11496                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11497
11498             /* The Copy above means that all the source (unduplicated) pointers
11499                are now in the destination.  We can check the flags and the
11500                pointers in either, but it's possible that there's less cache
11501                missing by always going for the destination.
11502                FIXME - instrument and check that assumption  */
11503             if (sv_type >= SVt_PVMG) {
11504                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
11505                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
11506                 } else if (SvMAGIC(dstr))
11507                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
11508                 if (SvSTASH(dstr))
11509                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
11510             }
11511
11512             /* The cast silences a GCC warning about unhandled types.  */
11513             switch ((int)sv_type) {
11514             case SVt_PV:
11515                 break;
11516             case SVt_PVIV:
11517                 break;
11518             case SVt_PVNV:
11519                 break;
11520             case SVt_PVMG:
11521                 break;
11522             case SVt_REGEXP:
11523                 /* FIXME for plugins */
11524                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
11525                 break;
11526             case SVt_PVLV:
11527                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
11528                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
11529                     LvTARG(dstr) = dstr;
11530                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
11531                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
11532                 else
11533                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
11534             case SVt_PVGV:
11535                 /* non-GP case already handled above */
11536                 if(isGV_with_GP(sstr)) {
11537                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
11538                     /* Don't call sv_add_backref here as it's going to be
11539                        created as part of the magic cloning of the symbol
11540                        table--unless this is during a join and the stash
11541                        is not actually being cloned.  */
11542                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
11543                        at the point of this comment.  */
11544                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
11545                     if (param->flags & CLONEf_JOIN_IN)
11546                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
11547                     GvGP(dstr)  = gp_dup(GvGP(sstr), param);
11548                     (void)GpREFCNT_inc(GvGP(dstr));
11549                 }
11550                 break;
11551             case SVt_PVIO:
11552                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
11553                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
11554                     /* I have no idea why fake dirp (rsfps)
11555                        should be treated differently but otherwise
11556                        we end up with leaks -- sky*/
11557                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11558                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11559                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11560                 } else {
11561                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11562                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11563                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11564                     if (IoDIRP(dstr)) {
11565                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr));
11566                     } else {
11567                         NOOP;
11568                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11569                     }
11570                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
11571                 }
11572                 if (IoOFP(dstr) == IoIFP(sstr))
11573                     IoOFP(dstr) = IoIFP(dstr);
11574                 else
11575                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
11576                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11577                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11578                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11579                 break;
11580             case SVt_PVAV:
11581                 /* avoid cloning an empty array */
11582                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
11583                     SV **dst_ary, **src_ary;
11584                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
11585
11586                     src_ary = AvARRAY((const AV *)sstr);
11587                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
11588                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
11589                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
11590                     AvALLOC((const AV *)dstr) = dst_ary;
11591                     if (AvREAL((const AV *)sstr)) {
11592                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
11593                                                       param);
11594                     }
11595                     else {
11596                         while (items-- > 0)
11597                             *dst_ary++ = sv_dup(*src_ary++, param);
11598                     }
11599                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
11600                     while (items-- > 0) {
11601                         *dst_ary++ = &PL_sv_undef;
11602                     }
11603                 }
11604                 else {
11605                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
11606                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
11607                     AvMAX(  (const AV *)dstr)   = -1;
11608                     AvFILLp((const AV *)dstr)   = -1;
11609                 }
11610                 break;
11611             case SVt_PVHV:
11612                 if (HvARRAY((const HV *)sstr)) {
11613                     STRLEN i = 0;
11614                     const bool sharekeys = !!HvSHAREKEYS(sstr);
11615                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
11616                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
11617                     char *darray;
11618                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
11619                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
11620                         char);
11621                     HvARRAY(dstr) = (HE**)darray;
11622                     while (i <= sxhv->xhv_max) {
11623                         const HE * const source = HvARRAY(sstr)[i];
11624                         HvARRAY(dstr)[i] = source
11625                             ? he_dup(source, sharekeys, param) : 0;
11626                         ++i;
11627                     }
11628                     if (SvOOK(sstr)) {
11629                         HEK *hvname;
11630                         const struct xpvhv_aux * const saux = HvAUX(sstr);
11631                         struct xpvhv_aux * const daux = HvAUX(dstr);
11632                         /* This flag isn't copied.  */
11633                         /* SvOOK_on(hv) attacks the IV flags.  */
11634                         SvFLAGS(dstr) |= SVf_OOK;
11635
11636                         hvname = saux->xhv_name;
11637                         daux->xhv_name = hek_dup(hvname, param);
11638
11639                         daux->xhv_riter = saux->xhv_riter;
11640                         daux->xhv_eiter = saux->xhv_eiter
11641                             ? he_dup(saux->xhv_eiter,
11642                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
11643                         /* backref array needs refcnt=2; see sv_add_backref */
11644                         daux->xhv_backreferences =
11645                             (param->flags & CLONEf_JOIN_IN)
11646                                 /* when joining, we let the individual GVs and
11647                                  * CVs add themselves to backref as
11648                                  * needed. This avoids pulling in stuff
11649                                  * that isn't required, and simplifies the
11650                                  * case where stashes aren't cloned back
11651                                  * if they already exist in the parent
11652                                  * thread */
11653                             ? NULL
11654                             : saux->xhv_backreferences
11655                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
11656                                     ? MUTABLE_AV(SvREFCNT_inc(
11657                                           sv_dup_inc((const SV *)
11658                                             saux->xhv_backreferences, param)))
11659                                     : MUTABLE_AV(sv_dup((const SV *)
11660                                             saux->xhv_backreferences, param))
11661                                 : 0;
11662
11663                         daux->xhv_mro_meta = saux->xhv_mro_meta
11664                             ? mro_meta_dup(saux->xhv_mro_meta, param)
11665                             : 0;
11666
11667                         /* Record stashes for possible cloning in Perl_clone(). */
11668                         if (hvname)
11669                             av_push(param->stashes, dstr);
11670                     }
11671                 }
11672                 else
11673                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
11674                 break;
11675             case SVt_PVCV:
11676                 if (!(param->flags & CLONEf_COPY_STACKS)) {
11677                     CvDEPTH(dstr) = 0;
11678                 }
11679                 /*FALLTHROUGH*/
11680             case SVt_PVFM:
11681                 /* NOTE: not refcounted */
11682                 CvSTASH(dstr)   = hv_dup(CvSTASH(dstr), param);
11683                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
11684                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
11685                 OP_REFCNT_LOCK;
11686                 if (!CvISXSUB(dstr))
11687                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
11688                 OP_REFCNT_UNLOCK;
11689                 if (CvCONST(dstr) && CvISXSUB(dstr)) {
11690                     CvXSUBANY(dstr).any_ptr =
11691                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
11692                 }
11693                 /* don't dup if copying back - CvGV isn't refcounted, so the
11694                  * duped GV may never be freed. A bit of a hack! DAPM */
11695                 SvANY(MUTABLE_CV(dstr))->xcv_gv =
11696                     CvCVGV_RC(dstr)
11697                     ? gv_dup_inc(CvGV(sstr), param)
11698                     : (param->flags & CLONEf_JOIN_IN)
11699                         ? NULL
11700                         : gv_dup(CvGV(sstr), param);
11701
11702                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
11703                 CvOUTSIDE(dstr) =
11704                     CvWEAKOUTSIDE(sstr)
11705                     ? cv_dup(    CvOUTSIDE(dstr), param)
11706                     : cv_dup_inc(CvOUTSIDE(dstr), param);
11707                 if (!CvISXSUB(dstr))
11708                     CvFILE(dstr) = SAVEPV(CvFILE(dstr));
11709                 break;
11710             }
11711         }
11712     }
11713
11714     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
11715         ++PL_sv_objcount;
11716
11717     return dstr;
11718  }
11719
11720 SV *
11721 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11722 {
11723     PERL_ARGS_ASSERT_SV_DUP_INC;
11724     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
11725 }
11726
11727 SV *
11728 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11729 {
11730     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
11731     PERL_ARGS_ASSERT_SV_DUP;
11732
11733     /* Track every SV that (at least initially) had a reference count of 0.
11734        We need to do this by holding an actual reference to it in this array.
11735        If we attempt to cheat, turn AvREAL_off(), and store only pointers
11736        (akin to the stashes hash, and the perl stack), we come unstuck if
11737        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
11738        thread) is manipulated in a CLONE method, because CLONE runs before the
11739        unreferenced array is walked to find SVs still with SvREFCNT() == 0
11740        (and fix things up by giving each a reference via the temps stack).
11741        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
11742        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
11743        before the walk of unreferenced happens and a reference to that is SV
11744        added to the temps stack. At which point we have the same SV considered
11745        to be in use, and free to be re-used. Not good.
11746     */
11747     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
11748         assert(param->unreferenced);
11749         av_push(param->unreferenced, SvREFCNT_inc(dstr));
11750     }
11751
11752     return dstr;
11753 }
11754
11755 /* duplicate a context */
11756
11757 PERL_CONTEXT *
11758 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
11759 {
11760     PERL_CONTEXT *ncxs;
11761
11762     PERL_ARGS_ASSERT_CX_DUP;
11763
11764     if (!cxs)
11765         return (PERL_CONTEXT*)NULL;
11766
11767     /* look for it in the table first */
11768     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
11769     if (ncxs)
11770         return ncxs;
11771
11772     /* create anew and remember what it is */
11773     Newx(ncxs, max + 1, PERL_CONTEXT);
11774     ptr_table_store(PL_ptr_table, cxs, ncxs);
11775     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
11776
11777     while (ix >= 0) {
11778         PERL_CONTEXT * const ncx = &ncxs[ix];
11779         if (CxTYPE(ncx) == CXt_SUBST) {
11780             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
11781         }
11782         else {
11783             switch (CxTYPE(ncx)) {
11784             case CXt_SUB:
11785                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
11786                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
11787                                            : cv_dup(ncx->blk_sub.cv,param));
11788                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
11789                                            ? av_dup_inc(ncx->blk_sub.argarray,
11790                                                         param)
11791                                            : NULL);
11792                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
11793                                                      param);
11794                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
11795                                            ncx->blk_sub.oldcomppad);
11796                 break;
11797             case CXt_EVAL:
11798                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
11799                                                       param);
11800                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
11801                 break;
11802             case CXt_LOOP_LAZYSV:
11803                 ncx->blk_loop.state_u.lazysv.end
11804                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
11805                 /* We are taking advantage of av_dup_inc and sv_dup_inc
11806                    actually being the same function, and order equivalance of
11807                    the two unions.
11808                    We can assert the later [but only at run time :-(]  */
11809                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
11810                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
11811             case CXt_LOOP_FOR:
11812                 ncx->blk_loop.state_u.ary.ary
11813                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
11814             case CXt_LOOP_LAZYIV:
11815             case CXt_LOOP_PLAIN:
11816                 if (CxPADLOOP(ncx)) {
11817                     ncx->blk_loop.itervar_u.oldcomppad
11818                         = (PAD*)ptr_table_fetch(PL_ptr_table,
11819                                         ncx->blk_loop.itervar_u.oldcomppad);
11820                 } else {
11821                     ncx->blk_loop.itervar_u.gv
11822                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
11823                                     param);
11824                 }
11825                 break;
11826             case CXt_FORMAT:
11827                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
11828                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
11829                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
11830                                                      param);
11831                 break;
11832             case CXt_BLOCK:
11833             case CXt_NULL:
11834                 break;
11835             }
11836         }
11837         --ix;
11838     }
11839     return ncxs;
11840 }
11841
11842 /* duplicate a stack info structure */
11843
11844 PERL_SI *
11845 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
11846 {
11847     PERL_SI *nsi;
11848
11849     PERL_ARGS_ASSERT_SI_DUP;
11850
11851     if (!si)
11852         return (PERL_SI*)NULL;
11853
11854     /* look for it in the table first */
11855     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
11856     if (nsi)
11857         return nsi;
11858
11859     /* create anew and remember what it is */
11860     Newxz(nsi, 1, PERL_SI);
11861     ptr_table_store(PL_ptr_table, si, nsi);
11862
11863     nsi->si_stack       = av_dup_inc(si->si_stack, param);
11864     nsi->si_cxix        = si->si_cxix;
11865     nsi->si_cxmax       = si->si_cxmax;
11866     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
11867     nsi->si_type        = si->si_type;
11868     nsi->si_prev        = si_dup(si->si_prev, param);
11869     nsi->si_next        = si_dup(si->si_next, param);
11870     nsi->si_markoff     = si->si_markoff;
11871
11872     return nsi;
11873 }
11874
11875 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
11876 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
11877 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
11878 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
11879 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
11880 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
11881 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
11882 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
11883 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
11884 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
11885 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
11886 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
11887 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
11888 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
11889 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
11890 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
11891
11892 /* XXXXX todo */
11893 #define pv_dup_inc(p)   SAVEPV(p)
11894 #define pv_dup(p)       SAVEPV(p)
11895 #define svp_dup_inc(p,pp)       any_dup(p,pp)
11896
11897 /* map any object to the new equivent - either something in the
11898  * ptr table, or something in the interpreter structure
11899  */
11900
11901 void *
11902 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
11903 {
11904     void *ret;
11905
11906     PERL_ARGS_ASSERT_ANY_DUP;
11907
11908     if (!v)
11909         return (void*)NULL;
11910
11911     /* look for it in the table first */
11912     ret = ptr_table_fetch(PL_ptr_table, v);
11913     if (ret)
11914         return ret;
11915
11916     /* see if it is part of the interpreter structure */
11917     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
11918         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
11919     else {
11920         ret = v;
11921     }
11922
11923     return ret;
11924 }
11925
11926 /* duplicate the save stack */
11927
11928 ANY *
11929 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
11930 {
11931     dVAR;
11932     ANY * const ss      = proto_perl->Isavestack;
11933     const I32 max       = proto_perl->Isavestack_max;
11934     I32 ix              = proto_perl->Isavestack_ix;
11935     ANY *nss;
11936     const SV *sv;
11937     const GV *gv;
11938     const AV *av;
11939     const HV *hv;
11940     void* ptr;
11941     int intval;
11942     long longval;
11943     GP *gp;
11944     IV iv;
11945     I32 i;
11946     char *c = NULL;
11947     void (*dptr) (void*);
11948     void (*dxptr) (pTHX_ void*);
11949
11950     PERL_ARGS_ASSERT_SS_DUP;
11951
11952     Newxz(nss, max, ANY);
11953
11954     while (ix > 0) {
11955         const UV uv = POPUV(ss,ix);
11956         const U8 type = (U8)uv & SAVE_MASK;
11957
11958         TOPUV(nss,ix) = uv;
11959         switch (type) {
11960         case SAVEt_CLEARSV:
11961             break;
11962         case SAVEt_HELEM:               /* hash element */
11963             sv = (const SV *)POPPTR(ss,ix);
11964             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11965             /* fall through */
11966         case SAVEt_ITEM:                        /* normal string */
11967         case SAVEt_GVSV:                        /* scalar slot in GV */
11968         case SAVEt_SV:                          /* scalar reference */
11969             sv = (const SV *)POPPTR(ss,ix);
11970             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11971             /* fall through */
11972         case SAVEt_FREESV:
11973         case SAVEt_MORTALIZESV:
11974             sv = (const SV *)POPPTR(ss,ix);
11975             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11976             break;
11977         case SAVEt_SHARED_PVREF:                /* char* in shared space */
11978             c = (char*)POPPTR(ss,ix);
11979             TOPPTR(nss,ix) = savesharedpv(c);
11980             ptr = POPPTR(ss,ix);
11981             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11982             break;
11983         case SAVEt_GENERIC_SVREF:               /* generic sv */
11984         case SAVEt_SVREF:                       /* scalar reference */
11985             sv = (const SV *)POPPTR(ss,ix);
11986             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11987             ptr = POPPTR(ss,ix);
11988             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
11989             break;
11990         case SAVEt_HV:                          /* hash reference */
11991         case SAVEt_AV:                          /* array reference */
11992             sv = (const SV *) POPPTR(ss,ix);
11993             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11994             /* fall through */
11995         case SAVEt_COMPPAD:
11996         case SAVEt_NSTAB:
11997             sv = (const SV *) POPPTR(ss,ix);
11998             TOPPTR(nss,ix) = sv_dup(sv, param);
11999             break;
12000         case SAVEt_INT:                         /* int reference */
12001             ptr = POPPTR(ss,ix);
12002             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12003             intval = (int)POPINT(ss,ix);
12004             TOPINT(nss,ix) = intval;
12005             break;
12006         case SAVEt_LONG:                        /* long reference */
12007             ptr = POPPTR(ss,ix);
12008             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12009             longval = (long)POPLONG(ss,ix);
12010             TOPLONG(nss,ix) = longval;
12011             break;
12012         case SAVEt_I32:                         /* I32 reference */
12013         case SAVEt_COP_ARYBASE:                 /* call CopARYBASE_set */
12014             ptr = POPPTR(ss,ix);
12015             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12016             i = POPINT(ss,ix);
12017             TOPINT(nss,ix) = i;
12018             break;
12019         case SAVEt_IV:                          /* IV reference */
12020             ptr = POPPTR(ss,ix);
12021             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12022             iv = POPIV(ss,ix);
12023             TOPIV(nss,ix) = iv;
12024             break;
12025         case SAVEt_HPTR:                        /* HV* reference */
12026         case SAVEt_APTR:                        /* AV* reference */
12027         case SAVEt_SPTR:                        /* SV* reference */
12028             ptr = POPPTR(ss,ix);
12029             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12030             sv = (const SV *)POPPTR(ss,ix);
12031             TOPPTR(nss,ix) = sv_dup(sv, param);
12032             break;
12033         case SAVEt_VPTR:                        /* random* reference */
12034             ptr = POPPTR(ss,ix);
12035             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12036             /* Fall through */
12037         case SAVEt_INT_SMALL:
12038         case SAVEt_I32_SMALL:
12039         case SAVEt_I16:                         /* I16 reference */
12040         case SAVEt_I8:                          /* I8 reference */
12041         case SAVEt_BOOL:
12042             ptr = POPPTR(ss,ix);
12043             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12044             break;
12045         case SAVEt_GENERIC_PVREF:               /* generic char* */
12046         case SAVEt_PPTR:                        /* char* reference */
12047             ptr = POPPTR(ss,ix);
12048             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12049             c = (char*)POPPTR(ss,ix);
12050             TOPPTR(nss,ix) = pv_dup(c);
12051             break;
12052         case SAVEt_GP:                          /* scalar reference */
12053             gv = (const GV *)POPPTR(ss,ix);
12054             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
12055             gp = (GP*)POPPTR(ss,ix);
12056             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
12057             (void)GpREFCNT_inc(gp);
12058             i = POPINT(ss,ix);
12059             TOPINT(nss,ix) = i;
12060             break;
12061         case SAVEt_FREEOP:
12062             ptr = POPPTR(ss,ix);
12063             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
12064                 /* these are assumed to be refcounted properly */
12065                 OP *o;
12066                 switch (((OP*)ptr)->op_type) {
12067                 case OP_LEAVESUB:
12068                 case OP_LEAVESUBLV:
12069                 case OP_LEAVEEVAL:
12070                 case OP_LEAVE:
12071                 case OP_SCOPE:
12072                 case OP_LEAVEWRITE:
12073                     TOPPTR(nss,ix) = ptr;
12074                     o = (OP*)ptr;
12075                     OP_REFCNT_LOCK;
12076                     (void) OpREFCNT_inc(o);
12077                     OP_REFCNT_UNLOCK;
12078                     break;
12079                 default:
12080                     TOPPTR(nss,ix) = NULL;
12081                     break;
12082                 }
12083             }
12084             else
12085                 TOPPTR(nss,ix) = NULL;
12086             break;
12087         case SAVEt_DELETE:
12088             hv = (const HV *)POPPTR(ss,ix);
12089             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12090             i = POPINT(ss,ix);
12091             TOPINT(nss,ix) = i;
12092             /* Fall through */
12093         case SAVEt_FREEPV:
12094             c = (char*)POPPTR(ss,ix);
12095             TOPPTR(nss,ix) = pv_dup_inc(c);
12096             break;
12097         case SAVEt_STACK_POS:           /* Position on Perl stack */
12098             i = POPINT(ss,ix);
12099             TOPINT(nss,ix) = i;
12100             break;
12101         case SAVEt_DESTRUCTOR:
12102             ptr = POPPTR(ss,ix);
12103             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12104             dptr = POPDPTR(ss,ix);
12105             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
12106                                         any_dup(FPTR2DPTR(void *, dptr),
12107                                                 proto_perl));
12108             break;
12109         case SAVEt_DESTRUCTOR_X:
12110             ptr = POPPTR(ss,ix);
12111             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12112             dxptr = POPDXPTR(ss,ix);
12113             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
12114                                          any_dup(FPTR2DPTR(void *, dxptr),
12115                                                  proto_perl));
12116             break;
12117         case SAVEt_REGCONTEXT:
12118         case SAVEt_ALLOC:
12119             ix -= uv >> SAVE_TIGHT_SHIFT;
12120             break;
12121         case SAVEt_AELEM:               /* array element */
12122             sv = (const SV *)POPPTR(ss,ix);
12123             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12124             i = POPINT(ss,ix);
12125             TOPINT(nss,ix) = i;
12126             av = (const AV *)POPPTR(ss,ix);
12127             TOPPTR(nss,ix) = av_dup_inc(av, param);
12128             break;
12129         case SAVEt_OP:
12130             ptr = POPPTR(ss,ix);
12131             TOPPTR(nss,ix) = ptr;
12132             break;
12133         case SAVEt_HINTS:
12134             ptr = POPPTR(ss,ix);
12135             if (ptr) {
12136                 HINTS_REFCNT_LOCK;
12137                 ((struct refcounted_he *)ptr)->refcounted_he_refcnt++;
12138                 HINTS_REFCNT_UNLOCK;
12139             }
12140             TOPPTR(nss,ix) = ptr;
12141             i = POPINT(ss,ix);
12142             TOPINT(nss,ix) = i;
12143             if (i & HINT_LOCALIZE_HH) {
12144                 hv = (const HV *)POPPTR(ss,ix);
12145                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12146             }
12147             break;
12148         case SAVEt_PADSV_AND_MORTALIZE:
12149             longval = (long)POPLONG(ss,ix);
12150             TOPLONG(nss,ix) = longval;
12151             ptr = POPPTR(ss,ix);
12152             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12153             sv = (const SV *)POPPTR(ss,ix);
12154             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12155             break;
12156         case SAVEt_SET_SVFLAGS:
12157             i = POPINT(ss,ix);
12158             TOPINT(nss,ix) = i;
12159             i = POPINT(ss,ix);
12160             TOPINT(nss,ix) = i;
12161             sv = (const SV *)POPPTR(ss,ix);
12162             TOPPTR(nss,ix) = sv_dup(sv, param);
12163             break;
12164         case SAVEt_RE_STATE:
12165             {
12166                 const struct re_save_state *const old_state
12167                     = (struct re_save_state *)
12168                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12169                 struct re_save_state *const new_state
12170                     = (struct re_save_state *)
12171                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12172
12173                 Copy(old_state, new_state, 1, struct re_save_state);
12174                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
12175
12176                 new_state->re_state_bostr
12177                     = pv_dup(old_state->re_state_bostr);
12178                 new_state->re_state_reginput
12179                     = pv_dup(old_state->re_state_reginput);
12180                 new_state->re_state_regeol
12181                     = pv_dup(old_state->re_state_regeol);
12182                 new_state->re_state_regoffs
12183                     = (regexp_paren_pair*)
12184                         any_dup(old_state->re_state_regoffs, proto_perl);
12185                 new_state->re_state_reglastparen
12186                     = (U32*) any_dup(old_state->re_state_reglastparen, 
12187                               proto_perl);
12188                 new_state->re_state_reglastcloseparen
12189                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
12190                               proto_perl);
12191                 /* XXX This just has to be broken. The old save_re_context
12192                    code did SAVEGENERICPV(PL_reg_start_tmp);
12193                    PL_reg_start_tmp is char **.
12194                    Look above to what the dup code does for
12195                    SAVEt_GENERIC_PVREF
12196                    It can never have worked.
12197                    So this is merely a faithful copy of the exiting bug:  */
12198                 new_state->re_state_reg_start_tmp
12199                     = (char **) pv_dup((char *)
12200                                       old_state->re_state_reg_start_tmp);
12201                 /* I assume that it only ever "worked" because no-one called
12202                    (pseudo)fork while the regexp engine had re-entered itself.
12203                 */
12204 #ifdef PERL_OLD_COPY_ON_WRITE
12205                 new_state->re_state_nrs
12206                     = sv_dup(old_state->re_state_nrs, param);
12207 #endif
12208                 new_state->re_state_reg_magic
12209                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
12210                                proto_perl);
12211                 new_state->re_state_reg_oldcurpm
12212                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
12213                               proto_perl);
12214                 new_state->re_state_reg_curpm
12215                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
12216                                proto_perl);
12217                 new_state->re_state_reg_oldsaved
12218                     = pv_dup(old_state->re_state_reg_oldsaved);
12219                 new_state->re_state_reg_poscache
12220                     = pv_dup(old_state->re_state_reg_poscache);
12221                 new_state->re_state_reg_starttry
12222                     = pv_dup(old_state->re_state_reg_starttry);
12223                 break;
12224             }
12225         case SAVEt_COMPILE_WARNINGS:
12226             ptr = POPPTR(ss,ix);
12227             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
12228             break;
12229         case SAVEt_PARSER:
12230             ptr = POPPTR(ss,ix);
12231             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
12232             break;
12233         default:
12234             Perl_croak(aTHX_
12235                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
12236         }
12237     }
12238
12239     return nss;
12240 }
12241
12242
12243 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
12244  * flag to the result. This is done for each stash before cloning starts,
12245  * so we know which stashes want their objects cloned */
12246
12247 static void
12248 do_mark_cloneable_stash(pTHX_ SV *const sv)
12249 {
12250     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
12251     if (hvname) {
12252         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
12253         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
12254         if (cloner && GvCV(cloner)) {
12255             dSP;
12256             UV status;
12257
12258             ENTER;
12259             SAVETMPS;
12260             PUSHMARK(SP);
12261             mXPUSHs(newSVhek(hvname));
12262             PUTBACK;
12263             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
12264             SPAGAIN;
12265             status = POPu;
12266             PUTBACK;
12267             FREETMPS;
12268             LEAVE;
12269             if (status)
12270                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
12271         }
12272     }
12273 }
12274
12275
12276
12277 /*
12278 =for apidoc perl_clone
12279
12280 Create and return a new interpreter by cloning the current one.
12281
12282 perl_clone takes these flags as parameters:
12283
12284 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
12285 without it we only clone the data and zero the stacks,
12286 with it we copy the stacks and the new perl interpreter is
12287 ready to run at the exact same point as the previous one.
12288 The pseudo-fork code uses COPY_STACKS while the
12289 threads->create doesn't.
12290
12291 CLONEf_KEEP_PTR_TABLE
12292 perl_clone keeps a ptr_table with the pointer of the old
12293 variable as a key and the new variable as a value,
12294 this allows it to check if something has been cloned and not
12295 clone it again but rather just use the value and increase the
12296 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
12297 the ptr_table using the function
12298 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
12299 reason to keep it around is if you want to dup some of your own
12300 variable who are outside the graph perl scans, example of this
12301 code is in threads.xs create
12302
12303 CLONEf_CLONE_HOST
12304 This is a win32 thing, it is ignored on unix, it tells perls
12305 win32host code (which is c++) to clone itself, this is needed on
12306 win32 if you want to run two threads at the same time,
12307 if you just want to do some stuff in a separate perl interpreter
12308 and then throw it away and return to the original one,
12309 you don't need to do anything.
12310
12311 =cut
12312 */
12313
12314 /* XXX the above needs expanding by someone who actually understands it ! */
12315 EXTERN_C PerlInterpreter *
12316 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
12317
12318 PerlInterpreter *
12319 perl_clone(PerlInterpreter *proto_perl, UV flags)
12320 {
12321    dVAR;
12322 #ifdef PERL_IMPLICIT_SYS
12323
12324     PERL_ARGS_ASSERT_PERL_CLONE;
12325
12326    /* perlhost.h so we need to call into it
12327    to clone the host, CPerlHost should have a c interface, sky */
12328
12329    if (flags & CLONEf_CLONE_HOST) {
12330        return perl_clone_host(proto_perl,flags);
12331    }
12332    return perl_clone_using(proto_perl, flags,
12333                             proto_perl->IMem,
12334                             proto_perl->IMemShared,
12335                             proto_perl->IMemParse,
12336                             proto_perl->IEnv,
12337                             proto_perl->IStdIO,
12338                             proto_perl->ILIO,
12339                             proto_perl->IDir,
12340                             proto_perl->ISock,
12341                             proto_perl->IProc);
12342 }
12343
12344 PerlInterpreter *
12345 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
12346                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
12347                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
12348                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
12349                  struct IPerlDir* ipD, struct IPerlSock* ipS,
12350                  struct IPerlProc* ipP)
12351 {
12352     /* XXX many of the string copies here can be optimized if they're
12353      * constants; they need to be allocated as common memory and just
12354      * their pointers copied. */
12355
12356     IV i;
12357     CLONE_PARAMS clone_params;
12358     CLONE_PARAMS* const param = &clone_params;
12359
12360     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
12361
12362     PERL_ARGS_ASSERT_PERL_CLONE_USING;
12363 #else           /* !PERL_IMPLICIT_SYS */
12364     IV i;
12365     CLONE_PARAMS clone_params;
12366     CLONE_PARAMS* param = &clone_params;
12367     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
12368
12369     PERL_ARGS_ASSERT_PERL_CLONE;
12370 #endif          /* PERL_IMPLICIT_SYS */
12371
12372     /* for each stash, determine whether its objects should be cloned */
12373     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
12374     PERL_SET_THX(my_perl);
12375
12376 #ifdef DEBUGGING
12377     PoisonNew(my_perl, 1, PerlInterpreter);
12378     PL_op = NULL;
12379     PL_curcop = NULL;
12380     PL_markstack = 0;
12381     PL_scopestack = 0;
12382     PL_scopestack_name = 0;
12383     PL_savestack = 0;
12384     PL_savestack_ix = 0;
12385     PL_savestack_max = -1;
12386     PL_sig_pending = 0;
12387     PL_parser = NULL;
12388     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
12389 #  ifdef DEBUG_LEAKING_SCALARS
12390     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
12391 #  endif
12392 #else   /* !DEBUGGING */
12393     Zero(my_perl, 1, PerlInterpreter);
12394 #endif  /* DEBUGGING */
12395
12396 #ifdef PERL_IMPLICIT_SYS
12397     /* host pointers */
12398     PL_Mem              = ipM;
12399     PL_MemShared        = ipMS;
12400     PL_MemParse         = ipMP;
12401     PL_Env              = ipE;
12402     PL_StdIO            = ipStd;
12403     PL_LIO              = ipLIO;
12404     PL_Dir              = ipD;
12405     PL_Sock             = ipS;
12406     PL_Proc             = ipP;
12407 #endif          /* PERL_IMPLICIT_SYS */
12408
12409     param->flags = flags;
12410     /* Nothing in the core code uses this, but we make it available to
12411        extensions (using mg_dup).  */
12412     param->proto_perl = proto_perl;
12413     /* Likely nothing will use this, but it is initialised to be consistent
12414        with Perl_clone_params_new().  */
12415     param->proto_perl = my_perl;
12416     param->unreferenced = NULL;
12417
12418     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
12419
12420     PL_body_arenas = NULL;
12421     Zero(&PL_body_roots, 1, PL_body_roots);
12422     
12423     PL_sv_count         = 0;
12424     PL_sv_objcount      = 0;
12425     PL_sv_root          = NULL;
12426     PL_sv_arenaroot     = NULL;
12427
12428     PL_debug            = proto_perl->Idebug;
12429
12430     PL_hash_seed        = proto_perl->Ihash_seed;
12431     PL_rehash_seed      = proto_perl->Irehash_seed;
12432
12433 #ifdef USE_REENTRANT_API
12434     /* XXX: things like -Dm will segfault here in perlio, but doing
12435      *  PERL_SET_CONTEXT(proto_perl);
12436      * breaks too many other things
12437      */
12438     Perl_reentrant_init(aTHX);
12439 #endif
12440
12441     /* create SV map for pointer relocation */
12442     PL_ptr_table = ptr_table_new();
12443
12444     /* initialize these special pointers as early as possible */
12445     SvANY(&PL_sv_undef)         = NULL;
12446     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
12447     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
12448     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
12449
12450     SvANY(&PL_sv_no)            = new_XPVNV();
12451     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
12452     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12453                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12454     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
12455     SvCUR_set(&PL_sv_no, 0);
12456     SvLEN_set(&PL_sv_no, 1);
12457     SvIV_set(&PL_sv_no, 0);
12458     SvNV_set(&PL_sv_no, 0);
12459     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
12460
12461     SvANY(&PL_sv_yes)           = new_XPVNV();
12462     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
12463     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12464                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12465     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
12466     SvCUR_set(&PL_sv_yes, 1);
12467     SvLEN_set(&PL_sv_yes, 2);
12468     SvIV_set(&PL_sv_yes, 1);
12469     SvNV_set(&PL_sv_yes, 1);
12470     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
12471
12472     /* dbargs array probably holds garbage */
12473     PL_dbargs           = NULL;
12474
12475     /* create (a non-shared!) shared string table */
12476     PL_strtab           = newHV();
12477     HvSHAREKEYS_off(PL_strtab);
12478     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
12479     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
12480
12481     PL_compiling = proto_perl->Icompiling;
12482
12483     /* These two PVs will be free'd special way so must set them same way op.c does */
12484     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
12485     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
12486
12487     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
12488     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
12489
12490     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
12491     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
12492     if (PL_compiling.cop_hints_hash) {
12493         HINTS_REFCNT_LOCK;
12494         PL_compiling.cop_hints_hash->refcounted_he_refcnt++;
12495         HINTS_REFCNT_UNLOCK;
12496     }
12497     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
12498 #ifdef PERL_DEBUG_READONLY_OPS
12499     PL_slabs = NULL;
12500     PL_slab_count = 0;
12501 #endif
12502
12503     /* pseudo environmental stuff */
12504     PL_origargc         = proto_perl->Iorigargc;
12505     PL_origargv         = proto_perl->Iorigargv;
12506
12507     param->stashes      = newAV();  /* Setup array of objects to call clone on */
12508     /* This makes no difference to the implementation, as it always pushes
12509        and shifts pointers to other SVs without changing their reference
12510        count, with the array becoming empty before it is freed. However, it
12511        makes it conceptually clear what is going on, and will avoid some
12512        work inside av.c, filling slots between AvFILL() and AvMAX() with
12513        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
12514     AvREAL_off(param->stashes);
12515
12516     if (!(flags & CLONEf_COPY_STACKS)) {
12517         param->unreferenced = newAV();
12518     }
12519
12520     /* Set tainting stuff before PerlIO_debug can possibly get called */
12521     PL_tainting         = proto_perl->Itainting;
12522     PL_taint_warn       = proto_perl->Itaint_warn;
12523
12524 #ifdef PERLIO_LAYERS
12525     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
12526     PerlIO_clone(aTHX_ proto_perl, param);
12527 #endif
12528
12529     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
12530     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
12531     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
12532     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
12533     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
12534     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
12535
12536     /* switches */
12537     PL_minus_c          = proto_perl->Iminus_c;
12538     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
12539     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
12540     PL_localpatches     = proto_perl->Ilocalpatches;
12541     PL_splitstr         = proto_perl->Isplitstr;
12542     PL_minus_n          = proto_perl->Iminus_n;
12543     PL_minus_p          = proto_perl->Iminus_p;
12544     PL_minus_l          = proto_perl->Iminus_l;
12545     PL_minus_a          = proto_perl->Iminus_a;
12546     PL_minus_E          = proto_perl->Iminus_E;
12547     PL_minus_F          = proto_perl->Iminus_F;
12548     PL_doswitches       = proto_perl->Idoswitches;
12549     PL_dowarn           = proto_perl->Idowarn;
12550     PL_doextract        = proto_perl->Idoextract;
12551     PL_sawampersand     = proto_perl->Isawampersand;
12552     PL_unsafe           = proto_perl->Iunsafe;
12553     PL_inplace          = SAVEPV(proto_perl->Iinplace);
12554     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
12555     PL_perldb           = proto_perl->Iperldb;
12556     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
12557     PL_exit_flags       = proto_perl->Iexit_flags;
12558
12559     /* magical thingies */
12560     /* XXX time(&PL_basetime) when asked for? */
12561     PL_basetime         = proto_perl->Ibasetime;
12562     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
12563
12564     PL_maxsysfd         = proto_perl->Imaxsysfd;
12565     PL_statusvalue      = proto_perl->Istatusvalue;
12566 #ifdef VMS
12567     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
12568 #else
12569     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
12570 #endif
12571     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
12572
12573     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
12574     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
12575     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
12576
12577    
12578     /* RE engine related */
12579     Zero(&PL_reg_state, 1, struct re_save_state);
12580     PL_reginterp_cnt    = 0;
12581     PL_regmatch_slab    = NULL;
12582     
12583     /* Clone the regex array */
12584     /* ORANGE FIXME for plugins, probably in the SV dup code.
12585        newSViv(PTR2IV(CALLREGDUPE(
12586        INT2PTR(REGEXP *, SvIVX(regex)), param))))
12587     */
12588     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
12589     PL_regex_pad = AvARRAY(PL_regex_padav);
12590
12591     /* shortcuts to various I/O objects */
12592     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
12593     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
12594     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
12595     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
12596     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
12597     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
12598     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
12599
12600     /* shortcuts to regexp stuff */
12601     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
12602
12603     /* shortcuts to misc objects */
12604     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
12605
12606     /* shortcuts to debugging objects */
12607     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
12608     PL_DBline           = gv_dup(proto_perl->IDBline, param);
12609     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
12610     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
12611     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
12612     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
12613
12614     /* symbol tables */
12615     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
12616     PL_curstash         = hv_dup(proto_perl->Icurstash, param);
12617     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
12618     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
12619     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
12620
12621     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
12622     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
12623     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
12624     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
12625     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
12626     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
12627     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
12628     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
12629
12630     PL_sub_generation   = proto_perl->Isub_generation;
12631     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
12632
12633     /* funky return mechanisms */
12634     PL_forkprocess      = proto_perl->Iforkprocess;
12635
12636     /* subprocess state */
12637     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
12638
12639     /* internal state */
12640     PL_maxo             = proto_perl->Imaxo;
12641     if (proto_perl->Iop_mask)
12642         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
12643     else
12644         PL_op_mask      = NULL;
12645     /* PL_asserting        = proto_perl->Iasserting; */
12646
12647     /* current interpreter roots */
12648     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
12649     OP_REFCNT_LOCK;
12650     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
12651     OP_REFCNT_UNLOCK;
12652     PL_main_start       = proto_perl->Imain_start;
12653     PL_eval_root        = proto_perl->Ieval_root;
12654     PL_eval_start       = proto_perl->Ieval_start;
12655
12656     /* runtime control stuff */
12657     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
12658
12659     PL_filemode         = proto_perl->Ifilemode;
12660     PL_lastfd           = proto_perl->Ilastfd;
12661     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12662     PL_Argv             = NULL;
12663     PL_Cmd              = NULL;
12664     PL_gensym           = proto_perl->Igensym;
12665     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
12666     PL_laststatval      = proto_perl->Ilaststatval;
12667     PL_laststype        = proto_perl->Ilaststype;
12668     PL_mess_sv          = NULL;
12669
12670     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
12671
12672     /* interpreter atexit processing */
12673     PL_exitlistlen      = proto_perl->Iexitlistlen;
12674     if (PL_exitlistlen) {
12675         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12676         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12677     }
12678     else
12679         PL_exitlist     = (PerlExitListEntry*)NULL;
12680
12681     PL_my_cxt_size = proto_perl->Imy_cxt_size;
12682     if (PL_my_cxt_size) {
12683         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
12684         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
12685 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12686         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
12687         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
12688 #endif
12689     }
12690     else {
12691         PL_my_cxt_list  = (void**)NULL;
12692 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12693         PL_my_cxt_keys  = (const char**)NULL;
12694 #endif
12695     }
12696     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
12697     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
12698     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
12699
12700     PL_profiledata      = NULL;
12701
12702     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
12703
12704     PAD_CLONE_VARS(proto_perl, param);
12705
12706 #ifdef HAVE_INTERP_INTERN
12707     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
12708 #endif
12709
12710     /* more statics moved here */
12711     PL_generation       = proto_perl->Igeneration;
12712     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
12713
12714     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12715     PL_in_clean_all     = proto_perl->Iin_clean_all;
12716
12717     PL_uid              = proto_perl->Iuid;
12718     PL_euid             = proto_perl->Ieuid;
12719     PL_gid              = proto_perl->Igid;
12720     PL_egid             = proto_perl->Iegid;
12721     PL_nomemok          = proto_perl->Inomemok;
12722     PL_an               = proto_perl->Ian;
12723     PL_evalseq          = proto_perl->Ievalseq;
12724     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12725     PL_origalen         = proto_perl->Iorigalen;
12726 #ifdef PERL_USES_PL_PIDSTATUS
12727     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
12728 #endif
12729     PL_osname           = SAVEPV(proto_perl->Iosname);
12730     PL_sighandlerp      = proto_perl->Isighandlerp;
12731
12732     PL_runops           = proto_perl->Irunops;
12733
12734     PL_parser           = parser_dup(proto_perl->Iparser, param);
12735
12736     /* XXX this only works if the saved cop has already been cloned */
12737     if (proto_perl->Iparser) {
12738         PL_parser->saved_curcop = (COP*)any_dup(
12739                                     proto_perl->Iparser->saved_curcop,
12740                                     proto_perl);
12741     }
12742
12743     PL_subline          = proto_perl->Isubline;
12744     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
12745
12746 #ifdef FCRYPT
12747     PL_cryptseen        = proto_perl->Icryptseen;
12748 #endif
12749
12750     PL_hints            = proto_perl->Ihints;
12751
12752     PL_amagic_generation        = proto_perl->Iamagic_generation;
12753
12754 #ifdef USE_LOCALE_COLLATE
12755     PL_collation_ix     = proto_perl->Icollation_ix;
12756     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
12757     PL_collation_standard       = proto_perl->Icollation_standard;
12758     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12759     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12760 #endif /* USE_LOCALE_COLLATE */
12761
12762 #ifdef USE_LOCALE_NUMERIC
12763     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
12764     PL_numeric_standard = proto_perl->Inumeric_standard;
12765     PL_numeric_local    = proto_perl->Inumeric_local;
12766     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
12767 #endif /* !USE_LOCALE_NUMERIC */
12768
12769     /* utf8 character classes */
12770     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
12771     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
12772     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
12773     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
12774     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
12775     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
12776     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
12777     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
12778     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
12779     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
12780     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
12781     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
12782     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
12783     PL_utf8_X_begin     = sv_dup_inc(proto_perl->Iutf8_X_begin, param);
12784     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
12785     PL_utf8_X_prepend   = sv_dup_inc(proto_perl->Iutf8_X_prepend, param);
12786     PL_utf8_X_non_hangul        = sv_dup_inc(proto_perl->Iutf8_X_non_hangul, param);
12787     PL_utf8_X_L = sv_dup_inc(proto_perl->Iutf8_X_L, param);
12788     PL_utf8_X_LV        = sv_dup_inc(proto_perl->Iutf8_X_LV, param);
12789     PL_utf8_X_LVT       = sv_dup_inc(proto_perl->Iutf8_X_LVT, param);
12790     PL_utf8_X_T = sv_dup_inc(proto_perl->Iutf8_X_T, param);
12791     PL_utf8_X_V = sv_dup_inc(proto_perl->Iutf8_X_V, param);
12792     PL_utf8_X_LV_LVT_V  = sv_dup_inc(proto_perl->Iutf8_X_LV_LVT_V, param);
12793     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
12794     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
12795     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
12796     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
12797     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
12798     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
12799
12800     /* Did the locale setup indicate UTF-8? */
12801     PL_utf8locale       = proto_perl->Iutf8locale;
12802     /* Unicode features (see perlrun/-C) */
12803     PL_unicode          = proto_perl->Iunicode;
12804
12805     /* Pre-5.8 signals control */
12806     PL_signals          = proto_perl->Isignals;
12807
12808     /* times() ticks per second */
12809     PL_clocktick        = proto_perl->Iclocktick;
12810
12811     /* Recursion stopper for PerlIO_find_layer */
12812     PL_in_load_module   = proto_perl->Iin_load_module;
12813
12814     /* sort() routine */
12815     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
12816
12817     /* Not really needed/useful since the reenrant_retint is "volatile",
12818      * but do it for consistency's sake. */
12819     PL_reentrant_retint = proto_perl->Ireentrant_retint;
12820
12821     /* Hooks to shared SVs and locks. */
12822     PL_sharehook        = proto_perl->Isharehook;
12823     PL_lockhook         = proto_perl->Ilockhook;
12824     PL_unlockhook       = proto_perl->Iunlockhook;
12825     PL_threadhook       = proto_perl->Ithreadhook;
12826     PL_destroyhook      = proto_perl->Idestroyhook;
12827     PL_signalhook       = proto_perl->Isignalhook;
12828
12829 #ifdef THREADS_HAVE_PIDS
12830     PL_ppid             = proto_perl->Ippid;
12831 #endif
12832
12833     /* swatch cache */
12834     PL_last_swash_hv    = NULL; /* reinits on demand */
12835     PL_last_swash_klen  = 0;
12836     PL_last_swash_key[0]= '\0';
12837     PL_last_swash_tmps  = (U8*)NULL;
12838     PL_last_swash_slen  = 0;
12839
12840     PL_glob_index       = proto_perl->Iglob_index;
12841     PL_srand_called     = proto_perl->Isrand_called;
12842
12843     if (proto_perl->Ipsig_pend) {
12844         Newxz(PL_psig_pend, SIG_SIZE, int);
12845     }
12846     else {
12847         PL_psig_pend    = (int*)NULL;
12848     }
12849
12850     if (proto_perl->Ipsig_name) {
12851         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
12852         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
12853                             param);
12854         PL_psig_ptr = PL_psig_name + SIG_SIZE;
12855     }
12856     else {
12857         PL_psig_ptr     = (SV**)NULL;
12858         PL_psig_name    = (SV**)NULL;
12859     }
12860
12861     /* intrpvar.h stuff */
12862
12863     if (flags & CLONEf_COPY_STACKS) {
12864         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
12865         PL_tmps_ix              = proto_perl->Itmps_ix;
12866         PL_tmps_max             = proto_perl->Itmps_max;
12867         PL_tmps_floor           = proto_perl->Itmps_floor;
12868         Newx(PL_tmps_stack, PL_tmps_max, SV*);
12869         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
12870                             PL_tmps_ix+1, param);
12871
12872         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
12873         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
12874         Newxz(PL_markstack, i, I32);
12875         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
12876                                                   - proto_perl->Imarkstack);
12877         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
12878                                                   - proto_perl->Imarkstack);
12879         Copy(proto_perl->Imarkstack, PL_markstack,
12880              PL_markstack_ptr - PL_markstack + 1, I32);
12881
12882         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
12883          * NOTE: unlike the others! */
12884         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
12885         PL_scopestack_max       = proto_perl->Iscopestack_max;
12886         Newxz(PL_scopestack, PL_scopestack_max, I32);
12887         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
12888
12889 #ifdef DEBUGGING
12890         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
12891         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
12892 #endif
12893         /* NOTE: si_dup() looks at PL_markstack */
12894         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
12895
12896         /* PL_curstack          = PL_curstackinfo->si_stack; */
12897         PL_curstack             = av_dup(proto_perl->Icurstack, param);
12898         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
12899
12900         /* next PUSHs() etc. set *(PL_stack_sp+1) */
12901         PL_stack_base           = AvARRAY(PL_curstack);
12902         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
12903                                                    - proto_perl->Istack_base);
12904         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
12905
12906         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
12907          * NOTE: unlike the others! */
12908         PL_savestack_ix         = proto_perl->Isavestack_ix;
12909         PL_savestack_max        = proto_perl->Isavestack_max;
12910         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
12911         PL_savestack            = ss_dup(proto_perl, param);
12912     }
12913     else {
12914         init_stacks();
12915         ENTER;                  /* perl_destruct() wants to LEAVE; */
12916     }
12917
12918     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
12919     PL_top_env          = &PL_start_env;
12920
12921     PL_op               = proto_perl->Iop;
12922
12923     PL_Sv               = NULL;
12924     PL_Xpv              = (XPV*)NULL;
12925     my_perl->Ina        = proto_perl->Ina;
12926
12927     PL_statbuf          = proto_perl->Istatbuf;
12928     PL_statcache        = proto_perl->Istatcache;
12929     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
12930     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
12931 #ifdef HAS_TIMES
12932     PL_timesbuf         = proto_perl->Itimesbuf;
12933 #endif
12934
12935     PL_tainted          = proto_perl->Itainted;
12936     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
12937     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
12938     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
12939     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
12940     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
12941     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
12942     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
12943     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
12944
12945     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
12946     PL_restartop        = proto_perl->Irestartop;
12947     PL_in_eval          = proto_perl->Iin_eval;
12948     PL_delaymagic       = proto_perl->Idelaymagic;
12949     PL_dirty            = proto_perl->Idirty;
12950     PL_localizing       = proto_perl->Ilocalizing;
12951
12952     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
12953     PL_hv_fetch_ent_mh  = NULL;
12954     PL_modcount         = proto_perl->Imodcount;
12955     PL_lastgotoprobe    = NULL;
12956     PL_dumpindent       = proto_perl->Idumpindent;
12957
12958     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
12959     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
12960     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
12961     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
12962     PL_efloatbuf        = NULL;         /* reinits on demand */
12963     PL_efloatsize       = 0;                    /* reinits on demand */
12964
12965     /* regex stuff */
12966
12967     PL_screamfirst      = NULL;
12968     PL_screamnext       = NULL;
12969     PL_maxscream        = -1;                   /* reinits on demand */
12970     PL_lastscream       = NULL;
12971
12972
12973     PL_regdummy         = proto_perl->Iregdummy;
12974     PL_colorset         = 0;            /* reinits PL_colors[] */
12975     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12976
12977
12978
12979     /* Pluggable optimizer */
12980     PL_peepp            = proto_perl->Ipeepp;
12981     PL_rpeepp           = proto_perl->Irpeepp;
12982     /* op_free() hook */
12983     PL_opfreehook       = proto_perl->Iopfreehook;
12984
12985     PL_stashcache       = newHV();
12986
12987     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
12988                                             proto_perl->Iwatchaddr);
12989     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
12990     if (PL_debug && PL_watchaddr) {
12991         PerlIO_printf(Perl_debug_log,
12992           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
12993           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
12994           PTR2UV(PL_watchok));
12995     }
12996
12997     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
12998     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
12999
13000     /* Call the ->CLONE method, if it exists, for each of the stashes
13001        identified by sv_dup() above.
13002     */
13003     while(av_len(param->stashes) != -1) {
13004         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13005         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13006         if (cloner && GvCV(cloner)) {
13007             dSP;
13008             ENTER;
13009             SAVETMPS;
13010             PUSHMARK(SP);
13011             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13012             PUTBACK;
13013             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13014             FREETMPS;
13015             LEAVE;
13016         }
13017     }
13018
13019     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13020         ptr_table_free(PL_ptr_table);
13021         PL_ptr_table = NULL;
13022     }
13023
13024     if (!(flags & CLONEf_COPY_STACKS)) {
13025         unreferenced_to_tmp_stack(param->unreferenced);
13026     }
13027
13028     SvREFCNT_dec(param->stashes);
13029
13030     /* orphaned? eg threads->new inside BEGIN or use */
13031     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13032         SvREFCNT_inc_simple_void(PL_compcv);
13033         SAVEFREESV(PL_compcv);
13034     }
13035
13036     return my_perl;
13037 }
13038
13039 static void
13040 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13041 {
13042     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13043     
13044     if (AvFILLp(unreferenced) > -1) {
13045         SV **svp = AvARRAY(unreferenced);
13046         SV **const last = svp + AvFILLp(unreferenced);
13047         SSize_t count = 0;
13048
13049         do {
13050             if (SvREFCNT(*svp) == 1)
13051                 ++count;
13052         } while (++svp <= last);
13053
13054         EXTEND_MORTAL(count);
13055         svp = AvARRAY(unreferenced);
13056
13057         do {
13058             if (SvREFCNT(*svp) == 1) {
13059                 /* Our reference is the only one to this SV. This means that
13060                    in this thread, the scalar effectively has a 0 reference.
13061                    That doesn't work (cleanup never happens), so donate our
13062                    reference to it onto the save stack. */
13063                 PL_tmps_stack[++PL_tmps_ix] = *svp;
13064             } else {
13065                 /* As an optimisation, because we are already walking the
13066                    entire array, instead of above doing either
13067                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
13068                    release our reference to the scalar, so that at the end of
13069                    the array owns zero references to the scalars it happens to
13070                    point to. We are effectively converting the array from
13071                    AvREAL() on to AvREAL() off. This saves the av_clear()
13072                    (triggered by the SvREFCNT_dec(unreferenced) below) from
13073                    walking the array a second time.  */
13074                 SvREFCNT_dec(*svp);
13075             }
13076
13077         } while (++svp <= last);
13078         AvREAL_off(unreferenced);
13079     }
13080     SvREFCNT_dec(unreferenced);
13081 }
13082
13083 void
13084 Perl_clone_params_del(CLONE_PARAMS *param)
13085 {
13086     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
13087        happy: */
13088     PerlInterpreter *const to = param->new_perl;
13089     dTHXa(to);
13090     PerlInterpreter *const was = PERL_GET_THX;
13091
13092     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
13093
13094     if (was != to) {
13095         PERL_SET_THX(to);
13096     }
13097
13098     SvREFCNT_dec(param->stashes);
13099     if (param->unreferenced)
13100         unreferenced_to_tmp_stack(param->unreferenced);
13101
13102     Safefree(param);
13103
13104     if (was != to) {
13105         PERL_SET_THX(was);
13106     }
13107 }
13108
13109 CLONE_PARAMS *
13110 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
13111 {
13112     dVAR;
13113     /* Need to play this game, as newAV() can call safesysmalloc(), and that
13114        does a dTHX; to get the context from thread local storage.
13115        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
13116        a version that passes in my_perl.  */
13117     PerlInterpreter *const was = PERL_GET_THX;
13118     CLONE_PARAMS *param;
13119
13120     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
13121
13122     if (was != to) {
13123         PERL_SET_THX(to);
13124     }
13125
13126     /* Given that we've set the context, we can do this unshared.  */
13127     Newx(param, 1, CLONE_PARAMS);
13128
13129     param->flags = 0;
13130     param->proto_perl = from;
13131     param->new_perl = to;
13132     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
13133     AvREAL_off(param->stashes);
13134     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
13135
13136     if (was != to) {
13137         PERL_SET_THX(was);
13138     }
13139     return param;
13140 }
13141
13142 #endif /* USE_ITHREADS */
13143
13144 /*
13145 =head1 Unicode Support
13146
13147 =for apidoc sv_recode_to_utf8
13148
13149 The encoding is assumed to be an Encode object, on entry the PV
13150 of the sv is assumed to be octets in that encoding, and the sv
13151 will be converted into Unicode (and UTF-8).
13152
13153 If the sv already is UTF-8 (or if it is not POK), or if the encoding
13154 is not a reference, nothing is done to the sv.  If the encoding is not
13155 an C<Encode::XS> Encoding object, bad things will happen.
13156 (See F<lib/encoding.pm> and L<Encode>).
13157
13158 The PV of the sv is returned.
13159
13160 =cut */
13161
13162 char *
13163 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
13164 {
13165     dVAR;
13166
13167     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
13168
13169     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
13170         SV *uni;
13171         STRLEN len;
13172         const char *s;
13173         dSP;
13174         ENTER;
13175         SAVETMPS;
13176         save_re_context();
13177         PUSHMARK(sp);
13178         EXTEND(SP, 3);
13179         XPUSHs(encoding);
13180         XPUSHs(sv);
13181 /*
13182   NI-S 2002/07/09
13183   Passing sv_yes is wrong - it needs to be or'ed set of constants
13184   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
13185   remove converted chars from source.
13186
13187   Both will default the value - let them.
13188
13189         XPUSHs(&PL_sv_yes);
13190 */
13191         PUTBACK;
13192         call_method("decode", G_SCALAR);
13193         SPAGAIN;
13194         uni = POPs;
13195         PUTBACK;
13196         s = SvPV_const(uni, len);
13197         if (s != SvPVX_const(sv)) {
13198             SvGROW(sv, len + 1);
13199             Move(s, SvPVX(sv), len + 1, char);
13200             SvCUR_set(sv, len);
13201         }
13202         FREETMPS;
13203         LEAVE;
13204         SvUTF8_on(sv);
13205         return SvPVX(sv);
13206     }
13207     return SvPOKp(sv) ? SvPVX(sv) : NULL;
13208 }
13209
13210 /*
13211 =for apidoc sv_cat_decode
13212
13213 The encoding is assumed to be an Encode object, the PV of the ssv is
13214 assumed to be octets in that encoding and decoding the input starts
13215 from the position which (PV + *offset) pointed to.  The dsv will be
13216 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
13217 when the string tstr appears in decoding output or the input ends on
13218 the PV of the ssv. The value which the offset points will be modified
13219 to the last input position on the ssv.
13220
13221 Returns TRUE if the terminator was found, else returns FALSE.
13222
13223 =cut */
13224
13225 bool
13226 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
13227                    SV *ssv, int *offset, char *tstr, int tlen)
13228 {
13229     dVAR;
13230     bool ret = FALSE;
13231
13232     PERL_ARGS_ASSERT_SV_CAT_DECODE;
13233
13234     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
13235         SV *offsv;
13236         dSP;
13237         ENTER;
13238         SAVETMPS;
13239         save_re_context();
13240         PUSHMARK(sp);
13241         EXTEND(SP, 6);
13242         XPUSHs(encoding);
13243         XPUSHs(dsv);
13244         XPUSHs(ssv);
13245         offsv = newSViv(*offset);
13246         mXPUSHs(offsv);
13247         mXPUSHp(tstr, tlen);
13248         PUTBACK;
13249         call_method("cat_decode", G_SCALAR);
13250         SPAGAIN;
13251         ret = SvTRUE(TOPs);
13252         *offset = SvIV(offsv);
13253         PUTBACK;
13254         FREETMPS;
13255         LEAVE;
13256     }
13257     else
13258         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
13259     return ret;
13260
13261 }
13262
13263 /* ---------------------------------------------------------------------
13264  *
13265  * support functions for report_uninit()
13266  */
13267
13268 /* the maxiumum size of array or hash where we will scan looking
13269  * for the undefined element that triggered the warning */
13270
13271 #define FUV_MAX_SEARCH_SIZE 1000
13272
13273 /* Look for an entry in the hash whose value has the same SV as val;
13274  * If so, return a mortal copy of the key. */
13275
13276 STATIC SV*
13277 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
13278 {
13279     dVAR;
13280     register HE **array;
13281     I32 i;
13282
13283     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
13284
13285     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
13286                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
13287         return NULL;
13288
13289     array = HvARRAY(hv);
13290
13291     for (i=HvMAX(hv); i>0; i--) {
13292         register HE *entry;
13293         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
13294             if (HeVAL(entry) != val)
13295                 continue;
13296             if (    HeVAL(entry) == &PL_sv_undef ||
13297                     HeVAL(entry) == &PL_sv_placeholder)
13298                 continue;
13299             if (!HeKEY(entry))
13300                 return NULL;
13301             if (HeKLEN(entry) == HEf_SVKEY)
13302                 return sv_mortalcopy(HeKEY_sv(entry));
13303             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
13304         }
13305     }
13306     return NULL;
13307 }
13308
13309 /* Look for an entry in the array whose value has the same SV as val;
13310  * If so, return the index, otherwise return -1. */
13311
13312 STATIC I32
13313 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
13314 {
13315     dVAR;
13316
13317     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
13318
13319     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
13320                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
13321         return -1;
13322
13323     if (val != &PL_sv_undef) {
13324         SV ** const svp = AvARRAY(av);
13325         I32 i;
13326
13327         for (i=AvFILLp(av); i>=0; i--)
13328             if (svp[i] == val)
13329                 return i;
13330     }
13331     return -1;
13332 }
13333
13334 /* S_varname(): return the name of a variable, optionally with a subscript.
13335  * If gv is non-zero, use the name of that global, along with gvtype (one
13336  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
13337  * targ.  Depending on the value of the subscript_type flag, return:
13338  */
13339
13340 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
13341 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
13342 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
13343 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
13344
13345 STATIC SV*
13346 S_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
13347         const SV *const keyname, I32 aindex, int subscript_type)
13348 {
13349
13350     SV * const name = sv_newmortal();
13351     if (gv) {
13352         char buffer[2];
13353         buffer[0] = gvtype;
13354         buffer[1] = 0;
13355
13356         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
13357
13358         gv_fullname4(name, gv, buffer, 0);
13359
13360         if ((unsigned int)SvPVX(name)[1] <= 26) {
13361             buffer[0] = '^';
13362             buffer[1] = SvPVX(name)[1] + 'A' - 1;
13363
13364             /* Swap the 1 unprintable control character for the 2 byte pretty
13365                version - ie substr($name, 1, 1) = $buffer; */
13366             sv_insert(name, 1, 1, buffer, 2);
13367         }
13368     }
13369     else {
13370         CV * const cv = find_runcv(NULL);
13371         SV *sv;
13372         AV *av;
13373
13374         if (!cv || !CvPADLIST(cv))
13375             return NULL;
13376         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
13377         sv = *av_fetch(av, targ, FALSE);
13378         sv_setpvn(name, SvPV_nolen_const(sv), SvCUR(sv));
13379     }
13380
13381     if (subscript_type == FUV_SUBSCRIPT_HASH) {
13382         SV * const sv = newSV(0);
13383         *SvPVX(name) = '$';
13384         Perl_sv_catpvf(aTHX_ name, "{%s}",
13385             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
13386         SvREFCNT_dec(sv);
13387     }
13388     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
13389         *SvPVX(name) = '$';
13390         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
13391     }
13392     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
13393         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
13394         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
13395     }
13396
13397     return name;
13398 }
13399
13400
13401 /*
13402 =for apidoc find_uninit_var
13403
13404 Find the name of the undefined variable (if any) that caused the operator o
13405 to issue a "Use of uninitialized value" warning.
13406 If match is true, only return a name if it's value matches uninit_sv.
13407 So roughly speaking, if a unary operator (such as OP_COS) generates a
13408 warning, then following the direct child of the op may yield an
13409 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
13410 other hand, with OP_ADD there are two branches to follow, so we only print
13411 the variable name if we get an exact match.
13412
13413 The name is returned as a mortal SV.
13414
13415 Assumes that PL_op is the op that originally triggered the error, and that
13416 PL_comppad/PL_curpad points to the currently executing pad.
13417
13418 =cut
13419 */
13420
13421 STATIC SV *
13422 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
13423                   bool match)
13424 {
13425     dVAR;
13426     SV *sv;
13427     const GV *gv;
13428     const OP *o, *o2, *kid;
13429
13430     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
13431                             uninit_sv == &PL_sv_placeholder)))
13432         return NULL;
13433
13434     switch (obase->op_type) {
13435
13436     case OP_RV2AV:
13437     case OP_RV2HV:
13438     case OP_PADAV:
13439     case OP_PADHV:
13440       {
13441         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
13442         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
13443         I32 index = 0;
13444         SV *keysv = NULL;
13445         int subscript_type = FUV_SUBSCRIPT_WITHIN;
13446
13447         if (pad) { /* @lex, %lex */
13448             sv = PAD_SVl(obase->op_targ);
13449             gv = NULL;
13450         }
13451         else {
13452             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13453             /* @global, %global */
13454                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13455                 if (!gv)
13456                     break;
13457                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
13458             }
13459             else /* @{expr}, %{expr} */
13460                 return find_uninit_var(cUNOPx(obase)->op_first,
13461                                                     uninit_sv, match);
13462         }
13463
13464         /* attempt to find a match within the aggregate */
13465         if (hash) {
13466             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13467             if (keysv)
13468                 subscript_type = FUV_SUBSCRIPT_HASH;
13469         }
13470         else {
13471             index = find_array_subscript((const AV *)sv, uninit_sv);
13472             if (index >= 0)
13473                 subscript_type = FUV_SUBSCRIPT_ARRAY;
13474         }
13475
13476         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
13477             break;
13478
13479         return varname(gv, hash ? '%' : '@', obase->op_targ,
13480                                     keysv, index, subscript_type);
13481       }
13482
13483     case OP_PADSV:
13484         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
13485             break;
13486         return varname(NULL, '$', obase->op_targ,
13487                                     NULL, 0, FUV_SUBSCRIPT_NONE);
13488
13489     case OP_GVSV:
13490         gv = cGVOPx_gv(obase);
13491         if (!gv || (match && GvSV(gv) != uninit_sv))
13492             break;
13493         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13494
13495     case OP_AELEMFAST:
13496         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
13497             if (match) {
13498                 SV **svp;
13499                 AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
13500                 if (!av || SvRMAGICAL(av))
13501                     break;
13502                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
13503                 if (!svp || *svp != uninit_sv)
13504                     break;
13505             }
13506             return varname(NULL, '$', obase->op_targ,
13507                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13508         }
13509         else {
13510             gv = cGVOPx_gv(obase);
13511             if (!gv)
13512                 break;
13513             if (match) {
13514                 SV **svp;
13515                 AV *const av = GvAV(gv);
13516                 if (!av || SvRMAGICAL(av))
13517                     break;
13518                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
13519                 if (!svp || *svp != uninit_sv)
13520                     break;
13521             }
13522             return varname(gv, '$', 0,
13523                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13524         }
13525         break;
13526
13527     case OP_EXISTS:
13528         o = cUNOPx(obase)->op_first;
13529         if (!o || o->op_type != OP_NULL ||
13530                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
13531             break;
13532         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
13533
13534     case OP_AELEM:
13535     case OP_HELEM:
13536         if (PL_op == obase)
13537             /* $a[uninit_expr] or $h{uninit_expr} */
13538             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
13539
13540         gv = NULL;
13541         o = cBINOPx(obase)->op_first;
13542         kid = cBINOPx(obase)->op_last;
13543
13544         /* get the av or hv, and optionally the gv */
13545         sv = NULL;
13546         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
13547             sv = PAD_SV(o->op_targ);
13548         }
13549         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
13550                 && cUNOPo->op_first->op_type == OP_GV)
13551         {
13552             gv = cGVOPx_gv(cUNOPo->op_first);
13553             if (!gv)
13554                 break;
13555             sv = o->op_type
13556                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
13557         }
13558         if (!sv)
13559             break;
13560
13561         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
13562             /* index is constant */
13563             if (match) {
13564                 if (SvMAGICAL(sv))
13565                     break;
13566                 if (obase->op_type == OP_HELEM) {
13567                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), cSVOPx_sv(kid), 0, 0);
13568                     if (!he || HeVAL(he) != uninit_sv)
13569                         break;
13570                 }
13571                 else {
13572                     SV * const * const svp = av_fetch(MUTABLE_AV(sv), SvIV(cSVOPx_sv(kid)), FALSE);
13573                     if (!svp || *svp != uninit_sv)
13574                         break;
13575                 }
13576             }
13577             if (obase->op_type == OP_HELEM)
13578                 return varname(gv, '%', o->op_targ,
13579                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
13580             else
13581                 return varname(gv, '@', o->op_targ, NULL,
13582                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
13583         }
13584         else  {
13585             /* index is an expression;
13586              * attempt to find a match within the aggregate */
13587             if (obase->op_type == OP_HELEM) {
13588                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13589                 if (keysv)
13590                     return varname(gv, '%', o->op_targ,
13591                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
13592             }
13593             else {
13594                 const I32 index
13595                     = find_array_subscript((const AV *)sv, uninit_sv);
13596                 if (index >= 0)
13597                     return varname(gv, '@', o->op_targ,
13598                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
13599             }
13600             if (match)
13601                 break;
13602             return varname(gv,
13603                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
13604                 ? '@' : '%',
13605                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
13606         }
13607         break;
13608
13609     case OP_AASSIGN:
13610         /* only examine RHS */
13611         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
13612
13613     case OP_OPEN:
13614         o = cUNOPx(obase)->op_first;
13615         if (o->op_type == OP_PUSHMARK)
13616             o = o->op_sibling;
13617
13618         if (!o->op_sibling) {
13619             /* one-arg version of open is highly magical */
13620
13621             if (o->op_type == OP_GV) { /* open FOO; */
13622                 gv = cGVOPx_gv(o);
13623                 if (match && GvSV(gv) != uninit_sv)
13624                     break;
13625                 return varname(gv, '$', 0,
13626                             NULL, 0, FUV_SUBSCRIPT_NONE);
13627             }
13628             /* other possibilities not handled are:
13629              * open $x; or open my $x;  should return '${*$x}'
13630              * open expr;               should return '$'.expr ideally
13631              */
13632              break;
13633         }
13634         goto do_op;
13635
13636     /* ops where $_ may be an implicit arg */
13637     case OP_TRANS:
13638     case OP_SUBST:
13639     case OP_MATCH:
13640         if ( !(obase->op_flags & OPf_STACKED)) {
13641             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
13642                                  ? PAD_SVl(obase->op_targ)
13643                                  : DEFSV))
13644             {
13645                 sv = sv_newmortal();
13646                 sv_setpvs(sv, "$_");
13647                 return sv;
13648             }
13649         }
13650         goto do_op;
13651
13652     case OP_PRTF:
13653     case OP_PRINT:
13654     case OP_SAY:
13655         match = 1; /* print etc can return undef on defined args */
13656         /* skip filehandle as it can't produce 'undef' warning  */
13657         o = cUNOPx(obase)->op_first;
13658         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
13659             o = o->op_sibling->op_sibling;
13660         goto do_op2;
13661
13662
13663     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
13664     case OP_RV2SV:
13665     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
13666
13667         /* the following ops are capable of returning PL_sv_undef even for
13668          * defined arg(s) */
13669
13670     case OP_BACKTICK:
13671     case OP_PIPE_OP:
13672     case OP_FILENO:
13673     case OP_BINMODE:
13674     case OP_TIED:
13675     case OP_GETC:
13676     case OP_SYSREAD:
13677     case OP_SEND:
13678     case OP_IOCTL:
13679     case OP_SOCKET:
13680     case OP_SOCKPAIR:
13681     case OP_BIND:
13682     case OP_CONNECT:
13683     case OP_LISTEN:
13684     case OP_ACCEPT:
13685     case OP_SHUTDOWN:
13686     case OP_SSOCKOPT:
13687     case OP_GETPEERNAME:
13688     case OP_FTRREAD:
13689     case OP_FTRWRITE:
13690     case OP_FTREXEC:
13691     case OP_FTROWNED:
13692     case OP_FTEREAD:
13693     case OP_FTEWRITE:
13694     case OP_FTEEXEC:
13695     case OP_FTEOWNED:
13696     case OP_FTIS:
13697     case OP_FTZERO:
13698     case OP_FTSIZE:
13699     case OP_FTFILE:
13700     case OP_FTDIR:
13701     case OP_FTLINK:
13702     case OP_FTPIPE:
13703     case OP_FTSOCK:
13704     case OP_FTBLK:
13705     case OP_FTCHR:
13706     case OP_FTTTY:
13707     case OP_FTSUID:
13708     case OP_FTSGID:
13709     case OP_FTSVTX:
13710     case OP_FTTEXT:
13711     case OP_FTBINARY:
13712     case OP_FTMTIME:
13713     case OP_FTATIME:
13714     case OP_FTCTIME:
13715     case OP_READLINK:
13716     case OP_OPEN_DIR:
13717     case OP_READDIR:
13718     case OP_TELLDIR:
13719     case OP_SEEKDIR:
13720     case OP_REWINDDIR:
13721     case OP_CLOSEDIR:
13722     case OP_GMTIME:
13723     case OP_ALARM:
13724     case OP_SEMGET:
13725     case OP_GETLOGIN:
13726     case OP_UNDEF:
13727     case OP_SUBSTR:
13728     case OP_AEACH:
13729     case OP_EACH:
13730     case OP_SORT:
13731     case OP_CALLER:
13732     case OP_DOFILE:
13733     case OP_PROTOTYPE:
13734     case OP_NCMP:
13735     case OP_SMARTMATCH:
13736     case OP_UNPACK:
13737     case OP_SYSOPEN:
13738     case OP_SYSSEEK:
13739         match = 1;
13740         goto do_op;
13741
13742     case OP_ENTERSUB:
13743     case OP_GOTO:
13744         /* XXX tmp hack: these two may call an XS sub, and currently
13745           XS subs don't have a SUB entry on the context stack, so CV and
13746           pad determination goes wrong, and BAD things happen. So, just
13747           don't try to determine the value under those circumstances.
13748           Need a better fix at dome point. DAPM 11/2007 */
13749         break;
13750
13751     case OP_FLIP:
13752     case OP_FLOP:
13753     {
13754         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
13755         if (gv && GvSV(gv) == uninit_sv)
13756             return newSVpvs_flags("$.", SVs_TEMP);
13757         goto do_op;
13758     }
13759
13760     case OP_POS:
13761         /* def-ness of rval pos() is independent of the def-ness of its arg */
13762         if ( !(obase->op_flags & OPf_MOD))
13763             break;
13764
13765     case OP_SCHOMP:
13766     case OP_CHOMP:
13767         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
13768             return newSVpvs_flags("${$/}", SVs_TEMP);
13769         /*FALLTHROUGH*/
13770
13771     default:
13772     do_op:
13773         if (!(obase->op_flags & OPf_KIDS))
13774             break;
13775         o = cUNOPx(obase)->op_first;
13776         
13777     do_op2:
13778         if (!o)
13779             break;
13780
13781         /* if all except one arg are constant, or have no side-effects,
13782          * or are optimized away, then it's unambiguous */
13783         o2 = NULL;
13784         for (kid=o; kid; kid = kid->op_sibling) {
13785             if (kid) {
13786                 const OPCODE type = kid->op_type;
13787                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
13788                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
13789                   || (type == OP_PUSHMARK)
13790                 )
13791                 continue;
13792             }
13793             if (o2) { /* more than one found */
13794                 o2 = NULL;
13795                 break;
13796             }
13797             o2 = kid;
13798         }
13799         if (o2)
13800             return find_uninit_var(o2, uninit_sv, match);
13801
13802         /* scan all args */
13803         while (o) {
13804             sv = find_uninit_var(o, uninit_sv, 1);
13805             if (sv)
13806                 return sv;
13807             o = o->op_sibling;
13808         }
13809         break;
13810     }
13811     return NULL;
13812 }
13813
13814
13815 /*
13816 =for apidoc report_uninit
13817
13818 Print appropriate "Use of uninitialized variable" warning
13819
13820 =cut
13821 */
13822
13823 void
13824 Perl_report_uninit(pTHX_ const SV *uninit_sv)
13825 {
13826     dVAR;
13827     if (PL_op) {
13828         SV* varname = NULL;
13829         if (uninit_sv) {
13830             varname = find_uninit_var(PL_op, uninit_sv,0);
13831             if (varname)
13832                 sv_insert(varname, 0, 0, " ", 1);
13833         }
13834         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13835                 varname ? SvPV_nolen_const(varname) : "",
13836                 " in ", OP_DESC(PL_op));
13837     }
13838     else
13839         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13840                     "", "", "");
13841 }
13842
13843 /*
13844  * Local variables:
13845  * c-indentation-style: bsd
13846  * c-basic-offset: 4
13847  * indent-tabs-mode: t
13848  * End:
13849  *
13850  * ex: set ts=8 sts=4 sw=4 noet:
13851  */