This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Increase $strict::VERSION to 1.05
[perl5.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5  *    and others
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  *
10  */
11
12 /*
13  * 'I wonder what the Entish is for "yes" and "no",' he thought.
14  *                                                      --Pippin
15  *
16  *     [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17  */
18
19 /*
20  *
21  *
22  * This file contains the code that creates, manipulates and destroys
23  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24  * structure of an SV, so their creation and destruction is handled
25  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26  * level functions (eg. substr, split, join) for each of the types are
27  * in the pp*.c files.
28  */
29
30 #include "EXTERN.h"
31 #define PERL_IN_SV_C
32 #include "perl.h"
33 #include "regcomp.h"
34
35 #ifndef HAS_C99
36 # if __STDC_VERSION__ >= 199901L && !defined(VMS)
37 #  define HAS_C99 1
38 # endif
39 #endif
40 #if HAS_C99
41 # include <stdint.h>
42 #endif
43
44 #define FCALL *f
45
46 #ifdef __Lynx__
47 /* Missing proto on LynxOS */
48   char *gconvert(double, int, int,  char *);
49 #endif
50
51 #ifdef PERL_UTF8_CACHE_ASSERT
52 /* if adding more checks watch out for the following tests:
53  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
54  *   lib/utf8.t lib/Unicode/Collate/t/index.t
55  * --jhi
56  */
57 #   define ASSERT_UTF8_CACHE(cache) \
58     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
59                               assert((cache)[2] <= (cache)[3]); \
60                               assert((cache)[3] <= (cache)[1]);} \
61                               } STMT_END
62 #else
63 #   define ASSERT_UTF8_CACHE(cache) NOOP
64 #endif
65
66 #ifdef PERL_OLD_COPY_ON_WRITE
67 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
68 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
69 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
70    on-write.  */
71 #endif
72
73 /* ============================================================================
74
75 =head1 Allocation and deallocation of SVs.
76
77 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
78 sv, av, hv...) contains type and reference count information, and for
79 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
80 contains fields specific to each type.  Some types store all they need
81 in the head, so don't have a body.
82
83 In all but the most memory-paranoid configurations (ex: PURIFY), heads
84 and bodies are allocated out of arenas, which by default are
85 approximately 4K chunks of memory parcelled up into N heads or bodies.
86 Sv-bodies are allocated by their sv-type, guaranteeing size
87 consistency needed to allocate safely from arrays.
88
89 For SV-heads, the first slot in each arena is reserved, and holds a
90 link to the next arena, some flags, and a note of the number of slots.
91 Snaked through each arena chain is a linked list of free items; when
92 this becomes empty, an extra arena is allocated and divided up into N
93 items which are threaded into the free list.
94
95 SV-bodies are similar, but they use arena-sets by default, which
96 separate the link and info from the arena itself, and reclaim the 1st
97 slot in the arena.  SV-bodies are further described later.
98
99 The following global variables are associated with arenas:
100
101     PL_sv_arenaroot     pointer to list of SV arenas
102     PL_sv_root          pointer to list of free SV structures
103
104     PL_body_arenas      head of linked-list of body arenas
105     PL_body_roots[]     array of pointers to list of free bodies of svtype
106                         arrays are indexed by the svtype needed
107
108 A few special SV heads are not allocated from an arena, but are
109 instead directly created in the interpreter structure, eg PL_sv_undef.
110 The size of arenas can be changed from the default by setting
111 PERL_ARENA_SIZE appropriately at compile time.
112
113 The SV arena serves the secondary purpose of allowing still-live SVs
114 to be located and destroyed during final cleanup.
115
116 At the lowest level, the macros new_SV() and del_SV() grab and free
117 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
118 to return the SV to the free list with error checking.) new_SV() calls
119 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
120 SVs in the free list have their SvTYPE field set to all ones.
121
122 At the time of very final cleanup, sv_free_arenas() is called from
123 perl_destruct() to physically free all the arenas allocated since the
124 start of the interpreter.
125
126 The function visit() scans the SV arenas list, and calls a specified
127 function for each SV it finds which is still live - ie which has an SvTYPE
128 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
129 following functions (specified as [function that calls visit()] / [function
130 called by visit() for each SV]):
131
132     sv_report_used() / do_report_used()
133                         dump all remaining SVs (debugging aid)
134
135     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
136                       do_clean_named_io_objs()
137                         Attempt to free all objects pointed to by RVs,
138                         and try to do the same for all objects indirectly
139                         referenced by typeglobs too.  Called once from
140                         perl_destruct(), prior to calling sv_clean_all()
141                         below.
142
143     sv_clean_all() / do_clean_all()
144                         SvREFCNT_dec(sv) each remaining SV, possibly
145                         triggering an sv_free(). It also sets the
146                         SVf_BREAK flag on the SV to indicate that the
147                         refcnt has been artificially lowered, and thus
148                         stopping sv_free() from giving spurious warnings
149                         about SVs which unexpectedly have a refcnt
150                         of zero.  called repeatedly from perl_destruct()
151                         until there are no SVs left.
152
153 =head2 Arena allocator API Summary
154
155 Private API to rest of sv.c
156
157     new_SV(),  del_SV(),
158
159     new_XPVNV(), del_XPVGV(),
160     etc
161
162 Public API:
163
164     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
165
166 =cut
167
168  * ========================================================================= */
169
170 /*
171  * "A time to plant, and a time to uproot what was planted..."
172  */
173
174 #ifdef PERL_MEM_LOG
175 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
176             Perl_mem_log_new_sv(sv, file, line, func)
177 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
178             Perl_mem_log_del_sv(sv, file, line, func)
179 #else
180 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
181 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
182 #endif
183
184 #ifdef DEBUG_LEAKING_SCALARS
185 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
186 #  define DEBUG_SV_SERIAL(sv)                                               \
187     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
188             PTR2UV(sv), (long)(sv)->sv_debug_serial))
189 #else
190 #  define FREE_SV_DEBUG_FILE(sv)
191 #  define DEBUG_SV_SERIAL(sv)   NOOP
192 #endif
193
194 #ifdef PERL_POISON
195 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
196 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
197 /* Whilst I'd love to do this, it seems that things like to check on
198    unreferenced scalars
199 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
200 */
201 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
202                                 PoisonNew(&SvREFCNT(sv), 1, U32)
203 #else
204 #  define SvARENA_CHAIN(sv)     SvANY(sv)
205 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
206 #  define POSION_SV_HEAD(sv)
207 #endif
208
209 /* Mark an SV head as unused, and add to free list.
210  *
211  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
212  * its refcount artificially decremented during global destruction, so
213  * there may be dangling pointers to it. The last thing we want in that
214  * case is for it to be reused. */
215
216 #define plant_SV(p) \
217     STMT_START {                                        \
218         const U32 old_flags = SvFLAGS(p);                       \
219         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
220         DEBUG_SV_SERIAL(p);                             \
221         FREE_SV_DEBUG_FILE(p);                          \
222         POSION_SV_HEAD(p);                              \
223         SvFLAGS(p) = SVTYPEMASK;                        \
224         if (!(old_flags & SVf_BREAK)) {         \
225             SvARENA_CHAIN_SET(p, PL_sv_root);   \
226             PL_sv_root = (p);                           \
227         }                                               \
228         --PL_sv_count;                                  \
229     } STMT_END
230
231 #define uproot_SV(p) \
232     STMT_START {                                        \
233         (p) = PL_sv_root;                               \
234         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
235         ++PL_sv_count;                                  \
236     } STMT_END
237
238
239 /* make some more SVs by adding another arena */
240
241 STATIC SV*
242 S_more_sv(pTHX)
243 {
244     dVAR;
245     SV* sv;
246     char *chunk;                /* must use New here to match call to */
247     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
248     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
249     uproot_SV(sv);
250     return sv;
251 }
252
253 /* new_SV(): return a new, empty SV head */
254
255 #ifdef DEBUG_LEAKING_SCALARS
256 /* provide a real function for a debugger to play with */
257 STATIC SV*
258 S_new_SV(pTHX_ const char *file, int line, const char *func)
259 {
260     SV* sv;
261
262     if (PL_sv_root)
263         uproot_SV(sv);
264     else
265         sv = S_more_sv(aTHX);
266     SvANY(sv) = 0;
267     SvREFCNT(sv) = 1;
268     SvFLAGS(sv) = 0;
269     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
270     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
271                 ? PL_parser->copline
272                 :  PL_curcop
273                     ? CopLINE(PL_curcop)
274                     : 0
275             );
276     sv->sv_debug_inpad = 0;
277     sv->sv_debug_parent = NULL;
278     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
279
280     sv->sv_debug_serial = PL_sv_serial++;
281
282     MEM_LOG_NEW_SV(sv, file, line, func);
283     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
284             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
285
286     return sv;
287 }
288 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
289
290 #else
291 #  define new_SV(p) \
292     STMT_START {                                        \
293         if (PL_sv_root)                                 \
294             uproot_SV(p);                               \
295         else                                            \
296             (p) = S_more_sv(aTHX);                      \
297         SvANY(p) = 0;                                   \
298         SvREFCNT(p) = 1;                                \
299         SvFLAGS(p) = 0;                                 \
300         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
301     } STMT_END
302 #endif
303
304
305 /* del_SV(): return an empty SV head to the free list */
306
307 #ifdef DEBUGGING
308
309 #define del_SV(p) \
310     STMT_START {                                        \
311         if (DEBUG_D_TEST)                               \
312             del_sv(p);                                  \
313         else                                            \
314             plant_SV(p);                                \
315     } STMT_END
316
317 STATIC void
318 S_del_sv(pTHX_ SV *p)
319 {
320     dVAR;
321
322     PERL_ARGS_ASSERT_DEL_SV;
323
324     if (DEBUG_D_TEST) {
325         SV* sva;
326         bool ok = 0;
327         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
328             const SV * const sv = sva + 1;
329             const SV * const svend = &sva[SvREFCNT(sva)];
330             if (p >= sv && p < svend) {
331                 ok = 1;
332                 break;
333             }
334         }
335         if (!ok) {
336             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
337                              "Attempt to free non-arena SV: 0x%"UVxf
338                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
339             return;
340         }
341     }
342     plant_SV(p);
343 }
344
345 #else /* ! DEBUGGING */
346
347 #define del_SV(p)   plant_SV(p)
348
349 #endif /* DEBUGGING */
350
351
352 /*
353 =head1 SV Manipulation Functions
354
355 =for apidoc sv_add_arena
356
357 Given a chunk of memory, link it to the head of the list of arenas,
358 and split it into a list of free SVs.
359
360 =cut
361 */
362
363 static void
364 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
365 {
366     dVAR;
367     SV *const sva = MUTABLE_SV(ptr);
368     register SV* sv;
369     register SV* svend;
370
371     PERL_ARGS_ASSERT_SV_ADD_ARENA;
372
373     /* The first SV in an arena isn't an SV. */
374     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
375     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
376     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
377
378     PL_sv_arenaroot = sva;
379     PL_sv_root = sva + 1;
380
381     svend = &sva[SvREFCNT(sva) - 1];
382     sv = sva + 1;
383     while (sv < svend) {
384         SvARENA_CHAIN_SET(sv, (sv + 1));
385 #ifdef DEBUGGING
386         SvREFCNT(sv) = 0;
387 #endif
388         /* Must always set typemask because it's always checked in on cleanup
389            when the arenas are walked looking for objects.  */
390         SvFLAGS(sv) = SVTYPEMASK;
391         sv++;
392     }
393     SvARENA_CHAIN_SET(sv, 0);
394 #ifdef DEBUGGING
395     SvREFCNT(sv) = 0;
396 #endif
397     SvFLAGS(sv) = SVTYPEMASK;
398 }
399
400 /* visit(): call the named function for each non-free SV in the arenas
401  * whose flags field matches the flags/mask args. */
402
403 STATIC I32
404 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
405 {
406     dVAR;
407     SV* sva;
408     I32 visited = 0;
409
410     PERL_ARGS_ASSERT_VISIT;
411
412     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
413         register const SV * const svend = &sva[SvREFCNT(sva)];
414         register SV* sv;
415         for (sv = sva + 1; sv < svend; ++sv) {
416             if (SvTYPE(sv) != (svtype)SVTYPEMASK
417                     && (sv->sv_flags & mask) == flags
418                     && SvREFCNT(sv))
419             {
420                 (FCALL)(aTHX_ sv);
421                 ++visited;
422             }
423         }
424     }
425     return visited;
426 }
427
428 #ifdef DEBUGGING
429
430 /* called by sv_report_used() for each live SV */
431
432 static void
433 do_report_used(pTHX_ SV *const sv)
434 {
435     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
436         PerlIO_printf(Perl_debug_log, "****\n");
437         sv_dump(sv);
438     }
439 }
440 #endif
441
442 /*
443 =for apidoc sv_report_used
444
445 Dump the contents of all SVs not yet freed. (Debugging aid).
446
447 =cut
448 */
449
450 void
451 Perl_sv_report_used(pTHX)
452 {
453 #ifdef DEBUGGING
454     visit(do_report_used, 0, 0);
455 #else
456     PERL_UNUSED_CONTEXT;
457 #endif
458 }
459
460 /* called by sv_clean_objs() for each live SV */
461
462 static void
463 do_clean_objs(pTHX_ SV *const ref)
464 {
465     dVAR;
466     assert (SvROK(ref));
467     {
468         SV * const target = SvRV(ref);
469         if (SvOBJECT(target)) {
470             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
471             if (SvWEAKREF(ref)) {
472                 sv_del_backref(target, ref);
473                 SvWEAKREF_off(ref);
474                 SvRV_set(ref, NULL);
475             } else {
476                 SvROK_off(ref);
477                 SvRV_set(ref, NULL);
478                 SvREFCNT_dec(target);
479             }
480         }
481     }
482
483     /* XXX Might want to check arrays, etc. */
484 }
485
486
487 /* clear any slots in a GV which hold objects - except IO;
488  * called by sv_clean_objs() for each live GV */
489
490 static void
491 do_clean_named_objs(pTHX_ SV *const sv)
492 {
493     dVAR;
494     SV *obj;
495     assert(SvTYPE(sv) == SVt_PVGV);
496     assert(isGV_with_GP(sv));
497     if (!GvGP(sv))
498         return;
499
500     /* freeing GP entries may indirectly free the current GV;
501      * hold onto it while we mess with the GP slots */
502     SvREFCNT_inc(sv);
503
504     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
505         DEBUG_D((PerlIO_printf(Perl_debug_log,
506                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
507         GvSV(sv) = NULL;
508         SvREFCNT_dec(obj);
509     }
510     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
511         DEBUG_D((PerlIO_printf(Perl_debug_log,
512                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
513         GvAV(sv) = NULL;
514         SvREFCNT_dec(obj);
515     }
516     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
517         DEBUG_D((PerlIO_printf(Perl_debug_log,
518                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
519         GvHV(sv) = NULL;
520         SvREFCNT_dec(obj);
521     }
522     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
523         DEBUG_D((PerlIO_printf(Perl_debug_log,
524                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
525         GvCV_set(sv, NULL);
526         SvREFCNT_dec(obj);
527     }
528     SvREFCNT_dec(sv); /* undo the inc above */
529 }
530
531 /* clear any IO slots in a GV which hold objects (except stderr, defout);
532  * called by sv_clean_objs() for each live GV */
533
534 static void
535 do_clean_named_io_objs(pTHX_ SV *const sv)
536 {
537     dVAR;
538     SV *obj;
539     assert(SvTYPE(sv) == SVt_PVGV);
540     assert(isGV_with_GP(sv));
541     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
542         return;
543
544     SvREFCNT_inc(sv);
545     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
546         DEBUG_D((PerlIO_printf(Perl_debug_log,
547                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
548         GvIOp(sv) = NULL;
549         SvREFCNT_dec(obj);
550     }
551     SvREFCNT_dec(sv); /* undo the inc above */
552 }
553
554 /* Void wrapper to pass to visit() */
555 static void
556 do_curse(pTHX_ SV * const sv) {
557     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
558      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
559         return;
560     (void)curse(sv, 0);
561 }
562
563 /*
564 =for apidoc sv_clean_objs
565
566 Attempt to destroy all objects not yet freed
567
568 =cut
569 */
570
571 void
572 Perl_sv_clean_objs(pTHX)
573 {
574     dVAR;
575     GV *olddef, *olderr;
576     PL_in_clean_objs = TRUE;
577     visit(do_clean_objs, SVf_ROK, SVf_ROK);
578     /* Some barnacles may yet remain, clinging to typeglobs.
579      * Run the non-IO destructors first: they may want to output
580      * error messages, close files etc */
581     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
582     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
583     /* And if there are some very tenacious barnacles clinging to arrays,
584        closures, or what have you.... */
585     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
586     olddef = PL_defoutgv;
587     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
588     if (olddef && isGV_with_GP(olddef))
589         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
590     olderr = PL_stderrgv;
591     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
592     if (olderr && isGV_with_GP(olderr))
593         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
594     SvREFCNT_dec(olddef);
595     PL_in_clean_objs = FALSE;
596 }
597
598 /* called by sv_clean_all() for each live SV */
599
600 static void
601 do_clean_all(pTHX_ SV *const sv)
602 {
603     dVAR;
604     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
605         /* don't clean pid table and strtab */
606         return;
607     }
608     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
609     SvFLAGS(sv) |= SVf_BREAK;
610     SvREFCNT_dec(sv);
611 }
612
613 /*
614 =for apidoc sv_clean_all
615
616 Decrement the refcnt of each remaining SV, possibly triggering a
617 cleanup. This function may have to be called multiple times to free
618 SVs which are in complex self-referential hierarchies.
619
620 =cut
621 */
622
623 I32
624 Perl_sv_clean_all(pTHX)
625 {
626     dVAR;
627     I32 cleaned;
628     PL_in_clean_all = TRUE;
629     cleaned = visit(do_clean_all, 0,0);
630     return cleaned;
631 }
632
633 /*
634   ARENASETS: a meta-arena implementation which separates arena-info
635   into struct arena_set, which contains an array of struct
636   arena_descs, each holding info for a single arena.  By separating
637   the meta-info from the arena, we recover the 1st slot, formerly
638   borrowed for list management.  The arena_set is about the size of an
639   arena, avoiding the needless malloc overhead of a naive linked-list.
640
641   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
642   memory in the last arena-set (1/2 on average).  In trade, we get
643   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
644   smaller types).  The recovery of the wasted space allows use of
645   small arenas for large, rare body types, by changing array* fields
646   in body_details_by_type[] below.
647 */
648 struct arena_desc {
649     char       *arena;          /* the raw storage, allocated aligned */
650     size_t      size;           /* its size ~4k typ */
651     svtype      utype;          /* bodytype stored in arena */
652 };
653
654 struct arena_set;
655
656 /* Get the maximum number of elements in set[] such that struct arena_set
657    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
658    therefore likely to be 1 aligned memory page.  */
659
660 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
661                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
662
663 struct arena_set {
664     struct arena_set* next;
665     unsigned int   set_size;    /* ie ARENAS_PER_SET */
666     unsigned int   curr;        /* index of next available arena-desc */
667     struct arena_desc set[ARENAS_PER_SET];
668 };
669
670 /*
671 =for apidoc sv_free_arenas
672
673 Deallocate the memory used by all arenas. Note that all the individual SV
674 heads and bodies within the arenas must already have been freed.
675
676 =cut
677 */
678 void
679 Perl_sv_free_arenas(pTHX)
680 {
681     dVAR;
682     SV* sva;
683     SV* svanext;
684     unsigned int i;
685
686     /* Free arenas here, but be careful about fake ones.  (We assume
687        contiguity of the fake ones with the corresponding real ones.) */
688
689     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
690         svanext = MUTABLE_SV(SvANY(sva));
691         while (svanext && SvFAKE(svanext))
692             svanext = MUTABLE_SV(SvANY(svanext));
693
694         if (!SvFAKE(sva))
695             Safefree(sva);
696     }
697
698     {
699         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
700
701         while (aroot) {
702             struct arena_set *current = aroot;
703             i = aroot->curr;
704             while (i--) {
705                 assert(aroot->set[i].arena);
706                 Safefree(aroot->set[i].arena);
707             }
708             aroot = aroot->next;
709             Safefree(current);
710         }
711     }
712     PL_body_arenas = 0;
713
714     i = PERL_ARENA_ROOTS_SIZE;
715     while (i--)
716         PL_body_roots[i] = 0;
717
718     PL_sv_arenaroot = 0;
719     PL_sv_root = 0;
720 }
721
722 /*
723   Here are mid-level routines that manage the allocation of bodies out
724   of the various arenas.  There are 5 kinds of arenas:
725
726   1. SV-head arenas, which are discussed and handled above
727   2. regular body arenas
728   3. arenas for reduced-size bodies
729   4. Hash-Entry arenas
730
731   Arena types 2 & 3 are chained by body-type off an array of
732   arena-root pointers, which is indexed by svtype.  Some of the
733   larger/less used body types are malloced singly, since a large
734   unused block of them is wasteful.  Also, several svtypes dont have
735   bodies; the data fits into the sv-head itself.  The arena-root
736   pointer thus has a few unused root-pointers (which may be hijacked
737   later for arena types 4,5)
738
739   3 differs from 2 as an optimization; some body types have several
740   unused fields in the front of the structure (which are kept in-place
741   for consistency).  These bodies can be allocated in smaller chunks,
742   because the leading fields arent accessed.  Pointers to such bodies
743   are decremented to point at the unused 'ghost' memory, knowing that
744   the pointers are used with offsets to the real memory.
745
746
747 =head1 SV-Body Allocation
748
749 Allocation of SV-bodies is similar to SV-heads, differing as follows;
750 the allocation mechanism is used for many body types, so is somewhat
751 more complicated, it uses arena-sets, and has no need for still-live
752 SV detection.
753
754 At the outermost level, (new|del)_X*V macros return bodies of the
755 appropriate type.  These macros call either (new|del)_body_type or
756 (new|del)_body_allocated macro pairs, depending on specifics of the
757 type.  Most body types use the former pair, the latter pair is used to
758 allocate body types with "ghost fields".
759
760 "ghost fields" are fields that are unused in certain types, and
761 consequently don't need to actually exist.  They are declared because
762 they're part of a "base type", which allows use of functions as
763 methods.  The simplest examples are AVs and HVs, 2 aggregate types
764 which don't use the fields which support SCALAR semantics.
765
766 For these types, the arenas are carved up into appropriately sized
767 chunks, we thus avoid wasted memory for those unaccessed members.
768 When bodies are allocated, we adjust the pointer back in memory by the
769 size of the part not allocated, so it's as if we allocated the full
770 structure.  (But things will all go boom if you write to the part that
771 is "not there", because you'll be overwriting the last members of the
772 preceding structure in memory.)
773
774 We calculate the correction using the STRUCT_OFFSET macro on the first
775 member present. If the allocated structure is smaller (no initial NV
776 actually allocated) then the net effect is to subtract the size of the NV
777 from the pointer, to return a new pointer as if an initial NV were actually
778 allocated. (We were using structures named *_allocated for this, but
779 this turned out to be a subtle bug, because a structure without an NV
780 could have a lower alignment constraint, but the compiler is allowed to
781 optimised accesses based on the alignment constraint of the actual pointer
782 to the full structure, for example, using a single 64 bit load instruction
783 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
784
785 This is the same trick as was used for NV and IV bodies. Ironically it
786 doesn't need to be used for NV bodies any more, because NV is now at
787 the start of the structure. IV bodies don't need it either, because
788 they are no longer allocated.
789
790 In turn, the new_body_* allocators call S_new_body(), which invokes
791 new_body_inline macro, which takes a lock, and takes a body off the
792 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
793 necessary to refresh an empty list.  Then the lock is released, and
794 the body is returned.
795
796 Perl_more_bodies allocates a new arena, and carves it up into an array of N
797 bodies, which it strings into a linked list.  It looks up arena-size
798 and body-size from the body_details table described below, thus
799 supporting the multiple body-types.
800
801 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
802 the (new|del)_X*V macros are mapped directly to malloc/free.
803
804 For each sv-type, struct body_details bodies_by_type[] carries
805 parameters which control these aspects of SV handling:
806
807 Arena_size determines whether arenas are used for this body type, and if
808 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
809 zero, forcing individual mallocs and frees.
810
811 Body_size determines how big a body is, and therefore how many fit into
812 each arena.  Offset carries the body-pointer adjustment needed for
813 "ghost fields", and is used in *_allocated macros.
814
815 But its main purpose is to parameterize info needed in
816 Perl_sv_upgrade().  The info here dramatically simplifies the function
817 vs the implementation in 5.8.8, making it table-driven.  All fields
818 are used for this, except for arena_size.
819
820 For the sv-types that have no bodies, arenas are not used, so those
821 PL_body_roots[sv_type] are unused, and can be overloaded.  In
822 something of a special case, SVt_NULL is borrowed for HE arenas;
823 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
824 bodies_by_type[SVt_NULL] slot is not used, as the table is not
825 available in hv.c.
826
827 */
828
829 struct body_details {
830     U8 body_size;       /* Size to allocate  */
831     U8 copy;            /* Size of structure to copy (may be shorter)  */
832     U8 offset;
833     unsigned int type : 4;          /* We have space for a sanity check.  */
834     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
835     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
836     unsigned int arena : 1;         /* Allocated from an arena */
837     size_t arena_size;              /* Size of arena to allocate */
838 };
839
840 #define HADNV FALSE
841 #define NONV TRUE
842
843
844 #ifdef PURIFY
845 /* With -DPURFIY we allocate everything directly, and don't use arenas.
846    This seems a rather elegant way to simplify some of the code below.  */
847 #define HASARENA FALSE
848 #else
849 #define HASARENA TRUE
850 #endif
851 #define NOARENA FALSE
852
853 /* Size the arenas to exactly fit a given number of bodies.  A count
854    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
855    simplifying the default.  If count > 0, the arena is sized to fit
856    only that many bodies, allowing arenas to be used for large, rare
857    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
858    limited by PERL_ARENA_SIZE, so we can safely oversize the
859    declarations.
860  */
861 #define FIT_ARENA0(body_size)                           \
862     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
863 #define FIT_ARENAn(count,body_size)                     \
864     ( count * body_size <= PERL_ARENA_SIZE)             \
865     ? count * body_size                                 \
866     : FIT_ARENA0 (body_size)
867 #define FIT_ARENA(count,body_size)                      \
868     count                                               \
869     ? FIT_ARENAn (count, body_size)                     \
870     : FIT_ARENA0 (body_size)
871
872 /* Calculate the length to copy. Specifically work out the length less any
873    final padding the compiler needed to add.  See the comment in sv_upgrade
874    for why copying the padding proved to be a bug.  */
875
876 #define copy_length(type, last_member) \
877         STRUCT_OFFSET(type, last_member) \
878         + sizeof (((type*)SvANY((const SV *)0))->last_member)
879
880 static const struct body_details bodies_by_type[] = {
881     /* HEs use this offset for their arena.  */
882     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
883
884     /* The bind placeholder pretends to be an RV for now.
885        Also it's marked as "can't upgrade" to stop anyone using it before it's
886        implemented.  */
887     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
888
889     /* IVs are in the head, so the allocation size is 0.  */
890     { 0,
891       sizeof(IV), /* This is used to copy out the IV body.  */
892       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
893       NOARENA /* IVS don't need an arena  */, 0
894     },
895
896     { sizeof(NV), sizeof(NV),
897       STRUCT_OFFSET(XPVNV, xnv_u),
898       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
899
900     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
901       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
902       + STRUCT_OFFSET(XPV, xpv_cur),
903       SVt_PV, FALSE, NONV, HASARENA,
904       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
905
906     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
907       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
908       + STRUCT_OFFSET(XPV, xpv_cur),
909       SVt_PVIV, FALSE, NONV, HASARENA,
910       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
911
912     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
913       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
914       + STRUCT_OFFSET(XPV, xpv_cur),
915       SVt_PVNV, FALSE, HADNV, HASARENA,
916       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
917
918     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
919       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
920
921     { sizeof(regexp),
922       sizeof(regexp),
923       0,
924       SVt_REGEXP, FALSE, NONV, HASARENA,
925       FIT_ARENA(0, sizeof(regexp))
926     },
927
928     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
929       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
930     
931     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
932       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
933
934     { sizeof(XPVAV),
935       copy_length(XPVAV, xav_alloc),
936       0,
937       SVt_PVAV, TRUE, NONV, HASARENA,
938       FIT_ARENA(0, sizeof(XPVAV)) },
939
940     { sizeof(XPVHV),
941       copy_length(XPVHV, xhv_max),
942       0,
943       SVt_PVHV, TRUE, NONV, HASARENA,
944       FIT_ARENA(0, sizeof(XPVHV)) },
945
946     { sizeof(XPVCV),
947       sizeof(XPVCV),
948       0,
949       SVt_PVCV, TRUE, NONV, HASARENA,
950       FIT_ARENA(0, sizeof(XPVCV)) },
951
952     { sizeof(XPVFM),
953       sizeof(XPVFM),
954       0,
955       SVt_PVFM, TRUE, NONV, NOARENA,
956       FIT_ARENA(20, sizeof(XPVFM)) },
957
958     { sizeof(XPVIO),
959       sizeof(XPVIO),
960       0,
961       SVt_PVIO, TRUE, NONV, HASARENA,
962       FIT_ARENA(24, sizeof(XPVIO)) },
963 };
964
965 #define new_body_allocated(sv_type)             \
966     (void *)((char *)S_new_body(aTHX_ sv_type)  \
967              - bodies_by_type[sv_type].offset)
968
969 /* return a thing to the free list */
970
971 #define del_body(thing, root)                           \
972     STMT_START {                                        \
973         void ** const thing_copy = (void **)thing;      \
974         *thing_copy = *root;                            \
975         *root = (void*)thing_copy;                      \
976     } STMT_END
977
978 #ifdef PURIFY
979
980 #define new_XNV()       safemalloc(sizeof(XPVNV))
981 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
982 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
983
984 #define del_XPVGV(p)    safefree(p)
985
986 #else /* !PURIFY */
987
988 #define new_XNV()       new_body_allocated(SVt_NV)
989 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
990 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
991
992 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
993                                  &PL_body_roots[SVt_PVGV])
994
995 #endif /* PURIFY */
996
997 /* no arena for you! */
998
999 #define new_NOARENA(details) \
1000         safemalloc((details)->body_size + (details)->offset)
1001 #define new_NOARENAZ(details) \
1002         safecalloc((details)->body_size + (details)->offset, 1)
1003
1004 void *
1005 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1006                   const size_t arena_size)
1007 {
1008     dVAR;
1009     void ** const root = &PL_body_roots[sv_type];
1010     struct arena_desc *adesc;
1011     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1012     unsigned int curr;
1013     char *start;
1014     const char *end;
1015     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1016 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1017     static bool done_sanity_check;
1018
1019     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1020      * variables like done_sanity_check. */
1021     if (!done_sanity_check) {
1022         unsigned int i = SVt_LAST;
1023
1024         done_sanity_check = TRUE;
1025
1026         while (i--)
1027             assert (bodies_by_type[i].type == i);
1028     }
1029 #endif
1030
1031     assert(arena_size);
1032
1033     /* may need new arena-set to hold new arena */
1034     if (!aroot || aroot->curr >= aroot->set_size) {
1035         struct arena_set *newroot;
1036         Newxz(newroot, 1, struct arena_set);
1037         newroot->set_size = ARENAS_PER_SET;
1038         newroot->next = aroot;
1039         aroot = newroot;
1040         PL_body_arenas = (void *) newroot;
1041         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1042     }
1043
1044     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1045     curr = aroot->curr++;
1046     adesc = &(aroot->set[curr]);
1047     assert(!adesc->arena);
1048     
1049     Newx(adesc->arena, good_arena_size, char);
1050     adesc->size = good_arena_size;
1051     adesc->utype = sv_type;
1052     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1053                           curr, (void*)adesc->arena, (UV)good_arena_size));
1054
1055     start = (char *) adesc->arena;
1056
1057     /* Get the address of the byte after the end of the last body we can fit.
1058        Remember, this is integer division:  */
1059     end = start + good_arena_size / body_size * body_size;
1060
1061     /* computed count doesn't reflect the 1st slot reservation */
1062 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1063     DEBUG_m(PerlIO_printf(Perl_debug_log,
1064                           "arena %p end %p arena-size %d (from %d) type %d "
1065                           "size %d ct %d\n",
1066                           (void*)start, (void*)end, (int)good_arena_size,
1067                           (int)arena_size, sv_type, (int)body_size,
1068                           (int)good_arena_size / (int)body_size));
1069 #else
1070     DEBUG_m(PerlIO_printf(Perl_debug_log,
1071                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1072                           (void*)start, (void*)end,
1073                           (int)arena_size, sv_type, (int)body_size,
1074                           (int)good_arena_size / (int)body_size));
1075 #endif
1076     *root = (void *)start;
1077
1078     while (1) {
1079         /* Where the next body would start:  */
1080         char * const next = start + body_size;
1081
1082         if (next >= end) {
1083             /* This is the last body:  */
1084             assert(next == end);
1085
1086             *(void **)start = 0;
1087             return *root;
1088         }
1089
1090         *(void**) start = (void *)next;
1091         start = next;
1092     }
1093 }
1094
1095 /* grab a new thing from the free list, allocating more if necessary.
1096    The inline version is used for speed in hot routines, and the
1097    function using it serves the rest (unless PURIFY).
1098 */
1099 #define new_body_inline(xpv, sv_type) \
1100     STMT_START { \
1101         void ** const r3wt = &PL_body_roots[sv_type]; \
1102         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1103           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1104                                              bodies_by_type[sv_type].body_size,\
1105                                              bodies_by_type[sv_type].arena_size)); \
1106         *(r3wt) = *(void**)(xpv); \
1107     } STMT_END
1108
1109 #ifndef PURIFY
1110
1111 STATIC void *
1112 S_new_body(pTHX_ const svtype sv_type)
1113 {
1114     dVAR;
1115     void *xpv;
1116     new_body_inline(xpv, sv_type);
1117     return xpv;
1118 }
1119
1120 #endif
1121
1122 static const struct body_details fake_rv =
1123     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1124
1125 /*
1126 =for apidoc sv_upgrade
1127
1128 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1129 SV, then copies across as much information as possible from the old body.
1130 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1131
1132 =cut
1133 */
1134
1135 void
1136 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1137 {
1138     dVAR;
1139     void*       old_body;
1140     void*       new_body;
1141     const svtype old_type = SvTYPE(sv);
1142     const struct body_details *new_type_details;
1143     const struct body_details *old_type_details
1144         = bodies_by_type + old_type;
1145     SV *referant = NULL;
1146
1147     PERL_ARGS_ASSERT_SV_UPGRADE;
1148
1149     if (old_type == new_type)
1150         return;
1151
1152     /* This clause was purposefully added ahead of the early return above to
1153        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1154        inference by Nick I-S that it would fix other troublesome cases. See
1155        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1156
1157        Given that shared hash key scalars are no longer PVIV, but PV, there is
1158        no longer need to unshare so as to free up the IVX slot for its proper
1159        purpose. So it's safe to move the early return earlier.  */
1160
1161     if (new_type != SVt_PV && SvIsCOW(sv)) {
1162         sv_force_normal_flags(sv, 0);
1163     }
1164
1165     old_body = SvANY(sv);
1166
1167     /* Copying structures onto other structures that have been neatly zeroed
1168        has a subtle gotcha. Consider XPVMG
1169
1170        +------+------+------+------+------+-------+-------+
1171        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1172        +------+------+------+------+------+-------+-------+
1173        0      4      8     12     16     20      24      28
1174
1175        where NVs are aligned to 8 bytes, so that sizeof that structure is
1176        actually 32 bytes long, with 4 bytes of padding at the end:
1177
1178        +------+------+------+------+------+-------+-------+------+
1179        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1180        +------+------+------+------+------+-------+-------+------+
1181        0      4      8     12     16     20      24      28     32
1182
1183        so what happens if you allocate memory for this structure:
1184
1185        +------+------+------+------+------+-------+-------+------+------+...
1186        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1187        +------+------+------+------+------+-------+-------+------+------+...
1188        0      4      8     12     16     20      24      28     32     36
1189
1190        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1191        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1192        started out as zero once, but it's quite possible that it isn't. So now,
1193        rather than a nicely zeroed GP, you have it pointing somewhere random.
1194        Bugs ensue.
1195
1196        (In fact, GP ends up pointing at a previous GP structure, because the
1197        principle cause of the padding in XPVMG getting garbage is a copy of
1198        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1199        this happens to be moot because XPVGV has been re-ordered, with GP
1200        no longer after STASH)
1201
1202        So we are careful and work out the size of used parts of all the
1203        structures.  */
1204
1205     switch (old_type) {
1206     case SVt_NULL:
1207         break;
1208     case SVt_IV:
1209         if (SvROK(sv)) {
1210             referant = SvRV(sv);
1211             old_type_details = &fake_rv;
1212             if (new_type == SVt_NV)
1213                 new_type = SVt_PVNV;
1214         } else {
1215             if (new_type < SVt_PVIV) {
1216                 new_type = (new_type == SVt_NV)
1217                     ? SVt_PVNV : SVt_PVIV;
1218             }
1219         }
1220         break;
1221     case SVt_NV:
1222         if (new_type < SVt_PVNV) {
1223             new_type = SVt_PVNV;
1224         }
1225         break;
1226     case SVt_PV:
1227         assert(new_type > SVt_PV);
1228         assert(SVt_IV < SVt_PV);
1229         assert(SVt_NV < SVt_PV);
1230         break;
1231     case SVt_PVIV:
1232         break;
1233     case SVt_PVNV:
1234         break;
1235     case SVt_PVMG:
1236         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1237            there's no way that it can be safely upgraded, because perl.c
1238            expects to Safefree(SvANY(PL_mess_sv))  */
1239         assert(sv != PL_mess_sv);
1240         /* This flag bit is used to mean other things in other scalar types.
1241            Given that it only has meaning inside the pad, it shouldn't be set
1242            on anything that can get upgraded.  */
1243         assert(!SvPAD_TYPED(sv));
1244         break;
1245     default:
1246         if (old_type_details->cant_upgrade)
1247             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1248                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1249     }
1250
1251     if (old_type > new_type)
1252         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1253                 (int)old_type, (int)new_type);
1254
1255     new_type_details = bodies_by_type + new_type;
1256
1257     SvFLAGS(sv) &= ~SVTYPEMASK;
1258     SvFLAGS(sv) |= new_type;
1259
1260     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1261        the return statements above will have triggered.  */
1262     assert (new_type != SVt_NULL);
1263     switch (new_type) {
1264     case SVt_IV:
1265         assert(old_type == SVt_NULL);
1266         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1267         SvIV_set(sv, 0);
1268         return;
1269     case SVt_NV:
1270         assert(old_type == SVt_NULL);
1271         SvANY(sv) = new_XNV();
1272         SvNV_set(sv, 0);
1273         return;
1274     case SVt_PVHV:
1275     case SVt_PVAV:
1276         assert(new_type_details->body_size);
1277
1278 #ifndef PURIFY  
1279         assert(new_type_details->arena);
1280         assert(new_type_details->arena_size);
1281         /* This points to the start of the allocated area.  */
1282         new_body_inline(new_body, new_type);
1283         Zero(new_body, new_type_details->body_size, char);
1284         new_body = ((char *)new_body) - new_type_details->offset;
1285 #else
1286         /* We always allocated the full length item with PURIFY. To do this
1287            we fake things so that arena is false for all 16 types..  */
1288         new_body = new_NOARENAZ(new_type_details);
1289 #endif
1290         SvANY(sv) = new_body;
1291         if (new_type == SVt_PVAV) {
1292             AvMAX(sv)   = -1;
1293             AvFILLp(sv) = -1;
1294             AvREAL_only(sv);
1295             if (old_type_details->body_size) {
1296                 AvALLOC(sv) = 0;
1297             } else {
1298                 /* It will have been zeroed when the new body was allocated.
1299                    Lets not write to it, in case it confuses a write-back
1300                    cache.  */
1301             }
1302         } else {
1303             assert(!SvOK(sv));
1304             SvOK_off(sv);
1305 #ifndef NODEFAULT_SHAREKEYS
1306             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1307 #endif
1308             HvMAX(sv) = 7; /* (start with 8 buckets) */
1309         }
1310
1311         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1312            The target created by newSVrv also is, and it can have magic.
1313            However, it never has SvPVX set.
1314         */
1315         if (old_type == SVt_IV) {
1316             assert(!SvROK(sv));
1317         } else if (old_type >= SVt_PV) {
1318             assert(SvPVX_const(sv) == 0);
1319         }
1320
1321         if (old_type >= SVt_PVMG) {
1322             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1323             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1324         } else {
1325             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1326         }
1327         break;
1328
1329
1330     case SVt_REGEXP:
1331         /* This ensures that SvTHINKFIRST(sv) is true, and hence that
1332            sv_force_normal_flags(sv) is called.  */
1333         SvFAKE_on(sv);
1334     case SVt_PVIV:
1335         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1336            no route from NV to PVIV, NOK can never be true  */
1337         assert(!SvNOKp(sv));
1338         assert(!SvNOK(sv));
1339     case SVt_PVIO:
1340     case SVt_PVFM:
1341     case SVt_PVGV:
1342     case SVt_PVCV:
1343     case SVt_PVLV:
1344     case SVt_PVMG:
1345     case SVt_PVNV:
1346     case SVt_PV:
1347
1348         assert(new_type_details->body_size);
1349         /* We always allocated the full length item with PURIFY. To do this
1350            we fake things so that arena is false for all 16 types..  */
1351         if(new_type_details->arena) {
1352             /* This points to the start of the allocated area.  */
1353             new_body_inline(new_body, new_type);
1354             Zero(new_body, new_type_details->body_size, char);
1355             new_body = ((char *)new_body) - new_type_details->offset;
1356         } else {
1357             new_body = new_NOARENAZ(new_type_details);
1358         }
1359         SvANY(sv) = new_body;
1360
1361         if (old_type_details->copy) {
1362             /* There is now the potential for an upgrade from something without
1363                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1364             int offset = old_type_details->offset;
1365             int length = old_type_details->copy;
1366
1367             if (new_type_details->offset > old_type_details->offset) {
1368                 const int difference
1369                     = new_type_details->offset - old_type_details->offset;
1370                 offset += difference;
1371                 length -= difference;
1372             }
1373             assert (length >= 0);
1374                 
1375             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1376                  char);
1377         }
1378
1379 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1380         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1381          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1382          * NV slot, but the new one does, then we need to initialise the
1383          * freshly created NV slot with whatever the correct bit pattern is
1384          * for 0.0  */
1385         if (old_type_details->zero_nv && !new_type_details->zero_nv
1386             && !isGV_with_GP(sv))
1387             SvNV_set(sv, 0);
1388 #endif
1389
1390         if (new_type == SVt_PVIO) {
1391             IO * const io = MUTABLE_IO(sv);
1392             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1393
1394             SvOBJECT_on(io);
1395             /* Clear the stashcache because a new IO could overrule a package
1396                name */
1397             hv_clear(PL_stashcache);
1398
1399             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1400             IoPAGE_LEN(sv) = 60;
1401         }
1402         if (old_type < SVt_PV) {
1403             /* referant will be NULL unless the old type was SVt_IV emulating
1404                SVt_RV */
1405             sv->sv_u.svu_rv = referant;
1406         }
1407         break;
1408     default:
1409         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1410                    (unsigned long)new_type);
1411     }
1412
1413     if (old_type > SVt_IV) {
1414 #ifdef PURIFY
1415         safefree(old_body);
1416 #else
1417         /* Note that there is an assumption that all bodies of types that
1418            can be upgraded came from arenas. Only the more complex non-
1419            upgradable types are allowed to be directly malloc()ed.  */
1420         assert(old_type_details->arena);
1421         del_body((void*)((char*)old_body + old_type_details->offset),
1422                  &PL_body_roots[old_type]);
1423 #endif
1424     }
1425 }
1426
1427 /*
1428 =for apidoc sv_backoff
1429
1430 Remove any string offset. You should normally use the C<SvOOK_off> macro
1431 wrapper instead.
1432
1433 =cut
1434 */
1435
1436 int
1437 Perl_sv_backoff(pTHX_ register SV *const sv)
1438 {
1439     STRLEN delta;
1440     const char * const s = SvPVX_const(sv);
1441
1442     PERL_ARGS_ASSERT_SV_BACKOFF;
1443     PERL_UNUSED_CONTEXT;
1444
1445     assert(SvOOK(sv));
1446     assert(SvTYPE(sv) != SVt_PVHV);
1447     assert(SvTYPE(sv) != SVt_PVAV);
1448
1449     SvOOK_offset(sv, delta);
1450     
1451     SvLEN_set(sv, SvLEN(sv) + delta);
1452     SvPV_set(sv, SvPVX(sv) - delta);
1453     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1454     SvFLAGS(sv) &= ~SVf_OOK;
1455     return 0;
1456 }
1457
1458 /*
1459 =for apidoc sv_grow
1460
1461 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1462 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1463 Use the C<SvGROW> wrapper instead.
1464
1465 =cut
1466 */
1467
1468 char *
1469 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1470 {
1471     register char *s;
1472
1473     PERL_ARGS_ASSERT_SV_GROW;
1474
1475     if (PL_madskills && newlen >= 0x100000) {
1476         PerlIO_printf(Perl_debug_log,
1477                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1478     }
1479 #ifdef HAS_64K_LIMIT
1480     if (newlen >= 0x10000) {
1481         PerlIO_printf(Perl_debug_log,
1482                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1483         my_exit(1);
1484     }
1485 #endif /* HAS_64K_LIMIT */
1486     if (SvROK(sv))
1487         sv_unref(sv);
1488     if (SvTYPE(sv) < SVt_PV) {
1489         sv_upgrade(sv, SVt_PV);
1490         s = SvPVX_mutable(sv);
1491     }
1492     else if (SvOOK(sv)) {       /* pv is offset? */
1493         sv_backoff(sv);
1494         s = SvPVX_mutable(sv);
1495         if (newlen > SvLEN(sv))
1496             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1497 #ifdef HAS_64K_LIMIT
1498         if (newlen >= 0x10000)
1499             newlen = 0xFFFF;
1500 #endif
1501     }
1502     else
1503         s = SvPVX_mutable(sv);
1504
1505     if (newlen > SvLEN(sv)) {           /* need more room? */
1506         STRLEN minlen = SvCUR(sv);
1507         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1508         if (newlen < minlen)
1509             newlen = minlen;
1510 #ifndef Perl_safesysmalloc_size
1511         newlen = PERL_STRLEN_ROUNDUP(newlen);
1512 #endif
1513         if (SvLEN(sv) && s) {
1514             s = (char*)saferealloc(s, newlen);
1515         }
1516         else {
1517             s = (char*)safemalloc(newlen);
1518             if (SvPVX_const(sv) && SvCUR(sv)) {
1519                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1520             }
1521         }
1522         SvPV_set(sv, s);
1523 #ifdef Perl_safesysmalloc_size
1524         /* Do this here, do it once, do it right, and then we will never get
1525            called back into sv_grow() unless there really is some growing
1526            needed.  */
1527         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1528 #else
1529         SvLEN_set(sv, newlen);
1530 #endif
1531     }
1532     return s;
1533 }
1534
1535 /*
1536 =for apidoc sv_setiv
1537
1538 Copies an integer into the given SV, upgrading first if necessary.
1539 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1540
1541 =cut
1542 */
1543
1544 void
1545 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1546 {
1547     dVAR;
1548
1549     PERL_ARGS_ASSERT_SV_SETIV;
1550
1551     SV_CHECK_THINKFIRST_COW_DROP(sv);
1552     switch (SvTYPE(sv)) {
1553     case SVt_NULL:
1554     case SVt_NV:
1555         sv_upgrade(sv, SVt_IV);
1556         break;
1557     case SVt_PV:
1558         sv_upgrade(sv, SVt_PVIV);
1559         break;
1560
1561     case SVt_PVGV:
1562         if (!isGV_with_GP(sv))
1563             break;
1564     case SVt_PVAV:
1565     case SVt_PVHV:
1566     case SVt_PVCV:
1567     case SVt_PVFM:
1568     case SVt_PVIO:
1569         /* diag_listed_as: Can't coerce %s to %s in %s */
1570         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1571                    OP_DESC(PL_op));
1572     default: NOOP;
1573     }
1574     (void)SvIOK_only(sv);                       /* validate number */
1575     SvIV_set(sv, i);
1576     SvTAINT(sv);
1577 }
1578
1579 /*
1580 =for apidoc sv_setiv_mg
1581
1582 Like C<sv_setiv>, but also handles 'set' magic.
1583
1584 =cut
1585 */
1586
1587 void
1588 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1589 {
1590     PERL_ARGS_ASSERT_SV_SETIV_MG;
1591
1592     sv_setiv(sv,i);
1593     SvSETMAGIC(sv);
1594 }
1595
1596 /*
1597 =for apidoc sv_setuv
1598
1599 Copies an unsigned integer into the given SV, upgrading first if necessary.
1600 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1601
1602 =cut
1603 */
1604
1605 void
1606 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1607 {
1608     PERL_ARGS_ASSERT_SV_SETUV;
1609
1610     /* With these two if statements:
1611        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1612
1613        without
1614        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1615
1616        If you wish to remove them, please benchmark to see what the effect is
1617     */
1618     if (u <= (UV)IV_MAX) {
1619        sv_setiv(sv, (IV)u);
1620        return;
1621     }
1622     sv_setiv(sv, 0);
1623     SvIsUV_on(sv);
1624     SvUV_set(sv, u);
1625 }
1626
1627 /*
1628 =for apidoc sv_setuv_mg
1629
1630 Like C<sv_setuv>, but also handles 'set' magic.
1631
1632 =cut
1633 */
1634
1635 void
1636 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1637 {
1638     PERL_ARGS_ASSERT_SV_SETUV_MG;
1639
1640     sv_setuv(sv,u);
1641     SvSETMAGIC(sv);
1642 }
1643
1644 /*
1645 =for apidoc sv_setnv
1646
1647 Copies a double into the given SV, upgrading first if necessary.
1648 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1649
1650 =cut
1651 */
1652
1653 void
1654 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1655 {
1656     dVAR;
1657
1658     PERL_ARGS_ASSERT_SV_SETNV;
1659
1660     SV_CHECK_THINKFIRST_COW_DROP(sv);
1661     switch (SvTYPE(sv)) {
1662     case SVt_NULL:
1663     case SVt_IV:
1664         sv_upgrade(sv, SVt_NV);
1665         break;
1666     case SVt_PV:
1667     case SVt_PVIV:
1668         sv_upgrade(sv, SVt_PVNV);
1669         break;
1670
1671     case SVt_PVGV:
1672         if (!isGV_with_GP(sv))
1673             break;
1674     case SVt_PVAV:
1675     case SVt_PVHV:
1676     case SVt_PVCV:
1677     case SVt_PVFM:
1678     case SVt_PVIO:
1679         /* diag_listed_as: Can't coerce %s to %s in %s */
1680         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1681                    OP_DESC(PL_op));
1682     default: NOOP;
1683     }
1684     SvNV_set(sv, num);
1685     (void)SvNOK_only(sv);                       /* validate number */
1686     SvTAINT(sv);
1687 }
1688
1689 /*
1690 =for apidoc sv_setnv_mg
1691
1692 Like C<sv_setnv>, but also handles 'set' magic.
1693
1694 =cut
1695 */
1696
1697 void
1698 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1699 {
1700     PERL_ARGS_ASSERT_SV_SETNV_MG;
1701
1702     sv_setnv(sv,num);
1703     SvSETMAGIC(sv);
1704 }
1705
1706 /* Print an "isn't numeric" warning, using a cleaned-up,
1707  * printable version of the offending string
1708  */
1709
1710 STATIC void
1711 S_not_a_number(pTHX_ SV *const sv)
1712 {
1713      dVAR;
1714      SV *dsv;
1715      char tmpbuf[64];
1716      const char *pv;
1717
1718      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1719
1720      if (DO_UTF8(sv)) {
1721           dsv = newSVpvs_flags("", SVs_TEMP);
1722           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1723      } else {
1724           char *d = tmpbuf;
1725           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1726           /* each *s can expand to 4 chars + "...\0",
1727              i.e. need room for 8 chars */
1728         
1729           const char *s = SvPVX_const(sv);
1730           const char * const end = s + SvCUR(sv);
1731           for ( ; s < end && d < limit; s++ ) {
1732                int ch = *s & 0xFF;
1733                if (ch & 128 && !isPRINT_LC(ch)) {
1734                     *d++ = 'M';
1735                     *d++ = '-';
1736                     ch &= 127;
1737                }
1738                if (ch == '\n') {
1739                     *d++ = '\\';
1740                     *d++ = 'n';
1741                }
1742                else if (ch == '\r') {
1743                     *d++ = '\\';
1744                     *d++ = 'r';
1745                }
1746                else if (ch == '\f') {
1747                     *d++ = '\\';
1748                     *d++ = 'f';
1749                }
1750                else if (ch == '\\') {
1751                     *d++ = '\\';
1752                     *d++ = '\\';
1753                }
1754                else if (ch == '\0') {
1755                     *d++ = '\\';
1756                     *d++ = '0';
1757                }
1758                else if (isPRINT_LC(ch))
1759                     *d++ = ch;
1760                else {
1761                     *d++ = '^';
1762                     *d++ = toCTRL(ch);
1763                }
1764           }
1765           if (s < end) {
1766                *d++ = '.';
1767                *d++ = '.';
1768                *d++ = '.';
1769           }
1770           *d = '\0';
1771           pv = tmpbuf;
1772     }
1773
1774     if (PL_op)
1775         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1776                     "Argument \"%s\" isn't numeric in %s", pv,
1777                     OP_DESC(PL_op));
1778     else
1779         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1780                     "Argument \"%s\" isn't numeric", pv);
1781 }
1782
1783 /*
1784 =for apidoc looks_like_number
1785
1786 Test if the content of an SV looks like a number (or is a number).
1787 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1788 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1789 ignored.
1790
1791 =cut
1792 */
1793
1794 I32
1795 Perl_looks_like_number(pTHX_ SV *const sv)
1796 {
1797     register const char *sbegin;
1798     STRLEN len;
1799
1800     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1801
1802     if (SvPOK(sv) || SvPOKp(sv)) {
1803         sbegin = SvPV_nomg_const(sv, len);
1804     }
1805     else
1806         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1807     return grok_number(sbegin, len, NULL);
1808 }
1809
1810 STATIC bool
1811 S_glob_2number(pTHX_ GV * const gv)
1812 {
1813     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1814     SV *const buffer = sv_newmortal();
1815
1816     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1817
1818     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1819        is on.  */
1820     SvFAKE_off(gv);
1821     gv_efullname3(buffer, gv, "*");
1822     SvFLAGS(gv) |= wasfake;
1823
1824     /* We know that all GVs stringify to something that is not-a-number,
1825         so no need to test that.  */
1826     if (ckWARN(WARN_NUMERIC))
1827         not_a_number(buffer);
1828     /* We just want something true to return, so that S_sv_2iuv_common
1829         can tail call us and return true.  */
1830     return TRUE;
1831 }
1832
1833 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1834    until proven guilty, assume that things are not that bad... */
1835
1836 /*
1837    NV_PRESERVES_UV:
1838
1839    As 64 bit platforms often have an NV that doesn't preserve all bits of
1840    an IV (an assumption perl has been based on to date) it becomes necessary
1841    to remove the assumption that the NV always carries enough precision to
1842    recreate the IV whenever needed, and that the NV is the canonical form.
1843    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1844    precision as a side effect of conversion (which would lead to insanity
1845    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1846    1) to distinguish between IV/UV/NV slots that have cached a valid
1847       conversion where precision was lost and IV/UV/NV slots that have a
1848       valid conversion which has lost no precision
1849    2) to ensure that if a numeric conversion to one form is requested that
1850       would lose precision, the precise conversion (or differently
1851       imprecise conversion) is also performed and cached, to prevent
1852       requests for different numeric formats on the same SV causing
1853       lossy conversion chains. (lossless conversion chains are perfectly
1854       acceptable (still))
1855
1856
1857    flags are used:
1858    SvIOKp is true if the IV slot contains a valid value
1859    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1860    SvNOKp is true if the NV slot contains a valid value
1861    SvNOK  is true only if the NV value is accurate
1862
1863    so
1864    while converting from PV to NV, check to see if converting that NV to an
1865    IV(or UV) would lose accuracy over a direct conversion from PV to
1866    IV(or UV). If it would, cache both conversions, return NV, but mark
1867    SV as IOK NOKp (ie not NOK).
1868
1869    While converting from PV to IV, check to see if converting that IV to an
1870    NV would lose accuracy over a direct conversion from PV to NV. If it
1871    would, cache both conversions, flag similarly.
1872
1873    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1874    correctly because if IV & NV were set NV *always* overruled.
1875    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1876    changes - now IV and NV together means that the two are interchangeable:
1877    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1878
1879    The benefit of this is that operations such as pp_add know that if
1880    SvIOK is true for both left and right operands, then integer addition
1881    can be used instead of floating point (for cases where the result won't
1882    overflow). Before, floating point was always used, which could lead to
1883    loss of precision compared with integer addition.
1884
1885    * making IV and NV equal status should make maths accurate on 64 bit
1886      platforms
1887    * may speed up maths somewhat if pp_add and friends start to use
1888      integers when possible instead of fp. (Hopefully the overhead in
1889      looking for SvIOK and checking for overflow will not outweigh the
1890      fp to integer speedup)
1891    * will slow down integer operations (callers of SvIV) on "inaccurate"
1892      values, as the change from SvIOK to SvIOKp will cause a call into
1893      sv_2iv each time rather than a macro access direct to the IV slot
1894    * should speed up number->string conversion on integers as IV is
1895      favoured when IV and NV are equally accurate
1896
1897    ####################################################################
1898    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1899    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1900    On the other hand, SvUOK is true iff UV.
1901    ####################################################################
1902
1903    Your mileage will vary depending your CPU's relative fp to integer
1904    performance ratio.
1905 */
1906
1907 #ifndef NV_PRESERVES_UV
1908 #  define IS_NUMBER_UNDERFLOW_IV 1
1909 #  define IS_NUMBER_UNDERFLOW_UV 2
1910 #  define IS_NUMBER_IV_AND_UV    2
1911 #  define IS_NUMBER_OVERFLOW_IV  4
1912 #  define IS_NUMBER_OVERFLOW_UV  5
1913
1914 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1915
1916 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1917 STATIC int
1918 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1919 #  ifdef DEBUGGING
1920                        , I32 numtype
1921 #  endif
1922                        )
1923 {
1924     dVAR;
1925
1926     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1927
1928     DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%"UVxf" NV=%"NVgf" inttype=%"UVXf"\n", SvPVX_const(sv), SvIVX(sv), SvNVX(sv), (UV)numtype));
1929     if (SvNVX(sv) < (NV)IV_MIN) {
1930         (void)SvIOKp_on(sv);
1931         (void)SvNOK_on(sv);
1932         SvIV_set(sv, IV_MIN);
1933         return IS_NUMBER_UNDERFLOW_IV;
1934     }
1935     if (SvNVX(sv) > (NV)UV_MAX) {
1936         (void)SvIOKp_on(sv);
1937         (void)SvNOK_on(sv);
1938         SvIsUV_on(sv);
1939         SvUV_set(sv, UV_MAX);
1940         return IS_NUMBER_OVERFLOW_UV;
1941     }
1942     (void)SvIOKp_on(sv);
1943     (void)SvNOK_on(sv);
1944     /* Can't use strtol etc to convert this string.  (See truth table in
1945        sv_2iv  */
1946     if (SvNVX(sv) <= (UV)IV_MAX) {
1947         SvIV_set(sv, I_V(SvNVX(sv)));
1948         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1949             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1950         } else {
1951             /* Integer is imprecise. NOK, IOKp */
1952         }
1953         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1954     }
1955     SvIsUV_on(sv);
1956     SvUV_set(sv, U_V(SvNVX(sv)));
1957     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1958         if (SvUVX(sv) == UV_MAX) {
1959             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1960                possibly be preserved by NV. Hence, it must be overflow.
1961                NOK, IOKp */
1962             return IS_NUMBER_OVERFLOW_UV;
1963         }
1964         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1965     } else {
1966         /* Integer is imprecise. NOK, IOKp */
1967     }
1968     return IS_NUMBER_OVERFLOW_IV;
1969 }
1970 #endif /* !NV_PRESERVES_UV*/
1971
1972 STATIC bool
1973 S_sv_2iuv_common(pTHX_ SV *const sv)
1974 {
1975     dVAR;
1976
1977     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1978
1979     if (SvNOKp(sv)) {
1980         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1981          * without also getting a cached IV/UV from it at the same time
1982          * (ie PV->NV conversion should detect loss of accuracy and cache
1983          * IV or UV at same time to avoid this. */
1984         /* IV-over-UV optimisation - choose to cache IV if possible */
1985
1986         if (SvTYPE(sv) == SVt_NV)
1987             sv_upgrade(sv, SVt_PVNV);
1988
1989         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
1990         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1991            certainly cast into the IV range at IV_MAX, whereas the correct
1992            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1993            cases go to UV */
1994 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1995         if (Perl_isnan(SvNVX(sv))) {
1996             SvUV_set(sv, 0);
1997             SvIsUV_on(sv);
1998             return FALSE;
1999         }
2000 #endif
2001         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2002             SvIV_set(sv, I_V(SvNVX(sv)));
2003             if (SvNVX(sv) == (NV) SvIVX(sv)
2004 #ifndef NV_PRESERVES_UV
2005                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2006                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2007                 /* Don't flag it as "accurately an integer" if the number
2008                    came from a (by definition imprecise) NV operation, and
2009                    we're outside the range of NV integer precision */
2010 #endif
2011                 ) {
2012                 if (SvNOK(sv))
2013                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2014                 else {
2015                     /* scalar has trailing garbage, eg "42a" */
2016                 }
2017                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2018                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2019                                       PTR2UV(sv),
2020                                       SvNVX(sv),
2021                                       SvIVX(sv)));
2022
2023             } else {
2024                 /* IV not precise.  No need to convert from PV, as NV
2025                    conversion would already have cached IV if it detected
2026                    that PV->IV would be better than PV->NV->IV
2027                    flags already correct - don't set public IOK.  */
2028                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2029                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2030                                       PTR2UV(sv),
2031                                       SvNVX(sv),
2032                                       SvIVX(sv)));
2033             }
2034             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2035                but the cast (NV)IV_MIN rounds to a the value less (more
2036                negative) than IV_MIN which happens to be equal to SvNVX ??
2037                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2038                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2039                (NV)UVX == NVX are both true, but the values differ. :-(
2040                Hopefully for 2s complement IV_MIN is something like
2041                0x8000000000000000 which will be exact. NWC */
2042         }
2043         else {
2044             SvUV_set(sv, U_V(SvNVX(sv)));
2045             if (
2046                 (SvNVX(sv) == (NV) SvUVX(sv))
2047 #ifndef  NV_PRESERVES_UV
2048                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2049                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2050                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2051                 /* Don't flag it as "accurately an integer" if the number
2052                    came from a (by definition imprecise) NV operation, and
2053                    we're outside the range of NV integer precision */
2054 #endif
2055                 && SvNOK(sv)
2056                 )
2057                 SvIOK_on(sv);
2058             SvIsUV_on(sv);
2059             DEBUG_c(PerlIO_printf(Perl_debug_log,
2060                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2061                                   PTR2UV(sv),
2062                                   SvUVX(sv),
2063                                   SvUVX(sv)));
2064         }
2065     }
2066     else if (SvPOKp(sv) && SvLEN(sv)) {
2067         UV value;
2068         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2069         /* We want to avoid a possible problem when we cache an IV/ a UV which
2070            may be later translated to an NV, and the resulting NV is not
2071            the same as the direct translation of the initial string
2072            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2073            be careful to ensure that the value with the .456 is around if the
2074            NV value is requested in the future).
2075         
2076            This means that if we cache such an IV/a UV, we need to cache the
2077            NV as well.  Moreover, we trade speed for space, and do not
2078            cache the NV if we are sure it's not needed.
2079          */
2080
2081         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2082         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2083              == IS_NUMBER_IN_UV) {
2084             /* It's definitely an integer, only upgrade to PVIV */
2085             if (SvTYPE(sv) < SVt_PVIV)
2086                 sv_upgrade(sv, SVt_PVIV);
2087             (void)SvIOK_on(sv);
2088         } else if (SvTYPE(sv) < SVt_PVNV)
2089             sv_upgrade(sv, SVt_PVNV);
2090
2091         /* If NVs preserve UVs then we only use the UV value if we know that
2092            we aren't going to call atof() below. If NVs don't preserve UVs
2093            then the value returned may have more precision than atof() will
2094            return, even though value isn't perfectly accurate.  */
2095         if ((numtype & (IS_NUMBER_IN_UV
2096 #ifdef NV_PRESERVES_UV
2097                         | IS_NUMBER_NOT_INT
2098 #endif
2099             )) == IS_NUMBER_IN_UV) {
2100             /* This won't turn off the public IOK flag if it was set above  */
2101             (void)SvIOKp_on(sv);
2102
2103             if (!(numtype & IS_NUMBER_NEG)) {
2104                 /* positive */;
2105                 if (value <= (UV)IV_MAX) {
2106                     SvIV_set(sv, (IV)value);
2107                 } else {
2108                     /* it didn't overflow, and it was positive. */
2109                     SvUV_set(sv, value);
2110                     SvIsUV_on(sv);
2111                 }
2112             } else {
2113                 /* 2s complement assumption  */
2114                 if (value <= (UV)IV_MIN) {
2115                     SvIV_set(sv, -(IV)value);
2116                 } else {
2117                     /* Too negative for an IV.  This is a double upgrade, but
2118                        I'm assuming it will be rare.  */
2119                     if (SvTYPE(sv) < SVt_PVNV)
2120                         sv_upgrade(sv, SVt_PVNV);
2121                     SvNOK_on(sv);
2122                     SvIOK_off(sv);
2123                     SvIOKp_on(sv);
2124                     SvNV_set(sv, -(NV)value);
2125                     SvIV_set(sv, IV_MIN);
2126                 }
2127             }
2128         }
2129         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2130            will be in the previous block to set the IV slot, and the next
2131            block to set the NV slot.  So no else here.  */
2132         
2133         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2134             != IS_NUMBER_IN_UV) {
2135             /* It wasn't an (integer that doesn't overflow the UV). */
2136             SvNV_set(sv, Atof(SvPVX_const(sv)));
2137
2138             if (! numtype && ckWARN(WARN_NUMERIC))
2139                 not_a_number(sv);
2140
2141 #if defined(USE_LONG_DOUBLE)
2142             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2143                                   PTR2UV(sv), SvNVX(sv)));
2144 #else
2145             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2146                                   PTR2UV(sv), SvNVX(sv)));
2147 #endif
2148
2149 #ifdef NV_PRESERVES_UV
2150             (void)SvIOKp_on(sv);
2151             (void)SvNOK_on(sv);
2152             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2153                 SvIV_set(sv, I_V(SvNVX(sv)));
2154                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2155                     SvIOK_on(sv);
2156                 } else {
2157                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2158                 }
2159                 /* UV will not work better than IV */
2160             } else {
2161                 if (SvNVX(sv) > (NV)UV_MAX) {
2162                     SvIsUV_on(sv);
2163                     /* Integer is inaccurate. NOK, IOKp, is UV */
2164                     SvUV_set(sv, UV_MAX);
2165                 } else {
2166                     SvUV_set(sv, U_V(SvNVX(sv)));
2167                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2168                        NV preservse UV so can do correct comparison.  */
2169                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2170                         SvIOK_on(sv);
2171                     } else {
2172                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2173                     }
2174                 }
2175                 SvIsUV_on(sv);
2176             }
2177 #else /* NV_PRESERVES_UV */
2178             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2179                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2180                 /* The IV/UV slot will have been set from value returned by
2181                    grok_number above.  The NV slot has just been set using
2182                    Atof.  */
2183                 SvNOK_on(sv);
2184                 assert (SvIOKp(sv));
2185             } else {
2186                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2187                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2188                     /* Small enough to preserve all bits. */
2189                     (void)SvIOKp_on(sv);
2190                     SvNOK_on(sv);
2191                     SvIV_set(sv, I_V(SvNVX(sv)));
2192                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2193                         SvIOK_on(sv);
2194                     /* Assumption: first non-preserved integer is < IV_MAX,
2195                        this NV is in the preserved range, therefore: */
2196                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2197                           < (UV)IV_MAX)) {
2198                         Perl_croak(aTHX_ "sv_2iv assumed (U_V(fabs((double)SvNVX(sv))) < (UV)IV_MAX) but SvNVX(sv)=%"NVgf" U_V is 0x%"UVxf", IV_MAX is 0x%"UVxf"\n", SvNVX(sv), U_V(SvNVX(sv)), (UV)IV_MAX);
2199                     }
2200                 } else {
2201                     /* IN_UV NOT_INT
2202                          0      0       already failed to read UV.
2203                          0      1       already failed to read UV.
2204                          1      0       you won't get here in this case. IV/UV
2205                                         slot set, public IOK, Atof() unneeded.
2206                          1      1       already read UV.
2207                        so there's no point in sv_2iuv_non_preserve() attempting
2208                        to use atol, strtol, strtoul etc.  */
2209 #  ifdef DEBUGGING
2210                     sv_2iuv_non_preserve (sv, numtype);
2211 #  else
2212                     sv_2iuv_non_preserve (sv);
2213 #  endif
2214                 }
2215             }
2216 #endif /* NV_PRESERVES_UV */
2217         /* It might be more code efficient to go through the entire logic above
2218            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2219            gets complex and potentially buggy, so more programmer efficient
2220            to do it this way, by turning off the public flags:  */
2221         if (!numtype)
2222             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2223         }
2224     }
2225     else  {
2226         if (isGV_with_GP(sv))
2227             return glob_2number(MUTABLE_GV(sv));
2228
2229         if (!SvPADTMP(sv)) {
2230             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2231                 report_uninit(sv);
2232         }
2233         if (SvTYPE(sv) < SVt_IV)
2234             /* Typically the caller expects that sv_any is not NULL now.  */
2235             sv_upgrade(sv, SVt_IV);
2236         /* Return 0 from the caller.  */
2237         return TRUE;
2238     }
2239     return FALSE;
2240 }
2241
2242 /*
2243 =for apidoc sv_2iv_flags
2244
2245 Return the integer value of an SV, doing any necessary string
2246 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2247 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2248
2249 =cut
2250 */
2251
2252 IV
2253 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2254 {
2255     dVAR;
2256     if (!sv)
2257         return 0;
2258     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2259         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2260            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2261            In practice they are extremely unlikely to actually get anywhere
2262            accessible by user Perl code - the only way that I'm aware of is when
2263            a constant subroutine which is used as the second argument to index.
2264         */
2265         if (flags & SV_GMAGIC)
2266             mg_get(sv);
2267         if (SvIOKp(sv))
2268             return SvIVX(sv);
2269         if (SvNOKp(sv)) {
2270             return I_V(SvNVX(sv));
2271         }
2272         if (SvPOKp(sv) && SvLEN(sv)) {
2273             UV value;
2274             const int numtype
2275                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2276
2277             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2278                 == IS_NUMBER_IN_UV) {
2279                 /* It's definitely an integer */
2280                 if (numtype & IS_NUMBER_NEG) {
2281                     if (value < (UV)IV_MIN)
2282                         return -(IV)value;
2283                 } else {
2284                     if (value < (UV)IV_MAX)
2285                         return (IV)value;
2286                 }
2287             }
2288             if (!numtype) {
2289                 if (ckWARN(WARN_NUMERIC))
2290                     not_a_number(sv);
2291             }
2292             return I_V(Atof(SvPVX_const(sv)));
2293         }
2294         if (SvROK(sv)) {
2295             goto return_rok;
2296         }
2297         assert(SvTYPE(sv) >= SVt_PVMG);
2298         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2299     } else if (SvTHINKFIRST(sv)) {
2300         if (SvROK(sv)) {
2301         return_rok:
2302             if (SvAMAGIC(sv)) {
2303                 SV * tmpstr;
2304                 if (flags & SV_SKIP_OVERLOAD)
2305                     return 0;
2306                 tmpstr = AMG_CALLunary(sv, numer_amg);
2307                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2308                     return SvIV(tmpstr);
2309                 }
2310             }
2311             return PTR2IV(SvRV(sv));
2312         }
2313         if (SvIsCOW(sv)) {
2314             sv_force_normal_flags(sv, 0);
2315         }
2316         if (SvREADONLY(sv) && !SvOK(sv)) {
2317             if (ckWARN(WARN_UNINITIALIZED))
2318                 report_uninit(sv);
2319             return 0;
2320         }
2321     }
2322     if (!SvIOKp(sv)) {
2323         if (S_sv_2iuv_common(aTHX_ sv))
2324             return 0;
2325     }
2326     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2327         PTR2UV(sv),SvIVX(sv)));
2328     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2329 }
2330
2331 /*
2332 =for apidoc sv_2uv_flags
2333
2334 Return the unsigned integer value of an SV, doing any necessary string
2335 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2336 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2337
2338 =cut
2339 */
2340
2341 UV
2342 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2343 {
2344     dVAR;
2345     if (!sv)
2346         return 0;
2347     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2348         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2349            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  */
2350         if (flags & SV_GMAGIC)
2351             mg_get(sv);
2352         if (SvIOKp(sv))
2353             return SvUVX(sv);
2354         if (SvNOKp(sv))
2355             return U_V(SvNVX(sv));
2356         if (SvPOKp(sv) && SvLEN(sv)) {
2357             UV value;
2358             const int numtype
2359                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2360
2361             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2362                 == IS_NUMBER_IN_UV) {
2363                 /* It's definitely an integer */
2364                 if (!(numtype & IS_NUMBER_NEG))
2365                     return value;
2366             }
2367             if (!numtype) {
2368                 if (ckWARN(WARN_NUMERIC))
2369                     not_a_number(sv);
2370             }
2371             return U_V(Atof(SvPVX_const(sv)));
2372         }
2373         if (SvROK(sv)) {
2374             goto return_rok;
2375         }
2376         assert(SvTYPE(sv) >= SVt_PVMG);
2377         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2378     } else if (SvTHINKFIRST(sv)) {
2379         if (SvROK(sv)) {
2380         return_rok:
2381             if (SvAMAGIC(sv)) {
2382                 SV *tmpstr;
2383                 if (flags & SV_SKIP_OVERLOAD)
2384                     return 0;
2385                 tmpstr = AMG_CALLunary(sv, numer_amg);
2386                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2387                     return SvUV(tmpstr);
2388                 }
2389             }
2390             return PTR2UV(SvRV(sv));
2391         }
2392         if (SvIsCOW(sv)) {
2393             sv_force_normal_flags(sv, 0);
2394         }
2395         if (SvREADONLY(sv) && !SvOK(sv)) {
2396             if (ckWARN(WARN_UNINITIALIZED))
2397                 report_uninit(sv);
2398             return 0;
2399         }
2400     }
2401     if (!SvIOKp(sv)) {
2402         if (S_sv_2iuv_common(aTHX_ sv))
2403             return 0;
2404     }
2405
2406     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2407                           PTR2UV(sv),SvUVX(sv)));
2408     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2409 }
2410
2411 /*
2412 =for apidoc sv_2nv_flags
2413
2414 Return the num value of an SV, doing any necessary string or integer
2415 conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2416 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2417
2418 =cut
2419 */
2420
2421 NV
2422 Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
2423 {
2424     dVAR;
2425     if (!sv)
2426         return 0.0;
2427     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2428         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2429            the same flag bit as SVf_IVisUV, so must not let them cache NVs.  */
2430         if (flags & SV_GMAGIC)
2431             mg_get(sv);
2432         if (SvNOKp(sv))
2433             return SvNVX(sv);
2434         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2435             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2436                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2437                 not_a_number(sv);
2438             return Atof(SvPVX_const(sv));
2439         }
2440         if (SvIOKp(sv)) {
2441             if (SvIsUV(sv))
2442                 return (NV)SvUVX(sv);
2443             else
2444                 return (NV)SvIVX(sv);
2445         }
2446         if (SvROK(sv)) {
2447             goto return_rok;
2448         }
2449         assert(SvTYPE(sv) >= SVt_PVMG);
2450         /* This falls through to the report_uninit near the end of the
2451            function. */
2452     } else if (SvTHINKFIRST(sv)) {
2453         if (SvROK(sv)) {
2454         return_rok:
2455             if (SvAMAGIC(sv)) {
2456                 SV *tmpstr;
2457                 if (flags & SV_SKIP_OVERLOAD)
2458                     return 0;
2459                 tmpstr = AMG_CALLunary(sv, numer_amg);
2460                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2461                     return SvNV(tmpstr);
2462                 }
2463             }
2464             return PTR2NV(SvRV(sv));
2465         }
2466         if (SvIsCOW(sv)) {
2467             sv_force_normal_flags(sv, 0);
2468         }
2469         if (SvREADONLY(sv) && !SvOK(sv)) {
2470             if (ckWARN(WARN_UNINITIALIZED))
2471                 report_uninit(sv);
2472             return 0.0;
2473         }
2474     }
2475     if (SvTYPE(sv) < SVt_NV) {
2476         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2477         sv_upgrade(sv, SVt_NV);
2478 #ifdef USE_LONG_DOUBLE
2479         DEBUG_c({
2480             STORE_NUMERIC_LOCAL_SET_STANDARD();
2481             PerlIO_printf(Perl_debug_log,
2482                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2483                           PTR2UV(sv), SvNVX(sv));
2484             RESTORE_NUMERIC_LOCAL();
2485         });
2486 #else
2487         DEBUG_c({
2488             STORE_NUMERIC_LOCAL_SET_STANDARD();
2489             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2490                           PTR2UV(sv), SvNVX(sv));
2491             RESTORE_NUMERIC_LOCAL();
2492         });
2493 #endif
2494     }
2495     else if (SvTYPE(sv) < SVt_PVNV)
2496         sv_upgrade(sv, SVt_PVNV);
2497     if (SvNOKp(sv)) {
2498         return SvNVX(sv);
2499     }
2500     if (SvIOKp(sv)) {
2501         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2502 #ifdef NV_PRESERVES_UV
2503         if (SvIOK(sv))
2504             SvNOK_on(sv);
2505         else
2506             SvNOKp_on(sv);
2507 #else
2508         /* Only set the public NV OK flag if this NV preserves the IV  */
2509         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2510         if (SvIOK(sv) &&
2511             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2512                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2513             SvNOK_on(sv);
2514         else
2515             SvNOKp_on(sv);
2516 #endif
2517     }
2518     else if (SvPOKp(sv) && SvLEN(sv)) {
2519         UV value;
2520         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2521         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2522             not_a_number(sv);
2523 #ifdef NV_PRESERVES_UV
2524         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2525             == IS_NUMBER_IN_UV) {
2526             /* It's definitely an integer */
2527             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2528         } else
2529             SvNV_set(sv, Atof(SvPVX_const(sv)));
2530         if (numtype)
2531             SvNOK_on(sv);
2532         else
2533             SvNOKp_on(sv);
2534 #else
2535         SvNV_set(sv, Atof(SvPVX_const(sv)));
2536         /* Only set the public NV OK flag if this NV preserves the value in
2537            the PV at least as well as an IV/UV would.
2538            Not sure how to do this 100% reliably. */
2539         /* if that shift count is out of range then Configure's test is
2540            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2541            UV_BITS */
2542         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2543             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2544             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2545         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2546             /* Can't use strtol etc to convert this string, so don't try.
2547                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2548             SvNOK_on(sv);
2549         } else {
2550             /* value has been set.  It may not be precise.  */
2551             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2552                 /* 2s complement assumption for (UV)IV_MIN  */
2553                 SvNOK_on(sv); /* Integer is too negative.  */
2554             } else {
2555                 SvNOKp_on(sv);
2556                 SvIOKp_on(sv);
2557
2558                 if (numtype & IS_NUMBER_NEG) {
2559                     SvIV_set(sv, -(IV)value);
2560                 } else if (value <= (UV)IV_MAX) {
2561                     SvIV_set(sv, (IV)value);
2562                 } else {
2563                     SvUV_set(sv, value);
2564                     SvIsUV_on(sv);
2565                 }
2566
2567                 if (numtype & IS_NUMBER_NOT_INT) {
2568                     /* I believe that even if the original PV had decimals,
2569                        they are lost beyond the limit of the FP precision.
2570                        However, neither is canonical, so both only get p
2571                        flags.  NWC, 2000/11/25 */
2572                     /* Both already have p flags, so do nothing */
2573                 } else {
2574                     const NV nv = SvNVX(sv);
2575                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2576                         if (SvIVX(sv) == I_V(nv)) {
2577                             SvNOK_on(sv);
2578                         } else {
2579                             /* It had no "." so it must be integer.  */
2580                         }
2581                         SvIOK_on(sv);
2582                     } else {
2583                         /* between IV_MAX and NV(UV_MAX).
2584                            Could be slightly > UV_MAX */
2585
2586                         if (numtype & IS_NUMBER_NOT_INT) {
2587                             /* UV and NV both imprecise.  */
2588                         } else {
2589                             const UV nv_as_uv = U_V(nv);
2590
2591                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2592                                 SvNOK_on(sv);
2593                             }
2594                             SvIOK_on(sv);
2595                         }
2596                     }
2597                 }
2598             }
2599         }
2600         /* It might be more code efficient to go through the entire logic above
2601            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2602            gets complex and potentially buggy, so more programmer efficient
2603            to do it this way, by turning off the public flags:  */
2604         if (!numtype)
2605             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2606 #endif /* NV_PRESERVES_UV */
2607     }
2608     else  {
2609         if (isGV_with_GP(sv)) {
2610             glob_2number(MUTABLE_GV(sv));
2611             return 0.0;
2612         }
2613
2614         if (!PL_localizing && !SvPADTMP(sv) && ckWARN(WARN_UNINITIALIZED))
2615             report_uninit(sv);
2616         assert (SvTYPE(sv) >= SVt_NV);
2617         /* Typically the caller expects that sv_any is not NULL now.  */
2618         /* XXX Ilya implies that this is a bug in callers that assume this
2619            and ideally should be fixed.  */
2620         return 0.0;
2621     }
2622 #if defined(USE_LONG_DOUBLE)
2623     DEBUG_c({
2624         STORE_NUMERIC_LOCAL_SET_STANDARD();
2625         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2626                       PTR2UV(sv), SvNVX(sv));
2627         RESTORE_NUMERIC_LOCAL();
2628     });
2629 #else
2630     DEBUG_c({
2631         STORE_NUMERIC_LOCAL_SET_STANDARD();
2632         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2633                       PTR2UV(sv), SvNVX(sv));
2634         RESTORE_NUMERIC_LOCAL();
2635     });
2636 #endif
2637     return SvNVX(sv);
2638 }
2639
2640 /*
2641 =for apidoc sv_2num
2642
2643 Return an SV with the numeric value of the source SV, doing any necessary
2644 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2645 access this function.
2646
2647 =cut
2648 */
2649
2650 SV *
2651 Perl_sv_2num(pTHX_ register SV *const sv)
2652 {
2653     PERL_ARGS_ASSERT_SV_2NUM;
2654
2655     if (!SvROK(sv))
2656         return sv;
2657     if (SvAMAGIC(sv)) {
2658         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2659         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2660         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2661             return sv_2num(tmpsv);
2662     }
2663     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2664 }
2665
2666 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2667  * UV as a string towards the end of buf, and return pointers to start and
2668  * end of it.
2669  *
2670  * We assume that buf is at least TYPE_CHARS(UV) long.
2671  */
2672
2673 static char *
2674 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2675 {
2676     char *ptr = buf + TYPE_CHARS(UV);
2677     char * const ebuf = ptr;
2678     int sign;
2679
2680     PERL_ARGS_ASSERT_UIV_2BUF;
2681
2682     if (is_uv)
2683         sign = 0;
2684     else if (iv >= 0) {
2685         uv = iv;
2686         sign = 0;
2687     } else {
2688         uv = -iv;
2689         sign = 1;
2690     }
2691     do {
2692         *--ptr = '0' + (char)(uv % 10);
2693     } while (uv /= 10);
2694     if (sign)
2695         *--ptr = '-';
2696     *peob = ebuf;
2697     return ptr;
2698 }
2699
2700 /*
2701 =for apidoc sv_2pv_flags
2702
2703 Returns a pointer to the string value of an SV, and sets *lp to its length.
2704 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2705 if necessary.
2706 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2707 usually end up here too.
2708
2709 =cut
2710 */
2711
2712 char *
2713 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2714 {
2715     dVAR;
2716     register char *s;
2717
2718     if (!sv) {
2719         if (lp)
2720             *lp = 0;
2721         return (char *)"";
2722     }
2723     if (SvGMAGICAL(sv)) {
2724         if (flags & SV_GMAGIC)
2725             mg_get(sv);
2726         if (SvPOKp(sv)) {
2727             if (lp)
2728                 *lp = SvCUR(sv);
2729             if (flags & SV_MUTABLE_RETURN)
2730                 return SvPVX_mutable(sv);
2731             if (flags & SV_CONST_RETURN)
2732                 return (char *)SvPVX_const(sv);
2733             return SvPVX(sv);
2734         }
2735         if (SvIOKp(sv) || SvNOKp(sv)) {
2736             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2737             STRLEN len;
2738
2739             if (SvIOKp(sv)) {
2740                 len = SvIsUV(sv)
2741                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2742                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2743             } else if(SvNVX(sv) == 0.0) {
2744                     tbuf[0] = '0';
2745                     tbuf[1] = 0;
2746                     len = 1;
2747             } else {
2748                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2749                 len = strlen(tbuf);
2750             }
2751             assert(!SvROK(sv));
2752             {
2753                 dVAR;
2754
2755                 SvUPGRADE(sv, SVt_PV);
2756                 if (lp)
2757                     *lp = len;
2758                 s = SvGROW_mutable(sv, len + 1);
2759                 SvCUR_set(sv, len);
2760                 SvPOKp_on(sv);
2761                 return (char*)memcpy(s, tbuf, len + 1);
2762             }
2763         }
2764         if (SvROK(sv)) {
2765             goto return_rok;
2766         }
2767         assert(SvTYPE(sv) >= SVt_PVMG);
2768         /* This falls through to the report_uninit near the end of the
2769            function. */
2770     } else if (SvTHINKFIRST(sv)) {
2771         if (SvROK(sv)) {
2772         return_rok:
2773             if (SvAMAGIC(sv)) {
2774                 SV *tmpstr;
2775                 if (flags & SV_SKIP_OVERLOAD)
2776                     return NULL;
2777                 tmpstr = AMG_CALLunary(sv, string_amg);
2778                 TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2779                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2780                     /* Unwrap this:  */
2781                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2782                      */
2783
2784                     char *pv;
2785                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2786                         if (flags & SV_CONST_RETURN) {
2787                             pv = (char *) SvPVX_const(tmpstr);
2788                         } else {
2789                             pv = (flags & SV_MUTABLE_RETURN)
2790                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2791                         }
2792                         if (lp)
2793                             *lp = SvCUR(tmpstr);
2794                     } else {
2795                         pv = sv_2pv_flags(tmpstr, lp, flags);
2796                     }
2797                     if (SvUTF8(tmpstr))
2798                         SvUTF8_on(sv);
2799                     else
2800                         SvUTF8_off(sv);
2801                     return pv;
2802                 }
2803             }
2804             {
2805                 STRLEN len;
2806                 char *retval;
2807                 char *buffer;
2808                 SV *const referent = SvRV(sv);
2809
2810                 if (!referent) {
2811                     len = 7;
2812                     retval = buffer = savepvn("NULLREF", len);
2813                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2814                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2815                     I32 seen_evals = 0;
2816
2817                     assert(re);
2818                         
2819                     /* If the regex is UTF-8 we want the containing scalar to
2820                        have an UTF-8 flag too */
2821                     if (RX_UTF8(re))
2822                         SvUTF8_on(sv);
2823                     else
2824                         SvUTF8_off(sv); 
2825
2826                     if ((seen_evals = RX_SEEN_EVALS(re)))
2827                         PL_reginterp_cnt += seen_evals;
2828
2829                     if (lp)
2830                         *lp = RX_WRAPLEN(re);
2831  
2832                     return RX_WRAPPED(re);
2833                 } else {
2834                     const char *const typestr = sv_reftype(referent, 0);
2835                     const STRLEN typelen = strlen(typestr);
2836                     UV addr = PTR2UV(referent);
2837                     const char *stashname = NULL;
2838                     STRLEN stashnamelen = 0; /* hush, gcc */
2839                     const char *buffer_end;
2840
2841                     if (SvOBJECT(referent)) {
2842                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2843
2844                         if (name) {
2845                             stashname = HEK_KEY(name);
2846                             stashnamelen = HEK_LEN(name);
2847
2848                             if (HEK_UTF8(name)) {
2849                                 SvUTF8_on(sv);
2850                             } else {
2851                                 SvUTF8_off(sv);
2852                             }
2853                         } else {
2854                             stashname = "__ANON__";
2855                             stashnamelen = 8;
2856                         }
2857                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2858                             + 2 * sizeof(UV) + 2 /* )\0 */;
2859                     } else {
2860                         len = typelen + 3 /* (0x */
2861                             + 2 * sizeof(UV) + 2 /* )\0 */;
2862                     }
2863
2864                     Newx(buffer, len, char);
2865                     buffer_end = retval = buffer + len;
2866
2867                     /* Working backwards  */
2868                     *--retval = '\0';
2869                     *--retval = ')';
2870                     do {
2871                         *--retval = PL_hexdigit[addr & 15];
2872                     } while (addr >>= 4);
2873                     *--retval = 'x';
2874                     *--retval = '0';
2875                     *--retval = '(';
2876
2877                     retval -= typelen;
2878                     memcpy(retval, typestr, typelen);
2879
2880                     if (stashname) {
2881                         *--retval = '=';
2882                         retval -= stashnamelen;
2883                         memcpy(retval, stashname, stashnamelen);
2884                     }
2885                     /* retval may not necessarily have reached the start of the
2886                        buffer here.  */
2887                     assert (retval >= buffer);
2888
2889                     len = buffer_end - retval - 1; /* -1 for that \0  */
2890                 }
2891                 if (lp)
2892                     *lp = len;
2893                 SAVEFREEPV(buffer);
2894                 return retval;
2895             }
2896         }
2897         if (SvREADONLY(sv) && !SvOK(sv)) {
2898             if (lp)
2899                 *lp = 0;
2900             if (flags & SV_UNDEF_RETURNS_NULL)
2901                 return NULL;
2902             if (ckWARN(WARN_UNINITIALIZED))
2903                 report_uninit(sv);
2904             return (char *)"";
2905         }
2906     }
2907     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2908         /* I'm assuming that if both IV and NV are equally valid then
2909            converting the IV is going to be more efficient */
2910         const U32 isUIOK = SvIsUV(sv);
2911         char buf[TYPE_CHARS(UV)];
2912         char *ebuf, *ptr;
2913         STRLEN len;
2914
2915         if (SvTYPE(sv) < SVt_PVIV)
2916             sv_upgrade(sv, SVt_PVIV);
2917         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2918         len = ebuf - ptr;
2919         /* inlined from sv_setpvn */
2920         s = SvGROW_mutable(sv, len + 1);
2921         Move(ptr, s, len, char);
2922         s += len;
2923         *s = '\0';
2924     }
2925     else if (SvNOKp(sv)) {
2926         if (SvTYPE(sv) < SVt_PVNV)
2927             sv_upgrade(sv, SVt_PVNV);
2928         if (SvNVX(sv) == 0.0) {
2929             s = SvGROW_mutable(sv, 2);
2930             *s++ = '0';
2931             *s = '\0';
2932         } else {
2933             dSAVE_ERRNO;
2934             /* The +20 is pure guesswork.  Configure test needed. --jhi */
2935             s = SvGROW_mutable(sv, NV_DIG + 20);
2936             /* some Xenix systems wipe out errno here */
2937             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2938             RESTORE_ERRNO;
2939             while (*s) s++;
2940         }
2941 #ifdef hcx
2942         if (s[-1] == '.')
2943             *--s = '\0';
2944 #endif
2945     }
2946     else {
2947         if (isGV_with_GP(sv)) {
2948             GV *const gv = MUTABLE_GV(sv);
2949             const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
2950             SV *const buffer = sv_newmortal();
2951
2952             /* FAKE globs can get coerced, so need to turn this off temporarily
2953                if it is on.  */
2954             SvFAKE_off(gv);
2955             gv_efullname3(buffer, gv, "*");
2956             SvFLAGS(gv) |= wasfake;
2957
2958             if (SvPOK(buffer)) {
2959                 if (lp) {
2960                     *lp = SvCUR(buffer);
2961                 }
2962                 if ( SvUTF8(buffer) ) SvUTF8_on(sv);
2963                 return SvPVX(buffer);
2964             }
2965             else {
2966                 if (lp)
2967                     *lp = 0;
2968                 return (char *)"";
2969             }
2970         }
2971
2972         if (lp)
2973             *lp = 0;
2974         if (flags & SV_UNDEF_RETURNS_NULL)
2975             return NULL;
2976         if (!PL_localizing && !SvPADTMP(sv) && ckWARN(WARN_UNINITIALIZED))
2977             report_uninit(sv);
2978         if (SvTYPE(sv) < SVt_PV)
2979             /* Typically the caller expects that sv_any is not NULL now.  */
2980             sv_upgrade(sv, SVt_PV);
2981         return (char *)"";
2982     }
2983     {
2984         const STRLEN len = s - SvPVX_const(sv);
2985         if (lp) 
2986             *lp = len;
2987         SvCUR_set(sv, len);
2988     }
2989     SvPOK_on(sv);
2990     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
2991                           PTR2UV(sv),SvPVX_const(sv)));
2992     if (flags & SV_CONST_RETURN)
2993         return (char *)SvPVX_const(sv);
2994     if (flags & SV_MUTABLE_RETURN)
2995         return SvPVX_mutable(sv);
2996     return SvPVX(sv);
2997 }
2998
2999 /*
3000 =for apidoc sv_copypv
3001
3002 Copies a stringified representation of the source SV into the
3003 destination SV.  Automatically performs any necessary mg_get and
3004 coercion of numeric values into strings.  Guaranteed to preserve
3005 UTF8 flag even from overloaded objects.  Similar in nature to
3006 sv_2pv[_flags] but operates directly on an SV instead of just the
3007 string.  Mostly uses sv_2pv_flags to do its work, except when that
3008 would lose the UTF-8'ness of the PV.
3009
3010 =cut
3011 */
3012
3013 void
3014 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3015 {
3016     STRLEN len;
3017     const char * const s = SvPV_const(ssv,len);
3018
3019     PERL_ARGS_ASSERT_SV_COPYPV;
3020
3021     sv_setpvn(dsv,s,len);
3022     if (SvUTF8(ssv))
3023         SvUTF8_on(dsv);
3024     else
3025         SvUTF8_off(dsv);
3026 }
3027
3028 /*
3029 =for apidoc sv_2pvbyte
3030
3031 Return a pointer to the byte-encoded representation of the SV, and set *lp
3032 to its length.  May cause the SV to be downgraded from UTF-8 as a
3033 side-effect.
3034
3035 Usually accessed via the C<SvPVbyte> macro.
3036
3037 =cut
3038 */
3039
3040 char *
3041 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3042 {
3043     PERL_ARGS_ASSERT_SV_2PVBYTE;
3044
3045     SvGETMAGIC(sv);
3046     sv_utf8_downgrade(sv,0);
3047     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3048 }
3049
3050 /*
3051 =for apidoc sv_2pvutf8
3052
3053 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3054 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3055
3056 Usually accessed via the C<SvPVutf8> macro.
3057
3058 =cut
3059 */
3060
3061 char *
3062 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3063 {
3064     PERL_ARGS_ASSERT_SV_2PVUTF8;
3065
3066     sv_utf8_upgrade(sv);
3067     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3068 }
3069
3070
3071 /*
3072 =for apidoc sv_2bool
3073
3074 This macro is only used by sv_true() or its macro equivalent, and only if
3075 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3076 It calls sv_2bool_flags with the SV_GMAGIC flag.
3077
3078 =for apidoc sv_2bool_flags
3079
3080 This function is only used by sv_true() and friends,  and only if
3081 the latter's argument is neither SvPOK, SvIOK nor SvNOK. If the flags
3082 contain SV_GMAGIC, then it does an mg_get() first.
3083
3084
3085 =cut
3086 */
3087
3088 bool
3089 Perl_sv_2bool_flags(pTHX_ register SV *const sv, const I32 flags)
3090 {
3091     dVAR;
3092
3093     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3094
3095     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3096
3097     if (!SvOK(sv))
3098         return 0;
3099     if (SvROK(sv)) {
3100         if (SvAMAGIC(sv)) {
3101             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3102             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3103                 return cBOOL(SvTRUE(tmpsv));
3104         }
3105         return SvRV(sv) != 0;
3106     }
3107     if (SvPOKp(sv)) {
3108         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3109         if (Xpvtmp &&
3110                 (*sv->sv_u.svu_pv > '0' ||
3111                 Xpvtmp->xpv_cur > 1 ||
3112                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3113             return 1;
3114         else
3115             return 0;
3116     }
3117     else {
3118         if (SvIOKp(sv))
3119             return SvIVX(sv) != 0;
3120         else {
3121             if (SvNOKp(sv))
3122                 return SvNVX(sv) != 0.0;
3123             else {
3124                 if (isGV_with_GP(sv))
3125                     return TRUE;
3126                 else
3127                     return FALSE;
3128             }
3129         }
3130     }
3131 }
3132
3133 /*
3134 =for apidoc sv_utf8_upgrade
3135
3136 Converts the PV of an SV to its UTF-8-encoded form.
3137 Forces the SV to string form if it is not already.
3138 Will C<mg_get> on C<sv> if appropriate.
3139 Always sets the SvUTF8 flag to avoid future validity checks even
3140 if the whole string is the same in UTF-8 as not.
3141 Returns the number of bytes in the converted string
3142
3143 This is not as a general purpose byte encoding to Unicode interface:
3144 use the Encode extension for that.
3145
3146 =for apidoc sv_utf8_upgrade_nomg
3147
3148 Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3149
3150 =for apidoc sv_utf8_upgrade_flags
3151
3152 Converts the PV of an SV to its UTF-8-encoded form.
3153 Forces the SV to string form if it is not already.
3154 Always sets the SvUTF8 flag to avoid future validity checks even
3155 if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3156 will C<mg_get> on C<sv> if appropriate, else not.
3157 Returns the number of bytes in the converted string
3158 C<sv_utf8_upgrade> and
3159 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3160
3161 This is not as a general purpose byte encoding to Unicode interface:
3162 use the Encode extension for that.
3163
3164 =cut
3165
3166 The grow version is currently not externally documented.  It adds a parameter,
3167 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3168 have free after it upon return.  This allows the caller to reserve extra space
3169 that it intends to fill, to avoid extra grows.
3170
3171 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3172 which can be used to tell this function to not first check to see if there are
3173 any characters that are different in UTF-8 (variant characters) which would
3174 force it to allocate a new string to sv, but to assume there are.  Typically
3175 this flag is used by a routine that has already parsed the string to find that
3176 there are such characters, and passes this information on so that the work
3177 doesn't have to be repeated.
3178
3179 (One might think that the calling routine could pass in the position of the
3180 first such variant, so it wouldn't have to be found again.  But that is not the
3181 case, because typically when the caller is likely to use this flag, it won't be
3182 calling this routine unless it finds something that won't fit into a byte.
3183 Otherwise it tries to not upgrade and just use bytes.  But some things that
3184 do fit into a byte are variants in utf8, and the caller may not have been
3185 keeping track of these.)
3186
3187 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3188 isn't guaranteed due to having other routines do the work in some input cases,
3189 or if the input is already flagged as being in utf8.
3190
3191 The speed of this could perhaps be improved for many cases if someone wanted to
3192 write a fast function that counts the number of variant characters in a string,
3193 especially if it could return the position of the first one.
3194
3195 */
3196
3197 STRLEN
3198 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3199 {
3200     dVAR;
3201
3202     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3203
3204     if (sv == &PL_sv_undef)
3205         return 0;
3206     if (!SvPOK(sv)) {
3207         STRLEN len = 0;
3208         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3209             (void) sv_2pv_flags(sv,&len, flags);
3210             if (SvUTF8(sv)) {
3211                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3212                 return len;
3213             }
3214         } else {
3215             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3216         }
3217     }
3218
3219     if (SvUTF8(sv)) {
3220         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3221         return SvCUR(sv);
3222     }
3223
3224     if (SvIsCOW(sv)) {
3225         sv_force_normal_flags(sv, 0);
3226     }
3227
3228     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3229         sv_recode_to_utf8(sv, PL_encoding);
3230         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3231         return SvCUR(sv);
3232     }
3233
3234     if (SvCUR(sv) == 0) {
3235         if (extra) SvGROW(sv, extra);
3236     } else { /* Assume Latin-1/EBCDIC */
3237         /* This function could be much more efficient if we
3238          * had a FLAG in SVs to signal if there are any variant
3239          * chars in the PV.  Given that there isn't such a flag
3240          * make the loop as fast as possible (although there are certainly ways
3241          * to speed this up, eg. through vectorization) */
3242         U8 * s = (U8 *) SvPVX_const(sv);
3243         U8 * e = (U8 *) SvEND(sv);
3244         U8 *t = s;
3245         STRLEN two_byte_count = 0;
3246         
3247         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3248
3249         /* See if really will need to convert to utf8.  We mustn't rely on our
3250          * incoming SV being well formed and having a trailing '\0', as certain
3251          * code in pp_formline can send us partially built SVs. */
3252
3253         while (t < e) {
3254             const U8 ch = *t++;
3255             if (NATIVE_IS_INVARIANT(ch)) continue;
3256
3257             t--;    /* t already incremented; re-point to first variant */
3258             two_byte_count = 1;
3259             goto must_be_utf8;
3260         }
3261
3262         /* utf8 conversion not needed because all are invariants.  Mark as
3263          * UTF-8 even if no variant - saves scanning loop */
3264         SvUTF8_on(sv);
3265         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3266         return SvCUR(sv);
3267
3268 must_be_utf8:
3269
3270         /* Here, the string should be converted to utf8, either because of an
3271          * input flag (two_byte_count = 0), or because a character that
3272          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3273          * the beginning of the string (if we didn't examine anything), or to
3274          * the first variant.  In either case, everything from s to t - 1 will
3275          * occupy only 1 byte each on output.
3276          *
3277          * There are two main ways to convert.  One is to create a new string
3278          * and go through the input starting from the beginning, appending each
3279          * converted value onto the new string as we go along.  It's probably
3280          * best to allocate enough space in the string for the worst possible
3281          * case rather than possibly running out of space and having to
3282          * reallocate and then copy what we've done so far.  Since everything
3283          * from s to t - 1 is invariant, the destination can be initialized
3284          * with these using a fast memory copy
3285          *
3286          * The other way is to figure out exactly how big the string should be
3287          * by parsing the entire input.  Then you don't have to make it big
3288          * enough to handle the worst possible case, and more importantly, if
3289          * the string you already have is large enough, you don't have to
3290          * allocate a new string, you can copy the last character in the input
3291          * string to the final position(s) that will be occupied by the
3292          * converted string and go backwards, stopping at t, since everything
3293          * before that is invariant.
3294          *
3295          * There are advantages and disadvantages to each method.
3296          *
3297          * In the first method, we can allocate a new string, do the memory
3298          * copy from the s to t - 1, and then proceed through the rest of the
3299          * string byte-by-byte.
3300          *
3301          * In the second method, we proceed through the rest of the input
3302          * string just calculating how big the converted string will be.  Then
3303          * there are two cases:
3304          *  1)  if the string has enough extra space to handle the converted
3305          *      value.  We go backwards through the string, converting until we
3306          *      get to the position we are at now, and then stop.  If this
3307          *      position is far enough along in the string, this method is
3308          *      faster than the other method.  If the memory copy were the same
3309          *      speed as the byte-by-byte loop, that position would be about
3310          *      half-way, as at the half-way mark, parsing to the end and back
3311          *      is one complete string's parse, the same amount as starting
3312          *      over and going all the way through.  Actually, it would be
3313          *      somewhat less than half-way, as it's faster to just count bytes
3314          *      than to also copy, and we don't have the overhead of allocating
3315          *      a new string, changing the scalar to use it, and freeing the
3316          *      existing one.  But if the memory copy is fast, the break-even
3317          *      point is somewhere after half way.  The counting loop could be
3318          *      sped up by vectorization, etc, to move the break-even point
3319          *      further towards the beginning.
3320          *  2)  if the string doesn't have enough space to handle the converted
3321          *      value.  A new string will have to be allocated, and one might
3322          *      as well, given that, start from the beginning doing the first
3323          *      method.  We've spent extra time parsing the string and in
3324          *      exchange all we've gotten is that we know precisely how big to
3325          *      make the new one.  Perl is more optimized for time than space,
3326          *      so this case is a loser.
3327          * So what I've decided to do is not use the 2nd method unless it is
3328          * guaranteed that a new string won't have to be allocated, assuming
3329          * the worst case.  I also decided not to put any more conditions on it
3330          * than this, for now.  It seems likely that, since the worst case is
3331          * twice as big as the unknown portion of the string (plus 1), we won't
3332          * be guaranteed enough space, causing us to go to the first method,
3333          * unless the string is short, or the first variant character is near
3334          * the end of it.  In either of these cases, it seems best to use the
3335          * 2nd method.  The only circumstance I can think of where this would
3336          * be really slower is if the string had once had much more data in it
3337          * than it does now, but there is still a substantial amount in it  */
3338
3339         {
3340             STRLEN invariant_head = t - s;
3341             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3342             if (SvLEN(sv) < size) {
3343
3344                 /* Here, have decided to allocate a new string */
3345
3346                 U8 *dst;
3347                 U8 *d;
3348
3349                 Newx(dst, size, U8);
3350
3351                 /* If no known invariants at the beginning of the input string,
3352                  * set so starts from there.  Otherwise, can use memory copy to
3353                  * get up to where we are now, and then start from here */
3354
3355                 if (invariant_head <= 0) {
3356                     d = dst;
3357                 } else {
3358                     Copy(s, dst, invariant_head, char);
3359                     d = dst + invariant_head;
3360                 }
3361
3362                 while (t < e) {
3363                     const UV uv = NATIVE8_TO_UNI(*t++);
3364                     if (UNI_IS_INVARIANT(uv))
3365                         *d++ = (U8)UNI_TO_NATIVE(uv);
3366                     else {
3367                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3368                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3369                     }
3370                 }
3371                 *d = '\0';
3372                 SvPV_free(sv); /* No longer using pre-existing string */
3373                 SvPV_set(sv, (char*)dst);
3374                 SvCUR_set(sv, d - dst);
3375                 SvLEN_set(sv, size);
3376             } else {
3377
3378                 /* Here, have decided to get the exact size of the string.
3379                  * Currently this happens only when we know that there is
3380                  * guaranteed enough space to fit the converted string, so
3381                  * don't have to worry about growing.  If two_byte_count is 0,
3382                  * then t points to the first byte of the string which hasn't
3383                  * been examined yet.  Otherwise two_byte_count is 1, and t
3384                  * points to the first byte in the string that will expand to
3385                  * two.  Depending on this, start examining at t or 1 after t.
3386                  * */
3387
3388                 U8 *d = t + two_byte_count;
3389
3390
3391                 /* Count up the remaining bytes that expand to two */
3392
3393                 while (d < e) {
3394                     const U8 chr = *d++;
3395                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3396                 }
3397
3398                 /* The string will expand by just the number of bytes that
3399                  * occupy two positions.  But we are one afterwards because of
3400                  * the increment just above.  This is the place to put the
3401                  * trailing NUL, and to set the length before we decrement */
3402
3403                 d += two_byte_count;
3404                 SvCUR_set(sv, d - s);
3405                 *d-- = '\0';
3406
3407
3408                 /* Having decremented d, it points to the position to put the
3409                  * very last byte of the expanded string.  Go backwards through
3410                  * the string, copying and expanding as we go, stopping when we
3411                  * get to the part that is invariant the rest of the way down */
3412
3413                 e--;
3414                 while (e >= t) {
3415                     const U8 ch = NATIVE8_TO_UNI(*e--);
3416                     if (UNI_IS_INVARIANT(ch)) {
3417                         *d-- = UNI_TO_NATIVE(ch);
3418                     } else {
3419                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3420                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3421                     }
3422                 }
3423             }
3424
3425             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3426                 /* Update pos. We do it at the end rather than during
3427                  * the upgrade, to avoid slowing down the common case
3428                  * (upgrade without pos) */
3429                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3430                 if (mg) {
3431                     I32 pos = mg->mg_len;
3432                     if (pos > 0 && (U32)pos > invariant_head) {
3433                         U8 *d = (U8*) SvPVX(sv) + invariant_head;
3434                         STRLEN n = (U32)pos - invariant_head;
3435                         while (n > 0) {
3436                             if (UTF8_IS_START(*d))
3437                                 d++;
3438                             d++;
3439                             n--;
3440                         }
3441                         mg->mg_len  = d - (U8*)SvPVX(sv);
3442                     }
3443                 }
3444                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3445                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3446             }
3447         }
3448     }
3449
3450     /* Mark as UTF-8 even if no variant - saves scanning loop */
3451     SvUTF8_on(sv);
3452     return SvCUR(sv);
3453 }
3454
3455 /*
3456 =for apidoc sv_utf8_downgrade
3457
3458 Attempts to convert the PV of an SV from characters to bytes.
3459 If the PV contains a character that cannot fit
3460 in a byte, this conversion will fail;
3461 in this case, either returns false or, if C<fail_ok> is not
3462 true, croaks.
3463
3464 This is not as a general purpose Unicode to byte encoding interface:
3465 use the Encode extension for that.
3466
3467 =cut
3468 */
3469
3470 bool
3471 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3472 {
3473     dVAR;
3474
3475     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3476
3477     if (SvPOKp(sv) && SvUTF8(sv)) {
3478         if (SvCUR(sv)) {
3479             U8 *s;
3480             STRLEN len;
3481             int mg_flags = SV_GMAGIC;
3482
3483             if (SvIsCOW(sv)) {
3484                 sv_force_normal_flags(sv, 0);
3485             }
3486             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3487                 /* update pos */
3488                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3489                 if (mg) {
3490                     I32 pos = mg->mg_len;
3491                     if (pos > 0) {
3492                         sv_pos_b2u(sv, &pos);
3493                         mg_flags = 0; /* sv_pos_b2u does get magic */
3494                         mg->mg_len  = pos;
3495                     }
3496                 }
3497                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3498                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3499
3500             }
3501             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3502
3503             if (!utf8_to_bytes(s, &len)) {
3504                 if (fail_ok)
3505                     return FALSE;
3506                 else {
3507                     if (PL_op)
3508                         Perl_croak(aTHX_ "Wide character in %s",
3509                                    OP_DESC(PL_op));
3510                     else
3511                         Perl_croak(aTHX_ "Wide character");
3512                 }
3513             }
3514             SvCUR_set(sv, len);
3515         }
3516     }
3517     SvUTF8_off(sv);
3518     return TRUE;
3519 }
3520
3521 /*
3522 =for apidoc sv_utf8_encode
3523
3524 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3525 flag off so that it looks like octets again.
3526
3527 =cut
3528 */
3529
3530 void
3531 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3532 {
3533     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3534
3535     if (SvIsCOW(sv)) {
3536         sv_force_normal_flags(sv, 0);
3537     }
3538     if (SvREADONLY(sv)) {
3539         Perl_croak_no_modify(aTHX);
3540     }
3541     (void) sv_utf8_upgrade(sv);
3542     SvUTF8_off(sv);
3543 }
3544
3545 /*
3546 =for apidoc sv_utf8_decode
3547
3548 If the PV of the SV is an octet sequence in UTF-8
3549 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3550 so that it looks like a character. If the PV contains only single-byte
3551 characters, the C<SvUTF8> flag stays off.
3552 Scans PV for validity and returns false if the PV is invalid UTF-8.
3553
3554 =cut
3555 */
3556
3557 bool
3558 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3559 {
3560     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3561
3562     if (SvPOKp(sv)) {
3563         const U8 *start, *c;
3564         const U8 *e;
3565
3566         /* The octets may have got themselves encoded - get them back as
3567          * bytes
3568          */
3569         if (!sv_utf8_downgrade(sv, TRUE))
3570             return FALSE;
3571
3572         /* it is actually just a matter of turning the utf8 flag on, but
3573          * we want to make sure everything inside is valid utf8 first.
3574          */
3575         c = start = (const U8 *) SvPVX_const(sv);
3576         if (!is_utf8_string(c, SvCUR(sv)+1))
3577             return FALSE;
3578         e = (const U8 *) SvEND(sv);
3579         while (c < e) {
3580             const U8 ch = *c++;
3581             if (!UTF8_IS_INVARIANT(ch)) {
3582                 SvUTF8_on(sv);
3583                 break;
3584             }
3585         }
3586         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3587             /* adjust pos to the start of a UTF8 char sequence */
3588             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3589             if (mg) {
3590                 I32 pos = mg->mg_len;
3591                 if (pos > 0) {
3592                     for (c = start + pos; c > start; c--) {
3593                         if (UTF8_IS_START(*c))
3594                             break;
3595                     }
3596                     mg->mg_len  = c - start;
3597                 }
3598             }
3599             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3600                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3601         }
3602     }
3603     return TRUE;
3604 }
3605
3606 /*
3607 =for apidoc sv_setsv
3608
3609 Copies the contents of the source SV C<ssv> into the destination SV
3610 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3611 function if the source SV needs to be reused. Does not handle 'set' magic.
3612 Loosely speaking, it performs a copy-by-value, obliterating any previous
3613 content of the destination.
3614
3615 You probably want to use one of the assortment of wrappers, such as
3616 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3617 C<SvSetMagicSV_nosteal>.
3618
3619 =for apidoc sv_setsv_flags
3620
3621 Copies the contents of the source SV C<ssv> into the destination SV
3622 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3623 function if the source SV needs to be reused. Does not handle 'set' magic.
3624 Loosely speaking, it performs a copy-by-value, obliterating any previous
3625 content of the destination.
3626 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3627 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3628 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3629 and C<sv_setsv_nomg> are implemented in terms of this function.
3630
3631 You probably want to use one of the assortment of wrappers, such as
3632 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3633 C<SvSetMagicSV_nosteal>.
3634
3635 This is the primary function for copying scalars, and most other
3636 copy-ish functions and macros use this underneath.
3637
3638 =cut
3639 */
3640
3641 static void
3642 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3643 {
3644     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3645     HV *old_stash = NULL;
3646
3647     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3648
3649     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3650         const char * const name = GvNAME(sstr);
3651         const STRLEN len = GvNAMELEN(sstr);
3652         {
3653             if (dtype >= SVt_PV) {
3654                 SvPV_free(dstr);
3655                 SvPV_set(dstr, 0);
3656                 SvLEN_set(dstr, 0);
3657                 SvCUR_set(dstr, 0);
3658             }
3659             SvUPGRADE(dstr, SVt_PVGV);
3660             (void)SvOK_off(dstr);
3661             /* FIXME - why are we doing this, then turning it off and on again
3662                below?  */
3663             isGV_with_GP_on(dstr);
3664         }
3665         GvSTASH(dstr) = GvSTASH(sstr);
3666         if (GvSTASH(dstr))
3667             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3668         gv_name_set(MUTABLE_GV(dstr), name, len,
3669                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3670         SvFAKE_on(dstr);        /* can coerce to non-glob */
3671     }
3672
3673     if(GvGP(MUTABLE_GV(sstr))) {
3674         /* If source has method cache entry, clear it */
3675         if(GvCVGEN(sstr)) {
3676             SvREFCNT_dec(GvCV(sstr));
3677             GvCV_set(sstr, NULL);
3678             GvCVGEN(sstr) = 0;
3679         }
3680         /* If source has a real method, then a method is
3681            going to change */
3682         else if(
3683          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3684         ) {
3685             mro_changes = 1;
3686         }
3687     }
3688
3689     /* If dest already had a real method, that's a change as well */
3690     if(
3691         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3692      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3693     ) {
3694         mro_changes = 1;
3695     }
3696
3697     /* We don’t need to check the name of the destination if it was not a
3698        glob to begin with. */
3699     if(dtype == SVt_PVGV) {
3700         const char * const name = GvNAME((const GV *)dstr);
3701         if(
3702             strEQ(name,"ISA")
3703          /* The stash may have been detached from the symbol table, so
3704             check its name. */
3705          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3706          && GvAV((const GV *)sstr)
3707         )
3708             mro_changes = 2;
3709         else {
3710             const STRLEN len = GvNAMELEN(dstr);
3711             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3712              || (len == 1 && name[0] == ':')) {
3713                 mro_changes = 3;
3714
3715                 /* Set aside the old stash, so we can reset isa caches on
3716                    its subclasses. */
3717                 if((old_stash = GvHV(dstr)))
3718                     /* Make sure we do not lose it early. */
3719                     SvREFCNT_inc_simple_void_NN(
3720                      sv_2mortal((SV *)old_stash)
3721                     );
3722             }
3723         }
3724     }
3725
3726     gp_free(MUTABLE_GV(dstr));
3727     isGV_with_GP_off(dstr);
3728     (void)SvOK_off(dstr);
3729     isGV_with_GP_on(dstr);
3730     GvINTRO_off(dstr);          /* one-shot flag */
3731     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3732     if (SvTAINTED(sstr))
3733         SvTAINT(dstr);
3734     if (GvIMPORTED(dstr) != GVf_IMPORTED
3735         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3736         {
3737             GvIMPORTED_on(dstr);
3738         }
3739     GvMULTI_on(dstr);
3740     if(mro_changes == 2) {
3741         MAGIC *mg;
3742         SV * const sref = (SV *)GvAV((const GV *)dstr);
3743         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3744             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3745                 AV * const ary = newAV();
3746                 av_push(ary, mg->mg_obj); /* takes the refcount */
3747                 mg->mg_obj = (SV *)ary;
3748             }
3749             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3750         }
3751         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3752         mro_isa_changed_in(GvSTASH(dstr));
3753     }
3754     else if(mro_changes == 3) {
3755         HV * const stash = GvHV(dstr);
3756         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3757             mro_package_moved(
3758                 stash, old_stash,
3759                 (GV *)dstr, 0
3760             );
3761     }
3762     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3763     return;
3764 }
3765
3766 static void
3767 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3768 {
3769     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3770     SV *dref = NULL;
3771     const int intro = GvINTRO(dstr);
3772     SV **location;
3773     U8 import_flag = 0;
3774     const U32 stype = SvTYPE(sref);
3775
3776     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3777
3778     if (intro) {
3779         GvINTRO_off(dstr);      /* one-shot flag */
3780         GvLINE(dstr) = CopLINE(PL_curcop);
3781         GvEGV(dstr) = MUTABLE_GV(dstr);
3782     }
3783     GvMULTI_on(dstr);
3784     switch (stype) {
3785     case SVt_PVCV:
3786         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
3787         import_flag = GVf_IMPORTED_CV;
3788         goto common;
3789     case SVt_PVHV:
3790         location = (SV **) &GvHV(dstr);
3791         import_flag = GVf_IMPORTED_HV;
3792         goto common;
3793     case SVt_PVAV:
3794         location = (SV **) &GvAV(dstr);
3795         import_flag = GVf_IMPORTED_AV;
3796         goto common;
3797     case SVt_PVIO:
3798         location = (SV **) &GvIOp(dstr);
3799         goto common;
3800     case SVt_PVFM:
3801         location = (SV **) &GvFORM(dstr);
3802         goto common;
3803     default:
3804         location = &GvSV(dstr);
3805         import_flag = GVf_IMPORTED_SV;
3806     common:
3807         if (intro) {
3808             if (stype == SVt_PVCV) {
3809                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3810                 if (GvCVGEN(dstr)) {
3811                     SvREFCNT_dec(GvCV(dstr));
3812                     GvCV_set(dstr, NULL);
3813                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3814                 }
3815             }
3816             SAVEGENERICSV(*location);
3817         }
3818         else
3819             dref = *location;
3820         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3821             CV* const cv = MUTABLE_CV(*location);
3822             if (cv) {
3823                 if (!GvCVGEN((const GV *)dstr) &&
3824                     (CvROOT(cv) || CvXSUB(cv)))
3825                     {
3826                         /* Redefining a sub - warning is mandatory if
3827                            it was a const and its value changed. */
3828                         if (CvCONST(cv) && CvCONST((const CV *)sref)
3829                             && cv_const_sv(cv)
3830                             == cv_const_sv((const CV *)sref)) {
3831                             NOOP;
3832                             /* They are 2 constant subroutines generated from
3833                                the same constant. This probably means that
3834                                they are really the "same" proxy subroutine
3835                                instantiated in 2 places. Most likely this is
3836                                when a constant is exported twice.  Don't warn.
3837                             */
3838                         }
3839                         else if (ckWARN(WARN_REDEFINE)
3840                                  || (CvCONST(cv)
3841                                      && (!CvCONST((const CV *)sref)
3842                                          || sv_cmp(cv_const_sv(cv),
3843                                                    cv_const_sv((const CV *)
3844                                                                sref))))) {
3845                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3846                                         (const char *)
3847                                         (CvCONST(cv)
3848                                          ? "Constant subroutine %"HEKf
3849                                            "::%"HEKf" redefined"
3850                                          : "Subroutine %"HEKf"::%"HEKf
3851                                            " redefined"),
3852                                 HEKfARG(
3853                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
3854                                 ),
3855                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr))));
3856                         }
3857                     }
3858                 if (!intro)
3859                     cv_ckproto_len_flags(cv, (const GV *)dstr,
3860                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
3861                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
3862                                    SvPOK(sref) ? SvUTF8(sref) : 0);
3863             }
3864             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3865             GvASSUMECV_on(dstr);
3866             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3867         }
3868         *location = sref;
3869         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3870             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3871             GvFLAGS(dstr) |= import_flag;
3872         }
3873         if (stype == SVt_PVHV) {
3874             const char * const name = GvNAME((GV*)dstr);
3875             const STRLEN len = GvNAMELEN(dstr);
3876             if (
3877                 (
3878                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
3879                 || (len == 1 && name[0] == ':')
3880                 )
3881              && (!dref || HvENAME_get(dref))
3882             ) {
3883                 mro_package_moved(
3884                     (HV *)sref, (HV *)dref,
3885                     (GV *)dstr, 0
3886                 );
3887             }
3888         }
3889         else if (
3890             stype == SVt_PVAV && sref != dref
3891          && strEQ(GvNAME((GV*)dstr), "ISA")
3892          /* The stash may have been detached from the symbol table, so
3893             check its name before doing anything. */
3894          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3895         ) {
3896             MAGIC *mg;
3897             MAGIC * const omg = dref && SvSMAGICAL(dref)
3898                                  ? mg_find(dref, PERL_MAGIC_isa)
3899                                  : NULL;
3900             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3901                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3902                     AV * const ary = newAV();
3903                     av_push(ary, mg->mg_obj); /* takes the refcount */
3904                     mg->mg_obj = (SV *)ary;
3905                 }
3906                 if (omg) {
3907                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
3908                         SV **svp = AvARRAY((AV *)omg->mg_obj);
3909                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
3910                         while (items--)
3911                             av_push(
3912                              (AV *)mg->mg_obj,
3913                              SvREFCNT_inc_simple_NN(*svp++)
3914                             );
3915                     }
3916                     else
3917                         av_push(
3918                          (AV *)mg->mg_obj,
3919                          SvREFCNT_inc_simple_NN(omg->mg_obj)
3920                         );
3921                 }
3922                 else
3923                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
3924             }
3925             else
3926             {
3927                 sv_magic(
3928                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
3929                 );
3930                 mg = mg_find(sref, PERL_MAGIC_isa);
3931             }
3932             /* Since the *ISA assignment could have affected more than
3933                one stash, don’t call mro_isa_changed_in directly, but let
3934                magic_clearisa do it for us, as it already has the logic for
3935                dealing with globs vs arrays of globs. */
3936             assert(mg);
3937             Perl_magic_clearisa(aTHX_ NULL, mg);
3938         }
3939         break;
3940     }
3941     SvREFCNT_dec(dref);
3942     if (SvTAINTED(sstr))
3943         SvTAINT(dstr);
3944     return;
3945 }
3946
3947 void
3948 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3949 {
3950     dVAR;
3951     register U32 sflags;
3952     register int dtype;
3953     register svtype stype;
3954
3955     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3956
3957     if (sstr == dstr)
3958         return;
3959
3960     if (SvIS_FREED(dstr)) {
3961         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3962                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3963     }
3964     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3965     if (!sstr)
3966         sstr = &PL_sv_undef;
3967     if (SvIS_FREED(sstr)) {
3968         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3969                    (void*)sstr, (void*)dstr);
3970     }
3971     stype = SvTYPE(sstr);
3972     dtype = SvTYPE(dstr);
3973
3974     (void)SvAMAGIC_off(dstr);
3975     if ( SvVOK(dstr) )
3976     {
3977         /* need to nuke the magic */
3978         mg_free(dstr);
3979     }
3980
3981     /* There's a lot of redundancy below but we're going for speed here */
3982
3983     switch (stype) {
3984     case SVt_NULL:
3985       undef_sstr:
3986         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
3987             (void)SvOK_off(dstr);
3988             return;
3989         }
3990         break;
3991     case SVt_IV:
3992         if (SvIOK(sstr)) {
3993             switch (dtype) {
3994             case SVt_NULL:
3995                 sv_upgrade(dstr, SVt_IV);
3996                 break;
3997             case SVt_NV:
3998             case SVt_PV:
3999                 sv_upgrade(dstr, SVt_PVIV);
4000                 break;
4001             case SVt_PVGV:
4002             case SVt_PVLV:
4003                 goto end_of_first_switch;
4004             }
4005             (void)SvIOK_only(dstr);
4006             SvIV_set(dstr,  SvIVX(sstr));
4007             if (SvIsUV(sstr))
4008                 SvIsUV_on(dstr);
4009             /* SvTAINTED can only be true if the SV has taint magic, which in
4010                turn means that the SV type is PVMG (or greater). This is the
4011                case statement for SVt_IV, so this cannot be true (whatever gcov
4012                may say).  */
4013             assert(!SvTAINTED(sstr));
4014             return;
4015         }
4016         if (!SvROK(sstr))
4017             goto undef_sstr;
4018         if (dtype < SVt_PV && dtype != SVt_IV)
4019             sv_upgrade(dstr, SVt_IV);
4020         break;
4021
4022     case SVt_NV:
4023         if (SvNOK(sstr)) {
4024             switch (dtype) {
4025             case SVt_NULL:
4026             case SVt_IV:
4027                 sv_upgrade(dstr, SVt_NV);
4028                 break;
4029             case SVt_PV:
4030             case SVt_PVIV:
4031                 sv_upgrade(dstr, SVt_PVNV);
4032                 break;
4033             case SVt_PVGV:
4034             case SVt_PVLV:
4035                 goto end_of_first_switch;
4036             }
4037             SvNV_set(dstr, SvNVX(sstr));
4038             (void)SvNOK_only(dstr);
4039             /* SvTAINTED can only be true if the SV has taint magic, which in
4040                turn means that the SV type is PVMG (or greater). This is the
4041                case statement for SVt_NV, so this cannot be true (whatever gcov
4042                may say).  */
4043             assert(!SvTAINTED(sstr));
4044             return;
4045         }
4046         goto undef_sstr;
4047
4048     case SVt_PVFM:
4049 #ifdef PERL_OLD_COPY_ON_WRITE
4050         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
4051             if (dtype < SVt_PVIV)
4052                 sv_upgrade(dstr, SVt_PVIV);
4053             break;
4054         }
4055         /* Fall through */
4056 #endif
4057     case SVt_PV:
4058         if (dtype < SVt_PV)
4059             sv_upgrade(dstr, SVt_PV);
4060         break;
4061     case SVt_PVIV:
4062         if (dtype < SVt_PVIV)
4063             sv_upgrade(dstr, SVt_PVIV);
4064         break;
4065     case SVt_PVNV:
4066         if (dtype < SVt_PVNV)
4067             sv_upgrade(dstr, SVt_PVNV);
4068         break;
4069     default:
4070         {
4071         const char * const type = sv_reftype(sstr,0);
4072         if (PL_op)
4073             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4074         else
4075             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4076         }
4077         break;
4078
4079     case SVt_REGEXP:
4080         if (dtype < SVt_REGEXP)
4081             sv_upgrade(dstr, SVt_REGEXP);
4082         break;
4083
4084         /* case SVt_BIND: */
4085     case SVt_PVLV:
4086     case SVt_PVGV:
4087     case SVt_PVMG:
4088         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4089             mg_get(sstr);
4090             if (SvTYPE(sstr) != stype)
4091                 stype = SvTYPE(sstr);
4092         }
4093         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4094                     glob_assign_glob(dstr, sstr, dtype);
4095                     return;
4096         }
4097         if (stype == SVt_PVLV)
4098             SvUPGRADE(dstr, SVt_PVNV);
4099         else
4100             SvUPGRADE(dstr, (svtype)stype);
4101     }
4102  end_of_first_switch:
4103
4104     /* dstr may have been upgraded.  */
4105     dtype = SvTYPE(dstr);
4106     sflags = SvFLAGS(sstr);
4107
4108     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
4109         /* Assigning to a subroutine sets the prototype.  */
4110         if (SvOK(sstr)) {
4111             STRLEN len;
4112             const char *const ptr = SvPV_const(sstr, len);
4113
4114             SvGROW(dstr, len + 1);
4115             Copy(ptr, SvPVX(dstr), len + 1, char);
4116             SvCUR_set(dstr, len);
4117             SvPOK_only(dstr);
4118             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4119             CvAUTOLOAD_off(dstr);
4120         } else {
4121             SvOK_off(dstr);
4122         }
4123     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
4124         const char * const type = sv_reftype(dstr,0);
4125         if (PL_op)
4126             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4127         else
4128             Perl_croak(aTHX_ "Cannot copy to %s", type);
4129     } else if (sflags & SVf_ROK) {
4130         if (isGV_with_GP(dstr)
4131             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4132             sstr = SvRV(sstr);
4133             if (sstr == dstr) {
4134                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4135                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4136                 {
4137                     GvIMPORTED_on(dstr);
4138                 }
4139                 GvMULTI_on(dstr);
4140                 return;
4141             }
4142             glob_assign_glob(dstr, sstr, dtype);
4143             return;
4144         }
4145
4146         if (dtype >= SVt_PV) {
4147             if (isGV_with_GP(dstr)) {
4148                 glob_assign_ref(dstr, sstr);
4149                 return;
4150             }
4151             if (SvPVX_const(dstr)) {
4152                 SvPV_free(dstr);
4153                 SvLEN_set(dstr, 0);
4154                 SvCUR_set(dstr, 0);
4155             }
4156         }
4157         (void)SvOK_off(dstr);
4158         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4159         SvFLAGS(dstr) |= sflags & SVf_ROK;
4160         assert(!(sflags & SVp_NOK));
4161         assert(!(sflags & SVp_IOK));
4162         assert(!(sflags & SVf_NOK));
4163         assert(!(sflags & SVf_IOK));
4164     }
4165     else if (isGV_with_GP(dstr)) {
4166         if (!(sflags & SVf_OK)) {
4167             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4168                            "Undefined value assigned to typeglob");
4169         }
4170         else {
4171             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4172             if (dstr != (const SV *)gv) {
4173                 const char * const name = GvNAME((const GV *)dstr);
4174                 const STRLEN len = GvNAMELEN(dstr);
4175                 HV *old_stash = NULL;
4176                 bool reset_isa = FALSE;
4177                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4178                  || (len == 1 && name[0] == ':')) {
4179                     /* Set aside the old stash, so we can reset isa caches
4180                        on its subclasses. */
4181                     if((old_stash = GvHV(dstr))) {
4182                         /* Make sure we do not lose it early. */
4183                         SvREFCNT_inc_simple_void_NN(
4184                          sv_2mortal((SV *)old_stash)
4185                         );
4186                     }
4187                     reset_isa = TRUE;
4188                 }
4189
4190                 if (GvGP(dstr))
4191                     gp_free(MUTABLE_GV(dstr));
4192                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4193
4194                 if (reset_isa) {
4195                     HV * const stash = GvHV(dstr);
4196                     if(
4197                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4198                     )
4199                         mro_package_moved(
4200                          stash, old_stash,
4201                          (GV *)dstr, 0
4202                         );
4203                 }
4204             }
4205         }
4206     }
4207     else if (dtype == SVt_REGEXP && stype == SVt_REGEXP) {
4208         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4209     }
4210     else if (sflags & SVp_POK) {
4211         bool isSwipe = 0;
4212
4213         /*
4214          * Check to see if we can just swipe the string.  If so, it's a
4215          * possible small lose on short strings, but a big win on long ones.
4216          * It might even be a win on short strings if SvPVX_const(dstr)
4217          * has to be allocated and SvPVX_const(sstr) has to be freed.
4218          * Likewise if we can set up COW rather than doing an actual copy, we
4219          * drop to the else clause, as the swipe code and the COW setup code
4220          * have much in common.
4221          */
4222
4223         /* Whichever path we take through the next code, we want this true,
4224            and doing it now facilitates the COW check.  */
4225         (void)SvPOK_only(dstr);
4226
4227         if (
4228             /* If we're already COW then this clause is not true, and if COW
4229                is allowed then we drop down to the else and make dest COW 
4230                with us.  If caller hasn't said that we're allowed to COW
4231                shared hash keys then we don't do the COW setup, even if the
4232                source scalar is a shared hash key scalar.  */
4233             (((flags & SV_COW_SHARED_HASH_KEYS)
4234                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4235                : 1 /* If making a COW copy is forbidden then the behaviour we
4236                        desire is as if the source SV isn't actually already
4237                        COW, even if it is.  So we act as if the source flags
4238                        are not COW, rather than actually testing them.  */
4239               )
4240 #ifndef PERL_OLD_COPY_ON_WRITE
4241              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4242                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4243                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4244                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4245                 but in turn, it's somewhat dead code, never expected to go
4246                 live, but more kept as a placeholder on how to do it better
4247                 in a newer implementation.  */
4248              /* If we are COW and dstr is a suitable target then we drop down
4249                 into the else and make dest a COW of us.  */
4250              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4251 #endif
4252              )
4253             &&
4254             !(isSwipe =
4255                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4256                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4257                  (!(flags & SV_NOSTEAL)) &&
4258                                         /* and we're allowed to steal temps */
4259                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4260                  SvLEN(sstr))             /* and really is a string */
4261 #ifdef PERL_OLD_COPY_ON_WRITE
4262             && ((flags & SV_COW_SHARED_HASH_KEYS)
4263                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4264                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4265                      && SvTYPE(sstr) >= SVt_PVIV && SvTYPE(sstr) != SVt_PVFM))
4266                 : 1)
4267 #endif
4268             ) {
4269             /* Failed the swipe test, and it's not a shared hash key either.
4270                Have to copy the string.  */
4271             STRLEN len = SvCUR(sstr);
4272             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4273             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4274             SvCUR_set(dstr, len);
4275             *SvEND(dstr) = '\0';
4276         } else {
4277             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4278                be true in here.  */
4279             /* Either it's a shared hash key, or it's suitable for
4280                copy-on-write or we can swipe the string.  */
4281             if (DEBUG_C_TEST) {
4282                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4283                 sv_dump(sstr);
4284                 sv_dump(dstr);
4285             }
4286 #ifdef PERL_OLD_COPY_ON_WRITE
4287             if (!isSwipe) {
4288                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4289                     != (SVf_FAKE | SVf_READONLY)) {
4290                     SvREADONLY_on(sstr);
4291                     SvFAKE_on(sstr);
4292                     /* Make the source SV into a loop of 1.
4293                        (about to become 2) */
4294                     SV_COW_NEXT_SV_SET(sstr, sstr);
4295                 }
4296             }
4297 #endif
4298             /* Initial code is common.  */
4299             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4300                 SvPV_free(dstr);
4301             }
4302
4303             if (!isSwipe) {
4304                 /* making another shared SV.  */
4305                 STRLEN cur = SvCUR(sstr);
4306                 STRLEN len = SvLEN(sstr);
4307 #ifdef PERL_OLD_COPY_ON_WRITE
4308                 if (len) {
4309                     assert (SvTYPE(dstr) >= SVt_PVIV);
4310                     /* SvIsCOW_normal */
4311                     /* splice us in between source and next-after-source.  */
4312                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4313                     SV_COW_NEXT_SV_SET(sstr, dstr);
4314                     SvPV_set(dstr, SvPVX_mutable(sstr));
4315                 } else
4316 #endif
4317                 {
4318                     /* SvIsCOW_shared_hash */
4319                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4320                                           "Copy on write: Sharing hash\n"));
4321
4322                     assert (SvTYPE(dstr) >= SVt_PV);
4323                     SvPV_set(dstr,
4324                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4325                 }
4326                 SvLEN_set(dstr, len);
4327                 SvCUR_set(dstr, cur);
4328                 SvREADONLY_on(dstr);
4329                 SvFAKE_on(dstr);
4330             }
4331             else
4332                 {       /* Passes the swipe test.  */
4333                 SvPV_set(dstr, SvPVX_mutable(sstr));
4334                 SvLEN_set(dstr, SvLEN(sstr));
4335                 SvCUR_set(dstr, SvCUR(sstr));
4336
4337                 SvTEMP_off(dstr);
4338                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4339                 SvPV_set(sstr, NULL);
4340                 SvLEN_set(sstr, 0);
4341                 SvCUR_set(sstr, 0);
4342                 SvTEMP_off(sstr);
4343             }
4344         }
4345         if (sflags & SVp_NOK) {
4346             SvNV_set(dstr, SvNVX(sstr));
4347         }
4348         if (sflags & SVp_IOK) {
4349             SvIV_set(dstr, SvIVX(sstr));
4350             /* Must do this otherwise some other overloaded use of 0x80000000
4351                gets confused. I guess SVpbm_VALID */
4352             if (sflags & SVf_IVisUV)
4353                 SvIsUV_on(dstr);
4354         }
4355         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4356         {
4357             const MAGIC * const smg = SvVSTRING_mg(sstr);
4358             if (smg) {
4359                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4360                          smg->mg_ptr, smg->mg_len);
4361                 SvRMAGICAL_on(dstr);
4362             }
4363         }
4364     }
4365     else if (sflags & (SVp_IOK|SVp_NOK)) {
4366         (void)SvOK_off(dstr);
4367         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4368         if (sflags & SVp_IOK) {
4369             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4370             SvIV_set(dstr, SvIVX(sstr));
4371         }
4372         if (sflags & SVp_NOK) {
4373             SvNV_set(dstr, SvNVX(sstr));
4374         }
4375     }
4376     else {
4377         if (isGV_with_GP(sstr)) {
4378             /* This stringification rule for globs is spread in 3 places.
4379                This feels bad. FIXME.  */
4380             const U32 wasfake = sflags & SVf_FAKE;
4381
4382             /* FAKE globs can get coerced, so need to turn this off
4383                temporarily if it is on.  */
4384             SvFAKE_off(sstr);
4385             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4386             SvFLAGS(sstr) |= wasfake;
4387         }
4388         else
4389             (void)SvOK_off(dstr);
4390     }
4391     if (SvTAINTED(sstr))
4392         SvTAINT(dstr);
4393 }
4394
4395 /*
4396 =for apidoc sv_setsv_mg
4397
4398 Like C<sv_setsv>, but also handles 'set' magic.
4399
4400 =cut
4401 */
4402
4403 void
4404 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4405 {
4406     PERL_ARGS_ASSERT_SV_SETSV_MG;
4407
4408     sv_setsv(dstr,sstr);
4409     SvSETMAGIC(dstr);
4410 }
4411
4412 #ifdef PERL_OLD_COPY_ON_WRITE
4413 SV *
4414 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4415 {
4416     STRLEN cur = SvCUR(sstr);
4417     STRLEN len = SvLEN(sstr);
4418     register char *new_pv;
4419
4420     PERL_ARGS_ASSERT_SV_SETSV_COW;
4421
4422     if (DEBUG_C_TEST) {
4423         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4424                       (void*)sstr, (void*)dstr);
4425         sv_dump(sstr);
4426         if (dstr)
4427                     sv_dump(dstr);
4428     }
4429
4430     if (dstr) {
4431         if (SvTHINKFIRST(dstr))
4432             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4433         else if (SvPVX_const(dstr))
4434             Safefree(SvPVX_const(dstr));
4435     }
4436     else
4437         new_SV(dstr);
4438     SvUPGRADE(dstr, SVt_PVIV);
4439
4440     assert (SvPOK(sstr));
4441     assert (SvPOKp(sstr));
4442     assert (!SvIOK(sstr));
4443     assert (!SvIOKp(sstr));
4444     assert (!SvNOK(sstr));
4445     assert (!SvNOKp(sstr));
4446
4447     if (SvIsCOW(sstr)) {
4448
4449         if (SvLEN(sstr) == 0) {
4450             /* source is a COW shared hash key.  */
4451             DEBUG_C(PerlIO_printf(Perl_debug_log,
4452                                   "Fast copy on write: Sharing hash\n"));
4453             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4454             goto common_exit;
4455         }
4456         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4457     } else {
4458         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4459         SvUPGRADE(sstr, SVt_PVIV);
4460         SvREADONLY_on(sstr);
4461         SvFAKE_on(sstr);
4462         DEBUG_C(PerlIO_printf(Perl_debug_log,
4463                               "Fast copy on write: Converting sstr to COW\n"));
4464         SV_COW_NEXT_SV_SET(dstr, sstr);
4465     }
4466     SV_COW_NEXT_SV_SET(sstr, dstr);
4467     new_pv = SvPVX_mutable(sstr);
4468
4469   common_exit:
4470     SvPV_set(dstr, new_pv);
4471     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4472     if (SvUTF8(sstr))
4473         SvUTF8_on(dstr);
4474     SvLEN_set(dstr, len);
4475     SvCUR_set(dstr, cur);
4476     if (DEBUG_C_TEST) {
4477         sv_dump(dstr);
4478     }
4479     return dstr;
4480 }
4481 #endif
4482
4483 /*
4484 =for apidoc sv_setpvn
4485
4486 Copies a string into an SV.  The C<len> parameter indicates the number of
4487 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4488 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4489
4490 =cut
4491 */
4492
4493 void
4494 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4495 {
4496     dVAR;
4497     register char *dptr;
4498
4499     PERL_ARGS_ASSERT_SV_SETPVN;
4500
4501     SV_CHECK_THINKFIRST_COW_DROP(sv);
4502     if (!ptr) {
4503         (void)SvOK_off(sv);
4504         return;
4505     }
4506     else {
4507         /* len is STRLEN which is unsigned, need to copy to signed */
4508         const IV iv = len;
4509         if (iv < 0)
4510             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4511     }
4512     SvUPGRADE(sv, SVt_PV);
4513
4514     dptr = SvGROW(sv, len + 1);
4515     Move(ptr,dptr,len,char);
4516     dptr[len] = '\0';
4517     SvCUR_set(sv, len);
4518     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4519     SvTAINT(sv);
4520     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4521 }
4522
4523 /*
4524 =for apidoc sv_setpvn_mg
4525
4526 Like C<sv_setpvn>, but also handles 'set' magic.
4527
4528 =cut
4529 */
4530
4531 void
4532 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4533 {
4534     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4535
4536     sv_setpvn(sv,ptr,len);
4537     SvSETMAGIC(sv);
4538 }
4539
4540 /*
4541 =for apidoc sv_setpv
4542
4543 Copies a string into an SV.  The string must be null-terminated.  Does not
4544 handle 'set' magic.  See C<sv_setpv_mg>.
4545
4546 =cut
4547 */
4548
4549 void
4550 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4551 {
4552     dVAR;
4553     register STRLEN len;
4554
4555     PERL_ARGS_ASSERT_SV_SETPV;
4556
4557     SV_CHECK_THINKFIRST_COW_DROP(sv);
4558     if (!ptr) {
4559         (void)SvOK_off(sv);
4560         return;
4561     }
4562     len = strlen(ptr);
4563     SvUPGRADE(sv, SVt_PV);
4564
4565     SvGROW(sv, len + 1);
4566     Move(ptr,SvPVX(sv),len+1,char);
4567     SvCUR_set(sv, len);
4568     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4569     SvTAINT(sv);
4570     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4571 }
4572
4573 /*
4574 =for apidoc sv_setpv_mg
4575
4576 Like C<sv_setpv>, but also handles 'set' magic.
4577
4578 =cut
4579 */
4580
4581 void
4582 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4583 {
4584     PERL_ARGS_ASSERT_SV_SETPV_MG;
4585
4586     sv_setpv(sv,ptr);
4587     SvSETMAGIC(sv);
4588 }
4589
4590 void
4591 Perl_sv_sethek(pTHX_ register SV *const sv, const HEK *const hek)
4592 {
4593     dVAR;
4594
4595     PERL_ARGS_ASSERT_SV_SETHEK;
4596
4597     if (!hek) {
4598         return;
4599     }
4600
4601     if (HEK_LEN(hek) == HEf_SVKEY) {
4602         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4603         return;
4604     } else {
4605         const int flags = HEK_FLAGS(hek);
4606         if (flags & HVhek_WASUTF8) {
4607             STRLEN utf8_len = HEK_LEN(hek);
4608             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4609             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4610             SvUTF8_on(sv);
4611             return;
4612         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
4613             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4614             if (HEK_UTF8(hek))
4615                 SvUTF8_on(sv);
4616             else SvUTF8_off(sv);
4617             return;
4618         }
4619         {
4620             sv_upgrade(sv, SVt_PV);
4621             sv_usepvn_flags(sv, (char *)HEK_KEY(share_hek_hek(hek)), HEK_LEN(hek), SV_HAS_TRAILING_NUL);
4622             SvLEN_set(sv, 0);
4623             SvREADONLY_on(sv);
4624             SvFAKE_on(sv);
4625             SvPOK_on(sv);
4626             if (HEK_UTF8(hek))
4627                 SvUTF8_on(sv);
4628             else SvUTF8_off(sv);
4629             return;
4630         }
4631     }
4632 }
4633
4634
4635 /*
4636 =for apidoc sv_usepvn_flags
4637
4638 Tells an SV to use C<ptr> to find its string value.  Normally the
4639 string is stored inside the SV but sv_usepvn allows the SV to use an
4640 outside string.  The C<ptr> should point to memory that was allocated
4641 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4642 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4643 so that pointer should not be freed or used by the programmer after
4644 giving it to sv_usepvn, and neither should any pointers from "behind"
4645 that pointer (e.g. ptr + 1) be used.
4646
4647 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4648 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4649 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4650 C<len>, and already meets the requirements for storing in C<SvPVX>)
4651
4652 =cut
4653 */
4654
4655 void
4656 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4657 {
4658     dVAR;
4659     STRLEN allocate;
4660
4661     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4662
4663     SV_CHECK_THINKFIRST_COW_DROP(sv);
4664     SvUPGRADE(sv, SVt_PV);
4665     if (!ptr) {
4666         (void)SvOK_off(sv);
4667         if (flags & SV_SMAGIC)
4668             SvSETMAGIC(sv);
4669         return;
4670     }
4671     if (SvPVX_const(sv))
4672         SvPV_free(sv);
4673
4674 #ifdef DEBUGGING
4675     if (flags & SV_HAS_TRAILING_NUL)
4676         assert(ptr[len] == '\0');
4677 #endif
4678
4679     allocate = (flags & SV_HAS_TRAILING_NUL)
4680         ? len + 1 :
4681 #ifdef Perl_safesysmalloc_size
4682         len + 1;
4683 #else 
4684         PERL_STRLEN_ROUNDUP(len + 1);
4685 #endif
4686     if (flags & SV_HAS_TRAILING_NUL) {
4687         /* It's long enough - do nothing.
4688            Specifically Perl_newCONSTSUB is relying on this.  */
4689     } else {
4690 #ifdef DEBUGGING
4691         /* Force a move to shake out bugs in callers.  */
4692         char *new_ptr = (char*)safemalloc(allocate);
4693         Copy(ptr, new_ptr, len, char);
4694         PoisonFree(ptr,len,char);
4695         Safefree(ptr);
4696         ptr = new_ptr;
4697 #else
4698         ptr = (char*) saferealloc (ptr, allocate);
4699 #endif
4700     }
4701 #ifdef Perl_safesysmalloc_size
4702     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4703 #else
4704     SvLEN_set(sv, allocate);
4705 #endif
4706     SvCUR_set(sv, len);
4707     SvPV_set(sv, ptr);
4708     if (!(flags & SV_HAS_TRAILING_NUL)) {
4709         ptr[len] = '\0';
4710     }
4711     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4712     SvTAINT(sv);
4713     if (flags & SV_SMAGIC)
4714         SvSETMAGIC(sv);
4715 }
4716
4717 #ifdef PERL_OLD_COPY_ON_WRITE
4718 /* Need to do this *after* making the SV normal, as we need the buffer
4719    pointer to remain valid until after we've copied it.  If we let go too early,
4720    another thread could invalidate it by unsharing last of the same hash key
4721    (which it can do by means other than releasing copy-on-write Svs)
4722    or by changing the other copy-on-write SVs in the loop.  */
4723 STATIC void
4724 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4725 {
4726     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4727
4728     { /* this SV was SvIsCOW_normal(sv) */
4729          /* we need to find the SV pointing to us.  */
4730         SV *current = SV_COW_NEXT_SV(after);
4731
4732         if (current == sv) {
4733             /* The SV we point to points back to us (there were only two of us
4734                in the loop.)
4735                Hence other SV is no longer copy on write either.  */
4736             SvFAKE_off(after);
4737             SvREADONLY_off(after);
4738         } else {
4739             /* We need to follow the pointers around the loop.  */
4740             SV *next;
4741             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4742                 assert (next);
4743                 current = next;
4744                  /* don't loop forever if the structure is bust, and we have
4745                     a pointer into a closed loop.  */
4746                 assert (current != after);
4747                 assert (SvPVX_const(current) == pvx);
4748             }
4749             /* Make the SV before us point to the SV after us.  */
4750             SV_COW_NEXT_SV_SET(current, after);
4751         }
4752     }
4753 }
4754 #endif
4755 /*
4756 =for apidoc sv_force_normal_flags
4757
4758 Undo various types of fakery on an SV: if the PV is a shared string, make
4759 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4760 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4761 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4762 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4763 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4764 set to some other value.) In addition, the C<flags> parameter gets passed to
4765 C<sv_unref_flags()> when unreffing. C<sv_force_normal> calls this function
4766 with flags set to 0.
4767
4768 =cut
4769 */
4770
4771 void
4772 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4773 {
4774     dVAR;
4775
4776     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4777
4778 #ifdef PERL_OLD_COPY_ON_WRITE
4779     if (SvREADONLY(sv)) {
4780         if (SvFAKE(sv)) {
4781             const char * const pvx = SvPVX_const(sv);
4782             const STRLEN len = SvLEN(sv);
4783             const STRLEN cur = SvCUR(sv);
4784             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4785                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4786                we'll fail an assertion.  */
4787             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4788
4789             if (DEBUG_C_TEST) {
4790                 PerlIO_printf(Perl_debug_log,
4791                               "Copy on write: Force normal %ld\n",
4792                               (long) flags);
4793                 sv_dump(sv);
4794             }
4795             SvFAKE_off(sv);
4796             SvREADONLY_off(sv);
4797             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4798             SvPV_set(sv, NULL);
4799             SvLEN_set(sv, 0);
4800             if (flags & SV_COW_DROP_PV) {
4801                 /* OK, so we don't need to copy our buffer.  */
4802                 SvPOK_off(sv);
4803             } else {
4804                 SvGROW(sv, cur + 1);
4805                 Move(pvx,SvPVX(sv),cur,char);
4806                 SvCUR_set(sv, cur);
4807                 *SvEND(sv) = '\0';
4808             }
4809             if (len) {
4810                 sv_release_COW(sv, pvx, next);
4811             } else {
4812                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4813             }
4814             if (DEBUG_C_TEST) {
4815                 sv_dump(sv);
4816             }
4817         }
4818         else if (IN_PERL_RUNTIME)
4819             Perl_croak_no_modify(aTHX);
4820     }
4821 #else
4822     if (SvREADONLY(sv)) {
4823         if (SvFAKE(sv) && !isGV_with_GP(sv)) {
4824             const char * const pvx = SvPVX_const(sv);
4825             const STRLEN len = SvCUR(sv);
4826             SvFAKE_off(sv);
4827             SvREADONLY_off(sv);
4828             SvPV_set(sv, NULL);
4829             SvLEN_set(sv, 0);
4830             SvGROW(sv, len + 1);
4831             Move(pvx,SvPVX(sv),len,char);
4832             *SvEND(sv) = '\0';
4833             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4834         }
4835         else if (IN_PERL_RUNTIME)
4836             Perl_croak_no_modify(aTHX);
4837     }
4838 #endif
4839     if (SvROK(sv))
4840         sv_unref_flags(sv, flags);
4841     else if (SvFAKE(sv) && isGV_with_GP(sv))
4842         sv_unglob(sv);
4843     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_REGEXP) {
4844         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
4845            to sv_unglob. We only need it here, so inline it.  */
4846         const svtype new_type = SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
4847         SV *const temp = newSV_type(new_type);
4848         void *const temp_p = SvANY(sv);
4849
4850         if (new_type == SVt_PVMG) {
4851             SvMAGIC_set(temp, SvMAGIC(sv));
4852             SvMAGIC_set(sv, NULL);
4853             SvSTASH_set(temp, SvSTASH(sv));
4854             SvSTASH_set(sv, NULL);
4855         }
4856         SvCUR_set(temp, SvCUR(sv));
4857         /* Remember that SvPVX is in the head, not the body. */
4858         if (SvLEN(temp)) {
4859             SvLEN_set(temp, SvLEN(sv));
4860             /* This signals "buffer is owned by someone else" in sv_clear,
4861                which is the least effort way to stop it freeing the buffer.
4862             */
4863             SvLEN_set(sv, SvLEN(sv)+1);
4864         } else {
4865             /* Their buffer is already owned by someone else. */
4866             SvPVX(sv) = savepvn(SvPVX(sv), SvCUR(sv));
4867             SvLEN_set(temp, SvCUR(sv)+1);
4868         }
4869
4870         /* Now swap the rest of the bodies. */
4871
4872         SvFLAGS(sv) &= ~(SVf_FAKE|SVTYPEMASK);
4873         SvFLAGS(sv) |= new_type;
4874         SvANY(sv) = SvANY(temp);
4875
4876         SvFLAGS(temp) &= ~(SVTYPEMASK);
4877         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
4878         SvANY(temp) = temp_p;
4879
4880         SvREFCNT_dec(temp);
4881     }
4882 }
4883
4884 /*
4885 =for apidoc sv_chop
4886
4887 Efficient removal of characters from the beginning of the string buffer.
4888 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4889 the string buffer.  The C<ptr> becomes the first character of the adjusted
4890 string. Uses the "OOK hack".
4891
4892 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4893 refer to the same chunk of data.
4894
4895 The unfortunate similarity of this function's name to that of Perl's C<chop>
4896 operator is strictly coincidental.  This function works from the left;
4897 C<chop> works from the right.
4898
4899 =cut
4900 */
4901
4902 void
4903 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4904 {
4905     STRLEN delta;
4906     STRLEN old_delta;
4907     U8 *p;
4908 #ifdef DEBUGGING
4909     const U8 *evacp;
4910     STRLEN evacn;
4911 #endif
4912     STRLEN max_delta;
4913
4914     PERL_ARGS_ASSERT_SV_CHOP;
4915
4916     if (!ptr || !SvPOKp(sv))
4917         return;
4918     delta = ptr - SvPVX_const(sv);
4919     if (!delta) {
4920         /* Nothing to do.  */
4921         return;
4922     }
4923     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4924     if (delta > max_delta)
4925         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4926                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4927     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
4928     SV_CHECK_THINKFIRST(sv);
4929
4930     if (!SvOOK(sv)) {
4931         if (!SvLEN(sv)) { /* make copy of shared string */
4932             const char *pvx = SvPVX_const(sv);
4933             const STRLEN len = SvCUR(sv);
4934             SvGROW(sv, len + 1);
4935             Move(pvx,SvPVX(sv),len,char);
4936             *SvEND(sv) = '\0';
4937         }
4938         SvFLAGS(sv) |= SVf_OOK;
4939         old_delta = 0;
4940     } else {
4941         SvOOK_offset(sv, old_delta);
4942     }
4943     SvLEN_set(sv, SvLEN(sv) - delta);
4944     SvCUR_set(sv, SvCUR(sv) - delta);
4945     SvPV_set(sv, SvPVX(sv) + delta);
4946
4947     p = (U8 *)SvPVX_const(sv);
4948
4949 #ifdef DEBUGGING
4950     /* how many bytes were evacuated?  we will fill them with sentinel
4951        bytes, except for the part holding the new offset of course. */
4952     evacn = delta;
4953     if (old_delta)
4954         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
4955     assert(evacn);
4956     assert(evacn <= delta + old_delta);
4957     evacp = p - evacn;
4958 #endif
4959
4960     delta += old_delta;
4961     assert(delta);
4962     if (delta < 0x100) {
4963         *--p = (U8) delta;
4964     } else {
4965         *--p = 0;
4966         p -= sizeof(STRLEN);
4967         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4968     }
4969
4970 #ifdef DEBUGGING
4971     /* Fill the preceding buffer with sentinals to verify that no-one is
4972        using it.  */
4973     while (p > evacp) {
4974         --p;
4975         *p = (U8)PTR2UV(p);
4976     }
4977 #endif
4978 }
4979
4980 /*
4981 =for apidoc sv_catpvn
4982
4983 Concatenates the string onto the end of the string which is in the SV.  The
4984 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4985 status set, then the bytes appended should be valid UTF-8.
4986 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4987
4988 =for apidoc sv_catpvn_flags
4989
4990 Concatenates the string onto the end of the string which is in the SV.  The
4991 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4992 status set, then the bytes appended should be valid UTF-8.
4993 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4994 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4995 in terms of this function.
4996
4997 =cut
4998 */
4999
5000 void
5001 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
5002 {
5003     dVAR;
5004     STRLEN dlen;
5005     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
5006
5007     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
5008     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
5009
5010     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
5011       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5012          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5013          dlen = SvCUR(dsv);
5014       }
5015       else SvGROW(dsv, dlen + slen + 1);
5016       if (sstr == dstr)
5017         sstr = SvPVX_const(dsv);
5018       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5019       SvCUR_set(dsv, SvCUR(dsv) + slen);
5020     }
5021     else {
5022         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5023         const char * const send = sstr + slen;
5024         U8 *d;
5025
5026         /* Something this code does not account for, which I think is
5027            impossible; it would require the same pv to be treated as
5028            bytes *and* utf8, which would indicate a bug elsewhere. */
5029         assert(sstr != dstr);
5030
5031         SvGROW(dsv, dlen + slen * 2 + 1);
5032         d = (U8 *)SvPVX(dsv) + dlen;
5033
5034         while (sstr < send) {
5035             const UV uv = NATIVE_TO_ASCII((U8)*sstr++);
5036             if (UNI_IS_INVARIANT(uv))
5037                 *d++ = (U8)UTF_TO_NATIVE(uv);
5038             else {
5039                 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
5040                 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
5041             }
5042         }
5043         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5044     }
5045     *SvEND(dsv) = '\0';
5046     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5047     SvTAINT(dsv);
5048     if (flags & SV_SMAGIC)
5049         SvSETMAGIC(dsv);
5050 }
5051
5052 /*
5053 =for apidoc sv_catsv
5054
5055 Concatenates the string from SV C<ssv> onto the end of the string in
5056 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
5057 not 'set' magic.  See C<sv_catsv_mg>.
5058
5059 =for apidoc sv_catsv_flags
5060
5061 Concatenates the string from SV C<ssv> onto the end of the string in
5062 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
5063 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
5064 and C<sv_catsv_nomg> are implemented in terms of this function.
5065
5066 =cut */
5067
5068 void
5069 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
5070 {
5071     dVAR;
5072  
5073     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5074
5075    if (ssv) {
5076         STRLEN slen;
5077         const char *spv = SvPV_flags_const(ssv, slen, flags);
5078         if (spv) {
5079             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
5080                 mg_get(dsv);
5081             sv_catpvn_flags(dsv, spv, slen,
5082                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5083         }
5084     }
5085     if (flags & SV_SMAGIC)
5086         SvSETMAGIC(dsv);
5087 }
5088
5089 /*
5090 =for apidoc sv_catpv
5091
5092 Concatenates the string onto the end of the string which is in the SV.
5093 If the SV has the UTF-8 status set, then the bytes appended should be
5094 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5095
5096 =cut */
5097
5098 void
5099 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
5100 {
5101     dVAR;
5102     register STRLEN len;
5103     STRLEN tlen;
5104     char *junk;
5105
5106     PERL_ARGS_ASSERT_SV_CATPV;
5107
5108     if (!ptr)
5109         return;
5110     junk = SvPV_force(sv, tlen);
5111     len = strlen(ptr);
5112     SvGROW(sv, tlen + len + 1);
5113     if (ptr == junk)
5114         ptr = SvPVX_const(sv);
5115     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5116     SvCUR_set(sv, SvCUR(sv) + len);
5117     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5118     SvTAINT(sv);
5119 }
5120
5121 /*
5122 =for apidoc sv_catpv_flags
5123
5124 Concatenates the string onto the end of the string which is in the SV.
5125 If the SV has the UTF-8 status set, then the bytes appended should
5126 be valid UTF-8.  If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get>
5127 on the SVs if appropriate, else not.
5128
5129 =cut
5130 */
5131
5132 void
5133 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5134 {
5135     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5136     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5137 }
5138
5139 /*
5140 =for apidoc sv_catpv_mg
5141
5142 Like C<sv_catpv>, but also handles 'set' magic.
5143
5144 =cut
5145 */
5146
5147 void
5148 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
5149 {
5150     PERL_ARGS_ASSERT_SV_CATPV_MG;
5151
5152     sv_catpv(sv,ptr);
5153     SvSETMAGIC(sv);
5154 }
5155
5156 /*
5157 =for apidoc newSV
5158
5159 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5160 bytes of preallocated string space the SV should have.  An extra byte for a
5161 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5162 space is allocated.)  The reference count for the new SV is set to 1.
5163
5164 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5165 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5166 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5167 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5168 modules supporting older perls.
5169
5170 =cut
5171 */
5172
5173 SV *
5174 Perl_newSV(pTHX_ const STRLEN len)
5175 {
5176     dVAR;
5177     register SV *sv;
5178
5179     new_SV(sv);
5180     if (len) {
5181         sv_upgrade(sv, SVt_PV);
5182         SvGROW(sv, len + 1);
5183     }
5184     return sv;
5185 }
5186 /*
5187 =for apidoc sv_magicext
5188
5189 Adds magic to an SV, upgrading it if necessary. Applies the
5190 supplied vtable and returns a pointer to the magic added.
5191
5192 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5193 In particular, you can add magic to SvREADONLY SVs, and add more than
5194 one instance of the same 'how'.
5195
5196 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5197 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5198 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5199 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5200
5201 (This is now used as a subroutine by C<sv_magic>.)
5202
5203 =cut
5204 */
5205 MAGIC * 
5206 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5207                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5208 {
5209     dVAR;
5210     MAGIC* mg;
5211
5212     PERL_ARGS_ASSERT_SV_MAGICEXT;
5213
5214     SvUPGRADE(sv, SVt_PVMG);
5215     Newxz(mg, 1, MAGIC);
5216     mg->mg_moremagic = SvMAGIC(sv);
5217     SvMAGIC_set(sv, mg);
5218
5219     /* Sometimes a magic contains a reference loop, where the sv and
5220        object refer to each other.  To prevent a reference loop that
5221        would prevent such objects being freed, we look for such loops
5222        and if we find one we avoid incrementing the object refcount.
5223
5224        Note we cannot do this to avoid self-tie loops as intervening RV must
5225        have its REFCNT incremented to keep it in existence.
5226
5227     */
5228     if (!obj || obj == sv ||
5229         how == PERL_MAGIC_arylen ||
5230         how == PERL_MAGIC_symtab ||
5231         (SvTYPE(obj) == SVt_PVGV &&
5232             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5233              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5234              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5235     {
5236         mg->mg_obj = obj;
5237     }
5238     else {
5239         mg->mg_obj = SvREFCNT_inc_simple(obj);
5240         mg->mg_flags |= MGf_REFCOUNTED;
5241     }
5242
5243     /* Normal self-ties simply pass a null object, and instead of
5244        using mg_obj directly, use the SvTIED_obj macro to produce a
5245        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5246        with an RV obj pointing to the glob containing the PVIO.  In
5247        this case, to avoid a reference loop, we need to weaken the
5248        reference.
5249     */
5250
5251     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5252         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5253     {
5254       sv_rvweaken(obj);
5255     }
5256
5257     mg->mg_type = how;
5258     mg->mg_len = namlen;
5259     if (name) {
5260         if (namlen > 0)
5261             mg->mg_ptr = savepvn(name, namlen);
5262         else if (namlen == HEf_SVKEY) {
5263             /* Yes, this is casting away const. This is only for the case of
5264                HEf_SVKEY. I think we need to document this aberation of the
5265                constness of the API, rather than making name non-const, as
5266                that change propagating outwards a long way.  */
5267             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5268         } else
5269             mg->mg_ptr = (char *) name;
5270     }
5271     mg->mg_virtual = (MGVTBL *) vtable;
5272
5273     mg_magical(sv);
5274     if (SvGMAGICAL(sv))
5275         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5276     return mg;
5277 }
5278
5279 /*
5280 =for apidoc sv_magic
5281
5282 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5283 then adds a new magic item of type C<how> to the head of the magic list.
5284
5285 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5286 handling of the C<name> and C<namlen> arguments.
5287
5288 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5289 to add more than one instance of the same 'how'.
5290
5291 =cut
5292 */
5293
5294 void
5295 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
5296              const char *const name, const I32 namlen)
5297 {
5298     dVAR;
5299     const MGVTBL *vtable;
5300     MAGIC* mg;
5301     unsigned int flags;
5302     unsigned int vtable_index;
5303
5304     PERL_ARGS_ASSERT_SV_MAGIC;
5305
5306     if (how < 0 || (unsigned)how > C_ARRAY_LENGTH(PL_magic_data)
5307         || ((flags = PL_magic_data[how]),
5308             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5309             > magic_vtable_max))
5310         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5311
5312     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5313        Useful for attaching extension internal data to perl vars.
5314        Note that multiple extensions may clash if magical scalars
5315        etc holding private data from one are passed to another. */
5316
5317     vtable = (vtable_index == magic_vtable_max)
5318         ? NULL : PL_magic_vtables + vtable_index;
5319
5320 #ifdef PERL_OLD_COPY_ON_WRITE
5321     if (SvIsCOW(sv))
5322         sv_force_normal_flags(sv, 0);
5323 #endif
5324     if (SvREADONLY(sv)) {
5325         if (
5326             /* its okay to attach magic to shared strings; the subsequent
5327              * upgrade to PVMG will unshare the string */
5328             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
5329
5330             && IN_PERL_RUNTIME
5331             && !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5332            )
5333         {
5334             Perl_croak_no_modify(aTHX);
5335         }
5336     }
5337     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5338         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5339             /* sv_magic() refuses to add a magic of the same 'how' as an
5340                existing one
5341              */
5342             if (how == PERL_MAGIC_taint) {
5343                 mg->mg_len |= 1;
5344                 /* Any scalar which already had taint magic on which someone
5345                    (erroneously?) did SvIOK_on() or similar will now be
5346                    incorrectly sporting public "OK" flags.  */
5347                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5348             }
5349             return;
5350         }
5351     }
5352
5353     /* Rest of work is done else where */
5354     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5355
5356     switch (how) {
5357     case PERL_MAGIC_taint:
5358         mg->mg_len = 1;
5359         break;
5360     case PERL_MAGIC_ext:
5361     case PERL_MAGIC_dbfile:
5362         SvRMAGICAL_on(sv);
5363         break;
5364     }
5365 }
5366
5367 static int
5368 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5369 {
5370     MAGIC* mg;
5371     MAGIC** mgp;
5372
5373     assert(flags <= 1);
5374
5375     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5376         return 0;
5377     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5378     for (mg = *mgp; mg; mg = *mgp) {
5379         const MGVTBL* const virt = mg->mg_virtual;
5380         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5381             *mgp = mg->mg_moremagic;
5382             if (virt && virt->svt_free)
5383                 virt->svt_free(aTHX_ sv, mg);
5384             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5385                 if (mg->mg_len > 0)
5386                     Safefree(mg->mg_ptr);
5387                 else if (mg->mg_len == HEf_SVKEY)
5388                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5389                 else if (mg->mg_type == PERL_MAGIC_utf8)
5390                     Safefree(mg->mg_ptr);
5391             }
5392             if (mg->mg_flags & MGf_REFCOUNTED)
5393                 SvREFCNT_dec(mg->mg_obj);
5394             Safefree(mg);
5395         }
5396         else
5397             mgp = &mg->mg_moremagic;
5398     }
5399     if (SvMAGIC(sv)) {
5400         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5401             mg_magical(sv);     /*    else fix the flags now */
5402     }
5403     else {
5404         SvMAGICAL_off(sv);
5405         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5406     }
5407     return 0;
5408 }
5409
5410 /*
5411 =for apidoc sv_unmagic
5412
5413 Removes all magic of type C<type> from an SV.
5414
5415 =cut
5416 */
5417
5418 int
5419 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5420 {
5421     PERL_ARGS_ASSERT_SV_UNMAGIC;
5422     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5423 }
5424
5425 /*
5426 =for apidoc sv_unmagicext
5427
5428 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5429
5430 =cut
5431 */
5432
5433 int
5434 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5435 {
5436     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5437     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5438 }
5439
5440 /*
5441 =for apidoc sv_rvweaken
5442
5443 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5444 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5445 push a back-reference to this RV onto the array of backreferences
5446 associated with that magic. If the RV is magical, set magic will be
5447 called after the RV is cleared.
5448
5449 =cut
5450 */
5451
5452 SV *
5453 Perl_sv_rvweaken(pTHX_ SV *const sv)
5454 {
5455     SV *tsv;
5456
5457     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5458
5459     if (!SvOK(sv))  /* let undefs pass */
5460         return sv;
5461     if (!SvROK(sv))
5462         Perl_croak(aTHX_ "Can't weaken a nonreference");
5463     else if (SvWEAKREF(sv)) {
5464         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5465         return sv;
5466     }
5467     else if (SvREADONLY(sv)) croak_no_modify();
5468     tsv = SvRV(sv);
5469     Perl_sv_add_backref(aTHX_ tsv, sv);
5470     SvWEAKREF_on(sv);
5471     SvREFCNT_dec(tsv);
5472     return sv;
5473 }
5474
5475 /* Give tsv backref magic if it hasn't already got it, then push a
5476  * back-reference to sv onto the array associated with the backref magic.
5477  *
5478  * As an optimisation, if there's only one backref and it's not an AV,
5479  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5480  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5481  * active.)
5482  */
5483
5484 /* A discussion about the backreferences array and its refcount:
5485  *
5486  * The AV holding the backreferences is pointed to either as the mg_obj of
5487  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5488  * xhv_backreferences field. The array is created with a refcount
5489  * of 2. This means that if during global destruction the array gets
5490  * picked on before its parent to have its refcount decremented by the
5491  * random zapper, it won't actually be freed, meaning it's still there for
5492  * when its parent gets freed.
5493  *
5494  * When the parent SV is freed, the extra ref is killed by
5495  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5496  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5497  *
5498  * When a single backref SV is stored directly, it is not reference
5499  * counted.
5500  */
5501
5502 void
5503 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5504 {
5505     dVAR;
5506     SV **svp;
5507     AV *av = NULL;
5508     MAGIC *mg = NULL;
5509
5510     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5511
5512     /* find slot to store array or singleton backref */
5513
5514     if (SvTYPE(tsv) == SVt_PVHV) {
5515         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5516     } else {
5517         if (! ((mg =
5518             (SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL))))
5519         {
5520             sv_magic(tsv, NULL, PERL_MAGIC_backref, NULL, 0);
5521             mg = mg_find(tsv, PERL_MAGIC_backref);
5522         }
5523         svp = &(mg->mg_obj);
5524     }
5525
5526     /* create or retrieve the array */
5527
5528     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5529         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5530     ) {
5531         /* create array */
5532         av = newAV();
5533         AvREAL_off(av);
5534         SvREFCNT_inc_simple_void(av);
5535         /* av now has a refcnt of 2; see discussion above */
5536         if (*svp) {
5537             /* move single existing backref to the array */
5538             av_extend(av, 1);
5539             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5540         }
5541         *svp = (SV*)av;
5542         if (mg)
5543             mg->mg_flags |= MGf_REFCOUNTED;
5544     }
5545     else
5546         av = MUTABLE_AV(*svp);
5547
5548     if (!av) {
5549         /* optimisation: store single backref directly in HvAUX or mg_obj */
5550         *svp = sv;
5551         return;
5552     }
5553     /* push new backref */
5554     assert(SvTYPE(av) == SVt_PVAV);
5555     if (AvFILLp(av) >= AvMAX(av)) {
5556         av_extend(av, AvFILLp(av)+1);
5557     }
5558     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5559 }
5560
5561 /* delete a back-reference to ourselves from the backref magic associated
5562  * with the SV we point to.
5563  */
5564
5565 void
5566 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5567 {
5568     dVAR;
5569     SV **svp = NULL;
5570
5571     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5572
5573     if (SvTYPE(tsv) == SVt_PVHV) {
5574         if (SvOOK(tsv))
5575             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5576     }
5577     else {
5578         MAGIC *const mg
5579             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5580         svp =  mg ? &(mg->mg_obj) : NULL;
5581     }
5582
5583     if (!svp || !*svp)
5584         Perl_croak(aTHX_ "panic: del_backref");
5585
5586     if (SvTYPE(*svp) == SVt_PVAV) {
5587 #ifdef DEBUGGING
5588         int count = 1;
5589 #endif
5590         AV * const av = (AV*)*svp;
5591         SSize_t fill;
5592         assert(!SvIS_FREED(av));
5593         fill = AvFILLp(av);
5594         assert(fill > -1);
5595         svp = AvARRAY(av);
5596         /* for an SV with N weak references to it, if all those
5597          * weak refs are deleted, then sv_del_backref will be called
5598          * N times and O(N^2) compares will be done within the backref
5599          * array. To ameliorate this potential slowness, we:
5600          * 1) make sure this code is as tight as possible;
5601          * 2) when looking for SV, look for it at both the head and tail of the
5602          *    array first before searching the rest, since some create/destroy
5603          *    patterns will cause the backrefs to be freed in order.
5604          */
5605         if (*svp == sv) {
5606             AvARRAY(av)++;
5607             AvMAX(av)--;
5608         }
5609         else {
5610             SV **p = &svp[fill];
5611             SV *const topsv = *p;
5612             if (topsv != sv) {
5613 #ifdef DEBUGGING
5614                 count = 0;
5615 #endif
5616                 while (--p > svp) {
5617                     if (*p == sv) {
5618                         /* We weren't the last entry.
5619                            An unordered list has this property that you
5620                            can take the last element off the end to fill
5621                            the hole, and it's still an unordered list :-)
5622                         */
5623                         *p = topsv;
5624 #ifdef DEBUGGING
5625                         count++;
5626 #else
5627                         break; /* should only be one */
5628 #endif
5629                     }
5630                 }
5631             }
5632         }
5633         assert(count ==1);
5634         AvFILLp(av) = fill-1;
5635     }
5636     else {
5637         /* optimisation: only a single backref, stored directly */
5638         if (*svp != sv)
5639             Perl_croak(aTHX_ "panic: del_backref");
5640         *svp = NULL;
5641     }
5642
5643 }
5644
5645 void
5646 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5647 {
5648     SV **svp;
5649     SV **last;
5650     bool is_array;
5651
5652     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5653
5654     if (!av)
5655         return;
5656
5657     /* after multiple passes through Perl_sv_clean_all() for a thinngy
5658      * that has badly leaked, the backref array may have gotten freed,
5659      * since we only protect it against 1 round of cleanup */
5660     if (SvIS_FREED(av)) {
5661         if (PL_in_clean_all) /* All is fair */
5662             return;
5663         Perl_croak(aTHX_
5664                    "panic: magic_killbackrefs (freed backref AV/SV)");
5665     }
5666
5667
5668     is_array = (SvTYPE(av) == SVt_PVAV);
5669     if (is_array) {
5670         assert(!SvIS_FREED(av));
5671         svp = AvARRAY(av);
5672         if (svp)
5673             last = svp + AvFILLp(av);
5674     }
5675     else {
5676         /* optimisation: only a single backref, stored directly */
5677         svp = (SV**)&av;
5678         last = svp;
5679     }
5680
5681     if (svp) {
5682         while (svp <= last) {
5683             if (*svp) {
5684                 SV *const referrer = *svp;
5685                 if (SvWEAKREF(referrer)) {
5686                     /* XXX Should we check that it hasn't changed? */
5687                     assert(SvROK(referrer));
5688                     SvRV_set(referrer, 0);
5689                     SvOK_off(referrer);
5690                     SvWEAKREF_off(referrer);
5691                     SvSETMAGIC(referrer);
5692                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5693                            SvTYPE(referrer) == SVt_PVLV) {
5694                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5695                     /* You lookin' at me?  */
5696                     assert(GvSTASH(referrer));
5697                     assert(GvSTASH(referrer) == (const HV *)sv);
5698                     GvSTASH(referrer) = 0;
5699                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5700                            SvTYPE(referrer) == SVt_PVFM) {
5701                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5702                         /* You lookin' at me?  */
5703                         assert(CvSTASH(referrer));
5704                         assert(CvSTASH(referrer) == (const HV *)sv);
5705                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
5706                     }
5707                     else {
5708                         assert(SvTYPE(sv) == SVt_PVGV);
5709                         /* You lookin' at me?  */
5710                         assert(CvGV(referrer));
5711                         assert(CvGV(referrer) == (const GV *)sv);
5712                         anonymise_cv_maybe(MUTABLE_GV(sv),
5713                                                 MUTABLE_CV(referrer));
5714                     }
5715
5716                 } else {
5717                     Perl_croak(aTHX_
5718                                "panic: magic_killbackrefs (flags=%"UVxf")",
5719                                (UV)SvFLAGS(referrer));
5720                 }
5721
5722                 if (is_array)
5723                     *svp = NULL;
5724             }
5725             svp++;
5726         }
5727     }
5728     if (is_array) {
5729         AvFILLp(av) = -1;
5730         SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5731     }
5732     return;
5733 }
5734
5735 /*
5736 =for apidoc sv_insert
5737
5738 Inserts a string at the specified offset/length within the SV. Similar to
5739 the Perl substr() function. Handles get magic.
5740
5741 =for apidoc sv_insert_flags
5742
5743 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5744
5745 =cut
5746 */
5747
5748 void
5749 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5750 {
5751     dVAR;
5752     register char *big;
5753     register char *mid;
5754     register char *midend;
5755     register char *bigend;
5756     register SSize_t i;         /* better be sizeof(STRLEN) or bad things happen */
5757     STRLEN curlen;
5758
5759     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5760
5761     if (!bigstr)
5762         Perl_croak(aTHX_ "Can't modify non-existent substring");
5763     SvPV_force_flags(bigstr, curlen, flags);
5764     (void)SvPOK_only_UTF8(bigstr);
5765     if (offset + len > curlen) {
5766         SvGROW(bigstr, offset+len+1);
5767         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5768         SvCUR_set(bigstr, offset+len);
5769     }
5770
5771     SvTAINT(bigstr);
5772     i = littlelen - len;
5773     if (i > 0) {                        /* string might grow */
5774         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5775         mid = big + offset + len;
5776         midend = bigend = big + SvCUR(bigstr);
5777         bigend += i;
5778         *bigend = '\0';
5779         while (midend > mid)            /* shove everything down */
5780             *--bigend = *--midend;
5781         Move(little,big+offset,littlelen,char);
5782         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5783         SvSETMAGIC(bigstr);
5784         return;
5785     }
5786     else if (i == 0) {
5787         Move(little,SvPVX(bigstr)+offset,len,char);
5788         SvSETMAGIC(bigstr);
5789         return;
5790     }
5791
5792     big = SvPVX(bigstr);
5793     mid = big + offset;
5794     midend = mid + len;
5795     bigend = big + SvCUR(bigstr);
5796
5797     if (midend > bigend)
5798         Perl_croak(aTHX_ "panic: sv_insert");
5799
5800     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5801         if (littlelen) {
5802             Move(little, mid, littlelen,char);
5803             mid += littlelen;
5804         }
5805         i = bigend - midend;
5806         if (i > 0) {
5807             Move(midend, mid, i,char);
5808             mid += i;
5809         }
5810         *mid = '\0';
5811         SvCUR_set(bigstr, mid - big);
5812     }
5813     else if ((i = mid - big)) { /* faster from front */
5814         midend -= littlelen;
5815         mid = midend;
5816         Move(big, midend - i, i, char);
5817         sv_chop(bigstr,midend-i);
5818         if (littlelen)
5819             Move(little, mid, littlelen,char);
5820     }
5821     else if (littlelen) {
5822         midend -= littlelen;
5823         sv_chop(bigstr,midend);
5824         Move(little,midend,littlelen,char);
5825     }
5826     else {
5827         sv_chop(bigstr,midend);
5828     }
5829     SvSETMAGIC(bigstr);
5830 }
5831
5832 /*
5833 =for apidoc sv_replace
5834
5835 Make the first argument a copy of the second, then delete the original.
5836 The target SV physically takes over ownership of the body of the source SV
5837 and inherits its flags; however, the target keeps any magic it owns,
5838 and any magic in the source is discarded.
5839 Note that this is a rather specialist SV copying operation; most of the
5840 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5841
5842 =cut
5843 */
5844
5845 void
5846 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5847 {
5848     dVAR;
5849     const U32 refcnt = SvREFCNT(sv);
5850
5851     PERL_ARGS_ASSERT_SV_REPLACE;
5852
5853     SV_CHECK_THINKFIRST_COW_DROP(sv);
5854     if (SvREFCNT(nsv) != 1) {
5855         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
5856                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
5857     }
5858     if (SvMAGICAL(sv)) {
5859         if (SvMAGICAL(nsv))
5860             mg_free(nsv);
5861         else
5862             sv_upgrade(nsv, SVt_PVMG);
5863         SvMAGIC_set(nsv, SvMAGIC(sv));
5864         SvFLAGS(nsv) |= SvMAGICAL(sv);
5865         SvMAGICAL_off(sv);
5866         SvMAGIC_set(sv, NULL);
5867     }
5868     SvREFCNT(sv) = 0;
5869     sv_clear(sv);
5870     assert(!SvREFCNT(sv));
5871 #ifdef DEBUG_LEAKING_SCALARS
5872     sv->sv_flags  = nsv->sv_flags;
5873     sv->sv_any    = nsv->sv_any;
5874     sv->sv_refcnt = nsv->sv_refcnt;
5875     sv->sv_u      = nsv->sv_u;
5876 #else
5877     StructCopy(nsv,sv,SV);
5878 #endif
5879     if(SvTYPE(sv) == SVt_IV) {
5880         SvANY(sv)
5881             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5882     }
5883         
5884
5885 #ifdef PERL_OLD_COPY_ON_WRITE
5886     if (SvIsCOW_normal(nsv)) {
5887         /* We need to follow the pointers around the loop to make the
5888            previous SV point to sv, rather than nsv.  */
5889         SV *next;
5890         SV *current = nsv;
5891         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5892             assert(next);
5893             current = next;
5894             assert(SvPVX_const(current) == SvPVX_const(nsv));
5895         }
5896         /* Make the SV before us point to the SV after us.  */
5897         if (DEBUG_C_TEST) {
5898             PerlIO_printf(Perl_debug_log, "previous is\n");
5899             sv_dump(current);
5900             PerlIO_printf(Perl_debug_log,
5901                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5902                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5903         }
5904         SV_COW_NEXT_SV_SET(current, sv);
5905     }
5906 #endif
5907     SvREFCNT(sv) = refcnt;
5908     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5909     SvREFCNT(nsv) = 0;
5910     del_SV(nsv);
5911 }
5912
5913 /* We're about to free a GV which has a CV that refers back to us.
5914  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
5915  * field) */
5916
5917 STATIC void
5918 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
5919 {
5920     SV *gvname;
5921     GV *anongv;
5922
5923     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
5924
5925     /* be assertive! */
5926     assert(SvREFCNT(gv) == 0);
5927     assert(isGV(gv) && isGV_with_GP(gv));
5928     assert(GvGP(gv));
5929     assert(!CvANON(cv));
5930     assert(CvGV(cv) == gv);
5931
5932     /* will the CV shortly be freed by gp_free() ? */
5933     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
5934         SvANY(cv)->xcv_gv = NULL;
5935         return;
5936     }
5937
5938     /* if not, anonymise: */
5939     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
5940                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
5941                     : newSVpvn_flags( "__ANON__", 8, 0 );
5942     sv_catpvs(gvname, "::__ANON__");
5943     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
5944     SvREFCNT_dec(gvname);
5945
5946     CvANON_on(cv);
5947     CvCVGV_RC_on(cv);
5948     SvANY(cv)->xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
5949 }
5950
5951
5952 /*
5953 =for apidoc sv_clear
5954
5955 Clear an SV: call any destructors, free up any memory used by the body,
5956 and free the body itself. The SV's head is I<not> freed, although
5957 its type is set to all 1's so that it won't inadvertently be assumed
5958 to be live during global destruction etc.
5959 This function should only be called when REFCNT is zero. Most of the time
5960 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5961 instead.
5962
5963 =cut
5964 */
5965
5966 void
5967 Perl_sv_clear(pTHX_ SV *const orig_sv)
5968 {
5969     dVAR;
5970     HV *stash;
5971     U32 type;
5972     const struct body_details *sv_type_details;
5973     SV* iter_sv = NULL;
5974     SV* next_sv = NULL;
5975     register SV *sv = orig_sv;
5976     STRLEN hash_index;
5977
5978     PERL_ARGS_ASSERT_SV_CLEAR;
5979
5980     /* within this loop, sv is the SV currently being freed, and
5981      * iter_sv is the most recent AV or whatever that's being iterated
5982      * over to provide more SVs */
5983
5984     while (sv) {
5985
5986         type = SvTYPE(sv);
5987
5988         assert(SvREFCNT(sv) == 0);
5989         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
5990
5991         if (type <= SVt_IV) {
5992             /* See the comment in sv.h about the collusion between this
5993              * early return and the overloading of the NULL slots in the
5994              * size table.  */
5995             if (SvROK(sv))
5996                 goto free_rv;
5997             SvFLAGS(sv) &= SVf_BREAK;
5998             SvFLAGS(sv) |= SVTYPEMASK;
5999             goto free_head;
6000         }
6001
6002         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
6003
6004         if (type >= SVt_PVMG) {
6005             if (SvOBJECT(sv)) {
6006                 if (!curse(sv, 1)) goto get_next_sv;
6007                 type = SvTYPE(sv); /* destructor may have changed it */
6008             }
6009             /* Free back-references before magic, in case the magic calls
6010              * Perl code that has weak references to sv. */
6011             if (type == SVt_PVHV) {
6012                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6013                 if (SvMAGIC(sv))
6014                     mg_free(sv);
6015             }
6016             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
6017                 SvREFCNT_dec(SvOURSTASH(sv));
6018             } else if (SvMAGIC(sv)) {
6019                 /* Free back-references before other types of magic. */
6020                 sv_unmagic(sv, PERL_MAGIC_backref);
6021                 mg_free(sv);
6022             }
6023             if (type == SVt_PVMG && SvPAD_TYPED(sv))
6024                 SvREFCNT_dec(SvSTASH(sv));
6025         }
6026         switch (type) {
6027             /* case SVt_BIND: */
6028         case SVt_PVIO:
6029             if (IoIFP(sv) &&
6030                 IoIFP(sv) != PerlIO_stdin() &&
6031                 IoIFP(sv) != PerlIO_stdout() &&
6032                 IoIFP(sv) != PerlIO_stderr() &&
6033                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6034             {
6035                 io_close(MUTABLE_IO(sv), FALSE);
6036             }
6037             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6038                 PerlDir_close(IoDIRP(sv));
6039             IoDIRP(sv) = (DIR*)NULL;
6040             Safefree(IoTOP_NAME(sv));
6041             Safefree(IoFMT_NAME(sv));
6042             Safefree(IoBOTTOM_NAME(sv));
6043             goto freescalar;
6044         case SVt_REGEXP:
6045             /* FIXME for plugins */
6046             pregfree2((REGEXP*) sv);
6047             goto freescalar;
6048         case SVt_PVCV:
6049         case SVt_PVFM:
6050             cv_undef(MUTABLE_CV(sv));
6051             /* If we're in a stash, we don't own a reference to it.
6052              * However it does have a back reference to us, which needs to
6053              * be cleared.  */
6054             if ((stash = CvSTASH(sv)))
6055                 sv_del_backref(MUTABLE_SV(stash), sv);
6056             goto freescalar;
6057         case SVt_PVHV:
6058             if (PL_last_swash_hv == (const HV *)sv) {
6059                 PL_last_swash_hv = NULL;
6060             }
6061             if (HvTOTALKEYS((HV*)sv) > 0) {
6062                 const char *name;
6063                 /* this statement should match the one at the beginning of
6064                  * hv_undef_flags() */
6065                 if (   PL_phase != PERL_PHASE_DESTRUCT
6066                     && (name = HvNAME((HV*)sv)))
6067                 {
6068                     if (PL_stashcache)
6069                         (void)hv_delete(PL_stashcache, name,
6070                             HvNAMEUTF8((HV*)sv) ? -HvNAMELEN_get((HV*)sv) : HvNAMELEN_get((HV*)sv), G_DISCARD);
6071                     hv_name_set((HV*)sv, NULL, 0, 0);
6072                 }
6073
6074                 /* save old iter_sv in unused SvSTASH field */
6075                 assert(!SvOBJECT(sv));
6076                 SvSTASH(sv) = (HV*)iter_sv;
6077                 iter_sv = sv;
6078
6079                 /* XXX ideally we should save the old value of hash_index
6080                  * too, but I can't think of any place to hide it. The
6081                  * effect of not saving it is that for freeing hashes of
6082                  * hashes, we become quadratic in scanning the HvARRAY of
6083                  * the top hash looking for new entries to free; but
6084                  * hopefully this will be dwarfed by the freeing of all
6085                  * the nested hashes. */
6086                 hash_index = 0;
6087                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6088                 goto get_next_sv; /* process this new sv */
6089             }
6090             /* free empty hash */
6091             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6092             assert(!HvARRAY((HV*)sv));
6093             break;
6094         case SVt_PVAV:
6095             {
6096                 AV* av = MUTABLE_AV(sv);
6097                 if (PL_comppad == av) {
6098                     PL_comppad = NULL;
6099                     PL_curpad = NULL;
6100                 }
6101                 if (AvREAL(av) && AvFILLp(av) > -1) {
6102                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6103                     /* save old iter_sv in top-most slot of AV,
6104                      * and pray that it doesn't get wiped in the meantime */
6105                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6106                     iter_sv = sv;
6107                     goto get_next_sv; /* process this new sv */
6108                 }
6109                 Safefree(AvALLOC(av));
6110             }
6111
6112             break;
6113         case SVt_PVLV:
6114             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6115                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6116                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6117                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6118             }
6119             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6120                 SvREFCNT_dec(LvTARG(sv));
6121         case SVt_PVGV:
6122             if (isGV_with_GP(sv)) {
6123                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6124                    && HvENAME_get(stash))
6125                     mro_method_changed_in(stash);
6126                 gp_free(MUTABLE_GV(sv));
6127                 if (GvNAME_HEK(sv))
6128                     unshare_hek(GvNAME_HEK(sv));
6129                 /* If we're in a stash, we don't own a reference to it.
6130                  * However it does have a back reference to us, which
6131                  * needs to be cleared.  */
6132                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6133                         sv_del_backref(MUTABLE_SV(stash), sv);
6134             }
6135             /* FIXME. There are probably more unreferenced pointers to SVs
6136              * in the interpreter struct that we should check and tidy in
6137              * a similar fashion to this:  */
6138             if ((const GV *)sv == PL_last_in_gv)
6139                 PL_last_in_gv = NULL;
6140         case SVt_PVMG:
6141         case SVt_PVNV:
6142         case SVt_PVIV:
6143         case SVt_PV:
6144           freescalar:
6145             /* Don't bother with SvOOK_off(sv); as we're only going to
6146              * free it.  */
6147             if (SvOOK(sv)) {
6148                 STRLEN offset;
6149                 SvOOK_offset(sv, offset);
6150                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6151                 /* Don't even bother with turning off the OOK flag.  */
6152             }
6153             if (SvROK(sv)) {
6154             free_rv:
6155                 {
6156                     SV * const target = SvRV(sv);
6157                     if (SvWEAKREF(sv))
6158                         sv_del_backref(target, sv);
6159                     else
6160                         next_sv = target;
6161                 }
6162             }
6163 #ifdef PERL_OLD_COPY_ON_WRITE
6164             else if (SvPVX_const(sv)
6165                      && !(SvTYPE(sv) == SVt_PVIO
6166                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6167             {
6168                 if (SvIsCOW(sv)) {
6169                     if (DEBUG_C_TEST) {
6170                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6171                         sv_dump(sv);
6172                     }
6173                     if (SvLEN(sv)) {
6174                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6175                     } else {
6176                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6177                     }
6178
6179                     SvFAKE_off(sv);
6180                 } else if (SvLEN(sv)) {
6181                     Safefree(SvPVX_const(sv));
6182                 }
6183             }
6184 #else
6185             else if (SvPVX_const(sv) && SvLEN(sv)
6186                      && !(SvTYPE(sv) == SVt_PVIO
6187                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6188                 Safefree(SvPVX_mutable(sv));
6189             else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
6190                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6191                 SvFAKE_off(sv);
6192             }
6193 #endif
6194             break;
6195         case SVt_NV:
6196             break;
6197         }
6198
6199       free_body:
6200
6201         SvFLAGS(sv) &= SVf_BREAK;
6202         SvFLAGS(sv) |= SVTYPEMASK;
6203
6204         sv_type_details = bodies_by_type + type;
6205         if (sv_type_details->arena) {
6206             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6207                      &PL_body_roots[type]);
6208         }
6209         else if (sv_type_details->body_size) {
6210             safefree(SvANY(sv));
6211         }
6212
6213       free_head:
6214         /* caller is responsible for freeing the head of the original sv */
6215         if (sv != orig_sv && !SvREFCNT(sv))
6216             del_SV(sv);
6217
6218         /* grab and free next sv, if any */
6219       get_next_sv:
6220         while (1) {
6221             sv = NULL;
6222             if (next_sv) {
6223                 sv = next_sv;
6224                 next_sv = NULL;
6225             }
6226             else if (!iter_sv) {
6227                 break;
6228             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6229                 AV *const av = (AV*)iter_sv;
6230                 if (AvFILLp(av) > -1) {
6231                     sv = AvARRAY(av)[AvFILLp(av)--];
6232                 }
6233                 else { /* no more elements of current AV to free */
6234                     sv = iter_sv;
6235                     type = SvTYPE(sv);
6236                     /* restore previous value, squirrelled away */
6237                     iter_sv = AvARRAY(av)[AvMAX(av)];
6238                     Safefree(AvALLOC(av));
6239                     goto free_body;
6240                 }
6241             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6242                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6243                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6244                     /* no more elements of current HV to free */
6245                     sv = iter_sv;
6246                     type = SvTYPE(sv);
6247                     /* Restore previous value of iter_sv, squirrelled away */
6248                     assert(!SvOBJECT(sv));
6249                     iter_sv = (SV*)SvSTASH(sv);
6250
6251                     /* ideally we should restore the old hash_index here,
6252                      * but we don't currently save the old value */
6253                     hash_index = 0;
6254
6255                     /* free any remaining detritus from the hash struct */
6256                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6257                     assert(!HvARRAY((HV*)sv));
6258                     goto free_body;
6259                 }
6260             }
6261
6262             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6263
6264             if (!sv)
6265                 continue;
6266             if (!SvREFCNT(sv)) {
6267                 sv_free(sv);
6268                 continue;
6269             }
6270             if (--(SvREFCNT(sv)))
6271                 continue;
6272 #ifdef DEBUGGING
6273             if (SvTEMP(sv)) {
6274                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6275                          "Attempt to free temp prematurely: SV 0x%"UVxf
6276                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6277                 continue;
6278             }
6279 #endif
6280             if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6281                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6282                 SvREFCNT(sv) = (~(U32)0)/2;
6283                 continue;
6284             }
6285             break;
6286         } /* while 1 */
6287
6288     } /* while sv */
6289 }
6290
6291 /* This routine curses the sv itself, not the object referenced by sv. So
6292    sv does not have to be ROK. */
6293
6294 static bool
6295 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6296     dVAR;
6297
6298     PERL_ARGS_ASSERT_CURSE;
6299     assert(SvOBJECT(sv));
6300
6301     if (PL_defstash &&  /* Still have a symbol table? */
6302         SvDESTROYABLE(sv))
6303     {
6304         dSP;
6305         HV* stash;
6306         do {
6307             CV* destructor;
6308             stash = SvSTASH(sv);
6309             destructor = StashHANDLER(stash,DESTROY);
6310             if (destructor
6311                 /* A constant subroutine can have no side effects, so
6312                    don't bother calling it.  */
6313                 && !CvCONST(destructor)
6314                 /* Don't bother calling an empty destructor */
6315                 && (CvISXSUB(destructor)
6316                 || (CvSTART(destructor)
6317                     && (CvSTART(destructor)->op_next->op_type
6318                                         != OP_LEAVESUB))))
6319             {
6320                 SV* const tmpref = newRV(sv);
6321                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6322                 ENTER;
6323                 PUSHSTACKi(PERLSI_DESTROY);
6324                 EXTEND(SP, 2);
6325                 PUSHMARK(SP);
6326                 PUSHs(tmpref);
6327                 PUTBACK;
6328                 call_sv(MUTABLE_SV(destructor),
6329                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6330                 POPSTACK;
6331                 SPAGAIN;
6332                 LEAVE;
6333                 if(SvREFCNT(tmpref) < 2) {
6334                     /* tmpref is not kept alive! */
6335                     SvREFCNT(sv)--;
6336                     SvRV_set(tmpref, NULL);
6337                     SvROK_off(tmpref);
6338                 }
6339                 SvREFCNT_dec(tmpref);
6340             }
6341         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6342
6343
6344         if (check_refcnt && SvREFCNT(sv)) {
6345             if (PL_in_clean_objs)
6346                 Perl_croak(aTHX_
6347                   "DESTROY created new reference to dead object '%"HEKf"'",
6348                    HEKfARG(HvNAME_HEK(stash)));
6349             /* DESTROY gave object new lease on life */
6350             return FALSE;
6351         }
6352     }
6353
6354     if (SvOBJECT(sv)) {
6355         SvREFCNT_dec(SvSTASH(sv)); /* possibly of changed persuasion */
6356         SvOBJECT_off(sv);       /* Curse the object. */
6357         if (SvTYPE(sv) != SVt_PVIO)
6358             --PL_sv_objcount;/* XXX Might want something more general */
6359     }
6360     return TRUE;
6361 }
6362
6363 /*
6364 =for apidoc sv_newref
6365
6366 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
6367 instead.
6368
6369 =cut
6370 */
6371
6372 SV *
6373 Perl_sv_newref(pTHX_ SV *const sv)
6374 {
6375     PERL_UNUSED_CONTEXT;
6376     if (sv)
6377         (SvREFCNT(sv))++;
6378     return sv;
6379 }
6380
6381 /*
6382 =for apidoc sv_free
6383
6384 Decrement an SV's reference count, and if it drops to zero, call
6385 C<sv_clear> to invoke destructors and free up any memory used by
6386 the body; finally, deallocate the SV's head itself.
6387 Normally called via a wrapper macro C<SvREFCNT_dec>.
6388
6389 =cut
6390 */
6391
6392 void
6393 Perl_sv_free(pTHX_ SV *const sv)
6394 {
6395     dVAR;
6396     if (!sv)
6397         return;
6398     if (SvREFCNT(sv) == 0) {
6399         if (SvFLAGS(sv) & SVf_BREAK)
6400             /* this SV's refcnt has been artificially decremented to
6401              * trigger cleanup */
6402             return;
6403         if (PL_in_clean_all) /* All is fair */
6404             return;
6405         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6406             /* make sure SvREFCNT(sv)==0 happens very seldom */
6407             SvREFCNT(sv) = (~(U32)0)/2;
6408             return;
6409         }
6410         if (ckWARN_d(WARN_INTERNAL)) {
6411 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6412             Perl_dump_sv_child(aTHX_ sv);
6413 #else
6414   #ifdef DEBUG_LEAKING_SCALARS
6415             sv_dump(sv);
6416   #endif
6417 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6418             if (PL_warnhook == PERL_WARNHOOK_FATAL
6419                 || ckDEAD(packWARN(WARN_INTERNAL))) {
6420                 /* Don't let Perl_warner cause us to escape our fate:  */
6421                 abort();
6422             }
6423 #endif
6424             /* This may not return:  */
6425             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6426                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
6427                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6428 #endif
6429         }
6430 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6431         abort();
6432 #endif
6433         return;
6434     }
6435     if (--(SvREFCNT(sv)) > 0)
6436         return;
6437     Perl_sv_free2(aTHX_ sv);
6438 }
6439
6440 void
6441 Perl_sv_free2(pTHX_ SV *const sv)
6442 {
6443     dVAR;
6444
6445     PERL_ARGS_ASSERT_SV_FREE2;
6446
6447 #ifdef DEBUGGING
6448     if (SvTEMP(sv)) {
6449         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6450                          "Attempt to free temp prematurely: SV 0x%"UVxf
6451                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6452         return;
6453     }
6454 #endif
6455     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6456         /* make sure SvREFCNT(sv)==0 happens very seldom */
6457         SvREFCNT(sv) = (~(U32)0)/2;
6458         return;
6459     }
6460     sv_clear(sv);
6461     if (! SvREFCNT(sv))
6462         del_SV(sv);
6463 }
6464
6465 /*
6466 =for apidoc sv_len
6467
6468 Returns the length of the string in the SV. Handles magic and type
6469 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
6470
6471 =cut
6472 */
6473
6474 STRLEN
6475 Perl_sv_len(pTHX_ register SV *const sv)
6476 {
6477     STRLEN len;
6478
6479     if (!sv)
6480         return 0;
6481
6482     if (SvGMAGICAL(sv))
6483         len = mg_length(sv);
6484     else
6485         (void)SvPV_const(sv, len);
6486     return len;
6487 }
6488
6489 /*
6490 =for apidoc sv_len_utf8
6491
6492 Returns the number of characters in the string in an SV, counting wide
6493 UTF-8 bytes as a single character. Handles magic and type coercion.
6494
6495 =cut
6496 */
6497
6498 /*
6499  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6500  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6501  * (Note that the mg_len is not the length of the mg_ptr field.
6502  * This allows the cache to store the character length of the string without
6503  * needing to malloc() extra storage to attach to the mg_ptr.)
6504  *
6505  */
6506
6507 STRLEN
6508 Perl_sv_len_utf8(pTHX_ register SV *const sv)
6509 {
6510     if (!sv)
6511         return 0;
6512
6513     if (SvGMAGICAL(sv))
6514         return mg_length(sv);
6515     else
6516     {
6517         STRLEN len;
6518         const U8 *s = (U8*)SvPV_const(sv, len);
6519
6520         if (PL_utf8cache) {
6521             STRLEN ulen;
6522             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6523
6524             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6525                 if (mg->mg_len != -1)
6526                     ulen = mg->mg_len;
6527                 else {
6528                     /* We can use the offset cache for a headstart.
6529                        The longer value is stored in the first pair.  */
6530                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6531
6532                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6533                                                        s + len);
6534                 }
6535                 
6536                 if (PL_utf8cache < 0) {
6537                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6538                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6539                 }
6540             }
6541             else {
6542                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6543                 utf8_mg_len_cache_update(sv, &mg, ulen);
6544             }
6545             return ulen;
6546         }
6547         return Perl_utf8_length(aTHX_ s, s + len);
6548     }
6549 }
6550
6551 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6552    offset.  */
6553 static STRLEN
6554 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6555                       STRLEN *const uoffset_p, bool *const at_end)
6556 {
6557     const U8 *s = start;
6558     STRLEN uoffset = *uoffset_p;
6559
6560     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6561
6562     while (s < send && uoffset) {
6563         --uoffset;
6564         s += UTF8SKIP(s);
6565     }
6566     if (s == send) {
6567         *at_end = TRUE;
6568     }
6569     else if (s > send) {
6570         *at_end = TRUE;
6571         /* This is the existing behaviour. Possibly it should be a croak, as
6572            it's actually a bounds error  */
6573         s = send;
6574     }
6575     *uoffset_p -= uoffset;
6576     return s - start;
6577 }
6578
6579 /* Given the length of the string in both bytes and UTF-8 characters, decide
6580    whether to walk forwards or backwards to find the byte corresponding to
6581    the passed in UTF-8 offset.  */
6582 static STRLEN
6583 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6584                     STRLEN uoffset, const STRLEN uend)
6585 {
6586     STRLEN backw = uend - uoffset;
6587
6588     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6589
6590     if (uoffset < 2 * backw) {
6591         /* The assumption is that going forwards is twice the speed of going
6592            forward (that's where the 2 * backw comes from).
6593            (The real figure of course depends on the UTF-8 data.)  */
6594         const U8 *s = start;
6595
6596         while (s < send && uoffset--)
6597             s += UTF8SKIP(s);
6598         assert (s <= send);
6599         if (s > send)
6600             s = send;
6601         return s - start;
6602     }
6603
6604     while (backw--) {
6605         send--;
6606         while (UTF8_IS_CONTINUATION(*send))
6607             send--;
6608     }
6609     return send - start;
6610 }
6611
6612 /* For the string representation of the given scalar, find the byte
6613    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6614    give another position in the string, *before* the sought offset, which
6615    (which is always true, as 0, 0 is a valid pair of positions), which should
6616    help reduce the amount of linear searching.
6617    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6618    will be used to reduce the amount of linear searching. The cache will be
6619    created if necessary, and the found value offered to it for update.  */
6620 static STRLEN
6621 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6622                     const U8 *const send, STRLEN uoffset,
6623                     STRLEN uoffset0, STRLEN boffset0)
6624 {
6625     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6626     bool found = FALSE;
6627     bool at_end = FALSE;
6628
6629     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6630
6631     assert (uoffset >= uoffset0);
6632
6633     if (!uoffset)
6634         return 0;
6635
6636     if (!SvREADONLY(sv)
6637         && PL_utf8cache
6638         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6639                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6640         if ((*mgp)->mg_ptr) {
6641             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6642             if (cache[0] == uoffset) {
6643                 /* An exact match. */
6644                 return cache[1];
6645             }
6646             if (cache[2] == uoffset) {
6647                 /* An exact match. */
6648                 return cache[3];
6649             }
6650
6651             if (cache[0] < uoffset) {
6652                 /* The cache already knows part of the way.   */
6653                 if (cache[0] > uoffset0) {
6654                     /* The cache knows more than the passed in pair  */
6655                     uoffset0 = cache[0];
6656                     boffset0 = cache[1];
6657                 }
6658                 if ((*mgp)->mg_len != -1) {
6659                     /* And we know the end too.  */
6660                     boffset = boffset0
6661                         + sv_pos_u2b_midway(start + boffset0, send,
6662                                               uoffset - uoffset0,
6663                                               (*mgp)->mg_len - uoffset0);
6664                 } else {
6665                     uoffset -= uoffset0;
6666                     boffset = boffset0
6667                         + sv_pos_u2b_forwards(start + boffset0,
6668                                               send, &uoffset, &at_end);
6669                     uoffset += uoffset0;
6670                 }
6671             }
6672             else if (cache[2] < uoffset) {
6673                 /* We're between the two cache entries.  */
6674                 if (cache[2] > uoffset0) {
6675                     /* and the cache knows more than the passed in pair  */
6676                     uoffset0 = cache[2];
6677                     boffset0 = cache[3];
6678                 }
6679
6680                 boffset = boffset0
6681                     + sv_pos_u2b_midway(start + boffset0,
6682                                           start + cache[1],
6683                                           uoffset - uoffset0,
6684                                           cache[0] - uoffset0);
6685             } else {
6686                 boffset = boffset0
6687                     + sv_pos_u2b_midway(start + boffset0,
6688                                           start + cache[3],
6689                                           uoffset - uoffset0,
6690                                           cache[2] - uoffset0);
6691             }
6692             found = TRUE;
6693         }
6694         else if ((*mgp)->mg_len != -1) {
6695             /* If we can take advantage of a passed in offset, do so.  */
6696             /* In fact, offset0 is either 0, or less than offset, so don't
6697                need to worry about the other possibility.  */
6698             boffset = boffset0
6699                 + sv_pos_u2b_midway(start + boffset0, send,
6700                                       uoffset - uoffset0,
6701                                       (*mgp)->mg_len - uoffset0);
6702             found = TRUE;
6703         }
6704     }
6705
6706     if (!found || PL_utf8cache < 0) {
6707         STRLEN real_boffset;
6708         uoffset -= uoffset0;
6709         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6710                                                       send, &uoffset, &at_end);
6711         uoffset += uoffset0;
6712
6713         if (found && PL_utf8cache < 0)
6714             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
6715                                        real_boffset, sv);
6716         boffset = real_boffset;
6717     }
6718
6719     if (PL_utf8cache) {
6720         if (at_end)
6721             utf8_mg_len_cache_update(sv, mgp, uoffset);
6722         else
6723             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6724     }
6725     return boffset;
6726 }
6727
6728
6729 /*
6730 =for apidoc sv_pos_u2b_flags
6731
6732 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6733 the start of the string, to a count of the equivalent number of bytes; if
6734 lenp is non-zero, it does the same to lenp, but this time starting from
6735 the offset, rather than from the start of the string. Handles type coercion.
6736 I<flags> is passed to C<SvPV_flags>, and usually should be
6737 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
6738
6739 =cut
6740 */
6741
6742 /*
6743  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
6744  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6745  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6746  *
6747  */
6748
6749 STRLEN
6750 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
6751                       U32 flags)
6752 {
6753     const U8 *start;
6754     STRLEN len;
6755     STRLEN boffset;
6756
6757     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
6758
6759     start = (U8*)SvPV_flags(sv, len, flags);
6760     if (len) {
6761         const U8 * const send = start + len;
6762         MAGIC *mg = NULL;
6763         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
6764
6765         if (lenp
6766             && *lenp /* don't bother doing work for 0, as its bytes equivalent
6767                         is 0, and *lenp is already set to that.  */) {
6768             /* Convert the relative offset to absolute.  */
6769             const STRLEN uoffset2 = uoffset + *lenp;
6770             const STRLEN boffset2
6771                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6772                                       uoffset, boffset) - boffset;
6773
6774             *lenp = boffset2;
6775         }
6776     } else {
6777         if (lenp)
6778             *lenp = 0;
6779         boffset = 0;
6780     }
6781
6782     return boffset;
6783 }
6784
6785 /*
6786 =for apidoc sv_pos_u2b
6787
6788 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6789 the start of the string, to a count of the equivalent number of bytes; if
6790 lenp is non-zero, it does the same to lenp, but this time starting from
6791 the offset, rather than from the start of the string. Handles magic and
6792 type coercion.
6793
6794 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
6795 than 2Gb.
6796
6797 =cut
6798 */
6799
6800 /*
6801  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6802  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6803  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6804  *
6805  */
6806
6807 /* This function is subject to size and sign problems */
6808
6809 void
6810 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6811 {
6812     PERL_ARGS_ASSERT_SV_POS_U2B;
6813
6814     if (lenp) {
6815         STRLEN ulen = (STRLEN)*lenp;
6816         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
6817                                          SV_GMAGIC|SV_CONST_RETURN);
6818         *lenp = (I32)ulen;
6819     } else {
6820         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
6821                                          SV_GMAGIC|SV_CONST_RETURN);
6822     }
6823 }
6824
6825 static void
6826 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
6827                            const STRLEN ulen)
6828 {
6829     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
6830     if (SvREADONLY(sv))
6831         return;
6832
6833     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6834                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6835         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
6836     }
6837     assert(*mgp);
6838
6839     (*mgp)->mg_len = ulen;
6840     /* For now, treat "overflowed" as "still unknown". See RT #72924.  */
6841     if (ulen != (STRLEN) (*mgp)->mg_len)
6842         (*mgp)->mg_len = -1;
6843 }
6844
6845 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6846    byte length pairing. The (byte) length of the total SV is passed in too,
6847    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6848    may not have updated SvCUR, so we can't rely on reading it directly.
6849
6850    The proffered utf8/byte length pairing isn't used if the cache already has
6851    two pairs, and swapping either for the proffered pair would increase the
6852    RMS of the intervals between known byte offsets.
6853
6854    The cache itself consists of 4 STRLEN values
6855    0: larger UTF-8 offset
6856    1: corresponding byte offset
6857    2: smaller UTF-8 offset
6858    3: corresponding byte offset
6859
6860    Unused cache pairs have the value 0, 0.
6861    Keeping the cache "backwards" means that the invariant of
6862    cache[0] >= cache[2] is maintained even with empty slots, which means that
6863    the code that uses it doesn't need to worry if only 1 entry has actually
6864    been set to non-zero.  It also makes the "position beyond the end of the
6865    cache" logic much simpler, as the first slot is always the one to start
6866    from.   
6867 */
6868 static void
6869 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6870                            const STRLEN utf8, const STRLEN blen)
6871 {
6872     STRLEN *cache;
6873
6874     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6875
6876     if (SvREADONLY(sv))
6877         return;
6878
6879     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6880                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6881         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6882                            0);
6883         (*mgp)->mg_len = -1;
6884     }
6885     assert(*mgp);
6886
6887     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6888         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6889         (*mgp)->mg_ptr = (char *) cache;
6890     }
6891     assert(cache);
6892
6893     if (PL_utf8cache < 0 && SvPOKp(sv)) {
6894         /* SvPOKp() because it's possible that sv has string overloading, and
6895            therefore is a reference, hence SvPVX() is actually a pointer.
6896            This cures the (very real) symptoms of RT 69422, but I'm not actually
6897            sure whether we should even be caching the results of UTF-8
6898            operations on overloading, given that nothing stops overloading
6899            returning a different value every time it's called.  */
6900         const U8 *start = (const U8 *) SvPVX_const(sv);
6901         const STRLEN realutf8 = utf8_length(start, start + byte);
6902
6903         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
6904                                    sv);
6905     }
6906
6907     /* Cache is held with the later position first, to simplify the code
6908        that deals with unbounded ends.  */
6909        
6910     ASSERT_UTF8_CACHE(cache);
6911     if (cache[1] == 0) {
6912         /* Cache is totally empty  */
6913         cache[0] = utf8;
6914         cache[1] = byte;
6915     } else if (cache[3] == 0) {
6916         if (byte > cache[1]) {
6917             /* New one is larger, so goes first.  */
6918             cache[2] = cache[0];
6919             cache[3] = cache[1];
6920             cache[0] = utf8;
6921             cache[1] = byte;
6922         } else {
6923             cache[2] = utf8;
6924             cache[3] = byte;
6925         }
6926     } else {
6927 #define THREEWAY_SQUARE(a,b,c,d) \
6928             ((float)((d) - (c))) * ((float)((d) - (c))) \
6929             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6930                + ((float)((b) - (a))) * ((float)((b) - (a)))
6931
6932         /* Cache has 2 slots in use, and we know three potential pairs.
6933            Keep the two that give the lowest RMS distance. Do the
6934            calculation in bytes simply because we always know the byte
6935            length.  squareroot has the same ordering as the positive value,
6936            so don't bother with the actual square root.  */
6937         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6938         if (byte > cache[1]) {
6939             /* New position is after the existing pair of pairs.  */
6940             const float keep_earlier
6941                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6942             const float keep_later
6943                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6944
6945             if (keep_later < keep_earlier) {
6946                 if (keep_later < existing) {
6947                     cache[2] = cache[0];
6948                     cache[3] = cache[1];
6949                     cache[0] = utf8;
6950                     cache[1] = byte;
6951                 }
6952             }
6953             else {
6954                 if (keep_earlier < existing) {
6955                     cache[0] = utf8;
6956                     cache[1] = byte;
6957                 }
6958             }
6959         }
6960         else if (byte > cache[3]) {
6961             /* New position is between the existing pair of pairs.  */
6962             const float keep_earlier
6963                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6964             const float keep_later
6965                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6966
6967             if (keep_later < keep_earlier) {
6968                 if (keep_later < existing) {
6969                     cache[2] = utf8;
6970                     cache[3] = byte;
6971                 }
6972             }
6973             else {
6974                 if (keep_earlier < existing) {
6975                     cache[0] = utf8;
6976                     cache[1] = byte;
6977                 }
6978             }
6979         }
6980         else {
6981             /* New position is before the existing pair of pairs.  */
6982             const float keep_earlier
6983                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6984             const float keep_later
6985                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6986
6987             if (keep_later < keep_earlier) {
6988                 if (keep_later < existing) {
6989                     cache[2] = utf8;
6990                     cache[3] = byte;
6991                 }
6992             }
6993             else {
6994                 if (keep_earlier < existing) {
6995                     cache[0] = cache[2];
6996                     cache[1] = cache[3];
6997                     cache[2] = utf8;
6998                     cache[3] = byte;
6999                 }
7000             }
7001         }
7002     }
7003     ASSERT_UTF8_CACHE(cache);
7004 }
7005
7006 /* We already know all of the way, now we may be able to walk back.  The same
7007    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7008    backward is half the speed of walking forward. */
7009 static STRLEN
7010 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7011                     const U8 *end, STRLEN endu)
7012 {
7013     const STRLEN forw = target - s;
7014     STRLEN backw = end - target;
7015
7016     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7017
7018     if (forw < 2 * backw) {
7019         return utf8_length(s, target);
7020     }
7021
7022     while (end > target) {
7023         end--;
7024         while (UTF8_IS_CONTINUATION(*end)) {
7025             end--;
7026         }
7027         endu--;
7028     }
7029     return endu;
7030 }
7031
7032 /*
7033 =for apidoc sv_pos_b2u
7034
7035 Converts the value pointed to by offsetp from a count of bytes from the
7036 start of the string, to a count of the equivalent number of UTF-8 chars.
7037 Handles magic and type coercion.
7038
7039 =cut
7040 */
7041
7042 /*
7043  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7044  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7045  * byte offsets.
7046  *
7047  */
7048 void
7049 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
7050 {
7051     const U8* s;
7052     const STRLEN byte = *offsetp;
7053     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7054     STRLEN blen;
7055     MAGIC* mg = NULL;
7056     const U8* send;
7057     bool found = FALSE;
7058
7059     PERL_ARGS_ASSERT_SV_POS_B2U;
7060
7061     if (!sv)
7062         return;
7063
7064     s = (const U8*)SvPV_const(sv, blen);
7065
7066     if (blen < byte)
7067         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
7068
7069     send = s + byte;
7070
7071     if (!SvREADONLY(sv)
7072         && PL_utf8cache
7073         && SvTYPE(sv) >= SVt_PVMG
7074         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7075     {
7076         if (mg->mg_ptr) {
7077             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7078             if (cache[1] == byte) {
7079                 /* An exact match. */
7080                 *offsetp = cache[0];
7081                 return;
7082             }
7083             if (cache[3] == byte) {
7084                 /* An exact match. */
7085                 *offsetp = cache[2];
7086                 return;
7087             }
7088
7089             if (cache[1] < byte) {
7090                 /* We already know part of the way. */
7091                 if (mg->mg_len != -1) {
7092                     /* Actually, we know the end too.  */
7093                     len = cache[0]
7094                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7095                                               s + blen, mg->mg_len - cache[0]);
7096                 } else {
7097                     len = cache[0] + utf8_length(s + cache[1], send);
7098                 }
7099             }
7100             else if (cache[3] < byte) {
7101                 /* We're between the two cached pairs, so we do the calculation
7102                    offset by the byte/utf-8 positions for the earlier pair,
7103                    then add the utf-8 characters from the string start to
7104                    there.  */
7105                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7106                                           s + cache[1], cache[0] - cache[2])
7107                     + cache[2];
7108
7109             }
7110             else { /* cache[3] > byte */
7111                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7112                                           cache[2]);
7113
7114             }
7115             ASSERT_UTF8_CACHE(cache);
7116             found = TRUE;
7117         } else if (mg->mg_len != -1) {
7118             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7119             found = TRUE;
7120         }
7121     }
7122     if (!found || PL_utf8cache < 0) {
7123         const STRLEN real_len = utf8_length(s, send);
7124
7125         if (found && PL_utf8cache < 0)
7126             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7127         len = real_len;
7128     }
7129     *offsetp = len;
7130
7131     if (PL_utf8cache) {
7132         if (blen == byte)
7133             utf8_mg_len_cache_update(sv, &mg, len);
7134         else
7135             utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
7136     }
7137 }
7138
7139 static void
7140 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7141                              STRLEN real, SV *const sv)
7142 {
7143     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7144
7145     /* As this is debugging only code, save space by keeping this test here,
7146        rather than inlining it in all the callers.  */
7147     if (from_cache == real)
7148         return;
7149
7150     /* Need to turn the assertions off otherwise we may recurse infinitely
7151        while printing error messages.  */
7152     SAVEI8(PL_utf8cache);
7153     PL_utf8cache = 0;
7154     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7155                func, (UV) from_cache, (UV) real, SVfARG(sv));
7156 }
7157
7158 /*
7159 =for apidoc sv_eq
7160
7161 Returns a boolean indicating whether the strings in the two SVs are
7162 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
7163 coerce its args to strings if necessary.
7164
7165 =for apidoc sv_eq_flags
7166
7167 Returns a boolean indicating whether the strings in the two SVs are
7168 identical. Is UTF-8 and 'use bytes' aware and coerces its args to strings
7169 if necessary. If the flags include SV_GMAGIC, it handles get-magic, too.
7170
7171 =cut
7172 */
7173
7174 I32
7175 Perl_sv_eq_flags(pTHX_ register SV *sv1, register SV *sv2, const U32 flags)
7176 {
7177     dVAR;
7178     const char *pv1;
7179     STRLEN cur1;
7180     const char *pv2;
7181     STRLEN cur2;
7182     I32  eq     = 0;
7183     char *tpv   = NULL;
7184     SV* svrecode = NULL;
7185
7186     if (!sv1) {
7187         pv1 = "";
7188         cur1 = 0;
7189     }
7190     else {
7191         /* if pv1 and pv2 are the same, second SvPV_const call may
7192          * invalidate pv1 (if we are handling magic), so we may need to
7193          * make a copy */
7194         if (sv1 == sv2 && flags & SV_GMAGIC
7195          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7196             pv1 = SvPV_const(sv1, cur1);
7197             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7198         }
7199         pv1 = SvPV_flags_const(sv1, cur1, flags);
7200     }
7201
7202     if (!sv2){
7203         pv2 = "";
7204         cur2 = 0;
7205     }
7206     else
7207         pv2 = SvPV_flags_const(sv2, cur2, flags);
7208
7209     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7210         /* Differing utf8ness.
7211          * Do not UTF8size the comparands as a side-effect. */
7212          if (PL_encoding) {
7213               if (SvUTF8(sv1)) {
7214                    svrecode = newSVpvn(pv2, cur2);
7215                    sv_recode_to_utf8(svrecode, PL_encoding);
7216                    pv2 = SvPV_const(svrecode, cur2);
7217               }
7218               else {
7219                    svrecode = newSVpvn(pv1, cur1);
7220                    sv_recode_to_utf8(svrecode, PL_encoding);
7221                    pv1 = SvPV_const(svrecode, cur1);
7222               }
7223               /* Now both are in UTF-8. */
7224               if (cur1 != cur2) {
7225                    SvREFCNT_dec(svrecode);
7226                    return FALSE;
7227               }
7228          }
7229          else {
7230               if (SvUTF8(sv1)) {
7231                   /* sv1 is the UTF-8 one  */
7232                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7233                                         (const U8*)pv1, cur1) == 0;
7234               }
7235               else {
7236                   /* sv2 is the UTF-8 one  */
7237                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7238                                         (const U8*)pv2, cur2) == 0;
7239               }
7240          }
7241     }
7242
7243     if (cur1 == cur2)
7244         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7245         
7246     SvREFCNT_dec(svrecode);
7247     if (tpv)
7248         Safefree(tpv);
7249
7250     return eq;
7251 }
7252
7253 /*
7254 =for apidoc sv_cmp
7255
7256 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7257 string in C<sv1> is less than, equal to, or greater than the string in
7258 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
7259 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7260
7261 =for apidoc sv_cmp_flags
7262
7263 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7264 string in C<sv1> is less than, equal to, or greater than the string in
7265 C<sv2>. Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7266 if necessary. If the flags include SV_GMAGIC, it handles get magic. See
7267 also C<sv_cmp_locale_flags>.
7268
7269 =cut
7270 */
7271
7272 I32
7273 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
7274 {
7275     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7276 }
7277
7278 I32
7279 Perl_sv_cmp_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7280                   const U32 flags)
7281 {
7282     dVAR;
7283     STRLEN cur1, cur2;
7284     const char *pv1, *pv2;
7285     char *tpv = NULL;
7286     I32  cmp;
7287     SV *svrecode = NULL;
7288
7289     if (!sv1) {
7290         pv1 = "";
7291         cur1 = 0;
7292     }
7293     else
7294         pv1 = SvPV_flags_const(sv1, cur1, flags);
7295
7296     if (!sv2) {
7297         pv2 = "";
7298         cur2 = 0;
7299     }
7300     else
7301         pv2 = SvPV_flags_const(sv2, cur2, flags);
7302
7303     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7304         /* Differing utf8ness.
7305          * Do not UTF8size the comparands as a side-effect. */
7306         if (SvUTF8(sv1)) {
7307             if (PL_encoding) {
7308                  svrecode = newSVpvn(pv2, cur2);
7309                  sv_recode_to_utf8(svrecode, PL_encoding);
7310                  pv2 = SvPV_const(svrecode, cur2);
7311             }
7312             else {
7313                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7314                                                    (const U8*)pv1, cur1);
7315                 return retval ? retval < 0 ? -1 : +1 : 0;
7316             }
7317         }
7318         else {
7319             if (PL_encoding) {
7320                  svrecode = newSVpvn(pv1, cur1);
7321                  sv_recode_to_utf8(svrecode, PL_encoding);
7322                  pv1 = SvPV_const(svrecode, cur1);
7323             }
7324             else {
7325                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7326                                                   (const U8*)pv2, cur2);
7327                 return retval ? retval < 0 ? -1 : +1 : 0;
7328             }
7329         }
7330     }
7331
7332     if (!cur1) {
7333         cmp = cur2 ? -1 : 0;
7334     } else if (!cur2) {
7335         cmp = 1;
7336     } else {
7337         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7338
7339         if (retval) {
7340             cmp = retval < 0 ? -1 : 1;
7341         } else if (cur1 == cur2) {
7342             cmp = 0;
7343         } else {
7344             cmp = cur1 < cur2 ? -1 : 1;
7345         }
7346     }
7347
7348     SvREFCNT_dec(svrecode);
7349     if (tpv)
7350         Safefree(tpv);
7351
7352     return cmp;
7353 }
7354
7355 /*
7356 =for apidoc sv_cmp_locale
7357
7358 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
7359 'use bytes' aware, handles get magic, and will coerce its args to strings
7360 if necessary.  See also C<sv_cmp>.
7361
7362 =for apidoc sv_cmp_locale_flags
7363
7364 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
7365 'use bytes' aware and will coerce its args to strings if necessary. If the
7366 flags contain SV_GMAGIC, it handles get magic. See also C<sv_cmp_flags>.
7367
7368 =cut
7369 */
7370
7371 I32
7372 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
7373 {
7374     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7375 }
7376
7377 I32
7378 Perl_sv_cmp_locale_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7379                          const U32 flags)
7380 {
7381     dVAR;
7382 #ifdef USE_LOCALE_COLLATE
7383
7384     char *pv1, *pv2;
7385     STRLEN len1, len2;
7386     I32 retval;
7387
7388     if (PL_collation_standard)
7389         goto raw_compare;
7390
7391     len1 = 0;
7392     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7393     len2 = 0;
7394     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7395
7396     if (!pv1 || !len1) {
7397         if (pv2 && len2)
7398             return -1;
7399         else
7400             goto raw_compare;
7401     }
7402     else {
7403         if (!pv2 || !len2)
7404             return 1;
7405     }
7406
7407     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7408
7409     if (retval)
7410         return retval < 0 ? -1 : 1;
7411
7412     /*
7413      * When the result of collation is equality, that doesn't mean
7414      * that there are no differences -- some locales exclude some
7415      * characters from consideration.  So to avoid false equalities,
7416      * we use the raw string as a tiebreaker.
7417      */
7418
7419   raw_compare:
7420     /*FALLTHROUGH*/
7421
7422 #endif /* USE_LOCALE_COLLATE */
7423
7424     return sv_cmp(sv1, sv2);
7425 }
7426
7427
7428 #ifdef USE_LOCALE_COLLATE
7429
7430 /*
7431 =for apidoc sv_collxfrm
7432
7433 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag. See
7434 C<sv_collxfrm_flags>.
7435
7436 =for apidoc sv_collxfrm_flags
7437
7438 Add Collate Transform magic to an SV if it doesn't already have it. If the
7439 flags contain SV_GMAGIC, it handles get-magic.
7440
7441 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7442 scalar data of the variable, but transformed to such a format that a normal
7443 memory comparison can be used to compare the data according to the locale
7444 settings.
7445
7446 =cut
7447 */
7448
7449 char *
7450 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7451 {
7452     dVAR;
7453     MAGIC *mg;
7454
7455     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7456
7457     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7458     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7459         const char *s;
7460         char *xf;
7461         STRLEN len, xlen;
7462
7463         if (mg)
7464             Safefree(mg->mg_ptr);
7465         s = SvPV_flags_const(sv, len, flags);
7466         if ((xf = mem_collxfrm(s, len, &xlen))) {
7467             if (! mg) {
7468 #ifdef PERL_OLD_COPY_ON_WRITE
7469                 if (SvIsCOW(sv))
7470                     sv_force_normal_flags(sv, 0);
7471 #endif
7472                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7473                                  0, 0);
7474                 assert(mg);
7475             }
7476             mg->mg_ptr = xf;
7477             mg->mg_len = xlen;
7478         }
7479         else {
7480             if (mg) {
7481                 mg->mg_ptr = NULL;
7482                 mg->mg_len = -1;
7483             }
7484         }
7485     }
7486     if (mg && mg->mg_ptr) {
7487         *nxp = mg->mg_len;
7488         return mg->mg_ptr + sizeof(PL_collation_ix);
7489     }
7490     else {
7491         *nxp = 0;
7492         return NULL;
7493     }
7494 }
7495
7496 #endif /* USE_LOCALE_COLLATE */
7497
7498 static char *
7499 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7500 {
7501     SV * const tsv = newSV(0);
7502     ENTER;
7503     SAVEFREESV(tsv);
7504     sv_gets(tsv, fp, 0);
7505     sv_utf8_upgrade_nomg(tsv);
7506     SvCUR_set(sv,append);
7507     sv_catsv(sv,tsv);
7508     LEAVE;
7509     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7510 }
7511
7512 static char *
7513 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7514 {
7515     I32 bytesread;
7516     const U32 recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7517       /* Grab the size of the record we're getting */
7518     char *const buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7519 #ifdef VMS
7520     int fd;
7521 #endif
7522
7523     /* Go yank in */
7524 #ifdef VMS
7525     /* VMS wants read instead of fread, because fread doesn't respect */
7526     /* RMS record boundaries. This is not necessarily a good thing to be */
7527     /* doing, but we've got no other real choice - except avoid stdio
7528        as implementation - perhaps write a :vms layer ?
7529     */
7530     fd = PerlIO_fileno(fp);
7531     if (fd != -1) {
7532         bytesread = PerlLIO_read(fd, buffer, recsize);
7533     }
7534     else /* in-memory file from PerlIO::Scalar */
7535 #endif
7536     {
7537         bytesread = PerlIO_read(fp, buffer, recsize);
7538     }
7539
7540     if (bytesread < 0)
7541         bytesread = 0;
7542     SvCUR_set(sv, bytesread + append);
7543     buffer[bytesread] = '\0';
7544     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7545 }
7546
7547 /*
7548 =for apidoc sv_gets
7549
7550 Get a line from the filehandle and store it into the SV, optionally
7551 appending to the currently-stored string.
7552
7553 =cut
7554 */
7555
7556 char *
7557 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
7558 {
7559     dVAR;
7560     const char *rsptr;
7561     STRLEN rslen;
7562     register STDCHAR rslast;
7563     register STDCHAR *bp;
7564     register I32 cnt;
7565     I32 i = 0;
7566     I32 rspara = 0;
7567
7568     PERL_ARGS_ASSERT_SV_GETS;
7569
7570     if (SvTHINKFIRST(sv))
7571         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7572     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7573        from <>.
7574        However, perlbench says it's slower, because the existing swipe code
7575        is faster than copy on write.
7576        Swings and roundabouts.  */
7577     SvUPGRADE(sv, SVt_PV);
7578
7579     SvSCREAM_off(sv);
7580
7581     if (append) {
7582         if (PerlIO_isutf8(fp)) {
7583             if (!SvUTF8(sv)) {
7584                 sv_utf8_upgrade_nomg(sv);
7585                 sv_pos_u2b(sv,&append,0);
7586             }
7587         } else if (SvUTF8(sv)) {
7588             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
7589         }
7590     }
7591
7592     SvPOK_only(sv);
7593     if (!append) {
7594         SvCUR_set(sv,0);
7595     }
7596     if (PerlIO_isutf8(fp))
7597         SvUTF8_on(sv);
7598
7599     if (IN_PERL_COMPILETIME) {
7600         /* we always read code in line mode */
7601         rsptr = "\n";
7602         rslen = 1;
7603     }
7604     else if (RsSNARF(PL_rs)) {
7605         /* If it is a regular disk file use size from stat() as estimate
7606            of amount we are going to read -- may result in mallocing
7607            more memory than we really need if the layers below reduce
7608            the size we read (e.g. CRLF or a gzip layer).
7609          */
7610         Stat_t st;
7611         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7612             const Off_t offset = PerlIO_tell(fp);
7613             if (offset != (Off_t) -1 && st.st_size + append > offset) {
7614                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
7615             }
7616         }
7617         rsptr = NULL;
7618         rslen = 0;
7619     }
7620     else if (RsRECORD(PL_rs)) {
7621         return S_sv_gets_read_record(aTHX_ sv, fp, append);
7622     }
7623     else if (RsPARA(PL_rs)) {
7624         rsptr = "\n\n";
7625         rslen = 2;
7626         rspara = 1;
7627     }
7628     else {
7629         /* Get $/ i.e. PL_rs into same encoding as stream wants */
7630         if (PerlIO_isutf8(fp)) {
7631             rsptr = SvPVutf8(PL_rs, rslen);
7632         }
7633         else {
7634             if (SvUTF8(PL_rs)) {
7635                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
7636                     Perl_croak(aTHX_ "Wide character in $/");
7637                 }
7638             }
7639             rsptr = SvPV_const(PL_rs, rslen);
7640         }
7641     }
7642
7643     rslast = rslen ? rsptr[rslen - 1] : '\0';
7644
7645     if (rspara) {               /* have to do this both before and after */
7646         do {                    /* to make sure file boundaries work right */
7647             if (PerlIO_eof(fp))
7648                 return 0;
7649             i = PerlIO_getc(fp);
7650             if (i != '\n') {
7651                 if (i == -1)
7652                     return 0;
7653                 PerlIO_ungetc(fp,i);
7654                 break;
7655             }
7656         } while (i != EOF);
7657     }
7658
7659     /* See if we know enough about I/O mechanism to cheat it ! */
7660
7661     /* This used to be #ifdef test - it is made run-time test for ease
7662        of abstracting out stdio interface. One call should be cheap
7663        enough here - and may even be a macro allowing compile
7664        time optimization.
7665      */
7666
7667     if (PerlIO_fast_gets(fp)) {
7668
7669     /*
7670      * We're going to steal some values from the stdio struct
7671      * and put EVERYTHING in the innermost loop into registers.
7672      */
7673     register STDCHAR *ptr;
7674     STRLEN bpx;
7675     I32 shortbuffered;
7676
7677 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7678     /* An ungetc()d char is handled separately from the regular
7679      * buffer, so we getc() it back out and stuff it in the buffer.
7680      */
7681     i = PerlIO_getc(fp);
7682     if (i == EOF) return 0;
7683     *(--((*fp)->_ptr)) = (unsigned char) i;
7684     (*fp)->_cnt++;
7685 #endif
7686
7687     /* Here is some breathtakingly efficient cheating */
7688
7689     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7690     /* make sure we have the room */
7691     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7692         /* Not room for all of it
7693            if we are looking for a separator and room for some
7694          */
7695         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7696             /* just process what we have room for */
7697             shortbuffered = cnt - SvLEN(sv) + append + 1;
7698             cnt -= shortbuffered;
7699         }
7700         else {
7701             shortbuffered = 0;
7702             /* remember that cnt can be negative */
7703             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7704         }
7705     }
7706     else
7707         shortbuffered = 0;
7708     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7709     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7710     DEBUG_P(PerlIO_printf(Perl_debug_log,
7711         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7712     DEBUG_P(PerlIO_printf(Perl_debug_log,
7713         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7714                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7715                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7716     for (;;) {
7717       screamer:
7718         if (cnt > 0) {
7719             if (rslen) {
7720                 while (cnt > 0) {                    /* this     |  eat */
7721                     cnt--;
7722                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7723                         goto thats_all_folks;        /* screams  |  sed :-) */
7724                 }
7725             }
7726             else {
7727                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7728                 bp += cnt;                           /* screams  |  dust */
7729                 ptr += cnt;                          /* louder   |  sed :-) */
7730                 cnt = 0;
7731                 assert (!shortbuffered);
7732                 goto cannot_be_shortbuffered;
7733             }
7734         }
7735         
7736         if (shortbuffered) {            /* oh well, must extend */
7737             cnt = shortbuffered;
7738             shortbuffered = 0;
7739             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7740             SvCUR_set(sv, bpx);
7741             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7742             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7743             continue;
7744         }
7745
7746     cannot_be_shortbuffered:
7747         DEBUG_P(PerlIO_printf(Perl_debug_log,
7748                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7749                               PTR2UV(ptr),(long)cnt));
7750         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7751
7752         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7753             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7754             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7755             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7756
7757         /* This used to call 'filbuf' in stdio form, but as that behaves like
7758            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7759            another abstraction.  */
7760         i   = PerlIO_getc(fp);          /* get more characters */
7761
7762         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7763             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7764             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7765             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7766
7767         cnt = PerlIO_get_cnt(fp);
7768         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7769         DEBUG_P(PerlIO_printf(Perl_debug_log,
7770             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7771
7772         if (i == EOF)                   /* all done for ever? */
7773             goto thats_really_all_folks;
7774
7775         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7776         SvCUR_set(sv, bpx);
7777         SvGROW(sv, bpx + cnt + 2);
7778         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7779
7780         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7781
7782         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7783             goto thats_all_folks;
7784     }
7785
7786 thats_all_folks:
7787     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7788           memNE((char*)bp - rslen, rsptr, rslen))
7789         goto screamer;                          /* go back to the fray */
7790 thats_really_all_folks:
7791     if (shortbuffered)
7792         cnt += shortbuffered;
7793         DEBUG_P(PerlIO_printf(Perl_debug_log,
7794             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7795     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7796     DEBUG_P(PerlIO_printf(Perl_debug_log,
7797         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7798         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7799         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7800     *bp = '\0';
7801     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7802     DEBUG_P(PerlIO_printf(Perl_debug_log,
7803         "Screamer: done, len=%ld, string=|%.*s|\n",
7804         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7805     }
7806    else
7807     {
7808        /*The big, slow, and stupid way. */
7809 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7810         STDCHAR *buf = NULL;
7811         Newx(buf, 8192, STDCHAR);
7812         assert(buf);
7813 #else
7814         STDCHAR buf[8192];
7815 #endif
7816
7817 screamer2:
7818         if (rslen) {
7819             register const STDCHAR * const bpe = buf + sizeof(buf);
7820             bp = buf;
7821             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7822                 ; /* keep reading */
7823             cnt = bp - buf;
7824         }
7825         else {
7826             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7827             /* Accommodate broken VAXC compiler, which applies U8 cast to
7828              * both args of ?: operator, causing EOF to change into 255
7829              */
7830             if (cnt > 0)
7831                  i = (U8)buf[cnt - 1];
7832             else
7833                  i = EOF;
7834         }
7835
7836         if (cnt < 0)
7837             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7838         if (append)
7839              sv_catpvn(sv, (char *) buf, cnt);
7840         else
7841              sv_setpvn(sv, (char *) buf, cnt);
7842
7843         if (i != EOF &&                 /* joy */
7844             (!rslen ||
7845              SvCUR(sv) < rslen ||
7846              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7847         {
7848             append = -1;
7849             /*
7850              * If we're reading from a TTY and we get a short read,
7851              * indicating that the user hit his EOF character, we need
7852              * to notice it now, because if we try to read from the TTY
7853              * again, the EOF condition will disappear.
7854              *
7855              * The comparison of cnt to sizeof(buf) is an optimization
7856              * that prevents unnecessary calls to feof().
7857              *
7858              * - jik 9/25/96
7859              */
7860             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7861                 goto screamer2;
7862         }
7863
7864 #ifdef USE_HEAP_INSTEAD_OF_STACK
7865         Safefree(buf);
7866 #endif
7867     }
7868
7869     if (rspara) {               /* have to do this both before and after */
7870         while (i != EOF) {      /* to make sure file boundaries work right */
7871             i = PerlIO_getc(fp);
7872             if (i != '\n') {
7873                 PerlIO_ungetc(fp,i);
7874                 break;
7875             }
7876         }
7877     }
7878
7879     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7880 }
7881
7882 /*
7883 =for apidoc sv_inc
7884
7885 Auto-increment of the value in the SV, doing string to numeric conversion
7886 if necessary. Handles 'get' magic and operator overloading.
7887
7888 =cut
7889 */
7890
7891 void
7892 Perl_sv_inc(pTHX_ register SV *const sv)
7893 {
7894     if (!sv)
7895         return;
7896     SvGETMAGIC(sv);
7897     sv_inc_nomg(sv);
7898 }
7899
7900 /*
7901 =for apidoc sv_inc_nomg
7902
7903 Auto-increment of the value in the SV, doing string to numeric conversion
7904 if necessary. Handles operator overloading. Skips handling 'get' magic.
7905
7906 =cut
7907 */
7908
7909 void
7910 Perl_sv_inc_nomg(pTHX_ register SV *const sv)
7911 {
7912     dVAR;
7913     register char *d;
7914     int flags;
7915
7916     if (!sv)
7917         return;
7918     if (SvTHINKFIRST(sv)) {
7919         if (SvIsCOW(sv) || isGV_with_GP(sv))
7920             sv_force_normal_flags(sv, 0);
7921         if (SvREADONLY(sv)) {
7922             if (IN_PERL_RUNTIME)
7923                 Perl_croak_no_modify(aTHX);
7924         }
7925         if (SvROK(sv)) {
7926             IV i;
7927             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
7928                 return;
7929             i = PTR2IV(SvRV(sv));
7930             sv_unref(sv);
7931             sv_setiv(sv, i);
7932         }
7933     }
7934     flags = SvFLAGS(sv);
7935     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7936         /* It's (privately or publicly) a float, but not tested as an
7937            integer, so test it to see. */
7938         (void) SvIV(sv);
7939         flags = SvFLAGS(sv);
7940     }
7941     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7942         /* It's publicly an integer, or privately an integer-not-float */
7943 #ifdef PERL_PRESERVE_IVUV
7944       oops_its_int:
7945 #endif
7946         if (SvIsUV(sv)) {
7947             if (SvUVX(sv) == UV_MAX)
7948                 sv_setnv(sv, UV_MAX_P1);
7949             else
7950                 (void)SvIOK_only_UV(sv);
7951                 SvUV_set(sv, SvUVX(sv) + 1);
7952         } else {
7953             if (SvIVX(sv) == IV_MAX)
7954                 sv_setuv(sv, (UV)IV_MAX + 1);
7955             else {
7956                 (void)SvIOK_only(sv);
7957                 SvIV_set(sv, SvIVX(sv) + 1);
7958             }   
7959         }
7960         return;
7961     }
7962     if (flags & SVp_NOK) {
7963         const NV was = SvNVX(sv);
7964         if (NV_OVERFLOWS_INTEGERS_AT &&
7965             was >= NV_OVERFLOWS_INTEGERS_AT) {
7966             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7967                            "Lost precision when incrementing %" NVff " by 1",
7968                            was);
7969         }
7970         (void)SvNOK_only(sv);
7971         SvNV_set(sv, was + 1.0);
7972         return;
7973     }
7974
7975     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7976         if ((flags & SVTYPEMASK) < SVt_PVIV)
7977             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7978         (void)SvIOK_only(sv);
7979         SvIV_set(sv, 1);
7980         return;
7981     }
7982     d = SvPVX(sv);
7983     while (isALPHA(*d)) d++;
7984     while (isDIGIT(*d)) d++;
7985     if (d < SvEND(sv)) {
7986 #ifdef PERL_PRESERVE_IVUV
7987         /* Got to punt this as an integer if needs be, but we don't issue
7988            warnings. Probably ought to make the sv_iv_please() that does
7989            the conversion if possible, and silently.  */
7990         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7991         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7992             /* Need to try really hard to see if it's an integer.
7993                9.22337203685478e+18 is an integer.
7994                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7995                so $a="9.22337203685478e+18"; $a+0; $a++
7996                needs to be the same as $a="9.22337203685478e+18"; $a++
7997                or we go insane. */
7998         
7999             (void) sv_2iv(sv);
8000             if (SvIOK(sv))
8001                 goto oops_its_int;
8002
8003             /* sv_2iv *should* have made this an NV */
8004             if (flags & SVp_NOK) {
8005                 (void)SvNOK_only(sv);
8006                 SvNV_set(sv, SvNVX(sv) + 1.0);
8007                 return;
8008             }
8009             /* I don't think we can get here. Maybe I should assert this
8010                And if we do get here I suspect that sv_setnv will croak. NWC
8011                Fall through. */
8012 #if defined(USE_LONG_DOUBLE)
8013             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",
8014                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8015 #else
8016             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8017                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8018 #endif
8019         }
8020 #endif /* PERL_PRESERVE_IVUV */
8021         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8022         return;
8023     }
8024     d--;
8025     while (d >= SvPVX_const(sv)) {
8026         if (isDIGIT(*d)) {
8027             if (++*d <= '9')
8028                 return;
8029             *(d--) = '0';
8030         }
8031         else {
8032 #ifdef EBCDIC
8033             /* MKS: The original code here died if letters weren't consecutive.
8034              * at least it didn't have to worry about non-C locales.  The
8035              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8036              * arranged in order (although not consecutively) and that only
8037              * [A-Za-z] are accepted by isALPHA in the C locale.
8038              */
8039             if (*d != 'z' && *d != 'Z') {
8040                 do { ++*d; } while (!isALPHA(*d));
8041                 return;
8042             }
8043             *(d--) -= 'z' - 'a';
8044 #else
8045             ++*d;
8046             if (isALPHA(*d))
8047                 return;
8048             *(d--) -= 'z' - 'a' + 1;
8049 #endif
8050         }
8051     }
8052     /* oh,oh, the number grew */
8053     SvGROW(sv, SvCUR(sv) + 2);
8054     SvCUR_set(sv, SvCUR(sv) + 1);
8055     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8056         *d = d[-1];
8057     if (isDIGIT(d[1]))
8058         *d = '1';
8059     else
8060         *d = d[1];
8061 }
8062
8063 /*
8064 =for apidoc sv_dec
8065
8066 Auto-decrement of the value in the SV, doing string to numeric conversion
8067 if necessary. Handles 'get' magic and operator overloading.
8068
8069 =cut
8070 */
8071
8072 void
8073 Perl_sv_dec(pTHX_ register SV *const sv)
8074 {
8075     dVAR;
8076     if (!sv)
8077         return;
8078     SvGETMAGIC(sv);
8079     sv_dec_nomg(sv);
8080 }
8081
8082 /*
8083 =for apidoc sv_dec_nomg
8084
8085 Auto-decrement of the value in the SV, doing string to numeric conversion
8086 if necessary. Handles operator overloading. Skips handling 'get' magic.
8087
8088 =cut
8089 */
8090
8091 void
8092 Perl_sv_dec_nomg(pTHX_ register SV *const sv)
8093 {
8094     dVAR;
8095     int flags;
8096
8097     if (!sv)
8098         return;
8099     if (SvTHINKFIRST(sv)) {
8100         if (SvIsCOW(sv) || isGV_with_GP(sv))
8101             sv_force_normal_flags(sv, 0);
8102         if (SvREADONLY(sv)) {
8103             if (IN_PERL_RUNTIME)
8104                 Perl_croak_no_modify(aTHX);
8105         }
8106         if (SvROK(sv)) {
8107             IV i;
8108             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8109                 return;
8110             i = PTR2IV(SvRV(sv));
8111             sv_unref(sv);
8112             sv_setiv(sv, i);
8113         }
8114     }
8115     /* Unlike sv_inc we don't have to worry about string-never-numbers
8116        and keeping them magic. But we mustn't warn on punting */
8117     flags = SvFLAGS(sv);
8118     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8119         /* It's publicly an integer, or privately an integer-not-float */
8120 #ifdef PERL_PRESERVE_IVUV
8121       oops_its_int:
8122 #endif
8123         if (SvIsUV(sv)) {
8124             if (SvUVX(sv) == 0) {
8125                 (void)SvIOK_only(sv);
8126                 SvIV_set(sv, -1);
8127             }
8128             else {
8129                 (void)SvIOK_only_UV(sv);
8130                 SvUV_set(sv, SvUVX(sv) - 1);
8131             }   
8132         } else {
8133             if (SvIVX(sv) == IV_MIN) {
8134                 sv_setnv(sv, (NV)IV_MIN);
8135                 goto oops_its_num;
8136             }
8137             else {
8138                 (void)SvIOK_only(sv);
8139                 SvIV_set(sv, SvIVX(sv) - 1);
8140             }   
8141         }
8142         return;
8143     }
8144     if (flags & SVp_NOK) {
8145     oops_its_num:
8146         {
8147             const NV was = SvNVX(sv);
8148             if (NV_OVERFLOWS_INTEGERS_AT &&
8149                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8150                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8151                                "Lost precision when decrementing %" NVff " by 1",
8152                                was);
8153             }
8154             (void)SvNOK_only(sv);
8155             SvNV_set(sv, was - 1.0);
8156             return;
8157         }
8158     }
8159     if (!(flags & SVp_POK)) {
8160         if ((flags & SVTYPEMASK) < SVt_PVIV)
8161             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8162         SvIV_set(sv, -1);
8163         (void)SvIOK_only(sv);
8164         return;
8165     }
8166 #ifdef PERL_PRESERVE_IVUV
8167     {
8168         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8169         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8170             /* Need to try really hard to see if it's an integer.
8171                9.22337203685478e+18 is an integer.
8172                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8173                so $a="9.22337203685478e+18"; $a+0; $a--
8174                needs to be the same as $a="9.22337203685478e+18"; $a--
8175                or we go insane. */
8176         
8177             (void) sv_2iv(sv);
8178             if (SvIOK(sv))
8179                 goto oops_its_int;
8180
8181             /* sv_2iv *should* have made this an NV */
8182             if (flags & SVp_NOK) {
8183                 (void)SvNOK_only(sv);
8184                 SvNV_set(sv, SvNVX(sv) - 1.0);
8185                 return;
8186             }
8187             /* I don't think we can get here. Maybe I should assert this
8188                And if we do get here I suspect that sv_setnv will croak. NWC
8189                Fall through. */
8190 #if defined(USE_LONG_DOUBLE)
8191             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",
8192                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8193 #else
8194             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8195                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8196 #endif
8197         }
8198     }
8199 #endif /* PERL_PRESERVE_IVUV */
8200     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8201 }
8202
8203 /* this define is used to eliminate a chunk of duplicated but shared logic
8204  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8205  * used anywhere but here - yves
8206  */
8207 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8208     STMT_START {      \
8209         EXTEND_MORTAL(1); \
8210         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
8211     } STMT_END
8212
8213 /*
8214 =for apidoc sv_mortalcopy
8215
8216 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8217 The new SV is marked as mortal. It will be destroyed "soon", either by an
8218 explicit call to FREETMPS, or by an implicit call at places such as
8219 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8220
8221 =cut
8222 */
8223
8224 /* Make a string that will exist for the duration of the expression
8225  * evaluation.  Actually, it may have to last longer than that, but
8226  * hopefully we won't free it until it has been assigned to a
8227  * permanent location. */
8228
8229 SV *
8230 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
8231 {
8232     dVAR;
8233     register SV *sv;
8234
8235     new_SV(sv);
8236     sv_setsv(sv,oldstr);
8237     PUSH_EXTEND_MORTAL__SV_C(sv);
8238     SvTEMP_on(sv);
8239     return sv;
8240 }
8241
8242 /*
8243 =for apidoc sv_newmortal
8244
8245 Creates a new null SV which is mortal.  The reference count of the SV is
8246 set to 1. It will be destroyed "soon", either by an explicit call to
8247 FREETMPS, or by an implicit call at places such as statement boundaries.
8248 See also C<sv_mortalcopy> and C<sv_2mortal>.
8249
8250 =cut
8251 */
8252
8253 SV *
8254 Perl_sv_newmortal(pTHX)
8255 {
8256     dVAR;
8257     register SV *sv;
8258
8259     new_SV(sv);
8260     SvFLAGS(sv) = SVs_TEMP;
8261     PUSH_EXTEND_MORTAL__SV_C(sv);
8262     return sv;
8263 }
8264
8265
8266 /*
8267 =for apidoc newSVpvn_flags
8268
8269 Creates a new SV and copies a string into it.  The reference count for the
8270 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8271 string.  You are responsible for ensuring that the source string is at least
8272 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8273 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8274 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8275 returning. If C<SVf_UTF8> is set, C<s> is considered to be in UTF-8 and the
8276 C<SVf_UTF8> flag will be set on the new SV.
8277 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8278
8279     #define newSVpvn_utf8(s, len, u)                    \
8280         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8281
8282 =cut
8283 */
8284
8285 SV *
8286 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
8287 {
8288     dVAR;
8289     register SV *sv;
8290
8291     /* All the flags we don't support must be zero.
8292        And we're new code so I'm going to assert this from the start.  */
8293     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
8294     new_SV(sv);
8295     sv_setpvn(sv,s,len);
8296
8297     /* This code used to a sv_2mortal(), however we now unroll the call to sv_2mortal()
8298      * and do what it does ourselves here.
8299      * Since we have asserted that flags can only have the SVf_UTF8 and/or SVs_TEMP flags
8300      * set above we can use it to enable the sv flags directly (bypassing SvTEMP_on), which
8301      * in turn means we dont need to mask out the SVf_UTF8 flag below, which means that we
8302      * eliminate quite a few steps than it looks - Yves (explaining patch by gfx)
8303      */
8304
8305     SvFLAGS(sv) |= flags;
8306
8307     if(flags & SVs_TEMP){
8308         PUSH_EXTEND_MORTAL__SV_C(sv);
8309     }
8310
8311     return sv;
8312 }
8313
8314 /*
8315 =for apidoc sv_2mortal
8316
8317 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
8318 by an explicit call to FREETMPS, or by an implicit call at places such as
8319 statement boundaries.  SvTEMP() is turned on which means that the SV's
8320 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
8321 and C<sv_mortalcopy>.
8322
8323 =cut
8324 */
8325
8326 SV *
8327 Perl_sv_2mortal(pTHX_ register SV *const sv)
8328 {
8329     dVAR;
8330     if (!sv)
8331         return NULL;
8332     if (SvREADONLY(sv) && SvIMMORTAL(sv))
8333         return sv;
8334     PUSH_EXTEND_MORTAL__SV_C(sv);
8335     SvTEMP_on(sv);
8336     return sv;
8337 }
8338
8339 /*
8340 =for apidoc newSVpv
8341
8342 Creates a new SV and copies a string into it.  The reference count for the
8343 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8344 strlen().  For efficiency, consider using C<newSVpvn> instead.
8345
8346 =cut
8347 */
8348
8349 SV *
8350 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8351 {
8352     dVAR;
8353     register SV *sv;
8354
8355     new_SV(sv);
8356     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8357     return sv;
8358 }
8359
8360 /*
8361 =for apidoc newSVpvn
8362
8363 Creates a new SV and copies a string into it.  The reference count for the
8364 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8365 string.  You are responsible for ensuring that the source string is at least
8366 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8367
8368 =cut
8369 */
8370
8371 SV *
8372 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
8373 {
8374     dVAR;
8375     register SV *sv;
8376
8377     new_SV(sv);
8378     sv_setpvn(sv,s,len);
8379     return sv;
8380 }
8381
8382 /*
8383 =for apidoc newSVhek
8384
8385 Creates a new SV from the hash key structure.  It will generate scalars that
8386 point to the shared string table where possible. Returns a new (undefined)
8387 SV if the hek is NULL.
8388
8389 =cut
8390 */
8391
8392 SV *
8393 Perl_newSVhek(pTHX_ const HEK *const hek)
8394 {
8395     dVAR;
8396     if (!hek) {
8397         SV *sv;
8398
8399         new_SV(sv);
8400         return sv;
8401     }
8402
8403     if (HEK_LEN(hek) == HEf_SVKEY) {
8404         return newSVsv(*(SV**)HEK_KEY(hek));
8405     } else {
8406         const int flags = HEK_FLAGS(hek);
8407         if (flags & HVhek_WASUTF8) {
8408             /* Trouble :-)
8409                Andreas would like keys he put in as utf8 to come back as utf8
8410             */
8411             STRLEN utf8_len = HEK_LEN(hek);
8412             SV * const sv = newSV_type(SVt_PV);
8413             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8414             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
8415             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
8416             SvUTF8_on (sv);
8417             return sv;
8418         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
8419             /* We don't have a pointer to the hv, so we have to replicate the
8420                flag into every HEK. This hv is using custom a hasing
8421                algorithm. Hence we can't return a shared string scalar, as
8422                that would contain the (wrong) hash value, and might get passed
8423                into an hv routine with a regular hash.
8424                Similarly, a hash that isn't using shared hash keys has to have
8425                the flag in every key so that we know not to try to call
8426                share_hek_hek on it.  */
8427
8428             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8429             if (HEK_UTF8(hek))
8430                 SvUTF8_on (sv);
8431             return sv;
8432         }
8433         /* This will be overwhelminly the most common case.  */
8434         {
8435             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8436                more efficient than sharepvn().  */
8437             SV *sv;
8438
8439             new_SV(sv);
8440             sv_upgrade(sv, SVt_PV);
8441             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8442             SvCUR_set(sv, HEK_LEN(hek));
8443             SvLEN_set(sv, 0);
8444             SvREADONLY_on(sv);
8445             SvFAKE_on(sv);
8446             SvPOK_on(sv);
8447             if (HEK_UTF8(hek))
8448                 SvUTF8_on(sv);
8449             return sv;
8450         }
8451     }
8452 }
8453
8454 /*
8455 =for apidoc newSVpvn_share
8456
8457 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8458 table. If the string does not already exist in the table, it is created
8459 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
8460 value is used; otherwise the hash is computed. The string's hash can be later
8461 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
8462 that as the string table is used for shared hash keys these strings will have
8463 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8464
8465 =cut
8466 */
8467
8468 SV *
8469 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8470 {
8471     dVAR;
8472     register SV *sv;
8473     bool is_utf8 = FALSE;
8474     const char *const orig_src = src;
8475
8476     if (len < 0) {
8477         STRLEN tmplen = -len;
8478         is_utf8 = TRUE;
8479         /* See the note in hv.c:hv_fetch() --jhi */
8480         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8481         len = tmplen;
8482     }
8483     if (!hash)
8484         PERL_HASH(hash, src, len);
8485     new_SV(sv);
8486     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8487        changes here, update it there too.  */
8488     sv_upgrade(sv, SVt_PV);
8489     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8490     SvCUR_set(sv, len);
8491     SvLEN_set(sv, 0);
8492     SvREADONLY_on(sv);
8493     SvFAKE_on(sv);
8494     SvPOK_on(sv);
8495     if (is_utf8)
8496         SvUTF8_on(sv);
8497     if (src != orig_src)
8498         Safefree(src);
8499     return sv;
8500 }
8501
8502 /*
8503 =for apidoc newSVpv_share
8504
8505 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8506 string/length pair.
8507
8508 =cut
8509 */
8510
8511 SV *
8512 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8513 {
8514     return newSVpvn_share(src, strlen(src), hash);
8515 }
8516
8517 #if defined(PERL_IMPLICIT_CONTEXT)
8518
8519 /* pTHX_ magic can't cope with varargs, so this is a no-context
8520  * version of the main function, (which may itself be aliased to us).
8521  * Don't access this version directly.
8522  */
8523
8524 SV *
8525 Perl_newSVpvf_nocontext(const char *const pat, ...)
8526 {
8527     dTHX;
8528     register SV *sv;
8529     va_list args;
8530
8531     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8532
8533     va_start(args, pat);
8534     sv = vnewSVpvf(pat, &args);
8535     va_end(args);
8536     return sv;
8537 }
8538 #endif
8539
8540 /*
8541 =for apidoc newSVpvf
8542
8543 Creates a new SV and initializes it with the string formatted like
8544 C<sprintf>.
8545
8546 =cut
8547 */
8548
8549 SV *
8550 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8551 {
8552     register SV *sv;
8553     va_list args;
8554
8555     PERL_ARGS_ASSERT_NEWSVPVF;
8556
8557     va_start(args, pat);
8558     sv = vnewSVpvf(pat, &args);
8559     va_end(args);
8560     return sv;
8561 }
8562
8563 /* backend for newSVpvf() and newSVpvf_nocontext() */
8564
8565 SV *
8566 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8567 {
8568     dVAR;
8569     register SV *sv;
8570
8571     PERL_ARGS_ASSERT_VNEWSVPVF;
8572
8573     new_SV(sv);
8574     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8575     return sv;
8576 }
8577
8578 /*
8579 =for apidoc newSVnv
8580
8581 Creates a new SV and copies a floating point value into it.
8582 The reference count for the SV is set to 1.
8583
8584 =cut
8585 */
8586
8587 SV *
8588 Perl_newSVnv(pTHX_ const NV n)
8589 {
8590     dVAR;
8591     register SV *sv;
8592
8593     new_SV(sv);
8594     sv_setnv(sv,n);
8595     return sv;
8596 }
8597
8598 /*
8599 =for apidoc newSViv
8600
8601 Creates a new SV and copies an integer into it.  The reference count for the
8602 SV is set to 1.
8603
8604 =cut
8605 */
8606
8607 SV *
8608 Perl_newSViv(pTHX_ const IV i)
8609 {
8610     dVAR;
8611     register SV *sv;
8612
8613     new_SV(sv);
8614     sv_setiv(sv,i);
8615     return sv;
8616 }
8617
8618 /*
8619 =for apidoc newSVuv
8620
8621 Creates a new SV and copies an unsigned integer into it.
8622 The reference count for the SV is set to 1.
8623
8624 =cut
8625 */
8626
8627 SV *
8628 Perl_newSVuv(pTHX_ const UV u)
8629 {
8630     dVAR;
8631     register SV *sv;
8632
8633     new_SV(sv);
8634     sv_setuv(sv,u);
8635     return sv;
8636 }
8637
8638 /*
8639 =for apidoc newSV_type
8640
8641 Creates a new SV, of the type specified.  The reference count for the new SV
8642 is set to 1.
8643
8644 =cut
8645 */
8646
8647 SV *
8648 Perl_newSV_type(pTHX_ const svtype type)
8649 {
8650     register SV *sv;
8651
8652     new_SV(sv);
8653     sv_upgrade(sv, type);
8654     return sv;
8655 }
8656
8657 /*
8658 =for apidoc newRV_noinc
8659
8660 Creates an RV wrapper for an SV.  The reference count for the original
8661 SV is B<not> incremented.
8662
8663 =cut
8664 */
8665
8666 SV *
8667 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
8668 {
8669     dVAR;
8670     register SV *sv = newSV_type(SVt_IV);
8671
8672     PERL_ARGS_ASSERT_NEWRV_NOINC;
8673
8674     SvTEMP_off(tmpRef);
8675     SvRV_set(sv, tmpRef);
8676     SvROK_on(sv);
8677     return sv;
8678 }
8679
8680 /* newRV_inc is the official function name to use now.
8681  * newRV_inc is in fact #defined to newRV in sv.h
8682  */
8683
8684 SV *
8685 Perl_newRV(pTHX_ SV *const sv)
8686 {
8687     dVAR;
8688
8689     PERL_ARGS_ASSERT_NEWRV;
8690
8691     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
8692 }
8693
8694 /*
8695 =for apidoc newSVsv
8696
8697 Creates a new SV which is an exact duplicate of the original SV.
8698 (Uses C<sv_setsv>).
8699
8700 =cut
8701 */
8702
8703 SV *
8704 Perl_newSVsv(pTHX_ register SV *const old)
8705 {
8706     dVAR;
8707     register SV *sv;
8708
8709     if (!old)
8710         return NULL;
8711     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
8712         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
8713         return NULL;
8714     }
8715     new_SV(sv);
8716     /* SV_GMAGIC is the default for sv_setv()
8717        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
8718        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
8719     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
8720     return sv;
8721 }
8722
8723 /*
8724 =for apidoc sv_reset
8725
8726 Underlying implementation for the C<reset> Perl function.
8727 Note that the perl-level function is vaguely deprecated.
8728
8729 =cut
8730 */
8731
8732 void
8733 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
8734 {
8735     dVAR;
8736     char todo[PERL_UCHAR_MAX+1];
8737
8738     PERL_ARGS_ASSERT_SV_RESET;
8739
8740     if (!stash)
8741         return;
8742
8743     if (!*s) {          /* reset ?? searches */
8744         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8745         if (mg) {
8746             const U32 count = mg->mg_len / sizeof(PMOP**);
8747             PMOP **pmp = (PMOP**) mg->mg_ptr;
8748             PMOP *const *const end = pmp + count;
8749
8750             while (pmp < end) {
8751 #ifdef USE_ITHREADS
8752                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8753 #else
8754                 (*pmp)->op_pmflags &= ~PMf_USED;
8755 #endif
8756                 ++pmp;
8757             }
8758         }
8759         return;
8760     }
8761
8762     /* reset variables */
8763
8764     if (!HvARRAY(stash))
8765         return;
8766
8767     Zero(todo, 256, char);
8768     while (*s) {
8769         I32 max;
8770         I32 i = (unsigned char)*s;
8771         if (s[1] == '-') {
8772             s += 2;
8773         }
8774         max = (unsigned char)*s++;
8775         for ( ; i <= max; i++) {
8776             todo[i] = 1;
8777         }
8778         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8779             HE *entry;
8780             for (entry = HvARRAY(stash)[i];
8781                  entry;
8782                  entry = HeNEXT(entry))
8783             {
8784                 register GV *gv;
8785                 register SV *sv;
8786
8787                 if (!todo[(U8)*HeKEY(entry)])
8788                     continue;
8789                 gv = MUTABLE_GV(HeVAL(entry));
8790                 sv = GvSV(gv);
8791                 if (sv) {
8792                     if (SvTHINKFIRST(sv)) {
8793                         if (!SvREADONLY(sv) && SvROK(sv))
8794                             sv_unref(sv);
8795                         /* XXX Is this continue a bug? Why should THINKFIRST
8796                            exempt us from resetting arrays and hashes?  */
8797                         continue;
8798                     }
8799                     SvOK_off(sv);
8800                     if (SvTYPE(sv) >= SVt_PV) {
8801                         SvCUR_set(sv, 0);
8802                         if (SvPVX_const(sv) != NULL)
8803                             *SvPVX(sv) = '\0';
8804                         SvTAINT(sv);
8805                     }
8806                 }
8807                 if (GvAV(gv)) {
8808                     av_clear(GvAV(gv));
8809                 }
8810                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8811 #if defined(VMS)
8812                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8813 #else /* ! VMS */
8814                     hv_clear(GvHV(gv));
8815 #  if defined(USE_ENVIRON_ARRAY)
8816                     if (gv == PL_envgv)
8817                         my_clearenv();
8818 #  endif /* USE_ENVIRON_ARRAY */
8819 #endif /* VMS */
8820                 }
8821             }
8822         }
8823     }
8824 }
8825
8826 /*
8827 =for apidoc sv_2io
8828
8829 Using various gambits, try to get an IO from an SV: the IO slot if its a
8830 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8831 named after the PV if we're a string.
8832
8833 =cut
8834 */
8835
8836 IO*
8837 Perl_sv_2io(pTHX_ SV *const sv)
8838 {
8839     IO* io;
8840     GV* gv;
8841
8842     PERL_ARGS_ASSERT_SV_2IO;
8843
8844     switch (SvTYPE(sv)) {
8845     case SVt_PVIO:
8846         io = MUTABLE_IO(sv);
8847         break;
8848     case SVt_PVGV:
8849     case SVt_PVLV:
8850         if (isGV_with_GP(sv)) {
8851             gv = MUTABLE_GV(sv);
8852             io = GvIO(gv);
8853             if (!io)
8854                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
8855                                     HEKfARG(GvNAME_HEK(gv)));
8856             break;
8857         }
8858         /* FALL THROUGH */
8859     default:
8860         if (!SvOK(sv))
8861             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8862         if (SvROK(sv))
8863             return sv_2io(SvRV(sv));
8864         gv = gv_fetchsv(sv, 0, SVt_PVIO);
8865         if (gv)
8866             io = GvIO(gv);
8867         else
8868             io = 0;
8869         if (!io)
8870             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
8871         break;
8872     }
8873     return io;
8874 }
8875
8876 /*
8877 =for apidoc sv_2cv
8878
8879 Using various gambits, try to get a CV from an SV; in addition, try if
8880 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8881 The flags in C<lref> are passed to gv_fetchsv.
8882
8883 =cut
8884 */
8885
8886 CV *
8887 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8888 {
8889     dVAR;
8890     GV *gv = NULL;
8891     CV *cv = NULL;
8892
8893     PERL_ARGS_ASSERT_SV_2CV;
8894
8895     if (!sv) {
8896         *st = NULL;
8897         *gvp = NULL;
8898         return NULL;
8899     }
8900     switch (SvTYPE(sv)) {
8901     case SVt_PVCV:
8902         *st = CvSTASH(sv);
8903         *gvp = NULL;
8904         return MUTABLE_CV(sv);
8905     case SVt_PVHV:
8906     case SVt_PVAV:
8907         *st = NULL;
8908         *gvp = NULL;
8909         return NULL;
8910     default:
8911         SvGETMAGIC(sv);
8912         if (SvROK(sv)) {
8913             if (SvAMAGIC(sv))
8914                 sv = amagic_deref_call(sv, to_cv_amg);
8915             /* At this point I'd like to do SPAGAIN, but really I need to
8916                force it upon my callers. Hmmm. This is a mess... */
8917
8918             sv = SvRV(sv);
8919             if (SvTYPE(sv) == SVt_PVCV) {
8920                 cv = MUTABLE_CV(sv);
8921                 *gvp = NULL;
8922                 *st = CvSTASH(cv);
8923                 return cv;
8924             }
8925             else if(isGV_with_GP(sv))
8926                 gv = MUTABLE_GV(sv);
8927             else
8928                 Perl_croak(aTHX_ "Not a subroutine reference");
8929         }
8930         else if (isGV_with_GP(sv)) {
8931             gv = MUTABLE_GV(sv);
8932         }
8933         else {
8934             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
8935         }
8936         *gvp = gv;
8937         if (!gv) {
8938             *st = NULL;
8939             return NULL;
8940         }
8941         /* Some flags to gv_fetchsv mean don't really create the GV  */
8942         if (!isGV_with_GP(gv)) {
8943             *st = NULL;
8944             return NULL;
8945         }
8946         *st = GvESTASH(gv);
8947         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
8948             SV *tmpsv;
8949             ENTER;
8950             tmpsv = newSV(0);
8951             gv_efullname3(tmpsv, gv, NULL);
8952             /* XXX this is probably not what they think they're getting.
8953              * It has the same effect as "sub name;", i.e. just a forward
8954              * declaration! */
8955             newSUB(start_subparse(FALSE, 0),
8956                    newSVOP(OP_CONST, 0, tmpsv),
8957                    NULL, NULL);
8958             LEAVE;
8959             if (!GvCVu(gv))
8960                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8961                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8962         }
8963         return GvCVu(gv);
8964     }
8965 }
8966
8967 /*
8968 =for apidoc sv_true
8969
8970 Returns true if the SV has a true value by Perl's rules.
8971 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8972 instead use an in-line version.
8973
8974 =cut
8975 */
8976
8977 I32
8978 Perl_sv_true(pTHX_ register SV *const sv)
8979 {
8980     if (!sv)
8981         return 0;
8982     if (SvPOK(sv)) {
8983         register const XPV* const tXpv = (XPV*)SvANY(sv);
8984         if (tXpv &&
8985                 (tXpv->xpv_cur > 1 ||
8986                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8987             return 1;
8988         else
8989             return 0;
8990     }
8991     else {
8992         if (SvIOK(sv))
8993             return SvIVX(sv) != 0;
8994         else {
8995             if (SvNOK(sv))
8996                 return SvNVX(sv) != 0.0;
8997             else
8998                 return sv_2bool(sv);
8999         }
9000     }
9001 }
9002
9003 /*
9004 =for apidoc sv_pvn_force
9005
9006 Get a sensible string out of the SV somehow.
9007 A private implementation of the C<SvPV_force> macro for compilers which
9008 can't cope with complex macro expressions. Always use the macro instead.
9009
9010 =for apidoc sv_pvn_force_flags
9011
9012 Get a sensible string out of the SV somehow.
9013 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9014 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9015 implemented in terms of this function.
9016 You normally want to use the various wrapper macros instead: see
9017 C<SvPV_force> and C<SvPV_force_nomg>
9018
9019 =cut
9020 */
9021
9022 char *
9023 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9024 {
9025     dVAR;
9026
9027     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9028
9029     if (SvTHINKFIRST(sv) && !SvROK(sv))
9030         sv_force_normal_flags(sv, 0);
9031
9032     if (SvPOK(sv)) {
9033         if (lp)
9034             *lp = SvCUR(sv);
9035     }
9036     else {
9037         char *s;
9038         STRLEN len;
9039  
9040         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
9041             const char * const ref = sv_reftype(sv,0);
9042             if (PL_op)
9043                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
9044                            ref, OP_DESC(PL_op));
9045             else
9046                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
9047         }
9048         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
9049             || isGV_with_GP(sv))
9050             /* diag_listed_as: Can't coerce %s to %s in %s */
9051             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9052                 OP_DESC(PL_op));
9053         s = sv_2pv_flags(sv, &len, flags);
9054         if (lp)
9055             *lp = len;
9056
9057         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9058             if (SvROK(sv))
9059                 sv_unref(sv);
9060             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9061             SvGROW(sv, len + 1);
9062             Move(s,SvPVX(sv),len,char);
9063             SvCUR_set(sv, len);
9064             SvPVX(sv)[len] = '\0';
9065         }
9066         if (!SvPOK(sv)) {
9067             SvPOK_on(sv);               /* validate pointer */
9068             SvTAINT(sv);
9069             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9070                                   PTR2UV(sv),SvPVX_const(sv)));
9071         }
9072     }
9073     return SvPVX_mutable(sv);
9074 }
9075
9076 /*
9077 =for apidoc sv_pvbyten_force
9078
9079 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
9080
9081 =cut
9082 */
9083
9084 char *
9085 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9086 {
9087     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9088
9089     sv_pvn_force(sv,lp);
9090     sv_utf8_downgrade(sv,0);
9091     *lp = SvCUR(sv);
9092     return SvPVX(sv);
9093 }
9094
9095 /*
9096 =for apidoc sv_pvutf8n_force
9097
9098 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
9099
9100 =cut
9101 */
9102
9103 char *
9104 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9105 {
9106     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9107
9108     sv_pvn_force(sv,lp);
9109     sv_utf8_upgrade(sv);
9110     *lp = SvCUR(sv);
9111     return SvPVX(sv);
9112 }
9113
9114 /*
9115 =for apidoc sv_reftype
9116
9117 Returns a string describing what the SV is a reference to.
9118
9119 =cut
9120 */
9121
9122 const char *
9123 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9124 {
9125     PERL_ARGS_ASSERT_SV_REFTYPE;
9126     if (ob && SvOBJECT(sv)) {
9127         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9128     }
9129     else {
9130         switch (SvTYPE(sv)) {
9131         case SVt_NULL:
9132         case SVt_IV:
9133         case SVt_NV:
9134         case SVt_PV:
9135         case SVt_PVIV:
9136         case SVt_PVNV:
9137         case SVt_PVMG:
9138                                 if (SvVOK(sv))
9139                                     return "VSTRING";
9140                                 if (SvROK(sv))
9141                                     return "REF";
9142                                 else
9143                                     return "SCALAR";
9144
9145         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9146                                 /* tied lvalues should appear to be
9147                                  * scalars for backwards compatibility */
9148                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9149                                     ? "SCALAR" : "LVALUE");
9150         case SVt_PVAV:          return "ARRAY";
9151         case SVt_PVHV:          return "HASH";
9152         case SVt_PVCV:          return "CODE";
9153         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9154                                     ? "GLOB" : "SCALAR");
9155         case SVt_PVFM:          return "FORMAT";
9156         case SVt_PVIO:          return "IO";
9157         case SVt_BIND:          return "BIND";
9158         case SVt_REGEXP:        return "REGEXP";
9159         default:                return "UNKNOWN";
9160         }
9161     }
9162 }
9163
9164 /*
9165 =for apidoc sv_ref
9166
9167 Returns a SV describing what the SV passed in is a reference to.
9168
9169 =cut
9170 */
9171
9172 SV *
9173 Perl_sv_ref(pTHX_ register SV *dst, const SV *const sv, const int ob)
9174 {
9175     PERL_ARGS_ASSERT_SV_REF;
9176
9177     if (!dst)
9178         dst = sv_newmortal();
9179
9180     if (ob && SvOBJECT(sv)) {
9181         HvNAME_get(SvSTASH(sv))
9182                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9183                     : sv_setpvn(dst, "__ANON__", 8);
9184     }
9185     else {
9186         const char * reftype = sv_reftype(sv, 0);
9187         sv_setpv(dst, reftype);
9188     }
9189     return dst;
9190 }
9191
9192 /*
9193 =for apidoc sv_isobject
9194
9195 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9196 object.  If the SV is not an RV, or if the object is not blessed, then this
9197 will return false.
9198
9199 =cut
9200 */
9201
9202 int
9203 Perl_sv_isobject(pTHX_ SV *sv)
9204 {
9205     if (!sv)
9206         return 0;
9207     SvGETMAGIC(sv);
9208     if (!SvROK(sv))
9209         return 0;
9210     sv = SvRV(sv);
9211     if (!SvOBJECT(sv))
9212         return 0;
9213     return 1;
9214 }
9215
9216 /*
9217 =for apidoc sv_isa
9218
9219 Returns a boolean indicating whether the SV is blessed into the specified
9220 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9221 an inheritance relationship.
9222
9223 =cut
9224 */
9225
9226 int
9227 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9228 {
9229     const char *hvname;
9230
9231     PERL_ARGS_ASSERT_SV_ISA;
9232
9233     if (!sv)
9234         return 0;
9235     SvGETMAGIC(sv);
9236     if (!SvROK(sv))
9237         return 0;
9238     sv = SvRV(sv);
9239     if (!SvOBJECT(sv))
9240         return 0;
9241     hvname = HvNAME_get(SvSTASH(sv));
9242     if (!hvname)
9243         return 0;
9244
9245     return strEQ(hvname, name);
9246 }
9247
9248 /*
9249 =for apidoc newSVrv
9250
9251 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
9252 it will be upgraded to one.  If C<classname> is non-null then the new SV will
9253 be blessed in the specified package.  The new SV is returned and its
9254 reference count is 1.
9255
9256 =cut
9257 */
9258
9259 SV*
9260 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9261 {
9262     dVAR;
9263     SV *sv;
9264
9265     PERL_ARGS_ASSERT_NEWSVRV;
9266
9267     new_SV(sv);
9268
9269     SV_CHECK_THINKFIRST_COW_DROP(rv);
9270     (void)SvAMAGIC_off(rv);
9271
9272     if (SvTYPE(rv) >= SVt_PVMG) {
9273         const U32 refcnt = SvREFCNT(rv);
9274         SvREFCNT(rv) = 0;
9275         sv_clear(rv);
9276         SvFLAGS(rv) = 0;
9277         SvREFCNT(rv) = refcnt;
9278
9279         sv_upgrade(rv, SVt_IV);
9280     } else if (SvROK(rv)) {
9281         SvREFCNT_dec(SvRV(rv));
9282     } else {
9283         prepare_SV_for_RV(rv);
9284     }
9285
9286     SvOK_off(rv);
9287     SvRV_set(rv, sv);
9288     SvROK_on(rv);
9289
9290     if (classname) {
9291         HV* const stash = gv_stashpv(classname, GV_ADD);
9292         (void)sv_bless(rv, stash);
9293     }
9294     return sv;
9295 }
9296
9297 /*
9298 =for apidoc sv_setref_pv
9299
9300 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9301 argument will be upgraded to an RV.  That RV will be modified to point to
9302 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9303 into the SV.  The C<classname> argument indicates the package for the
9304 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9305 will have a reference count of 1, and the RV will be returned.
9306
9307 Do not use with other Perl types such as HV, AV, SV, CV, because those
9308 objects will become corrupted by the pointer copy process.
9309
9310 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9311
9312 =cut
9313 */
9314
9315 SV*
9316 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9317 {
9318     dVAR;
9319
9320     PERL_ARGS_ASSERT_SV_SETREF_PV;
9321
9322     if (!pv) {
9323         sv_setsv(rv, &PL_sv_undef);
9324         SvSETMAGIC(rv);
9325     }
9326     else
9327         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9328     return rv;
9329 }
9330
9331 /*
9332 =for apidoc sv_setref_iv
9333
9334 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9335 argument will be upgraded to an RV.  That RV will be modified to point to
9336 the new SV.  The C<classname> argument indicates the package for the
9337 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9338 will have a reference count of 1, and the RV will be returned.
9339
9340 =cut
9341 */
9342
9343 SV*
9344 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9345 {
9346     PERL_ARGS_ASSERT_SV_SETREF_IV;
9347
9348     sv_setiv(newSVrv(rv,classname), iv);
9349     return rv;
9350 }
9351
9352 /*
9353 =for apidoc sv_setref_uv
9354
9355 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9356 argument will be upgraded to an RV.  That RV will be modified to point to
9357 the new SV.  The C<classname> argument indicates the package for the
9358 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9359 will have a reference count of 1, and the RV will be returned.
9360
9361 =cut
9362 */
9363
9364 SV*
9365 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9366 {
9367     PERL_ARGS_ASSERT_SV_SETREF_UV;
9368
9369     sv_setuv(newSVrv(rv,classname), uv);
9370     return rv;
9371 }
9372
9373 /*
9374 =for apidoc sv_setref_nv
9375
9376 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9377 argument will be upgraded to an RV.  That RV will be modified to point to
9378 the new SV.  The C<classname> argument indicates the package for the
9379 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9380 will have a reference count of 1, and the RV will be returned.
9381
9382 =cut
9383 */
9384
9385 SV*
9386 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9387 {
9388     PERL_ARGS_ASSERT_SV_SETREF_NV;
9389
9390     sv_setnv(newSVrv(rv,classname), nv);
9391     return rv;
9392 }
9393
9394 /*
9395 =for apidoc sv_setref_pvn
9396
9397 Copies a string into a new SV, optionally blessing the SV.  The length of the
9398 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9399 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9400 argument indicates the package for the blessing.  Set C<classname> to
9401 C<NULL> to avoid the blessing.  The new SV will have a reference count
9402 of 1, and the RV will be returned.
9403
9404 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9405
9406 =cut
9407 */
9408
9409 SV*
9410 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9411                    const char *const pv, const STRLEN n)
9412 {
9413     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9414
9415     sv_setpvn(newSVrv(rv,classname), pv, n);
9416     return rv;
9417 }
9418
9419 /*
9420 =for apidoc sv_bless
9421
9422 Blesses an SV into a specified package.  The SV must be an RV.  The package
9423 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9424 of the SV is unaffected.
9425
9426 =cut
9427 */
9428
9429 SV*
9430 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9431 {
9432     dVAR;
9433     SV *tmpRef;
9434
9435     PERL_ARGS_ASSERT_SV_BLESS;
9436
9437     if (!SvROK(sv))
9438         Perl_croak(aTHX_ "Can't bless non-reference value");
9439     tmpRef = SvRV(sv);
9440     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9441         if (SvIsCOW(tmpRef))
9442             sv_force_normal_flags(tmpRef, 0);
9443         if (SvREADONLY(tmpRef))
9444             Perl_croak_no_modify(aTHX);
9445         if (SvOBJECT(tmpRef)) {
9446             if (SvTYPE(tmpRef) != SVt_PVIO)
9447                 --PL_sv_objcount;
9448             SvREFCNT_dec(SvSTASH(tmpRef));
9449         }
9450     }
9451     SvOBJECT_on(tmpRef);
9452     if (SvTYPE(tmpRef) != SVt_PVIO)
9453         ++PL_sv_objcount;
9454     SvUPGRADE(tmpRef, SVt_PVMG);
9455     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9456
9457     if (Gv_AMG(stash))
9458         SvAMAGIC_on(sv);
9459     else
9460         (void)SvAMAGIC_off(sv);
9461
9462     if(SvSMAGICAL(tmpRef))
9463         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9464             mg_set(tmpRef);
9465
9466
9467
9468     return sv;
9469 }
9470
9471 /* Downgrades a PVGV to a PVMG. If it’s actually a PVLV, we leave the type
9472  * as it is after unglobbing it.
9473  */
9474
9475 STATIC void
9476 S_sv_unglob(pTHX_ SV *const sv)
9477 {
9478     dVAR;
9479     void *xpvmg;
9480     HV *stash;
9481     SV * const temp = sv_newmortal();
9482
9483     PERL_ARGS_ASSERT_SV_UNGLOB;
9484
9485     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9486     SvFAKE_off(sv);
9487     gv_efullname3(temp, MUTABLE_GV(sv), "*");
9488
9489     if (GvGP(sv)) {
9490         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9491            && HvNAME_get(stash))
9492             mro_method_changed_in(stash);
9493         gp_free(MUTABLE_GV(sv));
9494     }
9495     if (GvSTASH(sv)) {
9496         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9497         GvSTASH(sv) = NULL;
9498     }
9499     GvMULTI_off(sv);
9500     if (GvNAME_HEK(sv)) {
9501         unshare_hek(GvNAME_HEK(sv));
9502     }
9503     isGV_with_GP_off(sv);
9504
9505     if(SvTYPE(sv) == SVt_PVGV) {
9506         /* need to keep SvANY(sv) in the right arena */
9507         xpvmg = new_XPVMG();
9508         StructCopy(SvANY(sv), xpvmg, XPVMG);
9509         del_XPVGV(SvANY(sv));
9510         SvANY(sv) = xpvmg;
9511
9512         SvFLAGS(sv) &= ~SVTYPEMASK;
9513         SvFLAGS(sv) |= SVt_PVMG;
9514     }
9515
9516     /* Intentionally not calling any local SET magic, as this isn't so much a
9517        set operation as merely an internal storage change.  */
9518     sv_setsv_flags(sv, temp, 0);
9519 }
9520
9521 /*
9522 =for apidoc sv_unref_flags
9523
9524 Unsets the RV status of the SV, and decrements the reference count of
9525 whatever was being referenced by the RV.  This can almost be thought of
9526 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9527 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9528 (otherwise the decrementing is conditional on the reference count being
9529 different from one or the reference being a readonly SV).
9530 See C<SvROK_off>.
9531
9532 =cut
9533 */
9534
9535 void
9536 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9537 {
9538     SV* const target = SvRV(ref);
9539
9540     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9541
9542     if (SvWEAKREF(ref)) {
9543         sv_del_backref(target, ref);
9544         SvWEAKREF_off(ref);
9545         SvRV_set(ref, NULL);
9546         return;
9547     }
9548     SvRV_set(ref, NULL);
9549     SvROK_off(ref);
9550     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9551        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9552     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9553         SvREFCNT_dec(target);
9554     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9555         sv_2mortal(target);     /* Schedule for freeing later */
9556 }
9557
9558 /*
9559 =for apidoc sv_untaint
9560
9561 Untaint an SV. Use C<SvTAINTED_off> instead.
9562
9563 =cut
9564 */
9565
9566 void
9567 Perl_sv_untaint(pTHX_ SV *const sv)
9568 {
9569     PERL_ARGS_ASSERT_SV_UNTAINT;
9570
9571     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9572         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9573         if (mg)
9574             mg->mg_len &= ~1;
9575     }
9576 }
9577
9578 /*
9579 =for apidoc sv_tainted
9580
9581 Test an SV for taintedness. Use C<SvTAINTED> instead.
9582
9583 =cut
9584 */
9585
9586 bool
9587 Perl_sv_tainted(pTHX_ SV *const sv)
9588 {
9589     PERL_ARGS_ASSERT_SV_TAINTED;
9590
9591     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9592         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9593         if (mg && (mg->mg_len & 1) )
9594             return TRUE;
9595     }
9596     return FALSE;
9597 }
9598
9599 /*
9600 =for apidoc sv_setpviv
9601
9602 Copies an integer into the given SV, also updating its string value.
9603 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9604
9605 =cut
9606 */
9607
9608 void
9609 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9610 {
9611     char buf[TYPE_CHARS(UV)];
9612     char *ebuf;
9613     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
9614
9615     PERL_ARGS_ASSERT_SV_SETPVIV;
9616
9617     sv_setpvn(sv, ptr, ebuf - ptr);
9618 }
9619
9620 /*
9621 =for apidoc sv_setpviv_mg
9622
9623 Like C<sv_setpviv>, but also handles 'set' magic.
9624
9625 =cut
9626 */
9627
9628 void
9629 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
9630 {
9631     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
9632
9633     sv_setpviv(sv, iv);
9634     SvSETMAGIC(sv);
9635 }
9636
9637 #if defined(PERL_IMPLICIT_CONTEXT)
9638
9639 /* pTHX_ magic can't cope with varargs, so this is a no-context
9640  * version of the main function, (which may itself be aliased to us).
9641  * Don't access this version directly.
9642  */
9643
9644 void
9645 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
9646 {
9647     dTHX;
9648     va_list args;
9649
9650     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
9651
9652     va_start(args, pat);
9653     sv_vsetpvf(sv, pat, &args);
9654     va_end(args);
9655 }
9656
9657 /* pTHX_ magic can't cope with varargs, so this is a no-context
9658  * version of the main function, (which may itself be aliased to us).
9659  * Don't access this version directly.
9660  */
9661
9662 void
9663 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9664 {
9665     dTHX;
9666     va_list args;
9667
9668     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
9669
9670     va_start(args, pat);
9671     sv_vsetpvf_mg(sv, pat, &args);
9672     va_end(args);
9673 }
9674 #endif
9675
9676 /*
9677 =for apidoc sv_setpvf
9678
9679 Works like C<sv_catpvf> but copies the text into the SV instead of
9680 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
9681
9682 =cut
9683 */
9684
9685 void
9686 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
9687 {
9688     va_list args;
9689
9690     PERL_ARGS_ASSERT_SV_SETPVF;
9691
9692     va_start(args, pat);
9693     sv_vsetpvf(sv, pat, &args);
9694     va_end(args);
9695 }
9696
9697 /*
9698 =for apidoc sv_vsetpvf
9699
9700 Works like C<sv_vcatpvf> but copies the text into the SV instead of
9701 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
9702
9703 Usually used via its frontend C<sv_setpvf>.
9704
9705 =cut
9706 */
9707
9708 void
9709 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9710 {
9711     PERL_ARGS_ASSERT_SV_VSETPVF;
9712
9713     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9714 }
9715
9716 /*
9717 =for apidoc sv_setpvf_mg
9718
9719 Like C<sv_setpvf>, but also handles 'set' magic.
9720
9721 =cut
9722 */
9723
9724 void
9725 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9726 {
9727     va_list args;
9728
9729     PERL_ARGS_ASSERT_SV_SETPVF_MG;
9730
9731     va_start(args, pat);
9732     sv_vsetpvf_mg(sv, pat, &args);
9733     va_end(args);
9734 }
9735
9736 /*
9737 =for apidoc sv_vsetpvf_mg
9738
9739 Like C<sv_vsetpvf>, but also handles 'set' magic.
9740
9741 Usually used via its frontend C<sv_setpvf_mg>.
9742
9743 =cut
9744 */
9745
9746 void
9747 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9748 {
9749     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
9750
9751     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9752     SvSETMAGIC(sv);
9753 }
9754
9755 #if defined(PERL_IMPLICIT_CONTEXT)
9756
9757 /* pTHX_ magic can't cope with varargs, so this is a no-context
9758  * version of the main function, (which may itself be aliased to us).
9759  * Don't access this version directly.
9760  */
9761
9762 void
9763 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9764 {
9765     dTHX;
9766     va_list args;
9767
9768     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9769
9770     va_start(args, pat);
9771     sv_vcatpvf(sv, pat, &args);
9772     va_end(args);
9773 }
9774
9775 /* pTHX_ magic can't cope with varargs, so this is a no-context
9776  * version of the main function, (which may itself be aliased to us).
9777  * Don't access this version directly.
9778  */
9779
9780 void
9781 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9782 {
9783     dTHX;
9784     va_list args;
9785
9786     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9787
9788     va_start(args, pat);
9789     sv_vcatpvf_mg(sv, pat, &args);
9790     va_end(args);
9791 }
9792 #endif
9793
9794 /*
9795 =for apidoc sv_catpvf
9796
9797 Processes its arguments like C<sprintf> and appends the formatted
9798 output to an SV.  If the appended data contains "wide" characters
9799 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9800 and characters >255 formatted with %c), the original SV might get
9801 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9802 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
9803 valid UTF-8; if the original SV was bytes, the pattern should be too.
9804
9805 =cut */
9806
9807 void
9808 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9809 {
9810     va_list args;
9811
9812     PERL_ARGS_ASSERT_SV_CATPVF;
9813
9814     va_start(args, pat);
9815     sv_vcatpvf(sv, pat, &args);
9816     va_end(args);
9817 }
9818
9819 /*
9820 =for apidoc sv_vcatpvf
9821
9822 Processes its arguments like C<vsprintf> and appends the formatted output
9823 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9824
9825 Usually used via its frontend C<sv_catpvf>.
9826
9827 =cut
9828 */
9829
9830 void
9831 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9832 {
9833     PERL_ARGS_ASSERT_SV_VCATPVF;
9834
9835     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9836 }
9837
9838 /*
9839 =for apidoc sv_catpvf_mg
9840
9841 Like C<sv_catpvf>, but also handles 'set' magic.
9842
9843 =cut
9844 */
9845
9846 void
9847 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9848 {
9849     va_list args;
9850
9851     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9852
9853     va_start(args, pat);
9854     sv_vcatpvf_mg(sv, pat, &args);
9855     va_end(args);
9856 }
9857
9858 /*
9859 =for apidoc sv_vcatpvf_mg
9860
9861 Like C<sv_vcatpvf>, but also handles 'set' magic.
9862
9863 Usually used via its frontend C<sv_catpvf_mg>.
9864
9865 =cut
9866 */
9867
9868 void
9869 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9870 {
9871     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9872
9873     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9874     SvSETMAGIC(sv);
9875 }
9876
9877 /*
9878 =for apidoc sv_vsetpvfn
9879
9880 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9881 appending it.
9882
9883 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9884
9885 =cut
9886 */
9887
9888 void
9889 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9890                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9891 {
9892     PERL_ARGS_ASSERT_SV_VSETPVFN;
9893
9894     sv_setpvs(sv, "");
9895     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9896 }
9897
9898
9899 /*
9900  * Warn of missing argument to sprintf, and then return a defined value
9901  * to avoid inappropriate "use of uninit" warnings [perl #71000].
9902  */
9903 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
9904 STATIC SV*
9905 S_vcatpvfn_missing_argument(pTHX) {
9906     if (ckWARN(WARN_MISSING)) {
9907         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
9908                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
9909     }
9910     return &PL_sv_no;
9911 }
9912
9913
9914 STATIC I32
9915 S_expect_number(pTHX_ char **const pattern)
9916 {
9917     dVAR;
9918     I32 var = 0;
9919
9920     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9921
9922     switch (**pattern) {
9923     case '1': case '2': case '3':
9924     case '4': case '5': case '6':
9925     case '7': case '8': case '9':
9926         var = *(*pattern)++ - '0';
9927         while (isDIGIT(**pattern)) {
9928             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9929             if (tmp < var)
9930                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
9931             var = tmp;
9932         }
9933     }
9934     return var;
9935 }
9936
9937 STATIC char *
9938 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9939 {
9940     const int neg = nv < 0;
9941     UV uv;
9942
9943     PERL_ARGS_ASSERT_F0CONVERT;
9944
9945     if (neg)
9946         nv = -nv;
9947     if (nv < UV_MAX) {
9948         char *p = endbuf;
9949         nv += 0.5;
9950         uv = (UV)nv;
9951         if (uv & 1 && uv == nv)
9952             uv--;                       /* Round to even */
9953         do {
9954             const unsigned dig = uv % 10;
9955             *--p = '0' + dig;
9956         } while (uv /= 10);
9957         if (neg)
9958             *--p = '-';
9959         *len = endbuf - p;
9960         return p;
9961     }
9962     return NULL;
9963 }
9964
9965
9966 /*
9967 =for apidoc sv_vcatpvfn
9968
9969 Processes its arguments like C<vsprintf> and appends the formatted output
9970 to an SV.  Uses an array of SVs if the C style variable argument list is
9971 missing (NULL).  When running with taint checks enabled, indicates via
9972 C<maybe_tainted> if results are untrustworthy (often due to the use of
9973 locales).
9974
9975 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9976
9977 =cut
9978 */
9979
9980
9981 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9982                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9983                         vec_utf8 = DO_UTF8(vecsv);
9984
9985 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9986
9987 void
9988 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9989                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9990 {
9991     dVAR;
9992     char *p;
9993     char *q;
9994     const char *patend;
9995     STRLEN origlen;
9996     I32 svix = 0;
9997     static const char nullstr[] = "(null)";
9998     SV *argsv = NULL;
9999     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
10000     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
10001     SV *nsv = NULL;
10002     /* Times 4: a decimal digit takes more than 3 binary digits.
10003      * NV_DIG: mantissa takes than many decimal digits.
10004      * Plus 32: Playing safe. */
10005     char ebuf[IV_DIG * 4 + NV_DIG + 32];
10006     /* large enough for "%#.#f" --chip */
10007     /* what about long double NVs? --jhi */
10008
10009     PERL_ARGS_ASSERT_SV_VCATPVFN;
10010     PERL_UNUSED_ARG(maybe_tainted);
10011
10012     /* no matter what, this is a string now */
10013     (void)SvPV_force(sv, origlen);
10014
10015     /* special-case "", "%s", and "%-p" (SVf - see below) */
10016     if (patlen == 0)
10017         return;
10018     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
10019         if (args) {
10020             const char * const s = va_arg(*args, char*);
10021             sv_catpv(sv, s ? s : nullstr);
10022         }
10023         else if (svix < svmax) {
10024             sv_catsv(sv, *svargs);
10025         }
10026         else
10027             S_vcatpvfn_missing_argument(aTHX);
10028         return;
10029     }
10030     if (args && patlen == 3 && pat[0] == '%' &&
10031                 pat[1] == '-' && pat[2] == 'p') {
10032         argsv = MUTABLE_SV(va_arg(*args, void*));
10033         sv_catsv(sv, argsv);
10034         return;
10035     }
10036
10037 #ifndef USE_LONG_DOUBLE
10038     /* special-case "%.<number>[gf]" */
10039     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
10040          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
10041         unsigned digits = 0;
10042         const char *pp;
10043
10044         pp = pat + 2;
10045         while (*pp >= '0' && *pp <= '9')
10046             digits = 10 * digits + (*pp++ - '0');
10047         if (pp - pat == (int)patlen - 1 && svix < svmax) {
10048             const NV nv = SvNV(*svargs);
10049             if (*pp == 'g') {
10050                 /* Add check for digits != 0 because it seems that some
10051                    gconverts are buggy in this case, and we don't yet have
10052                    a Configure test for this.  */
10053                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
10054                      /* 0, point, slack */
10055                     Gconvert(nv, (int)digits, 0, ebuf);
10056                     sv_catpv(sv, ebuf);
10057                     if (*ebuf)  /* May return an empty string for digits==0 */
10058                         return;
10059                 }
10060             } else if (!digits) {
10061                 STRLEN l;
10062
10063                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
10064                     sv_catpvn(sv, p, l);
10065                     return;
10066                 }
10067             }
10068         }
10069     }
10070 #endif /* !USE_LONG_DOUBLE */
10071
10072     if (!args && svix < svmax && DO_UTF8(*svargs))
10073         has_utf8 = TRUE;
10074
10075     patend = (char*)pat + patlen;
10076     for (p = (char*)pat; p < patend; p = q) {
10077         bool alt = FALSE;
10078         bool left = FALSE;
10079         bool vectorize = FALSE;
10080         bool vectorarg = FALSE;
10081         bool vec_utf8 = FALSE;
10082         char fill = ' ';
10083         char plus = 0;
10084         char intsize = 0;
10085         STRLEN width = 0;
10086         STRLEN zeros = 0;
10087         bool has_precis = FALSE;
10088         STRLEN precis = 0;
10089         const I32 osvix = svix;
10090         bool is_utf8 = FALSE;  /* is this item utf8?   */
10091 #ifdef HAS_LDBL_SPRINTF_BUG
10092         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10093            with sfio - Allen <allens@cpan.org> */
10094         bool fix_ldbl_sprintf_bug = FALSE;
10095 #endif
10096
10097         char esignbuf[4];
10098         U8 utf8buf[UTF8_MAXBYTES+1];
10099         STRLEN esignlen = 0;
10100
10101         const char *eptr = NULL;
10102         const char *fmtstart;
10103         STRLEN elen = 0;
10104         SV *vecsv = NULL;
10105         const U8 *vecstr = NULL;
10106         STRLEN veclen = 0;
10107         char c = 0;
10108         int i;
10109         unsigned base = 0;
10110         IV iv = 0;
10111         UV uv = 0;
10112         /* we need a long double target in case HAS_LONG_DOUBLE but
10113            not USE_LONG_DOUBLE
10114         */
10115 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10116         long double nv;
10117 #else
10118         NV nv;
10119 #endif
10120         STRLEN have;
10121         STRLEN need;
10122         STRLEN gap;
10123         const char *dotstr = ".";
10124         STRLEN dotstrlen = 1;
10125         I32 efix = 0; /* explicit format parameter index */
10126         I32 ewix = 0; /* explicit width index */
10127         I32 epix = 0; /* explicit precision index */
10128         I32 evix = 0; /* explicit vector index */
10129         bool asterisk = FALSE;
10130
10131         /* echo everything up to the next format specification */
10132         for (q = p; q < patend && *q != '%'; ++q) ;
10133         if (q > p) {
10134             if (has_utf8 && !pat_utf8)
10135                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
10136             else
10137                 sv_catpvn(sv, p, q - p);
10138             p = q;
10139         }
10140         if (q++ >= patend)
10141             break;
10142
10143         fmtstart = q;
10144
10145 /*
10146     We allow format specification elements in this order:
10147         \d+\$              explicit format parameter index
10148         [-+ 0#]+           flags
10149         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10150         0                  flag (as above): repeated to allow "v02"     
10151         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10152         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10153         [hlqLV]            size
10154     [%bcdefginopsuxDFOUX] format (mandatory)
10155 */
10156
10157         if (args) {
10158 /*  
10159         As of perl5.9.3, printf format checking is on by default.
10160         Internally, perl uses %p formats to provide an escape to
10161         some extended formatting.  This block deals with those
10162         extensions: if it does not match, (char*)q is reset and
10163         the normal format processing code is used.
10164
10165         Currently defined extensions are:
10166                 %p              include pointer address (standard)      
10167                 %-p     (SVf)   include an SV (previously %_)
10168                 %-<num>p        include an SV with precision <num>      
10169                 %2p             include a HEK
10170                 %3p             include a HEK with precision of 256
10171                 %<num>p         (where num != 2 or 3) reserved for future
10172                                 extensions
10173
10174         Robin Barker 2005-07-14 (but modified since)
10175
10176                 %1p     (VDf)   removed.  RMB 2007-10-19
10177 */
10178             char* r = q; 
10179             bool sv = FALSE;    
10180             STRLEN n = 0;
10181             if (*q == '-')
10182                 sv = *q++;
10183             n = expect_number(&q);
10184             if (*q++ == 'p') {
10185                 if (sv) {                       /* SVf */
10186                     if (n) {
10187                         precis = n;
10188                         has_precis = TRUE;
10189                     }
10190                     argsv = MUTABLE_SV(va_arg(*args, void*));
10191                     eptr = SvPV_const(argsv, elen);
10192                     if (DO_UTF8(argsv))
10193                         is_utf8 = TRUE;
10194                     goto string;
10195                 }
10196                 else if (n==2 || n==3) {        /* HEKf */
10197                     HEK * const hek = va_arg(*args, HEK *);
10198                     eptr = HEK_KEY(hek);
10199                     elen = HEK_LEN(hek);
10200                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
10201                     if (n==3) precis = 256, has_precis = TRUE;
10202                     goto string;
10203                 }
10204                 else if (n) {
10205                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10206                                      "internal %%<num>p might conflict with future printf extensions");
10207                 }
10208             }
10209             q = r; 
10210         }
10211
10212         if ( (width = expect_number(&q)) ) {
10213             if (*q == '$') {
10214                 ++q;
10215                 efix = width;
10216             } else {
10217                 goto gotwidth;
10218             }
10219         }
10220
10221         /* FLAGS */
10222
10223         while (*q) {
10224             switch (*q) {
10225             case ' ':
10226             case '+':
10227                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10228                     q++;
10229                 else
10230                     plus = *q++;
10231                 continue;
10232
10233             case '-':
10234                 left = TRUE;
10235                 q++;
10236                 continue;
10237
10238             case '0':
10239                 fill = *q++;
10240                 continue;
10241
10242             case '#':
10243                 alt = TRUE;
10244                 q++;
10245                 continue;
10246
10247             default:
10248                 break;
10249             }
10250             break;
10251         }
10252
10253       tryasterisk:
10254         if (*q == '*') {
10255             q++;
10256             if ( (ewix = expect_number(&q)) )
10257                 if (*q++ != '$')
10258                     goto unknown;
10259             asterisk = TRUE;
10260         }
10261         if (*q == 'v') {
10262             q++;
10263             if (vectorize)
10264                 goto unknown;
10265             if ((vectorarg = asterisk)) {
10266                 evix = ewix;
10267                 ewix = 0;
10268                 asterisk = FALSE;
10269             }
10270             vectorize = TRUE;
10271             goto tryasterisk;
10272         }
10273
10274         if (!asterisk)
10275         {
10276             if( *q == '0' )
10277                 fill = *q++;
10278             width = expect_number(&q);
10279         }
10280
10281         if (vectorize && vectorarg) {
10282             /* vectorizing, but not with the default "." */
10283             if (args)
10284                 vecsv = va_arg(*args, SV*);
10285             else if (evix) {
10286                 vecsv = (evix > 0 && evix <= svmax)
10287                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10288             } else {
10289                 vecsv = svix < svmax
10290                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10291             }
10292             dotstr = SvPV_const(vecsv, dotstrlen);
10293             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10294                bad with tied or overloaded values that return UTF8.  */
10295             if (DO_UTF8(vecsv))
10296                 is_utf8 = TRUE;
10297             else if (has_utf8) {
10298                 vecsv = sv_mortalcopy(vecsv);
10299                 sv_utf8_upgrade(vecsv);
10300                 dotstr = SvPV_const(vecsv, dotstrlen);
10301                 is_utf8 = TRUE;
10302             }               
10303         }
10304
10305         if (asterisk) {
10306             if (args)
10307                 i = va_arg(*args, int);
10308             else
10309                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10310                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10311             left |= (i < 0);
10312             width = (i < 0) ? -i : i;
10313         }
10314       gotwidth:
10315
10316         /* PRECISION */
10317
10318         if (*q == '.') {
10319             q++;
10320             if (*q == '*') {
10321                 q++;
10322                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10323                     goto unknown;
10324                 /* XXX: todo, support specified precision parameter */
10325                 if (epix)
10326                     goto unknown;
10327                 if (args)
10328                     i = va_arg(*args, int);
10329                 else
10330                     i = (ewix ? ewix <= svmax : svix < svmax)
10331                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10332                 precis = i;
10333                 has_precis = !(i < 0);
10334             }
10335             else {
10336                 precis = 0;
10337                 while (isDIGIT(*q))
10338                     precis = precis * 10 + (*q++ - '0');
10339                 has_precis = TRUE;
10340             }
10341         }
10342
10343         if (vectorize) {
10344             if (args) {
10345                 VECTORIZE_ARGS
10346             }
10347             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10348                 vecsv = svargs[efix ? efix-1 : svix++];
10349                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10350                 vec_utf8 = DO_UTF8(vecsv);
10351
10352                 /* if this is a version object, we need to convert
10353                  * back into v-string notation and then let the
10354                  * vectorize happen normally
10355                  */
10356                 if (sv_derived_from(vecsv, "version")) {
10357                     char *version = savesvpv(vecsv);
10358                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10359                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
10360                         "vector argument not supported with alpha versions");
10361                         goto unknown;
10362                     }
10363                     vecsv = sv_newmortal();
10364                     scan_vstring(version, version + veclen, vecsv);
10365                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10366                     vec_utf8 = DO_UTF8(vecsv);
10367                     Safefree(version);
10368                 }
10369             }
10370             else {
10371                 vecstr = (U8*)"";
10372                 veclen = 0;
10373             }
10374         }
10375
10376         /* SIZE */
10377
10378         switch (*q) {
10379 #ifdef WIN32
10380         case 'I':                       /* Ix, I32x, and I64x */
10381 #  ifdef WIN64
10382             if (q[1] == '6' && q[2] == '4') {
10383                 q += 3;
10384                 intsize = 'q';
10385                 break;
10386             }
10387 #  endif
10388             if (q[1] == '3' && q[2] == '2') {
10389                 q += 3;
10390                 break;
10391             }
10392 #  ifdef WIN64
10393             intsize = 'q';
10394 #  endif
10395             q++;
10396             break;
10397 #endif
10398 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10399         case 'L':                       /* Ld */
10400             /*FALLTHROUGH*/
10401 #ifdef HAS_QUAD
10402         case 'q':                       /* qd */
10403 #endif
10404             intsize = 'q';
10405             q++;
10406             break;
10407 #endif
10408         case 'l':
10409             ++q;
10410 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10411             if (*q == 'l') {    /* lld, llf */
10412                 intsize = 'q';
10413                 ++q;
10414             }
10415             else
10416 #endif
10417                 intsize = 'l';
10418             break;
10419         case 'h':
10420             if (*++q == 'h') {  /* hhd, hhu */
10421                 intsize = 'c';
10422                 ++q;
10423             }
10424             else
10425                 intsize = 'h';
10426             break;
10427         case 'V':
10428         case 'z':
10429         case 't':
10430 #if HAS_C99
10431         case 'j':
10432 #endif
10433             intsize = *q++;
10434             break;
10435         }
10436
10437         /* CONVERSION */
10438
10439         if (*q == '%') {
10440             eptr = q++;
10441             elen = 1;
10442             if (vectorize) {
10443                 c = '%';
10444                 goto unknown;
10445             }
10446             goto string;
10447         }
10448
10449         if (!vectorize && !args) {
10450             if (efix) {
10451                 const I32 i = efix-1;
10452                 argsv = (i >= 0 && i < svmax)
10453                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10454             } else {
10455                 argsv = (svix >= 0 && svix < svmax)
10456                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10457             }
10458         }
10459
10460         switch (c = *q++) {
10461
10462             /* STRINGS */
10463
10464         case 'c':
10465             if (vectorize)
10466                 goto unknown;
10467             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10468             if ((uv > 255 ||
10469                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
10470                 && !IN_BYTES) {
10471                 eptr = (char*)utf8buf;
10472                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10473                 is_utf8 = TRUE;
10474             }
10475             else {
10476                 c = (char)uv;
10477                 eptr = &c;
10478                 elen = 1;
10479             }
10480             goto string;
10481
10482         case 's':
10483             if (vectorize)
10484                 goto unknown;
10485             if (args) {
10486                 eptr = va_arg(*args, char*);
10487                 if (eptr)
10488                     elen = strlen(eptr);
10489                 else {
10490                     eptr = (char *)nullstr;
10491                     elen = sizeof nullstr - 1;
10492                 }
10493             }
10494             else {
10495                 eptr = SvPV_const(argsv, elen);
10496                 if (DO_UTF8(argsv)) {
10497                     STRLEN old_precis = precis;
10498                     if (has_precis && precis < elen) {
10499                         STRLEN ulen = sv_len_utf8(argsv);
10500                         I32 p = precis > ulen ? ulen : precis;
10501                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
10502                         precis = p;
10503                     }
10504                     if (width) { /* fudge width (can't fudge elen) */
10505                         if (has_precis && precis < elen)
10506                             width += precis - old_precis;
10507                         else
10508                             width += elen - sv_len_utf8(argsv);
10509                     }
10510                     is_utf8 = TRUE;
10511                 }
10512             }
10513
10514         string:
10515             if (has_precis && precis < elen)
10516                 elen = precis;
10517             break;
10518
10519             /* INTEGERS */
10520
10521         case 'p':
10522             if (alt || vectorize)
10523                 goto unknown;
10524             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
10525             base = 16;
10526             goto integer;
10527
10528         case 'D':
10529 #ifdef IV_IS_QUAD
10530             intsize = 'q';
10531 #else
10532             intsize = 'l';
10533 #endif
10534             /*FALLTHROUGH*/
10535         case 'd':
10536         case 'i':
10537 #if vdNUMBER
10538         format_vd:
10539 #endif
10540             if (vectorize) {
10541                 STRLEN ulen;
10542                 if (!veclen)
10543                     continue;
10544                 if (vec_utf8)
10545                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10546                                         UTF8_ALLOW_ANYUV);
10547                 else {
10548                     uv = *vecstr;
10549                     ulen = 1;
10550                 }
10551                 vecstr += ulen;
10552                 veclen -= ulen;
10553                 if (plus)
10554                      esignbuf[esignlen++] = plus;
10555             }
10556             else if (args) {
10557                 switch (intsize) {
10558                 case 'c':       iv = (char)va_arg(*args, int); break;
10559                 case 'h':       iv = (short)va_arg(*args, int); break;
10560                 case 'l':       iv = va_arg(*args, long); break;
10561                 case 'V':       iv = va_arg(*args, IV); break;
10562                 case 'z':       iv = va_arg(*args, SSize_t); break;
10563                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
10564                 default:        iv = va_arg(*args, int); break;
10565 #if HAS_C99
10566                 case 'j':       iv = va_arg(*args, intmax_t); break;
10567 #endif
10568                 case 'q':
10569 #ifdef HAS_QUAD
10570                                 iv = va_arg(*args, Quad_t); break;
10571 #else
10572                                 goto unknown;
10573 #endif
10574                 }
10575             }
10576             else {
10577                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10578                 switch (intsize) {
10579                 case 'c':       iv = (char)tiv; break;
10580                 case 'h':       iv = (short)tiv; break;
10581                 case 'l':       iv = (long)tiv; break;
10582                 case 'V':
10583                 default:        iv = tiv; break;
10584                 case 'q':
10585 #ifdef HAS_QUAD
10586                                 iv = (Quad_t)tiv; break;
10587 #else
10588                                 goto unknown;
10589 #endif
10590                 }
10591             }
10592             if ( !vectorize )   /* we already set uv above */
10593             {
10594                 if (iv >= 0) {
10595                     uv = iv;
10596                     if (plus)
10597                         esignbuf[esignlen++] = plus;
10598                 }
10599                 else {
10600                     uv = -iv;
10601                     esignbuf[esignlen++] = '-';
10602                 }
10603             }
10604             base = 10;
10605             goto integer;
10606
10607         case 'U':
10608 #ifdef IV_IS_QUAD
10609             intsize = 'q';
10610 #else
10611             intsize = 'l';
10612 #endif
10613             /*FALLTHROUGH*/
10614         case 'u':
10615             base = 10;
10616             goto uns_integer;
10617
10618         case 'B':
10619         case 'b':
10620             base = 2;
10621             goto uns_integer;
10622
10623         case 'O':
10624 #ifdef IV_IS_QUAD
10625             intsize = 'q';
10626 #else
10627             intsize = 'l';
10628 #endif
10629             /*FALLTHROUGH*/
10630         case 'o':
10631             base = 8;
10632             goto uns_integer;
10633
10634         case 'X':
10635         case 'x':
10636             base = 16;
10637
10638         uns_integer:
10639             if (vectorize) {
10640                 STRLEN ulen;
10641         vector:
10642                 if (!veclen)
10643                     continue;
10644                 if (vec_utf8)
10645                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10646                                         UTF8_ALLOW_ANYUV);
10647                 else {
10648                     uv = *vecstr;
10649                     ulen = 1;
10650                 }
10651                 vecstr += ulen;
10652                 veclen -= ulen;
10653             }
10654             else if (args) {
10655                 switch (intsize) {
10656                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
10657                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
10658                 case 'l':  uv = va_arg(*args, unsigned long); break;
10659                 case 'V':  uv = va_arg(*args, UV); break;
10660                 case 'z':  uv = va_arg(*args, Size_t); break;
10661                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
10662 #if HAS_C99
10663                 case 'j':  uv = va_arg(*args, uintmax_t); break;
10664 #endif
10665                 default:   uv = va_arg(*args, unsigned); break;
10666                 case 'q':
10667 #ifdef HAS_QUAD
10668                            uv = va_arg(*args, Uquad_t); break;
10669 #else
10670                            goto unknown;
10671 #endif
10672                 }
10673             }
10674             else {
10675                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
10676                 switch (intsize) {
10677                 case 'c':       uv = (unsigned char)tuv; break;
10678                 case 'h':       uv = (unsigned short)tuv; break;
10679                 case 'l':       uv = (unsigned long)tuv; break;
10680                 case 'V':
10681                 default:        uv = tuv; break;
10682                 case 'q':
10683 #ifdef HAS_QUAD
10684                                 uv = (Uquad_t)tuv; break;
10685 #else
10686                                 goto unknown;
10687 #endif
10688                 }
10689             }
10690
10691         integer:
10692             {
10693                 char *ptr = ebuf + sizeof ebuf;
10694                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
10695                 zeros = 0;
10696
10697                 switch (base) {
10698                     unsigned dig;
10699                 case 16:
10700                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
10701                     do {
10702                         dig = uv & 15;
10703                         *--ptr = p[dig];
10704                     } while (uv >>= 4);
10705                     if (tempalt) {
10706                         esignbuf[esignlen++] = '0';
10707                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
10708                     }
10709                     break;
10710                 case 8:
10711                     do {
10712                         dig = uv & 7;
10713                         *--ptr = '0' + dig;
10714                     } while (uv >>= 3);
10715                     if (alt && *ptr != '0')
10716                         *--ptr = '0';
10717                     break;
10718                 case 2:
10719                     do {
10720                         dig = uv & 1;
10721                         *--ptr = '0' + dig;
10722                     } while (uv >>= 1);
10723                     if (tempalt) {
10724                         esignbuf[esignlen++] = '0';
10725                         esignbuf[esignlen++] = c;
10726                     }
10727                     break;
10728                 default:                /* it had better be ten or less */
10729                     do {
10730                         dig = uv % base;
10731                         *--ptr = '0' + dig;
10732                     } while (uv /= base);
10733                     break;
10734                 }
10735                 elen = (ebuf + sizeof ebuf) - ptr;
10736                 eptr = ptr;
10737                 if (has_precis) {
10738                     if (precis > elen)
10739                         zeros = precis - elen;
10740                     else if (precis == 0 && elen == 1 && *eptr == '0'
10741                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
10742                         elen = 0;
10743
10744                 /* a precision nullifies the 0 flag. */
10745                     if (fill == '0')
10746                         fill = ' ';
10747                 }
10748             }
10749             break;
10750
10751             /* FLOATING POINT */
10752
10753         case 'F':
10754             c = 'f';            /* maybe %F isn't supported here */
10755             /*FALLTHROUGH*/
10756         case 'e': case 'E':
10757         case 'f':
10758         case 'g': case 'G':
10759             if (vectorize)
10760                 goto unknown;
10761
10762             /* This is evil, but floating point is even more evil */
10763
10764             /* for SV-style calling, we can only get NV
10765                for C-style calling, we assume %f is double;
10766                for simplicity we allow any of %Lf, %llf, %qf for long double
10767             */
10768             switch (intsize) {
10769             case 'V':
10770 #if defined(USE_LONG_DOUBLE)
10771                 intsize = 'q';
10772 #endif
10773                 break;
10774 /* [perl #20339] - we should accept and ignore %lf rather than die */
10775             case 'l':
10776                 /*FALLTHROUGH*/
10777             default:
10778 #if defined(USE_LONG_DOUBLE)
10779                 intsize = args ? 0 : 'q';
10780 #endif
10781                 break;
10782             case 'q':
10783 #if defined(HAS_LONG_DOUBLE)
10784                 break;
10785 #else
10786                 /*FALLTHROUGH*/
10787 #endif
10788             case 'c':
10789             case 'h':
10790             case 'z':
10791             case 't':
10792             case 'j':
10793                 goto unknown;
10794             }
10795
10796             /* now we need (long double) if intsize == 'q', else (double) */
10797             nv = (args) ?
10798 #if LONG_DOUBLESIZE > DOUBLESIZE
10799                 intsize == 'q' ?
10800                     va_arg(*args, long double) :
10801                     va_arg(*args, double)
10802 #else
10803                     va_arg(*args, double)
10804 #endif
10805                 : SvNV(argsv);
10806
10807             need = 0;
10808             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
10809                else. frexp() has some unspecified behaviour for those three */
10810             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
10811                 i = PERL_INT_MIN;
10812                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10813                    will cast our (long double) to (double) */
10814                 (void)Perl_frexp(nv, &i);
10815                 if (i == PERL_INT_MIN)
10816                     Perl_die(aTHX_ "panic: frexp");
10817                 if (i > 0)
10818                     need = BIT_DIGITS(i);
10819             }
10820             need += has_precis ? precis : 6; /* known default */
10821
10822             if (need < width)
10823                 need = width;
10824
10825 #ifdef HAS_LDBL_SPRINTF_BUG
10826             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10827                with sfio - Allen <allens@cpan.org> */
10828
10829 #  ifdef DBL_MAX
10830 #    define MY_DBL_MAX DBL_MAX
10831 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10832 #    if DOUBLESIZE >= 8
10833 #      define MY_DBL_MAX 1.7976931348623157E+308L
10834 #    else
10835 #      define MY_DBL_MAX 3.40282347E+38L
10836 #    endif
10837 #  endif
10838
10839 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10840 #    define MY_DBL_MAX_BUG 1L
10841 #  else
10842 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10843 #  endif
10844
10845 #  ifdef DBL_MIN
10846 #    define MY_DBL_MIN DBL_MIN
10847 #  else  /* XXX guessing! -Allen */
10848 #    if DOUBLESIZE >= 8
10849 #      define MY_DBL_MIN 2.2250738585072014E-308L
10850 #    else
10851 #      define MY_DBL_MIN 1.17549435E-38L
10852 #    endif
10853 #  endif
10854
10855             if ((intsize == 'q') && (c == 'f') &&
10856                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10857                 (need < DBL_DIG)) {
10858                 /* it's going to be short enough that
10859                  * long double precision is not needed */
10860
10861                 if ((nv <= 0L) && (nv >= -0L))
10862                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10863                 else {
10864                     /* would use Perl_fp_class as a double-check but not
10865                      * functional on IRIX - see perl.h comments */
10866
10867                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10868                         /* It's within the range that a double can represent */
10869 #if defined(DBL_MAX) && !defined(DBL_MIN)
10870                         if ((nv >= ((long double)1/DBL_MAX)) ||
10871                             (nv <= (-(long double)1/DBL_MAX)))
10872 #endif
10873                         fix_ldbl_sprintf_bug = TRUE;
10874                     }
10875                 }
10876                 if (fix_ldbl_sprintf_bug == TRUE) {
10877                     double temp;
10878
10879                     intsize = 0;
10880                     temp = (double)nv;
10881                     nv = (NV)temp;
10882                 }
10883             }
10884
10885 #  undef MY_DBL_MAX
10886 #  undef MY_DBL_MAX_BUG
10887 #  undef MY_DBL_MIN
10888
10889 #endif /* HAS_LDBL_SPRINTF_BUG */
10890
10891             need += 20; /* fudge factor */
10892             if (PL_efloatsize < need) {
10893                 Safefree(PL_efloatbuf);
10894                 PL_efloatsize = need + 20; /* more fudge */
10895                 Newx(PL_efloatbuf, PL_efloatsize, char);
10896                 PL_efloatbuf[0] = '\0';
10897             }
10898
10899             if ( !(width || left || plus || alt) && fill != '0'
10900                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10901                 /* See earlier comment about buggy Gconvert when digits,
10902                    aka precis is 0  */
10903                 if ( c == 'g' && precis) {
10904                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10905                     /* May return an empty string for digits==0 */
10906                     if (*PL_efloatbuf) {
10907                         elen = strlen(PL_efloatbuf);
10908                         goto float_converted;
10909                     }
10910                 } else if ( c == 'f' && !precis) {
10911                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10912                         break;
10913                 }
10914             }
10915             {
10916                 char *ptr = ebuf + sizeof ebuf;
10917                 *--ptr = '\0';
10918                 *--ptr = c;
10919                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10920 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10921                 if (intsize == 'q') {
10922                     /* Copy the one or more characters in a long double
10923                      * format before the 'base' ([efgEFG]) character to
10924                      * the format string. */
10925                     static char const prifldbl[] = PERL_PRIfldbl;
10926                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10927                     while (p >= prifldbl) { *--ptr = *p--; }
10928                 }
10929 #endif
10930                 if (has_precis) {
10931                     base = precis;
10932                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10933                     *--ptr = '.';
10934                 }
10935                 if (width) {
10936                     base = width;
10937                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10938                 }
10939                 if (fill == '0')
10940                     *--ptr = fill;
10941                 if (left)
10942                     *--ptr = '-';
10943                 if (plus)
10944                     *--ptr = plus;
10945                 if (alt)
10946                     *--ptr = '#';
10947                 *--ptr = '%';
10948
10949                 /* No taint.  Otherwise we are in the strange situation
10950                  * where printf() taints but print($float) doesn't.
10951                  * --jhi */
10952 #if defined(HAS_LONG_DOUBLE)
10953                 elen = ((intsize == 'q')
10954                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10955                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10956 #else
10957                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10958 #endif
10959             }
10960         float_converted:
10961             eptr = PL_efloatbuf;
10962             break;
10963
10964             /* SPECIAL */
10965
10966         case 'n':
10967             if (vectorize)
10968                 goto unknown;
10969             i = SvCUR(sv) - origlen;
10970             if (args) {
10971                 switch (intsize) {
10972                 case 'c':       *(va_arg(*args, char*)) = i; break;
10973                 case 'h':       *(va_arg(*args, short*)) = i; break;
10974                 default:        *(va_arg(*args, int*)) = i; break;
10975                 case 'l':       *(va_arg(*args, long*)) = i; break;
10976                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10977                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
10978                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
10979 #if HAS_C99
10980                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
10981 #endif
10982                 case 'q':
10983 #ifdef HAS_QUAD
10984                                 *(va_arg(*args, Quad_t*)) = i; break;
10985 #else
10986                                 goto unknown;
10987 #endif
10988                 }
10989             }
10990             else
10991                 sv_setuv_mg(argsv, (UV)i);
10992             continue;   /* not "break" */
10993
10994             /* UNKNOWN */
10995
10996         default:
10997       unknown:
10998             if (!args
10999                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
11000                 && ckWARN(WARN_PRINTF))
11001             {
11002                 SV * const msg = sv_newmortal();
11003                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
11004                           (PL_op->op_type == OP_PRTF) ? "" : "s");
11005                 if (fmtstart < patend) {
11006                     const char * const fmtend = q < patend ? q : patend;
11007                     const char * f;
11008                     sv_catpvs(msg, "\"%");
11009                     for (f = fmtstart; f < fmtend; f++) {
11010                         if (isPRINT(*f)) {
11011                             sv_catpvn(msg, f, 1);
11012                         } else {
11013                             Perl_sv_catpvf(aTHX_ msg,
11014                                            "\\%03"UVof, (UV)*f & 0xFF);
11015                         }
11016                     }
11017                     sv_catpvs(msg, "\"");
11018                 } else {
11019                     sv_catpvs(msg, "end of string");
11020                 }
11021                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
11022             }
11023
11024             /* output mangled stuff ... */
11025             if (c == '\0')
11026                 --q;
11027             eptr = p;
11028             elen = q - p;
11029
11030             /* ... right here, because formatting flags should not apply */
11031             SvGROW(sv, SvCUR(sv) + elen + 1);
11032             p = SvEND(sv);
11033             Copy(eptr, p, elen, char);
11034             p += elen;
11035             *p = '\0';
11036             SvCUR_set(sv, p - SvPVX_const(sv));
11037             svix = osvix;
11038             continue;   /* not "break" */
11039         }
11040
11041         if (is_utf8 != has_utf8) {
11042             if (is_utf8) {
11043                 if (SvCUR(sv))
11044                     sv_utf8_upgrade(sv);
11045             }
11046             else {
11047                 const STRLEN old_elen = elen;
11048                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
11049                 sv_utf8_upgrade(nsv);
11050                 eptr = SvPVX_const(nsv);
11051                 elen = SvCUR(nsv);
11052
11053                 if (width) { /* fudge width (can't fudge elen) */
11054                     width += elen - old_elen;
11055                 }
11056                 is_utf8 = TRUE;
11057             }
11058         }
11059
11060         have = esignlen + zeros + elen;
11061         if (have < zeros)
11062             Perl_croak_nocontext("%s", PL_memory_wrap);
11063
11064         need = (have > width ? have : width);
11065         gap = need - have;
11066
11067         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
11068             Perl_croak_nocontext("%s", PL_memory_wrap);
11069         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
11070         p = SvEND(sv);
11071         if (esignlen && fill == '0') {
11072             int i;
11073             for (i = 0; i < (int)esignlen; i++)
11074                 *p++ = esignbuf[i];
11075         }
11076         if (gap && !left) {
11077             memset(p, fill, gap);
11078             p += gap;
11079         }
11080         if (esignlen && fill != '0') {
11081             int i;
11082             for (i = 0; i < (int)esignlen; i++)
11083                 *p++ = esignbuf[i];
11084         }
11085         if (zeros) {
11086             int i;
11087             for (i = zeros; i; i--)
11088                 *p++ = '0';
11089         }
11090         if (elen) {
11091             Copy(eptr, p, elen, char);
11092             p += elen;
11093         }
11094         if (gap && left) {
11095             memset(p, ' ', gap);
11096             p += gap;
11097         }
11098         if (vectorize) {
11099             if (veclen) {
11100                 Copy(dotstr, p, dotstrlen, char);
11101                 p += dotstrlen;
11102             }
11103             else
11104                 vectorize = FALSE;              /* done iterating over vecstr */
11105         }
11106         if (is_utf8)
11107             has_utf8 = TRUE;
11108         if (has_utf8)
11109             SvUTF8_on(sv);
11110         *p = '\0';
11111         SvCUR_set(sv, p - SvPVX_const(sv));
11112         if (vectorize) {
11113             esignlen = 0;
11114             goto vector;
11115         }
11116     }
11117     SvTAINT(sv);
11118 }
11119
11120 /* =========================================================================
11121
11122 =head1 Cloning an interpreter
11123
11124 All the macros and functions in this section are for the private use of
11125 the main function, perl_clone().
11126
11127 The foo_dup() functions make an exact copy of an existing foo thingy.
11128 During the course of a cloning, a hash table is used to map old addresses
11129 to new addresses. The table is created and manipulated with the
11130 ptr_table_* functions.
11131
11132 =cut
11133
11134  * =========================================================================*/
11135
11136
11137 #if defined(USE_ITHREADS)
11138
11139 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11140 #ifndef GpREFCNT_inc
11141 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11142 #endif
11143
11144
11145 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11146    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11147    If this changes, please unmerge ss_dup.
11148    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11149 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11150 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11151 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11152 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11153 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11154 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11155 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11156 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11157 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11158 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11159 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11160 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11161 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11162
11163 /* clone a parser */
11164
11165 yy_parser *
11166 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11167 {
11168     yy_parser *parser;
11169
11170     PERL_ARGS_ASSERT_PARSER_DUP;
11171
11172     if (!proto)
11173         return NULL;
11174
11175     /* look for it in the table first */
11176     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11177     if (parser)
11178         return parser;
11179
11180     /* create anew and remember what it is */
11181     Newxz(parser, 1, yy_parser);
11182     ptr_table_store(PL_ptr_table, proto, parser);
11183
11184     /* XXX these not yet duped */
11185     parser->old_parser = NULL;
11186     parser->stack = NULL;
11187     parser->ps = NULL;
11188     parser->stack_size = 0;
11189     /* XXX parser->stack->state = 0; */
11190
11191     /* XXX eventually, just Copy() most of the parser struct ? */
11192
11193     parser->lex_brackets = proto->lex_brackets;
11194     parser->lex_casemods = proto->lex_casemods;
11195     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11196                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11197     parser->lex_casestack = savepvn(proto->lex_casestack,
11198                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11199     parser->lex_defer   = proto->lex_defer;
11200     parser->lex_dojoin  = proto->lex_dojoin;
11201     parser->lex_expect  = proto->lex_expect;
11202     parser->lex_formbrack = proto->lex_formbrack;
11203     parser->lex_inpat   = proto->lex_inpat;
11204     parser->lex_inwhat  = proto->lex_inwhat;
11205     parser->lex_op      = proto->lex_op;
11206     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11207     parser->lex_starts  = proto->lex_starts;
11208     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11209     parser->multi_close = proto->multi_close;
11210     parser->multi_open  = proto->multi_open;
11211     parser->multi_start = proto->multi_start;
11212     parser->multi_end   = proto->multi_end;
11213     parser->pending_ident = proto->pending_ident;
11214     parser->preambled   = proto->preambled;
11215     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11216     parser->linestr     = sv_dup_inc(proto->linestr, param);
11217     parser->expect      = proto->expect;
11218     parser->copline     = proto->copline;
11219     parser->last_lop_op = proto->last_lop_op;
11220     parser->lex_state   = proto->lex_state;
11221     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11222     /* rsfp_filters entries have fake IoDIRP() */
11223     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11224     parser->in_my       = proto->in_my;
11225     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11226     parser->error_count = proto->error_count;
11227
11228
11229     parser->linestr     = sv_dup_inc(proto->linestr, param);
11230
11231     {
11232         char * const ols = SvPVX(proto->linestr);
11233         char * const ls  = SvPVX(parser->linestr);
11234
11235         parser->bufptr      = ls + (proto->bufptr >= ols ?
11236                                     proto->bufptr -  ols : 0);
11237         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11238                                     proto->oldbufptr -  ols : 0);
11239         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11240                                     proto->oldoldbufptr -  ols : 0);
11241         parser->linestart   = ls + (proto->linestart >= ols ?
11242                                     proto->linestart -  ols : 0);
11243         parser->last_uni    = ls + (proto->last_uni >= ols ?
11244                                     proto->last_uni -  ols : 0);
11245         parser->last_lop    = ls + (proto->last_lop >= ols ?
11246                                     proto->last_lop -  ols : 0);
11247
11248         parser->bufend      = ls + SvCUR(parser->linestr);
11249     }
11250
11251     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11252
11253
11254 #ifdef PERL_MAD
11255     parser->endwhite    = proto->endwhite;
11256     parser->faketokens  = proto->faketokens;
11257     parser->lasttoke    = proto->lasttoke;
11258     parser->nextwhite   = proto->nextwhite;
11259     parser->realtokenstart = proto->realtokenstart;
11260     parser->skipwhite   = proto->skipwhite;
11261     parser->thisclose   = proto->thisclose;
11262     parser->thismad     = proto->thismad;
11263     parser->thisopen    = proto->thisopen;
11264     parser->thisstuff   = proto->thisstuff;
11265     parser->thistoken   = proto->thistoken;
11266     parser->thiswhite   = proto->thiswhite;
11267
11268     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11269     parser->curforce    = proto->curforce;
11270 #else
11271     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11272     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11273     parser->nexttoke    = proto->nexttoke;
11274 #endif
11275
11276     /* XXX should clone saved_curcop here, but we aren't passed
11277      * proto_perl; so do it in perl_clone_using instead */
11278
11279     return parser;
11280 }
11281
11282
11283 /* duplicate a file handle */
11284
11285 PerlIO *
11286 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11287 {
11288     PerlIO *ret;
11289
11290     PERL_ARGS_ASSERT_FP_DUP;
11291     PERL_UNUSED_ARG(type);
11292
11293     if (!fp)
11294         return (PerlIO*)NULL;
11295
11296     /* look for it in the table first */
11297     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11298     if (ret)
11299         return ret;
11300
11301     /* create anew and remember what it is */
11302     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11303     ptr_table_store(PL_ptr_table, fp, ret);
11304     return ret;
11305 }
11306
11307 /* duplicate a directory handle */
11308
11309 DIR *
11310 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11311 {
11312     DIR *ret;
11313
11314 #ifdef HAS_FCHDIR
11315     DIR *pwd;
11316     register const Direntry_t *dirent;
11317     char smallbuf[256];
11318     char *name = NULL;
11319     STRLEN len = -1;
11320     long pos;
11321 #endif
11322
11323     PERL_UNUSED_CONTEXT;
11324     PERL_ARGS_ASSERT_DIRP_DUP;
11325
11326     if (!dp)
11327         return (DIR*)NULL;
11328
11329     /* look for it in the table first */
11330     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11331     if (ret)
11332         return ret;
11333
11334 #ifdef HAS_FCHDIR
11335
11336     PERL_UNUSED_ARG(param);
11337
11338     /* create anew */
11339
11340     /* open the current directory (so we can switch back) */
11341     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11342
11343     /* chdir to our dir handle and open the present working directory */
11344     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11345         PerlDir_close(pwd);
11346         return (DIR *)NULL;
11347     }
11348     /* Now we should have two dir handles pointing to the same dir. */
11349
11350     /* Be nice to the calling code and chdir back to where we were. */
11351     fchdir(my_dirfd(pwd)); /* If this fails, then what? */
11352
11353     /* We have no need of the pwd handle any more. */
11354     PerlDir_close(pwd);
11355
11356 #ifdef DIRNAMLEN
11357 # define d_namlen(d) (d)->d_namlen
11358 #else
11359 # define d_namlen(d) strlen((d)->d_name)
11360 #endif
11361     /* Iterate once through dp, to get the file name at the current posi-
11362        tion. Then step back. */
11363     pos = PerlDir_tell(dp);
11364     if ((dirent = PerlDir_read(dp))) {
11365         len = d_namlen(dirent);
11366         if (len <= sizeof smallbuf) name = smallbuf;
11367         else Newx(name, len, char);
11368         Move(dirent->d_name, name, len, char);
11369     }
11370     PerlDir_seek(dp, pos);
11371
11372     /* Iterate through the new dir handle, till we find a file with the
11373        right name. */
11374     if (!dirent) /* just before the end */
11375         for(;;) {
11376             pos = PerlDir_tell(ret);
11377             if (PerlDir_read(ret)) continue; /* not there yet */
11378             PerlDir_seek(ret, pos); /* step back */
11379             break;
11380         }
11381     else {
11382         const long pos0 = PerlDir_tell(ret);
11383         for(;;) {
11384             pos = PerlDir_tell(ret);
11385             if ((dirent = PerlDir_read(ret))) {
11386                 if (len == d_namlen(dirent)
11387                  && memEQ(name, dirent->d_name, len)) {
11388                     /* found it */
11389                     PerlDir_seek(ret, pos); /* step back */
11390                     break;
11391                 }
11392                 /* else we are not there yet; keep iterating */
11393             }
11394             else { /* This is not meant to happen. The best we can do is
11395                       reset the iterator to the beginning. */
11396                 PerlDir_seek(ret, pos0);
11397                 break;
11398             }
11399         }
11400     }
11401 #undef d_namlen
11402
11403     if (name && name != smallbuf)
11404         Safefree(name);
11405 #endif
11406
11407 #ifdef WIN32
11408     ret = win32_dirp_dup(dp, param);
11409 #endif
11410
11411     /* pop it in the pointer table */
11412     if (ret)
11413         ptr_table_store(PL_ptr_table, dp, ret);
11414
11415     return ret;
11416 }
11417
11418 /* duplicate a typeglob */
11419
11420 GP *
11421 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11422 {
11423     GP *ret;
11424
11425     PERL_ARGS_ASSERT_GP_DUP;
11426
11427     if (!gp)
11428         return (GP*)NULL;
11429     /* look for it in the table first */
11430     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11431     if (ret)
11432         return ret;
11433
11434     /* create anew and remember what it is */
11435     Newxz(ret, 1, GP);
11436     ptr_table_store(PL_ptr_table, gp, ret);
11437
11438     /* clone */
11439     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11440        on Newxz() to do this for us.  */
11441     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11442     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11443     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11444     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11445     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11446     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11447     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11448     ret->gp_cvgen       = gp->gp_cvgen;
11449     ret->gp_line        = gp->gp_line;
11450     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11451     return ret;
11452 }
11453
11454 /* duplicate a chain of magic */
11455
11456 MAGIC *
11457 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11458 {
11459     MAGIC *mgret = NULL;
11460     MAGIC **mgprev_p = &mgret;
11461
11462     PERL_ARGS_ASSERT_MG_DUP;
11463
11464     for (; mg; mg = mg->mg_moremagic) {
11465         MAGIC *nmg;
11466
11467         if ((param->flags & CLONEf_JOIN_IN)
11468                 && mg->mg_type == PERL_MAGIC_backref)
11469             /* when joining, we let the individual SVs add themselves to
11470              * backref as needed. */
11471             continue;
11472
11473         Newx(nmg, 1, MAGIC);
11474         *mgprev_p = nmg;
11475         mgprev_p = &(nmg->mg_moremagic);
11476
11477         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
11478            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
11479            from the original commit adding Perl_mg_dup() - revision 4538.
11480            Similarly there is the annotation "XXX random ptr?" next to the
11481            assignment to nmg->mg_ptr.  */
11482         *nmg = *mg;
11483
11484         /* FIXME for plugins
11485         if (nmg->mg_type == PERL_MAGIC_qr) {
11486             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
11487         }
11488         else
11489         */
11490         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
11491                           ? nmg->mg_type == PERL_MAGIC_backref
11492                                 /* The backref AV has its reference
11493                                  * count deliberately bumped by 1 */
11494                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
11495                                                     nmg->mg_obj, param))
11496                                 : sv_dup_inc(nmg->mg_obj, param)
11497                           : sv_dup(nmg->mg_obj, param);
11498
11499         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
11500             if (nmg->mg_len > 0) {
11501                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
11502                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
11503                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
11504                 {
11505                     AMT * const namtp = (AMT*)nmg->mg_ptr;
11506                     sv_dup_inc_multiple((SV**)(namtp->table),
11507                                         (SV**)(namtp->table), NofAMmeth, param);
11508                 }
11509             }
11510             else if (nmg->mg_len == HEf_SVKEY)
11511                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
11512         }
11513         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
11514             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
11515         }
11516     }
11517     return mgret;
11518 }
11519
11520 #endif /* USE_ITHREADS */
11521
11522 struct ptr_tbl_arena {
11523     struct ptr_tbl_arena *next;
11524     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
11525 };
11526
11527 /* create a new pointer-mapping table */
11528
11529 PTR_TBL_t *
11530 Perl_ptr_table_new(pTHX)
11531 {
11532     PTR_TBL_t *tbl;
11533     PERL_UNUSED_CONTEXT;
11534
11535     Newx(tbl, 1, PTR_TBL_t);
11536     tbl->tbl_max        = 511;
11537     tbl->tbl_items      = 0;
11538     tbl->tbl_arena      = NULL;
11539     tbl->tbl_arena_next = NULL;
11540     tbl->tbl_arena_end  = NULL;
11541     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
11542     return tbl;
11543 }
11544
11545 #define PTR_TABLE_HASH(ptr) \
11546   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
11547
11548 /* map an existing pointer using a table */
11549
11550 STATIC PTR_TBL_ENT_t *
11551 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
11552 {
11553     PTR_TBL_ENT_t *tblent;
11554     const UV hash = PTR_TABLE_HASH(sv);
11555
11556     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
11557
11558     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
11559     for (; tblent; tblent = tblent->next) {
11560         if (tblent->oldval == sv)
11561             return tblent;
11562     }
11563     return NULL;
11564 }
11565
11566 void *
11567 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
11568 {
11569     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
11570
11571     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
11572     PERL_UNUSED_CONTEXT;
11573
11574     return tblent ? tblent->newval : NULL;
11575 }
11576
11577 /* add a new entry to a pointer-mapping table */
11578
11579 void
11580 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
11581 {
11582     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
11583
11584     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
11585     PERL_UNUSED_CONTEXT;
11586
11587     if (tblent) {
11588         tblent->newval = newsv;
11589     } else {
11590         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
11591
11592         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
11593             struct ptr_tbl_arena *new_arena;
11594
11595             Newx(new_arena, 1, struct ptr_tbl_arena);
11596             new_arena->next = tbl->tbl_arena;
11597             tbl->tbl_arena = new_arena;
11598             tbl->tbl_arena_next = new_arena->array;
11599             tbl->tbl_arena_end = new_arena->array
11600                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
11601         }
11602
11603         tblent = tbl->tbl_arena_next++;
11604
11605         tblent->oldval = oldsv;
11606         tblent->newval = newsv;
11607         tblent->next = tbl->tbl_ary[entry];
11608         tbl->tbl_ary[entry] = tblent;
11609         tbl->tbl_items++;
11610         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
11611             ptr_table_split(tbl);
11612     }
11613 }
11614
11615 /* double the hash bucket size of an existing ptr table */
11616
11617 void
11618 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
11619 {
11620     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
11621     const UV oldsize = tbl->tbl_max + 1;
11622     UV newsize = oldsize * 2;
11623     UV i;
11624
11625     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
11626     PERL_UNUSED_CONTEXT;
11627
11628     Renew(ary, newsize, PTR_TBL_ENT_t*);
11629     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
11630     tbl->tbl_max = --newsize;
11631     tbl->tbl_ary = ary;
11632     for (i=0; i < oldsize; i++, ary++) {
11633         PTR_TBL_ENT_t **entp = ary;
11634         PTR_TBL_ENT_t *ent = *ary;
11635         PTR_TBL_ENT_t **curentp;
11636         if (!ent)
11637             continue;
11638         curentp = ary + oldsize;
11639         do {
11640             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
11641                 *entp = ent->next;
11642                 ent->next = *curentp;
11643                 *curentp = ent;
11644             }
11645             else
11646                 entp = &ent->next;
11647             ent = *entp;
11648         } while (ent);
11649     }
11650 }
11651
11652 /* remove all the entries from a ptr table */
11653 /* Deprecated - will be removed post 5.14 */
11654
11655 void
11656 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
11657 {
11658     if (tbl && tbl->tbl_items) {
11659         struct ptr_tbl_arena *arena = tbl->tbl_arena;
11660
11661         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
11662
11663         while (arena) {
11664             struct ptr_tbl_arena *next = arena->next;
11665
11666             Safefree(arena);
11667             arena = next;
11668         };
11669
11670         tbl->tbl_items = 0;
11671         tbl->tbl_arena = NULL;
11672         tbl->tbl_arena_next = NULL;
11673         tbl->tbl_arena_end = NULL;
11674     }
11675 }
11676
11677 /* clear and free a ptr table */
11678
11679 void
11680 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
11681 {
11682     struct ptr_tbl_arena *arena;
11683
11684     if (!tbl) {
11685         return;
11686     }
11687
11688     arena = tbl->tbl_arena;
11689
11690     while (arena) {
11691         struct ptr_tbl_arena *next = arena->next;
11692
11693         Safefree(arena);
11694         arena = next;
11695     }
11696
11697     Safefree(tbl->tbl_ary);
11698     Safefree(tbl);
11699 }
11700
11701 #if defined(USE_ITHREADS)
11702
11703 void
11704 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
11705 {
11706     PERL_ARGS_ASSERT_RVPV_DUP;
11707
11708     if (SvROK(sstr)) {
11709         if (SvWEAKREF(sstr)) {
11710             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
11711             if (param->flags & CLONEf_JOIN_IN) {
11712                 /* if joining, we add any back references individually rather
11713                  * than copying the whole backref array */
11714                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
11715             }
11716         }
11717         else
11718             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
11719     }
11720     else if (SvPVX_const(sstr)) {
11721         /* Has something there */
11722         if (SvLEN(sstr)) {
11723             /* Normal PV - clone whole allocated space */
11724             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
11725             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
11726                 /* Not that normal - actually sstr is copy on write.
11727                    But we are a true, independent SV, so:  */
11728                 SvREADONLY_off(dstr);
11729                 SvFAKE_off(dstr);
11730             }
11731         }
11732         else {
11733             /* Special case - not normally malloced for some reason */
11734             if (isGV_with_GP(sstr)) {
11735                 /* Don't need to do anything here.  */
11736             }
11737             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
11738                 /* A "shared" PV - clone it as "shared" PV */
11739                 SvPV_set(dstr,
11740                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
11741                                          param)));
11742             }
11743             else {
11744                 /* Some other special case - random pointer */
11745                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
11746             }
11747         }
11748     }
11749     else {
11750         /* Copy the NULL */
11751         SvPV_set(dstr, NULL);
11752     }
11753 }
11754
11755 /* duplicate a list of SVs. source and dest may point to the same memory.  */
11756 static SV **
11757 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
11758                       SSize_t items, CLONE_PARAMS *const param)
11759 {
11760     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
11761
11762     while (items-- > 0) {
11763         *dest++ = sv_dup_inc(*source++, param);
11764     }
11765
11766     return dest;
11767 }
11768
11769 /* duplicate an SV of any type (including AV, HV etc) */
11770
11771 static SV *
11772 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11773 {
11774     dVAR;
11775     SV *dstr;
11776
11777     PERL_ARGS_ASSERT_SV_DUP_COMMON;
11778
11779     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
11780 #ifdef DEBUG_LEAKING_SCALARS_ABORT
11781         abort();
11782 #endif
11783         return NULL;
11784     }
11785     /* look for it in the table first */
11786     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
11787     if (dstr)
11788         return dstr;
11789
11790     if(param->flags & CLONEf_JOIN_IN) {
11791         /** We are joining here so we don't want do clone
11792             something that is bad **/
11793         if (SvTYPE(sstr) == SVt_PVHV) {
11794             const HEK * const hvname = HvNAME_HEK(sstr);
11795             if (hvname) {
11796                 /** don't clone stashes if they already exist **/
11797                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
11798                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
11799                 ptr_table_store(PL_ptr_table, sstr, dstr);
11800                 return dstr;
11801             }
11802         }
11803     }
11804
11805     /* create anew and remember what it is */
11806     new_SV(dstr);
11807
11808 #ifdef DEBUG_LEAKING_SCALARS
11809     dstr->sv_debug_optype = sstr->sv_debug_optype;
11810     dstr->sv_debug_line = sstr->sv_debug_line;
11811     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
11812     dstr->sv_debug_parent = (SV*)sstr;
11813     FREE_SV_DEBUG_FILE(dstr);
11814     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
11815 #endif
11816
11817     ptr_table_store(PL_ptr_table, sstr, dstr);
11818
11819     /* clone */
11820     SvFLAGS(dstr)       = SvFLAGS(sstr);
11821     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
11822     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
11823
11824 #ifdef DEBUGGING
11825     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
11826         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
11827                       (void*)PL_watch_pvx, SvPVX_const(sstr));
11828 #endif
11829
11830     /* don't clone objects whose class has asked us not to */
11831     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
11832         SvFLAGS(dstr) = 0;
11833         return dstr;
11834     }
11835
11836     switch (SvTYPE(sstr)) {
11837     case SVt_NULL:
11838         SvANY(dstr)     = NULL;
11839         break;
11840     case SVt_IV:
11841         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
11842         if(SvROK(sstr)) {
11843             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11844         } else {
11845             SvIV_set(dstr, SvIVX(sstr));
11846         }
11847         break;
11848     case SVt_NV:
11849         SvANY(dstr)     = new_XNV();
11850         SvNV_set(dstr, SvNVX(sstr));
11851         break;
11852         /* case SVt_BIND: */
11853     default:
11854         {
11855             /* These are all the types that need complex bodies allocating.  */
11856             void *new_body;
11857             const svtype sv_type = SvTYPE(sstr);
11858             const struct body_details *const sv_type_details
11859                 = bodies_by_type + sv_type;
11860
11861             switch (sv_type) {
11862             default:
11863                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11864                 break;
11865
11866             case SVt_PVGV:
11867             case SVt_PVIO:
11868             case SVt_PVFM:
11869             case SVt_PVHV:
11870             case SVt_PVAV:
11871             case SVt_PVCV:
11872             case SVt_PVLV:
11873             case SVt_REGEXP:
11874             case SVt_PVMG:
11875             case SVt_PVNV:
11876             case SVt_PVIV:
11877             case SVt_PV:
11878                 assert(sv_type_details->body_size);
11879                 if (sv_type_details->arena) {
11880                     new_body_inline(new_body, sv_type);
11881                     new_body
11882                         = (void*)((char*)new_body - sv_type_details->offset);
11883                 } else {
11884                     new_body = new_NOARENA(sv_type_details);
11885                 }
11886             }
11887             assert(new_body);
11888             SvANY(dstr) = new_body;
11889
11890 #ifndef PURIFY
11891             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
11892                  ((char*)SvANY(dstr)) + sv_type_details->offset,
11893                  sv_type_details->copy, char);
11894 #else
11895             Copy(((char*)SvANY(sstr)),
11896                  ((char*)SvANY(dstr)),
11897                  sv_type_details->body_size + sv_type_details->offset, char);
11898 #endif
11899
11900             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
11901                 && !isGV_with_GP(dstr)
11902                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
11903                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11904
11905             /* The Copy above means that all the source (unduplicated) pointers
11906                are now in the destination.  We can check the flags and the
11907                pointers in either, but it's possible that there's less cache
11908                missing by always going for the destination.
11909                FIXME - instrument and check that assumption  */
11910             if (sv_type >= SVt_PVMG) {
11911                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
11912                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
11913                 } else if (SvMAGIC(dstr))
11914                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
11915                 if (SvSTASH(dstr))
11916                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
11917             }
11918
11919             /* The cast silences a GCC warning about unhandled types.  */
11920             switch ((int)sv_type) {
11921             case SVt_PV:
11922                 break;
11923             case SVt_PVIV:
11924                 break;
11925             case SVt_PVNV:
11926                 break;
11927             case SVt_PVMG:
11928                 break;
11929             case SVt_REGEXP:
11930                 /* FIXME for plugins */
11931                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
11932                 break;
11933             case SVt_PVLV:
11934                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
11935                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
11936                     LvTARG(dstr) = dstr;
11937                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
11938                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
11939                 else
11940                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
11941             case SVt_PVGV:
11942                 /* non-GP case already handled above */
11943                 if(isGV_with_GP(sstr)) {
11944                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
11945                     /* Don't call sv_add_backref here as it's going to be
11946                        created as part of the magic cloning of the symbol
11947                        table--unless this is during a join and the stash
11948                        is not actually being cloned.  */
11949                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
11950                        at the point of this comment.  */
11951                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
11952                     if (param->flags & CLONEf_JOIN_IN)
11953                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
11954                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
11955                     (void)GpREFCNT_inc(GvGP(dstr));
11956                 }
11957                 break;
11958             case SVt_PVIO:
11959                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
11960                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
11961                     /* I have no idea why fake dirp (rsfps)
11962                        should be treated differently but otherwise
11963                        we end up with leaks -- sky*/
11964                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11965                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11966                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11967                 } else {
11968                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11969                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11970                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11971                     if (IoDIRP(dstr)) {
11972                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
11973                     } else {
11974                         NOOP;
11975                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11976                     }
11977                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
11978                 }
11979                 if (IoOFP(dstr) == IoIFP(sstr))
11980                     IoOFP(dstr) = IoIFP(dstr);
11981                 else
11982                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
11983                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11984                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11985                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11986                 break;
11987             case SVt_PVAV:
11988                 /* avoid cloning an empty array */
11989                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
11990                     SV **dst_ary, **src_ary;
11991                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
11992
11993                     src_ary = AvARRAY((const AV *)sstr);
11994                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
11995                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
11996                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
11997                     AvALLOC((const AV *)dstr) = dst_ary;
11998                     if (AvREAL((const AV *)sstr)) {
11999                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
12000                                                       param);
12001                     }
12002                     else {
12003                         while (items-- > 0)
12004                             *dst_ary++ = sv_dup(*src_ary++, param);
12005                     }
12006                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
12007                     while (items-- > 0) {
12008                         *dst_ary++ = &PL_sv_undef;
12009                     }
12010                 }
12011                 else {
12012                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
12013                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
12014                     AvMAX(  (const AV *)dstr)   = -1;
12015                     AvFILLp((const AV *)dstr)   = -1;
12016                 }
12017                 break;
12018             case SVt_PVHV:
12019                 if (HvARRAY((const HV *)sstr)) {
12020                     STRLEN i = 0;
12021                     const bool sharekeys = !!HvSHAREKEYS(sstr);
12022                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
12023                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
12024                     char *darray;
12025                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
12026                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
12027                         char);
12028                     HvARRAY(dstr) = (HE**)darray;
12029                     while (i <= sxhv->xhv_max) {
12030                         const HE * const source = HvARRAY(sstr)[i];
12031                         HvARRAY(dstr)[i] = source
12032                             ? he_dup(source, sharekeys, param) : 0;
12033                         ++i;
12034                     }
12035                     if (SvOOK(sstr)) {
12036                         const struct xpvhv_aux * const saux = HvAUX(sstr);
12037                         struct xpvhv_aux * const daux = HvAUX(dstr);
12038                         /* This flag isn't copied.  */
12039                         /* SvOOK_on(hv) attacks the IV flags.  */
12040                         SvFLAGS(dstr) |= SVf_OOK;
12041
12042                         if (saux->xhv_name_count) {
12043                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
12044                             const I32 count
12045                              = saux->xhv_name_count < 0
12046                                 ? -saux->xhv_name_count
12047                                 :  saux->xhv_name_count;
12048                             HEK **shekp = sname + count;
12049                             HEK **dhekp;
12050                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
12051                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
12052                             while (shekp-- > sname) {
12053                                 dhekp--;
12054                                 *dhekp = hek_dup(*shekp, param);
12055                             }
12056                         }
12057                         else {
12058                             daux->xhv_name_u.xhvnameu_name
12059                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
12060                                           param);
12061                         }
12062                         daux->xhv_name_count = saux->xhv_name_count;
12063
12064                         daux->xhv_riter = saux->xhv_riter;
12065                         daux->xhv_eiter = saux->xhv_eiter
12066                             ? he_dup(saux->xhv_eiter,
12067                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
12068                         /* backref array needs refcnt=2; see sv_add_backref */
12069                         daux->xhv_backreferences =
12070                             (param->flags & CLONEf_JOIN_IN)
12071                                 /* when joining, we let the individual GVs and
12072                                  * CVs add themselves to backref as
12073                                  * needed. This avoids pulling in stuff
12074                                  * that isn't required, and simplifies the
12075                                  * case where stashes aren't cloned back
12076                                  * if they already exist in the parent
12077                                  * thread */
12078                             ? NULL
12079                             : saux->xhv_backreferences
12080                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
12081                                     ? MUTABLE_AV(SvREFCNT_inc(
12082                                           sv_dup_inc((const SV *)
12083                                             saux->xhv_backreferences, param)))
12084                                     : MUTABLE_AV(sv_dup((const SV *)
12085                                             saux->xhv_backreferences, param))
12086                                 : 0;
12087
12088                         daux->xhv_mro_meta = saux->xhv_mro_meta
12089                             ? mro_meta_dup(saux->xhv_mro_meta, param)
12090                             : 0;
12091
12092                         /* Record stashes for possible cloning in Perl_clone(). */
12093                         if (HvNAME(sstr))
12094                             av_push(param->stashes, dstr);
12095                     }
12096                 }
12097                 else
12098                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
12099                 break;
12100             case SVt_PVCV:
12101                 if (!(param->flags & CLONEf_COPY_STACKS)) {
12102                     CvDEPTH(dstr) = 0;
12103                 }
12104                 /*FALLTHROUGH*/
12105             case SVt_PVFM:
12106                 /* NOTE: not refcounted */
12107                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12108                     hv_dup(CvSTASH(dstr), param);
12109                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12110                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12111                 if (!CvISXSUB(dstr)) {
12112                     OP_REFCNT_LOCK;
12113                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12114                     OP_REFCNT_UNLOCK;
12115                 } else if (CvCONST(dstr)) {
12116                     CvXSUBANY(dstr).any_ptr =
12117                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12118                 }
12119                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12120                 /* don't dup if copying back - CvGV isn't refcounted, so the
12121                  * duped GV may never be freed. A bit of a hack! DAPM */
12122                 SvANY(MUTABLE_CV(dstr))->xcv_gv =
12123                     CvCVGV_RC(dstr)
12124                     ? gv_dup_inc(CvGV(sstr), param)
12125                     : (param->flags & CLONEf_JOIN_IN)
12126                         ? NULL
12127                         : gv_dup(CvGV(sstr), param);
12128
12129                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12130                 CvOUTSIDE(dstr) =
12131                     CvWEAKOUTSIDE(sstr)
12132                     ? cv_dup(    CvOUTSIDE(dstr), param)
12133                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12134                 break;
12135             }
12136         }
12137     }
12138
12139     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
12140         ++PL_sv_objcount;
12141
12142     return dstr;
12143  }
12144
12145 SV *
12146 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12147 {
12148     PERL_ARGS_ASSERT_SV_DUP_INC;
12149     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12150 }
12151
12152 SV *
12153 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12154 {
12155     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12156     PERL_ARGS_ASSERT_SV_DUP;
12157
12158     /* Track every SV that (at least initially) had a reference count of 0.
12159        We need to do this by holding an actual reference to it in this array.
12160        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12161        (akin to the stashes hash, and the perl stack), we come unstuck if
12162        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12163        thread) is manipulated in a CLONE method, because CLONE runs before the
12164        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12165        (and fix things up by giving each a reference via the temps stack).
12166        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12167        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12168        before the walk of unreferenced happens and a reference to that is SV
12169        added to the temps stack. At which point we have the same SV considered
12170        to be in use, and free to be re-used. Not good.
12171     */
12172     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12173         assert(param->unreferenced);
12174         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12175     }
12176
12177     return dstr;
12178 }
12179
12180 /* duplicate a context */
12181
12182 PERL_CONTEXT *
12183 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12184 {
12185     PERL_CONTEXT *ncxs;
12186
12187     PERL_ARGS_ASSERT_CX_DUP;
12188
12189     if (!cxs)
12190         return (PERL_CONTEXT*)NULL;
12191
12192     /* look for it in the table first */
12193     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12194     if (ncxs)
12195         return ncxs;
12196
12197     /* create anew and remember what it is */
12198     Newx(ncxs, max + 1, PERL_CONTEXT);
12199     ptr_table_store(PL_ptr_table, cxs, ncxs);
12200     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12201
12202     while (ix >= 0) {
12203         PERL_CONTEXT * const ncx = &ncxs[ix];
12204         if (CxTYPE(ncx) == CXt_SUBST) {
12205             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12206         }
12207         else {
12208             switch (CxTYPE(ncx)) {
12209             case CXt_SUB:
12210                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12211                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12212                                            : cv_dup(ncx->blk_sub.cv,param));
12213                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12214                                            ? av_dup_inc(ncx->blk_sub.argarray,
12215                                                         param)
12216                                            : NULL);
12217                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
12218                                                      param);
12219                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12220                                            ncx->blk_sub.oldcomppad);
12221                 break;
12222             case CXt_EVAL:
12223                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12224                                                       param);
12225                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12226                 break;
12227             case CXt_LOOP_LAZYSV:
12228                 ncx->blk_loop.state_u.lazysv.end
12229                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12230                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12231                    actually being the same function, and order equivalence of
12232                    the two unions.
12233                    We can assert the later [but only at run time :-(]  */
12234                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12235                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12236             case CXt_LOOP_FOR:
12237                 ncx->blk_loop.state_u.ary.ary
12238                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12239             case CXt_LOOP_LAZYIV:
12240             case CXt_LOOP_PLAIN:
12241                 if (CxPADLOOP(ncx)) {
12242                     ncx->blk_loop.itervar_u.oldcomppad
12243                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12244                                         ncx->blk_loop.itervar_u.oldcomppad);
12245                 } else {
12246                     ncx->blk_loop.itervar_u.gv
12247                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12248                                     param);
12249                 }
12250                 break;
12251             case CXt_FORMAT:
12252                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12253                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12254                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12255                                                      param);
12256                 break;
12257             case CXt_BLOCK:
12258             case CXt_NULL:
12259                 break;
12260             }
12261         }
12262         --ix;
12263     }
12264     return ncxs;
12265 }
12266
12267 /* duplicate a stack info structure */
12268
12269 PERL_SI *
12270 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12271 {
12272     PERL_SI *nsi;
12273
12274     PERL_ARGS_ASSERT_SI_DUP;
12275
12276     if (!si)
12277         return (PERL_SI*)NULL;
12278
12279     /* look for it in the table first */
12280     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12281     if (nsi)
12282         return nsi;
12283
12284     /* create anew and remember what it is */
12285     Newxz(nsi, 1, PERL_SI);
12286     ptr_table_store(PL_ptr_table, si, nsi);
12287
12288     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12289     nsi->si_cxix        = si->si_cxix;
12290     nsi->si_cxmax       = si->si_cxmax;
12291     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12292     nsi->si_type        = si->si_type;
12293     nsi->si_prev        = si_dup(si->si_prev, param);
12294     nsi->si_next        = si_dup(si->si_next, param);
12295     nsi->si_markoff     = si->si_markoff;
12296
12297     return nsi;
12298 }
12299
12300 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12301 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12302 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12303 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12304 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12305 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12306 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12307 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12308 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12309 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12310 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12311 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12312 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12313 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12314 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12315 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12316
12317 /* XXXXX todo */
12318 #define pv_dup_inc(p)   SAVEPV(p)
12319 #define pv_dup(p)       SAVEPV(p)
12320 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12321
12322 /* map any object to the new equivent - either something in the
12323  * ptr table, or something in the interpreter structure
12324  */
12325
12326 void *
12327 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12328 {
12329     void *ret;
12330
12331     PERL_ARGS_ASSERT_ANY_DUP;
12332
12333     if (!v)
12334         return (void*)NULL;
12335
12336     /* look for it in the table first */
12337     ret = ptr_table_fetch(PL_ptr_table, v);
12338     if (ret)
12339         return ret;
12340
12341     /* see if it is part of the interpreter structure */
12342     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12343         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12344     else {
12345         ret = v;
12346     }
12347
12348     return ret;
12349 }
12350
12351 /* duplicate the save stack */
12352
12353 ANY *
12354 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12355 {
12356     dVAR;
12357     ANY * const ss      = proto_perl->Isavestack;
12358     const I32 max       = proto_perl->Isavestack_max;
12359     I32 ix              = proto_perl->Isavestack_ix;
12360     ANY *nss;
12361     const SV *sv;
12362     const GV *gv;
12363     const AV *av;
12364     const HV *hv;
12365     void* ptr;
12366     int intval;
12367     long longval;
12368     GP *gp;
12369     IV iv;
12370     I32 i;
12371     char *c = NULL;
12372     void (*dptr) (void*);
12373     void (*dxptr) (pTHX_ void*);
12374
12375     PERL_ARGS_ASSERT_SS_DUP;
12376
12377     Newxz(nss, max, ANY);
12378
12379     while (ix > 0) {
12380         const UV uv = POPUV(ss,ix);
12381         const U8 type = (U8)uv & SAVE_MASK;
12382
12383         TOPUV(nss,ix) = uv;
12384         switch (type) {
12385         case SAVEt_CLEARSV:
12386             break;
12387         case SAVEt_HELEM:               /* hash element */
12388             sv = (const SV *)POPPTR(ss,ix);
12389             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12390             /* fall through */
12391         case SAVEt_ITEM:                        /* normal string */
12392         case SAVEt_GVSV:                        /* scalar slot in GV */
12393         case SAVEt_SV:                          /* scalar reference */
12394             sv = (const SV *)POPPTR(ss,ix);
12395             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12396             /* fall through */
12397         case SAVEt_FREESV:
12398         case SAVEt_MORTALIZESV:
12399             sv = (const SV *)POPPTR(ss,ix);
12400             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12401             break;
12402         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12403             c = (char*)POPPTR(ss,ix);
12404             TOPPTR(nss,ix) = savesharedpv(c);
12405             ptr = POPPTR(ss,ix);
12406             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12407             break;
12408         case SAVEt_GENERIC_SVREF:               /* generic sv */
12409         case SAVEt_SVREF:                       /* scalar reference */
12410             sv = (const SV *)POPPTR(ss,ix);
12411             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12412             ptr = POPPTR(ss,ix);
12413             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12414             break;
12415         case SAVEt_HV:                          /* hash reference */
12416         case SAVEt_AV:                          /* array reference */
12417             sv = (const SV *) POPPTR(ss,ix);
12418             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12419             /* fall through */
12420         case SAVEt_COMPPAD:
12421         case SAVEt_NSTAB:
12422             sv = (const SV *) POPPTR(ss,ix);
12423             TOPPTR(nss,ix) = sv_dup(sv, param);
12424             break;
12425         case SAVEt_INT:                         /* int reference */
12426             ptr = POPPTR(ss,ix);
12427             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12428             intval = (int)POPINT(ss,ix);
12429             TOPINT(nss,ix) = intval;
12430             break;
12431         case SAVEt_LONG:                        /* long reference */
12432             ptr = POPPTR(ss,ix);
12433             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12434             longval = (long)POPLONG(ss,ix);
12435             TOPLONG(nss,ix) = longval;
12436             break;
12437         case SAVEt_I32:                         /* I32 reference */
12438             ptr = POPPTR(ss,ix);
12439             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12440             i = POPINT(ss,ix);
12441             TOPINT(nss,ix) = i;
12442             break;
12443         case SAVEt_IV:                          /* IV reference */
12444             ptr = POPPTR(ss,ix);
12445             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12446             iv = POPIV(ss,ix);
12447             TOPIV(nss,ix) = iv;
12448             break;
12449         case SAVEt_HPTR:                        /* HV* reference */
12450         case SAVEt_APTR:                        /* AV* reference */
12451         case SAVEt_SPTR:                        /* SV* reference */
12452             ptr = POPPTR(ss,ix);
12453             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12454             sv = (const SV *)POPPTR(ss,ix);
12455             TOPPTR(nss,ix) = sv_dup(sv, param);
12456             break;
12457         case SAVEt_VPTR:                        /* random* reference */
12458             ptr = POPPTR(ss,ix);
12459             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12460             /* Fall through */
12461         case SAVEt_INT_SMALL:
12462         case SAVEt_I32_SMALL:
12463         case SAVEt_I16:                         /* I16 reference */
12464         case SAVEt_I8:                          /* I8 reference */
12465         case SAVEt_BOOL:
12466             ptr = POPPTR(ss,ix);
12467             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12468             break;
12469         case SAVEt_GENERIC_PVREF:               /* generic char* */
12470         case SAVEt_PPTR:                        /* char* reference */
12471             ptr = POPPTR(ss,ix);
12472             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12473             c = (char*)POPPTR(ss,ix);
12474             TOPPTR(nss,ix) = pv_dup(c);
12475             break;
12476         case SAVEt_GP:                          /* scalar reference */
12477             gp = (GP*)POPPTR(ss,ix);
12478             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
12479             (void)GpREFCNT_inc(gp);
12480             gv = (const GV *)POPPTR(ss,ix);
12481             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
12482             break;
12483         case SAVEt_FREEOP:
12484             ptr = POPPTR(ss,ix);
12485             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
12486                 /* these are assumed to be refcounted properly */
12487                 OP *o;
12488                 switch (((OP*)ptr)->op_type) {
12489                 case OP_LEAVESUB:
12490                 case OP_LEAVESUBLV:
12491                 case OP_LEAVEEVAL:
12492                 case OP_LEAVE:
12493                 case OP_SCOPE:
12494                 case OP_LEAVEWRITE:
12495                     TOPPTR(nss,ix) = ptr;
12496                     o = (OP*)ptr;
12497                     OP_REFCNT_LOCK;
12498                     (void) OpREFCNT_inc(o);
12499                     OP_REFCNT_UNLOCK;
12500                     break;
12501                 default:
12502                     TOPPTR(nss,ix) = NULL;
12503                     break;
12504                 }
12505             }
12506             else
12507                 TOPPTR(nss,ix) = NULL;
12508             break;
12509         case SAVEt_FREECOPHH:
12510             ptr = POPPTR(ss,ix);
12511             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
12512             break;
12513         case SAVEt_DELETE:
12514             hv = (const HV *)POPPTR(ss,ix);
12515             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12516             i = POPINT(ss,ix);
12517             TOPINT(nss,ix) = i;
12518             /* Fall through */
12519         case SAVEt_FREEPV:
12520             c = (char*)POPPTR(ss,ix);
12521             TOPPTR(nss,ix) = pv_dup_inc(c);
12522             break;
12523         case SAVEt_STACK_POS:           /* Position on Perl stack */
12524             i = POPINT(ss,ix);
12525             TOPINT(nss,ix) = i;
12526             break;
12527         case SAVEt_DESTRUCTOR:
12528             ptr = POPPTR(ss,ix);
12529             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12530             dptr = POPDPTR(ss,ix);
12531             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
12532                                         any_dup(FPTR2DPTR(void *, dptr),
12533                                                 proto_perl));
12534             break;
12535         case SAVEt_DESTRUCTOR_X:
12536             ptr = POPPTR(ss,ix);
12537             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12538             dxptr = POPDXPTR(ss,ix);
12539             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
12540                                          any_dup(FPTR2DPTR(void *, dxptr),
12541                                                  proto_perl));
12542             break;
12543         case SAVEt_REGCONTEXT:
12544         case SAVEt_ALLOC:
12545             ix -= uv >> SAVE_TIGHT_SHIFT;
12546             break;
12547         case SAVEt_AELEM:               /* array element */
12548             sv = (const SV *)POPPTR(ss,ix);
12549             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12550             i = POPINT(ss,ix);
12551             TOPINT(nss,ix) = i;
12552             av = (const AV *)POPPTR(ss,ix);
12553             TOPPTR(nss,ix) = av_dup_inc(av, param);
12554             break;
12555         case SAVEt_OP:
12556             ptr = POPPTR(ss,ix);
12557             TOPPTR(nss,ix) = ptr;
12558             break;
12559         case SAVEt_HINTS:
12560             ptr = POPPTR(ss,ix);
12561             ptr = cophh_copy((COPHH*)ptr);
12562             TOPPTR(nss,ix) = ptr;
12563             i = POPINT(ss,ix);
12564             TOPINT(nss,ix) = i;
12565             if (i & HINT_LOCALIZE_HH) {
12566                 hv = (const HV *)POPPTR(ss,ix);
12567                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12568             }
12569             break;
12570         case SAVEt_PADSV_AND_MORTALIZE:
12571             longval = (long)POPLONG(ss,ix);
12572             TOPLONG(nss,ix) = longval;
12573             ptr = POPPTR(ss,ix);
12574             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12575             sv = (const SV *)POPPTR(ss,ix);
12576             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12577             break;
12578         case SAVEt_SET_SVFLAGS:
12579             i = POPINT(ss,ix);
12580             TOPINT(nss,ix) = i;
12581             i = POPINT(ss,ix);
12582             TOPINT(nss,ix) = i;
12583             sv = (const SV *)POPPTR(ss,ix);
12584             TOPPTR(nss,ix) = sv_dup(sv, param);
12585             break;
12586         case SAVEt_RE_STATE:
12587             {
12588                 const struct re_save_state *const old_state
12589                     = (struct re_save_state *)
12590                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12591                 struct re_save_state *const new_state
12592                     = (struct re_save_state *)
12593                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12594
12595                 Copy(old_state, new_state, 1, struct re_save_state);
12596                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
12597
12598                 new_state->re_state_bostr
12599                     = pv_dup(old_state->re_state_bostr);
12600                 new_state->re_state_reginput
12601                     = pv_dup(old_state->re_state_reginput);
12602                 new_state->re_state_regeol
12603                     = pv_dup(old_state->re_state_regeol);
12604                 new_state->re_state_regoffs
12605                     = (regexp_paren_pair*)
12606                         any_dup(old_state->re_state_regoffs, proto_perl);
12607                 new_state->re_state_reglastparen
12608                     = (U32*) any_dup(old_state->re_state_reglastparen, 
12609                               proto_perl);
12610                 new_state->re_state_reglastcloseparen
12611                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
12612                               proto_perl);
12613                 /* XXX This just has to be broken. The old save_re_context
12614                    code did SAVEGENERICPV(PL_reg_start_tmp);
12615                    PL_reg_start_tmp is char **.
12616                    Look above to what the dup code does for
12617                    SAVEt_GENERIC_PVREF
12618                    It can never have worked.
12619                    So this is merely a faithful copy of the exiting bug:  */
12620                 new_state->re_state_reg_start_tmp
12621                     = (char **) pv_dup((char *)
12622                                       old_state->re_state_reg_start_tmp);
12623                 /* I assume that it only ever "worked" because no-one called
12624                    (pseudo)fork while the regexp engine had re-entered itself.
12625                 */
12626 #ifdef PERL_OLD_COPY_ON_WRITE
12627                 new_state->re_state_nrs
12628                     = sv_dup(old_state->re_state_nrs, param);
12629 #endif
12630                 new_state->re_state_reg_magic
12631                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
12632                                proto_perl);
12633                 new_state->re_state_reg_oldcurpm
12634                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
12635                               proto_perl);
12636                 new_state->re_state_reg_curpm
12637                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
12638                                proto_perl);
12639                 new_state->re_state_reg_oldsaved
12640                     = pv_dup(old_state->re_state_reg_oldsaved);
12641                 new_state->re_state_reg_poscache
12642                     = pv_dup(old_state->re_state_reg_poscache);
12643                 new_state->re_state_reg_starttry
12644                     = pv_dup(old_state->re_state_reg_starttry);
12645                 break;
12646             }
12647         case SAVEt_COMPILE_WARNINGS:
12648             ptr = POPPTR(ss,ix);
12649             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
12650             break;
12651         case SAVEt_PARSER:
12652             ptr = POPPTR(ss,ix);
12653             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
12654             break;
12655         default:
12656             Perl_croak(aTHX_
12657                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
12658         }
12659     }
12660
12661     return nss;
12662 }
12663
12664
12665 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
12666  * flag to the result. This is done for each stash before cloning starts,
12667  * so we know which stashes want their objects cloned */
12668
12669 static void
12670 do_mark_cloneable_stash(pTHX_ SV *const sv)
12671 {
12672     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
12673     if (hvname) {
12674         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
12675         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
12676         if (cloner && GvCV(cloner)) {
12677             dSP;
12678             UV status;
12679
12680             ENTER;
12681             SAVETMPS;
12682             PUSHMARK(SP);
12683             mXPUSHs(newSVhek(hvname));
12684             PUTBACK;
12685             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
12686             SPAGAIN;
12687             status = POPu;
12688             PUTBACK;
12689             FREETMPS;
12690             LEAVE;
12691             if (status)
12692                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
12693         }
12694     }
12695 }
12696
12697
12698
12699 /*
12700 =for apidoc perl_clone
12701
12702 Create and return a new interpreter by cloning the current one.
12703
12704 perl_clone takes these flags as parameters:
12705
12706 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
12707 without it we only clone the data and zero the stacks,
12708 with it we copy the stacks and the new perl interpreter is
12709 ready to run at the exact same point as the previous one.
12710 The pseudo-fork code uses COPY_STACKS while the
12711 threads->create doesn't.
12712
12713 CLONEf_KEEP_PTR_TABLE
12714 perl_clone keeps a ptr_table with the pointer of the old
12715 variable as a key and the new variable as a value,
12716 this allows it to check if something has been cloned and not
12717 clone it again but rather just use the value and increase the
12718 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
12719 the ptr_table using the function
12720 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
12721 reason to keep it around is if you want to dup some of your own
12722 variable who are outside the graph perl scans, example of this
12723 code is in threads.xs create
12724
12725 CLONEf_CLONE_HOST
12726 This is a win32 thing, it is ignored on unix, it tells perls
12727 win32host code (which is c++) to clone itself, this is needed on
12728 win32 if you want to run two threads at the same time,
12729 if you just want to do some stuff in a separate perl interpreter
12730 and then throw it away and return to the original one,
12731 you don't need to do anything.
12732
12733 =cut
12734 */
12735
12736 /* XXX the above needs expanding by someone who actually understands it ! */
12737 EXTERN_C PerlInterpreter *
12738 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
12739
12740 PerlInterpreter *
12741 perl_clone(PerlInterpreter *proto_perl, UV flags)
12742 {
12743    dVAR;
12744 #ifdef PERL_IMPLICIT_SYS
12745
12746     PERL_ARGS_ASSERT_PERL_CLONE;
12747
12748    /* perlhost.h so we need to call into it
12749    to clone the host, CPerlHost should have a c interface, sky */
12750
12751    if (flags & CLONEf_CLONE_HOST) {
12752        return perl_clone_host(proto_perl,flags);
12753    }
12754    return perl_clone_using(proto_perl, flags,
12755                             proto_perl->IMem,
12756                             proto_perl->IMemShared,
12757                             proto_perl->IMemParse,
12758                             proto_perl->IEnv,
12759                             proto_perl->IStdIO,
12760                             proto_perl->ILIO,
12761                             proto_perl->IDir,
12762                             proto_perl->ISock,
12763                             proto_perl->IProc);
12764 }
12765
12766 PerlInterpreter *
12767 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
12768                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
12769                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
12770                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
12771                  struct IPerlDir* ipD, struct IPerlSock* ipS,
12772                  struct IPerlProc* ipP)
12773 {
12774     /* XXX many of the string copies here can be optimized if they're
12775      * constants; they need to be allocated as common memory and just
12776      * their pointers copied. */
12777
12778     IV i;
12779     CLONE_PARAMS clone_params;
12780     CLONE_PARAMS* const param = &clone_params;
12781
12782     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
12783
12784     PERL_ARGS_ASSERT_PERL_CLONE_USING;
12785 #else           /* !PERL_IMPLICIT_SYS */
12786     IV i;
12787     CLONE_PARAMS clone_params;
12788     CLONE_PARAMS* param = &clone_params;
12789     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
12790
12791     PERL_ARGS_ASSERT_PERL_CLONE;
12792 #endif          /* PERL_IMPLICIT_SYS */
12793
12794     /* for each stash, determine whether its objects should be cloned */
12795     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
12796     PERL_SET_THX(my_perl);
12797
12798 #ifdef DEBUGGING
12799     PoisonNew(my_perl, 1, PerlInterpreter);
12800     PL_op = NULL;
12801     PL_curcop = NULL;
12802     PL_defstash = NULL; /* may be used by perl malloc() */
12803     PL_markstack = 0;
12804     PL_scopestack = 0;
12805     PL_scopestack_name = 0;
12806     PL_savestack = 0;
12807     PL_savestack_ix = 0;
12808     PL_savestack_max = -1;
12809     PL_sig_pending = 0;
12810     PL_parser = NULL;
12811     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
12812 #  ifdef DEBUG_LEAKING_SCALARS
12813     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
12814 #  endif
12815 #else   /* !DEBUGGING */
12816     Zero(my_perl, 1, PerlInterpreter);
12817 #endif  /* DEBUGGING */
12818
12819 #ifdef PERL_IMPLICIT_SYS
12820     /* host pointers */
12821     PL_Mem              = ipM;
12822     PL_MemShared        = ipMS;
12823     PL_MemParse         = ipMP;
12824     PL_Env              = ipE;
12825     PL_StdIO            = ipStd;
12826     PL_LIO              = ipLIO;
12827     PL_Dir              = ipD;
12828     PL_Sock             = ipS;
12829     PL_Proc             = ipP;
12830 #endif          /* PERL_IMPLICIT_SYS */
12831
12832     param->flags = flags;
12833     /* Nothing in the core code uses this, but we make it available to
12834        extensions (using mg_dup).  */
12835     param->proto_perl = proto_perl;
12836     /* Likely nothing will use this, but it is initialised to be consistent
12837        with Perl_clone_params_new().  */
12838     param->new_perl = my_perl;
12839     param->unreferenced = NULL;
12840
12841     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
12842
12843     PL_body_arenas = NULL;
12844     Zero(&PL_body_roots, 1, PL_body_roots);
12845     
12846     PL_sv_count         = 0;
12847     PL_sv_objcount      = 0;
12848     PL_sv_root          = NULL;
12849     PL_sv_arenaroot     = NULL;
12850
12851     PL_debug            = proto_perl->Idebug;
12852
12853     PL_hash_seed        = proto_perl->Ihash_seed;
12854     PL_rehash_seed      = proto_perl->Irehash_seed;
12855
12856     SvANY(&PL_sv_undef)         = NULL;
12857     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
12858     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
12859     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
12860     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12861                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12862
12863     SvANY(&PL_sv_yes)           = new_XPVNV();
12864     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
12865     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12866                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12867
12868     /* dbargs array probably holds garbage */
12869     PL_dbargs           = NULL;
12870
12871     PL_compiling = proto_perl->Icompiling;
12872
12873 #ifdef PERL_DEBUG_READONLY_OPS
12874     PL_slabs = NULL;
12875     PL_slab_count = 0;
12876 #endif
12877
12878     /* pseudo environmental stuff */
12879     PL_origargc         = proto_perl->Iorigargc;
12880     PL_origargv         = proto_perl->Iorigargv;
12881
12882     /* Set tainting stuff before PerlIO_debug can possibly get called */
12883     PL_tainting         = proto_perl->Itainting;
12884     PL_taint_warn       = proto_perl->Itaint_warn;
12885
12886     PL_minus_c          = proto_perl->Iminus_c;
12887
12888     PL_localpatches     = proto_perl->Ilocalpatches;
12889     PL_splitstr         = proto_perl->Isplitstr;
12890     PL_minus_n          = proto_perl->Iminus_n;
12891     PL_minus_p          = proto_perl->Iminus_p;
12892     PL_minus_l          = proto_perl->Iminus_l;
12893     PL_minus_a          = proto_perl->Iminus_a;
12894     PL_minus_E          = proto_perl->Iminus_E;
12895     PL_minus_F          = proto_perl->Iminus_F;
12896     PL_doswitches       = proto_perl->Idoswitches;
12897     PL_dowarn           = proto_perl->Idowarn;
12898     PL_sawampersand     = proto_perl->Isawampersand;
12899     PL_unsafe           = proto_perl->Iunsafe;
12900     PL_perldb           = proto_perl->Iperldb;
12901     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
12902     PL_exit_flags       = proto_perl->Iexit_flags;
12903
12904     /* XXX time(&PL_basetime) when asked for? */
12905     PL_basetime         = proto_perl->Ibasetime;
12906
12907     PL_maxsysfd         = proto_perl->Imaxsysfd;
12908     PL_statusvalue      = proto_perl->Istatusvalue;
12909 #ifdef VMS
12910     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
12911 #else
12912     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
12913 #endif
12914
12915     /* RE engine related */
12916     Zero(&PL_reg_state, 1, struct re_save_state);
12917     PL_reginterp_cnt    = 0;
12918     PL_regmatch_slab    = NULL;
12919
12920     PL_sub_generation   = proto_perl->Isub_generation;
12921
12922     /* funky return mechanisms */
12923     PL_forkprocess      = proto_perl->Iforkprocess;
12924
12925     /* internal state */
12926     PL_maxo             = proto_perl->Imaxo;
12927
12928     PL_main_start       = proto_perl->Imain_start;
12929     PL_eval_root        = proto_perl->Ieval_root;
12930     PL_eval_start       = proto_perl->Ieval_start;
12931
12932     PL_filemode         = proto_perl->Ifilemode;
12933     PL_lastfd           = proto_perl->Ilastfd;
12934     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12935     PL_Argv             = NULL;
12936     PL_Cmd              = NULL;
12937     PL_gensym           = proto_perl->Igensym;
12938
12939     PL_laststatval      = proto_perl->Ilaststatval;
12940     PL_laststype        = proto_perl->Ilaststype;
12941     PL_mess_sv          = NULL;
12942
12943     PL_profiledata      = NULL;
12944
12945     PL_generation       = proto_perl->Igeneration;
12946
12947     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12948     PL_in_clean_all     = proto_perl->Iin_clean_all;
12949
12950     PL_uid              = proto_perl->Iuid;
12951     PL_euid             = proto_perl->Ieuid;
12952     PL_gid              = proto_perl->Igid;
12953     PL_egid             = proto_perl->Iegid;
12954     PL_nomemok          = proto_perl->Inomemok;
12955     PL_an               = proto_perl->Ian;
12956     PL_evalseq          = proto_perl->Ievalseq;
12957     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12958     PL_origalen         = proto_perl->Iorigalen;
12959
12960     PL_sighandlerp      = proto_perl->Isighandlerp;
12961
12962     PL_runops           = proto_perl->Irunops;
12963
12964     PL_subline          = proto_perl->Isubline;
12965
12966 #ifdef FCRYPT
12967     PL_cryptseen        = proto_perl->Icryptseen;
12968 #endif
12969
12970     PL_hints            = proto_perl->Ihints;
12971
12972     PL_amagic_generation        = proto_perl->Iamagic_generation;
12973
12974 #ifdef USE_LOCALE_COLLATE
12975     PL_collation_ix     = proto_perl->Icollation_ix;
12976     PL_collation_standard       = proto_perl->Icollation_standard;
12977     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12978     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12979 #endif /* USE_LOCALE_COLLATE */
12980
12981 #ifdef USE_LOCALE_NUMERIC
12982     PL_numeric_standard = proto_perl->Inumeric_standard;
12983     PL_numeric_local    = proto_perl->Inumeric_local;
12984 #endif /* !USE_LOCALE_NUMERIC */
12985
12986     /* Did the locale setup indicate UTF-8? */
12987     PL_utf8locale       = proto_perl->Iutf8locale;
12988     /* Unicode features (see perlrun/-C) */
12989     PL_unicode          = proto_perl->Iunicode;
12990
12991     /* Pre-5.8 signals control */
12992     PL_signals          = proto_perl->Isignals;
12993
12994     /* times() ticks per second */
12995     PL_clocktick        = proto_perl->Iclocktick;
12996
12997     /* Recursion stopper for PerlIO_find_layer */
12998     PL_in_load_module   = proto_perl->Iin_load_module;
12999
13000     /* sort() routine */
13001     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
13002
13003     /* Not really needed/useful since the reenrant_retint is "volatile",
13004      * but do it for consistency's sake. */
13005     PL_reentrant_retint = proto_perl->Ireentrant_retint;
13006
13007     /* Hooks to shared SVs and locks. */
13008     PL_sharehook        = proto_perl->Isharehook;
13009     PL_lockhook         = proto_perl->Ilockhook;
13010     PL_unlockhook       = proto_perl->Iunlockhook;
13011     PL_threadhook       = proto_perl->Ithreadhook;
13012     PL_destroyhook      = proto_perl->Idestroyhook;
13013     PL_signalhook       = proto_perl->Isignalhook;
13014
13015     PL_globhook         = proto_perl->Iglobhook;
13016
13017 #ifdef THREADS_HAVE_PIDS
13018     PL_ppid             = proto_perl->Ippid;
13019 #endif
13020
13021     /* swatch cache */
13022     PL_last_swash_hv    = NULL; /* reinits on demand */
13023     PL_last_swash_klen  = 0;
13024     PL_last_swash_key[0]= '\0';
13025     PL_last_swash_tmps  = (U8*)NULL;
13026     PL_last_swash_slen  = 0;
13027
13028     PL_glob_index       = proto_perl->Iglob_index;
13029     PL_srand_called     = proto_perl->Isrand_called;
13030
13031     if (flags & CLONEf_COPY_STACKS) {
13032         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
13033         PL_tmps_ix              = proto_perl->Itmps_ix;
13034         PL_tmps_max             = proto_perl->Itmps_max;
13035         PL_tmps_floor           = proto_perl->Itmps_floor;
13036
13037         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13038          * NOTE: unlike the others! */
13039         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
13040         PL_scopestack_max       = proto_perl->Iscopestack_max;
13041
13042         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
13043          * NOTE: unlike the others! */
13044         PL_savestack_ix         = proto_perl->Isavestack_ix;
13045         PL_savestack_max        = proto_perl->Isavestack_max;
13046     }
13047
13048     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
13049     PL_top_env          = &PL_start_env;
13050
13051     PL_op               = proto_perl->Iop;
13052
13053     PL_Sv               = NULL;
13054     PL_Xpv              = (XPV*)NULL;
13055     my_perl->Ina        = proto_perl->Ina;
13056
13057     PL_statbuf          = proto_perl->Istatbuf;
13058     PL_statcache        = proto_perl->Istatcache;
13059
13060 #ifdef HAS_TIMES
13061     PL_timesbuf         = proto_perl->Itimesbuf;
13062 #endif
13063
13064     PL_tainted          = proto_perl->Itainted;
13065     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
13066
13067     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
13068
13069     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
13070     PL_restartop        = proto_perl->Irestartop;
13071     PL_in_eval          = proto_perl->Iin_eval;
13072     PL_delaymagic       = proto_perl->Idelaymagic;
13073     PL_phase            = proto_perl->Iphase;
13074     PL_localizing       = proto_perl->Ilocalizing;
13075
13076     PL_hv_fetch_ent_mh  = NULL;
13077     PL_modcount         = proto_perl->Imodcount;
13078     PL_lastgotoprobe    = NULL;
13079     PL_dumpindent       = proto_perl->Idumpindent;
13080
13081     PL_efloatbuf        = NULL;         /* reinits on demand */
13082     PL_efloatsize       = 0;                    /* reinits on demand */
13083
13084     /* regex stuff */
13085
13086     PL_regdummy         = proto_perl->Iregdummy;
13087     PL_colorset         = 0;            /* reinits PL_colors[] */
13088     /*PL_colors[6]      = {0,0,0,0,0,0};*/
13089
13090     /* Pluggable optimizer */
13091     PL_peepp            = proto_perl->Ipeepp;
13092     PL_rpeepp           = proto_perl->Irpeepp;
13093     /* op_free() hook */
13094     PL_opfreehook       = proto_perl->Iopfreehook;
13095
13096 #ifdef USE_REENTRANT_API
13097     /* XXX: things like -Dm will segfault here in perlio, but doing
13098      *  PERL_SET_CONTEXT(proto_perl);
13099      * breaks too many other things
13100      */
13101     Perl_reentrant_init(aTHX);
13102 #endif
13103
13104     /* create SV map for pointer relocation */
13105     PL_ptr_table = ptr_table_new();
13106
13107     /* initialize these special pointers as early as possible */
13108     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13109
13110     SvANY(&PL_sv_no)            = new_XPVNV();
13111     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
13112     SvCUR_set(&PL_sv_no, 0);
13113     SvLEN_set(&PL_sv_no, 1);
13114     SvIV_set(&PL_sv_no, 0);
13115     SvNV_set(&PL_sv_no, 0);
13116     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13117
13118     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
13119     SvCUR_set(&PL_sv_yes, 1);
13120     SvLEN_set(&PL_sv_yes, 2);
13121     SvIV_set(&PL_sv_yes, 1);
13122     SvNV_set(&PL_sv_yes, 1);
13123     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13124
13125     /* create (a non-shared!) shared string table */
13126     PL_strtab           = newHV();
13127     HvSHAREKEYS_off(PL_strtab);
13128     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13129     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13130
13131     /* These two PVs will be free'd special way so must set them same way op.c does */
13132     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
13133     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
13134
13135     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13136     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13137
13138     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13139     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13140     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13141     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13142
13143     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13144     /* This makes no difference to the implementation, as it always pushes
13145        and shifts pointers to other SVs without changing their reference
13146        count, with the array becoming empty before it is freed. However, it
13147        makes it conceptually clear what is going on, and will avoid some
13148        work inside av.c, filling slots between AvFILL() and AvMAX() with
13149        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13150     AvREAL_off(param->stashes);
13151
13152     if (!(flags & CLONEf_COPY_STACKS)) {
13153         param->unreferenced = newAV();
13154     }
13155
13156 #ifdef PERLIO_LAYERS
13157     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13158     PerlIO_clone(aTHX_ proto_perl, param);
13159 #endif
13160
13161     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
13162     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
13163     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
13164     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13165     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13166     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13167
13168     /* switches */
13169     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13170     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13171     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13172     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13173
13174     /* magical thingies */
13175     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
13176
13177     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13178
13179     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13180     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13181     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13182
13183    
13184     /* Clone the regex array */
13185     /* ORANGE FIXME for plugins, probably in the SV dup code.
13186        newSViv(PTR2IV(CALLREGDUPE(
13187        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13188     */
13189     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13190     PL_regex_pad = AvARRAY(PL_regex_padav);
13191
13192     /* shortcuts to various I/O objects */
13193     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13194     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13195     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13196     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13197     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
13198     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13199     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13200
13201     /* shortcuts to regexp stuff */
13202     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
13203
13204     /* shortcuts to misc objects */
13205     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13206
13207     /* shortcuts to debugging objects */
13208     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
13209     PL_DBline           = gv_dup(proto_perl->IDBline, param);
13210     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
13211     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13212     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13213     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13214
13215     /* symbol tables */
13216     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13217     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
13218     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13219     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13220     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13221
13222     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13223     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13224     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13225     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13226     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13227     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13228     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13229     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13230
13231     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13232
13233     /* subprocess state */
13234     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13235
13236     if (proto_perl->Iop_mask)
13237         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13238     else
13239         PL_op_mask      = NULL;
13240     /* PL_asserting        = proto_perl->Iasserting; */
13241
13242     /* current interpreter roots */
13243     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13244     OP_REFCNT_LOCK;
13245     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13246     OP_REFCNT_UNLOCK;
13247
13248     /* runtime control stuff */
13249     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13250
13251     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13252
13253     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13254
13255     /* interpreter atexit processing */
13256     PL_exitlistlen      = proto_perl->Iexitlistlen;
13257     if (PL_exitlistlen) {
13258         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13259         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13260     }
13261     else
13262         PL_exitlist     = (PerlExitListEntry*)NULL;
13263
13264     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13265     if (PL_my_cxt_size) {
13266         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13267         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13268 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13269         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13270         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13271 #endif
13272     }
13273     else {
13274         PL_my_cxt_list  = (void**)NULL;
13275 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13276         PL_my_cxt_keys  = (const char**)NULL;
13277 #endif
13278     }
13279     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13280     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13281     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13282     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13283
13284     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13285
13286     PAD_CLONE_VARS(proto_perl, param);
13287
13288 #ifdef HAVE_INTERP_INTERN
13289     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13290 #endif
13291
13292     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13293
13294 #ifdef PERL_USES_PL_PIDSTATUS
13295     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13296 #endif
13297     PL_osname           = SAVEPV(proto_perl->Iosname);
13298     PL_parser           = parser_dup(proto_perl->Iparser, param);
13299
13300     /* XXX this only works if the saved cop has already been cloned */
13301     if (proto_perl->Iparser) {
13302         PL_parser->saved_curcop = (COP*)any_dup(
13303                                     proto_perl->Iparser->saved_curcop,
13304                                     proto_perl);
13305     }
13306
13307     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13308
13309 #ifdef USE_LOCALE_COLLATE
13310     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13311 #endif /* USE_LOCALE_COLLATE */
13312
13313 #ifdef USE_LOCALE_NUMERIC
13314     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13315     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13316 #endif /* !USE_LOCALE_NUMERIC */
13317
13318     /* utf8 character classes */
13319     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
13320     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
13321     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
13322     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
13323     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
13324     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
13325     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
13326     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
13327     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
13328     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
13329     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13330     PL_utf8_X_begin     = sv_dup_inc(proto_perl->Iutf8_X_begin, param);
13331     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13332     PL_utf8_X_prepend   = sv_dup_inc(proto_perl->Iutf8_X_prepend, param);
13333     PL_utf8_X_non_hangul        = sv_dup_inc(proto_perl->Iutf8_X_non_hangul, param);
13334     PL_utf8_X_L = sv_dup_inc(proto_perl->Iutf8_X_L, param);
13335     PL_utf8_X_LV        = sv_dup_inc(proto_perl->Iutf8_X_LV, param);
13336     PL_utf8_X_LVT       = sv_dup_inc(proto_perl->Iutf8_X_LVT, param);
13337     PL_utf8_X_T = sv_dup_inc(proto_perl->Iutf8_X_T, param);
13338     PL_utf8_X_V = sv_dup_inc(proto_perl->Iutf8_X_V, param);
13339     PL_utf8_X_LV_LVT_V  = sv_dup_inc(proto_perl->Iutf8_X_LV_LVT_V, param);
13340     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13341     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13342     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13343     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13344     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13345     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13346     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13347     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13348     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13349     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13350
13351
13352     if (proto_perl->Ipsig_pend) {
13353         Newxz(PL_psig_pend, SIG_SIZE, int);
13354     }
13355     else {
13356         PL_psig_pend    = (int*)NULL;
13357     }
13358
13359     if (proto_perl->Ipsig_name) {
13360         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13361         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13362                             param);
13363         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13364     }
13365     else {
13366         PL_psig_ptr     = (SV**)NULL;
13367         PL_psig_name    = (SV**)NULL;
13368     }
13369
13370     if (flags & CLONEf_COPY_STACKS) {
13371         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13372         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13373                             PL_tmps_ix+1, param);
13374
13375         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13376         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13377         Newxz(PL_markstack, i, I32);
13378         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13379                                                   - proto_perl->Imarkstack);
13380         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13381                                                   - proto_perl->Imarkstack);
13382         Copy(proto_perl->Imarkstack, PL_markstack,
13383              PL_markstack_ptr - PL_markstack + 1, I32);
13384
13385         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13386          * NOTE: unlike the others! */
13387         Newxz(PL_scopestack, PL_scopestack_max, I32);
13388         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13389
13390 #ifdef DEBUGGING
13391         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13392         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13393 #endif
13394         /* NOTE: si_dup() looks at PL_markstack */
13395         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13396
13397         /* PL_curstack          = PL_curstackinfo->si_stack; */
13398         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13399         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13400
13401         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13402         PL_stack_base           = AvARRAY(PL_curstack);
13403         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13404                                                    - proto_perl->Istack_base);
13405         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13406
13407         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13408         PL_savestack            = ss_dup(proto_perl, param);
13409     }
13410     else {
13411         init_stacks();
13412         ENTER;                  /* perl_destruct() wants to LEAVE; */
13413     }
13414
13415     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13416     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13417
13418     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13419     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13420     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13421     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13422     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13423     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13424
13425     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13426
13427     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13428     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
13429     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
13430     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
13431
13432     PL_stashcache       = newHV();
13433
13434     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13435                                             proto_perl->Iwatchaddr);
13436     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13437     if (PL_debug && PL_watchaddr) {
13438         PerlIO_printf(Perl_debug_log,
13439           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13440           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13441           PTR2UV(PL_watchok));
13442     }
13443
13444     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13445     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13446     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13447
13448     /* Call the ->CLONE method, if it exists, for each of the stashes
13449        identified by sv_dup() above.
13450     */
13451     while(av_len(param->stashes) != -1) {
13452         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13453         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13454         if (cloner && GvCV(cloner)) {
13455             dSP;
13456             ENTER;
13457             SAVETMPS;
13458             PUSHMARK(SP);
13459             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13460             PUTBACK;
13461             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13462             FREETMPS;
13463             LEAVE;
13464         }
13465     }
13466
13467     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13468         ptr_table_free(PL_ptr_table);
13469         PL_ptr_table = NULL;
13470     }
13471
13472     if (!(flags & CLONEf_COPY_STACKS)) {
13473         unreferenced_to_tmp_stack(param->unreferenced);
13474     }
13475
13476     SvREFCNT_dec(param->stashes);
13477
13478     /* orphaned? eg threads->new inside BEGIN or use */
13479     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13480         SvREFCNT_inc_simple_void(PL_compcv);
13481         SAVEFREESV(PL_compcv);
13482     }
13483
13484     return my_perl;
13485 }
13486
13487 static void
13488 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13489 {
13490     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13491     
13492     if (AvFILLp(unreferenced) > -1) {
13493         SV **svp = AvARRAY(unreferenced);
13494         SV **const last = svp + AvFILLp(unreferenced);
13495         SSize_t count = 0;
13496
13497         do {
13498             if (SvREFCNT(*svp) == 1)
13499                 ++count;
13500         } while (++svp <= last);
13501
13502         EXTEND_MORTAL(count);
13503         svp = AvARRAY(unreferenced);
13504
13505         do {
13506             if (SvREFCNT(*svp) == 1) {
13507                 /* Our reference is the only one to this SV. This means that
13508                    in this thread, the scalar effectively has a 0 reference.
13509                    That doesn't work (cleanup never happens), so donate our
13510                    reference to it onto the save stack. */
13511                 PL_tmps_stack[++PL_tmps_ix] = *svp;
13512             } else {
13513                 /* As an optimisation, because we are already walking the
13514                    entire array, instead of above doing either
13515                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
13516                    release our reference to the scalar, so that at the end of
13517                    the array owns zero references to the scalars it happens to
13518                    point to. We are effectively converting the array from
13519                    AvREAL() on to AvREAL() off. This saves the av_clear()
13520                    (triggered by the SvREFCNT_dec(unreferenced) below) from
13521                    walking the array a second time.  */
13522                 SvREFCNT_dec(*svp);
13523             }
13524
13525         } while (++svp <= last);
13526         AvREAL_off(unreferenced);
13527     }
13528     SvREFCNT_dec(unreferenced);
13529 }
13530
13531 void
13532 Perl_clone_params_del(CLONE_PARAMS *param)
13533 {
13534     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
13535        happy: */
13536     PerlInterpreter *const to = param->new_perl;
13537     dTHXa(to);
13538     PerlInterpreter *const was = PERL_GET_THX;
13539
13540     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
13541
13542     if (was != to) {
13543         PERL_SET_THX(to);
13544     }
13545
13546     SvREFCNT_dec(param->stashes);
13547     if (param->unreferenced)
13548         unreferenced_to_tmp_stack(param->unreferenced);
13549
13550     Safefree(param);
13551
13552     if (was != to) {
13553         PERL_SET_THX(was);
13554     }
13555 }
13556
13557 CLONE_PARAMS *
13558 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
13559 {
13560     dVAR;
13561     /* Need to play this game, as newAV() can call safesysmalloc(), and that
13562        does a dTHX; to get the context from thread local storage.
13563        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
13564        a version that passes in my_perl.  */
13565     PerlInterpreter *const was = PERL_GET_THX;
13566     CLONE_PARAMS *param;
13567
13568     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
13569
13570     if (was != to) {
13571         PERL_SET_THX(to);
13572     }
13573
13574     /* Given that we've set the context, we can do this unshared.  */
13575     Newx(param, 1, CLONE_PARAMS);
13576
13577     param->flags = 0;
13578     param->proto_perl = from;
13579     param->new_perl = to;
13580     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
13581     AvREAL_off(param->stashes);
13582     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
13583
13584     if (was != to) {
13585         PERL_SET_THX(was);
13586     }
13587     return param;
13588 }
13589
13590 #endif /* USE_ITHREADS */
13591
13592 /*
13593 =head1 Unicode Support
13594
13595 =for apidoc sv_recode_to_utf8
13596
13597 The encoding is assumed to be an Encode object, on entry the PV
13598 of the sv is assumed to be octets in that encoding, and the sv
13599 will be converted into Unicode (and UTF-8).
13600
13601 If the sv already is UTF-8 (or if it is not POK), or if the encoding
13602 is not a reference, nothing is done to the sv.  If the encoding is not
13603 an C<Encode::XS> Encoding object, bad things will happen.
13604 (See F<lib/encoding.pm> and L<Encode>).
13605
13606 The PV of the sv is returned.
13607
13608 =cut */
13609
13610 char *
13611 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
13612 {
13613     dVAR;
13614
13615     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
13616
13617     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
13618         SV *uni;
13619         STRLEN len;
13620         const char *s;
13621         dSP;
13622         ENTER;
13623         SAVETMPS;
13624         save_re_context();
13625         PUSHMARK(sp);
13626         EXTEND(SP, 3);
13627         XPUSHs(encoding);
13628         XPUSHs(sv);
13629 /*
13630   NI-S 2002/07/09
13631   Passing sv_yes is wrong - it needs to be or'ed set of constants
13632   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
13633   remove converted chars from source.
13634
13635   Both will default the value - let them.
13636
13637         XPUSHs(&PL_sv_yes);
13638 */
13639         PUTBACK;
13640         call_method("decode", G_SCALAR);
13641         SPAGAIN;
13642         uni = POPs;
13643         PUTBACK;
13644         s = SvPV_const(uni, len);
13645         if (s != SvPVX_const(sv)) {
13646             SvGROW(sv, len + 1);
13647             Move(s, SvPVX(sv), len + 1, char);
13648             SvCUR_set(sv, len);
13649         }
13650         FREETMPS;
13651         LEAVE;
13652         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
13653             /* clear pos and any utf8 cache */
13654             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
13655             if (mg)
13656                 mg->mg_len = -1;
13657             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
13658                 magic_setutf8(sv,mg); /* clear UTF8 cache */
13659         }
13660         SvUTF8_on(sv);
13661         return SvPVX(sv);
13662     }
13663     return SvPOKp(sv) ? SvPVX(sv) : NULL;
13664 }
13665
13666 /*
13667 =for apidoc sv_cat_decode
13668
13669 The encoding is assumed to be an Encode object, the PV of the ssv is
13670 assumed to be octets in that encoding and decoding the input starts
13671 from the position which (PV + *offset) pointed to.  The dsv will be
13672 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
13673 when the string tstr appears in decoding output or the input ends on
13674 the PV of the ssv. The value which the offset points will be modified
13675 to the last input position on the ssv.
13676
13677 Returns TRUE if the terminator was found, else returns FALSE.
13678
13679 =cut */
13680
13681 bool
13682 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
13683                    SV *ssv, int *offset, char *tstr, int tlen)
13684 {
13685     dVAR;
13686     bool ret = FALSE;
13687
13688     PERL_ARGS_ASSERT_SV_CAT_DECODE;
13689
13690     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
13691         SV *offsv;
13692         dSP;
13693         ENTER;
13694         SAVETMPS;
13695         save_re_context();
13696         PUSHMARK(sp);
13697         EXTEND(SP, 6);
13698         XPUSHs(encoding);
13699         XPUSHs(dsv);
13700         XPUSHs(ssv);
13701         offsv = newSViv(*offset);
13702         mXPUSHs(offsv);
13703         mXPUSHp(tstr, tlen);
13704         PUTBACK;
13705         call_method("cat_decode", G_SCALAR);
13706         SPAGAIN;
13707         ret = SvTRUE(TOPs);
13708         *offset = SvIV(offsv);
13709         PUTBACK;
13710         FREETMPS;
13711         LEAVE;
13712     }
13713     else
13714         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
13715     return ret;
13716
13717 }
13718
13719 /* ---------------------------------------------------------------------
13720  *
13721  * support functions for report_uninit()
13722  */
13723
13724 /* the maxiumum size of array or hash where we will scan looking
13725  * for the undefined element that triggered the warning */
13726
13727 #define FUV_MAX_SEARCH_SIZE 1000
13728
13729 /* Look for an entry in the hash whose value has the same SV as val;
13730  * If so, return a mortal copy of the key. */
13731
13732 STATIC SV*
13733 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
13734 {
13735     dVAR;
13736     register HE **array;
13737     I32 i;
13738
13739     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
13740
13741     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
13742                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
13743         return NULL;
13744
13745     array = HvARRAY(hv);
13746
13747     for (i=HvMAX(hv); i>0; i--) {
13748         register HE *entry;
13749         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
13750             if (HeVAL(entry) != val)
13751                 continue;
13752             if (    HeVAL(entry) == &PL_sv_undef ||
13753                     HeVAL(entry) == &PL_sv_placeholder)
13754                 continue;
13755             if (!HeKEY(entry))
13756                 return NULL;
13757             if (HeKLEN(entry) == HEf_SVKEY)
13758                 return sv_mortalcopy(HeKEY_sv(entry));
13759             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
13760         }
13761     }
13762     return NULL;
13763 }
13764
13765 /* Look for an entry in the array whose value has the same SV as val;
13766  * If so, return the index, otherwise return -1. */
13767
13768 STATIC I32
13769 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
13770 {
13771     dVAR;
13772
13773     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
13774
13775     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
13776                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
13777         return -1;
13778
13779     if (val != &PL_sv_undef) {
13780         SV ** const svp = AvARRAY(av);
13781         I32 i;
13782
13783         for (i=AvFILLp(av); i>=0; i--)
13784             if (svp[i] == val)
13785                 return i;
13786     }
13787     return -1;
13788 }
13789
13790 /* S_varname(): return the name of a variable, optionally with a subscript.
13791  * If gv is non-zero, use the name of that global, along with gvtype (one
13792  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
13793  * targ.  Depending on the value of the subscript_type flag, return:
13794  */
13795
13796 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
13797 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
13798 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
13799 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
13800
13801 STATIC SV*
13802 S_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
13803         const SV *const keyname, I32 aindex, int subscript_type)
13804 {
13805
13806     SV * const name = sv_newmortal();
13807     if (gv) {
13808         char buffer[2];
13809         buffer[0] = gvtype;
13810         buffer[1] = 0;
13811
13812         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
13813
13814         gv_fullname4(name, gv, buffer, 0);
13815
13816         if ((unsigned int)SvPVX(name)[1] <= 26) {
13817             buffer[0] = '^';
13818             buffer[1] = SvPVX(name)[1] + 'A' - 1;
13819
13820             /* Swap the 1 unprintable control character for the 2 byte pretty
13821                version - ie substr($name, 1, 1) = $buffer; */
13822             sv_insert(name, 1, 1, buffer, 2);
13823         }
13824     }
13825     else {
13826         CV * const cv = find_runcv(NULL);
13827         SV *sv;
13828         AV *av;
13829
13830         if (!cv || !CvPADLIST(cv))
13831             return NULL;
13832         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
13833         sv = *av_fetch(av, targ, FALSE);
13834         sv_setsv(name, sv);
13835     }
13836
13837     if (subscript_type == FUV_SUBSCRIPT_HASH) {
13838         SV * const sv = newSV(0);
13839         *SvPVX(name) = '$';
13840         Perl_sv_catpvf(aTHX_ name, "{%s}",
13841             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
13842         SvREFCNT_dec(sv);
13843     }
13844     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
13845         *SvPVX(name) = '$';
13846         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
13847     }
13848     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
13849         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
13850         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
13851     }
13852
13853     return name;
13854 }
13855
13856
13857 /*
13858 =for apidoc find_uninit_var
13859
13860 Find the name of the undefined variable (if any) that caused the operator o
13861 to issue a "Use of uninitialized value" warning.
13862 If match is true, only return a name if it's value matches uninit_sv.
13863 So roughly speaking, if a unary operator (such as OP_COS) generates a
13864 warning, then following the direct child of the op may yield an
13865 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
13866 other hand, with OP_ADD there are two branches to follow, so we only print
13867 the variable name if we get an exact match.
13868
13869 The name is returned as a mortal SV.
13870
13871 Assumes that PL_op is the op that originally triggered the error, and that
13872 PL_comppad/PL_curpad points to the currently executing pad.
13873
13874 =cut
13875 */
13876
13877 STATIC SV *
13878 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
13879                   bool match)
13880 {
13881     dVAR;
13882     SV *sv;
13883     const GV *gv;
13884     const OP *o, *o2, *kid;
13885
13886     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
13887                             uninit_sv == &PL_sv_placeholder)))
13888         return NULL;
13889
13890     switch (obase->op_type) {
13891
13892     case OP_RV2AV:
13893     case OP_RV2HV:
13894     case OP_PADAV:
13895     case OP_PADHV:
13896       {
13897         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
13898         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
13899         I32 index = 0;
13900         SV *keysv = NULL;
13901         int subscript_type = FUV_SUBSCRIPT_WITHIN;
13902
13903         if (pad) { /* @lex, %lex */
13904             sv = PAD_SVl(obase->op_targ);
13905             gv = NULL;
13906         }
13907         else {
13908             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13909             /* @global, %global */
13910                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13911                 if (!gv)
13912                     break;
13913                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
13914             }
13915             else /* @{expr}, %{expr} */
13916                 return find_uninit_var(cUNOPx(obase)->op_first,
13917                                                     uninit_sv, match);
13918         }
13919
13920         /* attempt to find a match within the aggregate */
13921         if (hash) {
13922             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13923             if (keysv)
13924                 subscript_type = FUV_SUBSCRIPT_HASH;
13925         }
13926         else {
13927             index = find_array_subscript((const AV *)sv, uninit_sv);
13928             if (index >= 0)
13929                 subscript_type = FUV_SUBSCRIPT_ARRAY;
13930         }
13931
13932         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
13933             break;
13934
13935         return varname(gv, hash ? '%' : '@', obase->op_targ,
13936                                     keysv, index, subscript_type);
13937       }
13938
13939     case OP_RV2SV:
13940         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13941             /* $global */
13942             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13943             if (!gv || !GvSTASH(gv))
13944                 break;
13945             if (match && (GvSV(gv) != uninit_sv))
13946                 break;
13947             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13948         }
13949         /* ${expr} */
13950         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
13951
13952     case OP_PADSV:
13953         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
13954             break;
13955         return varname(NULL, '$', obase->op_targ,
13956                                     NULL, 0, FUV_SUBSCRIPT_NONE);
13957
13958     case OP_GVSV:
13959         gv = cGVOPx_gv(obase);
13960         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
13961             break;
13962         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13963
13964     case OP_AELEMFAST_LEX:
13965         if (match) {
13966             SV **svp;
13967             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
13968             if (!av || SvRMAGICAL(av))
13969                 break;
13970             svp = av_fetch(av, (I32)obase->op_private, FALSE);
13971             if (!svp || *svp != uninit_sv)
13972                 break;
13973         }
13974         return varname(NULL, '$', obase->op_targ,
13975                        NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13976     case OP_AELEMFAST:
13977         {
13978             gv = cGVOPx_gv(obase);
13979             if (!gv)
13980                 break;
13981             if (match) {
13982                 SV **svp;
13983                 AV *const av = GvAV(gv);
13984                 if (!av || SvRMAGICAL(av))
13985                     break;
13986                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
13987                 if (!svp || *svp != uninit_sv)
13988                     break;
13989             }
13990             return varname(gv, '$', 0,
13991                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13992         }
13993         break;
13994
13995     case OP_EXISTS:
13996         o = cUNOPx(obase)->op_first;
13997         if (!o || o->op_type != OP_NULL ||
13998                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
13999             break;
14000         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
14001
14002     case OP_AELEM:
14003     case OP_HELEM:
14004     {
14005         bool negate = FALSE;
14006
14007         if (PL_op == obase)
14008             /* $a[uninit_expr] or $h{uninit_expr} */
14009             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
14010
14011         gv = NULL;
14012         o = cBINOPx(obase)->op_first;
14013         kid = cBINOPx(obase)->op_last;
14014
14015         /* get the av or hv, and optionally the gv */
14016         sv = NULL;
14017         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
14018             sv = PAD_SV(o->op_targ);
14019         }
14020         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
14021                 && cUNOPo->op_first->op_type == OP_GV)
14022         {
14023             gv = cGVOPx_gv(cUNOPo->op_first);
14024             if (!gv)
14025                 break;
14026             sv = o->op_type
14027                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
14028         }
14029         if (!sv)
14030             break;
14031
14032         if (kid && kid->op_type == OP_NEGATE) {
14033             negate = TRUE;
14034             kid = cUNOPx(kid)->op_first;
14035         }
14036
14037         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
14038             /* index is constant */
14039             SV* kidsv;
14040             if (negate) {
14041                 kidsv = sv_2mortal(newSVpvs("-"));
14042                 sv_catsv(kidsv, cSVOPx_sv(kid));
14043             }
14044             else
14045                 kidsv = cSVOPx_sv(kid);
14046             if (match) {
14047                 if (SvMAGICAL(sv))
14048                     break;
14049                 if (obase->op_type == OP_HELEM) {
14050                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
14051                     if (!he || HeVAL(he) != uninit_sv)
14052                         break;
14053                 }
14054                 else {
14055                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
14056                         negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14057                         FALSE);
14058                     if (!svp || *svp != uninit_sv)
14059                         break;
14060                 }
14061             }
14062             if (obase->op_type == OP_HELEM)
14063                 return varname(gv, '%', o->op_targ,
14064                             kidsv, 0, FUV_SUBSCRIPT_HASH);
14065             else
14066                 return varname(gv, '@', o->op_targ, NULL,
14067                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14068                     FUV_SUBSCRIPT_ARRAY);
14069         }
14070         else  {
14071             /* index is an expression;
14072              * attempt to find a match within the aggregate */
14073             if (obase->op_type == OP_HELEM) {
14074                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14075                 if (keysv)
14076                     return varname(gv, '%', o->op_targ,
14077                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
14078             }
14079             else {
14080                 const I32 index
14081                     = find_array_subscript((const AV *)sv, uninit_sv);
14082                 if (index >= 0)
14083                     return varname(gv, '@', o->op_targ,
14084                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
14085             }
14086             if (match)
14087                 break;
14088             return varname(gv,
14089                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
14090                 ? '@' : '%',
14091                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
14092         }
14093         break;
14094     }
14095
14096     case OP_AASSIGN:
14097         /* only examine RHS */
14098         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
14099
14100     case OP_OPEN:
14101         o = cUNOPx(obase)->op_first;
14102         if (o->op_type == OP_PUSHMARK)
14103             o = o->op_sibling;
14104
14105         if (!o->op_sibling) {
14106             /* one-arg version of open is highly magical */
14107
14108             if (o->op_type == OP_GV) { /* open FOO; */
14109                 gv = cGVOPx_gv(o);
14110                 if (match && GvSV(gv) != uninit_sv)
14111                     break;
14112                 return varname(gv, '$', 0,
14113                             NULL, 0, FUV_SUBSCRIPT_NONE);
14114             }
14115             /* other possibilities not handled are:
14116              * open $x; or open my $x;  should return '${*$x}'
14117              * open expr;               should return '$'.expr ideally
14118              */
14119              break;
14120         }
14121         goto do_op;
14122
14123     /* ops where $_ may be an implicit arg */
14124     case OP_TRANS:
14125     case OP_SUBST:
14126     case OP_MATCH:
14127         if ( !(obase->op_flags & OPf_STACKED)) {
14128             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14129                                  ? PAD_SVl(obase->op_targ)
14130                                  : DEFSV))
14131             {
14132                 sv = sv_newmortal();
14133                 sv_setpvs(sv, "$_");
14134                 return sv;
14135             }
14136         }
14137         goto do_op;
14138
14139     case OP_PRTF:
14140     case OP_PRINT:
14141     case OP_SAY:
14142         match = 1; /* print etc can return undef on defined args */
14143         /* skip filehandle as it can't produce 'undef' warning  */
14144         o = cUNOPx(obase)->op_first;
14145         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
14146             o = o->op_sibling->op_sibling;
14147         goto do_op2;
14148
14149
14150     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14151     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14152
14153         /* the following ops are capable of returning PL_sv_undef even for
14154          * defined arg(s) */
14155
14156     case OP_BACKTICK:
14157     case OP_PIPE_OP:
14158     case OP_FILENO:
14159     case OP_BINMODE:
14160     case OP_TIED:
14161     case OP_GETC:
14162     case OP_SYSREAD:
14163     case OP_SEND:
14164     case OP_IOCTL:
14165     case OP_SOCKET:
14166     case OP_SOCKPAIR:
14167     case OP_BIND:
14168     case OP_CONNECT:
14169     case OP_LISTEN:
14170     case OP_ACCEPT:
14171     case OP_SHUTDOWN:
14172     case OP_SSOCKOPT:
14173     case OP_GETPEERNAME:
14174     case OP_FTRREAD:
14175     case OP_FTRWRITE:
14176     case OP_FTREXEC:
14177     case OP_FTROWNED:
14178     case OP_FTEREAD:
14179     case OP_FTEWRITE:
14180     case OP_FTEEXEC:
14181     case OP_FTEOWNED:
14182     case OP_FTIS:
14183     case OP_FTZERO:
14184     case OP_FTSIZE:
14185     case OP_FTFILE:
14186     case OP_FTDIR:
14187     case OP_FTLINK:
14188     case OP_FTPIPE:
14189     case OP_FTSOCK:
14190     case OP_FTBLK:
14191     case OP_FTCHR:
14192     case OP_FTTTY:
14193     case OP_FTSUID:
14194     case OP_FTSGID:
14195     case OP_FTSVTX:
14196     case OP_FTTEXT:
14197     case OP_FTBINARY:
14198     case OP_FTMTIME:
14199     case OP_FTATIME:
14200     case OP_FTCTIME:
14201     case OP_READLINK:
14202     case OP_OPEN_DIR:
14203     case OP_READDIR:
14204     case OP_TELLDIR:
14205     case OP_SEEKDIR:
14206     case OP_REWINDDIR:
14207     case OP_CLOSEDIR:
14208     case OP_GMTIME:
14209     case OP_ALARM:
14210     case OP_SEMGET:
14211     case OP_GETLOGIN:
14212     case OP_UNDEF:
14213     case OP_SUBSTR:
14214     case OP_AEACH:
14215     case OP_EACH:
14216     case OP_SORT:
14217     case OP_CALLER:
14218     case OP_DOFILE:
14219     case OP_PROTOTYPE:
14220     case OP_NCMP:
14221     case OP_SMARTMATCH:
14222     case OP_UNPACK:
14223     case OP_SYSOPEN:
14224     case OP_SYSSEEK:
14225         match = 1;
14226         goto do_op;
14227
14228     case OP_ENTERSUB:
14229     case OP_GOTO:
14230         /* XXX tmp hack: these two may call an XS sub, and currently
14231           XS subs don't have a SUB entry on the context stack, so CV and
14232           pad determination goes wrong, and BAD things happen. So, just
14233           don't try to determine the value under those circumstances.
14234           Need a better fix at dome point. DAPM 11/2007 */
14235         break;
14236
14237     case OP_FLIP:
14238     case OP_FLOP:
14239     {
14240         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14241         if (gv && GvSV(gv) == uninit_sv)
14242             return newSVpvs_flags("$.", SVs_TEMP);
14243         goto do_op;
14244     }
14245
14246     case OP_POS:
14247         /* def-ness of rval pos() is independent of the def-ness of its arg */
14248         if ( !(obase->op_flags & OPf_MOD))
14249             break;
14250
14251     case OP_SCHOMP:
14252     case OP_CHOMP:
14253         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14254             return newSVpvs_flags("${$/}", SVs_TEMP);
14255         /*FALLTHROUGH*/
14256
14257     default:
14258     do_op:
14259         if (!(obase->op_flags & OPf_KIDS))
14260             break;
14261         o = cUNOPx(obase)->op_first;
14262         
14263     do_op2:
14264         if (!o)
14265             break;
14266
14267         /* if all except one arg are constant, or have no side-effects,
14268          * or are optimized away, then it's unambiguous */
14269         o2 = NULL;
14270         for (kid=o; kid; kid = kid->op_sibling) {
14271             if (kid) {
14272                 const OPCODE type = kid->op_type;
14273                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14274                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14275                   || (type == OP_PUSHMARK)
14276                   || (
14277                       /* @$a and %$a, but not @a or %a */
14278                         (type == OP_RV2AV || type == OP_RV2HV)
14279                      && cUNOPx(kid)->op_first
14280                      && cUNOPx(kid)->op_first->op_type != OP_GV
14281                      )
14282                 )
14283                 continue;
14284             }
14285             if (o2) { /* more than one found */
14286                 o2 = NULL;
14287                 break;
14288             }
14289             o2 = kid;
14290         }
14291         if (o2)
14292             return find_uninit_var(o2, uninit_sv, match);
14293
14294         /* scan all args */
14295         while (o) {
14296             sv = find_uninit_var(o, uninit_sv, 1);
14297             if (sv)
14298                 return sv;
14299             o = o->op_sibling;
14300         }
14301         break;
14302     }
14303     return NULL;
14304 }
14305
14306
14307 /*
14308 =for apidoc report_uninit
14309
14310 Print appropriate "Use of uninitialized variable" warning
14311
14312 =cut
14313 */
14314
14315 void
14316 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14317 {
14318     dVAR;
14319     if (PL_op) {
14320         SV* varname = NULL;
14321         if (uninit_sv && PL_curpad) {
14322             varname = find_uninit_var(PL_op, uninit_sv,0);
14323             if (varname)
14324                 sv_insert(varname, 0, 0, " ", 1);
14325         }
14326         /* diag_listed_as: Use of uninitialized value%s */
14327         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
14328                 SVfARG(varname ? varname : &PL_sv_no),
14329                 " in ", OP_DESC(PL_op));
14330     }
14331     else
14332         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14333                     "", "", "");
14334 }
14335
14336 /*
14337  * Local variables:
14338  * c-indentation-style: bsd
14339  * c-basic-offset: 4
14340  * indent-tabs-mode: t
14341  * End:
14342  *
14343  * ex: set ts=8 sts=4 sw=4 noet:
14344  */