PL_regex_padav elements hold either more AVs, or IVs that point to
[p5sagit/p5-mst-13.2.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  * "I wonder what the Entish is for 'yes' and 'no'," he thought.
10  *
11  *
12  * This file contains the code that creates, manipulates and destroys
13  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
14  * structure of an SV, so their creation and destruction is handled
15  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
16  * level functions (eg. substr, split, join) for each of the types are
17  * in the pp*.c files.
18  */
19
20 #include "EXTERN.h"
21 #define PERL_IN_SV_C
22 #include "perl.h"
23 #include "regcomp.h"
24
25 #define FCALL *f
26
27 #ifdef __Lynx__
28 /* Missing proto on LynxOS */
29   char *gconvert(double, int, int,  char *);
30 #endif
31
32 #ifdef PERL_UTF8_CACHE_ASSERT
33 /* The cache element 0 is the Unicode offset;
34  * the cache element 1 is the byte offset of the element 0;
35  * the cache element 2 is the Unicode length of the substring;
36  * the cache element 3 is the byte length of the substring;
37  * The checking of the substring side would be good
38  * but substr() has enough code paths to make my head spin;
39  * if adding more checks watch out for the following tests:
40  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
41  *   lib/utf8.t lib/Unicode/Collate/t/index.t
42  * --jhi
43  */
44 #define ASSERT_UTF8_CACHE(cache) \
45         STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); } } STMT_END
46 #else
47 #define ASSERT_UTF8_CACHE(cache) NOOP
48 #endif
49
50 #ifdef PERL_COPY_ON_WRITE
51 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
52 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
53 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
54    on-write.  */
55 #endif
56
57 /* ============================================================================
58
59 =head1 Allocation and deallocation of SVs.
60
61 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct sv,
62 av, hv...) contains type and reference count information, as well as a
63 pointer to the body (struct xrv, xpv, xpviv...), which contains fields
64 specific to each type.
65
66 Normally, this allocation is done using arenas, which by default are
67 approximately 4K chunks of memory parcelled up into N heads or bodies.  The
68 first slot in each arena is reserved, and is used to hold a link to the next
69 arena.  In the case of heads, the unused first slot also contains some flags
70 and a note of the number of slots.  Snaked through each arena chain is a
71 linked list of free items; when this becomes empty, an extra arena is
72 allocated and divided up into N items which are threaded into the free list.
73
74 The following global variables are associated with arenas:
75
76     PL_sv_arenaroot     pointer to list of SV arenas
77     PL_sv_root          pointer to list of free SV structures
78
79     PL_foo_arenaroot    pointer to list of foo arenas,
80     PL_foo_root         pointer to list of free foo bodies
81                             ... for foo in xiv, xnv, xrv, xpv etc.
82
83 Note that some of the larger and more rarely used body types (eg xpvio)
84 are not allocated using arenas, but are instead just malloc()/free()ed as
85 required. Also, if PURIFY is defined, arenas are abandoned altogether,
86 with all items individually malloc()ed. In addition, a few SV heads are
87 not allocated from an arena, but are instead directly created as static
88 or auto variables, eg PL_sv_undef.  The size of arenas can be changed from
89 the default by setting PERL_ARENA_SIZE appropriately at compile time.
90
91 The SV arena serves the secondary purpose of allowing still-live SVs
92 to be located and destroyed during final cleanup.
93
94 At the lowest level, the macros new_SV() and del_SV() grab and free
95 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
96 to return the SV to the free list with error checking.) new_SV() calls
97 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
98 SVs in the free list have their SvTYPE field set to all ones.
99
100 Similarly, there are macros new_XIV()/del_XIV(), new_XNV()/del_XNV() etc
101 that allocate and return individual body types. Normally these are mapped
102 to the arena-manipulating functions new_xiv()/del_xiv() etc, but may be
103 instead mapped directly to malloc()/free() if PURIFY is defined. The
104 new/del functions remove from, or add to, the appropriate PL_foo_root
105 list, and call more_xiv() etc to add a new arena if the list is empty.
106
107 At the time of very final cleanup, sv_free_arenas() is called from
108 perl_destruct() to physically free all the arenas allocated since the
109 start of the interpreter.  Note that this also clears PL_he_arenaroot,
110 which is otherwise dealt with in hv.c.
111
112 Manipulation of any of the PL_*root pointers is protected by enclosing
113 LOCK_SV_MUTEX; ... UNLOCK_SV_MUTEX calls which should Do the Right Thing
114 if threads are enabled.
115
116 The function visit() scans the SV arenas list, and calls a specified
117 function for each SV it finds which is still live - ie which has an SvTYPE
118 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
119 following functions (specified as [function that calls visit()] / [function
120 called by visit() for each SV]):
121
122     sv_report_used() / do_report_used()
123                         dump all remaining SVs (debugging aid)
124
125     sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
126                         Attempt to free all objects pointed to by RVs,
127                         and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
128                         try to do the same for all objects indirectly
129                         referenced by typeglobs too.  Called once from
130                         perl_destruct(), prior to calling sv_clean_all()
131                         below.
132
133     sv_clean_all() / do_clean_all()
134                         SvREFCNT_dec(sv) each remaining SV, possibly
135                         triggering an sv_free(). It also sets the
136                         SVf_BREAK flag on the SV to indicate that the
137                         refcnt has been artificially lowered, and thus
138                         stopping sv_free() from giving spurious warnings
139                         about SVs which unexpectedly have a refcnt
140                         of zero.  called repeatedly from perl_destruct()
141                         until there are no SVs left.
142
143 =head2 Summary
144
145 Private API to rest of sv.c
146
147     new_SV(),  del_SV(),
148
149     new_XIV(), del_XIV(),
150     new_XNV(), del_XNV(),
151     etc
152
153 Public API:
154
155     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
156
157
158 =cut
159
160 ============================================================================ */
161
162
163
164 /*
165  * "A time to plant, and a time to uproot what was planted..."
166  */
167
168
169 #ifdef DEBUG_LEAKING_SCALARS
170 #  ifdef NETWARE
171 #    define FREE_SV_DEBUG_FILE(sv) PerlMemfree((sv)->sv_debug_file)
172 #  else
173 #    define FREE_SV_DEBUG_FILE(sv) PerlMemShared_free((sv)->sv_debug_file)
174 #  endif
175 #else
176 #  define FREE_SV_DEBUG_FILE(sv)
177 #endif
178
179 #define plant_SV(p) \
180     STMT_START {                                        \
181         FREE_SV_DEBUG_FILE(p);                          \
182         SvANY(p) = (void *)PL_sv_root;                  \
183         SvFLAGS(p) = SVTYPEMASK;                        \
184         PL_sv_root = (p);                               \
185         --PL_sv_count;                                  \
186     } STMT_END
187
188 /* sv_mutex must be held while calling uproot_SV() */
189 #define uproot_SV(p) \
190     STMT_START {                                        \
191         (p) = PL_sv_root;                               \
192         PL_sv_root = (SV*)SvANY(p);                     \
193         ++PL_sv_count;                                  \
194     } STMT_END
195
196
197 /* make some more SVs by adding another arena */
198
199 /* sv_mutex must be held while calling more_sv() */
200 STATIC SV*
201 S_more_sv(pTHX)
202 {
203     SV* sv;
204
205     if (PL_nice_chunk) {
206         sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
207         PL_nice_chunk = Nullch;
208         PL_nice_chunk_size = 0;
209     }
210     else {
211         char *chunk;                /* must use New here to match call to */
212         New(704,chunk,PERL_ARENA_SIZE,char);   /* Safefree() in sv_free_arenas()     */
213         sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
214     }
215     uproot_SV(sv);
216     return sv;
217 }
218
219 /* new_SV(): return a new, empty SV head */
220
221 #ifdef DEBUG_LEAKING_SCALARS
222 /* provide a real function for a debugger to play with */
223 STATIC SV*
224 S_new_SV(pTHX)
225 {
226     SV* sv;
227
228     LOCK_SV_MUTEX;
229     if (PL_sv_root)
230         uproot_SV(sv);
231     else
232         sv = S_more_sv(aTHX);
233     UNLOCK_SV_MUTEX;
234     SvANY(sv) = 0;
235     SvREFCNT(sv) = 1;
236     SvFLAGS(sv) = 0;
237     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
238     sv->sv_debug_line = (U16) ((PL_copline == NOLINE) ?
239         (PL_curcop ? CopLINE(PL_curcop) : 0) : PL_copline);
240     sv->sv_debug_inpad = 0;
241     sv->sv_debug_cloned = 0;
242 #  ifdef NETWARE
243     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
244 #  else
245     sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
246 #  endif
247     
248     return sv;
249 }
250 #  define new_SV(p) (p)=S_new_SV(aTHX)
251
252 #else
253 #  define new_SV(p) \
254     STMT_START {                                        \
255         LOCK_SV_MUTEX;                                  \
256         if (PL_sv_root)                                 \
257             uproot_SV(p);                               \
258         else                                            \
259             (p) = S_more_sv(aTHX);                      \
260         UNLOCK_SV_MUTEX;                                \
261         SvANY(p) = 0;                                   \
262         SvREFCNT(p) = 1;                                \
263         SvFLAGS(p) = 0;                                 \
264     } STMT_END
265 #endif
266
267
268 /* del_SV(): return an empty SV head to the free list */
269
270 #ifdef DEBUGGING
271
272 #define del_SV(p) \
273     STMT_START {                                        \
274         LOCK_SV_MUTEX;                                  \
275         if (DEBUG_D_TEST)                               \
276             del_sv(p);                                  \
277         else                                            \
278             plant_SV(p);                                \
279         UNLOCK_SV_MUTEX;                                \
280     } STMT_END
281
282 STATIC void
283 S_del_sv(pTHX_ SV *p)
284 {
285     if (DEBUG_D_TEST) {
286         SV* sva;
287         bool ok = 0;
288         for (sva = PL_sv_arenaroot; sva; sva = (SV *) SvANY(sva)) {
289             SV *sv = sva + 1;
290             SV *svend = &sva[SvREFCNT(sva)];
291             if (p >= sv && p < svend) {
292                 ok = 1;
293                 break;
294             }
295         }
296         if (!ok) {
297             if (ckWARN_d(WARN_INTERNAL))        
298                 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
299                             "Attempt to free non-arena SV: 0x%"UVxf
300                             pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
301             return;
302         }
303     }
304     plant_SV(p);
305 }
306
307 #else /* ! DEBUGGING */
308
309 #define del_SV(p)   plant_SV(p)
310
311 #endif /* DEBUGGING */
312
313
314 /*
315 =head1 SV Manipulation Functions
316
317 =for apidoc sv_add_arena
318
319 Given a chunk of memory, link it to the head of the list of arenas,
320 and split it into a list of free SVs.
321
322 =cut
323 */
324
325 void
326 Perl_sv_add_arena(pTHX_ char *ptr, U32 size, U32 flags)
327 {
328     SV* sva = (SV*)ptr;
329     register SV* sv;
330     register SV* svend;
331
332     /* The first SV in an arena isn't an SV. */
333     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
334     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
335     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
336
337     PL_sv_arenaroot = sva;
338     PL_sv_root = sva + 1;
339
340     svend = &sva[SvREFCNT(sva) - 1];
341     sv = sva + 1;
342     while (sv < svend) {
343         SvANY(sv) = (void *)(SV*)(sv + 1);
344 #ifdef DEBUGGING
345         SvREFCNT(sv) = 0;
346 #endif
347         /* Must always set typemask because it's awlays checked in on cleanup
348            when the arenas are walked looking for objects.  */
349         SvFLAGS(sv) = SVTYPEMASK;
350         sv++;
351     }
352     SvANY(sv) = 0;
353 #ifdef DEBUGGING
354     SvREFCNT(sv) = 0;
355 #endif
356     SvFLAGS(sv) = SVTYPEMASK;
357 }
358
359 /* visit(): call the named function for each non-free SV in the arenas
360  * whose flags field matches the flags/mask args. */
361
362 STATIC I32
363 S_visit(pTHX_ SVFUNC_t f, U32 flags, U32 mask)
364 {
365     SV* sva;
366     I32 visited = 0;
367
368     for (sva = PL_sv_arenaroot; sva; sva = (SV*)SvANY(sva)) {
369         register SV * const svend = &sva[SvREFCNT(sva)];
370         register SV* sv;
371         for (sv = sva + 1; sv < svend; ++sv) {
372             if (SvTYPE(sv) != SVTYPEMASK
373                     && (sv->sv_flags & mask) == flags
374                     && SvREFCNT(sv))
375             {
376                 (FCALL)(aTHX_ sv);
377                 ++visited;
378             }
379         }
380     }
381     return visited;
382 }
383
384 #ifdef DEBUGGING
385
386 /* called by sv_report_used() for each live SV */
387
388 static void
389 do_report_used(pTHX_ SV *sv)
390 {
391     if (SvTYPE(sv) != SVTYPEMASK) {
392         PerlIO_printf(Perl_debug_log, "****\n");
393         sv_dump(sv);
394     }
395 }
396 #endif
397
398 /*
399 =for apidoc sv_report_used
400
401 Dump the contents of all SVs not yet freed. (Debugging aid).
402
403 =cut
404 */
405
406 void
407 Perl_sv_report_used(pTHX)
408 {
409 #ifdef DEBUGGING
410     visit(do_report_used, 0, 0);
411 #endif
412 }
413
414 /* called by sv_clean_objs() for each live SV */
415
416 static void
417 do_clean_objs(pTHX_ SV *sv)
418 {
419     SV* rv;
420
421     if (SvROK(sv) && SvOBJECT(rv = SvRV(sv))) {
422         DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(sv)));
423         if (SvWEAKREF(sv)) {
424             sv_del_backref(sv);
425             SvWEAKREF_off(sv);
426             SvRV_set(sv, NULL);
427         } else {
428             SvROK_off(sv);
429             SvRV_set(sv, NULL);
430             SvREFCNT_dec(rv);
431         }
432     }
433
434     /* XXX Might want to check arrays, etc. */
435 }
436
437 /* called by sv_clean_objs() for each live SV */
438
439 #ifndef DISABLE_DESTRUCTOR_KLUDGE
440 static void
441 do_clean_named_objs(pTHX_ SV *sv)
442 {
443     if (SvTYPE(sv) == SVt_PVGV && GvGP(sv)) {
444         if ( SvOBJECT(GvSV(sv)) ||
445              (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
446              (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
447              (GvIO(sv) && SvOBJECT(GvIO(sv))) ||
448              (GvCV(sv) && SvOBJECT(GvCV(sv))) )
449         {
450             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
451             SvFLAGS(sv) |= SVf_BREAK;
452             SvREFCNT_dec(sv);
453         }
454     }
455 }
456 #endif
457
458 /*
459 =for apidoc sv_clean_objs
460
461 Attempt to destroy all objects not yet freed
462
463 =cut
464 */
465
466 void
467 Perl_sv_clean_objs(pTHX)
468 {
469     PL_in_clean_objs = TRUE;
470     visit(do_clean_objs, SVf_ROK, SVf_ROK);
471 #ifndef DISABLE_DESTRUCTOR_KLUDGE
472     /* some barnacles may yet remain, clinging to typeglobs */
473     visit(do_clean_named_objs, SVt_PVGV, SVTYPEMASK);
474 #endif
475     PL_in_clean_objs = FALSE;
476 }
477
478 /* called by sv_clean_all() for each live SV */
479
480 static void
481 do_clean_all(pTHX_ SV *sv)
482 {
483     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
484     SvFLAGS(sv) |= SVf_BREAK;
485     if (PL_comppad == (AV*)sv) {
486         PL_comppad = Nullav;
487         PL_curpad = Null(SV**);
488     }
489     SvREFCNT_dec(sv);
490 }
491
492 /*
493 =for apidoc sv_clean_all
494
495 Decrement the refcnt of each remaining SV, possibly triggering a
496 cleanup. This function may have to be called multiple times to free
497 SVs which are in complex self-referential hierarchies.
498
499 =cut
500 */
501
502 I32
503 Perl_sv_clean_all(pTHX)
504 {
505     I32 cleaned;
506     PL_in_clean_all = TRUE;
507     cleaned = visit(do_clean_all, 0,0);
508     PL_in_clean_all = FALSE;
509     return cleaned;
510 }
511
512 /*
513 =for apidoc sv_free_arenas
514
515 Deallocate the memory used by all arenas. Note that all the individual SV
516 heads and bodies within the arenas must already have been freed.
517
518 =cut
519 */
520
521 void
522 Perl_sv_free_arenas(pTHX)
523 {
524     SV* sva;
525     SV* svanext;
526     void *arena, *arenanext;
527
528     /* Free arenas here, but be careful about fake ones.  (We assume
529        contiguity of the fake ones with the corresponding real ones.) */
530
531     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
532         svanext = (SV*) SvANY(sva);
533         while (svanext && SvFAKE(svanext))
534             svanext = (SV*) SvANY(svanext);
535
536         if (!SvFAKE(sva))
537             Safefree((void *)sva);
538     }
539
540     for (arena = PL_xnv_arenaroot; arena; arena = arenanext) {
541         arenanext = *(void **)arena;
542         Safefree(arena);
543     }
544     PL_xnv_arenaroot = 0;
545     PL_xnv_root = 0;
546
547     for (arena = PL_xpv_arenaroot; arena; arena = arenanext) {
548         arenanext = *(void **)arena;
549         Safefree(arena);
550     }
551     PL_xpv_arenaroot = 0;
552     PL_xpv_root = 0;
553
554     for (arena = PL_xpviv_arenaroot; arena; arena = arenanext) {
555         arenanext = *(void **)arena;
556         Safefree(arena);
557     }
558     PL_xpviv_arenaroot = 0;
559     PL_xpviv_root = 0;
560
561     for (arena = PL_xpvnv_arenaroot; arena; arena = arenanext) {
562         arenanext = *(void **)arena;
563         Safefree(arena);
564     }
565     PL_xpvnv_arenaroot = 0;
566     PL_xpvnv_root = 0;
567
568     for (arena = PL_xpvcv_arenaroot; arena; arena = arenanext) {
569         arenanext = *(void **)arena;
570         Safefree(arena);
571     }
572     PL_xpvcv_arenaroot = 0;
573     PL_xpvcv_root = 0;
574
575     for (arena = PL_xpvav_arenaroot; arena; arena = arenanext) {
576         arenanext = *(void **)arena;
577         Safefree(arena);
578     }
579     PL_xpvav_arenaroot = 0;
580     PL_xpvav_root = 0;
581
582     for (arena = PL_xpvhv_arenaroot; arena; arena = arenanext) {
583         arenanext = *(void **)arena;
584         Safefree(arena);
585     }
586     PL_xpvhv_arenaroot = 0;
587     PL_xpvhv_root = 0;
588
589     for (arena = PL_xpvmg_arenaroot; arena; arena = arenanext) {
590         arenanext = *(void **)arena;
591         Safefree(arena);
592     }
593     PL_xpvmg_arenaroot = 0;
594     PL_xpvmg_root = 0;
595
596     for (arena = PL_xpvgv_arenaroot; arena; arena = arenanext) {
597         arenanext = *(void **)arena;
598         Safefree(arena);
599     }
600     PL_xpvgv_arenaroot = 0;
601     PL_xpvgv_root = 0;
602
603     for (arena = PL_xpvlv_arenaroot; arena; arena = arenanext) {
604         arenanext = *(void **)arena;
605         Safefree(arena);
606     }
607     PL_xpvlv_arenaroot = 0;
608     PL_xpvlv_root = 0;
609
610     for (arena = PL_xpvbm_arenaroot; arena; arena = arenanext) {
611         arenanext = *(void **)arena;
612         Safefree(arena);
613     }
614     PL_xpvbm_arenaroot = 0;
615     PL_xpvbm_root = 0;
616
617     {
618         HE *he;
619         HE *he_next;
620         for (he = PL_he_arenaroot; he; he = he_next) {
621             he_next = HeNEXT(he);
622             Safefree(he);
623         }
624     }
625     PL_he_arenaroot = 0;
626     PL_he_root = 0;
627
628 #if defined(USE_ITHREADS)
629     {
630         struct ptr_tbl_ent *pte;
631         struct ptr_tbl_ent *pte_next;
632         for (pte = PL_pte_arenaroot; pte; pte = pte_next) {
633             pte_next = pte->next;
634             Safefree(pte);
635         }
636     }
637     PL_pte_arenaroot = 0;
638     PL_pte_root = 0;
639 #endif
640
641     if (PL_nice_chunk)
642         Safefree(PL_nice_chunk);
643     PL_nice_chunk = Nullch;
644     PL_nice_chunk_size = 0;
645     PL_sv_arenaroot = 0;
646     PL_sv_root = 0;
647 }
648
649 /* ---------------------------------------------------------------------
650  *
651  * support functions for report_uninit()
652  */
653
654 /* the maxiumum size of array or hash where we will scan looking
655  * for the undefined element that triggered the warning */
656
657 #define FUV_MAX_SEARCH_SIZE 1000
658
659 /* Look for an entry in the hash whose value has the same SV as val;
660  * If so, return a mortal copy of the key. */
661
662 STATIC SV*
663 S_find_hash_subscript(pTHX_ HV *hv, SV* val)
664 {
665     dVAR;
666     register HE **array;
667     I32 i;
668
669     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
670                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
671         return Nullsv;
672
673     array = HvARRAY(hv);
674
675     for (i=HvMAX(hv); i>0; i--) {
676         register HE *entry;
677         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
678             if (HeVAL(entry) != val)
679                 continue;
680             if (    HeVAL(entry) == &PL_sv_undef ||
681                     HeVAL(entry) == &PL_sv_placeholder)
682                 continue;
683             if (!HeKEY(entry))
684                 return Nullsv;
685             if (HeKLEN(entry) == HEf_SVKEY)
686                 return sv_mortalcopy(HeKEY_sv(entry));
687             return sv_2mortal(newSVpvn(HeKEY(entry), HeKLEN(entry)));
688         }
689     }
690     return Nullsv;
691 }
692
693 /* Look for an entry in the array whose value has the same SV as val;
694  * If so, return the index, otherwise return -1. */
695
696 STATIC I32
697 S_find_array_subscript(pTHX_ AV *av, SV* val)
698 {
699     SV** svp;
700     I32 i;
701     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
702                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
703         return -1;
704
705     svp = AvARRAY(av);
706     for (i=AvFILLp(av); i>=0; i--) {
707         if (svp[i] == val && svp[i] != &PL_sv_undef)
708             return i;
709     }
710     return -1;
711 }
712
713 /* S_varname(): return the name of a variable, optionally with a subscript.
714  * If gv is non-zero, use the name of that global, along with gvtype (one
715  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
716  * targ.  Depending on the value of the subscript_type flag, return:
717  */
718
719 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
720 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
721 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
722 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
723
724 STATIC SV*
725 S_varname(pTHX_ GV *gv, const char *gvtype, PADOFFSET targ,
726         SV* keyname, I32 aindex, int subscript_type)
727 {
728     AV *av;
729     SV *sv;
730
731     SV * const name = sv_newmortal();
732     if (gv) {
733
734         /* simulate gv_fullname4(), but add literal '^' for $^FOO names
735          * XXX get rid of all this if gv_fullnameX() ever supports this
736          * directly */
737
738         const char *p;
739         HV *hv = GvSTASH(gv);
740         sv_setpv(name, gvtype);
741         if (!hv)
742             p = "???";
743         else if (!(p=HvNAME_get(hv)))
744             p = "__ANON__";
745         if (strNE(p, "main")) {
746             sv_catpv(name,p);
747             sv_catpvn(name,"::", 2);
748         }
749         if (GvNAMELEN(gv)>= 1 &&
750             ((unsigned int)*GvNAME(gv)) <= 26)
751         { /* handle $^FOO */
752             Perl_sv_catpvf(aTHX_ name,"^%c", *GvNAME(gv) + 'A' - 1);
753             sv_catpvn(name,GvNAME(gv)+1,GvNAMELEN(gv)-1);
754         }
755         else
756             sv_catpvn(name,GvNAME(gv),GvNAMELEN(gv));
757     }
758     else {
759         U32 u;
760         CV *cv = find_runcv(&u);
761         if (!cv || !CvPADLIST(cv))
762             return Nullsv;;
763         av = (AV*)(*av_fetch(CvPADLIST(cv), 0, FALSE));
764         sv = *av_fetch(av, targ, FALSE);
765         /* SvLEN in a pad name is not to be trusted */
766         sv_setpv(name, SvPV_nolen(sv));
767     }
768
769     if (subscript_type == FUV_SUBSCRIPT_HASH) {
770         *SvPVX(name) = '$';
771         sv = NEWSV(0,0);
772         Perl_sv_catpvf(aTHX_ name, "{%s}",
773             pv_display(sv,SvPVX(keyname), SvCUR(keyname), 0, 32));
774         SvREFCNT_dec(sv);
775     }
776     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
777         *SvPVX(name) = '$';
778         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
779     }
780     else if (subscript_type == FUV_SUBSCRIPT_WITHIN)
781         sv_insert(name, 0, 0,  "within ", 7);
782
783     return name;
784 }
785
786
787 /*
788 =for apidoc find_uninit_var
789
790 Find the name of the undefined variable (if any) that caused the operator o
791 to issue a "Use of uninitialized value" warning.
792 If match is true, only return a name if it's value matches uninit_sv.
793 So roughly speaking, if a unary operator (such as OP_COS) generates a
794 warning, then following the direct child of the op may yield an
795 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
796 other hand, with OP_ADD there are two branches to follow, so we only print
797 the variable name if we get an exact match.
798
799 The name is returned as a mortal SV.
800
801 Assumes that PL_op is the op that originally triggered the error, and that
802 PL_comppad/PL_curpad points to the currently executing pad.
803
804 =cut
805 */
806
807 STATIC SV *
808 S_find_uninit_var(pTHX_ OP* obase, SV* uninit_sv, bool match)
809 {
810     dVAR;
811     SV *sv;
812     AV *av;
813     SV **svp;
814     GV *gv;
815     OP *o, *o2, *kid;
816
817     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
818                             uninit_sv == &PL_sv_placeholder)))
819         return Nullsv;
820
821     switch (obase->op_type) {
822
823     case OP_RV2AV:
824     case OP_RV2HV:
825     case OP_PADAV:
826     case OP_PADHV:
827       {
828         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
829         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
830         I32 index = 0;
831         SV *keysv = Nullsv;
832         int subscript_type = FUV_SUBSCRIPT_WITHIN;
833
834         if (pad) { /* @lex, %lex */
835             sv = PAD_SVl(obase->op_targ);
836             gv = Nullgv;
837         }
838         else {
839             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
840             /* @global, %global */
841                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
842                 if (!gv)
843                     break;
844                 sv = hash ? (SV*)GvHV(gv): (SV*)GvAV(gv);
845             }
846             else /* @{expr}, %{expr} */
847                 return find_uninit_var(cUNOPx(obase)->op_first,
848                                                     uninit_sv, match);
849         }
850
851         /* attempt to find a match within the aggregate */
852         if (hash) {
853             keysv = S_find_hash_subscript(aTHX_ (HV*)sv, uninit_sv);
854             if (keysv)
855                 subscript_type = FUV_SUBSCRIPT_HASH;
856         }
857         else {
858             index = S_find_array_subscript(aTHX_ (AV*)sv, uninit_sv);
859             if (index >= 0)
860                 subscript_type = FUV_SUBSCRIPT_ARRAY;
861         }
862
863         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
864             break;
865
866         return S_varname(aTHX_ gv, hash ? "%" : "@", obase->op_targ,
867                                     keysv, index, subscript_type);
868       }
869
870     case OP_PADSV:
871         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
872             break;
873         return S_varname(aTHX_ Nullgv, "$", obase->op_targ,
874                                     Nullsv, 0, FUV_SUBSCRIPT_NONE);
875
876     case OP_GVSV:
877         gv = cGVOPx_gv(obase);
878         if (!gv || (match && GvSV(gv) != uninit_sv))
879             break;
880         return S_varname(aTHX_ gv, "$", 0, Nullsv, 0, FUV_SUBSCRIPT_NONE);
881
882     case OP_AELEMFAST:
883         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
884             if (match) {
885                 av = (AV*)PAD_SV(obase->op_targ);
886                 if (!av || SvRMAGICAL(av))
887                     break;
888                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
889                 if (!svp || *svp != uninit_sv)
890                     break;
891             }
892             return S_varname(aTHX_ Nullgv, "$", obase->op_targ,
893                     Nullsv, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
894         }
895         else {
896             gv = cGVOPx_gv(obase);
897             if (!gv)
898                 break;
899             if (match) {
900                 av = GvAV(gv);
901                 if (!av || SvRMAGICAL(av))
902                     break;
903                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
904                 if (!svp || *svp != uninit_sv)
905                     break;
906             }
907             return S_varname(aTHX_ gv, "$", 0,
908                     Nullsv, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
909         }
910         break;
911
912     case OP_EXISTS:
913         o = cUNOPx(obase)->op_first;
914         if (!o || o->op_type != OP_NULL ||
915                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
916             break;
917         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
918
919     case OP_AELEM:
920     case OP_HELEM:
921         if (PL_op == obase)
922             /* $a[uninit_expr] or $h{uninit_expr} */
923             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
924
925         gv = Nullgv;
926         o = cBINOPx(obase)->op_first;
927         kid = cBINOPx(obase)->op_last;
928
929         /* get the av or hv, and optionally the gv */
930         sv = Nullsv;
931         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
932             sv = PAD_SV(o->op_targ);
933         }
934         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
935                 && cUNOPo->op_first->op_type == OP_GV)
936         {
937             gv = cGVOPx_gv(cUNOPo->op_first);
938             if (!gv)
939                 break;
940             sv = o->op_type == OP_RV2HV ? (SV*)GvHV(gv) : (SV*)GvAV(gv);
941         }
942         if (!sv)
943             break;
944
945         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
946             /* index is constant */
947             if (match) {
948                 if (SvMAGICAL(sv))
949                     break;
950                 if (obase->op_type == OP_HELEM) {
951                     HE* he = hv_fetch_ent((HV*)sv, cSVOPx_sv(kid), 0, 0);
952                     if (!he || HeVAL(he) != uninit_sv)
953                         break;
954                 }
955                 else {
956                     svp = av_fetch((AV*)sv, SvIV(cSVOPx_sv(kid)), FALSE);
957                     if (!svp || *svp != uninit_sv)
958                         break;
959                 }
960             }
961             if (obase->op_type == OP_HELEM)
962                 return S_varname(aTHX_ gv, "%", o->op_targ,
963                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
964             else
965                 return S_varname(aTHX_ gv, "@", o->op_targ, Nullsv,
966                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
967             ;
968         }
969         else  {
970             /* index is an expression;
971              * attempt to find a match within the aggregate */
972             if (obase->op_type == OP_HELEM) {
973                 SV *keysv = S_find_hash_subscript(aTHX_ (HV*)sv, uninit_sv);
974                 if (keysv)
975                     return S_varname(aTHX_ gv, "%", o->op_targ,
976                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
977             }
978             else {
979                 const I32 index = S_find_array_subscript(aTHX_ (AV*)sv, uninit_sv);
980                 if (index >= 0)
981                     return S_varname(aTHX_ gv, "@", o->op_targ,
982                                         Nullsv, index, FUV_SUBSCRIPT_ARRAY);
983             }
984             if (match)
985                 break;
986             return S_varname(aTHX_ gv,
987                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
988                 ? "@" : "%",
989                 o->op_targ, Nullsv, 0, FUV_SUBSCRIPT_WITHIN);
990         }
991
992         break;
993
994     case OP_AASSIGN:
995         /* only examine RHS */
996         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
997
998     case OP_OPEN:
999         o = cUNOPx(obase)->op_first;
1000         if (o->op_type == OP_PUSHMARK)
1001             o = o->op_sibling;
1002
1003         if (!o->op_sibling) {
1004             /* one-arg version of open is highly magical */
1005
1006             if (o->op_type == OP_GV) { /* open FOO; */
1007                 gv = cGVOPx_gv(o);
1008                 if (match && GvSV(gv) != uninit_sv)
1009                     break;
1010                 return S_varname(aTHX_ gv, "$", 0,
1011                             Nullsv, 0, FUV_SUBSCRIPT_NONE);
1012             }
1013             /* other possibilities not handled are:
1014              * open $x; or open my $x;  should return '${*$x}'
1015              * open expr;               should return '$'.expr ideally
1016              */
1017              break;
1018         }
1019         goto do_op;
1020
1021     /* ops where $_ may be an implicit arg */
1022     case OP_TRANS:
1023     case OP_SUBST:
1024     case OP_MATCH:
1025         if ( !(obase->op_flags & OPf_STACKED)) {
1026             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
1027                                  ? PAD_SVl(obase->op_targ)
1028                                  : DEFSV))
1029             {
1030                 sv = sv_newmortal();
1031                 sv_setpv(sv, "$_");
1032                 return sv;
1033             }
1034         }
1035         goto do_op;
1036
1037     case OP_PRTF:
1038     case OP_PRINT:
1039         /* skip filehandle as it can't produce 'undef' warning  */
1040         o = cUNOPx(obase)->op_first;
1041         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
1042             o = o->op_sibling->op_sibling;
1043         goto do_op2;
1044
1045
1046     case OP_RV2SV:
1047     case OP_CUSTOM:
1048     case OP_ENTERSUB:
1049         match = 1; /* XS or custom code could trigger random warnings */
1050         goto do_op;
1051
1052     case OP_SCHOMP:
1053     case OP_CHOMP:
1054         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
1055             return sv_2mortal(newSVpv("${$/}", 0));
1056         /* FALL THROUGH */
1057
1058     default:
1059     do_op:
1060         if (!(obase->op_flags & OPf_KIDS))
1061             break;
1062         o = cUNOPx(obase)->op_first;
1063         
1064     do_op2:
1065         if (!o)
1066             break;
1067
1068         /* if all except one arg are constant, or have no side-effects,
1069          * or are optimized away, then it's unambiguous */
1070         o2 = Nullop;
1071         for (kid=o; kid; kid = kid->op_sibling) {
1072             if (kid &&
1073                 (    (kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid)))
1074                   || (kid->op_type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
1075                   || (kid->op_type == OP_PUSHMARK)
1076                 )
1077             )
1078                 continue;
1079             if (o2) { /* more than one found */
1080                 o2 = Nullop;
1081                 break;
1082             }
1083             o2 = kid;
1084         }
1085         if (o2)
1086             return find_uninit_var(o2, uninit_sv, match);
1087
1088         /* scan all args */
1089         while (o) {
1090             sv = find_uninit_var(o, uninit_sv, 1);
1091             if (sv)
1092                 return sv;
1093             o = o->op_sibling;
1094         }
1095         break;
1096     }
1097     return Nullsv;
1098 }
1099
1100
1101 /*
1102 =for apidoc report_uninit
1103
1104 Print appropriate "Use of uninitialized variable" warning
1105
1106 =cut
1107 */
1108
1109 void
1110 Perl_report_uninit(pTHX_ SV* uninit_sv)
1111 {
1112     if (PL_op) {
1113         SV* varname = Nullsv;
1114         if (uninit_sv) {
1115             varname = find_uninit_var(PL_op, uninit_sv,0);
1116             if (varname)
1117                 sv_insert(varname, 0, 0, " ", 1);
1118         }
1119         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
1120                 varname ? SvPV_nolen(varname) : "",
1121                 " in ", OP_DESC(PL_op));
1122     }
1123     else
1124         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
1125                     "", "", "");
1126 }
1127
1128 /* allocate another arena's worth of NV bodies */
1129
1130 STATIC void
1131 S_more_xnv(pTHX)
1132 {
1133     NV* xnv;
1134     NV* xnvend;
1135     void *ptr;
1136     New(711, ptr, PERL_ARENA_SIZE/sizeof(NV), NV);
1137     *((void **) ptr) = (void *)PL_xnv_arenaroot;
1138     PL_xnv_arenaroot = ptr;
1139
1140     xnv = (NV*) ptr;
1141     xnvend = &xnv[PERL_ARENA_SIZE / sizeof(NV) - 1];
1142     xnv += (sizeof(XPVIV) - 1) / sizeof(NV) + 1; /* fudge by sizeof XPVIV */
1143     PL_xnv_root = xnv;
1144     while (xnv < xnvend) {
1145         *(NV**)xnv = (NV*)(xnv + 1);
1146         xnv++;
1147     }
1148     *(NV**)xnv = 0;
1149 }
1150
1151 /* allocate another arena's worth of struct xpv */
1152
1153 STATIC void
1154 S_more_xpv(pTHX)
1155 {
1156     xpv_allocated* xpv;
1157     xpv_allocated* xpvend;
1158     New(713, xpv, PERL_ARENA_SIZE/sizeof(xpv_allocated), xpv_allocated);
1159     *((xpv_allocated**)xpv) = PL_xpv_arenaroot;
1160     PL_xpv_arenaroot = xpv;
1161
1162     xpvend = &xpv[PERL_ARENA_SIZE / sizeof(xpv_allocated) - 1];
1163     PL_xpv_root = ++xpv;
1164     while (xpv < xpvend) {
1165         *((xpv_allocated**)xpv) = xpv + 1;
1166         xpv++;
1167     }
1168     *((xpv_allocated**)xpv) = 0;
1169 }
1170
1171 /* allocate another arena's worth of struct xpviv */
1172
1173 STATIC void
1174 S_more_xpviv(pTHX)
1175 {
1176     XPVIV* xpviv;
1177     XPVIV* xpvivend;
1178     New(714, xpviv, PERL_ARENA_SIZE/sizeof(XPVIV), XPVIV);
1179     *((XPVIV**)xpviv) = PL_xpviv_arenaroot;
1180     PL_xpviv_arenaroot = xpviv;
1181
1182     xpvivend = &xpviv[PERL_ARENA_SIZE / sizeof(XPVIV) - 1];
1183     PL_xpviv_root = ++xpviv;
1184     while (xpviv < xpvivend) {
1185         *((XPVIV**)xpviv) = xpviv + 1;
1186         xpviv++;
1187     }
1188     *((XPVIV**)xpviv) = 0;
1189 }
1190
1191 /* allocate another arena's worth of struct xpvnv */
1192
1193 STATIC void
1194 S_more_xpvnv(pTHX)
1195 {
1196     XPVNV* xpvnv;
1197     XPVNV* xpvnvend;
1198     New(715, xpvnv, PERL_ARENA_SIZE/sizeof(XPVNV), XPVNV);
1199     *((XPVNV**)xpvnv) = PL_xpvnv_arenaroot;
1200     PL_xpvnv_arenaroot = xpvnv;
1201
1202     xpvnvend = &xpvnv[PERL_ARENA_SIZE / sizeof(XPVNV) - 1];
1203     PL_xpvnv_root = ++xpvnv;
1204     while (xpvnv < xpvnvend) {
1205         *((XPVNV**)xpvnv) = xpvnv + 1;
1206         xpvnv++;
1207     }
1208     *((XPVNV**)xpvnv) = 0;
1209 }
1210
1211 /* allocate another arena's worth of struct xpvcv */
1212
1213 STATIC void
1214 S_more_xpvcv(pTHX)
1215 {
1216     XPVCV* xpvcv;
1217     XPVCV* xpvcvend;
1218     New(716, xpvcv, PERL_ARENA_SIZE/sizeof(XPVCV), XPVCV);
1219     *((XPVCV**)xpvcv) = PL_xpvcv_arenaroot;
1220     PL_xpvcv_arenaroot = xpvcv;
1221
1222     xpvcvend = &xpvcv[PERL_ARENA_SIZE / sizeof(XPVCV) - 1];
1223     PL_xpvcv_root = ++xpvcv;
1224     while (xpvcv < xpvcvend) {
1225         *((XPVCV**)xpvcv) = xpvcv + 1;
1226         xpvcv++;
1227     }
1228     *((XPVCV**)xpvcv) = 0;
1229 }
1230
1231 /* allocate another arena's worth of struct xpvav */
1232
1233 STATIC void
1234 S_more_xpvav(pTHX)
1235 {
1236     xpvav_allocated* xpvav;
1237      xpvav_allocated* xpvavend;
1238     New(717, xpvav, PERL_ARENA_SIZE/sizeof(xpvav_allocated),
1239         xpvav_allocated);
1240     *((xpvav_allocated**)xpvav) = PL_xpvav_arenaroot;
1241     PL_xpvav_arenaroot = xpvav;
1242
1243     xpvavend = &xpvav[PERL_ARENA_SIZE / sizeof(xpvav_allocated) - 1];
1244     PL_xpvav_root = ++xpvav;
1245     while (xpvav < xpvavend) {
1246         *((xpvav_allocated**)xpvav) = xpvav + 1;
1247         xpvav++;
1248     }
1249     *((xpvav_allocated**)xpvav) = 0;
1250 }
1251
1252 /* allocate another arena's worth of struct xpvhv */
1253
1254 STATIC void
1255 S_more_xpvhv(pTHX)
1256 {
1257     xpvhv_allocated* xpvhv;
1258     xpvhv_allocated* xpvhvend;
1259     New(718, xpvhv, PERL_ARENA_SIZE/sizeof(xpvhv_allocated),
1260         xpvhv_allocated);
1261     *((xpvhv_allocated**)xpvhv) = PL_xpvhv_arenaroot;
1262     PL_xpvhv_arenaroot = xpvhv;
1263
1264     xpvhvend = &xpvhv[PERL_ARENA_SIZE / sizeof(xpvhv_allocated) - 1];
1265     PL_xpvhv_root = ++xpvhv;
1266     while (xpvhv < xpvhvend) {
1267         *((xpvhv_allocated**)xpvhv) = xpvhv + 1;
1268         xpvhv++;
1269     }
1270     *((xpvhv_allocated**)xpvhv) = 0;
1271 }
1272
1273 /* allocate another arena's worth of struct xpvmg */
1274
1275 STATIC void
1276 S_more_xpvmg(pTHX)
1277 {
1278     XPVMG* xpvmg;
1279     XPVMG* xpvmgend;
1280     New(719, xpvmg, PERL_ARENA_SIZE/sizeof(XPVMG), XPVMG);
1281     *((XPVMG**)xpvmg) = PL_xpvmg_arenaroot;
1282     PL_xpvmg_arenaroot = xpvmg;
1283
1284     xpvmgend = &xpvmg[PERL_ARENA_SIZE / sizeof(XPVMG) - 1];
1285     PL_xpvmg_root = ++xpvmg;
1286     while (xpvmg < xpvmgend) {
1287         *((XPVMG**)xpvmg) = xpvmg + 1;
1288         xpvmg++;
1289     }
1290     *((XPVMG**)xpvmg) = 0;
1291 }
1292
1293 /* allocate another arena's worth of struct xpvgv */
1294
1295 STATIC void
1296 S_more_xpvgv(pTHX)
1297 {
1298     XPVGV* xpvgv;
1299     XPVGV* xpvgvend;
1300     New(720, xpvgv, PERL_ARENA_SIZE/sizeof(XPVGV), XPVGV);
1301     *((XPVGV**)xpvgv) = PL_xpvgv_arenaroot;
1302     PL_xpvgv_arenaroot = xpvgv;
1303
1304     xpvgvend = &xpvgv[PERL_ARENA_SIZE / sizeof(XPVGV) - 1];
1305     PL_xpvgv_root = ++xpvgv;
1306     while (xpvgv < xpvgvend) {
1307         *((XPVGV**)xpvgv) = xpvgv + 1;
1308         xpvgv++;
1309     }
1310     *((XPVGV**)xpvgv) = 0;
1311 }
1312
1313 /* allocate another arena's worth of struct xpvlv */
1314
1315 STATIC void
1316 S_more_xpvlv(pTHX)
1317 {
1318     XPVLV* xpvlv;
1319     XPVLV* xpvlvend;
1320     New(720, xpvlv, PERL_ARENA_SIZE/sizeof(XPVLV), XPVLV);
1321     *((XPVLV**)xpvlv) = PL_xpvlv_arenaroot;
1322     PL_xpvlv_arenaroot = xpvlv;
1323
1324     xpvlvend = &xpvlv[PERL_ARENA_SIZE / sizeof(XPVLV) - 1];
1325     PL_xpvlv_root = ++xpvlv;
1326     while (xpvlv < xpvlvend) {
1327         *((XPVLV**)xpvlv) = xpvlv + 1;
1328         xpvlv++;
1329     }
1330     *((XPVLV**)xpvlv) = 0;
1331 }
1332
1333 /* allocate another arena's worth of struct xpvbm */
1334
1335 STATIC void
1336 S_more_xpvbm(pTHX)
1337 {
1338     XPVBM* xpvbm;
1339     XPVBM* xpvbmend;
1340     New(721, xpvbm, PERL_ARENA_SIZE/sizeof(XPVBM), XPVBM);
1341     *((XPVBM**)xpvbm) = PL_xpvbm_arenaroot;
1342     PL_xpvbm_arenaroot = xpvbm;
1343
1344     xpvbmend = &xpvbm[PERL_ARENA_SIZE / sizeof(XPVBM) - 1];
1345     PL_xpvbm_root = ++xpvbm;
1346     while (xpvbm < xpvbmend) {
1347         *((XPVBM**)xpvbm) = xpvbm + 1;
1348         xpvbm++;
1349     }
1350     *((XPVBM**)xpvbm) = 0;
1351 }
1352
1353 /* grab a new NV body from the free list, allocating more if necessary */
1354
1355 STATIC XPVNV*
1356 S_new_xnv(pTHX)
1357 {
1358     NV* xnv;
1359     LOCK_SV_MUTEX;
1360     if (!PL_xnv_root)
1361         S_more_xnv(aTHX);
1362     xnv = PL_xnv_root;
1363     PL_xnv_root = *(NV**)xnv;
1364     UNLOCK_SV_MUTEX;
1365     return (XPVNV*)((char*)xnv - STRUCT_OFFSET(XPVNV, xnv_nv));
1366 }
1367
1368 /* return an NV body to the free list */
1369
1370 STATIC void
1371 S_del_xnv(pTHX_ XPVNV *p)
1372 {
1373     NV* xnv = (NV*)((char*)(p) + STRUCT_OFFSET(XPVNV, xnv_nv));
1374     LOCK_SV_MUTEX;
1375     *(NV**)xnv = PL_xnv_root;
1376     PL_xnv_root = xnv;
1377     UNLOCK_SV_MUTEX;
1378 }
1379
1380 /* grab a new struct xpv from the free list, allocating more if necessary */
1381
1382 STATIC XPV*
1383 S_new_xpv(pTHX)
1384 {
1385     xpv_allocated* xpv;
1386     LOCK_SV_MUTEX;
1387     if (!PL_xpv_root)
1388         S_more_xpv(aTHX);
1389     xpv = PL_xpv_root;
1390     PL_xpv_root = *(xpv_allocated**)xpv;
1391     UNLOCK_SV_MUTEX;
1392     /* If xpv_allocated is the same structure as XPV then the two OFFSETs
1393        sum to zero, and the pointer is unchanged. If the allocated structure
1394        is smaller (no initial IV actually allocated) then the net effect is
1395        to subtract the size of the IV from the pointer, to return a new pointer
1396        as if an initial IV were actually allocated.  */
1397     return (XPV*)((char*)xpv - STRUCT_OFFSET(XPV, xpv_cur)
1398                   + STRUCT_OFFSET(xpv_allocated, xpv_cur));
1399 }
1400
1401 /* return a struct xpv to the free list */
1402
1403 STATIC void
1404 S_del_xpv(pTHX_ XPV *p)
1405 {
1406     xpv_allocated* xpv
1407         = (xpv_allocated*)((char*)(p) + STRUCT_OFFSET(XPV, xpv_cur)
1408                            - STRUCT_OFFSET(xpv_allocated, xpv_cur));
1409     LOCK_SV_MUTEX;
1410     *(xpv_allocated**)xpv = PL_xpv_root;
1411     PL_xpv_root = xpv;
1412     UNLOCK_SV_MUTEX;
1413 }
1414
1415 /* grab a new struct xpviv from the free list, allocating more if necessary */
1416
1417 STATIC XPVIV*
1418 S_new_xpviv(pTHX)
1419 {
1420     XPVIV* xpviv;
1421     LOCK_SV_MUTEX;
1422     if (!PL_xpviv_root)
1423         S_more_xpviv(aTHX);
1424     xpviv = PL_xpviv_root;
1425     PL_xpviv_root = *(XPVIV**)xpviv;
1426     UNLOCK_SV_MUTEX;
1427     return xpviv;
1428 }
1429
1430 /* return a struct xpviv to the free list */
1431
1432 STATIC void
1433 S_del_xpviv(pTHX_ XPVIV *p)
1434 {
1435     LOCK_SV_MUTEX;
1436     *(XPVIV**)p = PL_xpviv_root;
1437     PL_xpviv_root = p;
1438     UNLOCK_SV_MUTEX;
1439 }
1440
1441 /* grab a new struct xpvnv from the free list, allocating more if necessary */
1442
1443 STATIC XPVNV*
1444 S_new_xpvnv(pTHX)
1445 {
1446     XPVNV* xpvnv;
1447     LOCK_SV_MUTEX;
1448     if (!PL_xpvnv_root)
1449         S_more_xpvnv(aTHX);
1450     xpvnv = PL_xpvnv_root;
1451     PL_xpvnv_root = *(XPVNV**)xpvnv;
1452     UNLOCK_SV_MUTEX;
1453     return xpvnv;
1454 }
1455
1456 /* return a struct xpvnv to the free list */
1457
1458 STATIC void
1459 S_del_xpvnv(pTHX_ XPVNV *p)
1460 {
1461     LOCK_SV_MUTEX;
1462     *(XPVNV**)p = PL_xpvnv_root;
1463     PL_xpvnv_root = p;
1464     UNLOCK_SV_MUTEX;
1465 }
1466
1467 /* grab a new struct xpvcv from the free list, allocating more if necessary */
1468
1469 STATIC XPVCV*
1470 S_new_xpvcv(pTHX)
1471 {
1472     XPVCV* xpvcv;
1473     LOCK_SV_MUTEX;
1474     if (!PL_xpvcv_root)
1475         S_more_xpvcv(aTHX);
1476     xpvcv = PL_xpvcv_root;
1477     PL_xpvcv_root = *(XPVCV**)xpvcv;
1478     UNLOCK_SV_MUTEX;
1479     return xpvcv;
1480 }
1481
1482 /* return a struct xpvcv to the free list */
1483
1484 STATIC void
1485 S_del_xpvcv(pTHX_ XPVCV *p)
1486 {
1487     LOCK_SV_MUTEX;
1488     *(XPVCV**)p = PL_xpvcv_root;
1489     PL_xpvcv_root = p;
1490     UNLOCK_SV_MUTEX;
1491 }
1492
1493 /* grab a new struct xpvav from the free list, allocating more if necessary */
1494
1495 STATIC XPVAV*
1496 S_new_xpvav(pTHX)
1497 {
1498     xpvav_allocated* xpvav;
1499     LOCK_SV_MUTEX;
1500     if (!PL_xpvav_root)
1501         S_more_xpvav(aTHX);
1502     xpvav = PL_xpvav_root;
1503     PL_xpvav_root = *(xpvav_allocated**)xpvav;
1504     UNLOCK_SV_MUTEX;
1505     return (XPVAV*)((char*)xpvav - STRUCT_OFFSET(XPVAV, xav_fill)
1506                     + STRUCT_OFFSET(xpvav_allocated, xav_fill));
1507 }
1508
1509 /* return a struct xpvav to the free list */
1510
1511 STATIC void
1512 S_del_xpvav(pTHX_ XPVAV *p)
1513 {
1514     xpvav_allocated* xpvav
1515         = (xpvav_allocated*)((char*)(p) + STRUCT_OFFSET(XPVAV, xav_fill)
1516                              - STRUCT_OFFSET(xpvav_allocated, xav_fill));
1517     LOCK_SV_MUTEX;
1518     *(xpvav_allocated**)xpvav = PL_xpvav_root;
1519     PL_xpvav_root = xpvav;
1520     UNLOCK_SV_MUTEX;
1521 }
1522
1523 /* grab a new struct xpvhv from the free list, allocating more if necessary */
1524
1525 STATIC XPVHV*
1526 S_new_xpvhv(pTHX)
1527 {
1528     xpvhv_allocated* xpvhv;
1529     LOCK_SV_MUTEX;
1530     if (!PL_xpvhv_root)
1531         S_more_xpvhv(aTHX);
1532     xpvhv = PL_xpvhv_root;
1533     PL_xpvhv_root = *(xpvhv_allocated**)xpvhv;
1534     UNLOCK_SV_MUTEX;
1535     return (XPVHV*)((char*)xpvhv - STRUCT_OFFSET(XPVHV, xhv_fill)
1536                     + STRUCT_OFFSET(xpvhv_allocated, xhv_fill));
1537 }
1538
1539 /* return a struct xpvhv to the free list */
1540
1541 STATIC void
1542 S_del_xpvhv(pTHX_ XPVHV *p)
1543 {
1544     xpvhv_allocated* xpvhv
1545         = (xpvhv_allocated*)((char*)(p) + STRUCT_OFFSET(XPVHV, xhv_fill)
1546                              - STRUCT_OFFSET(xpvhv_allocated, xhv_fill));
1547     LOCK_SV_MUTEX;
1548     *(xpvhv_allocated**)xpvhv = PL_xpvhv_root;
1549     PL_xpvhv_root = xpvhv;
1550     UNLOCK_SV_MUTEX;
1551 }
1552
1553 /* grab a new struct xpvmg from the free list, allocating more if necessary */
1554
1555 STATIC XPVMG*
1556 S_new_xpvmg(pTHX)
1557 {
1558     XPVMG* xpvmg;
1559     LOCK_SV_MUTEX;
1560     if (!PL_xpvmg_root)
1561         S_more_xpvmg(aTHX);
1562     xpvmg = PL_xpvmg_root;
1563     PL_xpvmg_root = *(XPVMG**)xpvmg;
1564     UNLOCK_SV_MUTEX;
1565     return xpvmg;
1566 }
1567
1568 /* return a struct xpvmg to the free list */
1569
1570 STATIC void
1571 S_del_xpvmg(pTHX_ XPVMG *p)
1572 {
1573     LOCK_SV_MUTEX;
1574     *(XPVMG**)p = PL_xpvmg_root;
1575     PL_xpvmg_root = p;
1576     UNLOCK_SV_MUTEX;
1577 }
1578
1579 /* grab a new struct xpvgv from the free list, allocating more if necessary */
1580
1581 STATIC XPVGV*
1582 S_new_xpvgv(pTHX)
1583 {
1584     XPVGV* xpvgv;
1585     LOCK_SV_MUTEX;
1586     if (!PL_xpvgv_root)
1587         S_more_xpvgv(aTHX);
1588     xpvgv = PL_xpvgv_root;
1589     PL_xpvgv_root = *(XPVGV**)xpvgv;
1590     UNLOCK_SV_MUTEX;
1591     return xpvgv;
1592 }
1593
1594 /* return a struct xpvgv to the free list */
1595
1596 STATIC void
1597 S_del_xpvgv(pTHX_ XPVGV *p)
1598 {
1599     LOCK_SV_MUTEX;
1600     *(XPVGV**)p = PL_xpvgv_root;
1601     PL_xpvgv_root = p;
1602     UNLOCK_SV_MUTEX;
1603 }
1604
1605 /* grab a new struct xpvlv from the free list, allocating more if necessary */
1606
1607 STATIC XPVLV*
1608 S_new_xpvlv(pTHX)
1609 {
1610     XPVLV* xpvlv;
1611     LOCK_SV_MUTEX;
1612     if (!PL_xpvlv_root)
1613         S_more_xpvlv(aTHX);
1614     xpvlv = PL_xpvlv_root;
1615     PL_xpvlv_root = *(XPVLV**)xpvlv;
1616     UNLOCK_SV_MUTEX;
1617     return xpvlv;
1618 }
1619
1620 /* return a struct xpvlv to the free list */
1621
1622 STATIC void
1623 S_del_xpvlv(pTHX_ XPVLV *p)
1624 {
1625     LOCK_SV_MUTEX;
1626     *(XPVLV**)p = PL_xpvlv_root;
1627     PL_xpvlv_root = p;
1628     UNLOCK_SV_MUTEX;
1629 }
1630
1631 /* grab a new struct xpvbm from the free list, allocating more if necessary */
1632
1633 STATIC XPVBM*
1634 S_new_xpvbm(pTHX)
1635 {
1636     XPVBM* xpvbm;
1637     LOCK_SV_MUTEX;
1638     if (!PL_xpvbm_root)
1639         S_more_xpvbm(aTHX);
1640     xpvbm = PL_xpvbm_root;
1641     PL_xpvbm_root = *(XPVBM**)xpvbm;
1642     UNLOCK_SV_MUTEX;
1643     return xpvbm;
1644 }
1645
1646 /* return a struct xpvbm to the free list */
1647
1648 STATIC void
1649 S_del_xpvbm(pTHX_ XPVBM *p)
1650 {
1651     LOCK_SV_MUTEX;
1652     *(XPVBM**)p = PL_xpvbm_root;
1653     PL_xpvbm_root = p;
1654     UNLOCK_SV_MUTEX;
1655 }
1656
1657 #define my_safemalloc(s)        (void*)safemalloc(s)
1658 #define my_safefree(p)  safefree((char*)p)
1659
1660 #ifdef PURIFY
1661
1662 #define new_XNV()       my_safemalloc(sizeof(XPVNV))
1663 #define del_XNV(p)      my_safefree(p)
1664
1665 #define new_XPV()       my_safemalloc(sizeof(XPV))
1666 #define del_XPV(p)      my_safefree(p)
1667
1668 #define new_XPVIV()     my_safemalloc(sizeof(XPVIV))
1669 #define del_XPVIV(p)    my_safefree(p)
1670
1671 #define new_XPVNV()     my_safemalloc(sizeof(XPVNV))
1672 #define del_XPVNV(p)    my_safefree(p)
1673
1674 #define new_XPVCV()     my_safemalloc(sizeof(XPVCV))
1675 #define del_XPVCV(p)    my_safefree(p)
1676
1677 #define new_XPVAV()     my_safemalloc(sizeof(XPVAV))
1678 #define del_XPVAV(p)    my_safefree(p)
1679
1680 #define new_XPVHV()     my_safemalloc(sizeof(XPVHV))
1681 #define del_XPVHV(p)    my_safefree(p)
1682
1683 #define new_XPVMG()     my_safemalloc(sizeof(XPVMG))
1684 #define del_XPVMG(p)    my_safefree(p)
1685
1686 #define new_XPVGV()     my_safemalloc(sizeof(XPVGV))
1687 #define del_XPVGV(p)    my_safefree(p)
1688
1689 #define new_XPVLV()     my_safemalloc(sizeof(XPVLV))
1690 #define del_XPVLV(p)    my_safefree(p)
1691
1692 #define new_XPVBM()     my_safemalloc(sizeof(XPVBM))
1693 #define del_XPVBM(p)    my_safefree(p)
1694
1695 #else /* !PURIFY */
1696
1697 #define new_XNV()       (void*)new_xnv()
1698 #define del_XNV(p)      del_xnv((XPVNV*) p)
1699
1700 #define new_XPV()       (void*)new_xpv()
1701 #define del_XPV(p)      del_xpv((XPV *)p)
1702
1703 #define new_XPVIV()     (void*)new_xpviv()
1704 #define del_XPVIV(p)    del_xpviv((XPVIV *)p)
1705
1706 #define new_XPVNV()     (void*)new_xpvnv()
1707 #define del_XPVNV(p)    del_xpvnv((XPVNV *)p)
1708
1709 #define new_XPVCV()     (void*)new_xpvcv()
1710 #define del_XPVCV(p)    del_xpvcv((XPVCV *)p)
1711
1712 #define new_XPVAV()     (void*)new_xpvav()
1713 #define del_XPVAV(p)    del_xpvav((XPVAV *)p)
1714
1715 #define new_XPVHV()     (void*)new_xpvhv()
1716 #define del_XPVHV(p)    del_xpvhv((XPVHV *)p)
1717
1718 #define new_XPVMG()     (void*)new_xpvmg()
1719 #define del_XPVMG(p)    del_xpvmg((XPVMG *)p)
1720
1721 #define new_XPVGV()     (void*)new_xpvgv()
1722 #define del_XPVGV(p)    del_xpvgv((XPVGV *)p)
1723
1724 #define new_XPVLV()     (void*)new_xpvlv()
1725 #define del_XPVLV(p)    del_xpvlv((XPVLV *)p)
1726
1727 #define new_XPVBM()     (void*)new_xpvbm()
1728 #define del_XPVBM(p)    del_xpvbm((XPVBM *)p)
1729
1730 #endif /* PURIFY */
1731
1732 #define new_XPVFM()     my_safemalloc(sizeof(XPVFM))
1733 #define del_XPVFM(p)    my_safefree(p)
1734
1735 #define new_XPVIO()     my_safemalloc(sizeof(XPVIO))
1736 #define del_XPVIO(p)    my_safefree(p)
1737
1738 /*
1739 =for apidoc sv_upgrade
1740
1741 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1742 SV, then copies across as much information as possible from the old body.
1743 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1744
1745 =cut
1746 */
1747
1748 bool
1749 Perl_sv_upgrade(pTHX_ register SV *sv, U32 mt)
1750 {
1751
1752     char*       pv;
1753     U32         cur;
1754     U32         len;
1755     IV          iv;
1756     NV          nv;
1757     MAGIC*      magic;
1758     HV*         stash;
1759
1760     if (mt != SVt_PV && SvIsCOW(sv)) {
1761         sv_force_normal_flags(sv, 0);
1762     }
1763
1764     if (SvTYPE(sv) == mt)
1765         return TRUE;
1766
1767     pv = NULL;
1768     cur = 0;
1769     len = 0;
1770     iv = 0;
1771     nv = 0.0;
1772     magic = NULL;
1773     stash = Nullhv;
1774
1775     switch (SvTYPE(sv)) {
1776     case SVt_NULL:
1777         break;
1778     case SVt_IV:
1779         iv      = SvIVX(sv);
1780         if (mt == SVt_NV)
1781             mt = SVt_PVNV;
1782         else if (mt < SVt_PVIV)
1783             mt = SVt_PVIV;
1784         break;
1785     case SVt_NV:
1786         nv      = SvNVX(sv);
1787         del_XNV(SvANY(sv));
1788         if (mt < SVt_PVNV)
1789             mt = SVt_PVNV;
1790         break;
1791     case SVt_RV:
1792         pv      = (char*)SvRV(sv);
1793         break;
1794     case SVt_PV:
1795         pv      = SvPVX(sv);
1796         cur     = SvCUR(sv);
1797         len     = SvLEN(sv);
1798         del_XPV(SvANY(sv));
1799         if (mt <= SVt_IV)
1800             mt = SVt_PVIV;
1801         else if (mt == SVt_NV)
1802             mt = SVt_PVNV;
1803         break;
1804     case SVt_PVIV:
1805         pv      = SvPVX(sv);
1806         cur     = SvCUR(sv);
1807         len     = SvLEN(sv);
1808         iv      = SvIVX(sv);
1809         del_XPVIV(SvANY(sv));
1810         break;
1811     case SVt_PVNV:
1812         pv      = SvPVX(sv);
1813         cur     = SvCUR(sv);
1814         len     = SvLEN(sv);
1815         iv      = SvIVX(sv);
1816         nv      = SvNVX(sv);
1817         del_XPVNV(SvANY(sv));
1818         break;
1819     case SVt_PVMG:
1820         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1821            there's no way that it can be safely upgraded, because perl.c
1822            expects to Safefree(SvANY(PL_mess_sv))  */
1823         assert(sv != PL_mess_sv);
1824         /* This flag bit is used to mean other things in other scalar types.
1825            Given that it only has meaning inside the pad, it shouldn't be set
1826            on anything that can get upgraded.  */
1827         assert((SvFLAGS(sv) & SVpad_TYPED) == 0);
1828         pv      = SvPVX(sv);
1829         cur     = SvCUR(sv);
1830         len     = SvLEN(sv);
1831         iv      = SvIVX(sv);
1832         nv      = SvNVX(sv);
1833         magic   = SvMAGIC(sv);
1834         stash   = SvSTASH(sv);
1835         del_XPVMG(SvANY(sv));
1836         break;
1837     default:
1838         Perl_croak(aTHX_ "Can't upgrade that kind of scalar");
1839     }
1840
1841     SvFLAGS(sv) &= ~SVTYPEMASK;
1842     SvFLAGS(sv) |= mt;
1843
1844     switch (mt) {
1845     case SVt_NULL:
1846         Perl_croak(aTHX_ "Can't upgrade to undef");
1847     case SVt_IV:
1848         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.sv_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1849         SvIV_set(sv, iv);
1850         break;
1851     case SVt_NV:
1852         SvANY(sv) = new_XNV();
1853         SvNV_set(sv, nv);
1854         break;
1855     case SVt_RV:
1856         SvANY(sv) = &sv->sv_u.sv_rv;
1857         SvRV_set(sv, (SV*)pv);
1858         break;
1859     case SVt_PVHV:
1860         SvANY(sv) = new_XPVHV();
1861         ((XPVHV*) SvANY(sv))->xhv_aux = 0;
1862         HvFILL(sv)      = 0;
1863         HvMAX(sv)       = 0;
1864         HvTOTALKEYS(sv) = 0;
1865
1866         /* Fall through...  */
1867         if (0) {
1868         case SVt_PVAV:
1869             SvANY(sv) = new_XPVAV();
1870             AvMAX(sv)   = -1;
1871             AvFILLp(sv) = -1;
1872             AvALLOC(sv) = 0;
1873             AvARYLEN(sv)= 0;
1874             AvREAL_only(sv);
1875         }
1876         /* to here.  */
1877         /* XXX? Only SVt_NULL is ever upgraded to AV or HV?  */
1878         assert(!pv);
1879         /* FIXME. Should be able to remove all this if()... if the above
1880            assertion is genuinely always true.  */
1881         if(SvOOK(sv)) {
1882             pv -= iv;
1883             SvFLAGS(sv) &= ~SVf_OOK;
1884         }
1885         Safefree(pv);
1886         SvPV_set(sv, (char*)0);
1887         SvMAGIC_set(sv, magic);
1888         SvSTASH_set(sv, stash);
1889         break;
1890
1891     case SVt_PVIO:
1892         SvANY(sv) = new_XPVIO();
1893         Zero(SvANY(sv), 1, XPVIO);
1894         IoPAGE_LEN(sv)  = 60;
1895         goto set_magic_common;
1896     case SVt_PVFM:
1897         SvANY(sv) = new_XPVFM();
1898         Zero(SvANY(sv), 1, XPVFM);
1899         goto set_magic_common;
1900     case SVt_PVBM:
1901         SvANY(sv) = new_XPVBM();
1902         BmRARE(sv)      = 0;
1903         BmUSEFUL(sv)    = 0;
1904         BmPREVIOUS(sv)  = 0;
1905         goto set_magic_common;
1906     case SVt_PVGV:
1907         SvANY(sv) = new_XPVGV();
1908         GvGP(sv)        = 0;
1909         GvNAME(sv)      = 0;
1910         GvNAMELEN(sv)   = 0;
1911         GvSTASH(sv)     = 0;
1912         GvFLAGS(sv)     = 0;
1913         goto set_magic_common;
1914     case SVt_PVCV:
1915         SvANY(sv) = new_XPVCV();
1916         Zero(SvANY(sv), 1, XPVCV);
1917         goto set_magic_common;
1918     case SVt_PVLV:
1919         SvANY(sv) = new_XPVLV();
1920         LvTARGOFF(sv)   = 0;
1921         LvTARGLEN(sv)   = 0;
1922         LvTARG(sv)      = 0;
1923         LvTYPE(sv)      = 0;
1924         GvGP(sv)        = 0;
1925         GvNAME(sv)      = 0;
1926         GvNAMELEN(sv)   = 0;
1927         GvSTASH(sv)     = 0;
1928         GvFLAGS(sv)     = 0;
1929         /* Fall through.  */
1930         if (0) {
1931         case SVt_PVMG:
1932             SvANY(sv) = new_XPVMG();
1933         }
1934     set_magic_common:
1935         SvMAGIC_set(sv, magic);
1936         SvSTASH_set(sv, stash);
1937         /* Fall through.  */
1938         if (0) {
1939         case SVt_PVNV:
1940             SvANY(sv) = new_XPVNV();
1941         }
1942         SvNV_set(sv, nv);
1943         /* Fall through.  */
1944         if (0) {
1945         case SVt_PVIV:
1946             SvANY(sv) = new_XPVIV();
1947             if (SvNIOK(sv))
1948                 (void)SvIOK_on(sv);
1949             SvNOK_off(sv);
1950         }
1951         SvIV_set(sv, iv);
1952         /* Fall through.  */
1953         if (0) {
1954         case SVt_PV:
1955             SvANY(sv) = new_XPV();
1956         }
1957         SvPV_set(sv, pv);
1958         SvCUR_set(sv, cur);
1959         SvLEN_set(sv, len);
1960         break;
1961     }
1962     return TRUE;
1963 }
1964
1965 /*
1966 =for apidoc sv_backoff
1967
1968 Remove any string offset. You should normally use the C<SvOOK_off> macro
1969 wrapper instead.
1970
1971 =cut
1972 */
1973
1974 int
1975 Perl_sv_backoff(pTHX_ register SV *sv)
1976 {
1977     assert(SvOOK(sv));
1978     if (SvIVX(sv)) {
1979         char *s = SvPVX(sv);
1980         SvLEN_set(sv, SvLEN(sv) + SvIVX(sv));
1981         SvPV_set(sv, SvPVX(sv) - SvIVX(sv));
1982         SvIV_set(sv, 0);
1983         Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1984     }
1985     SvFLAGS(sv) &= ~SVf_OOK;
1986     return 0;
1987 }
1988
1989 /*
1990 =for apidoc sv_grow
1991
1992 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1993 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1994 Use the C<SvGROW> wrapper instead.
1995
1996 =cut
1997 */
1998
1999 char *
2000 Perl_sv_grow(pTHX_ register SV *sv, register STRLEN newlen)
2001 {
2002     register char *s;
2003
2004 #ifdef HAS_64K_LIMIT
2005     if (newlen >= 0x10000) {
2006         PerlIO_printf(Perl_debug_log,
2007                       "Allocation too large: %"UVxf"\n", (UV)newlen);
2008         my_exit(1);
2009     }
2010 #endif /* HAS_64K_LIMIT */
2011     if (SvROK(sv))
2012         sv_unref(sv);
2013     if (SvTYPE(sv) < SVt_PV) {
2014         sv_upgrade(sv, SVt_PV);
2015         s = SvPVX(sv);
2016     }
2017     else if (SvOOK(sv)) {       /* pv is offset? */
2018         sv_backoff(sv);
2019         s = SvPVX(sv);
2020         if (newlen > SvLEN(sv))
2021             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
2022 #ifdef HAS_64K_LIMIT
2023         if (newlen >= 0x10000)
2024             newlen = 0xFFFF;
2025 #endif
2026     }
2027     else
2028         s = SvPVX(sv);
2029
2030     if (newlen > SvLEN(sv)) {           /* need more room? */
2031         if (SvLEN(sv) && s) {
2032 #ifdef MYMALLOC
2033             const STRLEN l = malloced_size((void*)SvPVX(sv));
2034             if (newlen <= l) {
2035                 SvLEN_set(sv, l);
2036                 return s;
2037             } else
2038 #endif
2039             Renew(s,newlen,char);
2040         }
2041         else {
2042             New(703, s, newlen, char);
2043             if (SvPVX(sv) && SvCUR(sv)) {
2044                 Move(SvPVX(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
2045             }
2046         }
2047         SvPV_set(sv, s);
2048         SvLEN_set(sv, newlen);
2049     }
2050     return s;
2051 }
2052
2053 /*
2054 =for apidoc sv_setiv
2055
2056 Copies an integer into the given SV, upgrading first if necessary.
2057 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
2058
2059 =cut
2060 */
2061
2062 void
2063 Perl_sv_setiv(pTHX_ register SV *sv, IV i)
2064 {
2065     SV_CHECK_THINKFIRST_COW_DROP(sv);
2066     switch (SvTYPE(sv)) {
2067     case SVt_NULL:
2068         sv_upgrade(sv, SVt_IV);
2069         break;
2070     case SVt_NV:
2071         sv_upgrade(sv, SVt_PVNV);
2072         break;
2073     case SVt_RV:
2074     case SVt_PV:
2075         sv_upgrade(sv, SVt_PVIV);
2076         break;
2077
2078     case SVt_PVGV:
2079     case SVt_PVAV:
2080     case SVt_PVHV:
2081     case SVt_PVCV:
2082     case SVt_PVFM:
2083     case SVt_PVIO:
2084         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
2085                    OP_DESC(PL_op));
2086     }
2087     (void)SvIOK_only(sv);                       /* validate number */
2088     SvIV_set(sv, i);
2089     SvTAINT(sv);
2090 }
2091
2092 /*
2093 =for apidoc sv_setiv_mg
2094
2095 Like C<sv_setiv>, but also handles 'set' magic.
2096
2097 =cut
2098 */
2099
2100 void
2101 Perl_sv_setiv_mg(pTHX_ register SV *sv, IV i)
2102 {
2103     sv_setiv(sv,i);
2104     SvSETMAGIC(sv);
2105 }
2106
2107 /*
2108 =for apidoc sv_setuv
2109
2110 Copies an unsigned integer into the given SV, upgrading first if necessary.
2111 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
2112
2113 =cut
2114 */
2115
2116 void
2117 Perl_sv_setuv(pTHX_ register SV *sv, UV u)
2118 {
2119     /* With these two if statements:
2120        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
2121
2122        without
2123        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
2124
2125        If you wish to remove them, please benchmark to see what the effect is
2126     */
2127     if (u <= (UV)IV_MAX) {
2128        sv_setiv(sv, (IV)u);
2129        return;
2130     }
2131     sv_setiv(sv, 0);
2132     SvIsUV_on(sv);
2133     SvUV_set(sv, u);
2134 }
2135
2136 /*
2137 =for apidoc sv_setuv_mg
2138
2139 Like C<sv_setuv>, but also handles 'set' magic.
2140
2141 =cut
2142 */
2143
2144 void
2145 Perl_sv_setuv_mg(pTHX_ register SV *sv, UV u)
2146 {
2147     /* With these two if statements:
2148        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
2149
2150        without
2151        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
2152
2153        If you wish to remove them, please benchmark to see what the effect is
2154     */
2155     if (u <= (UV)IV_MAX) {
2156        sv_setiv(sv, (IV)u);
2157     } else {
2158        sv_setiv(sv, 0);
2159        SvIsUV_on(sv);
2160        sv_setuv(sv,u);
2161     }
2162     SvSETMAGIC(sv);
2163 }
2164
2165 /*
2166 =for apidoc sv_setnv
2167
2168 Copies a double into the given SV, upgrading first if necessary.
2169 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
2170
2171 =cut
2172 */
2173
2174 void
2175 Perl_sv_setnv(pTHX_ register SV *sv, NV num)
2176 {
2177     SV_CHECK_THINKFIRST_COW_DROP(sv);
2178     switch (SvTYPE(sv)) {
2179     case SVt_NULL:
2180     case SVt_IV:
2181         sv_upgrade(sv, SVt_NV);
2182         break;
2183     case SVt_RV:
2184     case SVt_PV:
2185     case SVt_PVIV:
2186         sv_upgrade(sv, SVt_PVNV);
2187         break;
2188
2189     case SVt_PVGV:
2190     case SVt_PVAV:
2191     case SVt_PVHV:
2192     case SVt_PVCV:
2193     case SVt_PVFM:
2194     case SVt_PVIO:
2195         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
2196                    OP_NAME(PL_op));
2197     }
2198     SvNV_set(sv, num);
2199     (void)SvNOK_only(sv);                       /* validate number */
2200     SvTAINT(sv);
2201 }
2202
2203 /*
2204 =for apidoc sv_setnv_mg
2205
2206 Like C<sv_setnv>, but also handles 'set' magic.
2207
2208 =cut
2209 */
2210
2211 void
2212 Perl_sv_setnv_mg(pTHX_ register SV *sv, NV num)
2213 {
2214     sv_setnv(sv,num);
2215     SvSETMAGIC(sv);
2216 }
2217
2218 /* Print an "isn't numeric" warning, using a cleaned-up,
2219  * printable version of the offending string
2220  */
2221
2222 STATIC void
2223 S_not_a_number(pTHX_ SV *sv)
2224 {
2225      SV *dsv;
2226      char tmpbuf[64];
2227      char *pv;
2228
2229      if (DO_UTF8(sv)) {
2230           dsv = sv_2mortal(newSVpv("", 0));
2231           pv = sv_uni_display(dsv, sv, 10, 0);
2232      } else {
2233           char *d = tmpbuf;
2234           char *limit = tmpbuf + sizeof(tmpbuf) - 8;
2235           /* each *s can expand to 4 chars + "...\0",
2236              i.e. need room for 8 chars */
2237         
2238           char *s, *end;
2239           for (s = SvPVX(sv), end = s + SvCUR(sv); s < end && d < limit; s++) {
2240                int ch = *s & 0xFF;
2241                if (ch & 128 && !isPRINT_LC(ch)) {
2242                     *d++ = 'M';
2243                     *d++ = '-';
2244                     ch &= 127;
2245                }
2246                if (ch == '\n') {
2247                     *d++ = '\\';
2248                     *d++ = 'n';
2249                }
2250                else if (ch == '\r') {
2251                     *d++ = '\\';
2252                     *d++ = 'r';
2253                }
2254                else if (ch == '\f') {
2255                     *d++ = '\\';
2256                     *d++ = 'f';
2257                }
2258                else if (ch == '\\') {
2259                     *d++ = '\\';
2260                     *d++ = '\\';
2261                }
2262                else if (ch == '\0') {
2263                     *d++ = '\\';
2264                     *d++ = '0';
2265                }
2266                else if (isPRINT_LC(ch))
2267                     *d++ = ch;
2268                else {
2269                     *d++ = '^';
2270                     *d++ = toCTRL(ch);
2271                }
2272           }
2273           if (s < end) {
2274                *d++ = '.';
2275                *d++ = '.';
2276                *d++ = '.';
2277           }
2278           *d = '\0';
2279           pv = tmpbuf;
2280     }
2281
2282     if (PL_op)
2283         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
2284                     "Argument \"%s\" isn't numeric in %s", pv,
2285                     OP_DESC(PL_op));
2286     else
2287         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
2288                     "Argument \"%s\" isn't numeric", pv);
2289 }
2290
2291 /*
2292 =for apidoc looks_like_number
2293
2294 Test if the content of an SV looks like a number (or is a number).
2295 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
2296 non-numeric warning), even if your atof() doesn't grok them.
2297
2298 =cut
2299 */
2300
2301 I32
2302 Perl_looks_like_number(pTHX_ SV *sv)
2303 {
2304     register const char *sbegin;
2305     STRLEN len;
2306
2307     if (SvPOK(sv)) {
2308         sbegin = SvPVX(sv);
2309         len = SvCUR(sv);
2310     }
2311     else if (SvPOKp(sv))
2312         sbegin = SvPV(sv, len);
2313     else
2314         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
2315     return grok_number(sbegin, len, NULL);
2316 }
2317
2318 /* Actually, ISO C leaves conversion of UV to IV undefined, but
2319    until proven guilty, assume that things are not that bad... */
2320
2321 /*
2322    NV_PRESERVES_UV:
2323
2324    As 64 bit platforms often have an NV that doesn't preserve all bits of
2325    an IV (an assumption perl has been based on to date) it becomes necessary
2326    to remove the assumption that the NV always carries enough precision to
2327    recreate the IV whenever needed, and that the NV is the canonical form.
2328    Instead, IV/UV and NV need to be given equal rights. So as to not lose
2329    precision as a side effect of conversion (which would lead to insanity
2330    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
2331    1) to distinguish between IV/UV/NV slots that have cached a valid
2332       conversion where precision was lost and IV/UV/NV slots that have a
2333       valid conversion which has lost no precision
2334    2) to ensure that if a numeric conversion to one form is requested that
2335       would lose precision, the precise conversion (or differently
2336       imprecise conversion) is also performed and cached, to prevent
2337       requests for different numeric formats on the same SV causing
2338       lossy conversion chains. (lossless conversion chains are perfectly
2339       acceptable (still))
2340
2341
2342    flags are used:
2343    SvIOKp is true if the IV slot contains a valid value
2344    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
2345    SvNOKp is true if the NV slot contains a valid value
2346    SvNOK  is true only if the NV value is accurate
2347
2348    so
2349    while converting from PV to NV, check to see if converting that NV to an
2350    IV(or UV) would lose accuracy over a direct conversion from PV to
2351    IV(or UV). If it would, cache both conversions, return NV, but mark
2352    SV as IOK NOKp (ie not NOK).
2353
2354    While converting from PV to IV, check to see if converting that IV to an
2355    NV would lose accuracy over a direct conversion from PV to NV. If it
2356    would, cache both conversions, flag similarly.
2357
2358    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
2359    correctly because if IV & NV were set NV *always* overruled.
2360    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
2361    changes - now IV and NV together means that the two are interchangeable:
2362    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
2363
2364    The benefit of this is that operations such as pp_add know that if
2365    SvIOK is true for both left and right operands, then integer addition
2366    can be used instead of floating point (for cases where the result won't
2367    overflow). Before, floating point was always used, which could lead to
2368    loss of precision compared with integer addition.
2369
2370    * making IV and NV equal status should make maths accurate on 64 bit
2371      platforms
2372    * may speed up maths somewhat if pp_add and friends start to use
2373      integers when possible instead of fp. (Hopefully the overhead in
2374      looking for SvIOK and checking for overflow will not outweigh the
2375      fp to integer speedup)
2376    * will slow down integer operations (callers of SvIV) on "inaccurate"
2377      values, as the change from SvIOK to SvIOKp will cause a call into
2378      sv_2iv each time rather than a macro access direct to the IV slot
2379    * should speed up number->string conversion on integers as IV is
2380      favoured when IV and NV are equally accurate
2381
2382    ####################################################################
2383    You had better be using SvIOK_notUV if you want an IV for arithmetic:
2384    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
2385    On the other hand, SvUOK is true iff UV.
2386    ####################################################################
2387
2388    Your mileage will vary depending your CPU's relative fp to integer
2389    performance ratio.
2390 */
2391
2392 #ifndef NV_PRESERVES_UV
2393 #  define IS_NUMBER_UNDERFLOW_IV 1
2394 #  define IS_NUMBER_UNDERFLOW_UV 2
2395 #  define IS_NUMBER_IV_AND_UV    2
2396 #  define IS_NUMBER_OVERFLOW_IV  4
2397 #  define IS_NUMBER_OVERFLOW_UV  5
2398
2399 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
2400
2401 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
2402 STATIC int
2403 S_sv_2iuv_non_preserve(pTHX_ register SV *sv, I32 numtype)
2404 {
2405     DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%"UVxf" NV=%"NVgf" inttype=%"UVXf"\n", SvPVX(sv), SvIVX(sv), SvNVX(sv), (UV)numtype));
2406     if (SvNVX(sv) < (NV)IV_MIN) {
2407         (void)SvIOKp_on(sv);
2408         (void)SvNOK_on(sv);
2409         SvIV_set(sv, IV_MIN);
2410         return IS_NUMBER_UNDERFLOW_IV;
2411     }
2412     if (SvNVX(sv) > (NV)UV_MAX) {
2413         (void)SvIOKp_on(sv);
2414         (void)SvNOK_on(sv);
2415         SvIsUV_on(sv);
2416         SvUV_set(sv, UV_MAX);
2417         return IS_NUMBER_OVERFLOW_UV;
2418     }
2419     (void)SvIOKp_on(sv);
2420     (void)SvNOK_on(sv);
2421     /* Can't use strtol etc to convert this string.  (See truth table in
2422        sv_2iv  */
2423     if (SvNVX(sv) <= (UV)IV_MAX) {
2424         SvIV_set(sv, I_V(SvNVX(sv)));
2425         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2426             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2427         } else {
2428             /* Integer is imprecise. NOK, IOKp */
2429         }
2430         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2431     }
2432     SvIsUV_on(sv);
2433     SvUV_set(sv, U_V(SvNVX(sv)));
2434     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2435         if (SvUVX(sv) == UV_MAX) {
2436             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2437                possibly be preserved by NV. Hence, it must be overflow.
2438                NOK, IOKp */
2439             return IS_NUMBER_OVERFLOW_UV;
2440         }
2441         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2442     } else {
2443         /* Integer is imprecise. NOK, IOKp */
2444     }
2445     return IS_NUMBER_OVERFLOW_IV;
2446 }
2447 #endif /* !NV_PRESERVES_UV*/
2448
2449 /* sv_2iv() is now a macro using Perl_sv_2iv_flags();
2450  * this function provided for binary compatibility only
2451  */
2452
2453 IV
2454 Perl_sv_2iv(pTHX_ register SV *sv)
2455 {
2456     return sv_2iv_flags(sv, SV_GMAGIC);
2457 }
2458
2459 /*
2460 =for apidoc sv_2iv_flags
2461
2462 Return the integer value of an SV, doing any necessary string
2463 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2464 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2465
2466 =cut
2467 */
2468
2469 IV
2470 Perl_sv_2iv_flags(pTHX_ register SV *sv, I32 flags)
2471 {
2472     if (!sv)
2473         return 0;
2474     if (SvGMAGICAL(sv)) {
2475         if (flags & SV_GMAGIC)
2476             mg_get(sv);
2477         if (SvIOKp(sv))
2478             return SvIVX(sv);
2479         if (SvNOKp(sv)) {
2480             return I_V(SvNVX(sv));
2481         }
2482         if (SvPOKp(sv) && SvLEN(sv))
2483             return asIV(sv);
2484         if (!SvROK(sv)) {
2485             if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2486                 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
2487                     report_uninit(sv);
2488             }
2489             return 0;
2490         }
2491     }
2492     if (SvTHINKFIRST(sv)) {
2493         if (SvROK(sv)) {
2494           SV* tmpstr;
2495           if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
2496                 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv))))
2497               return SvIV(tmpstr);
2498           return PTR2IV(SvRV(sv));
2499         }
2500         if (SvIsCOW(sv)) {
2501             sv_force_normal_flags(sv, 0);
2502         }
2503         if (SvREADONLY(sv) && !SvOK(sv)) {
2504             if (ckWARN(WARN_UNINITIALIZED))
2505                 report_uninit(sv);
2506             return 0;
2507         }
2508     }
2509     if (SvIOKp(sv)) {
2510         if (SvIsUV(sv)) {
2511             return (IV)(SvUVX(sv));
2512         }
2513         else {
2514             return SvIVX(sv);
2515         }
2516     }
2517     if (SvNOKp(sv)) {
2518         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2519          * without also getting a cached IV/UV from it at the same time
2520          * (ie PV->NV conversion should detect loss of accuracy and cache
2521          * IV or UV at same time to avoid this.  NWC */
2522
2523         if (SvTYPE(sv) == SVt_NV)
2524             sv_upgrade(sv, SVt_PVNV);
2525
2526         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2527         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2528            certainly cast into the IV range at IV_MAX, whereas the correct
2529            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2530            cases go to UV */
2531         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2532             SvIV_set(sv, I_V(SvNVX(sv)));
2533             if (SvNVX(sv) == (NV) SvIVX(sv)
2534 #ifndef NV_PRESERVES_UV
2535                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2536                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2537                 /* Don't flag it as "accurately an integer" if the number
2538                    came from a (by definition imprecise) NV operation, and
2539                    we're outside the range of NV integer precision */
2540 #endif
2541                 ) {
2542                 SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2543                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2544                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2545                                       PTR2UV(sv),
2546                                       SvNVX(sv),
2547                                       SvIVX(sv)));
2548
2549             } else {
2550                 /* IV not precise.  No need to convert from PV, as NV
2551                    conversion would already have cached IV if it detected
2552                    that PV->IV would be better than PV->NV->IV
2553                    flags already correct - don't set public IOK.  */
2554                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2555                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2556                                       PTR2UV(sv),
2557                                       SvNVX(sv),
2558                                       SvIVX(sv)));
2559             }
2560             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2561                but the cast (NV)IV_MIN rounds to a the value less (more
2562                negative) than IV_MIN which happens to be equal to SvNVX ??
2563                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2564                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2565                (NV)UVX == NVX are both true, but the values differ. :-(
2566                Hopefully for 2s complement IV_MIN is something like
2567                0x8000000000000000 which will be exact. NWC */
2568         }
2569         else {
2570             SvUV_set(sv, U_V(SvNVX(sv)));
2571             if (
2572                 (SvNVX(sv) == (NV) SvUVX(sv))
2573 #ifndef  NV_PRESERVES_UV
2574                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2575                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2576                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2577                 /* Don't flag it as "accurately an integer" if the number
2578                    came from a (by definition imprecise) NV operation, and
2579                    we're outside the range of NV integer precision */
2580 #endif
2581                 )
2582                 SvIOK_on(sv);
2583             SvIsUV_on(sv);
2584           ret_iv_max:
2585             DEBUG_c(PerlIO_printf(Perl_debug_log,
2586                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2587                                   PTR2UV(sv),
2588                                   SvUVX(sv),
2589                                   SvUVX(sv)));
2590             return (IV)SvUVX(sv);
2591         }
2592     }
2593     else if (SvPOKp(sv) && SvLEN(sv)) {
2594         UV value;
2595         const int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2596         /* We want to avoid a possible problem when we cache an IV which
2597            may be later translated to an NV, and the resulting NV is not
2598            the same as the direct translation of the initial string
2599            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2600            be careful to ensure that the value with the .456 is around if the
2601            NV value is requested in the future).
2602         
2603            This means that if we cache such an IV, we need to cache the
2604            NV as well.  Moreover, we trade speed for space, and do not
2605            cache the NV if we are sure it's not needed.
2606          */
2607
2608         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2609         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2610              == IS_NUMBER_IN_UV) {
2611             /* It's definitely an integer, only upgrade to PVIV */
2612             if (SvTYPE(sv) < SVt_PVIV)
2613                 sv_upgrade(sv, SVt_PVIV);
2614             (void)SvIOK_on(sv);
2615         } else if (SvTYPE(sv) < SVt_PVNV)
2616             sv_upgrade(sv, SVt_PVNV);
2617
2618         /* If NV preserves UV then we only use the UV value if we know that
2619            we aren't going to call atof() below. If NVs don't preserve UVs
2620            then the value returned may have more precision than atof() will
2621            return, even though value isn't perfectly accurate.  */
2622         if ((numtype & (IS_NUMBER_IN_UV
2623 #ifdef NV_PRESERVES_UV
2624                         | IS_NUMBER_NOT_INT
2625 #endif
2626             )) == IS_NUMBER_IN_UV) {
2627             /* This won't turn off the public IOK flag if it was set above  */
2628             (void)SvIOKp_on(sv);
2629
2630             if (!(numtype & IS_NUMBER_NEG)) {
2631                 /* positive */;
2632                 if (value <= (UV)IV_MAX) {
2633                     SvIV_set(sv, (IV)value);
2634                 } else {
2635                     SvUV_set(sv, value);
2636                     SvIsUV_on(sv);
2637                 }
2638             } else {
2639                 /* 2s complement assumption  */
2640                 if (value <= (UV)IV_MIN) {
2641                     SvIV_set(sv, -(IV)value);
2642                 } else {
2643                     /* Too negative for an IV.  This is a double upgrade, but
2644                        I'm assuming it will be rare.  */
2645                     if (SvTYPE(sv) < SVt_PVNV)
2646                         sv_upgrade(sv, SVt_PVNV);
2647                     SvNOK_on(sv);
2648                     SvIOK_off(sv);
2649                     SvIOKp_on(sv);
2650                     SvNV_set(sv, -(NV)value);
2651                     SvIV_set(sv, IV_MIN);
2652                 }
2653             }
2654         }
2655         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2656            will be in the previous block to set the IV slot, and the next
2657            block to set the NV slot.  So no else here.  */
2658         
2659         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2660             != IS_NUMBER_IN_UV) {
2661             /* It wasn't an (integer that doesn't overflow the UV). */
2662             SvNV_set(sv, Atof(SvPVX(sv)));
2663
2664             if (! numtype && ckWARN(WARN_NUMERIC))
2665                 not_a_number(sv);
2666
2667 #if defined(USE_LONG_DOUBLE)
2668             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2669                                   PTR2UV(sv), SvNVX(sv)));
2670 #else
2671             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2672                                   PTR2UV(sv), SvNVX(sv)));
2673 #endif
2674
2675
2676 #ifdef NV_PRESERVES_UV
2677             (void)SvIOKp_on(sv);
2678             (void)SvNOK_on(sv);
2679             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2680                 SvIV_set(sv, I_V(SvNVX(sv)));
2681                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2682                     SvIOK_on(sv);
2683                 } else {
2684                     /* Integer is imprecise. NOK, IOKp */
2685                 }
2686                 /* UV will not work better than IV */
2687             } else {
2688                 if (SvNVX(sv) > (NV)UV_MAX) {
2689                     SvIsUV_on(sv);
2690                     /* Integer is inaccurate. NOK, IOKp, is UV */
2691                     SvUV_set(sv, UV_MAX);
2692                     SvIsUV_on(sv);
2693                 } else {
2694                     SvUV_set(sv, U_V(SvNVX(sv)));
2695                     /* 0xFFFFFFFFFFFFFFFF not an issue in here */
2696                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2697                         SvIOK_on(sv);
2698                         SvIsUV_on(sv);
2699                     } else {
2700                         /* Integer is imprecise. NOK, IOKp, is UV */
2701                         SvIsUV_on(sv);
2702                     }
2703                 }
2704                 goto ret_iv_max;
2705             }
2706 #else /* NV_PRESERVES_UV */
2707             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2708                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2709                 /* The IV slot will have been set from value returned by
2710                    grok_number above.  The NV slot has just been set using
2711                    Atof.  */
2712                 SvNOK_on(sv);
2713                 assert (SvIOKp(sv));
2714             } else {
2715                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2716                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2717                     /* Small enough to preserve all bits. */
2718                     (void)SvIOKp_on(sv);
2719                     SvNOK_on(sv);
2720                     SvIV_set(sv, I_V(SvNVX(sv)));
2721                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2722                         SvIOK_on(sv);
2723                     /* Assumption: first non-preserved integer is < IV_MAX,
2724                        this NV is in the preserved range, therefore: */
2725                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2726                           < (UV)IV_MAX)) {
2727                         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);
2728                     }
2729                 } else {
2730                     /* IN_UV NOT_INT
2731                          0      0       already failed to read UV.
2732                          0      1       already failed to read UV.
2733                          1      0       you won't get here in this case. IV/UV
2734                                         slot set, public IOK, Atof() unneeded.
2735                          1      1       already read UV.
2736                        so there's no point in sv_2iuv_non_preserve() attempting
2737                        to use atol, strtol, strtoul etc.  */
2738                     if (sv_2iuv_non_preserve (sv, numtype)
2739                         >= IS_NUMBER_OVERFLOW_IV)
2740                     goto ret_iv_max;
2741                 }
2742             }
2743 #endif /* NV_PRESERVES_UV */
2744         }
2745     } else  {
2746         if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
2747             report_uninit(sv);
2748         if (SvTYPE(sv) < SVt_IV)
2749             /* Typically the caller expects that sv_any is not NULL now.  */
2750             sv_upgrade(sv, SVt_IV);
2751         return 0;
2752     }
2753     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2754         PTR2UV(sv),SvIVX(sv)));
2755     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2756 }
2757
2758 /* sv_2uv() is now a macro using Perl_sv_2uv_flags();
2759  * this function provided for binary compatibility only
2760  */
2761
2762 UV
2763 Perl_sv_2uv(pTHX_ register SV *sv)
2764 {
2765     return sv_2uv_flags(sv, SV_GMAGIC);
2766 }
2767
2768 /*
2769 =for apidoc sv_2uv_flags
2770
2771 Return the unsigned integer value of an SV, doing any necessary string
2772 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2773 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2774
2775 =cut
2776 */
2777
2778 UV
2779 Perl_sv_2uv_flags(pTHX_ register SV *sv, I32 flags)
2780 {
2781     if (!sv)
2782         return 0;
2783     if (SvGMAGICAL(sv)) {
2784         if (flags & SV_GMAGIC)
2785             mg_get(sv);
2786         if (SvIOKp(sv))
2787             return SvUVX(sv);
2788         if (SvNOKp(sv))
2789             return U_V(SvNVX(sv));
2790         if (SvPOKp(sv) && SvLEN(sv))
2791             return asUV(sv);
2792         if (!SvROK(sv)) {
2793             if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2794                 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
2795                     report_uninit(sv);
2796             }
2797             return 0;
2798         }
2799     }
2800     if (SvTHINKFIRST(sv)) {
2801         if (SvROK(sv)) {
2802           SV* tmpstr;
2803           if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
2804                 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv))))
2805               return SvUV(tmpstr);
2806           return PTR2UV(SvRV(sv));
2807         }
2808         if (SvIsCOW(sv)) {
2809             sv_force_normal_flags(sv, 0);
2810         }
2811         if (SvREADONLY(sv) && !SvOK(sv)) {
2812             if (ckWARN(WARN_UNINITIALIZED))
2813                 report_uninit(sv);
2814             return 0;
2815         }
2816     }
2817     if (SvIOKp(sv)) {
2818         if (SvIsUV(sv)) {
2819             return SvUVX(sv);
2820         }
2821         else {
2822             return (UV)SvIVX(sv);
2823         }
2824     }
2825     if (SvNOKp(sv)) {
2826         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2827          * without also getting a cached IV/UV from it at the same time
2828          * (ie PV->NV conversion should detect loss of accuracy and cache
2829          * IV or UV at same time to avoid this. */
2830         /* IV-over-UV optimisation - choose to cache IV if possible */
2831
2832         if (SvTYPE(sv) == SVt_NV)
2833             sv_upgrade(sv, SVt_PVNV);
2834
2835         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2836         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2837             SvIV_set(sv, I_V(SvNVX(sv)));
2838             if (SvNVX(sv) == (NV) SvIVX(sv)
2839 #ifndef NV_PRESERVES_UV
2840                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2841                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2842                 /* Don't flag it as "accurately an integer" if the number
2843                    came from a (by definition imprecise) NV operation, and
2844                    we're outside the range of NV integer precision */
2845 #endif
2846                 ) {
2847                 SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2848                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2849                                       "0x%"UVxf" uv(%"NVgf" => %"IVdf") (precise)\n",
2850                                       PTR2UV(sv),
2851                                       SvNVX(sv),
2852                                       SvIVX(sv)));
2853
2854             } else {
2855                 /* IV not precise.  No need to convert from PV, as NV
2856                    conversion would already have cached IV if it detected
2857                    that PV->IV would be better than PV->NV->IV
2858                    flags already correct - don't set public IOK.  */
2859                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2860                                       "0x%"UVxf" uv(%"NVgf" => %"IVdf") (imprecise)\n",
2861                                       PTR2UV(sv),
2862                                       SvNVX(sv),
2863                                       SvIVX(sv)));
2864             }
2865             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2866                but the cast (NV)IV_MIN rounds to a the value less (more
2867                negative) than IV_MIN which happens to be equal to SvNVX ??
2868                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2869                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2870                (NV)UVX == NVX are both true, but the values differ. :-(
2871                Hopefully for 2s complement IV_MIN is something like
2872                0x8000000000000000 which will be exact. NWC */
2873         }
2874         else {
2875             SvUV_set(sv, U_V(SvNVX(sv)));
2876             if (
2877                 (SvNVX(sv) == (NV) SvUVX(sv))
2878 #ifndef  NV_PRESERVES_UV
2879                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2880                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2881                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2882                 /* Don't flag it as "accurately an integer" if the number
2883                    came from a (by definition imprecise) NV operation, and
2884                    we're outside the range of NV integer precision */
2885 #endif
2886                 )
2887                 SvIOK_on(sv);
2888             SvIsUV_on(sv);
2889             DEBUG_c(PerlIO_printf(Perl_debug_log,
2890                                   "0x%"UVxf" 2uv(%"UVuf" => %"IVdf") (as unsigned)\n",
2891                                   PTR2UV(sv),
2892                                   SvUVX(sv),
2893                                   SvUVX(sv)));
2894         }
2895     }
2896     else if (SvPOKp(sv) && SvLEN(sv)) {
2897         UV value;
2898         const int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2899
2900         /* We want to avoid a possible problem when we cache a UV which
2901            may be later translated to an NV, and the resulting NV is not
2902            the translation of the initial data.
2903         
2904            This means that if we cache such a UV, we need to cache the
2905            NV as well.  Moreover, we trade speed for space, and do not
2906            cache the NV if not needed.
2907          */
2908
2909         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2910         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2911              == IS_NUMBER_IN_UV) {
2912             /* It's definitely an integer, only upgrade to PVIV */
2913             if (SvTYPE(sv) < SVt_PVIV)
2914                 sv_upgrade(sv, SVt_PVIV);
2915             (void)SvIOK_on(sv);
2916         } else if (SvTYPE(sv) < SVt_PVNV)
2917             sv_upgrade(sv, SVt_PVNV);
2918
2919         /* If NV preserves UV then we only use the UV value if we know that
2920            we aren't going to call atof() below. If NVs don't preserve UVs
2921            then the value returned may have more precision than atof() will
2922            return, even though it isn't accurate.  */
2923         if ((numtype & (IS_NUMBER_IN_UV
2924 #ifdef NV_PRESERVES_UV
2925                         | IS_NUMBER_NOT_INT
2926 #endif
2927             )) == IS_NUMBER_IN_UV) {
2928             /* This won't turn off the public IOK flag if it was set above  */
2929             (void)SvIOKp_on(sv);
2930
2931             if (!(numtype & IS_NUMBER_NEG)) {
2932                 /* positive */;
2933                 if (value <= (UV)IV_MAX) {
2934                     SvIV_set(sv, (IV)value);
2935                 } else {
2936                     /* it didn't overflow, and it was positive. */
2937                     SvUV_set(sv, value);
2938                     SvIsUV_on(sv);
2939                 }
2940             } else {
2941                 /* 2s complement assumption  */
2942                 if (value <= (UV)IV_MIN) {
2943                     SvIV_set(sv, -(IV)value);
2944                 } else {
2945                     /* Too negative for an IV.  This is a double upgrade, but
2946                        I'm assuming it will be rare.  */
2947                     if (SvTYPE(sv) < SVt_PVNV)
2948                         sv_upgrade(sv, SVt_PVNV);
2949                     SvNOK_on(sv);
2950                     SvIOK_off(sv);
2951                     SvIOKp_on(sv);
2952                     SvNV_set(sv, -(NV)value);
2953                     SvIV_set(sv, IV_MIN);
2954                 }
2955             }
2956         }
2957         
2958         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2959             != IS_NUMBER_IN_UV) {
2960             /* It wasn't an integer, or it overflowed the UV. */
2961             SvNV_set(sv, Atof(SvPVX(sv)));
2962
2963             if (! numtype && ckWARN(WARN_NUMERIC))
2964                     not_a_number(sv);
2965
2966 #if defined(USE_LONG_DOUBLE)
2967             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%" PERL_PRIgldbl ")\n",
2968                                   PTR2UV(sv), SvNVX(sv)));
2969 #else
2970             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"NVgf")\n",
2971                                   PTR2UV(sv), SvNVX(sv)));
2972 #endif
2973
2974 #ifdef NV_PRESERVES_UV
2975             (void)SvIOKp_on(sv);
2976             (void)SvNOK_on(sv);
2977             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2978                 SvIV_set(sv, I_V(SvNVX(sv)));
2979                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2980                     SvIOK_on(sv);
2981                 } else {
2982                     /* Integer is imprecise. NOK, IOKp */
2983                 }
2984                 /* UV will not work better than IV */
2985             } else {
2986                 if (SvNVX(sv) > (NV)UV_MAX) {
2987                     SvIsUV_on(sv);
2988                     /* Integer is inaccurate. NOK, IOKp, is UV */
2989                     SvUV_set(sv, UV_MAX);
2990                     SvIsUV_on(sv);
2991                 } else {
2992                     SvUV_set(sv, U_V(SvNVX(sv)));
2993                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2994                        NV preservse UV so can do correct comparison.  */
2995                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2996                         SvIOK_on(sv);
2997                         SvIsUV_on(sv);
2998                     } else {
2999                         /* Integer is imprecise. NOK, IOKp, is UV */
3000                         SvIsUV_on(sv);
3001                     }
3002                 }
3003             }
3004 #else /* NV_PRESERVES_UV */
3005             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
3006                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
3007                 /* The UV slot will have been set from value returned by
3008                    grok_number above.  The NV slot has just been set using
3009                    Atof.  */
3010                 SvNOK_on(sv);
3011                 assert (SvIOKp(sv));
3012             } else {
3013                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
3014                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
3015                     /* Small enough to preserve all bits. */
3016                     (void)SvIOKp_on(sv);
3017                     SvNOK_on(sv);
3018                     SvIV_set(sv, I_V(SvNVX(sv)));
3019                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
3020                         SvIOK_on(sv);
3021                     /* Assumption: first non-preserved integer is < IV_MAX,
3022                        this NV is in the preserved range, therefore: */
3023                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
3024                           < (UV)IV_MAX)) {
3025                         Perl_croak(aTHX_ "sv_2uv 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);
3026                     }
3027                 } else
3028                     sv_2iuv_non_preserve (sv, numtype);
3029             }
3030 #endif /* NV_PRESERVES_UV */
3031         }
3032     }
3033     else  {
3034         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
3035             if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
3036                 report_uninit(sv);
3037         }
3038         if (SvTYPE(sv) < SVt_IV)
3039             /* Typically the caller expects that sv_any is not NULL now.  */
3040             sv_upgrade(sv, SVt_IV);
3041         return 0;
3042     }
3043
3044     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
3045                           PTR2UV(sv),SvUVX(sv)));
3046     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
3047 }
3048
3049 /*
3050 =for apidoc sv_2nv
3051
3052 Return the num value of an SV, doing any necessary string or integer
3053 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
3054 macros.
3055
3056 =cut
3057 */
3058
3059 NV
3060 Perl_sv_2nv(pTHX_ register SV *sv)
3061 {
3062     if (!sv)
3063         return 0.0;
3064     if (SvGMAGICAL(sv)) {
3065         mg_get(sv);
3066         if (SvNOKp(sv))
3067             return SvNVX(sv);
3068         if (SvPOKp(sv) && SvLEN(sv)) {
3069             if (ckWARN(WARN_NUMERIC) && !SvIOKp(sv) &&
3070                 !grok_number(SvPVX(sv), SvCUR(sv), NULL))
3071                 not_a_number(sv);
3072             return Atof(SvPVX(sv));
3073         }
3074         if (SvIOKp(sv)) {
3075             if (SvIsUV(sv))
3076                 return (NV)SvUVX(sv);
3077             else
3078                 return (NV)SvIVX(sv);
3079         }       
3080         if (!SvROK(sv)) {
3081             if (!(SvFLAGS(sv) & SVs_PADTMP)) {
3082                 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
3083                     report_uninit(sv);
3084             }
3085             return 0;
3086         }
3087     }
3088     if (SvTHINKFIRST(sv)) {
3089         if (SvROK(sv)) {
3090           SV* tmpstr;
3091           if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
3092                 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv))))
3093               return SvNV(tmpstr);
3094           return PTR2NV(SvRV(sv));
3095         }
3096         if (SvIsCOW(sv)) {
3097             sv_force_normal_flags(sv, 0);
3098         }
3099         if (SvREADONLY(sv) && !SvOK(sv)) {
3100             if (ckWARN(WARN_UNINITIALIZED))
3101                 report_uninit(sv);
3102             return 0.0;
3103         }
3104     }
3105     if (SvTYPE(sv) < SVt_NV) {
3106         if (SvTYPE(sv) == SVt_IV)
3107             sv_upgrade(sv, SVt_PVNV);
3108         else
3109             sv_upgrade(sv, SVt_NV);
3110 #ifdef USE_LONG_DOUBLE
3111         DEBUG_c({
3112             STORE_NUMERIC_LOCAL_SET_STANDARD();
3113             PerlIO_printf(Perl_debug_log,
3114                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
3115                           PTR2UV(sv), SvNVX(sv));
3116             RESTORE_NUMERIC_LOCAL();
3117         });
3118 #else
3119         DEBUG_c({
3120             STORE_NUMERIC_LOCAL_SET_STANDARD();
3121             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
3122                           PTR2UV(sv), SvNVX(sv));
3123             RESTORE_NUMERIC_LOCAL();
3124         });
3125 #endif
3126     }
3127     else if (SvTYPE(sv) < SVt_PVNV)
3128         sv_upgrade(sv, SVt_PVNV);
3129     if (SvNOKp(sv)) {
3130         return SvNVX(sv);
3131     }
3132     if (SvIOKp(sv)) {
3133         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
3134 #ifdef NV_PRESERVES_UV
3135         SvNOK_on(sv);
3136 #else
3137         /* Only set the public NV OK flag if this NV preserves the IV  */
3138         /* Check it's not 0xFFFFFFFFFFFFFFFF */
3139         if (SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
3140                        : (SvIVX(sv) == I_V(SvNVX(sv))))
3141             SvNOK_on(sv);
3142         else
3143             SvNOKp_on(sv);
3144 #endif
3145     }
3146     else if (SvPOKp(sv) && SvLEN(sv)) {
3147         UV value;
3148         const int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
3149         if (ckWARN(WARN_NUMERIC) && !SvIOKp(sv) && !numtype)
3150             not_a_number(sv);
3151 #ifdef NV_PRESERVES_UV
3152         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
3153             == IS_NUMBER_IN_UV) {
3154             /* It's definitely an integer */
3155             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
3156         } else
3157             SvNV_set(sv, Atof(SvPVX(sv)));
3158         SvNOK_on(sv);
3159 #else
3160         SvNV_set(sv, Atof(SvPVX(sv)));
3161         /* Only set the public NV OK flag if this NV preserves the value in
3162            the PV at least as well as an IV/UV would.
3163            Not sure how to do this 100% reliably. */
3164         /* if that shift count is out of range then Configure's test is
3165            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
3166            UV_BITS */
3167         if (((UV)1 << NV_PRESERVES_UV_BITS) >
3168             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
3169             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
3170         } else if (!(numtype & IS_NUMBER_IN_UV)) {
3171             /* Can't use strtol etc to convert this string, so don't try.
3172                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
3173             SvNOK_on(sv);
3174         } else {
3175             /* value has been set.  It may not be precise.  */
3176             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
3177                 /* 2s complement assumption for (UV)IV_MIN  */
3178                 SvNOK_on(sv); /* Integer is too negative.  */
3179             } else {
3180                 SvNOKp_on(sv);
3181                 SvIOKp_on(sv);
3182
3183                 if (numtype & IS_NUMBER_NEG) {
3184                     SvIV_set(sv, -(IV)value);
3185                 } else if (value <= (UV)IV_MAX) {
3186                     SvIV_set(sv, (IV)value);
3187                 } else {
3188                     SvUV_set(sv, value);
3189                     SvIsUV_on(sv);
3190                 }
3191
3192                 if (numtype & IS_NUMBER_NOT_INT) {
3193                     /* I believe that even if the original PV had decimals,
3194                        they are lost beyond the limit of the FP precision.
3195                        However, neither is canonical, so both only get p
3196                        flags.  NWC, 2000/11/25 */
3197                     /* Both already have p flags, so do nothing */
3198                 } else {
3199                     NV nv = SvNVX(sv);
3200                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
3201                         if (SvIVX(sv) == I_V(nv)) {
3202                             SvNOK_on(sv);
3203                             SvIOK_on(sv);
3204                         } else {
3205                             SvIOK_on(sv);
3206                             /* It had no "." so it must be integer.  */
3207                         }
3208                     } else {
3209                         /* between IV_MAX and NV(UV_MAX).
3210                            Could be slightly > UV_MAX */
3211
3212                         if (numtype & IS_NUMBER_NOT_INT) {
3213                             /* UV and NV both imprecise.  */
3214                         } else {
3215                             UV nv_as_uv = U_V(nv);
3216
3217                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
3218                                 SvNOK_on(sv);
3219                                 SvIOK_on(sv);
3220                             } else {
3221                                 SvIOK_on(sv);
3222                             }
3223                         }
3224                     }
3225                 }
3226             }
3227         }
3228 #endif /* NV_PRESERVES_UV */
3229     }
3230     else  {
3231         if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
3232             report_uninit(sv);
3233         if (SvTYPE(sv) < SVt_NV)
3234             /* Typically the caller expects that sv_any is not NULL now.  */
3235             /* XXX Ilya implies that this is a bug in callers that assume this
3236                and ideally should be fixed.  */
3237             sv_upgrade(sv, SVt_NV);
3238         return 0.0;
3239     }
3240 #if defined(USE_LONG_DOUBLE)
3241     DEBUG_c({
3242         STORE_NUMERIC_LOCAL_SET_STANDARD();
3243         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
3244                       PTR2UV(sv), SvNVX(sv));
3245         RESTORE_NUMERIC_LOCAL();
3246     });
3247 #else
3248     DEBUG_c({
3249         STORE_NUMERIC_LOCAL_SET_STANDARD();
3250         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
3251                       PTR2UV(sv), SvNVX(sv));
3252         RESTORE_NUMERIC_LOCAL();
3253     });
3254 #endif
3255     return SvNVX(sv);
3256 }
3257
3258 /* asIV(): extract an integer from the string value of an SV.
3259  * Caller must validate PVX  */
3260
3261 STATIC IV
3262 S_asIV(pTHX_ SV *sv)
3263 {
3264     UV value;
3265     int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
3266
3267     if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
3268         == IS_NUMBER_IN_UV) {
3269         /* It's definitely an integer */
3270         if (numtype & IS_NUMBER_NEG) {
3271             if (value < (UV)IV_MIN)
3272                 return -(IV)value;
3273         } else {
3274             if (value < (UV)IV_MAX)
3275                 return (IV)value;
3276         }
3277     }
3278     if (!numtype) {
3279         if (ckWARN(WARN_NUMERIC))
3280             not_a_number(sv);
3281     }
3282     return I_V(Atof(SvPVX(sv)));
3283 }
3284
3285 /* asUV(): extract an unsigned integer from the string value of an SV
3286  * Caller must validate PVX  */
3287
3288 STATIC UV
3289 S_asUV(pTHX_ SV *sv)
3290 {
3291     UV value;
3292     int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
3293
3294     if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
3295         == IS_NUMBER_IN_UV) {
3296         /* It's definitely an integer */
3297         if (!(numtype & IS_NUMBER_NEG))
3298             return value;
3299     }
3300     if (!numtype) {
3301         if (ckWARN(WARN_NUMERIC))
3302             not_a_number(sv);
3303     }
3304     return U_V(Atof(SvPVX(sv)));
3305 }
3306
3307 /*
3308 =for apidoc sv_2pv_nolen
3309
3310 Like C<sv_2pv()>, but doesn't return the length too. You should usually
3311 use the macro wrapper C<SvPV_nolen(sv)> instead.
3312 =cut
3313 */
3314
3315 char *
3316 Perl_sv_2pv_nolen(pTHX_ register SV *sv)
3317 {
3318     STRLEN n_a;
3319     return sv_2pv(sv, &n_a);
3320 }
3321
3322 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
3323  * UV as a string towards the end of buf, and return pointers to start and
3324  * end of it.
3325  *
3326  * We assume that buf is at least TYPE_CHARS(UV) long.
3327  */
3328
3329 static char *
3330 uiv_2buf(char *buf, IV iv, UV uv, int is_uv, char **peob)
3331 {
3332     char *ptr = buf + TYPE_CHARS(UV);
3333     char *ebuf = ptr;
3334     int sign;
3335
3336     if (is_uv)
3337         sign = 0;
3338     else if (iv >= 0) {
3339         uv = iv;
3340         sign = 0;
3341     } else {
3342         uv = -iv;
3343         sign = 1;
3344     }
3345     do {
3346         *--ptr = '0' + (char)(uv % 10);
3347     } while (uv /= 10);
3348     if (sign)
3349         *--ptr = '-';
3350     *peob = ebuf;
3351     return ptr;
3352 }
3353
3354 /* sv_2pv() is now a macro using Perl_sv_2pv_flags();
3355  * this function provided for binary compatibility only
3356  */
3357
3358 char *
3359 Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp)
3360 {
3361     return sv_2pv_flags(sv, lp, SV_GMAGIC);
3362 }
3363
3364 /*
3365 =for apidoc sv_2pv_flags
3366
3367 Returns a pointer to the string value of an SV, and sets *lp to its length.
3368 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
3369 if necessary.
3370 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
3371 usually end up here too.
3372
3373 =cut
3374 */
3375
3376 char *
3377 Perl_sv_2pv_flags(pTHX_ register SV *sv, STRLEN *lp, I32 flags)
3378 {
3379     register char *s;
3380     int olderrno;
3381     SV *tsv, *origsv;
3382     char tbuf[64];      /* Must fit sprintf/Gconvert of longest IV/NV */
3383     char *tmpbuf = tbuf;
3384
3385     if (!sv) {
3386         *lp = 0;
3387         return (char *)"";
3388     }
3389     if (SvGMAGICAL(sv)) {
3390         if (flags & SV_GMAGIC)
3391             mg_get(sv);
3392         if (SvPOKp(sv)) {
3393             *lp = SvCUR(sv);
3394             return SvPVX(sv);
3395         }
3396         if (SvIOKp(sv)) {
3397             if (SvIsUV(sv))
3398                 (void)sprintf(tmpbuf,"%"UVuf, (UV)SvUVX(sv));
3399             else
3400                 (void)sprintf(tmpbuf,"%"IVdf, (IV)SvIVX(sv));
3401             tsv = Nullsv;
3402             goto tokensave;
3403         }
3404         if (SvNOKp(sv)) {
3405             Gconvert(SvNVX(sv), NV_DIG, 0, tmpbuf);
3406             tsv = Nullsv;
3407             goto tokensave;
3408         }
3409         if (!SvROK(sv)) {
3410             if (!(SvFLAGS(sv) & SVs_PADTMP)) {
3411                 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
3412                     report_uninit(sv);
3413             }
3414             *lp = 0;
3415             return (char *)"";
3416         }
3417     }
3418     if (SvTHINKFIRST(sv)) {
3419         if (SvROK(sv)) {
3420             SV* tmpstr;
3421             register const char *typestr;
3422             if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,string)) &&
3423                 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
3424                 char *pv = SvPV(tmpstr, *lp);
3425                 if (SvUTF8(tmpstr))
3426                     SvUTF8_on(sv);
3427                 else
3428                     SvUTF8_off(sv);
3429                 return pv;
3430             }
3431             origsv = sv;
3432             sv = (SV*)SvRV(sv);
3433             if (!sv)
3434                 typestr = "NULLREF";
3435             else {
3436                 MAGIC *mg;
3437                 
3438                 switch (SvTYPE(sv)) {
3439                 case SVt_PVMG:
3440                     if ( ((SvFLAGS(sv) &
3441                            (SVs_OBJECT|SVf_OK|SVs_GMG|SVs_SMG|SVs_RMG))
3442                           == (SVs_OBJECT|SVs_SMG))
3443                          && (mg = mg_find(sv, PERL_MAGIC_qr))) {
3444                         const regexp *re = (regexp *)mg->mg_obj;
3445
3446                         if (!mg->mg_ptr) {
3447                             const char *fptr = "msix";
3448                             char reflags[6];
3449                             char ch;
3450                             int left = 0;
3451                             int right = 4;
3452                             char need_newline = 0;
3453                             U16 reganch = (U16)((re->reganch & PMf_COMPILETIME) >> 12);
3454
3455                             while((ch = *fptr++)) {
3456                                 if(reganch & 1) {
3457                                     reflags[left++] = ch;
3458                                 }
3459                                 else {
3460                                     reflags[right--] = ch;
3461                                 }
3462                                 reganch >>= 1;
3463                             }
3464                             if(left != 4) {
3465                                 reflags[left] = '-';
3466                                 left = 5;
3467                             }
3468
3469                             mg->mg_len = re->prelen + 4 + left;
3470                             /*
3471                              * If /x was used, we have to worry about a regex
3472                              * ending with a comment later being embedded
3473                              * within another regex. If so, we don't want this
3474                              * regex's "commentization" to leak out to the
3475                              * right part of the enclosing regex, we must cap
3476                              * it with a newline.
3477                              *
3478                              * So, if /x was used, we scan backwards from the
3479                              * end of the regex. If we find a '#' before we
3480                              * find a newline, we need to add a newline
3481                              * ourself. If we find a '\n' first (or if we
3482                              * don't find '#' or '\n'), we don't need to add
3483                              * anything.  -jfriedl
3484                              */
3485                             if (PMf_EXTENDED & re->reganch)
3486                             {
3487                                 const char *endptr = re->precomp + re->prelen;
3488                                 while (endptr >= re->precomp)
3489                                 {
3490                                     const char c = *(endptr--);
3491                                     if (c == '\n')
3492                                         break; /* don't need another */
3493                                     if (c == '#') {
3494                                         /* we end while in a comment, so we
3495                                            need a newline */
3496                                         mg->mg_len++; /* save space for it */
3497                                         need_newline = 1; /* note to add it */
3498                                         break;
3499                                     }
3500                                 }
3501                             }
3502
3503                             New(616, mg->mg_ptr, mg->mg_len + 1 + left, char);
3504                             Copy("(?", mg->mg_ptr, 2, char);
3505                             Copy(reflags, mg->mg_ptr+2, left, char);
3506                             Copy(":", mg->mg_ptr+left+2, 1, char);
3507                             Copy(re->precomp, mg->mg_ptr+3+left, re->prelen, char);
3508                             if (need_newline)
3509                                 mg->mg_ptr[mg->mg_len - 2] = '\n';
3510                             mg->mg_ptr[mg->mg_len - 1] = ')';
3511                             mg->mg_ptr[mg->mg_len] = 0;
3512                         }
3513                         PL_reginterp_cnt += re->program[0].next_off;
3514
3515                         if (re->reganch & ROPT_UTF8)
3516                             SvUTF8_on(origsv);
3517                         else
3518                             SvUTF8_off(origsv);
3519                         *lp = mg->mg_len;
3520                         return mg->mg_ptr;
3521                     }
3522                                         /* Fall through */
3523                 case SVt_NULL:
3524                 case SVt_IV:
3525                 case SVt_NV:
3526                 case SVt_RV:
3527                 case SVt_PV:
3528                 case SVt_PVIV:
3529                 case SVt_PVNV:
3530                 case SVt_PVBM:  typestr = SvROK(sv) ? "REF" : "SCALAR"; break;
3531                 case SVt_PVLV:  typestr = SvROK(sv) ? "REF"
3532                                 /* tied lvalues should appear to be
3533                                  * scalars for backwards compatitbility */
3534                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
3535                                     ? "SCALAR" : "LVALUE";      break;
3536                 case SVt_PVAV:  typestr = "ARRAY";      break;
3537                 case SVt_PVHV:  typestr = "HASH";       break;
3538                 case SVt_PVCV:  typestr = "CODE";       break;
3539                 case SVt_PVGV:  typestr = "GLOB";       break;
3540                 case SVt_PVFM:  typestr = "FORMAT";     break;
3541                 case SVt_PVIO:  typestr = "IO";         break;
3542                 default:        typestr = "UNKNOWN";    break;
3543                 }
3544                 tsv = NEWSV(0,0);
3545                 if (SvOBJECT(sv)) {
3546                     const char *name = HvNAME_get(SvSTASH(sv));
3547                     Perl_sv_setpvf(aTHX_ tsv, "%s=%s(0x%"UVxf")",
3548                                    name ? name : "__ANON__" , typestr, PTR2UV(sv));
3549                 }
3550                 else
3551                     Perl_sv_setpvf(aTHX_ tsv, "%s(0x%"UVxf")", typestr, PTR2UV(sv));
3552                 goto tokensaveref;
3553             }
3554             *lp = strlen(typestr);
3555             return (char *)typestr;
3556         }
3557         if (SvREADONLY(sv) && !SvOK(sv)) {
3558             if (ckWARN(WARN_UNINITIALIZED))
3559                 report_uninit(sv);
3560             *lp = 0;
3561             return (char *)"";
3562         }
3563     }
3564     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
3565         /* I'm assuming that if both IV and NV are equally valid then
3566            converting the IV is going to be more efficient */
3567         const U32 isIOK = SvIOK(sv);
3568         const U32 isUIOK = SvIsUV(sv);
3569         char buf[TYPE_CHARS(UV)];
3570         char *ebuf, *ptr;
3571
3572         if (SvTYPE(sv) < SVt_PVIV)
3573             sv_upgrade(sv, SVt_PVIV);
3574         if (isUIOK)
3575             ptr = uiv_2buf(buf, 0, SvUVX(sv), 1, &ebuf);
3576         else
3577             ptr = uiv_2buf(buf, SvIVX(sv), 0, 0, &ebuf);
3578         SvGROW(sv, (STRLEN)(ebuf - ptr + 1));   /* inlined from sv_setpvn */
3579         Move(ptr,SvPVX(sv),ebuf - ptr,char);
3580         SvCUR_set(sv, ebuf - ptr);
3581         s = SvEND(sv);
3582         *s = '\0';
3583         if (isIOK)
3584             SvIOK_on(sv);
3585         else
3586             SvIOKp_on(sv);
3587         if (isUIOK)
3588             SvIsUV_on(sv);
3589     }
3590     else if (SvNOKp(sv)) {
3591         if (SvTYPE(sv) < SVt_PVNV)
3592             sv_upgrade(sv, SVt_PVNV);
3593         /* The +20 is pure guesswork.  Configure test needed. --jhi */
3594         SvGROW(sv, NV_DIG + 20);
3595         s = SvPVX(sv);
3596         olderrno = errno;       /* some Xenix systems wipe out errno here */
3597 #ifdef apollo
3598         if (SvNVX(sv) == 0.0)
3599             (void)strcpy(s,"0");
3600         else
3601 #endif /*apollo*/
3602         {
3603             Gconvert(SvNVX(sv), NV_DIG, 0, s);
3604         }
3605         errno = olderrno;
3606 #ifdef FIXNEGATIVEZERO
3607         if (*s == '-' && s[1] == '0' && !s[2])
3608             strcpy(s,"0");
3609 #endif
3610         while (*s) s++;
3611 #ifdef hcx
3612         if (s[-1] == '.')
3613             *--s = '\0';
3614 #endif
3615     }
3616     else {
3617         if (ckWARN(WARN_UNINITIALIZED)
3618             && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
3619             report_uninit(sv);
3620         *lp = 0;
3621         if (SvTYPE(sv) < SVt_PV)
3622             /* Typically the caller expects that sv_any is not NULL now.  */
3623             sv_upgrade(sv, SVt_PV);
3624         return (char *)"";
3625     }
3626     *lp = s - SvPVX(sv);
3627     SvCUR_set(sv, *lp);
3628     SvPOK_on(sv);
3629     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3630                           PTR2UV(sv),SvPVX(sv)));
3631     return SvPVX(sv);
3632
3633   tokensave:
3634     if (SvROK(sv)) {    /* XXX Skip this when sv_pvn_force calls */
3635         /* Sneaky stuff here */
3636
3637       tokensaveref:
3638         if (!tsv)
3639             tsv = newSVpv(tmpbuf, 0);
3640         sv_2mortal(tsv);
3641         *lp = SvCUR(tsv);
3642         return SvPVX(tsv);
3643     }
3644     else {
3645         dVAR;
3646         STRLEN len;
3647         const char *t;
3648
3649         if (tsv) {
3650             sv_2mortal(tsv);
3651             t = SvPVX(tsv);
3652             len = SvCUR(tsv);
3653         }
3654         else {
3655             t = tmpbuf;
3656             len = strlen(tmpbuf);
3657         }
3658 #ifdef FIXNEGATIVEZERO
3659         if (len == 2 && t[0] == '-' && t[1] == '0') {
3660             t = "0";
3661             len = 1;
3662         }
3663 #endif
3664         (void)SvUPGRADE(sv, SVt_PV);
3665         *lp = len;
3666         s = SvGROW(sv, len + 1);
3667         SvCUR_set(sv, len);
3668         SvPOKp_on(sv);
3669         return strcpy(s, t);
3670     }
3671 }
3672
3673 /*
3674 =for apidoc sv_copypv
3675
3676 Copies a stringified representation of the source SV into the
3677 destination SV.  Automatically performs any necessary mg_get and
3678 coercion of numeric values into strings.  Guaranteed to preserve
3679 UTF-8 flag even from overloaded objects.  Similar in nature to
3680 sv_2pv[_flags] but operates directly on an SV instead of just the
3681 string.  Mostly uses sv_2pv_flags to do its work, except when that
3682 would lose the UTF-8'ness of the PV.
3683
3684 =cut
3685 */
3686
3687 void
3688 Perl_sv_copypv(pTHX_ SV *dsv, register SV *ssv)
3689 {
3690     STRLEN len;
3691     char *s;
3692     s = SvPV(ssv,len);
3693     sv_setpvn(dsv,s,len);
3694     if (SvUTF8(ssv))
3695         SvUTF8_on(dsv);
3696     else
3697         SvUTF8_off(dsv);
3698 }
3699
3700 /*
3701 =for apidoc sv_2pvbyte_nolen
3702
3703 Return a pointer to the byte-encoded representation of the SV.
3704 May cause the SV to be downgraded from UTF-8 as a side-effect.
3705
3706 Usually accessed via the C<SvPVbyte_nolen> macro.
3707
3708 =cut
3709 */
3710
3711 char *
3712 Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv)
3713 {
3714     STRLEN n_a;
3715     return sv_2pvbyte(sv, &n_a);
3716 }
3717
3718 /*
3719 =for apidoc sv_2pvbyte
3720
3721 Return a pointer to the byte-encoded representation of the SV, and set *lp
3722 to its length.  May cause the SV to be downgraded from UTF-8 as a
3723 side-effect.
3724
3725 Usually accessed via the C<SvPVbyte> macro.
3726
3727 =cut
3728 */
3729
3730 char *
3731 Perl_sv_2pvbyte(pTHX_ register SV *sv, STRLEN *lp)
3732 {
3733     sv_utf8_downgrade(sv,0);
3734     return SvPV(sv,*lp);
3735 }
3736
3737 /*
3738 =for apidoc sv_2pvutf8_nolen
3739
3740 Return a pointer to the UTF-8-encoded representation of the SV.
3741 May cause the SV to be upgraded to UTF-8 as a side-effect.
3742
3743 Usually accessed via the C<SvPVutf8_nolen> macro.
3744
3745 =cut
3746 */
3747
3748 char *
3749 Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv)
3750 {
3751     STRLEN n_a;
3752     return sv_2pvutf8(sv, &n_a);
3753 }
3754
3755 /*
3756 =for apidoc sv_2pvutf8
3757
3758 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3759 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3760
3761 Usually accessed via the C<SvPVutf8> macro.
3762
3763 =cut
3764 */
3765
3766 char *
3767 Perl_sv_2pvutf8(pTHX_ register SV *sv, STRLEN *lp)
3768 {
3769     sv_utf8_upgrade(sv);
3770     return SvPV(sv,*lp);
3771 }
3772
3773 /*
3774 =for apidoc sv_2bool
3775
3776 This function is only called on magical items, and is only used by
3777 sv_true() or its macro equivalent.
3778
3779 =cut
3780 */
3781
3782 bool
3783 Perl_sv_2bool(pTHX_ register SV *sv)
3784 {
3785     if (SvGMAGICAL(sv))
3786         mg_get(sv);
3787
3788     if (!SvOK(sv))
3789         return 0;
3790     if (SvROK(sv)) {
3791         SV* tmpsv;
3792         if (SvAMAGIC(sv) && (tmpsv=AMG_CALLun(sv,bool_)) &&
3793                 (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3794             return (bool)SvTRUE(tmpsv);
3795       return SvRV(sv) != 0;
3796     }
3797     if (SvPOKp(sv)) {
3798         register XPV* Xpvtmp;
3799         if ((Xpvtmp = (XPV*)SvANY(sv)) &&
3800                 (*sv->sv_u.sv_pv > '0' ||
3801                 Xpvtmp->xpv_cur > 1 ||
3802                 (Xpvtmp->xpv_cur && *sv->sv_u.sv_pv != '0')))
3803             return 1;
3804         else
3805             return 0;
3806     }
3807     else {
3808         if (SvIOKp(sv))
3809             return SvIVX(sv) != 0;
3810         else {
3811             if (SvNOKp(sv))
3812                 return SvNVX(sv) != 0.0;
3813             else
3814                 return FALSE;
3815         }
3816     }
3817 }
3818
3819 /* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
3820  * this function provided for binary compatibility only
3821  */
3822
3823
3824 STRLEN
3825 Perl_sv_utf8_upgrade(pTHX_ register SV *sv)
3826 {
3827     return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
3828 }
3829
3830 /*
3831 =for apidoc sv_utf8_upgrade
3832
3833 Converts the PV of an SV to its UTF-8-encoded form.
3834 Forces the SV to string form if it is not already.
3835 Always sets the SvUTF8 flag to avoid future validity checks even
3836 if all the bytes have hibit clear.
3837
3838 This is not as a general purpose byte encoding to Unicode interface:
3839 use the Encode extension for that.
3840
3841 =for apidoc sv_utf8_upgrade_flags
3842
3843 Converts the PV of an SV to its UTF-8-encoded form.
3844 Forces the SV to string form if it is not already.
3845 Always sets the SvUTF8 flag to avoid future validity checks even
3846 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
3847 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
3848 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3849
3850 This is not as a general purpose byte encoding to Unicode interface:
3851 use the Encode extension for that.
3852
3853 =cut
3854 */
3855
3856 STRLEN
3857 Perl_sv_utf8_upgrade_flags(pTHX_ register SV *sv, I32 flags)
3858 {
3859     if (sv == &PL_sv_undef)
3860         return 0;
3861     if (!SvPOK(sv)) {
3862         STRLEN len = 0;
3863         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3864             (void) sv_2pv_flags(sv,&len, flags);
3865             if (SvUTF8(sv))
3866                 return len;
3867         } else {
3868             (void) SvPV_force(sv,len);
3869         }
3870     }
3871
3872     if (SvUTF8(sv)) {
3873         return SvCUR(sv);
3874     }
3875
3876     if (SvIsCOW(sv)) {
3877         sv_force_normal_flags(sv, 0);
3878     }
3879
3880     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING))
3881         sv_recode_to_utf8(sv, PL_encoding);
3882     else { /* Assume Latin-1/EBCDIC */
3883         /* This function could be much more efficient if we
3884          * had a FLAG in SVs to signal if there are any hibit
3885          * chars in the PV.  Given that there isn't such a flag
3886          * make the loop as fast as possible. */
3887         U8 *s = (U8 *) SvPVX(sv);
3888         U8 *e = (U8 *) SvEND(sv);
3889         U8 *t = s;
3890         int hibit = 0;
3891         
3892         while (t < e) {
3893             U8 ch = *t++;
3894             if ((hibit = !NATIVE_IS_INVARIANT(ch)))
3895                 break;
3896         }
3897         if (hibit) {
3898             STRLEN len = SvCUR(sv) + 1; /* Plus the \0 */
3899             s = bytes_to_utf8((U8*)s, &len);
3900
3901             SvPV_free(sv); /* No longer using what was there before. */
3902
3903             SvPV_set(sv, (char*)s);
3904             SvCUR_set(sv, len - 1);
3905             SvLEN_set(sv, len); /* No longer know the real size. */
3906         }
3907         /* Mark as UTF-8 even if no hibit - saves scanning loop */
3908         SvUTF8_on(sv);
3909     }
3910     return SvCUR(sv);
3911 }
3912
3913 /*
3914 =for apidoc sv_utf8_downgrade
3915
3916 Attempts to convert the PV of an SV from characters to bytes.
3917 If the PV contains a character beyond byte, this conversion will fail;
3918 in this case, either returns false or, if C<fail_ok> is not
3919 true, croaks.
3920
3921 This is not as a general purpose Unicode to byte encoding interface:
3922 use the Encode extension for that.
3923
3924 =cut
3925 */
3926
3927 bool
3928 Perl_sv_utf8_downgrade(pTHX_ register SV* sv, bool fail_ok)
3929 {
3930     if (SvPOKp(sv) && SvUTF8(sv)) {
3931         if (SvCUR(sv)) {
3932             U8 *s;
3933             STRLEN len;
3934
3935             if (SvIsCOW(sv)) {
3936                 sv_force_normal_flags(sv, 0);
3937             }
3938             s = (U8 *) SvPV(sv, len);
3939             if (!utf8_to_bytes(s, &len)) {
3940                 if (fail_ok)
3941                     return FALSE;
3942                 else {
3943                     if (PL_op)
3944                         Perl_croak(aTHX_ "Wide character in %s",
3945                                    OP_DESC(PL_op));
3946                     else
3947                         Perl_croak(aTHX_ "Wide character");
3948                 }
3949             }
3950             SvCUR_set(sv, len);
3951         }
3952     }
3953     SvUTF8_off(sv);
3954     return TRUE;
3955 }
3956
3957 /*
3958 =for apidoc sv_utf8_encode
3959
3960 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3961 flag off so that it looks like octets again.
3962
3963 =cut
3964 */
3965
3966 void
3967 Perl_sv_utf8_encode(pTHX_ register SV *sv)
3968 {
3969     (void) sv_utf8_upgrade(sv);
3970     if (SvIsCOW(sv)) {
3971         sv_force_normal_flags(sv, 0);
3972     }
3973     if (SvREADONLY(sv)) {
3974         Perl_croak(aTHX_ PL_no_modify);
3975     }
3976     SvUTF8_off(sv);
3977 }
3978
3979 /*
3980 =for apidoc sv_utf8_decode
3981
3982 If the PV of the SV is an octet sequence in UTF-8
3983 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3984 so that it looks like a character. If the PV contains only single-byte
3985 characters, the C<SvUTF8> flag stays being off.
3986 Scans PV for validity and returns false if the PV is invalid UTF-8.
3987
3988 =cut
3989 */
3990
3991 bool
3992 Perl_sv_utf8_decode(pTHX_ register SV *sv)
3993 {
3994     if (SvPOKp(sv)) {
3995         U8 *c;
3996         U8 *e;
3997
3998         /* The octets may have got themselves encoded - get them back as
3999          * bytes
4000          */
4001         if (!sv_utf8_downgrade(sv, TRUE))
4002             return FALSE;
4003
4004         /* it is actually just a matter of turning the utf8 flag on, but
4005          * we want to make sure everything inside is valid utf8 first.
4006          */
4007         c = (U8 *) SvPVX(sv);
4008         if (!is_utf8_string(c, SvCUR(sv)+1))
4009             return FALSE;
4010         e = (U8 *) SvEND(sv);
4011         while (c < e) {
4012             U8 ch = *c++;
4013             if (!UTF8_IS_INVARIANT(ch)) {
4014                 SvUTF8_on(sv);
4015                 break;
4016             }
4017         }
4018     }
4019     return TRUE;
4020 }
4021
4022 /* sv_setsv() is now a macro using Perl_sv_setsv_flags();
4023  * this function provided for binary compatibility only
4024  */
4025
4026 void
4027 Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr)
4028 {
4029     sv_setsv_flags(dstr, sstr, SV_GMAGIC);
4030 }
4031
4032 /*
4033 =for apidoc sv_setsv
4034
4035 Copies the contents of the source SV C<ssv> into the destination SV
4036 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
4037 function if the source SV needs to be reused. Does not handle 'set' magic.
4038 Loosely speaking, it performs a copy-by-value, obliterating any previous
4039 content of the destination.
4040
4041 You probably want to use one of the assortment of wrappers, such as
4042 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4043 C<SvSetMagicSV_nosteal>.
4044
4045 =for apidoc sv_setsv_flags
4046
4047 Copies the contents of the source SV C<ssv> into the destination SV
4048 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
4049 function if the source SV needs to be reused. Does not handle 'set' magic.
4050 Loosely speaking, it performs a copy-by-value, obliterating any previous
4051 content of the destination.
4052 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
4053 C<ssv> if appropriate, else not. If the C<flags> parameter has the
4054 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
4055 and C<sv_setsv_nomg> are implemented in terms of this function.
4056
4057 You probably want to use one of the assortment of wrappers, such as
4058 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4059 C<SvSetMagicSV_nosteal>.
4060
4061 This is the primary function for copying scalars, and most other
4062 copy-ish functions and macros use this underneath.
4063
4064 =cut
4065 */
4066
4067 void
4068 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV *sstr, I32 flags)
4069 {
4070     register U32 sflags;
4071     register int dtype;
4072     register int stype;
4073
4074     if (sstr == dstr)
4075         return;
4076     SV_CHECK_THINKFIRST_COW_DROP(dstr);
4077     if (!sstr)
4078         sstr = &PL_sv_undef;
4079     stype = SvTYPE(sstr);
4080     dtype = SvTYPE(dstr);
4081
4082     SvAMAGIC_off(dstr);
4083     if ( SvVOK(dstr) )
4084     {
4085         /* need to nuke the magic */
4086         mg_free(dstr);
4087         SvRMAGICAL_off(dstr);
4088     }
4089
4090     /* There's a lot of redundancy below but we're going for speed here */
4091
4092     switch (stype) {
4093     case SVt_NULL:
4094       undef_sstr:
4095         if (dtype != SVt_PVGV) {
4096             (void)SvOK_off(dstr);
4097             return;
4098         }
4099         break;
4100     case SVt_IV:
4101         if (SvIOK(sstr)) {
4102             switch (dtype) {
4103             case SVt_NULL:
4104                 sv_upgrade(dstr, SVt_IV);
4105                 break;
4106             case SVt_NV:
4107                 sv_upgrade(dstr, SVt_PVNV);
4108                 break;
4109             case SVt_RV:
4110             case SVt_PV:
4111                 sv_upgrade(dstr, SVt_PVIV);
4112                 break;
4113             }
4114             (void)SvIOK_only(dstr);
4115             SvIV_set(dstr,  SvIVX(sstr));
4116             if (SvIsUV(sstr))
4117                 SvIsUV_on(dstr);
4118             if (SvTAINTED(sstr))
4119                 SvTAINT(dstr);
4120             return;
4121         }
4122         goto undef_sstr;
4123
4124     case SVt_NV:
4125         if (SvNOK(sstr)) {
4126             switch (dtype) {
4127             case SVt_NULL:
4128             case SVt_IV:
4129                 sv_upgrade(dstr, SVt_NV);
4130                 break;
4131             case SVt_RV:
4132             case SVt_PV:
4133             case SVt_PVIV:
4134                 sv_upgrade(dstr, SVt_PVNV);
4135                 break;
4136             }
4137             SvNV_set(dstr, SvNVX(sstr));
4138             (void)SvNOK_only(dstr);
4139             if (SvTAINTED(sstr))
4140                 SvTAINT(dstr);
4141             return;
4142         }
4143         goto undef_sstr;
4144
4145     case SVt_RV:
4146         if (dtype < SVt_RV)
4147             sv_upgrade(dstr, SVt_RV);
4148         else if (dtype == SVt_PVGV &&
4149                  SvROK(sstr) && SvTYPE(SvRV(sstr)) == SVt_PVGV) {
4150             sstr = SvRV(sstr);
4151             if (sstr == dstr) {
4152                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4153                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4154                 {
4155                     GvIMPORTED_on(dstr);
4156                 }
4157                 GvMULTI_on(dstr);
4158                 return;
4159             }
4160             goto glob_assign;
4161         }
4162         break;
4163     case SVt_PVFM:
4164 #ifdef PERL_COPY_ON_WRITE
4165         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
4166             if (dtype < SVt_PVIV)
4167                 sv_upgrade(dstr, SVt_PVIV);
4168             break;
4169         }
4170         /* Fall through */
4171 #endif
4172     case SVt_PV:
4173         if (dtype < SVt_PV)
4174             sv_upgrade(dstr, SVt_PV);
4175         break;
4176     case SVt_PVIV:
4177         if (dtype < SVt_PVIV)
4178             sv_upgrade(dstr, SVt_PVIV);
4179         break;
4180     case SVt_PVNV:
4181         if (dtype < SVt_PVNV)
4182             sv_upgrade(dstr, SVt_PVNV);
4183         break;
4184     case SVt_PVAV:
4185     case SVt_PVHV:
4186     case SVt_PVCV:
4187     case SVt_PVIO:
4188         {
4189         const char * const type = sv_reftype(sstr,0);
4190         if (PL_op)
4191             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_NAME(PL_op));
4192         else
4193             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4194         }
4195         break;
4196
4197     case SVt_PVGV:
4198         if (dtype <= SVt_PVGV) {
4199   glob_assign:
4200             if (dtype != SVt_PVGV) {
4201                 const char * const name = GvNAME(sstr);
4202                 const STRLEN len = GvNAMELEN(sstr);
4203                 /* don't upgrade SVt_PVLV: it can hold a glob */
4204                 if (dtype != SVt_PVLV)
4205                     sv_upgrade(dstr, SVt_PVGV);
4206                 sv_magic(dstr, dstr, PERL_MAGIC_glob, Nullch, 0);
4207                 GvSTASH(dstr) = (HV*)SvREFCNT_inc(GvSTASH(sstr));
4208                 GvNAME(dstr) = savepvn(name, len);
4209                 GvNAMELEN(dstr) = len;
4210                 SvFAKE_on(dstr);        /* can coerce to non-glob */
4211             }
4212             /* ahem, death to those who redefine active sort subs */
4213             else if (PL_curstackinfo->si_type == PERLSI_SORT
4214                      && GvCV(dstr) && PL_sortcop == CvSTART(GvCV(dstr)))
4215                 Perl_croak(aTHX_ "Can't redefine active sort subroutine %s",
4216                       GvNAME(dstr));
4217
4218 #ifdef GV_UNIQUE_CHECK
4219                 if (GvUNIQUE((GV*)dstr)) {
4220                     Perl_croak(aTHX_ PL_no_modify);
4221                 }
4222 #endif
4223
4224             (void)SvOK_off(dstr);
4225             GvINTRO_off(dstr);          /* one-shot flag */
4226             gp_free((GV*)dstr);
4227             GvGP(dstr) = gp_ref(GvGP(sstr));
4228             if (SvTAINTED(sstr))
4229                 SvTAINT(dstr);
4230             if (GvIMPORTED(dstr) != GVf_IMPORTED
4231                 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4232             {
4233                 GvIMPORTED_on(dstr);
4234             }
4235             GvMULTI_on(dstr);
4236             return;
4237         }
4238         /* FALL THROUGH */
4239
4240     default:
4241         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4242             mg_get(sstr);
4243             if ((int)SvTYPE(sstr) != stype) {
4244                 stype = SvTYPE(sstr);
4245                 if (stype == SVt_PVGV && dtype <= SVt_PVGV)
4246                     goto glob_assign;
4247             }
4248         }
4249         if (stype == SVt_PVLV)
4250             (void)SvUPGRADE(dstr, SVt_PVNV);
4251         else
4252             (void)SvUPGRADE(dstr, (U32)stype);
4253     }
4254
4255     sflags = SvFLAGS(sstr);
4256
4257     if (sflags & SVf_ROK) {
4258         if (dtype >= SVt_PV) {
4259             if (dtype == SVt_PVGV) {
4260                 SV *sref = SvREFCNT_inc(SvRV(sstr));
4261                 SV *dref = 0;
4262                 const int intro = GvINTRO(dstr);
4263
4264 #ifdef GV_UNIQUE_CHECK
4265                 if (GvUNIQUE((GV*)dstr)) {
4266                     Perl_croak(aTHX_ PL_no_modify);
4267                 }
4268 #endif
4269
4270                 if (intro) {
4271                     GvINTRO_off(dstr);  /* one-shot flag */
4272                     GvLINE(dstr) = CopLINE(PL_curcop);
4273                     GvEGV(dstr) = (GV*)dstr;
4274                 }
4275                 GvMULTI_on(dstr);
4276                 switch (SvTYPE(sref)) {
4277                 case SVt_PVAV:
4278                     if (intro)
4279                         SAVEGENERICSV(GvAV(dstr));
4280                     else
4281                         dref = (SV*)GvAV(dstr);
4282                     GvAV(dstr) = (AV*)sref;
4283                     if (!GvIMPORTED_AV(dstr)
4284                         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4285                     {
4286                         GvIMPORTED_AV_on(dstr);
4287                     }
4288                     break;
4289                 case SVt_PVHV:
4290                     if (intro)
4291                         SAVEGENERICSV(GvHV(dstr));
4292                     else
4293                         dref = (SV*)GvHV(dstr);
4294                     GvHV(dstr) = (HV*)sref;
4295                     if (!GvIMPORTED_HV(dstr)
4296                         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4297                     {
4298                         GvIMPORTED_HV_on(dstr);
4299                     }
4300                     break;
4301                 case SVt_PVCV:
4302                     if (intro) {
4303                         if (GvCVGEN(dstr) && GvCV(dstr) != (CV*)sref) {
4304                             SvREFCNT_dec(GvCV(dstr));
4305                             GvCV(dstr) = Nullcv;
4306                             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4307                             PL_sub_generation++;
4308                         }
4309                         SAVEGENERICSV(GvCV(dstr));
4310                     }
4311                     else
4312                         dref = (SV*)GvCV(dstr);
4313                     if (GvCV(dstr) != (CV*)sref) {
4314                         CV* cv = GvCV(dstr);
4315                         if (cv) {
4316                             if (!GvCVGEN((GV*)dstr) &&
4317                                 (CvROOT(cv) || CvXSUB(cv)))
4318                             {
4319                                 /* ahem, death to those who redefine
4320                                  * active sort subs */
4321                                 if (PL_curstackinfo->si_type == PERLSI_SORT &&
4322                                       PL_sortcop == CvSTART(cv))
4323                                     Perl_croak(aTHX_
4324                                     "Can't redefine active sort subroutine %s",
4325                                           GvENAME((GV*)dstr));
4326                                 /* Redefining a sub - warning is mandatory if
4327                                    it was a const and its value changed. */
4328                                 if (ckWARN(WARN_REDEFINE)
4329                                     || (CvCONST(cv)
4330                                         && (!CvCONST((CV*)sref)
4331                                             || sv_cmp(cv_const_sv(cv),
4332                                                       cv_const_sv((CV*)sref)))))
4333                                 {
4334                                     Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
4335                                         CvCONST(cv)
4336                                         ? "Constant subroutine %s::%s redefined"
4337                                         : "Subroutine %s::%s redefined",
4338                                         HvNAME_get(GvSTASH((GV*)dstr)),
4339                                         GvENAME((GV*)dstr));
4340                                 }
4341                             }
4342                             if (!intro)
4343                                 cv_ckproto(cv, (GV*)dstr,
4344                                         SvPOK(sref) ? SvPVX(sref) : Nullch);
4345                         }
4346                         GvCV(dstr) = (CV*)sref;
4347                         GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4348                         GvASSUMECV_on(dstr);
4349                         PL_sub_generation++;
4350                     }
4351                     if (!GvIMPORTED_CV(dstr)
4352                         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4353                     {
4354                         GvIMPORTED_CV_on(dstr);
4355                     }
4356                     break;
4357                 case SVt_PVIO:
4358                     if (intro)
4359                         SAVEGENERICSV(GvIOp(dstr));
4360                     else
4361                         dref = (SV*)GvIOp(dstr);
4362                     GvIOp(dstr) = (IO*)sref;
4363                     break;
4364                 case SVt_PVFM:
4365                     if (intro)
4366                         SAVEGENERICSV(GvFORM(dstr));
4367                     else
4368                         dref = (SV*)GvFORM(dstr);
4369                     GvFORM(dstr) = (CV*)sref;
4370                     break;
4371                 default:
4372                     if (intro)
4373                         SAVEGENERICSV(GvSV(dstr));
4374                     else
4375                         dref = (SV*)GvSV(dstr);
4376                     GvSV(dstr) = sref;
4377                     if (!GvIMPORTED_SV(dstr)
4378                         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4379                     {
4380                         GvIMPORTED_SV_on(dstr);
4381                     }
4382                     break;
4383                 }
4384                 if (dref)
4385                     SvREFCNT_dec(dref);
4386                 if (SvTAINTED(sstr))
4387                     SvTAINT(dstr);
4388                 return;
4389             }
4390             if (SvPVX(dstr)) {
4391                 SvPV_free(dstr);
4392                 SvLEN_set(dstr, 0);
4393                 SvCUR_set(dstr, 0);
4394             }
4395         }
4396         (void)SvOK_off(dstr);
4397         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4398         SvROK_on(dstr);
4399         if (sflags & SVp_NOK) {
4400             SvNOKp_on(dstr);
4401             /* Only set the public OK flag if the source has public OK.  */
4402             if (sflags & SVf_NOK)
4403                 SvFLAGS(dstr) |= SVf_NOK;
4404             SvNV_set(dstr, SvNVX(sstr));
4405         }
4406         if (sflags & SVp_IOK) {
4407             (void)SvIOKp_on(dstr);
4408             if (sflags & SVf_IOK)
4409                 SvFLAGS(dstr) |= SVf_IOK;
4410             if (sflags & SVf_IVisUV)
4411                 SvIsUV_on(dstr);
4412             SvIV_set(dstr, SvIVX(sstr));
4413         }
4414         if (SvAMAGIC(sstr)) {
4415             SvAMAGIC_on(dstr);
4416         }
4417     }
4418     else if (sflags & SVp_POK) {
4419         bool isSwipe = 0;
4420
4421         /*
4422          * Check to see if we can just swipe the string.  If so, it's a
4423          * possible small lose on short strings, but a big win on long ones.
4424          * It might even be a win on short strings if SvPVX(dstr)
4425          * has to be allocated and SvPVX(sstr) has to be freed.
4426          */
4427
4428         /* Whichever path we take through the next code, we want this true,
4429            and doing it now facilitates the COW check.  */
4430         (void)SvPOK_only(dstr);
4431
4432         if (
4433 #ifdef PERL_COPY_ON_WRITE
4434             (sflags & (SVf_FAKE | SVf_READONLY)) != (SVf_FAKE | SVf_READONLY)
4435             &&
4436 #endif
4437             !(isSwipe =
4438                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4439                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4440                  (!(flags & SV_NOSTEAL)) &&
4441                                         /* and we're allowed to steal temps */
4442                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4443                  SvLEN(sstr)    &&        /* and really is a string */
4444                                 /* and won't be needed again, potentially */
4445               !(PL_op && PL_op->op_type == OP_AASSIGN))
4446 #ifdef PERL_COPY_ON_WRITE
4447             && !((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4448                  && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4449                  && SvTYPE(sstr) >= SVt_PVIV)
4450 #endif
4451             ) {
4452             /* Failed the swipe test, and it's not a shared hash key either.
4453                Have to copy the string.  */
4454             STRLEN len = SvCUR(sstr);
4455             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4456             Move(SvPVX(sstr),SvPVX(dstr),len,char);
4457             SvCUR_set(dstr, len);
4458             *SvEND(dstr) = '\0';
4459         } else {
4460             /* If PERL_COPY_ON_WRITE is not defined, then isSwipe will always
4461                be true in here.  */
4462 #ifdef PERL_COPY_ON_WRITE
4463             /* Either it's a shared hash key, or it's suitable for
4464                copy-on-write or we can swipe the string.  */
4465             if (DEBUG_C_TEST) {
4466                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4467                 sv_dump(sstr);
4468                 sv_dump(dstr);
4469             }
4470             if (!isSwipe) {
4471                 /* I believe I should acquire a global SV mutex if
4472                    it's a COW sv (not a shared hash key) to stop
4473                    it going un copy-on-write.
4474                    If the source SV has gone un copy on write between up there
4475                    and down here, then (assert() that) it is of the correct
4476                    form to make it copy on write again */
4477                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4478                     != (SVf_FAKE | SVf_READONLY)) {
4479                     SvREADONLY_on(sstr);
4480                     SvFAKE_on(sstr);
4481                     /* Make the source SV into a loop of 1.
4482                        (about to become 2) */
4483                     SV_COW_NEXT_SV_SET(sstr, sstr);
4484                 }
4485             }
4486 #endif
4487             /* Initial code is common.  */
4488             if (SvPVX(dstr)) {          /* we know that dtype >= SVt_PV */
4489                 if (SvOOK(dstr)) {
4490                     SvFLAGS(dstr) &= ~SVf_OOK;
4491                     Safefree(SvPVX(dstr) - SvIVX(dstr));
4492                 }
4493                 else if (SvLEN(dstr))
4494                     Safefree(SvPVX(dstr));
4495             }
4496
4497 #ifdef PERL_COPY_ON_WRITE
4498             if (!isSwipe) {
4499                 /* making another shared SV.  */
4500                 STRLEN cur = SvCUR(sstr);
4501                 STRLEN len = SvLEN(sstr);
4502                 assert (SvTYPE(dstr) >= SVt_PVIV);
4503                 if (len) {
4504                     /* SvIsCOW_normal */
4505                     /* splice us in between source and next-after-source.  */
4506                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4507                     SV_COW_NEXT_SV_SET(sstr, dstr);
4508                     SvPV_set(dstr, SvPVX(sstr));
4509                 } else {
4510                     /* SvIsCOW_shared_hash */
4511                     UV hash = SvUVX(sstr);
4512                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4513                                           "Copy on write: Sharing hash\n"));
4514                     SvPV_set(dstr,
4515                              sharepvn(SvPVX(sstr),
4516                                       (sflags & SVf_UTF8?-cur:cur), hash));
4517                     SvUV_set(dstr, hash);
4518                 }
4519                 SvLEN_set(dstr, len);
4520                 SvCUR_set(dstr, cur);
4521                 SvREADONLY_on(dstr);
4522                 SvFAKE_on(dstr);
4523                 /* Relesase a global SV mutex.  */
4524             }
4525             else
4526 #endif
4527                 {       /* Passes the swipe test.  */
4528                 SvPV_set(dstr, SvPVX(sstr));
4529                 SvLEN_set(dstr, SvLEN(sstr));
4530                 SvCUR_set(dstr, SvCUR(sstr));
4531
4532                 SvTEMP_off(dstr);
4533                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4534                 SvPV_set(sstr, Nullch);
4535                 SvLEN_set(sstr, 0);
4536                 SvCUR_set(sstr, 0);
4537                 SvTEMP_off(sstr);
4538             }
4539         }
4540         if (sflags & SVf_UTF8)
4541             SvUTF8_on(dstr);
4542         /*SUPPRESS 560*/
4543         if (sflags & SVp_NOK) {
4544             SvNOKp_on(dstr);
4545             if (sflags & SVf_NOK)
4546                 SvFLAGS(dstr) |= SVf_NOK;
4547             SvNV_set(dstr, SvNVX(sstr));
4548         }
4549         if (sflags & SVp_IOK) {
4550             (void)SvIOKp_on(dstr);
4551             if (sflags & SVf_IOK)
4552                 SvFLAGS(dstr) |= SVf_IOK;
4553             if (sflags & SVf_IVisUV)
4554                 SvIsUV_on(dstr);
4555             SvIV_set(dstr, SvIVX(sstr));
4556         }
4557         if (SvVOK(sstr)) {
4558             MAGIC *smg = mg_find(sstr,PERL_MAGIC_vstring);
4559             sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4560                         smg->mg_ptr, smg->mg_len);
4561             SvRMAGICAL_on(dstr);
4562         }
4563     }
4564     else if (sflags & SVp_IOK) {
4565         if (sflags & SVf_IOK)
4566             (void)SvIOK_only(dstr);
4567         else {
4568             (void)SvOK_off(dstr);
4569             (void)SvIOKp_on(dstr);
4570         }
4571         /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4572         if (sflags & SVf_IVisUV)
4573             SvIsUV_on(dstr);
4574         SvIV_set(dstr, SvIVX(sstr));
4575         if (sflags & SVp_NOK) {
4576             if (sflags & SVf_NOK)
4577                 (void)SvNOK_on(dstr);
4578             else
4579                 (void)SvNOKp_on(dstr);
4580             SvNV_set(dstr, SvNVX(sstr));
4581         }
4582     }
4583     else if (sflags & SVp_NOK) {
4584         if (sflags & SVf_NOK)
4585             (void)SvNOK_only(dstr);
4586         else {
4587             (void)SvOK_off(dstr);
4588             SvNOKp_on(dstr);
4589         }
4590         SvNV_set(dstr, SvNVX(sstr));
4591     }
4592     else {
4593         if (dtype == SVt_PVGV) {
4594             if (ckWARN(WARN_MISC))
4595                 Perl_warner(aTHX_ packWARN(WARN_MISC), "Undefined value assigned to typeglob");
4596         }
4597         else
4598             (void)SvOK_off(dstr);
4599     }
4600     if (SvTAINTED(sstr))
4601         SvTAINT(dstr);
4602 }
4603
4604 /*
4605 =for apidoc sv_setsv_mg
4606
4607 Like C<sv_setsv>, but also handles 'set' magic.
4608
4609 =cut
4610 */
4611
4612 void
4613 Perl_sv_setsv_mg(pTHX_ SV *dstr, register SV *sstr)
4614 {
4615     sv_setsv(dstr,sstr);
4616     SvSETMAGIC(dstr);
4617 }
4618
4619 #ifdef PERL_COPY_ON_WRITE
4620 SV *
4621 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4622 {
4623     STRLEN cur = SvCUR(sstr);
4624     STRLEN len = SvLEN(sstr);
4625     register char *new_pv;
4626
4627     if (DEBUG_C_TEST) {
4628         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4629                       sstr, dstr);
4630         sv_dump(sstr);
4631         if (dstr)
4632                     sv_dump(dstr);
4633     }
4634
4635     if (dstr) {
4636         if (SvTHINKFIRST(dstr))
4637             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4638         else if (SvPVX(dstr))
4639             Safefree(SvPVX(dstr));
4640     }
4641     else
4642         new_SV(dstr);
4643     (void)SvUPGRADE (dstr, SVt_PVIV);
4644
4645     assert (SvPOK(sstr));
4646     assert (SvPOKp(sstr));
4647     assert (!SvIOK(sstr));
4648     assert (!SvIOKp(sstr));
4649     assert (!SvNOK(sstr));
4650     assert (!SvNOKp(sstr));
4651
4652     if (SvIsCOW(sstr)) {
4653
4654         if (SvLEN(sstr) == 0) {
4655             /* source is a COW shared hash key.  */
4656             UV hash = SvUVX(sstr);
4657             DEBUG_C(PerlIO_printf(Perl_debug_log,
4658                                   "Fast copy on write: Sharing hash\n"));
4659             SvUV_set(dstr, hash);
4660             new_pv = sharepvn(SvPVX(sstr), (SvUTF8(sstr)?-cur:cur), hash);
4661             goto common_exit;
4662         }
4663         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4664     } else {
4665         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4666         (void)SvUPGRADE (sstr, SVt_PVIV);
4667         SvREADONLY_on(sstr);
4668         SvFAKE_on(sstr);
4669         DEBUG_C(PerlIO_printf(Perl_debug_log,
4670                               "Fast copy on write: Converting sstr to COW\n"));
4671         SV_COW_NEXT_SV_SET(dstr, sstr);
4672     }
4673     SV_COW_NEXT_SV_SET(sstr, dstr);
4674     new_pv = SvPVX(sstr);
4675
4676   common_exit:
4677     SvPV_set(dstr, new_pv);
4678     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4679     if (SvUTF8(sstr))
4680         SvUTF8_on(dstr);
4681     SvLEN_set(dstr, len);
4682     SvCUR_set(dstr, cur);
4683     if (DEBUG_C_TEST) {
4684         sv_dump(dstr);
4685     }
4686     return dstr;
4687 }
4688 #endif
4689
4690 /*
4691 =for apidoc sv_setpvn
4692
4693 Copies a string into an SV.  The C<len> parameter indicates the number of
4694 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4695 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4696
4697 =cut
4698 */
4699
4700 void
4701 Perl_sv_setpvn(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
4702 {
4703     register char *dptr;
4704
4705     SV_CHECK_THINKFIRST_COW_DROP(sv);
4706     if (!ptr) {
4707         (void)SvOK_off(sv);
4708         return;
4709     }
4710     else {
4711         /* len is STRLEN which is unsigned, need to copy to signed */
4712         const IV iv = len;
4713         if (iv < 0)
4714             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4715     }
4716     (void)SvUPGRADE(sv, SVt_PV);
4717
4718     SvGROW(sv, len + 1);
4719     dptr = SvPVX(sv);
4720     Move(ptr,dptr,len,char);
4721     dptr[len] = '\0';
4722     SvCUR_set(sv, len);
4723     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4724     SvTAINT(sv);
4725 }
4726
4727 /*
4728 =for apidoc sv_setpvn_mg
4729
4730 Like C<sv_setpvn>, but also handles 'set' magic.
4731
4732 =cut
4733 */
4734
4735 void
4736 Perl_sv_setpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
4737 {
4738     sv_setpvn(sv,ptr,len);
4739     SvSETMAGIC(sv);
4740 }
4741
4742 /*
4743 =for apidoc sv_setpv
4744
4745 Copies a string into an SV.  The string must be null-terminated.  Does not
4746 handle 'set' magic.  See C<sv_setpv_mg>.
4747
4748 =cut
4749 */
4750
4751 void
4752 Perl_sv_setpv(pTHX_ register SV *sv, register const char *ptr)
4753 {
4754     register STRLEN len;
4755
4756     SV_CHECK_THINKFIRST_COW_DROP(sv);
4757     if (!ptr) {
4758         (void)SvOK_off(sv);
4759         return;
4760     }
4761     len = strlen(ptr);
4762     (void)SvUPGRADE(sv, SVt_PV);
4763
4764     SvGROW(sv, len + 1);
4765     Move(ptr,SvPVX(sv),len+1,char);
4766     SvCUR_set(sv, len);
4767     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4768     SvTAINT(sv);
4769 }
4770
4771 /*
4772 =for apidoc sv_setpv_mg
4773
4774 Like C<sv_setpv>, but also handles 'set' magic.
4775
4776 =cut
4777 */
4778
4779 void
4780 Perl_sv_setpv_mg(pTHX_ register SV *sv, register const char *ptr)
4781 {
4782     sv_setpv(sv,ptr);
4783     SvSETMAGIC(sv);
4784 }
4785
4786 /*
4787 =for apidoc sv_usepvn
4788
4789 Tells an SV to use C<ptr> to find its string value.  Normally the string is
4790 stored inside the SV but sv_usepvn allows the SV to use an outside string.
4791 The C<ptr> should point to memory that was allocated by C<malloc>.  The
4792 string length, C<len>, must be supplied.  This function will realloc the
4793 memory pointed to by C<ptr>, so that pointer should not be freed or used by
4794 the programmer after giving it to sv_usepvn.  Does not handle 'set' magic.
4795 See C<sv_usepvn_mg>.
4796
4797 =cut
4798 */
4799
4800 void
4801 Perl_sv_usepvn(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
4802 {
4803     SV_CHECK_THINKFIRST_COW_DROP(sv);
4804     (void)SvUPGRADE(sv, SVt_PV);
4805     if (!ptr) {
4806         (void)SvOK_off(sv);
4807         return;
4808     }
4809     if (SvPVX(sv))
4810         SvPV_free(sv);
4811     Renew(ptr, len+1, char);
4812     SvPV_set(sv, ptr);
4813     SvCUR_set(sv, len);
4814     SvLEN_set(sv, len+1);
4815     *SvEND(sv) = '\0';
4816     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4817     SvTAINT(sv);
4818 }
4819
4820 /*
4821 =for apidoc sv_usepvn_mg
4822
4823 Like C<sv_usepvn>, but also handles 'set' magic.
4824
4825 =cut
4826 */
4827
4828 void
4829 Perl_sv_usepvn_mg(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
4830 {
4831     sv_usepvn(sv,ptr,len);
4832     SvSETMAGIC(sv);
4833 }
4834
4835 #ifdef PERL_COPY_ON_WRITE
4836 /* Need to do this *after* making the SV normal, as we need the buffer
4837    pointer to remain valid until after we've copied it.  If we let go too early,
4838    another thread could invalidate it by unsharing last of the same hash key
4839    (which it can do by means other than releasing copy-on-write Svs)
4840    or by changing the other copy-on-write SVs in the loop.  */
4841 STATIC void
4842 S_sv_release_COW(pTHX_ register SV *sv, char *pvx, STRLEN cur, STRLEN len,
4843                  U32 hash, SV *after)
4844 {
4845     if (len) { /* this SV was SvIsCOW_normal(sv) */
4846          /* we need to find the SV pointing to us.  */
4847         SV *current = SV_COW_NEXT_SV(after);
4848
4849         if (current == sv) {
4850             /* The SV we point to points back to us (there were only two of us
4851                in the loop.)
4852                Hence other SV is no longer copy on write either.  */
4853             SvFAKE_off(after);
4854             SvREADONLY_off(after);
4855         } else {
4856             /* We need to follow the pointers around the loop.  */
4857             SV *next;
4858             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4859                 assert (next);
4860                 current = next;
4861                  /* don't loop forever if the structure is bust, and we have
4862                     a pointer into a closed loop.  */
4863                 assert (current != after);
4864                 assert (SvPVX(current) == pvx);
4865             }
4866             /* Make the SV before us point to the SV after us.  */
4867             SV_COW_NEXT_SV_SET(current, after);
4868         }
4869     } else {
4870         unsharepvn(pvx, SvUTF8(sv) ? -(I32)cur : cur, hash);
4871     }
4872 }
4873
4874 int
4875 Perl_sv_release_IVX(pTHX_ register SV *sv)
4876 {
4877     if (SvIsCOW(sv))
4878         sv_force_normal_flags(sv, 0);
4879     SvOOK_off(sv);
4880     return 0;
4881 }
4882 #endif
4883 /*
4884 =for apidoc sv_force_normal_flags
4885
4886 Undo various types of fakery on an SV: if the PV is a shared string, make
4887 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4888 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4889 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4890 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4891 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4892 set to some other value.) In addition, the C<flags> parameter gets passed to
4893 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4894 with flags set to 0.
4895
4896 =cut
4897 */
4898
4899 void
4900 Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags)
4901 {
4902 #ifdef PERL_COPY_ON_WRITE
4903     if (SvREADONLY(sv)) {
4904         /* At this point I believe I should acquire a global SV mutex.  */
4905         if (SvFAKE(sv)) {
4906             char *pvx = SvPVX(sv);
4907             STRLEN len = SvLEN(sv);
4908             STRLEN cur = SvCUR(sv);
4909             U32 hash = SvUVX(sv);
4910             SV *next = SV_COW_NEXT_SV(sv);   /* next COW sv in the loop. */
4911             if (DEBUG_C_TEST) {
4912                 PerlIO_printf(Perl_debug_log,
4913                               "Copy on write: Force normal %ld\n",
4914                               (long) flags);
4915                 sv_dump(sv);
4916             }
4917             SvFAKE_off(sv);
4918             SvREADONLY_off(sv);
4919             /* This SV doesn't own the buffer, so need to New() a new one:  */
4920             SvPV_set(sv, (char*)0);
4921             SvLEN_set(sv, 0);
4922             if (flags & SV_COW_DROP_PV) {
4923                 /* OK, so we don't need to copy our buffer.  */
4924                 SvPOK_off(sv);
4925             } else {
4926                 SvGROW(sv, cur + 1);
4927                 Move(pvx,SvPVX(sv),cur,char);
4928                 SvCUR_set(sv, cur);
4929                 *SvEND(sv) = '\0';
4930             }
4931             sv_release_COW(sv, pvx, cur, len, hash, next);
4932             if (DEBUG_C_TEST) {
4933                 sv_dump(sv);
4934             }
4935         }
4936         else if (IN_PERL_RUNTIME)
4937             Perl_croak(aTHX_ PL_no_modify);
4938         /* At this point I believe that I can drop the global SV mutex.  */
4939     }
4940 #else
4941     if (SvREADONLY(sv)) {
4942         if (SvFAKE(sv)) {
4943             char *pvx = SvPVX(sv);
4944             int is_utf8 = SvUTF8(sv);
4945             STRLEN len = SvCUR(sv);
4946             U32 hash   = SvUVX(sv);
4947             SvFAKE_off(sv);
4948             SvREADONLY_off(sv);
4949             SvPV_set(sv, (char*)0);
4950             SvLEN_set(sv, 0);
4951             SvGROW(sv, len + 1);
4952             Move(pvx,SvPVX(sv),len,char);
4953             *SvEND(sv) = '\0';
4954             unsharepvn(pvx, is_utf8 ? -(I32)len : len, hash);
4955         }
4956         else if (IN_PERL_RUNTIME)
4957             Perl_croak(aTHX_ PL_no_modify);
4958     }
4959 #endif
4960     if (SvROK(sv))
4961         sv_unref_flags(sv, flags);
4962     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4963         sv_unglob(sv);
4964 }
4965
4966 /*
4967 =for apidoc sv_force_normal
4968
4969 Undo various types of fakery on an SV: if the PV is a shared string, make
4970 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4971 an xpvmg. See also C<sv_force_normal_flags>.
4972
4973 =cut
4974 */
4975
4976 void
4977 Perl_sv_force_normal(pTHX_ register SV *sv)
4978 {
4979     sv_force_normal_flags(sv, 0);
4980 }
4981
4982 /*
4983 =for apidoc sv_chop
4984
4985 Efficient removal of characters from the beginning of the string buffer.
4986 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4987 the string buffer.  The C<ptr> becomes the first character of the adjusted
4988 string. Uses the "OOK hack".
4989 Beware: after this function returns, C<ptr> and SvPVX(sv) may no longer
4990 refer to the same chunk of data.
4991
4992 =cut
4993 */
4994
4995 void
4996 Perl_sv_chop(pTHX_ register SV *sv, register const char *ptr)
4997 {
4998     register STRLEN delta;
4999     if (!ptr || !SvPOKp(sv))
5000         return;
5001     delta = ptr - SvPVX(sv);
5002     SV_CHECK_THINKFIRST(sv);
5003     if (SvTYPE(sv) < SVt_PVIV)
5004         sv_upgrade(sv,SVt_PVIV);
5005
5006     if (!SvOOK(sv)) {
5007         if (!SvLEN(sv)) { /* make copy of shared string */
5008             const char *pvx = SvPVX(sv);
5009             STRLEN len = SvCUR(sv);
5010             SvGROW(sv, len + 1);
5011             Move(pvx,SvPVX(sv),len,char);
5012             *SvEND(sv) = '\0';
5013         }
5014         SvIV_set(sv, 0);
5015         /* Same SvOOK_on but SvOOK_on does a SvIOK_off
5016            and we do that anyway inside the SvNIOK_off
5017         */
5018         SvFLAGS(sv) |= SVf_OOK;
5019     }
5020     SvNIOK_off(sv);
5021     SvLEN_set(sv, SvLEN(sv) - delta);
5022     SvCUR_set(sv, SvCUR(sv) - delta);
5023     SvPV_set(sv, SvPVX(sv) + delta);
5024     SvIV_set(sv, SvIVX(sv) + delta);
5025 }
5026
5027 /* sv_catpvn() is now a macro using Perl_sv_catpvn_flags();
5028  * this function provided for binary compatibility only
5029  */
5030
5031 void
5032 Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
5033 {
5034     sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
5035 }
5036
5037 /*
5038 =for apidoc sv_catpvn
5039
5040 Concatenates the string onto the end of the string which is in the SV.  The
5041 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5042 status set, then the bytes appended should be valid UTF-8.
5043 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5044
5045 =for apidoc sv_catpvn_flags
5046
5047 Concatenates the string onto the end of the string which is in the SV.  The
5048 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5049 status set, then the bytes appended should be valid UTF-8.
5050 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
5051 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5052 in terms of this function.
5053
5054 =cut
5055 */
5056
5057 void
5058 Perl_sv_catpvn_flags(pTHX_ register SV *dsv, register const char *sstr, register STRLEN slen, I32 flags)
5059 {
5060     STRLEN dlen;
5061     const char *dstr = SvPV_force_flags(dsv, dlen, flags);
5062
5063     SvGROW(dsv, dlen + slen + 1);
5064     if (sstr == dstr)
5065         sstr = SvPVX(dsv);
5066     Move(sstr, SvPVX(dsv) + dlen, slen, char);
5067     SvCUR_set(dsv, SvCUR(dsv) + slen);
5068     *SvEND(dsv) = '\0';
5069     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5070     SvTAINT(dsv);
5071 }
5072
5073 /*
5074 =for apidoc sv_catpvn_mg
5075
5076 Like C<sv_catpvn>, but also handles 'set' magic.
5077
5078 =cut
5079 */
5080
5081 void
5082 Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
5083 {
5084     sv_catpvn(sv,ptr,len);
5085     SvSETMAGIC(sv);
5086 }
5087
5088 /* sv_catsv() is now a macro using Perl_sv_catsv_flags();
5089  * this function provided for binary compatibility only
5090  */
5091
5092 void
5093 Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr)
5094 {
5095     sv_catsv_flags(dstr, sstr, SV_GMAGIC);
5096 }
5097
5098 /*
5099 =for apidoc sv_catsv
5100
5101 Concatenates the string from SV C<ssv> onto the end of the string in
5102 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
5103 not 'set' magic.  See C<sv_catsv_mg>.
5104
5105 =for apidoc sv_catsv_flags
5106
5107 Concatenates the string from SV C<ssv> onto the end of the string in
5108 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
5109 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
5110 and C<sv_catsv_nomg> are implemented in terms of this function.
5111
5112 =cut */
5113
5114 void
5115 Perl_sv_catsv_flags(pTHX_ SV *dsv, register SV *ssv, I32 flags)
5116 {
5117     char *spv;
5118     STRLEN slen;
5119     if (!ssv)
5120         return;
5121     if ((spv = SvPV(ssv, slen))) {
5122         /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
5123             gcc version 2.95.2 20000220 (Debian GNU/Linux) for
5124             Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
5125             get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
5126             dsv->sv_flags doesn't have that bit set.
5127                 Andy Dougherty  12 Oct 2001
5128         */
5129         I32 sutf8 = DO_UTF8(ssv);
5130         I32 dutf8;
5131
5132         if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
5133             mg_get(dsv);
5134         dutf8 = DO_UTF8(dsv);
5135
5136         if (dutf8 != sutf8) {
5137             if (dutf8) {
5138                 /* Not modifying source SV, so taking a temporary copy. */
5139                 SV* csv = sv_2mortal(newSVpvn(spv, slen));
5140
5141                 sv_utf8_upgrade(csv);
5142                 spv = SvPV(csv, slen);
5143             }
5144             else
5145                 sv_utf8_upgrade_nomg(dsv);
5146         }
5147         sv_catpvn_nomg(dsv, spv, slen);
5148     }
5149 }
5150
5151 /*
5152 =for apidoc sv_catsv_mg
5153
5154 Like C<sv_catsv>, but also handles 'set' magic.
5155
5156 =cut
5157 */
5158
5159 void
5160 Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv)
5161 {
5162     sv_catsv(dsv,ssv);
5163     SvSETMAGIC(dsv);
5164 }
5165
5166 /*
5167 =for apidoc sv_catpv
5168
5169 Concatenates the string onto the end of the string which is in the SV.
5170 If the SV has the UTF-8 status set, then the bytes appended should be
5171 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5172
5173 =cut */
5174
5175 void
5176 Perl_sv_catpv(pTHX_ register SV *sv, register const char *ptr)
5177 {
5178     register STRLEN len;
5179     STRLEN tlen;
5180     char *junk;
5181
5182     if (!ptr)
5183         return;
5184     junk = SvPV_force(sv, tlen);
5185     len = strlen(ptr);
5186     SvGROW(sv, tlen + len + 1);
5187     if (ptr == junk)
5188         ptr = SvPVX(sv);
5189     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5190     SvCUR_set(sv, SvCUR(sv) + len);
5191     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5192     SvTAINT(sv);
5193 }
5194
5195 /*
5196 =for apidoc sv_catpv_mg
5197
5198 Like C<sv_catpv>, but also handles 'set' magic.
5199
5200 =cut
5201 */
5202
5203 void
5204 Perl_sv_catpv_mg(pTHX_ register SV *sv, register const char *ptr)
5205 {
5206     sv_catpv(sv,ptr);
5207     SvSETMAGIC(sv);
5208 }
5209
5210 /*
5211 =for apidoc newSV
5212
5213 Create a new null SV, or if len > 0, create a new empty SVt_PV type SV
5214 with an initial PV allocation of len+1. Normally accessed via the C<NEWSV>
5215 macro.
5216
5217 =cut
5218 */
5219
5220 SV *
5221 Perl_newSV(pTHX_ STRLEN len)
5222 {
5223     register SV *sv;
5224
5225     new_SV(sv);
5226     if (len) {
5227         sv_upgrade(sv, SVt_PV);
5228         SvGROW(sv, len + 1);
5229     }
5230     return sv;
5231 }
5232 /*
5233 =for apidoc sv_magicext
5234
5235 Adds magic to an SV, upgrading it if necessary. Applies the
5236 supplied vtable and returns a pointer to the magic added.
5237
5238 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5239 In particular, you can add magic to SvREADONLY SVs, and add more than
5240 one instance of the same 'how'.
5241
5242 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5243 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5244 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5245 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5246
5247 (This is now used as a subroutine by C<sv_magic>.)
5248
5249 =cut
5250 */
5251 MAGIC * 
5252 Perl_sv_magicext(pTHX_ SV* sv, SV* obj, int how, const MGVTBL *vtable,
5253                  const char* name, I32 namlen)
5254 {
5255     MAGIC* mg;
5256
5257     if (SvTYPE(sv) < SVt_PVMG) {
5258         (void)SvUPGRADE(sv, SVt_PVMG);
5259     }
5260     Newz(702,mg, 1, MAGIC);
5261     mg->mg_moremagic = SvMAGIC(sv);
5262     SvMAGIC_set(sv, mg);
5263
5264     /* Sometimes a magic contains a reference loop, where the sv and
5265        object refer to each other.  To prevent a reference loop that
5266        would prevent such objects being freed, we look for such loops
5267        and if we find one we avoid incrementing the object refcount.
5268
5269        Note we cannot do this to avoid self-tie loops as intervening RV must
5270        have its REFCNT incremented to keep it in existence.
5271
5272     */
5273     if (!obj || obj == sv ||
5274         how == PERL_MAGIC_arylen ||
5275         how == PERL_MAGIC_qr ||
5276         how == PERL_MAGIC_symtab ||
5277         (SvTYPE(obj) == SVt_PVGV &&
5278             (GvSV(obj) == sv || GvHV(obj) == (HV*)sv || GvAV(obj) == (AV*)sv ||
5279             GvCV(obj) == (CV*)sv || GvIOp(obj) == (IO*)sv ||
5280             GvFORM(obj) == (CV*)sv)))
5281     {
5282         mg->mg_obj = obj;
5283     }
5284     else {
5285         mg->mg_obj = SvREFCNT_inc(obj);
5286         mg->mg_flags |= MGf_REFCOUNTED;
5287     }
5288
5289     /* Normal self-ties simply pass a null object, and instead of
5290        using mg_obj directly, use the SvTIED_obj macro to produce a
5291        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5292        with an RV obj pointing to the glob containing the PVIO.  In
5293        this case, to avoid a reference loop, we need to weaken the
5294        reference.
5295     */
5296
5297     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5298         obj && SvROK(obj) && GvIO(SvRV(obj)) == (IO*)sv)
5299     {
5300       sv_rvweaken(obj);
5301     }
5302
5303     mg->mg_type = how;
5304     mg->mg_len = namlen;
5305     if (name) {
5306         if (namlen > 0)
5307             mg->mg_ptr = savepvn(name, namlen);
5308         else if (namlen == HEf_SVKEY)
5309             mg->mg_ptr = (char*)SvREFCNT_inc((SV*)name);
5310         else
5311             mg->mg_ptr = (char *) name;
5312     }
5313     mg->mg_virtual = vtable;
5314
5315     mg_magical(sv);
5316     if (SvGMAGICAL(sv))
5317         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5318     return mg;
5319 }
5320
5321 /*
5322 =for apidoc sv_magic
5323
5324 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5325 then adds a new magic item of type C<how> to the head of the magic list.
5326
5327 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5328 handling of the C<name> and C<namlen> arguments.
5329
5330 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5331 to add more than one instance of the same 'how'.
5332
5333 =cut
5334 */
5335
5336 void
5337 Perl_sv_magic(pTHX_ register SV *sv, SV *obj, int how, const char *name, I32 namlen)
5338 {
5339     const MGVTBL *vtable = 0;
5340     MAGIC* mg;
5341
5342 #ifdef PERL_COPY_ON_WRITE
5343     if (SvIsCOW(sv))
5344         sv_force_normal_flags(sv, 0);
5345 #endif
5346     if (SvREADONLY(sv)) {
5347         if (IN_PERL_RUNTIME
5348             && how != PERL_MAGIC_regex_global
5349             && how != PERL_MAGIC_bm
5350             && how != PERL_MAGIC_fm
5351             && how != PERL_MAGIC_sv
5352             && how != PERL_MAGIC_backref
5353            )
5354         {
5355             Perl_croak(aTHX_ PL_no_modify);
5356         }
5357     }
5358     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5359         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5360             /* sv_magic() refuses to add a magic of the same 'how' as an
5361                existing one
5362              */
5363             if (how == PERL_MAGIC_taint)
5364                 mg->mg_len |= 1;
5365             return;
5366         }
5367     }
5368
5369     switch (how) {
5370     case PERL_MAGIC_sv:
5371         vtable = &PL_vtbl_sv;
5372         break;
5373     case PERL_MAGIC_overload:
5374         vtable = &PL_vtbl_amagic;
5375         break;
5376     case PERL_MAGIC_overload_elem:
5377         vtable = &PL_vtbl_amagicelem;
5378         break;
5379     case PERL_MAGIC_overload_table:
5380         vtable = &PL_vtbl_ovrld;
5381         break;
5382     case PERL_MAGIC_bm:
5383         vtable = &PL_vtbl_bm;
5384         break;
5385     case PERL_MAGIC_regdata:
5386         vtable = &PL_vtbl_regdata;
5387         break;
5388     case PERL_MAGIC_regdatum:
5389         vtable = &PL_vtbl_regdatum;
5390         break;
5391     case PERL_MAGIC_env:
5392         vtable = &PL_vtbl_env;
5393         break;
5394     case PERL_MAGIC_fm:
5395         vtable = &PL_vtbl_fm;
5396         break;
5397     case PERL_MAGIC_envelem:
5398         vtable = &PL_vtbl_envelem;
5399         break;
5400     case PERL_MAGIC_regex_global:
5401         vtable = &PL_vtbl_mglob;
5402         break;
5403     case PERL_MAGIC_isa:
5404         vtable = &PL_vtbl_isa;
5405         break;
5406     case PERL_MAGIC_isaelem:
5407         vtable = &PL_vtbl_isaelem;
5408         break;
5409     case PERL_MAGIC_nkeys:
5410         vtable = &PL_vtbl_nkeys;
5411         break;
5412     case PERL_MAGIC_dbfile:
5413         vtable = 0;
5414         break;
5415     case PERL_MAGIC_dbline:
5416         vtable = &PL_vtbl_dbline;
5417         break;
5418 #ifdef USE_LOCALE_COLLATE
5419     case PERL_MAGIC_collxfrm:
5420         vtable = &PL_vtbl_collxfrm;
5421         break;
5422 #endif /* USE_LOCALE_COLLATE */
5423     case PERL_MAGIC_tied:
5424         vtable = &PL_vtbl_pack;
5425         break;
5426     case PERL_MAGIC_tiedelem:
5427     case PERL_MAGIC_tiedscalar:
5428         vtable = &PL_vtbl_packelem;
5429         break;
5430     case PERL_MAGIC_qr:
5431         vtable = &PL_vtbl_regexp;
5432         break;
5433     case PERL_MAGIC_sig:
5434         vtable = &PL_vtbl_sig;
5435         break;
5436     case PERL_MAGIC_sigelem:
5437         vtable = &PL_vtbl_sigelem;
5438         break;
5439     case PERL_MAGIC_taint:
5440         vtable = &PL_vtbl_taint;
5441         break;
5442     case PERL_MAGIC_uvar:
5443         vtable = &PL_vtbl_uvar;
5444         break;
5445     case PERL_MAGIC_vec:
5446         vtable = &PL_vtbl_vec;
5447         break;
5448     case PERL_MAGIC_rhash:
5449     case PERL_MAGIC_symtab:
5450     case PERL_MAGIC_vstring:
5451         vtable = 0;
5452         break;
5453     case PERL_MAGIC_utf8:
5454         vtable = &PL_vtbl_utf8;
5455         break;
5456     case PERL_MAGIC_substr:
5457         vtable = &PL_vtbl_substr;
5458         break;
5459     case PERL_MAGIC_defelem:
5460         vtable = &PL_vtbl_defelem;
5461         break;
5462     case PERL_MAGIC_glob:
5463         vtable = &PL_vtbl_glob;
5464         break;
5465     case PERL_MAGIC_arylen:
5466         vtable = &PL_vtbl_arylen;
5467         break;
5468     case PERL_MAGIC_pos:
5469         vtable = &PL_vtbl_pos;
5470         break;
5471     case PERL_MAGIC_backref:
5472         vtable = &PL_vtbl_backref;
5473         break;
5474     case PERL_MAGIC_ext:
5475         /* Reserved for use by extensions not perl internals.           */
5476         /* Useful for attaching extension internal data to perl vars.   */
5477         /* Note that multiple extensions may clash if magical scalars   */
5478         /* etc holding private data from one are passed to another.     */
5479         break;
5480     default:
5481         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5482     }
5483
5484     /* Rest of work is done else where */
5485     mg = sv_magicext(sv,obj,how,(MGVTBL*)vtable,name,namlen);
5486
5487     switch (how) {
5488     case PERL_MAGIC_taint:
5489         mg->mg_len = 1;
5490         break;
5491     case PERL_MAGIC_ext:
5492     case PERL_MAGIC_dbfile:
5493         SvRMAGICAL_on(sv);
5494         break;
5495     }
5496 }
5497
5498 /*
5499 =for apidoc sv_unmagic
5500
5501 Removes all magic of type C<type> from an SV.
5502
5503 =cut
5504 */
5505
5506 int
5507 Perl_sv_unmagic(pTHX_ SV *sv, int type)
5508 {
5509     MAGIC* mg;
5510     MAGIC** mgp;
5511     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5512         return 0;
5513     mgp = &SvMAGIC(sv);
5514     for (mg = *mgp; mg; mg = *mgp) {
5515         if (mg->mg_type == type) {
5516             const MGVTBL* const vtbl = mg->mg_virtual;
5517             *mgp = mg->mg_moremagic;
5518             if (vtbl && vtbl->svt_free)
5519                 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
5520             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5521                 if (mg->mg_len > 0)
5522                     Safefree(mg->mg_ptr);
5523                 else if (mg->mg_len == HEf_SVKEY)
5524                     SvREFCNT_dec((SV*)mg->mg_ptr);
5525                 else if (mg->mg_type == PERL_MAGIC_utf8 && mg->mg_ptr)
5526                     Safefree(mg->mg_ptr);
5527             }
5528             if (mg->mg_flags & MGf_REFCOUNTED)
5529                 SvREFCNT_dec(mg->mg_obj);
5530             Safefree(mg);
5531         }
5532         else
5533             mgp = &mg->mg_moremagic;
5534     }
5535     if (!SvMAGIC(sv)) {
5536         SvMAGICAL_off(sv);
5537        SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5538     }
5539
5540     return 0;
5541 }
5542
5543 /*
5544 =for apidoc sv_rvweaken
5545
5546 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5547 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5548 push a back-reference to this RV onto the array of backreferences
5549 associated with that magic.
5550
5551 =cut
5552 */
5553
5554 SV *
5555 Perl_sv_rvweaken(pTHX_ SV *sv)
5556 {
5557     SV *tsv;
5558     if (!SvOK(sv))  /* let undefs pass */
5559         return sv;
5560     if (!SvROK(sv))
5561         Perl_croak(aTHX_ "Can't weaken a nonreference");
5562     else if (SvWEAKREF(sv)) {
5563         if (ckWARN(WARN_MISC))
5564             Perl_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5565         return sv;
5566     }
5567     tsv = SvRV(sv);
5568     sv_add_backref(tsv, sv);
5569     SvWEAKREF_on(sv);
5570     SvREFCNT_dec(tsv);
5571     return sv;
5572 }
5573
5574 /* Give tsv backref magic if it hasn't already got it, then push a
5575  * back-reference to sv onto the array associated with the backref magic.
5576  */
5577
5578 STATIC void
5579 S_sv_add_backref(pTHX_ SV *tsv, SV *sv)
5580 {
5581     AV *av;
5582     MAGIC *mg;
5583     if (SvMAGICAL(tsv) && (mg = mg_find(tsv, PERL_MAGIC_backref)))
5584         av = (AV*)mg->mg_obj;
5585     else {
5586         av = newAV();
5587         sv_magic(tsv, (SV*)av, PERL_MAGIC_backref, NULL, 0);
5588         /* av now has a refcnt of 2, which avoids it getting freed
5589          * before us during global cleanup. The extra ref is removed
5590          * by magic_killbackrefs() when tsv is being freed */
5591     }
5592     if (AvFILLp(av) >= AvMAX(av)) {
5593         I32 i;
5594         SV **svp = AvARRAY(av);
5595         for (i = AvFILLp(av); i >= 0; i--)
5596             if (!svp[i]) {
5597                 svp[i] = sv;        /* reuse the slot */
5598                 return;
5599             }
5600         av_extend(av, AvFILLp(av)+1);
5601     }
5602     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5603 }
5604
5605 /* delete a back-reference to ourselves from the backref magic associated
5606  * with the SV we point to.
5607  */
5608
5609 STATIC void
5610 S_sv_del_backref(pTHX_ SV *sv)
5611 {
5612     AV *av;
5613     SV **svp;
5614     I32 i;
5615     SV *tsv = SvRV(sv);
5616     MAGIC *mg = NULL;
5617     if (!SvMAGICAL(tsv) || !(mg = mg_find(tsv, PERL_MAGIC_backref)))
5618         Perl_croak(aTHX_ "panic: del_backref");
5619     av = (AV *)mg->mg_obj;
5620     svp = AvARRAY(av);
5621     for (i = AvFILLp(av); i >= 0; i--)
5622         if (svp[i] == sv) svp[i] = Nullsv;
5623 }
5624
5625 /*
5626 =for apidoc sv_insert
5627
5628 Inserts a string at the specified offset/length within the SV. Similar to
5629 the Perl substr() function.
5630
5631 =cut
5632 */
5633
5634 void
5635 Perl_sv_insert(pTHX_ SV *bigstr, STRLEN offset, STRLEN len, const char *little, STRLEN littlelen)
5636 {
5637     register char *big;
5638     register char *mid;
5639     register char *midend;
5640     register char *bigend;
5641     register I32 i;
5642     STRLEN curlen;
5643
5644
5645     if (!bigstr)
5646         Perl_croak(aTHX_ "Can't modify non-existent substring");
5647     SvPV_force(bigstr, curlen);
5648     (void)SvPOK_only_UTF8(bigstr);
5649     if (offset + len > curlen) {
5650         SvGROW(bigstr, offset+len+1);
5651         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5652         SvCUR_set(bigstr, offset+len);
5653     }
5654
5655     SvTAINT(bigstr);
5656     i = littlelen - len;
5657     if (i > 0) {                        /* string might grow */
5658         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5659         mid = big + offset + len;
5660         midend = bigend = big + SvCUR(bigstr);
5661         bigend += i;
5662         *bigend = '\0';
5663         while (midend > mid)            /* shove everything down */
5664             *--bigend = *--midend;
5665         Move(little,big+offset,littlelen,char);
5666         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5667         SvSETMAGIC(bigstr);
5668         return;
5669     }
5670     else if (i == 0) {
5671         Move(little,SvPVX(bigstr)+offset,len,char);
5672         SvSETMAGIC(bigstr);
5673         return;
5674     }
5675
5676     big = SvPVX(bigstr);
5677     mid = big + offset;
5678     midend = mid + len;
5679     bigend = big + SvCUR(bigstr);
5680
5681     if (midend > bigend)
5682         Perl_croak(aTHX_ "panic: sv_insert");
5683
5684     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5685         if (littlelen) {
5686             Move(little, mid, littlelen,char);
5687             mid += littlelen;
5688         }
5689         i = bigend - midend;
5690         if (i > 0) {
5691             Move(midend, mid, i,char);
5692             mid += i;
5693         }
5694         *mid = '\0';
5695         SvCUR_set(bigstr, mid - big);
5696     }
5697     /*SUPPRESS 560*/
5698     else if ((i = mid - big)) { /* faster from front */
5699         midend -= littlelen;
5700         mid = midend;
5701         sv_chop(bigstr,midend-i);
5702         big += i;
5703         while (i--)
5704             *--midend = *--big;
5705         if (littlelen)
5706             Move(little, mid, littlelen,char);
5707     }
5708     else if (littlelen) {
5709         midend -= littlelen;
5710         sv_chop(bigstr,midend);
5711         Move(little,midend,littlelen,char);
5712     }
5713     else {
5714         sv_chop(bigstr,midend);
5715     }
5716     SvSETMAGIC(bigstr);
5717 }
5718
5719 /*
5720 =for apidoc sv_replace
5721
5722 Make the first argument a copy of the second, then delete the original.
5723 The target SV physically takes over ownership of the body of the source SV
5724 and inherits its flags; however, the target keeps any magic it owns,
5725 and any magic in the source is discarded.
5726 Note that this is a rather specialist SV copying operation; most of the
5727 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5728
5729 =cut
5730 */
5731
5732 void
5733 Perl_sv_replace(pTHX_ register SV *sv, register SV *nsv)
5734 {
5735     const U32 refcnt = SvREFCNT(sv);
5736     SV_CHECK_THINKFIRST_COW_DROP(sv);
5737     if (SvREFCNT(nsv) != 1 && ckWARN_d(WARN_INTERNAL))
5738         Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "Reference miscount in sv_replace()");
5739     if (SvMAGICAL(sv)) {
5740         if (SvMAGICAL(nsv))
5741             mg_free(nsv);
5742         else
5743             sv_upgrade(nsv, SVt_PVMG);
5744         SvMAGIC_set(nsv, SvMAGIC(sv));
5745         SvFLAGS(nsv) |= SvMAGICAL(sv);
5746         SvMAGICAL_off(sv);
5747         SvMAGIC_set(sv, NULL);
5748     }
5749     SvREFCNT(sv) = 0;
5750     sv_clear(sv);
5751     assert(!SvREFCNT(sv));
5752 #ifdef DEBUG_LEAKING_SCALARS
5753     sv->sv_flags  = nsv->sv_flags;
5754     sv->sv_any    = nsv->sv_any;
5755     sv->sv_refcnt = nsv->sv_refcnt;
5756 #else
5757     StructCopy(nsv,sv,SV);
5758 #endif
5759     /* Currently could join these into one piece of pointer arithmetic, but
5760        it would be unclear.  */
5761     if(SvTYPE(sv) == SVt_IV)
5762         SvANY(sv)
5763             = (XPVIV*)((char*)&(sv->sv_u.sv_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5764     else if (SvTYPE(sv) == SVt_RV) {
5765         SvANY(sv) = &sv->sv_u.sv_rv;
5766     }
5767         
5768
5769 #ifdef PERL_COPY_ON_WRITE
5770     if (SvIsCOW_normal(nsv)) {
5771         /* We need to follow the pointers around the loop to make the
5772            previous SV point to sv, rather than nsv.  */
5773         SV *next;
5774         SV *current = nsv;
5775         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5776             assert(next);
5777             current = next;
5778             assert(SvPVX(current) == SvPVX(nsv));
5779         }
5780         /* Make the SV before us point to the SV after us.  */
5781         if (DEBUG_C_TEST) {
5782             PerlIO_printf(Perl_debug_log, "previous is\n");
5783             sv_dump(current);
5784             PerlIO_printf(Perl_debug_log,
5785                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5786                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5787         }
5788         SV_COW_NEXT_SV_SET(current, sv);
5789     }
5790 #endif
5791     SvREFCNT(sv) = refcnt;
5792     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5793     SvREFCNT(nsv) = 0;
5794     del_SV(nsv);
5795 }
5796
5797 /*
5798 =for apidoc sv_clear
5799
5800 Clear an SV: call any destructors, free up any memory used by the body,
5801 and free the body itself. The SV's head is I<not> freed, although
5802 its type is set to all 1's so that it won't inadvertently be assumed
5803 to be live during global destruction etc.
5804 This function should only be called when REFCNT is zero. Most of the time
5805 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5806 instead.
5807
5808 =cut
5809 */
5810
5811 void
5812 Perl_sv_clear(pTHX_ register SV *sv)
5813 {
5814     dVAR;
5815     HV* stash;
5816     assert(sv);
5817     assert(SvREFCNT(sv) == 0);
5818
5819     if (SvOBJECT(sv)) {
5820         if (PL_defstash) {              /* Still have a symbol table? */
5821             dSP;
5822             CV* destructor;
5823
5824
5825
5826             do {        
5827                 stash = SvSTASH(sv);
5828                 destructor = StashHANDLER(stash,DESTROY);
5829                 if (destructor) {
5830                     SV* tmpref = newRV(sv);
5831                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5832                     ENTER;
5833                     PUSHSTACKi(PERLSI_DESTROY);
5834                     EXTEND(SP, 2);
5835                     PUSHMARK(SP);
5836                     PUSHs(tmpref);
5837                     PUTBACK;
5838                     call_sv((SV*)destructor, G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5839                 
5840                 
5841                     POPSTACK;
5842                     SPAGAIN;
5843                     LEAVE;
5844                     if(SvREFCNT(tmpref) < 2) {
5845                         /* tmpref is not kept alive! */
5846                         SvREFCNT(sv)--;
5847                         SvRV_set(tmpref, NULL);
5848                         SvROK_off(tmpref);
5849                     }
5850                     SvREFCNT_dec(tmpref);
5851                 }
5852             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5853
5854
5855             if (SvREFCNT(sv)) {
5856                 if (PL_in_clean_objs)
5857                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5858                           HvNAME_get(stash));
5859                 /* DESTROY gave object new lease on life */
5860                 return;
5861             }
5862         }
5863
5864         if (SvOBJECT(sv)) {
5865             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5866             SvOBJECT_off(sv);   /* Curse the object. */
5867             if (SvTYPE(sv) != SVt_PVIO)
5868                 --PL_sv_objcount;       /* XXX Might want something more general */
5869         }
5870     }
5871     if (SvTYPE(sv) >= SVt_PVMG) {
5872         if (SvMAGIC(sv))
5873             mg_free(sv);
5874         if (SvTYPE(sv) == SVt_PVMG && SvFLAGS(sv) & SVpad_TYPED)
5875             SvREFCNT_dec(SvSTASH(sv));
5876     }
5877     stash = NULL;
5878     switch (SvTYPE(sv)) {
5879     case SVt_PVIO:
5880         if (IoIFP(sv) &&
5881             IoIFP(sv) != PerlIO_stdin() &&
5882             IoIFP(sv) != PerlIO_stdout() &&
5883             IoIFP(sv) != PerlIO_stderr())
5884         {
5885             io_close((IO*)sv, FALSE);
5886         }
5887         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5888             PerlDir_close(IoDIRP(sv));
5889         IoDIRP(sv) = (DIR*)NULL;
5890         Safefree(IoTOP_NAME(sv));
5891         Safefree(IoFMT_NAME(sv));
5892         Safefree(IoBOTTOM_NAME(sv));
5893         /* FALL THROUGH */
5894     case SVt_PVBM:
5895         goto freescalar;
5896     case SVt_PVCV:
5897     case SVt_PVFM:
5898         cv_undef((CV*)sv);
5899         goto freescalar;
5900     case SVt_PVHV:
5901         hv_undef((HV*)sv);
5902         break;
5903     case SVt_PVAV:
5904         av_undef((AV*)sv);
5905         break;
5906     case SVt_PVLV:
5907         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5908             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5909             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5910             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5911         }
5912         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5913             SvREFCNT_dec(LvTARG(sv));
5914         goto freescalar;
5915     case SVt_PVGV:
5916         gp_free((GV*)sv);
5917         Safefree(GvNAME(sv));
5918         /* cannot decrease stash refcount yet, as we might recursively delete
5919            ourselves when the refcnt drops to zero. Delay SvREFCNT_dec
5920            of stash until current sv is completely gone.
5921            -- JohnPC, 27 Mar 1998 */
5922         stash = GvSTASH(sv);
5923         /* FALL THROUGH */
5924     case SVt_PVMG:
5925     case SVt_PVNV:
5926     case SVt_PVIV:
5927       freescalar:
5928         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5929         if (SvOOK(sv)) {
5930             SvPV_set(sv, SvPVX(sv) - SvIVX(sv));
5931             /* Don't even bother with turning off the OOK flag.  */
5932         }
5933         /* FALL THROUGH */
5934     case SVt_PV:
5935     case SVt_RV:
5936         if (SvROK(sv)) {
5937             if (SvWEAKREF(sv))
5938                 sv_del_backref(sv);
5939             else
5940                 SvREFCNT_dec(SvRV(sv));
5941         }
5942 #ifdef PERL_COPY_ON_WRITE
5943         else if (SvPVX(sv)) {
5944             if (SvIsCOW(sv)) {
5945                 /* I believe I need to grab the global SV mutex here and
5946                    then recheck the COW status.  */
5947                 if (DEBUG_C_TEST) {
5948                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
5949                     sv_dump(sv);
5950                 }
5951                 sv_release_COW(sv, SvPVX(sv), SvCUR(sv), SvLEN(sv),
5952                                  SvUVX(sv), SV_COW_NEXT_SV(sv));
5953                 /* And drop it here.  */
5954                 SvFAKE_off(sv);
5955             } else if (SvLEN(sv)) {
5956                 Safefree(SvPVX(sv));
5957             }
5958         }
5959 #else
5960         else if (SvPVX(sv) && SvLEN(sv))
5961             Safefree(SvPVX(sv));
5962         else if (SvPVX(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
5963             unsharepvn(SvPVX(sv),
5964                        SvUTF8(sv) ? -(I32)SvCUR(sv) : SvCUR(sv),
5965                        SvUVX(sv));
5966             SvFAKE_off(sv);
5967         }
5968 #endif
5969         break;
5970 /*
5971     case SVt_NV:
5972     case SVt_IV:
5973     case SVt_NULL:
5974         break;
5975 */
5976     }
5977
5978     switch (SvTYPE(sv)) {
5979     case SVt_NULL:
5980         break;
5981     case SVt_IV:
5982         break;
5983     case SVt_NV:
5984         del_XNV(SvANY(sv));
5985         break;
5986     case SVt_RV:
5987         break;
5988     case SVt_PV:
5989         del_XPV(SvANY(sv));
5990         break;
5991     case SVt_PVIV:
5992         del_XPVIV(SvANY(sv));
5993         break;
5994     case SVt_PVNV:
5995         del_XPVNV(SvANY(sv));
5996         break;
5997     case SVt_PVMG:
5998         del_XPVMG(SvANY(sv));
5999         break;
6000     case SVt_PVLV:
6001         del_XPVLV(SvANY(sv));
6002         break;
6003     case SVt_PVAV:
6004         del_XPVAV(SvANY(sv));
6005         break;
6006     case SVt_PVHV:
6007         del_XPVHV(SvANY(sv));
6008         break;
6009     case SVt_PVCV:
6010         del_XPVCV(SvANY(sv));
6011         break;
6012     case SVt_PVGV:
6013         del_XPVGV(SvANY(sv));
6014         /* code duplication for increased performance. */
6015         SvFLAGS(sv) &= SVf_BREAK;
6016         SvFLAGS(sv) |= SVTYPEMASK;
6017         /* decrease refcount of the stash that owns this GV, if any */
6018         if (stash)
6019             SvREFCNT_dec(stash);
6020         return; /* not break, SvFLAGS reset already happened */
6021     case SVt_PVBM:
6022         del_XPVBM(SvANY(sv));
6023         break;
6024     case SVt_PVFM:
6025         del_XPVFM(SvANY(sv));
6026         break;
6027     case SVt_PVIO:
6028         del_XPVIO(SvANY(sv));
6029         break;
6030     }
6031     SvFLAGS(sv) &= SVf_BREAK;
6032     SvFLAGS(sv) |= SVTYPEMASK;
6033 }
6034
6035 /*
6036 =for apidoc sv_newref
6037
6038 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
6039 instead.
6040
6041 =cut
6042 */
6043
6044 SV *
6045 Perl_sv_newref(pTHX_ SV *sv)
6046 {
6047     if (sv)
6048         (SvREFCNT(sv))++;
6049     return sv;
6050 }
6051
6052 /*
6053 =for apidoc sv_free
6054
6055 Decrement an SV's reference count, and if it drops to zero, call
6056 C<sv_clear> to invoke destructors and free up any memory used by
6057 the body; finally, deallocate the SV's head itself.
6058 Normally called via a wrapper macro C<SvREFCNT_dec>.
6059
6060 =cut
6061 */
6062
6063 void
6064 Perl_sv_free(pTHX_ SV *sv)
6065 {
6066     dVAR;
6067     if (!sv)
6068         return;
6069     if (SvREFCNT(sv) == 0) {
6070         if (SvFLAGS(sv) & SVf_BREAK)
6071             /* this SV's refcnt has been artificially decremented to
6072              * trigger cleanup */
6073             return;
6074         if (PL_in_clean_all) /* All is fair */
6075             return;
6076         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6077             /* make sure SvREFCNT(sv)==0 happens very seldom */
6078             SvREFCNT(sv) = (~(U32)0)/2;
6079             return;
6080         }
6081         if (ckWARN_d(WARN_INTERNAL))
6082             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6083                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
6084                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6085         return;
6086     }
6087     if (--(SvREFCNT(sv)) > 0)
6088         return;
6089     Perl_sv_free2(aTHX_ sv);
6090 }
6091
6092 void
6093 Perl_sv_free2(pTHX_ SV *sv)
6094 {
6095     dVAR;
6096 #ifdef DEBUGGING
6097     if (SvTEMP(sv)) {
6098         if (ckWARN_d(WARN_DEBUGGING))
6099             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
6100                         "Attempt to free temp prematurely: SV 0x%"UVxf
6101                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6102         return;
6103     }
6104 #endif
6105     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6106         /* make sure SvREFCNT(sv)==0 happens very seldom */
6107         SvREFCNT(sv) = (~(U32)0)/2;
6108         return;
6109     }
6110     sv_clear(sv);
6111     if (! SvREFCNT(sv))
6112         del_SV(sv);
6113 }
6114
6115 /*
6116 =for apidoc sv_len
6117
6118 Returns the length of the string in the SV. Handles magic and type
6119 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
6120
6121 =cut
6122 */
6123
6124 STRLEN
6125 Perl_sv_len(pTHX_ register SV *sv)
6126 {
6127     STRLEN len;
6128
6129     if (!sv)
6130         return 0;
6131
6132     if (SvGMAGICAL(sv))
6133         len = mg_length(sv);
6134     else
6135         (void)SvPV(sv, len);
6136     return len;
6137 }
6138
6139 /*
6140 =for apidoc sv_len_utf8
6141
6142 Returns the number of characters in the string in an SV, counting wide
6143 UTF-8 bytes as a single character. Handles magic and type coercion.
6144
6145 =cut
6146 */
6147
6148 /*
6149  * The length is cached in PERL_UTF8_magic, in the mg_len field.  Also the
6150  * mg_ptr is used, by sv_pos_u2b(), see the comments of S_utf8_mg_pos_init().
6151  * (Note that the mg_len is not the length of the mg_ptr field.)
6152  *
6153  */
6154
6155 STRLEN
6156 Perl_sv_len_utf8(pTHX_ register SV *sv)
6157 {
6158     if (!sv)
6159         return 0;
6160
6161     if (SvGMAGICAL(sv))
6162         return mg_length(sv);
6163     else
6164     {
6165         STRLEN len, ulen;
6166         const U8 *s = (U8*)SvPV(sv, len);
6167         MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : 0;
6168
6169         if (mg && mg->mg_len != -1 && (mg->mg_len > 0 || len == 0)) {
6170             ulen = mg->mg_len;
6171 #ifdef PERL_UTF8_CACHE_ASSERT
6172             assert(ulen == Perl_utf8_length(aTHX_ s, s + len));
6173 #endif
6174         }
6175         else {
6176             ulen = Perl_utf8_length(aTHX_ s, s + len);
6177             if (!mg && !SvREADONLY(sv)) {
6178                 sv_magic(sv, 0, PERL_MAGIC_utf8, 0, 0);
6179                 mg = mg_find(sv, PERL_MAGIC_utf8);
6180                 assert(mg);
6181             }
6182             if (mg)
6183                 mg->mg_len = ulen;
6184         }
6185         return ulen;
6186     }
6187 }
6188
6189 /* S_utf8_mg_pos_init() is used to initialize the mg_ptr field of
6190  * a PERL_UTF8_magic.  The mg_ptr is used to store the mapping
6191  * between UTF-8 and byte offsets.  There are two (substr offset and substr
6192  * length, the i offset, PERL_MAGIC_UTF8_CACHESIZE) times two (UTF-8 offset
6193  * and byte offset) cache positions.
6194  *
6195  * The mg_len field is used by sv_len_utf8(), see its comments.
6196  * Note that the mg_len is not the length of the mg_ptr field.
6197  *
6198  */
6199 STATIC bool
6200 S_utf8_mg_pos_init(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 offsetp, U8 *s, U8 *start)
6201 {
6202     bool found = FALSE;
6203
6204     if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
6205         if (!*mgp)
6206             *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0, 0);
6207         assert(*mgp);
6208
6209         if ((*mgp)->mg_ptr)
6210             *cachep = (STRLEN *) (*mgp)->mg_ptr;
6211         else {
6212             Newz(0, *cachep, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6213             (*mgp)->mg_ptr = (char *) *cachep;
6214         }
6215         assert(*cachep);
6216
6217         (*cachep)[i]   = offsetp;
6218         (*cachep)[i+1] = s - start;
6219         found = TRUE;
6220     }
6221
6222     return found;
6223 }
6224
6225 /*
6226  * S_utf8_mg_pos() is used to query and update mg_ptr field of
6227  * a PERL_UTF8_magic.  The mg_ptr is used to store the mapping
6228  * between UTF-8 and byte offsets.  See also the comments of
6229  * S_utf8_mg_pos_init().
6230  *
6231  */
6232 STATIC bool
6233 S_utf8_mg_pos(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 *offsetp, I32 uoff, U8 **sp, U8 *start, U8 *send)
6234 {
6235     bool found = FALSE;
6236
6237     if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
6238         if (!*mgp)
6239             *mgp = mg_find(sv, PERL_MAGIC_utf8);
6240         if (*mgp && (*mgp)->mg_ptr) {
6241             *cachep = (STRLEN *) (*mgp)->mg_ptr;
6242             ASSERT_UTF8_CACHE(*cachep);
6243             if ((*cachep)[i] == (STRLEN)uoff)   /* An exact match. */
6244                  found = TRUE;
6245             else {                      /* We will skip to the right spot. */
6246                  STRLEN forw  = 0;
6247                  STRLEN backw = 0;
6248                  const U8* p = NULL;
6249
6250                  /* The assumption is that going backward is half
6251                   * the speed of going forward (that's where the
6252                   * 2 * backw in the below comes from).  (The real
6253                   * figure of course depends on the UTF-8 data.) */
6254
6255                  if ((*cachep)[i] > (STRLEN)uoff) {
6256                       forw  = uoff;
6257                       backw = (*cachep)[i] - (STRLEN)uoff;
6258
6259                       if (forw < 2 * backw)
6260                            p = start;
6261                       else
6262                            p = start + (*cachep)[i+1];
6263                  }
6264                  /* Try this only for the substr offset (i == 0),
6265                   * not for the substr length (i == 2). */
6266                  else if (i == 0) { /* (*cachep)[i] < uoff */
6267                       const STRLEN ulen = sv_len_utf8(sv);
6268
6269                       if ((STRLEN)uoff < ulen) {
6270                            forw  = (STRLEN)uoff - (*cachep)[i];
6271                            backw = ulen - (STRLEN)uoff;
6272
6273                            if (forw < 2 * backw)
6274                                 p = start + (*cachep)[i+1];
6275                            else
6276                                 p = send;
6277                       }
6278
6279                       /* If the string is not long enough for uoff,
6280                        * we could extend it, but not at this low a level. */
6281                  }
6282
6283                  if (p) {
6284                       if (forw < 2 * backw) {
6285                            while (forw--)
6286                                 p += UTF8SKIP(p);
6287                       }
6288                       else {
6289                            while (backw--) {
6290                                 p--;
6291                                 while (UTF8_IS_CONTINUATION(*p))
6292                                      p--;
6293                            }
6294                       }
6295
6296                       /* Update the cache. */
6297                       (*cachep)[i]   = (STRLEN)uoff;
6298                       (*cachep)[i+1] = p - start;
6299
6300                       /* Drop the stale "length" cache */
6301                       if (i == 0) {
6302                           (*cachep)[2] = 0;
6303                           (*cachep)[3] = 0;
6304                       }
6305
6306                       found = TRUE;
6307                  }
6308             }
6309             if (found) {        /* Setup the return values. */
6310                  *offsetp = (*cachep)[i+1];
6311                  *sp = start + *offsetp;
6312                  if (*sp >= send) {
6313                       *sp = send;
6314                       *offsetp = send - start;
6315                  }
6316                  else if (*sp < start) {
6317                       *sp = start;
6318                       *offsetp = 0;
6319                  }
6320             }
6321         }
6322 #ifdef PERL_UTF8_CACHE_ASSERT
6323         if (found) {
6324              U8 *s = start;
6325              I32 n = uoff;
6326
6327              while (n-- && s < send)
6328                   s += UTF8SKIP(s);
6329
6330              if (i == 0) {
6331                   assert(*offsetp == s - start);
6332                   assert((*cachep)[0] == (STRLEN)uoff);
6333                   assert((*cachep)[1] == *offsetp);
6334              }
6335              ASSERT_UTF8_CACHE(*cachep);
6336         }
6337 #endif
6338     }
6339
6340     return found;
6341 }
6342
6343 /*
6344 =for apidoc sv_pos_u2b
6345
6346 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6347 the start of the string, to a count of the equivalent number of bytes; if
6348 lenp is non-zero, it does the same to lenp, but this time starting from
6349 the offset, rather than from the start of the string. Handles magic and
6350 type coercion.
6351
6352 =cut
6353 */
6354
6355 /*
6356  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6357  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
6358  * byte offsets.  See also the comments of S_utf8_mg_pos().
6359  *
6360  */
6361
6362 void
6363 Perl_sv_pos_u2b(pTHX_ register SV *sv, I32* offsetp, I32* lenp)
6364 {
6365     U8 *start;
6366     U8 *s;
6367     STRLEN len;
6368     STRLEN *cache = 0;
6369     STRLEN boffset = 0;
6370
6371     if (!sv)
6372         return;
6373
6374     start = s = (U8*)SvPV(sv, len);
6375     if (len) {
6376          I32 uoffset = *offsetp;
6377          U8 *send = s + len;
6378          MAGIC *mg = 0;
6379          bool found = FALSE;
6380
6381          if (utf8_mg_pos(sv, &mg, &cache, 0, offsetp, *offsetp, &s, start, send))
6382              found = TRUE;
6383          if (!found && uoffset > 0) {
6384               while (s < send && uoffset--)
6385                    s += UTF8SKIP(s);
6386               if (s >= send)
6387                    s = send;
6388               if (utf8_mg_pos_init(sv, &mg, &cache, 0, *offsetp, s, start))
6389                   boffset = cache[1];
6390               *offsetp = s - start;
6391          }
6392          if (lenp) {
6393               found = FALSE;
6394               start = s;
6395               if (utf8_mg_pos(sv, &mg, &cache, 2, lenp, *lenp, &s, start, send)) {
6396                   *lenp -= boffset;
6397                   found = TRUE;
6398               }
6399               if (!found && *lenp > 0) {
6400                    I32 ulen = *lenp;
6401                    if (ulen > 0)
6402                         while (s < send && ulen--)
6403                              s += UTF8SKIP(s);
6404                    if (s >= send)
6405                         s = send;
6406                    utf8_mg_pos_init(sv, &mg, &cache, 2, *lenp, s, start);
6407               }
6408               *lenp = s - start;
6409          }
6410          ASSERT_UTF8_CACHE(cache);
6411     }
6412     else {
6413          *offsetp = 0;
6414          if (lenp)
6415               *lenp = 0;
6416     }
6417
6418     return;
6419 }
6420
6421 /*
6422 =for apidoc sv_pos_b2u
6423
6424 Converts the value pointed to by offsetp from a count of bytes from the
6425 start of the string, to a count of the equivalent number of UTF-8 chars.
6426 Handles magic and type coercion.
6427
6428 =cut
6429 */
6430
6431 /*
6432  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6433  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
6434  * byte offsets.  See also the comments of S_utf8_mg_pos().
6435  *
6436  */
6437
6438 void
6439 Perl_sv_pos_b2u(pTHX_ register SV* sv, I32* offsetp)
6440 {
6441     U8* s;
6442     STRLEN len;
6443
6444     if (!sv)
6445         return;
6446
6447     s = (U8*)SvPV(sv, len);
6448     if ((I32)len < *offsetp)
6449         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
6450     else {
6451         U8* send = s + *offsetp;
6452         MAGIC* mg = NULL;
6453         STRLEN *cache = NULL;
6454
6455         len = 0;
6456
6457         if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
6458             mg = mg_find(sv, PERL_MAGIC_utf8);
6459             if (mg && mg->mg_ptr) {
6460                 cache = (STRLEN *) mg->mg_ptr;
6461                 if (cache[1] == (STRLEN)*offsetp) {
6462                     /* An exact match. */
6463                     *offsetp = cache[0];
6464
6465                     return;
6466                 }
6467                 else if (cache[1] < (STRLEN)*offsetp) {
6468                     /* We already know part of the way. */
6469                     len = cache[0];
6470                     s  += cache[1];
6471                     /* Let the below loop do the rest. */
6472                 }
6473                 else { /* cache[1] > *offsetp */
6474                     /* We already know all of the way, now we may
6475                      * be able to walk back.  The same assumption
6476                      * is made as in S_utf8_mg_pos(), namely that
6477                      * walking backward is twice slower than
6478                      * walking forward. */
6479                     STRLEN forw  = *offsetp;
6480                     STRLEN backw = cache[1] - *offsetp;
6481
6482                     if (!(forw < 2 * backw)) {
6483                         U8 *p = s + cache[1];
6484                         STRLEN ubackw = 0;
6485                         
6486                         cache[1] -= backw;
6487
6488                         while (backw--) {
6489                             p--;
6490                             while (UTF8_IS_CONTINUATION(*p)) {
6491                                 p--;
6492                                 backw--;
6493                             }
6494                             ubackw++;
6495                         }
6496
6497                         cache[0] -= ubackw;
6498                         *offsetp = cache[0];
6499
6500                         /* Drop the stale "length" cache */
6501                         cache[2] = 0;
6502                         cache[3] = 0;
6503
6504                         return;
6505                     }
6506                 }
6507             }
6508             ASSERT_UTF8_CACHE(cache);
6509         }
6510
6511         while (s < send) {
6512             STRLEN n = 1;
6513
6514             /* Call utf8n_to_uvchr() to validate the sequence
6515              * (unless a simple non-UTF character) */
6516             if (!UTF8_IS_INVARIANT(*s))
6517                 utf8n_to_uvchr(s, UTF8SKIP(s), &n, 0);
6518             if (n > 0) {
6519                 s += n;
6520                 len++;
6521             }
6522             else
6523                 break;
6524         }
6525
6526         if (!SvREADONLY(sv)) {
6527             if (!mg) {
6528                 sv_magic(sv, 0, PERL_MAGIC_utf8, 0, 0);
6529                 mg = mg_find(sv, PERL_MAGIC_utf8);
6530             }
6531             assert(mg);
6532
6533             if (!mg->mg_ptr) {
6534                 Newz(0, cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6535                 mg->mg_ptr = (char *) cache;
6536             }
6537             assert(cache);
6538
6539             cache[0] = len;
6540             cache[1] = *offsetp;
6541             /* Drop the stale "length" cache */
6542             cache[2] = 0;
6543             cache[3] = 0;
6544         }
6545
6546         *offsetp = len;
6547     }
6548     return;
6549 }
6550
6551 /*
6552 =for apidoc sv_eq
6553
6554 Returns a boolean indicating whether the strings in the two SVs are
6555 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6556 coerce its args to strings if necessary.
6557
6558 =cut
6559 */
6560
6561 I32
6562 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
6563 {
6564     const char *pv1;
6565     STRLEN cur1;
6566     const char *pv2;
6567     STRLEN cur2;
6568     I32  eq     = 0;
6569     char *tpv   = Nullch;
6570     SV* svrecode = Nullsv;
6571
6572     if (!sv1) {
6573         pv1 = "";
6574         cur1 = 0;
6575     }
6576     else
6577         pv1 = SvPV(sv1, cur1);
6578
6579     if (!sv2){
6580         pv2 = "";
6581         cur2 = 0;
6582     }
6583     else
6584         pv2 = SvPV(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(svrecode, cur2);
6594               }
6595               else {
6596                    svrecode = newSVpvn(pv1, cur1);
6597                    sv_recode_to_utf8(svrecode, PL_encoding);
6598                    pv1 = SvPV(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 *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 *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     if (svrecode)
6637          SvREFCNT_dec(svrecode);
6638
6639     if (tpv)
6640         Safefree(tpv);
6641
6642     return eq;
6643 }
6644
6645 /*
6646 =for apidoc sv_cmp
6647
6648 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6649 string in C<sv1> is less than, equal to, or greater than the string in
6650 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6651 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
6652
6653 =cut
6654 */
6655
6656 I32
6657 Perl_sv_cmp(pTHX_ register SV *sv1, register SV *sv2)
6658 {
6659     STRLEN cur1, cur2;
6660     const char *pv1, *pv2;
6661     char *tpv = Nullch;
6662     I32  cmp;
6663     SV *svrecode = Nullsv;
6664
6665     if (!sv1) {
6666         pv1 = "";
6667         cur1 = 0;
6668     }
6669     else
6670         pv1 = SvPV(sv1, cur1);
6671
6672     if (!sv2) {
6673         pv2 = "";
6674         cur2 = 0;
6675     }
6676     else
6677         pv2 = SvPV(sv2, cur2);
6678
6679     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6680         /* Differing utf8ness.
6681          * Do not UTF8size the comparands as a side-effect. */
6682         if (SvUTF8(sv1)) {
6683             if (PL_encoding) {
6684                  svrecode = newSVpvn(pv2, cur2);
6685                  sv_recode_to_utf8(svrecode, PL_encoding);
6686                  pv2 = SvPV(svrecode, cur2);
6687             }
6688             else {
6689                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
6690             }
6691         }
6692         else {
6693             if (PL_encoding) {
6694                  svrecode = newSVpvn(pv1, cur1);
6695                  sv_recode_to_utf8(svrecode, PL_encoding);
6696                  pv1 = SvPV(svrecode, cur1);
6697             }
6698             else {
6699                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
6700             }
6701         }
6702     }
6703
6704     if (!cur1) {
6705         cmp = cur2 ? -1 : 0;
6706     } else if (!cur2) {
6707         cmp = 1;
6708     } else {
6709         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
6710
6711         if (retval) {
6712             cmp = retval < 0 ? -1 : 1;
6713         } else if (cur1 == cur2) {
6714             cmp = 0;
6715         } else {
6716             cmp = cur1 < cur2 ? -1 : 1;
6717         }
6718     }
6719
6720     if (svrecode)
6721          SvREFCNT_dec(svrecode);
6722
6723     if (tpv)
6724         Safefree(tpv);
6725
6726     return cmp;
6727 }
6728
6729 /*
6730 =for apidoc sv_cmp_locale
6731
6732 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
6733 'use bytes' aware, handles get magic, and will coerce its args to strings
6734 if necessary.  See also C<sv_cmp_locale>.  See also C<sv_cmp>.
6735
6736 =cut
6737 */
6738
6739 I32
6740 Perl_sv_cmp_locale(pTHX_ register SV *sv1, register SV *sv2)
6741 {
6742 #ifdef USE_LOCALE_COLLATE
6743
6744     char *pv1, *pv2;
6745     STRLEN len1, len2;
6746     I32 retval;
6747
6748     if (PL_collation_standard)
6749         goto raw_compare;
6750
6751     len1 = 0;
6752     pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
6753     len2 = 0;
6754     pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
6755
6756     if (!pv1 || !len1) {
6757         if (pv2 && len2)
6758             return -1;
6759         else
6760             goto raw_compare;
6761     }
6762     else {
6763         if (!pv2 || !len2)
6764             return 1;
6765     }
6766
6767     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
6768
6769     if (retval)
6770         return retval < 0 ? -1 : 1;
6771
6772     /*
6773      * When the result of collation is equality, that doesn't mean
6774      * that there are no differences -- some locales exclude some
6775      * characters from consideration.  So to avoid false equalities,
6776      * we use the raw string as a tiebreaker.
6777      */
6778
6779   raw_compare:
6780     /* FALL THROUGH */
6781
6782 #endif /* USE_LOCALE_COLLATE */
6783
6784     return sv_cmp(sv1, sv2);
6785 }
6786
6787
6788 #ifdef USE_LOCALE_COLLATE
6789
6790 /*
6791 =for apidoc sv_collxfrm
6792
6793 Add Collate Transform magic to an SV if it doesn't already have it.
6794
6795 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
6796 scalar data of the variable, but transformed to such a format that a normal
6797 memory comparison can be used to compare the data according to the locale
6798 settings.
6799
6800 =cut
6801 */
6802
6803 char *
6804 Perl_sv_collxfrm(pTHX_ SV *sv, STRLEN *nxp)
6805 {
6806     MAGIC *mg;
6807
6808     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
6809     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
6810         char *s, *xf;
6811         STRLEN len, xlen;
6812
6813         if (mg)
6814             Safefree(mg->mg_ptr);
6815         s = SvPV(sv, len);
6816         if ((xf = mem_collxfrm(s, len, &xlen))) {
6817             if (SvREADONLY(sv)) {
6818                 SAVEFREEPV(xf);
6819                 *nxp = xlen;
6820                 return xf + sizeof(PL_collation_ix);
6821             }
6822             if (! mg) {
6823                 sv_magic(sv, 0, PERL_MAGIC_collxfrm, 0, 0);
6824                 mg = mg_find(sv, PERL_MAGIC_collxfrm);
6825                 assert(mg);
6826             }
6827             mg->mg_ptr = xf;
6828             mg->mg_len = xlen;
6829         }
6830         else {
6831             if (mg) {
6832                 mg->mg_ptr = NULL;
6833                 mg->mg_len = -1;
6834             }
6835         }
6836     }
6837     if (mg && mg->mg_ptr) {
6838         *nxp = mg->mg_len;
6839         return mg->mg_ptr + sizeof(PL_collation_ix);
6840     }
6841     else {
6842         *nxp = 0;
6843         return NULL;
6844     }
6845 }
6846
6847 #endif /* USE_LOCALE_COLLATE */
6848
6849 /*
6850 =for apidoc sv_gets
6851
6852 Get a line from the filehandle and store it into the SV, optionally
6853 appending to the currently-stored string.
6854
6855 =cut
6856 */
6857
6858 char *
6859 Perl_sv_gets(pTHX_ register SV *sv, register PerlIO *fp, I32 append)
6860 {
6861     const char *rsptr;
6862     STRLEN rslen;
6863     register STDCHAR rslast;
6864     register STDCHAR *bp;
6865     register I32 cnt;
6866     I32 i = 0;
6867     I32 rspara = 0;
6868     I32 recsize;
6869
6870     if (SvTHINKFIRST(sv))
6871         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
6872     /* XXX. If you make this PVIV, then copy on write can copy scalars read
6873        from <>.
6874        However, perlbench says it's slower, because the existing swipe code
6875        is faster than copy on write.
6876        Swings and roundabouts.  */
6877     (void)SvUPGRADE(sv, SVt_PV);
6878
6879     SvSCREAM_off(sv);
6880
6881     if (append) {
6882         if (PerlIO_isutf8(fp)) {
6883             if (!SvUTF8(sv)) {
6884                 sv_utf8_upgrade_nomg(sv);
6885                 sv_pos_u2b(sv,&append,0);
6886             }
6887         } else if (SvUTF8(sv)) {
6888             SV *tsv = NEWSV(0,0);
6889             sv_gets(tsv, fp, 0);
6890             sv_utf8_upgrade_nomg(tsv);
6891             SvCUR_set(sv,append);
6892             sv_catsv(sv,tsv);
6893             sv_free(tsv);
6894             goto return_string_or_null;
6895         }
6896     }
6897
6898     SvPOK_only(sv);
6899     if (PerlIO_isutf8(fp))
6900         SvUTF8_on(sv);
6901
6902     if (IN_PERL_COMPILETIME) {
6903         /* we always read code in line mode */
6904         rsptr = "\n";
6905         rslen = 1;
6906     }
6907     else if (RsSNARF(PL_rs)) {
6908         /* If it is a regular disk file use size from stat() as estimate
6909            of amount we are going to read - may result in malloc-ing
6910            more memory than we realy need if layers bellow reduce
6911            size we read (e.g. CRLF or a gzip layer)
6912          */
6913         Stat_t st;
6914         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
6915             const Off_t offset = PerlIO_tell(fp);
6916             if (offset != (Off_t) -1 && st.st_size + append > offset) {
6917                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
6918             }
6919         }
6920         rsptr = NULL;
6921         rslen = 0;
6922     }
6923     else if (RsRECORD(PL_rs)) {
6924       I32 bytesread;
6925       char *buffer;
6926
6927       /* Grab the size of the record we're getting */
6928       recsize = SvIV(SvRV(PL_rs));
6929       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
6930       /* Go yank in */
6931 #ifdef VMS
6932       /* VMS wants read instead of fread, because fread doesn't respect */
6933       /* RMS record boundaries. This is not necessarily a good thing to be */
6934       /* doing, but we've got no other real choice - except avoid stdio
6935          as implementation - perhaps write a :vms layer ?
6936        */
6937       bytesread = PerlLIO_read(PerlIO_fileno(fp), buffer, recsize);
6938 #else
6939       bytesread = PerlIO_read(fp, buffer, recsize);
6940 #endif
6941       if (bytesread < 0)
6942           bytesread = 0;
6943       SvCUR_set(sv, bytesread += append);
6944       buffer[bytesread] = '\0';
6945       goto return_string_or_null;
6946     }
6947     else if (RsPARA(PL_rs)) {
6948         rsptr = "\n\n";
6949         rslen = 2;
6950         rspara = 1;
6951     }
6952     else {
6953         /* Get $/ i.e. PL_rs into same encoding as stream wants */
6954         if (PerlIO_isutf8(fp)) {
6955             rsptr = SvPVutf8(PL_rs, rslen);
6956         }
6957         else {
6958             if (SvUTF8(PL_rs)) {
6959                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
6960                     Perl_croak(aTHX_ "Wide character in $/");
6961                 }
6962             }
6963             rsptr = SvPV(PL_rs, rslen);
6964         }
6965     }
6966
6967     rslast = rslen ? rsptr[rslen - 1] : '\0';
6968
6969     if (rspara) {               /* have to do this both before and after */
6970         do {                    /* to make sure file boundaries work right */
6971             if (PerlIO_eof(fp))
6972                 return 0;
6973             i = PerlIO_getc(fp);
6974             if (i != '\n') {
6975                 if (i == -1)
6976                     return 0;
6977                 PerlIO_ungetc(fp,i);
6978                 break;
6979             }
6980         } while (i != EOF);
6981     }
6982
6983     /* See if we know enough about I/O mechanism to cheat it ! */
6984
6985     /* This used to be #ifdef test - it is made run-time test for ease
6986        of abstracting out stdio interface. One call should be cheap
6987        enough here - and may even be a macro allowing compile
6988        time optimization.
6989      */
6990
6991     if (PerlIO_fast_gets(fp)) {
6992
6993     /*
6994      * We're going to steal some values from the stdio struct
6995      * and put EVERYTHING in the innermost loop into registers.
6996      */
6997     register STDCHAR *ptr;
6998     STRLEN bpx;
6999     I32 shortbuffered;
7000
7001 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7002     /* An ungetc()d char is handled separately from the regular
7003      * buffer, so we getc() it back out and stuff it in the buffer.
7004      */
7005     i = PerlIO_getc(fp);
7006     if (i == EOF) return 0;
7007     *(--((*fp)->_ptr)) = (unsigned char) i;
7008     (*fp)->_cnt++;
7009 #endif
7010
7011     /* Here is some breathtakingly efficient cheating */
7012
7013     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7014     /* make sure we have the room */
7015     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7016         /* Not room for all of it
7017            if we are looking for a separator and room for some
7018          */
7019         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7020             /* just process what we have room for */
7021             shortbuffered = cnt - SvLEN(sv) + append + 1;
7022             cnt -= shortbuffered;
7023         }
7024         else {
7025             shortbuffered = 0;
7026             /* remember that cnt can be negative */
7027             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7028         }
7029     }
7030     else
7031         shortbuffered = 0;
7032     bp = (STDCHAR*)SvPVX(sv) + append;  /* move these two too to registers */
7033     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7034     DEBUG_P(PerlIO_printf(Perl_debug_log,
7035         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7036     DEBUG_P(PerlIO_printf(Perl_debug_log,
7037         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7038                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7039                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7040     for (;;) {
7041       screamer:
7042         if (cnt > 0) {
7043             if (rslen) {
7044                 while (cnt > 0) {                    /* this     |  eat */
7045                     cnt--;
7046                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7047                         goto thats_all_folks;        /* screams  |  sed :-) */
7048                 }
7049             }
7050             else {
7051                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7052                 bp += cnt;                           /* screams  |  dust */
7053                 ptr += cnt;                          /* louder   |  sed :-) */
7054                 cnt = 0;
7055             }
7056         }
7057         
7058         if (shortbuffered) {            /* oh well, must extend */
7059             cnt = shortbuffered;
7060             shortbuffered = 0;
7061             bpx = bp - (STDCHAR*)SvPVX(sv); /* box up before relocation */
7062             SvCUR_set(sv, bpx);
7063             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7064             bp = (STDCHAR*)SvPVX(sv) + bpx; /* unbox after relocation */
7065             continue;
7066         }
7067
7068         DEBUG_P(PerlIO_printf(Perl_debug_log,
7069                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7070                               PTR2UV(ptr),(long)cnt));
7071         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7072 #if 0
7073         DEBUG_P(PerlIO_printf(Perl_debug_log,
7074             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7075             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7076             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7077 #endif
7078         /* This used to call 'filbuf' in stdio form, but as that behaves like
7079            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7080            another abstraction.  */
7081         i   = PerlIO_getc(fp);          /* get more characters */
7082 #if 0
7083         DEBUG_P(PerlIO_printf(Perl_debug_log,
7084             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7085             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7086             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7087 #endif
7088         cnt = PerlIO_get_cnt(fp);
7089         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7090         DEBUG_P(PerlIO_printf(Perl_debug_log,
7091             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7092
7093         if (i == EOF)                   /* all done for ever? */
7094             goto thats_really_all_folks;
7095
7096         bpx = bp - (STDCHAR*)SvPVX(sv); /* box up before relocation */
7097         SvCUR_set(sv, bpx);
7098         SvGROW(sv, bpx + cnt + 2);
7099         bp = (STDCHAR*)SvPVX(sv) + bpx; /* unbox after relocation */
7100
7101         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7102
7103         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7104             goto thats_all_folks;
7105     }
7106
7107 thats_all_folks:
7108     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX(sv)) < rslen) ||
7109           memNE((char*)bp - rslen, rsptr, rslen))
7110         goto screamer;                          /* go back to the fray */
7111 thats_really_all_folks:
7112     if (shortbuffered)
7113         cnt += shortbuffered;
7114         DEBUG_P(PerlIO_printf(Perl_debug_log,
7115             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7116     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7117     DEBUG_P(PerlIO_printf(Perl_debug_log,
7118         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7119         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7120         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7121     *bp = '\0';
7122     SvCUR_set(sv, bp - (STDCHAR*)SvPVX(sv));    /* set length */
7123     DEBUG_P(PerlIO_printf(Perl_debug_log,
7124         "Screamer: done, len=%ld, string=|%.*s|\n",
7125         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX(sv)));
7126     }
7127    else
7128     {
7129        /*The big, slow, and stupid way. */
7130 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7131         STDCHAR *buf = 0;
7132         New(0, buf, 8192, STDCHAR);
7133         assert(buf);
7134 #else
7135         STDCHAR buf[8192];
7136 #endif
7137
7138 screamer2:
7139         if (rslen) {
7140             const register STDCHAR *bpe = buf + sizeof(buf);
7141             bp = buf;
7142             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7143                 ; /* keep reading */
7144             cnt = bp - buf;
7145         }
7146         else {
7147             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7148             /* Accomodate broken VAXC compiler, which applies U8 cast to
7149              * both args of ?: operator, causing EOF to change into 255
7150              */
7151             if (cnt > 0)
7152                  i = (U8)buf[cnt - 1];
7153             else
7154                  i = EOF;
7155         }
7156
7157         if (cnt < 0)
7158             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7159         if (append)
7160              sv_catpvn(sv, (char *) buf, cnt);
7161         else
7162              sv_setpvn(sv, (char *) buf, cnt);
7163
7164         if (i != EOF &&                 /* joy */
7165             (!rslen ||
7166              SvCUR(sv) < rslen ||
7167              memNE(SvPVX(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7168         {
7169             append = -1;
7170             /*
7171              * If we're reading from a TTY and we get a short read,
7172              * indicating that the user hit his EOF character, we need
7173              * to notice it now, because if we try to read from the TTY
7174              * again, the EOF condition will disappear.
7175              *
7176              * The comparison of cnt to sizeof(buf) is an optimization
7177              * that prevents unnecessary calls to feof().
7178              *
7179              * - jik 9/25/96
7180              */
7181             if (!(cnt < sizeof(buf) && PerlIO_eof(fp)))
7182                 goto screamer2;
7183         }
7184
7185 #ifdef USE_HEAP_INSTEAD_OF_STACK
7186         Safefree(buf);
7187 #endif
7188     }
7189
7190     if (rspara) {               /* have to do this both before and after */
7191         while (i != EOF) {      /* to make sure file boundaries work right */
7192             i = PerlIO_getc(fp);
7193             if (i != '\n') {
7194                 PerlIO_ungetc(fp,i);
7195                 break;
7196             }
7197         }
7198     }
7199
7200 return_string_or_null:
7201     return (SvCUR(sv) - append) ? SvPVX(sv) : Nullch;
7202 }
7203
7204 /*
7205 =for apidoc sv_inc
7206
7207 Auto-increment of the value in the SV, doing string to numeric conversion
7208 if necessary. Handles 'get' magic.
7209
7210 =cut
7211 */
7212
7213 void
7214 Perl_sv_inc(pTHX_ register SV *sv)
7215 {
7216     register char *d;
7217     int flags;
7218
7219     if (!sv)
7220         return;
7221     if (SvGMAGICAL(sv))
7222         mg_get(sv);
7223     if (SvTHINKFIRST(sv)) {
7224         if (SvIsCOW(sv))
7225             sv_force_normal_flags(sv, 0);
7226         if (SvREADONLY(sv)) {
7227             if (IN_PERL_RUNTIME)
7228                 Perl_croak(aTHX_ PL_no_modify);
7229         }
7230         if (SvROK(sv)) {
7231             IV i;
7232             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
7233                 return;
7234             i = PTR2IV(SvRV(sv));
7235             sv_unref(sv);
7236             sv_setiv(sv, i);
7237         }
7238     }
7239     flags = SvFLAGS(sv);
7240     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7241         /* It's (privately or publicly) a float, but not tested as an
7242            integer, so test it to see. */
7243         (void) SvIV(sv);
7244         flags = SvFLAGS(sv);
7245     }
7246     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7247         /* It's publicly an integer, or privately an integer-not-float */
7248 #ifdef PERL_PRESERVE_IVUV
7249       oops_its_int:
7250 #endif
7251         if (SvIsUV(sv)) {
7252             if (SvUVX(sv) == UV_MAX)
7253                 sv_setnv(sv, UV_MAX_P1);
7254             else
7255                 (void)SvIOK_only_UV(sv);
7256                 SvUV_set(sv, SvUVX(sv) + 1);
7257         } else {
7258             if (SvIVX(sv) == IV_MAX)
7259                 sv_setuv(sv, (UV)IV_MAX + 1);
7260             else {
7261                 (void)SvIOK_only(sv);
7262                 SvIV_set(sv, SvIVX(sv) + 1);
7263             }   
7264         }
7265         return;
7266     }
7267     if (flags & SVp_NOK) {
7268         (void)SvNOK_only(sv);
7269         SvNV_set(sv, SvNVX(sv) + 1.0);
7270         return;
7271     }
7272
7273     if (!(flags & SVp_POK) || !*SvPVX(sv)) {
7274         if ((flags & SVTYPEMASK) < SVt_PVIV)
7275             sv_upgrade(sv, SVt_IV);
7276         (void)SvIOK_only(sv);
7277         SvIV_set(sv, 1);
7278         return;
7279     }
7280     d = SvPVX(sv);
7281     while (isALPHA(*d)) d++;
7282     while (isDIGIT(*d)) d++;
7283     if (*d) {
7284 #ifdef PERL_PRESERVE_IVUV
7285         /* Got to punt this as an integer if needs be, but we don't issue
7286            warnings. Probably ought to make the sv_iv_please() that does
7287            the conversion if possible, and silently.  */
7288         int numtype = grok_number(SvPVX(sv), SvCUR(sv), NULL);
7289         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7290             /* Need to try really hard to see if it's an integer.
7291                9.22337203685478e+18 is an integer.
7292                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7293                so $a="9.22337203685478e+18"; $a+0; $a++
7294                needs to be the same as $a="9.22337203685478e+18"; $a++
7295                or we go insane. */
7296         
7297             (void) sv_2iv(sv);
7298             if (SvIOK(sv))
7299                 goto oops_its_int;
7300
7301             /* sv_2iv *should* have made this an NV */
7302             if (flags & SVp_NOK) {
7303                 (void)SvNOK_only(sv);
7304                 SvNV_set(sv, SvNVX(sv) + 1.0);
7305                 return;
7306             }
7307             /* I don't think we can get here. Maybe I should assert this
7308                And if we do get here I suspect that sv_setnv will croak. NWC
7309                Fall through. */
7310 #if defined(USE_LONG_DOUBLE)
7311             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",
7312                                   SvPVX(sv), SvIVX(sv), SvNVX(sv)));
7313 #else
7314             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7315                                   SvPVX(sv), SvIVX(sv), SvNVX(sv)));
7316 #endif
7317         }
7318 #endif /* PERL_PRESERVE_IVUV */
7319         sv_setnv(sv,Atof(SvPVX(sv)) + 1.0);
7320         return;
7321     }
7322     d--;
7323     while (d >= SvPVX(sv)) {
7324         if (isDIGIT(*d)) {
7325             if (++*d <= '9')
7326                 return;
7327             *(d--) = '0';
7328         }
7329         else {
7330 #ifdef EBCDIC
7331             /* MKS: The original code here died if letters weren't consecutive.
7332              * at least it didn't have to worry about non-C locales.  The
7333              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7334              * arranged in order (although not consecutively) and that only
7335              * [A-Za-z] are accepted by isALPHA in the C locale.
7336              */
7337             if (*d != 'z' && *d != 'Z') {
7338                 do { ++*d; } while (!isALPHA(*d));
7339                 return;
7340             }
7341             *(d--) -= 'z' - 'a';
7342 #else
7343             ++*d;
7344             if (isALPHA(*d))
7345                 return;
7346             *(d--) -= 'z' - 'a' + 1;
7347 #endif
7348         }
7349     }
7350     /* oh,oh, the number grew */
7351     SvGROW(sv, SvCUR(sv) + 2);
7352     SvCUR_set(sv, SvCUR(sv) + 1);
7353     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX(sv); d--)
7354         *d = d[-1];
7355     if (isDIGIT(d[1]))
7356         *d = '1';
7357     else
7358         *d = d[1];
7359 }
7360
7361 /*
7362 =for apidoc sv_dec
7363
7364 Auto-decrement of the value in the SV, doing string to numeric conversion
7365 if necessary. Handles 'get' magic.
7366
7367 =cut
7368 */
7369
7370 void
7371 Perl_sv_dec(pTHX_ register SV *sv)
7372 {
7373     int flags;
7374
7375     if (!sv)
7376         return;
7377     if (SvGMAGICAL(sv))
7378         mg_get(sv);
7379     if (SvTHINKFIRST(sv)) {
7380         if (SvIsCOW(sv))
7381             sv_force_normal_flags(sv, 0);
7382         if (SvREADONLY(sv)) {
7383             if (IN_PERL_RUNTIME)
7384                 Perl_croak(aTHX_ PL_no_modify);
7385         }
7386         if (SvROK(sv)) {
7387             IV i;
7388             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
7389                 return;
7390             i = PTR2IV(SvRV(sv));
7391             sv_unref(sv);
7392             sv_setiv(sv, i);
7393         }
7394     }
7395     /* Unlike sv_inc we don't have to worry about string-never-numbers
7396        and keeping them magic. But we mustn't warn on punting */
7397     flags = SvFLAGS(sv);
7398     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7399         /* It's publicly an integer, or privately an integer-not-float */
7400 #ifdef PERL_PRESERVE_IVUV
7401       oops_its_int:
7402 #endif
7403         if (SvIsUV(sv)) {
7404             if (SvUVX(sv) == 0) {
7405                 (void)SvIOK_only(sv);
7406                 SvIV_set(sv, -1);
7407             }
7408             else {
7409                 (void)SvIOK_only_UV(sv);
7410                 SvUV_set(sv, SvUVX(sv) + 1);
7411             }   
7412         } else {
7413             if (SvIVX(sv) == IV_MIN)
7414                 sv_setnv(sv, (NV)IV_MIN - 1.0);
7415             else {
7416                 (void)SvIOK_only(sv);
7417                 SvIV_set(sv, SvIVX(sv) - 1);
7418             }   
7419         }
7420         return;
7421     }
7422     if (flags & SVp_NOK) {
7423         SvNV_set(sv, SvNVX(sv) - 1.0);
7424         (void)SvNOK_only(sv);
7425         return;
7426     }
7427     if (!(flags & SVp_POK)) {
7428         if ((flags & SVTYPEMASK) < SVt_PVNV)
7429             sv_upgrade(sv, SVt_NV);
7430         SvNV_set(sv, 1.0);
7431         (void)SvNOK_only(sv);
7432         return;
7433     }
7434 #ifdef PERL_PRESERVE_IVUV
7435     {
7436         int numtype = grok_number(SvPVX(sv), SvCUR(sv), NULL);
7437         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7438             /* Need to try really hard to see if it's an integer.
7439                9.22337203685478e+18 is an integer.
7440                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7441                so $a="9.22337203685478e+18"; $a+0; $a--
7442                needs to be the same as $a="9.22337203685478e+18"; $a--
7443                or we go insane. */
7444         
7445             (void) sv_2iv(sv);
7446             if (SvIOK(sv))
7447                 goto oops_its_int;
7448
7449             /* sv_2iv *should* have made this an NV */
7450             if (flags & SVp_NOK) {
7451                 (void)SvNOK_only(sv);
7452                 SvNV_set(sv, SvNVX(sv) - 1.0);
7453                 return;
7454             }
7455             /* I don't think we can get here. Maybe I should assert this
7456                And if we do get here I suspect that sv_setnv will croak. NWC
7457                Fall through. */
7458 #if defined(USE_LONG_DOUBLE)
7459             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",
7460                                   SvPVX(sv), SvIVX(sv), SvNVX(sv)));
7461 #else
7462             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7463                                   SvPVX(sv), SvIVX(sv), SvNVX(sv)));
7464 #endif
7465         }
7466     }
7467 #endif /* PERL_PRESERVE_IVUV */
7468     sv_setnv(sv,Atof(SvPVX(sv)) - 1.0); /* punt */
7469 }
7470
7471 /*
7472 =for apidoc sv_mortalcopy
7473
7474 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
7475 The new SV is marked as mortal. It will be destroyed "soon", either by an
7476 explicit call to FREETMPS, or by an implicit call at places such as
7477 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
7478
7479 =cut
7480 */
7481
7482 /* Make a string that will exist for the duration of the expression
7483  * evaluation.  Actually, it may have to last longer than that, but
7484  * hopefully we won't free it until it has been assigned to a
7485  * permanent location. */
7486
7487 SV *
7488 Perl_sv_mortalcopy(pTHX_ SV *oldstr)
7489 {
7490     register SV *sv;
7491
7492     new_SV(sv);
7493     sv_setsv(sv,oldstr);
7494     EXTEND_MORTAL(1);
7495     PL_tmps_stack[++PL_tmps_ix] = sv;
7496     SvTEMP_on(sv);
7497     return sv;
7498 }
7499
7500 /*
7501 =for apidoc sv_newmortal
7502
7503 Creates a new null SV which is mortal.  The reference count of the SV is
7504 set to 1. It will be destroyed "soon", either by an explicit call to
7505 FREETMPS, or by an implicit call at places such as statement boundaries.
7506 See also C<sv_mortalcopy> and C<sv_2mortal>.
7507
7508 =cut
7509 */
7510
7511 SV *
7512 Perl_sv_newmortal(pTHX)
7513 {
7514     register SV *sv;
7515
7516     new_SV(sv);
7517     SvFLAGS(sv) = SVs_TEMP;
7518     EXTEND_MORTAL(1);
7519     PL_tmps_stack[++PL_tmps_ix] = sv;
7520     return sv;
7521 }
7522
7523 /*
7524 =for apidoc sv_2mortal
7525
7526 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
7527 by an explicit call to FREETMPS, or by an implicit call at places such as
7528 statement boundaries.  SvTEMP() is turned on which means that the SV's
7529 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7530 and C<sv_mortalcopy>.
7531
7532 =cut
7533 */
7534
7535 SV *
7536 Perl_sv_2mortal(pTHX_ register SV *sv)
7537 {
7538     dVAR;
7539     if (!sv)
7540         return sv;
7541     if (SvREADONLY(sv) && SvIMMORTAL(sv))
7542         return sv;
7543     EXTEND_MORTAL(1);
7544     PL_tmps_stack[++PL_tmps_ix] = sv;
7545     SvTEMP_on(sv);
7546     return sv;
7547 }
7548
7549 /*
7550 =for apidoc newSVpv
7551
7552 Creates a new SV and copies a string into it.  The reference count for the
7553 SV is set to 1.  If C<len> is zero, Perl will compute the length using
7554 strlen().  For efficiency, consider using C<newSVpvn> instead.
7555
7556 =cut
7557 */
7558
7559 SV *
7560 Perl_newSVpv(pTHX_ const char *s, STRLEN len)
7561 {
7562     register SV *sv;
7563
7564     new_SV(sv);
7565     if (!len)
7566         len = strlen(s);
7567     sv_setpvn(sv,s,len);
7568     return sv;
7569 }
7570
7571 /*
7572 =for apidoc newSVpvn
7573
7574 Creates a new SV and copies a string into it.  The reference count for the
7575 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7576 string.  You are responsible for ensuring that the source string is at least
7577 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7578
7579 =cut
7580 */
7581
7582 SV *
7583 Perl_newSVpvn(pTHX_ const char *s, STRLEN len)
7584 {
7585     register SV *sv;
7586
7587     new_SV(sv);
7588     sv_setpvn(sv,s,len);
7589     return sv;
7590 }
7591
7592 /*
7593 =for apidoc newSVpvn_share
7594
7595 Creates a new SV with its SvPVX pointing to a shared string in the string
7596 table. If the string does not already exist in the table, it is created
7597 first.  Turns on READONLY and FAKE.  The string's hash is stored in the UV
7598 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
7599 otherwise the hash is computed.  The idea here is that as the string table
7600 is used for shared hash keys these strings will have SvPVX == HeKEY and
7601 hash lookup will avoid string compare.
7602
7603 =cut
7604 */
7605
7606 SV *
7607 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
7608 {
7609     register SV *sv;
7610     bool is_utf8 = FALSE;
7611     if (len < 0) {
7612         STRLEN tmplen = -len;
7613         is_utf8 = TRUE;
7614         /* See the note in hv.c:hv_fetch() --jhi */
7615         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
7616         len = tmplen;
7617     }
7618     if (!hash)
7619         PERL_HASH(hash, src, len);
7620     new_SV(sv);
7621     sv_upgrade(sv, SVt_PVIV);
7622     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
7623     SvCUR_set(sv, len);
7624     SvUV_set(sv, hash);
7625     SvLEN_set(sv, 0);
7626     SvREADONLY_on(sv);
7627     SvFAKE_on(sv);
7628     SvPOK_on(sv);
7629     if (is_utf8)
7630         SvUTF8_on(sv);
7631     return sv;
7632 }
7633
7634
7635 #if defined(PERL_IMPLICIT_CONTEXT)
7636
7637 /* pTHX_ magic can't cope with varargs, so this is a no-context
7638  * version of the main function, (which may itself be aliased to us).
7639  * Don't access this version directly.
7640  */
7641
7642 SV *
7643 Perl_newSVpvf_nocontext(const char* pat, ...)
7644 {
7645     dTHX;
7646     register SV *sv;
7647     va_list args;
7648     va_start(args, pat);
7649     sv = vnewSVpvf(pat, &args);
7650     va_end(args);
7651     return sv;
7652 }
7653 #endif
7654
7655 /*
7656 =for apidoc newSVpvf
7657
7658 Creates a new SV and initializes it with the string formatted like
7659 C<sprintf>.
7660
7661 =cut
7662 */
7663
7664 SV *
7665 Perl_newSVpvf(pTHX_ const char* pat, ...)
7666 {
7667     register SV *sv;
7668     va_list args;
7669     va_start(args, pat);
7670     sv = vnewSVpvf(pat, &args);
7671     va_end(args);
7672     return sv;
7673 }
7674
7675 /* backend for newSVpvf() and newSVpvf_nocontext() */
7676
7677 SV *
7678 Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args)
7679 {
7680     register SV *sv;
7681     new_SV(sv);
7682     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
7683     return sv;
7684 }
7685
7686 /*
7687 =for apidoc newSVnv
7688
7689 Creates a new SV and copies a floating point value into it.
7690 The reference count for the SV is set to 1.
7691
7692 =cut
7693 */
7694
7695 SV *
7696 Perl_newSVnv(pTHX_ NV n)
7697 {
7698     register SV *sv;
7699
7700     new_SV(sv);
7701     sv_setnv(sv,n);
7702     return sv;
7703 }
7704
7705 /*
7706 =for apidoc newSViv
7707
7708 Creates a new SV and copies an integer into it.  The reference count for the
7709 SV is set to 1.
7710
7711 =cut
7712 */
7713
7714 SV *
7715 Perl_newSViv(pTHX_ IV i)
7716 {
7717     register SV *sv;
7718
7719     new_SV(sv);
7720     sv_setiv(sv,i);
7721     return sv;
7722 }
7723
7724 /*
7725 =for apidoc newSVuv
7726
7727 Creates a new SV and copies an unsigned integer into it.
7728 The reference count for the SV is set to 1.
7729
7730 =cut
7731 */
7732
7733 SV *
7734 Perl_newSVuv(pTHX_ UV u)
7735 {
7736     register SV *sv;
7737
7738     new_SV(sv);
7739     sv_setuv(sv,u);
7740     return sv;
7741 }
7742
7743 /*
7744 =for apidoc newRV_noinc
7745
7746 Creates an RV wrapper for an SV.  The reference count for the original
7747 SV is B<not> incremented.
7748
7749 =cut
7750 */
7751
7752 SV *
7753 Perl_newRV_noinc(pTHX_ SV *tmpRef)
7754 {
7755     register SV *sv;
7756
7757     new_SV(sv);
7758     sv_upgrade(sv, SVt_RV);
7759     SvTEMP_off(tmpRef);
7760     SvRV_set(sv, tmpRef);
7761     SvROK_on(sv);
7762     return sv;
7763 }
7764
7765 /* newRV_inc is the official function name to use now.
7766  * newRV_inc is in fact #defined to newRV in sv.h
7767  */
7768
7769 SV *
7770 Perl_newRV(pTHX_ SV *tmpRef)
7771 {
7772     return newRV_noinc(SvREFCNT_inc(tmpRef));
7773 }
7774
7775 /*
7776 =for apidoc newSVsv
7777
7778 Creates a new SV which is an exact duplicate of the original SV.
7779 (Uses C<sv_setsv>).
7780
7781 =cut
7782 */
7783
7784 SV *
7785 Perl_newSVsv(pTHX_ register SV *old)
7786 {
7787     register SV *sv;
7788
7789     if (!old)
7790         return Nullsv;
7791     if (SvTYPE(old) == SVTYPEMASK) {
7792         if (ckWARN_d(WARN_INTERNAL))
7793             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
7794         return Nullsv;
7795     }
7796     new_SV(sv);
7797     /* SV_GMAGIC is the default for sv_setv()
7798        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
7799        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
7800     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
7801     return sv;
7802 }
7803
7804 /*
7805 =for apidoc sv_reset
7806
7807 Underlying implementation for the C<reset> Perl function.
7808 Note that the perl-level function is vaguely deprecated.
7809
7810 =cut
7811 */
7812
7813 void
7814 Perl_sv_reset(pTHX_ register const char *s, HV *stash)
7815 {
7816     dVAR;
7817     register HE *entry;
7818     register GV *gv;
7819     register SV *sv;
7820     register I32 i;
7821     register I32 max;
7822     char todo[PERL_UCHAR_MAX+1];
7823
7824     if (!stash)
7825         return;
7826
7827     if (!*s) {          /* reset ?? searches */
7828         MAGIC *mg = mg_find((SV *)stash, PERL_MAGIC_symtab);
7829         if (mg) {
7830             PMOP *pm = (PMOP *) mg->mg_obj;
7831             while (pm) {
7832                 pm->op_pmdynflags &= ~PMdf_USED;
7833                 pm = pm->op_pmnext;
7834             }
7835         }
7836         return;
7837     }
7838
7839     /* reset variables */
7840
7841     if (!HvARRAY(stash))
7842         return;
7843
7844     Zero(todo, 256, char);
7845     while (*s) {
7846         i = (unsigned char)*s;
7847         if (s[1] == '-') {
7848             s += 2;
7849         }
7850         max = (unsigned char)*s++;
7851         for ( ; i <= max; i++) {
7852             todo[i] = 1;
7853         }
7854         for (i = 0; i <= (I32) HvMAX(stash); i++) {
7855             for (entry = HvARRAY(stash)[i];
7856                  entry;
7857                  entry = HeNEXT(entry))
7858             {
7859                 if (!todo[(U8)*HeKEY(entry)])
7860                     continue;
7861                 gv = (GV*)HeVAL(entry);
7862                 sv = GvSV(gv);
7863                 if (SvTHINKFIRST(sv)) {
7864                     if (!SvREADONLY(sv) && SvROK(sv))
7865                         sv_unref(sv);
7866                     continue;
7867                 }
7868                 SvOK_off(sv);
7869                 if (SvTYPE(sv) >= SVt_PV) {
7870                     SvCUR_set(sv, 0);
7871                     if (SvPVX(sv) != Nullch)
7872                         *SvPVX(sv) = '\0';
7873                     SvTAINT(sv);
7874                 }
7875                 if (GvAV(gv)) {
7876                     av_clear(GvAV(gv));
7877                 }
7878                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
7879                     hv_clear(GvHV(gv));
7880 #ifndef PERL_MICRO
7881 #ifdef USE_ENVIRON_ARRAY
7882                     if (gv == PL_envgv
7883 #  ifdef USE_ITHREADS
7884                         && PL_curinterp == aTHX
7885 #  endif
7886                     )
7887                     {
7888                         environ[0] = Nullch;
7889                     }
7890 #endif
7891 #endif /* !PERL_MICRO */
7892                 }
7893             }
7894         }
7895     }
7896 }
7897
7898 /*
7899 =for apidoc sv_2io
7900
7901 Using various gambits, try to get an IO from an SV: the IO slot if its a
7902 GV; or the recursive result if we're an RV; or the IO slot of the symbol
7903 named after the PV if we're a string.
7904
7905 =cut
7906 */
7907
7908 IO*
7909 Perl_sv_2io(pTHX_ SV *sv)
7910 {
7911     IO* io;
7912     GV* gv;
7913
7914     switch (SvTYPE(sv)) {
7915     case SVt_PVIO:
7916         io = (IO*)sv;
7917         break;
7918     case SVt_PVGV:
7919         gv = (GV*)sv;
7920         io = GvIO(gv);
7921         if (!io)
7922             Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
7923         break;
7924     default:
7925         if (!SvOK(sv))
7926             Perl_croak(aTHX_ PL_no_usym, "filehandle");
7927         if (SvROK(sv))
7928             return sv_2io(SvRV(sv));
7929         gv = gv_fetchsv(sv, FALSE, SVt_PVIO);
7930         if (gv)
7931             io = GvIO(gv);
7932         else
7933             io = 0;
7934         if (!io)
7935             Perl_croak(aTHX_ "Bad filehandle: %"SVf, sv);
7936         break;
7937     }
7938     return io;
7939 }
7940
7941 /*
7942 =for apidoc sv_2cv
7943
7944 Using various gambits, try to get a CV from an SV; in addition, try if
7945 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
7946
7947 =cut
7948 */
7949
7950 CV *
7951 Perl_sv_2cv(pTHX_ SV *sv, HV **st, GV **gvp, I32 lref)
7952 {
7953     dVAR;
7954     GV *gv = Nullgv;
7955     CV *cv = Nullcv;
7956
7957     if (!sv)
7958         return *gvp = Nullgv, Nullcv;
7959     switch (SvTYPE(sv)) {
7960     case SVt_PVCV:
7961         *st = CvSTASH(sv);
7962         *gvp = Nullgv;
7963         return (CV*)sv;
7964     case SVt_PVHV:
7965     case SVt_PVAV:
7966         *gvp = Nullgv;
7967         return Nullcv;
7968     case SVt_PVGV:
7969         gv = (GV*)sv;
7970         *gvp = gv;
7971         *st = GvESTASH(gv);
7972         goto fix_gv;
7973
7974     default:
7975         if (SvGMAGICAL(sv))
7976             mg_get(sv);
7977         if (SvROK(sv)) {
7978             SV **sp = &sv;              /* Used in tryAMAGICunDEREF macro. */
7979             tryAMAGICunDEREF(to_cv);
7980
7981             sv = SvRV(sv);
7982             if (SvTYPE(sv) == SVt_PVCV) {
7983                 cv = (CV*)sv;
7984                 *gvp = Nullgv;
7985                 *st = CvSTASH(cv);
7986                 return cv;
7987             }
7988             else if(isGV(sv))
7989                 gv = (GV*)sv;
7990             else
7991                 Perl_croak(aTHX_ "Not a subroutine reference");
7992         }
7993         else if (isGV(sv))
7994             gv = (GV*)sv;
7995         else
7996             gv = gv_fetchsv(sv, lref, SVt_PVCV);
7997         *gvp = gv;
7998         if (!gv)
7999             return Nullcv;
8000         *st = GvESTASH(gv);
8001     fix_gv:
8002         if (lref && !GvCVu(gv)) {
8003             SV *tmpsv;
8004             ENTER;
8005             tmpsv = NEWSV(704,0);
8006             gv_efullname3(tmpsv, gv, Nullch);
8007             /* XXX this is probably not what they think they're getting.
8008              * It has the same effect as "sub name;", i.e. just a forward
8009              * declaration! */
8010             newSUB(start_subparse(FALSE, 0),
8011                    newSVOP(OP_CONST, 0, tmpsv),
8012                    Nullop,
8013                    Nullop);
8014             LEAVE;
8015             if (!GvCVu(gv))
8016                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8017                            sv);
8018         }
8019         return GvCVu(gv);
8020     }
8021 }
8022
8023 /*
8024 =for apidoc sv_true
8025
8026 Returns true if the SV has a true value by Perl's rules.
8027 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8028 instead use an in-line version.
8029
8030 =cut
8031 */
8032
8033 I32
8034 Perl_sv_true(pTHX_ register SV *sv)
8035 {
8036     if (!sv)
8037         return 0;
8038     if (SvPOK(sv)) {
8039         const register XPV* tXpv;
8040         if ((tXpv = (XPV*)SvANY(sv)) &&
8041                 (tXpv->xpv_cur > 1 ||
8042                 (tXpv->xpv_cur && *sv->sv_u.sv_pv != '0')))
8043             return 1;
8044         else
8045             return 0;
8046     }
8047     else {
8048         if (SvIOK(sv))
8049             return SvIVX(sv) != 0;
8050         else {
8051             if (SvNOK(sv))
8052                 return SvNVX(sv) != 0.0;
8053             else
8054                 return sv_2bool(sv);
8055         }
8056     }
8057 }
8058
8059 /*
8060 =for apidoc sv_iv
8061
8062 A private implementation of the C<SvIVx> macro for compilers which can't
8063 cope with complex macro expressions. Always use the macro instead.
8064
8065 =cut
8066 */
8067
8068 IV
8069 Perl_sv_iv(pTHX_ register SV *sv)
8070 {
8071     if (SvIOK(sv)) {
8072         if (SvIsUV(sv))
8073             return (IV)SvUVX(sv);
8074         return SvIVX(sv);
8075     }
8076     return sv_2iv(sv);
8077 }
8078
8079 /*
8080 =for apidoc sv_uv
8081
8082 A private implementation of the C<SvUVx> macro for compilers which can't
8083 cope with complex macro expressions. Always use the macro instead.
8084
8085 =cut
8086 */
8087
8088 UV
8089 Perl_sv_uv(pTHX_ register SV *sv)
8090 {
8091     if (SvIOK(sv)) {
8092         if (SvIsUV(sv))
8093             return SvUVX(sv);
8094         return (UV)SvIVX(sv);
8095     }
8096     return sv_2uv(sv);
8097 }
8098
8099 /*
8100 =for apidoc sv_nv
8101
8102 A private implementation of the C<SvNVx> macro for compilers which can't
8103 cope with complex macro expressions. Always use the macro instead.
8104
8105 =cut
8106 */
8107
8108 NV
8109 Perl_sv_nv(pTHX_ register SV *sv)
8110 {
8111     if (SvNOK(sv))
8112         return SvNVX(sv);
8113     return sv_2nv(sv);
8114 }
8115
8116 /* sv_pv() is now a macro using SvPV_nolen();
8117  * this function provided for binary compatibility only
8118  */
8119
8120 char *
8121 Perl_sv_pv(pTHX_ SV *sv)
8122 {
8123     STRLEN n_a;
8124
8125     if (SvPOK(sv))
8126         return SvPVX(sv);
8127
8128     return sv_2pv(sv, &n_a);
8129 }
8130
8131 /*
8132 =for apidoc sv_pv
8133
8134 Use the C<SvPV_nolen> macro instead
8135
8136 =for apidoc sv_pvn
8137
8138 A private implementation of the C<SvPV> macro for compilers which can't
8139 cope with complex macro expressions. Always use the macro instead.
8140
8141 =cut
8142 */
8143
8144 char *
8145 Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
8146 {
8147     if (SvPOK(sv)) {
8148         *lp = SvCUR(sv);
8149         return SvPVX(sv);
8150     }
8151     return sv_2pv(sv, lp);
8152 }
8153
8154
8155 char *
8156 Perl_sv_pvn_nomg(pTHX_ register SV *sv, STRLEN *lp)
8157 {
8158     if (SvPOK(sv)) {
8159         *lp = SvCUR(sv);
8160         return SvPVX(sv);
8161     }
8162     return sv_2pv_flags(sv, lp, 0);
8163 }
8164
8165 /* sv_pvn_force() is now a macro using Perl_sv_pvn_force_flags();
8166  * this function provided for binary compatibility only
8167  */
8168
8169 char *
8170 Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
8171 {
8172     return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
8173 }
8174
8175 /*
8176 =for apidoc sv_pvn_force
8177
8178 Get a sensible string out of the SV somehow.
8179 A private implementation of the C<SvPV_force> macro for compilers which
8180 can't cope with complex macro expressions. Always use the macro instead.
8181
8182 =for apidoc sv_pvn_force_flags
8183
8184 Get a sensible string out of the SV somehow.
8185 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8186 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8187 implemented in terms of this function.
8188 You normally want to use the various wrapper macros instead: see
8189 C<SvPV_force> and C<SvPV_force_nomg>
8190
8191 =cut
8192 */
8193
8194 char *
8195 Perl_sv_pvn_force_flags(pTHX_ SV *sv, STRLEN *lp, I32 flags)
8196 {
8197
8198     if (SvTHINKFIRST(sv) && !SvROK(sv))
8199         sv_force_normal_flags(sv, 0);
8200
8201     if (SvPOK(sv)) {
8202         *lp = SvCUR(sv);
8203     }
8204     else {
8205         char *s;
8206         if (SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM) {
8207             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8208                 OP_NAME(PL_op));
8209         }
8210         else
8211             s = sv_2pv_flags(sv, lp, flags);
8212         if (s != SvPVX(sv)) {   /* Almost, but not quite, sv_setpvn() */
8213             const STRLEN len = *lp;
8214         
8215             if (SvROK(sv))
8216                 sv_unref(sv);
8217             (void)SvUPGRADE(sv, SVt_PV);                /* Never FALSE */
8218             SvGROW(sv, len + 1);
8219             Move(s,SvPVX(sv),len,char);
8220             SvCUR_set(sv, len);
8221             *SvEND(sv) = '\0';
8222         }
8223         if (!SvPOK(sv)) {
8224             SvPOK_on(sv);               /* validate pointer */
8225             SvTAINT(sv);
8226             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
8227                                   PTR2UV(sv),SvPVX(sv)));
8228         }
8229     }
8230     return SvPVX(sv);
8231 }
8232
8233 /* sv_pvbyte () is now a macro using Perl_sv_2pv_flags();
8234  * this function provided for binary compatibility only
8235  */
8236
8237 char *
8238 Perl_sv_pvbyte(pTHX_ SV *sv)
8239 {
8240     sv_utf8_downgrade(sv,0);
8241     return sv_pv(sv);
8242 }
8243
8244 /*
8245 =for apidoc sv_pvbyte
8246
8247 Use C<SvPVbyte_nolen> instead.
8248
8249 =for apidoc sv_pvbyten
8250
8251 A private implementation of the C<SvPVbyte> macro for compilers
8252 which can't cope with complex macro expressions. Always use the macro
8253 instead.
8254
8255 =cut
8256 */
8257
8258 char *
8259 Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
8260 {
8261     sv_utf8_downgrade(sv,0);
8262     return sv_pvn(sv,lp);
8263 }
8264
8265 /*
8266 =for apidoc sv_pvbyten_force
8267
8268 A private implementation of the C<SvPVbytex_force> macro for compilers
8269 which can't cope with complex macro expressions. Always use the macro
8270 instead.
8271
8272 =cut
8273 */
8274
8275 char *
8276 Perl_sv_pvbyten_force(pTHX_ SV *sv, STRLEN *lp)
8277 {
8278     sv_pvn_force(sv,lp);
8279     sv_utf8_downgrade(sv,0);
8280     *lp = SvCUR(sv);
8281     return SvPVX(sv);
8282 }
8283
8284 /* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
8285  * this function provided for binary compatibility only
8286  */
8287
8288 char *
8289 Perl_sv_pvutf8(pTHX_ SV *sv)
8290 {
8291     sv_utf8_upgrade(sv);
8292     return sv_pv(sv);
8293 }
8294
8295 /*
8296 =for apidoc sv_pvutf8
8297
8298 Use the C<SvPVutf8_nolen> macro instead
8299
8300 =for apidoc sv_pvutf8n
8301
8302 A private implementation of the C<SvPVutf8> macro for compilers
8303 which can't cope with complex macro expressions. Always use the macro
8304 instead.
8305
8306 =cut
8307 */
8308
8309 char *
8310 Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
8311 {
8312     sv_utf8_upgrade(sv);
8313     return sv_pvn(sv,lp);
8314 }
8315
8316 /*
8317 =for apidoc sv_pvutf8n_force
8318
8319 A private implementation of the C<SvPVutf8_force> macro for compilers
8320 which can't cope with complex macro expressions. Always use the macro
8321 instead.
8322
8323 =cut
8324 */
8325
8326 char *
8327 Perl_sv_pvutf8n_force(pTHX_ SV *sv, STRLEN *lp)
8328 {
8329     sv_pvn_force(sv,lp);
8330     sv_utf8_upgrade(sv);
8331     *lp = SvCUR(sv);
8332     return SvPVX(sv);
8333 }
8334
8335 /*
8336 =for apidoc sv_reftype
8337
8338 Returns a string describing what the SV is a reference to.
8339
8340 =cut
8341 */
8342
8343 char *
8344 Perl_sv_reftype(pTHX_ const SV *sv, int ob)
8345 {
8346     /* The fact that I don't need to downcast to char * everywhere, only in ?:
8347        inside return suggests a const propagation bug in g++.  */
8348     if (ob && SvOBJECT(sv)) {
8349         char *name = HvNAME_get(SvSTASH(sv));
8350         return name ? name : (char *) "__ANON__";
8351     }
8352     else {
8353         switch (SvTYPE(sv)) {
8354         case SVt_NULL:
8355         case SVt_IV:
8356         case SVt_NV:
8357         case SVt_RV:
8358         case SVt_PV:
8359         case SVt_PVIV:
8360         case SVt_PVNV:
8361         case SVt_PVMG:
8362         case SVt_PVBM:
8363                                 if (SvVOK(sv))
8364                                     return "VSTRING";
8365                                 if (SvROK(sv))
8366                                     return "REF";
8367                                 else
8368                                     return "SCALAR";
8369
8370         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
8371                                 /* tied lvalues should appear to be
8372                                  * scalars for backwards compatitbility */
8373                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
8374                                     ? "SCALAR" : "LVALUE");
8375         case SVt_PVAV:          return "ARRAY";
8376         case SVt_PVHV:          return "HASH";
8377         case SVt_PVCV:          return "CODE";
8378         case SVt_PVGV:          return "GLOB";
8379         case SVt_PVFM:          return "FORMAT";
8380         case SVt_PVIO:          return "IO";
8381         default:                return "UNKNOWN";
8382         }
8383     }
8384 }
8385
8386 /*
8387 =for apidoc sv_isobject
8388
8389 Returns a boolean indicating whether the SV is an RV pointing to a blessed
8390 object.  If the SV is not an RV, or if the object is not blessed, then this
8391 will return false.
8392
8393 =cut
8394 */
8395
8396 int
8397 Perl_sv_isobject(pTHX_ SV *sv)
8398 {
8399     if (!sv)
8400         return 0;
8401     if (SvGMAGICAL(sv))
8402         mg_get(sv);
8403     if (!SvROK(sv))
8404         return 0;
8405     sv = (SV*)SvRV(sv);
8406     if (!SvOBJECT(sv))
8407         return 0;
8408     return 1;
8409 }
8410
8411 /*
8412 =for apidoc sv_isa
8413
8414 Returns a boolean indicating whether the SV is blessed into the specified
8415 class.  This does not check for subtypes; use C<sv_derived_from> to verify
8416 an inheritance relationship.
8417
8418 =cut
8419 */
8420
8421 int
8422 Perl_sv_isa(pTHX_ SV *sv, const char *name)
8423 {
8424     const char *hvname;
8425     if (!sv)
8426         return 0;
8427     if (SvGMAGICAL(sv))
8428         mg_get(sv);
8429     if (!SvROK(sv))
8430         return 0;
8431     sv = (SV*)SvRV(sv);
8432     if (!SvOBJECT(sv))
8433         return 0;
8434     hvname = HvNAME_get(SvSTASH(sv));
8435     if (!hvname)
8436         return 0;
8437
8438     return strEQ(hvname, name);
8439 }
8440
8441 /*
8442 =for apidoc newSVrv
8443
8444 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
8445 it will be upgraded to one.  If C<classname> is non-null then the new SV will
8446 be blessed in the specified package.  The new SV is returned and its
8447 reference count is 1.
8448
8449 =cut
8450 */
8451
8452 SV*
8453 Perl_newSVrv(pTHX_ SV *rv, const char *classname)
8454 {
8455     SV *sv;
8456
8457     new_SV(sv);
8458
8459     SV_CHECK_THINKFIRST_COW_DROP(rv);
8460     SvAMAGIC_off(rv);
8461
8462     if (SvTYPE(rv) >= SVt_PVMG) {
8463         const U32 refcnt = SvREFCNT(rv);
8464         SvREFCNT(rv) = 0;
8465         sv_clear(rv);
8466         SvFLAGS(rv) = 0;
8467         SvREFCNT(rv) = refcnt;
8468     }
8469
8470     if (SvTYPE(rv) < SVt_RV)
8471         sv_upgrade(rv, SVt_RV);
8472     else if (SvTYPE(rv) > SVt_RV) {
8473         SvPV_free(rv);
8474         SvCUR_set(rv, 0);
8475         SvLEN_set(rv, 0);
8476     }
8477
8478     SvOK_off(rv);
8479     SvRV_set(rv, sv);
8480     SvROK_on(rv);
8481
8482     if (classname) {
8483         HV* stash = gv_stashpv(classname, TRUE);
8484         (void)sv_bless(rv, stash);
8485     }
8486     return sv;
8487 }
8488
8489 /*
8490 =for apidoc sv_setref_pv
8491
8492 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
8493 argument will be upgraded to an RV.  That RV will be modified to point to
8494 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8495 into the SV.  The C<classname> argument indicates the package for the
8496 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
8497 will have a reference count of 1, and the RV will be returned.
8498
8499 Do not use with other Perl types such as HV, AV, SV, CV, because those
8500 objects will become corrupted by the pointer copy process.
8501
8502 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8503
8504 =cut
8505 */
8506
8507 SV*
8508 Perl_sv_setref_pv(pTHX_ SV *rv, const char *classname, void *pv)
8509 {
8510     if (!pv) {
8511         sv_setsv(rv, &PL_sv_undef);
8512         SvSETMAGIC(rv);
8513     }
8514     else
8515         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
8516     return rv;
8517 }
8518
8519 /*
8520 =for apidoc sv_setref_iv
8521
8522 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
8523 argument will be upgraded to an RV.  That RV will be modified to point to
8524 the new SV.  The C<classname> argument indicates the package for the
8525 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
8526 will have a reference count of 1, and the RV will be returned.
8527
8528 =cut
8529 */
8530
8531 SV*
8532 Perl_sv_setref_iv(pTHX_ SV *rv, const char *classname, IV iv)
8533 {
8534     sv_setiv(newSVrv(rv,classname), iv);
8535     return rv;
8536 }
8537
8538 /*
8539 =for apidoc sv_setref_uv
8540
8541 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
8542 argument will be upgraded to an RV.  That RV will be modified to point to
8543 the new SV.  The C<classname> argument indicates the package for the
8544 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
8545 will have a reference count of 1, and the RV will be returned.
8546
8547 =cut
8548 */
8549
8550 SV*
8551 Perl_sv_setref_uv(pTHX_ SV *rv, const char *classname, UV uv)
8552 {
8553     sv_setuv(newSVrv(rv,classname), uv);
8554     return rv;
8555 }
8556
8557 /*
8558 =for apidoc sv_setref_nv
8559
8560 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
8561 argument will be upgraded to an RV.  That RV will be modified to point to
8562 the new SV.  The C<classname> argument indicates the package for the
8563 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
8564 will have a reference count of 1, and the RV will be returned.
8565
8566 =cut
8567 */
8568
8569 SV*
8570 Perl_sv_setref_nv(pTHX_ SV *rv, const char *classname, NV nv)
8571 {
8572     sv_setnv(newSVrv(rv,classname), nv);
8573     return rv;
8574 }
8575
8576 /*
8577 =for apidoc sv_setref_pvn
8578
8579 Copies a string into a new SV, optionally blessing the SV.  The length of the
8580 string must be specified with C<n>.  The C<rv> argument will be upgraded to
8581 an RV.  That RV will be modified to point to the new SV.  The C<classname>
8582 argument indicates the package for the blessing.  Set C<classname> to
8583 C<Nullch> to avoid the blessing.  The new SV will have a reference count
8584 of 1, and the RV will be returned.
8585
8586 Note that C<sv_setref_pv> copies the pointer while this copies the string.
8587
8588 =cut
8589 */
8590
8591 SV*
8592 Perl_sv_setref_pvn(pTHX_ SV *rv, const char *classname, char *pv, STRLEN n)
8593 {
8594     sv_setpvn(newSVrv(rv,classname), pv, n);
8595     return rv;
8596 }
8597
8598 /*
8599 =for apidoc sv_bless
8600
8601 Blesses an SV into a specified package.  The SV must be an RV.  The package
8602 must be designated by its stash (see C<gv_stashpv()>).  The reference count
8603 of the SV is unaffected.
8604
8605 =cut
8606 */
8607
8608 SV*
8609 Perl_sv_bless(pTHX_ SV *sv, HV *stash)
8610 {
8611     SV *tmpRef;
8612     if (!SvROK(sv))
8613         Perl_croak(aTHX_ "Can't bless non-reference value");
8614     tmpRef = SvRV(sv);
8615     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
8616         if (SvREADONLY(tmpRef))
8617             Perl_croak(aTHX_ PL_no_modify);
8618         if (SvOBJECT(tmpRef)) {
8619             if (SvTYPE(tmpRef) != SVt_PVIO)
8620                 --PL_sv_objcount;
8621             SvREFCNT_dec(SvSTASH(tmpRef));
8622         }
8623     }
8624     SvOBJECT_on(tmpRef);
8625     if (SvTYPE(tmpRef) != SVt_PVIO)
8626         ++PL_sv_objcount;
8627     (void)SvUPGRADE(tmpRef, SVt_PVMG);
8628     SvSTASH_set(tmpRef, (HV*)SvREFCNT_inc(stash));
8629
8630     if (Gv_AMG(stash))
8631         SvAMAGIC_on(sv);
8632     else
8633         SvAMAGIC_off(sv);
8634
8635     if(SvSMAGICAL(tmpRef))
8636         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
8637             mg_set(tmpRef);
8638
8639
8640
8641     return sv;
8642 }
8643
8644 /* Downgrades a PVGV to a PVMG.
8645  */
8646
8647 STATIC void
8648 S_sv_unglob(pTHX_ SV *sv)
8649 {
8650     void *xpvmg;
8651
8652     assert(SvTYPE(sv) == SVt_PVGV);
8653     SvFAKE_off(sv);
8654     if (GvGP(sv))
8655         gp_free((GV*)sv);
8656     if (GvSTASH(sv)) {
8657         SvREFCNT_dec(GvSTASH(sv));
8658         GvSTASH(sv) = Nullhv;
8659     }
8660     sv_unmagic(sv, PERL_MAGIC_glob);
8661     Safefree(GvNAME(sv));
8662     GvMULTI_off(sv);
8663
8664     /* need to keep SvANY(sv) in the right arena */
8665     xpvmg = new_XPVMG();
8666     StructCopy(SvANY(sv), xpvmg, XPVMG);
8667     del_XPVGV(SvANY(sv));
8668     SvANY(sv) = xpvmg;
8669
8670     SvFLAGS(sv) &= ~SVTYPEMASK;
8671     SvFLAGS(sv) |= SVt_PVMG;
8672 }
8673
8674 /*
8675 =for apidoc sv_unref_flags
8676
8677 Unsets the RV status of the SV, and decrements the reference count of
8678 whatever was being referenced by the RV.  This can almost be thought of
8679 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
8680 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
8681 (otherwise the decrementing is conditional on the reference count being
8682 different from one or the reference being a readonly SV).
8683 See C<SvROK_off>.
8684
8685 =cut
8686 */
8687
8688 void
8689 Perl_sv_unref_flags(pTHX_ SV *sv, U32 flags)
8690 {
8691     SV* rv = SvRV(sv);
8692
8693     if (SvWEAKREF(sv)) {
8694         sv_del_backref(sv);
8695         SvWEAKREF_off(sv);
8696         SvRV_set(sv, NULL);
8697         return;
8698     }
8699     SvRV_set(sv, NULL);
8700     SvROK_off(sv);
8701     /* You can't have a || SvREADONLY(rv) here, as $a = $$a, where $a was
8702        assigned to as BEGIN {$a = \"Foo"} will fail.  */
8703     if (SvREFCNT(rv) != 1 || (flags & SV_IMMEDIATE_UNREF))
8704         SvREFCNT_dec(rv);
8705     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
8706         sv_2mortal(rv);         /* Schedule for freeing later */
8707 }
8708
8709 /*
8710 =for apidoc sv_unref
8711
8712 Unsets the RV status of the SV, and decrements the reference count of
8713 whatever was being referenced by the RV.  This can almost be thought of
8714 as a reversal of C<newSVrv>.  This is C<sv_unref_flags> with the C<flag>
8715 being zero.  See C<SvROK_off>.
8716
8717 =cut
8718 */
8719
8720 void
8721 Perl_sv_unref(pTHX_ SV *sv)
8722 {
8723     sv_unref_flags(sv, 0);
8724 }
8725
8726 /*
8727 =for apidoc sv_taint
8728
8729 Taint an SV. Use C<SvTAINTED_on> instead.
8730 =cut
8731 */
8732
8733 void
8734 Perl_sv_taint(pTHX_ SV *sv)
8735 {
8736     sv_magic((sv), Nullsv, PERL_MAGIC_taint, Nullch, 0);
8737 }
8738
8739 /*
8740 =for apidoc sv_untaint
8741
8742 Untaint an SV. Use C<SvTAINTED_off> instead.
8743 =cut
8744 */
8745
8746 void
8747 Perl_sv_untaint(pTHX_ SV *sv)
8748 {
8749     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8750         MAGIC *mg = mg_find(sv, PERL_MAGIC_taint);
8751         if (mg)
8752             mg->mg_len &= ~1;
8753     }
8754 }
8755
8756 /*
8757 =for apidoc sv_tainted
8758
8759 Test an SV for taintedness. Use C<SvTAINTED> instead.
8760 =cut
8761 */
8762
8763 bool
8764 Perl_sv_tainted(pTHX_ SV *sv)
8765 {
8766     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8767         MAGIC *mg = mg_find(sv, PERL_MAGIC_taint);
8768         if (mg && ((mg->mg_len & 1) || ((mg->mg_len & 2) && mg->mg_obj == sv)))
8769             return TRUE;
8770     }
8771     return FALSE;
8772 }
8773
8774 /*
8775 =for apidoc sv_setpviv
8776
8777 Copies an integer into the given SV, also updating its string value.
8778 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
8779
8780 =cut
8781 */
8782
8783 void
8784 Perl_sv_setpviv(pTHX_ SV *sv, IV iv)
8785 {
8786     char buf[TYPE_CHARS(UV)];
8787     char *ebuf;
8788     char *ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8789
8790     sv_setpvn(sv, ptr, ebuf - ptr);
8791 }
8792
8793 /*
8794 =for apidoc sv_setpviv_mg
8795
8796 Like C<sv_setpviv>, but also handles 'set' magic.
8797
8798 =cut
8799 */
8800
8801 void
8802 Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv)
8803 {
8804     char buf[TYPE_CHARS(UV)];
8805     char *ebuf;
8806     char *ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8807
8808     sv_setpvn(sv, ptr, ebuf - ptr);
8809     SvSETMAGIC(sv);
8810 }
8811
8812 #if defined(PERL_IMPLICIT_CONTEXT)
8813
8814 /* pTHX_ magic can't cope with varargs, so this is a no-context
8815  * version of the main function, (which may itself be aliased to us).
8816  * Don't access this version directly.
8817  */
8818
8819 void
8820 Perl_sv_setpvf_nocontext(SV *sv, const char* pat, ...)
8821 {
8822     dTHX;
8823     va_list args;
8824     va_start(args, pat);
8825     sv_vsetpvf(sv, pat, &args);
8826     va_end(args);
8827 }
8828
8829 /* pTHX_ magic can't cope with varargs, so this is a no-context
8830  * version of the main function, (which may itself be aliased to us).
8831  * Don't access this version directly.
8832  */
8833
8834 void
8835 Perl_sv_setpvf_mg_nocontext(SV *sv, const char* pat, ...)
8836 {
8837     dTHX;
8838     va_list args;
8839     va_start(args, pat);
8840     sv_vsetpvf_mg(sv, pat, &args);
8841     va_end(args);
8842 }
8843 #endif
8844
8845 /*
8846 =for apidoc sv_setpvf
8847
8848 Works like C<sv_catpvf> but copies the text into the SV instead of
8849 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
8850
8851 =cut
8852 */
8853
8854 void
8855 Perl_sv_setpvf(pTHX_ SV *sv, const char* pat, ...)
8856 {
8857     va_list args;
8858     va_start(args, pat);
8859     sv_vsetpvf(sv, pat, &args);
8860     va_end(args);
8861 }
8862
8863 /*
8864 =for apidoc sv_vsetpvf
8865
8866 Works like C<sv_vcatpvf> but copies the text into the SV instead of
8867 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
8868
8869 Usually used via its frontend C<sv_setpvf>.
8870
8871 =cut
8872 */
8873
8874 void
8875 Perl_sv_vsetpvf(pTHX_ SV *sv, const char* pat, va_list* args)
8876 {
8877     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
8878 }
8879
8880 /*
8881 =for apidoc sv_setpvf_mg
8882
8883 Like C<sv_setpvf>, but also handles 'set' magic.
8884
8885 =cut
8886 */
8887
8888 void
8889 Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...)
8890 {
8891     va_list args;
8892     va_start(args, pat);
8893     sv_vsetpvf_mg(sv, pat, &args);
8894     va_end(args);
8895 }
8896
8897 /*
8898 =for apidoc sv_vsetpvf_mg
8899
8900 Like C<sv_vsetpvf>, but also handles 'set' magic.
8901
8902 Usually used via its frontend C<sv_setpvf_mg>.
8903
8904 =cut
8905 */
8906
8907 void
8908 Perl_sv_vsetpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
8909 {
8910     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
8911     SvSETMAGIC(sv);
8912 }
8913
8914 #if defined(PERL_IMPLICIT_CONTEXT)
8915
8916 /* pTHX_ magic can't cope with varargs, so this is a no-context
8917  * version of the main function, (which may itself be aliased to us).
8918  * Don't access this version directly.
8919  */
8920
8921 void
8922 Perl_sv_catpvf_nocontext(SV *sv, const char* pat, ...)
8923 {
8924     dTHX;
8925     va_list args;
8926     va_start(args, pat);
8927     sv_vcatpvf(sv, pat, &args);
8928     va_end(args);
8929 }
8930
8931 /* pTHX_ magic can't cope with varargs, so this is a no-context
8932  * version of the main function, (which may itself be aliased to us).
8933  * Don't access this version directly.
8934  */
8935
8936 void
8937 Perl_sv_catpvf_mg_nocontext(SV *sv, const char* pat, ...)
8938 {
8939     dTHX;
8940     va_list args;
8941     va_start(args, pat);
8942     sv_vcatpvf_mg(sv, pat, &args);
8943     va_end(args);
8944 }
8945 #endif
8946
8947 /*
8948 =for apidoc sv_catpvf
8949
8950 Processes its arguments like C<sprintf> and appends the formatted
8951 output to an SV.  If the appended data contains "wide" characters
8952 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
8953 and characters >255 formatted with %c), the original SV might get
8954 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
8955 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
8956 valid UTF-8; if the original SV was bytes, the pattern should be too.
8957
8958 =cut */
8959
8960 void
8961 Perl_sv_catpvf(pTHX_ SV *sv, const char* pat, ...)
8962 {
8963     va_list args;
8964     va_start(args, pat);
8965     sv_vcatpvf(sv, pat, &args);
8966     va_end(args);
8967 }
8968
8969 /*
8970 =for apidoc sv_vcatpvf
8971
8972 Processes its arguments like C<vsprintf> and appends the formatted output
8973 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
8974
8975 Usually used via its frontend C<sv_catpvf>.
8976
8977 =cut
8978 */
8979
8980 void
8981 Perl_sv_vcatpvf(pTHX_ SV *sv, const char* pat, va_list* args)
8982 {
8983     sv_vcatpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
8984 }
8985
8986 /*
8987 =for apidoc sv_catpvf_mg
8988
8989 Like C<sv_catpvf>, but also handles 'set' magic.
8990
8991 =cut
8992 */
8993
8994 void
8995 Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...)
8996 {
8997     va_list args;
8998     va_start(args, pat);
8999     sv_vcatpvf_mg(sv, pat, &args);
9000     va_end(args);
9001 }
9002
9003 /*
9004 =for apidoc sv_vcatpvf_mg
9005
9006 Like C<sv_vcatpvf>, but also handles 'set' magic.
9007
9008 Usually used via its frontend C<sv_catpvf_mg>.
9009
9010 =cut
9011 */
9012
9013 void
9014 Perl_sv_vcatpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
9015 {
9016     sv_vcatpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
9017     SvSETMAGIC(sv);
9018 }
9019
9020 /*
9021 =for apidoc sv_vsetpvfn
9022
9023 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9024 appending it.
9025
9026 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9027
9028 =cut
9029 */
9030
9031 void
9032 Perl_sv_vsetpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
9033 {
9034     sv_setpvn(sv, "", 0);
9035     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9036 }
9037
9038 /* private function for use in sv_vcatpvfn via the EXPECT_NUMBER macro */
9039
9040 STATIC I32
9041 S_expect_number(pTHX_ char** pattern)
9042 {
9043     I32 var = 0;
9044     switch (**pattern) {
9045     case '1': case '2': case '3':
9046     case '4': case '5': case '6':
9047     case '7': case '8': case '9':
9048         while (isDIGIT(**pattern))
9049             var = var * 10 + (*(*pattern)++ - '0');
9050     }
9051     return var;
9052 }
9053 #define EXPECT_NUMBER(pattern, var) (var = S_expect_number(aTHX_ &pattern))
9054
9055 static char *
9056 F0convert(NV nv, char *endbuf, STRLEN *len)
9057 {
9058     const int neg = nv < 0;
9059     UV uv;
9060     char *p = endbuf;
9061
9062     if (neg)
9063         nv = -nv;
9064     if (nv < UV_MAX) {
9065         nv += 0.5;
9066         uv = (UV)nv;
9067         if (uv & 1 && uv == nv)
9068             uv--;                       /* Round to even */
9069         do {
9070             const unsigned dig = uv % 10;
9071             *--p = '0' + dig;
9072         } while (uv /= 10);
9073         if (neg)
9074             *--p = '-';
9075         *len = endbuf - p;
9076         return p;
9077     }
9078     return Nullch;
9079 }
9080
9081
9082 /*
9083 =for apidoc sv_vcatpvfn
9084
9085 Processes its arguments like C<vsprintf> and appends the formatted output
9086 to an SV.  Uses an array of SVs if the C style variable argument list is
9087 missing (NULL).  When running with taint checks enabled, indicates via
9088 C<maybe_tainted> if results are untrustworthy (often due to the use of
9089 locales).
9090
9091 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9092
9093 =cut
9094 */
9095
9096 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9097
9098 void
9099 Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
9100 {
9101     char *p;
9102     char *q;
9103     const char *patend;
9104     STRLEN origlen;
9105     I32 svix = 0;
9106     static const char nullstr[] = "(null)";
9107     SV *argsv = Nullsv;
9108     bool has_utf8; /* has the result utf8? */
9109     bool pat_utf8; /* the pattern is in utf8? */
9110     SV *nsv = Nullsv;
9111     /* Times 4: a decimal digit takes more than 3 binary digits.
9112      * NV_DIG: mantissa takes than many decimal digits.
9113      * Plus 32: Playing safe. */
9114     char ebuf[IV_DIG * 4 + NV_DIG + 32];
9115     /* large enough for "%#.#f" --chip */
9116     /* what about long double NVs? --jhi */
9117
9118     has_utf8 = pat_utf8 = DO_UTF8(sv);
9119
9120     /* no matter what, this is a string now */
9121     (void)SvPV_force(sv, origlen);
9122
9123     /* special-case "", "%s", and "%-p" (SVf) */
9124     if (patlen == 0)
9125         return;
9126     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
9127             if (args) {
9128                 const char *s = va_arg(*args, char*);
9129                 sv_catpv(sv, s ? s : nullstr);
9130             }
9131             else if (svix < svmax) {
9132                 sv_catsv(sv, *svargs);
9133                 if (DO_UTF8(*svargs))
9134                     SvUTF8_on(sv);
9135             }
9136             return;
9137     }
9138     if (patlen == 3 && pat[0] == '%' &&
9139         pat[1] == '-' && pat[2] == 'p') {
9140             if (args) {
9141                 argsv = va_arg(*args, SV*);
9142                 sv_catsv(sv, argsv);
9143                 if (DO_UTF8(argsv))
9144                     SvUTF8_on(sv);
9145                 return;
9146             }
9147     }
9148
9149 #ifndef USE_LONG_DOUBLE
9150     /* special-case "%.<number>[gf]" */
9151     if ( patlen <= 5 && pat[0] == '%' && pat[1] == '.'
9152          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
9153         unsigned digits = 0;
9154         const char *pp;
9155
9156         pp = pat + 2;
9157         while (*pp >= '0' && *pp <= '9')
9158             digits = 10 * digits + (*pp++ - '0');
9159         if (pp - pat == (int)patlen - 1) {
9160             NV nv;
9161
9162             if (args)
9163                 nv = (NV)va_arg(*args, double);
9164             else if (svix < svmax)
9165                 nv = SvNV(*svargs);
9166             else
9167                 return;
9168             if (*pp == 'g') {
9169                 /* Add check for digits != 0 because it seems that some
9170                    gconverts are buggy in this case, and we don't yet have
9171                    a Configure test for this.  */
9172                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9173                      /* 0, point, slack */
9174                     Gconvert(nv, (int)digits, 0, ebuf);
9175                     sv_catpv(sv, ebuf);
9176                     if (*ebuf)  /* May return an empty string for digits==0 */
9177                         return;
9178                 }
9179             } else if (!digits) {
9180                 STRLEN l;
9181
9182                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9183                     sv_catpvn(sv, p, l);
9184                     return;
9185                 }
9186             }
9187         }
9188     }
9189 #endif /* !USE_LONG_DOUBLE */
9190
9191     if (!args && svix < svmax && DO_UTF8(*svargs))
9192         has_utf8 = TRUE;
9193
9194     patend = (char*)pat + patlen;
9195     for (p = (char*)pat; p < patend; p = q) {
9196         bool alt = FALSE;
9197         bool left = FALSE;
9198         bool vectorize = FALSE;
9199         bool vectorarg = FALSE;
9200         bool vec_utf8 = FALSE;
9201         char fill = ' ';
9202         char plus = 0;
9203         char intsize = 0;
9204         STRLEN width = 0;
9205         STRLEN zeros = 0;
9206         bool has_precis = FALSE;
9207         STRLEN precis = 0;
9208         I32 osvix = svix;
9209         bool is_utf8 = FALSE;  /* is this item utf8?   */
9210 #ifdef HAS_LDBL_SPRINTF_BUG
9211         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9212            with sfio - Allen <allens@cpan.org> */
9213         bool fix_ldbl_sprintf_bug = FALSE;
9214 #endif
9215
9216         char esignbuf[4];
9217         U8 utf8buf[UTF8_MAXBYTES+1];
9218         STRLEN esignlen = 0;
9219
9220         char *eptr = Nullch;
9221         STRLEN elen = 0;
9222         SV *vecsv = Nullsv;
9223         U8 *vecstr = Null(U8*);
9224         STRLEN veclen = 0;
9225         char c = 0;
9226         int i;
9227         unsigned base = 0;
9228         IV iv = 0;
9229         UV uv = 0;
9230         /* we need a long double target in case HAS_LONG_DOUBLE but
9231            not USE_LONG_DOUBLE
9232         */
9233 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9234         long double nv;
9235 #else
9236         NV nv;
9237 #endif
9238         STRLEN have;
9239         STRLEN need;
9240         STRLEN gap;
9241         const char *dotstr = ".";
9242         STRLEN dotstrlen = 1;
9243         I32 efix = 0; /* explicit format parameter index */
9244         I32 ewix = 0; /* explicit width index */
9245         I32 epix = 0; /* explicit precision index */
9246         I32 evix = 0; /* explicit vector index */
9247         bool asterisk = FALSE;
9248
9249         /* echo everything up to the next format specification */
9250         for (q = p; q < patend && *q != '%'; ++q) ;
9251         if (q > p) {
9252             if (has_utf8 && !pat_utf8)
9253                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
9254             else
9255                 sv_catpvn(sv, p, q - p);
9256             p = q;
9257         }
9258         if (q++ >= patend)
9259             break;
9260
9261 /*
9262     We allow format specification elements in this order:
9263         \d+\$              explicit format parameter index
9264         [-+ 0#]+           flags
9265         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
9266         0                  flag (as above): repeated to allow "v02"     
9267         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
9268         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
9269         [hlqLV]            size
9270     [%bcdefginopsux_DFOUX] format (mandatory)
9271 */
9272         if (EXPECT_NUMBER(q, width)) {
9273             if (*q == '$') {
9274                 ++q;
9275                 efix = width;
9276             } else {
9277                 goto gotwidth;
9278             }
9279         }
9280
9281         /* FLAGS */
9282
9283         while (*q) {
9284             switch (*q) {
9285             case ' ':
9286             case '+':
9287                 plus = *q++;
9288                 continue;
9289
9290             case '-':
9291                 left = TRUE;
9292                 q++;
9293                 continue;
9294
9295             case '0':
9296                 fill = *q++;
9297                 continue;
9298
9299             case '#':
9300                 alt = TRUE;
9301                 q++;
9302                 continue;
9303
9304             default:
9305                 break;
9306             }
9307             break;
9308         }
9309
9310       tryasterisk:
9311         if (*q == '*') {
9312             q++;
9313             if (EXPECT_NUMBER(q, ewix))
9314                 if (*q++ != '$')
9315                     goto unknown;
9316             asterisk = TRUE;
9317         }
9318         if (*q == 'v') {
9319             q++;
9320             if (vectorize)
9321                 goto unknown;
9322             if ((vectorarg = asterisk)) {
9323                 evix = ewix;
9324                 ewix = 0;
9325                 asterisk = FALSE;
9326             }
9327             vectorize = TRUE;
9328             goto tryasterisk;
9329         }
9330
9331         if (!asterisk)
9332             if( *q == '0' )
9333                 fill = *q++;
9334             EXPECT_NUMBER(q, width);
9335
9336         if (vectorize) {
9337             if (vectorarg) {
9338                 if (args)
9339                     vecsv = va_arg(*args, SV*);
9340                 else
9341                     vecsv = (evix ? evix <= svmax : svix < svmax) ?
9342                         svargs[evix ? evix-1 : svix++] : &PL_sv_undef;
9343                 dotstr = SvPVx(vecsv, dotstrlen);
9344                 if (DO_UTF8(vecsv))
9345                     is_utf8 = TRUE;
9346             }
9347             if (args) {
9348                 vecsv = va_arg(*args, SV*);
9349                 vecstr = (U8*)SvPVx(vecsv,veclen);
9350                 vec_utf8 = DO_UTF8(vecsv);
9351             }
9352             else if (efix ? efix <= svmax : svix < svmax) {
9353                 vecsv = svargs[efix ? efix-1 : svix++];
9354                 vecstr = (U8*)SvPVx(vecsv,veclen);
9355                 vec_utf8 = DO_UTF8(vecsv);
9356                 /* if this is a version object, we need to return the
9357                  * stringified representation (which the SvPVX has
9358                  * already done for us), but not vectorize the args
9359                  */
9360                 if ( *q == 'd' && sv_derived_from(vecsv,"version") )
9361                 {
9362                         q++; /* skip past the rest of the %vd format */
9363                         eptr = (char *) vecstr;
9364                         elen = strlen(eptr);
9365                         vectorize=FALSE;
9366                         goto string;
9367                 }
9368             }
9369             else {
9370                 vecstr = (U8*)"";
9371                 veclen = 0;
9372             }
9373         }
9374
9375         if (asterisk) {
9376             if (args)
9377                 i = va_arg(*args, int);
9378             else
9379                 i = (ewix ? ewix <= svmax : svix < svmax) ?
9380                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9381             left |= (i < 0);
9382             width = (i < 0) ? -i : i;
9383         }
9384       gotwidth:
9385
9386         /* PRECISION */
9387
9388         if (*q == '.') {
9389             q++;
9390             if (*q == '*') {
9391                 q++;
9392                 if (EXPECT_NUMBER(q, epix) && *q++ != '$')
9393                     goto unknown;
9394                 /* XXX: todo, support specified precision parameter */
9395                 if (epix)
9396                     goto unknown;
9397                 if (args)
9398                     i = va_arg(*args, int);
9399                 else
9400                     i = (ewix ? ewix <= svmax : svix < svmax)
9401                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9402                 precis = (i < 0) ? 0 : i;
9403             }
9404             else {
9405                 precis = 0;
9406                 while (isDIGIT(*q))
9407                     precis = precis * 10 + (*q++ - '0');
9408             }
9409             has_precis = TRUE;
9410         }
9411
9412         /* SIZE */
9413
9414         switch (*q) {
9415 #ifdef WIN32
9416         case 'I':                       /* Ix, I32x, and I64x */
9417 #  ifdef WIN64
9418             if (q[1] == '6' && q[2] == '4') {
9419                 q += 3;
9420                 intsize = 'q';
9421                 break;
9422             }
9423 #  endif
9424             if (q[1] == '3' && q[2] == '2') {
9425                 q += 3;
9426                 break;
9427             }
9428 #  ifdef WIN64
9429             intsize = 'q';
9430 #  endif
9431             q++;
9432             break;
9433 #endif
9434 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9435         case 'L':                       /* Ld */
9436             /* FALL THROUGH */
9437 #ifdef HAS_QUAD
9438         case 'q':                       /* qd */
9439 #endif
9440             intsize = 'q';
9441             q++;
9442             break;
9443 #endif
9444         case 'l':
9445 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9446             if (*(q + 1) == 'l') {      /* lld, llf */
9447                 intsize = 'q';
9448                 q += 2;
9449                 break;
9450              }
9451 #endif
9452             /* FALL THROUGH */
9453         case 'h':
9454             /* FALL THROUGH */
9455         case 'V':
9456             intsize = *q++;
9457             break;
9458         }
9459
9460         /* CONVERSION */
9461
9462         if (*q == '%') {
9463             eptr = q++;
9464             elen = 1;
9465             goto string;
9466         }
9467
9468         if (vectorize)
9469             argsv = vecsv;
9470         else if (!args)
9471             argsv = (efix ? efix <= svmax : svix < svmax) ?
9472                     svargs[efix ? efix-1 : svix++] : &PL_sv_undef;
9473
9474         switch (c = *q++) {
9475
9476             /* STRINGS */
9477
9478         case 'c':
9479             uv = (args && !vectorize) ? va_arg(*args, int) : SvIVx(argsv);
9480             if ((uv > 255 ||
9481                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
9482                 && !IN_BYTES) {
9483                 eptr = (char*)utf8buf;
9484                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
9485                 is_utf8 = TRUE;
9486             }
9487             else {
9488                 c = (char)uv;
9489                 eptr = &c;
9490                 elen = 1;
9491             }
9492             goto string;
9493
9494         case 's':
9495             if (args && !vectorize) {
9496                 eptr = va_arg(*args, char*);
9497                 if (eptr)
9498 #ifdef MACOS_TRADITIONAL
9499                   /* On MacOS, %#s format is used for Pascal strings */
9500                   if (alt)
9501                     elen = *eptr++;
9502                   else
9503 #endif
9504                     elen = strlen(eptr);
9505                 else {
9506                     eptr = (char *)nullstr;
9507                     elen = sizeof nullstr - 1;
9508                 }
9509             }
9510             else {
9511                 eptr = SvPVx(argsv, elen);
9512                 if (DO_UTF8(argsv)) {
9513                     if (has_precis && precis < elen) {
9514                         I32 p = precis;
9515                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
9516                         precis = p;
9517                     }
9518                     if (width) { /* fudge width (can't fudge elen) */
9519                         width += elen - sv_len_utf8(argsv);
9520                     }
9521                     is_utf8 = TRUE;
9522                 }
9523             }
9524
9525         string:
9526             vectorize = FALSE;
9527             if (has_precis && elen > precis)
9528                 elen = precis;
9529             break;
9530
9531             /* INTEGERS */
9532
9533         case 'p':
9534             if (left && args) {         /* SVf */
9535                 left = FALSE;
9536                 if (width) {
9537                     precis = width;
9538                     has_precis = TRUE;
9539                     width = 0;
9540                 }
9541                 if (vectorize)
9542                     goto unknown;
9543                 argsv = va_arg(*args, SV*);
9544                 eptr = SvPVx(argsv, elen);
9545                 if (DO_UTF8(argsv))
9546                     is_utf8 = TRUE;
9547                 goto string;
9548             }
9549             if (alt || vectorize)
9550                 goto unknown;
9551             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
9552             base = 16;
9553             goto integer;
9554
9555         case 'D':
9556 #ifdef IV_IS_QUAD
9557             intsize = 'q';
9558 #else
9559             intsize = 'l';
9560 #endif
9561             /* FALL THROUGH */
9562         case 'd':
9563         case 'i':
9564             if (vectorize) {
9565                 STRLEN ulen;
9566                 if (!veclen)
9567                     continue;
9568                 if (vec_utf8)
9569                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9570                                         UTF8_ALLOW_ANYUV);
9571                 else {
9572                     uv = *vecstr;
9573                     ulen = 1;
9574                 }
9575                 vecstr += ulen;
9576                 veclen -= ulen;
9577                 if (plus)
9578                      esignbuf[esignlen++] = plus;
9579             }
9580             else if (args) {
9581                 switch (intsize) {
9582                 case 'h':       iv = (short)va_arg(*args, int); break;
9583                 case 'l':       iv = va_arg(*args, long); break;
9584                 case 'V':       iv = va_arg(*args, IV); break;
9585                 default:        iv = va_arg(*args, int); break;
9586 #ifdef HAS_QUAD
9587                 case 'q':       iv = va_arg(*args, Quad_t); break;
9588 #endif
9589                 }
9590             }
9591             else {
9592                 IV tiv = SvIVx(argsv); /* work around GCC bug #13488 */
9593                 switch (intsize) {
9594                 case 'h':       iv = (short)tiv; break;
9595                 case 'l':       iv = (long)tiv; break;
9596                 case 'V':
9597                 default:        iv = tiv; break;
9598 #ifdef HAS_QUAD
9599                 case 'q':       iv = (Quad_t)tiv; break;
9600 #endif
9601                 }
9602             }
9603             if ( !vectorize )   /* we already set uv above */
9604             {
9605                 if (iv >= 0) {
9606                     uv = iv;
9607                     if (plus)
9608                         esignbuf[esignlen++] = plus;
9609                 }
9610                 else {
9611                     uv = -iv;
9612                     esignbuf[esignlen++] = '-';
9613                 }
9614             }
9615             base = 10;
9616             goto integer;
9617
9618         case 'U':
9619 #ifdef IV_IS_QUAD
9620             intsize = 'q';
9621 #else
9622             intsize = 'l';
9623 #endif
9624             /* FALL THROUGH */
9625         case 'u':
9626             base = 10;
9627             goto uns_integer;
9628
9629         case 'b':
9630             base = 2;
9631             goto uns_integer;
9632
9633         case 'O':
9634 #ifdef IV_IS_QUAD
9635             intsize = 'q';
9636 #else
9637             intsize = 'l';
9638 #endif
9639             /* FALL THROUGH */
9640         case 'o':
9641             base = 8;
9642             goto uns_integer;
9643
9644         case 'X':
9645         case 'x':
9646             base = 16;
9647
9648         uns_integer:
9649             if (vectorize) {
9650                 STRLEN ulen;
9651         vector:
9652                 if (!veclen)
9653                     continue;
9654                 if (vec_utf8)
9655                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9656                                         UTF8_ALLOW_ANYUV);
9657                 else {
9658                     uv = *vecstr;
9659                     ulen = 1;
9660                 }
9661                 vecstr += ulen;
9662                 veclen -= ulen;
9663             }
9664             else if (args) {
9665                 switch (intsize) {
9666                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
9667                 case 'l':  uv = va_arg(*args, unsigned long); break;
9668                 case 'V':  uv = va_arg(*args, UV); break;
9669                 default:   uv = va_arg(*args, unsigned); break;
9670 #ifdef HAS_QUAD
9671                 case 'q':  uv = va_arg(*args, Uquad_t); break;
9672 #endif
9673                 }
9674             }
9675             else {
9676                 UV tuv = SvUVx(argsv); /* work around GCC bug #13488 */
9677                 switch (intsize) {
9678                 case 'h':       uv = (unsigned short)tuv; break;
9679                 case 'l':       uv = (unsigned long)tuv; break;
9680                 case 'V':
9681                 default:        uv = tuv; break;
9682 #ifdef HAS_QUAD
9683                 case 'q':       uv = (Uquad_t)tuv; break;
9684 #endif
9685                 }
9686             }
9687
9688         integer:
9689             eptr = ebuf + sizeof ebuf;
9690             switch (base) {
9691                 unsigned dig;
9692             case 16:
9693                 if (!uv)
9694                     alt = FALSE;
9695                 p = (char*)((c == 'X')
9696                             ? "0123456789ABCDEF" : "0123456789abcdef");
9697                 do {
9698                     dig = uv & 15;
9699                     *--eptr = p[dig];
9700                 } while (uv >>= 4);
9701                 if (alt) {
9702                     esignbuf[esignlen++] = '0';
9703                     esignbuf[esignlen++] = c;  /* 'x' or 'X' */
9704                 }
9705                 break;
9706             case 8:
9707                 do {
9708                     dig = uv & 7;
9709                     *--eptr = '0' + dig;
9710                 } while (uv >>= 3);
9711                 if (alt && *eptr != '0')
9712                     *--eptr = '0';
9713                 break;
9714             case 2:
9715                 do {
9716                     dig = uv & 1;
9717                     *--eptr = '0' + dig;
9718                 } while (uv >>= 1);
9719                 if (alt) {
9720                     esignbuf[esignlen++] = '0';
9721                     esignbuf[esignlen++] = 'b';
9722                 }
9723                 break;
9724             default:            /* it had better be ten or less */
9725                 do {
9726                     dig = uv % base;
9727                     *--eptr = '0' + dig;
9728                 } while (uv /= base);
9729                 break;
9730             }
9731             elen = (ebuf + sizeof ebuf) - eptr;
9732             if (has_precis) {
9733                 if (precis > elen)
9734                     zeros = precis - elen;
9735                 else if (precis == 0 && elen == 1 && *eptr == '0')
9736                     elen = 0;
9737             }
9738             break;
9739
9740             /* FLOATING POINT */
9741
9742         case 'F':
9743             c = 'f';            /* maybe %F isn't supported here */
9744             /* FALL THROUGH */
9745         case 'e': case 'E':
9746         case 'f':
9747         case 'g': case 'G':
9748
9749             /* This is evil, but floating point is even more evil */
9750
9751             /* for SV-style calling, we can only get NV
9752                for C-style calling, we assume %f is double;
9753                for simplicity we allow any of %Lf, %llf, %qf for long double
9754             */
9755             switch (intsize) {
9756             case 'V':
9757 #if defined(USE_LONG_DOUBLE)
9758                 intsize = 'q';
9759 #endif
9760                 break;
9761 /* [perl #20339] - we should accept and ignore %lf rather than die */
9762             case 'l':
9763                 /* FALL THROUGH */
9764             default:
9765 #if defined(USE_LONG_DOUBLE)
9766                 intsize = args ? 0 : 'q';
9767 #endif
9768                 break;
9769             case 'q':
9770 #if defined(HAS_LONG_DOUBLE)
9771                 break;
9772 #else
9773                 /* FALL THROUGH */
9774 #endif
9775             case 'h':
9776                 goto unknown;
9777             }
9778
9779             /* now we need (long double) if intsize == 'q', else (double) */
9780             nv = (args && !vectorize) ?
9781 #if LONG_DOUBLESIZE > DOUBLESIZE
9782                 intsize == 'q' ?
9783                     va_arg(*args, long double) :
9784                     va_arg(*args, double)
9785 #else
9786                     va_arg(*args, double)
9787 #endif
9788                 : SvNVx(argsv);
9789
9790             need = 0;
9791             vectorize = FALSE;
9792             if (c != 'e' && c != 'E') {
9793                 i = PERL_INT_MIN;
9794                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
9795                    will cast our (long double) to (double) */
9796                 (void)Perl_frexp(nv, &i);
9797                 if (i == PERL_INT_MIN)
9798                     Perl_die(aTHX_ "panic: frexp");
9799                 if (i > 0)
9800                     need = BIT_DIGITS(i);
9801             }
9802             need += has_precis ? precis : 6; /* known default */
9803
9804             if (need < width)
9805                 need = width;
9806
9807 #ifdef HAS_LDBL_SPRINTF_BUG
9808             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9809                with sfio - Allen <allens@cpan.org> */
9810
9811 #  ifdef DBL_MAX
9812 #    define MY_DBL_MAX DBL_MAX
9813 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
9814 #    if DOUBLESIZE >= 8
9815 #      define MY_DBL_MAX 1.7976931348623157E+308L
9816 #    else
9817 #      define MY_DBL_MAX 3.40282347E+38L
9818 #    endif
9819 #  endif
9820
9821 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
9822 #    define MY_DBL_MAX_BUG 1L
9823 #  else
9824 #    define MY_DBL_MAX_BUG MY_DBL_MAX
9825 #  endif
9826
9827 #  ifdef DBL_MIN
9828 #    define MY_DBL_MIN DBL_MIN
9829 #  else  /* XXX guessing! -Allen */
9830 #    if DOUBLESIZE >= 8
9831 #      define MY_DBL_MIN 2.2250738585072014E-308L
9832 #    else
9833 #      define MY_DBL_MIN 1.17549435E-38L
9834 #    endif
9835 #  endif
9836
9837             if ((intsize == 'q') && (c == 'f') &&
9838                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
9839                 (need < DBL_DIG)) {
9840                 /* it's going to be short enough that
9841                  * long double precision is not needed */
9842
9843                 if ((nv <= 0L) && (nv >= -0L))
9844                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
9845                 else {
9846                     /* would use Perl_fp_class as a double-check but not
9847                      * functional on IRIX - see perl.h comments */
9848
9849                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
9850                         /* It's within the range that a double can represent */
9851 #if defined(DBL_MAX) && !defined(DBL_MIN)
9852                         if ((nv >= ((long double)1/DBL_MAX)) ||
9853                             (nv <= (-(long double)1/DBL_MAX)))
9854 #endif
9855                         fix_ldbl_sprintf_bug = TRUE;
9856                     }
9857                 }
9858                 if (fix_ldbl_sprintf_bug == TRUE) {
9859                     double temp;
9860
9861                     intsize = 0;
9862                     temp = (double)nv;
9863                     nv = (NV)temp;
9864                 }
9865             }
9866
9867 #  undef MY_DBL_MAX
9868 #  undef MY_DBL_MAX_BUG
9869 #  undef MY_DBL_MIN
9870
9871 #endif /* HAS_LDBL_SPRINTF_BUG */
9872
9873             need += 20; /* fudge factor */
9874             if (PL_efloatsize < need) {
9875                 Safefree(PL_efloatbuf);
9876                 PL_efloatsize = need + 20; /* more fudge */
9877                 New(906, PL_efloatbuf, PL_efloatsize, char);
9878                 PL_efloatbuf[0] = '\0';
9879             }
9880
9881             if ( !(width || left || plus || alt) && fill != '0'
9882                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
9883                 /* See earlier comment about buggy Gconvert when digits,
9884                    aka precis is 0  */
9885                 if ( c == 'g' && precis) {
9886                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
9887                     if (*PL_efloatbuf)  /* May return an empty string for digits==0 */
9888                         goto float_converted;
9889                 } else if ( c == 'f' && !precis) {
9890                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
9891                         break;
9892                 }
9893             }
9894             eptr = ebuf + sizeof ebuf;
9895             *--eptr = '\0';
9896             *--eptr = c;
9897             /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
9898 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
9899             if (intsize == 'q') {
9900                 /* Copy the one or more characters in a long double
9901                  * format before the 'base' ([efgEFG]) character to
9902                  * the format string. */
9903                 static char const prifldbl[] = PERL_PRIfldbl;
9904                 char const *p = prifldbl + sizeof(prifldbl) - 3;
9905                 while (p >= prifldbl) { *--eptr = *p--; }
9906             }
9907 #endif
9908             if (has_precis) {
9909                 base = precis;
9910                 do { *--eptr = '0' + (base % 10); } while (base /= 10);
9911                 *--eptr = '.';
9912             }
9913             if (width) {
9914                 base = width;
9915                 do { *--eptr = '0' + (base % 10); } while (base /= 10);
9916             }
9917             if (fill == '0')
9918                 *--eptr = fill;
9919             if (left)
9920                 *--eptr = '-';
9921             if (plus)
9922                 *--eptr = plus;
9923             if (alt)
9924                 *--eptr = '#';
9925             *--eptr = '%';
9926
9927             /* No taint.  Otherwise we are in the strange situation
9928              * where printf() taints but print($float) doesn't.
9929              * --jhi */
9930 #if defined(HAS_LONG_DOUBLE)
9931             if (intsize == 'q')
9932                 (void)sprintf(PL_efloatbuf, eptr, nv);
9933             else
9934                 (void)sprintf(PL_efloatbuf, eptr, (double)nv);
9935 #else
9936             (void)sprintf(PL_efloatbuf, eptr, nv);
9937 #endif
9938         float_converted:
9939             eptr = PL_efloatbuf;
9940             elen = strlen(PL_efloatbuf);
9941             break;
9942
9943             /* SPECIAL */
9944
9945         case 'n':
9946             i = SvCUR(sv) - origlen;
9947             if (args && !vectorize) {
9948                 switch (intsize) {
9949                 case 'h':       *(va_arg(*args, short*)) = i; break;
9950                 default:        *(va_arg(*args, int*)) = i; break;
9951                 case 'l':       *(va_arg(*args, long*)) = i; break;
9952                 case 'V':       *(va_arg(*args, IV*)) = i; break;
9953 #ifdef HAS_QUAD
9954                 case 'q':       *(va_arg(*args, Quad_t*)) = i; break;
9955 #endif
9956                 }
9957             }
9958             else
9959                 sv_setuv_mg(argsv, (UV)i);
9960             vectorize = FALSE;
9961             continue;   /* not "break" */
9962
9963             /* UNKNOWN */
9964
9965         default:
9966       unknown:
9967             if (!args && ckWARN(WARN_PRINTF) &&
9968                   (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)) {
9969                 SV *msg = sv_newmortal();
9970                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
9971                           (PL_op->op_type == OP_PRTF) ? "" : "s");
9972                 if (c) {
9973                     if (isPRINT(c))
9974                         Perl_sv_catpvf(aTHX_ msg,
9975                                        "\"%%%c\"", c & 0xFF);
9976                     else
9977                         Perl_sv_catpvf(aTHX_ msg,
9978                                        "\"%%\\%03"UVof"\"",
9979                                        (UV)c & 0xFF);
9980                 } else
9981                     sv_catpv(msg, "end of string");
9982                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, msg); /* yes, this is reentrant */
9983             }
9984
9985             /* output mangled stuff ... */
9986             if (c == '\0')
9987                 --q;
9988             eptr = p;
9989             elen = q - p;
9990
9991             /* ... right here, because formatting flags should not apply */
9992             SvGROW(sv, SvCUR(sv) + elen + 1);
9993             p = SvEND(sv);
9994             Copy(eptr, p, elen, char);
9995             p += elen;
9996             *p = '\0';
9997             SvCUR_set(sv, p - SvPVX(sv));
9998             svix = osvix;
9999             continue;   /* not "break" */
10000         }
10001
10002         /* calculate width before utf8_upgrade changes it */
10003         have = esignlen + zeros + elen;
10004
10005         if (is_utf8 != has_utf8) {
10006              if (is_utf8) {
10007                   if (SvCUR(sv))
10008                        sv_utf8_upgrade(sv);
10009              }
10010              else {
10011                   SV *nsv = sv_2mortal(newSVpvn(eptr, elen));
10012                   sv_utf8_upgrade(nsv);
10013                   eptr = SvPVX(nsv);
10014                   elen = SvCUR(nsv);
10015              }
10016              SvGROW(sv, SvCUR(sv) + elen + 1);
10017              p = SvEND(sv);
10018              *p = '\0';
10019         }
10020
10021         need = (have > width ? have : width);
10022         gap = need - have;
10023
10024         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
10025         p = SvEND(sv);
10026         if (esignlen && fill == '0') {
10027             for (i = 0; i < (int)esignlen; i++)
10028                 *p++ = esignbuf[i];
10029         }
10030         if (gap && !left) {
10031             memset(p, fill, gap);
10032             p += gap;
10033         }
10034         if (esignlen && fill != '0') {
10035             for (i = 0; i < (int)esignlen; i++)
10036                 *p++ = esignbuf[i];
10037         }
10038         if (zeros) {
10039             for (i = zeros; i; i--)
10040                 *p++ = '0';
10041         }
10042         if (elen) {
10043             Copy(eptr, p, elen, char);
10044             p += elen;
10045         }
10046         if (gap && left) {
10047             memset(p, ' ', gap);
10048             p += gap;
10049         }
10050         if (vectorize) {
10051             if (veclen) {
10052                 Copy(dotstr, p, dotstrlen, char);
10053                 p += dotstrlen;
10054             }
10055             else
10056                 vectorize = FALSE;              /* done iterating over vecstr */
10057         }
10058         if (is_utf8)
10059             has_utf8 = TRUE;
10060         if (has_utf8)
10061             SvUTF8_on(sv);
10062         *p = '\0';
10063         SvCUR_set(sv, p - SvPVX(sv));
10064         if (vectorize) {
10065             esignlen = 0;
10066             goto vector;
10067         }
10068     }
10069 }
10070
10071 /* =========================================================================
10072
10073 =head1 Cloning an interpreter
10074
10075 All the macros and functions in this section are for the private use of
10076 the main function, perl_clone().
10077
10078 The foo_dup() functions make an exact copy of an existing foo thinngy.
10079 During the course of a cloning, a hash table is used to map old addresses
10080 to new addresses. The table is created and manipulated with the
10081 ptr_table_* functions.
10082
10083 =cut
10084
10085 ============================================================================*/
10086
10087
10088 #if defined(USE_ITHREADS)
10089
10090 #ifndef GpREFCNT_inc
10091 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
10092 #endif
10093
10094
10095 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
10096 #define av_dup(s,t)     (AV*)sv_dup((SV*)s,t)
10097 #define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10098 #define hv_dup(s,t)     (HV*)sv_dup((SV*)s,t)
10099 #define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10100 #define cv_dup(s,t)     (CV*)sv_dup((SV*)s,t)
10101 #define cv_dup_inc(s,t) (CV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10102 #define io_dup(s,t)     (IO*)sv_dup((SV*)s,t)
10103 #define io_dup_inc(s,t) (IO*)SvREFCNT_inc(sv_dup((SV*)s,t))
10104 #define gv_dup(s,t)     (GV*)sv_dup((SV*)s,t)
10105 #define gv_dup_inc(s,t) (GV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10106 #define SAVEPV(p)       (p ? savepv(p) : Nullch)
10107 #define SAVEPVN(p,n)    (p ? savepvn(p,n) : Nullch)
10108
10109
10110 /* Duplicate a regexp. Required reading: pregcomp() and pregfree() in
10111    regcomp.c. AMS 20010712 */
10112
10113 REGEXP *
10114 Perl_re_dup(pTHX_ REGEXP *r, CLONE_PARAMS *param)
10115 {
10116     dVAR;
10117     REGEXP *ret;
10118     int i, len, npar;
10119     struct reg_substr_datum *s;
10120
10121     if (!r)
10122         return (REGEXP *)NULL;
10123
10124     if ((ret = (REGEXP *)ptr_table_fetch(PL_ptr_table, r)))
10125         return ret;
10126
10127     len = r->offsets[0];
10128     npar = r->nparens+1;
10129
10130     Newc(0, ret, sizeof(regexp) + (len+1)*sizeof(regnode), char, regexp);
10131     Copy(r->program, ret->program, len+1, regnode);
10132
10133     New(0, ret->startp, npar, I32);
10134     Copy(r->startp, ret->startp, npar, I32);
10135     New(0, ret->endp, npar, I32);
10136     Copy(r->startp, ret->startp, npar, I32);
10137
10138     New(0, ret->substrs, 1, struct reg_substr_data);
10139     for (s = ret->substrs->data, i = 0; i < 3; i++, s++) {
10140         s->min_offset = r->substrs->data[i].min_offset;
10141         s->max_offset = r->substrs->data[i].max_offset;
10142         s->substr     = sv_dup_inc(r->substrs->data[i].substr, param);
10143         s->utf8_substr = sv_dup_inc(r->substrs->data[i].utf8_substr, param);
10144     }
10145
10146     ret->regstclass = NULL;
10147     if (r->data) {
10148         struct reg_data *d;
10149         const int count = r->data->count;
10150
10151         Newc(0, d, sizeof(struct reg_data) + count*sizeof(void *),
10152                 char, struct reg_data);
10153         New(0, d->what, count, U8);
10154
10155         d->count = count;
10156         for (i = 0; i < count; i++) {
10157             d->what[i] = r->data->what[i];
10158             switch (d->what[i]) {
10159                 /* legal options are one of: sfpont
10160                    see also regcomp.h and pregfree() */
10161             case 's':
10162                 d->data[i] = sv_dup_inc((SV *)r->data->data[i], param);
10163                 break;
10164             case 'p':
10165                 d->data[i] = av_dup_inc((AV *)r->data->data[i], param);
10166                 break;
10167             case 'f':
10168                 /* This is cheating. */
10169                 New(0, d->data[i], 1, struct regnode_charclass_class);
10170                 StructCopy(r->data->data[i], d->data[i],
10171                             struct regnode_charclass_class);
10172                 ret->regstclass = (regnode*)d->data[i];
10173                 break;
10174             case 'o':
10175                 /* Compiled op trees are readonly, and can thus be
10176                    shared without duplication. */
10177                 OP_REFCNT_LOCK;
10178                 d->data[i] = (void*)OpREFCNT_inc((OP*)r->data->data[i]);
10179                 OP_REFCNT_UNLOCK;
10180                 break;
10181             case 'n':
10182                 d->data[i] = r->data->data[i];
10183                 break;
10184             case 't':
10185                 d->data[i] = r->data->data[i];
10186                 OP_REFCNT_LOCK;
10187                 ((reg_trie_data*)d->data[i])->refcount++;
10188                 OP_REFCNT_UNLOCK;
10189                 break;
10190             default:
10191                 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", r->data->what[i]);
10192             }
10193         }
10194
10195         ret->data = d;
10196     }
10197     else
10198         ret->data = NULL;
10199
10200     New(0, ret->offsets, 2*len+1, U32);
10201     Copy(r->offsets, ret->offsets, 2*len+1, U32);
10202
10203     ret->precomp        = SAVEPVN(r->precomp, r->prelen);
10204     ret->refcnt         = r->refcnt;
10205     ret->minlen         = r->minlen;
10206     ret->prelen         = r->prelen;
10207     ret->nparens        = r->nparens;
10208     ret->lastparen      = r->lastparen;
10209     ret->lastcloseparen = r->lastcloseparen;
10210     ret->reganch        = r->reganch;
10211
10212     ret->sublen         = r->sublen;
10213
10214     if (RX_MATCH_COPIED(ret))
10215         ret->subbeg  = SAVEPVN(r->subbeg, r->sublen);
10216     else
10217         ret->subbeg = Nullch;
10218 #ifdef PERL_COPY_ON_WRITE
10219     ret->saved_copy = Nullsv;
10220 #endif
10221
10222     ptr_table_store(PL_ptr_table, r, ret);
10223     return ret;
10224 }
10225
10226 /* duplicate a file handle */
10227
10228 PerlIO *
10229 Perl_fp_dup(pTHX_ PerlIO *fp, char type, CLONE_PARAMS *param)
10230 {
10231     PerlIO *ret;
10232     (void)type;
10233
10234     if (!fp)
10235         return (PerlIO*)NULL;
10236
10237     /* look for it in the table first */
10238     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
10239     if (ret)
10240         return ret;
10241
10242     /* create anew and remember what it is */
10243     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
10244     ptr_table_store(PL_ptr_table, fp, ret);
10245     return ret;
10246 }
10247
10248 /* duplicate a directory handle */
10249
10250 DIR *
10251 Perl_dirp_dup(pTHX_ DIR *dp)
10252 {
10253     if (!dp)
10254         return (DIR*)NULL;
10255     /* XXX TODO */
10256     return dp;
10257 }
10258
10259 /* duplicate a typeglob */
10260
10261 GP *
10262 Perl_gp_dup(pTHX_ GP *gp, CLONE_PARAMS* param)
10263 {
10264     GP *ret;
10265     if (!gp)
10266         return (GP*)NULL;
10267     /* look for it in the table first */
10268     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
10269     if (ret)
10270         return ret;
10271
10272     /* create anew and remember what it is */
10273     Newz(0, ret, 1, GP);
10274     ptr_table_store(PL_ptr_table, gp, ret);
10275
10276     /* clone */
10277     ret->gp_refcnt      = 0;                    /* must be before any other dups! */
10278     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
10279     ret->gp_io          = io_dup_inc(gp->gp_io, param);
10280     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
10281     ret->gp_av          = av_dup_inc(gp->gp_av, param);
10282     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
10283     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
10284     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
10285     ret->gp_cvgen       = gp->gp_cvgen;
10286     ret->gp_flags       = gp->gp_flags;
10287     ret->gp_line        = gp->gp_line;
10288     ret->gp_file        = gp->gp_file;          /* points to COP.cop_file */
10289     return ret;
10290 }
10291
10292 /* duplicate a chain of magic */
10293
10294 MAGIC *
10295 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS* param)
10296 {
10297     MAGIC *mgprev = (MAGIC*)NULL;
10298     MAGIC *mgret;
10299     if (!mg)
10300         return (MAGIC*)NULL;
10301     /* look for it in the table first */
10302     mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
10303     if (mgret)
10304         return mgret;
10305
10306     for (; mg; mg = mg->mg_moremagic) {
10307         MAGIC *nmg;
10308         Newz(0, nmg, 1, MAGIC);
10309         if (mgprev)
10310             mgprev->mg_moremagic = nmg;
10311         else
10312             mgret = nmg;
10313         nmg->mg_virtual = mg->mg_virtual;       /* XXX copy dynamic vtable? */
10314         nmg->mg_private = mg->mg_private;
10315         nmg->mg_type    = mg->mg_type;
10316         nmg->mg_flags   = mg->mg_flags;
10317         if (mg->mg_type == PERL_MAGIC_qr) {
10318             nmg->mg_obj = (SV*)re_dup((REGEXP*)mg->mg_obj, param);
10319         }
10320         else if(mg->mg_type == PERL_MAGIC_backref) {
10321             const AV * const av = (AV*) mg->mg_obj;
10322             SV **svp;
10323             I32 i;
10324             (void)SvREFCNT_inc(nmg->mg_obj = (SV*)newAV());
10325             svp = AvARRAY(av);
10326             for (i = AvFILLp(av); i >= 0; i--) {
10327                 if (!svp[i]) continue;
10328                 av_push((AV*)nmg->mg_obj,sv_dup(svp[i],param));
10329             }
10330         }
10331         else if (mg->mg_type == PERL_MAGIC_symtab) {
10332             nmg->mg_obj = mg->mg_obj;
10333         }
10334         else {
10335             nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
10336                               ? sv_dup_inc(mg->mg_obj, param)
10337                               : sv_dup(mg->mg_obj, param);
10338         }
10339         nmg->mg_len     = mg->mg_len;
10340         nmg->mg_ptr     = mg->mg_ptr;   /* XXX random ptr? */
10341         if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
10342             if (mg->mg_len > 0) {
10343                 nmg->mg_ptr     = SAVEPVN(mg->mg_ptr, mg->mg_len);
10344                 if (mg->mg_type == PERL_MAGIC_overload_table &&
10345                         AMT_AMAGIC((AMT*)mg->mg_ptr))
10346                 {
10347                     AMT *amtp = (AMT*)mg->mg_ptr;
10348                     AMT *namtp = (AMT*)nmg->mg_ptr;
10349                     I32 i;
10350                     for (i = 1; i < NofAMmeth; i++) {
10351                         namtp->table[i] = cv_dup_inc(amtp->table[i], param);
10352                     }
10353                 }
10354             }
10355             else if (mg->mg_len == HEf_SVKEY)
10356                 nmg->mg_ptr     = (char*)sv_dup_inc((SV*)mg->mg_ptr, param);
10357         }
10358         if ((mg->mg_flags & MGf_DUP) && mg->mg_virtual && mg->mg_virtual->svt_dup) {
10359             CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
10360         }
10361         mgprev = nmg;
10362     }
10363     return mgret;
10364 }
10365
10366 /* create a new pointer-mapping table */
10367
10368 PTR_TBL_t *
10369 Perl_ptr_table_new(pTHX)
10370 {
10371     PTR_TBL_t *tbl;
10372     Newz(0, tbl, 1, PTR_TBL_t);
10373     tbl->tbl_max        = 511;
10374     tbl->tbl_items      = 0;
10375     Newz(0, tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
10376     return tbl;
10377 }
10378
10379 #if (PTRSIZE == 8)
10380 #  define PTR_TABLE_HASH(ptr) (PTR2UV(ptr) >> 3)
10381 #else
10382 #  define PTR_TABLE_HASH(ptr) (PTR2UV(ptr) >> 2)
10383 #endif
10384
10385
10386
10387 STATIC void
10388 S_more_pte(pTHX)
10389 {
10390     struct ptr_tbl_ent* pte;
10391     struct ptr_tbl_ent* pteend;
10392     New(0, pte, PERL_ARENA_SIZE/sizeof(struct ptr_tbl_ent), struct ptr_tbl_ent);
10393     pte->next = PL_pte_arenaroot;
10394     PL_pte_arenaroot = pte;
10395
10396     pteend = &pte[PERL_ARENA_SIZE / sizeof(struct ptr_tbl_ent) - 1];
10397     PL_pte_root = ++pte;
10398     while (pte < pteend) {
10399         pte->next = pte + 1;
10400         pte++;
10401     }
10402     pte->next = 0;
10403 }
10404
10405 STATIC struct ptr_tbl_ent*
10406 S_new_pte(pTHX)
10407 {
10408     struct ptr_tbl_ent* pte;
10409     if (!PL_pte_root)
10410         S_more_pte(aTHX);
10411     pte = PL_pte_root;
10412     PL_pte_root = pte->next;
10413     return pte;
10414 }
10415
10416 STATIC void
10417 S_del_pte(pTHX_ struct ptr_tbl_ent*p)
10418 {
10419     p->next = PL_pte_root;
10420     PL_pte_root = p;
10421 }
10422
10423 /* map an existing pointer using a table */
10424
10425 void *
10426 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, void *sv)
10427 {
10428     PTR_TBL_ENT_t *tblent;
10429     const UV hash = PTR_TABLE_HASH(sv);
10430     assert(tbl);
10431     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
10432     for (; tblent; tblent = tblent->next) {
10433         if (tblent->oldval == sv)
10434             return tblent->newval;
10435     }
10436     return (void*)NULL;
10437 }
10438
10439 /* add a new entry to a pointer-mapping table */
10440
10441 void
10442 Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, void *oldv, void *newv)
10443 {
10444     PTR_TBL_ENT_t *tblent, **otblent;
10445     /* XXX this may be pessimal on platforms where pointers aren't good
10446      * hash values e.g. if they grow faster in the most significant
10447      * bits */
10448     const UV hash = PTR_TABLE_HASH(oldv);
10449     bool empty = 1;
10450
10451     assert(tbl);
10452     otblent = &tbl->tbl_ary[hash & tbl->tbl_max];
10453     for (tblent = *otblent; tblent; empty=0, tblent = tblent->next) {
10454         if (tblent->oldval == oldv) {
10455             tblent->newval = newv;
10456             return;
10457         }
10458     }
10459     tblent = S_new_pte(aTHX);
10460     tblent->oldval = oldv;
10461     tblent->newval = newv;
10462     tblent->next = *otblent;
10463     *otblent = tblent;
10464     tbl->tbl_items++;
10465     if (!empty && tbl->tbl_items > tbl->tbl_max)
10466         ptr_table_split(tbl);
10467 }
10468
10469 /* double the hash bucket size of an existing ptr table */
10470
10471 void
10472 Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl)
10473 {
10474     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
10475     const UV oldsize = tbl->tbl_max + 1;
10476     UV newsize = oldsize * 2;
10477     UV i;
10478
10479     Renew(ary, newsize, PTR_TBL_ENT_t*);
10480     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
10481     tbl->tbl_max = --newsize;
10482     tbl->tbl_ary = ary;
10483     for (i=0; i < oldsize; i++, ary++) {
10484         PTR_TBL_ENT_t **curentp, **entp, *ent;
10485         if (!*ary)
10486             continue;
10487         curentp = ary + oldsize;
10488         for (entp = ary, ent = *ary; ent; ent = *entp) {
10489             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
10490                 *entp = ent->next;
10491                 ent->next = *curentp;
10492                 *curentp = ent;
10493                 continue;
10494             }
10495             else
10496                 entp = &ent->next;
10497         }
10498     }
10499 }
10500
10501 /* remove all the entries from a ptr table */
10502
10503 void
10504 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl)
10505 {
10506     register PTR_TBL_ENT_t **array;
10507     register PTR_TBL_ENT_t *entry;
10508     UV riter = 0;
10509     UV max;
10510
10511     if (!tbl || !tbl->tbl_items) {
10512         return;
10513     }
10514
10515     array = tbl->tbl_ary;
10516     entry = array[0];
10517     max = tbl->tbl_max;
10518
10519     for (;;) {
10520         if (entry) {
10521             PTR_TBL_ENT_t *oentry = entry;
10522             entry = entry->next;
10523             S_del_pte(aTHX_ oentry);
10524         }
10525         if (!entry) {
10526             if (++riter > max) {
10527                 break;
10528             }
10529             entry = array[riter];
10530         }
10531     }
10532
10533     tbl->tbl_items = 0;
10534 }
10535
10536 /* clear and free a ptr table */
10537
10538 void
10539 Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl)
10540 {
10541     if (!tbl) {
10542         return;
10543     }
10544     ptr_table_clear(tbl);
10545     Safefree(tbl->tbl_ary);
10546     Safefree(tbl);
10547 }
10548
10549 /* attempt to make everything in the typeglob readonly */
10550
10551 STATIC SV *
10552 S_gv_share(pTHX_ SV *sstr, CLONE_PARAMS *param)
10553 {
10554     GV *gv = (GV*)sstr;
10555     SV *sv = &param->proto_perl->Isv_no; /* just need SvREADONLY-ness */
10556
10557     if (GvIO(gv) || GvFORM(gv)) {
10558         GvUNIQUE_off(gv); /* GvIOs cannot be shared. nor can GvFORMs */
10559     }
10560     else if (!GvCV(gv)) {
10561         GvCV(gv) = (CV*)sv;
10562     }
10563     else {
10564         /* CvPADLISTs cannot be shared */
10565         if (!SvREADONLY(GvCV(gv)) && !CvXSUB(GvCV(gv))) {
10566             GvUNIQUE_off(gv);
10567         }
10568     }
10569
10570     if (!GvUNIQUE(gv)) {
10571 #if 0
10572         PerlIO_printf(Perl_debug_log, "gv_share: unable to share %s::%s\n",
10573                       HvNAME_get(GvSTASH(gv)), GvNAME(gv));
10574 #endif
10575         return Nullsv;
10576     }
10577
10578     /*
10579      * write attempts will die with
10580      * "Modification of a read-only value attempted"
10581      */
10582     if (!GvSV(gv)) {
10583         GvSV(gv) = sv;
10584     }
10585     else {
10586         SvREADONLY_on(GvSV(gv));
10587     }
10588
10589     if (!GvAV(gv)) {
10590         GvAV(gv) = (AV*)sv;
10591     }
10592     else {
10593         SvREADONLY_on(GvAV(gv));
10594     }
10595
10596     if (!GvHV(gv)) {
10597         GvHV(gv) = (HV*)sv;
10598     }
10599     else {
10600         SvREADONLY_on(GvHV(gv));
10601     }
10602
10603     return sstr; /* he_dup() will SvREFCNT_inc() */
10604 }
10605
10606 /* duplicate an SV of any type (including AV, HV etc) */
10607
10608 void
10609 Perl_rvpv_dup(pTHX_ SV *dstr, SV *sstr, CLONE_PARAMS* param)
10610 {
10611     if (SvROK(sstr)) {
10612         SvRV_set(dstr, SvWEAKREF(sstr)
10613                        ? sv_dup(SvRV(sstr), param)
10614                        : sv_dup_inc(SvRV(sstr), param));
10615
10616     }
10617     else if (SvPVX(sstr)) {
10618         /* Has something there */
10619         if (SvLEN(sstr)) {
10620             /* Normal PV - clone whole allocated space */
10621             SvPV_set(dstr, SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1));
10622             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
10623                 /* Not that normal - actually sstr is copy on write.
10624                    But we are a true, independant SV, so:  */
10625                 SvREADONLY_off(dstr);
10626                 SvFAKE_off(dstr);
10627             }
10628         }
10629         else {
10630             /* Special case - not normally malloced for some reason */
10631             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
10632                 /* A "shared" PV - clone it as unshared string */
10633                 if(SvPADTMP(sstr)) {
10634                     /* However, some of them live in the pad
10635                        and they should not have these flags
10636                        turned off */
10637
10638                     SvPV_set(dstr, sharepvn(SvPVX(sstr), SvCUR(sstr),
10639                                            SvUVX(sstr)));
10640                     SvUV_set(dstr, SvUVX(sstr));
10641                 } else {
10642
10643                     SvPV_set(dstr, SAVEPVN(SvPVX(sstr), SvCUR(sstr)));
10644                     SvFAKE_off(dstr);
10645                     SvREADONLY_off(dstr);
10646                 }
10647             }
10648             else {
10649                 /* Some other special case - random pointer */
10650                 SvPV_set(dstr, SvPVX(sstr));            
10651             }
10652         }
10653     }
10654     else {
10655         /* Copy the Null */
10656         if (SvTYPE(dstr) == SVt_RV)
10657             SvRV_set(dstr, NULL);
10658         else
10659             SvPV_set(dstr, 0);
10660     }
10661 }
10662
10663 SV *
10664 Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
10665 {
10666     dVAR;
10667     SV *dstr;
10668
10669     if (!sstr || SvTYPE(sstr) == SVTYPEMASK)
10670         return Nullsv;
10671     /* look for it in the table first */
10672     dstr = (SV*)ptr_table_fetch(PL_ptr_table, sstr);
10673     if (dstr)
10674         return dstr;
10675
10676     if(param->flags & CLONEf_JOIN_IN) {
10677         /** We are joining here so we don't want do clone
10678             something that is bad **/
10679         const char *hvname;
10680
10681         if(SvTYPE(sstr) == SVt_PVHV &&
10682            (hvname = HvNAME_get(sstr))) {
10683             /** don't clone stashes if they already exist **/
10684             HV* old_stash = gv_stashpv(hvname,0);
10685             return (SV*) old_stash;
10686         }
10687     }
10688
10689     /* create anew and remember what it is */
10690     new_SV(dstr);
10691
10692 #ifdef DEBUG_LEAKING_SCALARS
10693     dstr->sv_debug_optype = sstr->sv_debug_optype;
10694     dstr->sv_debug_line = sstr->sv_debug_line;
10695     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
10696     dstr->sv_debug_cloned = 1;
10697 #  ifdef NETWARE
10698     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
10699 #  else
10700     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
10701 #  endif
10702 #endif
10703
10704     ptr_table_store(PL_ptr_table, sstr, dstr);
10705
10706     /* clone */
10707     SvFLAGS(dstr)       = SvFLAGS(sstr);
10708     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
10709     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
10710
10711 #ifdef DEBUGGING
10712     if (SvANY(sstr) && PL_watch_pvx && SvPVX(sstr) == PL_watch_pvx)
10713         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
10714                       PL_watch_pvx, SvPVX(sstr));
10715 #endif
10716
10717     /* don't clone objects whose class has asked us not to */
10718     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
10719         SvFLAGS(dstr) &= ~SVTYPEMASK;
10720         SvOBJECT_off(dstr);
10721         return dstr;
10722     }
10723
10724     switch (SvTYPE(sstr)) {
10725     case SVt_NULL:
10726         SvANY(dstr)     = NULL;
10727         break;
10728     case SVt_IV:
10729         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.sv_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
10730         SvIV_set(dstr, SvIVX(sstr));
10731         break;
10732     case SVt_NV:
10733         SvANY(dstr)     = new_XNV();
10734         SvNV_set(dstr, SvNVX(sstr));
10735         break;
10736     case SVt_RV:
10737         SvANY(dstr)     = &(dstr->sv_u.sv_rv);
10738         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10739         break;
10740     case SVt_PV:
10741         SvANY(dstr)     = new_XPV();
10742         SvCUR_set(dstr, SvCUR(sstr));
10743         SvLEN_set(dstr, SvLEN(sstr));
10744         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10745         break;
10746     case SVt_PVIV:
10747         SvANY(dstr)     = new_XPVIV();
10748         SvCUR_set(dstr, SvCUR(sstr));
10749         SvLEN_set(dstr, SvLEN(sstr));
10750         SvIV_set(dstr, SvIVX(sstr));
10751         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10752         break;
10753     case SVt_PVNV:
10754         SvANY(dstr)     = new_XPVNV();
10755         SvCUR_set(dstr, SvCUR(sstr));
10756         SvLEN_set(dstr, SvLEN(sstr));
10757         SvIV_set(dstr, SvIVX(sstr));
10758         SvNV_set(dstr, SvNVX(sstr));
10759         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10760         break;
10761     case SVt_PVMG:
10762         SvANY(dstr)     = new_XPVMG();
10763         SvCUR_set(dstr, SvCUR(sstr));
10764         SvLEN_set(dstr, SvLEN(sstr));
10765         SvIV_set(dstr, SvIVX(sstr));
10766         SvNV_set(dstr, SvNVX(sstr));
10767         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10768         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10769         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10770         break;
10771     case SVt_PVBM:
10772         SvANY(dstr)     = new_XPVBM();
10773         SvCUR_set(dstr, SvCUR(sstr));
10774         SvLEN_set(dstr, SvLEN(sstr));
10775         SvIV_set(dstr, SvIVX(sstr));
10776         SvNV_set(dstr, SvNVX(sstr));
10777         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10778         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10779         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10780         BmRARE(dstr)    = BmRARE(sstr);
10781         BmUSEFUL(dstr)  = BmUSEFUL(sstr);
10782         BmPREVIOUS(dstr)= BmPREVIOUS(sstr);
10783         break;
10784     case SVt_PVLV:
10785         SvANY(dstr)     = new_XPVLV();
10786         SvCUR_set(dstr, SvCUR(sstr));
10787         SvLEN_set(dstr, SvLEN(sstr));
10788         SvIV_set(dstr, SvIVX(sstr));
10789         SvNV_set(dstr, SvNVX(sstr));
10790         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10791         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10792         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10793         LvTARGOFF(dstr) = LvTARGOFF(sstr);      /* XXX sometimes holds PMOP* when DEBUGGING */
10794         LvTARGLEN(dstr) = LvTARGLEN(sstr);
10795         if (LvTYPE(sstr) == 't') /* for tie: unrefcnted fake (SV**) */
10796             LvTARG(dstr) = dstr;
10797         else if (LvTYPE(sstr) == 'T') /* for tie: fake HE */
10798             LvTARG(dstr) = (SV*)he_dup((HE*)LvTARG(sstr), 0, param);
10799         else
10800             LvTARG(dstr) = sv_dup_inc(LvTARG(sstr), param);
10801         LvTYPE(dstr)    = LvTYPE(sstr);
10802         break;
10803     case SVt_PVGV:
10804         if (GvUNIQUE((GV*)sstr)) {
10805             SV *share;
10806             if ((share = gv_share(sstr, param))) {
10807                 del_SV(dstr);
10808                 dstr = share;
10809                 ptr_table_store(PL_ptr_table, sstr, dstr);
10810 #if 0
10811                 PerlIO_printf(Perl_debug_log, "sv_dup: sharing %s::%s\n",
10812                               HvNAME_get(GvSTASH(share)), GvNAME(share));
10813 #endif
10814                 break;
10815             }
10816         }
10817         SvANY(dstr)     = new_XPVGV();
10818         SvCUR_set(dstr, SvCUR(sstr));
10819         SvLEN_set(dstr, SvLEN(sstr));
10820         SvIV_set(dstr, SvIVX(sstr));
10821         SvNV_set(dstr, SvNVX(sstr));
10822         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10823         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10824         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10825         GvNAMELEN(dstr) = GvNAMELEN(sstr);
10826         GvNAME(dstr)    = SAVEPVN(GvNAME(sstr), GvNAMELEN(sstr));
10827         GvSTASH(dstr)   = hv_dup_inc(GvSTASH(sstr), param);
10828         GvFLAGS(dstr)   = GvFLAGS(sstr);
10829         GvGP(dstr)      = gp_dup(GvGP(sstr), param);
10830         (void)GpREFCNT_inc(GvGP(dstr));
10831         break;
10832     case SVt_PVIO:
10833         SvANY(dstr)     = new_XPVIO();
10834         SvCUR_set(dstr, SvCUR(sstr));
10835         SvLEN_set(dstr, SvLEN(sstr));
10836         SvIV_set(dstr, SvIVX(sstr));
10837         SvNV_set(dstr, SvNVX(sstr));
10838         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10839         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10840         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10841         IoIFP(dstr)     = fp_dup(IoIFP(sstr), IoTYPE(sstr), param);
10842         if (IoOFP(sstr) == IoIFP(sstr))
10843             IoOFP(dstr) = IoIFP(dstr);
10844         else
10845             IoOFP(dstr) = fp_dup(IoOFP(sstr), IoTYPE(sstr), param);
10846         /* PL_rsfp_filters entries have fake IoDIRP() */
10847         if (IoDIRP(sstr) && !(IoFLAGS(sstr) & IOf_FAKE_DIRP))
10848             IoDIRP(dstr)        = dirp_dup(IoDIRP(sstr));
10849         else
10850             IoDIRP(dstr)        = IoDIRP(sstr);
10851         IoLINES(dstr)           = IoLINES(sstr);
10852         IoPAGE(dstr)            = IoPAGE(sstr);
10853         IoPAGE_LEN(dstr)        = IoPAGE_LEN(sstr);
10854         IoLINES_LEFT(dstr)      = IoLINES_LEFT(sstr);
10855         if(IoFLAGS(sstr) & IOf_FAKE_DIRP) {
10856             /* I have no idea why fake dirp (rsfps)
10857                should be treaded differently but otherwise
10858                we end up with leaks -- sky*/
10859             IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(sstr), param);
10860             IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(sstr), param);
10861             IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(sstr), param);
10862         } else {
10863             IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(sstr), param);
10864             IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(sstr), param);
10865             IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(sstr), param);
10866         }
10867         IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(sstr));
10868         IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(sstr));
10869         IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(sstr));
10870         IoSUBPROCESS(dstr)      = IoSUBPROCESS(sstr);
10871         IoTYPE(dstr)            = IoTYPE(sstr);
10872         IoFLAGS(dstr)           = IoFLAGS(sstr);
10873         break;
10874     case SVt_PVAV:
10875         SvANY(dstr)     = new_XPVAV();
10876         SvCUR_set(dstr, SvCUR(sstr));
10877         SvLEN_set(dstr, SvLEN(sstr));
10878         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10879         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10880         AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
10881         if (AvARRAY((AV*)sstr)) {
10882             SV **dst_ary, **src_ary;
10883             SSize_t items = AvFILLp((AV*)sstr) + 1;
10884
10885             src_ary = AvARRAY((AV*)sstr);
10886             Newz(0, dst_ary, AvMAX((AV*)sstr)+1, SV*);
10887             ptr_table_store(PL_ptr_table, src_ary, dst_ary);
10888             SvPV_set(dstr, (char*)dst_ary);
10889             AvALLOC((AV*)dstr) = dst_ary;
10890             if (AvREAL((AV*)sstr)) {
10891                 while (items-- > 0)
10892                     *dst_ary++ = sv_dup_inc(*src_ary++, param);
10893             }
10894             else {
10895                 while (items-- > 0)
10896                     *dst_ary++ = sv_dup(*src_ary++, param);
10897             }
10898             items = AvMAX((AV*)sstr) - AvFILLp((AV*)sstr);
10899             while (items-- > 0) {
10900                 *dst_ary++ = &PL_sv_undef;
10901             }
10902         }
10903         else {
10904             SvPV_set(dstr, Nullch);
10905             AvALLOC((AV*)dstr)  = (SV**)NULL;
10906         }
10907         break;
10908     case SVt_PVHV:
10909         SvANY(dstr)     = new_XPVHV();
10910         SvCUR_set(dstr, SvCUR(sstr));
10911         SvLEN_set(dstr, SvLEN(sstr));
10912         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10913         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10914         {
10915             const char *hvname = HvNAME_get((HV*)sstr);
10916             struct xpvhv_aux *aux = ((XPVHV *)SvANY(sstr))->xhv_aux;
10917
10918             if (aux) {
10919                 New(0, ((XPVHV *)SvANY(dstr))->xhv_aux, 1, struct xpvhv_aux);
10920                 HvRITER_set((HV*)dstr, HvRITER_get((HV*)sstr));
10921                 /* FIXME strlen HvNAME  */
10922                 Perl_hv_name_set(aTHX_ (HV*) dstr, hvname,
10923                                  hvname ? strlen(hvname) : 0,
10924                                  0);
10925             } else {
10926                 ((XPVHV *)SvANY(dstr))->xhv_aux = 0;
10927             }
10928             if (HvARRAY((HV*)sstr)) {
10929                 STRLEN i = 0;
10930                 XPVHV *dxhv = (XPVHV*)SvANY(dstr);
10931                 XPVHV *sxhv = (XPVHV*)SvANY(sstr);
10932                 char *darray;
10933                 /* FIXME - surely this doesn't need to be zeroed?  */
10934                 Newz(0, darray,
10935                      PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1), char);
10936                 HvARRAY(dstr) = (HE**)darray;
10937                 while (i <= sxhv->xhv_max) {
10938                     HvARRAY(dstr)[i]
10939                         = he_dup(HvARRAY(sstr)[i],
10940                                  (bool)!!HvSHAREKEYS(sstr), param);
10941                     ++i;
10942                 }
10943                 HvEITER_set(dstr, he_dup(HvEITER_get(sstr),
10944                                          (bool)!!HvSHAREKEYS(sstr), param));
10945             }
10946             else {
10947                 SvPV_set(dstr, Nullch);
10948                 HvEITER_set((HV*)dstr, (HE*)NULL);
10949             }
10950             /* Record stashes for possible cloning in Perl_clone(). */
10951             if(hvname)
10952                 av_push(param->stashes, dstr);
10953         }
10954         break;
10955     case SVt_PVFM:
10956         SvANY(dstr)     = new_XPVFM();
10957         FmLINES(dstr)   = FmLINES(sstr);
10958         goto dup_pvcv;
10959         /* NOTREACHED */
10960     case SVt_PVCV:
10961         SvANY(dstr)     = new_XPVCV();
10962         dup_pvcv:
10963         SvCUR_set(dstr, SvCUR(sstr));
10964         SvLEN_set(dstr, SvLEN(sstr));
10965         SvIV_set(dstr, SvIVX(sstr));
10966         SvNV_set(dstr, SvNVX(sstr));
10967         SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10968         SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
10969         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10970         CvSTASH(dstr)   = hv_dup(CvSTASH(sstr), param); /* NOTE: not refcounted */
10971         CvSTART(dstr)   = CvSTART(sstr);
10972         OP_REFCNT_LOCK;
10973         CvROOT(dstr)    = OpREFCNT_inc(CvROOT(sstr));
10974         OP_REFCNT_UNLOCK;
10975         CvXSUB(dstr)    = CvXSUB(sstr);
10976         CvXSUBANY(dstr) = CvXSUBANY(sstr);
10977         if (CvCONST(sstr)) {
10978             CvXSUBANY(dstr).any_ptr = GvUNIQUE(CvGV(sstr)) ?
10979                 SvREFCNT_inc(CvXSUBANY(sstr).any_ptr) :
10980                 sv_dup_inc((SV *)CvXSUBANY(sstr).any_ptr, param);
10981         }
10982         /* don't dup if copying back - CvGV isn't refcounted, so the
10983          * duped GV may never be freed. A bit of a hack! DAPM */
10984         CvGV(dstr)      = (param->flags & CLONEf_JOIN_IN) ?
10985                 Nullgv : gv_dup(CvGV(sstr), param) ;
10986         if (param->flags & CLONEf_COPY_STACKS) {
10987           CvDEPTH(dstr) = CvDEPTH(sstr);
10988         } else {
10989           CvDEPTH(dstr) = 0;
10990         }
10991         PAD_DUP(CvPADLIST(dstr), CvPADLIST(sstr), param);
10992         CvOUTSIDE_SEQ(dstr) = CvOUTSIDE_SEQ(sstr);
10993         CvOUTSIDE(dstr) =
10994                 CvWEAKOUTSIDE(sstr)
10995                         ? cv_dup(    CvOUTSIDE(sstr), param)
10996                         : cv_dup_inc(CvOUTSIDE(sstr), param);
10997         CvFLAGS(dstr)   = CvFLAGS(sstr);
10998         CvFILE(dstr) = CvXSUB(sstr) ? CvFILE(sstr) : SAVEPV(CvFILE(sstr));
10999         break;
11000     default:
11001         Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11002         break;
11003     }
11004
11005     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
11006         ++PL_sv_objcount;
11007
11008     return dstr;
11009  }
11010
11011 /* duplicate a context */
11012
11013 PERL_CONTEXT *
11014 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
11015 {
11016     PERL_CONTEXT *ncxs;
11017
11018     if (!cxs)
11019         return (PERL_CONTEXT*)NULL;
11020
11021     /* look for it in the table first */
11022     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
11023     if (ncxs)
11024         return ncxs;
11025
11026     /* create anew and remember what it is */
11027     Newz(56, ncxs, max + 1, PERL_CONTEXT);
11028     ptr_table_store(PL_ptr_table, cxs, ncxs);
11029
11030     while (ix >= 0) {
11031         PERL_CONTEXT *cx = &cxs[ix];
11032         PERL_CONTEXT *ncx = &ncxs[ix];
11033         ncx->cx_type    = cx->cx_type;
11034         if (CxTYPE(cx) == CXt_SUBST) {
11035             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
11036         }
11037         else {
11038             ncx->blk_oldsp      = cx->blk_oldsp;
11039             ncx->blk_oldcop     = cx->blk_oldcop;
11040             ncx->blk_oldmarksp  = cx->blk_oldmarksp;
11041             ncx->blk_oldscopesp = cx->blk_oldscopesp;
11042             ncx->blk_oldpm      = cx->blk_oldpm;
11043             ncx->blk_gimme      = cx->blk_gimme;
11044             switch (CxTYPE(cx)) {
11045             case CXt_SUB:
11046                 ncx->blk_sub.cv         = (cx->blk_sub.olddepth == 0
11047                                            ? cv_dup_inc(cx->blk_sub.cv, param)
11048                                            : cv_dup(cx->blk_sub.cv,param));
11049                 ncx->blk_sub.argarray   = (cx->blk_sub.hasargs
11050                                            ? av_dup_inc(cx->blk_sub.argarray, param)
11051                                            : Nullav);
11052                 ncx->blk_sub.savearray  = av_dup_inc(cx->blk_sub.savearray, param);
11053                 ncx->blk_sub.olddepth   = cx->blk_sub.olddepth;
11054                 ncx->blk_sub.hasargs    = cx->blk_sub.hasargs;
11055                 ncx->blk_sub.lval       = cx->blk_sub.lval;
11056                 ncx->blk_sub.retop      = cx->blk_sub.retop;
11057                 break;
11058             case CXt_EVAL:
11059                 ncx->blk_eval.old_in_eval = cx->blk_eval.old_in_eval;
11060                 ncx->blk_eval.old_op_type = cx->blk_eval.old_op_type;
11061                 ncx->blk_eval.old_namesv = sv_dup_inc(cx->blk_eval.old_namesv, param);
11062                 ncx->blk_eval.old_eval_root = cx->blk_eval.old_eval_root;
11063                 ncx->blk_eval.cur_text  = sv_dup(cx->blk_eval.cur_text, param);
11064                 ncx->blk_eval.retop = cx->blk_eval.retop;
11065                 break;
11066             case CXt_LOOP:
11067                 ncx->blk_loop.label     = cx->blk_loop.label;
11068                 ncx->blk_loop.resetsp   = cx->blk_loop.resetsp;
11069                 ncx->blk_loop.redo_op   = cx->blk_loop.redo_op;
11070                 ncx->blk_loop.next_op   = cx->blk_loop.next_op;
11071                 ncx->blk_loop.last_op   = cx->blk_loop.last_op;
11072                 ncx->blk_loop.iterdata  = (CxPADLOOP(cx)
11073                                            ? cx->blk_loop.iterdata
11074                                            : gv_dup((GV*)cx->blk_loop.iterdata, param));
11075                 ncx->blk_loop.oldcomppad
11076                     = (PAD*)ptr_table_fetch(PL_ptr_table,
11077                                             cx->blk_loop.oldcomppad);
11078                 ncx->blk_loop.itersave  = sv_dup_inc(cx->blk_loop.itersave, param);
11079                 ncx->blk_loop.iterlval  = sv_dup_inc(cx->blk_loop.iterlval, param);
11080                 ncx->blk_loop.iterary   = av_dup_inc(cx->blk_loop.iterary, param);
11081                 ncx->blk_loop.iterix    = cx->blk_loop.iterix;
11082                 ncx->blk_loop.itermax   = cx->blk_loop.itermax;
11083                 break;
11084             case CXt_FORMAT:
11085                 ncx->blk_sub.cv         = cv_dup(cx->blk_sub.cv, param);
11086                 ncx->blk_sub.gv         = gv_dup(cx->blk_sub.gv, param);
11087                 ncx->blk_sub.dfoutgv    = gv_dup_inc(cx->blk_sub.dfoutgv, param);
11088                 ncx->blk_sub.hasargs    = cx->blk_sub.hasargs;
11089                 ncx->blk_sub.retop      = cx->blk_sub.retop;
11090                 break;
11091             case CXt_BLOCK:
11092             case CXt_NULL:
11093                 break;
11094             }
11095         }
11096         --ix;
11097     }
11098     return ncxs;
11099 }
11100
11101 /* duplicate a stack info structure */
11102
11103 PERL_SI *
11104 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
11105 {
11106     PERL_SI *nsi;
11107
11108     if (!si)
11109         return (PERL_SI*)NULL;
11110
11111     /* look for it in the table first */
11112     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
11113     if (nsi)
11114         return nsi;
11115
11116     /* create anew and remember what it is */
11117     Newz(56, nsi, 1, PERL_SI);
11118     ptr_table_store(PL_ptr_table, si, nsi);
11119
11120     nsi->si_stack       = av_dup_inc(si->si_stack, param);
11121     nsi->si_cxix        = si->si_cxix;
11122     nsi->si_cxmax       = si->si_cxmax;
11123     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
11124     nsi->si_type        = si->si_type;
11125     nsi->si_prev        = si_dup(si->si_prev, param);
11126     nsi->si_next        = si_dup(si->si_next, param);
11127     nsi->si_markoff     = si->si_markoff;
11128
11129     return nsi;
11130 }
11131
11132 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
11133 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
11134 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
11135 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
11136 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
11137 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
11138 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
11139 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
11140 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
11141 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
11142 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
11143 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
11144 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
11145 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
11146
11147 /* XXXXX todo */
11148 #define pv_dup_inc(p)   SAVEPV(p)
11149 #define pv_dup(p)       SAVEPV(p)
11150 #define svp_dup_inc(p,pp)       any_dup(p,pp)
11151
11152 /* map any object to the new equivent - either something in the
11153  * ptr table, or something in the interpreter structure
11154  */
11155
11156 void *
11157 Perl_any_dup(pTHX_ void *v, PerlInterpreter *proto_perl)
11158 {
11159     void *ret;
11160
11161     if (!v)
11162         return (void*)NULL;
11163
11164     /* look for it in the table first */
11165     ret = ptr_table_fetch(PL_ptr_table, v);
11166     if (ret)
11167         return ret;
11168
11169     /* see if it is part of the interpreter structure */
11170     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
11171         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
11172     else {
11173         ret = v;
11174     }
11175
11176     return ret;
11177 }
11178
11179 /* duplicate the save stack */
11180
11181 ANY *
11182 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
11183 {
11184     ANY *ss     = proto_perl->Tsavestack;
11185     I32 ix      = proto_perl->Tsavestack_ix;
11186     I32 max     = proto_perl->Tsavestack_max;
11187     ANY *nss;
11188     SV *sv;
11189     GV *gv;
11190     AV *av;
11191     HV *hv;
11192     void* ptr;
11193     int intval;
11194     long longval;
11195     GP *gp;
11196     IV iv;
11197     I32 i;
11198     char *c = NULL;
11199     void (*dptr) (void*);
11200     void (*dxptr) (pTHX_ void*);
11201     OP *o;
11202
11203     Newz(54, nss, max, ANY);
11204
11205     while (ix > 0) {
11206         i = POPINT(ss,ix);
11207         TOPINT(nss,ix) = i;
11208         switch (i) {
11209         case SAVEt_ITEM:                        /* normal string */
11210             sv = (SV*)POPPTR(ss,ix);
11211             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11212             sv = (SV*)POPPTR(ss,ix);
11213             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11214             break;
11215         case SAVEt_SV:                          /* scalar reference */
11216             sv = (SV*)POPPTR(ss,ix);
11217             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11218             gv = (GV*)POPPTR(ss,ix);
11219             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
11220             break;
11221         case SAVEt_GENERIC_PVREF:               /* generic char* */
11222             c = (char*)POPPTR(ss,ix);
11223             TOPPTR(nss,ix) = pv_dup(c);
11224             ptr = POPPTR(ss,ix);
11225             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11226             break;
11227         case SAVEt_SHARED_PVREF:                /* char* in shared space */
11228             c = (char*)POPPTR(ss,ix);
11229             TOPPTR(nss,ix) = savesharedpv(c);
11230             ptr = POPPTR(ss,ix);
11231             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11232             break;
11233         case SAVEt_GENERIC_SVREF:               /* generic sv */
11234         case SAVEt_SVREF:                       /* scalar reference */
11235             sv = (SV*)POPPTR(ss,ix);
11236             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11237             ptr = POPPTR(ss,ix);
11238             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
11239             break;
11240         case SAVEt_AV:                          /* array reference */
11241             av = (AV*)POPPTR(ss,ix);
11242             TOPPTR(nss,ix) = av_dup_inc(av, param);
11243             gv = (GV*)POPPTR(ss,ix);
11244             TOPPTR(nss,ix) = gv_dup(gv, param);
11245             break;
11246         case SAVEt_HV:                          /* hash reference */
11247             hv = (HV*)POPPTR(ss,ix);
11248             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11249             gv = (GV*)POPPTR(ss,ix);
11250             TOPPTR(nss,ix) = gv_dup(gv, param);
11251             break;
11252         case SAVEt_INT:                         /* int reference */
11253             ptr = POPPTR(ss,ix);
11254             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11255             intval = (int)POPINT(ss,ix);
11256             TOPINT(nss,ix) = intval;
11257             break;
11258         case SAVEt_LONG:                        /* long reference */
11259             ptr = POPPTR(ss,ix);
11260             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11261             longval = (long)POPLONG(ss,ix);
11262             TOPLONG(nss,ix) = longval;
11263             break;
11264         case SAVEt_I32:                         /* I32 reference */
11265         case SAVEt_I16:                         /* I16 reference */
11266         case SAVEt_I8:                          /* I8 reference */
11267             ptr = POPPTR(ss,ix);
11268             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11269             i = POPINT(ss,ix);
11270             TOPINT(nss,ix) = i;
11271             break;
11272         case SAVEt_IV:                          /* IV reference */
11273             ptr = POPPTR(ss,ix);
11274             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11275             iv = POPIV(ss,ix);
11276             TOPIV(nss,ix) = iv;
11277             break;
11278         case SAVEt_SPTR:                        /* SV* reference */
11279             ptr = POPPTR(ss,ix);
11280             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11281             sv = (SV*)POPPTR(ss,ix);
11282             TOPPTR(nss,ix) = sv_dup(sv, param);
11283             break;
11284         case SAVEt_VPTR:                        /* random* reference */
11285             ptr = POPPTR(ss,ix);
11286             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11287             ptr = POPPTR(ss,ix);
11288             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11289             break;
11290         case SAVEt_PPTR:                        /* char* reference */
11291             ptr = POPPTR(ss,ix);
11292             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11293             c = (char*)POPPTR(ss,ix);
11294             TOPPTR(nss,ix) = pv_dup(c);
11295             break;
11296         case SAVEt_HPTR:                        /* HV* reference */
11297             ptr = POPPTR(ss,ix);
11298             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11299             hv = (HV*)POPPTR(ss,ix);
11300             TOPPTR(nss,ix) = hv_dup(hv, param);
11301             break;
11302         case SAVEt_APTR:                        /* AV* reference */
11303             ptr = POPPTR(ss,ix);
11304             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11305             av = (AV*)POPPTR(ss,ix);
11306             TOPPTR(nss,ix) = av_dup(av, param);
11307             break;
11308         case SAVEt_NSTAB:
11309             gv = (GV*)POPPTR(ss,ix);
11310             TOPPTR(nss,ix) = gv_dup(gv, param);
11311             break;
11312         case SAVEt_GP:                          /* scalar reference */
11313             gp = (GP*)POPPTR(ss,ix);
11314             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
11315             (void)GpREFCNT_inc(gp);
11316             gv = (GV*)POPPTR(ss,ix);
11317             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
11318             c = (char*)POPPTR(ss,ix);
11319             TOPPTR(nss,ix) = pv_dup(c);
11320             iv = POPIV(ss,ix);
11321             TOPIV(nss,ix) = iv;
11322             iv = POPIV(ss,ix);
11323             TOPIV(nss,ix) = iv;
11324             break;
11325         case SAVEt_FREESV:
11326         case SAVEt_MORTALIZESV:
11327             sv = (SV*)POPPTR(ss,ix);
11328             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11329             break;
11330         case SAVEt_FREEOP:
11331             ptr = POPPTR(ss,ix);
11332             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
11333                 /* these are assumed to be refcounted properly */
11334                 switch (((OP*)ptr)->op_type) {
11335                 case OP_LEAVESUB:
11336                 case OP_LEAVESUBLV:
11337                 case OP_LEAVEEVAL:
11338                 case OP_LEAVE:
11339                 case OP_SCOPE:
11340                 case OP_LEAVEWRITE:
11341                     TOPPTR(nss,ix) = ptr;
11342                     o = (OP*)ptr;
11343                     OpREFCNT_inc(o);
11344                     break;
11345                 default:
11346                     TOPPTR(nss,ix) = Nullop;
11347                     break;
11348                 }
11349             }
11350             else
11351                 TOPPTR(nss,ix) = Nullop;
11352             break;
11353         case SAVEt_FREEPV:
11354             c = (char*)POPPTR(ss,ix);
11355             TOPPTR(nss,ix) = pv_dup_inc(c);
11356             break;
11357         case SAVEt_CLEARSV:
11358             longval = POPLONG(ss,ix);
11359             TOPLONG(nss,ix) = longval;
11360             break;
11361         case SAVEt_DELETE:
11362             hv = (HV*)POPPTR(ss,ix);
11363             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11364             c = (char*)POPPTR(ss,ix);
11365             TOPPTR(nss,ix) = pv_dup_inc(c);
11366             i = POPINT(ss,ix);
11367             TOPINT(nss,ix) = i;
11368             break;
11369         case SAVEt_DESTRUCTOR:
11370             ptr = POPPTR(ss,ix);
11371             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11372             dptr = POPDPTR(ss,ix);
11373             TOPDPTR(nss,ix) = (void (*)(void*))any_dup((void *)dptr, proto_perl);
11374             break;
11375         case SAVEt_DESTRUCTOR_X:
11376             ptr = POPPTR(ss,ix);
11377             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11378             dxptr = POPDXPTR(ss,ix);
11379             TOPDXPTR(nss,ix) = (void (*)(pTHX_ void*))any_dup((void *)dxptr, proto_perl);
11380             break;
11381         case SAVEt_REGCONTEXT:
11382         case SAVEt_ALLOC:
11383             i = POPINT(ss,ix);
11384             TOPINT(nss,ix) = i;
11385             ix -= i;
11386             break;
11387         case SAVEt_STACK_POS:           /* Position on Perl stack */
11388             i = POPINT(ss,ix);
11389             TOPINT(nss,ix) = i;
11390             break;
11391         case SAVEt_AELEM:               /* array element */
11392             sv = (SV*)POPPTR(ss,ix);
11393             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11394             i = POPINT(ss,ix);
11395             TOPINT(nss,ix) = i;
11396             av = (AV*)POPPTR(ss,ix);
11397             TOPPTR(nss,ix) = av_dup_inc(av, param);
11398             break;
11399         case SAVEt_HELEM:               /* hash element */
11400             sv = (SV*)POPPTR(ss,ix);
11401             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11402             sv = (SV*)POPPTR(ss,ix);
11403             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11404             hv = (HV*)POPPTR(ss,ix);
11405             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11406             break;
11407         case SAVEt_OP:
11408             ptr = POPPTR(ss,ix);
11409             TOPPTR(nss,ix) = ptr;
11410             break;
11411         case SAVEt_HINTS:
11412             i = POPINT(ss,ix);
11413             TOPINT(nss,ix) = i;
11414             break;
11415         case SAVEt_COMPPAD:
11416             av = (AV*)POPPTR(ss,ix);
11417             TOPPTR(nss,ix) = av_dup(av, param);
11418             break;
11419         case SAVEt_PADSV:
11420             longval = (long)POPLONG(ss,ix);
11421             TOPLONG(nss,ix) = longval;
11422             ptr = POPPTR(ss,ix);
11423             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11424             sv = (SV*)POPPTR(ss,ix);
11425             TOPPTR(nss,ix) = sv_dup(sv, param);
11426             break;
11427         case SAVEt_BOOL:
11428             ptr = POPPTR(ss,ix);
11429             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11430             longval = (long)POPBOOL(ss,ix);
11431             TOPBOOL(nss,ix) = (bool)longval;
11432             break;
11433         case SAVEt_SET_SVFLAGS:
11434             i = POPINT(ss,ix);
11435             TOPINT(nss,ix) = i;
11436             i = POPINT(ss,ix);
11437             TOPINT(nss,ix) = i;
11438             sv = (SV*)POPPTR(ss,ix);
11439             TOPPTR(nss,ix) = sv_dup(sv, param);
11440             break;
11441         default:
11442             Perl_croak(aTHX_ "panic: ss_dup inconsistency");
11443         }
11444     }
11445
11446     return nss;
11447 }
11448
11449
11450 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
11451  * flag to the result. This is done for each stash before cloning starts,
11452  * so we know which stashes want their objects cloned */
11453
11454 static void
11455 do_mark_cloneable_stash(pTHX_ SV *sv)
11456 {
11457     const char *hvname = HvNAME_get((HV*)sv);
11458     if (hvname) {
11459         GV* cloner = gv_fetchmethod_autoload((HV*)sv, "CLONE_SKIP", 0);
11460         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
11461         if (cloner && GvCV(cloner)) {
11462             dSP;
11463             UV status;
11464
11465             ENTER;
11466             SAVETMPS;
11467             PUSHMARK(SP);
11468             XPUSHs(sv_2mortal(newSVpv(hvname, 0)));
11469             PUTBACK;
11470             call_sv((SV*)GvCV(cloner), G_SCALAR);
11471             SPAGAIN;
11472             status = POPu;
11473             PUTBACK;
11474             FREETMPS;
11475             LEAVE;
11476             if (status)
11477                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
11478         }
11479     }
11480 }
11481
11482
11483
11484 /*
11485 =for apidoc perl_clone
11486
11487 Create and return a new interpreter by cloning the current one.
11488
11489 perl_clone takes these flags as parameters:
11490
11491 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
11492 without it we only clone the data and zero the stacks,
11493 with it we copy the stacks and the new perl interpreter is
11494 ready to run at the exact same point as the previous one.
11495 The pseudo-fork code uses COPY_STACKS while the
11496 threads->new doesn't.
11497
11498 CLONEf_KEEP_PTR_TABLE
11499 perl_clone keeps a ptr_table with the pointer of the old
11500 variable as a key and the new variable as a value,
11501 this allows it to check if something has been cloned and not
11502 clone it again but rather just use the value and increase the
11503 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
11504 the ptr_table using the function
11505 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
11506 reason to keep it around is if you want to dup some of your own
11507 variable who are outside the graph perl scans, example of this
11508 code is in threads.xs create
11509
11510 CLONEf_CLONE_HOST
11511 This is a win32 thing, it is ignored on unix, it tells perls
11512 win32host code (which is c++) to clone itself, this is needed on
11513 win32 if you want to run two threads at the same time,
11514 if you just want to do some stuff in a separate perl interpreter
11515 and then throw it away and return to the original one,
11516 you don't need to do anything.
11517
11518 =cut
11519 */
11520
11521 /* XXX the above needs expanding by someone who actually understands it ! */
11522 EXTERN_C PerlInterpreter *
11523 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
11524
11525 PerlInterpreter *
11526 perl_clone(PerlInterpreter *proto_perl, UV flags)
11527 {
11528    dVAR;
11529 #ifdef PERL_IMPLICIT_SYS
11530
11531    /* perlhost.h so we need to call into it
11532    to clone the host, CPerlHost should have a c interface, sky */
11533
11534    if (flags & CLONEf_CLONE_HOST) {
11535        return perl_clone_host(proto_perl,flags);
11536    }
11537    return perl_clone_using(proto_perl, flags,
11538                             proto_perl->IMem,
11539                             proto_perl->IMemShared,
11540                             proto_perl->IMemParse,
11541                             proto_perl->IEnv,
11542                             proto_perl->IStdIO,
11543                             proto_perl->ILIO,
11544                             proto_perl->IDir,
11545                             proto_perl->ISock,
11546                             proto_perl->IProc);
11547 }
11548
11549 PerlInterpreter *
11550 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
11551                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
11552                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
11553                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
11554                  struct IPerlDir* ipD, struct IPerlSock* ipS,
11555                  struct IPerlProc* ipP)
11556 {
11557     /* XXX many of the string copies here can be optimized if they're
11558      * constants; they need to be allocated as common memory and just
11559      * their pointers copied. */
11560
11561     IV i;
11562     CLONE_PARAMS clone_params;
11563     CLONE_PARAMS* param = &clone_params;
11564
11565     PerlInterpreter *my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
11566     /* for each stash, determine whether its objects should be cloned */
11567     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11568     PERL_SET_THX(my_perl);
11569
11570 #  ifdef DEBUGGING
11571     Poison(my_perl, 1, PerlInterpreter);
11572     PL_op = Nullop;
11573     PL_curcop = (COP *)Nullop;
11574     PL_markstack = 0;
11575     PL_scopestack = 0;
11576     PL_savestack = 0;
11577     PL_savestack_ix = 0;
11578     PL_savestack_max = -1;
11579     PL_sig_pending = 0;
11580     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11581 #  else /* !DEBUGGING */
11582     Zero(my_perl, 1, PerlInterpreter);
11583 #  endif        /* DEBUGGING */
11584
11585     /* host pointers */
11586     PL_Mem              = ipM;
11587     PL_MemShared        = ipMS;
11588     PL_MemParse         = ipMP;
11589     PL_Env              = ipE;
11590     PL_StdIO            = ipStd;
11591     PL_LIO              = ipLIO;
11592     PL_Dir              = ipD;
11593     PL_Sock             = ipS;
11594     PL_Proc             = ipP;
11595 #else           /* !PERL_IMPLICIT_SYS */
11596     IV i;
11597     CLONE_PARAMS clone_params;
11598     CLONE_PARAMS* param = &clone_params;
11599     PerlInterpreter *my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
11600     /* for each stash, determine whether its objects should be cloned */
11601     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11602     PERL_SET_THX(my_perl);
11603
11604 #    ifdef DEBUGGING
11605     Poison(my_perl, 1, PerlInterpreter);
11606     PL_op = Nullop;
11607     PL_curcop = (COP *)Nullop;
11608     PL_markstack = 0;
11609     PL_scopestack = 0;
11610     PL_savestack = 0;
11611     PL_savestack_ix = 0;
11612     PL_savestack_max = -1;
11613     PL_sig_pending = 0;
11614     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11615 #    else       /* !DEBUGGING */
11616     Zero(my_perl, 1, PerlInterpreter);
11617 #    endif      /* DEBUGGING */
11618 #endif          /* PERL_IMPLICIT_SYS */
11619     param->flags = flags;
11620     param->proto_perl = proto_perl;
11621
11622     /* arena roots */
11623     PL_xnv_arenaroot    = NULL;
11624     PL_xnv_root         = NULL;
11625     PL_xpv_arenaroot    = NULL;
11626     PL_xpv_root         = NULL;
11627     PL_xpviv_arenaroot  = NULL;
11628     PL_xpviv_root       = NULL;
11629     PL_xpvnv_arenaroot  = NULL;
11630     PL_xpvnv_root       = NULL;
11631     PL_xpvcv_arenaroot  = NULL;
11632     PL_xpvcv_root       = NULL;
11633     PL_xpvav_arenaroot  = NULL;
11634     PL_xpvav_root       = NULL;
11635     PL_xpvhv_arenaroot  = NULL;
11636     PL_xpvhv_root       = NULL;
11637     PL_xpvmg_arenaroot  = NULL;
11638     PL_xpvmg_root       = NULL;
11639     PL_xpvgv_arenaroot  = NULL;
11640     PL_xpvgv_root       = NULL;
11641     PL_xpvlv_arenaroot  = NULL;
11642     PL_xpvlv_root       = NULL;
11643     PL_xpvbm_arenaroot  = NULL;
11644     PL_xpvbm_root       = NULL;
11645     PL_he_arenaroot     = NULL;
11646     PL_he_root          = NULL;
11647 #if defined(USE_ITHREADS)
11648     PL_pte_arenaroot    = NULL;
11649     PL_pte_root         = NULL;
11650 #endif
11651     PL_nice_chunk       = NULL;
11652     PL_nice_chunk_size  = 0;
11653     PL_sv_count         = 0;
11654     PL_sv_objcount      = 0;
11655     PL_sv_root          = Nullsv;
11656     PL_sv_arenaroot     = Nullsv;
11657
11658     PL_debug            = proto_perl->Idebug;
11659
11660 #ifdef USE_REENTRANT_API
11661     /* XXX: things like -Dm will segfault here in perlio, but doing
11662      *  PERL_SET_CONTEXT(proto_perl);
11663      * breaks too many other things
11664      */
11665     Perl_reentrant_init(aTHX);
11666 #endif
11667
11668     /* create SV map for pointer relocation */
11669     PL_ptr_table = ptr_table_new();
11670
11671     /* initialize these special pointers as early as possible */
11672     SvANY(&PL_sv_undef)         = NULL;
11673     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
11674     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
11675     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
11676
11677     SvANY(&PL_sv_no)            = new_XPVNV();
11678     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
11679     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11680                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11681     SvPV_set(&PL_sv_no, SAVEPVN(PL_No, 0));
11682     SvCUR_set(&PL_sv_no, 0);
11683     SvLEN_set(&PL_sv_no, 1);
11684     SvIV_set(&PL_sv_no, 0);
11685     SvNV_set(&PL_sv_no, 0);
11686     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
11687
11688     SvANY(&PL_sv_yes)           = new_XPVNV();
11689     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
11690     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11691                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11692     SvPV_set(&PL_sv_yes, SAVEPVN(PL_Yes, 1));
11693     SvCUR_set(&PL_sv_yes, 1);
11694     SvLEN_set(&PL_sv_yes, 2);
11695     SvIV_set(&PL_sv_yes, 1);
11696     SvNV_set(&PL_sv_yes, 1);
11697     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
11698
11699     /* create (a non-shared!) shared string table */
11700     PL_strtab           = newHV();
11701     HvSHAREKEYS_off(PL_strtab);
11702     hv_ksplit(PL_strtab, 512);
11703     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
11704
11705     PL_compiling = proto_perl->Icompiling;
11706
11707     /* These two PVs will be free'd special way so must set them same way op.c does */
11708     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
11709     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
11710
11711     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
11712     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
11713
11714     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
11715     if (!specialWARN(PL_compiling.cop_warnings))
11716         PL_compiling.cop_warnings = sv_dup_inc(PL_compiling.cop_warnings, param);
11717     if (!specialCopIO(PL_compiling.cop_io))
11718         PL_compiling.cop_io = sv_dup_inc(PL_compiling.cop_io, param);
11719     PL_curcop           = (COP*)any_dup(proto_perl->Tcurcop, proto_perl);
11720
11721     /* pseudo environmental stuff */
11722     PL_origargc         = proto_perl->Iorigargc;
11723     PL_origargv         = proto_perl->Iorigargv;
11724
11725     param->stashes      = newAV();  /* Setup array of objects to call clone on */
11726
11727 #ifdef PERLIO_LAYERS
11728     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
11729     PerlIO_clone(aTHX_ proto_perl, param);
11730 #endif
11731
11732     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
11733     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
11734     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
11735     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
11736     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
11737     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
11738
11739     /* switches */
11740     PL_minus_c          = proto_perl->Iminus_c;
11741     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
11742     PL_localpatches     = proto_perl->Ilocalpatches;
11743     PL_splitstr         = proto_perl->Isplitstr;
11744     PL_preprocess       = proto_perl->Ipreprocess;
11745     PL_minus_n          = proto_perl->Iminus_n;
11746     PL_minus_p          = proto_perl->Iminus_p;
11747     PL_minus_l          = proto_perl->Iminus_l;
11748     PL_minus_a          = proto_perl->Iminus_a;
11749     PL_minus_F          = proto_perl->Iminus_F;
11750     PL_doswitches       = proto_perl->Idoswitches;
11751     PL_dowarn           = proto_perl->Idowarn;
11752     PL_doextract        = proto_perl->Idoextract;
11753     PL_sawampersand     = proto_perl->Isawampersand;
11754     PL_unsafe           = proto_perl->Iunsafe;
11755     PL_inplace          = SAVEPV(proto_perl->Iinplace);
11756     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
11757     PL_perldb           = proto_perl->Iperldb;
11758     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
11759     PL_exit_flags       = proto_perl->Iexit_flags;
11760
11761     /* magical thingies */
11762     /* XXX time(&PL_basetime) when asked for? */
11763     PL_basetime         = proto_perl->Ibasetime;
11764     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
11765
11766     PL_maxsysfd         = proto_perl->Imaxsysfd;
11767     PL_multiline        = proto_perl->Imultiline;
11768     PL_statusvalue      = proto_perl->Istatusvalue;
11769 #ifdef VMS
11770     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
11771 #endif
11772     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
11773
11774     sv_setpvn(PERL_DEBUG_PAD(0), "", 0);        /* For regex debugging. */
11775     sv_setpvn(PERL_DEBUG_PAD(1), "", 0);        /* ext/re needs these */
11776     sv_setpvn(PERL_DEBUG_PAD(2), "", 0);        /* even without DEBUGGING. */
11777
11778     /* Clone the regex array */
11779     PL_regex_padav = newAV();
11780     {
11781         const I32 len = av_len((AV*)proto_perl->Iregex_padav);
11782         SV** regexen = AvARRAY((AV*)proto_perl->Iregex_padav);
11783         av_push(PL_regex_padav,
11784                 sv_dup_inc(regexen[0],param));
11785         for(i = 1; i <= len; i++) {
11786             if(SvREPADTMP(regexen[i])) {
11787               av_push(PL_regex_padav, sv_dup_inc(regexen[i], param));
11788             } else {
11789                 av_push(PL_regex_padav,
11790                     SvREFCNT_inc(
11791                         newSViv(PTR2IV(re_dup(INT2PTR(REGEXP *,
11792                              SvIVX(regexen[i])), param)))
11793                        ));
11794             }
11795         }
11796     }
11797     PL_regex_pad = AvARRAY(PL_regex_padav);
11798
11799     /* shortcuts to various I/O objects */
11800     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
11801     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
11802     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
11803     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
11804     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
11805     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
11806
11807     /* shortcuts to regexp stuff */
11808     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
11809
11810     /* shortcuts to misc objects */
11811     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
11812
11813     /* shortcuts to debugging objects */
11814     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
11815     PL_DBline           = gv_dup(proto_perl->IDBline, param);
11816     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
11817     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
11818     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
11819     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
11820     PL_DBassertion      = sv_dup(proto_perl->IDBassertion, param);
11821     PL_lineary          = av_dup(proto_perl->Ilineary, param);
11822     PL_dbargs           = av_dup(proto_perl->Idbargs, param);
11823
11824     /* symbol tables */
11825     PL_defstash         = hv_dup_inc(proto_perl->Tdefstash, param);
11826     PL_curstash         = hv_dup(proto_perl->Tcurstash, param);
11827     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
11828     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
11829     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
11830
11831     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
11832     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
11833     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
11834     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
11835     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
11836     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
11837
11838     PL_sub_generation   = proto_perl->Isub_generation;
11839
11840     /* funky return mechanisms */
11841     PL_forkprocess      = proto_perl->Iforkprocess;
11842
11843     /* subprocess state */
11844     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
11845
11846     /* internal state */
11847     PL_tainting         = proto_perl->Itainting;
11848     PL_taint_warn       = proto_perl->Itaint_warn;
11849     PL_maxo             = proto_perl->Imaxo;
11850     if (proto_perl->Iop_mask)
11851         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
11852     else
11853         PL_op_mask      = Nullch;
11854     /* PL_asserting        = proto_perl->Iasserting; */
11855
11856     /* current interpreter roots */
11857     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
11858     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
11859     PL_main_start       = proto_perl->Imain_start;
11860     PL_eval_root        = proto_perl->Ieval_root;
11861     PL_eval_start       = proto_perl->Ieval_start;
11862
11863     /* runtime control stuff */
11864     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
11865     PL_copline          = proto_perl->Icopline;
11866
11867     PL_filemode         = proto_perl->Ifilemode;
11868     PL_lastfd           = proto_perl->Ilastfd;
11869     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
11870     PL_Argv             = NULL;
11871     PL_Cmd              = Nullch;
11872     PL_gensym           = proto_perl->Igensym;
11873     PL_preambled        = proto_perl->Ipreambled;
11874     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
11875     PL_laststatval      = proto_perl->Ilaststatval;
11876     PL_laststype        = proto_perl->Ilaststype;
11877     PL_mess_sv          = Nullsv;
11878
11879     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
11880     PL_ofmt             = SAVEPV(proto_perl->Iofmt);
11881
11882     /* interpreter atexit processing */
11883     PL_exitlistlen      = proto_perl->Iexitlistlen;
11884     if (PL_exitlistlen) {
11885         New(0, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
11886         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
11887     }
11888     else
11889         PL_exitlist     = (PerlExitListEntry*)NULL;
11890     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
11891     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
11892     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
11893
11894     PL_profiledata      = NULL;
11895     PL_rsfp             = fp_dup(proto_perl->Irsfp, '<', param);
11896     /* PL_rsfp_filters entries have fake IoDIRP() */
11897     PL_rsfp_filters     = av_dup_inc(proto_perl->Irsfp_filters, param);
11898
11899     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
11900
11901     PAD_CLONE_VARS(proto_perl, param);
11902
11903 #ifdef HAVE_INTERP_INTERN
11904     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
11905 #endif
11906
11907     /* more statics moved here */
11908     PL_generation       = proto_perl->Igeneration;
11909     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
11910
11911     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
11912     PL_in_clean_all     = proto_perl->Iin_clean_all;
11913
11914     PL_uid              = proto_perl->Iuid;
11915     PL_euid             = proto_perl->Ieuid;
11916     PL_gid              = proto_perl->Igid;
11917     PL_egid             = proto_perl->Iegid;
11918     PL_nomemok          = proto_perl->Inomemok;
11919     PL_an               = proto_perl->Ian;
11920     PL_evalseq          = proto_perl->Ievalseq;
11921     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
11922     PL_origalen         = proto_perl->Iorigalen;
11923     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
11924     PL_osname           = SAVEPV(proto_perl->Iosname);
11925     PL_sh_path_compat   = proto_perl->Ish_path_compat; /* XXX never deallocated */
11926     PL_sighandlerp      = proto_perl->Isighandlerp;
11927
11928
11929     PL_runops           = proto_perl->Irunops;
11930
11931     Copy(proto_perl->Itokenbuf, PL_tokenbuf, 256, char);
11932
11933 #ifdef CSH
11934     PL_cshlen           = proto_perl->Icshlen;
11935     PL_cshname          = proto_perl->Icshname; /* XXX never deallocated */
11936 #endif
11937
11938     PL_lex_state        = proto_perl->Ilex_state;
11939     PL_lex_defer        = proto_perl->Ilex_defer;
11940     PL_lex_expect       = proto_perl->Ilex_expect;
11941     PL_lex_formbrack    = proto_perl->Ilex_formbrack;
11942     PL_lex_dojoin       = proto_perl->Ilex_dojoin;
11943     PL_lex_starts       = proto_perl->Ilex_starts;
11944     PL_lex_stuff        = sv_dup_inc(proto_perl->Ilex_stuff, param);
11945     PL_lex_repl         = sv_dup_inc(proto_perl->Ilex_repl, param);
11946     PL_lex_op           = proto_perl->Ilex_op;
11947     PL_lex_inpat        = proto_perl->Ilex_inpat;
11948     PL_lex_inwhat       = proto_perl->Ilex_inwhat;
11949     PL_lex_brackets     = proto_perl->Ilex_brackets;
11950     i = (PL_lex_brackets < 120 ? 120 : PL_lex_brackets);
11951     PL_lex_brackstack   = SAVEPVN(proto_perl->Ilex_brackstack,i);
11952     PL_lex_casemods     = proto_perl->Ilex_casemods;
11953     i = (PL_lex_casemods < 12 ? 12 : PL_lex_casemods);
11954     PL_lex_casestack    = SAVEPVN(proto_perl->Ilex_casestack,i);
11955
11956     Copy(proto_perl->Inextval, PL_nextval, 5, YYSTYPE);
11957     Copy(proto_perl->Inexttype, PL_nexttype, 5, I32);
11958     PL_nexttoke         = proto_perl->Inexttoke;
11959
11960     /* XXX This is probably masking the deeper issue of why
11961      * SvANY(proto_perl->Ilinestr) can be NULL at this point. For test case:
11962      * http://archive.develooper.com/perl5-porters%40perl.org/msg83298.html
11963      * (A little debugging with a watchpoint on it may help.)
11964      */
11965     if (SvANY(proto_perl->Ilinestr)) {
11966         PL_linestr              = sv_dup_inc(proto_perl->Ilinestr, param);
11967         i = proto_perl->Ibufptr - SvPVX(proto_perl->Ilinestr);
11968         PL_bufptr               = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
11969         i = proto_perl->Ioldbufptr - SvPVX(proto_perl->Ilinestr);
11970         PL_oldbufptr    = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
11971         i = proto_perl->Ioldoldbufptr - SvPVX(proto_perl->Ilinestr);
11972         PL_oldoldbufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
11973         i = proto_perl->Ilinestart - SvPVX(proto_perl->Ilinestr);
11974         PL_linestart    = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
11975     }
11976     else {
11977         PL_linestr = NEWSV(65,79);
11978         sv_upgrade(PL_linestr,SVt_PVIV);
11979         sv_setpvn(PL_linestr,"",0);
11980         PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
11981     }
11982     PL_bufend           = SvPVX(PL_linestr) + SvCUR(PL_linestr);
11983     PL_pending_ident    = proto_perl->Ipending_ident;
11984     PL_sublex_info      = proto_perl->Isublex_info;     /* XXX not quite right */
11985
11986     PL_expect           = proto_perl->Iexpect;
11987
11988     PL_multi_start      = proto_perl->Imulti_start;
11989     PL_multi_end        = proto_perl->Imulti_end;
11990     PL_multi_open       = proto_perl->Imulti_open;
11991     PL_multi_close      = proto_perl->Imulti_close;
11992
11993     PL_error_count      = proto_perl->Ierror_count;
11994     PL_subline          = proto_perl->Isubline;
11995     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
11996
11997     /* XXX See comment on SvANY(proto_perl->Ilinestr) above */
11998     if (SvANY(proto_perl->Ilinestr)) {
11999         i = proto_perl->Ilast_uni - SvPVX(proto_perl->Ilinestr);
12000         PL_last_uni             = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
12001         i = proto_perl->Ilast_lop - SvPVX(proto_perl->Ilinestr);
12002         PL_last_lop             = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
12003         PL_last_lop_op  = proto_perl->Ilast_lop_op;
12004     }
12005     else {
12006         PL_last_uni     = SvPVX(PL_linestr);
12007         PL_last_lop     = SvPVX(PL_linestr);
12008         PL_last_lop_op  = 0;
12009     }
12010     PL_in_my            = proto_perl->Iin_my;
12011     PL_in_my_stash      = hv_dup(proto_perl->Iin_my_stash, param);
12012 #ifdef FCRYPT
12013     PL_cryptseen        = proto_perl->Icryptseen;
12014 #endif
12015
12016     PL_hints            = proto_perl->Ihints;
12017
12018     PL_amagic_generation        = proto_perl->Iamagic_generation;
12019
12020 #ifdef USE_LOCALE_COLLATE
12021     PL_collation_ix     = proto_perl->Icollation_ix;
12022     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
12023     PL_collation_standard       = proto_perl->Icollation_standard;
12024     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12025     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12026 #endif /* USE_LOCALE_COLLATE */
12027
12028 #ifdef USE_LOCALE_NUMERIC
12029     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
12030     PL_numeric_standard = proto_perl->Inumeric_standard;
12031     PL_numeric_local    = proto_perl->Inumeric_local;
12032     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
12033 #endif /* !USE_LOCALE_NUMERIC */
12034
12035     /* utf8 character classes */
12036     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
12037     PL_utf8_alnumc      = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
12038     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
12039     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
12040     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
12041     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
12042     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
12043     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
12044     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
12045     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
12046     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
12047     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
12048     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
12049     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
12050     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
12051     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
12052     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
12053     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
12054     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
12055     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
12056
12057     /* Did the locale setup indicate UTF-8? */
12058     PL_utf8locale       = proto_perl->Iutf8locale;
12059     /* Unicode features (see perlrun/-C) */
12060     PL_unicode          = proto_perl->Iunicode;
12061
12062     /* Pre-5.8 signals control */
12063     PL_signals          = proto_perl->Isignals;
12064
12065     /* times() ticks per second */
12066     PL_clocktick        = proto_perl->Iclocktick;
12067
12068     /* Recursion stopper for PerlIO_find_layer */
12069     PL_in_load_module   = proto_perl->Iin_load_module;
12070
12071     /* sort() routine */
12072     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
12073
12074     /* Not really needed/useful since the reenrant_retint is "volatile",
12075      * but do it for consistency's sake. */
12076     PL_reentrant_retint = proto_perl->Ireentrant_retint;
12077
12078     /* Hooks to shared SVs and locks. */
12079     PL_sharehook        = proto_perl->Isharehook;
12080     PL_lockhook         = proto_perl->Ilockhook;
12081     PL_unlockhook       = proto_perl->Iunlockhook;
12082     PL_threadhook       = proto_perl->Ithreadhook;
12083
12084     PL_runops_std       = proto_perl->Irunops_std;
12085     PL_runops_dbg       = proto_perl->Irunops_dbg;
12086
12087 #ifdef THREADS_HAVE_PIDS
12088     PL_ppid             = proto_perl->Ippid;
12089 #endif
12090
12091     /* swatch cache */
12092     PL_last_swash_hv    = Nullhv;       /* reinits on demand */
12093     PL_last_swash_klen  = 0;
12094     PL_last_swash_key[0]= '\0';
12095     PL_last_swash_tmps  = (U8*)NULL;
12096     PL_last_swash_slen  = 0;
12097
12098     PL_glob_index       = proto_perl->Iglob_index;
12099     PL_srand_called     = proto_perl->Isrand_called;
12100     PL_hash_seed        = proto_perl->Ihash_seed;
12101     PL_rehash_seed      = proto_perl->Irehash_seed;
12102     PL_uudmap['M']      = 0;            /* reinits on demand */
12103     PL_bitcount         = Nullch;       /* reinits on demand */
12104
12105     if (proto_perl->Ipsig_pend) {
12106         Newz(0, PL_psig_pend, SIG_SIZE, int);
12107     }
12108     else {
12109         PL_psig_pend    = (int*)NULL;
12110     }
12111
12112     if (proto_perl->Ipsig_ptr) {
12113         Newz(0, PL_psig_ptr,  SIG_SIZE, SV*);
12114         Newz(0, PL_psig_name, SIG_SIZE, SV*);
12115         for (i = 1; i < SIG_SIZE; i++) {
12116             PL_psig_ptr[i]  = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
12117             PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
12118         }
12119     }
12120     else {
12121         PL_psig_ptr     = (SV**)NULL;
12122         PL_psig_name    = (SV**)NULL;
12123     }
12124
12125     /* thrdvar.h stuff */
12126
12127     if (flags & CLONEf_COPY_STACKS) {
12128         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
12129         PL_tmps_ix              = proto_perl->Ttmps_ix;
12130         PL_tmps_max             = proto_perl->Ttmps_max;
12131         PL_tmps_floor           = proto_perl->Ttmps_floor;
12132         Newz(50, PL_tmps_stack, PL_tmps_max, SV*);
12133         i = 0;
12134         while (i <= PL_tmps_ix) {
12135             PL_tmps_stack[i]    = sv_dup_inc(proto_perl->Ttmps_stack[i], param);
12136             ++i;
12137         }
12138
12139         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
12140         i = proto_perl->Tmarkstack_max - proto_perl->Tmarkstack;
12141         Newz(54, PL_markstack, i, I32);
12142         PL_markstack_max        = PL_markstack + (proto_perl->Tmarkstack_max
12143                                                   - proto_perl->Tmarkstack);
12144         PL_markstack_ptr        = PL_markstack + (proto_perl->Tmarkstack_ptr
12145                                                   - proto_perl->Tmarkstack);
12146         Copy(proto_perl->Tmarkstack, PL_markstack,
12147              PL_markstack_ptr - PL_markstack + 1, I32);
12148
12149         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
12150          * NOTE: unlike the others! */
12151         PL_scopestack_ix        = proto_perl->Tscopestack_ix;
12152         PL_scopestack_max       = proto_perl->Tscopestack_max;
12153         Newz(54, PL_scopestack, PL_scopestack_max, I32);
12154         Copy(proto_perl->Tscopestack, PL_scopestack, PL_scopestack_ix, I32);
12155
12156         /* NOTE: si_dup() looks at PL_markstack */
12157         PL_curstackinfo         = si_dup(proto_perl->Tcurstackinfo, param);
12158
12159         /* PL_curstack          = PL_curstackinfo->si_stack; */
12160         PL_curstack             = av_dup(proto_perl->Tcurstack, param);
12161         PL_mainstack            = av_dup(proto_perl->Tmainstack, param);
12162
12163         /* next PUSHs() etc. set *(PL_stack_sp+1) */
12164         PL_stack_base           = AvARRAY(PL_curstack);
12165         PL_stack_sp             = PL_stack_base + (proto_perl->Tstack_sp
12166                                                    - proto_perl->Tstack_base);
12167         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
12168
12169         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
12170          * NOTE: unlike the others! */
12171         PL_savestack_ix         = proto_perl->Tsavestack_ix;
12172         PL_savestack_max        = proto_perl->Tsavestack_max;
12173         /*Newz(54, PL_savestack, PL_savestack_max, ANY);*/
12174         PL_savestack            = ss_dup(proto_perl, param);
12175     }
12176     else {
12177         init_stacks();
12178         ENTER;                  /* perl_destruct() wants to LEAVE; */
12179     }
12180
12181     PL_start_env        = proto_perl->Tstart_env;       /* XXXXXX */
12182     PL_top_env          = &PL_start_env;
12183
12184     PL_op               = proto_perl->Top;
12185
12186     PL_Sv               = Nullsv;
12187     PL_Xpv              = (XPV*)NULL;
12188     PL_na               = proto_perl->Tna;
12189
12190     PL_statbuf          = proto_perl->Tstatbuf;
12191     PL_statcache        = proto_perl->Tstatcache;
12192     PL_statgv           = gv_dup(proto_perl->Tstatgv, param);
12193     PL_statname         = sv_dup_inc(proto_perl->Tstatname, param);
12194 #ifdef HAS_TIMES
12195     PL_timesbuf         = proto_perl->Ttimesbuf;
12196 #endif
12197
12198     PL_tainted          = proto_perl->Ttainted;
12199     PL_curpm            = proto_perl->Tcurpm;   /* XXX No PMOP ref count */
12200     PL_rs               = sv_dup_inc(proto_perl->Trs, param);
12201     PL_last_in_gv       = gv_dup(proto_perl->Tlast_in_gv, param);
12202     PL_ofs_sv           = sv_dup_inc(proto_perl->Tofs_sv, param);
12203     PL_defoutgv         = gv_dup_inc(proto_perl->Tdefoutgv, param);
12204     PL_chopset          = proto_perl->Tchopset; /* XXX never deallocated */
12205     PL_toptarget        = sv_dup_inc(proto_perl->Ttoptarget, param);
12206     PL_bodytarget       = sv_dup_inc(proto_perl->Tbodytarget, param);
12207     PL_formtarget       = sv_dup(proto_perl->Tformtarget, param);
12208
12209     PL_restartop        = proto_perl->Trestartop;
12210     PL_in_eval          = proto_perl->Tin_eval;
12211     PL_delaymagic       = proto_perl->Tdelaymagic;
12212     PL_dirty            = proto_perl->Tdirty;
12213     PL_localizing       = proto_perl->Tlocalizing;
12214
12215     PL_errors           = sv_dup_inc(proto_perl->Terrors, param);
12216     PL_hv_fetch_ent_mh  = Nullhe;
12217     PL_modcount         = proto_perl->Tmodcount;
12218     PL_lastgotoprobe    = Nullop;
12219     PL_dumpindent       = proto_perl->Tdumpindent;
12220
12221     PL_sortcop          = (OP*)any_dup(proto_perl->Tsortcop, proto_perl);
12222     PL_sortstash        = hv_dup(proto_perl->Tsortstash, param);
12223     PL_firstgv          = gv_dup(proto_perl->Tfirstgv, param);
12224     PL_secondgv         = gv_dup(proto_perl->Tsecondgv, param);
12225     PL_sortcxix         = proto_perl->Tsortcxix;
12226     PL_efloatbuf        = Nullch;               /* reinits on demand */
12227     PL_efloatsize       = 0;                    /* reinits on demand */
12228
12229     /* regex stuff */
12230
12231     PL_screamfirst      = NULL;
12232     PL_screamnext       = NULL;
12233     PL_maxscream        = -1;                   /* reinits on demand */
12234     PL_lastscream       = Nullsv;
12235
12236     PL_watchaddr        = NULL;
12237     PL_watchok          = Nullch;
12238
12239     PL_regdummy         = proto_perl->Tregdummy;
12240     PL_regprecomp       = Nullch;
12241     PL_regnpar          = 0;
12242     PL_regsize          = 0;
12243     PL_colorset         = 0;            /* reinits PL_colors[] */
12244     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12245     PL_reginput         = Nullch;
12246     PL_regbol           = Nullch;
12247     PL_regeol           = Nullch;
12248     PL_regstartp        = (I32*)NULL;
12249     PL_regendp          = (I32*)NULL;
12250     PL_reglastparen     = (U32*)NULL;
12251     PL_reglastcloseparen        = (U32*)NULL;
12252     PL_regtill          = Nullch;
12253     PL_reg_start_tmp    = (char**)NULL;
12254     PL_reg_start_tmpl   = 0;
12255     PL_regdata          = (struct reg_data*)NULL;
12256     PL_bostr            = Nullch;
12257     PL_reg_flags        = 0;
12258     PL_reg_eval_set     = 0;
12259     PL_regnarrate       = 0;
12260     PL_regprogram       = (regnode*)NULL;
12261     PL_regindent        = 0;
12262     PL_regcc            = (CURCUR*)NULL;
12263     PL_reg_call_cc      = (struct re_cc_state*)NULL;
12264     PL_reg_re           = (regexp*)NULL;
12265     PL_reg_ganch        = Nullch;
12266     PL_reg_sv           = Nullsv;
12267     PL_reg_match_utf8   = FALSE;
12268     PL_reg_magic        = (MAGIC*)NULL;
12269     PL_reg_oldpos       = 0;
12270     PL_reg_oldcurpm     = (PMOP*)NULL;
12271     PL_reg_curpm        = (PMOP*)NULL;
12272     PL_reg_oldsaved     = Nullch;
12273     PL_reg_oldsavedlen  = 0;
12274 #ifdef PERL_COPY_ON_WRITE
12275     PL_nrs              = Nullsv;
12276 #endif
12277     PL_reg_maxiter      = 0;
12278     PL_reg_leftiter     = 0;
12279     PL_reg_poscache     = Nullch;
12280     PL_reg_poscache_size= 0;
12281
12282     /* RE engine - function pointers */
12283     PL_regcompp         = proto_perl->Tregcompp;
12284     PL_regexecp         = proto_perl->Tregexecp;
12285     PL_regint_start     = proto_perl->Tregint_start;
12286     PL_regint_string    = proto_perl->Tregint_string;
12287     PL_regfree          = proto_perl->Tregfree;
12288
12289     PL_reginterp_cnt    = 0;
12290     PL_reg_starttry     = 0;
12291
12292     /* Pluggable optimizer */
12293     PL_peepp            = proto_perl->Tpeepp;
12294
12295     PL_stashcache       = newHV();
12296
12297     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
12298         ptr_table_free(PL_ptr_table);
12299         PL_ptr_table = NULL;
12300     }
12301
12302     /* Call the ->CLONE method, if it exists, for each of the stashes
12303        identified by sv_dup() above.
12304     */
12305     while(av_len(param->stashes) != -1) {
12306         HV* stash = (HV*) av_shift(param->stashes);
12307         GV* cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
12308         if (cloner && GvCV(cloner)) {
12309             dSP;
12310             ENTER;
12311             SAVETMPS;
12312             PUSHMARK(SP);
12313             XPUSHs(sv_2mortal(newSVpv(HvNAME_get(stash), 0)));
12314             PUTBACK;
12315             call_sv((SV*)GvCV(cloner), G_DISCARD);
12316             FREETMPS;
12317             LEAVE;
12318         }
12319     }
12320
12321     SvREFCNT_dec(param->stashes);
12322
12323     /* orphaned? eg threads->new inside BEGIN or use */
12324     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
12325         (void)SvREFCNT_inc(PL_compcv);
12326         SAVEFREESV(PL_compcv);
12327     }
12328
12329     return my_perl;
12330 }
12331
12332 #endif /* USE_ITHREADS */
12333
12334 /*
12335 =head1 Unicode Support
12336
12337 =for apidoc sv_recode_to_utf8
12338
12339 The encoding is assumed to be an Encode object, on entry the PV
12340 of the sv is assumed to be octets in that encoding, and the sv
12341 will be converted into Unicode (and UTF-8).
12342
12343 If the sv already is UTF-8 (or if it is not POK), or if the encoding
12344 is not a reference, nothing is done to the sv.  If the encoding is not
12345 an C<Encode::XS> Encoding object, bad things will happen.
12346 (See F<lib/encoding.pm> and L<Encode>).
12347
12348 The PV of the sv is returned.
12349
12350 =cut */
12351
12352 char *
12353 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
12354 {
12355     dVAR;
12356     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
12357         SV *uni;
12358         STRLEN len;
12359         char *s;
12360         dSP;
12361         ENTER;
12362         SAVETMPS;
12363         save_re_context();
12364         PUSHMARK(sp);
12365         EXTEND(SP, 3);
12366         XPUSHs(encoding);
12367         XPUSHs(sv);
12368 /*
12369   NI-S 2002/07/09
12370   Passing sv_yes is wrong - it needs to be or'ed set of constants
12371   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
12372   remove converted chars from source.
12373
12374   Both will default the value - let them.
12375
12376         XPUSHs(&PL_sv_yes);
12377 */
12378         PUTBACK;
12379         call_method("decode", G_SCALAR);
12380         SPAGAIN;
12381         uni = POPs;
12382         PUTBACK;
12383         s = SvPV(uni, len);
12384         if (s != SvPVX(sv)) {
12385             SvGROW(sv, len + 1);
12386             Move(s, SvPVX(sv), len, char);
12387             SvCUR_set(sv, len);
12388             SvPVX(sv)[len] = 0; 
12389         }
12390         FREETMPS;
12391         LEAVE;
12392         SvUTF8_on(sv);
12393         return SvPVX(sv);
12394     }
12395     return SvPOKp(sv) ? SvPVX(sv) : NULL;
12396 }
12397
12398 /*
12399 =for apidoc sv_cat_decode
12400
12401 The encoding is assumed to be an Encode object, the PV of the ssv is
12402 assumed to be octets in that encoding and decoding the input starts
12403 from the position which (PV + *offset) pointed to.  The dsv will be
12404 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
12405 when the string tstr appears in decoding output or the input ends on
12406 the PV of the ssv. The value which the offset points will be modified
12407 to the last input position on the ssv.
12408
12409 Returns TRUE if the terminator was found, else returns FALSE.
12410
12411 =cut */
12412
12413 bool
12414 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
12415                    SV *ssv, int *offset, char *tstr, int tlen)
12416 {
12417     dVAR;
12418     bool ret = FALSE;
12419     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
12420         SV *offsv;
12421         dSP;
12422         ENTER;
12423         SAVETMPS;
12424         save_re_context();
12425         PUSHMARK(sp);
12426         EXTEND(SP, 6);
12427         XPUSHs(encoding);
12428         XPUSHs(dsv);
12429         XPUSHs(ssv);
12430         XPUSHs(offsv = sv_2mortal(newSViv(*offset)));
12431         XPUSHs(sv_2mortal(newSVpvn(tstr, tlen)));
12432         PUTBACK;
12433         call_method("cat_decode", G_SCALAR);
12434         SPAGAIN;
12435         ret = SvTRUE(TOPs);
12436         *offset = SvIV(offsv);
12437         PUTBACK;
12438         FREETMPS;
12439         LEAVE;
12440     }
12441     else
12442         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
12443     return ret;
12444 }
12445
12446 /*
12447  * Local variables:
12448  * c-indentation-style: bsd
12449  * c-basic-offset: 4
12450  * indent-tabs-mode: t
12451  * End:
12452  *
12453  * ex: set ts=8 sts=4 sw=4 noet:
12454  */