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