Revert "show -E in error message when called with -E"
[p5sagit/p5-mst-13.2.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5  *    and others
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  *
10  */
11
12 /*
13  * 'I wonder what the Entish is for "yes" and "no",' he thought.
14  *                                                      --Pippin
15  *
16  *     [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17  */
18
19 /*
20  *
21  *
22  * This file contains the code that creates, manipulates and destroys
23  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24  * structure of an SV, so their creation and destruction is handled
25  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26  * level functions (eg. substr, split, join) for each of the types are
27  * in the pp*.c files.
28  */
29
30 #include "EXTERN.h"
31 #define PERL_IN_SV_C
32 #include "perl.h"
33 #include "regcomp.h"
34
35 #define FCALL *f
36
37 #ifdef __Lynx__
38 /* Missing proto on LynxOS */
39   char *gconvert(double, int, int,  char *);
40 #endif
41
42 #ifdef PERL_UTF8_CACHE_ASSERT
43 /* if adding more checks watch out for the following tests:
44  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
45  *   lib/utf8.t lib/Unicode/Collate/t/index.t
46  * --jhi
47  */
48 #   define ASSERT_UTF8_CACHE(cache) \
49     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
50                               assert((cache)[2] <= (cache)[3]); \
51                               assert((cache)[3] <= (cache)[1]);} \
52                               } STMT_END
53 #else
54 #   define ASSERT_UTF8_CACHE(cache) NOOP
55 #endif
56
57 #ifdef PERL_OLD_COPY_ON_WRITE
58 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
59 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
60 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
61    on-write.  */
62 #endif
63
64 /* ============================================================================
65
66 =head1 Allocation and deallocation of SVs.
67
68 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
69 sv, av, hv...) contains type and reference count information, and for
70 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
71 contains fields specific to each type.  Some types store all they need
72 in the head, so don't have a body.
73
74 In all but the most memory-paranoid configuations (ex: PURIFY), heads
75 and bodies are allocated out of arenas, which by default are
76 approximately 4K chunks of memory parcelled up into N heads or bodies.
77 Sv-bodies are allocated by their sv-type, guaranteeing size
78 consistency needed to allocate safely from arrays.
79
80 For SV-heads, the first slot in each arena is reserved, and holds a
81 link to the next arena, some flags, and a note of the number of slots.
82 Snaked through each arena chain is a linked list of free items; when
83 this becomes empty, an extra arena is allocated and divided up into N
84 items which are threaded into the free list.
85
86 SV-bodies are similar, but they use arena-sets by default, which
87 separate the link and info from the arena itself, and reclaim the 1st
88 slot in the arena.  SV-bodies are further described later.
89
90 The following global variables are associated with arenas:
91
92     PL_sv_arenaroot     pointer to list of SV arenas
93     PL_sv_root          pointer to list of free SV structures
94
95     PL_body_arenas      head of linked-list of body arenas
96     PL_body_roots[]     array of pointers to list of free bodies of svtype
97                         arrays are indexed by the svtype needed
98
99 A few special SV heads are not allocated from an arena, but are
100 instead directly created in the interpreter structure, eg PL_sv_undef.
101 The size of arenas can be changed from the default by setting
102 PERL_ARENA_SIZE appropriately at compile time.
103
104 The SV arena serves the secondary purpose of allowing still-live SVs
105 to be located and destroyed during final cleanup.
106
107 At the lowest level, the macros new_SV() and del_SV() grab and free
108 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
109 to return the SV to the free list with error checking.) new_SV() calls
110 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
111 SVs in the free list have their SvTYPE field set to all ones.
112
113 At the time of very final cleanup, sv_free_arenas() is called from
114 perl_destruct() to physically free all the arenas allocated since the
115 start of the interpreter.
116
117 The function visit() scans the SV arenas list, and calls a specified
118 function for each SV it finds which is still live - ie which has an SvTYPE
119 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
120 following functions (specified as [function that calls visit()] / [function
121 called by visit() for each SV]):
122
123     sv_report_used() / do_report_used()
124                         dump all remaining SVs (debugging aid)
125
126     sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
127                         Attempt to free all objects pointed to by RVs,
128                         and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
129                         try to do the same for all objects indirectly
130                         referenced by typeglobs too.  Called once from
131                         perl_destruct(), prior to calling sv_clean_all()
132                         below.
133
134     sv_clean_all() / do_clean_all()
135                         SvREFCNT_dec(sv) each remaining SV, possibly
136                         triggering an sv_free(). It also sets the
137                         SVf_BREAK flag on the SV to indicate that the
138                         refcnt has been artificially lowered, and thus
139                         stopping sv_free() from giving spurious warnings
140                         about SVs which unexpectedly have a refcnt
141                         of zero.  called repeatedly from perl_destruct()
142                         until there are no SVs left.
143
144 =head2 Arena allocator API Summary
145
146 Private API to rest of sv.c
147
148     new_SV(),  del_SV(),
149
150     new_XIV(), del_XIV(),
151     new_XNV(), del_XNV(),
152     etc
153
154 Public API:
155
156     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
157
158 =cut
159
160 ============================================================================ */
161
162 /*
163  * "A time to plant, and a time to uproot what was planted..."
164  */
165
166 void
167 Perl_offer_nice_chunk(pTHX_ void *const chunk, const U32 chunk_size)
168 {
169     dVAR;
170     void *new_chunk;
171     U32 new_chunk_size;
172
173     PERL_ARGS_ASSERT_OFFER_NICE_CHUNK;
174
175     new_chunk = (void *)(chunk);
176     new_chunk_size = (chunk_size);
177     if (new_chunk_size > PL_nice_chunk_size) {
178         Safefree(PL_nice_chunk);
179         PL_nice_chunk = (char *) new_chunk;
180         PL_nice_chunk_size = new_chunk_size;
181     } else {
182         Safefree(chunk);
183     }
184 }
185
186 #ifdef PERL_MEM_LOG
187 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
188             Perl_mem_log_new_sv(sv, file, line, func)
189 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
190             Perl_mem_log_del_sv(sv, file, line, func)
191 #else
192 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
193 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
194 #endif
195
196 #ifdef DEBUG_LEAKING_SCALARS
197 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
198 #  define DEBUG_SV_SERIAL(sv)                                               \
199     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
200             PTR2UV(sv), (long)(sv)->sv_debug_serial))
201 #else
202 #  define FREE_SV_DEBUG_FILE(sv)
203 #  define DEBUG_SV_SERIAL(sv)   NOOP
204 #endif
205
206 #ifdef PERL_POISON
207 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
208 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
209 /* Whilst I'd love to do this, it seems that things like to check on
210    unreferenced scalars
211 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
212 */
213 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
214                                 PoisonNew(&SvREFCNT(sv), 1, U32)
215 #else
216 #  define SvARENA_CHAIN(sv)     SvANY(sv)
217 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
218 #  define POSION_SV_HEAD(sv)
219 #endif
220
221 /* Mark an SV head as unused, and add to free list.
222  *
223  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
224  * its refcount artificially decremented during global destruction, so
225  * there may be dangling pointers to it. The last thing we want in that
226  * case is for it to be reused. */
227
228 #define plant_SV(p) \
229     STMT_START {                                        \
230         const U32 old_flags = SvFLAGS(p);                       \
231         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
232         DEBUG_SV_SERIAL(p);                             \
233         FREE_SV_DEBUG_FILE(p);                          \
234         POSION_SV_HEAD(p);                              \
235         SvFLAGS(p) = SVTYPEMASK;                        \
236         if (!(old_flags & SVf_BREAK)) {         \
237             SvARENA_CHAIN_SET(p, PL_sv_root);   \
238             PL_sv_root = (p);                           \
239         }                                               \
240         --PL_sv_count;                                  \
241     } STMT_END
242
243 #define uproot_SV(p) \
244     STMT_START {                                        \
245         (p) = PL_sv_root;                               \
246         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
247         ++PL_sv_count;                                  \
248     } STMT_END
249
250
251 /* make some more SVs by adding another arena */
252
253 STATIC SV*
254 S_more_sv(pTHX)
255 {
256     dVAR;
257     SV* sv;
258
259     if (PL_nice_chunk) {
260         sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
261         PL_nice_chunk = NULL;
262         PL_nice_chunk_size = 0;
263     }
264     else {
265         char *chunk;                /* must use New here to match call to */
266         Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
267         sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
268     }
269     uproot_SV(sv);
270     return sv;
271 }
272
273 /* new_SV(): return a new, empty SV head */
274
275 #ifdef DEBUG_LEAKING_SCALARS
276 /* provide a real function for a debugger to play with */
277 STATIC SV*
278 S_new_SV(pTHX_ const char *file, int line, const char *func)
279 {
280     SV* sv;
281
282     if (PL_sv_root)
283         uproot_SV(sv);
284     else
285         sv = S_more_sv(aTHX);
286     SvANY(sv) = 0;
287     SvREFCNT(sv) = 1;
288     SvFLAGS(sv) = 0;
289     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
290     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
291                 ? PL_parser->copline
292                 :  PL_curcop
293                     ? CopLINE(PL_curcop)
294                     : 0
295             );
296     sv->sv_debug_inpad = 0;
297     sv->sv_debug_cloned = 0;
298     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
299
300     sv->sv_debug_serial = PL_sv_serial++;
301
302     MEM_LOG_NEW_SV(sv, file, line, func);
303     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
304             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
305
306     return sv;
307 }
308 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
309
310 #else
311 #  define new_SV(p) \
312     STMT_START {                                        \
313         if (PL_sv_root)                                 \
314             uproot_SV(p);                               \
315         else                                            \
316             (p) = S_more_sv(aTHX);                      \
317         SvANY(p) = 0;                                   \
318         SvREFCNT(p) = 1;                                \
319         SvFLAGS(p) = 0;                                 \
320         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
321     } STMT_END
322 #endif
323
324
325 /* del_SV(): return an empty SV head to the free list */
326
327 #ifdef DEBUGGING
328
329 #define del_SV(p) \
330     STMT_START {                                        \
331         if (DEBUG_D_TEST)                               \
332             del_sv(p);                                  \
333         else                                            \
334             plant_SV(p);                                \
335     } STMT_END
336
337 STATIC void
338 S_del_sv(pTHX_ SV *p)
339 {
340     dVAR;
341
342     PERL_ARGS_ASSERT_DEL_SV;
343
344     if (DEBUG_D_TEST) {
345         SV* sva;
346         bool ok = 0;
347         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
348             const SV * const sv = sva + 1;
349             const SV * const svend = &sva[SvREFCNT(sva)];
350             if (p >= sv && p < svend) {
351                 ok = 1;
352                 break;
353             }
354         }
355         if (!ok) {
356             if (ckWARN_d(WARN_INTERNAL))        
357                 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
358                             "Attempt to free non-arena SV: 0x%"UVxf
359                             pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
360             return;
361         }
362     }
363     plant_SV(p);
364 }
365
366 #else /* ! DEBUGGING */
367
368 #define del_SV(p)   plant_SV(p)
369
370 #endif /* DEBUGGING */
371
372
373 /*
374 =head1 SV Manipulation Functions
375
376 =for apidoc sv_add_arena
377
378 Given a chunk of memory, link it to the head of the list of arenas,
379 and split it into a list of free SVs.
380
381 =cut
382 */
383
384 static void
385 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
386 {
387     dVAR;
388     SV *const sva = MUTABLE_SV(ptr);
389     register SV* sv;
390     register SV* svend;
391
392     PERL_ARGS_ASSERT_SV_ADD_ARENA;
393
394     /* The first SV in an arena isn't an SV. */
395     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
396     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
397     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
398
399     PL_sv_arenaroot = sva;
400     PL_sv_root = sva + 1;
401
402     svend = &sva[SvREFCNT(sva) - 1];
403     sv = sva + 1;
404     while (sv < svend) {
405         SvARENA_CHAIN_SET(sv, (sv + 1));
406 #ifdef DEBUGGING
407         SvREFCNT(sv) = 0;
408 #endif
409         /* Must always set typemask because it's always checked in on cleanup
410            when the arenas are walked looking for objects.  */
411         SvFLAGS(sv) = SVTYPEMASK;
412         sv++;
413     }
414     SvARENA_CHAIN_SET(sv, 0);
415 #ifdef DEBUGGING
416     SvREFCNT(sv) = 0;
417 #endif
418     SvFLAGS(sv) = SVTYPEMASK;
419 }
420
421 /* visit(): call the named function for each non-free SV in the arenas
422  * whose flags field matches the flags/mask args. */
423
424 STATIC I32
425 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
426 {
427     dVAR;
428     SV* sva;
429     I32 visited = 0;
430
431     PERL_ARGS_ASSERT_VISIT;
432
433     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
434         register const SV * const svend = &sva[SvREFCNT(sva)];
435         register SV* sv;
436         for (sv = sva + 1; sv < svend; ++sv) {
437             if (SvTYPE(sv) != SVTYPEMASK
438                     && (sv->sv_flags & mask) == flags
439                     && SvREFCNT(sv))
440             {
441                 (FCALL)(aTHX_ sv);
442                 ++visited;
443             }
444         }
445     }
446     return visited;
447 }
448
449 #ifdef DEBUGGING
450
451 /* called by sv_report_used() for each live SV */
452
453 static void
454 do_report_used(pTHX_ SV *const sv)
455 {
456     if (SvTYPE(sv) != SVTYPEMASK) {
457         PerlIO_printf(Perl_debug_log, "****\n");
458         sv_dump(sv);
459     }
460 }
461 #endif
462
463 /*
464 =for apidoc sv_report_used
465
466 Dump the contents of all SVs not yet freed. (Debugging aid).
467
468 =cut
469 */
470
471 void
472 Perl_sv_report_used(pTHX)
473 {
474 #ifdef DEBUGGING
475     visit(do_report_used, 0, 0);
476 #else
477     PERL_UNUSED_CONTEXT;
478 #endif
479 }
480
481 /* called by sv_clean_objs() for each live SV */
482
483 static void
484 do_clean_objs(pTHX_ SV *const ref)
485 {
486     dVAR;
487     assert (SvROK(ref));
488     {
489         SV * const target = SvRV(ref);
490         if (SvOBJECT(target)) {
491             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
492             if (SvWEAKREF(ref)) {
493                 sv_del_backref(target, ref);
494                 SvWEAKREF_off(ref);
495                 SvRV_set(ref, NULL);
496             } else {
497                 SvROK_off(ref);
498                 SvRV_set(ref, NULL);
499                 SvREFCNT_dec(target);
500             }
501         }
502     }
503
504     /* XXX Might want to check arrays, etc. */
505 }
506
507 /* called by sv_clean_objs() for each live SV */
508
509 #ifndef DISABLE_DESTRUCTOR_KLUDGE
510 static void
511 do_clean_named_objs(pTHX_ SV *const sv)
512 {
513     dVAR;
514     assert(SvTYPE(sv) == SVt_PVGV);
515     assert(isGV_with_GP(sv));
516     if (GvGP(sv)) {
517         if ((
518 #ifdef PERL_DONT_CREATE_GVSV
519              GvSV(sv) &&
520 #endif
521              SvOBJECT(GvSV(sv))) ||
522              (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
523              (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
524              /* In certain rare cases GvIOp(sv) can be NULL, which would make SvOBJECT(GvIO(sv)) dereference NULL. */
525              (GvIO(sv) ? (SvFLAGS(GvIOp(sv)) & SVs_OBJECT) : 0) ||
526              (GvCV(sv) && SvOBJECT(GvCV(sv))) )
527         {
528             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
529             SvFLAGS(sv) |= SVf_BREAK;
530             SvREFCNT_dec(sv);
531         }
532     }
533 }
534 #endif
535
536 /*
537 =for apidoc sv_clean_objs
538
539 Attempt to destroy all objects not yet freed
540
541 =cut
542 */
543
544 void
545 Perl_sv_clean_objs(pTHX)
546 {
547     dVAR;
548     PL_in_clean_objs = TRUE;
549     visit(do_clean_objs, SVf_ROK, SVf_ROK);
550 #ifndef DISABLE_DESTRUCTOR_KLUDGE
551     /* some barnacles may yet remain, clinging to typeglobs */
552     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
553 #endif
554     PL_in_clean_objs = FALSE;
555 }
556
557 /* called by sv_clean_all() for each live SV */
558
559 static void
560 do_clean_all(pTHX_ SV *const sv)
561 {
562     dVAR;
563     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
564         /* don't clean pid table and strtab */
565         return;
566     }
567     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
568     SvFLAGS(sv) |= SVf_BREAK;
569     SvREFCNT_dec(sv);
570 }
571
572 /*
573 =for apidoc sv_clean_all
574
575 Decrement the refcnt of each remaining SV, possibly triggering a
576 cleanup. This function may have to be called multiple times to free
577 SVs which are in complex self-referential hierarchies.
578
579 =cut
580 */
581
582 I32
583 Perl_sv_clean_all(pTHX)
584 {
585     dVAR;
586     I32 cleaned;
587     PL_in_clean_all = TRUE;
588     cleaned = visit(do_clean_all, 0,0);
589     PL_in_clean_all = FALSE;
590     return cleaned;
591 }
592
593 /*
594   ARENASETS: a meta-arena implementation which separates arena-info
595   into struct arena_set, which contains an array of struct
596   arena_descs, each holding info for a single arena.  By separating
597   the meta-info from the arena, we recover the 1st slot, formerly
598   borrowed for list management.  The arena_set is about the size of an
599   arena, avoiding the needless malloc overhead of a naive linked-list.
600
601   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
602   memory in the last arena-set (1/2 on average).  In trade, we get
603   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
604   smaller types).  The recovery of the wasted space allows use of
605   small arenas for large, rare body types, by changing array* fields
606   in body_details_by_type[] below.
607 */
608 struct arena_desc {
609     char       *arena;          /* the raw storage, allocated aligned */
610     size_t      size;           /* its size ~4k typ */
611     U32         misc;           /* type, and in future other things. */
612 };
613
614 struct arena_set;
615
616 /* Get the maximum number of elements in set[] such that struct arena_set
617    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
618    therefore likely to be 1 aligned memory page.  */
619
620 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
621                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
622
623 struct arena_set {
624     struct arena_set* next;
625     unsigned int   set_size;    /* ie ARENAS_PER_SET */
626     unsigned int   curr;        /* index of next available arena-desc */
627     struct arena_desc set[ARENAS_PER_SET];
628 };
629
630 /*
631 =for apidoc sv_free_arenas
632
633 Deallocate the memory used by all arenas. Note that all the individual SV
634 heads and bodies within the arenas must already have been freed.
635
636 =cut
637 */
638 void
639 Perl_sv_free_arenas(pTHX)
640 {
641     dVAR;
642     SV* sva;
643     SV* svanext;
644     unsigned int i;
645
646     /* Free arenas here, but be careful about fake ones.  (We assume
647        contiguity of the fake ones with the corresponding real ones.) */
648
649     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
650         svanext = MUTABLE_SV(SvANY(sva));
651         while (svanext && SvFAKE(svanext))
652             svanext = MUTABLE_SV(SvANY(svanext));
653
654         if (!SvFAKE(sva))
655             Safefree(sva);
656     }
657
658     {
659         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
660
661         while (aroot) {
662             struct arena_set *current = aroot;
663             i = aroot->curr;
664             while (i--) {
665                 assert(aroot->set[i].arena);
666                 Safefree(aroot->set[i].arena);
667             }
668             aroot = aroot->next;
669             Safefree(current);
670         }
671     }
672     PL_body_arenas = 0;
673
674     i = PERL_ARENA_ROOTS_SIZE;
675     while (i--)
676         PL_body_roots[i] = 0;
677
678     Safefree(PL_nice_chunk);
679     PL_nice_chunk = NULL;
680     PL_nice_chunk_size = 0;
681     PL_sv_arenaroot = 0;
682     PL_sv_root = 0;
683 }
684
685 /*
686   Here are mid-level routines that manage the allocation of bodies out
687   of the various arenas.  There are 5 kinds of arenas:
688
689   1. SV-head arenas, which are discussed and handled above
690   2. regular body arenas
691   3. arenas for reduced-size bodies
692   4. Hash-Entry arenas
693   5. pte arenas (thread related)
694
695   Arena types 2 & 3 are chained by body-type off an array of
696   arena-root pointers, which is indexed by svtype.  Some of the
697   larger/less used body types are malloced singly, since a large
698   unused block of them is wasteful.  Also, several svtypes dont have
699   bodies; the data fits into the sv-head itself.  The arena-root
700   pointer thus has a few unused root-pointers (which may be hijacked
701   later for arena types 4,5)
702
703   3 differs from 2 as an optimization; some body types have several
704   unused fields in the front of the structure (which are kept in-place
705   for consistency).  These bodies can be allocated in smaller chunks,
706   because the leading fields arent accessed.  Pointers to such bodies
707   are decremented to point at the unused 'ghost' memory, knowing that
708   the pointers are used with offsets to the real memory.
709
710   HE, HEK arenas are managed separately, with separate code, but may
711   be merge-able later..
712
713   PTE arenas are not sv-bodies, but they share these mid-level
714   mechanics, so are considered here.  The new mid-level mechanics rely
715   on the sv_type of the body being allocated, so we just reserve one
716   of the unused body-slots for PTEs, then use it in those (2) PTE
717   contexts below (line ~10k)
718 */
719
720 /* get_arena(size): this creates custom-sized arenas
721    TBD: export properly for hv.c: S_more_he().
722 */
723 void*
724 Perl_get_arena(pTHX_ const size_t arena_size, const U32 misc)
725 {
726     dVAR;
727     struct arena_desc* adesc;
728     struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
729     unsigned int curr;
730
731     /* shouldnt need this
732     if (!arena_size)    arena_size = PERL_ARENA_SIZE;
733     */
734
735     /* may need new arena-set to hold new arena */
736     if (!aroot || aroot->curr >= aroot->set_size) {
737         struct arena_set *newroot;
738         Newxz(newroot, 1, struct arena_set);
739         newroot->set_size = ARENAS_PER_SET;
740         newroot->next = aroot;
741         aroot = newroot;
742         PL_body_arenas = (void *) newroot;
743         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
744     }
745
746     /* ok, now have arena-set with at least 1 empty/available arena-desc */
747     curr = aroot->curr++;
748     adesc = &(aroot->set[curr]);
749     assert(!adesc->arena);
750     
751     Newx(adesc->arena, arena_size, char);
752     adesc->size = arena_size;
753     adesc->misc = misc;
754     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
755                           curr, (void*)adesc->arena, (UV)arena_size));
756
757     return adesc->arena;
758 }
759
760
761 /* return a thing to the free list */
762
763 #define del_body(thing, root)                   \
764     STMT_START {                                \
765         void ** const thing_copy = (void **)thing;\
766         *thing_copy = *root;                    \
767         *root = (void*)thing_copy;              \
768     } STMT_END
769
770 /* 
771
772 =head1 SV-Body Allocation
773
774 Allocation of SV-bodies is similar to SV-heads, differing as follows;
775 the allocation mechanism is used for many body types, so is somewhat
776 more complicated, it uses arena-sets, and has no need for still-live
777 SV detection.
778
779 At the outermost level, (new|del)_X*V macros return bodies of the
780 appropriate type.  These macros call either (new|del)_body_type or
781 (new|del)_body_allocated macro pairs, depending on specifics of the
782 type.  Most body types use the former pair, the latter pair is used to
783 allocate body types with "ghost fields".
784
785 "ghost fields" are fields that are unused in certain types, and
786 consequently dont need to actually exist.  They are declared because
787 they're part of a "base type", which allows use of functions as
788 methods.  The simplest examples are AVs and HVs, 2 aggregate types
789 which don't use the fields which support SCALAR semantics.
790
791 For these types, the arenas are carved up into *_allocated size
792 chunks, we thus avoid wasted memory for those unaccessed members.
793 When bodies are allocated, we adjust the pointer back in memory by the
794 size of the bit not allocated, so it's as if we allocated the full
795 structure.  (But things will all go boom if you write to the part that
796 is "not there", because you'll be overwriting the last members of the
797 preceding structure in memory.)
798
799 We calculate the correction using the STRUCT_OFFSET macro. For
800 example, if xpv_allocated is the same structure as XPV then the two
801 OFFSETs sum to zero, and the pointer is unchanged. If the allocated
802 structure is smaller (no initial NV actually allocated) then the net
803 effect is to subtract the size of the NV from the pointer, to return a
804 new pointer as if an initial NV were actually allocated.
805
806 This is the same trick as was used for NV and IV bodies. Ironically it
807 doesn't need to be used for NV bodies any more, because NV is now at
808 the start of the structure. IV bodies don't need it either, because
809 they are no longer allocated.
810
811 In turn, the new_body_* allocators call S_new_body(), which invokes
812 new_body_inline macro, which takes a lock, and takes a body off the
813 linked list at PL_body_roots[sv_type], calling S_more_bodies() if
814 necessary to refresh an empty list.  Then the lock is released, and
815 the body is returned.
816
817 S_more_bodies calls get_arena(), and carves it up into an array of N
818 bodies, which it strings into a linked list.  It looks up arena-size
819 and body-size from the body_details table described below, thus
820 supporting the multiple body-types.
821
822 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
823 the (new|del)_X*V macros are mapped directly to malloc/free.
824
825 */
826
827 /* 
828
829 For each sv-type, struct body_details bodies_by_type[] carries
830 parameters which control these aspects of SV handling:
831
832 Arena_size determines whether arenas are used for this body type, and if
833 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
834 zero, forcing individual mallocs and frees.
835
836 Body_size determines how big a body is, and therefore how many fit into
837 each arena.  Offset carries the body-pointer adjustment needed for
838 *_allocated body types, and is used in *_allocated macros.
839
840 But its main purpose is to parameterize info needed in
841 Perl_sv_upgrade().  The info here dramatically simplifies the function
842 vs the implementation in 5.8.7, making it table-driven.  All fields
843 are used for this, except for arena_size.
844
845 For the sv-types that have no bodies, arenas are not used, so those
846 PL_body_roots[sv_type] are unused, and can be overloaded.  In
847 something of a special case, SVt_NULL is borrowed for HE arenas;
848 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
849 bodies_by_type[SVt_NULL] slot is not used, as the table is not
850 available in hv.c.
851
852 PTEs also use arenas, but are never seen in Perl_sv_upgrade. Nonetheless,
853 they get their own slot in bodies_by_type[PTE_SVSLOT =SVt_IV], so they can
854 just use the same allocation semantics.  At first, PTEs were also
855 overloaded to a non-body sv-type, but this yielded hard-to-find malloc
856 bugs, so was simplified by claiming a new slot.  This choice has no
857 consequence at this time.
858
859 */
860
861 struct body_details {
862     U8 body_size;       /* Size to allocate  */
863     U8 copy;            /* Size of structure to copy (may be shorter)  */
864     U8 offset;
865     unsigned int type : 4;          /* We have space for a sanity check.  */
866     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
867     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
868     unsigned int arena : 1;         /* Allocated from an arena */
869     size_t arena_size;              /* Size of arena to allocate */
870 };
871
872 #define HADNV FALSE
873 #define NONV TRUE
874
875
876 #ifdef PURIFY
877 /* With -DPURFIY we allocate everything directly, and don't use arenas.
878    This seems a rather elegant way to simplify some of the code below.  */
879 #define HASARENA FALSE
880 #else
881 #define HASARENA TRUE
882 #endif
883 #define NOARENA FALSE
884
885 /* Size the arenas to exactly fit a given number of bodies.  A count
886    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
887    simplifying the default.  If count > 0, the arena is sized to fit
888    only that many bodies, allowing arenas to be used for large, rare
889    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
890    limited by PERL_ARENA_SIZE, so we can safely oversize the
891    declarations.
892  */
893 #define FIT_ARENA0(body_size)                           \
894     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
895 #define FIT_ARENAn(count,body_size)                     \
896     ( count * body_size <= PERL_ARENA_SIZE)             \
897     ? count * body_size                                 \
898     : FIT_ARENA0 (body_size)
899 #define FIT_ARENA(count,body_size)                      \
900     count                                               \
901     ? FIT_ARENAn (count, body_size)                     \
902     : FIT_ARENA0 (body_size)
903
904 /* A macro to work out the offset needed to subtract from a pointer to (say)
905
906 typedef struct {
907     STRLEN      xpv_cur;
908     STRLEN      xpv_len;
909 } xpv_allocated;
910
911 to make its members accessible via a pointer to (say)
912
913 struct xpv {
914     NV          xnv_nv;
915     STRLEN      xpv_cur;
916     STRLEN      xpv_len;
917 };
918
919 */
920
921 #define relative_STRUCT_OFFSET(longer, shorter, member) \
922     (STRUCT_OFFSET(shorter, member) - STRUCT_OFFSET(longer, member))
923
924 /* Calculate the length to copy. Specifically work out the length less any
925    final padding the compiler needed to add.  See the comment in sv_upgrade
926    for why copying the padding proved to be a bug.  */
927
928 #define copy_length(type, last_member) \
929         STRUCT_OFFSET(type, last_member) \
930         + sizeof (((type*)SvANY((const SV *)0))->last_member)
931
932 static const struct body_details bodies_by_type[] = {
933     { sizeof(HE), 0, 0, SVt_NULL,
934       FALSE, NONV, NOARENA, FIT_ARENA(0, sizeof(HE)) },
935
936     /* The bind placeholder pretends to be an RV for now.
937        Also it's marked as "can't upgrade" to stop anyone using it before it's
938        implemented.  */
939     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
940
941     /* IVs are in the head, so the allocation size is 0.
942        However, the slot is overloaded for PTEs.  */
943     { sizeof(struct ptr_tbl_ent), /* This is used for PTEs.  */
944       sizeof(IV), /* This is used to copy out the IV body.  */
945       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
946       NOARENA /* IVS don't need an arena  */,
947       /* But PTEs need to know the size of their arena  */
948       FIT_ARENA(0, sizeof(struct ptr_tbl_ent))
949     },
950
951     /* 8 bytes on most ILP32 with IEEE doubles */
952     { sizeof(NV), sizeof(NV), 0, SVt_NV, FALSE, HADNV, HASARENA,
953       FIT_ARENA(0, sizeof(NV)) },
954
955     /* 8 bytes on most ILP32 with IEEE doubles */
956     { sizeof(xpv_allocated),
957       copy_length(XPV, xpv_len)
958       - relative_STRUCT_OFFSET(xpv_allocated, XPV, xpv_cur),
959       + relative_STRUCT_OFFSET(xpv_allocated, XPV, xpv_cur),
960       SVt_PV, FALSE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpv_allocated)) },
961
962     /* 12 */
963     { sizeof(xpviv_allocated),
964       copy_length(XPVIV, xiv_u)
965       - relative_STRUCT_OFFSET(xpviv_allocated, XPVIV, xpv_cur),
966       + relative_STRUCT_OFFSET(xpviv_allocated, XPVIV, xpv_cur),
967       SVt_PVIV, FALSE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpviv_allocated)) },
968
969     /* 20 */
970     { sizeof(XPVNV), copy_length(XPVNV, xiv_u), 0, SVt_PVNV, FALSE, HADNV,
971       HASARENA, FIT_ARENA(0, sizeof(XPVNV)) },
972
973     /* 28 */
974     { sizeof(XPVMG), copy_length(XPVMG, xmg_stash), 0, SVt_PVMG, FALSE, HADNV,
975       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
976
977     /* something big */
978     { sizeof(struct regexp_allocated), sizeof(struct regexp_allocated),
979       + relative_STRUCT_OFFSET(struct regexp_allocated, regexp, xpv_cur),
980       SVt_REGEXP, FALSE, NONV, HASARENA,
981       FIT_ARENA(0, sizeof(struct regexp_allocated))
982     },
983
984     /* 48 */
985     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
986       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
987     
988     /* 64 */
989     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
990       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
991
992     { sizeof(xpvav_allocated),
993       copy_length(XPVAV, xmg_stash)
994       - relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill),
995       + relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill),
996       SVt_PVAV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvav_allocated)) },
997
998     { sizeof(xpvhv_allocated),
999       copy_length(XPVHV, xmg_stash)
1000       - relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill),
1001       + relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill),
1002       SVt_PVHV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvhv_allocated)) },
1003
1004     /* 56 */
1005     { sizeof(xpvcv_allocated), sizeof(xpvcv_allocated),
1006       + relative_STRUCT_OFFSET(xpvcv_allocated, XPVCV, xpv_cur),
1007       SVt_PVCV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvcv_allocated)) },
1008
1009     { sizeof(xpvfm_allocated), sizeof(xpvfm_allocated),
1010       + relative_STRUCT_OFFSET(xpvfm_allocated, XPVFM, xpv_cur),
1011       SVt_PVFM, TRUE, NONV, NOARENA, FIT_ARENA(20, sizeof(xpvfm_allocated)) },
1012
1013     /* XPVIO is 84 bytes, fits 48x */
1014     { sizeof(xpvio_allocated), sizeof(xpvio_allocated),
1015       + relative_STRUCT_OFFSET(xpvio_allocated, XPVIO, xpv_cur),
1016       SVt_PVIO, TRUE, NONV, HASARENA, FIT_ARENA(24, sizeof(xpvio_allocated)) },
1017 };
1018
1019 #define new_body_type(sv_type)          \
1020     (void *)((char *)S_new_body(aTHX_ sv_type))
1021
1022 #define del_body_type(p, sv_type)       \
1023     del_body(p, &PL_body_roots[sv_type])
1024
1025
1026 #define new_body_allocated(sv_type)             \
1027     (void *)((char *)S_new_body(aTHX_ sv_type)  \
1028              - bodies_by_type[sv_type].offset)
1029
1030 #define del_body_allocated(p, sv_type)          \
1031     del_body(p + bodies_by_type[sv_type].offset, &PL_body_roots[sv_type])
1032
1033
1034 #define my_safemalloc(s)        (void*)safemalloc(s)
1035 #define my_safecalloc(s)        (void*)safecalloc(s, 1)
1036 #define my_safefree(p)  safefree((char*)p)
1037
1038 #ifdef PURIFY
1039
1040 #define new_XNV()       my_safemalloc(sizeof(XPVNV))
1041 #define del_XNV(p)      my_safefree(p)
1042
1043 #define new_XPVNV()     my_safemalloc(sizeof(XPVNV))
1044 #define del_XPVNV(p)    my_safefree(p)
1045
1046 #define new_XPVAV()     my_safemalloc(sizeof(XPVAV))
1047 #define del_XPVAV(p)    my_safefree(p)
1048
1049 #define new_XPVHV()     my_safemalloc(sizeof(XPVHV))
1050 #define del_XPVHV(p)    my_safefree(p)
1051
1052 #define new_XPVMG()     my_safemalloc(sizeof(XPVMG))
1053 #define del_XPVMG(p)    my_safefree(p)
1054
1055 #define new_XPVGV()     my_safemalloc(sizeof(XPVGV))
1056 #define del_XPVGV(p)    my_safefree(p)
1057
1058 #else /* !PURIFY */
1059
1060 #define new_XNV()       new_body_type(SVt_NV)
1061 #define del_XNV(p)      del_body_type(p, SVt_NV)
1062
1063 #define new_XPVNV()     new_body_type(SVt_PVNV)
1064 #define del_XPVNV(p)    del_body_type(p, SVt_PVNV)
1065
1066 #define new_XPVAV()     new_body_allocated(SVt_PVAV)
1067 #define del_XPVAV(p)    del_body_allocated(p, SVt_PVAV)
1068
1069 #define new_XPVHV()     new_body_allocated(SVt_PVHV)
1070 #define del_XPVHV(p)    del_body_allocated(p, SVt_PVHV)
1071
1072 #define new_XPVMG()     new_body_type(SVt_PVMG)
1073 #define del_XPVMG(p)    del_body_type(p, SVt_PVMG)
1074
1075 #define new_XPVGV()     new_body_type(SVt_PVGV)
1076 #define del_XPVGV(p)    del_body_type(p, SVt_PVGV)
1077
1078 #endif /* PURIFY */
1079
1080 /* no arena for you! */
1081
1082 #define new_NOARENA(details) \
1083         my_safemalloc((details)->body_size + (details)->offset)
1084 #define new_NOARENAZ(details) \
1085         my_safecalloc((details)->body_size + (details)->offset)
1086
1087 STATIC void *
1088 S_more_bodies (pTHX_ const svtype sv_type)
1089 {
1090     dVAR;
1091     void ** const root = &PL_body_roots[sv_type];
1092     const struct body_details * const bdp = &bodies_by_type[sv_type];
1093     const size_t body_size = bdp->body_size;
1094     char *start;
1095     const char *end;
1096     const size_t arena_size = Perl_malloc_good_size(bdp->arena_size);
1097 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1098     static bool done_sanity_check;
1099
1100     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1101      * variables like done_sanity_check. */
1102     if (!done_sanity_check) {
1103         unsigned int i = SVt_LAST;
1104
1105         done_sanity_check = TRUE;
1106
1107         while (i--)
1108             assert (bodies_by_type[i].type == i);
1109     }
1110 #endif
1111
1112     assert(bdp->arena_size);
1113
1114     start = (char*) Perl_get_arena(aTHX_ arena_size, sv_type);
1115
1116     end = start + arena_size - 2 * body_size;
1117
1118     /* computed count doesnt reflect the 1st slot reservation */
1119 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1120     DEBUG_m(PerlIO_printf(Perl_debug_log,
1121                           "arena %p end %p arena-size %d (from %d) type %d "
1122                           "size %d ct %d\n",
1123                           (void*)start, (void*)end, (int)arena_size,
1124                           (int)bdp->arena_size, sv_type, (int)body_size,
1125                           (int)arena_size / (int)body_size));
1126 #else
1127     DEBUG_m(PerlIO_printf(Perl_debug_log,
1128                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1129                           (void*)start, (void*)end,
1130                           (int)bdp->arena_size, sv_type, (int)body_size,
1131                           (int)bdp->arena_size / (int)body_size));
1132 #endif
1133     *root = (void *)start;
1134
1135     while (start <= end) {
1136         char * const next = start + body_size;
1137         *(void**) start = (void *)next;
1138         start = next;
1139     }
1140     *(void **)start = 0;
1141
1142     return *root;
1143 }
1144
1145 /* grab a new thing from the free list, allocating more if necessary.
1146    The inline version is used for speed in hot routines, and the
1147    function using it serves the rest (unless PURIFY).
1148 */
1149 #define new_body_inline(xpv, sv_type) \
1150     STMT_START { \
1151         void ** const r3wt = &PL_body_roots[sv_type]; \
1152         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1153           ? *((void **)(r3wt)) : more_bodies(sv_type)); \
1154         *(r3wt) = *(void**)(xpv); \
1155     } STMT_END
1156
1157 #ifndef PURIFY
1158
1159 STATIC void *
1160 S_new_body(pTHX_ const svtype sv_type)
1161 {
1162     dVAR;
1163     void *xpv;
1164     new_body_inline(xpv, sv_type);
1165     return xpv;
1166 }
1167
1168 #endif
1169
1170 static const struct body_details fake_rv =
1171     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1172
1173 /*
1174 =for apidoc sv_upgrade
1175
1176 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1177 SV, then copies across as much information as possible from the old body.
1178 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1179
1180 =cut
1181 */
1182
1183 void
1184 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1185 {
1186     dVAR;
1187     void*       old_body;
1188     void*       new_body;
1189     const svtype old_type = SvTYPE(sv);
1190     const struct body_details *new_type_details;
1191     const struct body_details *old_type_details
1192         = bodies_by_type + old_type;
1193     SV *referant = NULL;
1194
1195     PERL_ARGS_ASSERT_SV_UPGRADE;
1196
1197     if (new_type != SVt_PV && SvIsCOW(sv)) {
1198         sv_force_normal_flags(sv, 0);
1199     }
1200
1201     if (old_type == new_type)
1202         return;
1203
1204     old_body = SvANY(sv);
1205
1206     /* Copying structures onto other structures that have been neatly zeroed
1207        has a subtle gotcha. Consider XPVMG
1208
1209        +------+------+------+------+------+-------+-------+
1210        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1211        +------+------+------+------+------+-------+-------+
1212        0      4      8     12     16     20      24      28
1213
1214        where NVs are aligned to 8 bytes, so that sizeof that structure is
1215        actually 32 bytes long, with 4 bytes of padding at the end:
1216
1217        +------+------+------+------+------+-------+-------+------+
1218        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1219        +------+------+------+------+------+-------+-------+------+
1220        0      4      8     12     16     20      24      28     32
1221
1222        so what happens if you allocate memory for this structure:
1223
1224        +------+------+------+------+------+-------+-------+------+------+...
1225        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1226        +------+------+------+------+------+-------+-------+------+------+...
1227        0      4      8     12     16     20      24      28     32     36
1228
1229        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1230        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1231        started out as zero once, but it's quite possible that it isn't. So now,
1232        rather than a nicely zeroed GP, you have it pointing somewhere random.
1233        Bugs ensue.
1234
1235        (In fact, GP ends up pointing at a previous GP structure, because the
1236        principle cause of the padding in XPVMG getting garbage is a copy of
1237        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1238        this happens to be moot because XPVGV has been re-ordered, with GP
1239        no longer after STASH)
1240
1241        So we are careful and work out the size of used parts of all the
1242        structures.  */
1243
1244     switch (old_type) {
1245     case SVt_NULL:
1246         break;
1247     case SVt_IV:
1248         if (SvROK(sv)) {
1249             referant = SvRV(sv);
1250             old_type_details = &fake_rv;
1251             if (new_type == SVt_NV)
1252                 new_type = SVt_PVNV;
1253         } else {
1254             if (new_type < SVt_PVIV) {
1255                 new_type = (new_type == SVt_NV)
1256                     ? SVt_PVNV : SVt_PVIV;
1257             }
1258         }
1259         break;
1260     case SVt_NV:
1261         if (new_type < SVt_PVNV) {
1262             new_type = SVt_PVNV;
1263         }
1264         break;
1265     case SVt_PV:
1266         assert(new_type > SVt_PV);
1267         assert(SVt_IV < SVt_PV);
1268         assert(SVt_NV < SVt_PV);
1269         break;
1270     case SVt_PVIV:
1271         break;
1272     case SVt_PVNV:
1273         break;
1274     case SVt_PVMG:
1275         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1276            there's no way that it can be safely upgraded, because perl.c
1277            expects to Safefree(SvANY(PL_mess_sv))  */
1278         assert(sv != PL_mess_sv);
1279         /* This flag bit is used to mean other things in other scalar types.
1280            Given that it only has meaning inside the pad, it shouldn't be set
1281            on anything that can get upgraded.  */
1282         assert(!SvPAD_TYPED(sv));
1283         break;
1284     default:
1285         if (old_type_details->cant_upgrade)
1286             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1287                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1288     }
1289
1290     if (old_type > new_type)
1291         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1292                 (int)old_type, (int)new_type);
1293
1294     new_type_details = bodies_by_type + new_type;
1295
1296     SvFLAGS(sv) &= ~SVTYPEMASK;
1297     SvFLAGS(sv) |= new_type;
1298
1299     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1300        the return statements above will have triggered.  */
1301     assert (new_type != SVt_NULL);
1302     switch (new_type) {
1303     case SVt_IV:
1304         assert(old_type == SVt_NULL);
1305         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1306         SvIV_set(sv, 0);
1307         return;
1308     case SVt_NV:
1309         assert(old_type == SVt_NULL);
1310         SvANY(sv) = new_XNV();
1311         SvNV_set(sv, 0);
1312         return;
1313     case SVt_PVHV:
1314     case SVt_PVAV:
1315         assert(new_type_details->body_size);
1316
1317 #ifndef PURIFY  
1318         assert(new_type_details->arena);
1319         assert(new_type_details->arena_size);
1320         /* This points to the start of the allocated area.  */
1321         new_body_inline(new_body, new_type);
1322         Zero(new_body, new_type_details->body_size, char);
1323         new_body = ((char *)new_body) - new_type_details->offset;
1324 #else
1325         /* We always allocated the full length item with PURIFY. To do this
1326            we fake things so that arena is false for all 16 types..  */
1327         new_body = new_NOARENAZ(new_type_details);
1328 #endif
1329         SvANY(sv) = new_body;
1330         if (new_type == SVt_PVAV) {
1331             AvMAX(sv)   = -1;
1332             AvFILLp(sv) = -1;
1333             AvREAL_only(sv);
1334             if (old_type_details->body_size) {
1335                 AvALLOC(sv) = 0;
1336             } else {
1337                 /* It will have been zeroed when the new body was allocated.
1338                    Lets not write to it, in case it confuses a write-back
1339                    cache.  */
1340             }
1341         } else {
1342             assert(!SvOK(sv));
1343             SvOK_off(sv);
1344 #ifndef NODEFAULT_SHAREKEYS
1345             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1346 #endif
1347             HvMAX(sv) = 7; /* (start with 8 buckets) */
1348             if (old_type_details->body_size) {
1349                 HvFILL(sv) = 0;
1350             } else {
1351                 /* It will have been zeroed when the new body was allocated.
1352                    Lets not write to it, in case it confuses a write-back
1353                    cache.  */
1354             }
1355         }
1356
1357         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1358            The target created by newSVrv also is, and it can have magic.
1359            However, it never has SvPVX set.
1360         */
1361         if (old_type == SVt_IV) {
1362             assert(!SvROK(sv));
1363         } else if (old_type >= SVt_PV) {
1364             assert(SvPVX_const(sv) == 0);
1365         }
1366
1367         if (old_type >= SVt_PVMG) {
1368             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1369             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1370         } else {
1371             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1372         }
1373         break;
1374
1375
1376     case SVt_PVIV:
1377         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1378            no route from NV to PVIV, NOK can never be true  */
1379         assert(!SvNOKp(sv));
1380         assert(!SvNOK(sv));
1381     case SVt_PVIO:
1382     case SVt_PVFM:
1383     case SVt_PVGV:
1384     case SVt_PVCV:
1385     case SVt_PVLV:
1386     case SVt_REGEXP:
1387     case SVt_PVMG:
1388     case SVt_PVNV:
1389     case SVt_PV:
1390
1391         assert(new_type_details->body_size);
1392         /* We always allocated the full length item with PURIFY. To do this
1393            we fake things so that arena is false for all 16 types..  */
1394         if(new_type_details->arena) {
1395             /* This points to the start of the allocated area.  */
1396             new_body_inline(new_body, new_type);
1397             Zero(new_body, new_type_details->body_size, char);
1398             new_body = ((char *)new_body) - new_type_details->offset;
1399         } else {
1400             new_body = new_NOARENAZ(new_type_details);
1401         }
1402         SvANY(sv) = new_body;
1403
1404         if (old_type_details->copy) {
1405             /* There is now the potential for an upgrade from something without
1406                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1407             int offset = old_type_details->offset;
1408             int length = old_type_details->copy;
1409
1410             if (new_type_details->offset > old_type_details->offset) {
1411                 const int difference
1412                     = new_type_details->offset - old_type_details->offset;
1413                 offset += difference;
1414                 length -= difference;
1415             }
1416             assert (length >= 0);
1417                 
1418             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1419                  char);
1420         }
1421
1422 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1423         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1424          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1425          * NV slot, but the new one does, then we need to initialise the
1426          * freshly created NV slot with whatever the correct bit pattern is
1427          * for 0.0  */
1428         if (old_type_details->zero_nv && !new_type_details->zero_nv
1429             && !isGV_with_GP(sv))
1430             SvNV_set(sv, 0);
1431 #endif
1432
1433         if (new_type == SVt_PVIO)
1434             IoPAGE_LEN(sv) = 60;
1435         if (old_type < SVt_PV) {
1436             /* referant will be NULL unless the old type was SVt_IV emulating
1437                SVt_RV */
1438             sv->sv_u.svu_rv = referant;
1439         }
1440         break;
1441     default:
1442         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1443                    (unsigned long)new_type);
1444     }
1445
1446     if (old_type_details->arena) {
1447         /* If there was an old body, then we need to free it.
1448            Note that there is an assumption that all bodies of types that
1449            can be upgraded came from arenas. Only the more complex non-
1450            upgradable types are allowed to be directly malloc()ed.  */
1451 #ifdef PURIFY
1452         my_safefree(old_body);
1453 #else
1454         del_body((void*)((char*)old_body + old_type_details->offset),
1455                  &PL_body_roots[old_type]);
1456 #endif
1457     }
1458 }
1459
1460 /*
1461 =for apidoc sv_backoff
1462
1463 Remove any string offset. You should normally use the C<SvOOK_off> macro
1464 wrapper instead.
1465
1466 =cut
1467 */
1468
1469 int
1470 Perl_sv_backoff(pTHX_ register SV *const sv)
1471 {
1472     STRLEN delta;
1473     const char * const s = SvPVX_const(sv);
1474
1475     PERL_ARGS_ASSERT_SV_BACKOFF;
1476     PERL_UNUSED_CONTEXT;
1477
1478     assert(SvOOK(sv));
1479     assert(SvTYPE(sv) != SVt_PVHV);
1480     assert(SvTYPE(sv) != SVt_PVAV);
1481
1482     SvOOK_offset(sv, delta);
1483     
1484     SvLEN_set(sv, SvLEN(sv) + delta);
1485     SvPV_set(sv, SvPVX(sv) - delta);
1486     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1487     SvFLAGS(sv) &= ~SVf_OOK;
1488     return 0;
1489 }
1490
1491 /*
1492 =for apidoc sv_grow
1493
1494 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1495 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1496 Use the C<SvGROW> wrapper instead.
1497
1498 =cut
1499 */
1500
1501 char *
1502 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1503 {
1504     register char *s;
1505
1506     PERL_ARGS_ASSERT_SV_GROW;
1507
1508     if (PL_madskills && newlen >= 0x100000) {
1509         PerlIO_printf(Perl_debug_log,
1510                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1511     }
1512 #ifdef HAS_64K_LIMIT
1513     if (newlen >= 0x10000) {
1514         PerlIO_printf(Perl_debug_log,
1515                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1516         my_exit(1);
1517     }
1518 #endif /* HAS_64K_LIMIT */
1519     if (SvROK(sv))
1520         sv_unref(sv);
1521     if (SvTYPE(sv) < SVt_PV) {
1522         sv_upgrade(sv, SVt_PV);
1523         s = SvPVX_mutable(sv);
1524     }
1525     else if (SvOOK(sv)) {       /* pv is offset? */
1526         sv_backoff(sv);
1527         s = SvPVX_mutable(sv);
1528         if (newlen > SvLEN(sv))
1529             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1530 #ifdef HAS_64K_LIMIT
1531         if (newlen >= 0x10000)
1532             newlen = 0xFFFF;
1533 #endif
1534     }
1535     else
1536         s = SvPVX_mutable(sv);
1537
1538     if (newlen > SvLEN(sv)) {           /* need more room? */
1539 #ifndef Perl_safesysmalloc_size
1540         newlen = PERL_STRLEN_ROUNDUP(newlen);
1541 #endif
1542         if (SvLEN(sv) && s) {
1543             s = (char*)saferealloc(s, newlen);
1544         }
1545         else {
1546             s = (char*)safemalloc(newlen);
1547             if (SvPVX_const(sv) && SvCUR(sv)) {
1548                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1549             }
1550         }
1551         SvPV_set(sv, s);
1552 #ifdef Perl_safesysmalloc_size
1553         /* Do this here, do it once, do it right, and then we will never get
1554            called back into sv_grow() unless there really is some growing
1555            needed.  */
1556         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1557 #else
1558         SvLEN_set(sv, newlen);
1559 #endif
1560     }
1561     return s;
1562 }
1563
1564 /*
1565 =for apidoc sv_setiv
1566
1567 Copies an integer into the given SV, upgrading first if necessary.
1568 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1569
1570 =cut
1571 */
1572
1573 void
1574 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1575 {
1576     dVAR;
1577
1578     PERL_ARGS_ASSERT_SV_SETIV;
1579
1580     SV_CHECK_THINKFIRST_COW_DROP(sv);
1581     switch (SvTYPE(sv)) {
1582     case SVt_NULL:
1583     case SVt_NV:
1584         sv_upgrade(sv, SVt_IV);
1585         break;
1586     case SVt_PV:
1587         sv_upgrade(sv, SVt_PVIV);
1588         break;
1589
1590     case SVt_PVGV:
1591         if (!isGV_with_GP(sv))
1592             break;
1593     case SVt_PVAV:
1594     case SVt_PVHV:
1595     case SVt_PVCV:
1596     case SVt_PVFM:
1597     case SVt_PVIO:
1598         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1599                    OP_DESC(PL_op));
1600     default: NOOP;
1601     }
1602     (void)SvIOK_only(sv);                       /* validate number */
1603     SvIV_set(sv, i);
1604     SvTAINT(sv);
1605 }
1606
1607 /*
1608 =for apidoc sv_setiv_mg
1609
1610 Like C<sv_setiv>, but also handles 'set' magic.
1611
1612 =cut
1613 */
1614
1615 void
1616 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1617 {
1618     PERL_ARGS_ASSERT_SV_SETIV_MG;
1619
1620     sv_setiv(sv,i);
1621     SvSETMAGIC(sv);
1622 }
1623
1624 /*
1625 =for apidoc sv_setuv
1626
1627 Copies an unsigned integer into the given SV, upgrading first if necessary.
1628 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1629
1630 =cut
1631 */
1632
1633 void
1634 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1635 {
1636     PERL_ARGS_ASSERT_SV_SETUV;
1637
1638     /* With these two if statements:
1639        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1640
1641        without
1642        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1643
1644        If you wish to remove them, please benchmark to see what the effect is
1645     */
1646     if (u <= (UV)IV_MAX) {
1647        sv_setiv(sv, (IV)u);
1648        return;
1649     }
1650     sv_setiv(sv, 0);
1651     SvIsUV_on(sv);
1652     SvUV_set(sv, u);
1653 }
1654
1655 /*
1656 =for apidoc sv_setuv_mg
1657
1658 Like C<sv_setuv>, but also handles 'set' magic.
1659
1660 =cut
1661 */
1662
1663 void
1664 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1665 {
1666     PERL_ARGS_ASSERT_SV_SETUV_MG;
1667
1668     sv_setuv(sv,u);
1669     SvSETMAGIC(sv);
1670 }
1671
1672 /*
1673 =for apidoc sv_setnv
1674
1675 Copies a double into the given SV, upgrading first if necessary.
1676 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1677
1678 =cut
1679 */
1680
1681 void
1682 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1683 {
1684     dVAR;
1685
1686     PERL_ARGS_ASSERT_SV_SETNV;
1687
1688     SV_CHECK_THINKFIRST_COW_DROP(sv);
1689     switch (SvTYPE(sv)) {
1690     case SVt_NULL:
1691     case SVt_IV:
1692         sv_upgrade(sv, SVt_NV);
1693         break;
1694     case SVt_PV:
1695     case SVt_PVIV:
1696         sv_upgrade(sv, SVt_PVNV);
1697         break;
1698
1699     case SVt_PVGV:
1700         if (!isGV_with_GP(sv))
1701             break;
1702     case SVt_PVAV:
1703     case SVt_PVHV:
1704     case SVt_PVCV:
1705     case SVt_PVFM:
1706     case SVt_PVIO:
1707         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1708                    OP_NAME(PL_op));
1709     default: NOOP;
1710     }
1711     SvNV_set(sv, num);
1712     (void)SvNOK_only(sv);                       /* validate number */
1713     SvTAINT(sv);
1714 }
1715
1716 /*
1717 =for apidoc sv_setnv_mg
1718
1719 Like C<sv_setnv>, but also handles 'set' magic.
1720
1721 =cut
1722 */
1723
1724 void
1725 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1726 {
1727     PERL_ARGS_ASSERT_SV_SETNV_MG;
1728
1729     sv_setnv(sv,num);
1730     SvSETMAGIC(sv);
1731 }
1732
1733 /* Print an "isn't numeric" warning, using a cleaned-up,
1734  * printable version of the offending string
1735  */
1736
1737 STATIC void
1738 S_not_a_number(pTHX_ SV *const sv)
1739 {
1740      dVAR;
1741      SV *dsv;
1742      char tmpbuf[64];
1743      const char *pv;
1744
1745      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1746
1747      if (DO_UTF8(sv)) {
1748           dsv = newSVpvs_flags("", SVs_TEMP);
1749           pv = sv_uni_display(dsv, sv, 10, 0);
1750      } else {
1751           char *d = tmpbuf;
1752           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1753           /* each *s can expand to 4 chars + "...\0",
1754              i.e. need room for 8 chars */
1755         
1756           const char *s = SvPVX_const(sv);
1757           const char * const end = s + SvCUR(sv);
1758           for ( ; s < end && d < limit; s++ ) {
1759                int ch = *s & 0xFF;
1760                if (ch & 128 && !isPRINT_LC(ch)) {
1761                     *d++ = 'M';
1762                     *d++ = '-';
1763                     ch &= 127;
1764                }
1765                if (ch == '\n') {
1766                     *d++ = '\\';
1767                     *d++ = 'n';
1768                }
1769                else if (ch == '\r') {
1770                     *d++ = '\\';
1771                     *d++ = 'r';
1772                }
1773                else if (ch == '\f') {
1774                     *d++ = '\\';
1775                     *d++ = 'f';
1776                }
1777                else if (ch == '\\') {
1778                     *d++ = '\\';
1779                     *d++ = '\\';
1780                }
1781                else if (ch == '\0') {
1782                     *d++ = '\\';
1783                     *d++ = '0';
1784                }
1785                else if (isPRINT_LC(ch))
1786                     *d++ = ch;
1787                else {
1788                     *d++ = '^';
1789                     *d++ = toCTRL(ch);
1790                }
1791           }
1792           if (s < end) {
1793                *d++ = '.';
1794                *d++ = '.';
1795                *d++ = '.';
1796           }
1797           *d = '\0';
1798           pv = tmpbuf;
1799     }
1800
1801     if (PL_op)
1802         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1803                     "Argument \"%s\" isn't numeric in %s", pv,
1804                     OP_DESC(PL_op));
1805     else
1806         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1807                     "Argument \"%s\" isn't numeric", pv);
1808 }
1809
1810 /*
1811 =for apidoc looks_like_number
1812
1813 Test if the content of an SV looks like a number (or is a number).
1814 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1815 non-numeric warning), even if your atof() doesn't grok them.
1816
1817 =cut
1818 */
1819
1820 I32
1821 Perl_looks_like_number(pTHX_ SV *const sv)
1822 {
1823     register const char *sbegin;
1824     STRLEN len;
1825
1826     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1827
1828     if (SvPOK(sv)) {
1829         sbegin = SvPVX_const(sv);
1830         len = SvCUR(sv);
1831     }
1832     else if (SvPOKp(sv))
1833         sbegin = SvPV_const(sv, len);
1834     else
1835         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1836     return grok_number(sbegin, len, NULL);
1837 }
1838
1839 STATIC bool
1840 S_glob_2number(pTHX_ GV * const gv)
1841 {
1842     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1843     SV *const buffer = sv_newmortal();
1844
1845     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1846
1847     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1848        is on.  */
1849     SvFAKE_off(gv);
1850     gv_efullname3(buffer, gv, "*");
1851     SvFLAGS(gv) |= wasfake;
1852
1853     /* We know that all GVs stringify to something that is not-a-number,
1854         so no need to test that.  */
1855     if (ckWARN(WARN_NUMERIC))
1856         not_a_number(buffer);
1857     /* We just want something true to return, so that S_sv_2iuv_common
1858         can tail call us and return true.  */
1859     return TRUE;
1860 }
1861
1862 STATIC char *
1863 S_glob_2pv(pTHX_ GV * const gv, STRLEN * const len)
1864 {
1865     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1866     SV *const buffer = sv_newmortal();
1867
1868     PERL_ARGS_ASSERT_GLOB_2PV;
1869
1870     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1871        is on.  */
1872     SvFAKE_off(gv);
1873     gv_efullname3(buffer, gv, "*");
1874     SvFLAGS(gv) |= wasfake;
1875
1876     assert(SvPOK(buffer));
1877     if (len) {
1878         *len = SvCUR(buffer);
1879     }
1880     return SvPVX(buffer);
1881 }
1882
1883 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1884    until proven guilty, assume that things are not that bad... */
1885
1886 /*
1887    NV_PRESERVES_UV:
1888
1889    As 64 bit platforms often have an NV that doesn't preserve all bits of
1890    an IV (an assumption perl has been based on to date) it becomes necessary
1891    to remove the assumption that the NV always carries enough precision to
1892    recreate the IV whenever needed, and that the NV is the canonical form.
1893    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1894    precision as a side effect of conversion (which would lead to insanity
1895    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1896    1) to distinguish between IV/UV/NV slots that have cached a valid
1897       conversion where precision was lost and IV/UV/NV slots that have a
1898       valid conversion which has lost no precision
1899    2) to ensure that if a numeric conversion to one form is requested that
1900       would lose precision, the precise conversion (or differently
1901       imprecise conversion) is also performed and cached, to prevent
1902       requests for different numeric formats on the same SV causing
1903       lossy conversion chains. (lossless conversion chains are perfectly
1904       acceptable (still))
1905
1906
1907    flags are used:
1908    SvIOKp is true if the IV slot contains a valid value
1909    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1910    SvNOKp is true if the NV slot contains a valid value
1911    SvNOK  is true only if the NV value is accurate
1912
1913    so
1914    while converting from PV to NV, check to see if converting that NV to an
1915    IV(or UV) would lose accuracy over a direct conversion from PV to
1916    IV(or UV). If it would, cache both conversions, return NV, but mark
1917    SV as IOK NOKp (ie not NOK).
1918
1919    While converting from PV to IV, check to see if converting that IV to an
1920    NV would lose accuracy over a direct conversion from PV to NV. If it
1921    would, cache both conversions, flag similarly.
1922
1923    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1924    correctly because if IV & NV were set NV *always* overruled.
1925    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1926    changes - now IV and NV together means that the two are interchangeable:
1927    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1928
1929    The benefit of this is that operations such as pp_add know that if
1930    SvIOK is true for both left and right operands, then integer addition
1931    can be used instead of floating point (for cases where the result won't
1932    overflow). Before, floating point was always used, which could lead to
1933    loss of precision compared with integer addition.
1934
1935    * making IV and NV equal status should make maths accurate on 64 bit
1936      platforms
1937    * may speed up maths somewhat if pp_add and friends start to use
1938      integers when possible instead of fp. (Hopefully the overhead in
1939      looking for SvIOK and checking for overflow will not outweigh the
1940      fp to integer speedup)
1941    * will slow down integer operations (callers of SvIV) on "inaccurate"
1942      values, as the change from SvIOK to SvIOKp will cause a call into
1943      sv_2iv each time rather than a macro access direct to the IV slot
1944    * should speed up number->string conversion on integers as IV is
1945      favoured when IV and NV are equally accurate
1946
1947    ####################################################################
1948    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1949    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1950    On the other hand, SvUOK is true iff UV.
1951    ####################################################################
1952
1953    Your mileage will vary depending your CPU's relative fp to integer
1954    performance ratio.
1955 */
1956
1957 #ifndef NV_PRESERVES_UV
1958 #  define IS_NUMBER_UNDERFLOW_IV 1
1959 #  define IS_NUMBER_UNDERFLOW_UV 2
1960 #  define IS_NUMBER_IV_AND_UV    2
1961 #  define IS_NUMBER_OVERFLOW_IV  4
1962 #  define IS_NUMBER_OVERFLOW_UV  5
1963
1964 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1965
1966 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1967 STATIC int
1968 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1969 #  ifdef DEBUGGING
1970                        , I32 numtype
1971 #  endif
1972                        )
1973 {
1974     dVAR;
1975
1976     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1977
1978     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));
1979     if (SvNVX(sv) < (NV)IV_MIN) {
1980         (void)SvIOKp_on(sv);
1981         (void)SvNOK_on(sv);
1982         SvIV_set(sv, IV_MIN);
1983         return IS_NUMBER_UNDERFLOW_IV;
1984     }
1985     if (SvNVX(sv) > (NV)UV_MAX) {
1986         (void)SvIOKp_on(sv);
1987         (void)SvNOK_on(sv);
1988         SvIsUV_on(sv);
1989         SvUV_set(sv, UV_MAX);
1990         return IS_NUMBER_OVERFLOW_UV;
1991     }
1992     (void)SvIOKp_on(sv);
1993     (void)SvNOK_on(sv);
1994     /* Can't use strtol etc to convert this string.  (See truth table in
1995        sv_2iv  */
1996     if (SvNVX(sv) <= (UV)IV_MAX) {
1997         SvIV_set(sv, I_V(SvNVX(sv)));
1998         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1999             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2000         } else {
2001             /* Integer is imprecise. NOK, IOKp */
2002         }
2003         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2004     }
2005     SvIsUV_on(sv);
2006     SvUV_set(sv, U_V(SvNVX(sv)));
2007     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2008         if (SvUVX(sv) == UV_MAX) {
2009             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2010                possibly be preserved by NV. Hence, it must be overflow.
2011                NOK, IOKp */
2012             return IS_NUMBER_OVERFLOW_UV;
2013         }
2014         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2015     } else {
2016         /* Integer is imprecise. NOK, IOKp */
2017     }
2018     return IS_NUMBER_OVERFLOW_IV;
2019 }
2020 #endif /* !NV_PRESERVES_UV*/
2021
2022 STATIC bool
2023 S_sv_2iuv_common(pTHX_ SV *const sv)
2024 {
2025     dVAR;
2026
2027     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2028
2029     if (SvNOKp(sv)) {
2030         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2031          * without also getting a cached IV/UV from it at the same time
2032          * (ie PV->NV conversion should detect loss of accuracy and cache
2033          * IV or UV at same time to avoid this. */
2034         /* IV-over-UV optimisation - choose to cache IV if possible */
2035
2036         if (SvTYPE(sv) == SVt_NV)
2037             sv_upgrade(sv, SVt_PVNV);
2038
2039         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2040         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2041            certainly cast into the IV range at IV_MAX, whereas the correct
2042            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2043            cases go to UV */
2044 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2045         if (Perl_isnan(SvNVX(sv))) {
2046             SvUV_set(sv, 0);
2047             SvIsUV_on(sv);
2048             return FALSE;
2049         }
2050 #endif
2051         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2052             SvIV_set(sv, I_V(SvNVX(sv)));
2053             if (SvNVX(sv) == (NV) SvIVX(sv)
2054 #ifndef NV_PRESERVES_UV
2055                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2056                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2057                 /* Don't flag it as "accurately an integer" if the number
2058                    came from a (by definition imprecise) NV operation, and
2059                    we're outside the range of NV integer precision */
2060 #endif
2061                 ) {
2062                 if (SvNOK(sv))
2063                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2064                 else {
2065                     /* scalar has trailing garbage, eg "42a" */
2066                 }
2067                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2068                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2069                                       PTR2UV(sv),
2070                                       SvNVX(sv),
2071                                       SvIVX(sv)));
2072
2073             } else {
2074                 /* IV not precise.  No need to convert from PV, as NV
2075                    conversion would already have cached IV if it detected
2076                    that PV->IV would be better than PV->NV->IV
2077                    flags already correct - don't set public IOK.  */
2078                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2079                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2080                                       PTR2UV(sv),
2081                                       SvNVX(sv),
2082                                       SvIVX(sv)));
2083             }
2084             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2085                but the cast (NV)IV_MIN rounds to a the value less (more
2086                negative) than IV_MIN which happens to be equal to SvNVX ??
2087                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2088                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2089                (NV)UVX == NVX are both true, but the values differ. :-(
2090                Hopefully for 2s complement IV_MIN is something like
2091                0x8000000000000000 which will be exact. NWC */
2092         }
2093         else {
2094             SvUV_set(sv, U_V(SvNVX(sv)));
2095             if (
2096                 (SvNVX(sv) == (NV) SvUVX(sv))
2097 #ifndef  NV_PRESERVES_UV
2098                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2099                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2100                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2101                 /* Don't flag it as "accurately an integer" if the number
2102                    came from a (by definition imprecise) NV operation, and
2103                    we're outside the range of NV integer precision */
2104 #endif
2105                 && SvNOK(sv)
2106                 )
2107                 SvIOK_on(sv);
2108             SvIsUV_on(sv);
2109             DEBUG_c(PerlIO_printf(Perl_debug_log,
2110                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2111                                   PTR2UV(sv),
2112                                   SvUVX(sv),
2113                                   SvUVX(sv)));
2114         }
2115     }
2116     else if (SvPOKp(sv) && SvLEN(sv)) {
2117         UV value;
2118         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2119         /* We want to avoid a possible problem when we cache an IV/ a UV which
2120            may be later translated to an NV, and the resulting NV is not
2121            the same as the direct translation of the initial string
2122            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2123            be careful to ensure that the value with the .456 is around if the
2124            NV value is requested in the future).
2125         
2126            This means that if we cache such an IV/a UV, we need to cache the
2127            NV as well.  Moreover, we trade speed for space, and do not
2128            cache the NV if we are sure it's not needed.
2129          */
2130
2131         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2132         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2133              == IS_NUMBER_IN_UV) {
2134             /* It's definitely an integer, only upgrade to PVIV */
2135             if (SvTYPE(sv) < SVt_PVIV)
2136                 sv_upgrade(sv, SVt_PVIV);
2137             (void)SvIOK_on(sv);
2138         } else if (SvTYPE(sv) < SVt_PVNV)
2139             sv_upgrade(sv, SVt_PVNV);
2140
2141         /* If NVs preserve UVs then we only use the UV value if we know that
2142            we aren't going to call atof() below. If NVs don't preserve UVs
2143            then the value returned may have more precision than atof() will
2144            return, even though value isn't perfectly accurate.  */
2145         if ((numtype & (IS_NUMBER_IN_UV
2146 #ifdef NV_PRESERVES_UV
2147                         | IS_NUMBER_NOT_INT
2148 #endif
2149             )) == IS_NUMBER_IN_UV) {
2150             /* This won't turn off the public IOK flag if it was set above  */
2151             (void)SvIOKp_on(sv);
2152
2153             if (!(numtype & IS_NUMBER_NEG)) {
2154                 /* positive */;
2155                 if (value <= (UV)IV_MAX) {
2156                     SvIV_set(sv, (IV)value);
2157                 } else {
2158                     /* it didn't overflow, and it was positive. */
2159                     SvUV_set(sv, value);
2160                     SvIsUV_on(sv);
2161                 }
2162             } else {
2163                 /* 2s complement assumption  */
2164                 if (value <= (UV)IV_MIN) {
2165                     SvIV_set(sv, -(IV)value);
2166                 } else {
2167                     /* Too negative for an IV.  This is a double upgrade, but
2168                        I'm assuming it will be rare.  */
2169                     if (SvTYPE(sv) < SVt_PVNV)
2170                         sv_upgrade(sv, SVt_PVNV);
2171                     SvNOK_on(sv);
2172                     SvIOK_off(sv);
2173                     SvIOKp_on(sv);
2174                     SvNV_set(sv, -(NV)value);
2175                     SvIV_set(sv, IV_MIN);
2176                 }
2177             }
2178         }
2179         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2180            will be in the previous block to set the IV slot, and the next
2181            block to set the NV slot.  So no else here.  */
2182         
2183         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2184             != IS_NUMBER_IN_UV) {
2185             /* It wasn't an (integer that doesn't overflow the UV). */
2186             SvNV_set(sv, Atof(SvPVX_const(sv)));
2187
2188             if (! numtype && ckWARN(WARN_NUMERIC))
2189                 not_a_number(sv);
2190
2191 #if defined(USE_LONG_DOUBLE)
2192             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2193                                   PTR2UV(sv), SvNVX(sv)));
2194 #else
2195             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2196                                   PTR2UV(sv), SvNVX(sv)));
2197 #endif
2198
2199 #ifdef NV_PRESERVES_UV
2200             (void)SvIOKp_on(sv);
2201             (void)SvNOK_on(sv);
2202             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2203                 SvIV_set(sv, I_V(SvNVX(sv)));
2204                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2205                     SvIOK_on(sv);
2206                 } else {
2207                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2208                 }
2209                 /* UV will not work better than IV */
2210             } else {
2211                 if (SvNVX(sv) > (NV)UV_MAX) {
2212                     SvIsUV_on(sv);
2213                     /* Integer is inaccurate. NOK, IOKp, is UV */
2214                     SvUV_set(sv, UV_MAX);
2215                 } else {
2216                     SvUV_set(sv, U_V(SvNVX(sv)));
2217                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2218                        NV preservse UV so can do correct comparison.  */
2219                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2220                         SvIOK_on(sv);
2221                     } else {
2222                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2223                     }
2224                 }
2225                 SvIsUV_on(sv);
2226             }
2227 #else /* NV_PRESERVES_UV */
2228             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2229                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2230                 /* The IV/UV slot will have been set from value returned by
2231                    grok_number above.  The NV slot has just been set using
2232                    Atof.  */
2233                 SvNOK_on(sv);
2234                 assert (SvIOKp(sv));
2235             } else {
2236                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2237                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2238                     /* Small enough to preserve all bits. */
2239                     (void)SvIOKp_on(sv);
2240                     SvNOK_on(sv);
2241                     SvIV_set(sv, I_V(SvNVX(sv)));
2242                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2243                         SvIOK_on(sv);
2244                     /* Assumption: first non-preserved integer is < IV_MAX,
2245                        this NV is in the preserved range, therefore: */
2246                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2247                           < (UV)IV_MAX)) {
2248                         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);
2249                     }
2250                 } else {
2251                     /* IN_UV NOT_INT
2252                          0      0       already failed to read UV.
2253                          0      1       already failed to read UV.
2254                          1      0       you won't get here in this case. IV/UV
2255                                         slot set, public IOK, Atof() unneeded.
2256                          1      1       already read UV.
2257                        so there's no point in sv_2iuv_non_preserve() attempting
2258                        to use atol, strtol, strtoul etc.  */
2259 #  ifdef DEBUGGING
2260                     sv_2iuv_non_preserve (sv, numtype);
2261 #  else
2262                     sv_2iuv_non_preserve (sv);
2263 #  endif
2264                 }
2265             }
2266 #endif /* NV_PRESERVES_UV */
2267         /* It might be more code efficient to go through the entire logic above
2268            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2269            gets complex and potentially buggy, so more programmer efficient
2270            to do it this way, by turning off the public flags:  */
2271         if (!numtype)
2272             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2273         }
2274     }
2275     else  {
2276         if (isGV_with_GP(sv))
2277             return glob_2number(MUTABLE_GV(sv));
2278
2279         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2280             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2281                 report_uninit(sv);
2282         }
2283         if (SvTYPE(sv) < SVt_IV)
2284             /* Typically the caller expects that sv_any is not NULL now.  */
2285             sv_upgrade(sv, SVt_IV);
2286         /* Return 0 from the caller.  */
2287         return TRUE;
2288     }
2289     return FALSE;
2290 }
2291
2292 /*
2293 =for apidoc sv_2iv_flags
2294
2295 Return the integer value of an SV, doing any necessary string
2296 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2297 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2298
2299 =cut
2300 */
2301
2302 IV
2303 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2304 {
2305     dVAR;
2306     if (!sv)
2307         return 0;
2308     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2309         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2310            cache IVs just in case. In practice it seems that they never
2311            actually anywhere accessible by user Perl code, let alone get used
2312            in anything other than a string context.  */
2313         if (flags & SV_GMAGIC)
2314             mg_get(sv);
2315         if (SvIOKp(sv))
2316             return SvIVX(sv);
2317         if (SvNOKp(sv)) {
2318             return I_V(SvNVX(sv));
2319         }
2320         if (SvPOKp(sv) && SvLEN(sv)) {
2321             UV value;
2322             const int numtype
2323                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2324
2325             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2326                 == IS_NUMBER_IN_UV) {
2327                 /* It's definitely an integer */
2328                 if (numtype & IS_NUMBER_NEG) {
2329                     if (value < (UV)IV_MIN)
2330                         return -(IV)value;
2331                 } else {
2332                     if (value < (UV)IV_MAX)
2333                         return (IV)value;
2334                 }
2335             }
2336             if (!numtype) {
2337                 if (ckWARN(WARN_NUMERIC))
2338                     not_a_number(sv);
2339             }
2340             return I_V(Atof(SvPVX_const(sv)));
2341         }
2342         if (SvROK(sv)) {
2343             goto return_rok;
2344         }
2345         assert(SvTYPE(sv) >= SVt_PVMG);
2346         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2347     } else if (SvTHINKFIRST(sv)) {
2348         if (SvROK(sv)) {
2349         return_rok:
2350             if (SvAMAGIC(sv)) {
2351                 SV * const tmpstr=AMG_CALLun(sv,numer);
2352                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2353                     return SvIV(tmpstr);
2354                 }
2355             }
2356             return PTR2IV(SvRV(sv));
2357         }
2358         if (SvIsCOW(sv)) {
2359             sv_force_normal_flags(sv, 0);
2360         }
2361         if (SvREADONLY(sv) && !SvOK(sv)) {
2362             if (ckWARN(WARN_UNINITIALIZED))
2363                 report_uninit(sv);
2364             return 0;
2365         }
2366     }
2367     if (!SvIOKp(sv)) {
2368         if (S_sv_2iuv_common(aTHX_ sv))
2369             return 0;
2370     }
2371     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2372         PTR2UV(sv),SvIVX(sv)));
2373     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2374 }
2375
2376 /*
2377 =for apidoc sv_2uv_flags
2378
2379 Return the unsigned integer value of an SV, doing any necessary string
2380 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2381 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2382
2383 =cut
2384 */
2385
2386 UV
2387 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2388 {
2389     dVAR;
2390     if (!sv)
2391         return 0;
2392     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2393         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2394            cache IVs just in case.  */
2395         if (flags & SV_GMAGIC)
2396             mg_get(sv);
2397         if (SvIOKp(sv))
2398             return SvUVX(sv);
2399         if (SvNOKp(sv))
2400             return U_V(SvNVX(sv));
2401         if (SvPOKp(sv) && SvLEN(sv)) {
2402             UV value;
2403             const int numtype
2404                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2405
2406             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2407                 == IS_NUMBER_IN_UV) {
2408                 /* It's definitely an integer */
2409                 if (!(numtype & IS_NUMBER_NEG))
2410                     return value;
2411             }
2412             if (!numtype) {
2413                 if (ckWARN(WARN_NUMERIC))
2414                     not_a_number(sv);
2415             }
2416             return U_V(Atof(SvPVX_const(sv)));
2417         }
2418         if (SvROK(sv)) {
2419             goto return_rok;
2420         }
2421         assert(SvTYPE(sv) >= SVt_PVMG);
2422         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2423     } else if (SvTHINKFIRST(sv)) {
2424         if (SvROK(sv)) {
2425         return_rok:
2426             if (SvAMAGIC(sv)) {
2427                 SV *const tmpstr = AMG_CALLun(sv,numer);
2428                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2429                     return SvUV(tmpstr);
2430                 }
2431             }
2432             return PTR2UV(SvRV(sv));
2433         }
2434         if (SvIsCOW(sv)) {
2435             sv_force_normal_flags(sv, 0);
2436         }
2437         if (SvREADONLY(sv) && !SvOK(sv)) {
2438             if (ckWARN(WARN_UNINITIALIZED))
2439                 report_uninit(sv);
2440             return 0;
2441         }
2442     }
2443     if (!SvIOKp(sv)) {
2444         if (S_sv_2iuv_common(aTHX_ sv))
2445             return 0;
2446     }
2447
2448     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2449                           PTR2UV(sv),SvUVX(sv)));
2450     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2451 }
2452
2453 /*
2454 =for apidoc sv_2nv
2455
2456 Return the num value of an SV, doing any necessary string or integer
2457 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
2458 macros.
2459
2460 =cut
2461 */
2462
2463 NV
2464 Perl_sv_2nv(pTHX_ register SV *const sv)
2465 {
2466     dVAR;
2467     if (!sv)
2468         return 0.0;
2469     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2470         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2471            cache IVs just in case.  */
2472         mg_get(sv);
2473         if (SvNOKp(sv))
2474             return SvNVX(sv);
2475         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2476             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2477                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2478                 not_a_number(sv);
2479             return Atof(SvPVX_const(sv));
2480         }
2481         if (SvIOKp(sv)) {
2482             if (SvIsUV(sv))
2483                 return (NV)SvUVX(sv);
2484             else
2485                 return (NV)SvIVX(sv);
2486         }
2487         if (SvROK(sv)) {
2488             goto return_rok;
2489         }
2490         assert(SvTYPE(sv) >= SVt_PVMG);
2491         /* This falls through to the report_uninit near the end of the
2492            function. */
2493     } else if (SvTHINKFIRST(sv)) {
2494         if (SvROK(sv)) {
2495         return_rok:
2496             if (SvAMAGIC(sv)) {
2497                 SV *const tmpstr = AMG_CALLun(sv,numer);
2498                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2499                     return SvNV(tmpstr);
2500                 }
2501             }
2502             return PTR2NV(SvRV(sv));
2503         }
2504         if (SvIsCOW(sv)) {
2505             sv_force_normal_flags(sv, 0);
2506         }
2507         if (SvREADONLY(sv) && !SvOK(sv)) {
2508             if (ckWARN(WARN_UNINITIALIZED))
2509                 report_uninit(sv);
2510             return 0.0;
2511         }
2512     }
2513     if (SvTYPE(sv) < SVt_NV) {
2514         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2515         sv_upgrade(sv, SVt_NV);
2516 #ifdef USE_LONG_DOUBLE
2517         DEBUG_c({
2518             STORE_NUMERIC_LOCAL_SET_STANDARD();
2519             PerlIO_printf(Perl_debug_log,
2520                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2521                           PTR2UV(sv), SvNVX(sv));
2522             RESTORE_NUMERIC_LOCAL();
2523         });
2524 #else
2525         DEBUG_c({
2526             STORE_NUMERIC_LOCAL_SET_STANDARD();
2527             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2528                           PTR2UV(sv), SvNVX(sv));
2529             RESTORE_NUMERIC_LOCAL();
2530         });
2531 #endif
2532     }
2533     else if (SvTYPE(sv) < SVt_PVNV)
2534         sv_upgrade(sv, SVt_PVNV);
2535     if (SvNOKp(sv)) {
2536         return SvNVX(sv);
2537     }
2538     if (SvIOKp(sv)) {
2539         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2540 #ifdef NV_PRESERVES_UV
2541         if (SvIOK(sv))
2542             SvNOK_on(sv);
2543         else
2544             SvNOKp_on(sv);
2545 #else
2546         /* Only set the public NV OK flag if this NV preserves the IV  */
2547         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2548         if (SvIOK(sv) &&
2549             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2550                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2551             SvNOK_on(sv);
2552         else
2553             SvNOKp_on(sv);
2554 #endif
2555     }
2556     else if (SvPOKp(sv) && SvLEN(sv)) {
2557         UV value;
2558         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2559         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2560             not_a_number(sv);
2561 #ifdef NV_PRESERVES_UV
2562         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2563             == IS_NUMBER_IN_UV) {
2564             /* It's definitely an integer */
2565             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2566         } else
2567             SvNV_set(sv, Atof(SvPVX_const(sv)));
2568         if (numtype)
2569             SvNOK_on(sv);
2570         else
2571             SvNOKp_on(sv);
2572 #else
2573         SvNV_set(sv, Atof(SvPVX_const(sv)));
2574         /* Only set the public NV OK flag if this NV preserves the value in
2575            the PV at least as well as an IV/UV would.
2576            Not sure how to do this 100% reliably. */
2577         /* if that shift count is out of range then Configure's test is
2578            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2579            UV_BITS */
2580         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2581             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2582             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2583         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2584             /* Can't use strtol etc to convert this string, so don't try.
2585                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2586             SvNOK_on(sv);
2587         } else {
2588             /* value has been set.  It may not be precise.  */
2589             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2590                 /* 2s complement assumption for (UV)IV_MIN  */
2591                 SvNOK_on(sv); /* Integer is too negative.  */
2592             } else {
2593                 SvNOKp_on(sv);
2594                 SvIOKp_on(sv);
2595
2596                 if (numtype & IS_NUMBER_NEG) {
2597                     SvIV_set(sv, -(IV)value);
2598                 } else if (value <= (UV)IV_MAX) {
2599                     SvIV_set(sv, (IV)value);
2600                 } else {
2601                     SvUV_set(sv, value);
2602                     SvIsUV_on(sv);
2603                 }
2604
2605                 if (numtype & IS_NUMBER_NOT_INT) {
2606                     /* I believe that even if the original PV had decimals,
2607                        they are lost beyond the limit of the FP precision.
2608                        However, neither is canonical, so both only get p
2609                        flags.  NWC, 2000/11/25 */
2610                     /* Both already have p flags, so do nothing */
2611                 } else {
2612                     const NV nv = SvNVX(sv);
2613                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2614                         if (SvIVX(sv) == I_V(nv)) {
2615                             SvNOK_on(sv);
2616                         } else {
2617                             /* It had no "." so it must be integer.  */
2618                         }
2619                         SvIOK_on(sv);
2620                     } else {
2621                         /* between IV_MAX and NV(UV_MAX).
2622                            Could be slightly > UV_MAX */
2623
2624                         if (numtype & IS_NUMBER_NOT_INT) {
2625                             /* UV and NV both imprecise.  */
2626                         } else {
2627                             const UV nv_as_uv = U_V(nv);
2628
2629                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2630                                 SvNOK_on(sv);
2631                             }
2632                             SvIOK_on(sv);
2633                         }
2634                     }
2635                 }
2636             }
2637         }
2638         /* It might be more code efficient to go through the entire logic above
2639            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2640            gets complex and potentially buggy, so more programmer efficient
2641            to do it this way, by turning off the public flags:  */
2642         if (!numtype)
2643             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2644 #endif /* NV_PRESERVES_UV */
2645     }
2646     else  {
2647         if (isGV_with_GP(sv)) {
2648             glob_2number(MUTABLE_GV(sv));
2649             return 0.0;
2650         }
2651
2652         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2653             report_uninit(sv);
2654         assert (SvTYPE(sv) >= SVt_NV);
2655         /* Typically the caller expects that sv_any is not NULL now.  */
2656         /* XXX Ilya implies that this is a bug in callers that assume this
2657            and ideally should be fixed.  */
2658         return 0.0;
2659     }
2660 #if defined(USE_LONG_DOUBLE)
2661     DEBUG_c({
2662         STORE_NUMERIC_LOCAL_SET_STANDARD();
2663         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2664                       PTR2UV(sv), SvNVX(sv));
2665         RESTORE_NUMERIC_LOCAL();
2666     });
2667 #else
2668     DEBUG_c({
2669         STORE_NUMERIC_LOCAL_SET_STANDARD();
2670         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2671                       PTR2UV(sv), SvNVX(sv));
2672         RESTORE_NUMERIC_LOCAL();
2673     });
2674 #endif
2675     return SvNVX(sv);
2676 }
2677
2678 /*
2679 =for apidoc sv_2num
2680
2681 Return an SV with the numeric value of the source SV, doing any necessary
2682 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2683 access this function.
2684
2685 =cut
2686 */
2687
2688 SV *
2689 Perl_sv_2num(pTHX_ register SV *const sv)
2690 {
2691     PERL_ARGS_ASSERT_SV_2NUM;
2692
2693     if (!SvROK(sv))
2694         return sv;
2695     if (SvAMAGIC(sv)) {
2696         SV * const tmpsv = AMG_CALLun(sv,numer);
2697         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2698             return sv_2num(tmpsv);
2699     }
2700     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2701 }
2702
2703 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2704  * UV as a string towards the end of buf, and return pointers to start and
2705  * end of it.
2706  *
2707  * We assume that buf is at least TYPE_CHARS(UV) long.
2708  */
2709
2710 static char *
2711 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2712 {
2713     char *ptr = buf + TYPE_CHARS(UV);
2714     char * const ebuf = ptr;
2715     int sign;
2716
2717     PERL_ARGS_ASSERT_UIV_2BUF;
2718
2719     if (is_uv)
2720         sign = 0;
2721     else if (iv >= 0) {
2722         uv = iv;
2723         sign = 0;
2724     } else {
2725         uv = -iv;
2726         sign = 1;
2727     }
2728     do {
2729         *--ptr = '0' + (char)(uv % 10);
2730     } while (uv /= 10);
2731     if (sign)
2732         *--ptr = '-';
2733     *peob = ebuf;
2734     return ptr;
2735 }
2736
2737 /*
2738 =for apidoc sv_2pv_flags
2739
2740 Returns a pointer to the string value of an SV, and sets *lp to its length.
2741 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2742 if necessary.
2743 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2744 usually end up here too.
2745
2746 =cut
2747 */
2748
2749 char *
2750 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2751 {
2752     dVAR;
2753     register char *s;
2754
2755     if (!sv) {
2756         if (lp)
2757             *lp = 0;
2758         return (char *)"";
2759     }
2760     if (SvGMAGICAL(sv)) {
2761         if (flags & SV_GMAGIC)
2762             mg_get(sv);
2763         if (SvPOKp(sv)) {
2764             if (lp)
2765                 *lp = SvCUR(sv);
2766             if (flags & SV_MUTABLE_RETURN)
2767                 return SvPVX_mutable(sv);
2768             if (flags & SV_CONST_RETURN)
2769                 return (char *)SvPVX_const(sv);
2770             return SvPVX(sv);
2771         }
2772         if (SvIOKp(sv) || SvNOKp(sv)) {
2773             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2774             STRLEN len;
2775
2776             if (SvIOKp(sv)) {
2777                 len = SvIsUV(sv)
2778                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2779                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2780             } else {
2781                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2782                 len = strlen(tbuf);
2783             }
2784             assert(!SvROK(sv));
2785             {
2786                 dVAR;
2787
2788 #ifdef FIXNEGATIVEZERO
2789                 if (len == 2 && tbuf[0] == '-' && tbuf[1] == '0') {
2790                     tbuf[0] = '0';
2791                     tbuf[1] = 0;
2792                     len = 1;
2793                 }
2794 #endif
2795                 SvUPGRADE(sv, SVt_PV);
2796                 if (lp)
2797                     *lp = len;
2798                 s = SvGROW_mutable(sv, len + 1);
2799                 SvCUR_set(sv, len);
2800                 SvPOKp_on(sv);
2801                 return (char*)memcpy(s, tbuf, len + 1);
2802             }
2803         }
2804         if (SvROK(sv)) {
2805             goto return_rok;
2806         }
2807         assert(SvTYPE(sv) >= SVt_PVMG);
2808         /* This falls through to the report_uninit near the end of the
2809            function. */
2810     } else if (SvTHINKFIRST(sv)) {
2811         if (SvROK(sv)) {
2812         return_rok:
2813             if (SvAMAGIC(sv)) {
2814                 SV *const tmpstr = AMG_CALLun(sv,string);
2815                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2816                     /* Unwrap this:  */
2817                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2818                      */
2819
2820                     char *pv;
2821                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2822                         if (flags & SV_CONST_RETURN) {
2823                             pv = (char *) SvPVX_const(tmpstr);
2824                         } else {
2825                             pv = (flags & SV_MUTABLE_RETURN)
2826                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2827                         }
2828                         if (lp)
2829                             *lp = SvCUR(tmpstr);
2830                     } else {
2831                         pv = sv_2pv_flags(tmpstr, lp, flags);
2832                     }
2833                     if (SvUTF8(tmpstr))
2834                         SvUTF8_on(sv);
2835                     else
2836                         SvUTF8_off(sv);
2837                     return pv;
2838                 }
2839             }
2840             {
2841                 STRLEN len;
2842                 char *retval;
2843                 char *buffer;
2844                 SV *const referent = SvRV(sv);
2845
2846                 if (!referent) {
2847                     len = 7;
2848                     retval = buffer = savepvn("NULLREF", len);
2849                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2850                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2851                     I32 seen_evals = 0;
2852
2853                     assert(re);
2854                         
2855                     /* If the regex is UTF-8 we want the containing scalar to
2856                        have an UTF-8 flag too */
2857                     if (RX_UTF8(re))
2858                         SvUTF8_on(sv);
2859                     else
2860                         SvUTF8_off(sv); 
2861
2862                     if ((seen_evals = RX_SEEN_EVALS(re)))
2863                         PL_reginterp_cnt += seen_evals;
2864
2865                     if (lp)
2866                         *lp = RX_WRAPLEN(re);
2867  
2868                     return RX_WRAPPED(re);
2869                 } else {
2870                     const char *const typestr = sv_reftype(referent, 0);
2871                     const STRLEN typelen = strlen(typestr);
2872                     UV addr = PTR2UV(referent);
2873                     const char *stashname = NULL;
2874                     STRLEN stashnamelen = 0; /* hush, gcc */
2875                     const char *buffer_end;
2876
2877                     if (SvOBJECT(referent)) {
2878                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2879
2880                         if (name) {
2881                             stashname = HEK_KEY(name);
2882                             stashnamelen = HEK_LEN(name);
2883
2884                             if (HEK_UTF8(name)) {
2885                                 SvUTF8_on(sv);
2886                             } else {
2887                                 SvUTF8_off(sv);
2888                             }
2889                         } else {
2890                             stashname = "__ANON__";
2891                             stashnamelen = 8;
2892                         }
2893                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2894                             + 2 * sizeof(UV) + 2 /* )\0 */;
2895                     } else {
2896                         len = typelen + 3 /* (0x */
2897                             + 2 * sizeof(UV) + 2 /* )\0 */;
2898                     }
2899
2900                     Newx(buffer, len, char);
2901                     buffer_end = retval = buffer + len;
2902
2903                     /* Working backwards  */
2904                     *--retval = '\0';
2905                     *--retval = ')';
2906                     do {
2907                         *--retval = PL_hexdigit[addr & 15];
2908                     } while (addr >>= 4);
2909                     *--retval = 'x';
2910                     *--retval = '0';
2911                     *--retval = '(';
2912
2913                     retval -= typelen;
2914                     memcpy(retval, typestr, typelen);
2915
2916                     if (stashname) {
2917                         *--retval = '=';
2918                         retval -= stashnamelen;
2919                         memcpy(retval, stashname, stashnamelen);
2920                     }
2921                     /* retval may not neccesarily have reached the start of the
2922                        buffer here.  */
2923                     assert (retval >= buffer);
2924
2925                     len = buffer_end - retval - 1; /* -1 for that \0  */
2926                 }
2927                 if (lp)
2928                     *lp = len;
2929                 SAVEFREEPV(buffer);
2930                 return retval;
2931             }
2932         }
2933         if (SvREADONLY(sv) && !SvOK(sv)) {
2934             if (lp)
2935                 *lp = 0;
2936             if (flags & SV_UNDEF_RETURNS_NULL)
2937                 return NULL;
2938             if (ckWARN(WARN_UNINITIALIZED))
2939                 report_uninit(sv);
2940             return (char *)"";
2941         }
2942     }
2943     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2944         /* I'm assuming that if both IV and NV are equally valid then
2945            converting the IV is going to be more efficient */
2946         const U32 isUIOK = SvIsUV(sv);
2947         char buf[TYPE_CHARS(UV)];
2948         char *ebuf, *ptr;
2949         STRLEN len;
2950
2951         if (SvTYPE(sv) < SVt_PVIV)
2952             sv_upgrade(sv, SVt_PVIV);
2953         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2954         len = ebuf - ptr;
2955         /* inlined from sv_setpvn */
2956         s = SvGROW_mutable(sv, len + 1);
2957         Move(ptr, s, len, char);
2958         s += len;
2959         *s = '\0';
2960     }
2961     else if (SvNOKp(sv)) {
2962         dSAVE_ERRNO;
2963         if (SvTYPE(sv) < SVt_PVNV)
2964             sv_upgrade(sv, SVt_PVNV);
2965         /* The +20 is pure guesswork.  Configure test needed. --jhi */
2966         s = SvGROW_mutable(sv, NV_DIG + 20);
2967         /* some Xenix systems wipe out errno here */
2968 #ifdef apollo
2969         if (SvNVX(sv) == 0.0)
2970             my_strlcpy(s, "0", SvLEN(sv));
2971         else
2972 #endif /*apollo*/
2973         {
2974             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2975         }
2976         RESTORE_ERRNO;
2977 #ifdef FIXNEGATIVEZERO
2978         if (*s == '-' && s[1] == '0' && !s[2]) {
2979             s[0] = '0';
2980             s[1] = 0;
2981         }
2982 #endif
2983         while (*s) s++;
2984 #ifdef hcx
2985         if (s[-1] == '.')
2986             *--s = '\0';
2987 #endif
2988     }
2989     else {
2990         if (isGV_with_GP(sv))
2991             return glob_2pv(MUTABLE_GV(sv), lp);
2992
2993         if (lp)
2994             *lp = 0;
2995         if (flags & SV_UNDEF_RETURNS_NULL)
2996             return NULL;
2997         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2998             report_uninit(sv);
2999         if (SvTYPE(sv) < SVt_PV)
3000             /* Typically the caller expects that sv_any is not NULL now.  */
3001             sv_upgrade(sv, SVt_PV);
3002         return (char *)"";
3003     }
3004     {
3005         const STRLEN len = s - SvPVX_const(sv);
3006         if (lp) 
3007             *lp = len;
3008         SvCUR_set(sv, len);
3009     }
3010     SvPOK_on(sv);
3011     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3012                           PTR2UV(sv),SvPVX_const(sv)));
3013     if (flags & SV_CONST_RETURN)
3014         return (char *)SvPVX_const(sv);
3015     if (flags & SV_MUTABLE_RETURN)
3016         return SvPVX_mutable(sv);
3017     return SvPVX(sv);
3018 }
3019
3020 /*
3021 =for apidoc sv_copypv
3022
3023 Copies a stringified representation of the source SV into the
3024 destination SV.  Automatically performs any necessary mg_get and
3025 coercion of numeric values into strings.  Guaranteed to preserve
3026 UTF8 flag even from overloaded objects.  Similar in nature to
3027 sv_2pv[_flags] but operates directly on an SV instead of just the
3028 string.  Mostly uses sv_2pv_flags to do its work, except when that
3029 would lose the UTF-8'ness of the PV.
3030
3031 =cut
3032 */
3033
3034 void
3035 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3036 {
3037     STRLEN len;
3038     const char * const s = SvPV_const(ssv,len);
3039
3040     PERL_ARGS_ASSERT_SV_COPYPV;
3041
3042     sv_setpvn(dsv,s,len);
3043     if (SvUTF8(ssv))
3044         SvUTF8_on(dsv);
3045     else
3046         SvUTF8_off(dsv);
3047 }
3048
3049 /*
3050 =for apidoc sv_2pvbyte
3051
3052 Return a pointer to the byte-encoded representation of the SV, and set *lp
3053 to its length.  May cause the SV to be downgraded from UTF-8 as a
3054 side-effect.
3055
3056 Usually accessed via the C<SvPVbyte> macro.
3057
3058 =cut
3059 */
3060
3061 char *
3062 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3063 {
3064     PERL_ARGS_ASSERT_SV_2PVBYTE;
3065
3066     sv_utf8_downgrade(sv,0);
3067     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3068 }
3069
3070 /*
3071 =for apidoc sv_2pvutf8
3072
3073 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3074 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3075
3076 Usually accessed via the C<SvPVutf8> macro.
3077
3078 =cut
3079 */
3080
3081 char *
3082 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3083 {
3084     PERL_ARGS_ASSERT_SV_2PVUTF8;
3085
3086     sv_utf8_upgrade(sv);
3087     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3088 }
3089
3090
3091 /*
3092 =for apidoc sv_2bool
3093
3094 This function is only called on magical items, and is only used by
3095 sv_true() or its macro equivalent.
3096
3097 =cut
3098 */
3099
3100 bool
3101 Perl_sv_2bool(pTHX_ register SV *const sv)
3102 {
3103     dVAR;
3104
3105     PERL_ARGS_ASSERT_SV_2BOOL;
3106
3107     SvGETMAGIC(sv);
3108
3109     if (!SvOK(sv))
3110         return 0;
3111     if (SvROK(sv)) {
3112         if (SvAMAGIC(sv)) {
3113             SV * const tmpsv = AMG_CALLun(sv,bool_);
3114             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3115                 return (bool)SvTRUE(tmpsv);
3116         }
3117         return SvRV(sv) != 0;
3118     }
3119     if (SvPOKp(sv)) {
3120         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3121         if (Xpvtmp &&
3122                 (*sv->sv_u.svu_pv > '0' ||
3123                 Xpvtmp->xpv_cur > 1 ||
3124                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3125             return 1;
3126         else
3127             return 0;
3128     }
3129     else {
3130         if (SvIOKp(sv))
3131             return SvIVX(sv) != 0;
3132         else {
3133             if (SvNOKp(sv))
3134                 return SvNVX(sv) != 0.0;
3135             else {
3136                 if (isGV_with_GP(sv))
3137                     return TRUE;
3138                 else
3139                     return FALSE;
3140             }
3141         }
3142     }
3143 }
3144
3145 /*
3146 =for apidoc sv_utf8_upgrade
3147
3148 Converts the PV of an SV to its UTF-8-encoded form.
3149 Forces the SV to string form if it is not already.
3150 Will C<mg_get> on C<sv> if appropriate.
3151 Always sets the SvUTF8 flag to avoid future validity checks even
3152 if the whole string is the same in UTF-8 as not.
3153 Returns the number of bytes in the converted string
3154
3155 This is not as a general purpose byte encoding to Unicode interface:
3156 use the Encode extension for that.
3157
3158 =for apidoc sv_utf8_upgrade_nomg
3159
3160 Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3161
3162 =for apidoc sv_utf8_upgrade_flags
3163
3164 Converts the PV of an SV to its UTF-8-encoded form.
3165 Forces the SV to string form if it is not already.
3166 Always sets the SvUTF8 flag to avoid future validity checks even
3167 if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3168 will C<mg_get> on C<sv> if appropriate, else not.
3169 Returns the number of bytes in the converted string
3170 C<sv_utf8_upgrade> and
3171 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3172
3173 This is not as a general purpose byte encoding to Unicode interface:
3174 use the Encode extension for that.
3175
3176 =cut
3177
3178 The grow version is currently not externally documented.  It adds a parameter,
3179 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3180 have free after it upon return.  This allows the caller to reserve extra space
3181 that it intends to fill, to avoid extra grows.
3182
3183 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3184 which can be used to tell this function to not first check to see if there are
3185 any characters that are different in UTF-8 (variant characters) which would
3186 force it to allocate a new string to sv, but to assume there are.  Typically
3187 this flag is used by a routine that has already parsed the string to find that
3188 there are such characters, and passes this information on so that the work
3189 doesn't have to be repeated.
3190
3191 (One might think that the calling routine could pass in the position of the
3192 first such variant, so it wouldn't have to be found again.  But that is not the
3193 case, because typically when the caller is likely to use this flag, it won't be
3194 calling this routine unless it finds something that won't fit into a byte.
3195 Otherwise it tries to not upgrade and just use bytes.  But some things that
3196 do fit into a byte are variants in utf8, and the caller may not have been
3197 keeping track of these.)
3198
3199 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3200 isn't guaranteed due to having other routines do the work in some input cases,
3201 or if the input is already flagged as being in utf8.
3202
3203 The speed of this could perhaps be improved for many cases if someone wanted to
3204 write a fast function that counts the number of variant characters in a string,
3205 especially if it could return the position of the first one.
3206
3207 */
3208
3209 STRLEN
3210 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3211 {
3212     dVAR;
3213
3214     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3215
3216     if (sv == &PL_sv_undef)
3217         return 0;
3218     if (!SvPOK(sv)) {
3219         STRLEN len = 0;
3220         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3221             (void) sv_2pv_flags(sv,&len, flags);
3222             if (SvUTF8(sv)) {
3223                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3224                 return len;
3225             }
3226         } else {
3227             (void) SvPV_force(sv,len);
3228         }
3229     }
3230
3231     if (SvUTF8(sv)) {
3232         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3233         return SvCUR(sv);
3234     }
3235
3236     if (SvIsCOW(sv)) {
3237         sv_force_normal_flags(sv, 0);
3238     }
3239
3240     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3241         sv_recode_to_utf8(sv, PL_encoding);
3242         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3243         return SvCUR(sv);
3244     }
3245
3246     if (SvCUR(sv) > 0) { /* Assume Latin-1/EBCDIC */
3247         /* This function could be much more efficient if we
3248          * had a FLAG in SVs to signal if there are any variant
3249          * chars in the PV.  Given that there isn't such a flag
3250          * make the loop as fast as possible (although there are certainly ways
3251          * to speed this up, eg. through vectorization) */
3252         U8 * s = (U8 *) SvPVX_const(sv);
3253         U8 * e = (U8 *) SvEND(sv);
3254         U8 *t = s;
3255         STRLEN two_byte_count = 0;
3256         
3257         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3258
3259         /* See if really will need to convert to utf8.  We mustn't rely on our
3260          * incoming SV being well formed and having a trailing '\0', as certain
3261          * code in pp_formline can send us partially built SVs. */
3262
3263         while (t < e) {
3264             const U8 ch = *t++;
3265             if (NATIVE_IS_INVARIANT(ch)) continue;
3266
3267             t--;    /* t already incremented; re-point to first variant */
3268             two_byte_count = 1;
3269             goto must_be_utf8;
3270         }
3271
3272         /* utf8 conversion not needed because all are invariants.  Mark as
3273          * UTF-8 even if no variant - saves scanning loop */
3274         SvUTF8_on(sv);
3275         return SvCUR(sv);
3276
3277 must_be_utf8:
3278
3279         /* Here, the string should be converted to utf8, either because of an
3280          * input flag (two_byte_count = 0), or because a character that
3281          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3282          * the beginning of the string (if we didn't examine anything), or to
3283          * the first variant.  In either case, everything from s to t - 1 will
3284          * occupy only 1 byte each on output.
3285          *
3286          * There are two main ways to convert.  One is to create a new string
3287          * and go through the input starting from the beginning, appending each
3288          * converted value onto the new string as we go along.  It's probably
3289          * best to allocate enough space in the string for the worst possible
3290          * case rather than possibly running out of space and having to
3291          * reallocate and then copy what we've done so far.  Since everything
3292          * from s to t - 1 is invariant, the destination can be initialized
3293          * with these using a fast memory copy
3294          *
3295          * The other way is to figure out exactly how big the string should be
3296          * by parsing the entire input.  Then you don't have to make it big
3297          * enough to handle the worst possible case, and more importantly, if
3298          * the string you already have is large enough, you don't have to
3299          * allocate a new string, you can copy the last character in the input
3300          * string to the final position(s) that will be occupied by the
3301          * converted string and go backwards, stopping at t, since everything
3302          * before that is invariant.
3303          *
3304          * There are advantages and disadvantages to each method.
3305          *
3306          * In the first method, we can allocate a new string, do the memory
3307          * copy from the s to t - 1, and then proceed through the rest of the
3308          * string byte-by-byte.
3309          *
3310          * In the second method, we proceed through the rest of the input
3311          * string just calculating how big the converted string will be.  Then
3312          * there are two cases:
3313          *  1)  if the string has enough extra space to handle the converted
3314          *      value.  We go backwards through the string, converting until we
3315          *      get to the position we are at now, and then stop.  If this
3316          *      position is far enough along in the string, this method is
3317          *      faster than the other method.  If the memory copy were the same
3318          *      speed as the byte-by-byte loop, that position would be about
3319          *      half-way, as at the half-way mark, parsing to the end and back
3320          *      is one complete string's parse, the same amount as starting
3321          *      over and going all the way through.  Actually, it would be
3322          *      somewhat less than half-way, as it's faster to just count bytes
3323          *      than to also copy, and we don't have the overhead of allocating
3324          *      a new string, changing the scalar to use it, and freeing the
3325          *      existing one.  But if the memory copy is fast, the break-even
3326          *      point is somewhere after half way.  The counting loop could be
3327          *      sped up by vectorization, etc, to move the break-even point
3328          *      further towards the beginning.
3329          *  2)  if the string doesn't have enough space to handle the converted
3330          *      value.  A new string will have to be allocated, and one might
3331          *      as well, given that, start from the beginning doing the first
3332          *      method.  We've spent extra time parsing the string and in
3333          *      exchange all we've gotten is that we know precisely how big to
3334          *      make the new one.  Perl is more optimized for time than space,
3335          *      so this case is a loser.
3336          * So what I've decided to do is not use the 2nd method unless it is
3337          * guaranteed that a new string won't have to be allocated, assuming
3338          * the worst case.  I also decided not to put any more conditions on it
3339          * than this, for now.  It seems likely that, since the worst case is
3340          * twice as big as the unknown portion of the string (plus 1), we won't
3341          * be guaranteed enough space, causing us to go to the first method,
3342          * unless the string is short, or the first variant character is near
3343          * the end of it.  In either of these cases, it seems best to use the
3344          * 2nd method.  The only circumstance I can think of where this would
3345          * be really slower is if the string had once had much more data in it
3346          * than it does now, but there is still a substantial amount in it  */
3347
3348         {
3349             STRLEN invariant_head = t - s;
3350             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3351             if (SvLEN(sv) < size) {
3352
3353                 /* Here, have decided to allocate a new string */
3354
3355                 U8 *dst;
3356                 U8 *d;
3357
3358                 Newx(dst, size, U8);
3359
3360                 /* If no known invariants at the beginning of the input string,
3361                  * set so starts from there.  Otherwise, can use memory copy to
3362                  * get up to where we are now, and then start from here */
3363
3364                 if (invariant_head <= 0) {
3365                     d = dst;
3366                 } else {
3367                     Copy(s, dst, invariant_head, char);
3368                     d = dst + invariant_head;
3369                 }
3370
3371                 while (t < e) {
3372                     const UV uv = NATIVE8_TO_UNI(*t++);
3373                     if (UNI_IS_INVARIANT(uv))
3374                         *d++ = (U8)UNI_TO_NATIVE(uv);
3375                     else {
3376                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3377                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3378                     }
3379                 }
3380                 *d = '\0';
3381                 SvPV_free(sv); /* No longer using pre-existing string */
3382                 SvPV_set(sv, (char*)dst);
3383                 SvCUR_set(sv, d - dst);
3384                 SvLEN_set(sv, size);
3385             } else {
3386
3387                 /* Here, have decided to get the exact size of the string.
3388                  * Currently this happens only when we know that there is
3389                  * guaranteed enough space to fit the converted string, so
3390                  * don't have to worry about growing.  If two_byte_count is 0,
3391                  * then t points to the first byte of the string which hasn't
3392                  * been examined yet.  Otherwise two_byte_count is 1, and t
3393                  * points to the first byte in the string that will expand to
3394                  * two.  Depending on this, start examining at t or 1 after t.
3395                  * */
3396
3397                 U8 *d = t + two_byte_count;
3398
3399
3400                 /* Count up the remaining bytes that expand to two */
3401
3402                 while (d < e) {
3403                     const U8 chr = *d++;
3404                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3405                 }
3406
3407                 /* The string will expand by just the number of bytes that
3408                  * occupy two positions.  But we are one afterwards because of
3409                  * the increment just above.  This is the place to put the
3410                  * trailing NUL, and to set the length before we decrement */
3411
3412                 d += two_byte_count;
3413                 SvCUR_set(sv, d - s);
3414                 *d-- = '\0';
3415
3416
3417                 /* Having decremented d, it points to the position to put the
3418                  * very last byte of the expanded string.  Go backwards through
3419                  * the string, copying and expanding as we go, stopping when we
3420                  * get to the part that is invariant the rest of the way down */
3421
3422                 e--;
3423                 while (e >= t) {
3424                     const U8 ch = NATIVE8_TO_UNI(*e--);
3425                     if (UNI_IS_INVARIANT(ch)) {
3426                         *d-- = UNI_TO_NATIVE(ch);
3427                     } else {
3428                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3429                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3430                     }
3431                 }
3432             }
3433         }
3434     }
3435
3436     /* Mark as UTF-8 even if no variant - saves scanning loop */
3437     SvUTF8_on(sv);
3438     return SvCUR(sv);
3439 }
3440
3441 /*
3442 =for apidoc sv_utf8_downgrade
3443
3444 Attempts to convert the PV of an SV from characters to bytes.
3445 If the PV contains a character that cannot fit
3446 in a byte, this conversion will fail;
3447 in this case, either returns false or, if C<fail_ok> is not
3448 true, croaks.
3449
3450 This is not as a general purpose Unicode to byte encoding interface:
3451 use the Encode extension for that.
3452
3453 =cut
3454 */
3455
3456 bool
3457 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3458 {
3459     dVAR;
3460
3461     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3462
3463     if (SvPOKp(sv) && SvUTF8(sv)) {
3464         if (SvCUR(sv)) {
3465             U8 *s;
3466             STRLEN len;
3467
3468             if (SvIsCOW(sv)) {
3469                 sv_force_normal_flags(sv, 0);
3470             }
3471             s = (U8 *) SvPV(sv, len);
3472             if (!utf8_to_bytes(s, &len)) {
3473                 if (fail_ok)
3474                     return FALSE;
3475                 else {
3476                     if (PL_op)
3477                         Perl_croak(aTHX_ "Wide character in %s",
3478                                    OP_DESC(PL_op));
3479                     else
3480                         Perl_croak(aTHX_ "Wide character");
3481                 }
3482             }
3483             SvCUR_set(sv, len);
3484         }
3485     }
3486     SvUTF8_off(sv);
3487     return TRUE;
3488 }
3489
3490 /*
3491 =for apidoc sv_utf8_encode
3492
3493 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3494 flag off so that it looks like octets again.
3495
3496 =cut
3497 */
3498
3499 void
3500 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3501 {
3502     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3503
3504     if (SvIsCOW(sv)) {
3505         sv_force_normal_flags(sv, 0);
3506     }
3507     if (SvREADONLY(sv)) {
3508         Perl_croak(aTHX_ "%s", PL_no_modify);
3509     }
3510     (void) sv_utf8_upgrade(sv);
3511     SvUTF8_off(sv);
3512 }
3513
3514 /*
3515 =for apidoc sv_utf8_decode
3516
3517 If the PV of the SV is an octet sequence in UTF-8
3518 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3519 so that it looks like a character. If the PV contains only single-byte
3520 characters, the C<SvUTF8> flag stays being off.
3521 Scans PV for validity and returns false if the PV is invalid UTF-8.
3522
3523 =cut
3524 */
3525
3526 bool
3527 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3528 {
3529     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3530
3531     if (SvPOKp(sv)) {
3532         const U8 *c;
3533         const U8 *e;
3534
3535         /* The octets may have got themselves encoded - get them back as
3536          * bytes
3537          */
3538         if (!sv_utf8_downgrade(sv, TRUE))
3539             return FALSE;
3540
3541         /* it is actually just a matter of turning the utf8 flag on, but
3542          * we want to make sure everything inside is valid utf8 first.
3543          */
3544         c = (const U8 *) SvPVX_const(sv);
3545         if (!is_utf8_string(c, SvCUR(sv)+1))
3546             return FALSE;
3547         e = (const U8 *) SvEND(sv);
3548         while (c < e) {
3549             const U8 ch = *c++;
3550             if (!UTF8_IS_INVARIANT(ch)) {
3551                 SvUTF8_on(sv);
3552                 break;
3553             }
3554         }
3555     }
3556     return TRUE;
3557 }
3558
3559 /*
3560 =for apidoc sv_setsv
3561
3562 Copies the contents of the source SV C<ssv> into the destination SV
3563 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3564 function if the source SV needs to be reused. Does not handle 'set' magic.
3565 Loosely speaking, it performs a copy-by-value, obliterating any previous
3566 content of the destination.
3567
3568 You probably want to use one of the assortment of wrappers, such as
3569 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3570 C<SvSetMagicSV_nosteal>.
3571
3572 =for apidoc sv_setsv_flags
3573
3574 Copies the contents of the source SV C<ssv> into the destination SV
3575 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3576 function if the source SV needs to be reused. Does not handle 'set' magic.
3577 Loosely speaking, it performs a copy-by-value, obliterating any previous
3578 content of the destination.
3579 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3580 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3581 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3582 and C<sv_setsv_nomg> are implemented in terms of this function.
3583
3584 You probably want to use one of the assortment of wrappers, such as
3585 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3586 C<SvSetMagicSV_nosteal>.
3587
3588 This is the primary function for copying scalars, and most other
3589 copy-ish functions and macros use this underneath.
3590
3591 =cut
3592 */
3593
3594 static void
3595 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3596 {
3597     I32 mro_changes = 0; /* 1 = method, 2 = isa */
3598
3599     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3600
3601     if (dtype != SVt_PVGV) {
3602         const char * const name = GvNAME(sstr);
3603         const STRLEN len = GvNAMELEN(sstr);
3604         {
3605             if (dtype >= SVt_PV) {
3606                 SvPV_free(dstr);
3607                 SvPV_set(dstr, 0);
3608                 SvLEN_set(dstr, 0);
3609                 SvCUR_set(dstr, 0);
3610             }
3611             SvUPGRADE(dstr, SVt_PVGV);
3612             (void)SvOK_off(dstr);
3613             /* FIXME - why are we doing this, then turning it off and on again
3614                below?  */
3615             isGV_with_GP_on(dstr);
3616         }
3617         GvSTASH(dstr) = GvSTASH(sstr);
3618         if (GvSTASH(dstr))
3619             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3620         gv_name_set(MUTABLE_GV(dstr), name, len, GV_ADD);
3621         SvFAKE_on(dstr);        /* can coerce to non-glob */
3622     }
3623
3624 #ifdef GV_UNIQUE_CHECK
3625     if (GvUNIQUE((const GV *)dstr)) {
3626         Perl_croak(aTHX_ "%s", PL_no_modify);
3627     }
3628 #endif
3629
3630     if(GvGP(MUTABLE_GV(sstr))) {
3631         /* If source has method cache entry, clear it */
3632         if(GvCVGEN(sstr)) {
3633             SvREFCNT_dec(GvCV(sstr));
3634             GvCV(sstr) = NULL;
3635             GvCVGEN(sstr) = 0;
3636         }
3637         /* If source has a real method, then a method is
3638            going to change */
3639         else if(GvCV((const GV *)sstr)) {
3640             mro_changes = 1;
3641         }
3642     }
3643
3644     /* If dest already had a real method, that's a change as well */
3645     if(!mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)) {
3646         mro_changes = 1;
3647     }
3648
3649     if(strEQ(GvNAME((const GV *)dstr),"ISA"))
3650         mro_changes = 2;
3651
3652     gp_free(MUTABLE_GV(dstr));
3653     isGV_with_GP_off(dstr);
3654     (void)SvOK_off(dstr);
3655     isGV_with_GP_on(dstr);
3656     GvINTRO_off(dstr);          /* one-shot flag */
3657     GvGP(dstr) = gp_ref(GvGP(sstr));
3658     if (SvTAINTED(sstr))
3659         SvTAINT(dstr);
3660     if (GvIMPORTED(dstr) != GVf_IMPORTED
3661         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3662         {
3663             GvIMPORTED_on(dstr);
3664         }
3665     GvMULTI_on(dstr);
3666     if(mro_changes == 2) mro_isa_changed_in(GvSTASH(dstr));
3667     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3668     return;
3669 }
3670
3671 static void
3672 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3673 {
3674     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3675     SV *dref = NULL;
3676     const int intro = GvINTRO(dstr);
3677     SV **location;
3678     U8 import_flag = 0;
3679     const U32 stype = SvTYPE(sref);
3680
3681     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3682
3683 #ifdef GV_UNIQUE_CHECK
3684     if (GvUNIQUE((const GV *)dstr)) {
3685         Perl_croak(aTHX_ "%s", PL_no_modify);
3686     }
3687 #endif
3688
3689     if (intro) {
3690         GvINTRO_off(dstr);      /* one-shot flag */
3691         GvLINE(dstr) = CopLINE(PL_curcop);
3692         GvEGV(dstr) = MUTABLE_GV(dstr);
3693     }
3694     GvMULTI_on(dstr);
3695     switch (stype) {
3696     case SVt_PVCV:
3697         location = (SV **) &GvCV(dstr);
3698         import_flag = GVf_IMPORTED_CV;
3699         goto common;
3700     case SVt_PVHV:
3701         location = (SV **) &GvHV(dstr);
3702         import_flag = GVf_IMPORTED_HV;
3703         goto common;
3704     case SVt_PVAV:
3705         location = (SV **) &GvAV(dstr);
3706         import_flag = GVf_IMPORTED_AV;
3707         goto common;
3708     case SVt_PVIO:
3709         location = (SV **) &GvIOp(dstr);
3710         goto common;
3711     case SVt_PVFM:
3712         location = (SV **) &GvFORM(dstr);
3713     default:
3714         location = &GvSV(dstr);
3715         import_flag = GVf_IMPORTED_SV;
3716     common:
3717         if (intro) {
3718             if (stype == SVt_PVCV) {
3719                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3720                 if (GvCVGEN(dstr)) {
3721                     SvREFCNT_dec(GvCV(dstr));
3722                     GvCV(dstr) = NULL;
3723                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3724                 }
3725             }
3726             SAVEGENERICSV(*location);
3727         }
3728         else
3729             dref = *location;
3730         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3731             CV* const cv = MUTABLE_CV(*location);
3732             if (cv) {
3733                 if (!GvCVGEN((const GV *)dstr) &&
3734                     (CvROOT(cv) || CvXSUB(cv)))
3735                     {
3736                         /* Redefining a sub - warning is mandatory if
3737                            it was a const and its value changed. */
3738                         if (CvCONST(cv) && CvCONST((const CV *)sref)
3739                             && cv_const_sv(cv)
3740                             == cv_const_sv((const CV *)sref)) {
3741                             NOOP;
3742                             /* They are 2 constant subroutines generated from
3743                                the same constant. This probably means that
3744                                they are really the "same" proxy subroutine
3745                                instantiated in 2 places. Most likely this is
3746                                when a constant is exported twice.  Don't warn.
3747                             */
3748                         }
3749                         else if (ckWARN(WARN_REDEFINE)
3750                                  || (CvCONST(cv)
3751                                      && (!CvCONST((const CV *)sref)
3752                                          || sv_cmp(cv_const_sv(cv),
3753                                                    cv_const_sv((const CV *)
3754                                                                sref))))) {
3755                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3756                                         (const char *)
3757                                         (CvCONST(cv)
3758                                          ? "Constant subroutine %s::%s redefined"
3759                                          : "Subroutine %s::%s redefined"),
3760                                         HvNAME_get(GvSTASH((const GV *)dstr)),
3761                                         GvENAME(MUTABLE_GV(dstr)));
3762                         }
3763                     }
3764                 if (!intro)
3765                     cv_ckproto_len(cv, (const GV *)dstr,
3766                                    SvPOK(sref) ? SvPVX_const(sref) : NULL,
3767                                    SvPOK(sref) ? SvCUR(sref) : 0);
3768             }
3769             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3770             GvASSUMECV_on(dstr);
3771             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3772         }
3773         *location = sref;
3774         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3775             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3776             GvFLAGS(dstr) |= import_flag;
3777         }
3778         break;
3779     }
3780     SvREFCNT_dec(dref);
3781     if (SvTAINTED(sstr))
3782         SvTAINT(dstr);
3783     return;
3784 }
3785
3786 void
3787 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3788 {
3789     dVAR;
3790     register U32 sflags;
3791     register int dtype;
3792     register svtype stype;
3793
3794     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3795
3796     if (sstr == dstr)
3797         return;
3798
3799     if (SvIS_FREED(dstr)) {
3800         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3801                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3802     }
3803     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3804     if (!sstr)
3805         sstr = &PL_sv_undef;
3806     if (SvIS_FREED(sstr)) {
3807         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3808                    (void*)sstr, (void*)dstr);
3809     }
3810     stype = SvTYPE(sstr);
3811     dtype = SvTYPE(dstr);
3812
3813     (void)SvAMAGIC_off(dstr);
3814     if ( SvVOK(dstr) )
3815     {
3816         /* need to nuke the magic */
3817         mg_free(dstr);
3818     }
3819
3820     /* There's a lot of redundancy below but we're going for speed here */
3821
3822     switch (stype) {
3823     case SVt_NULL:
3824       undef_sstr:
3825         if (dtype != SVt_PVGV) {
3826             (void)SvOK_off(dstr);
3827             return;
3828         }
3829         break;
3830     case SVt_IV:
3831         if (SvIOK(sstr)) {
3832             switch (dtype) {
3833             case SVt_NULL:
3834                 sv_upgrade(dstr, SVt_IV);
3835                 break;
3836             case SVt_NV:
3837             case SVt_PV:
3838                 sv_upgrade(dstr, SVt_PVIV);
3839                 break;
3840             case SVt_PVGV:
3841                 goto end_of_first_switch;
3842             }
3843             (void)SvIOK_only(dstr);
3844             SvIV_set(dstr,  SvIVX(sstr));
3845             if (SvIsUV(sstr))
3846                 SvIsUV_on(dstr);
3847             /* SvTAINTED can only be true if the SV has taint magic, which in
3848                turn means that the SV type is PVMG (or greater). This is the
3849                case statement for SVt_IV, so this cannot be true (whatever gcov
3850                may say).  */
3851             assert(!SvTAINTED(sstr));
3852             return;
3853         }
3854         if (!SvROK(sstr))
3855             goto undef_sstr;
3856         if (dtype < SVt_PV && dtype != SVt_IV)
3857             sv_upgrade(dstr, SVt_IV);
3858         break;
3859
3860     case SVt_NV:
3861         if (SvNOK(sstr)) {
3862             switch (dtype) {
3863             case SVt_NULL:
3864             case SVt_IV:
3865                 sv_upgrade(dstr, SVt_NV);
3866                 break;
3867             case SVt_PV:
3868             case SVt_PVIV:
3869                 sv_upgrade(dstr, SVt_PVNV);
3870                 break;
3871             case SVt_PVGV:
3872                 goto end_of_first_switch;
3873             }
3874             SvNV_set(dstr, SvNVX(sstr));
3875             (void)SvNOK_only(dstr);
3876             /* SvTAINTED can only be true if the SV has taint magic, which in
3877                turn means that the SV type is PVMG (or greater). This is the
3878                case statement for SVt_NV, so this cannot be true (whatever gcov
3879                may say).  */
3880             assert(!SvTAINTED(sstr));
3881             return;
3882         }
3883         goto undef_sstr;
3884
3885     case SVt_PVFM:
3886 #ifdef PERL_OLD_COPY_ON_WRITE
3887         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3888             if (dtype < SVt_PVIV)
3889                 sv_upgrade(dstr, SVt_PVIV);
3890             break;
3891         }
3892         /* Fall through */
3893 #endif
3894     case SVt_REGEXP:
3895     case SVt_PV:
3896         if (dtype < SVt_PV)
3897             sv_upgrade(dstr, SVt_PV);
3898         break;
3899     case SVt_PVIV:
3900         if (dtype < SVt_PVIV)
3901             sv_upgrade(dstr, SVt_PVIV);
3902         break;
3903     case SVt_PVNV:
3904         if (dtype < SVt_PVNV)
3905             sv_upgrade(dstr, SVt_PVNV);
3906         break;
3907     default:
3908         {
3909         const char * const type = sv_reftype(sstr,0);
3910         if (PL_op)
3911             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_NAME(PL_op));
3912         else
3913             Perl_croak(aTHX_ "Bizarre copy of %s", type);
3914         }
3915         break;
3916
3917         /* case SVt_BIND: */
3918     case SVt_PVLV:
3919     case SVt_PVGV:
3920         if (isGV_with_GP(sstr) && dtype <= SVt_PVGV) {
3921             glob_assign_glob(dstr, sstr, dtype);
3922             return;
3923         }
3924         /* SvVALID means that this PVGV is playing at being an FBM.  */
3925         /*FALLTHROUGH*/
3926
3927     case SVt_PVMG:
3928         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3929             mg_get(sstr);
3930             if (SvTYPE(sstr) != stype) {
3931                 stype = SvTYPE(sstr);
3932                 if (isGV_with_GP(sstr) && stype == SVt_PVGV && dtype <= SVt_PVGV) {
3933                     glob_assign_glob(dstr, sstr, dtype);
3934                     return;
3935                 }
3936             }
3937         }
3938         if (stype == SVt_PVLV)
3939             SvUPGRADE(dstr, SVt_PVNV);
3940         else
3941             SvUPGRADE(dstr, (svtype)stype);
3942     }
3943  end_of_first_switch:
3944
3945     /* dstr may have been upgraded.  */
3946     dtype = SvTYPE(dstr);
3947     sflags = SvFLAGS(sstr);
3948
3949     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
3950         /* Assigning to a subroutine sets the prototype.  */
3951         if (SvOK(sstr)) {
3952             STRLEN len;
3953             const char *const ptr = SvPV_const(sstr, len);
3954
3955             SvGROW(dstr, len + 1);
3956             Copy(ptr, SvPVX(dstr), len + 1, char);
3957             SvCUR_set(dstr, len);
3958             SvPOK_only(dstr);
3959             SvFLAGS(dstr) |= sflags & SVf_UTF8;
3960         } else {
3961             SvOK_off(dstr);
3962         }
3963     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
3964         const char * const type = sv_reftype(dstr,0);
3965         if (PL_op)
3966             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_NAME(PL_op));
3967         else
3968             Perl_croak(aTHX_ "Cannot copy to %s", type);
3969     } else if (sflags & SVf_ROK) {
3970         if (isGV_with_GP(dstr) && dtype == SVt_PVGV
3971             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
3972             sstr = SvRV(sstr);
3973             if (sstr == dstr) {
3974                 if (GvIMPORTED(dstr) != GVf_IMPORTED
3975                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3976                 {
3977                     GvIMPORTED_on(dstr);
3978                 }
3979                 GvMULTI_on(dstr);
3980                 return;
3981             }
3982             glob_assign_glob(dstr, sstr, dtype);
3983             return;
3984         }
3985
3986         if (dtype >= SVt_PV) {
3987             if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
3988                 glob_assign_ref(dstr, sstr);
3989                 return;
3990             }
3991             if (SvPVX_const(dstr)) {
3992                 SvPV_free(dstr);
3993                 SvLEN_set(dstr, 0);
3994                 SvCUR_set(dstr, 0);
3995             }
3996         }
3997         (void)SvOK_off(dstr);
3998         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
3999         SvFLAGS(dstr) |= sflags & SVf_ROK;
4000         assert(!(sflags & SVp_NOK));
4001         assert(!(sflags & SVp_IOK));
4002         assert(!(sflags & SVf_NOK));
4003         assert(!(sflags & SVf_IOK));
4004     }
4005     else if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
4006         if (!(sflags & SVf_OK)) {
4007             if (ckWARN(WARN_MISC))
4008                 Perl_warner(aTHX_ packWARN(WARN_MISC),
4009                             "Undefined value assigned to typeglob");
4010         }
4011         else {
4012             GV *gv = gv_fetchsv(sstr, GV_ADD, SVt_PVGV);
4013             if (dstr != (const SV *)gv) {
4014                 if (GvGP(dstr))
4015                     gp_free(MUTABLE_GV(dstr));
4016                 GvGP(dstr) = gp_ref(GvGP(gv));
4017             }
4018         }
4019     }
4020     else if (sflags & SVp_POK) {
4021         bool isSwipe = 0;
4022
4023         /*
4024          * Check to see if we can just swipe the string.  If so, it's a
4025          * possible small lose on short strings, but a big win on long ones.
4026          * It might even be a win on short strings if SvPVX_const(dstr)
4027          * has to be allocated and SvPVX_const(sstr) has to be freed.
4028          * Likewise if we can set up COW rather than doing an actual copy, we
4029          * drop to the else clause, as the swipe code and the COW setup code
4030          * have much in common.
4031          */
4032
4033         /* Whichever path we take through the next code, we want this true,
4034            and doing it now facilitates the COW check.  */
4035         (void)SvPOK_only(dstr);
4036
4037         if (
4038             /* If we're already COW then this clause is not true, and if COW
4039                is allowed then we drop down to the else and make dest COW 
4040                with us.  If caller hasn't said that we're allowed to COW
4041                shared hash keys then we don't do the COW setup, even if the
4042                source scalar is a shared hash key scalar.  */
4043             (((flags & SV_COW_SHARED_HASH_KEYS)
4044                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4045                : 1 /* If making a COW copy is forbidden then the behaviour we
4046                        desire is as if the source SV isn't actually already
4047                        COW, even if it is.  So we act as if the source flags
4048                        are not COW, rather than actually testing them.  */
4049               )
4050 #ifndef PERL_OLD_COPY_ON_WRITE
4051              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4052                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4053                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4054                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4055                 but in turn, it's somewhat dead code, never expected to go
4056                 live, but more kept as a placeholder on how to do it better
4057                 in a newer implementation.  */
4058              /* If we are COW and dstr is a suitable target then we drop down
4059                 into the else and make dest a COW of us.  */
4060              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4061 #endif
4062              )
4063             &&
4064             !(isSwipe =
4065                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4066                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4067                  (!(flags & SV_NOSTEAL)) &&
4068                                         /* and we're allowed to steal temps */
4069                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4070                  SvLEN(sstr)    &&        /* and really is a string */
4071                                 /* and won't be needed again, potentially */
4072               !(PL_op && PL_op->op_type == OP_AASSIGN))
4073 #ifdef PERL_OLD_COPY_ON_WRITE
4074             && ((flags & SV_COW_SHARED_HASH_KEYS)
4075                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4076                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4077                      && SvTYPE(sstr) >= SVt_PVIV))
4078                 : 1)
4079 #endif
4080             ) {
4081             /* Failed the swipe test, and it's not a shared hash key either.
4082                Have to copy the string.  */
4083             STRLEN len = SvCUR(sstr);
4084             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4085             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4086             SvCUR_set(dstr, len);
4087             *SvEND(dstr) = '\0';
4088         } else {
4089             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4090                be true in here.  */
4091             /* Either it's a shared hash key, or it's suitable for
4092                copy-on-write or we can swipe the string.  */
4093             if (DEBUG_C_TEST) {
4094                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4095                 sv_dump(sstr);
4096                 sv_dump(dstr);
4097             }
4098 #ifdef PERL_OLD_COPY_ON_WRITE
4099             if (!isSwipe) {
4100                 /* I believe I should acquire a global SV mutex if
4101                    it's a COW sv (not a shared hash key) to stop
4102                    it going un copy-on-write.
4103                    If the source SV has gone un copy on write between up there
4104                    and down here, then (assert() that) it is of the correct
4105                    form to make it copy on write again */
4106                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4107                     != (SVf_FAKE | SVf_READONLY)) {
4108                     SvREADONLY_on(sstr);
4109                     SvFAKE_on(sstr);
4110                     /* Make the source SV into a loop of 1.
4111                        (about to become 2) */
4112                     SV_COW_NEXT_SV_SET(sstr, sstr);
4113                 }
4114             }
4115 #endif
4116             /* Initial code is common.  */
4117             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4118                 SvPV_free(dstr);
4119             }
4120
4121             if (!isSwipe) {
4122                 /* making another shared SV.  */
4123                 STRLEN cur = SvCUR(sstr);
4124                 STRLEN len = SvLEN(sstr);
4125 #ifdef PERL_OLD_COPY_ON_WRITE
4126                 if (len) {
4127                     assert (SvTYPE(dstr) >= SVt_PVIV);
4128                     /* SvIsCOW_normal */
4129                     /* splice us in between source and next-after-source.  */
4130                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4131                     SV_COW_NEXT_SV_SET(sstr, dstr);
4132                     SvPV_set(dstr, SvPVX_mutable(sstr));
4133                 } else
4134 #endif
4135                 {
4136                     /* SvIsCOW_shared_hash */
4137                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4138                                           "Copy on write: Sharing hash\n"));
4139
4140                     assert (SvTYPE(dstr) >= SVt_PV);
4141                     SvPV_set(dstr,
4142                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4143                 }
4144                 SvLEN_set(dstr, len);
4145                 SvCUR_set(dstr, cur);
4146                 SvREADONLY_on(dstr);
4147                 SvFAKE_on(dstr);
4148                 /* Relesase a global SV mutex.  */
4149             }
4150             else
4151                 {       /* Passes the swipe test.  */
4152                 SvPV_set(dstr, SvPVX_mutable(sstr));
4153                 SvLEN_set(dstr, SvLEN(sstr));
4154                 SvCUR_set(dstr, SvCUR(sstr));
4155
4156                 SvTEMP_off(dstr);
4157                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4158                 SvPV_set(sstr, NULL);
4159                 SvLEN_set(sstr, 0);
4160                 SvCUR_set(sstr, 0);
4161                 SvTEMP_off(sstr);
4162             }
4163         }
4164         if (sflags & SVp_NOK) {
4165             SvNV_set(dstr, SvNVX(sstr));
4166         }
4167         if (sflags & SVp_IOK) {
4168             SvIV_set(dstr, SvIVX(sstr));
4169             /* Must do this otherwise some other overloaded use of 0x80000000
4170                gets confused. I guess SVpbm_VALID */
4171             if (sflags & SVf_IVisUV)
4172                 SvIsUV_on(dstr);
4173         }
4174         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4175         {
4176             const MAGIC * const smg = SvVSTRING_mg(sstr);
4177             if (smg) {
4178                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4179                          smg->mg_ptr, smg->mg_len);
4180                 SvRMAGICAL_on(dstr);
4181             }
4182         }
4183     }
4184     else if (sflags & (SVp_IOK|SVp_NOK)) {
4185         (void)SvOK_off(dstr);
4186         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4187         if (sflags & SVp_IOK) {
4188             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4189             SvIV_set(dstr, SvIVX(sstr));
4190         }
4191         if (sflags & SVp_NOK) {
4192             SvNV_set(dstr, SvNVX(sstr));
4193         }
4194     }
4195     else {
4196         if (isGV_with_GP(sstr)) {
4197             /* This stringification rule for globs is spread in 3 places.
4198                This feels bad. FIXME.  */
4199             const U32 wasfake = sflags & SVf_FAKE;
4200
4201             /* FAKE globs can get coerced, so need to turn this off
4202                temporarily if it is on.  */
4203             SvFAKE_off(sstr);
4204             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4205             SvFLAGS(sstr) |= wasfake;
4206         }
4207         else
4208             (void)SvOK_off(dstr);
4209     }
4210     if (SvTAINTED(sstr))
4211         SvTAINT(dstr);
4212 }
4213
4214 /*
4215 =for apidoc sv_setsv_mg
4216
4217 Like C<sv_setsv>, but also handles 'set' magic.
4218
4219 =cut
4220 */
4221
4222 void
4223 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4224 {
4225     PERL_ARGS_ASSERT_SV_SETSV_MG;
4226
4227     sv_setsv(dstr,sstr);
4228     SvSETMAGIC(dstr);
4229 }
4230
4231 #ifdef PERL_OLD_COPY_ON_WRITE
4232 SV *
4233 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4234 {
4235     STRLEN cur = SvCUR(sstr);
4236     STRLEN len = SvLEN(sstr);
4237     register char *new_pv;
4238
4239     PERL_ARGS_ASSERT_SV_SETSV_COW;
4240
4241     if (DEBUG_C_TEST) {
4242         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4243                       (void*)sstr, (void*)dstr);
4244         sv_dump(sstr);
4245         if (dstr)
4246                     sv_dump(dstr);
4247     }
4248
4249     if (dstr) {
4250         if (SvTHINKFIRST(dstr))
4251             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4252         else if (SvPVX_const(dstr))
4253             Safefree(SvPVX_const(dstr));
4254     }
4255     else
4256         new_SV(dstr);
4257     SvUPGRADE(dstr, SVt_PVIV);
4258
4259     assert (SvPOK(sstr));
4260     assert (SvPOKp(sstr));
4261     assert (!SvIOK(sstr));
4262     assert (!SvIOKp(sstr));
4263     assert (!SvNOK(sstr));
4264     assert (!SvNOKp(sstr));
4265
4266     if (SvIsCOW(sstr)) {
4267
4268         if (SvLEN(sstr) == 0) {
4269             /* source is a COW shared hash key.  */
4270             DEBUG_C(PerlIO_printf(Perl_debug_log,
4271                                   "Fast copy on write: Sharing hash\n"));
4272             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4273             goto common_exit;
4274         }
4275         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4276     } else {
4277         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4278         SvUPGRADE(sstr, SVt_PVIV);
4279         SvREADONLY_on(sstr);
4280         SvFAKE_on(sstr);
4281         DEBUG_C(PerlIO_printf(Perl_debug_log,
4282                               "Fast copy on write: Converting sstr to COW\n"));
4283         SV_COW_NEXT_SV_SET(dstr, sstr);
4284     }
4285     SV_COW_NEXT_SV_SET(sstr, dstr);
4286     new_pv = SvPVX_mutable(sstr);
4287
4288   common_exit:
4289     SvPV_set(dstr, new_pv);
4290     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4291     if (SvUTF8(sstr))
4292         SvUTF8_on(dstr);
4293     SvLEN_set(dstr, len);
4294     SvCUR_set(dstr, cur);
4295     if (DEBUG_C_TEST) {
4296         sv_dump(dstr);
4297     }
4298     return dstr;
4299 }
4300 #endif
4301
4302 /*
4303 =for apidoc sv_setpvn
4304
4305 Copies a string into an SV.  The C<len> parameter indicates the number of
4306 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4307 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4308
4309 =cut
4310 */
4311
4312 void
4313 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4314 {
4315     dVAR;
4316     register char *dptr;
4317
4318     PERL_ARGS_ASSERT_SV_SETPVN;
4319
4320     SV_CHECK_THINKFIRST_COW_DROP(sv);
4321     if (!ptr) {
4322         (void)SvOK_off(sv);
4323         return;
4324     }
4325     else {
4326         /* len is STRLEN which is unsigned, need to copy to signed */
4327         const IV iv = len;
4328         if (iv < 0)
4329             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4330     }
4331     SvUPGRADE(sv, SVt_PV);
4332
4333     dptr = SvGROW(sv, len + 1);
4334     Move(ptr,dptr,len,char);
4335     dptr[len] = '\0';
4336     SvCUR_set(sv, len);
4337     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4338     SvTAINT(sv);
4339 }
4340
4341 /*
4342 =for apidoc sv_setpvn_mg
4343
4344 Like C<sv_setpvn>, but also handles 'set' magic.
4345
4346 =cut
4347 */
4348
4349 void
4350 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4351 {
4352     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4353
4354     sv_setpvn(sv,ptr,len);
4355     SvSETMAGIC(sv);
4356 }
4357
4358 /*
4359 =for apidoc sv_setpv
4360
4361 Copies a string into an SV.  The string must be null-terminated.  Does not
4362 handle 'set' magic.  See C<sv_setpv_mg>.
4363
4364 =cut
4365 */
4366
4367 void
4368 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4369 {
4370     dVAR;
4371     register STRLEN len;
4372
4373     PERL_ARGS_ASSERT_SV_SETPV;
4374
4375     SV_CHECK_THINKFIRST_COW_DROP(sv);
4376     if (!ptr) {
4377         (void)SvOK_off(sv);
4378         return;
4379     }
4380     len = strlen(ptr);
4381     SvUPGRADE(sv, SVt_PV);
4382
4383     SvGROW(sv, len + 1);
4384     Move(ptr,SvPVX(sv),len+1,char);
4385     SvCUR_set(sv, len);
4386     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4387     SvTAINT(sv);
4388 }
4389
4390 /*
4391 =for apidoc sv_setpv_mg
4392
4393 Like C<sv_setpv>, but also handles 'set' magic.
4394
4395 =cut
4396 */
4397
4398 void
4399 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4400 {
4401     PERL_ARGS_ASSERT_SV_SETPV_MG;
4402
4403     sv_setpv(sv,ptr);
4404     SvSETMAGIC(sv);
4405 }
4406
4407 /*
4408 =for apidoc sv_usepvn_flags
4409
4410 Tells an SV to use C<ptr> to find its string value.  Normally the
4411 string is stored inside the SV but sv_usepvn allows the SV to use an
4412 outside string.  The C<ptr> should point to memory that was allocated
4413 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4414 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4415 so that pointer should not be freed or used by the programmer after
4416 giving it to sv_usepvn, and neither should any pointers from "behind"
4417 that pointer (e.g. ptr + 1) be used.
4418
4419 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4420 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4421 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4422 C<len>, and already meets the requirements for storing in C<SvPVX>)
4423
4424 =cut
4425 */
4426
4427 void
4428 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4429 {
4430     dVAR;
4431     STRLEN allocate;
4432
4433     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4434
4435     SV_CHECK_THINKFIRST_COW_DROP(sv);
4436     SvUPGRADE(sv, SVt_PV);
4437     if (!ptr) {
4438         (void)SvOK_off(sv);
4439         if (flags & SV_SMAGIC)
4440             SvSETMAGIC(sv);
4441         return;
4442     }
4443     if (SvPVX_const(sv))
4444         SvPV_free(sv);
4445
4446 #ifdef DEBUGGING
4447     if (flags & SV_HAS_TRAILING_NUL)
4448         assert(ptr[len] == '\0');
4449 #endif
4450
4451     allocate = (flags & SV_HAS_TRAILING_NUL)
4452         ? len + 1 :
4453 #ifdef Perl_safesysmalloc_size
4454         len + 1;
4455 #else 
4456         PERL_STRLEN_ROUNDUP(len + 1);
4457 #endif
4458     if (flags & SV_HAS_TRAILING_NUL) {
4459         /* It's long enough - do nothing.
4460            Specfically Perl_newCONSTSUB is relying on this.  */
4461     } else {
4462 #ifdef DEBUGGING
4463         /* Force a move to shake out bugs in callers.  */
4464         char *new_ptr = (char*)safemalloc(allocate);
4465         Copy(ptr, new_ptr, len, char);
4466         PoisonFree(ptr,len,char);
4467         Safefree(ptr);
4468         ptr = new_ptr;
4469 #else
4470         ptr = (char*) saferealloc (ptr, allocate);
4471 #endif
4472     }
4473 #ifdef Perl_safesysmalloc_size
4474     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4475 #else
4476     SvLEN_set(sv, allocate);
4477 #endif
4478     SvCUR_set(sv, len);
4479     SvPV_set(sv, ptr);
4480     if (!(flags & SV_HAS_TRAILING_NUL)) {
4481         ptr[len] = '\0';
4482     }
4483     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4484     SvTAINT(sv);
4485     if (flags & SV_SMAGIC)
4486         SvSETMAGIC(sv);
4487 }
4488
4489 #ifdef PERL_OLD_COPY_ON_WRITE
4490 /* Need to do this *after* making the SV normal, as we need the buffer
4491    pointer to remain valid until after we've copied it.  If we let go too early,
4492    another thread could invalidate it by unsharing last of the same hash key
4493    (which it can do by means other than releasing copy-on-write Svs)
4494    or by changing the other copy-on-write SVs in the loop.  */
4495 STATIC void
4496 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4497 {
4498     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4499
4500     { /* this SV was SvIsCOW_normal(sv) */
4501          /* we need to find the SV pointing to us.  */
4502         SV *current = SV_COW_NEXT_SV(after);
4503
4504         if (current == sv) {
4505             /* The SV we point to points back to us (there were only two of us
4506                in the loop.)
4507                Hence other SV is no longer copy on write either.  */
4508             SvFAKE_off(after);
4509             SvREADONLY_off(after);
4510         } else {
4511             /* We need to follow the pointers around the loop.  */
4512             SV *next;
4513             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4514                 assert (next);
4515                 current = next;
4516                  /* don't loop forever if the structure is bust, and we have
4517                     a pointer into a closed loop.  */
4518                 assert (current != after);
4519                 assert (SvPVX_const(current) == pvx);
4520             }
4521             /* Make the SV before us point to the SV after us.  */
4522             SV_COW_NEXT_SV_SET(current, after);
4523         }
4524     }
4525 }
4526 #endif
4527 /*
4528 =for apidoc sv_force_normal_flags
4529
4530 Undo various types of fakery on an SV: if the PV is a shared string, make
4531 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4532 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4533 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4534 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4535 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4536 set to some other value.) In addition, the C<flags> parameter gets passed to
4537 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4538 with flags set to 0.
4539
4540 =cut
4541 */
4542
4543 void
4544 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4545 {
4546     dVAR;
4547
4548     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4549
4550 #ifdef PERL_OLD_COPY_ON_WRITE
4551     if (SvREADONLY(sv)) {
4552         /* At this point I believe I should acquire a global SV mutex.  */
4553         if (SvFAKE(sv)) {
4554             const char * const pvx = SvPVX_const(sv);
4555             const STRLEN len = SvLEN(sv);
4556             const STRLEN cur = SvCUR(sv);
4557             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4558                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4559                we'll fail an assertion.  */
4560             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4561
4562             if (DEBUG_C_TEST) {
4563                 PerlIO_printf(Perl_debug_log,
4564                               "Copy on write: Force normal %ld\n",
4565                               (long) flags);
4566                 sv_dump(sv);
4567             }
4568             SvFAKE_off(sv);
4569             SvREADONLY_off(sv);
4570             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4571             SvPV_set(sv, NULL);
4572             SvLEN_set(sv, 0);
4573             if (flags & SV_COW_DROP_PV) {
4574                 /* OK, so we don't need to copy our buffer.  */
4575                 SvPOK_off(sv);
4576             } else {
4577                 SvGROW(sv, cur + 1);
4578                 Move(pvx,SvPVX(sv),cur,char);
4579                 SvCUR_set(sv, cur);
4580                 *SvEND(sv) = '\0';
4581             }
4582             if (len) {
4583                 sv_release_COW(sv, pvx, next);
4584             } else {
4585                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4586             }
4587             if (DEBUG_C_TEST) {
4588                 sv_dump(sv);
4589             }
4590         }
4591         else if (IN_PERL_RUNTIME)
4592             Perl_croak(aTHX_ "%s", PL_no_modify);
4593         /* At this point I believe that I can drop the global SV mutex.  */
4594     }
4595 #else
4596     if (SvREADONLY(sv)) {
4597         if (SvFAKE(sv)) {
4598             const char * const pvx = SvPVX_const(sv);
4599             const STRLEN len = SvCUR(sv);
4600             SvFAKE_off(sv);
4601             SvREADONLY_off(sv);
4602             SvPV_set(sv, NULL);
4603             SvLEN_set(sv, 0);
4604             SvGROW(sv, len + 1);
4605             Move(pvx,SvPVX(sv),len,char);
4606             *SvEND(sv) = '\0';
4607             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4608         }
4609         else if (IN_PERL_RUNTIME)
4610             Perl_croak(aTHX_ "%s", PL_no_modify);
4611     }
4612 #endif
4613     if (SvROK(sv))
4614         sv_unref_flags(sv, flags);
4615     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4616         sv_unglob(sv);
4617 }
4618
4619 /*
4620 =for apidoc sv_chop
4621
4622 Efficient removal of characters from the beginning of the string buffer.
4623 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4624 the string buffer.  The C<ptr> becomes the first character of the adjusted
4625 string. Uses the "OOK hack".
4626 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4627 refer to the same chunk of data.
4628
4629 =cut
4630 */
4631
4632 void
4633 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4634 {
4635     STRLEN delta;
4636     STRLEN old_delta;
4637     U8 *p;
4638 #ifdef DEBUGGING
4639     const U8 *real_start;
4640 #endif
4641     STRLEN max_delta;
4642
4643     PERL_ARGS_ASSERT_SV_CHOP;
4644
4645     if (!ptr || !SvPOKp(sv))
4646         return;
4647     delta = ptr - SvPVX_const(sv);
4648     if (!delta) {
4649         /* Nothing to do.  */
4650         return;
4651     }
4652     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), but after this line,
4653        nothing uses the value of ptr any more.  */
4654     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4655     if (ptr <= SvPVX_const(sv))
4656         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4657                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4658     SV_CHECK_THINKFIRST(sv);
4659     if (delta > max_delta)
4660         Perl_croak(aTHX_ "panic: sv_chop ptr=%p (was %p), start=%p, end=%p",
4661                    SvPVX_const(sv) + delta, ptr, SvPVX_const(sv),
4662                    SvPVX_const(sv) + max_delta);
4663
4664     if (!SvOOK(sv)) {
4665         if (!SvLEN(sv)) { /* make copy of shared string */
4666             const char *pvx = SvPVX_const(sv);
4667             const STRLEN len = SvCUR(sv);
4668             SvGROW(sv, len + 1);
4669             Move(pvx,SvPVX(sv),len,char);
4670             *SvEND(sv) = '\0';
4671         }
4672         SvFLAGS(sv) |= SVf_OOK;
4673         old_delta = 0;
4674     } else {
4675         SvOOK_offset(sv, old_delta);
4676     }
4677     SvLEN_set(sv, SvLEN(sv) - delta);
4678     SvCUR_set(sv, SvCUR(sv) - delta);
4679     SvPV_set(sv, SvPVX(sv) + delta);
4680
4681     p = (U8 *)SvPVX_const(sv);
4682
4683     delta += old_delta;
4684
4685 #ifdef DEBUGGING
4686     real_start = p - delta;
4687 #endif
4688
4689     assert(delta);
4690     if (delta < 0x100) {
4691         *--p = (U8) delta;
4692     } else {
4693         *--p = 0;
4694         p -= sizeof(STRLEN);
4695         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4696     }
4697
4698 #ifdef DEBUGGING
4699     /* Fill the preceding buffer with sentinals to verify that no-one is
4700        using it.  */
4701     while (p > real_start) {
4702         --p;
4703         *p = (U8)PTR2UV(p);
4704     }
4705 #endif
4706 }
4707
4708 /*
4709 =for apidoc sv_catpvn
4710
4711 Concatenates the string onto the end of the string which is in the SV.  The
4712 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4713 status set, then the bytes appended should be valid UTF-8.
4714 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4715
4716 =for apidoc sv_catpvn_flags
4717
4718 Concatenates the string onto the end of the string which is in the SV.  The
4719 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4720 status set, then the bytes appended should be valid UTF-8.
4721 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4722 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4723 in terms of this function.
4724
4725 =cut
4726 */
4727
4728 void
4729 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4730 {
4731     dVAR;
4732     STRLEN dlen;
4733     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4734
4735     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4736
4737     SvGROW(dsv, dlen + slen + 1);
4738     if (sstr == dstr)
4739         sstr = SvPVX_const(dsv);
4740     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4741     SvCUR_set(dsv, SvCUR(dsv) + slen);
4742     *SvEND(dsv) = '\0';
4743     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4744     SvTAINT(dsv);
4745     if (flags & SV_SMAGIC)
4746         SvSETMAGIC(dsv);
4747 }
4748
4749 /*
4750 =for apidoc sv_catsv
4751
4752 Concatenates the string from SV C<ssv> onto the end of the string in
4753 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4754 not 'set' magic.  See C<sv_catsv_mg>.
4755
4756 =for apidoc sv_catsv_flags
4757
4758 Concatenates the string from SV C<ssv> onto the end of the string in
4759 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4760 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4761 and C<sv_catsv_nomg> are implemented in terms of this function.
4762
4763 =cut */
4764
4765 void
4766 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
4767 {
4768     dVAR;
4769  
4770     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
4771
4772    if (ssv) {
4773         STRLEN slen;
4774         const char *spv = SvPV_const(ssv, slen);
4775         if (spv) {
4776             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4777                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4778                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4779                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4780                 dsv->sv_flags doesn't have that bit set.
4781                 Andy Dougherty  12 Oct 2001
4782             */
4783             const I32 sutf8 = DO_UTF8(ssv);
4784             I32 dutf8;
4785
4786             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4787                 mg_get(dsv);
4788             dutf8 = DO_UTF8(dsv);
4789
4790             if (dutf8 != sutf8) {
4791                 if (dutf8) {
4792                     /* Not modifying source SV, so taking a temporary copy. */
4793                     SV* const csv = newSVpvn_flags(spv, slen, SVs_TEMP);
4794
4795                     sv_utf8_upgrade(csv);
4796                     spv = SvPV_const(csv, slen);
4797                 }
4798                 else
4799                     sv_utf8_upgrade_nomg(dsv);
4800             }
4801             sv_catpvn_nomg(dsv, spv, slen);
4802         }
4803     }
4804     if (flags & SV_SMAGIC)
4805         SvSETMAGIC(dsv);
4806 }
4807
4808 /*
4809 =for apidoc sv_catpv
4810
4811 Concatenates the string onto the end of the string which is in the SV.
4812 If the SV has the UTF-8 status set, then the bytes appended should be
4813 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
4814
4815 =cut */
4816
4817 void
4818 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
4819 {
4820     dVAR;
4821     register STRLEN len;
4822     STRLEN tlen;
4823     char *junk;
4824
4825     PERL_ARGS_ASSERT_SV_CATPV;
4826
4827     if (!ptr)
4828         return;
4829     junk = SvPV_force(sv, tlen);
4830     len = strlen(ptr);
4831     SvGROW(sv, tlen + len + 1);
4832     if (ptr == junk)
4833         ptr = SvPVX_const(sv);
4834     Move(ptr,SvPVX(sv)+tlen,len+1,char);
4835     SvCUR_set(sv, SvCUR(sv) + len);
4836     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4837     SvTAINT(sv);
4838 }
4839
4840 /*
4841 =for apidoc sv_catpv_mg
4842
4843 Like C<sv_catpv>, but also handles 'set' magic.
4844
4845 =cut
4846 */
4847
4848 void
4849 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4850 {
4851     PERL_ARGS_ASSERT_SV_CATPV_MG;
4852
4853     sv_catpv(sv,ptr);
4854     SvSETMAGIC(sv);
4855 }
4856
4857 /*
4858 =for apidoc newSV
4859
4860 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4861 bytes of preallocated string space the SV should have.  An extra byte for a
4862 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4863 space is allocated.)  The reference count for the new SV is set to 1.
4864
4865 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4866 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4867 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4868 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4869 modules supporting older perls.
4870
4871 =cut
4872 */
4873
4874 SV *
4875 Perl_newSV(pTHX_ const STRLEN len)
4876 {
4877     dVAR;
4878     register SV *sv;
4879
4880     new_SV(sv);
4881     if (len) {
4882         sv_upgrade(sv, SVt_PV);
4883         SvGROW(sv, len + 1);
4884     }
4885     return sv;
4886 }
4887 /*
4888 =for apidoc sv_magicext
4889
4890 Adds magic to an SV, upgrading it if necessary. Applies the
4891 supplied vtable and returns a pointer to the magic added.
4892
4893 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4894 In particular, you can add magic to SvREADONLY SVs, and add more than
4895 one instance of the same 'how'.
4896
4897 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4898 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4899 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4900 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4901
4902 (This is now used as a subroutine by C<sv_magic>.)
4903
4904 =cut
4905 */
4906 MAGIC * 
4907 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
4908                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
4909 {
4910     dVAR;
4911     MAGIC* mg;
4912
4913     PERL_ARGS_ASSERT_SV_MAGICEXT;
4914
4915     SvUPGRADE(sv, SVt_PVMG);
4916     Newxz(mg, 1, MAGIC);
4917     mg->mg_moremagic = SvMAGIC(sv);
4918     SvMAGIC_set(sv, mg);
4919
4920     /* Sometimes a magic contains a reference loop, where the sv and
4921        object refer to each other.  To prevent a reference loop that
4922        would prevent such objects being freed, we look for such loops
4923        and if we find one we avoid incrementing the object refcount.
4924
4925        Note we cannot do this to avoid self-tie loops as intervening RV must
4926        have its REFCNT incremented to keep it in existence.
4927
4928     */
4929     if (!obj || obj == sv ||
4930         how == PERL_MAGIC_arylen ||
4931         how == PERL_MAGIC_symtab ||
4932         (SvTYPE(obj) == SVt_PVGV &&
4933             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
4934              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
4935              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
4936     {
4937         mg->mg_obj = obj;
4938     }
4939     else {
4940         mg->mg_obj = SvREFCNT_inc_simple(obj);
4941         mg->mg_flags |= MGf_REFCOUNTED;
4942     }
4943
4944     /* Normal self-ties simply pass a null object, and instead of
4945        using mg_obj directly, use the SvTIED_obj macro to produce a
4946        new RV as needed.  For glob "self-ties", we are tieing the PVIO
4947        with an RV obj pointing to the glob containing the PVIO.  In
4948        this case, to avoid a reference loop, we need to weaken the
4949        reference.
4950     */
4951
4952     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
4953         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
4954     {
4955       sv_rvweaken(obj);
4956     }
4957
4958     mg->mg_type = how;
4959     mg->mg_len = namlen;
4960     if (name) {
4961         if (namlen > 0)
4962             mg->mg_ptr = savepvn(name, namlen);
4963         else if (namlen == HEf_SVKEY) {
4964             /* Yes, this is casting away const. This is only for the case of
4965                HEf_SVKEY. I think we need to document this abberation of the
4966                constness of the API, rather than making name non-const, as
4967                that change propagating outwards a long way.  */
4968             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
4969         } else
4970             mg->mg_ptr = (char *) name;
4971     }
4972     mg->mg_virtual = (MGVTBL *) vtable;
4973
4974     mg_magical(sv);
4975     if (SvGMAGICAL(sv))
4976         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4977     return mg;
4978 }
4979
4980 /*
4981 =for apidoc sv_magic
4982
4983 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4984 then adds a new magic item of type C<how> to the head of the magic list.
4985
4986 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
4987 handling of the C<name> and C<namlen> arguments.
4988
4989 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
4990 to add more than one instance of the same 'how'.
4991
4992 =cut
4993 */
4994
4995 void
4996 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
4997              const char *const name, const I32 namlen)
4998 {
4999     dVAR;
5000     const MGVTBL *vtable;
5001     MAGIC* mg;
5002
5003     PERL_ARGS_ASSERT_SV_MAGIC;
5004
5005 #ifdef PERL_OLD_COPY_ON_WRITE
5006     if (SvIsCOW(sv))
5007         sv_force_normal_flags(sv, 0);
5008 #endif
5009     if (SvREADONLY(sv)) {
5010         if (
5011             /* its okay to attach magic to shared strings; the subsequent
5012              * upgrade to PVMG will unshare the string */
5013             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
5014
5015             && IN_PERL_RUNTIME
5016             && how != PERL_MAGIC_regex_global
5017             && how != PERL_MAGIC_bm
5018             && how != PERL_MAGIC_fm
5019             && how != PERL_MAGIC_sv
5020             && how != PERL_MAGIC_backref
5021            )
5022         {
5023             Perl_croak(aTHX_ "%s", PL_no_modify);
5024         }
5025     }
5026     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5027         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5028             /* sv_magic() refuses to add a magic of the same 'how' as an
5029                existing one
5030              */
5031             if (how == PERL_MAGIC_taint) {
5032                 mg->mg_len |= 1;
5033                 /* Any scalar which already had taint magic on which someone
5034                    (erroneously?) did SvIOK_on() or similar will now be
5035                    incorrectly sporting public "OK" flags.  */
5036                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5037             }
5038             return;
5039         }
5040     }
5041
5042     switch (how) {
5043     case PERL_MAGIC_sv:
5044         vtable = &PL_vtbl_sv;
5045         break;
5046     case PERL_MAGIC_overload:
5047         vtable = &PL_vtbl_amagic;
5048         break;
5049     case PERL_MAGIC_overload_elem:
5050         vtable = &PL_vtbl_amagicelem;
5051         break;
5052     case PERL_MAGIC_overload_table:
5053         vtable = &PL_vtbl_ovrld;
5054         break;
5055     case PERL_MAGIC_bm:
5056         vtable = &PL_vtbl_bm;
5057         break;
5058     case PERL_MAGIC_regdata:
5059         vtable = &PL_vtbl_regdata;
5060         break;
5061     case PERL_MAGIC_regdatum:
5062         vtable = &PL_vtbl_regdatum;
5063         break;
5064     case PERL_MAGIC_env:
5065         vtable = &PL_vtbl_env;
5066         break;
5067     case PERL_MAGIC_fm:
5068         vtable = &PL_vtbl_fm;
5069         break;
5070     case PERL_MAGIC_envelem:
5071         vtable = &PL_vtbl_envelem;
5072         break;
5073     case PERL_MAGIC_regex_global:
5074         vtable = &PL_vtbl_mglob;
5075         break;
5076     case PERL_MAGIC_isa:
5077         vtable = &PL_vtbl_isa;
5078         break;
5079     case PERL_MAGIC_isaelem:
5080         vtable = &PL_vtbl_isaelem;
5081         break;
5082     case PERL_MAGIC_nkeys:
5083         vtable = &PL_vtbl_nkeys;
5084         break;
5085     case PERL_MAGIC_dbfile:
5086         vtable = NULL;
5087         break;
5088     case PERL_MAGIC_dbline:
5089         vtable = &PL_vtbl_dbline;
5090         break;
5091 #ifdef USE_LOCALE_COLLATE
5092     case PERL_MAGIC_collxfrm:
5093         vtable = &PL_vtbl_collxfrm;
5094         break;
5095 #endif /* USE_LOCALE_COLLATE */
5096     case PERL_MAGIC_tied:
5097         vtable = &PL_vtbl_pack;
5098         break;
5099     case PERL_MAGIC_tiedelem:
5100     case PERL_MAGIC_tiedscalar:
5101         vtable = &PL_vtbl_packelem;
5102         break;
5103     case PERL_MAGIC_qr:
5104         vtable = &PL_vtbl_regexp;
5105         break;
5106     case PERL_MAGIC_hints:
5107         /* As this vtable is all NULL, we can reuse it.  */
5108     case PERL_MAGIC_sig:
5109         vtable = &PL_vtbl_sig;
5110         break;
5111     case PERL_MAGIC_sigelem:
5112         vtable = &PL_vtbl_sigelem;
5113         break;
5114     case PERL_MAGIC_taint:
5115         vtable = &PL_vtbl_taint;
5116         break;
5117     case PERL_MAGIC_uvar:
5118         vtable = &PL_vtbl_uvar;
5119         break;
5120     case PERL_MAGIC_vec:
5121         vtable = &PL_vtbl_vec;
5122         break;
5123     case PERL_MAGIC_arylen_p:
5124     case PERL_MAGIC_rhash:
5125     case PERL_MAGIC_symtab:
5126     case PERL_MAGIC_vstring:
5127         vtable = NULL;
5128         break;
5129     case PERL_MAGIC_utf8:
5130         vtable = &PL_vtbl_utf8;
5131         break;
5132     case PERL_MAGIC_substr:
5133         vtable = &PL_vtbl_substr;
5134         break;
5135     case PERL_MAGIC_defelem:
5136         vtable = &PL_vtbl_defelem;
5137         break;
5138     case PERL_MAGIC_arylen:
5139         vtable = &PL_vtbl_arylen;
5140         break;
5141     case PERL_MAGIC_pos:
5142         vtable = &PL_vtbl_pos;
5143         break;
5144     case PERL_MAGIC_backref:
5145         vtable = &PL_vtbl_backref;
5146         break;
5147     case PERL_MAGIC_hintselem:
5148         vtable = &PL_vtbl_hintselem;
5149         break;
5150     case PERL_MAGIC_ext:
5151         /* Reserved for use by extensions not perl internals.           */
5152         /* Useful for attaching extension internal data to perl vars.   */
5153         /* Note that multiple extensions may clash if magical scalars   */
5154         /* etc holding private data from one are passed to another.     */
5155         vtable = NULL;
5156         break;
5157     default:
5158         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5159     }
5160
5161     /* Rest of work is done else where */
5162     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5163
5164     switch (how) {
5165     case PERL_MAGIC_taint:
5166         mg->mg_len = 1;
5167         break;
5168     case PERL_MAGIC_ext:
5169     case PERL_MAGIC_dbfile:
5170         SvRMAGICAL_on(sv);
5171         break;
5172     }
5173 }
5174
5175 /*
5176 =for apidoc sv_unmagic
5177
5178 Removes all magic of type C<type> from an SV.
5179
5180 =cut
5181 */
5182
5183 int
5184 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5185 {
5186     MAGIC* mg;
5187     MAGIC** mgp;
5188
5189     PERL_ARGS_ASSERT_SV_UNMAGIC;
5190
5191     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5192         return 0;
5193     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5194     for (mg = *mgp; mg; mg = *mgp) {
5195         if (mg->mg_type == type) {
5196             const MGVTBL* const vtbl = mg->mg_virtual;
5197             *mgp = mg->mg_moremagic;
5198             if (vtbl && vtbl->svt_free)
5199                 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
5200             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5201                 if (mg->mg_len > 0)
5202                     Safefree(mg->mg_ptr);
5203                 else if (mg->mg_len == HEf_SVKEY)
5204                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5205                 else if (mg->mg_type == PERL_MAGIC_utf8)
5206                     Safefree(mg->mg_ptr);
5207             }
5208             if (mg->mg_flags & MGf_REFCOUNTED)
5209                 SvREFCNT_dec(mg->mg_obj);
5210             Safefree(mg);
5211         }
5212         else
5213             mgp = &mg->mg_moremagic;
5214     }
5215     if (!SvMAGIC(sv)) {
5216         SvMAGICAL_off(sv);
5217         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5218         SvMAGIC_set(sv, NULL);
5219     }
5220
5221     return 0;
5222 }
5223
5224 /*
5225 =for apidoc sv_rvweaken
5226
5227 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5228 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5229 push a back-reference to this RV onto the array of backreferences
5230 associated with that magic. If the RV is magical, set magic will be
5231 called after the RV is cleared.
5232
5233 =cut
5234 */
5235
5236 SV *
5237 Perl_sv_rvweaken(pTHX_ SV *const sv)
5238 {
5239     SV *tsv;
5240
5241     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5242
5243     if (!SvOK(sv))  /* let undefs pass */
5244         return sv;
5245     if (!SvROK(sv))
5246         Perl_croak(aTHX_ "Can't weaken a nonreference");
5247     else if (SvWEAKREF(sv)) {
5248         if (ckWARN(WARN_MISC))
5249             Perl_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5250         return sv;
5251     }
5252     tsv = SvRV(sv);
5253     Perl_sv_add_backref(aTHX_ tsv, sv);
5254     SvWEAKREF_on(sv);
5255     SvREFCNT_dec(tsv);
5256     return sv;
5257 }
5258
5259 /* Give tsv backref magic if it hasn't already got it, then push a
5260  * back-reference to sv onto the array associated with the backref magic.
5261  */
5262
5263 /* A discussion about the backreferences array and its refcount:
5264  *
5265  * The AV holding the backreferences is pointed to either as the mg_obj of
5266  * PERL_MAGIC_backref, or in the specific case of a HV that has the hv_aux
5267  * structure, from the xhv_backreferences field. (A HV without hv_aux will
5268  * have the standard magic instead.) The array is created with a refcount
5269  * of 2. This means that if during global destruction the array gets
5270  * picked on first to have its refcount decremented by the random zapper,
5271  * it won't actually be freed, meaning it's still theere for when its
5272  * parent gets freed.
5273  * When the parent SV is freed, in the case of magic, the magic is freed,
5274  * Perl_magic_killbackrefs is called which decrements one refcount, then
5275  * mg_obj is freed which kills the second count.
5276  * In the vase of a HV being freed, one ref is removed by
5277  * Perl_hv_kill_backrefs, the other by Perl_sv_kill_backrefs, which it
5278  * calls.
5279  */
5280
5281 void
5282 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5283 {
5284     dVAR;
5285     AV *av;
5286
5287     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5288
5289     if (SvTYPE(tsv) == SVt_PVHV) {
5290         AV **const avp = Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5291
5292         av = *avp;
5293         if (!av) {
5294             /* There is no AV in the offical place - try a fixup.  */
5295             MAGIC *const mg = mg_find(tsv, PERL_MAGIC_backref);
5296
5297             if (mg) {
5298                 /* Aha. They've got it stowed in magic.  Bring it back.  */
5299                 av = MUTABLE_AV(mg->mg_obj);
5300                 /* Stop mg_free decreasing the refernce count.  */
5301                 mg->mg_obj = NULL;
5302                 /* Stop mg_free even calling the destructor, given that
5303                    there's no AV to free up.  */
5304                 mg->mg_virtual = 0;
5305                 sv_unmagic(tsv, PERL_MAGIC_backref);
5306             } else {
5307                 av = newAV();
5308                 AvREAL_off(av);
5309                 SvREFCNT_inc_simple_void(av); /* see discussion above */
5310             }
5311             *avp = av;
5312         }
5313     } else {
5314         const MAGIC *const mg
5315             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5316         if (mg)
5317             av = MUTABLE_AV(mg->mg_obj);
5318         else {
5319             av = newAV();
5320             AvREAL_off(av);
5321             sv_magic(tsv, MUTABLE_SV(av), PERL_MAGIC_backref, NULL, 0);
5322             /* av now has a refcnt of 2; see discussion above */
5323         }
5324     }
5325     if (AvFILLp(av) >= AvMAX(av)) {
5326         av_extend(av, AvFILLp(av)+1);
5327     }
5328     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5329 }
5330
5331 /* delete a back-reference to ourselves from the backref magic associated
5332  * with the SV we point to.
5333  */
5334
5335 STATIC void
5336 S_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5337 {
5338     dVAR;
5339     AV *av = NULL;
5340     SV **svp;
5341     I32 i;
5342
5343     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5344
5345     if (SvTYPE(tsv) == SVt_PVHV && SvOOK(tsv)) {
5346         av = *Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5347         /* We mustn't attempt to "fix up" the hash here by moving the
5348            backreference array back to the hv_aux structure, as that is stored
5349            in the main HvARRAY(), and hfreentries assumes that no-one
5350            reallocates HvARRAY() while it is running.  */
5351     }
5352     if (!av) {
5353         const MAGIC *const mg
5354             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5355         if (mg)
5356             av = MUTABLE_AV(mg->mg_obj);
5357     }
5358
5359     if (!av)
5360         Perl_croak(aTHX_ "panic: del_backref");
5361
5362     assert(!SvIS_FREED(av));
5363
5364     svp = AvARRAY(av);
5365     /* We shouldn't be in here more than once, but for paranoia reasons lets
5366        not assume this.  */
5367     for (i = AvFILLp(av); i >= 0; i--) {
5368         if (svp[i] == sv) {
5369             const SSize_t fill = AvFILLp(av);
5370             if (i != fill) {
5371                 /* We weren't the last entry.
5372                    An unordered list has this property that you can take the
5373                    last element off the end to fill the hole, and it's still
5374                    an unordered list :-)
5375                 */
5376                 svp[i] = svp[fill];
5377             }
5378             svp[fill] = NULL;
5379             AvFILLp(av) = fill - 1;
5380         }
5381     }
5382 }
5383
5384 int
5385 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5386 {
5387     SV **svp = AvARRAY(av);
5388
5389     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5390     PERL_UNUSED_ARG(sv);
5391
5392     assert(!svp || !SvIS_FREED(av));
5393     if (svp) {
5394         SV *const *const last = svp + AvFILLp(av);
5395
5396         while (svp <= last) {
5397             if (*svp) {
5398                 SV *const referrer = *svp;
5399                 if (SvWEAKREF(referrer)) {
5400                     /* XXX Should we check that it hasn't changed? */
5401                     SvRV_set(referrer, 0);
5402                     SvOK_off(referrer);
5403                     SvWEAKREF_off(referrer);
5404                     SvSETMAGIC(referrer);
5405                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5406                            SvTYPE(referrer) == SVt_PVLV) {
5407                     /* You lookin' at me?  */
5408                     assert(GvSTASH(referrer));
5409                     assert(GvSTASH(referrer) == (const HV *)sv);
5410                     GvSTASH(referrer) = 0;
5411                 } else {
5412                     Perl_croak(aTHX_
5413                                "panic: magic_killbackrefs (flags=%"UVxf")",
5414                                (UV)SvFLAGS(referrer));
5415                 }
5416
5417                 *svp = NULL;
5418             }
5419             svp++;
5420         }
5421     }
5422     SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5423     return 0;
5424 }
5425
5426 /*
5427 =for apidoc sv_insert
5428
5429 Inserts a string at the specified offset/length within the SV. Similar to
5430 the Perl substr() function. Handles get magic.
5431
5432 =for apidoc sv_insert_flags
5433
5434 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5435
5436 =cut
5437 */
5438
5439 void
5440 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5441 {
5442     dVAR;
5443     register char *big;
5444     register char *mid;
5445     register char *midend;
5446     register char *bigend;
5447     register I32 i;
5448     STRLEN curlen;
5449
5450     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5451
5452     if (!bigstr)
5453         Perl_croak(aTHX_ "Can't modify non-existent substring");
5454     SvPV_force_flags(bigstr, curlen, flags);
5455     (void)SvPOK_only_UTF8(bigstr);
5456     if (offset + len > curlen) {
5457         SvGROW(bigstr, offset+len+1);
5458         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5459         SvCUR_set(bigstr, offset+len);
5460     }
5461
5462     SvTAINT(bigstr);
5463     i = littlelen - len;
5464     if (i > 0) {                        /* string might grow */
5465         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5466         mid = big + offset + len;
5467         midend = bigend = big + SvCUR(bigstr);
5468         bigend += i;
5469         *bigend = '\0';
5470         while (midend > mid)            /* shove everything down */
5471             *--bigend = *--midend;
5472         Move(little,big+offset,littlelen,char);
5473         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5474         SvSETMAGIC(bigstr);
5475         return;
5476     }
5477     else if (i == 0) {
5478         Move(little,SvPVX(bigstr)+offset,len,char);
5479         SvSETMAGIC(bigstr);
5480         return;
5481     }
5482
5483     big = SvPVX(bigstr);
5484     mid = big + offset;
5485     midend = mid + len;
5486     bigend = big + SvCUR(bigstr);
5487
5488     if (midend > bigend)
5489         Perl_croak(aTHX_ "panic: sv_insert");
5490
5491     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5492         if (littlelen) {
5493             Move(little, mid, littlelen,char);
5494             mid += littlelen;
5495         }
5496         i = bigend - midend;
5497         if (i > 0) {
5498             Move(midend, mid, i,char);
5499             mid += i;
5500         }
5501         *mid = '\0';
5502         SvCUR_set(bigstr, mid - big);
5503     }
5504     else if ((i = mid - big)) { /* faster from front */
5505         midend -= littlelen;
5506         mid = midend;
5507         Move(big, midend - i, i, char);
5508         sv_chop(bigstr,midend-i);
5509         if (littlelen)
5510             Move(little, mid, littlelen,char);
5511     }
5512     else if (littlelen) {
5513         midend -= littlelen;
5514         sv_chop(bigstr,midend);
5515         Move(little,midend,littlelen,char);
5516     }
5517     else {
5518         sv_chop(bigstr,midend);
5519     }
5520     SvSETMAGIC(bigstr);
5521 }
5522
5523 /*
5524 =for apidoc sv_replace
5525
5526 Make the first argument a copy of the second, then delete the original.
5527 The target SV physically takes over ownership of the body of the source SV
5528 and inherits its flags; however, the target keeps any magic it owns,
5529 and any magic in the source is discarded.
5530 Note that this is a rather specialist SV copying operation; most of the
5531 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5532
5533 =cut
5534 */
5535
5536 void
5537 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5538 {
5539     dVAR;
5540     const U32 refcnt = SvREFCNT(sv);
5541
5542     PERL_ARGS_ASSERT_SV_REPLACE;
5543
5544     SV_CHECK_THINKFIRST_COW_DROP(sv);
5545     if (SvREFCNT(nsv) != 1) {
5546         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace() (%"
5547                    UVuf " != 1)", (UV) SvREFCNT(nsv));
5548     }
5549     if (SvMAGICAL(sv)) {
5550         if (SvMAGICAL(nsv))
5551             mg_free(nsv);
5552         else
5553             sv_upgrade(nsv, SVt_PVMG);
5554         SvMAGIC_set(nsv, SvMAGIC(sv));
5555         SvFLAGS(nsv) |= SvMAGICAL(sv);
5556         SvMAGICAL_off(sv);
5557         SvMAGIC_set(sv, NULL);
5558     }
5559     SvREFCNT(sv) = 0;
5560     sv_clear(sv);
5561     assert(!SvREFCNT(sv));
5562 #ifdef DEBUG_LEAKING_SCALARS
5563     sv->sv_flags  = nsv->sv_flags;
5564     sv->sv_any    = nsv->sv_any;
5565     sv->sv_refcnt = nsv->sv_refcnt;
5566     sv->sv_u      = nsv->sv_u;
5567 #else
5568     StructCopy(nsv,sv,SV);
5569 #endif
5570     if(SvTYPE(sv) == SVt_IV) {
5571         SvANY(sv)
5572             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5573     }
5574         
5575
5576 #ifdef PERL_OLD_COPY_ON_WRITE
5577     if (SvIsCOW_normal(nsv)) {
5578         /* We need to follow the pointers around the loop to make the
5579            previous SV point to sv, rather than nsv.  */
5580         SV *next;
5581         SV *current = nsv;
5582         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5583             assert(next);
5584             current = next;
5585             assert(SvPVX_const(current) == SvPVX_const(nsv));
5586         }
5587         /* Make the SV before us point to the SV after us.  */
5588         if (DEBUG_C_TEST) {
5589             PerlIO_printf(Perl_debug_log, "previous is\n");
5590             sv_dump(current);
5591             PerlIO_printf(Perl_debug_log,
5592                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5593                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5594         }
5595         SV_COW_NEXT_SV_SET(current, sv);
5596     }
5597 #endif
5598     SvREFCNT(sv) = refcnt;
5599     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5600     SvREFCNT(nsv) = 0;
5601     del_SV(nsv);
5602 }
5603
5604 /*
5605 =for apidoc sv_clear
5606
5607 Clear an SV: call any destructors, free up any memory used by the body,
5608 and free the body itself. The SV's head is I<not> freed, although
5609 its type is set to all 1's so that it won't inadvertently be assumed
5610 to be live during global destruction etc.
5611 This function should only be called when REFCNT is zero. Most of the time
5612 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5613 instead.
5614
5615 =cut
5616 */
5617
5618 void
5619 Perl_sv_clear(pTHX_ register SV *const sv)
5620 {
5621     dVAR;
5622     const U32 type = SvTYPE(sv);
5623     const struct body_details *const sv_type_details
5624         = bodies_by_type + type;
5625     HV *stash;
5626
5627     PERL_ARGS_ASSERT_SV_CLEAR;
5628     assert(SvREFCNT(sv) == 0);
5629     assert(SvTYPE(sv) != SVTYPEMASK);
5630
5631     if (type <= SVt_IV) {
5632         /* See the comment in sv.h about the collusion between this early
5633            return and the overloading of the NULL and IV slots in the size
5634            table.  */
5635         if (SvROK(sv)) {
5636             SV * const target = SvRV(sv);
5637             if (SvWEAKREF(sv))
5638                 sv_del_backref(target, sv);
5639             else
5640                 SvREFCNT_dec(target);
5641         }
5642         SvFLAGS(sv) &= SVf_BREAK;
5643         SvFLAGS(sv) |= SVTYPEMASK;
5644         return;
5645     }
5646
5647     if (SvOBJECT(sv)) {
5648         if (PL_defstash &&      /* Still have a symbol table? */
5649             SvDESTROYABLE(sv))
5650         {
5651             dSP;
5652             HV* stash;
5653             do {        
5654                 CV* destructor;
5655                 stash = SvSTASH(sv);
5656                 destructor = StashHANDLER(stash,DESTROY);
5657                 if (destructor) {
5658                     SV* const tmpref = newRV(sv);
5659                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5660                     ENTER;
5661                     PUSHSTACKi(PERLSI_DESTROY);
5662                     EXTEND(SP, 2);
5663                     PUSHMARK(SP);
5664                     PUSHs(tmpref);
5665                     PUTBACK;
5666                     call_sv(MUTABLE_SV(destructor), G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5667                 
5668                 
5669                     POPSTACK;
5670                     SPAGAIN;
5671                     LEAVE;
5672                     if(SvREFCNT(tmpref) < 2) {
5673                         /* tmpref is not kept alive! */
5674                         SvREFCNT(sv)--;
5675                         SvRV_set(tmpref, NULL);
5676                         SvROK_off(tmpref);
5677                     }
5678                     SvREFCNT_dec(tmpref);
5679                 }
5680             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5681
5682
5683             if (SvREFCNT(sv)) {
5684                 if (PL_in_clean_objs)
5685                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5686                           HvNAME_get(stash));
5687                 /* DESTROY gave object new lease on life */
5688                 return;
5689             }
5690         }
5691
5692         if (SvOBJECT(sv)) {
5693             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5694             SvOBJECT_off(sv);   /* Curse the object. */
5695             if (type != SVt_PVIO)
5696                 --PL_sv_objcount;       /* XXX Might want something more general */
5697         }
5698     }
5699     if (type >= SVt_PVMG) {
5700         if (type == SVt_PVMG && SvPAD_OUR(sv)) {
5701             SvREFCNT_dec(SvOURSTASH(sv));
5702         } else if (SvMAGIC(sv))
5703             mg_free(sv);
5704         if (type == SVt_PVMG && SvPAD_TYPED(sv))
5705             SvREFCNT_dec(SvSTASH(sv));
5706     }
5707     switch (type) {
5708         /* case SVt_BIND: */
5709     case SVt_PVIO:
5710         if (IoIFP(sv) &&
5711             IoIFP(sv) != PerlIO_stdin() &&
5712             IoIFP(sv) != PerlIO_stdout() &&
5713             IoIFP(sv) != PerlIO_stderr())
5714         {
5715             io_close(MUTABLE_IO(sv), FALSE);
5716         }
5717         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5718             PerlDir_close(IoDIRP(sv));
5719         IoDIRP(sv) = (DIR*)NULL;
5720         Safefree(IoTOP_NAME(sv));
5721         Safefree(IoFMT_NAME(sv));
5722         Safefree(IoBOTTOM_NAME(sv));
5723         goto freescalar;
5724     case SVt_REGEXP:
5725         /* FIXME for plugins */
5726         pregfree2((REGEXP*) sv);
5727         goto freescalar;
5728     case SVt_PVCV:
5729     case SVt_PVFM:
5730         cv_undef(MUTABLE_CV(sv));
5731         goto freescalar;
5732     case SVt_PVHV:
5733         if (PL_last_swash_hv == (const HV *)sv) {
5734             PL_last_swash_hv = NULL;
5735         }
5736         Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
5737         hv_undef(MUTABLE_HV(sv));
5738         break;
5739     case SVt_PVAV:
5740         if (PL_comppad == MUTABLE_AV(sv)) {
5741             PL_comppad = NULL;
5742             PL_curpad = NULL;
5743         }
5744         av_undef(MUTABLE_AV(sv));
5745         break;
5746     case SVt_PVLV:
5747         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5748             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5749             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5750             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5751         }
5752         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5753             SvREFCNT_dec(LvTARG(sv));
5754     case SVt_PVGV:
5755         if (isGV_with_GP(sv)) {
5756             if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
5757                && HvNAME_get(stash))
5758                 mro_method_changed_in(stash);
5759             gp_free(MUTABLE_GV(sv));
5760             if (GvNAME_HEK(sv))
5761                 unshare_hek(GvNAME_HEK(sv));
5762             /* If we're in a stash, we don't own a reference to it. However it does
5763                have a back reference to us, which needs to be cleared.  */
5764             if (!SvVALID(sv) && (stash = GvSTASH(sv)))
5765                     sv_del_backref(MUTABLE_SV(stash), sv);
5766         }
5767         /* FIXME. There are probably more unreferenced pointers to SVs in the
5768            interpreter struct that we should check and tidy in a similar
5769            fashion to this:  */
5770         if ((const GV *)sv == PL_last_in_gv)
5771             PL_last_in_gv = NULL;
5772     case SVt_PVMG:
5773     case SVt_PVNV:
5774     case SVt_PVIV:
5775     case SVt_PV:
5776       freescalar:
5777         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5778         if (SvOOK(sv)) {
5779             STRLEN offset;
5780             SvOOK_offset(sv, offset);
5781             SvPV_set(sv, SvPVX_mutable(sv) - offset);
5782             /* Don't even bother with turning off the OOK flag.  */
5783         }
5784         if (SvROK(sv)) {
5785             SV * const target = SvRV(sv);
5786             if (SvWEAKREF(sv))
5787                 sv_del_backref(target, sv);
5788             else
5789                 SvREFCNT_dec(target);
5790         }
5791 #ifdef PERL_OLD_COPY_ON_WRITE
5792         else if (SvPVX_const(sv)) {
5793             if (SvIsCOW(sv)) {
5794                 /* I believe I need to grab the global SV mutex here and
5795                    then recheck the COW status.  */
5796                 if (DEBUG_C_TEST) {
5797                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
5798                     sv_dump(sv);
5799                 }
5800                 if (SvLEN(sv)) {
5801                     sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
5802                 } else {
5803                     unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5804                 }
5805
5806                 /* And drop it here.  */
5807                 SvFAKE_off(sv);
5808             } else if (SvLEN(sv)) {
5809                 Safefree(SvPVX_const(sv));
5810             }
5811         }
5812 #else
5813         else if (SvPVX_const(sv) && SvLEN(sv))
5814             Safefree(SvPVX_mutable(sv));
5815         else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
5816             unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5817             SvFAKE_off(sv);
5818         }
5819 #endif
5820         break;
5821     case SVt_NV:
5822         break;
5823     }
5824
5825     SvFLAGS(sv) &= SVf_BREAK;
5826     SvFLAGS(sv) |= SVTYPEMASK;
5827
5828     if (sv_type_details->arena) {
5829         del_body(((char *)SvANY(sv) + sv_type_details->offset),
5830                  &PL_body_roots[type]);
5831     }
5832     else if (sv_type_details->body_size) {
5833         my_safefree(SvANY(sv));
5834     }
5835 }
5836
5837 /*
5838 =for apidoc sv_newref
5839
5840 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5841 instead.
5842
5843 =cut
5844 */
5845
5846 SV *
5847 Perl_sv_newref(pTHX_ SV *const sv)
5848 {
5849     PERL_UNUSED_CONTEXT;
5850     if (sv)
5851         (SvREFCNT(sv))++;
5852     return sv;
5853 }
5854
5855 /*
5856 =for apidoc sv_free
5857
5858 Decrement an SV's reference count, and if it drops to zero, call
5859 C<sv_clear> to invoke destructors and free up any memory used by
5860 the body; finally, deallocate the SV's head itself.
5861 Normally called via a wrapper macro C<SvREFCNT_dec>.
5862
5863 =cut
5864 */
5865
5866 void
5867 Perl_sv_free(pTHX_ SV *const sv)
5868 {
5869     dVAR;
5870     if (!sv)
5871         return;
5872     if (SvREFCNT(sv) == 0) {
5873         if (SvFLAGS(sv) & SVf_BREAK)
5874             /* this SV's refcnt has been artificially decremented to
5875              * trigger cleanup */
5876             return;
5877         if (PL_in_clean_all) /* All is fair */
5878             return;
5879         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5880             /* make sure SvREFCNT(sv)==0 happens very seldom */
5881             SvREFCNT(sv) = (~(U32)0)/2;
5882             return;
5883         }
5884         if (ckWARN_d(WARN_INTERNAL)) {
5885 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
5886             Perl_dump_sv_child(aTHX_ sv);
5887 #else
5888   #ifdef DEBUG_LEAKING_SCALARS
5889             sv_dump(sv);
5890   #endif
5891 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5892             if (PL_warnhook == PERL_WARNHOOK_FATAL
5893                 || ckDEAD(packWARN(WARN_INTERNAL))) {
5894                 /* Don't let Perl_warner cause us to escape our fate:  */
5895                 abort();
5896             }
5897 #endif
5898             /* This may not return:  */
5899             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
5900                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
5901                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5902 #endif
5903         }
5904 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5905         abort();
5906 #endif
5907         return;
5908     }
5909     if (--(SvREFCNT(sv)) > 0)
5910         return;
5911     Perl_sv_free2(aTHX_ sv);
5912 }
5913
5914 void
5915 Perl_sv_free2(pTHX_ SV *const sv)
5916 {
5917     dVAR;
5918
5919     PERL_ARGS_ASSERT_SV_FREE2;
5920
5921 #ifdef DEBUGGING
5922     if (SvTEMP(sv)) {
5923         if (ckWARN_d(WARN_DEBUGGING))
5924             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
5925                         "Attempt to free temp prematurely: SV 0x%"UVxf
5926                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5927         return;
5928     }
5929 #endif
5930     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5931         /* make sure SvREFCNT(sv)==0 happens very seldom */
5932         SvREFCNT(sv) = (~(U32)0)/2;
5933         return;
5934     }
5935     sv_clear(sv);
5936     if (! SvREFCNT(sv))
5937         del_SV(sv);
5938 }
5939
5940 /*
5941 =for apidoc sv_len
5942
5943 Returns the length of the string in the SV. Handles magic and type
5944 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5945
5946 =cut
5947 */
5948
5949 STRLEN
5950 Perl_sv_len(pTHX_ register SV *const sv)
5951 {
5952     STRLEN len;
5953
5954     if (!sv)
5955         return 0;
5956
5957     if (SvGMAGICAL(sv))
5958         len = mg_length(sv);
5959     else
5960         (void)SvPV_const(sv, len);
5961     return len;
5962 }
5963
5964 /*
5965 =for apidoc sv_len_utf8
5966
5967 Returns the number of characters in the string in an SV, counting wide
5968 UTF-8 bytes as a single character. Handles magic and type coercion.
5969
5970 =cut
5971 */
5972
5973 /*
5974  * The length is cached in PERL_UTF8_magic, in the mg_len field.  Also the
5975  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
5976  * (Note that the mg_len is not the length of the mg_ptr field.
5977  * This allows the cache to store the character length of the string without
5978  * needing to malloc() extra storage to attach to the mg_ptr.)
5979  *
5980  */
5981
5982 STRLEN
5983 Perl_sv_len_utf8(pTHX_ register SV *const sv)
5984 {
5985     if (!sv)
5986         return 0;
5987
5988     if (SvGMAGICAL(sv))
5989         return mg_length(sv);
5990     else
5991     {
5992         STRLEN len;
5993         const U8 *s = (U8*)SvPV_const(sv, len);
5994
5995         if (PL_utf8cache) {
5996             STRLEN ulen;
5997             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
5998
5999             if (mg && mg->mg_len != -1) {
6000                 ulen = mg->mg_len;
6001                 if (PL_utf8cache < 0) {
6002                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6003                     if (real != ulen) {
6004                         /* Need to turn the assertions off otherwise we may
6005                            recurse infinitely while printing error messages.
6006                         */
6007                         SAVEI8(PL_utf8cache);
6008                         PL_utf8cache = 0;
6009                         Perl_croak(aTHX_ "panic: sv_len_utf8 cache %"UVuf
6010                                    " real %"UVuf" for %"SVf,
6011                                    (UV) ulen, (UV) real, SVfARG(sv));
6012                     }
6013                 }
6014             }
6015             else {
6016                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6017                 if (!SvREADONLY(sv)) {
6018                     if (!mg) {
6019                         mg = sv_magicext(sv, 0, PERL_MAGIC_utf8,
6020                                          &PL_vtbl_utf8, 0, 0);
6021                     }
6022                     assert(mg);
6023                     mg->mg_len = ulen;
6024                 }
6025             }
6026             return ulen;
6027         }
6028         return Perl_utf8_length(aTHX_ s, s + len);
6029     }
6030 }
6031
6032 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6033    offset.  */
6034 static STRLEN
6035 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6036                       STRLEN uoffset)
6037 {
6038     const U8 *s = start;
6039
6040     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6041
6042     while (s < send && uoffset--)
6043         s += UTF8SKIP(s);
6044     if (s > send) {
6045         /* This is the existing behaviour. Possibly it should be a croak, as
6046            it's actually a bounds error  */
6047         s = send;
6048     }
6049     return s - start;
6050 }
6051
6052 /* Given the length of the string in both bytes and UTF-8 characters, decide
6053    whether to walk forwards or backwards to find the byte corresponding to
6054    the passed in UTF-8 offset.  */
6055 static STRLEN
6056 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6057                       const STRLEN uoffset, const STRLEN uend)
6058 {
6059     STRLEN backw = uend - uoffset;
6060
6061     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6062
6063     if (uoffset < 2 * backw) {
6064         /* The assumption is that going forwards is twice the speed of going
6065            forward (that's where the 2 * backw comes from).
6066            (The real figure of course depends on the UTF-8 data.)  */
6067         return sv_pos_u2b_forwards(start, send, uoffset);
6068     }
6069
6070     while (backw--) {
6071         send--;
6072         while (UTF8_IS_CONTINUATION(*send))
6073             send--;
6074     }
6075     return send - start;
6076 }
6077
6078 /* For the string representation of the given scalar, find the byte
6079    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6080    give another position in the string, *before* the sought offset, which
6081    (which is always true, as 0, 0 is a valid pair of positions), which should
6082    help reduce the amount of linear searching.
6083    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6084    will be used to reduce the amount of linear searching. The cache will be
6085    created if necessary, and the found value offered to it for update.  */
6086 static STRLEN
6087 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6088                     const U8 *const send, const STRLEN uoffset,
6089                     STRLEN uoffset0, STRLEN boffset0)
6090 {
6091     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6092     bool found = FALSE;
6093
6094     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6095
6096     assert (uoffset >= uoffset0);
6097
6098     if (SvMAGICAL(sv) && !SvREADONLY(sv) && PL_utf8cache
6099         && (*mgp || (*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6100         if ((*mgp)->mg_ptr) {
6101             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6102             if (cache[0] == uoffset) {
6103                 /* An exact match. */
6104                 return cache[1];
6105             }
6106             if (cache[2] == uoffset) {
6107                 /* An exact match. */
6108                 return cache[3];
6109             }
6110
6111             if (cache[0] < uoffset) {
6112                 /* The cache already knows part of the way.   */
6113                 if (cache[0] > uoffset0) {
6114                     /* The cache knows more than the passed in pair  */
6115                     uoffset0 = cache[0];
6116                     boffset0 = cache[1];
6117                 }
6118                 if ((*mgp)->mg_len != -1) {
6119                     /* And we know the end too.  */
6120                     boffset = boffset0
6121                         + sv_pos_u2b_midway(start + boffset0, send,
6122                                               uoffset - uoffset0,
6123                                               (*mgp)->mg_len - uoffset0);
6124                 } else {
6125                     boffset = boffset0
6126                         + sv_pos_u2b_forwards(start + boffset0,
6127                                                 send, uoffset - uoffset0);
6128                 }
6129             }
6130             else if (cache[2] < uoffset) {
6131                 /* We're between the two cache entries.  */
6132                 if (cache[2] > uoffset0) {
6133                     /* and the cache knows more than the passed in pair  */
6134                     uoffset0 = cache[2];
6135                     boffset0 = cache[3];
6136                 }
6137
6138                 boffset = boffset0
6139                     + sv_pos_u2b_midway(start + boffset0,
6140                                           start + cache[1],
6141                                           uoffset - uoffset0,
6142                                           cache[0] - uoffset0);
6143             } else {
6144                 boffset = boffset0
6145                     + sv_pos_u2b_midway(start + boffset0,
6146                                           start + cache[3],
6147                                           uoffset - uoffset0,
6148                                           cache[2] - uoffset0);
6149             }
6150             found = TRUE;
6151         }
6152         else if ((*mgp)->mg_len != -1) {
6153             /* If we can take advantage of a passed in offset, do so.  */
6154             /* In fact, offset0 is either 0, or less than offset, so don't
6155                need to worry about the other possibility.  */
6156             boffset = boffset0
6157                 + sv_pos_u2b_midway(start + boffset0, send,
6158                                       uoffset - uoffset0,
6159                                       (*mgp)->mg_len - uoffset0);
6160             found = TRUE;
6161         }
6162     }
6163
6164     if (!found || PL_utf8cache < 0) {
6165         const STRLEN real_boffset
6166             = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6167                                                send, uoffset - uoffset0);
6168
6169         if (found && PL_utf8cache < 0) {
6170             if (real_boffset != boffset) {
6171                 /* Need to turn the assertions off otherwise we may recurse
6172                    infinitely while printing error messages.  */
6173                 SAVEI8(PL_utf8cache);
6174                 PL_utf8cache = 0;
6175                 Perl_croak(aTHX_ "panic: sv_pos_u2b_cache cache %"UVuf
6176                            " real %"UVuf" for %"SVf,
6177                            (UV) boffset, (UV) real_boffset, SVfARG(sv));
6178             }
6179         }
6180         boffset = real_boffset;
6181     }
6182
6183     if (PL_utf8cache)
6184         utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6185     return boffset;
6186 }
6187
6188
6189 /*
6190 =for apidoc sv_pos_u2b
6191
6192 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6193 the start of the string, to a count of the equivalent number of bytes; if
6194 lenp is non-zero, it does the same to lenp, but this time starting from
6195 the offset, rather than from the start of the string. Handles magic and
6196 type coercion.
6197
6198 =cut
6199 */
6200
6201 /*
6202  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6203  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
6204  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6205  *
6206  */
6207
6208 void
6209 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6210 {
6211     const U8 *start;
6212     STRLEN len;
6213
6214     PERL_ARGS_ASSERT_SV_POS_U2B;
6215
6216     if (!sv)
6217         return;
6218
6219     start = (U8*)SvPV_const(sv, len);
6220     if (len) {
6221         STRLEN uoffset = (STRLEN) *offsetp;
6222         const U8 * const send = start + len;
6223         MAGIC *mg = NULL;
6224         const STRLEN boffset = sv_pos_u2b_cached(sv, &mg, start, send,
6225                                              uoffset, 0, 0);
6226
6227         *offsetp = (I32) boffset;
6228
6229         if (lenp) {
6230             /* Convert the relative offset to absolute.  */
6231             const STRLEN uoffset2 = uoffset + (STRLEN) *lenp;
6232             const STRLEN boffset2
6233                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6234                                       uoffset, boffset) - boffset;
6235
6236             *lenp = boffset2;
6237         }
6238     }
6239     else {
6240          *offsetp = 0;
6241          if (lenp)
6242               *lenp = 0;
6243     }
6244
6245     return;
6246 }
6247
6248 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6249    byte length pairing. The (byte) length of the total SV is passed in too,
6250    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6251    may not have updated SvCUR, so we can't rely on reading it directly.
6252
6253    The proffered utf8/byte length pairing isn't used if the cache already has
6254    two pairs, and swapping either for the proffered pair would increase the
6255    RMS of the intervals between known byte offsets.
6256
6257    The cache itself consists of 4 STRLEN values
6258    0: larger UTF-8 offset
6259    1: corresponding byte offset
6260    2: smaller UTF-8 offset
6261    3: corresponding byte offset
6262
6263    Unused cache pairs have the value 0, 0.
6264    Keeping the cache "backwards" means that the invariant of
6265    cache[0] >= cache[2] is maintained even with empty slots, which means that
6266    the code that uses it doesn't need to worry if only 1 entry has actually
6267    been set to non-zero.  It also makes the "position beyond the end of the
6268    cache" logic much simpler, as the first slot is always the one to start
6269    from.   
6270 */
6271 static void
6272 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6273                            const STRLEN utf8, const STRLEN blen)
6274 {
6275     STRLEN *cache;
6276
6277     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6278
6279     if (SvREADONLY(sv))
6280         return;
6281
6282     if (!*mgp) {
6283         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6284                            0);
6285         (*mgp)->mg_len = -1;
6286     }
6287     assert(*mgp);
6288
6289     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6290         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6291         (*mgp)->mg_ptr = (char *) cache;
6292     }
6293     assert(cache);
6294
6295     if (PL_utf8cache < 0) {
6296         const U8 *start = (const U8 *) SvPVX_const(sv);
6297         const STRLEN realutf8 = utf8_length(start, start + byte);
6298
6299         if (realutf8 != utf8) {
6300             /* Need to turn the assertions off otherwise we may recurse
6301                infinitely while printing error messages.  */
6302             SAVEI8(PL_utf8cache);
6303             PL_utf8cache = 0;
6304             Perl_croak(aTHX_ "panic: utf8_mg_pos_cache_update cache %"UVuf
6305                        " real %"UVuf" for %"SVf, (UV) utf8, (UV) realutf8, SVfARG(sv));
6306         }
6307     }
6308
6309     /* Cache is held with the later position first, to simplify the code
6310        that deals with unbounded ends.  */
6311        
6312     ASSERT_UTF8_CACHE(cache);
6313     if (cache[1] == 0) {
6314         /* Cache is totally empty  */
6315         cache[0] = utf8;
6316         cache[1] = byte;
6317     } else if (cache[3] == 0) {
6318         if (byte > cache[1]) {
6319             /* New one is larger, so goes first.  */
6320             cache[2] = cache[0];
6321             cache[3] = cache[1];
6322             cache[0] = utf8;
6323             cache[1] = byte;
6324         } else {
6325             cache[2] = utf8;
6326             cache[3] = byte;
6327         }
6328     } else {
6329 #define THREEWAY_SQUARE(a,b,c,d) \
6330             ((float)((d) - (c))) * ((float)((d) - (c))) \
6331             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6332                + ((float)((b) - (a))) * ((float)((b) - (a)))
6333
6334         /* Cache has 2 slots in use, and we know three potential pairs.
6335            Keep the two that give the lowest RMS distance. Do the
6336            calcualation in bytes simply because we always know the byte
6337            length.  squareroot has the same ordering as the positive value,
6338            so don't bother with the actual square root.  */
6339         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6340         if (byte > cache[1]) {
6341             /* New position is after the existing pair of pairs.  */
6342             const float keep_earlier
6343                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6344             const float keep_later
6345                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6346
6347             if (keep_later < keep_earlier) {
6348                 if (keep_later < existing) {
6349                     cache[2] = cache[0];
6350                     cache[3] = cache[1];
6351                     cache[0] = utf8;
6352                     cache[1] = byte;
6353                 }
6354             }
6355             else {
6356                 if (keep_earlier < existing) {
6357                     cache[0] = utf8;
6358                     cache[1] = byte;
6359                 }
6360             }
6361         }
6362         else if (byte > cache[3]) {
6363             /* New position is between the existing pair of pairs.  */
6364             const float keep_earlier
6365                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6366             const float keep_later
6367                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6368
6369             if (keep_later < keep_earlier) {
6370                 if (keep_later < existing) {
6371                     cache[2] = utf8;
6372                     cache[3] = byte;
6373                 }
6374             }
6375             else {
6376                 if (keep_earlier < existing) {
6377                     cache[0] = utf8;
6378                     cache[1] = byte;
6379                 }
6380             }
6381         }
6382         else {
6383             /* New position is before the existing pair of pairs.  */
6384             const float keep_earlier
6385                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6386             const float keep_later
6387                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6388
6389             if (keep_later < keep_earlier) {
6390                 if (keep_later < existing) {
6391                     cache[2] = utf8;
6392                     cache[3] = byte;
6393                 }
6394             }
6395             else {
6396                 if (keep_earlier < existing) {
6397                     cache[0] = cache[2];
6398                     cache[1] = cache[3];
6399                     cache[2] = utf8;
6400                     cache[3] = byte;
6401                 }
6402             }
6403         }
6404     }
6405     ASSERT_UTF8_CACHE(cache);
6406 }
6407
6408 /* We already know all of the way, now we may be able to walk back.  The same
6409    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
6410    backward is half the speed of walking forward. */
6411 static STRLEN
6412 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
6413                     const U8 *end, STRLEN endu)
6414 {
6415     const STRLEN forw = target - s;
6416     STRLEN backw = end - target;
6417
6418     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
6419
6420     if (forw < 2 * backw) {
6421         return utf8_length(s, target);
6422     }
6423
6424     while (end > target) {
6425         end--;
6426         while (UTF8_IS_CONTINUATION(*end)) {
6427             end--;
6428         }
6429         endu--;
6430     }
6431     return endu;
6432 }
6433
6434 /*
6435 =for apidoc sv_pos_b2u
6436
6437 Converts the value pointed to by offsetp from a count of bytes from the
6438 start of the string, to a count of the equivalent number of UTF-8 chars.
6439 Handles magic and type coercion.
6440
6441 =cut
6442 */
6443
6444 /*
6445  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6446  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
6447  * byte offsets.
6448  *
6449  */
6450 void
6451 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
6452 {
6453     const U8* s;
6454     const STRLEN byte = *offsetp;
6455     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
6456     STRLEN blen;
6457     MAGIC* mg = NULL;
6458     const U8* send;
6459     bool found = FALSE;
6460
6461     PERL_ARGS_ASSERT_SV_POS_B2U;
6462
6463     if (!sv)
6464         return;
6465
6466     s = (const U8*)SvPV_const(sv, blen);
6467
6468     if (blen < byte)
6469         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
6470
6471     send = s + byte;
6472
6473     if (SvMAGICAL(sv) && !SvREADONLY(sv) && PL_utf8cache
6474         && (mg = mg_find(sv, PERL_MAGIC_utf8))) {
6475         if (mg->mg_ptr) {
6476             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
6477             if (cache[1] == byte) {
6478                 /* An exact match. */
6479                 *offsetp = cache[0];
6480                 return;
6481             }
6482             if (cache[3] == byte) {
6483                 /* An exact match. */
6484                 *offsetp = cache[2];
6485                 return;
6486             }
6487
6488             if (cache[1] < byte) {
6489                 /* We already know part of the way. */
6490                 if (mg->mg_len != -1) {
6491                     /* Actually, we know the end too.  */
6492                     len = cache[0]
6493                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
6494                                               s + blen, mg->mg_len - cache[0]);
6495                 } else {
6496                     len = cache[0] + utf8_length(s + cache[1], send);
6497                 }
6498             }
6499             else if (cache[3] < byte) {
6500                 /* We're between the two cached pairs, so we do the calculation
6501                    offset by the byte/utf-8 positions for the earlier pair,
6502                    then add the utf-8 characters from the string start to
6503                    there.  */
6504                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
6505                                           s + cache[1], cache[0] - cache[2])
6506                     + cache[2];
6507
6508             }
6509             else { /* cache[3] > byte */
6510                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
6511                                           cache[2]);
6512
6513             }
6514             ASSERT_UTF8_CACHE(cache);
6515             found = TRUE;
6516         } else if (mg->mg_len != -1) {
6517             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
6518             found = TRUE;
6519         }
6520     }
6521     if (!found || PL_utf8cache < 0) {
6522         const STRLEN real_len = utf8_length(s, send);
6523
6524         if (found && PL_utf8cache < 0) {
6525             if (len != real_len) {
6526                 /* Need to turn the assertions off otherwise we may recurse
6527                    infinitely while printing error messages.  */
6528                 SAVEI8(PL_utf8cache);
6529                 PL_utf8cache = 0;
6530                 Perl_croak(aTHX_ "panic: sv_pos_b2u cache %"UVuf
6531                            " real %"UVuf" for %"SVf,
6532                            (UV) len, (UV) real_len, SVfARG(sv));
6533             }
6534         }
6535         len = real_len;
6536     }
6537     *offsetp = len;
6538
6539     if (PL_utf8cache)
6540         utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
6541 }
6542
6543 /*
6544 =for apidoc sv_eq
6545
6546 Returns a boolean indicating whether the strings in the two SVs are
6547 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6548 coerce its args to strings if necessary.
6549
6550 =cut
6551 */
6552
6553 I32
6554 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
6555 {
6556     dVAR;
6557     const char *pv1;
6558     STRLEN cur1;
6559     const char *pv2;
6560     STRLEN cur2;
6561     I32  eq     = 0;
6562     char *tpv   = NULL;
6563     SV* svrecode = NULL;
6564
6565     if (!sv1) {
6566         pv1 = "";
6567         cur1 = 0;
6568     }
6569     else {
6570         /* if pv1 and pv2 are the same, second SvPV_const call may
6571          * invalidate pv1, so we may need to make a copy */
6572         if (sv1 == sv2 && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
6573             pv1 = SvPV_const(sv1, cur1);
6574             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
6575         }
6576         pv1 = SvPV_const(sv1, cur1);
6577     }
6578
6579     if (!sv2){
6580         pv2 = "";
6581         cur2 = 0;
6582     }
6583     else
6584         pv2 = SvPV_const(sv2, cur2);
6585
6586     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6587         /* Differing utf8ness.
6588          * Do not UTF8size the comparands as a side-effect. */
6589          if (PL_encoding) {
6590               if (SvUTF8(sv1)) {
6591                    svrecode = newSVpvn(pv2, cur2);
6592                    sv_recode_to_utf8(svrecode, PL_encoding);
6593                    pv2 = SvPV_const(svrecode, cur2);
6594               }
6595               else {
6596                    svrecode = newSVpvn(pv1, cur1);
6597                    sv_recode_to_utf8(svrecode, PL_encoding);
6598                    pv1 = SvPV_const(svrecode, cur1);
6599               }
6600               /* Now both are in UTF-8. */
6601               if (cur1 != cur2) {
6602                    SvREFCNT_dec(svrecode);
6603                    return FALSE;
6604               }
6605          }
6606          else {
6607               bool is_utf8 = TRUE;
6608
6609               if (SvUTF8(sv1)) {
6610                    /* sv1 is the UTF-8 one,
6611                     * if is equal it must be downgrade-able */
6612                    char * const pv = (char*)bytes_from_utf8((const U8*)pv1,
6613                                                      &cur1, &is_utf8);
6614                    if (pv != pv1)
6615                         pv1 = tpv = pv;
6616               }
6617               else {
6618                    /* sv2 is the UTF-8 one,
6619                     * if is equal it must be downgrade-able */
6620                    char * const pv = (char *)bytes_from_utf8((const U8*)pv2,
6621                                                       &cur2, &is_utf8);
6622                    if (pv != pv2)
6623                         pv2 = tpv = pv;
6624               }
6625               if (is_utf8) {
6626                    /* Downgrade not possible - cannot be eq */
6627                    assert (tpv == 0);
6628                    return FALSE;
6629               }
6630          }
6631     }
6632
6633     if (cur1 == cur2)
6634         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
6635         
6636     SvREFCNT_dec(svrecode);
6637     if (tpv)
6638         Safefree(tpv);
6639
6640     return eq;
6641 }
6642
6643 /*
6644 =for apidoc sv_cmp
6645
6646 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6647 string in C<sv1> is less than, equal to, or greater than the string in
6648 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6649 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
6650
6651 =cut
6652 */
6653
6654 I32
6655 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
6656 {
6657     dVAR;
6658     STRLEN cur1, cur2;
6659     const char *pv1, *pv2;
6660     char *tpv = NULL;
6661     I32  cmp;
6662     SV *svrecode = NULL;
6663
6664     if (!sv1) {
6665         pv1 = "";
6666         cur1 = 0;
6667     }
6668     else
6669         pv1 = SvPV_const(sv1, cur1);
6670
6671     if (!sv2) {
6672         pv2 = "";
6673         cur2 = 0;
6674     }
6675     else
6676         pv2 = SvPV_const(sv2, cur2);
6677
6678     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6679         /* Differing utf8ness.
6680          * Do not UTF8size the comparands as a side-effect. */
6681         if (SvUTF8(sv1)) {
6682             if (PL_encoding) {
6683                  svrecode = newSVpvn(pv2, cur2);
6684                  sv_recode_to_utf8(svrecode, PL_encoding);
6685                  pv2 = SvPV_const(svrecode, cur2);
6686             }
6687             else {
6688                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
6689             }
6690         }
6691         else {
6692             if (PL_encoding) {
6693                  svrecode = newSVpvn(pv1, cur1);
6694                  sv_recode_to_utf8(svrecode, PL_encoding);
6695                  pv1 = SvPV_const(svrecode, cur1);
6696             }
6697             else {
6698                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
6699             }
6700         }
6701     }
6702
6703     if (!cur1) {
6704         cmp = cur2 ? -1 : 0;
6705     } else if (!cur2) {
6706         cmp = 1;
6707     } else {
6708         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
6709
6710         if (retval) {
6711             cmp = retval < 0 ? -1 : 1;
6712         } else if (cur1 == cur2) {
6713             cmp = 0;
6714         } else {
6715             cmp = cur1 < cur2 ? -1 : 1;
6716         }
6717     }
6718
6719     SvREFCNT_dec(svrecode);
6720     if (tpv)
6721         Safefree(tpv);
6722
6723     return cmp;
6724 }
6725
6726 /*
6727 =for apidoc sv_cmp_locale
6728
6729 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
6730 'use bytes' aware, handles get magic, and will coerce its args to strings
6731 if necessary.  See also C<sv_cmp>.
6732
6733 =cut
6734 */
6735
6736 I32
6737 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
6738 {
6739     dVAR;
6740 #ifdef USE_LOCALE_COLLATE
6741
6742     char *pv1, *pv2;
6743     STRLEN len1, len2;
6744     I32 retval;
6745
6746     if (PL_collation_standard)
6747         goto raw_compare;
6748
6749     len1 = 0;
6750     pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
6751     len2 = 0;
6752     pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
6753
6754     if (!pv1 || !len1) {
6755         if (pv2 && len2)
6756             return -1;
6757         else
6758             goto raw_compare;
6759     }
6760     else {
6761         if (!pv2 || !len2)
6762             return 1;
6763     }
6764
6765     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
6766
6767     if (retval)
6768         return retval < 0 ? -1 : 1;
6769
6770     /*
6771      * When the result of collation is equality, that doesn't mean
6772      * that there are no differences -- some locales exclude some
6773      * characters from consideration.  So to avoid false equalities,
6774      * we use the raw string as a tiebreaker.
6775      */
6776
6777   raw_compare:
6778     /*FALLTHROUGH*/
6779
6780 #endif /* USE_LOCALE_COLLATE */
6781
6782     return sv_cmp(sv1, sv2);
6783 }
6784
6785
6786 #ifdef USE_LOCALE_COLLATE
6787
6788 /*
6789 =for apidoc sv_collxfrm
6790
6791 Add Collate Transform magic to an SV if it doesn't already have it.
6792
6793 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
6794 scalar data of the variable, but transformed to such a format that a normal
6795 memory comparison can be used to compare the data according to the locale
6796 settings.
6797
6798 =cut
6799 */
6800
6801 char *
6802 Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp)
6803 {
6804     dVAR;
6805     MAGIC *mg;
6806
6807     PERL_ARGS_ASSERT_SV_COLLXFRM;
6808
6809     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
6810     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
6811         const char *s;
6812         char *xf;
6813         STRLEN len, xlen;
6814
6815         if (mg)
6816             Safefree(mg->mg_ptr);
6817         s = SvPV_const(sv, len);
6818         if ((xf = mem_collxfrm(s, len, &xlen))) {
6819             if (! mg) {
6820 #ifdef PERL_OLD_COPY_ON_WRITE
6821                 if (SvIsCOW(sv))
6822                     sv_force_normal_flags(sv, 0);
6823 #endif
6824                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
6825                                  0, 0);
6826                 assert(mg);
6827             }
6828             mg->mg_ptr = xf;
6829             mg->mg_len = xlen;
6830         }
6831         else {
6832             if (mg) {
6833                 mg->mg_ptr = NULL;
6834                 mg->mg_len = -1;
6835             }
6836         }
6837     }
6838     if (mg && mg->mg_ptr) {
6839         *nxp = mg->mg_len;
6840         return mg->mg_ptr + sizeof(PL_collation_ix);
6841     }
6842     else {
6843         *nxp = 0;
6844         return NULL;
6845     }
6846 }
6847
6848 #endif /* USE_LOCALE_COLLATE */
6849
6850 /*
6851 =for apidoc sv_gets
6852
6853 Get a line from the filehandle and store it into the SV, optionally
6854 appending to the currently-stored string.
6855
6856 =cut
6857 */
6858
6859 char *
6860 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
6861 {
6862     dVAR;
6863     const char *rsptr;
6864     STRLEN rslen;
6865     register STDCHAR rslast;
6866     register STDCHAR *bp;
6867     register I32 cnt;
6868     I32 i = 0;
6869     I32 rspara = 0;
6870
6871     PERL_ARGS_ASSERT_SV_GETS;
6872
6873     if (SvTHINKFIRST(sv))
6874         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
6875     /* XXX. If you make this PVIV, then copy on write can copy scalars read
6876        from <>.
6877        However, perlbench says it's slower, because the existing swipe code
6878        is faster than copy on write.
6879        Swings and roundabouts.  */
6880     SvUPGRADE(sv, SVt_PV);
6881
6882     SvSCREAM_off(sv);
6883
6884     if (append) {
6885         if (PerlIO_isutf8(fp)) {
6886             if (!SvUTF8(sv)) {
6887                 sv_utf8_upgrade_nomg(sv);
6888                 sv_pos_u2b(sv,&append,0);
6889             }
6890         } else if (SvUTF8(sv)) {
6891             SV * const tsv = newSV(0);
6892             sv_gets(tsv, fp, 0);
6893             sv_utf8_upgrade_nomg(tsv);
6894             SvCUR_set(sv,append);
6895             sv_catsv(sv,tsv);
6896             sv_free(tsv);
6897             goto return_string_or_null;
6898         }
6899     }
6900
6901     SvPOK_only(sv);
6902     if (PerlIO_isutf8(fp))
6903         SvUTF8_on(sv);
6904
6905     if (IN_PERL_COMPILETIME) {
6906         /* we always read code in line mode */
6907         rsptr = "\n";
6908         rslen = 1;
6909     }
6910     else if (RsSNARF(PL_rs)) {
6911         /* If it is a regular disk file use size from stat() as estimate
6912            of amount we are going to read -- may result in mallocing
6913            more memory than we really need if the layers below reduce
6914            the size we read (e.g. CRLF or a gzip layer).
6915          */
6916         Stat_t st;
6917         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
6918             const Off_t offset = PerlIO_tell(fp);
6919             if (offset != (Off_t) -1 && st.st_size + append > offset) {
6920                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
6921             }
6922         }
6923         rsptr = NULL;
6924         rslen = 0;
6925     }
6926     else if (RsRECORD(PL_rs)) {
6927       I32 bytesread;
6928       char *buffer;
6929       U32 recsize;
6930 #ifdef VMS
6931       int fd;
6932 #endif
6933
6934       /* Grab the size of the record we're getting */
6935       recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
6936       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
6937       /* Go yank in */
6938 #ifdef VMS
6939       /* VMS wants read instead of fread, because fread doesn't respect */
6940       /* RMS record boundaries. This is not necessarily a good thing to be */
6941       /* doing, but we've got no other real choice - except avoid stdio
6942          as implementation - perhaps write a :vms layer ?
6943        */
6944       fd = PerlIO_fileno(fp);
6945       if (fd == -1) { /* in-memory file from PerlIO::Scalar */
6946           bytesread = PerlIO_read(fp, buffer, recsize);
6947       }
6948       else {
6949           bytesread = PerlLIO_read(fd, buffer, recsize);
6950       }
6951 #else
6952       bytesread = PerlIO_read(fp, buffer, recsize);
6953 #endif
6954       if (bytesread < 0)
6955           bytesread = 0;
6956       SvCUR_set(sv, bytesread + append);
6957       buffer[bytesread] = '\0';
6958       goto return_string_or_null;
6959     }
6960     else if (RsPARA(PL_rs)) {
6961         rsptr = "\n\n";
6962         rslen = 2;
6963         rspara = 1;
6964     }
6965     else {
6966         /* Get $/ i.e. PL_rs into same encoding as stream wants */
6967         if (PerlIO_isutf8(fp)) {
6968             rsptr = SvPVutf8(PL_rs, rslen);
6969         }
6970         else {
6971             if (SvUTF8(PL_rs)) {
6972                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
6973                     Perl_croak(aTHX_ "Wide character in $/");
6974                 }
6975             }
6976             rsptr = SvPV_const(PL_rs, rslen);
6977         }
6978     }
6979
6980     rslast = rslen ? rsptr[rslen - 1] : '\0';
6981
6982     if (rspara) {               /* have to do this both before and after */
6983         do {                    /* to make sure file boundaries work right */
6984             if (PerlIO_eof(fp))
6985                 return 0;
6986             i = PerlIO_getc(fp);
6987             if (i != '\n') {
6988                 if (i == -1)
6989                     return 0;
6990                 PerlIO_ungetc(fp,i);
6991                 break;
6992             }
6993         } while (i != EOF);
6994     }
6995
6996     /* See if we know enough about I/O mechanism to cheat it ! */
6997
6998     /* This used to be #ifdef test - it is made run-time test for ease
6999        of abstracting out stdio interface. One call should be cheap
7000        enough here - and may even be a macro allowing compile
7001        time optimization.
7002      */
7003
7004     if (PerlIO_fast_gets(fp)) {
7005
7006     /*
7007      * We're going to steal some values from the stdio struct
7008      * and put EVERYTHING in the innermost loop into registers.
7009      */
7010     register STDCHAR *ptr;
7011     STRLEN bpx;
7012     I32 shortbuffered;
7013
7014 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7015     /* An ungetc()d char is handled separately from the regular
7016      * buffer, so we getc() it back out and stuff it in the buffer.
7017      */
7018     i = PerlIO_getc(fp);
7019     if (i == EOF) return 0;
7020     *(--((*fp)->_ptr)) = (unsigned char) i;
7021     (*fp)->_cnt++;
7022 #endif
7023
7024     /* Here is some breathtakingly efficient cheating */
7025
7026     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7027     /* make sure we have the room */
7028     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7029         /* Not room for all of it
7030            if we are looking for a separator and room for some
7031          */
7032         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7033             /* just process what we have room for */
7034             shortbuffered = cnt - SvLEN(sv) + append + 1;
7035             cnt -= shortbuffered;
7036         }
7037         else {
7038             shortbuffered = 0;
7039             /* remember that cnt can be negative */
7040             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7041         }
7042     }
7043     else
7044         shortbuffered = 0;
7045     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7046     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7047     DEBUG_P(PerlIO_printf(Perl_debug_log,
7048         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7049     DEBUG_P(PerlIO_printf(Perl_debug_log,
7050         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7051                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7052                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7053     for (;;) {
7054       screamer:
7055         if (cnt > 0) {
7056             if (rslen) {
7057                 while (cnt > 0) {                    /* this     |  eat */
7058                     cnt--;
7059                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7060                         goto thats_all_folks;        /* screams  |  sed :-) */
7061                 }
7062             }
7063             else {
7064                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7065                 bp += cnt;                           /* screams  |  dust */
7066                 ptr += cnt;                          /* louder   |  sed :-) */
7067                 cnt = 0;
7068             }
7069         }
7070         
7071         if (shortbuffered) {            /* oh well, must extend */
7072             cnt = shortbuffered;
7073             shortbuffered = 0;
7074             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7075             SvCUR_set(sv, bpx);
7076             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7077             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7078             continue;
7079         }
7080
7081         DEBUG_P(PerlIO_printf(Perl_debug_log,
7082                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7083                               PTR2UV(ptr),(long)cnt));
7084         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7085 #if 0
7086         DEBUG_P(PerlIO_printf(Perl_debug_log,
7087             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7088             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7089             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7090 #endif
7091         /* This used to call 'filbuf' in stdio form, but as that behaves like
7092            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7093            another abstraction.  */
7094         i   = PerlIO_getc(fp);          /* get more characters */
7095 #if 0
7096         DEBUG_P(PerlIO_printf(Perl_debug_log,
7097             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7098             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7099             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7100 #endif
7101         cnt = PerlIO_get_cnt(fp);
7102         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7103         DEBUG_P(PerlIO_printf(Perl_debug_log,
7104             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7105
7106         if (i == EOF)                   /* all done for ever? */
7107             goto thats_really_all_folks;
7108
7109         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7110         SvCUR_set(sv, bpx);
7111         SvGROW(sv, bpx + cnt + 2);
7112         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7113
7114         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7115
7116         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7117             goto thats_all_folks;
7118     }
7119
7120 thats_all_folks:
7121     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7122           memNE((char*)bp - rslen, rsptr, rslen))
7123         goto screamer;                          /* go back to the fray */
7124 thats_really_all_folks:
7125     if (shortbuffered)
7126         cnt += shortbuffered;
7127         DEBUG_P(PerlIO_printf(Perl_debug_log,
7128             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7129     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7130     DEBUG_P(PerlIO_printf(Perl_debug_log,
7131         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7132         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7133         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7134     *bp = '\0';
7135     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7136     DEBUG_P(PerlIO_printf(Perl_debug_log,
7137         "Screamer: done, len=%ld, string=|%.*s|\n",
7138         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7139     }
7140    else
7141     {
7142        /*The big, slow, and stupid way. */
7143 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7144         STDCHAR *buf = NULL;
7145         Newx(buf, 8192, STDCHAR);
7146         assert(buf);
7147 #else
7148         STDCHAR buf[8192];
7149 #endif
7150
7151 screamer2:
7152         if (rslen) {
7153             register const STDCHAR * const bpe = buf + sizeof(buf);
7154             bp = buf;
7155             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7156                 ; /* keep reading */
7157             cnt = bp - buf;
7158         }
7159         else {
7160             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7161             /* Accomodate broken VAXC compiler, which applies U8 cast to
7162              * both args of ?: operator, causing EOF to change into 255
7163              */
7164             if (cnt > 0)
7165                  i = (U8)buf[cnt - 1];
7166             else
7167                  i = EOF;
7168         }
7169
7170         if (cnt < 0)
7171             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7172         if (append)
7173              sv_catpvn(sv, (char *) buf, cnt);
7174         else
7175              sv_setpvn(sv, (char *) buf, cnt);
7176
7177         if (i != EOF &&                 /* joy */
7178             (!rslen ||
7179              SvCUR(sv) < rslen ||
7180              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7181         {
7182             append = -1;
7183             /*
7184              * If we're reading from a TTY and we get a short read,
7185              * indicating that the user hit his EOF character, we need
7186              * to notice it now, because if we try to read from the TTY
7187              * again, the EOF condition will disappear.
7188              *
7189              * The comparison of cnt to sizeof(buf) is an optimization
7190              * that prevents unnecessary calls to feof().
7191              *
7192              * - jik 9/25/96
7193              */
7194             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7195                 goto screamer2;
7196         }
7197
7198 #ifdef USE_HEAP_INSTEAD_OF_STACK
7199         Safefree(buf);
7200 #endif
7201     }
7202
7203     if (rspara) {               /* have to do this both before and after */
7204         while (i != EOF) {      /* to make sure file boundaries work right */
7205             i = PerlIO_getc(fp);
7206             if (i != '\n') {
7207                 PerlIO_ungetc(fp,i);
7208                 break;
7209             }
7210         }
7211     }
7212
7213 return_string_or_null:
7214     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7215 }
7216
7217 /*
7218 =for apidoc sv_inc
7219
7220 Auto-increment of the value in the SV, doing string to numeric conversion
7221 if necessary. Handles 'get' magic.
7222
7223 =cut
7224 */
7225
7226 void
7227 Perl_sv_inc(pTHX_ register SV *const sv)
7228 {
7229     dVAR;
7230     register char *d;
7231     int flags;
7232
7233     if (!sv)
7234         return;
7235     SvGETMAGIC(sv);
7236     if (SvTHINKFIRST(sv)) {
7237         if (SvIsCOW(sv))
7238             sv_force_normal_flags(sv, 0);
7239         if (SvREADONLY(sv)) {
7240             if (IN_PERL_RUNTIME)
7241                 Perl_croak(aTHX_ "%s", PL_no_modify);
7242         }
7243         if (SvROK(sv)) {
7244             IV i;
7245             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
7246                 return;
7247             i = PTR2IV(SvRV(sv));
7248             sv_unref(sv);
7249             sv_setiv(sv, i);
7250         }
7251     }
7252     flags = SvFLAGS(sv);
7253     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7254         /* It's (privately or publicly) a float, but not tested as an
7255            integer, so test it to see. */
7256         (void) SvIV(sv);
7257         flags = SvFLAGS(sv);
7258     }
7259     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7260         /* It's publicly an integer, or privately an integer-not-float */
7261 #ifdef PERL_PRESERVE_IVUV
7262       oops_its_int:
7263 #endif
7264         if (SvIsUV(sv)) {
7265             if (SvUVX(sv) == UV_MAX)
7266                 sv_setnv(sv, UV_MAX_P1);
7267             else
7268                 (void)SvIOK_only_UV(sv);
7269                 SvUV_set(sv, SvUVX(sv) + 1);
7270         } else {
7271             if (SvIVX(sv) == IV_MAX)
7272                 sv_setuv(sv, (UV)IV_MAX + 1);
7273             else {
7274                 (void)SvIOK_only(sv);
7275                 SvIV_set(sv, SvIVX(sv) + 1);
7276             }   
7277         }
7278         return;
7279     }
7280     if (flags & SVp_NOK) {
7281         const NV was = SvNVX(sv);
7282         if (NV_OVERFLOWS_INTEGERS_AT &&
7283             was >= NV_OVERFLOWS_INTEGERS_AT && ckWARN(WARN_IMPRECISION)) {
7284             Perl_warner(aTHX_ packWARN(WARN_IMPRECISION),
7285                         "Lost precision when incrementing %" NVff " by 1",
7286                         was);
7287         }
7288         (void)SvNOK_only(sv);
7289         SvNV_set(sv, was + 1.0);
7290         return;
7291     }
7292
7293     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7294         if ((flags & SVTYPEMASK) < SVt_PVIV)
7295             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7296         (void)SvIOK_only(sv);
7297         SvIV_set(sv, 1);
7298         return;
7299     }
7300     d = SvPVX(sv);
7301     while (isALPHA(*d)) d++;
7302     while (isDIGIT(*d)) d++;
7303     if (*d) {
7304 #ifdef PERL_PRESERVE_IVUV
7305         /* Got to punt this as an integer if needs be, but we don't issue
7306            warnings. Probably ought to make the sv_iv_please() that does
7307            the conversion if possible, and silently.  */
7308         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7309         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7310             /* Need to try really hard to see if it's an integer.
7311                9.22337203685478e+18 is an integer.
7312                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7313                so $a="9.22337203685478e+18"; $a+0; $a++
7314                needs to be the same as $a="9.22337203685478e+18"; $a++
7315                or we go insane. */
7316         
7317             (void) sv_2iv(sv);
7318             if (SvIOK(sv))
7319                 goto oops_its_int;
7320
7321             /* sv_2iv *should* have made this an NV */
7322             if (flags & SVp_NOK) {
7323                 (void)SvNOK_only(sv);
7324                 SvNV_set(sv, SvNVX(sv) + 1.0);
7325                 return;
7326             }
7327             /* I don't think we can get here. Maybe I should assert this
7328                And if we do get here I suspect that sv_setnv will croak. NWC
7329                Fall through. */
7330 #if defined(USE_LONG_DOUBLE)
7331             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",
7332                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7333 #else
7334             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7335                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7336 #endif
7337         }
7338 #endif /* PERL_PRESERVE_IVUV */
7339         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
7340         return;
7341     }
7342     d--;
7343     while (d >= SvPVX_const(sv)) {
7344         if (isDIGIT(*d)) {
7345             if (++*d <= '9')
7346                 return;
7347             *(d--) = '0';
7348         }
7349         else {
7350 #ifdef EBCDIC
7351             /* MKS: The original code here died if letters weren't consecutive.
7352              * at least it didn't have to worry about non-C locales.  The
7353              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7354              * arranged in order (although not consecutively) and that only
7355              * [A-Za-z] are accepted by isALPHA in the C locale.
7356              */
7357             if (*d != 'z' && *d != 'Z') {
7358                 do { ++*d; } while (!isALPHA(*d));
7359                 return;
7360             }
7361             *(d--) -= 'z' - 'a';
7362 #else
7363             ++*d;
7364             if (isALPHA(*d))
7365                 return;
7366             *(d--) -= 'z' - 'a' + 1;
7367 #endif
7368         }
7369     }
7370     /* oh,oh, the number grew */
7371     SvGROW(sv, SvCUR(sv) + 2);
7372     SvCUR_set(sv, SvCUR(sv) + 1);
7373     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
7374         *d = d[-1];
7375     if (isDIGIT(d[1]))
7376         *d = '1';
7377     else
7378         *d = d[1];
7379 }
7380
7381 /*
7382 =for apidoc sv_dec
7383
7384 Auto-decrement of the value in the SV, doing string to numeric conversion
7385 if necessary. Handles 'get' magic.
7386
7387 =cut
7388 */
7389
7390 void
7391 Perl_sv_dec(pTHX_ register SV *const sv)
7392 {
7393     dVAR;
7394     int flags;
7395
7396     if (!sv)
7397         return;
7398     SvGETMAGIC(sv);
7399     if (SvTHINKFIRST(sv)) {
7400         if (SvIsCOW(sv))
7401             sv_force_normal_flags(sv, 0);
7402         if (SvREADONLY(sv)) {
7403             if (IN_PERL_RUNTIME)
7404                 Perl_croak(aTHX_ "%s", PL_no_modify);
7405         }
7406         if (SvROK(sv)) {
7407             IV i;
7408             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
7409                 return;
7410             i = PTR2IV(SvRV(sv));
7411             sv_unref(sv);
7412             sv_setiv(sv, i);
7413         }
7414     }
7415     /* Unlike sv_inc we don't have to worry about string-never-numbers
7416        and keeping them magic. But we mustn't warn on punting */
7417     flags = SvFLAGS(sv);
7418     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7419         /* It's publicly an integer, or privately an integer-not-float */
7420 #ifdef PERL_PRESERVE_IVUV
7421       oops_its_int:
7422 #endif
7423         if (SvIsUV(sv)) {
7424             if (SvUVX(sv) == 0) {
7425                 (void)SvIOK_only(sv);
7426                 SvIV_set(sv, -1);
7427             }
7428             else {
7429                 (void)SvIOK_only_UV(sv);
7430                 SvUV_set(sv, SvUVX(sv) - 1);
7431             }   
7432         } else {
7433             if (SvIVX(sv) == IV_MIN) {
7434                 sv_setnv(sv, (NV)IV_MIN);
7435                 goto oops_its_num;
7436             }
7437             else {
7438                 (void)SvIOK_only(sv);
7439                 SvIV_set(sv, SvIVX(sv) - 1);
7440             }   
7441         }
7442         return;
7443     }
7444     if (flags & SVp_NOK) {
7445     oops_its_num:
7446         {
7447             const NV was = SvNVX(sv);
7448             if (NV_OVERFLOWS_INTEGERS_AT &&
7449                 was <= -NV_OVERFLOWS_INTEGERS_AT && ckWARN(WARN_IMPRECISION)) {
7450                 Perl_warner(aTHX_ packWARN(WARN_IMPRECISION),
7451                             "Lost precision when decrementing %" NVff " by 1",
7452                             was);
7453             }
7454             (void)SvNOK_only(sv);
7455             SvNV_set(sv, was - 1.0);
7456             return;
7457         }
7458     }
7459     if (!(flags & SVp_POK)) {
7460         if ((flags & SVTYPEMASK) < SVt_PVIV)
7461             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
7462         SvIV_set(sv, -1);
7463         (void)SvIOK_only(sv);
7464         return;
7465     }
7466 #ifdef PERL_PRESERVE_IVUV
7467     {
7468         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7469         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7470             /* Need to try really hard to see if it's an integer.
7471                9.22337203685478e+18 is an integer.
7472                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7473                so $a="9.22337203685478e+18"; $a+0; $a--
7474                needs to be the same as $a="9.22337203685478e+18"; $a--
7475                or we go insane. */
7476         
7477             (void) sv_2iv(sv);
7478             if (SvIOK(sv))
7479                 goto oops_its_int;
7480
7481             /* sv_2iv *should* have made this an NV */
7482             if (flags & SVp_NOK) {
7483                 (void)SvNOK_only(sv);
7484                 SvNV_set(sv, SvNVX(sv) - 1.0);
7485                 return;
7486             }
7487             /* I don't think we can get here. Maybe I should assert this
7488                And if we do get here I suspect that sv_setnv will croak. NWC
7489                Fall through. */
7490 #if defined(USE_LONG_DOUBLE)
7491             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",
7492                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7493 #else
7494             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7495                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7496 #endif
7497         }
7498     }
7499 #endif /* PERL_PRESERVE_IVUV */
7500     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
7501 }
7502
7503 /*
7504 =for apidoc sv_mortalcopy
7505
7506 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
7507 The new SV is marked as mortal. It will be destroyed "soon", either by an
7508 explicit call to FREETMPS, or by an implicit call at places such as
7509 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
7510
7511 =cut
7512 */
7513
7514 /* Make a string that will exist for the duration of the expression
7515  * evaluation.  Actually, it may have to last longer than that, but
7516  * hopefully we won't free it until it has been assigned to a
7517  * permanent location. */
7518
7519 SV *
7520 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
7521 {
7522     dVAR;
7523     register SV *sv;
7524
7525     new_SV(sv);
7526     sv_setsv(sv,oldstr);
7527     EXTEND_MORTAL(1);
7528     PL_tmps_stack[++PL_tmps_ix] = sv;
7529     SvTEMP_on(sv);
7530     return sv;
7531 }
7532
7533 /*
7534 =for apidoc sv_newmortal
7535
7536 Creates a new null SV which is mortal.  The reference count of the SV is
7537 set to 1. It will be destroyed "soon", either by an explicit call to
7538 FREETMPS, or by an implicit call at places such as statement boundaries.
7539 See also C<sv_mortalcopy> and C<sv_2mortal>.
7540
7541 =cut
7542 */
7543
7544 SV *
7545 Perl_sv_newmortal(pTHX)
7546 {
7547     dVAR;
7548     register SV *sv;
7549
7550     new_SV(sv);
7551     SvFLAGS(sv) = SVs_TEMP;
7552     EXTEND_MORTAL(1);
7553     PL_tmps_stack[++PL_tmps_ix] = sv;
7554     return sv;
7555 }
7556
7557
7558 /*
7559 =for apidoc newSVpvn_flags
7560
7561 Creates a new SV and copies a string into it.  The reference count for the
7562 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7563 string.  You are responsible for ensuring that the source string is at least
7564 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7565 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
7566 If C<SVs_TEMP> is set, then C<sv2mortal()> is called on the result before
7567 returning. If C<SVf_UTF8> is set, then it will be set on the new SV.
7568 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
7569
7570     #define newSVpvn_utf8(s, len, u)                    \
7571         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
7572
7573 =cut
7574 */
7575
7576 SV *
7577 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
7578 {
7579     dVAR;
7580     register SV *sv;
7581
7582     /* All the flags we don't support must be zero.
7583        And we're new code so I'm going to assert this from the start.  */
7584     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
7585     new_SV(sv);
7586     sv_setpvn(sv,s,len);
7587     SvFLAGS(sv) |= (flags & SVf_UTF8);
7588     return (flags & SVs_TEMP) ? sv_2mortal(sv) : sv;
7589 }
7590
7591 /*
7592 =for apidoc sv_2mortal
7593
7594 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
7595 by an explicit call to FREETMPS, or by an implicit call at places such as
7596 statement boundaries.  SvTEMP() is turned on which means that the SV's
7597 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7598 and C<sv_mortalcopy>.
7599
7600 =cut
7601 */
7602
7603 SV *
7604 Perl_sv_2mortal(pTHX_ register SV *const sv)
7605 {
7606     dVAR;
7607     if (!sv)
7608         return NULL;
7609     if (SvREADONLY(sv) && SvIMMORTAL(sv))
7610         return sv;
7611     EXTEND_MORTAL(1);
7612     PL_tmps_stack[++PL_tmps_ix] = sv;
7613     SvTEMP_on(sv);
7614     return sv;
7615 }
7616
7617 /*
7618 =for apidoc newSVpv
7619
7620 Creates a new SV and copies a string into it.  The reference count for the
7621 SV is set to 1.  If C<len> is zero, Perl will compute the length using
7622 strlen().  For efficiency, consider using C<newSVpvn> instead.
7623
7624 =cut
7625 */
7626
7627 SV *
7628 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
7629 {
7630     dVAR;
7631     register SV *sv;
7632
7633     new_SV(sv);
7634     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
7635     return sv;
7636 }
7637
7638 /*
7639 =for apidoc newSVpvn
7640
7641 Creates a new SV and copies a string into it.  The reference count for the
7642 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7643 string.  You are responsible for ensuring that the source string is at least
7644 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7645
7646 =cut
7647 */
7648
7649 SV *
7650 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
7651 {
7652     dVAR;
7653     register SV *sv;
7654
7655     new_SV(sv);
7656     sv_setpvn(sv,s,len);
7657     return sv;
7658 }
7659
7660 /*
7661 =for apidoc newSVhek
7662
7663 Creates a new SV from the hash key structure.  It will generate scalars that
7664 point to the shared string table where possible. Returns a new (undefined)
7665 SV if the hek is NULL.
7666
7667 =cut
7668 */
7669
7670 SV *
7671 Perl_newSVhek(pTHX_ const HEK *const hek)
7672 {
7673     dVAR;
7674     if (!hek) {
7675         SV *sv;
7676
7677         new_SV(sv);
7678         return sv;
7679     }
7680
7681     if (HEK_LEN(hek) == HEf_SVKEY) {
7682         return newSVsv(*(SV**)HEK_KEY(hek));
7683     } else {
7684         const int flags = HEK_FLAGS(hek);
7685         if (flags & HVhek_WASUTF8) {
7686             /* Trouble :-)
7687                Andreas would like keys he put in as utf8 to come back as utf8
7688             */
7689             STRLEN utf8_len = HEK_LEN(hek);
7690             const U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
7691             SV * const sv = newSVpvn ((const char*)as_utf8, utf8_len);
7692
7693             SvUTF8_on (sv);
7694             Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
7695             return sv;
7696         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
7697             /* We don't have a pointer to the hv, so we have to replicate the
7698                flag into every HEK. This hv is using custom a hasing
7699                algorithm. Hence we can't return a shared string scalar, as
7700                that would contain the (wrong) hash value, and might get passed
7701                into an hv routine with a regular hash.
7702                Similarly, a hash that isn't using shared hash keys has to have
7703                the flag in every key so that we know not to try to call
7704                share_hek_kek on it.  */
7705
7706             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
7707             if (HEK_UTF8(hek))
7708                 SvUTF8_on (sv);
7709             return sv;
7710         }
7711         /* This will be overwhelminly the most common case.  */
7712         {
7713             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
7714                more efficient than sharepvn().  */
7715             SV *sv;
7716
7717             new_SV(sv);
7718             sv_upgrade(sv, SVt_PV);
7719             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
7720             SvCUR_set(sv, HEK_LEN(hek));
7721             SvLEN_set(sv, 0);
7722             SvREADONLY_on(sv);
7723             SvFAKE_on(sv);
7724             SvPOK_on(sv);
7725             if (HEK_UTF8(hek))
7726                 SvUTF8_on(sv);
7727             return sv;
7728         }
7729     }
7730 }
7731
7732 /*
7733 =for apidoc newSVpvn_share
7734
7735 Creates a new SV with its SvPVX_const pointing to a shared string in the string
7736 table. If the string does not already exist in the table, it is created
7737 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
7738 value is used; otherwise the hash is computed. The string's hash can be later
7739 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
7740 that as the string table is used for shared hash keys these strings will have
7741 SvPVX_const == HeKEY and hash lookup will avoid string compare.
7742
7743 =cut
7744 */
7745
7746 SV *
7747 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
7748 {
7749     dVAR;
7750     register SV *sv;
7751     bool is_utf8 = FALSE;
7752     const char *const orig_src = src;
7753
7754     if (len < 0) {
7755         STRLEN tmplen = -len;
7756         is_utf8 = TRUE;
7757         /* See the note in hv.c:hv_fetch() --jhi */
7758         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
7759         len = tmplen;
7760     }
7761     if (!hash)
7762         PERL_HASH(hash, src, len);
7763     new_SV(sv);
7764     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
7765        changes here, update it there too.  */
7766     sv_upgrade(sv, SVt_PV);
7767     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
7768     SvCUR_set(sv, len);
7769     SvLEN_set(sv, 0);
7770     SvREADONLY_on(sv);
7771     SvFAKE_on(sv);
7772     SvPOK_on(sv);
7773     if (is_utf8)
7774         SvUTF8_on(sv);
7775     if (src != orig_src)
7776         Safefree(src);
7777     return sv;
7778 }
7779
7780
7781 #if defined(PERL_IMPLICIT_CONTEXT)
7782
7783 /* pTHX_ magic can't cope with varargs, so this is a no-context
7784  * version of the main function, (which may itself be aliased to us).
7785  * Don't access this version directly.
7786  */
7787
7788 SV *
7789 Perl_newSVpvf_nocontext(const char *const pat, ...)
7790 {
7791     dTHX;
7792     register SV *sv;
7793     va_list args;
7794
7795     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
7796
7797     va_start(args, pat);
7798     sv = vnewSVpvf(pat, &args);
7799     va_end(args);
7800     return sv;
7801 }
7802 #endif
7803
7804 /*
7805 =for apidoc newSVpvf
7806
7807 Creates a new SV and initializes it with the string formatted like
7808 C<sprintf>.
7809
7810 =cut
7811 */
7812
7813 SV *
7814 Perl_newSVpvf(pTHX_ const char *const pat, ...)
7815 {
7816     register SV *sv;
7817     va_list args;
7818
7819     PERL_ARGS_ASSERT_NEWSVPVF;
7820
7821     va_start(args, pat);
7822     sv = vnewSVpvf(pat, &args);
7823     va_end(args);
7824     return sv;
7825 }
7826
7827 /* backend for newSVpvf() and newSVpvf_nocontext() */
7828
7829 SV *
7830 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
7831 {
7832     dVAR;
7833     register SV *sv;
7834
7835     PERL_ARGS_ASSERT_VNEWSVPVF;
7836
7837     new_SV(sv);
7838     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
7839     return sv;
7840 }
7841
7842 /*
7843 =for apidoc newSVnv
7844
7845 Creates a new SV and copies a floating point value into it.
7846 The reference count for the SV is set to 1.
7847
7848 =cut
7849 */
7850
7851 SV *
7852 Perl_newSVnv(pTHX_ const NV n)
7853 {
7854     dVAR;
7855     register SV *sv;
7856
7857     new_SV(sv);
7858     sv_setnv(sv,n);
7859     return sv;
7860 }
7861
7862 /*
7863 =for apidoc newSViv
7864
7865 Creates a new SV and copies an integer into it.  The reference count for the
7866 SV is set to 1.
7867
7868 =cut
7869 */
7870
7871 SV *
7872 Perl_newSViv(pTHX_ const IV i)
7873 {
7874     dVAR;
7875     register SV *sv;
7876
7877     new_SV(sv);
7878     sv_setiv(sv,i);
7879     return sv;
7880 }
7881
7882 /*
7883 =for apidoc newSVuv
7884
7885 Creates a new SV and copies an unsigned integer into it.
7886 The reference count for the SV is set to 1.
7887
7888 =cut
7889 */
7890
7891 SV *
7892 Perl_newSVuv(pTHX_ const UV u)
7893 {
7894     dVAR;
7895     register SV *sv;
7896
7897     new_SV(sv);
7898     sv_setuv(sv,u);
7899     return sv;
7900 }
7901
7902 /*
7903 =for apidoc newSV_type
7904
7905 Creates a new SV, of the type specified.  The reference count for the new SV
7906 is set to 1.
7907
7908 =cut
7909 */
7910
7911 SV *
7912 Perl_newSV_type(pTHX_ const svtype type)
7913 {
7914     register SV *sv;
7915
7916     new_SV(sv);
7917     sv_upgrade(sv, type);
7918     return sv;
7919 }
7920
7921 /*
7922 =for apidoc newRV_noinc
7923
7924 Creates an RV wrapper for an SV.  The reference count for the original
7925 SV is B<not> incremented.
7926
7927 =cut
7928 */
7929
7930 SV *
7931 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
7932 {
7933     dVAR;
7934     register SV *sv = newSV_type(SVt_IV);
7935
7936     PERL_ARGS_ASSERT_NEWRV_NOINC;
7937
7938     SvTEMP_off(tmpRef);
7939     SvRV_set(sv, tmpRef);
7940     SvROK_on(sv);
7941     return sv;
7942 }
7943
7944 /* newRV_inc is the official function name to use now.
7945  * newRV_inc is in fact #defined to newRV in sv.h
7946  */
7947
7948 SV *
7949 Perl_newRV(pTHX_ SV *const sv)
7950 {
7951     dVAR;
7952
7953     PERL_ARGS_ASSERT_NEWRV;
7954
7955     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
7956 }
7957
7958 /*
7959 =for apidoc newSVsv
7960
7961 Creates a new SV which is an exact duplicate of the original SV.
7962 (Uses C<sv_setsv>).
7963
7964 =cut
7965 */
7966
7967 SV *
7968 Perl_newSVsv(pTHX_ register SV *const old)
7969 {
7970     dVAR;
7971     register SV *sv;
7972
7973     if (!old)
7974         return NULL;
7975     if (SvTYPE(old) == SVTYPEMASK) {
7976         if (ckWARN_d(WARN_INTERNAL))
7977             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
7978         return NULL;
7979     }
7980     new_SV(sv);
7981     /* SV_GMAGIC is the default for sv_setv()
7982        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
7983        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
7984     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
7985     return sv;
7986 }
7987
7988 /*
7989 =for apidoc sv_reset
7990
7991 Underlying implementation for the C<reset> Perl function.
7992 Note that the perl-level function is vaguely deprecated.
7993
7994 =cut
7995 */
7996
7997 void
7998 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
7999 {
8000     dVAR;
8001     char todo[PERL_UCHAR_MAX+1];
8002
8003     PERL_ARGS_ASSERT_SV_RESET;
8004
8005     if (!stash)
8006         return;
8007
8008     if (!*s) {          /* reset ?? searches */
8009         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8010         if (mg) {
8011             const U32 count = mg->mg_len / sizeof(PMOP**);
8012             PMOP **pmp = (PMOP**) mg->mg_ptr;
8013             PMOP *const *const end = pmp + count;
8014
8015             while (pmp < end) {
8016 #ifdef USE_ITHREADS
8017                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8018 #else
8019                 (*pmp)->op_pmflags &= ~PMf_USED;
8020 #endif
8021                 ++pmp;
8022             }
8023         }
8024         return;
8025     }
8026
8027     /* reset variables */
8028
8029     if (!HvARRAY(stash))
8030         return;
8031
8032     Zero(todo, 256, char);
8033     while (*s) {
8034         I32 max;
8035         I32 i = (unsigned char)*s;
8036         if (s[1] == '-') {
8037             s += 2;
8038         }
8039         max = (unsigned char)*s++;
8040         for ( ; i <= max; i++) {
8041             todo[i] = 1;
8042         }
8043         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8044             HE *entry;
8045             for (entry = HvARRAY(stash)[i];
8046                  entry;
8047                  entry = HeNEXT(entry))
8048             {
8049                 register GV *gv;
8050                 register SV *sv;
8051
8052                 if (!todo[(U8)*HeKEY(entry)])
8053                     continue;
8054                 gv = MUTABLE_GV(HeVAL(entry));
8055                 sv = GvSV(gv);
8056                 if (sv) {
8057                     if (SvTHINKFIRST(sv)) {
8058                         if (!SvREADONLY(sv) && SvROK(sv))
8059                             sv_unref(sv);
8060                         /* XXX Is this continue a bug? Why should THINKFIRST
8061                            exempt us from resetting arrays and hashes?  */
8062                         continue;
8063                     }
8064                     SvOK_off(sv);
8065                     if (SvTYPE(sv) >= SVt_PV) {
8066                         SvCUR_set(sv, 0);
8067                         if (SvPVX_const(sv) != NULL)
8068                             *SvPVX(sv) = '\0';
8069                         SvTAINT(sv);
8070                     }
8071                 }
8072                 if (GvAV(gv)) {
8073                     av_clear(GvAV(gv));
8074                 }
8075                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8076 #if defined(VMS)
8077                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8078 #else /* ! VMS */
8079                     hv_clear(GvHV(gv));
8080 #  if defined(USE_ENVIRON_ARRAY)
8081                     if (gv == PL_envgv)
8082                         my_clearenv();
8083 #  endif /* USE_ENVIRON_ARRAY */
8084 #endif /* VMS */
8085                 }
8086             }
8087         }
8088     }
8089 }
8090
8091 /*
8092 =for apidoc sv_2io
8093
8094 Using various gambits, try to get an IO from an SV: the IO slot if its a
8095 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8096 named after the PV if we're a string.
8097
8098 =cut
8099 */
8100
8101 IO*
8102 Perl_sv_2io(pTHX_ SV *const sv)
8103 {
8104     IO* io;
8105     GV* gv;
8106
8107     PERL_ARGS_ASSERT_SV_2IO;
8108
8109     switch (SvTYPE(sv)) {
8110     case SVt_PVIO:
8111         io = MUTABLE_IO(sv);
8112         break;
8113     case SVt_PVGV:
8114         if (isGV_with_GP(sv)) {
8115             gv = MUTABLE_GV(sv);
8116             io = GvIO(gv);
8117             if (!io)
8118                 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
8119             break;
8120         }
8121         /* FALL THROUGH */
8122     default:
8123         if (!SvOK(sv))
8124             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8125         if (SvROK(sv))
8126             return sv_2io(SvRV(sv));
8127         gv = gv_fetchsv(sv, 0, SVt_PVIO);
8128         if (gv)
8129             io = GvIO(gv);
8130         else
8131             io = 0;
8132         if (!io)
8133             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
8134         break;
8135     }
8136     return io;
8137 }
8138
8139 /*
8140 =for apidoc sv_2cv
8141
8142 Using various gambits, try to get a CV from an SV; in addition, try if
8143 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8144 The flags in C<lref> are passed to sv_fetchsv.
8145
8146 =cut
8147 */
8148
8149 CV *
8150 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8151 {
8152     dVAR;
8153     GV *gv = NULL;
8154     CV *cv = NULL;
8155
8156     PERL_ARGS_ASSERT_SV_2CV;
8157
8158     if (!sv) {
8159         *st = NULL;
8160         *gvp = NULL;
8161         return NULL;
8162     }
8163     switch (SvTYPE(sv)) {
8164     case SVt_PVCV:
8165         *st = CvSTASH(sv);
8166         *gvp = NULL;
8167         return MUTABLE_CV(sv);
8168     case SVt_PVHV:
8169     case SVt_PVAV:
8170         *st = NULL;
8171         *gvp = NULL;
8172         return NULL;
8173     case SVt_PVGV:
8174         if (isGV_with_GP(sv)) {
8175             gv = MUTABLE_GV(sv);
8176             *gvp = gv;
8177             *st = GvESTASH(gv);
8178             goto fix_gv;
8179         }
8180         /* FALL THROUGH */
8181
8182     default:
8183         if (SvROK(sv)) {
8184             SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
8185             SvGETMAGIC(sv);
8186             tryAMAGICunDEREF(to_cv);
8187
8188             sv = SvRV(sv);
8189             if (SvTYPE(sv) == SVt_PVCV) {
8190                 cv = MUTABLE_CV(sv);
8191                 *gvp = NULL;
8192                 *st = CvSTASH(cv);
8193                 return cv;
8194             }
8195             else if(isGV_with_GP(sv))
8196                 gv = MUTABLE_GV(sv);
8197             else
8198                 Perl_croak(aTHX_ "Not a subroutine reference");
8199         }
8200         else if (isGV_with_GP(sv)) {
8201             SvGETMAGIC(sv);
8202             gv = MUTABLE_GV(sv);
8203         }
8204         else
8205             gv = gv_fetchsv(sv, lref, SVt_PVCV); /* Calls get magic */
8206         *gvp = gv;
8207         if (!gv) {
8208             *st = NULL;
8209             return NULL;
8210         }
8211         /* Some flags to gv_fetchsv mean don't really create the GV  */
8212         if (!isGV_with_GP(gv)) {
8213             *st = NULL;
8214             return NULL;
8215         }
8216         *st = GvESTASH(gv);
8217     fix_gv:
8218         if (lref && !GvCVu(gv)) {
8219             SV *tmpsv;
8220             ENTER;
8221             tmpsv = newSV(0);
8222             gv_efullname3(tmpsv, gv, NULL);
8223             /* XXX this is probably not what they think they're getting.
8224              * It has the same effect as "sub name;", i.e. just a forward
8225              * declaration! */
8226             newSUB(start_subparse(FALSE, 0),
8227                    newSVOP(OP_CONST, 0, tmpsv),
8228                    NULL, NULL);
8229             LEAVE;
8230             if (!GvCVu(gv))
8231                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8232                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8233         }
8234         return GvCVu(gv);
8235     }
8236 }
8237
8238 /*
8239 =for apidoc sv_true
8240
8241 Returns true if the SV has a true value by Perl's rules.
8242 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8243 instead use an in-line version.
8244
8245 =cut
8246 */
8247
8248 I32
8249 Perl_sv_true(pTHX_ register SV *const sv)
8250 {
8251     if (!sv)
8252         return 0;
8253     if (SvPOK(sv)) {
8254         register const XPV* const tXpv = (XPV*)SvANY(sv);
8255         if (tXpv &&
8256                 (tXpv->xpv_cur > 1 ||
8257                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8258             return 1;
8259         else
8260             return 0;
8261     }
8262     else {
8263         if (SvIOK(sv))
8264             return SvIVX(sv) != 0;
8265         else {
8266             if (SvNOK(sv))
8267                 return SvNVX(sv) != 0.0;
8268             else
8269                 return sv_2bool(sv);
8270         }
8271     }
8272 }
8273
8274 /*
8275 =for apidoc sv_pvn_force
8276
8277 Get a sensible string out of the SV somehow.
8278 A private implementation of the C<SvPV_force> macro for compilers which
8279 can't cope with complex macro expressions. Always use the macro instead.
8280
8281 =for apidoc sv_pvn_force_flags
8282
8283 Get a sensible string out of the SV somehow.
8284 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8285 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8286 implemented in terms of this function.
8287 You normally want to use the various wrapper macros instead: see
8288 C<SvPV_force> and C<SvPV_force_nomg>
8289
8290 =cut
8291 */
8292
8293 char *
8294 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
8295 {
8296     dVAR;
8297
8298     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
8299
8300     if (SvTHINKFIRST(sv) && !SvROK(sv))
8301         sv_force_normal_flags(sv, 0);
8302
8303     if (SvPOK(sv)) {
8304         if (lp)
8305             *lp = SvCUR(sv);
8306     }
8307     else {
8308         char *s;
8309         STRLEN len;
8310  
8311         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
8312             const char * const ref = sv_reftype(sv,0);
8313             if (PL_op)
8314                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
8315                            ref, OP_NAME(PL_op));
8316             else
8317                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
8318         }
8319         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
8320             || isGV_with_GP(sv))
8321             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8322                 OP_NAME(PL_op));
8323         s = sv_2pv_flags(sv, &len, flags);
8324         if (lp)
8325             *lp = len;
8326
8327         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
8328             if (SvROK(sv))
8329                 sv_unref(sv);
8330             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
8331             SvGROW(sv, len + 1);
8332             Move(s,SvPVX(sv),len,char);
8333             SvCUR_set(sv, len);
8334             SvPVX(sv)[len] = '\0';
8335         }
8336         if (!SvPOK(sv)) {
8337             SvPOK_on(sv);               /* validate pointer */
8338             SvTAINT(sv);
8339             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
8340                                   PTR2UV(sv),SvPVX_const(sv)));
8341         }
8342     }
8343     return SvPVX_mutable(sv);
8344 }
8345
8346 /*
8347 =for apidoc sv_pvbyten_force
8348
8349 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
8350
8351 =cut
8352 */
8353
8354 char *
8355 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
8356 {
8357     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
8358
8359     sv_pvn_force(sv,lp);
8360     sv_utf8_downgrade(sv,0);
8361     *lp = SvCUR(sv);
8362     return SvPVX(sv);
8363 }
8364
8365 /*
8366 =for apidoc sv_pvutf8n_force
8367
8368 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
8369
8370 =cut
8371 */
8372
8373 char *
8374 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
8375 {
8376     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
8377
8378     sv_pvn_force(sv,lp);
8379     sv_utf8_upgrade(sv);
8380     *lp = SvCUR(sv);
8381     return SvPVX(sv);
8382 }
8383
8384 /*
8385 =for apidoc sv_reftype
8386
8387 Returns a string describing what the SV is a reference to.
8388
8389 =cut
8390 */
8391
8392 const char *
8393 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
8394 {
8395     PERL_ARGS_ASSERT_SV_REFTYPE;
8396
8397     /* The fact that I don't need to downcast to char * everywhere, only in ?:
8398        inside return suggests a const propagation bug in g++.  */
8399     if (ob && SvOBJECT(sv)) {
8400         char * const name = HvNAME_get(SvSTASH(sv));
8401         return name ? name : (char *) "__ANON__";
8402     }
8403     else {
8404         switch (SvTYPE(sv)) {
8405         case SVt_NULL:
8406         case SVt_IV:
8407         case SVt_NV:
8408         case SVt_PV:
8409         case SVt_PVIV:
8410         case SVt_PVNV:
8411         case SVt_PVMG:
8412                                 if (SvVOK(sv))
8413                                     return "VSTRING";
8414                                 if (SvROK(sv))
8415                                     return "REF";
8416                                 else
8417                                     return "SCALAR";
8418
8419         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
8420                                 /* tied lvalues should appear to be
8421                                  * scalars for backwards compatitbility */
8422                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
8423                                     ? "SCALAR" : "LVALUE");
8424         case SVt_PVAV:          return "ARRAY";
8425         case SVt_PVHV:          return "HASH";
8426         case SVt_PVCV:          return "CODE";
8427         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
8428                                     ? "GLOB" : "SCALAR");
8429         case SVt_PVFM:          return "FORMAT";
8430         case SVt_PVIO:          return "IO";
8431         case SVt_BIND:          return "BIND";
8432         case SVt_REGEXP:        return "REGEXP"; 
8433         default:                return "UNKNOWN";
8434         }
8435     }
8436 }
8437
8438 /*
8439 =for apidoc sv_isobject
8440
8441 Returns a boolean indicating whether the SV is an RV pointing to a blessed
8442 object.  If the SV is not an RV, or if the object is not blessed, then this
8443 will return false.
8444
8445 =cut
8446 */
8447
8448 int
8449 Perl_sv_isobject(pTHX_ SV *sv)
8450 {
8451     if (!sv)
8452         return 0;
8453     SvGETMAGIC(sv);
8454     if (!SvROK(sv))
8455         return 0;
8456     sv = SvRV(sv);
8457     if (!SvOBJECT(sv))
8458         return 0;
8459     return 1;
8460 }
8461
8462 /*
8463 =for apidoc sv_isa
8464
8465 Returns a boolean indicating whether the SV is blessed into the specified
8466 class.  This does not check for subtypes; use C<sv_derived_from> to verify
8467 an inheritance relationship.
8468
8469 =cut
8470 */
8471
8472 int
8473 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
8474 {
8475     const char *hvname;
8476
8477     PERL_ARGS_ASSERT_SV_ISA;
8478
8479     if (!sv)
8480         return 0;
8481     SvGETMAGIC(sv);
8482     if (!SvROK(sv))
8483         return 0;
8484     sv = SvRV(sv);
8485     if (!SvOBJECT(sv))
8486         return 0;
8487     hvname = HvNAME_get(SvSTASH(sv));
8488     if (!hvname)
8489         return 0;
8490
8491     return strEQ(hvname, name);
8492 }
8493
8494 /*
8495 =for apidoc newSVrv
8496
8497 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
8498 it will be upgraded to one.  If C<classname> is non-null then the new SV will
8499 be blessed in the specified package.  The new SV is returned and its
8500 reference count is 1.
8501
8502 =cut
8503 */
8504
8505 SV*
8506 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
8507 {
8508     dVAR;
8509     SV *sv;
8510
8511     PERL_ARGS_ASSERT_NEWSVRV;
8512
8513     new_SV(sv);
8514
8515     SV_CHECK_THINKFIRST_COW_DROP(rv);
8516     (void)SvAMAGIC_off(rv);
8517
8518     if (SvTYPE(rv) >= SVt_PVMG) {
8519         const U32 refcnt = SvREFCNT(rv);
8520         SvREFCNT(rv) = 0;
8521         sv_clear(rv);
8522         SvFLAGS(rv) = 0;
8523         SvREFCNT(rv) = refcnt;
8524
8525         sv_upgrade(rv, SVt_IV);
8526     } else if (SvROK(rv)) {
8527         SvREFCNT_dec(SvRV(rv));
8528     } else {
8529         prepare_SV_for_RV(rv);
8530     }
8531
8532     SvOK_off(rv);
8533     SvRV_set(rv, sv);
8534     SvROK_on(rv);
8535
8536     if (classname) {
8537         HV* const stash = gv_stashpv(classname, GV_ADD);
8538         (void)sv_bless(rv, stash);
8539     }
8540     return sv;
8541 }
8542
8543 /*
8544 =for apidoc sv_setref_pv
8545
8546 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
8547 argument will be upgraded to an RV.  That RV will be modified to point to
8548 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8549 into the SV.  The C<classname> argument indicates the package for the
8550 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8551 will have a reference count of 1, and the RV will be returned.
8552
8553 Do not use with other Perl types such as HV, AV, SV, CV, because those
8554 objects will become corrupted by the pointer copy process.
8555
8556 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8557
8558 =cut
8559 */
8560
8561 SV*
8562 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
8563 {
8564     dVAR;
8565
8566     PERL_ARGS_ASSERT_SV_SETREF_PV;
8567
8568     if (!pv) {
8569         sv_setsv(rv, &PL_sv_undef);
8570         SvSETMAGIC(rv);
8571     }
8572     else
8573         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
8574     return rv;
8575 }
8576
8577 /*
8578 =for apidoc sv_setref_iv
8579
8580 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
8581 argument will be upgraded to an RV.  That RV will be modified to point to
8582 the new SV.  The C<classname> argument indicates the package for the
8583 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8584 will have a reference count of 1, and the RV will be returned.
8585
8586 =cut
8587 */
8588
8589 SV*
8590 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
8591 {
8592     PERL_ARGS_ASSERT_SV_SETREF_IV;
8593
8594     sv_setiv(newSVrv(rv,classname), iv);
8595     return rv;
8596 }
8597
8598 /*
8599 =for apidoc sv_setref_uv
8600
8601 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
8602 argument will be upgraded to an RV.  That RV will be modified to point to
8603 the new SV.  The C<classname> argument indicates the package for the
8604 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8605 will have a reference count of 1, and the RV will be returned.
8606
8607 =cut
8608 */
8609
8610 SV*
8611 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
8612 {
8613     PERL_ARGS_ASSERT_SV_SETREF_UV;
8614
8615     sv_setuv(newSVrv(rv,classname), uv);
8616     return rv;
8617 }
8618
8619 /*
8620 =for apidoc sv_setref_nv
8621
8622 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
8623 argument will be upgraded to an RV.  That RV will be modified to point to
8624 the new SV.  The C<classname> argument indicates the package for the
8625 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8626 will have a reference count of 1, and the RV will be returned.
8627
8628 =cut
8629 */
8630
8631 SV*
8632 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
8633 {
8634     PERL_ARGS_ASSERT_SV_SETREF_NV;
8635
8636     sv_setnv(newSVrv(rv,classname), nv);
8637     return rv;
8638 }
8639
8640 /*
8641 =for apidoc sv_setref_pvn
8642
8643 Copies a string into a new SV, optionally blessing the SV.  The length of the
8644 string must be specified with C<n>.  The C<rv> argument will be upgraded to
8645 an RV.  That RV will be modified to point to the new SV.  The C<classname>
8646 argument indicates the package for the blessing.  Set C<classname> to
8647 C<NULL> to avoid the blessing.  The new SV will have a reference count
8648 of 1, and the RV will be returned.
8649
8650 Note that C<sv_setref_pv> copies the pointer while this copies the string.
8651
8652 =cut
8653 */
8654
8655 SV*
8656 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
8657                    const char *const pv, const STRLEN n)
8658 {
8659     PERL_ARGS_ASSERT_SV_SETREF_PVN;
8660
8661     sv_setpvn(newSVrv(rv,classname), pv, n);
8662     return rv;
8663 }
8664
8665 /*
8666 =for apidoc sv_bless
8667
8668 Blesses an SV into a specified package.  The SV must be an RV.  The package
8669 must be designated by its stash (see C<gv_stashpv()>).  The reference count
8670 of the SV is unaffected.
8671
8672 =cut
8673 */
8674
8675 SV*
8676 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
8677 {
8678     dVAR;
8679     SV *tmpRef;
8680
8681     PERL_ARGS_ASSERT_SV_BLESS;
8682
8683     if (!SvROK(sv))
8684         Perl_croak(aTHX_ "Can't bless non-reference value");
8685     tmpRef = SvRV(sv);
8686     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
8687         if (SvIsCOW(tmpRef))
8688             sv_force_normal_flags(tmpRef, 0);
8689         if (SvREADONLY(tmpRef))
8690             Perl_croak(aTHX_ "%s", PL_no_modify);
8691         if (SvOBJECT(tmpRef)) {
8692             if (SvTYPE(tmpRef) != SVt_PVIO)
8693                 --PL_sv_objcount;
8694             SvREFCNT_dec(SvSTASH(tmpRef));
8695         }
8696     }
8697     SvOBJECT_on(tmpRef);
8698     if (SvTYPE(tmpRef) != SVt_PVIO)
8699         ++PL_sv_objcount;
8700     SvUPGRADE(tmpRef, SVt_PVMG);
8701     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
8702
8703     if (Gv_AMG(stash))
8704         SvAMAGIC_on(sv);
8705     else
8706         (void)SvAMAGIC_off(sv);
8707
8708     if(SvSMAGICAL(tmpRef))
8709         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
8710             mg_set(tmpRef);
8711
8712
8713
8714     return sv;
8715 }
8716
8717 /* Downgrades a PVGV to a PVMG.
8718  */
8719
8720 STATIC void
8721 S_sv_unglob(pTHX_ SV *const sv)
8722 {
8723     dVAR;
8724     void *xpvmg;
8725     HV *stash;
8726     SV * const temp = sv_newmortal();
8727
8728     PERL_ARGS_ASSERT_SV_UNGLOB;
8729
8730     assert(SvTYPE(sv) == SVt_PVGV);
8731     SvFAKE_off(sv);
8732     gv_efullname3(temp, MUTABLE_GV(sv), "*");
8733
8734     if (GvGP(sv)) {
8735         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
8736            && HvNAME_get(stash))
8737             mro_method_changed_in(stash);
8738         gp_free(MUTABLE_GV(sv));
8739     }
8740     if (GvSTASH(sv)) {
8741         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
8742         GvSTASH(sv) = NULL;
8743     }
8744     GvMULTI_off(sv);
8745     if (GvNAME_HEK(sv)) {
8746         unshare_hek(GvNAME_HEK(sv));
8747     }
8748     isGV_with_GP_off(sv);
8749
8750     /* need to keep SvANY(sv) in the right arena */
8751     xpvmg = new_XPVMG();
8752     StructCopy(SvANY(sv), xpvmg, XPVMG);
8753     del_XPVGV(SvANY(sv));
8754     SvANY(sv) = xpvmg;
8755
8756     SvFLAGS(sv) &= ~SVTYPEMASK;
8757     SvFLAGS(sv) |= SVt_PVMG;
8758
8759     /* Intentionally not calling any local SET magic, as this isn't so much a
8760        set operation as merely an internal storage change.  */
8761     sv_setsv_flags(sv, temp, 0);
8762 }
8763
8764 /*
8765 =for apidoc sv_unref_flags
8766
8767 Unsets the RV status of the SV, and decrements the reference count of
8768 whatever was being referenced by the RV.  This can almost be thought of
8769 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
8770 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
8771 (otherwise the decrementing is conditional on the reference count being
8772 different from one or the reference being a readonly SV).
8773 See C<SvROK_off>.
8774
8775 =cut
8776 */
8777
8778 void
8779 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
8780 {
8781     SV* const target = SvRV(ref);
8782
8783     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
8784
8785     if (SvWEAKREF(ref)) {
8786         sv_del_backref(target, ref);
8787         SvWEAKREF_off(ref);
8788         SvRV_set(ref, NULL);
8789         return;
8790     }
8791     SvRV_set(ref, NULL);
8792     SvROK_off(ref);
8793     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
8794        assigned to as BEGIN {$a = \"Foo"} will fail.  */
8795     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
8796         SvREFCNT_dec(target);
8797     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
8798         sv_2mortal(target);     /* Schedule for freeing later */
8799 }
8800
8801 /*
8802 =for apidoc sv_untaint
8803
8804 Untaint an SV. Use C<SvTAINTED_off> instead.
8805 =cut
8806 */
8807
8808 void
8809 Perl_sv_untaint(pTHX_ SV *const sv)
8810 {
8811     PERL_ARGS_ASSERT_SV_UNTAINT;
8812
8813     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8814         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
8815         if (mg)
8816             mg->mg_len &= ~1;
8817     }
8818 }
8819
8820 /*
8821 =for apidoc sv_tainted
8822
8823 Test an SV for taintedness. Use C<SvTAINTED> instead.
8824 =cut
8825 */
8826
8827 bool
8828 Perl_sv_tainted(pTHX_ SV *const sv)
8829 {
8830     PERL_ARGS_ASSERT_SV_TAINTED;
8831
8832     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8833         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
8834         if (mg && (mg->mg_len & 1) )
8835             return TRUE;
8836     }
8837     return FALSE;
8838 }
8839
8840 /*
8841 =for apidoc sv_setpviv
8842
8843 Copies an integer into the given SV, also updating its string value.
8844 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
8845
8846 =cut
8847 */
8848
8849 void
8850 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
8851 {
8852     char buf[TYPE_CHARS(UV)];
8853     char *ebuf;
8854     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8855
8856     PERL_ARGS_ASSERT_SV_SETPVIV;
8857
8858     sv_setpvn(sv, ptr, ebuf - ptr);
8859 }
8860
8861 /*
8862 =for apidoc sv_setpviv_mg
8863
8864 Like C<sv_setpviv>, but also handles 'set' magic.
8865
8866 =cut
8867 */
8868
8869 void
8870 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
8871 {
8872     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
8873
8874     sv_setpviv(sv, iv);
8875     SvSETMAGIC(sv);
8876 }
8877
8878 #if defined(PERL_IMPLICIT_CONTEXT)
8879
8880 /* pTHX_ magic can't cope with varargs, so this is a no-context
8881  * version of the main function, (which may itself be aliased to us).
8882  * Don't access this version directly.
8883  */
8884
8885 void
8886 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
8887 {
8888     dTHX;
8889     va_list args;
8890
8891     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
8892
8893     va_start(args, pat);
8894     sv_vsetpvf(sv, pat, &args);
8895     va_end(args);
8896 }
8897
8898 /* pTHX_ magic can't cope with varargs, so this is a no-context
8899  * version of the main function, (which may itself be aliased to us).
8900  * Don't access this version directly.
8901  */
8902
8903 void
8904 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
8905 {
8906     dTHX;
8907     va_list args;
8908
8909     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
8910
8911     va_start(args, pat);
8912     sv_vsetpvf_mg(sv, pat, &args);
8913     va_end(args);
8914 }
8915 #endif
8916
8917 /*
8918 =for apidoc sv_setpvf
8919
8920 Works like C<sv_catpvf> but copies the text into the SV instead of
8921 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
8922
8923 =cut
8924 */
8925
8926 void
8927 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
8928 {
8929     va_list args;
8930
8931     PERL_ARGS_ASSERT_SV_SETPVF;
8932
8933     va_start(args, pat);
8934     sv_vsetpvf(sv, pat, &args);
8935     va_end(args);
8936 }
8937
8938 /*
8939 =for apidoc sv_vsetpvf
8940
8941 Works like C<sv_vcatpvf> but copies the text into the SV instead of
8942 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
8943
8944 Usually used via its frontend C<sv_setpvf>.
8945
8946 =cut
8947 */
8948
8949 void
8950 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8951 {
8952     PERL_ARGS_ASSERT_SV_VSETPVF;
8953
8954     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8955 }
8956
8957 /*
8958 =for apidoc sv_setpvf_mg
8959
8960 Like C<sv_setpvf>, but also handles 'set' magic.
8961
8962 =cut
8963 */
8964
8965 void
8966 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
8967 {
8968     va_list args;
8969
8970     PERL_ARGS_ASSERT_SV_SETPVF_MG;
8971
8972     va_start(args, pat);
8973     sv_vsetpvf_mg(sv, pat, &args);
8974     va_end(args);
8975 }
8976
8977 /*
8978 =for apidoc sv_vsetpvf_mg
8979
8980 Like C<sv_vsetpvf>, but also handles 'set' magic.
8981
8982 Usually used via its frontend C<sv_setpvf_mg>.
8983
8984 =cut
8985 */
8986
8987 void
8988 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8989 {
8990     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
8991
8992     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8993     SvSETMAGIC(sv);
8994 }
8995
8996 #if defined(PERL_IMPLICIT_CONTEXT)
8997
8998 /* pTHX_ magic can't cope with varargs, so this is a no-context
8999  * version of the main function, (which may itself be aliased to us).
9000  * Don't access this version directly.
9001  */
9002
9003 void
9004 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9005 {
9006     dTHX;
9007     va_list args;
9008
9009     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9010
9011     va_start(args, pat);
9012     sv_vcatpvf(sv, pat, &args);
9013     va_end(args);
9014 }
9015
9016 /* pTHX_ magic can't cope with varargs, so this is a no-context
9017  * version of the main function, (which may itself be aliased to us).
9018  * Don't access this version directly.
9019  */
9020
9021 void
9022 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9023 {
9024     dTHX;
9025     va_list args;
9026
9027     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9028
9029     va_start(args, pat);
9030     sv_vcatpvf_mg(sv, pat, &args);
9031     va_end(args);
9032 }
9033 #endif
9034
9035 /*
9036 =for apidoc sv_catpvf
9037
9038 Processes its arguments like C<sprintf> and appends the formatted
9039 output to an SV.  If the appended data contains "wide" characters
9040 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9041 and characters >255 formatted with %c), the original SV might get
9042 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9043 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
9044 valid UTF-8; if the original SV was bytes, the pattern should be too.
9045
9046 =cut */
9047
9048 void
9049 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9050 {
9051     va_list args;
9052
9053     PERL_ARGS_ASSERT_SV_CATPVF;
9054
9055     va_start(args, pat);
9056     sv_vcatpvf(sv, pat, &args);
9057     va_end(args);
9058 }
9059
9060 /*
9061 =for apidoc sv_vcatpvf
9062
9063 Processes its arguments like C<vsprintf> and appends the formatted output
9064 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9065
9066 Usually used via its frontend C<sv_catpvf>.
9067
9068 =cut
9069 */
9070
9071 void
9072 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9073 {
9074     PERL_ARGS_ASSERT_SV_VCATPVF;
9075
9076     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9077 }
9078
9079 /*
9080 =for apidoc sv_catpvf_mg
9081
9082 Like C<sv_catpvf>, but also handles 'set' magic.
9083
9084 =cut
9085 */
9086
9087 void
9088 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9089 {
9090     va_list args;
9091
9092     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9093
9094     va_start(args, pat);
9095     sv_vcatpvf_mg(sv, pat, &args);
9096     va_end(args);
9097 }
9098
9099 /*
9100 =for apidoc sv_vcatpvf_mg
9101
9102 Like C<sv_vcatpvf>, but also handles 'set' magic.
9103
9104 Usually used via its frontend C<sv_catpvf_mg>.
9105
9106 =cut
9107 */
9108
9109 void
9110 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9111 {
9112     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9113
9114     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9115     SvSETMAGIC(sv);
9116 }
9117
9118 /*
9119 =for apidoc sv_vsetpvfn
9120
9121 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9122 appending it.
9123
9124 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9125
9126 =cut
9127 */
9128
9129 void
9130 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9131                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9132 {
9133     PERL_ARGS_ASSERT_SV_VSETPVFN;
9134
9135     sv_setpvs(sv, "");
9136     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9137 }
9138
9139 STATIC I32
9140 S_expect_number(pTHX_ char **const pattern)
9141 {
9142     dVAR;
9143     I32 var = 0;
9144
9145     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9146
9147     switch (**pattern) {
9148     case '1': case '2': case '3':
9149     case '4': case '5': case '6':
9150     case '7': case '8': case '9':
9151         var = *(*pattern)++ - '0';
9152         while (isDIGIT(**pattern)) {
9153             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9154             if (tmp < var)
9155                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_NAME(PL_op) : "sv_vcatpvfn"));
9156             var = tmp;
9157         }
9158     }
9159     return var;
9160 }
9161
9162 STATIC char *
9163 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9164 {
9165     const int neg = nv < 0;
9166     UV uv;
9167
9168     PERL_ARGS_ASSERT_F0CONVERT;
9169
9170     if (neg)
9171         nv = -nv;
9172     if (nv < UV_MAX) {
9173         char *p = endbuf;
9174         nv += 0.5;
9175         uv = (UV)nv;
9176         if (uv & 1 && uv == nv)
9177             uv--;                       /* Round to even */
9178         do {
9179             const unsigned dig = uv % 10;
9180             *--p = '0' + dig;
9181         } while (uv /= 10);
9182         if (neg)
9183             *--p = '-';
9184         *len = endbuf - p;
9185         return p;
9186     }
9187     return NULL;
9188 }
9189
9190
9191 /*
9192 =for apidoc sv_vcatpvfn
9193
9194 Processes its arguments like C<vsprintf> and appends the formatted output
9195 to an SV.  Uses an array of SVs if the C style variable argument list is
9196 missing (NULL).  When running with taint checks enabled, indicates via
9197 C<maybe_tainted> if results are untrustworthy (often due to the use of
9198 locales).
9199
9200 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9201
9202 =cut
9203 */
9204
9205
9206 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9207                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9208                         vec_utf8 = DO_UTF8(vecsv);
9209
9210 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9211
9212 void
9213 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9214                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9215 {
9216     dVAR;
9217     char *p;
9218     char *q;
9219     const char *patend;
9220     STRLEN origlen;
9221     I32 svix = 0;
9222     static const char nullstr[] = "(null)";
9223     SV *argsv = NULL;
9224     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
9225     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
9226     SV *nsv = NULL;
9227     /* Times 4: a decimal digit takes more than 3 binary digits.
9228      * NV_DIG: mantissa takes than many decimal digits.
9229      * Plus 32: Playing safe. */
9230     char ebuf[IV_DIG * 4 + NV_DIG + 32];
9231     /* large enough for "%#.#f" --chip */
9232     /* what about long double NVs? --jhi */
9233
9234     PERL_ARGS_ASSERT_SV_VCATPVFN;
9235     PERL_UNUSED_ARG(maybe_tainted);
9236
9237     /* no matter what, this is a string now */
9238     (void)SvPV_force(sv, origlen);
9239
9240     /* special-case "", "%s", and "%-p" (SVf - see below) */
9241     if (patlen == 0)
9242         return;
9243     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
9244         if (args) {
9245             const char * const s = va_arg(*args, char*);
9246             sv_catpv(sv, s ? s : nullstr);
9247         }
9248         else if (svix < svmax) {
9249             sv_catsv(sv, *svargs);
9250         }
9251         return;
9252     }
9253     if (args && patlen == 3 && pat[0] == '%' &&
9254                 pat[1] == '-' && pat[2] == 'p') {
9255         argsv = MUTABLE_SV(va_arg(*args, void*));
9256         sv_catsv(sv, argsv);
9257         return;
9258     }
9259
9260 #ifndef USE_LONG_DOUBLE
9261     /* special-case "%.<number>[gf]" */
9262     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
9263          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
9264         unsigned digits = 0;
9265         const char *pp;
9266
9267         pp = pat + 2;
9268         while (*pp >= '0' && *pp <= '9')
9269             digits = 10 * digits + (*pp++ - '0');
9270         if (pp - pat == (int)patlen - 1) {
9271             NV nv;
9272
9273             if (svix < svmax)
9274                 nv = SvNV(*svargs);
9275             else
9276                 return;
9277             if (*pp == 'g') {
9278                 /* Add check for digits != 0 because it seems that some
9279                    gconverts are buggy in this case, and we don't yet have
9280                    a Configure test for this.  */
9281                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9282                      /* 0, point, slack */
9283                     Gconvert(nv, (int)digits, 0, ebuf);
9284                     sv_catpv(sv, ebuf);
9285                     if (*ebuf)  /* May return an empty string for digits==0 */
9286                         return;
9287                 }
9288             } else if (!digits) {
9289                 STRLEN l;
9290
9291                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9292                     sv_catpvn(sv, p, l);
9293                     return;
9294                 }
9295             }
9296         }
9297     }
9298 #endif /* !USE_LONG_DOUBLE */
9299
9300     if (!args && svix < svmax && DO_UTF8(*svargs))
9301         has_utf8 = TRUE;
9302
9303     patend = (char*)pat + patlen;
9304     for (p = (char*)pat; p < patend; p = q) {
9305         bool alt = FALSE;
9306         bool left = FALSE;
9307         bool vectorize = FALSE;
9308         bool vectorarg = FALSE;
9309         bool vec_utf8 = FALSE;
9310         char fill = ' ';
9311         char plus = 0;
9312         char intsize = 0;
9313         STRLEN width = 0;
9314         STRLEN zeros = 0;
9315         bool has_precis = FALSE;
9316         STRLEN precis = 0;
9317         const I32 osvix = svix;
9318         bool is_utf8 = FALSE;  /* is this item utf8?   */
9319 #ifdef HAS_LDBL_SPRINTF_BUG
9320         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9321            with sfio - Allen <allens@cpan.org> */
9322         bool fix_ldbl_sprintf_bug = FALSE;
9323 #endif
9324
9325         char esignbuf[4];
9326         U8 utf8buf[UTF8_MAXBYTES+1];
9327         STRLEN esignlen = 0;
9328
9329         const char *eptr = NULL;
9330         const char *fmtstart;
9331         STRLEN elen = 0;
9332         SV *vecsv = NULL;
9333         const U8 *vecstr = NULL;
9334         STRLEN veclen = 0;
9335         char c = 0;
9336         int i;
9337         unsigned base = 0;
9338         IV iv = 0;
9339         UV uv = 0;
9340         /* we need a long double target in case HAS_LONG_DOUBLE but
9341            not USE_LONG_DOUBLE
9342         */
9343 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9344         long double nv;
9345 #else
9346         NV nv;
9347 #endif
9348         STRLEN have;
9349         STRLEN need;
9350         STRLEN gap;
9351         const char *dotstr = ".";
9352         STRLEN dotstrlen = 1;
9353         I32 efix = 0; /* explicit format parameter index */
9354         I32 ewix = 0; /* explicit width index */
9355         I32 epix = 0; /* explicit precision index */
9356         I32 evix = 0; /* explicit vector index */
9357         bool asterisk = FALSE;
9358
9359         /* echo everything up to the next format specification */
9360         for (q = p; q < patend && *q != '%'; ++q) ;
9361         if (q > p) {
9362             if (has_utf8 && !pat_utf8)
9363                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
9364             else
9365                 sv_catpvn(sv, p, q - p);
9366             p = q;
9367         }
9368         if (q++ >= patend)
9369             break;
9370
9371         fmtstart = q;
9372
9373 /*
9374     We allow format specification elements in this order:
9375         \d+\$              explicit format parameter index
9376         [-+ 0#]+           flags
9377         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
9378         0                  flag (as above): repeated to allow "v02"     
9379         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
9380         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
9381         [hlqLV]            size
9382     [%bcdefginopsuxDFOUX] format (mandatory)
9383 */
9384
9385         if (args) {
9386 /*  
9387         As of perl5.9.3, printf format checking is on by default.
9388         Internally, perl uses %p formats to provide an escape to
9389         some extended formatting.  This block deals with those
9390         extensions: if it does not match, (char*)q is reset and
9391         the normal format processing code is used.
9392
9393         Currently defined extensions are:
9394                 %p              include pointer address (standard)      
9395                 %-p     (SVf)   include an SV (previously %_)
9396                 %-<num>p        include an SV with precision <num>      
9397                 %<num>p         reserved for future extensions
9398
9399         Robin Barker 2005-07-14
9400
9401                 %1p     (VDf)   removed.  RMB 2007-10-19
9402 */
9403             char* r = q; 
9404             bool sv = FALSE;    
9405             STRLEN n = 0;
9406             if (*q == '-')
9407                 sv = *q++;
9408             n = expect_number(&q);
9409             if (*q++ == 'p') {
9410                 if (sv) {                       /* SVf */
9411                     if (n) {
9412                         precis = n;
9413                         has_precis = TRUE;
9414                     }
9415                     argsv = MUTABLE_SV(va_arg(*args, void*));
9416                     eptr = SvPV_const(argsv, elen);
9417                     if (DO_UTF8(argsv))
9418                         is_utf8 = TRUE;
9419                     goto string;
9420                 }
9421                 else if (n) {
9422                     if (ckWARN_d(WARN_INTERNAL))
9423                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9424                         "internal %%<num>p might conflict with future printf extensions");
9425                 }
9426             }
9427             q = r; 
9428         }
9429
9430         if ( (width = expect_number(&q)) ) {
9431             if (*q == '$') {
9432                 ++q;
9433                 efix = width;
9434             } else {
9435                 goto gotwidth;
9436             }
9437         }
9438
9439         /* FLAGS */
9440
9441         while (*q) {
9442             switch (*q) {
9443             case ' ':
9444             case '+':
9445                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
9446                     q++;
9447                 else
9448                     plus = *q++;
9449                 continue;
9450
9451             case '-':
9452                 left = TRUE;
9453                 q++;
9454                 continue;
9455
9456             case '0':
9457                 fill = *q++;
9458                 continue;
9459
9460             case '#':
9461                 alt = TRUE;
9462                 q++;
9463                 continue;
9464
9465             default:
9466                 break;
9467             }
9468             break;
9469         }
9470
9471       tryasterisk:
9472         if (*q == '*') {
9473             q++;
9474             if ( (ewix = expect_number(&q)) )
9475                 if (*q++ != '$')
9476                     goto unknown;
9477             asterisk = TRUE;
9478         }
9479         if (*q == 'v') {
9480             q++;
9481             if (vectorize)
9482                 goto unknown;
9483             if ((vectorarg = asterisk)) {
9484                 evix = ewix;
9485                 ewix = 0;
9486                 asterisk = FALSE;
9487             }
9488             vectorize = TRUE;
9489             goto tryasterisk;
9490         }
9491
9492         if (!asterisk)
9493         {
9494             if( *q == '0' )
9495                 fill = *q++;
9496             width = expect_number(&q);
9497         }
9498
9499         if (vectorize) {
9500             if (vectorarg) {
9501                 if (args)
9502                     vecsv = va_arg(*args, SV*);
9503                 else if (evix) {
9504                     vecsv = (evix > 0 && evix <= svmax)
9505                         ? svargs[evix-1] : &PL_sv_undef;
9506                 } else {
9507                     vecsv = svix < svmax ? svargs[svix++] : &PL_sv_undef;
9508                 }
9509                 dotstr = SvPV_const(vecsv, dotstrlen);
9510                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
9511                    bad with tied or overloaded values that return UTF8.  */
9512                 if (DO_UTF8(vecsv))
9513                     is_utf8 = TRUE;
9514                 else if (has_utf8) {
9515                     vecsv = sv_mortalcopy(vecsv);
9516                     sv_utf8_upgrade(vecsv);
9517                     dotstr = SvPV_const(vecsv, dotstrlen);
9518                     is_utf8 = TRUE;
9519                 }                   
9520             }
9521             if (args) {
9522                 VECTORIZE_ARGS
9523             }
9524             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
9525                 vecsv = svargs[efix ? efix-1 : svix++];
9526                 vecstr = (U8*)SvPV_const(vecsv,veclen);
9527                 vec_utf8 = DO_UTF8(vecsv);
9528
9529                 /* if this is a version object, we need to convert
9530                  * back into v-string notation and then let the
9531                  * vectorize happen normally
9532                  */
9533                 if (sv_derived_from(vecsv, "version")) {
9534                     char *version = savesvpv(vecsv);
9535                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
9536                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9537                         "vector argument not supported with alpha versions");
9538                         goto unknown;
9539                     }
9540                     vecsv = sv_newmortal();
9541                     scan_vstring(version, version + veclen, vecsv);
9542                     vecstr = (U8*)SvPV_const(vecsv, veclen);
9543                     vec_utf8 = DO_UTF8(vecsv);
9544                     Safefree(version);
9545                 }
9546             }
9547             else {
9548                 vecstr = (U8*)"";
9549                 veclen = 0;
9550             }
9551         }
9552
9553         if (asterisk) {
9554             if (args)
9555                 i = va_arg(*args, int);
9556             else
9557                 i = (ewix ? ewix <= svmax : svix < svmax) ?
9558                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9559             left |= (i < 0);
9560             width = (i < 0) ? -i : i;
9561         }
9562       gotwidth:
9563
9564         /* PRECISION */
9565
9566         if (*q == '.') {
9567             q++;
9568             if (*q == '*') {
9569                 q++;
9570                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
9571                     goto unknown;
9572                 /* XXX: todo, support specified precision parameter */
9573                 if (epix)
9574                     goto unknown;
9575                 if (args)
9576                     i = va_arg(*args, int);
9577                 else
9578                     i = (ewix ? ewix <= svmax : svix < svmax)
9579                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9580                 precis = i;
9581                 has_precis = !(i < 0);
9582             }
9583             else {
9584                 precis = 0;
9585                 while (isDIGIT(*q))
9586                     precis = precis * 10 + (*q++ - '0');
9587                 has_precis = TRUE;
9588             }
9589         }
9590
9591         /* SIZE */
9592
9593         switch (*q) {
9594 #ifdef WIN32
9595         case 'I':                       /* Ix, I32x, and I64x */
9596 #  ifdef WIN64
9597             if (q[1] == '6' && q[2] == '4') {
9598                 q += 3;
9599                 intsize = 'q';
9600                 break;
9601             }
9602 #  endif
9603             if (q[1] == '3' && q[2] == '2') {
9604                 q += 3;
9605                 break;
9606             }
9607 #  ifdef WIN64
9608             intsize = 'q';
9609 #  endif
9610             q++;
9611             break;
9612 #endif
9613 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9614         case 'L':                       /* Ld */
9615             /*FALLTHROUGH*/
9616 #ifdef HAS_QUAD
9617         case 'q':                       /* qd */
9618 #endif
9619             intsize = 'q';
9620             q++;
9621             break;
9622 #endif
9623         case 'l':
9624 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9625             if (*(q + 1) == 'l') {      /* lld, llf */
9626                 intsize = 'q';
9627                 q += 2;
9628                 break;
9629              }
9630 #endif
9631             /*FALLTHROUGH*/
9632         case 'h':
9633             /*FALLTHROUGH*/
9634         case 'V':
9635             intsize = *q++;
9636             break;
9637         }
9638
9639         /* CONVERSION */
9640
9641         if (*q == '%') {
9642             eptr = q++;
9643             elen = 1;
9644             if (vectorize) {
9645                 c = '%';
9646                 goto unknown;
9647             }
9648             goto string;
9649         }
9650
9651         if (!vectorize && !args) {
9652             if (efix) {
9653                 const I32 i = efix-1;
9654                 argsv = (i >= 0 && i < svmax) ? svargs[i] : &PL_sv_undef;
9655             } else {
9656                 argsv = (svix >= 0 && svix < svmax)
9657                     ? svargs[svix++] : &PL_sv_undef;
9658             }
9659         }
9660
9661         switch (c = *q++) {
9662
9663             /* STRINGS */
9664
9665         case 'c':
9666             if (vectorize)
9667                 goto unknown;
9668             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
9669             if ((uv > 255 ||
9670                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
9671                 && !IN_BYTES) {
9672                 eptr = (char*)utf8buf;
9673                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
9674                 is_utf8 = TRUE;
9675             }
9676             else {
9677                 c = (char)uv;
9678                 eptr = &c;
9679                 elen = 1;
9680             }
9681             goto string;
9682
9683         case 's':
9684             if (vectorize)
9685                 goto unknown;
9686             if (args) {
9687                 eptr = va_arg(*args, char*);
9688                 if (eptr)
9689 #ifdef MACOS_TRADITIONAL
9690                   /* On MacOS, %#s format is used for Pascal strings */
9691                   if (alt)
9692                     elen = *eptr++;
9693                   else
9694 #endif
9695                     elen = strlen(eptr);
9696                 else {
9697                     eptr = (char *)nullstr;
9698                     elen = sizeof nullstr - 1;
9699                 }
9700             }
9701             else {
9702                 eptr = SvPV_const(argsv, elen);
9703                 if (DO_UTF8(argsv)) {
9704                     I32 old_precis = precis;
9705                     if (has_precis && precis < elen) {
9706                         I32 p = precis;
9707                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
9708                         precis = p;
9709                     }
9710                     if (width) { /* fudge width (can't fudge elen) */
9711                         if (has_precis && precis < elen)
9712                             width += precis - old_precis;
9713                         else
9714                             width += elen - sv_len_utf8(argsv);
9715                     }
9716                     is_utf8 = TRUE;
9717                 }
9718             }
9719
9720         string:
9721             if (has_precis && elen > precis)
9722                 elen = precis;
9723             break;
9724
9725             /* INTEGERS */
9726
9727         case 'p':
9728             if (alt || vectorize)
9729                 goto unknown;
9730             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
9731             base = 16;
9732             goto integer;
9733
9734         case 'D':
9735 #ifdef IV_IS_QUAD
9736             intsize = 'q';
9737 #else
9738             intsize = 'l';
9739 #endif
9740             /*FALLTHROUGH*/
9741         case 'd':
9742         case 'i':
9743 #if vdNUMBER
9744         format_vd:
9745 #endif
9746             if (vectorize) {
9747                 STRLEN ulen;
9748                 if (!veclen)
9749                     continue;
9750                 if (vec_utf8)
9751                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9752                                         UTF8_ALLOW_ANYUV);
9753                 else {
9754                     uv = *vecstr;
9755                     ulen = 1;
9756                 }
9757                 vecstr += ulen;
9758                 veclen -= ulen;
9759                 if (plus)
9760                      esignbuf[esignlen++] = plus;
9761             }
9762             else if (args) {
9763                 switch (intsize) {
9764                 case 'h':       iv = (short)va_arg(*args, int); break;
9765                 case 'l':       iv = va_arg(*args, long); break;
9766                 case 'V':       iv = va_arg(*args, IV); break;
9767                 default:        iv = va_arg(*args, int); break;
9768                 case 'q':
9769 #ifdef HAS_QUAD
9770                                 iv = va_arg(*args, Quad_t); break;
9771 #else
9772                                 goto unknown;
9773 #endif
9774                 }
9775             }
9776             else {
9777                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
9778                 switch (intsize) {
9779                 case 'h':       iv = (short)tiv; break;
9780                 case 'l':       iv = (long)tiv; break;
9781                 case 'V':
9782                 default:        iv = tiv; break;
9783                 case 'q':
9784 #ifdef HAS_QUAD
9785                                 iv = (Quad_t)tiv; break;
9786 #else
9787                                 goto unknown;
9788 #endif
9789                 }
9790             }
9791             if ( !vectorize )   /* we already set uv above */
9792             {
9793                 if (iv >= 0) {
9794                     uv = iv;
9795                     if (plus)
9796                         esignbuf[esignlen++] = plus;
9797                 }
9798                 else {
9799                     uv = -iv;
9800                     esignbuf[esignlen++] = '-';
9801                 }
9802             }
9803             base = 10;
9804             goto integer;
9805
9806         case 'U':
9807 #ifdef IV_IS_QUAD
9808             intsize = 'q';
9809 #else
9810             intsize = 'l';
9811 #endif
9812             /*FALLTHROUGH*/
9813         case 'u':
9814             base = 10;
9815             goto uns_integer;
9816
9817         case 'B':
9818         case 'b':
9819             base = 2;
9820             goto uns_integer;
9821
9822         case 'O':
9823 #ifdef IV_IS_QUAD
9824             intsize = 'q';
9825 #else
9826             intsize = 'l';
9827 #endif
9828             /*FALLTHROUGH*/
9829         case 'o':
9830             base = 8;
9831             goto uns_integer;
9832
9833         case 'X':
9834         case 'x':
9835             base = 16;
9836
9837         uns_integer:
9838             if (vectorize) {
9839                 STRLEN ulen;
9840         vector:
9841                 if (!veclen)
9842                     continue;
9843                 if (vec_utf8)
9844                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9845                                         UTF8_ALLOW_ANYUV);
9846                 else {
9847                     uv = *vecstr;
9848                     ulen = 1;
9849                 }
9850                 vecstr += ulen;
9851                 veclen -= ulen;
9852             }
9853             else if (args) {
9854                 switch (intsize) {
9855                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
9856                 case 'l':  uv = va_arg(*args, unsigned long); break;
9857                 case 'V':  uv = va_arg(*args, UV); break;
9858                 default:   uv = va_arg(*args, unsigned); break;
9859                 case 'q':
9860 #ifdef HAS_QUAD
9861                            uv = va_arg(*args, Uquad_t); break;
9862 #else
9863                            goto unknown;
9864 #endif
9865                 }
9866             }
9867             else {
9868                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
9869                 switch (intsize) {
9870                 case 'h':       uv = (unsigned short)tuv; break;
9871                 case 'l':       uv = (unsigned long)tuv; break;
9872                 case 'V':
9873                 default:        uv = tuv; break;
9874                 case 'q':
9875 #ifdef HAS_QUAD
9876                                 uv = (Uquad_t)tuv; break;
9877 #else
9878                                 goto unknown;
9879 #endif
9880                 }
9881             }
9882
9883         integer:
9884             {
9885                 char *ptr = ebuf + sizeof ebuf;
9886                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
9887                 zeros = 0;
9888
9889                 switch (base) {
9890                     unsigned dig;
9891                 case 16:
9892                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
9893                     do {
9894                         dig = uv & 15;
9895                         *--ptr = p[dig];
9896                     } while (uv >>= 4);
9897                     if (tempalt) {
9898                         esignbuf[esignlen++] = '0';
9899                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
9900                     }
9901                     break;
9902                 case 8:
9903                     do {
9904                         dig = uv & 7;
9905                         *--ptr = '0' + dig;
9906                     } while (uv >>= 3);
9907                     if (alt && *ptr != '0')
9908                         *--ptr = '0';
9909                     break;
9910                 case 2:
9911                     do {
9912                         dig = uv & 1;
9913                         *--ptr = '0' + dig;
9914                     } while (uv >>= 1);
9915                     if (tempalt) {
9916                         esignbuf[esignlen++] = '0';
9917                         esignbuf[esignlen++] = c;
9918                     }
9919                     break;
9920                 default:                /* it had better be ten or less */
9921                     do {
9922                         dig = uv % base;
9923                         *--ptr = '0' + dig;
9924                     } while (uv /= base);
9925                     break;
9926                 }
9927                 elen = (ebuf + sizeof ebuf) - ptr;
9928                 eptr = ptr;
9929                 if (has_precis) {
9930                     if (precis > elen)
9931                         zeros = precis - elen;
9932                     else if (precis == 0 && elen == 1 && *eptr == '0'
9933                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
9934                         elen = 0;
9935
9936                 /* a precision nullifies the 0 flag. */
9937                     if (fill == '0')
9938                         fill = ' ';
9939                 }
9940             }
9941             break;
9942
9943             /* FLOATING POINT */
9944
9945         case 'F':
9946             c = 'f';            /* maybe %F isn't supported here */
9947             /*FALLTHROUGH*/
9948         case 'e': case 'E':
9949         case 'f':
9950         case 'g': case 'G':
9951             if (vectorize)
9952                 goto unknown;
9953
9954             /* This is evil, but floating point is even more evil */
9955
9956             /* for SV-style calling, we can only get NV
9957                for C-style calling, we assume %f is double;
9958                for simplicity we allow any of %Lf, %llf, %qf for long double
9959             */
9960             switch (intsize) {
9961             case 'V':
9962 #if defined(USE_LONG_DOUBLE)
9963                 intsize = 'q';
9964 #endif
9965                 break;
9966 /* [perl #20339] - we should accept and ignore %lf rather than die */
9967             case 'l':
9968                 /*FALLTHROUGH*/
9969             default:
9970 #if defined(USE_LONG_DOUBLE)
9971                 intsize = args ? 0 : 'q';
9972 #endif
9973                 break;
9974             case 'q':
9975 #if defined(HAS_LONG_DOUBLE)
9976                 break;
9977 #else
9978                 /*FALLTHROUGH*/
9979 #endif
9980             case 'h':
9981                 goto unknown;
9982             }
9983
9984             /* now we need (long double) if intsize == 'q', else (double) */
9985             nv = (args) ?
9986 #if LONG_DOUBLESIZE > DOUBLESIZE
9987                 intsize == 'q' ?
9988                     va_arg(*args, long double) :
9989                     va_arg(*args, double)
9990 #else
9991                     va_arg(*args, double)
9992 #endif
9993                 : SvNV(argsv);
9994
9995             need = 0;
9996             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
9997                else. frexp() has some unspecified behaviour for those three */
9998             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
9999                 i = PERL_INT_MIN;
10000                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10001                    will cast our (long double) to (double) */
10002                 (void)Perl_frexp(nv, &i);
10003                 if (i == PERL_INT_MIN)
10004                     Perl_die(aTHX_ "panic: frexp");
10005                 if (i > 0)
10006                     need = BIT_DIGITS(i);
10007             }
10008             need += has_precis ? precis : 6; /* known default */
10009
10010             if (need < width)
10011                 need = width;
10012
10013 #ifdef HAS_LDBL_SPRINTF_BUG
10014             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10015                with sfio - Allen <allens@cpan.org> */
10016
10017 #  ifdef DBL_MAX
10018 #    define MY_DBL_MAX DBL_MAX
10019 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10020 #    if DOUBLESIZE >= 8
10021 #      define MY_DBL_MAX 1.7976931348623157E+308L
10022 #    else
10023 #      define MY_DBL_MAX 3.40282347E+38L
10024 #    endif
10025 #  endif
10026
10027 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10028 #    define MY_DBL_MAX_BUG 1L
10029 #  else
10030 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10031 #  endif
10032
10033 #  ifdef DBL_MIN
10034 #    define MY_DBL_MIN DBL_MIN
10035 #  else  /* XXX guessing! -Allen */
10036 #    if DOUBLESIZE >= 8
10037 #      define MY_DBL_MIN 2.2250738585072014E-308L
10038 #    else
10039 #      define MY_DBL_MIN 1.17549435E-38L
10040 #    endif
10041 #  endif
10042
10043             if ((intsize == 'q') && (c == 'f') &&
10044                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10045                 (need < DBL_DIG)) {
10046                 /* it's going to be short enough that
10047                  * long double precision is not needed */
10048
10049                 if ((nv <= 0L) && (nv >= -0L))
10050                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10051                 else {
10052                     /* would use Perl_fp_class as a double-check but not
10053                      * functional on IRIX - see perl.h comments */
10054
10055                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10056                         /* It's within the range that a double can represent */
10057 #if defined(DBL_MAX) && !defined(DBL_MIN)
10058                         if ((nv >= ((long double)1/DBL_MAX)) ||
10059                             (nv <= (-(long double)1/DBL_MAX)))
10060 #endif
10061                         fix_ldbl_sprintf_bug = TRUE;
10062                     }
10063                 }
10064                 if (fix_ldbl_sprintf_bug == TRUE) {
10065                     double temp;
10066
10067                     intsize = 0;
10068                     temp = (double)nv;
10069                     nv = (NV)temp;
10070                 }
10071             }
10072
10073 #  undef MY_DBL_MAX
10074 #  undef MY_DBL_MAX_BUG
10075 #  undef MY_DBL_MIN
10076
10077 #endif /* HAS_LDBL_SPRINTF_BUG */
10078
10079             need += 20; /* fudge factor */
10080             if (PL_efloatsize < need) {
10081                 Safefree(PL_efloatbuf);
10082                 PL_efloatsize = need + 20; /* more fudge */
10083                 Newx(PL_efloatbuf, PL_efloatsize, char);
10084                 PL_efloatbuf[0] = '\0';
10085             }
10086
10087             if ( !(width || left || plus || alt) && fill != '0'
10088                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10089                 /* See earlier comment about buggy Gconvert when digits,
10090                    aka precis is 0  */
10091                 if ( c == 'g' && precis) {
10092                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10093                     /* May return an empty string for digits==0 */
10094                     if (*PL_efloatbuf) {
10095                         elen = strlen(PL_efloatbuf);
10096                         goto float_converted;
10097                     }
10098                 } else if ( c == 'f' && !precis) {
10099                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10100                         break;
10101                 }
10102             }
10103             {
10104                 char *ptr = ebuf + sizeof ebuf;
10105                 *--ptr = '\0';
10106                 *--ptr = c;
10107                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10108 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10109                 if (intsize == 'q') {
10110                     /* Copy the one or more characters in a long double
10111                      * format before the 'base' ([efgEFG]) character to
10112                      * the format string. */
10113                     static char const prifldbl[] = PERL_PRIfldbl;
10114                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10115                     while (p >= prifldbl) { *--ptr = *p--; }
10116                 }
10117 #endif
10118                 if (has_precis) {
10119                     base = precis;
10120                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10121                     *--ptr = '.';
10122                 }
10123                 if (width) {
10124                     base = width;
10125                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10126                 }
10127                 if (fill == '0')
10128                     *--ptr = fill;
10129                 if (left)
10130                     *--ptr = '-';
10131                 if (plus)
10132                     *--ptr = plus;
10133                 if (alt)
10134                     *--ptr = '#';
10135                 *--ptr = '%';
10136
10137                 /* No taint.  Otherwise we are in the strange situation
10138                  * where printf() taints but print($float) doesn't.
10139                  * --jhi */
10140 #if defined(HAS_LONG_DOUBLE)
10141                 elen = ((intsize == 'q')
10142                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10143                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10144 #else
10145                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10146 #endif
10147             }
10148         float_converted:
10149             eptr = PL_efloatbuf;
10150             break;
10151
10152             /* SPECIAL */
10153
10154         case 'n':
10155             if (vectorize)
10156                 goto unknown;
10157             i = SvCUR(sv) - origlen;
10158             if (args) {
10159                 switch (intsize) {
10160                 case 'h':       *(va_arg(*args, short*)) = i; break;
10161                 default:        *(va_arg(*args, int*)) = i; break;
10162                 case 'l':       *(va_arg(*args, long*)) = i; break;
10163                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10164                 case 'q':
10165 #ifdef HAS_QUAD
10166                                 *(va_arg(*args, Quad_t*)) = i; break;
10167 #else
10168                                 goto unknown;
10169 #endif
10170                 }
10171             }
10172             else
10173                 sv_setuv_mg(argsv, (UV)i);
10174             continue;   /* not "break" */
10175
10176             /* UNKNOWN */
10177
10178         default:
10179       unknown:
10180             if (!args
10181                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
10182                 && ckWARN(WARN_PRINTF))
10183             {
10184                 SV * const msg = sv_newmortal();
10185                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
10186                           (PL_op->op_type == OP_PRTF) ? "" : "s");
10187                 if (fmtstart < patend) {
10188                     const char * const fmtend = q < patend ? q : patend;
10189                     const char * f;
10190                     sv_catpvs(msg, "\"%");
10191                     for (f = fmtstart; f < fmtend; f++) {
10192                         if (isPRINT(*f)) {
10193                             sv_catpvn(msg, f, 1);
10194                         } else {
10195                             Perl_sv_catpvf(aTHX_ msg,
10196                                            "\\%03"UVof, (UV)*f & 0xFF);
10197                         }
10198                     }
10199                     sv_catpvs(msg, "\"");
10200                 } else {
10201                     sv_catpvs(msg, "end of string");
10202                 }
10203                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
10204             }
10205
10206             /* output mangled stuff ... */
10207             if (c == '\0')
10208                 --q;
10209             eptr = p;
10210             elen = q - p;
10211
10212             /* ... right here, because formatting flags should not apply */
10213             SvGROW(sv, SvCUR(sv) + elen + 1);
10214             p = SvEND(sv);
10215             Copy(eptr, p, elen, char);
10216             p += elen;
10217             *p = '\0';
10218             SvCUR_set(sv, p - SvPVX_const(sv));
10219             svix = osvix;
10220             continue;   /* not "break" */
10221         }
10222
10223         if (is_utf8 != has_utf8) {
10224             if (is_utf8) {
10225                 if (SvCUR(sv))
10226                     sv_utf8_upgrade(sv);
10227             }
10228             else {
10229                 const STRLEN old_elen = elen;
10230                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
10231                 sv_utf8_upgrade(nsv);
10232                 eptr = SvPVX_const(nsv);
10233                 elen = SvCUR(nsv);
10234
10235                 if (width) { /* fudge width (can't fudge elen) */
10236                     width += elen - old_elen;
10237                 }
10238                 is_utf8 = TRUE;
10239             }
10240         }
10241
10242         have = esignlen + zeros + elen;
10243         if (have < zeros)
10244             Perl_croak_nocontext("%s", PL_memory_wrap);
10245
10246         need = (have > width ? have : width);
10247         gap = need - have;
10248
10249         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
10250             Perl_croak_nocontext("%s", PL_memory_wrap);
10251         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
10252         p = SvEND(sv);
10253         if (esignlen && fill == '0') {
10254             int i;
10255             for (i = 0; i < (int)esignlen; i++)
10256                 *p++ = esignbuf[i];
10257         }
10258         if (gap && !left) {
10259             memset(p, fill, gap);
10260             p += gap;
10261         }
10262         if (esignlen && fill != '0') {
10263             int i;
10264             for (i = 0; i < (int)esignlen; i++)
10265                 *p++ = esignbuf[i];
10266         }
10267         if (zeros) {
10268             int i;
10269             for (i = zeros; i; i--)
10270                 *p++ = '0';
10271         }
10272         if (elen) {
10273             Copy(eptr, p, elen, char);
10274             p += elen;
10275         }
10276         if (gap && left) {
10277             memset(p, ' ', gap);
10278             p += gap;
10279         }
10280         if (vectorize) {
10281             if (veclen) {
10282                 Copy(dotstr, p, dotstrlen, char);
10283                 p += dotstrlen;
10284             }
10285             else
10286                 vectorize = FALSE;              /* done iterating over vecstr */
10287         }
10288         if (is_utf8)
10289             has_utf8 = TRUE;
10290         if (has_utf8)
10291             SvUTF8_on(sv);
10292         *p = '\0';
10293         SvCUR_set(sv, p - SvPVX_const(sv));
10294         if (vectorize) {
10295             esignlen = 0;
10296             goto vector;
10297         }
10298     }
10299 }
10300
10301 /* =========================================================================
10302
10303 =head1 Cloning an interpreter
10304
10305 All the macros and functions in this section are for the private use of
10306 the main function, perl_clone().
10307
10308 The foo_dup() functions make an exact copy of an existing foo thingy.
10309 During the course of a cloning, a hash table is used to map old addresses
10310 to new addresses. The table is created and manipulated with the
10311 ptr_table_* functions.
10312
10313 =cut
10314
10315 ============================================================================*/
10316
10317
10318 #if defined(USE_ITHREADS)
10319
10320 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
10321 #ifndef GpREFCNT_inc
10322 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
10323 #endif
10324
10325
10326 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
10327    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
10328    If this changes, please unmerge ss_dup.  */
10329 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
10330 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup(s,t))
10331 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
10332 #define av_dup_inc(s,t) MUTABLE_AV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10333 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
10334 #define hv_dup_inc(s,t) MUTABLE_HV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10335 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
10336 #define cv_dup_inc(s,t) MUTABLE_CV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10337 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
10338 #define io_dup_inc(s,t) MUTABLE_IO(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10339 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
10340 #define gv_dup_inc(s,t) MUTABLE_GV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10341 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
10342 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
10343
10344 /* clone a parser */
10345
10346 yy_parser *
10347 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
10348 {
10349     yy_parser *parser;
10350
10351     PERL_ARGS_ASSERT_PARSER_DUP;
10352
10353     if (!proto)
10354         return NULL;
10355
10356     /* look for it in the table first */
10357     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
10358     if (parser)
10359         return parser;
10360
10361     /* create anew and remember what it is */
10362     Newxz(parser, 1, yy_parser);
10363     ptr_table_store(PL_ptr_table, proto, parser);
10364
10365     parser->yyerrstatus = 0;
10366     parser->yychar = YYEMPTY;           /* Cause a token to be read.  */
10367
10368     /* XXX these not yet duped */
10369     parser->old_parser = NULL;
10370     parser->stack = NULL;
10371     parser->ps = NULL;
10372     parser->stack_size = 0;
10373     /* XXX parser->stack->state = 0; */
10374
10375     /* XXX eventually, just Copy() most of the parser struct ? */
10376
10377     parser->lex_brackets = proto->lex_brackets;
10378     parser->lex_casemods = proto->lex_casemods;
10379     parser->lex_brackstack = savepvn(proto->lex_brackstack,
10380                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
10381     parser->lex_casestack = savepvn(proto->lex_casestack,
10382                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
10383     parser->lex_defer   = proto->lex_defer;
10384     parser->lex_dojoin  = proto->lex_dojoin;
10385     parser->lex_expect  = proto->lex_expect;
10386     parser->lex_formbrack = proto->lex_formbrack;
10387     parser->lex_inpat   = proto->lex_inpat;
10388     parser->lex_inwhat  = proto->lex_inwhat;
10389     parser->lex_op      = proto->lex_op;
10390     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
10391     parser->lex_starts  = proto->lex_starts;
10392     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
10393     parser->multi_close = proto->multi_close;
10394     parser->multi_open  = proto->multi_open;
10395     parser->multi_start = proto->multi_start;
10396     parser->multi_end   = proto->multi_end;
10397     parser->pending_ident = proto->pending_ident;
10398     parser->preambled   = proto->preambled;
10399     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
10400     parser->linestr     = sv_dup_inc(proto->linestr, param);
10401     parser->expect      = proto->expect;
10402     parser->copline     = proto->copline;
10403     parser->last_lop_op = proto->last_lop_op;
10404     parser->lex_state   = proto->lex_state;
10405     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
10406     /* rsfp_filters entries have fake IoDIRP() */
10407     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
10408     parser->in_my       = proto->in_my;
10409     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
10410     parser->error_count = proto->error_count;
10411
10412
10413     parser->linestr     = sv_dup_inc(proto->linestr, param);
10414
10415     {
10416         char * const ols = SvPVX(proto->linestr);
10417         char * const ls  = SvPVX(parser->linestr);
10418
10419         parser->bufptr      = ls + (proto->bufptr >= ols ?
10420                                     proto->bufptr -  ols : 0);
10421         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
10422                                     proto->oldbufptr -  ols : 0);
10423         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
10424                                     proto->oldoldbufptr -  ols : 0);
10425         parser->linestart   = ls + (proto->linestart >= ols ?
10426                                     proto->linestart -  ols : 0);
10427         parser->last_uni    = ls + (proto->last_uni >= ols ?
10428                                     proto->last_uni -  ols : 0);
10429         parser->last_lop    = ls + (proto->last_lop >= ols ?
10430                                     proto->last_lop -  ols : 0);
10431
10432         parser->bufend      = ls + SvCUR(parser->linestr);
10433     }
10434
10435     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
10436
10437
10438 #ifdef PERL_MAD
10439     parser->endwhite    = proto->endwhite;
10440     parser->faketokens  = proto->faketokens;
10441     parser->lasttoke    = proto->lasttoke;
10442     parser->nextwhite   = proto->nextwhite;
10443     parser->realtokenstart = proto->realtokenstart;
10444     parser->skipwhite   = proto->skipwhite;
10445     parser->thisclose   = proto->thisclose;
10446     parser->thismad     = proto->thismad;
10447     parser->thisopen    = proto->thisopen;
10448     parser->thisstuff   = proto->thisstuff;
10449     parser->thistoken   = proto->thistoken;
10450     parser->thiswhite   = proto->thiswhite;
10451
10452     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
10453     parser->curforce    = proto->curforce;
10454 #else
10455     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
10456     Copy(proto->nexttype, parser->nexttype, 5,  I32);
10457     parser->nexttoke    = proto->nexttoke;
10458 #endif
10459     return parser;
10460 }
10461
10462
10463 /* duplicate a file handle */
10464
10465 PerlIO *
10466 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
10467 {
10468     PerlIO *ret;
10469
10470     PERL_ARGS_ASSERT_FP_DUP;
10471     PERL_UNUSED_ARG(type);
10472
10473     if (!fp)
10474         return (PerlIO*)NULL;
10475
10476     /* look for it in the table first */
10477     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
10478     if (ret)
10479         return ret;
10480
10481     /* create anew and remember what it is */
10482     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
10483     ptr_table_store(PL_ptr_table, fp, ret);
10484     return ret;
10485 }
10486
10487 /* duplicate a directory handle */
10488
10489 DIR *
10490 Perl_dirp_dup(pTHX_ DIR *const dp)
10491 {
10492     PERL_UNUSED_CONTEXT;
10493     if (!dp)
10494         return (DIR*)NULL;
10495     /* XXX TODO */
10496     return dp;
10497 }
10498
10499 /* duplicate a typeglob */
10500
10501 GP *
10502 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
10503 {
10504     GP *ret;
10505
10506     PERL_ARGS_ASSERT_GP_DUP;
10507
10508     if (!gp)
10509         return (GP*)NULL;
10510     /* look for it in the table first */
10511     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
10512     if (ret)
10513         return ret;
10514
10515     /* create anew and remember what it is */
10516     Newxz(ret, 1, GP);
10517     ptr_table_store(PL_ptr_table, gp, ret);
10518
10519     /* clone */
10520     ret->gp_refcnt      = 0;                    /* must be before any other dups! */
10521     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
10522     ret->gp_io          = io_dup_inc(gp->gp_io, param);
10523     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
10524     ret->gp_av          = av_dup_inc(gp->gp_av, param);
10525     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
10526     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
10527     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
10528     ret->gp_cvgen       = gp->gp_cvgen;
10529     ret->gp_line        = gp->gp_line;
10530     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
10531     return ret;
10532 }
10533
10534 /* duplicate a chain of magic */
10535
10536 MAGIC *
10537 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
10538 {
10539     MAGIC *mgprev = (MAGIC*)NULL;
10540     MAGIC *mgret;
10541
10542     PERL_ARGS_ASSERT_MG_DUP;
10543
10544     if (!mg)
10545         return (MAGIC*)NULL;
10546     /* look for it in the table first */
10547     mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
10548     if (mgret)
10549         return mgret;
10550
10551     for (; mg; mg = mg->mg_moremagic) {
10552         MAGIC *nmg;
10553         Newxz(nmg, 1, MAGIC);
10554         if (mgprev)
10555             mgprev->mg_moremagic = nmg;
10556         else
10557             mgret = nmg;
10558         nmg->mg_virtual = mg->mg_virtual;       /* XXX copy dynamic vtable? */
10559         nmg->mg_private = mg->mg_private;
10560         nmg->mg_type    = mg->mg_type;
10561         nmg->mg_flags   = mg->mg_flags;
10562         /* FIXME for plugins
10563         if (mg->mg_type == PERL_MAGIC_qr) {
10564             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)mg->mg_obj, param));
10565         }
10566         else
10567         */
10568         if(mg->mg_type == PERL_MAGIC_backref) {
10569             /* The backref AV has its reference count deliberately bumped by
10570                1.  */
10571             nmg->mg_obj
10572                 = SvREFCNT_inc(av_dup_inc((const AV *) mg->mg_obj, param));
10573         }
10574         else {
10575             nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
10576                               ? sv_dup_inc(mg->mg_obj, param)
10577                               : sv_dup(mg->mg_obj, param);
10578         }
10579         nmg->mg_len     = mg->mg_len;
10580         nmg->mg_ptr     = mg->mg_ptr;   /* XXX random ptr? */
10581         if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
10582             if (mg->mg_len > 0) {
10583                 nmg->mg_ptr     = SAVEPVN(mg->mg_ptr, mg->mg_len);
10584                 if (mg->mg_type == PERL_MAGIC_overload_table &&
10585                         AMT_AMAGIC((AMT*)mg->mg_ptr))
10586                 {
10587                     const AMT * const amtp = (AMT*)mg->mg_ptr;
10588                     AMT * const namtp = (AMT*)nmg->mg_ptr;
10589                     I32 i;
10590                     for (i = 1; i < NofAMmeth; i++) {
10591                         namtp->table[i] = cv_dup_inc(amtp->table[i], param);
10592                     }
10593                 }
10594             }
10595             else if (mg->mg_len == HEf_SVKEY)
10596                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)mg->mg_ptr, param);
10597         }
10598         if ((mg->mg_flags & MGf_DUP) && mg->mg_virtual && mg->mg_virtual->svt_dup) {
10599             CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
10600         }
10601         mgprev = nmg;
10602     }
10603     return mgret;
10604 }
10605
10606 #endif /* USE_ITHREADS */
10607
10608 /* create a new pointer-mapping table */
10609
10610 PTR_TBL_t *
10611 Perl_ptr_table_new(pTHX)
10612 {
10613     PTR_TBL_t *tbl;
10614     PERL_UNUSED_CONTEXT;
10615
10616     Newxz(tbl, 1, PTR_TBL_t);
10617     tbl->tbl_max        = 511;
10618     tbl->tbl_items      = 0;
10619     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
10620     return tbl;
10621 }
10622
10623 #define PTR_TABLE_HASH(ptr) \
10624   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
10625
10626 /* 
10627    we use the PTE_SVSLOT 'reservation' made above, both here (in the
10628    following define) and at call to new_body_inline made below in 
10629    Perl_ptr_table_store()
10630  */
10631
10632 #define del_pte(p)     del_body_type(p, PTE_SVSLOT)
10633
10634 /* map an existing pointer using a table */
10635
10636 STATIC PTR_TBL_ENT_t *
10637 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
10638 {
10639     PTR_TBL_ENT_t *tblent;
10640     const UV hash = PTR_TABLE_HASH(sv);
10641
10642     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
10643
10644     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
10645     for (; tblent; tblent = tblent->next) {
10646         if (tblent->oldval == sv)
10647             return tblent;
10648     }
10649     return NULL;
10650 }
10651
10652 void *
10653 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
10654 {
10655     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
10656
10657     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
10658     PERL_UNUSED_CONTEXT;
10659
10660     return tblent ? tblent->newval : NULL;
10661 }
10662
10663 /* add a new entry to a pointer-mapping table */
10664
10665 void
10666 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
10667 {
10668     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
10669
10670     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
10671     PERL_UNUSED_CONTEXT;
10672
10673     if (tblent) {
10674         tblent->newval = newsv;
10675     } else {
10676         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
10677
10678         new_body_inline(tblent, PTE_SVSLOT);
10679
10680         tblent->oldval = oldsv;
10681         tblent->newval = newsv;
10682         tblent->next = tbl->tbl_ary[entry];
10683         tbl->tbl_ary[entry] = tblent;
10684         tbl->tbl_items++;
10685         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
10686             ptr_table_split(tbl);
10687     }
10688 }
10689
10690 /* double the hash bucket size of an existing ptr table */
10691
10692 void
10693 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
10694 {
10695     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
10696     const UV oldsize = tbl->tbl_max + 1;
10697     UV newsize = oldsize * 2;
10698     UV i;
10699
10700     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
10701     PERL_UNUSED_CONTEXT;
10702
10703     Renew(ary, newsize, PTR_TBL_ENT_t*);
10704     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
10705     tbl->tbl_max = --newsize;
10706     tbl->tbl_ary = ary;
10707     for (i=0; i < oldsize; i++, ary++) {
10708         PTR_TBL_ENT_t **curentp, **entp, *ent;
10709         if (!*ary)
10710             continue;
10711         curentp = ary + oldsize;
10712         for (entp = ary, ent = *ary; ent; ent = *entp) {
10713             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
10714                 *entp = ent->next;
10715                 ent->next = *curentp;
10716                 *curentp = ent;
10717                 continue;
10718             }
10719             else
10720                 entp = &ent->next;
10721         }
10722     }
10723 }
10724
10725 /* remove all the entries from a ptr table */
10726
10727 void
10728 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
10729 {
10730     if (tbl && tbl->tbl_items) {
10731         register PTR_TBL_ENT_t * const * const array = tbl->tbl_ary;
10732         UV riter = tbl->tbl_max;
10733
10734         do {
10735             PTR_TBL_ENT_t *entry = array[riter];
10736
10737             while (entry) {
10738                 PTR_TBL_ENT_t * const oentry = entry;
10739                 entry = entry->next;
10740                 del_pte(oentry);
10741             }
10742         } while (riter--);
10743
10744         tbl->tbl_items = 0;
10745     }
10746 }
10747
10748 /* clear and free a ptr table */
10749
10750 void
10751 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
10752 {
10753     if (!tbl) {
10754         return;
10755     }
10756     ptr_table_clear(tbl);
10757     Safefree(tbl->tbl_ary);
10758     Safefree(tbl);
10759 }
10760
10761 #if defined(USE_ITHREADS)
10762
10763 void
10764 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
10765 {
10766     PERL_ARGS_ASSERT_RVPV_DUP;
10767
10768     if (SvROK(sstr)) {
10769         SvRV_set(dstr, SvWEAKREF(sstr)
10770                        ? sv_dup(SvRV_const(sstr), param)
10771                        : sv_dup_inc(SvRV_const(sstr), param));
10772
10773     }
10774     else if (SvPVX_const(sstr)) {
10775         /* Has something there */
10776         if (SvLEN(sstr)) {
10777             /* Normal PV - clone whole allocated space */
10778             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
10779             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
10780                 /* Not that normal - actually sstr is copy on write.
10781                    But we are a true, independant SV, so:  */
10782                 SvREADONLY_off(dstr);
10783                 SvFAKE_off(dstr);
10784             }
10785         }
10786         else {
10787             /* Special case - not normally malloced for some reason */
10788             if (isGV_with_GP(sstr)) {
10789                 /* Don't need to do anything here.  */
10790             }
10791             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
10792                 /* A "shared" PV - clone it as "shared" PV */
10793                 SvPV_set(dstr,
10794                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
10795                                          param)));
10796             }
10797             else {
10798                 /* Some other special case - random pointer */
10799                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
10800             }
10801         }
10802     }
10803     else {
10804         /* Copy the NULL */
10805         SvPV_set(dstr, NULL);
10806     }
10807 }
10808
10809 /* duplicate an SV of any type (including AV, HV etc) */
10810
10811 SV *
10812 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
10813 {
10814     dVAR;
10815     SV *dstr;
10816
10817     PERL_ARGS_ASSERT_SV_DUP;
10818
10819     if (!sstr)
10820         return NULL;
10821     if (SvTYPE(sstr) == SVTYPEMASK) {
10822 #ifdef DEBUG_LEAKING_SCALARS_ABORT
10823         abort();
10824 #endif
10825         return NULL;
10826     }
10827     /* look for it in the table first */
10828     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
10829     if (dstr)
10830         return dstr;
10831
10832     if(param->flags & CLONEf_JOIN_IN) {
10833         /** We are joining here so we don't want do clone
10834             something that is bad **/
10835         if (SvTYPE(sstr) == SVt_PVHV) {
10836             const HEK * const hvname = HvNAME_HEK(sstr);
10837             if (hvname)
10838                 /** don't clone stashes if they already exist **/
10839                 return MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname), 0));
10840         }
10841     }
10842
10843     /* create anew and remember what it is */
10844     new_SV(dstr);
10845
10846 #ifdef DEBUG_LEAKING_SCALARS
10847     dstr->sv_debug_optype = sstr->sv_debug_optype;
10848     dstr->sv_debug_line = sstr->sv_debug_line;
10849     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
10850     dstr->sv_debug_cloned = 1;
10851     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
10852 #endif
10853
10854     ptr_table_store(PL_ptr_table, sstr, dstr);
10855
10856     /* clone */
10857     SvFLAGS(dstr)       = SvFLAGS(sstr);
10858     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
10859     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
10860
10861 #ifdef DEBUGGING
10862     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
10863         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
10864                       (void*)PL_watch_pvx, SvPVX_const(sstr));
10865 #endif
10866
10867     /* don't clone objects whose class has asked us not to */
10868     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
10869         SvFLAGS(dstr) = 0;
10870         return dstr;
10871     }
10872
10873     switch (SvTYPE(sstr)) {
10874     case SVt_NULL:
10875         SvANY(dstr)     = NULL;
10876         break;
10877     case SVt_IV:
10878         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
10879         if(SvROK(sstr)) {
10880             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10881         } else {
10882             SvIV_set(dstr, SvIVX(sstr));
10883         }
10884         break;
10885     case SVt_NV:
10886         SvANY(dstr)     = new_XNV();
10887         SvNV_set(dstr, SvNVX(sstr));
10888         break;
10889         /* case SVt_BIND: */
10890     default:
10891         {
10892             /* These are all the types that need complex bodies allocating.  */
10893             void *new_body;
10894             const svtype sv_type = SvTYPE(sstr);
10895             const struct body_details *const sv_type_details
10896                 = bodies_by_type + sv_type;
10897
10898             switch (sv_type) {
10899             default:
10900                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
10901                 break;
10902
10903             case SVt_PVGV:
10904                 if (GvUNIQUE((const GV *)sstr)) {
10905                     NOOP;   /* Do sharing here, and fall through */
10906                 }
10907             case SVt_PVIO:
10908             case SVt_PVFM:
10909             case SVt_PVHV:
10910             case SVt_PVAV:
10911             case SVt_PVCV:
10912             case SVt_PVLV:
10913             case SVt_REGEXP:
10914             case SVt_PVMG:
10915             case SVt_PVNV:
10916             case SVt_PVIV:
10917             case SVt_PV:
10918                 assert(sv_type_details->body_size);
10919                 if (sv_type_details->arena) {
10920                     new_body_inline(new_body, sv_type);
10921                     new_body
10922                         = (void*)((char*)new_body - sv_type_details->offset);
10923                 } else {
10924                     new_body = new_NOARENA(sv_type_details);
10925                 }
10926             }
10927             assert(new_body);
10928             SvANY(dstr) = new_body;
10929
10930 #ifndef PURIFY
10931             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
10932                  ((char*)SvANY(dstr)) + sv_type_details->offset,
10933                  sv_type_details->copy, char);
10934 #else
10935             Copy(((char*)SvANY(sstr)),
10936                  ((char*)SvANY(dstr)),
10937                  sv_type_details->body_size + sv_type_details->offset, char);
10938 #endif
10939
10940             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
10941                 && !isGV_with_GP(dstr))
10942                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10943
10944             /* The Copy above means that all the source (unduplicated) pointers
10945                are now in the destination.  We can check the flags and the
10946                pointers in either, but it's possible that there's less cache
10947                missing by always going for the destination.
10948                FIXME - instrument and check that assumption  */
10949             if (sv_type >= SVt_PVMG) {
10950                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
10951                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
10952                 } else if (SvMAGIC(dstr))
10953                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
10954                 if (SvSTASH(dstr))
10955                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
10956             }
10957
10958             /* The cast silences a GCC warning about unhandled types.  */
10959             switch ((int)sv_type) {
10960             case SVt_PV:
10961                 break;
10962             case SVt_PVIV:
10963                 break;
10964             case SVt_PVNV:
10965                 break;
10966             case SVt_PVMG:
10967                 break;
10968             case SVt_REGEXP:
10969                 /* FIXME for plugins */
10970                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
10971                 break;
10972             case SVt_PVLV:
10973                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
10974                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
10975                     LvTARG(dstr) = dstr;
10976                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
10977                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
10978                 else
10979                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
10980             case SVt_PVGV:
10981                 if(isGV_with_GP(sstr)) {
10982                     if (GvNAME_HEK(dstr))
10983                         GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
10984                     /* Don't call sv_add_backref here as it's going to be
10985                        created as part of the magic cloning of the symbol
10986                        table.  */
10987                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
10988                        at the point of this comment.  */
10989                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
10990                     GvGP(dstr)  = gp_dup(GvGP(sstr), param);
10991                     (void)GpREFCNT_inc(GvGP(dstr));
10992                 } else
10993                     Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10994                 break;
10995             case SVt_PVIO:
10996                 IoIFP(dstr)     = fp_dup(IoIFP(dstr), IoTYPE(dstr), param);
10997                 if (IoOFP(dstr) == IoIFP(sstr))
10998                     IoOFP(dstr) = IoIFP(dstr);
10999                 else
11000                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
11001                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
11002                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
11003                     /* I have no idea why fake dirp (rsfps)
11004                        should be treated differently but otherwise
11005                        we end up with leaks -- sky*/
11006                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11007                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11008                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11009                 } else {
11010                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11011                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11012                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11013                     if (IoDIRP(dstr)) {
11014                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr));
11015                     } else {
11016                         NOOP;
11017                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11018                     }
11019                 }
11020                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11021                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11022                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11023                 break;
11024             case SVt_PVAV:
11025                 /* avoid cloning an empty array */
11026                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
11027                     SV **dst_ary, **src_ary;
11028                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
11029
11030                     src_ary = AvARRAY((const AV *)sstr);
11031                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
11032                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
11033                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
11034                     AvALLOC((const AV *)dstr) = dst_ary;
11035                     if (AvREAL((const AV *)sstr)) {
11036                         while (items-- > 0)
11037                             *dst_ary++ = sv_dup_inc(*src_ary++, param);
11038                     }
11039                     else {
11040                         while (items-- > 0)
11041                             *dst_ary++ = sv_dup(*src_ary++, param);
11042                     }
11043                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
11044                     while (items-- > 0) {
11045                         *dst_ary++ = &PL_sv_undef;
11046                     }
11047                 }
11048                 else {
11049                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
11050                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
11051                     AvMAX(  (const AV *)dstr)   = -1;
11052                     AvFILLp((const AV *)dstr)   = -1;
11053                 }
11054                 break;
11055             case SVt_PVHV:
11056                 if (HvARRAY((const HV *)sstr)) {
11057                     STRLEN i = 0;
11058                     const bool sharekeys = !!HvSHAREKEYS(sstr);
11059                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
11060                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
11061                     char *darray;
11062                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
11063                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
11064                         char);
11065                     HvARRAY(dstr) = (HE**)darray;
11066                     while (i <= sxhv->xhv_max) {
11067                         const HE * const source = HvARRAY(sstr)[i];
11068                         HvARRAY(dstr)[i] = source
11069                             ? he_dup(source, sharekeys, param) : 0;
11070                         ++i;
11071                     }
11072                     if (SvOOK(sstr)) {
11073                         HEK *hvname;
11074                         const struct xpvhv_aux * const saux = HvAUX(sstr);
11075                         struct xpvhv_aux * const daux = HvAUX(dstr);
11076                         /* This flag isn't copied.  */
11077                         /* SvOOK_on(hv) attacks the IV flags.  */
11078                         SvFLAGS(dstr) |= SVf_OOK;
11079
11080                         hvname = saux->xhv_name;
11081                         daux->xhv_name = hvname ? hek_dup(hvname, param) : hvname;
11082
11083                         daux->xhv_riter = saux->xhv_riter;
11084                         daux->xhv_eiter = saux->xhv_eiter
11085                             ? he_dup(saux->xhv_eiter,
11086                                         (bool)!!HvSHAREKEYS(sstr), param) : 0;
11087                         /* backref array needs refcnt=2; see sv_add_backref */
11088                         daux->xhv_backreferences =
11089                             saux->xhv_backreferences
11090                             ? MUTABLE_AV(SvREFCNT_inc(
11091                                                       sv_dup_inc((const SV *)saux->xhv_backreferences, param)))
11092                                 : 0;
11093
11094                         daux->xhv_mro_meta = saux->xhv_mro_meta
11095                             ? mro_meta_dup(saux->xhv_mro_meta, param)
11096                             : 0;
11097
11098                         /* Record stashes for possible cloning in Perl_clone(). */
11099                         if (hvname)
11100                             av_push(param->stashes, dstr);
11101                     }
11102                 }
11103                 else
11104                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
11105                 break;
11106             case SVt_PVCV:
11107                 if (!(param->flags & CLONEf_COPY_STACKS)) {
11108                     CvDEPTH(dstr) = 0;
11109                 }
11110             case SVt_PVFM:
11111                 /* NOTE: not refcounted */
11112                 CvSTASH(dstr)   = hv_dup(CvSTASH(dstr), param);
11113                 OP_REFCNT_LOCK;
11114                 if (!CvISXSUB(dstr))
11115                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
11116                 OP_REFCNT_UNLOCK;
11117                 if (CvCONST(dstr) && CvISXSUB(dstr)) {
11118                     CvXSUBANY(dstr).any_ptr = GvUNIQUE(CvGV(dstr)) ?
11119                         SvREFCNT_inc(CvXSUBANY(dstr).any_ptr) :
11120                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
11121                 }
11122                 /* don't dup if copying back - CvGV isn't refcounted, so the
11123                  * duped GV may never be freed. A bit of a hack! DAPM */
11124                 CvGV(dstr)      = (param->flags & CLONEf_JOIN_IN) ?
11125                     NULL : gv_dup(CvGV(dstr), param) ;
11126                 PAD_DUP(CvPADLIST(dstr), CvPADLIST(sstr), param);
11127                 CvOUTSIDE(dstr) =
11128                     CvWEAKOUTSIDE(sstr)
11129                     ? cv_dup(    CvOUTSIDE(dstr), param)
11130                     : cv_dup_inc(CvOUTSIDE(dstr), param);
11131                 if (!CvISXSUB(dstr))
11132                     CvFILE(dstr) = SAVEPV(CvFILE(dstr));
11133                 break;
11134             }
11135         }
11136     }
11137
11138     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
11139         ++PL_sv_objcount;
11140
11141     return dstr;
11142  }
11143
11144 /* duplicate a context */
11145
11146 PERL_CONTEXT *
11147 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
11148 {
11149     PERL_CONTEXT *ncxs;
11150
11151     PERL_ARGS_ASSERT_CX_DUP;
11152
11153     if (!cxs)
11154         return (PERL_CONTEXT*)NULL;
11155
11156     /* look for it in the table first */
11157     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
11158     if (ncxs)
11159         return ncxs;
11160
11161     /* create anew and remember what it is */
11162     Newx(ncxs, max + 1, PERL_CONTEXT);
11163     ptr_table_store(PL_ptr_table, cxs, ncxs);
11164     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
11165
11166     while (ix >= 0) {
11167         PERL_CONTEXT * const ncx = &ncxs[ix];
11168         if (CxTYPE(ncx) == CXt_SUBST) {
11169             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
11170         }
11171         else {
11172             switch (CxTYPE(ncx)) {
11173             case CXt_SUB:
11174                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
11175                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
11176                                            : cv_dup(ncx->blk_sub.cv,param));
11177                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
11178                                            ? av_dup_inc(ncx->blk_sub.argarray,
11179                                                         param)
11180                                            : NULL);
11181                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
11182                                                      param);
11183                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
11184                                            ncx->blk_sub.oldcomppad);
11185                 break;
11186             case CXt_EVAL:
11187                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
11188                                                       param);
11189                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
11190                 break;
11191             case CXt_LOOP_LAZYSV:
11192                 ncx->blk_loop.state_u.lazysv.end
11193                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
11194                 /* We are taking advantage of av_dup_inc and sv_dup_inc
11195                    actually being the same function, and order equivalance of
11196                    the two unions.
11197                    We can assert the later [but only at run time :-(]  */
11198                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
11199                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
11200             case CXt_LOOP_FOR:
11201                 ncx->blk_loop.state_u.ary.ary
11202                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
11203             case CXt_LOOP_LAZYIV:
11204             case CXt_LOOP_PLAIN:
11205                 if (CxPADLOOP(ncx)) {
11206                     ncx->blk_loop.oldcomppad
11207                         = (PAD*)ptr_table_fetch(PL_ptr_table,
11208                                                 ncx->blk_loop.oldcomppad);
11209                 } else {
11210                     ncx->blk_loop.oldcomppad
11211                         = (PAD*)gv_dup((const GV *)ncx->blk_loop.oldcomppad,
11212                                        param);
11213                 }
11214                 break;
11215             case CXt_FORMAT:
11216                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
11217                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
11218                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
11219                                                      param);
11220                 break;
11221             case CXt_BLOCK:
11222             case CXt_NULL:
11223                 break;
11224             }
11225         }
11226         --ix;
11227     }
11228     return ncxs;
11229 }
11230
11231 /* duplicate a stack info structure */
11232
11233 PERL_SI *
11234 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
11235 {
11236     PERL_SI *nsi;
11237
11238     PERL_ARGS_ASSERT_SI_DUP;
11239
11240     if (!si)
11241         return (PERL_SI*)NULL;
11242
11243     /* look for it in the table first */
11244     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
11245     if (nsi)
11246         return nsi;
11247
11248     /* create anew and remember what it is */
11249     Newxz(nsi, 1, PERL_SI);
11250     ptr_table_store(PL_ptr_table, si, nsi);
11251
11252     nsi->si_stack       = av_dup_inc(si->si_stack, param);
11253     nsi->si_cxix        = si->si_cxix;
11254     nsi->si_cxmax       = si->si_cxmax;
11255     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
11256     nsi->si_type        = si->si_type;
11257     nsi->si_prev        = si_dup(si->si_prev, param);
11258     nsi->si_next        = si_dup(si->si_next, param);
11259     nsi->si_markoff     = si->si_markoff;
11260
11261     return nsi;
11262 }
11263
11264 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
11265 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
11266 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
11267 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
11268 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
11269 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
11270 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
11271 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
11272 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
11273 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
11274 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
11275 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
11276 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
11277 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
11278
11279 /* XXXXX todo */
11280 #define pv_dup_inc(p)   SAVEPV(p)
11281 #define pv_dup(p)       SAVEPV(p)
11282 #define svp_dup_inc(p,pp)       any_dup(p,pp)
11283
11284 /* map any object to the new equivent - either something in the
11285  * ptr table, or something in the interpreter structure
11286  */
11287
11288 void *
11289 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
11290 {
11291     void *ret;
11292
11293     PERL_ARGS_ASSERT_ANY_DUP;
11294
11295     if (!v)
11296         return (void*)NULL;
11297
11298     /* look for it in the table first */
11299     ret = ptr_table_fetch(PL_ptr_table, v);
11300     if (ret)
11301         return ret;
11302
11303     /* see if it is part of the interpreter structure */
11304     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
11305         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
11306     else {
11307         ret = v;
11308     }
11309
11310     return ret;
11311 }
11312
11313 /* duplicate the save stack */
11314
11315 ANY *
11316 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
11317 {
11318     dVAR;
11319     ANY * const ss      = proto_perl->Isavestack;
11320     const I32 max       = proto_perl->Isavestack_max;
11321     I32 ix              = proto_perl->Isavestack_ix;
11322     ANY *nss;
11323     const SV *sv;
11324     const GV *gv;
11325     const AV *av;
11326     const HV *hv;
11327     void* ptr;
11328     int intval;
11329     long longval;
11330     GP *gp;
11331     IV iv;
11332     I32 i;
11333     char *c = NULL;
11334     void (*dptr) (void*);
11335     void (*dxptr) (pTHX_ void*);
11336
11337     PERL_ARGS_ASSERT_SS_DUP;
11338
11339     Newxz(nss, max, ANY);
11340
11341     while (ix > 0) {
11342         const I32 type = POPINT(ss,ix);
11343         TOPINT(nss,ix) = type;
11344         switch (type) {
11345         case SAVEt_HELEM:               /* hash element */
11346             sv = (const SV *)POPPTR(ss,ix);
11347             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11348             /* fall through */
11349         case SAVEt_ITEM:                        /* normal string */
11350         case SAVEt_SV:                          /* scalar reference */
11351             sv = (const SV *)POPPTR(ss,ix);
11352             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11353             /* fall through */
11354         case SAVEt_FREESV:
11355         case SAVEt_MORTALIZESV:
11356             sv = (const SV *)POPPTR(ss,ix);
11357             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11358             break;
11359         case SAVEt_SHARED_PVREF:                /* char* in shared space */
11360             c = (char*)POPPTR(ss,ix);
11361             TOPPTR(nss,ix) = savesharedpv(c);
11362             ptr = POPPTR(ss,ix);
11363             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11364             break;
11365         case SAVEt_GENERIC_SVREF:               /* generic sv */
11366         case SAVEt_SVREF:                       /* scalar reference */
11367             sv = (const SV *)POPPTR(ss,ix);
11368             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11369             ptr = POPPTR(ss,ix);
11370             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
11371             break;
11372         case SAVEt_HV:                          /* hash reference */
11373         case SAVEt_AV:                          /* array reference */
11374             sv = (const SV *) POPPTR(ss,ix);
11375             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11376             /* fall through */
11377         case SAVEt_COMPPAD:
11378         case SAVEt_NSTAB:
11379             sv = (const SV *) POPPTR(ss,ix);
11380             TOPPTR(nss,ix) = sv_dup(sv, param);
11381             break;
11382         case SAVEt_INT:                         /* int reference */
11383             ptr = POPPTR(ss,ix);
11384             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11385             intval = (int)POPINT(ss,ix);
11386             TOPINT(nss,ix) = intval;
11387             break;
11388         case SAVEt_LONG:                        /* long reference */
11389             ptr = POPPTR(ss,ix);
11390             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11391             /* fall through */
11392         case SAVEt_CLEARSV:
11393             longval = (long)POPLONG(ss,ix);
11394             TOPLONG(nss,ix) = longval;
11395             break;
11396         case SAVEt_I32:                         /* I32 reference */
11397         case SAVEt_I16:                         /* I16 reference */
11398         case SAVEt_I8:                          /* I8 reference */
11399         case SAVEt_COP_ARYBASE:                 /* call CopARYBASE_set */
11400             ptr = POPPTR(ss,ix);
11401             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11402             i = POPINT(ss,ix);
11403             TOPINT(nss,ix) = i;
11404             break;
11405         case SAVEt_IV:                          /* IV reference */
11406             ptr = POPPTR(ss,ix);
11407             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11408             iv = POPIV(ss,ix);
11409             TOPIV(nss,ix) = iv;
11410             break;
11411         case SAVEt_HPTR:                        /* HV* reference */
11412         case SAVEt_APTR:                        /* AV* reference */
11413         case SAVEt_SPTR:                        /* SV* reference */
11414             ptr = POPPTR(ss,ix);
11415             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11416             sv = (const SV *)POPPTR(ss,ix);
11417             TOPPTR(nss,ix) = sv_dup(sv, param);
11418             break;
11419         case SAVEt_VPTR:                        /* random* reference */
11420             ptr = POPPTR(ss,ix);
11421             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11422             ptr = POPPTR(ss,ix);
11423             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11424             break;
11425         case SAVEt_GENERIC_PVREF:               /* generic char* */
11426         case SAVEt_PPTR:                        /* char* reference */
11427             ptr = POPPTR(ss,ix);
11428             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11429             c = (char*)POPPTR(ss,ix);
11430             TOPPTR(nss,ix) = pv_dup(c);
11431             break;
11432         case SAVEt_GP:                          /* scalar reference */
11433             gp = (GP*)POPPTR(ss,ix);
11434             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
11435             (void)GpREFCNT_inc(gp);
11436             gv = (const GV *)POPPTR(ss,ix);
11437             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
11438             break;
11439         case SAVEt_FREEOP:
11440             ptr = POPPTR(ss,ix);
11441             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
11442                 /* these are assumed to be refcounted properly */
11443                 OP *o;
11444                 switch (((OP*)ptr)->op_type) {
11445                 case OP_LEAVESUB:
11446                 case OP_LEAVESUBLV:
11447                 case OP_LEAVEEVAL:
11448                 case OP_LEAVE:
11449                 case OP_SCOPE:
11450                 case OP_LEAVEWRITE:
11451                     TOPPTR(nss,ix) = ptr;
11452                     o = (OP*)ptr;
11453                     OP_REFCNT_LOCK;
11454                     (void) OpREFCNT_inc(o);
11455                     OP_REFCNT_UNLOCK;
11456                     break;
11457                 default:
11458                     TOPPTR(nss,ix) = NULL;
11459                     break;
11460                 }
11461             }
11462             else
11463                 TOPPTR(nss,ix) = NULL;
11464             break;
11465         case SAVEt_DELETE:
11466             hv = (const HV *)POPPTR(ss,ix);
11467             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11468             i = POPINT(ss,ix);
11469             TOPINT(nss,ix) = i;
11470             /* Fall through */
11471         case SAVEt_FREEPV:
11472             c = (char*)POPPTR(ss,ix);
11473             TOPPTR(nss,ix) = pv_dup_inc(c);
11474             break;
11475         case SAVEt_STACK_POS:           /* Position on Perl stack */
11476             i = POPINT(ss,ix);
11477             TOPINT(nss,ix) = i;
11478             break;
11479         case SAVEt_DESTRUCTOR:
11480             ptr = POPPTR(ss,ix);
11481             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11482             dptr = POPDPTR(ss,ix);
11483             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
11484                                         any_dup(FPTR2DPTR(void *, dptr),
11485                                                 proto_perl));
11486             break;
11487         case SAVEt_DESTRUCTOR_X:
11488             ptr = POPPTR(ss,ix);
11489             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11490             dxptr = POPDXPTR(ss,ix);
11491             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
11492                                          any_dup(FPTR2DPTR(void *, dxptr),
11493                                                  proto_perl));
11494             break;
11495         case SAVEt_REGCONTEXT:
11496         case SAVEt_ALLOC:
11497             i = POPINT(ss,ix);
11498             TOPINT(nss,ix) = i;
11499             ix -= i;
11500             break;
11501         case SAVEt_AELEM:               /* array element */
11502             sv = (const SV *)POPPTR(ss,ix);
11503             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11504             i = POPINT(ss,ix);
11505             TOPINT(nss,ix) = i;
11506             av = (const AV *)POPPTR(ss,ix);
11507             TOPPTR(nss,ix) = av_dup_inc(av, param);
11508             break;
11509         case SAVEt_OP:
11510             ptr = POPPTR(ss,ix);
11511             TOPPTR(nss,ix) = ptr;
11512             break;
11513         case SAVEt_HINTS:
11514             ptr = POPPTR(ss,ix);
11515             if (ptr) {
11516                 HINTS_REFCNT_LOCK;
11517                 ((struct refcounted_he *)ptr)->refcounted_he_refcnt++;
11518                 HINTS_REFCNT_UNLOCK;
11519             }
11520             TOPPTR(nss,ix) = ptr;
11521             i = POPINT(ss,ix);
11522             TOPINT(nss,ix) = i;
11523             if (i & HINT_LOCALIZE_HH) {
11524                 hv = (const HV *)POPPTR(ss,ix);
11525                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11526             }
11527             break;
11528         case SAVEt_PADSV_AND_MORTALIZE:
11529             longval = (long)POPLONG(ss,ix);
11530             TOPLONG(nss,ix) = longval;
11531             ptr = POPPTR(ss,ix);
11532             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11533             sv = (const SV *)POPPTR(ss,ix);
11534             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11535             break;
11536         case SAVEt_BOOL:
11537             ptr = POPPTR(ss,ix);
11538             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11539             longval = (long)POPBOOL(ss,ix);
11540             TOPBOOL(nss,ix) = (bool)longval;
11541             break;
11542         case SAVEt_SET_SVFLAGS:
11543             i = POPINT(ss,ix);
11544             TOPINT(nss,ix) = i;
11545             i = POPINT(ss,ix);
11546             TOPINT(nss,ix) = i;
11547             sv = (const SV *)POPPTR(ss,ix);
11548             TOPPTR(nss,ix) = sv_dup(sv, param);
11549             break;
11550         case SAVEt_RE_STATE:
11551             {
11552                 const struct re_save_state *const old_state
11553                     = (struct re_save_state *)
11554                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11555                 struct re_save_state *const new_state
11556                     = (struct re_save_state *)
11557                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11558
11559                 Copy(old_state, new_state, 1, struct re_save_state);
11560                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
11561
11562                 new_state->re_state_bostr
11563                     = pv_dup(old_state->re_state_bostr);
11564                 new_state->re_state_reginput
11565                     = pv_dup(old_state->re_state_reginput);
11566                 new_state->re_state_regeol
11567                     = pv_dup(old_state->re_state_regeol);
11568                 new_state->re_state_regoffs
11569                     = (regexp_paren_pair*)
11570                         any_dup(old_state->re_state_regoffs, proto_perl);
11571                 new_state->re_state_reglastparen
11572                     = (U32*) any_dup(old_state->re_state_reglastparen, 
11573                               proto_perl);
11574                 new_state->re_state_reglastcloseparen
11575                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
11576                               proto_perl);
11577                 /* XXX This just has to be broken. The old save_re_context
11578                    code did SAVEGENERICPV(PL_reg_start_tmp);
11579                    PL_reg_start_tmp is char **.
11580                    Look above to what the dup code does for
11581                    SAVEt_GENERIC_PVREF
11582                    It can never have worked.
11583                    So this is merely a faithful copy of the exiting bug:  */
11584                 new_state->re_state_reg_start_tmp
11585                     = (char **) pv_dup((char *)
11586                                       old_state->re_state_reg_start_tmp);
11587                 /* I assume that it only ever "worked" because no-one called
11588                    (pseudo)fork while the regexp engine had re-entered itself.
11589                 */
11590 #ifdef PERL_OLD_COPY_ON_WRITE
11591                 new_state->re_state_nrs
11592                     = sv_dup(old_state->re_state_nrs, param);
11593 #endif
11594                 new_state->re_state_reg_magic
11595                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
11596                                proto_perl);
11597                 new_state->re_state_reg_oldcurpm
11598                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
11599                               proto_perl);
11600                 new_state->re_state_reg_curpm
11601                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
11602                                proto_perl);
11603                 new_state->re_state_reg_oldsaved
11604                     = pv_dup(old_state->re_state_reg_oldsaved);
11605                 new_state->re_state_reg_poscache
11606                     = pv_dup(old_state->re_state_reg_poscache);
11607                 new_state->re_state_reg_starttry
11608                     = pv_dup(old_state->re_state_reg_starttry);
11609                 break;
11610             }
11611         case SAVEt_COMPILE_WARNINGS:
11612             ptr = POPPTR(ss,ix);
11613             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
11614             break;
11615         case SAVEt_PARSER:
11616             ptr = POPPTR(ss,ix);
11617             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
11618             break;
11619         default:
11620             Perl_croak(aTHX_
11621                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
11622         }
11623     }
11624
11625     return nss;
11626 }
11627
11628
11629 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
11630  * flag to the result. This is done for each stash before cloning starts,
11631  * so we know which stashes want their objects cloned */
11632
11633 static void
11634 do_mark_cloneable_stash(pTHX_ SV *const sv)
11635 {
11636     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
11637     if (hvname) {
11638         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
11639         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
11640         if (cloner && GvCV(cloner)) {
11641             dSP;
11642             UV status;
11643
11644             ENTER;
11645             SAVETMPS;
11646             PUSHMARK(SP);
11647             mXPUSHs(newSVhek(hvname));
11648             PUTBACK;
11649             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
11650             SPAGAIN;
11651             status = POPu;
11652             PUTBACK;
11653             FREETMPS;
11654             LEAVE;
11655             if (status)
11656                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
11657         }
11658     }
11659 }
11660
11661
11662
11663 /*
11664 =for apidoc perl_clone
11665
11666 Create and return a new interpreter by cloning the current one.
11667
11668 perl_clone takes these flags as parameters:
11669
11670 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
11671 without it we only clone the data and zero the stacks,
11672 with it we copy the stacks and the new perl interpreter is
11673 ready to run at the exact same point as the previous one.
11674 The pseudo-fork code uses COPY_STACKS while the
11675 threads->create doesn't.
11676
11677 CLONEf_KEEP_PTR_TABLE
11678 perl_clone keeps a ptr_table with the pointer of the old
11679 variable as a key and the new variable as a value,
11680 this allows it to check if something has been cloned and not
11681 clone it again but rather just use the value and increase the
11682 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
11683 the ptr_table using the function
11684 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
11685 reason to keep it around is if you want to dup some of your own
11686 variable who are outside the graph perl scans, example of this
11687 code is in threads.xs create
11688
11689 CLONEf_CLONE_HOST
11690 This is a win32 thing, it is ignored on unix, it tells perls
11691 win32host code (which is c++) to clone itself, this is needed on
11692 win32 if you want to run two threads at the same time,
11693 if you just want to do some stuff in a separate perl interpreter
11694 and then throw it away and return to the original one,
11695 you don't need to do anything.
11696
11697 =cut
11698 */
11699
11700 /* XXX the above needs expanding by someone who actually understands it ! */
11701 EXTERN_C PerlInterpreter *
11702 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
11703
11704 PerlInterpreter *
11705 perl_clone(PerlInterpreter *proto_perl, UV flags)
11706 {
11707    dVAR;
11708 #ifdef PERL_IMPLICIT_SYS
11709
11710     PERL_ARGS_ASSERT_PERL_CLONE;
11711
11712    /* perlhost.h so we need to call into it
11713    to clone the host, CPerlHost should have a c interface, sky */
11714
11715    if (flags & CLONEf_CLONE_HOST) {
11716        return perl_clone_host(proto_perl,flags);
11717    }
11718    return perl_clone_using(proto_perl, flags,
11719                             proto_perl->IMem,
11720                             proto_perl->IMemShared,
11721                             proto_perl->IMemParse,
11722                             proto_perl->IEnv,
11723                             proto_perl->IStdIO,
11724                             proto_perl->ILIO,
11725                             proto_perl->IDir,
11726                             proto_perl->ISock,
11727                             proto_perl->IProc);
11728 }
11729
11730 PerlInterpreter *
11731 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
11732                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
11733                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
11734                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
11735                  struct IPerlDir* ipD, struct IPerlSock* ipS,
11736                  struct IPerlProc* ipP)
11737 {
11738     /* XXX many of the string copies here can be optimized if they're
11739      * constants; they need to be allocated as common memory and just
11740      * their pointers copied. */
11741
11742     IV i;
11743     CLONE_PARAMS clone_params;
11744     CLONE_PARAMS* const param = &clone_params;
11745
11746     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
11747
11748     PERL_ARGS_ASSERT_PERL_CLONE_USING;
11749
11750     /* for each stash, determine whether its objects should be cloned */
11751     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11752     PERL_SET_THX(my_perl);
11753
11754 #  ifdef DEBUGGING
11755     PoisonNew(my_perl, 1, PerlInterpreter);
11756     PL_op = NULL;
11757     PL_curcop = NULL;
11758     PL_markstack = 0;
11759     PL_scopestack = 0;
11760     PL_savestack = 0;
11761     PL_savestack_ix = 0;
11762     PL_savestack_max = -1;
11763     PL_sig_pending = 0;
11764     PL_parser = NULL;
11765     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11766 #  else /* !DEBUGGING */
11767     Zero(my_perl, 1, PerlInterpreter);
11768 #  endif        /* DEBUGGING */
11769
11770     /* host pointers */
11771     PL_Mem              = ipM;
11772     PL_MemShared        = ipMS;
11773     PL_MemParse         = ipMP;
11774     PL_Env              = ipE;
11775     PL_StdIO            = ipStd;
11776     PL_LIO              = ipLIO;
11777     PL_Dir              = ipD;
11778     PL_Sock             = ipS;
11779     PL_Proc             = ipP;
11780 #else           /* !PERL_IMPLICIT_SYS */
11781     IV i;
11782     CLONE_PARAMS clone_params;
11783     CLONE_PARAMS* param = &clone_params;
11784     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
11785
11786     PERL_ARGS_ASSERT_PERL_CLONE;
11787
11788     /* for each stash, determine whether its objects should be cloned */
11789     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11790     PERL_SET_THX(my_perl);
11791
11792 #    ifdef DEBUGGING
11793     PoisonNew(my_perl, 1, PerlInterpreter);
11794     PL_op = NULL;
11795     PL_curcop = NULL;
11796     PL_markstack = 0;
11797     PL_scopestack = 0;
11798     PL_savestack = 0;
11799     PL_savestack_ix = 0;
11800     PL_savestack_max = -1;
11801     PL_sig_pending = 0;
11802     PL_parser = NULL;
11803     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11804 #    else       /* !DEBUGGING */
11805     Zero(my_perl, 1, PerlInterpreter);
11806 #    endif      /* DEBUGGING */
11807 #endif          /* PERL_IMPLICIT_SYS */
11808     param->flags = flags;
11809     param->proto_perl = proto_perl;
11810
11811     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
11812
11813     PL_body_arenas = NULL;
11814     Zero(&PL_body_roots, 1, PL_body_roots);
11815     
11816     PL_nice_chunk       = NULL;
11817     PL_nice_chunk_size  = 0;
11818     PL_sv_count         = 0;
11819     PL_sv_objcount      = 0;
11820     PL_sv_root          = NULL;
11821     PL_sv_arenaroot     = NULL;
11822
11823     PL_debug            = proto_perl->Idebug;
11824
11825     PL_hash_seed        = proto_perl->Ihash_seed;
11826     PL_rehash_seed      = proto_perl->Irehash_seed;
11827
11828 #ifdef USE_REENTRANT_API
11829     /* XXX: things like -Dm will segfault here in perlio, but doing
11830      *  PERL_SET_CONTEXT(proto_perl);
11831      * breaks too many other things
11832      */
11833     Perl_reentrant_init(aTHX);
11834 #endif
11835
11836     /* create SV map for pointer relocation */
11837     PL_ptr_table = ptr_table_new();
11838
11839     /* initialize these special pointers as early as possible */
11840     SvANY(&PL_sv_undef)         = NULL;
11841     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
11842     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
11843     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
11844
11845     SvANY(&PL_sv_no)            = new_XPVNV();
11846     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
11847     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11848                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11849     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
11850     SvCUR_set(&PL_sv_no, 0);
11851     SvLEN_set(&PL_sv_no, 1);
11852     SvIV_set(&PL_sv_no, 0);
11853     SvNV_set(&PL_sv_no, 0);
11854     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
11855
11856     SvANY(&PL_sv_yes)           = new_XPVNV();
11857     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
11858     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11859                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11860     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
11861     SvCUR_set(&PL_sv_yes, 1);
11862     SvLEN_set(&PL_sv_yes, 2);
11863     SvIV_set(&PL_sv_yes, 1);
11864     SvNV_set(&PL_sv_yes, 1);
11865     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
11866
11867     /* create (a non-shared!) shared string table */
11868     PL_strtab           = newHV();
11869     HvSHAREKEYS_off(PL_strtab);
11870     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
11871     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
11872
11873     PL_compiling = proto_perl->Icompiling;
11874
11875     /* These two PVs will be free'd special way so must set them same way op.c does */
11876     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
11877     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
11878
11879     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
11880     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
11881
11882     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
11883     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
11884     if (PL_compiling.cop_hints_hash) {
11885         HINTS_REFCNT_LOCK;
11886         PL_compiling.cop_hints_hash->refcounted_he_refcnt++;
11887         HINTS_REFCNT_UNLOCK;
11888     }
11889     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
11890 #ifdef PERL_DEBUG_READONLY_OPS
11891     PL_slabs = NULL;
11892     PL_slab_count = 0;
11893 #endif
11894
11895     /* pseudo environmental stuff */
11896     PL_origargc         = proto_perl->Iorigargc;
11897     PL_origargv         = proto_perl->Iorigargv;
11898
11899     param->stashes      = newAV();  /* Setup array of objects to call clone on */
11900
11901     /* Set tainting stuff before PerlIO_debug can possibly get called */
11902     PL_tainting         = proto_perl->Itainting;
11903     PL_taint_warn       = proto_perl->Itaint_warn;
11904
11905 #ifdef PERLIO_LAYERS
11906     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
11907     PerlIO_clone(aTHX_ proto_perl, param);
11908 #endif
11909
11910     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
11911     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
11912     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
11913     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
11914     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
11915     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
11916
11917     /* switches */
11918     PL_minus_c          = proto_perl->Iminus_c;
11919     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
11920     PL_localpatches     = proto_perl->Ilocalpatches;
11921     PL_splitstr         = proto_perl->Isplitstr;
11922     PL_minus_n          = proto_perl->Iminus_n;
11923     PL_minus_p          = proto_perl->Iminus_p;
11924     PL_minus_l          = proto_perl->Iminus_l;
11925     PL_minus_a          = proto_perl->Iminus_a;
11926     PL_minus_E          = proto_perl->Iminus_E;
11927     PL_minus_F          = proto_perl->Iminus_F;
11928     PL_doswitches       = proto_perl->Idoswitches;
11929     PL_dowarn           = proto_perl->Idowarn;
11930     PL_doextract        = proto_perl->Idoextract;
11931     PL_sawampersand     = proto_perl->Isawampersand;
11932     PL_unsafe           = proto_perl->Iunsafe;
11933     PL_inplace          = SAVEPV(proto_perl->Iinplace);
11934     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
11935     PL_perldb           = proto_perl->Iperldb;
11936     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
11937     PL_exit_flags       = proto_perl->Iexit_flags;
11938
11939     /* magical thingies */
11940     /* XXX time(&PL_basetime) when asked for? */
11941     PL_basetime         = proto_perl->Ibasetime;
11942     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
11943
11944     PL_maxsysfd         = proto_perl->Imaxsysfd;
11945     PL_statusvalue      = proto_perl->Istatusvalue;
11946 #ifdef VMS
11947     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
11948 #else
11949     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
11950 #endif
11951     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
11952
11953     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
11954     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
11955     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
11956
11957    
11958     /* RE engine related */
11959     Zero(&PL_reg_state, 1, struct re_save_state);
11960     PL_reginterp_cnt    = 0;
11961     PL_regmatch_slab    = NULL;
11962     
11963     /* Clone the regex array */
11964     /* ORANGE FIXME for plugins, probably in the SV dup code.
11965        newSViv(PTR2IV(CALLREGDUPE(
11966        INT2PTR(REGEXP *, SvIVX(regex)), param))))
11967     */
11968     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
11969     PL_regex_pad = AvARRAY(PL_regex_padav);
11970
11971     /* shortcuts to various I/O objects */
11972     PL_ofsgv            = gv_dup(proto_perl->Iofsgv, param);
11973     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
11974     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
11975     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
11976     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
11977     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
11978     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
11979
11980     /* shortcuts to regexp stuff */
11981     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
11982
11983     /* shortcuts to misc objects */
11984     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
11985
11986     /* shortcuts to debugging objects */
11987     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
11988     PL_DBline           = gv_dup(proto_perl->IDBline, param);
11989     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
11990     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
11991     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
11992     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
11993     PL_dbargs           = av_dup(proto_perl->Idbargs, param);
11994
11995     /* symbol tables */
11996     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
11997     PL_curstash         = hv_dup(proto_perl->Icurstash, param);
11998     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
11999     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
12000     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
12001
12002     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
12003     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
12004     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
12005     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
12006     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
12007     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
12008     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
12009     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
12010
12011     PL_sub_generation   = proto_perl->Isub_generation;
12012     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
12013
12014     /* funky return mechanisms */
12015     PL_forkprocess      = proto_perl->Iforkprocess;
12016
12017     /* subprocess state */
12018     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
12019
12020     /* internal state */
12021     PL_maxo             = proto_perl->Imaxo;
12022     if (proto_perl->Iop_mask)
12023         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
12024     else
12025         PL_op_mask      = NULL;
12026     /* PL_asserting        = proto_perl->Iasserting; */
12027
12028     /* current interpreter roots */
12029     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
12030     OP_REFCNT_LOCK;
12031     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
12032     OP_REFCNT_UNLOCK;
12033     PL_main_start       = proto_perl->Imain_start;
12034     PL_eval_root        = proto_perl->Ieval_root;
12035     PL_eval_start       = proto_perl->Ieval_start;
12036
12037     /* runtime control stuff */
12038     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
12039
12040     PL_filemode         = proto_perl->Ifilemode;
12041     PL_lastfd           = proto_perl->Ilastfd;
12042     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12043     PL_Argv             = NULL;
12044     PL_Cmd              = NULL;
12045     PL_gensym           = proto_perl->Igensym;
12046     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
12047     PL_laststatval      = proto_perl->Ilaststatval;
12048     PL_laststype        = proto_perl->Ilaststype;
12049     PL_mess_sv          = NULL;
12050
12051     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
12052
12053     /* interpreter atexit processing */
12054     PL_exitlistlen      = proto_perl->Iexitlistlen;
12055     if (PL_exitlistlen) {
12056         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12057         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12058     }
12059     else
12060         PL_exitlist     = (PerlExitListEntry*)NULL;
12061
12062     PL_my_cxt_size = proto_perl->Imy_cxt_size;
12063     if (PL_my_cxt_size) {
12064         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
12065         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
12066 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12067         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
12068         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
12069 #endif
12070     }
12071     else {
12072         PL_my_cxt_list  = (void**)NULL;
12073 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12074         PL_my_cxt_keys  = (const char**)NULL;
12075 #endif
12076     }
12077     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
12078     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
12079     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
12080
12081     PL_profiledata      = NULL;
12082
12083     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
12084
12085     PAD_CLONE_VARS(proto_perl, param);
12086
12087 #ifdef HAVE_INTERP_INTERN
12088     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
12089 #endif
12090
12091     /* more statics moved here */
12092     PL_generation       = proto_perl->Igeneration;
12093     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
12094
12095     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12096     PL_in_clean_all     = proto_perl->Iin_clean_all;
12097
12098     PL_uid              = proto_perl->Iuid;
12099     PL_euid             = proto_perl->Ieuid;
12100     PL_gid              = proto_perl->Igid;
12101     PL_egid             = proto_perl->Iegid;
12102     PL_nomemok          = proto_perl->Inomemok;
12103     PL_an               = proto_perl->Ian;
12104     PL_evalseq          = proto_perl->Ievalseq;
12105     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12106     PL_origalen         = proto_perl->Iorigalen;
12107 #ifdef PERL_USES_PL_PIDSTATUS
12108     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
12109 #endif
12110     PL_osname           = SAVEPV(proto_perl->Iosname);
12111     PL_sighandlerp      = proto_perl->Isighandlerp;
12112
12113     PL_runops           = proto_perl->Irunops;
12114
12115     PL_parser           = parser_dup(proto_perl->Iparser, param);
12116
12117     PL_subline          = proto_perl->Isubline;
12118     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
12119
12120 #ifdef FCRYPT
12121     PL_cryptseen        = proto_perl->Icryptseen;
12122 #endif
12123
12124     PL_hints            = proto_perl->Ihints;
12125
12126     PL_amagic_generation        = proto_perl->Iamagic_generation;
12127
12128 #ifdef USE_LOCALE_COLLATE
12129     PL_collation_ix     = proto_perl->Icollation_ix;
12130     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
12131     PL_collation_standard       = proto_perl->Icollation_standard;
12132     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12133     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12134 #endif /* USE_LOCALE_COLLATE */
12135
12136 #ifdef USE_LOCALE_NUMERIC
12137     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
12138     PL_numeric_standard = proto_perl->Inumeric_standard;
12139     PL_numeric_local    = proto_perl->Inumeric_local;
12140     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
12141 #endif /* !USE_LOCALE_NUMERIC */
12142
12143     /* utf8 character classes */
12144     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
12145     PL_utf8_alnumc      = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
12146     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
12147     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
12148     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
12149     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
12150     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
12151     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
12152     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
12153     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
12154     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
12155     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
12156     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
12157     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
12158     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
12159     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
12160     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
12161     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
12162     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
12163     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
12164
12165     /* Did the locale setup indicate UTF-8? */
12166     PL_utf8locale       = proto_perl->Iutf8locale;
12167     /* Unicode features (see perlrun/-C) */
12168     PL_unicode          = proto_perl->Iunicode;
12169
12170     /* Pre-5.8 signals control */
12171     PL_signals          = proto_perl->Isignals;
12172
12173     /* times() ticks per second */
12174     PL_clocktick        = proto_perl->Iclocktick;
12175
12176     /* Recursion stopper for PerlIO_find_layer */
12177     PL_in_load_module   = proto_perl->Iin_load_module;
12178
12179     /* sort() routine */
12180     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
12181
12182     /* Not really needed/useful since the reenrant_retint is "volatile",
12183      * but do it for consistency's sake. */
12184     PL_reentrant_retint = proto_perl->Ireentrant_retint;
12185
12186     /* Hooks to shared SVs and locks. */
12187     PL_sharehook        = proto_perl->Isharehook;
12188     PL_lockhook         = proto_perl->Ilockhook;
12189     PL_unlockhook       = proto_perl->Iunlockhook;
12190     PL_threadhook       = proto_perl->Ithreadhook;
12191     PL_destroyhook      = proto_perl->Idestroyhook;
12192
12193 #ifdef THREADS_HAVE_PIDS
12194     PL_ppid             = proto_perl->Ippid;
12195 #endif
12196
12197     /* swatch cache */
12198     PL_last_swash_hv    = NULL; /* reinits on demand */
12199     PL_last_swash_klen  = 0;
12200     PL_last_swash_key[0]= '\0';
12201     PL_last_swash_tmps  = (U8*)NULL;
12202     PL_last_swash_slen  = 0;
12203
12204     PL_glob_index       = proto_perl->Iglob_index;
12205     PL_srand_called     = proto_perl->Isrand_called;
12206     PL_bitcount         = NULL; /* reinits on demand */
12207
12208     if (proto_perl->Ipsig_pend) {
12209         Newxz(PL_psig_pend, SIG_SIZE, int);
12210     }
12211     else {
12212         PL_psig_pend    = (int*)NULL;
12213     }
12214
12215     if (proto_perl->Ipsig_ptr) {
12216         Newxz(PL_psig_ptr,  SIG_SIZE, SV*);
12217         Newxz(PL_psig_name, SIG_SIZE, SV*);
12218         for (i = 1; i < SIG_SIZE; i++) {
12219             PL_psig_ptr[i]  = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
12220             PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
12221         }
12222     }
12223     else {
12224         PL_psig_ptr     = (SV**)NULL;
12225         PL_psig_name    = (SV**)NULL;
12226     }
12227
12228     /* intrpvar.h stuff */
12229
12230     if (flags & CLONEf_COPY_STACKS) {
12231         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
12232         PL_tmps_ix              = proto_perl->Itmps_ix;
12233         PL_tmps_max             = proto_perl->Itmps_max;
12234         PL_tmps_floor           = proto_perl->Itmps_floor;
12235         Newxz(PL_tmps_stack, PL_tmps_max, SV*);
12236         i = 0;
12237         while (i <= PL_tmps_ix) {
12238             PL_tmps_stack[i]    = sv_dup_inc(proto_perl->Itmps_stack[i], param);
12239             ++i;
12240         }
12241
12242         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
12243         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
12244         Newxz(PL_markstack, i, I32);
12245         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
12246                                                   - proto_perl->Imarkstack);
12247         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
12248                                                   - proto_perl->Imarkstack);
12249         Copy(proto_perl->Imarkstack, PL_markstack,
12250              PL_markstack_ptr - PL_markstack + 1, I32);
12251
12252         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
12253          * NOTE: unlike the others! */
12254         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
12255         PL_scopestack_max       = proto_perl->Iscopestack_max;
12256         Newxz(PL_scopestack, PL_scopestack_max, I32);
12257         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
12258
12259         /* NOTE: si_dup() looks at PL_markstack */
12260         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
12261
12262         /* PL_curstack          = PL_curstackinfo->si_stack; */
12263         PL_curstack             = av_dup(proto_perl->Icurstack, param);
12264         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
12265
12266         /* next PUSHs() etc. set *(PL_stack_sp+1) */
12267         PL_stack_base           = AvARRAY(PL_curstack);
12268         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
12269                                                    - proto_perl->Istack_base);
12270         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
12271
12272         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
12273          * NOTE: unlike the others! */
12274         PL_savestack_ix         = proto_perl->Isavestack_ix;
12275         PL_savestack_max        = proto_perl->Isavestack_max;
12276         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
12277         PL_savestack            = ss_dup(proto_perl, param);
12278     }
12279     else {
12280         init_stacks();
12281         ENTER;                  /* perl_destruct() wants to LEAVE; */
12282
12283         /* although we're not duplicating the tmps stack, we should still
12284          * add entries for any SVs on the tmps stack that got cloned by a
12285          * non-refcount means (eg a temp in @_); otherwise they will be
12286          * orphaned
12287          */
12288         for (i = 0; i<= proto_perl->Itmps_ix; i++) {
12289             SV * const nsv = MUTABLE_SV(ptr_table_fetch(PL_ptr_table,
12290                     proto_perl->Itmps_stack[i]));
12291             if (nsv && !SvREFCNT(nsv)) {
12292                 EXTEND_MORTAL(1);
12293                 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple(nsv);
12294             }
12295         }
12296     }
12297
12298     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
12299     PL_top_env          = &PL_start_env;
12300
12301     PL_op               = proto_perl->Iop;
12302
12303     PL_Sv               = NULL;
12304     PL_Xpv              = (XPV*)NULL;
12305     my_perl->Ina        = proto_perl->Ina;
12306
12307     PL_statbuf          = proto_perl->Istatbuf;
12308     PL_statcache        = proto_perl->Istatcache;
12309     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
12310     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
12311 #ifdef HAS_TIMES
12312     PL_timesbuf         = proto_perl->Itimesbuf;
12313 #endif
12314
12315     PL_tainted          = proto_perl->Itainted;
12316     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
12317     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
12318     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
12319     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
12320     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
12321     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
12322     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
12323     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
12324
12325     PL_restartop        = proto_perl->Irestartop;
12326     PL_in_eval          = proto_perl->Iin_eval;
12327     PL_delaymagic       = proto_perl->Idelaymagic;
12328     PL_dirty            = proto_perl->Idirty;
12329     PL_localizing       = proto_perl->Ilocalizing;
12330
12331     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
12332     PL_hv_fetch_ent_mh  = NULL;
12333     PL_modcount         = proto_perl->Imodcount;
12334     PL_lastgotoprobe    = NULL;
12335     PL_dumpindent       = proto_perl->Idumpindent;
12336
12337     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
12338     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
12339     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
12340     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
12341     PL_efloatbuf        = NULL;         /* reinits on demand */
12342     PL_efloatsize       = 0;                    /* reinits on demand */
12343
12344     /* regex stuff */
12345
12346     PL_screamfirst      = NULL;
12347     PL_screamnext       = NULL;
12348     PL_maxscream        = -1;                   /* reinits on demand */
12349     PL_lastscream       = NULL;
12350
12351
12352     PL_regdummy         = proto_perl->Iregdummy;
12353     PL_colorset         = 0;            /* reinits PL_colors[] */
12354     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12355
12356
12357
12358     /* Pluggable optimizer */
12359     PL_peepp            = proto_perl->Ipeepp;
12360
12361     PL_stashcache       = newHV();
12362
12363     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
12364                                             proto_perl->Iwatchaddr);
12365     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
12366     if (PL_debug && PL_watchaddr) {
12367         PerlIO_printf(Perl_debug_log,
12368           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
12369           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
12370           PTR2UV(PL_watchok));
12371     }
12372
12373     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
12374
12375     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
12376         ptr_table_free(PL_ptr_table);
12377         PL_ptr_table = NULL;
12378     }
12379
12380     /* Call the ->CLONE method, if it exists, for each of the stashes
12381        identified by sv_dup() above.
12382     */
12383     while(av_len(param->stashes) != -1) {
12384         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
12385         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
12386         if (cloner && GvCV(cloner)) {
12387             dSP;
12388             ENTER;
12389             SAVETMPS;
12390             PUSHMARK(SP);
12391             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
12392             PUTBACK;
12393             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
12394             FREETMPS;
12395             LEAVE;
12396         }
12397     }
12398
12399     SvREFCNT_dec(param->stashes);
12400
12401     /* orphaned? eg threads->new inside BEGIN or use */
12402     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
12403         SvREFCNT_inc_simple_void(PL_compcv);
12404         SAVEFREESV(PL_compcv);
12405     }
12406
12407     return my_perl;
12408 }
12409
12410 #endif /* USE_ITHREADS */
12411
12412 /*
12413 =head1 Unicode Support
12414
12415 =for apidoc sv_recode_to_utf8
12416
12417 The encoding is assumed to be an Encode object, on entry the PV
12418 of the sv is assumed to be octets in that encoding, and the sv
12419 will be converted into Unicode (and UTF-8).
12420
12421 If the sv already is UTF-8 (or if it is not POK), or if the encoding
12422 is not a reference, nothing is done to the sv.  If the encoding is not
12423 an C<Encode::XS> Encoding object, bad things will happen.
12424 (See F<lib/encoding.pm> and L<Encode>).
12425
12426 The PV of the sv is returned.
12427
12428 =cut */
12429
12430 char *
12431 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
12432 {
12433     dVAR;
12434
12435     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
12436
12437     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
12438         SV *uni;
12439         STRLEN len;
12440         const char *s;
12441         dSP;
12442         ENTER;
12443         SAVETMPS;
12444         save_re_context();
12445         PUSHMARK(sp);
12446         EXTEND(SP, 3);
12447         XPUSHs(encoding);
12448         XPUSHs(sv);
12449 /*
12450   NI-S 2002/07/09
12451   Passing sv_yes is wrong - it needs to be or'ed set of constants
12452   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
12453   remove converted chars from source.
12454
12455   Both will default the value - let them.
12456
12457         XPUSHs(&PL_sv_yes);
12458 */
12459         PUTBACK;
12460         call_method("decode", G_SCALAR);
12461         SPAGAIN;
12462         uni = POPs;
12463         PUTBACK;
12464         s = SvPV_const(uni, len);
12465         if (s != SvPVX_const(sv)) {
12466             SvGROW(sv, len + 1);
12467             Move(s, SvPVX(sv), len + 1, char);
12468             SvCUR_set(sv, len);
12469         }
12470         FREETMPS;
12471         LEAVE;
12472         SvUTF8_on(sv);
12473         return SvPVX(sv);
12474     }
12475     return SvPOKp(sv) ? SvPVX(sv) : NULL;
12476 }
12477
12478 /*
12479 =for apidoc sv_cat_decode
12480
12481 The encoding is assumed to be an Encode object, the PV of the ssv is
12482 assumed to be octets in that encoding and decoding the input starts
12483 from the position which (PV + *offset) pointed to.  The dsv will be
12484 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
12485 when the string tstr appears in decoding output or the input ends on
12486 the PV of the ssv. The value which the offset points will be modified
12487 to the last input position on the ssv.
12488
12489 Returns TRUE if the terminator was found, else returns FALSE.
12490
12491 =cut */
12492
12493 bool
12494 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
12495                    SV *ssv, int *offset, char *tstr, int tlen)
12496 {
12497     dVAR;
12498     bool ret = FALSE;
12499
12500     PERL_ARGS_ASSERT_SV_CAT_DECODE;
12501
12502     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
12503         SV *offsv;
12504         dSP;
12505         ENTER;
12506         SAVETMPS;
12507         save_re_context();
12508         PUSHMARK(sp);
12509         EXTEND(SP, 6);
12510         XPUSHs(encoding);
12511         XPUSHs(dsv);
12512         XPUSHs(ssv);
12513         offsv = newSViv(*offset);
12514         mXPUSHs(offsv);
12515         mXPUSHp(tstr, tlen);
12516         PUTBACK;
12517         call_method("cat_decode", G_SCALAR);
12518         SPAGAIN;
12519         ret = SvTRUE(TOPs);
12520         *offset = SvIV(offsv);
12521         PUTBACK;
12522         FREETMPS;
12523         LEAVE;
12524     }
12525     else
12526         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
12527     return ret;
12528
12529 }
12530
12531 /* ---------------------------------------------------------------------
12532  *
12533  * support functions for report_uninit()
12534  */
12535
12536 /* the maxiumum size of array or hash where we will scan looking
12537  * for the undefined element that triggered the warning */
12538
12539 #define FUV_MAX_SEARCH_SIZE 1000
12540
12541 /* Look for an entry in the hash whose value has the same SV as val;
12542  * If so, return a mortal copy of the key. */
12543
12544 STATIC SV*
12545 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
12546 {
12547     dVAR;
12548     register HE **array;
12549     I32 i;
12550
12551     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
12552
12553     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
12554                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
12555         return NULL;
12556
12557     array = HvARRAY(hv);
12558
12559     for (i=HvMAX(hv); i>0; i--) {
12560         register HE *entry;
12561         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
12562             if (HeVAL(entry) != val)
12563                 continue;
12564             if (    HeVAL(entry) == &PL_sv_undef ||
12565                     HeVAL(entry) == &PL_sv_placeholder)
12566                 continue;
12567             if (!HeKEY(entry))
12568                 return NULL;
12569             if (HeKLEN(entry) == HEf_SVKEY)
12570                 return sv_mortalcopy(HeKEY_sv(entry));
12571             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
12572         }
12573     }
12574     return NULL;
12575 }
12576
12577 /* Look for an entry in the array whose value has the same SV as val;
12578  * If so, return the index, otherwise return -1. */
12579
12580 STATIC I32
12581 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
12582 {
12583     dVAR;
12584
12585     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
12586
12587     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
12588                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
12589         return -1;
12590
12591     if (val != &PL_sv_undef) {
12592         SV ** const svp = AvARRAY(av);
12593         I32 i;
12594
12595         for (i=AvFILLp(av); i>=0; i--)
12596             if (svp[i] == val)
12597                 return i;
12598     }
12599     return -1;
12600 }
12601
12602 /* S_varname(): return the name of a variable, optionally with a subscript.
12603  * If gv is non-zero, use the name of that global, along with gvtype (one
12604  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
12605  * targ.  Depending on the value of the subscript_type flag, return:
12606  */
12607
12608 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
12609 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
12610 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
12611 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
12612
12613 STATIC SV*
12614 S_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
12615         const SV *const keyname, I32 aindex, int subscript_type)
12616 {
12617
12618     SV * const name = sv_newmortal();
12619     if (gv) {
12620         char buffer[2];
12621         buffer[0] = gvtype;
12622         buffer[1] = 0;
12623
12624         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
12625
12626         gv_fullname4(name, gv, buffer, 0);
12627
12628         if ((unsigned int)SvPVX(name)[1] <= 26) {
12629             buffer[0] = '^';
12630             buffer[1] = SvPVX(name)[1] + 'A' - 1;
12631
12632             /* Swap the 1 unprintable control character for the 2 byte pretty
12633                version - ie substr($name, 1, 1) = $buffer; */
12634             sv_insert(name, 1, 1, buffer, 2);
12635         }
12636     }
12637     else {
12638         CV * const cv = find_runcv(NULL);
12639         SV *sv;
12640         AV *av;
12641
12642         if (!cv || !CvPADLIST(cv))
12643             return NULL;
12644         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
12645         sv = *av_fetch(av, targ, FALSE);
12646         sv_setpvn(name, SvPV_nolen_const(sv), SvCUR(sv));
12647     }
12648
12649     if (subscript_type == FUV_SUBSCRIPT_HASH) {
12650         SV * const sv = newSV(0);
12651         *SvPVX(name) = '$';
12652         Perl_sv_catpvf(aTHX_ name, "{%s}",
12653             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
12654         SvREFCNT_dec(sv);
12655     }
12656     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
12657         *SvPVX(name) = '$';
12658         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
12659     }
12660     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
12661         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
12662         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
12663     }
12664
12665     return name;
12666 }
12667
12668
12669 /*
12670 =for apidoc find_uninit_var
12671
12672 Find the name of the undefined variable (if any) that caused the operator o
12673 to issue a "Use of uninitialized value" warning.
12674 If match is true, only return a name if it's value matches uninit_sv.
12675 So roughly speaking, if a unary operator (such as OP_COS) generates a
12676 warning, then following the direct child of the op may yield an
12677 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
12678 other hand, with OP_ADD there are two branches to follow, so we only print
12679 the variable name if we get an exact match.
12680
12681 The name is returned as a mortal SV.
12682
12683 Assumes that PL_op is the op that originally triggered the error, and that
12684 PL_comppad/PL_curpad points to the currently executing pad.
12685
12686 =cut
12687 */
12688
12689 STATIC SV *
12690 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
12691                   bool match)
12692 {
12693     dVAR;
12694     SV *sv;
12695     const GV *gv;
12696     const OP *o, *o2, *kid;
12697
12698     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
12699                             uninit_sv == &PL_sv_placeholder)))
12700         return NULL;
12701
12702     switch (obase->op_type) {
12703
12704     case OP_RV2AV:
12705     case OP_RV2HV:
12706     case OP_PADAV:
12707     case OP_PADHV:
12708       {
12709         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
12710         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
12711         I32 index = 0;
12712         SV *keysv = NULL;
12713         int subscript_type = FUV_SUBSCRIPT_WITHIN;
12714
12715         if (pad) { /* @lex, %lex */
12716             sv = PAD_SVl(obase->op_targ);
12717             gv = NULL;
12718         }
12719         else {
12720             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
12721             /* @global, %global */
12722                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
12723                 if (!gv)
12724                     break;
12725                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
12726             }
12727             else /* @{expr}, %{expr} */
12728                 return find_uninit_var(cUNOPx(obase)->op_first,
12729                                                     uninit_sv, match);
12730         }
12731
12732         /* attempt to find a match within the aggregate */
12733         if (hash) {
12734             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
12735             if (keysv)
12736                 subscript_type = FUV_SUBSCRIPT_HASH;
12737         }
12738         else {
12739             index = find_array_subscript((const AV *)sv, uninit_sv);
12740             if (index >= 0)
12741                 subscript_type = FUV_SUBSCRIPT_ARRAY;
12742         }
12743
12744         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
12745             break;
12746
12747         return varname(gv, hash ? '%' : '@', obase->op_targ,
12748                                     keysv, index, subscript_type);
12749       }
12750
12751     case OP_PADSV:
12752         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
12753             break;
12754         return varname(NULL, '$', obase->op_targ,
12755                                     NULL, 0, FUV_SUBSCRIPT_NONE);
12756
12757     case OP_GVSV:
12758         gv = cGVOPx_gv(obase);
12759         if (!gv || (match && GvSV(gv) != uninit_sv))
12760             break;
12761         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
12762
12763     case OP_AELEMFAST:
12764         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
12765             if (match) {
12766                 SV **svp;
12767                 AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
12768                 if (!av || SvRMAGICAL(av))
12769                     break;
12770                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
12771                 if (!svp || *svp != uninit_sv)
12772                     break;
12773             }
12774             return varname(NULL, '$', obase->op_targ,
12775                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
12776         }
12777         else {
12778             gv = cGVOPx_gv(obase);
12779             if (!gv)
12780                 break;
12781             if (match) {
12782                 SV **svp;
12783                 AV *const av = GvAV(gv);
12784                 if (!av || SvRMAGICAL(av))
12785                     break;
12786                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
12787                 if (!svp || *svp != uninit_sv)
12788                     break;
12789             }
12790             return varname(gv, '$', 0,
12791                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
12792         }
12793         break;
12794
12795     case OP_EXISTS:
12796         o = cUNOPx(obase)->op_first;
12797         if (!o || o->op_type != OP_NULL ||
12798                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
12799             break;
12800         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
12801
12802     case OP_AELEM:
12803     case OP_HELEM:
12804         if (PL_op == obase)
12805             /* $a[uninit_expr] or $h{uninit_expr} */
12806             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
12807
12808         gv = NULL;
12809         o = cBINOPx(obase)->op_first;
12810         kid = cBINOPx(obase)->op_last;
12811
12812         /* get the av or hv, and optionally the gv */
12813         sv = NULL;
12814         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
12815             sv = PAD_SV(o->op_targ);
12816         }
12817         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
12818                 && cUNOPo->op_first->op_type == OP_GV)
12819         {
12820             gv = cGVOPx_gv(cUNOPo->op_first);
12821             if (!gv)
12822                 break;
12823             sv = o->op_type
12824                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
12825         }
12826         if (!sv)
12827             break;
12828
12829         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
12830             /* index is constant */
12831             if (match) {
12832                 if (SvMAGICAL(sv))
12833                     break;
12834                 if (obase->op_type == OP_HELEM) {
12835                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), cSVOPx_sv(kid), 0, 0);
12836                     if (!he || HeVAL(he) != uninit_sv)
12837                         break;
12838                 }
12839                 else {
12840                     SV * const * const svp = av_fetch(MUTABLE_AV(sv), SvIV(cSVOPx_sv(kid)), FALSE);
12841                     if (!svp || *svp != uninit_sv)
12842                         break;
12843                 }
12844             }
12845             if (obase->op_type == OP_HELEM)
12846                 return varname(gv, '%', o->op_targ,
12847                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
12848             else
12849                 return varname(gv, '@', o->op_targ, NULL,
12850                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
12851         }
12852         else  {
12853             /* index is an expression;
12854              * attempt to find a match within the aggregate */
12855             if (obase->op_type == OP_HELEM) {
12856                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
12857                 if (keysv)
12858                     return varname(gv, '%', o->op_targ,
12859                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
12860             }
12861             else {
12862                 const I32 index
12863                     = find_array_subscript((const AV *)sv, uninit_sv);
12864                 if (index >= 0)
12865                     return varname(gv, '@', o->op_targ,
12866                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
12867             }
12868             if (match)
12869                 break;
12870             return varname(gv,
12871                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
12872                 ? '@' : '%',
12873                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
12874         }
12875         break;
12876
12877     case OP_AASSIGN:
12878         /* only examine RHS */
12879         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
12880
12881     case OP_OPEN:
12882         o = cUNOPx(obase)->op_first;
12883         if (o->op_type == OP_PUSHMARK)
12884             o = o->op_sibling;
12885
12886         if (!o->op_sibling) {
12887             /* one-arg version of open is highly magical */
12888
12889             if (o->op_type == OP_GV) { /* open FOO; */
12890                 gv = cGVOPx_gv(o);
12891                 if (match && GvSV(gv) != uninit_sv)
12892                     break;
12893                 return varname(gv, '$', 0,
12894                             NULL, 0, FUV_SUBSCRIPT_NONE);
12895             }
12896             /* other possibilities not handled are:
12897              * open $x; or open my $x;  should return '${*$x}'
12898              * open expr;               should return '$'.expr ideally
12899              */
12900              break;
12901         }
12902         goto do_op;
12903
12904     /* ops where $_ may be an implicit arg */
12905     case OP_TRANS:
12906     case OP_SUBST:
12907     case OP_MATCH:
12908         if ( !(obase->op_flags & OPf_STACKED)) {
12909             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
12910                                  ? PAD_SVl(obase->op_targ)
12911                                  : DEFSV))
12912             {
12913                 sv = sv_newmortal();
12914                 sv_setpvs(sv, "$_");
12915                 return sv;
12916             }
12917         }
12918         goto do_op;
12919
12920     case OP_PRTF:
12921     case OP_PRINT:
12922     case OP_SAY:
12923         match = 1; /* print etc can return undef on defined args */
12924         /* skip filehandle as it can't produce 'undef' warning  */
12925         o = cUNOPx(obase)->op_first;
12926         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
12927             o = o->op_sibling->op_sibling;
12928         goto do_op2;
12929
12930
12931     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
12932     case OP_RV2SV:
12933     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
12934
12935         /* the following ops are capable of returning PL_sv_undef even for
12936          * defined arg(s) */
12937
12938     case OP_BACKTICK:
12939     case OP_PIPE_OP:
12940     case OP_FILENO:
12941     case OP_BINMODE:
12942     case OP_TIED:
12943     case OP_GETC:
12944     case OP_SYSREAD:
12945     case OP_SEND:
12946     case OP_IOCTL:
12947     case OP_SOCKET:
12948     case OP_SOCKPAIR:
12949     case OP_BIND:
12950     case OP_CONNECT:
12951     case OP_LISTEN:
12952     case OP_ACCEPT:
12953     case OP_SHUTDOWN:
12954     case OP_SSOCKOPT:
12955     case OP_GETPEERNAME:
12956     case OP_FTRREAD:
12957     case OP_FTRWRITE:
12958     case OP_FTREXEC:
12959     case OP_FTROWNED:
12960     case OP_FTEREAD:
12961     case OP_FTEWRITE:
12962     case OP_FTEEXEC:
12963     case OP_FTEOWNED:
12964     case OP_FTIS:
12965     case OP_FTZERO:
12966     case OP_FTSIZE:
12967     case OP_FTFILE:
12968     case OP_FTDIR:
12969     case OP_FTLINK:
12970     case OP_FTPIPE:
12971     case OP_FTSOCK:
12972     case OP_FTBLK:
12973     case OP_FTCHR:
12974     case OP_FTTTY:
12975     case OP_FTSUID:
12976     case OP_FTSGID:
12977     case OP_FTSVTX:
12978     case OP_FTTEXT:
12979     case OP_FTBINARY:
12980     case OP_FTMTIME:
12981     case OP_FTATIME:
12982     case OP_FTCTIME:
12983     case OP_READLINK:
12984     case OP_OPEN_DIR:
12985     case OP_READDIR:
12986     case OP_TELLDIR:
12987     case OP_SEEKDIR:
12988     case OP_REWINDDIR:
12989     case OP_CLOSEDIR:
12990     case OP_GMTIME:
12991     case OP_ALARM:
12992     case OP_SEMGET:
12993     case OP_GETLOGIN:
12994     case OP_UNDEF:
12995     case OP_SUBSTR:
12996     case OP_AEACH:
12997     case OP_EACH:
12998     case OP_SORT:
12999     case OP_CALLER:
13000     case OP_DOFILE:
13001     case OP_PROTOTYPE:
13002     case OP_NCMP:
13003     case OP_SMARTMATCH:
13004     case OP_UNPACK:
13005     case OP_SYSOPEN:
13006     case OP_SYSSEEK:
13007         match = 1;
13008         goto do_op;
13009
13010     case OP_ENTERSUB:
13011     case OP_GOTO:
13012         /* XXX tmp hack: these two may call an XS sub, and currently
13013           XS subs don't have a SUB entry on the context stack, so CV and
13014           pad determination goes wrong, and BAD things happen. So, just
13015           don't try to determine the value under those circumstances.
13016           Need a better fix at dome point. DAPM 11/2007 */
13017         break;
13018
13019
13020     case OP_POS:
13021         /* def-ness of rval pos() is independent of the def-ness of its arg */
13022         if ( !(obase->op_flags & OPf_MOD))
13023             break;
13024
13025     case OP_SCHOMP:
13026     case OP_CHOMP:
13027         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
13028             return newSVpvs_flags("${$/}", SVs_TEMP);
13029         /*FALLTHROUGH*/
13030
13031     default:
13032     do_op:
13033         if (!(obase->op_flags & OPf_KIDS))
13034             break;
13035         o = cUNOPx(obase)->op_first;
13036         
13037     do_op2:
13038         if (!o)
13039             break;
13040
13041         /* if all except one arg are constant, or have no side-effects,
13042          * or are optimized away, then it's unambiguous */
13043         o2 = NULL;
13044         for (kid=o; kid; kid = kid->op_sibling) {
13045             if (kid) {
13046                 const OPCODE type = kid->op_type;
13047                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
13048                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
13049                   || (type == OP_PUSHMARK)
13050                 )
13051                 continue;
13052             }
13053             if (o2) { /* more than one found */
13054                 o2 = NULL;
13055                 break;
13056             }
13057             o2 = kid;
13058         }
13059         if (o2)
13060             return find_uninit_var(o2, uninit_sv, match);
13061
13062         /* scan all args */
13063         while (o) {
13064             sv = find_uninit_var(o, uninit_sv, 1);
13065             if (sv)
13066                 return sv;
13067             o = o->op_sibling;
13068         }
13069         break;
13070     }
13071     return NULL;
13072 }
13073
13074
13075 /*
13076 =for apidoc report_uninit
13077
13078 Print appropriate "Use of uninitialized variable" warning
13079
13080 =cut
13081 */
13082
13083 void
13084 Perl_report_uninit(pTHX_ const SV *uninit_sv)
13085 {
13086     dVAR;
13087     if (PL_op) {
13088         SV* varname = NULL;
13089         if (uninit_sv) {
13090             varname = find_uninit_var(PL_op, uninit_sv,0);
13091             if (varname)
13092                 sv_insert(varname, 0, 0, " ", 1);
13093         }
13094         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13095                 varname ? SvPV_nolen_const(varname) : "",
13096                 " in ", OP_DESC(PL_op));
13097     }
13098     else
13099         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13100                     "", "", "");
13101 }
13102
13103 /*
13104  * Local variables:
13105  * c-indentation-style: bsd
13106  * c-basic-offset: 4
13107  * indent-tabs-mode: t
13108  * End:
13109  *
13110  * ex: set ts=8 sts=4 sw=4 noet:
13111  */