3 * Copyright (c) 1991-2001, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8 * "I wonder what the Entish is for 'yes' and 'no'," he thought.
11 * This file contains the code that creates, manipulates and destroys
12 * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
13 * structure of an SV, so their creation and destruction is handled
14 * here; higher-level functions are in av.c, hv.c, and so on. Opcode
15 * level functions (eg. substr, split, join) for each of the types are
24 #define SV_CHECK_THINKFIRST(sv) if (SvTHINKFIRST(sv)) sv_force_normal(sv)
27 /* ============================================================================
29 =head1 Allocation and deallocation of SVs.
31 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct sv,
32 av, hv...) contains type and reference count information, as well as a
33 pointer to the body (struct xrv, xpv, xpviv...), which contains fields
34 specific to each type.
36 Normally, this allocation is done using arenas, which are approximately
37 1K chunks of memory parcelled up into N heads or bodies. The first slot
38 in each arena is reserved, and is used to hold a link to the next arena.
39 In the case of heads, the unused first slot also contains some flags and
40 a note of the number of slots. Snaked through each arena chain is a
41 linked list of free items; when this becomes empty, an extra arena is
42 allocated and divided up into N items which are threaded into the free
45 The following global variables are associated with arenas:
47 PL_sv_arenaroot pointer to list of SV arenas
48 PL_sv_root pointer to list of free SV structures
50 PL_foo_arenaroot pointer to list of foo arenas,
51 PL_foo_root pointer to list of free foo bodies
52 ... for foo in xiv, xnv, xrv, xpv etc.
54 Note that some of the larger and more rarely used body types (eg xpvio)
55 are not allocated using arenas, but are instead just malloc()/free()ed as
56 required. Also, if PURIFY is defined, arenas are abandoned altogether,
57 with all items individually malloc()ed. In addition, a few SV heads are
58 not allocated from an arena, but are instead directly created as static
59 or auto variables, eg PL_sv_undef.
61 The SV arena serves the secondary purpose of allowing still-live SVs
62 to be located and destroyed during final cleanup.
64 At the lowest level, the macros new_SV() and del_SV() grab and free
65 an SV head. (If debugging with -DD, del_SV() calls the function S_del_sv()
66 to return the SV to the free list with error checking.) new_SV() calls
67 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
68 SVs in the free list have their SvTYPE field set to all ones.
70 Similarly, there are macros new_XIV()/del_XIV(), new_XNV()/del_XNV() etc
71 that allocate and return individual body types. Normally these are mapped
72 to the arena-manipulating functions new_xiv()/del_xiv() etc, but may be
73 instead mapped directly to malloc()/free() if PURIFY is defined. The
74 new/del functions remove from, or add to, the appropriate PL_foo_root
75 list, and call more_xiv() etc to add a new arena if the list is empty.
77 At the time of very final cleanup, sv_free_arenas() is called from
78 perl_destruct() to physically free all the arenas allocated since the
79 start of the interpreter. Note that this also clears PL_he_arenaroot,
80 which is otherwise dealt with in hv.c.
82 Manipulation of any of the PL_*root pointers is protected by enclosing
83 LOCK_SV_MUTEX; ... UNLOCK_SV_MUTEX calls which should Do the Right Thing
84 if threads are enabled.
86 The function visit() scans the SV arenas list, and calls a specified
87 function for each SV it finds which is still live - ie which has an SvTYPE
88 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
89 following functions (specified as [function that calls visit()] / [function
90 called by visit() for each SV]):
92 sv_report_used() / do_report_used()
93 dump all remaining SVs (debugging aid)
95 sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
96 Attempt to free all objects pointed to by RVs,
97 and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
98 try to do the same for all objects indirectly
99 referenced by typeglobs too. Called once from
100 perl_destruct(), prior to calling sv_clean_all()
103 sv_clean_all() / do_clean_all()
104 SvREFCNT_dec(sv) each remaining SV, possibly
105 triggering an sv_free(). It also sets the
106 SVf_BREAK flag on the SV to indicate that the
107 refcnt has been artificially lowered, and thus
108 stopping sv_free() from giving spurious warnings
109 about SVs which unexpectedly have a refcnt
110 of zero. called repeatedly from perl_destruct()
111 until there are no SVs left.
115 Private API to rest of sv.c
119 new_XIV(), del_XIV(),
120 new_XNV(), del_XNV(),
125 sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
130 ============================================================================ */
135 * "A time to plant, and a time to uproot what was planted..."
138 #define plant_SV(p) \
140 SvANY(p) = (void *)PL_sv_root; \
141 SvFLAGS(p) = SVTYPEMASK; \
146 /* sv_mutex must be held while calling uproot_SV() */
147 #define uproot_SV(p) \
150 PL_sv_root = (SV*)SvANY(p); \
155 /* new_SV(): return a new, empty SV head */
171 /* del_SV(): return an empty SV head to the free list */
186 S_del_sv(pTHX_ SV *p)
193 for (sva = PL_sv_arenaroot; sva; sva = (SV *) SvANY(sva)) {
195 svend = &sva[SvREFCNT(sva)];
196 if (p >= sv && p < svend)
200 if (ckWARN_d(WARN_INTERNAL))
201 Perl_warner(aTHX_ WARN_INTERNAL,
202 "Attempt to free non-arena SV: 0x%"UVxf,
210 #else /* ! DEBUGGING */
212 #define del_SV(p) plant_SV(p)
214 #endif /* DEBUGGING */
218 =for apidoc sv_add_arena
220 Given a chunk of memory, link it to the head of the list of arenas,
221 and split it into a list of free SVs.
227 Perl_sv_add_arena(pTHX_ char *ptr, U32 size, U32 flags)
232 Zero(ptr, size, char);
234 /* The first SV in an arena isn't an SV. */
235 SvANY(sva) = (void *) PL_sv_arenaroot; /* ptr to next arena */
236 SvREFCNT(sva) = size / sizeof(SV); /* number of SV slots */
237 SvFLAGS(sva) = flags; /* FAKE if not to be freed */
239 PL_sv_arenaroot = sva;
240 PL_sv_root = sva + 1;
242 svend = &sva[SvREFCNT(sva) - 1];
245 SvANY(sv) = (void *)(SV*)(sv + 1);
246 SvFLAGS(sv) = SVTYPEMASK;
250 SvFLAGS(sv) = SVTYPEMASK;
253 /* make some more SVs by adding another arena */
255 /* sv_mutex must be held while calling more_sv() */
262 sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
263 PL_nice_chunk = Nullch;
264 PL_nice_chunk_size = 0;
267 char *chunk; /* must use New here to match call to */
268 New(704,chunk,1008,char); /* Safefree() in sv_free_arenas() */
269 sv_add_arena(chunk, 1008, 0);
275 /* visit(): call the named function for each non-free SV in the arenas. */
278 S_visit(pTHX_ SVFUNC_t f)
285 for (sva = PL_sv_arenaroot; sva; sva = (SV*)SvANY(sva)) {
286 svend = &sva[SvREFCNT(sva)];
287 for (sv = sva + 1; sv < svend; ++sv) {
288 if (SvTYPE(sv) != SVTYPEMASK && SvREFCNT(sv)) {
297 /* called by sv_report_used() for each live SV */
300 do_report_used(pTHXo_ SV *sv)
302 if (SvTYPE(sv) != SVTYPEMASK) {
303 PerlIO_printf(Perl_debug_log, "****\n");
309 =for apidoc sv_report_used
311 Dump the contents of all SVs not yet freed. (Debugging aid).
317 Perl_sv_report_used(pTHX)
319 visit(do_report_used);
322 /* called by sv_clean_objs() for each live SV */
325 do_clean_objs(pTHXo_ SV *sv)
329 if (SvROK(sv) && SvOBJECT(rv = SvRV(sv))) {
330 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(sv)));
342 /* XXX Might want to check arrays, etc. */
345 /* called by sv_clean_objs() for each live SV */
347 #ifndef DISABLE_DESTRUCTOR_KLUDGE
349 do_clean_named_objs(pTHXo_ SV *sv)
351 if (SvTYPE(sv) == SVt_PVGV && GvGP(sv)) {
352 if ( SvOBJECT(GvSV(sv)) ||
353 (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
354 (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
355 (GvIO(sv) && SvOBJECT(GvIO(sv))) ||
356 (GvCV(sv) && SvOBJECT(GvCV(sv))) )
358 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
366 =for apidoc sv_clean_objs
368 Attempt to destroy all objects not yet freed
374 Perl_sv_clean_objs(pTHX)
376 PL_in_clean_objs = TRUE;
377 visit(do_clean_objs);
378 #ifndef DISABLE_DESTRUCTOR_KLUDGE
379 /* some barnacles may yet remain, clinging to typeglobs */
380 visit(do_clean_named_objs);
382 PL_in_clean_objs = FALSE;
385 /* called by sv_clean_all() for each live SV */
388 do_clean_all(pTHXo_ SV *sv)
390 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
391 SvFLAGS(sv) |= SVf_BREAK;
396 =for apidoc sv_clean_all
398 Decrement the refcnt of each remaining SV, possibly triggering a
399 cleanup. This function may have to be called multiple times to free
400 SVs which are in complex self-referential hierarchies.
406 Perl_sv_clean_all(pTHX)
409 PL_in_clean_all = TRUE;
410 cleaned = visit(do_clean_all);
411 PL_in_clean_all = FALSE;
416 =for apidoc sv_free_arenas
418 Deallocate the memory used by all arenas. Note that all the individual SV
419 heads and bodies within the arenas must already have been freed.
425 Perl_sv_free_arenas(pTHX)
429 XPV *arena, *arenanext;
431 /* Free arenas here, but be careful about fake ones. (We assume
432 contiguity of the fake ones with the corresponding real ones.) */
434 for (sva = PL_sv_arenaroot; sva; sva = svanext) {
435 svanext = (SV*) SvANY(sva);
436 while (svanext && SvFAKE(svanext))
437 svanext = (SV*) SvANY(svanext);
440 Safefree((void *)sva);
443 for (arena = PL_xiv_arenaroot; arena; arena = arenanext) {
444 arenanext = (XPV*)arena->xpv_pv;
447 PL_xiv_arenaroot = 0;
449 for (arena = PL_xnv_arenaroot; arena; arena = arenanext) {
450 arenanext = (XPV*)arena->xpv_pv;
453 PL_xnv_arenaroot = 0;
455 for (arena = PL_xrv_arenaroot; arena; arena = arenanext) {
456 arenanext = (XPV*)arena->xpv_pv;
459 PL_xrv_arenaroot = 0;
461 for (arena = PL_xpv_arenaroot; arena; arena = arenanext) {
462 arenanext = (XPV*)arena->xpv_pv;
465 PL_xpv_arenaroot = 0;
467 for (arena = (XPV*)PL_xpviv_arenaroot; arena; arena = arenanext) {
468 arenanext = (XPV*)arena->xpv_pv;
471 PL_xpviv_arenaroot = 0;
473 for (arena = (XPV*)PL_xpvnv_arenaroot; arena; arena = arenanext) {
474 arenanext = (XPV*)arena->xpv_pv;
477 PL_xpvnv_arenaroot = 0;
479 for (arena = (XPV*)PL_xpvcv_arenaroot; arena; arena = arenanext) {
480 arenanext = (XPV*)arena->xpv_pv;
483 PL_xpvcv_arenaroot = 0;
485 for (arena = (XPV*)PL_xpvav_arenaroot; arena; arena = arenanext) {
486 arenanext = (XPV*)arena->xpv_pv;
489 PL_xpvav_arenaroot = 0;
491 for (arena = (XPV*)PL_xpvhv_arenaroot; arena; arena = arenanext) {
492 arenanext = (XPV*)arena->xpv_pv;
495 PL_xpvhv_arenaroot = 0;
497 for (arena = (XPV*)PL_xpvmg_arenaroot; arena; arena = arenanext) {
498 arenanext = (XPV*)arena->xpv_pv;
501 PL_xpvmg_arenaroot = 0;
503 for (arena = (XPV*)PL_xpvlv_arenaroot; arena; arena = arenanext) {
504 arenanext = (XPV*)arena->xpv_pv;
507 PL_xpvlv_arenaroot = 0;
509 for (arena = (XPV*)PL_xpvbm_arenaroot; arena; arena = arenanext) {
510 arenanext = (XPV*)arena->xpv_pv;
513 PL_xpvbm_arenaroot = 0;
515 for (arena = (XPV*)PL_he_arenaroot; arena; arena = arenanext) {
516 arenanext = (XPV*)arena->xpv_pv;
522 Safefree(PL_nice_chunk);
523 PL_nice_chunk = Nullch;
524 PL_nice_chunk_size = 0;
530 =for apidoc report_uninit
532 Print appropriate "Use of uninitialized variable" warning
538 Perl_report_uninit(pTHX)
541 Perl_warner(aTHX_ WARN_UNINITIALIZED, PL_warn_uninit,
542 " in ", PL_op_desc[PL_op->op_type]);
544 Perl_warner(aTHX_ WARN_UNINITIALIZED, PL_warn_uninit, "", "");
547 /* grab a new IV body from the free list, allocating more if necessary */
558 * See comment in more_xiv() -- RAM.
560 PL_xiv_root = *(IV**)xiv;
562 return (XPVIV*)((char*)xiv - STRUCT_OFFSET(XPVIV, xiv_iv));
565 /* return an IV body to the free list */
568 S_del_xiv(pTHX_ XPVIV *p)
570 IV* xiv = (IV*)((char*)(p) + STRUCT_OFFSET(XPVIV, xiv_iv));
572 *(IV**)xiv = PL_xiv_root;
577 /* allocate another arena's worth of IV bodies */
585 New(705, ptr, 1008/sizeof(XPV), XPV);
586 ptr->xpv_pv = (char*)PL_xiv_arenaroot; /* linked list of xiv arenas */
587 PL_xiv_arenaroot = ptr; /* to keep Purify happy */
590 xivend = &xiv[1008 / sizeof(IV) - 1];
591 xiv += (sizeof(XPV) - 1) / sizeof(IV) + 1; /* fudge by size of XPV */
593 while (xiv < xivend) {
594 *(IV**)xiv = (IV *)(xiv + 1);
600 /* grab a new NV body from the free list, allocating more if necessary */
610 PL_xnv_root = *(NV**)xnv;
612 return (XPVNV*)((char*)xnv - STRUCT_OFFSET(XPVNV, xnv_nv));
615 /* return an NV body to the free list */
618 S_del_xnv(pTHX_ XPVNV *p)
620 NV* xnv = (NV*)((char*)(p) + STRUCT_OFFSET(XPVNV, xnv_nv));
622 *(NV**)xnv = PL_xnv_root;
627 /* allocate another arena's worth of NV bodies */
635 New(711, ptr, 1008/sizeof(XPV), XPV);
636 ptr->xpv_pv = (char*)PL_xnv_arenaroot;
637 PL_xnv_arenaroot = ptr;
640 xnvend = &xnv[1008 / sizeof(NV) - 1];
641 xnv += (sizeof(XPVIV) - 1) / sizeof(NV) + 1; /* fudge by sizeof XPVIV */
643 while (xnv < xnvend) {
644 *(NV**)xnv = (NV*)(xnv + 1);
650 /* grab a new struct xrv from the free list, allocating more if necessary */
660 PL_xrv_root = (XRV*)xrv->xrv_rv;
665 /* return a struct xrv to the free list */
668 S_del_xrv(pTHX_ XRV *p)
671 p->xrv_rv = (SV*)PL_xrv_root;
676 /* allocate another arena's worth of struct xrv */
682 register XRV* xrvend;
684 New(712, ptr, 1008/sizeof(XPV), XPV);
685 ptr->xpv_pv = (char*)PL_xrv_arenaroot;
686 PL_xrv_arenaroot = ptr;
689 xrvend = &xrv[1008 / sizeof(XRV) - 1];
690 xrv += (sizeof(XPV) - 1) / sizeof(XRV) + 1;
692 while (xrv < xrvend) {
693 xrv->xrv_rv = (SV*)(xrv + 1);
699 /* grab a new struct xpv from the free list, allocating more if necessary */
709 PL_xpv_root = (XPV*)xpv->xpv_pv;
714 /* return a struct xpv to the free list */
717 S_del_xpv(pTHX_ XPV *p)
720 p->xpv_pv = (char*)PL_xpv_root;
725 /* allocate another arena's worth of struct xpv */
731 register XPV* xpvend;
732 New(713, xpv, 1008/sizeof(XPV), XPV);
733 xpv->xpv_pv = (char*)PL_xpv_arenaroot;
734 PL_xpv_arenaroot = xpv;
736 xpvend = &xpv[1008 / sizeof(XPV) - 1];
738 while (xpv < xpvend) {
739 xpv->xpv_pv = (char*)(xpv + 1);
745 /* grab a new struct xpviv from the free list, allocating more if necessary */
754 xpviv = PL_xpviv_root;
755 PL_xpviv_root = (XPVIV*)xpviv->xpv_pv;
760 /* return a struct xpviv to the free list */
763 S_del_xpviv(pTHX_ XPVIV *p)
766 p->xpv_pv = (char*)PL_xpviv_root;
771 /* allocate another arena's worth of struct xpviv */
776 register XPVIV* xpviv;
777 register XPVIV* xpvivend;
778 New(714, xpviv, 1008/sizeof(XPVIV), XPVIV);
779 xpviv->xpv_pv = (char*)PL_xpviv_arenaroot;
780 PL_xpviv_arenaroot = xpviv;
782 xpvivend = &xpviv[1008 / sizeof(XPVIV) - 1];
783 PL_xpviv_root = ++xpviv;
784 while (xpviv < xpvivend) {
785 xpviv->xpv_pv = (char*)(xpviv + 1);
791 /* grab a new struct xpvnv from the free list, allocating more if necessary */
800 xpvnv = PL_xpvnv_root;
801 PL_xpvnv_root = (XPVNV*)xpvnv->xpv_pv;
806 /* return a struct xpvnv to the free list */
809 S_del_xpvnv(pTHX_ XPVNV *p)
812 p->xpv_pv = (char*)PL_xpvnv_root;
817 /* allocate another arena's worth of struct xpvnv */
822 register XPVNV* xpvnv;
823 register XPVNV* xpvnvend;
824 New(715, xpvnv, 1008/sizeof(XPVNV), XPVNV);
825 xpvnv->xpv_pv = (char*)PL_xpvnv_arenaroot;
826 PL_xpvnv_arenaroot = xpvnv;
828 xpvnvend = &xpvnv[1008 / sizeof(XPVNV) - 1];
829 PL_xpvnv_root = ++xpvnv;
830 while (xpvnv < xpvnvend) {
831 xpvnv->xpv_pv = (char*)(xpvnv + 1);
837 /* grab a new struct xpvcv from the free list, allocating more if necessary */
846 xpvcv = PL_xpvcv_root;
847 PL_xpvcv_root = (XPVCV*)xpvcv->xpv_pv;
852 /* return a struct xpvcv to the free list */
855 S_del_xpvcv(pTHX_ XPVCV *p)
858 p->xpv_pv = (char*)PL_xpvcv_root;
863 /* allocate another arena's worth of struct xpvcv */
868 register XPVCV* xpvcv;
869 register XPVCV* xpvcvend;
870 New(716, xpvcv, 1008/sizeof(XPVCV), XPVCV);
871 xpvcv->xpv_pv = (char*)PL_xpvcv_arenaroot;
872 PL_xpvcv_arenaroot = xpvcv;
874 xpvcvend = &xpvcv[1008 / sizeof(XPVCV) - 1];
875 PL_xpvcv_root = ++xpvcv;
876 while (xpvcv < xpvcvend) {
877 xpvcv->xpv_pv = (char*)(xpvcv + 1);
883 /* grab a new struct xpvav from the free list, allocating more if necessary */
892 xpvav = PL_xpvav_root;
893 PL_xpvav_root = (XPVAV*)xpvav->xav_array;
898 /* return a struct xpvav to the free list */
901 S_del_xpvav(pTHX_ XPVAV *p)
904 p->xav_array = (char*)PL_xpvav_root;
909 /* allocate another arena's worth of struct xpvav */
914 register XPVAV* xpvav;
915 register XPVAV* xpvavend;
916 New(717, xpvav, 1008/sizeof(XPVAV), XPVAV);
917 xpvav->xav_array = (char*)PL_xpvav_arenaroot;
918 PL_xpvav_arenaroot = xpvav;
920 xpvavend = &xpvav[1008 / sizeof(XPVAV) - 1];
921 PL_xpvav_root = ++xpvav;
922 while (xpvav < xpvavend) {
923 xpvav->xav_array = (char*)(xpvav + 1);
926 xpvav->xav_array = 0;
929 /* grab a new struct xpvhv from the free list, allocating more if necessary */
938 xpvhv = PL_xpvhv_root;
939 PL_xpvhv_root = (XPVHV*)xpvhv->xhv_array;
944 /* return a struct xpvhv to the free list */
947 S_del_xpvhv(pTHX_ XPVHV *p)
950 p->xhv_array = (char*)PL_xpvhv_root;
955 /* allocate another arena's worth of struct xpvhv */
960 register XPVHV* xpvhv;
961 register XPVHV* xpvhvend;
962 New(718, xpvhv, 1008/sizeof(XPVHV), XPVHV);
963 xpvhv->xhv_array = (char*)PL_xpvhv_arenaroot;
964 PL_xpvhv_arenaroot = xpvhv;
966 xpvhvend = &xpvhv[1008 / sizeof(XPVHV) - 1];
967 PL_xpvhv_root = ++xpvhv;
968 while (xpvhv < xpvhvend) {
969 xpvhv->xhv_array = (char*)(xpvhv + 1);
972 xpvhv->xhv_array = 0;
975 /* grab a new struct xpvmg from the free list, allocating more if necessary */
984 xpvmg = PL_xpvmg_root;
985 PL_xpvmg_root = (XPVMG*)xpvmg->xpv_pv;
990 /* return a struct xpvmg to the free list */
993 S_del_xpvmg(pTHX_ XPVMG *p)
996 p->xpv_pv = (char*)PL_xpvmg_root;
1001 /* allocate another arena's worth of struct xpvmg */
1006 register XPVMG* xpvmg;
1007 register XPVMG* xpvmgend;
1008 New(719, xpvmg, 1008/sizeof(XPVMG), XPVMG);
1009 xpvmg->xpv_pv = (char*)PL_xpvmg_arenaroot;
1010 PL_xpvmg_arenaroot = xpvmg;
1012 xpvmgend = &xpvmg[1008 / sizeof(XPVMG) - 1];
1013 PL_xpvmg_root = ++xpvmg;
1014 while (xpvmg < xpvmgend) {
1015 xpvmg->xpv_pv = (char*)(xpvmg + 1);
1021 /* grab a new struct xpvlv from the free list, allocating more if necessary */
1030 xpvlv = PL_xpvlv_root;
1031 PL_xpvlv_root = (XPVLV*)xpvlv->xpv_pv;
1036 /* return a struct xpvlv to the free list */
1039 S_del_xpvlv(pTHX_ XPVLV *p)
1042 p->xpv_pv = (char*)PL_xpvlv_root;
1047 /* allocate another arena's worth of struct xpvlv */
1052 register XPVLV* xpvlv;
1053 register XPVLV* xpvlvend;
1054 New(720, xpvlv, 1008/sizeof(XPVLV), XPVLV);
1055 xpvlv->xpv_pv = (char*)PL_xpvlv_arenaroot;
1056 PL_xpvlv_arenaroot = xpvlv;
1058 xpvlvend = &xpvlv[1008 / sizeof(XPVLV) - 1];
1059 PL_xpvlv_root = ++xpvlv;
1060 while (xpvlv < xpvlvend) {
1061 xpvlv->xpv_pv = (char*)(xpvlv + 1);
1067 /* grab a new struct xpvbm from the free list, allocating more if necessary */
1076 xpvbm = PL_xpvbm_root;
1077 PL_xpvbm_root = (XPVBM*)xpvbm->xpv_pv;
1082 /* return a struct xpvbm to the free list */
1085 S_del_xpvbm(pTHX_ XPVBM *p)
1088 p->xpv_pv = (char*)PL_xpvbm_root;
1093 /* allocate another arena's worth of struct xpvbm */
1098 register XPVBM* xpvbm;
1099 register XPVBM* xpvbmend;
1100 New(721, xpvbm, 1008/sizeof(XPVBM), XPVBM);
1101 xpvbm->xpv_pv = (char*)PL_xpvbm_arenaroot;
1102 PL_xpvbm_arenaroot = xpvbm;
1104 xpvbmend = &xpvbm[1008 / sizeof(XPVBM) - 1];
1105 PL_xpvbm_root = ++xpvbm;
1106 while (xpvbm < xpvbmend) {
1107 xpvbm->xpv_pv = (char*)(xpvbm + 1);
1114 # define my_safemalloc(s) (void*)safexmalloc(717,s)
1115 # define my_safefree(p) safexfree((char*)p)
1117 # define my_safemalloc(s) (void*)safemalloc(s)
1118 # define my_safefree(p) safefree((char*)p)
1123 #define new_XIV() my_safemalloc(sizeof(XPVIV))
1124 #define del_XIV(p) my_safefree(p)
1126 #define new_XNV() my_safemalloc(sizeof(XPVNV))
1127 #define del_XNV(p) my_safefree(p)
1129 #define new_XRV() my_safemalloc(sizeof(XRV))
1130 #define del_XRV(p) my_safefree(p)
1132 #define new_XPV() my_safemalloc(sizeof(XPV))
1133 #define del_XPV(p) my_safefree(p)
1135 #define new_XPVIV() my_safemalloc(sizeof(XPVIV))
1136 #define del_XPVIV(p) my_safefree(p)
1138 #define new_XPVNV() my_safemalloc(sizeof(XPVNV))
1139 #define del_XPVNV(p) my_safefree(p)
1141 #define new_XPVCV() my_safemalloc(sizeof(XPVCV))
1142 #define del_XPVCV(p) my_safefree(p)
1144 #define new_XPVAV() my_safemalloc(sizeof(XPVAV))
1145 #define del_XPVAV(p) my_safefree(p)
1147 #define new_XPVHV() my_safemalloc(sizeof(XPVHV))
1148 #define del_XPVHV(p) my_safefree(p)
1150 #define new_XPVMG() my_safemalloc(sizeof(XPVMG))
1151 #define del_XPVMG(p) my_safefree(p)
1153 #define new_XPVLV() my_safemalloc(sizeof(XPVLV))
1154 #define del_XPVLV(p) my_safefree(p)
1156 #define new_XPVBM() my_safemalloc(sizeof(XPVBM))
1157 #define del_XPVBM(p) my_safefree(p)
1161 #define new_XIV() (void*)new_xiv()
1162 #define del_XIV(p) del_xiv((XPVIV*) p)
1164 #define new_XNV() (void*)new_xnv()
1165 #define del_XNV(p) del_xnv((XPVNV*) p)
1167 #define new_XRV() (void*)new_xrv()
1168 #define del_XRV(p) del_xrv((XRV*) p)
1170 #define new_XPV() (void*)new_xpv()
1171 #define del_XPV(p) del_xpv((XPV *)p)
1173 #define new_XPVIV() (void*)new_xpviv()
1174 #define del_XPVIV(p) del_xpviv((XPVIV *)p)
1176 #define new_XPVNV() (void*)new_xpvnv()
1177 #define del_XPVNV(p) del_xpvnv((XPVNV *)p)
1179 #define new_XPVCV() (void*)new_xpvcv()
1180 #define del_XPVCV(p) del_xpvcv((XPVCV *)p)
1182 #define new_XPVAV() (void*)new_xpvav()
1183 #define del_XPVAV(p) del_xpvav((XPVAV *)p)
1185 #define new_XPVHV() (void*)new_xpvhv()
1186 #define del_XPVHV(p) del_xpvhv((XPVHV *)p)
1188 #define new_XPVMG() (void*)new_xpvmg()
1189 #define del_XPVMG(p) del_xpvmg((XPVMG *)p)
1191 #define new_XPVLV() (void*)new_xpvlv()
1192 #define del_XPVLV(p) del_xpvlv((XPVLV *)p)
1194 #define new_XPVBM() (void*)new_xpvbm()
1195 #define del_XPVBM(p) del_xpvbm((XPVBM *)p)
1199 #define new_XPVGV() my_safemalloc(sizeof(XPVGV))
1200 #define del_XPVGV(p) my_safefree(p)
1202 #define new_XPVFM() my_safemalloc(sizeof(XPVFM))
1203 #define del_XPVFM(p) my_safefree(p)
1205 #define new_XPVIO() my_safemalloc(sizeof(XPVIO))
1206 #define del_XPVIO(p) my_safefree(p)
1209 =for apidoc sv_upgrade
1211 Upgrade an SV to a more complex form. Generally adds a new body type to the
1212 SV, then copies across as much information as possible from the old body.
1213 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1219 Perl_sv_upgrade(pTHX_ register SV *sv, U32 mt)
1229 if (mt != SVt_PV && SvREADONLY(sv) && SvFAKE(sv)) {
1230 sv_force_normal(sv);
1233 if (SvTYPE(sv) == mt)
1237 (void)SvOOK_off(sv);
1239 switch (SvTYPE(sv)) {
1260 else if (mt < SVt_PVIV)
1277 pv = (char*)SvRV(sv);
1297 else if (mt == SVt_NV)
1308 del_XPVIV(SvANY(sv));
1318 del_XPVNV(SvANY(sv));
1326 magic = SvMAGIC(sv);
1327 stash = SvSTASH(sv);
1328 del_XPVMG(SvANY(sv));
1331 Perl_croak(aTHX_ "Can't upgrade that kind of scalar");
1336 Perl_croak(aTHX_ "Can't upgrade to undef");
1338 SvANY(sv) = new_XIV();
1342 SvANY(sv) = new_XNV();
1346 SvANY(sv) = new_XRV();
1350 SvANY(sv) = new_XPV();
1356 SvANY(sv) = new_XPVIV();
1366 SvANY(sv) = new_XPVNV();
1374 SvANY(sv) = new_XPVMG();
1380 SvMAGIC(sv) = magic;
1381 SvSTASH(sv) = stash;
1384 SvANY(sv) = new_XPVLV();
1390 SvMAGIC(sv) = magic;
1391 SvSTASH(sv) = stash;
1398 SvANY(sv) = new_XPVAV();
1406 SvMAGIC(sv) = magic;
1407 SvSTASH(sv) = stash;
1413 SvANY(sv) = new_XPVHV();
1421 SvMAGIC(sv) = magic;
1422 SvSTASH(sv) = stash;
1429 SvANY(sv) = new_XPVCV();
1430 Zero(SvANY(sv), 1, XPVCV);
1436 SvMAGIC(sv) = magic;
1437 SvSTASH(sv) = stash;
1440 SvANY(sv) = new_XPVGV();
1446 SvMAGIC(sv) = magic;
1447 SvSTASH(sv) = stash;
1455 SvANY(sv) = new_XPVBM();
1461 SvMAGIC(sv) = magic;
1462 SvSTASH(sv) = stash;
1468 SvANY(sv) = new_XPVFM();
1469 Zero(SvANY(sv), 1, XPVFM);
1475 SvMAGIC(sv) = magic;
1476 SvSTASH(sv) = stash;
1479 SvANY(sv) = new_XPVIO();
1480 Zero(SvANY(sv), 1, XPVIO);
1486 SvMAGIC(sv) = magic;
1487 SvSTASH(sv) = stash;
1488 IoPAGE_LEN(sv) = 60;
1491 SvFLAGS(sv) &= ~SVTYPEMASK;
1497 =for apidoc sv_backoff
1499 Remove any string offset. You should normally use the C<SvOOK_off> macro
1506 Perl_sv_backoff(pTHX_ register SV *sv)
1510 char *s = SvPVX(sv);
1511 SvLEN(sv) += SvIVX(sv);
1512 SvPVX(sv) -= SvIVX(sv);
1514 Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1516 SvFLAGS(sv) &= ~SVf_OOK;
1523 Expands the character buffer in the SV. If necessary, uses C<sv_unref> and
1524 upgrades the SV to C<SVt_PV>. Returns a pointer to the character buffer.
1525 Use the C<SvGROW> wrapper instead.
1531 Perl_sv_grow(pTHX_ register SV *sv, register STRLEN newlen)
1535 #ifdef HAS_64K_LIMIT
1536 if (newlen >= 0x10000) {
1537 PerlIO_printf(Perl_debug_log,
1538 "Allocation too large: %"UVxf"\n", (UV)newlen);
1541 #endif /* HAS_64K_LIMIT */
1544 if (SvTYPE(sv) < SVt_PV) {
1545 sv_upgrade(sv, SVt_PV);
1548 else if (SvOOK(sv)) { /* pv is offset? */
1551 if (newlen > SvLEN(sv))
1552 newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1553 #ifdef HAS_64K_LIMIT
1554 if (newlen >= 0x10000)
1560 if (newlen > SvLEN(sv)) { /* need more room? */
1561 if (SvLEN(sv) && s) {
1562 #if defined(MYMALLOC) && !defined(LEAKTEST)
1563 STRLEN l = malloced_size((void*)SvPVX(sv));
1569 Renew(s,newlen,char);
1572 New(703,s,newlen,char);
1574 SvLEN_set(sv, newlen);
1580 =for apidoc sv_setiv
1582 Copies an integer into the given SV, upgrading first if necessary.
1583 Does not handle 'set' magic. See also C<sv_setiv_mg>.
1589 Perl_sv_setiv(pTHX_ register SV *sv, IV i)
1591 SV_CHECK_THINKFIRST(sv);
1592 switch (SvTYPE(sv)) {
1594 sv_upgrade(sv, SVt_IV);
1597 sv_upgrade(sv, SVt_PVNV);
1601 sv_upgrade(sv, SVt_PVIV);
1610 Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1611 PL_op_desc[PL_op->op_type]);
1613 (void)SvIOK_only(sv); /* validate number */
1619 =for apidoc sv_setiv_mg
1621 Like C<sv_setiv>, but also handles 'set' magic.
1627 Perl_sv_setiv_mg(pTHX_ register SV *sv, IV i)
1634 =for apidoc sv_setuv
1636 Copies an unsigned integer into the given SV, upgrading first if necessary.
1637 Does not handle 'set' magic. See also C<sv_setuv_mg>.
1643 Perl_sv_setuv(pTHX_ register SV *sv, UV u)
1645 /* With these two if statements:
1646 u=1.49 s=0.52 cu=72.49 cs=10.64 scripts=270 tests=20865
1649 u=1.35 s=0.47 cu=73.45 cs=11.43 scripts=270 tests=20865
1651 If you wish to remove them, please benchmark to see what the effect is
1653 if (u <= (UV)IV_MAX) {
1654 sv_setiv(sv, (IV)u);
1663 =for apidoc sv_setuv_mg
1665 Like C<sv_setuv>, but also handles 'set' magic.
1671 Perl_sv_setuv_mg(pTHX_ register SV *sv, UV u)
1673 /* With these two if statements:
1674 u=1.49 s=0.52 cu=72.49 cs=10.64 scripts=270 tests=20865
1677 u=1.35 s=0.47 cu=73.45 cs=11.43 scripts=270 tests=20865
1679 If you wish to remove them, please benchmark to see what the effect is
1681 if (u <= (UV)IV_MAX) {
1682 sv_setiv(sv, (IV)u);
1692 =for apidoc sv_setnv
1694 Copies a double into the given SV, upgrading first if necessary.
1695 Does not handle 'set' magic. See also C<sv_setnv_mg>.
1701 Perl_sv_setnv(pTHX_ register SV *sv, NV num)
1703 SV_CHECK_THINKFIRST(sv);
1704 switch (SvTYPE(sv)) {
1707 sv_upgrade(sv, SVt_NV);
1712 sv_upgrade(sv, SVt_PVNV);
1721 Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1722 PL_op_name[PL_op->op_type]);
1725 (void)SvNOK_only(sv); /* validate number */
1730 =for apidoc sv_setnv_mg
1732 Like C<sv_setnv>, but also handles 'set' magic.
1738 Perl_sv_setnv_mg(pTHX_ register SV *sv, NV num)
1744 /* Print an "isn't numeric" warning, using a cleaned-up,
1745 * printable version of the offending string
1749 S_not_a_number(pTHX_ SV *sv)
1753 char *limit = tmpbuf + sizeof(tmpbuf) - 8;
1754 /* each *s can expand to 4 chars + "...\0",
1755 i.e. need room for 8 chars */
1758 for (s = SvPVX(sv), end = s + SvCUR(sv); s < end && d < limit; s++) {
1760 if (ch & 128 && !isPRINT_LC(ch)) {
1769 else if (ch == '\r') {
1773 else if (ch == '\f') {
1777 else if (ch == '\\') {
1781 else if (ch == '\0') {
1785 else if (isPRINT_LC(ch))
1800 Perl_warner(aTHX_ WARN_NUMERIC,
1801 "Argument \"%s\" isn't numeric in %s", tmpbuf,
1802 PL_op_desc[PL_op->op_type]);
1804 Perl_warner(aTHX_ WARN_NUMERIC,
1805 "Argument \"%s\" isn't numeric", tmpbuf);
1809 =for apidoc looks_like_number
1811 Test if the content of an SV looks like a number (or is a number).
1812 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1813 non-numeric warning), even if your atof() doesn't grok them.
1819 Perl_looks_like_number(pTHX_ SV *sv)
1821 register char *sbegin;
1828 else if (SvPOKp(sv))
1829 sbegin = SvPV(sv, len);
1831 return 1; /* Historic. Wrong? */
1832 return grok_number(sbegin, len, NULL);
1835 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1836 until proven guilty, assume that things are not that bad... */
1841 As 64 bit platforms often have an NV that doesn't preserve all bits of
1842 an IV (an assumption perl has been based on to date) it becomes necessary
1843 to remove the assumption that the NV always carries enough precision to
1844 recreate the IV whenever needed, and that the NV is the canonical form.
1845 Instead, IV/UV and NV need to be given equal rights. So as to not lose
1846 precision as a side effect of conversion (which would lead to insanity
1847 and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1848 1) to distinguish between IV/UV/NV slots that have cached a valid
1849 conversion where precision was lost and IV/UV/NV slots that have a
1850 valid conversion which has lost no precision
1851 2) to ensure that if a numeric conversion to one form is requested that
1852 would lose precision, the precise conversion (or differently
1853 imprecise conversion) is also performed and cached, to prevent
1854 requests for different numeric formats on the same SV causing
1855 lossy conversion chains. (lossless conversion chains are perfectly
1860 SvIOKp is true if the IV slot contains a valid value
1861 SvIOK is true only if the IV value is accurate (UV if SvIOK_UV true)
1862 SvNOKp is true if the NV slot contains a valid value
1863 SvNOK is true only if the NV value is accurate
1866 while converting from PV to NV, check to see if converting that NV to an
1867 IV(or UV) would lose accuracy over a direct conversion from PV to
1868 IV(or UV). If it would, cache both conversions, return NV, but mark
1869 SV as IOK NOKp (ie not NOK).
1871 While converting from PV to IV, check to see if converting that IV to an
1872 NV would lose accuracy over a direct conversion from PV to NV. If it
1873 would, cache both conversions, flag similarly.
1875 Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1876 correctly because if IV & NV were set NV *always* overruled.
1877 Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1878 changes - now IV and NV together means that the two are interchangeable:
1879 SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1881 The benefit of this is that operations such as pp_add know that if
1882 SvIOK is true for both left and right operands, then integer addition
1883 can be used instead of floating point (for cases where the result won't
1884 overflow). Before, floating point was always used, which could lead to
1885 loss of precision compared with integer addition.
1887 * making IV and NV equal status should make maths accurate on 64 bit
1889 * may speed up maths somewhat if pp_add and friends start to use
1890 integers when possible instead of fp. (Hopefully the overhead in
1891 looking for SvIOK and checking for overflow will not outweigh the
1892 fp to integer speedup)
1893 * will slow down integer operations (callers of SvIV) on "inaccurate"
1894 values, as the change from SvIOK to SvIOKp will cause a call into
1895 sv_2iv each time rather than a macro access direct to the IV slot
1896 * should speed up number->string conversion on integers as IV is
1897 favoured when IV and NV are equally accurate
1899 ####################################################################
1900 You had better be using SvIOK_notUV if you want an IV for arithmetic:
1901 SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1902 On the other hand, SvUOK is true iff UV.
1903 ####################################################################
1905 Your mileage will vary depending your CPU's relative fp to integer
1909 #ifndef NV_PRESERVES_UV
1910 # define IS_NUMBER_UNDERFLOW_IV 1
1911 # define IS_NUMBER_UNDERFLOW_UV 2
1912 # define IS_NUMBER_IV_AND_UV 2
1913 # define IS_NUMBER_OVERFLOW_IV 4
1914 # define IS_NUMBER_OVERFLOW_UV 5
1916 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1918 /* For sv_2nv these three cases are "SvNOK and don't bother casting" */
1920 S_sv_2iuv_non_preserve(pTHX_ register SV *sv, I32 numtype)
1922 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%"UVxf" NV=%g inttype=%"UVXf"\n", SvPVX(sv), SvIVX(sv), SvNVX(sv), (UV)numtype));
1923 if (SvNVX(sv) < (NV)IV_MIN) {
1924 (void)SvIOKp_on(sv);
1927 return IS_NUMBER_UNDERFLOW_IV;
1929 if (SvNVX(sv) > (NV)UV_MAX) {
1930 (void)SvIOKp_on(sv);
1934 return IS_NUMBER_OVERFLOW_UV;
1936 (void)SvIOKp_on(sv);
1938 /* Can't use strtol etc to convert this string. (See truth table in
1940 if (SvNVX(sv) <= (UV)IV_MAX) {
1941 SvIVX(sv) = I_V(SvNVX(sv));
1942 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1943 SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1945 /* Integer is imprecise. NOK, IOKp */
1947 return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1950 SvUVX(sv) = U_V(SvNVX(sv));
1951 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1952 if (SvUVX(sv) == UV_MAX) {
1953 /* As we know that NVs don't preserve UVs, UV_MAX cannot
1954 possibly be preserved by NV. Hence, it must be overflow.
1956 return IS_NUMBER_OVERFLOW_UV;
1958 SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1960 /* Integer is imprecise. NOK, IOKp */
1962 return IS_NUMBER_OVERFLOW_IV;
1964 #endif /* !NV_PRESERVES_UV*/
1969 Return the integer value of an SV, doing any necessary string conversion,
1970 magic etc. Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
1976 Perl_sv_2iv(pTHX_ register SV *sv)
1980 if (SvGMAGICAL(sv)) {
1985 return I_V(SvNVX(sv));
1987 if (SvPOKp(sv) && SvLEN(sv))
1990 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
1991 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
1997 if (SvTHINKFIRST(sv)) {
2000 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
2001 (SvTYPE(tmpstr) != SVt_RV || (SvRV(tmpstr) != SvRV(sv))))
2002 return SvIV(tmpstr);
2003 return PTR2IV(SvRV(sv));
2005 if (SvREADONLY(sv) && SvFAKE(sv)) {
2006 sv_force_normal(sv);
2008 if (SvREADONLY(sv) && !SvOK(sv)) {
2009 if (ckWARN(WARN_UNINITIALIZED))
2016 return (IV)(SvUVX(sv));
2023 /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2024 * without also getting a cached IV/UV from it at the same time
2025 * (ie PV->NV conversion should detect loss of accuracy and cache
2026 * IV or UV at same time to avoid this. NWC */
2028 if (SvTYPE(sv) == SVt_NV)
2029 sv_upgrade(sv, SVt_PVNV);
2031 (void)SvIOKp_on(sv); /* Must do this first, to clear any SvOOK */
2032 /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2033 certainly cast into the IV range at IV_MAX, whereas the correct
2034 answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2036 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2037 SvIVX(sv) = I_V(SvNVX(sv));
2038 if (SvNVX(sv) == (NV) SvIVX(sv)
2039 #ifndef NV_PRESERVES_UV
2040 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2041 (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2042 /* Don't flag it as "accurately an integer" if the number
2043 came from a (by definition imprecise) NV operation, and
2044 we're outside the range of NV integer precision */
2047 SvIOK_on(sv); /* Can this go wrong with rounding? NWC */
2048 DEBUG_c(PerlIO_printf(Perl_debug_log,
2049 "0x%"UVxf" iv(%g => %"IVdf") (precise)\n",
2055 /* IV not precise. No need to convert from PV, as NV
2056 conversion would already have cached IV if it detected
2057 that PV->IV would be better than PV->NV->IV
2058 flags already correct - don't set public IOK. */
2059 DEBUG_c(PerlIO_printf(Perl_debug_log,
2060 "0x%"UVxf" iv(%g => %"IVdf") (imprecise)\n",
2065 /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2066 but the cast (NV)IV_MIN rounds to a the value less (more
2067 negative) than IV_MIN which happens to be equal to SvNVX ??
2068 Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2069 NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2070 (NV)UVX == NVX are both true, but the values differ. :-(
2071 Hopefully for 2s complement IV_MIN is something like
2072 0x8000000000000000 which will be exact. NWC */
2075 SvUVX(sv) = U_V(SvNVX(sv));
2077 (SvNVX(sv) == (NV) SvUVX(sv))
2078 #ifndef NV_PRESERVES_UV
2079 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2080 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2081 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2082 /* Don't flag it as "accurately an integer" if the number
2083 came from a (by definition imprecise) NV operation, and
2084 we're outside the range of NV integer precision */
2090 DEBUG_c(PerlIO_printf(Perl_debug_log,
2091 "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2095 return (IV)SvUVX(sv);
2098 else if (SvPOKp(sv) && SvLEN(sv)) {
2100 int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2101 /* We want to avoid a possible problem when we cache an IV which
2102 may be later translated to an NV, and the resulting NV is not
2103 the same as the direct translation of the initial string
2104 (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2105 be careful to ensure that the value with the .456 is around if the
2106 NV value is requested in the future).
2108 This means that if we cache such an IV, we need to cache the
2109 NV as well. Moreover, we trade speed for space, and do not
2110 cache the NV if we are sure it's not needed.
2113 /* SVt_PVNV is one higher than SVt_PVIV, hence this order */
2114 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2115 == IS_NUMBER_IN_UV) {
2116 /* It's definitely an integer, only upgrade to PVIV */
2117 if (SvTYPE(sv) < SVt_PVIV)
2118 sv_upgrade(sv, SVt_PVIV);
2120 } else if (SvTYPE(sv) < SVt_PVNV)
2121 sv_upgrade(sv, SVt_PVNV);
2123 /* If NV preserves UV then we only use the UV value if we know that
2124 we aren't going to call atof() below. If NVs don't preserve UVs
2125 then the value returned may have more precision than atof() will
2126 return, even though value isn't perfectly accurate. */
2127 if ((numtype & (IS_NUMBER_IN_UV
2128 #ifdef NV_PRESERVES_UV
2131 )) == IS_NUMBER_IN_UV) {
2132 /* This won't turn off the public IOK flag if it was set above */
2133 (void)SvIOKp_on(sv);
2135 if (!(numtype & IS_NUMBER_NEG)) {
2137 if (value <= (UV)IV_MAX) {
2138 SvIVX(sv) = (IV)value;
2144 /* 2s complement assumption */
2145 if (value <= (UV)IV_MIN) {
2146 SvIVX(sv) = -(IV)value;
2148 /* Too negative for an IV. This is a double upgrade, but
2149 I'm assuming it will be be rare. */
2150 if (SvTYPE(sv) < SVt_PVNV)
2151 sv_upgrade(sv, SVt_PVNV);
2155 SvNVX(sv) = -(NV)value;
2160 /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2161 will be in the previous block to set the IV slot, and the next
2162 block to set the NV slot. So no else here. */
2164 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2165 != IS_NUMBER_IN_UV) {
2166 /* It wasn't an (integer that doesn't overflow the UV). */
2167 SvNVX(sv) = Atof(SvPVX(sv));
2169 if (! numtype && ckWARN(WARN_NUMERIC))
2172 #if defined(USE_LONG_DOUBLE)
2173 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2174 PTR2UV(sv), SvNVX(sv)));
2176 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%g)\n",
2177 PTR2UV(sv), SvNVX(sv)));
2181 #ifdef NV_PRESERVES_UV
2182 (void)SvIOKp_on(sv);
2184 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2185 SvIVX(sv) = I_V(SvNVX(sv));
2186 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2189 /* Integer is imprecise. NOK, IOKp */
2191 /* UV will not work better than IV */
2193 if (SvNVX(sv) > (NV)UV_MAX) {
2195 /* Integer is inaccurate. NOK, IOKp, is UV */
2199 SvUVX(sv) = U_V(SvNVX(sv));
2200 /* 0xFFFFFFFFFFFFFFFF not an issue in here */
2201 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2205 /* Integer is imprecise. NOK, IOKp, is UV */
2211 #else /* NV_PRESERVES_UV */
2212 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2213 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2214 /* The IV slot will have been set from value returned by
2215 grok_number above. The NV slot has just been set using
2218 assert (SvIOKp(sv));
2220 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2221 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2222 /* Small enough to preserve all bits. */
2223 (void)SvIOKp_on(sv);
2225 SvIVX(sv) = I_V(SvNVX(sv));
2226 if ((NV)(SvIVX(sv)) == SvNVX(sv))
2228 /* Assumption: first non-preserved integer is < IV_MAX,
2229 this NV is in the preserved range, therefore: */
2230 if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2232 Perl_croak(aTHX_ "sv_2iv assumed (U_V(fabs(SvNVX(sv))) < (UV)IV_MAX) but SvNVX(sv)=%g U_V is 0x%"UVxf", IV_MAX is 0x%"UVxf"\n", SvNVX(sv), U_V(SvNVX(sv)), (UV)IV_MAX);
2236 0 0 already failed to read UV.
2237 0 1 already failed to read UV.
2238 1 0 you won't get here in this case. IV/UV
2239 slot set, public IOK, Atof() unneeded.
2240 1 1 already read UV.
2241 so there's no point in sv_2iuv_non_preserve() attempting
2242 to use atol, strtol, strtoul etc. */
2243 if (sv_2iuv_non_preserve (sv, numtype)
2244 >= IS_NUMBER_OVERFLOW_IV)
2248 #endif /* NV_PRESERVES_UV */
2251 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
2253 if (SvTYPE(sv) < SVt_IV)
2254 /* Typically the caller expects that sv_any is not NULL now. */
2255 sv_upgrade(sv, SVt_IV);
2258 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2259 PTR2UV(sv),SvIVX(sv)));
2260 return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2266 Return the unsigned integer value of an SV, doing any necessary string
2267 conversion, magic etc. Normally used via the C<SvUV(sv)> and C<SvUVx(sv)>
2274 Perl_sv_2uv(pTHX_ register SV *sv)
2278 if (SvGMAGICAL(sv)) {
2283 return U_V(SvNVX(sv));
2284 if (SvPOKp(sv) && SvLEN(sv))
2287 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2288 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
2294 if (SvTHINKFIRST(sv)) {
2297 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
2298 (SvTYPE(tmpstr) != SVt_RV || (SvRV(tmpstr) != SvRV(sv))))
2299 return SvUV(tmpstr);
2300 return PTR2UV(SvRV(sv));
2302 if (SvREADONLY(sv) && SvFAKE(sv)) {
2303 sv_force_normal(sv);
2305 if (SvREADONLY(sv) && !SvOK(sv)) {
2306 if (ckWARN(WARN_UNINITIALIZED))
2316 return (UV)SvIVX(sv);
2320 /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2321 * without also getting a cached IV/UV from it at the same time
2322 * (ie PV->NV conversion should detect loss of accuracy and cache
2323 * IV or UV at same time to avoid this. */
2324 /* IV-over-UV optimisation - choose to cache IV if possible */
2326 if (SvTYPE(sv) == SVt_NV)
2327 sv_upgrade(sv, SVt_PVNV);
2329 (void)SvIOKp_on(sv); /* Must do this first, to clear any SvOOK */
2330 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2331 SvIVX(sv) = I_V(SvNVX(sv));
2332 if (SvNVX(sv) == (NV) SvIVX(sv)
2333 #ifndef NV_PRESERVES_UV
2334 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2335 (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2336 /* Don't flag it as "accurately an integer" if the number
2337 came from a (by definition imprecise) NV operation, and
2338 we're outside the range of NV integer precision */
2341 SvIOK_on(sv); /* Can this go wrong with rounding? NWC */
2342 DEBUG_c(PerlIO_printf(Perl_debug_log,
2343 "0x%"UVxf" uv(%g => %"IVdf") (precise)\n",
2349 /* IV not precise. No need to convert from PV, as NV
2350 conversion would already have cached IV if it detected
2351 that PV->IV would be better than PV->NV->IV
2352 flags already correct - don't set public IOK. */
2353 DEBUG_c(PerlIO_printf(Perl_debug_log,
2354 "0x%"UVxf" uv(%g => %"IVdf") (imprecise)\n",
2359 /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2360 but the cast (NV)IV_MIN rounds to a the value less (more
2361 negative) than IV_MIN which happens to be equal to SvNVX ??
2362 Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2363 NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2364 (NV)UVX == NVX are both true, but the values differ. :-(
2365 Hopefully for 2s complement IV_MIN is something like
2366 0x8000000000000000 which will be exact. NWC */
2369 SvUVX(sv) = U_V(SvNVX(sv));
2371 (SvNVX(sv) == (NV) SvUVX(sv))
2372 #ifndef NV_PRESERVES_UV
2373 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2374 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2375 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2376 /* Don't flag it as "accurately an integer" if the number
2377 came from a (by definition imprecise) NV operation, and
2378 we're outside the range of NV integer precision */
2383 DEBUG_c(PerlIO_printf(Perl_debug_log,
2384 "0x%"UVxf" 2uv(%"UVuf" => %"IVdf") (as unsigned)\n",
2390 else if (SvPOKp(sv) && SvLEN(sv)) {
2392 int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2394 /* We want to avoid a possible problem when we cache a UV which
2395 may be later translated to an NV, and the resulting NV is not
2396 the translation of the initial data.
2398 This means that if we cache such a UV, we need to cache the
2399 NV as well. Moreover, we trade speed for space, and do not
2400 cache the NV if not needed.
2403 /* SVt_PVNV is one higher than SVt_PVIV, hence this order */
2404 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2405 == IS_NUMBER_IN_UV) {
2406 /* It's definitely an integer, only upgrade to PVIV */
2407 if (SvTYPE(sv) < SVt_PVIV)
2408 sv_upgrade(sv, SVt_PVIV);
2410 } else if (SvTYPE(sv) < SVt_PVNV)
2411 sv_upgrade(sv, SVt_PVNV);
2413 /* If NV preserves UV then we only use the UV value if we know that
2414 we aren't going to call atof() below. If NVs don't preserve UVs
2415 then the value returned may have more precision than atof() will
2416 return, even though it isn't accurate. */
2417 if ((numtype & (IS_NUMBER_IN_UV
2418 #ifdef NV_PRESERVES_UV
2421 )) == IS_NUMBER_IN_UV) {
2422 /* This won't turn off the public IOK flag if it was set above */
2423 (void)SvIOKp_on(sv);
2425 if (!(numtype & IS_NUMBER_NEG)) {
2427 if (value <= (UV)IV_MAX) {
2428 SvIVX(sv) = (IV)value;
2430 /* it didn't overflow, and it was positive. */
2435 /* 2s complement assumption */
2436 if (value <= (UV)IV_MIN) {
2437 SvIVX(sv) = -(IV)value;
2439 /* Too negative for an IV. This is a double upgrade, but
2440 I'm assuming it will be be rare. */
2441 if (SvTYPE(sv) < SVt_PVNV)
2442 sv_upgrade(sv, SVt_PVNV);
2446 SvNVX(sv) = -(NV)value;
2452 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2453 != IS_NUMBER_IN_UV) {
2454 /* It wasn't an integer, or it overflowed the UV. */
2455 SvNVX(sv) = Atof(SvPVX(sv));
2457 if (! numtype && ckWARN(WARN_NUMERIC))
2460 #if defined(USE_LONG_DOUBLE)
2461 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%" PERL_PRIgldbl ")\n",
2462 PTR2UV(sv), SvNVX(sv)));
2464 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%g)\n",
2465 PTR2UV(sv), SvNVX(sv)));
2468 #ifdef NV_PRESERVES_UV
2469 (void)SvIOKp_on(sv);
2471 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2472 SvIVX(sv) = I_V(SvNVX(sv));
2473 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2476 /* Integer is imprecise. NOK, IOKp */
2478 /* UV will not work better than IV */
2480 if (SvNVX(sv) > (NV)UV_MAX) {
2482 /* Integer is inaccurate. NOK, IOKp, is UV */
2486 SvUVX(sv) = U_V(SvNVX(sv));
2487 /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2488 NV preservse UV so can do correct comparison. */
2489 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2493 /* Integer is imprecise. NOK, IOKp, is UV */
2498 #else /* NV_PRESERVES_UV */
2499 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2500 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2501 /* The UV slot will have been set from value returned by
2502 grok_number above. The NV slot has just been set using
2505 assert (SvIOKp(sv));
2507 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2508 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2509 /* Small enough to preserve all bits. */
2510 (void)SvIOKp_on(sv);
2512 SvIVX(sv) = I_V(SvNVX(sv));
2513 if ((NV)(SvIVX(sv)) == SvNVX(sv))
2515 /* Assumption: first non-preserved integer is < IV_MAX,
2516 this NV is in the preserved range, therefore: */
2517 if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2519 Perl_croak(aTHX_ "sv_2uv assumed (U_V(fabs(SvNVX(sv))) < (UV)IV_MAX) but SvNVX(sv)=%g U_V is 0x%"UVxf", IV_MAX is 0x%"UVxf"\n", SvNVX(sv), U_V(SvNVX(sv)), (UV)IV_MAX);
2522 sv_2iuv_non_preserve (sv, numtype);
2524 #endif /* NV_PRESERVES_UV */
2528 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2529 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
2532 if (SvTYPE(sv) < SVt_IV)
2533 /* Typically the caller expects that sv_any is not NULL now. */
2534 sv_upgrade(sv, SVt_IV);
2538 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2539 PTR2UV(sv),SvUVX(sv)));
2540 return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2546 Return the num value of an SV, doing any necessary string or integer
2547 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
2554 Perl_sv_2nv(pTHX_ register SV *sv)
2558 if (SvGMAGICAL(sv)) {
2562 if (SvPOKp(sv) && SvLEN(sv)) {
2563 if (ckWARN(WARN_NUMERIC) && !SvIOKp(sv) &&
2564 !grok_number(SvPVX(sv), SvCUR(sv), NULL))
2566 return Atof(SvPVX(sv));
2570 return (NV)SvUVX(sv);
2572 return (NV)SvIVX(sv);
2575 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2576 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
2582 if (SvTHINKFIRST(sv)) {
2585 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
2586 (SvTYPE(tmpstr) != SVt_RV || (SvRV(tmpstr) != SvRV(sv))))
2587 return SvNV(tmpstr);
2588 return PTR2NV(SvRV(sv));
2590 if (SvREADONLY(sv) && SvFAKE(sv)) {
2591 sv_force_normal(sv);
2593 if (SvREADONLY(sv) && !SvOK(sv)) {
2594 if (ckWARN(WARN_UNINITIALIZED))
2599 if (SvTYPE(sv) < SVt_NV) {
2600 if (SvTYPE(sv) == SVt_IV)
2601 sv_upgrade(sv, SVt_PVNV);
2603 sv_upgrade(sv, SVt_NV);
2604 #ifdef USE_LONG_DOUBLE
2606 STORE_NUMERIC_LOCAL_SET_STANDARD();
2607 PerlIO_printf(Perl_debug_log,
2608 "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2609 PTR2UV(sv), SvNVX(sv));
2610 RESTORE_NUMERIC_LOCAL();
2614 STORE_NUMERIC_LOCAL_SET_STANDARD();
2615 PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%g)\n",
2616 PTR2UV(sv), SvNVX(sv));
2617 RESTORE_NUMERIC_LOCAL();
2621 else if (SvTYPE(sv) < SVt_PVNV)
2622 sv_upgrade(sv, SVt_PVNV);
2623 if (SvNOKp(sv) && !(SvIOK(sv) || SvPOK(sv))) {
2626 else if (SvIOKp(sv)) {
2627 SvNVX(sv) = SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv);
2628 #ifdef NV_PRESERVES_UV
2631 /* Only set the public NV OK flag if this NV preserves the IV */
2632 /* Check it's not 0xFFFFFFFFFFFFFFFF */
2633 if (SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2634 : (SvIVX(sv) == I_V(SvNVX(sv))))
2640 else if (SvPOKp(sv) && SvLEN(sv)) {
2642 int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2643 if (ckWARN(WARN_NUMERIC) && !SvIOKp(sv) && !numtype)
2645 #ifdef NV_PRESERVES_UV
2646 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2647 == IS_NUMBER_IN_UV) {
2648 /* It's definitely an integer */
2649 SvNVX(sv) = (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value;
2651 SvNVX(sv) = Atof(SvPVX(sv));
2654 SvNVX(sv) = Atof(SvPVX(sv));
2655 /* Only set the public NV OK flag if this NV preserves the value in
2656 the PV at least as well as an IV/UV would.
2657 Not sure how to do this 100% reliably. */
2658 /* if that shift count is out of range then Configure's test is
2659 wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2661 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2662 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2663 SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2664 } else if (!(numtype & IS_NUMBER_IN_UV)) {
2665 /* Can't use strtol etc to convert this string, so don't try.
2666 sv_2iv and sv_2uv will use the NV to convert, not the PV. */
2669 /* value has been set. It may not be precise. */
2670 if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2671 /* 2s complement assumption for (UV)IV_MIN */
2672 SvNOK_on(sv); /* Integer is too negative. */
2677 if (numtype & IS_NUMBER_NEG) {
2678 SvIVX(sv) = -(IV)value;
2679 } else if (value <= (UV)IV_MAX) {
2680 SvIVX(sv) = (IV)value;
2686 if (numtype & IS_NUMBER_NOT_INT) {
2687 /* I believe that even if the original PV had decimals,
2688 they are lost beyond the limit of the FP precision.
2689 However, neither is canonical, so both only get p
2690 flags. NWC, 2000/11/25 */
2691 /* Both already have p flags, so do nothing */
2694 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2695 if (SvIVX(sv) == I_V(nv)) {
2700 /* It had no "." so it must be integer. */
2703 /* between IV_MAX and NV(UV_MAX).
2704 Could be slightly > UV_MAX */
2706 if (numtype & IS_NUMBER_NOT_INT) {
2707 /* UV and NV both imprecise. */
2709 UV nv_as_uv = U_V(nv);
2711 if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2722 #endif /* NV_PRESERVES_UV */
2725 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
2727 if (SvTYPE(sv) < SVt_NV)
2728 /* Typically the caller expects that sv_any is not NULL now. */
2729 /* XXX Ilya implies that this is a bug in callers that assume this
2730 and ideally should be fixed. */
2731 sv_upgrade(sv, SVt_NV);
2734 #if defined(USE_LONG_DOUBLE)
2736 STORE_NUMERIC_LOCAL_SET_STANDARD();
2737 PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2738 PTR2UV(sv), SvNVX(sv));
2739 RESTORE_NUMERIC_LOCAL();
2743 STORE_NUMERIC_LOCAL_SET_STANDARD();
2744 PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%g)\n",
2745 PTR2UV(sv), SvNVX(sv));
2746 RESTORE_NUMERIC_LOCAL();
2752 /* asIV(): extract an integer from the string value of an SV.
2753 * Caller must validate PVX */
2756 S_asIV(pTHX_ SV *sv)
2759 int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2761 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2762 == IS_NUMBER_IN_UV) {
2763 /* It's definitely an integer */
2764 if (numtype & IS_NUMBER_NEG) {
2765 if (value < (UV)IV_MIN)
2768 if (value < (UV)IV_MAX)
2773 if (ckWARN(WARN_NUMERIC))
2776 return I_V(Atof(SvPVX(sv)));
2779 /* asUV(): extract an unsigned integer from the string value of an SV
2780 * Caller must validate PVX */
2783 S_asUV(pTHX_ SV *sv)
2786 int numtype = grok_number(SvPVX(sv), SvCUR(sv), &value);
2788 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2789 == IS_NUMBER_IN_UV) {
2790 /* It's definitely an integer */
2791 if (!(numtype & IS_NUMBER_NEG))
2795 if (ckWARN(WARN_NUMERIC))
2798 return U_V(Atof(SvPVX(sv)));
2802 =for apidoc sv_2pv_nolen
2804 Like C<sv_2pv()>, but doesn't return the length too. You should usually
2805 use the macro wrapper C<SvPV_nolen(sv)> instead.
2810 Perl_sv_2pv_nolen(pTHX_ register SV *sv)
2813 return sv_2pv(sv, &n_a);
2816 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2817 * UV as a string towards the end of buf, and return pointers to start and
2820 * We assume that buf is at least TYPE_CHARS(UV) long.
2824 uiv_2buf(char *buf, IV iv, UV uv, int is_uv, char **peob)
2826 char *ptr = buf + TYPE_CHARS(UV);
2840 *--ptr = '0' + (uv % 10);
2848 /* For backwards-compatibility only. sv_2pv() is normally #def'ed to
2849 * C<sv_2pv_macro()>. See also C<sv_2pv_flags()>.
2853 Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp)
2855 return sv_2pv_flags(sv, lp, SV_GMAGIC);
2859 =for apidoc sv_2pv_flags
2861 Returns a pointer to the string value of an SV, and sets *lp to its length.
2862 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2864 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2865 usually end up here too.
2871 Perl_sv_2pv_flags(pTHX_ register SV *sv, STRLEN *lp, I32 flags)
2876 char tbuf[64]; /* Must fit sprintf/Gconvert of longest IV/NV */
2877 char *tmpbuf = tbuf;
2883 if (SvGMAGICAL(sv)) {
2884 if (flags & SV_GMAGIC)
2892 (void)sprintf(tmpbuf,"%"UVuf, (UV)SvUVX(sv));
2894 (void)sprintf(tmpbuf,"%"IVdf, (IV)SvIVX(sv));
2899 Gconvert(SvNVX(sv), NV_DIG, 0, tmpbuf);
2904 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2905 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
2912 if (SvTHINKFIRST(sv)) {
2915 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,string)) &&
2916 (SvTYPE(tmpstr) != SVt_RV || (SvRV(tmpstr) != SvRV(sv))))
2917 return SvPV(tmpstr,*lp);
2924 switch (SvTYPE(sv)) {
2926 if ( ((SvFLAGS(sv) &
2927 (SVs_OBJECT|SVf_OK|SVs_GMG|SVs_SMG|SVs_RMG))
2928 == (SVs_OBJECT|SVs_RMG))
2929 && strEQ(s=HvNAME(SvSTASH(sv)), "Regexp")
2930 && (mg = mg_find(sv, PERL_MAGIC_qr))) {
2931 regexp *re = (regexp *)mg->mg_obj;
2934 char *fptr = "msix";
2939 U16 reganch = (re->reganch & PMf_COMPILETIME) >> 12;
2941 while((ch = *fptr++)) {
2943 reflags[left++] = ch;
2946 reflags[right--] = ch;
2951 reflags[left] = '-';
2955 mg->mg_len = re->prelen + 4 + left;
2956 New(616, mg->mg_ptr, mg->mg_len + 1 + left, char);
2957 Copy("(?", mg->mg_ptr, 2, char);
2958 Copy(reflags, mg->mg_ptr+2, left, char);
2959 Copy(":", mg->mg_ptr+left+2, 1, char);
2960 Copy(re->precomp, mg->mg_ptr+3+left, re->prelen, char);
2961 mg->mg_ptr[mg->mg_len - 1] = ')';
2962 mg->mg_ptr[mg->mg_len] = 0;
2964 PL_reginterp_cnt += re->program[0].next_off;
2976 case SVt_PVBM: if (SvROK(sv))
2979 s = "SCALAR"; break;
2980 case SVt_PVLV: s = "LVALUE"; break;
2981 case SVt_PVAV: s = "ARRAY"; break;
2982 case SVt_PVHV: s = "HASH"; break;
2983 case SVt_PVCV: s = "CODE"; break;
2984 case SVt_PVGV: s = "GLOB"; break;
2985 case SVt_PVFM: s = "FORMAT"; break;
2986 case SVt_PVIO: s = "IO"; break;
2987 default: s = "UNKNOWN"; break;
2991 Perl_sv_setpvf(aTHX_ tsv, "%s=%s", HvNAME(SvSTASH(sv)), s);
2994 Perl_sv_catpvf(aTHX_ tsv, "(0x%"UVxf")", PTR2UV(sv));
3000 if (SvREADONLY(sv) && !SvOK(sv)) {
3001 if (ckWARN(WARN_UNINITIALIZED))
3007 if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
3008 /* I'm assuming that if both IV and NV are equally valid then
3009 converting the IV is going to be more efficient */
3010 U32 isIOK = SvIOK(sv);
3011 U32 isUIOK = SvIsUV(sv);
3012 char buf[TYPE_CHARS(UV)];
3015 if (SvTYPE(sv) < SVt_PVIV)
3016 sv_upgrade(sv, SVt_PVIV);
3018 ptr = uiv_2buf(buf, 0, SvUVX(sv), 1, &ebuf);
3020 ptr = uiv_2buf(buf, SvIVX(sv), 0, 0, &ebuf);
3021 SvGROW(sv, ebuf - ptr + 1); /* inlined from sv_setpvn */
3022 Move(ptr,SvPVX(sv),ebuf - ptr,char);
3023 SvCUR_set(sv, ebuf - ptr);
3033 else if (SvNOKp(sv)) {
3034 if (SvTYPE(sv) < SVt_PVNV)
3035 sv_upgrade(sv, SVt_PVNV);
3036 /* The +20 is pure guesswork. Configure test needed. --jhi */
3037 SvGROW(sv, NV_DIG + 20);
3039 olderrno = errno; /* some Xenix systems wipe out errno here */
3041 if (SvNVX(sv) == 0.0)
3042 (void)strcpy(s,"0");
3046 Gconvert(SvNVX(sv), NV_DIG, 0, s);
3049 #ifdef FIXNEGATIVEZERO
3050 if (*s == '-' && s[1] == '0' && !s[2])
3060 if (ckWARN(WARN_UNINITIALIZED)
3061 && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
3064 if (SvTYPE(sv) < SVt_PV)
3065 /* Typically the caller expects that sv_any is not NULL now. */
3066 sv_upgrade(sv, SVt_PV);
3069 *lp = s - SvPVX(sv);
3072 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3073 PTR2UV(sv),SvPVX(sv)));
3077 if (SvROK(sv)) { /* XXX Skip this when sv_pvn_force calls */
3078 /* Sneaky stuff here */
3082 tsv = newSVpv(tmpbuf, 0);
3098 len = strlen(tmpbuf);
3100 #ifdef FIXNEGATIVEZERO
3101 if (len == 2 && t[0] == '-' && t[1] == '0') {
3106 (void)SvUPGRADE(sv, SVt_PV);
3108 s = SvGROW(sv, len + 1);
3117 =for apidoc sv_2pvbyte_nolen
3119 Return a pointer to the byte-encoded representation of the SV.
3120 May cause the SV to be downgraded from UTF8 as a side-effect.
3122 Usually accessed via the C<SvPVbyte_nolen> macro.
3128 Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv)
3131 return sv_2pvbyte(sv, &n_a);
3135 =for apidoc sv_2pvbyte
3137 Return a pointer to the byte-encoded representation of the SV, and set *lp
3138 to its length. May cause the SV to be downgraded from UTF8 as a
3141 Usually accessed via the C<SvPVbyte> macro.
3147 Perl_sv_2pvbyte(pTHX_ register SV *sv, STRLEN *lp)
3149 sv_utf8_downgrade(sv,0);
3150 return SvPV(sv,*lp);
3154 =for apidoc sv_2pvutf8_nolen
3156 Return a pointer to the UTF8-encoded representation of the SV.
3157 May cause the SV to be upgraded to UTF8 as a side-effect.
3159 Usually accessed via the C<SvPVutf8_nolen> macro.
3165 Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv)
3168 return sv_2pvutf8(sv, &n_a);
3172 =for apidoc sv_2pvutf8
3174 Return a pointer to the UTF8-encoded representation of the SV, and set *lp
3175 to its length. May cause the SV to be upgraded to UTF8 as a side-effect.
3177 Usually accessed via the C<SvPVutf8> macro.
3183 Perl_sv_2pvutf8(pTHX_ register SV *sv, STRLEN *lp)
3185 sv_utf8_upgrade(sv);
3186 return SvPV(sv,*lp);
3190 =for apidoc sv_2bool
3192 This function is only called on magical items, and is only used by
3193 sv_true() or its macro equivalent.
3199 Perl_sv_2bool(pTHX_ register SV *sv)
3208 if (SvAMAGIC(sv) && (tmpsv=AMG_CALLun(sv,bool_)) &&
3209 (SvTYPE(tmpsv) != SVt_RV || (SvRV(tmpsv) != SvRV(sv))))
3210 return SvTRUE(tmpsv);
3211 return SvRV(sv) != 0;
3214 register XPV* Xpvtmp;
3215 if ((Xpvtmp = (XPV*)SvANY(sv)) &&
3216 (*Xpvtmp->xpv_pv > '0' ||
3217 Xpvtmp->xpv_cur > 1 ||
3218 (Xpvtmp->xpv_cur && *Xpvtmp->xpv_pv != '0')))
3225 return SvIVX(sv) != 0;
3228 return SvNVX(sv) != 0.0;
3236 =for apidoc sv_utf8_upgrade
3238 Convert the PV of an SV to its UTF8-encoded form.
3239 Forces the SV to string form if it is not already.
3240 Always sets the SvUTF8 flag to avoid future validity checks even
3241 if all the bytes have hibit clear.
3247 Perl_sv_utf8_upgrade(pTHX_ register SV *sv)
3249 return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
3253 =for apidoc sv_utf8_upgrade_flags
3255 Convert the PV of an SV to its UTF8-encoded form.
3256 Forces the SV to string form if it is not already.
3257 Always sets the SvUTF8 flag to avoid future validity checks even
3258 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
3259 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
3260 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3266 Perl_sv_utf8_upgrade_flags(pTHX_ register SV *sv, I32 flags)
3276 (void) sv_2pv_flags(sv,&len, flags);
3284 if (SvREADONLY(sv) && SvFAKE(sv)) {
3285 sv_force_normal(sv);
3288 /* This function could be much more efficient if we had a FLAG in SVs
3289 * to signal if there are any hibit chars in the PV.
3290 * Given that there isn't make loop fast as possible
3292 s = (U8 *) SvPVX(sv);
3293 e = (U8 *) SvEND(sv);
3297 if ((hibit = !NATIVE_IS_INVARIANT(ch)))
3303 len = SvCUR(sv) + 1; /* Plus the \0 */
3304 SvPVX(sv) = (char*)bytes_to_utf8((U8*)s, &len);
3305 SvCUR(sv) = len - 1;
3307 Safefree(s); /* No longer using what was there before. */
3308 SvLEN(sv) = len; /* No longer know the real size. */
3310 /* Mark as UTF-8 even if no hibit - saves scanning loop */
3316 =for apidoc sv_utf8_downgrade
3318 Attempt to convert the PV of an SV from UTF8-encoded to byte encoding.
3319 This may not be possible if the PV contains non-byte encoding characters;
3320 if this is the case, either returns false or, if C<fail_ok> is not
3327 Perl_sv_utf8_downgrade(pTHX_ register SV* sv, bool fail_ok)
3329 if (SvPOK(sv) && SvUTF8(sv)) {
3334 if (SvREADONLY(sv) && SvFAKE(sv))
3335 sv_force_normal(sv);
3336 s = (U8 *) SvPV(sv, len);
3337 if (!utf8_to_bytes(s, &len)) {
3340 #ifdef USE_BYTES_DOWNGRADES
3341 else if (IN_BYTES) {
3343 U8 *e = (U8 *) SvEND(sv);
3346 UV ch = utf8n_to_uvchr(s,(e-s),&len,0);
3347 if (first && ch > 255) {
3349 Perl_warner(aTHX_ WARN_UTF8, "Wide character in byte %s",
3350 PL_op_desc[PL_op->op_type]);
3352 Perl_warner(aTHX_ WARN_UTF8, "Wide character in byte");
3359 len = (d - (U8 *) SvPVX(sv));
3364 Perl_croak(aTHX_ "Wide character in %s",
3365 PL_op_desc[PL_op->op_type]);
3367 Perl_croak(aTHX_ "Wide character");
3378 =for apidoc sv_utf8_encode
3380 Convert the PV of an SV to UTF8-encoded, but then turn off the C<SvUTF8>
3381 flag so that it looks like octets again. Used as a building block
3382 for encode_utf8 in Encode.xs
3388 Perl_sv_utf8_encode(pTHX_ register SV *sv)
3390 (void) sv_utf8_upgrade(sv);
3395 =for apidoc sv_utf8_decode
3397 Convert the octets in the PV from UTF-8 to chars. Scan for validity and then
3398 turn off SvUTF8 if needed so that we see characters. Used as a building block
3399 for decode_utf8 in Encode.xs
3405 Perl_sv_utf8_decode(pTHX_ register SV *sv)
3411 /* The octets may have got themselves encoded - get them back as
3414 if (!sv_utf8_downgrade(sv, TRUE))
3417 /* it is actually just a matter of turning the utf8 flag on, but
3418 * we want to make sure everything inside is valid utf8 first.
3420 c = (U8 *) SvPVX(sv);
3421 if (!is_utf8_string(c, SvCUR(sv)+1))
3423 e = (U8 *) SvEND(sv);
3426 if (!UTF8_IS_INVARIANT(ch)) {
3436 =for apidoc sv_setsv
3438 Copies the contents of the source SV C<ssv> into the destination SV
3439 C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
3440 function if the source SV needs to be reused. Does not handle 'set' magic.
3441 Loosely speaking, it performs a copy-by-value, obliterating any previous
3442 content of the destination.
3444 You probably want to use one of the assortment of wrappers, such as
3445 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3446 C<SvSetMagicSV_nosteal>.
3452 /* sv_setsv() is aliased to Perl_sv_setsv_macro; this function provided
3453 for binary compatibility only
3456 Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr)
3458 sv_setsv_flags(dstr, sstr, SV_GMAGIC);
3462 =for apidoc sv_setsv_flags
3464 Copies the contents of the source SV C<ssv> into the destination SV
3465 C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
3466 function if the source SV needs to be reused. Does not handle 'set' magic.
3467 Loosely speaking, it performs a copy-by-value, obliterating any previous
3468 content of the destination.
3469 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3470 C<ssv> if appropriate, else not. C<sv_setsv> and C<sv_setsv_nomg> are
3471 implemented in terms of this function.
3473 You probably want to use one of the assortment of wrappers, such as
3474 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3475 C<SvSetMagicSV_nosteal>.
3477 This is the primary function for copying scalars, and most other
3478 copy-ish functions and macros use this underneath.
3484 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV *sstr, I32 flags)
3486 register U32 sflags;
3492 SV_CHECK_THINKFIRST(dstr);
3494 sstr = &PL_sv_undef;
3495 stype = SvTYPE(sstr);
3496 dtype = SvTYPE(dstr);
3500 /* There's a lot of redundancy below but we're going for speed here */
3505 if (dtype != SVt_PVGV) {
3506 (void)SvOK_off(dstr);
3514 sv_upgrade(dstr, SVt_IV);
3517 sv_upgrade(dstr, SVt_PVNV);
3521 sv_upgrade(dstr, SVt_PVIV);
3524 (void)SvIOK_only(dstr);
3525 SvIVX(dstr) = SvIVX(sstr);
3528 if (SvTAINTED(sstr))
3539 sv_upgrade(dstr, SVt_NV);
3544 sv_upgrade(dstr, SVt_PVNV);
3547 SvNVX(dstr) = SvNVX(sstr);
3548 (void)SvNOK_only(dstr);
3549 if (SvTAINTED(sstr))
3557 sv_upgrade(dstr, SVt_RV);
3558 else if (dtype == SVt_PVGV &&
3559 SvTYPE(SvRV(sstr)) == SVt_PVGV) {
3562 if (GvIMPORTED(dstr) != GVf_IMPORTED
3563 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3565 GvIMPORTED_on(dstr);
3576 sv_upgrade(dstr, SVt_PV);
3579 if (dtype < SVt_PVIV)
3580 sv_upgrade(dstr, SVt_PVIV);
3583 if (dtype < SVt_PVNV)
3584 sv_upgrade(dstr, SVt_PVNV);
3591 Perl_croak(aTHX_ "Bizarre copy of %s in %s", sv_reftype(sstr, 0),
3592 PL_op_name[PL_op->op_type]);
3594 Perl_croak(aTHX_ "Bizarre copy of %s", sv_reftype(sstr, 0));
3598 if (dtype <= SVt_PVGV) {
3600 if (dtype != SVt_PVGV) {
3601 char *name = GvNAME(sstr);
3602 STRLEN len = GvNAMELEN(sstr);
3603 sv_upgrade(dstr, SVt_PVGV);
3604 sv_magic(dstr, dstr, PERL_MAGIC_glob, Nullch, 0);
3605 GvSTASH(dstr) = (HV*)SvREFCNT_inc(GvSTASH(sstr));
3606 GvNAME(dstr) = savepvn(name, len);
3607 GvNAMELEN(dstr) = len;
3608 SvFAKE_on(dstr); /* can coerce to non-glob */
3610 /* ahem, death to those who redefine active sort subs */
3611 else if (PL_curstackinfo->si_type == PERLSI_SORT
3612 && GvCV(dstr) && PL_sortcop == CvSTART(GvCV(dstr)))
3613 Perl_croak(aTHX_ "Can't redefine active sort subroutine %s",
3616 #ifdef GV_UNIQUE_CHECK
3617 if (GvUNIQUE((GV*)dstr)) {
3618 Perl_croak(aTHX_ PL_no_modify);
3622 (void)SvOK_off(dstr);
3623 GvINTRO_off(dstr); /* one-shot flag */
3625 GvGP(dstr) = gp_ref(GvGP(sstr));
3626 if (SvTAINTED(sstr))
3628 if (GvIMPORTED(dstr) != GVf_IMPORTED
3629 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3631 GvIMPORTED_on(dstr);
3639 if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3641 if (SvTYPE(sstr) != stype) {
3642 stype = SvTYPE(sstr);
3643 if (stype == SVt_PVGV && dtype <= SVt_PVGV)
3647 if (stype == SVt_PVLV)
3648 (void)SvUPGRADE(dstr, SVt_PVNV);
3650 (void)SvUPGRADE(dstr, stype);
3653 sflags = SvFLAGS(sstr);
3655 if (sflags & SVf_ROK) {
3656 if (dtype >= SVt_PV) {
3657 if (dtype == SVt_PVGV) {
3658 SV *sref = SvREFCNT_inc(SvRV(sstr));
3660 int intro = GvINTRO(dstr);
3662 #ifdef GV_UNIQUE_CHECK
3663 if (GvUNIQUE((GV*)dstr)) {
3664 Perl_croak(aTHX_ PL_no_modify);
3669 GvINTRO_off(dstr); /* one-shot flag */
3670 GvLINE(dstr) = CopLINE(PL_curcop);
3671 GvEGV(dstr) = (GV*)dstr;
3674 switch (SvTYPE(sref)) {
3677 SAVESPTR(GvAV(dstr));
3679 dref = (SV*)GvAV(dstr);
3680 GvAV(dstr) = (AV*)sref;
3681 if (!GvIMPORTED_AV(dstr)
3682 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3684 GvIMPORTED_AV_on(dstr);
3689 SAVESPTR(GvHV(dstr));
3691 dref = (SV*)GvHV(dstr);
3692 GvHV(dstr) = (HV*)sref;
3693 if (!GvIMPORTED_HV(dstr)
3694 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3696 GvIMPORTED_HV_on(dstr);
3701 if (GvCVGEN(dstr) && GvCV(dstr) != (CV*)sref) {
3702 SvREFCNT_dec(GvCV(dstr));
3703 GvCV(dstr) = Nullcv;
3704 GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3705 PL_sub_generation++;
3707 SAVESPTR(GvCV(dstr));
3710 dref = (SV*)GvCV(dstr);
3711 if (GvCV(dstr) != (CV*)sref) {
3712 CV* cv = GvCV(dstr);
3714 if (!GvCVGEN((GV*)dstr) &&
3715 (CvROOT(cv) || CvXSUB(cv)))
3717 /* ahem, death to those who redefine
3718 * active sort subs */
3719 if (PL_curstackinfo->si_type == PERLSI_SORT &&
3720 PL_sortcop == CvSTART(cv))
3722 "Can't redefine active sort subroutine %s",
3723 GvENAME((GV*)dstr));
3724 /* Redefining a sub - warning is mandatory if
3725 it was a const and its value changed. */
3726 if (ckWARN(WARN_REDEFINE)
3728 && (!CvCONST((CV*)sref)
3729 || sv_cmp(cv_const_sv(cv),
3730 cv_const_sv((CV*)sref)))))
3732 Perl_warner(aTHX_ WARN_REDEFINE,
3734 ? "Constant subroutine %s redefined"
3735 : "Subroutine %s redefined",
3736 GvENAME((GV*)dstr));
3739 cv_ckproto(cv, (GV*)dstr,
3740 SvPOK(sref) ? SvPVX(sref) : Nullch);
3742 GvCV(dstr) = (CV*)sref;
3743 GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3744 GvASSUMECV_on(dstr);
3745 PL_sub_generation++;
3747 if (!GvIMPORTED_CV(dstr)
3748 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3750 GvIMPORTED_CV_on(dstr);
3755 SAVESPTR(GvIOp(dstr));
3757 dref = (SV*)GvIOp(dstr);
3758 GvIOp(dstr) = (IO*)sref;
3762 SAVESPTR(GvFORM(dstr));
3764 dref = (SV*)GvFORM(dstr);
3765 GvFORM(dstr) = (CV*)sref;
3769 SAVESPTR(GvSV(dstr));
3771 dref = (SV*)GvSV(dstr);
3773 if (!GvIMPORTED_SV(dstr)
3774 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3776 GvIMPORTED_SV_on(dstr);
3784 if (SvTAINTED(sstr))
3789 (void)SvOOK_off(dstr); /* backoff */
3791 Safefree(SvPVX(dstr));
3792 SvLEN(dstr)=SvCUR(dstr)=0;
3795 (void)SvOK_off(dstr);
3796 SvRV(dstr) = SvREFCNT_inc(SvRV(sstr));
3798 if (sflags & SVp_NOK) {
3800 /* Only set the public OK flag if the source has public OK. */
3801 if (sflags & SVf_NOK)
3802 SvFLAGS(dstr) |= SVf_NOK;
3803 SvNVX(dstr) = SvNVX(sstr);
3805 if (sflags & SVp_IOK) {
3806 (void)SvIOKp_on(dstr);
3807 if (sflags & SVf_IOK)
3808 SvFLAGS(dstr) |= SVf_IOK;
3809 if (sflags & SVf_IVisUV)
3811 SvIVX(dstr) = SvIVX(sstr);
3813 if (SvAMAGIC(sstr)) {
3817 else if (sflags & SVp_POK) {
3820 * Check to see if we can just swipe the string. If so, it's a
3821 * possible small lose on short strings, but a big win on long ones.
3822 * It might even be a win on short strings if SvPVX(dstr)
3823 * has to be allocated and SvPVX(sstr) has to be freed.
3826 if (SvTEMP(sstr) && /* slated for free anyway? */
3827 SvREFCNT(sstr) == 1 && /* and no other references to it? */
3828 !(sflags & SVf_OOK) && /* and not involved in OOK hack? */
3829 SvLEN(sstr) && /* and really is a string */
3830 /* and won't be needed again, potentially */
3831 !(PL_op && PL_op->op_type == OP_AASSIGN))
3833 if (SvPVX(dstr)) { /* we know that dtype >= SVt_PV */
3835 SvFLAGS(dstr) &= ~SVf_OOK;
3836 Safefree(SvPVX(dstr) - SvIVX(dstr));
3838 else if (SvLEN(dstr))
3839 Safefree(SvPVX(dstr));
3841 (void)SvPOK_only(dstr);
3842 SvPV_set(dstr, SvPVX(sstr));
3843 SvLEN_set(dstr, SvLEN(sstr));
3844 SvCUR_set(dstr, SvCUR(sstr));
3847 (void)SvOK_off(sstr); /* NOTE: nukes most SvFLAGS on sstr */
3848 SvPV_set(sstr, Nullch);
3853 else { /* have to copy actual string */
3854 STRLEN len = SvCUR(sstr);
3856 SvGROW(dstr, len + 1); /* inlined from sv_setpvn */
3857 Move(SvPVX(sstr),SvPVX(dstr),len,char);
3858 SvCUR_set(dstr, len);
3859 *SvEND(dstr) = '\0';
3860 (void)SvPOK_only(dstr);
3862 if (sflags & SVf_UTF8)
3865 if (sflags & SVp_NOK) {
3867 if (sflags & SVf_NOK)
3868 SvFLAGS(dstr) |= SVf_NOK;
3869 SvNVX(dstr) = SvNVX(sstr);
3871 if (sflags & SVp_IOK) {
3872 (void)SvIOKp_on(dstr);
3873 if (sflags & SVf_IOK)
3874 SvFLAGS(dstr) |= SVf_IOK;
3875 if (sflags & SVf_IVisUV)
3877 SvIVX(dstr) = SvIVX(sstr);
3880 else if (sflags & SVp_IOK) {
3881 if (sflags & SVf_IOK)
3882 (void)SvIOK_only(dstr);
3884 (void)SvOK_off(dstr);
3885 (void)SvIOKp_on(dstr);
3887 /* XXXX Do we want to set IsUV for IV(ROK)? Be extra safe... */
3888 if (sflags & SVf_IVisUV)
3890 SvIVX(dstr) = SvIVX(sstr);
3891 if (sflags & SVp_NOK) {
3892 if (sflags & SVf_NOK)
3893 (void)SvNOK_on(dstr);
3895 (void)SvNOKp_on(dstr);
3896 SvNVX(dstr) = SvNVX(sstr);
3899 else if (sflags & SVp_NOK) {
3900 if (sflags & SVf_NOK)
3901 (void)SvNOK_only(dstr);
3903 (void)SvOK_off(dstr);
3906 SvNVX(dstr) = SvNVX(sstr);
3909 if (dtype == SVt_PVGV) {
3910 if (ckWARN(WARN_MISC))
3911 Perl_warner(aTHX_ WARN_MISC, "Undefined value assigned to typeglob");
3914 (void)SvOK_off(dstr);
3916 if (SvTAINTED(sstr))
3921 =for apidoc sv_setsv_mg
3923 Like C<sv_setsv>, but also handles 'set' magic.
3929 Perl_sv_setsv_mg(pTHX_ SV *dstr, register SV *sstr)
3931 sv_setsv(dstr,sstr);
3936 =for apidoc sv_setpvn
3938 Copies a string into an SV. The C<len> parameter indicates the number of
3939 bytes to be copied. Does not handle 'set' magic. See C<sv_setpvn_mg>.
3945 Perl_sv_setpvn(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
3947 register char *dptr;
3949 SV_CHECK_THINKFIRST(sv);
3955 /* len is STRLEN which is unsigned, need to copy to signed */
3958 Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
3960 (void)SvUPGRADE(sv, SVt_PV);
3962 SvGROW(sv, len + 1);
3964 Move(ptr,dptr,len,char);
3967 (void)SvPOK_only_UTF8(sv); /* validate pointer */
3972 =for apidoc sv_setpvn_mg
3974 Like C<sv_setpvn>, but also handles 'set' magic.
3980 Perl_sv_setpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
3982 sv_setpvn(sv,ptr,len);
3987 =for apidoc sv_setpv
3989 Copies a string into an SV. The string must be null-terminated. Does not
3990 handle 'set' magic. See C<sv_setpv_mg>.
3996 Perl_sv_setpv(pTHX_ register SV *sv, register const char *ptr)
3998 register STRLEN len;
4000 SV_CHECK_THINKFIRST(sv);
4006 (void)SvUPGRADE(sv, SVt_PV);
4008 SvGROW(sv, len + 1);
4009 Move(ptr,SvPVX(sv),len+1,char);
4011 (void)SvPOK_only_UTF8(sv); /* validate pointer */
4016 =for apidoc sv_setpv_mg
4018 Like C<sv_setpv>, but also handles 'set' magic.
4024 Perl_sv_setpv_mg(pTHX_ register SV *sv, register const char *ptr)
4031 =for apidoc sv_usepvn
4033 Tells an SV to use C<ptr> to find its string value. Normally the string is
4034 stored inside the SV but sv_usepvn allows the SV to use an outside string.
4035 The C<ptr> should point to memory that was allocated by C<malloc>. The
4036 string length, C<len>, must be supplied. This function will realloc the
4037 memory pointed to by C<ptr>, so that pointer should not be freed or used by
4038 the programmer after giving it to sv_usepvn. Does not handle 'set' magic.
4039 See C<sv_usepvn_mg>.
4045 Perl_sv_usepvn(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
4047 SV_CHECK_THINKFIRST(sv);
4048 (void)SvUPGRADE(sv, SVt_PV);
4053 (void)SvOOK_off(sv);
4054 if (SvPVX(sv) && SvLEN(sv))
4055 Safefree(SvPVX(sv));
4056 Renew(ptr, len+1, char);
4059 SvLEN_set(sv, len+1);
4061 (void)SvPOK_only_UTF8(sv); /* validate pointer */
4066 =for apidoc sv_usepvn_mg
4068 Like C<sv_usepvn>, but also handles 'set' magic.
4074 Perl_sv_usepvn_mg(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
4076 sv_usepvn(sv,ptr,len);
4081 =for apidoc sv_force_normal_flags
4083 Undo various types of fakery on an SV: if the PV is a shared string, make
4084 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4085 an xpvmg. The C<flags> parameter gets passed to C<sv_unref_flags()>
4086 when unrefing. C<sv_force_normal> calls this function with flags set to 0.
4092 Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags)
4094 if (SvREADONLY(sv)) {
4096 char *pvx = SvPVX(sv);
4097 STRLEN len = SvCUR(sv);
4098 U32 hash = SvUVX(sv);
4099 SvGROW(sv, len + 1);
4100 Move(pvx,SvPVX(sv),len,char);
4104 unsharepvn(pvx, SvUTF8(sv) ? -(I32)len : len, hash);
4106 else if (PL_curcop != &PL_compiling)
4107 Perl_croak(aTHX_ PL_no_modify);
4110 sv_unref_flags(sv, flags);
4111 else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4116 =for apidoc sv_force_normal
4118 Undo various types of fakery on an SV: if the PV is a shared string, make
4119 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4120 an xpvmg. See also C<sv_force_normal_flags>.
4126 Perl_sv_force_normal(pTHX_ register SV *sv)
4128 sv_force_normal_flags(sv, 0);
4134 Efficient removal of characters from the beginning of the string buffer.
4135 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4136 the string buffer. The C<ptr> becomes the first character of the adjusted
4137 string. Uses the "OOK hack".
4143 Perl_sv_chop(pTHX_ register SV *sv, register char *ptr)
4145 register STRLEN delta;
4147 if (!ptr || !SvPOKp(sv))
4149 SV_CHECK_THINKFIRST(sv);
4150 if (SvTYPE(sv) < SVt_PVIV)
4151 sv_upgrade(sv,SVt_PVIV);
4154 if (!SvLEN(sv)) { /* make copy of shared string */
4155 char *pvx = SvPVX(sv);
4156 STRLEN len = SvCUR(sv);
4157 SvGROW(sv, len + 1);
4158 Move(pvx,SvPVX(sv),len,char);
4162 SvFLAGS(sv) |= SVf_OOK;
4164 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVp_IOK|SVp_NOK|SVf_IVisUV);
4165 delta = ptr - SvPVX(sv);
4173 =for apidoc sv_catpvn
4175 Concatenates the string onto the end of the string which is in the SV. The
4176 C<len> indicates number of bytes to copy. If the SV has the UTF8
4177 status set, then the bytes appended should be valid UTF8.
4178 Handles 'get' magic, but not 'set' magic. See C<sv_catpvn_mg>.
4183 /* sv_catpvn() is aliased to Perl_sv_catpvn_macro; this function provided
4184 for binary compatibility only
4187 Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
4189 sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
4193 =for apidoc sv_catpvn_flags
4195 Concatenates the string onto the end of the string which is in the SV. The
4196 C<len> indicates number of bytes to copy. If the SV has the UTF8
4197 status set, then the bytes appended should be valid UTF8.
4198 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4199 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4200 in terms of this function.
4206 Perl_sv_catpvn_flags(pTHX_ register SV *dsv, register const char *sstr, register STRLEN slen, I32 flags)
4211 dstr = SvPV_force_flags(dsv, dlen, flags);
4212 SvGROW(dsv, dlen + slen + 1);
4215 Move(sstr, SvPVX(dsv) + dlen, slen, char);
4218 (void)SvPOK_only_UTF8(dsv); /* validate pointer */
4223 =for apidoc sv_catpvn_mg
4225 Like C<sv_catpvn>, but also handles 'set' magic.
4231 Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
4233 sv_catpvn(sv,ptr,len);
4238 =for apidoc sv_catsv
4240 Concatenates the string from SV C<ssv> onto the end of the string in
4241 SV C<dsv>. Modifies C<dsv> but not C<ssv>. Handles 'get' magic, but
4242 not 'set' magic. See C<sv_catsv_mg>.
4246 /* sv_catsv() is aliased to Perl_sv_catsv_macro; this function provided
4247 for binary compatibility only
4250 Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr)
4252 sv_catsv_flags(dstr, sstr, SV_GMAGIC);
4256 =for apidoc sv_catsv_flags
4258 Concatenates the string from SV C<ssv> onto the end of the string in
4259 SV C<dsv>. Modifies C<dsv> but not C<ssv>. If C<flags> has C<SV_GMAGIC>
4260 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4261 and C<sv_catsv_nomg> are implemented in terms of this function.
4266 Perl_sv_catsv_flags(pTHX_ SV *dsv, register SV *ssv, I32 flags)
4272 if ((spv = SvPV(ssv, slen))) {
4273 bool sutf8 = DO_UTF8(ssv);
4276 if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4278 dutf8 = DO_UTF8(dsv);
4280 if (dutf8 != sutf8) {
4282 /* Not modifying source SV, so taking a temporary copy. */
4283 SV* csv = sv_2mortal(newSVpvn(spv, slen));
4285 sv_utf8_upgrade(csv);
4286 spv = SvPV(csv, slen);
4289 sv_utf8_upgrade_nomg(dsv);
4291 sv_catpvn_nomg(dsv, spv, slen);
4296 =for apidoc sv_catsv_mg
4298 Like C<sv_catsv>, but also handles 'set' magic.
4304 Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv)
4311 =for apidoc sv_catpv
4313 Concatenates the string onto the end of the string which is in the SV.
4314 If the SV has the UTF8 status set, then the bytes appended should be
4315 valid UTF8. Handles 'get' magic, but not 'set' magic. See C<sv_catpv_mg>.
4320 Perl_sv_catpv(pTHX_ register SV *sv, register const char *ptr)
4322 register STRLEN len;
4328 junk = SvPV_force(sv, tlen);
4330 SvGROW(sv, tlen + len + 1);
4333 Move(ptr,SvPVX(sv)+tlen,len+1,char);
4335 (void)SvPOK_only_UTF8(sv); /* validate pointer */
4340 =for apidoc sv_catpv_mg
4342 Like C<sv_catpv>, but also handles 'set' magic.
4348 Perl_sv_catpv_mg(pTHX_ register SV *sv, register const char *ptr)
4357 Create a new null SV, or if len > 0, create a new empty SVt_PV type SV
4358 with an initial PV allocation of len+1. Normally accessed via the C<NEWSV>
4365 Perl_newSV(pTHX_ STRLEN len)
4371 sv_upgrade(sv, SVt_PV);
4372 SvGROW(sv, len + 1);
4378 =for apidoc sv_magic
4380 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4381 then adds a new magic item of type C<how> to the head of the magic list.
4383 C<name> is assumed to contain an C<SV*> if C<(name && namelen == HEf_SVKEY)>
4389 Perl_sv_magic(pTHX_ register SV *sv, SV *obj, int how, const char *name, I32 namlen)
4393 if (SvREADONLY(sv)) {
4394 if (PL_curcop != &PL_compiling
4395 && how != PERL_MAGIC_regex_global
4396 && how != PERL_MAGIC_bm
4397 && how != PERL_MAGIC_fm
4398 && how != PERL_MAGIC_sv
4401 Perl_croak(aTHX_ PL_no_modify);
4404 if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
4405 if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
4406 if (how == PERL_MAGIC_taint)
4412 (void)SvUPGRADE(sv, SVt_PVMG);
4414 Newz(702,mg, 1, MAGIC);
4415 mg->mg_moremagic = SvMAGIC(sv);
4418 /* Some magic contains a reference loop, where the sv and object refer to
4419 each other. To avoid a reference loop that would prevent such objects
4420 being freed, we look for such loops and if we find one we avoid
4421 incrementing the object refcount. */
4422 if (!obj || obj == sv ||
4423 how == PERL_MAGIC_arylen ||
4424 how == PERL_MAGIC_qr ||
4425 (SvTYPE(obj) == SVt_PVGV &&
4426 (GvSV(obj) == sv || GvHV(obj) == (HV*)sv || GvAV(obj) == (AV*)sv ||
4427 GvCV(obj) == (CV*)sv || GvIOp(obj) == (IO*)sv ||
4428 GvFORM(obj) == (CV*)sv)))
4433 mg->mg_obj = SvREFCNT_inc(obj);
4434 mg->mg_flags |= MGf_REFCOUNTED;
4437 mg->mg_len = namlen;
4440 mg->mg_ptr = savepvn(name, namlen);
4441 else if (namlen == HEf_SVKEY)
4442 mg->mg_ptr = (char*)SvREFCNT_inc((SV*)name);
4447 mg->mg_virtual = &PL_vtbl_sv;
4449 case PERL_MAGIC_overload:
4450 mg->mg_virtual = &PL_vtbl_amagic;
4452 case PERL_MAGIC_overload_elem:
4453 mg->mg_virtual = &PL_vtbl_amagicelem;
4455 case PERL_MAGIC_overload_table:
4456 mg->mg_virtual = &PL_vtbl_ovrld;
4459 mg->mg_virtual = &PL_vtbl_bm;
4461 case PERL_MAGIC_regdata:
4462 mg->mg_virtual = &PL_vtbl_regdata;
4464 case PERL_MAGIC_regdatum:
4465 mg->mg_virtual = &PL_vtbl_regdatum;
4467 case PERL_MAGIC_env:
4468 mg->mg_virtual = &PL_vtbl_env;
4471 mg->mg_virtual = &PL_vtbl_fm;
4473 case PERL_MAGIC_envelem:
4474 mg->mg_virtual = &PL_vtbl_envelem;
4476 case PERL_MAGIC_regex_global:
4477 mg->mg_virtual = &PL_vtbl_mglob;
4479 case PERL_MAGIC_isa:
4480 mg->mg_virtual = &PL_vtbl_isa;
4482 case PERL_MAGIC_isaelem:
4483 mg->mg_virtual = &PL_vtbl_isaelem;
4485 case PERL_MAGIC_nkeys:
4486 mg->mg_virtual = &PL_vtbl_nkeys;
4488 case PERL_MAGIC_dbfile:
4492 case PERL_MAGIC_dbline:
4493 mg->mg_virtual = &PL_vtbl_dbline;
4496 case PERL_MAGIC_mutex:
4497 mg->mg_virtual = &PL_vtbl_mutex;
4499 #endif /* USE_THREADS */
4500 #ifdef USE_LOCALE_COLLATE
4501 case PERL_MAGIC_collxfrm:
4502 mg->mg_virtual = &PL_vtbl_collxfrm;
4504 #endif /* USE_LOCALE_COLLATE */
4505 case PERL_MAGIC_tied:
4506 mg->mg_virtual = &PL_vtbl_pack;
4508 case PERL_MAGIC_tiedelem:
4509 case PERL_MAGIC_tiedscalar:
4510 mg->mg_virtual = &PL_vtbl_packelem;
4513 mg->mg_virtual = &PL_vtbl_regexp;
4515 case PERL_MAGIC_sig:
4516 mg->mg_virtual = &PL_vtbl_sig;
4518 case PERL_MAGIC_sigelem:
4519 mg->mg_virtual = &PL_vtbl_sigelem;
4521 case PERL_MAGIC_taint:
4522 mg->mg_virtual = &PL_vtbl_taint;
4525 case PERL_MAGIC_uvar:
4526 mg->mg_virtual = &PL_vtbl_uvar;
4528 case PERL_MAGIC_vec:
4529 mg->mg_virtual = &PL_vtbl_vec;
4531 case PERL_MAGIC_substr:
4532 mg->mg_virtual = &PL_vtbl_substr;
4534 case PERL_MAGIC_defelem:
4535 mg->mg_virtual = &PL_vtbl_defelem;
4537 case PERL_MAGIC_glob:
4538 mg->mg_virtual = &PL_vtbl_glob;
4540 case PERL_MAGIC_arylen:
4541 mg->mg_virtual = &PL_vtbl_arylen;
4543 case PERL_MAGIC_pos:
4544 mg->mg_virtual = &PL_vtbl_pos;
4546 case PERL_MAGIC_backref:
4547 mg->mg_virtual = &PL_vtbl_backref;
4549 case PERL_MAGIC_ext:
4550 /* Reserved for use by extensions not perl internals. */
4551 /* Useful for attaching extension internal data to perl vars. */
4552 /* Note that multiple extensions may clash if magical scalars */
4553 /* etc holding private data from one are passed to another. */
4557 Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
4561 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4565 =for apidoc sv_unmagic
4567 Removes all magic of type C<type> from an SV.
4573 Perl_sv_unmagic(pTHX_ SV *sv, int type)
4577 if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
4580 for (mg = *mgp; mg; mg = *mgp) {
4581 if (mg->mg_type == type) {
4582 MGVTBL* vtbl = mg->mg_virtual;
4583 *mgp = mg->mg_moremagic;
4584 if (vtbl && vtbl->svt_free)
4585 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
4586 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
4587 if (mg->mg_len >= 0)
4588 Safefree(mg->mg_ptr);
4589 else if (mg->mg_len == HEf_SVKEY)
4590 SvREFCNT_dec((SV*)mg->mg_ptr);
4592 if (mg->mg_flags & MGf_REFCOUNTED)
4593 SvREFCNT_dec(mg->mg_obj);
4597 mgp = &mg->mg_moremagic;
4601 SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_NOK|SVp_POK)) >> PRIVSHIFT;
4608 =for apidoc sv_rvweaken
4610 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
4611 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
4612 push a back-reference to this RV onto the array of backreferences
4613 associated with that magic.
4619 Perl_sv_rvweaken(pTHX_ SV *sv)
4622 if (!SvOK(sv)) /* let undefs pass */
4625 Perl_croak(aTHX_ "Can't weaken a nonreference");
4626 else if (SvWEAKREF(sv)) {
4627 if (ckWARN(WARN_MISC))
4628 Perl_warner(aTHX_ WARN_MISC, "Reference is already weak");
4632 sv_add_backref(tsv, sv);
4638 /* Give tsv backref magic if it hasn't already got it, then push a
4639 * back-reference to sv onto the array associated with the backref magic.
4643 S_sv_add_backref(pTHX_ SV *tsv, SV *sv)
4647 if (SvMAGICAL(tsv) && (mg = mg_find(tsv, PERL_MAGIC_backref)))
4648 av = (AV*)mg->mg_obj;
4651 sv_magic(tsv, (SV*)av, PERL_MAGIC_backref, NULL, 0);
4652 SvREFCNT_dec(av); /* for sv_magic */
4657 /* delete a back-reference to ourselves from the backref magic associated
4658 * with the SV we point to.
4662 S_sv_del_backref(pTHX_ SV *sv)
4669 if (!SvMAGICAL(tsv) || !(mg = mg_find(tsv, PERL_MAGIC_backref)))
4670 Perl_croak(aTHX_ "panic: del_backref");
4671 av = (AV *)mg->mg_obj;
4676 svp[i] = &PL_sv_undef; /* XXX */
4683 =for apidoc sv_insert
4685 Inserts a string at the specified offset/length within the SV. Similar to
4686 the Perl substr() function.
4692 Perl_sv_insert(pTHX_ SV *bigstr, STRLEN offset, STRLEN len, char *little, STRLEN littlelen)
4696 register char *midend;
4697 register char *bigend;
4703 Perl_croak(aTHX_ "Can't modify non-existent substring");
4704 SvPV_force(bigstr, curlen);
4705 (void)SvPOK_only_UTF8(bigstr);
4706 if (offset + len > curlen) {
4707 SvGROW(bigstr, offset+len+1);
4708 Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
4709 SvCUR_set(bigstr, offset+len);
4713 i = littlelen - len;
4714 if (i > 0) { /* string might grow */
4715 big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
4716 mid = big + offset + len;
4717 midend = bigend = big + SvCUR(bigstr);
4720 while (midend > mid) /* shove everything down */
4721 *--bigend = *--midend;
4722 Move(little,big+offset,littlelen,char);
4728 Move(little,SvPVX(bigstr)+offset,len,char);
4733 big = SvPVX(bigstr);
4736 bigend = big + SvCUR(bigstr);
4738 if (midend > bigend)
4739 Perl_croak(aTHX_ "panic: sv_insert");
4741 if (mid - big > bigend - midend) { /* faster to shorten from end */
4743 Move(little, mid, littlelen,char);
4746 i = bigend - midend;
4748 Move(midend, mid, i,char);
4752 SvCUR_set(bigstr, mid - big);
4755 else if ((i = mid - big)) { /* faster from front */
4756 midend -= littlelen;
4758 sv_chop(bigstr,midend-i);
4763 Move(little, mid, littlelen,char);
4765 else if (littlelen) {
4766 midend -= littlelen;
4767 sv_chop(bigstr,midend);
4768 Move(little,midend,littlelen,char);
4771 sv_chop(bigstr,midend);
4777 =for apidoc sv_replace
4779 Make the first argument a copy of the second, then delete the original.
4780 The target SV physically takes over ownership of the body of the source SV
4781 and inherits its flags; however, the target keeps any magic it owns,
4782 and any magic in the source is discarded.
4783 Note that this is a rather specialist SV copying operation; most of the
4784 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
4790 Perl_sv_replace(pTHX_ register SV *sv, register SV *nsv)
4792 U32 refcnt = SvREFCNT(sv);
4793 SV_CHECK_THINKFIRST(sv);
4794 if (SvREFCNT(nsv) != 1 && ckWARN_d(WARN_INTERNAL))
4795 Perl_warner(aTHX_ WARN_INTERNAL, "Reference miscount in sv_replace()");
4796 if (SvMAGICAL(sv)) {
4800 sv_upgrade(nsv, SVt_PVMG);
4801 SvMAGIC(nsv) = SvMAGIC(sv);
4802 SvFLAGS(nsv) |= SvMAGICAL(sv);
4808 assert(!SvREFCNT(sv));
4809 StructCopy(nsv,sv,SV);
4810 SvREFCNT(sv) = refcnt;
4811 SvFLAGS(nsv) |= SVTYPEMASK; /* Mark as freed */
4816 =for apidoc sv_clear
4818 Clear an SV: call any destructors, free up any memory used by the body,
4819 and free the body itself. The SV's head is I<not> freed, although
4820 its type is set to all 1's so that it won't inadvertently be assumed
4821 to be live during global destruction etc.
4822 This function should only be called when REFCNT is zero. Most of the time
4823 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
4830 Perl_sv_clear(pTHX_ register SV *sv)
4834 assert(SvREFCNT(sv) == 0);
4837 if (PL_defstash) { /* Still have a symbol table? */
4842 Zero(&tmpref, 1, SV);
4843 sv_upgrade(&tmpref, SVt_RV);
4845 SvREADONLY_on(&tmpref); /* DESTROY() could be naughty */
4846 SvREFCNT(&tmpref) = 1;
4849 stash = SvSTASH(sv);
4850 destructor = StashHANDLER(stash,DESTROY);
4853 PUSHSTACKi(PERLSI_DESTROY);
4854 SvRV(&tmpref) = SvREFCNT_inc(sv);
4859 call_sv((SV*)destructor, G_DISCARD|G_EVAL|G_KEEPERR);
4865 } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
4867 del_XRV(SvANY(&tmpref));
4870 if (PL_in_clean_objs)
4871 Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
4873 /* DESTROY gave object new lease on life */
4879 SvREFCNT_dec(SvSTASH(sv)); /* possibly of changed persuasion */
4880 SvOBJECT_off(sv); /* Curse the object. */
4881 if (SvTYPE(sv) != SVt_PVIO)
4882 --PL_sv_objcount; /* XXX Might want something more general */
4885 if (SvTYPE(sv) >= SVt_PVMG) {
4888 if (SvFLAGS(sv) & SVpad_TYPED)
4889 SvREFCNT_dec(SvSTASH(sv));
4892 switch (SvTYPE(sv)) {
4895 IoIFP(sv) != PerlIO_stdin() &&
4896 IoIFP(sv) != PerlIO_stdout() &&
4897 IoIFP(sv) != PerlIO_stderr())
4899 io_close((IO*)sv, FALSE);
4901 if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
4902 PerlDir_close(IoDIRP(sv));
4903 IoDIRP(sv) = (DIR*)NULL;
4904 Safefree(IoTOP_NAME(sv));
4905 Safefree(IoFMT_NAME(sv));
4906 Safefree(IoBOTTOM_NAME(sv));
4921 SvREFCNT_dec(LvTARG(sv));
4925 Safefree(GvNAME(sv));
4926 /* cannot decrease stash refcount yet, as we might recursively delete
4927 ourselves when the refcnt drops to zero. Delay SvREFCNT_dec
4928 of stash until current sv is completely gone.
4929 -- JohnPC, 27 Mar 1998 */
4930 stash = GvSTASH(sv);
4936 (void)SvOOK_off(sv);
4944 SvREFCNT_dec(SvRV(sv));
4946 else if (SvPVX(sv) && SvLEN(sv))
4947 Safefree(SvPVX(sv));
4948 else if (SvPVX(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
4949 unsharepvn(SvPVX(sv),
4950 SvUTF8(sv) ? -(I32)SvCUR(sv) : SvCUR(sv),
4963 switch (SvTYPE(sv)) {
4979 del_XPVIV(SvANY(sv));
4982 del_XPVNV(SvANY(sv));
4985 del_XPVMG(SvANY(sv));
4988 del_XPVLV(SvANY(sv));
4991 del_XPVAV(SvANY(sv));
4994 del_XPVHV(SvANY(sv));
4997 del_XPVCV(SvANY(sv));
5000 del_XPVGV(SvANY(sv));
5001 /* code duplication for increased performance. */
5002 SvFLAGS(sv) &= SVf_BREAK;
5003 SvFLAGS(sv) |= SVTYPEMASK;
5004 /* decrease refcount of the stash that owns this GV, if any */
5006 SvREFCNT_dec(stash);
5007 return; /* not break, SvFLAGS reset already happened */
5009 del_XPVBM(SvANY(sv));
5012 del_XPVFM(SvANY(sv));
5015 del_XPVIO(SvANY(sv));
5018 SvFLAGS(sv) &= SVf_BREAK;
5019 SvFLAGS(sv) |= SVTYPEMASK;
5023 =for apidoc sv_newref
5025 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5032 Perl_sv_newref(pTHX_ SV *sv)
5035 ATOMIC_INC(SvREFCNT(sv));
5042 Decrement an SV's reference count, and if it drops to zero, call
5043 C<sv_clear> to invoke destructors and free up any memory used by
5044 the body; finally, deallocate the SV's head itself.
5045 Normally called via a wrapper macro C<SvREFCNT_dec>.
5051 Perl_sv_free(pTHX_ SV *sv)
5053 int refcount_is_zero;
5057 if (SvREFCNT(sv) == 0) {
5058 if (SvFLAGS(sv) & SVf_BREAK)
5059 /* this SV's refcnt has been artificially decremented to
5060 * trigger cleanup */
5062 if (PL_in_clean_all) /* All is fair */
5064 if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5065 /* make sure SvREFCNT(sv)==0 happens very seldom */
5066 SvREFCNT(sv) = (~(U32)0)/2;
5069 if (ckWARN_d(WARN_INTERNAL))
5070 Perl_warner(aTHX_ WARN_INTERNAL, "Attempt to free unreferenced scalar");
5073 ATOMIC_DEC_AND_TEST(refcount_is_zero, SvREFCNT(sv));
5074 if (!refcount_is_zero)
5078 if (ckWARN_d(WARN_DEBUGGING))
5079 Perl_warner(aTHX_ WARN_DEBUGGING,
5080 "Attempt to free temp prematurely: SV 0x%"UVxf,
5085 if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5086 /* make sure SvREFCNT(sv)==0 happens very seldom */
5087 SvREFCNT(sv) = (~(U32)0)/2;
5098 Returns the length of the string in the SV. Handles magic and type
5099 coercion. See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5105 Perl_sv_len(pTHX_ register SV *sv)
5113 len = mg_length(sv);
5115 (void)SvPV(sv, len);
5120 =for apidoc sv_len_utf8
5122 Returns the number of characters in the string in an SV, counting wide
5123 UTF8 bytes as a single character. Handles magic and type coercion.
5129 Perl_sv_len_utf8(pTHX_ register SV *sv)
5135 return mg_length(sv);
5139 U8 *s = (U8*)SvPV(sv, len);
5141 return Perl_utf8_length(aTHX_ s, s + len);
5146 =for apidoc sv_pos_u2b
5148 Converts the value pointed to by offsetp from a count of UTF8 chars from
5149 the start of the string, to a count of the equivalent number of bytes; if
5150 lenp is non-zero, it does the same to lenp, but this time starting from
5151 the offset, rather than from the start of the string. Handles magic and
5158 Perl_sv_pos_u2b(pTHX_ register SV *sv, I32* offsetp, I32* lenp)
5163 I32 uoffset = *offsetp;
5169 start = s = (U8*)SvPV(sv, len);
5171 while (s < send && uoffset--)
5175 *offsetp = s - start;
5179 while (s < send && ulen--)
5189 =for apidoc sv_pos_b2u
5191 Converts the value pointed to by offsetp from a count of bytes from the
5192 start of the string, to a count of the equivalent number of UTF8 chars.
5193 Handles magic and type coercion.
5199 Perl_sv_pos_b2u(pTHX_ register SV *sv, I32* offsetp)
5208 s = (U8*)SvPV(sv, len);
5210 Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
5211 send = s + *offsetp;
5215 /* Call utf8n_to_uvchr() to validate the sequence */
5216 utf8n_to_uvchr(s, UTF8SKIP(s), &n, 0);
5231 Returns a boolean indicating whether the strings in the two SVs are
5232 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5233 coerce its args to strings if necessary.
5239 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
5253 pv1 = SvPV(sv1, cur1);
5260 pv2 = SvPV(sv2, cur2);
5262 /* do not utf8ize the comparands as a side-effect */
5263 if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
5264 bool is_utf8 = TRUE;
5265 /* UTF-8ness differs */
5266 if (PL_hints & HINT_UTF8_DISTINCT)
5270 /* sv1 is the UTF-8 one , If is equal it must be downgrade-able */
5271 char *pv = (char*)bytes_from_utf8((U8*)pv1, &cur1, &is_utf8);
5276 /* sv2 is the UTF-8 one , If is equal it must be downgrade-able */
5277 char *pv = (char *)bytes_from_utf8((U8*)pv2, &cur2, &is_utf8);
5282 /* Downgrade not possible - cannot be eq */
5288 eq = memEQ(pv1, pv2, cur1);
5299 Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
5300 string in C<sv1> is less than, equal to, or greater than the string in
5301 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5302 coerce its args to strings if necessary. See also C<sv_cmp_locale>.
5308 Perl_sv_cmp(pTHX_ register SV *sv1, register SV *sv2)
5313 bool pv1tmp = FALSE;
5314 bool pv2tmp = FALSE;
5321 pv1 = SvPV(sv1, cur1);
5328 pv2 = SvPV(sv2, cur2);
5330 /* do not utf8ize the comparands as a side-effect */
5331 if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
5332 if (PL_hints & HINT_UTF8_DISTINCT)
5333 return SvUTF8(sv1) ? 1 : -1;
5336 pv2 = (char*)bytes_to_utf8((U8*)pv2, &cur2);
5340 pv1 = (char*)bytes_to_utf8((U8*)pv1, &cur1);
5346 cmp = cur2 ? -1 : 0;
5350 I32 retval = memcmp((void*)pv1, (void*)pv2, cur1 < cur2 ? cur1 : cur2);
5353 cmp = retval < 0 ? -1 : 1;
5354 } else if (cur1 == cur2) {
5357 cmp = cur1 < cur2 ? -1 : 1;
5370 =for apidoc sv_cmp_locale
5372 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
5373 'use bytes' aware, handles get magic, and will coerce its args to strings
5374 if necessary. See also C<sv_cmp_locale>. See also C<sv_cmp>.
5380 Perl_sv_cmp_locale(pTHX_ register SV *sv1, register SV *sv2)
5382 #ifdef USE_LOCALE_COLLATE
5388 if (PL_collation_standard)
5392 pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
5394 pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
5396 if (!pv1 || !len1) {
5407 retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
5410 return retval < 0 ? -1 : 1;
5413 * When the result of collation is equality, that doesn't mean
5414 * that there are no differences -- some locales exclude some
5415 * characters from consideration. So to avoid false equalities,
5416 * we use the raw string as a tiebreaker.
5422 #endif /* USE_LOCALE_COLLATE */
5424 return sv_cmp(sv1, sv2);
5428 #ifdef USE_LOCALE_COLLATE
5431 =for apidoc sv_collxfrm
5433 Add Collate Transform magic to an SV if it doesn't already have it.
5435 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
5436 scalar data of the variable, but transformed to such a format that a normal
5437 memory comparison can be used to compare the data according to the locale
5444 Perl_sv_collxfrm(pTHX_ SV *sv, STRLEN *nxp)
5448 mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
5449 if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
5454 Safefree(mg->mg_ptr);
5456 if ((xf = mem_collxfrm(s, len, &xlen))) {
5457 if (SvREADONLY(sv)) {
5460 return xf + sizeof(PL_collation_ix);
5463 sv_magic(sv, 0, PERL_MAGIC_collxfrm, 0, 0);
5464 mg = mg_find(sv, PERL_MAGIC_collxfrm);
5477 if (mg && mg->mg_ptr) {
5479 return mg->mg_ptr + sizeof(PL_collation_ix);
5487 #endif /* USE_LOCALE_COLLATE */
5492 Get a line from the filehandle and store it into the SV, optionally
5493 appending to the currently-stored string.
5499 Perl_sv_gets(pTHX_ register SV *sv, register PerlIO *fp, I32 append)
5503 register STDCHAR rslast;
5504 register STDCHAR *bp;
5508 SV_CHECK_THINKFIRST(sv);
5509 (void)SvUPGRADE(sv, SVt_PV);
5513 if (RsSNARF(PL_rs)) {
5517 else if (RsRECORD(PL_rs)) {
5518 I32 recsize, bytesread;
5521 /* Grab the size of the record we're getting */
5522 recsize = SvIV(SvRV(PL_rs));
5523 (void)SvPOK_only(sv); /* Validate pointer */
5524 buffer = SvGROW(sv, recsize + 1);
5527 /* VMS wants read instead of fread, because fread doesn't respect */
5528 /* RMS record boundaries. This is not necessarily a good thing to be */
5529 /* doing, but we've got no other real choice */
5530 bytesread = PerlLIO_read(PerlIO_fileno(fp), buffer, recsize);
5532 bytesread = PerlIO_read(fp, buffer, recsize);
5534 SvCUR_set(sv, bytesread);
5535 buffer[bytesread] = '\0';
5536 if (PerlIO_isutf8(fp))
5540 return(SvCUR(sv) ? SvPVX(sv) : Nullch);
5542 else if (RsPARA(PL_rs)) {
5547 /* Get $/ i.e. PL_rs into same encoding as stream wants */
5548 if (PerlIO_isutf8(fp)) {
5549 rsptr = SvPVutf8(PL_rs, rslen);
5552 if (SvUTF8(PL_rs)) {
5553 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
5554 Perl_croak(aTHX_ "Wide character in $/");
5557 rsptr = SvPV(PL_rs, rslen);
5561 rslast = rslen ? rsptr[rslen - 1] : '\0';
5563 if (RsPARA(PL_rs)) { /* have to do this both before and after */
5564 do { /* to make sure file boundaries work right */
5567 i = PerlIO_getc(fp);
5571 PerlIO_ungetc(fp,i);
5577 /* See if we know enough about I/O mechanism to cheat it ! */
5579 /* This used to be #ifdef test - it is made run-time test for ease
5580 of abstracting out stdio interface. One call should be cheap
5581 enough here - and may even be a macro allowing compile
5585 if (PerlIO_fast_gets(fp)) {
5588 * We're going to steal some values from the stdio struct
5589 * and put EVERYTHING in the innermost loop into registers.
5591 register STDCHAR *ptr;
5595 #if defined(VMS) && defined(PERLIO_IS_STDIO)
5596 /* An ungetc()d char is handled separately from the regular
5597 * buffer, so we getc() it back out and stuff it in the buffer.
5599 i = PerlIO_getc(fp);
5600 if (i == EOF) return 0;
5601 *(--((*fp)->_ptr)) = (unsigned char) i;
5605 /* Here is some breathtakingly efficient cheating */
5607 cnt = PerlIO_get_cnt(fp); /* get count into register */
5608 (void)SvPOK_only(sv); /* validate pointer */
5609 if (SvLEN(sv) - append <= cnt + 1) { /* make sure we have the room */
5610 if (cnt > 80 && SvLEN(sv) > append) {
5611 shortbuffered = cnt - SvLEN(sv) + append + 1;
5612 cnt -= shortbuffered;
5616 /* remember that cnt can be negative */
5617 SvGROW(sv, append + (cnt <= 0 ? 2 : (cnt + 1)));
5622 bp = (STDCHAR*)SvPVX(sv) + append; /* move these two too to registers */
5623 ptr = (STDCHAR*)PerlIO_get_ptr(fp);
5624 DEBUG_P(PerlIO_printf(Perl_debug_log,
5625 "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
5626 DEBUG_P(PerlIO_printf(Perl_debug_log,
5627 "Screamer: entering: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
5628 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
5629 PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
5634 while (cnt > 0) { /* this | eat */
5636 if ((*bp++ = *ptr++) == rslast) /* really | dust */
5637 goto thats_all_folks; /* screams | sed :-) */
5641 Copy(ptr, bp, cnt, char); /* this | eat */
5642 bp += cnt; /* screams | dust */
5643 ptr += cnt; /* louder | sed :-) */
5648 if (shortbuffered) { /* oh well, must extend */
5649 cnt = shortbuffered;
5651 bpx = bp - (STDCHAR*)SvPVX(sv); /* box up before relocation */
5653 SvGROW(sv, SvLEN(sv) + append + cnt + 2);
5654 bp = (STDCHAR*)SvPVX(sv) + bpx; /* unbox after relocation */
5658 DEBUG_P(PerlIO_printf(Perl_debug_log,
5659 "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
5660 PTR2UV(ptr),(long)cnt));
5661 PerlIO_set_ptrcnt(fp, ptr, cnt); /* deregisterize cnt and ptr */
5662 DEBUG_P(PerlIO_printf(Perl_debug_log,
5663 "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
5664 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
5665 PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
5666 /* This used to call 'filbuf' in stdio form, but as that behaves like
5667 getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
5668 another abstraction. */
5669 i = PerlIO_getc(fp); /* get more characters */
5670 DEBUG_P(PerlIO_printf(Perl_debug_log,
5671 "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
5672 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
5673 PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
5674 cnt = PerlIO_get_cnt(fp);
5675 ptr = (STDCHAR*)PerlIO_get_ptr(fp); /* reregisterize cnt and ptr */
5676 DEBUG_P(PerlIO_printf(Perl_debug_log,
5677 "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
5679 if (i == EOF) /* all done for ever? */
5680 goto thats_really_all_folks;
5682 bpx = bp - (STDCHAR*)SvPVX(sv); /* box up before relocation */
5684 SvGROW(sv, bpx + cnt + 2);
5685 bp = (STDCHAR*)SvPVX(sv) + bpx; /* unbox after relocation */
5687 *bp++ = i; /* store character from PerlIO_getc */
5689 if (rslen && (STDCHAR)i == rslast) /* all done for now? */
5690 goto thats_all_folks;
5694 if ((rslen > 1 && (bp - (STDCHAR*)SvPVX(sv) < rslen)) ||
5695 memNE((char*)bp - rslen, rsptr, rslen))
5696 goto screamer; /* go back to the fray */
5697 thats_really_all_folks:
5699 cnt += shortbuffered;
5700 DEBUG_P(PerlIO_printf(Perl_debug_log,
5701 "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
5702 PerlIO_set_ptrcnt(fp, ptr, cnt); /* put these back or we're in trouble */
5703 DEBUG_P(PerlIO_printf(Perl_debug_log,
5704 "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
5705 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
5706 PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
5708 SvCUR_set(sv, bp - (STDCHAR*)SvPVX(sv)); /* set length */
5709 DEBUG_P(PerlIO_printf(Perl_debug_log,
5710 "Screamer: done, len=%ld, string=|%.*s|\n",
5711 (long)SvCUR(sv),(int)SvCUR(sv),SvPVX(sv)));
5716 /*The big, slow, and stupid way */
5719 /* Need to work around EPOC SDK features */
5720 /* On WINS: MS VC5 generates calls to _chkstk, */
5721 /* if a `large' stack frame is allocated */
5722 /* gcc on MARM does not generate calls like these */
5728 register STDCHAR *bpe = buf + sizeof(buf);
5730 while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = i) != rslast && bp < bpe)
5731 ; /* keep reading */
5735 cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
5736 /* Accomodate broken VAXC compiler, which applies U8 cast to
5737 * both args of ?: operator, causing EOF to change into 255
5739 if (cnt) { i = (U8)buf[cnt - 1]; } else { i = EOF; }
5743 sv_catpvn(sv, (char *) buf, cnt);
5745 sv_setpvn(sv, (char *) buf, cnt);
5747 if (i != EOF && /* joy */
5749 SvCUR(sv) < rslen ||
5750 memNE(SvPVX(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
5754 * If we're reading from a TTY and we get a short read,
5755 * indicating that the user hit his EOF character, we need
5756 * to notice it now, because if we try to read from the TTY
5757 * again, the EOF condition will disappear.
5759 * The comparison of cnt to sizeof(buf) is an optimization
5760 * that prevents unnecessary calls to feof().
5764 if (!(cnt < sizeof(buf) && PerlIO_eof(fp)))
5769 if (RsPARA(PL_rs)) { /* have to do this both before and after */
5770 while (i != EOF) { /* to make sure file boundaries work right */
5771 i = PerlIO_getc(fp);
5773 PerlIO_ungetc(fp,i);
5779 if (PerlIO_isutf8(fp))
5784 return (SvCUR(sv) - append) ? SvPVX(sv) : Nullch;
5790 Auto-increment of the value in the SV, doing string to numeric conversion
5791 if necessary. Handles 'get' magic.
5797 Perl_sv_inc(pTHX_ register SV *sv)
5806 if (SvTHINKFIRST(sv)) {
5807 if (SvREADONLY(sv)) {
5808 if (PL_curcop != &PL_compiling)
5809 Perl_croak(aTHX_ PL_no_modify);
5813 if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
5815 i = PTR2IV(SvRV(sv));
5820 flags = SvFLAGS(sv);
5821 if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
5822 /* It's (privately or publicly) a float, but not tested as an
5823 integer, so test it to see. */
5825 flags = SvFLAGS(sv);
5827 if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
5828 /* It's publicly an integer, or privately an integer-not-float */
5831 if (SvUVX(sv) == UV_MAX)
5832 sv_setnv(sv, (NV)UV_MAX + 1.0);
5834 (void)SvIOK_only_UV(sv);
5837 if (SvIVX(sv) == IV_MAX)
5838 sv_setuv(sv, (UV)IV_MAX + 1);
5840 (void)SvIOK_only(sv);
5846 if (flags & SVp_NOK) {
5847 (void)SvNOK_only(sv);
5852 if (!(flags & SVp_POK) || !*SvPVX(sv)) {
5853 if ((flags & SVTYPEMASK) < SVt_PVIV)
5854 sv_upgrade(sv, SVt_IV);
5855 (void)SvIOK_only(sv);
5860 while (isALPHA(*d)) d++;
5861 while (isDIGIT(*d)) d++;
5863 #ifdef PERL_PRESERVE_IVUV
5864 /* Got to punt this an an integer if needs be, but we don't issue
5865 warnings. Probably ought to make the sv_iv_please() that does
5866 the conversion if possible, and silently. */
5867 int numtype = grok_number(SvPVX(sv), SvCUR(sv), NULL);
5868 if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
5869 /* Need to try really hard to see if it's an integer.
5870 9.22337203685478e+18 is an integer.
5871 but "9.22337203685478e+18" + 0 is UV=9223372036854779904
5872 so $a="9.22337203685478e+18"; $a+0; $a++
5873 needs to be the same as $a="9.22337203685478e+18"; $a++
5880 /* sv_2iv *should* have made this an NV */
5881 if (flags & SVp_NOK) {
5882 (void)SvNOK_only(sv);
5886 /* I don't think we can get here. Maybe I should assert this
5887 And if we do get here I suspect that sv_setnv will croak. NWC
5889 #if defined(USE_LONG_DOUBLE)
5890 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",
5891 SvPVX(sv), SvIVX(sv), SvNVX(sv)));
5893 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%g\n",
5894 SvPVX(sv), SvIVX(sv), SvNVX(sv)));
5897 #endif /* PERL_PRESERVE_IVUV */
5898 sv_setnv(sv,Atof(SvPVX(sv)) + 1.0);
5902 while (d >= SvPVX(sv)) {
5910 /* MKS: The original code here died if letters weren't consecutive.
5911 * at least it didn't have to worry about non-C locales. The
5912 * new code assumes that ('z'-'a')==('Z'-'A'), letters are
5913 * arranged in order (although not consecutively) and that only
5914 * [A-Za-z] are accepted by isALPHA in the C locale.
5916 if (*d != 'z' && *d != 'Z') {
5917 do { ++*d; } while (!isALPHA(*d));
5920 *(d--) -= 'z' - 'a';
5925 *(d--) -= 'z' - 'a' + 1;
5929 /* oh,oh, the number grew */
5930 SvGROW(sv, SvCUR(sv) + 2);
5932 for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX(sv); d--)
5943 Auto-decrement of the value in the SV, doing string to numeric conversion
5944 if necessary. Handles 'get' magic.
5950 Perl_sv_dec(pTHX_ register SV *sv)
5958 if (SvTHINKFIRST(sv)) {
5959 if (SvREADONLY(sv)) {
5960 if (PL_curcop != &PL_compiling)
5961 Perl_croak(aTHX_ PL_no_modify);
5965 if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
5967 i = PTR2IV(SvRV(sv));
5972 /* Unlike sv_inc we don't have to worry about string-never-numbers
5973 and keeping them magic. But we mustn't warn on punting */
5974 flags = SvFLAGS(sv);
5975 if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
5976 /* It's publicly an integer, or privately an integer-not-float */
5979 if (SvUVX(sv) == 0) {
5980 (void)SvIOK_only(sv);
5984 (void)SvIOK_only_UV(sv);
5988 if (SvIVX(sv) == IV_MIN)
5989 sv_setnv(sv, (NV)IV_MIN - 1.0);
5991 (void)SvIOK_only(sv);
5997 if (flags & SVp_NOK) {
5999 (void)SvNOK_only(sv);
6002 if (!(flags & SVp_POK)) {
6003 if ((flags & SVTYPEMASK) < SVt_PVNV)
6004 sv_upgrade(sv, SVt_NV);
6006 (void)SvNOK_only(sv);
6009 #ifdef PERL_PRESERVE_IVUV
6011 int numtype = grok_number(SvPVX(sv), SvCUR(sv), NULL);
6012 if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
6013 /* Need to try really hard to see if it's an integer.
6014 9.22337203685478e+18 is an integer.
6015 but "9.22337203685478e+18" + 0 is UV=9223372036854779904
6016 so $a="9.22337203685478e+18"; $a+0; $a--
6017 needs to be the same as $a="9.22337203685478e+18"; $a--
6024 /* sv_2iv *should* have made this an NV */
6025 if (flags & SVp_NOK) {
6026 (void)SvNOK_only(sv);
6030 /* I don't think we can get here. Maybe I should assert this
6031 And if we do get here I suspect that sv_setnv will croak. NWC
6033 #if defined(USE_LONG_DOUBLE)
6034 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",
6035 SvPVX(sv), SvIVX(sv), SvNVX(sv)));
6037 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%g\n",
6038 SvPVX(sv), SvIVX(sv), SvNVX(sv)));
6042 #endif /* PERL_PRESERVE_IVUV */
6043 sv_setnv(sv,Atof(SvPVX(sv)) - 1.0); /* punt */
6047 =for apidoc sv_mortalcopy
6049 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
6050 The new SV is marked as mortal. It will be destroyed when the current
6051 context ends. See also C<sv_newmortal> and C<sv_2mortal>.
6056 /* Make a string that will exist for the duration of the expression
6057 * evaluation. Actually, it may have to last longer than that, but
6058 * hopefully we won't free it until it has been assigned to a
6059 * permanent location. */
6062 Perl_sv_mortalcopy(pTHX_ SV *oldstr)
6067 sv_setsv(sv,oldstr);
6069 PL_tmps_stack[++PL_tmps_ix] = sv;
6075 =for apidoc sv_newmortal
6077 Creates a new null SV which is mortal. The reference count of the SV is
6078 set to 1. It will be destroyed when the current context ends. See
6079 also C<sv_mortalcopy> and C<sv_2mortal>.
6085 Perl_sv_newmortal(pTHX)
6090 SvFLAGS(sv) = SVs_TEMP;
6092 PL_tmps_stack[++PL_tmps_ix] = sv;
6097 =for apidoc sv_2mortal
6099 Marks an existing SV as mortal. The SV will be destroyed when the current
6100 context ends. See also C<sv_newmortal> and C<sv_mortalcopy>.
6106 Perl_sv_2mortal(pTHX_ register SV *sv)
6110 if (SvREADONLY(sv) && SvIMMORTAL(sv))
6113 PL_tmps_stack[++PL_tmps_ix] = sv;
6121 Creates a new SV and copies a string into it. The reference count for the
6122 SV is set to 1. If C<len> is zero, Perl will compute the length using
6123 strlen(). For efficiency, consider using C<newSVpvn> instead.
6129 Perl_newSVpv(pTHX_ const char *s, STRLEN len)
6136 sv_setpvn(sv,s,len);
6141 =for apidoc newSVpvn
6143 Creates a new SV and copies a string into it. The reference count for the
6144 SV is set to 1. Note that if C<len> is zero, Perl will create a zero length
6145 string. You are responsible for ensuring that the source string is at least
6152 Perl_newSVpvn(pTHX_ const char *s, STRLEN len)
6157 sv_setpvn(sv,s,len);
6162 =for apidoc newSVpvn_share
6164 Creates a new SV with its SvPVX pointing to a shared string in the string
6165 table. If the string does not already exist in the table, it is created
6166 first. Turns on READONLY and FAKE. The string's hash is stored in the UV
6167 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
6168 otherwise the hash is computed. The idea here is that as the string table
6169 is used for shared hash keys these strings will have SvPVX == HeKEY and
6170 hash lookup will avoid string compare.
6176 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
6179 bool is_utf8 = FALSE;
6184 if (is_utf8 && !(PL_hints & HINT_UTF8_DISTINCT)) {
6185 STRLEN tmplen = len;
6186 /* See the note in hv.c:hv_fetch() --jhi */
6187 src = (char*)bytes_from_utf8((U8*)src, &tmplen, &is_utf8);
6191 PERL_HASH(hash, src, len);
6193 sv_upgrade(sv, SVt_PVIV);
6194 SvPVX(sv) = sharepvn(src, is_utf8?-len:len, hash);
6207 #if defined(PERL_IMPLICIT_CONTEXT)
6209 /* pTHX_ magic can't cope with varargs, so this is a no-context
6210 * version of the main function, (which may itself be aliased to us).
6211 * Don't access this version directly.
6215 Perl_newSVpvf_nocontext(const char* pat, ...)
6220 va_start(args, pat);
6221 sv = vnewSVpvf(pat, &args);
6228 =for apidoc newSVpvf
6230 Creates a new SV and initializes it with the string formatted like
6237 Perl_newSVpvf(pTHX_ const char* pat, ...)
6241 va_start(args, pat);
6242 sv = vnewSVpvf(pat, &args);
6247 /* backend for newSVpvf() and newSVpvf_nocontext() */
6250 Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args)
6254 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
6261 Creates a new SV and copies a floating point value into it.
6262 The reference count for the SV is set to 1.
6268 Perl_newSVnv(pTHX_ NV n)
6280 Creates a new SV and copies an integer into it. The reference count for the
6287 Perl_newSViv(pTHX_ IV i)
6299 Creates a new SV and copies an unsigned integer into it.
6300 The reference count for the SV is set to 1.
6306 Perl_newSVuv(pTHX_ UV u)
6316 =for apidoc newRV_noinc
6318 Creates an RV wrapper for an SV. The reference count for the original
6319 SV is B<not> incremented.
6325 Perl_newRV_noinc(pTHX_ SV *tmpRef)
6330 sv_upgrade(sv, SVt_RV);
6337 /* newRV_inc is the official function name to use now.
6338 * newRV_inc is in fact #defined to newRV in sv.h
6342 Perl_newRV(pTHX_ SV *tmpRef)
6344 return newRV_noinc(SvREFCNT_inc(tmpRef));
6350 Creates a new SV which is an exact duplicate of the original SV.
6357 Perl_newSVsv(pTHX_ register SV *old)
6363 if (SvTYPE(old) == SVTYPEMASK) {
6364 if (ckWARN_d(WARN_INTERNAL))
6365 Perl_warner(aTHX_ WARN_INTERNAL, "semi-panic: attempt to dup freed string");
6380 =for apidoc sv_reset
6382 Underlying implementation for the C<reset> Perl function.
6383 Note that the perl-level function is vaguely deprecated.
6389 Perl_sv_reset(pTHX_ register char *s, HV *stash)
6397 char todo[PERL_UCHAR_MAX+1];
6402 if (!*s) { /* reset ?? searches */
6403 for (pm = HvPMROOT(stash); pm; pm = pm->op_pmnext) {
6404 pm->op_pmdynflags &= ~PMdf_USED;
6409 /* reset variables */
6411 if (!HvARRAY(stash))
6414 Zero(todo, 256, char);
6416 i = (unsigned char)*s;
6420 max = (unsigned char)*s++;
6421 for ( ; i <= max; i++) {
6424 for (i = 0; i <= (I32) HvMAX(stash); i++) {
6425 for (entry = HvARRAY(stash)[i];
6427 entry = HeNEXT(entry))
6429 if (!todo[(U8)*HeKEY(entry)])
6431 gv = (GV*)HeVAL(entry);
6433 if (SvTHINKFIRST(sv)) {
6434 if (!SvREADONLY(sv) && SvROK(sv))
6439 if (SvTYPE(sv) >= SVt_PV) {
6441 if (SvPVX(sv) != Nullch)
6448 if (GvHV(gv) && !HvNAME(GvHV(gv))) {
6450 #ifdef USE_ENVIRON_ARRAY
6452 environ[0] = Nullch;
6463 Using various gambits, try to get an IO from an SV: the IO slot if its a
6464 GV; or the recursive result if we're an RV; or the IO slot of the symbol
6465 named after the PV if we're a string.
6471 Perl_sv_2io(pTHX_ SV *sv)
6477 switch (SvTYPE(sv)) {
6485 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
6489 Perl_croak(aTHX_ PL_no_usym, "filehandle");
6491 return sv_2io(SvRV(sv));
6492 gv = gv_fetchpv(SvPV(sv,n_a), FALSE, SVt_PVIO);
6498 Perl_croak(aTHX_ "Bad filehandle: %s", SvPV(sv,n_a));
6507 Using various gambits, try to get a CV from an SV; in addition, try if
6508 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
6514 Perl_sv_2cv(pTHX_ SV *sv, HV **st, GV **gvp, I32 lref)
6521 return *gvp = Nullgv, Nullcv;
6522 switch (SvTYPE(sv)) {
6541 SV **sp = &sv; /* Used in tryAMAGICunDEREF macro. */
6542 tryAMAGICunDEREF(to_cv);
6545 if (SvTYPE(sv) == SVt_PVCV) {
6554 Perl_croak(aTHX_ "Not a subroutine reference");
6559 gv = gv_fetchpv(SvPV(sv, n_a), lref, SVt_PVCV);
6565 if (lref && !GvCVu(gv)) {
6568 tmpsv = NEWSV(704,0);
6569 gv_efullname3(tmpsv, gv, Nullch);
6570 /* XXX this is probably not what they think they're getting.
6571 * It has the same effect as "sub name;", i.e. just a forward
6573 newSUB(start_subparse(FALSE, 0),
6574 newSVOP(OP_CONST, 0, tmpsv),
6579 Perl_croak(aTHX_ "Unable to create sub named \"%s\"", SvPV(sv,n_a));
6588 Returns true if the SV has a true value by Perl's rules.
6589 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
6590 instead use an in-line version.
6596 Perl_sv_true(pTHX_ register SV *sv)
6602 if ((tXpv = (XPV*)SvANY(sv)) &&
6603 (tXpv->xpv_cur > 1 ||
6604 (tXpv->xpv_cur && *tXpv->xpv_pv != '0')))
6611 return SvIVX(sv) != 0;
6614 return SvNVX(sv) != 0.0;
6616 return sv_2bool(sv);
6624 A private implementation of the C<SvIVx> macro for compilers which can't
6625 cope with complex macro expressions. Always use the macro instead.
6631 Perl_sv_iv(pTHX_ register SV *sv)
6635 return (IV)SvUVX(sv);
6644 A private implementation of the C<SvUVx> macro for compilers which can't
6645 cope with complex macro expressions. Always use the macro instead.
6651 Perl_sv_uv(pTHX_ register SV *sv)
6656 return (UV)SvIVX(sv);
6664 A private implementation of the C<SvNVx> macro for compilers which can't
6665 cope with complex macro expressions. Always use the macro instead.
6671 Perl_sv_nv(pTHX_ register SV *sv)
6681 A private implementation of the C<SvPV_nolen> macro for compilers which can't
6682 cope with complex macro expressions. Always use the macro instead.
6688 Perl_sv_pv(pTHX_ SV *sv)
6695 return sv_2pv(sv, &n_a);
6701 A private implementation of the C<SvPV> macro for compilers which can't
6702 cope with complex macro expressions. Always use the macro instead.
6708 Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
6714 return sv_2pv(sv, lp);
6718 =for apidoc sv_pvn_force
6720 Get a sensible string out of the SV somehow.
6721 A private implementation of the C<SvPV_force> macro for compilers which
6722 can't cope with complex macro expressions. Always use the macro instead.
6728 Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
6730 return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
6734 =for apidoc sv_pvn_force_flags
6736 Get a sensible string out of the SV somehow.
6737 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
6738 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
6739 implemented in terms of this function.
6740 You normally want to use the various wrapper macros instead: see
6741 C<SvPV_force> and C<SvPV_force_nomg>
6747 Perl_sv_pvn_force_flags(pTHX_ SV *sv, STRLEN *lp, I32 flags)
6751 if (SvTHINKFIRST(sv) && !SvROK(sv))
6752 sv_force_normal(sv);
6758 if (SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM) {
6759 Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
6760 PL_op_name[PL_op->op_type]);
6763 s = sv_2pv_flags(sv, lp, flags);
6764 if (s != SvPVX(sv)) { /* Almost, but not quite, sv_setpvn() */
6769 (void)SvUPGRADE(sv, SVt_PV); /* Never FALSE */
6770 SvGROW(sv, len + 1);
6771 Move(s,SvPVX(sv),len,char);
6776 SvPOK_on(sv); /* validate pointer */
6778 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
6779 PTR2UV(sv),SvPVX(sv)));
6786 =for apidoc sv_pvbyte
6788 A private implementation of the C<SvPVbyte_nolen> macro for compilers
6789 which can't cope with complex macro expressions. Always use the macro
6796 Perl_sv_pvbyte(pTHX_ SV *sv)
6798 sv_utf8_downgrade(sv,0);
6803 =for apidoc sv_pvbyten
6805 A private implementation of the C<SvPVbyte> macro for compilers
6806 which can't cope with complex macro expressions. Always use the macro
6813 Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
6815 sv_utf8_downgrade(sv,0);
6816 return sv_pvn(sv,lp);
6820 =for apidoc sv_pvbyten_force
6822 A private implementation of the C<SvPVbytex_force> macro for compilers
6823 which can't cope with complex macro expressions. Always use the macro
6830 Perl_sv_pvbyten_force(pTHX_ SV *sv, STRLEN *lp)
6832 sv_utf8_downgrade(sv,0);
6833 return sv_pvn_force(sv,lp);
6837 =for apidoc sv_pvutf8
6839 A private implementation of the C<SvPVutf8_nolen> macro for compilers
6840 which can't cope with complex macro expressions. Always use the macro
6847 Perl_sv_pvutf8(pTHX_ SV *sv)
6849 sv_utf8_upgrade(sv);
6854 =for apidoc sv_pvutf8n
6856 A private implementation of the C<SvPVutf8> macro for compilers
6857 which can't cope with complex macro expressions. Always use the macro
6864 Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
6866 sv_utf8_upgrade(sv);
6867 return sv_pvn(sv,lp);
6871 =for apidoc sv_pvutf8n_force
6873 A private implementation of the C<SvPVutf8_force> macro for compilers
6874 which can't cope with complex macro expressions. Always use the macro
6881 Perl_sv_pvutf8n_force(pTHX_ SV *sv, STRLEN *lp)
6883 sv_utf8_upgrade(sv);
6884 return sv_pvn_force(sv,lp);
6888 =for apidoc sv_reftype
6890 Returns a string describing what the SV is a reference to.
6896 Perl_sv_reftype(pTHX_ SV *sv, int ob)
6898 if (ob && SvOBJECT(sv))
6899 return HvNAME(SvSTASH(sv));
6901 switch (SvTYPE(sv)) {
6915 case SVt_PVLV: return "LVALUE";
6916 case SVt_PVAV: return "ARRAY";
6917 case SVt_PVHV: return "HASH";
6918 case SVt_PVCV: return "CODE";
6919 case SVt_PVGV: return "GLOB";
6920 case SVt_PVFM: return "FORMAT";
6921 case SVt_PVIO: return "IO";
6922 default: return "UNKNOWN";
6928 =for apidoc sv_isobject
6930 Returns a boolean indicating whether the SV is an RV pointing to a blessed
6931 object. If the SV is not an RV, or if the object is not blessed, then this
6938 Perl_sv_isobject(pTHX_ SV *sv)
6955 Returns a boolean indicating whether the SV is blessed into the specified
6956 class. This does not check for subtypes; use C<sv_derived_from> to verify
6957 an inheritance relationship.
6963 Perl_sv_isa(pTHX_ SV *sv, const char *name)
6975 return strEQ(HvNAME(SvSTASH(sv)), name);
6981 Creates a new SV for the RV, C<rv>, to point to. If C<rv> is not an RV then
6982 it will be upgraded to one. If C<classname> is non-null then the new SV will
6983 be blessed in the specified package. The new SV is returned and its
6984 reference count is 1.
6990 Perl_newSVrv(pTHX_ SV *rv, const char *classname)
6996 SV_CHECK_THINKFIRST(rv);
6999 if (SvTYPE(rv) >= SVt_PVMG) {
7000 U32 refcnt = SvREFCNT(rv);
7004 SvREFCNT(rv) = refcnt;
7007 if (SvTYPE(rv) < SVt_RV)
7008 sv_upgrade(rv, SVt_RV);
7009 else if (SvTYPE(rv) > SVt_RV) {
7010 (void)SvOOK_off(rv);
7011 if (SvPVX(rv) && SvLEN(rv))
7012 Safefree(SvPVX(rv));
7022 HV* stash = gv_stashpv(classname, TRUE);
7023 (void)sv_bless(rv, stash);
7029 =for apidoc sv_setref_pv
7031 Copies a pointer into a new SV, optionally blessing the SV. The C<rv>
7032 argument will be upgraded to an RV. That RV will be modified to point to
7033 the new SV. If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
7034 into the SV. The C<classname> argument indicates the package for the
7035 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
7036 will be returned and will have a reference count of 1.
7038 Do not use with other Perl types such as HV, AV, SV, CV, because those
7039 objects will become corrupted by the pointer copy process.
7041 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
7047 Perl_sv_setref_pv(pTHX_ SV *rv, const char *classname, void *pv)
7050 sv_setsv(rv, &PL_sv_undef);
7054 sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
7059 =for apidoc sv_setref_iv
7061 Copies an integer into a new SV, optionally blessing the SV. The C<rv>
7062 argument will be upgraded to an RV. That RV will be modified to point to
7063 the new SV. The C<classname> argument indicates the package for the
7064 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
7065 will be returned and will have a reference count of 1.
7071 Perl_sv_setref_iv(pTHX_ SV *rv, const char *classname, IV iv)
7073 sv_setiv(newSVrv(rv,classname), iv);
7078 =for apidoc sv_setref_uv
7080 Copies an unsigned integer into a new SV, optionally blessing the SV. The C<rv>
7081 argument will be upgraded to an RV. That RV will be modified to point to
7082 the new SV. The C<classname> argument indicates the package for the
7083 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
7084 will be returned and will have a reference count of 1.
7090 Perl_sv_setref_uv(pTHX_ SV *rv, const char *classname, UV uv)
7092 sv_setuv(newSVrv(rv,classname), uv);
7097 =for apidoc sv_setref_nv
7099 Copies a double into a new SV, optionally blessing the SV. The C<rv>
7100 argument will be upgraded to an RV. That RV will be modified to point to
7101 the new SV. The C<classname> argument indicates the package for the
7102 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
7103 will be returned and will have a reference count of 1.
7109 Perl_sv_setref_nv(pTHX_ SV *rv, const char *classname, NV nv)
7111 sv_setnv(newSVrv(rv,classname), nv);
7116 =for apidoc sv_setref_pvn
7118 Copies a string into a new SV, optionally blessing the SV. The length of the
7119 string must be specified with C<n>. The C<rv> argument will be upgraded to
7120 an RV. That RV will be modified to point to the new SV. The C<classname>
7121 argument indicates the package for the blessing. Set C<classname> to
7122 C<Nullch> to avoid the blessing. The new SV will be returned and will have
7123 a reference count of 1.
7125 Note that C<sv_setref_pv> copies the pointer while this copies the string.
7131 Perl_sv_setref_pvn(pTHX_ SV *rv, const char *classname, char *pv, STRLEN n)
7133 sv_setpvn(newSVrv(rv,classname), pv, n);
7138 =for apidoc sv_bless
7140 Blesses an SV into a specified package. The SV must be an RV. The package
7141 must be designated by its stash (see C<gv_stashpv()>). The reference count
7142 of the SV is unaffected.
7148 Perl_sv_bless(pTHX_ SV *sv, HV *stash)
7152 Perl_croak(aTHX_ "Can't bless non-reference value");
7154 if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
7155 if (SvREADONLY(tmpRef))
7156 Perl_croak(aTHX_ PL_no_modify);
7157 if (SvOBJECT(tmpRef)) {
7158 if (SvTYPE(tmpRef) != SVt_PVIO)
7160 SvREFCNT_dec(SvSTASH(tmpRef));
7163 SvOBJECT_on(tmpRef);
7164 if (SvTYPE(tmpRef) != SVt_PVIO)
7166 (void)SvUPGRADE(tmpRef, SVt_PVMG);
7167 SvSTASH(tmpRef) = (HV*)SvREFCNT_inc(stash);
7177 /* Downgrades a PVGV to a PVMG.
7179 * XXX This function doesn't actually appear to be used anywhere
7184 S_sv_unglob(pTHX_ SV *sv)
7188 assert(SvTYPE(sv) == SVt_PVGV);
7193 SvREFCNT_dec(GvSTASH(sv));
7194 GvSTASH(sv) = Nullhv;
7196 sv_unmagic(sv, PERL_MAGIC_glob);
7197 Safefree(GvNAME(sv));
7200 /* need to keep SvANY(sv) in the right arena */
7201 xpvmg = new_XPVMG();
7202 StructCopy(SvANY(sv), xpvmg, XPVMG);
7203 del_XPVGV(SvANY(sv));
7206 SvFLAGS(sv) &= ~SVTYPEMASK;
7207 SvFLAGS(sv) |= SVt_PVMG;
7211 =for apidoc sv_unref_flags
7213 Unsets the RV status of the SV, and decrements the reference count of
7214 whatever was being referenced by the RV. This can almost be thought of
7215 as a reversal of C<newSVrv>. The C<cflags> argument can contain
7216 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
7217 (otherwise the decrementing is conditional on the reference count being
7218 different from one or the reference being a readonly SV).
7225 Perl_sv_unref_flags(pTHX_ SV *sv, U32 flags)
7229 if (SvWEAKREF(sv)) {
7237 if (SvREFCNT(rv) != 1 || SvREADONLY(rv) || flags) /* SV_IMMEDIATE_UNREF */
7239 else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
7240 sv_2mortal(rv); /* Schedule for freeing later */
7244 =for apidoc sv_unref
7246 Unsets the RV status of the SV, and decrements the reference count of
7247 whatever was being referenced by the RV. This can almost be thought of
7248 as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
7249 being zero. See C<SvROK_off>.
7255 Perl_sv_unref(pTHX_ SV *sv)
7257 sv_unref_flags(sv, 0);
7261 =for apidoc sv_taint
7263 Taint an SV. Use C<SvTAINTED_on> instead.
7268 Perl_sv_taint(pTHX_ SV *sv)
7270 sv_magic((sv), Nullsv, PERL_MAGIC_taint, Nullch, 0);
7274 =for apidoc sv_untaint
7276 Untaint an SV. Use C<SvTAINTED_off> instead.
7281 Perl_sv_untaint(pTHX_ SV *sv)
7283 if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
7284 MAGIC *mg = mg_find(sv, PERL_MAGIC_taint);
7291 =for apidoc sv_tainted
7293 Test an SV for taintedness. Use C<SvTAINTED> instead.
7298 Perl_sv_tainted(pTHX_ SV *sv)
7300 if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
7301 MAGIC *mg = mg_find(sv, PERL_MAGIC_taint);
7302 if (mg && ((mg->mg_len & 1) || ((mg->mg_len & 2) && mg->mg_obj == sv)))
7309 =for apidoc sv_setpviv
7311 Copies an integer into the given SV, also updating its string value.
7312 Does not handle 'set' magic. See C<sv_setpviv_mg>.
7318 Perl_sv_setpviv(pTHX_ SV *sv, IV iv)
7320 char buf[TYPE_CHARS(UV)];
7322 char *ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
7324 sv_setpvn(sv, ptr, ebuf - ptr);
7328 =for apidoc sv_setpviv_mg
7330 Like C<sv_setpviv>, but also handles 'set' magic.
7336 Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv)
7338 char buf[TYPE_CHARS(UV)];
7340 char *ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
7342 sv_setpvn(sv, ptr, ebuf - ptr);
7346 #if defined(PERL_IMPLICIT_CONTEXT)
7348 /* pTHX_ magic can't cope with varargs, so this is a no-context
7349 * version of the main function, (which may itself be aliased to us).
7350 * Don't access this version directly.
7354 Perl_sv_setpvf_nocontext(SV *sv, const char* pat, ...)
7358 va_start(args, pat);
7359 sv_vsetpvf(sv, pat, &args);
7363 /* pTHX_ magic can't cope with varargs, so this is a no-context
7364 * version of the main function, (which may itself be aliased to us).
7365 * Don't access this version directly.
7369 Perl_sv_setpvf_mg_nocontext(SV *sv, const char* pat, ...)
7373 va_start(args, pat);
7374 sv_vsetpvf_mg(sv, pat, &args);
7380 =for apidoc sv_setpvf
7382 Processes its arguments like C<sprintf> and sets an SV to the formatted
7383 output. Does not handle 'set' magic. See C<sv_setpvf_mg>.
7389 Perl_sv_setpvf(pTHX_ SV *sv, const char* pat, ...)
7392 va_start(args, pat);
7393 sv_vsetpvf(sv, pat, &args);
7397 /* backend for C<sv_setpvf> and C<sv_setpvf_nocontext> */
7400 Perl_sv_vsetpvf(pTHX_ SV *sv, const char* pat, va_list* args)
7402 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
7406 =for apidoc sv_setpvf_mg
7408 Like C<sv_setpvf>, but also handles 'set' magic.
7414 Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...)
7417 va_start(args, pat);
7418 sv_vsetpvf_mg(sv, pat, &args);
7422 /* backend for C<sv_setpvf_mg> C<setpvf_mg_nocontext> */
7425 Perl_sv_vsetpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
7427 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
7431 #if defined(PERL_IMPLICIT_CONTEXT)
7433 /* pTHX_ magic can't cope with varargs, so this is a no-context
7434 * version of the main function, (which may itself be aliased to us).
7435 * Don't access this version directly.
7439 Perl_sv_catpvf_nocontext(SV *sv, const char* pat, ...)
7443 va_start(args, pat);
7444 sv_vcatpvf(sv, pat, &args);
7448 /* pTHX_ magic can't cope with varargs, so this is a no-context
7449 * version of the main function, (which may itself be aliased to us).
7450 * Don't access this version directly.
7454 Perl_sv_catpvf_mg_nocontext(SV *sv, const char* pat, ...)
7458 va_start(args, pat);
7459 sv_vcatpvf_mg(sv, pat, &args);
7465 =for apidoc sv_catpvf
7467 Processes its arguments like C<sprintf> and appends the formatted
7468 output to an SV. If the appended data contains "wide" characters
7469 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
7470 and characters >255 formatted with %c), the original SV might get
7471 upgraded to UTF-8. Handles 'get' magic, but not 'set' magic.
7472 C<SvSETMAGIC()> must typically be called after calling this function
7473 to handle 'set' magic.
7478 Perl_sv_catpvf(pTHX_ SV *sv, const char* pat, ...)
7481 va_start(args, pat);
7482 sv_vcatpvf(sv, pat, &args);
7486 /* backend for C<sv_catpvf> and C<catpvf_mg_nocontext> */
7489 Perl_sv_vcatpvf(pTHX_ SV *sv, const char* pat, va_list* args)
7491 sv_vcatpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
7495 =for apidoc sv_catpvf_mg
7497 Like C<sv_catpvf>, but also handles 'set' magic.
7503 Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...)
7506 va_start(args, pat);
7507 sv_vcatpvf_mg(sv, pat, &args);
7511 /* backend for C<catpvf_mg> and C<catpvf_mg_nocontext> */
7514 Perl_sv_vcatpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
7516 sv_vcatpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
7521 =for apidoc sv_vsetpvfn
7523 Works like C<vcatpvfn> but copies the text into the SV instead of
7526 Usually used via one of its frontends C<sv_setpvf> and C<sv_setpvf_mg>.
7532 Perl_sv_vsetpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
7534 sv_setpvn(sv, "", 0);
7535 sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
7538 /* private function for use in sv_vcatpvfn via the EXPECT_NUMBER macro */
7541 S_expect_number(pTHX_ char** pattern)
7544 switch (**pattern) {
7545 case '1': case '2': case '3':
7546 case '4': case '5': case '6':
7547 case '7': case '8': case '9':
7548 while (isDIGIT(**pattern))
7549 var = var * 10 + (*(*pattern)++ - '0');
7553 #define EXPECT_NUMBER(pattern, var) (var = S_expect_number(aTHX_ &pattern))
7556 =for apidoc sv_vcatpvfn
7558 Processes its arguments like C<vsprintf> and appends the formatted output
7559 to an SV. Uses an array of SVs if the C style variable argument list is
7560 missing (NULL). When running with taint checks enabled, indicates via
7561 C<maybe_tainted> if results are untrustworthy (often due to the use of
7564 Usually used via one of its frontends C<sv_catpvf> and C<sv_catpvf_mg>.
7570 Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
7577 static char nullstr[] = "(null)";
7580 /* no matter what, this is a string now */
7581 (void)SvPV_force(sv, origlen);
7583 /* special-case "", "%s", and "%_" */
7586 if (patlen == 2 && pat[0] == '%') {
7590 char *s = va_arg(*args, char*);
7591 sv_catpv(sv, s ? s : nullstr);
7593 else if (svix < svmax) {
7594 sv_catsv(sv, *svargs);
7595 if (DO_UTF8(*svargs))
7601 argsv = va_arg(*args, SV*);
7602 sv_catsv(sv, argsv);
7607 /* See comment on '_' below */
7612 patend = (char*)pat + patlen;
7613 for (p = (char*)pat; p < patend; p = q) {
7616 bool vectorize = FALSE;
7617 bool vectorarg = FALSE;
7618 bool vec_utf = FALSE;
7624 bool has_precis = FALSE;
7626 bool is_utf = FALSE;
7629 U8 utf8buf[UTF8_MAXLEN+1];
7630 STRLEN esignlen = 0;
7632 char *eptr = Nullch;
7634 /* Times 4: a decimal digit takes more than 3 binary digits.
7635 * NV_DIG: mantissa takes than many decimal digits.
7636 * Plus 32: Playing safe. */
7637 char ebuf[IV_DIG * 4 + NV_DIG + 32];
7638 /* large enough for "%#.#f" --chip */
7639 /* what about long double NVs? --jhi */
7642 U8 *vecstr = Null(U8*);
7654 STRLEN dotstrlen = 1;
7655 I32 efix = 0; /* explicit format parameter index */
7656 I32 ewix = 0; /* explicit width index */
7657 I32 epix = 0; /* explicit precision index */
7658 I32 evix = 0; /* explicit vector index */
7659 bool asterisk = FALSE;
7661 /* echo everything up to the next format specification */
7662 for (q = p; q < patend && *q != '%'; ++q) ;
7664 sv_catpvn(sv, p, q - p);
7671 We allow format specification elements in this order:
7672 \d+\$ explicit format parameter index
7674 \*?(\d+\$)?v vector with optional (optionally specified) arg
7675 \d+|\*(\d+\$)? width using optional (optionally specified) arg
7676 \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
7678 [%bcdefginopsux_DFOUX] format (mandatory)
7680 if (EXPECT_NUMBER(q, width)) {
7721 if (EXPECT_NUMBER(q, ewix))
7730 if ((vectorarg = asterisk)) {
7740 EXPECT_NUMBER(q, width);
7745 vecsv = va_arg(*args, SV*);
7747 vecsv = (evix ? evix <= svmax : svix < svmax) ?
7748 svargs[ewix ? ewix-1 : svix++] : &PL_sv_undef;
7749 dotstr = SvPVx(vecsv, dotstrlen);
7754 vecsv = va_arg(*args, SV*);
7755 vecstr = (U8*)SvPVx(vecsv,veclen);
7756 vec_utf = DO_UTF8(vecsv);
7758 else if (efix ? efix <= svmax : svix < svmax) {
7759 vecsv = svargs[efix ? efix-1 : svix++];
7760 vecstr = (U8*)SvPVx(vecsv,veclen);
7761 vec_utf = DO_UTF8(vecsv);
7771 i = va_arg(*args, int);
7773 i = (ewix ? ewix <= svmax : svix < svmax) ?
7774 SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
7776 width = (i < 0) ? -i : i;
7786 if (EXPECT_NUMBER(q, epix) && *q++ != '$') /* epix currently unused */
7789 i = va_arg(*args, int);
7791 i = (ewix ? ewix <= svmax : svix < svmax)
7792 ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
7793 precis = (i < 0) ? 0 : i;
7798 precis = precis * 10 + (*q++ - '0');
7806 #if defined(HAS_QUAD) || (defined(HAS_LONG_DOUBLE) && defined(USE_LONG_DOUBLE))
7817 #if defined(HAS_QUAD) || (defined(HAS_LONG_DOUBLE) && defined(USE_LONG_DOUBLE))
7818 if (*(q + 1) == 'l') { /* lld, llf */
7841 argsv = (efix ? efix <= svmax : svix < svmax) ?
7842 svargs[efix ? efix-1 : svix++] : &PL_sv_undef;
7849 uv = args ? va_arg(*args, int) : SvIVx(argsv);
7851 (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
7853 eptr = (char*)utf8buf;
7854 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
7866 eptr = va_arg(*args, char*);
7868 #ifdef MACOS_TRADITIONAL
7869 /* On MacOS, %#s format is used for Pascal strings */
7874 elen = strlen(eptr);
7877 elen = sizeof nullstr - 1;
7881 eptr = SvPVx(argsv, elen);
7882 if (DO_UTF8(argsv)) {
7883 if (has_precis && precis < elen) {
7885 sv_pos_u2b(argsv, &p, 0); /* sticks at end */
7888 if (width) { /* fudge width (can't fudge elen) */
7889 width += elen - sv_len_utf8(argsv);
7898 * The "%_" hack might have to be changed someday,
7899 * if ISO or ANSI decide to use '_' for something.
7900 * So we keep it hidden from users' code.
7904 argsv = va_arg(*args, SV*);
7905 eptr = SvPVx(argsv, elen);
7911 if (has_precis && elen > precis)
7920 uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
7938 iv = (IV)utf8n_to_uvchr(vecstr, veclen, &ulen, 0);
7948 case 'h': iv = (short)va_arg(*args, int); break;
7949 default: iv = va_arg(*args, int); break;
7950 case 'l': iv = va_arg(*args, long); break;
7951 case 'V': iv = va_arg(*args, IV); break;
7953 case 'q': iv = va_arg(*args, Quad_t); break;
7960 case 'h': iv = (short)iv; break;
7962 case 'l': iv = (long)iv; break;
7965 case 'q': iv = (Quad_t)iv; break;
7972 esignbuf[esignlen++] = plus;
7976 esignbuf[esignlen++] = '-';
8018 uv = utf8n_to_uvchr(vecstr, veclen, &ulen, 0);
8028 case 'h': uv = (unsigned short)va_arg(*args, unsigned); break;
8029 default: uv = va_arg(*args, unsigned); break;
8030 case 'l': uv = va_arg(*args, unsigned long); break;
8031 case 'V': uv = va_arg(*args, UV); break;
8033 case 'q': uv = va_arg(*args, Quad_t); break;
8040 case 'h': uv = (unsigned short)uv; break;
8042 case 'l': uv = (unsigned long)uv; break;
8045 case 'q': uv = (Quad_t)uv; break;
8051 eptr = ebuf + sizeof ebuf;
8057 p = (char*)((c == 'X')
8058 ? "0123456789ABCDEF" : "0123456789abcdef");
8064 esignbuf[esignlen++] = '0';
8065 esignbuf[esignlen++] = c; /* 'x' or 'X' */
8071 *--eptr = '0' + dig;
8073 if (alt && *eptr != '0')
8079 *--eptr = '0' + dig;
8082 esignbuf[esignlen++] = '0';
8083 esignbuf[esignlen++] = 'b';
8086 default: /* it had better be ten or less */
8087 #if defined(PERL_Y2KWARN)
8088 if (ckWARN(WARN_Y2K)) {
8090 char *s = SvPV(sv,n);
8091 if (n >= 2 && s[n-2] == '1' && s[n-1] == '9'
8092 && (n == 2 || !isDIGIT(s[n-3])))
8094 Perl_warner(aTHX_ WARN_Y2K,
8095 "Possible Y2K bug: %%%c %s",
8096 c, "format string following '19'");
8102 *--eptr = '0' + dig;
8103 } while (uv /= base);
8106 elen = (ebuf + sizeof ebuf) - eptr;
8109 zeros = precis - elen;
8110 else if (precis == 0 && elen == 1 && *eptr == '0')
8115 /* FLOATING POINT */
8118 c = 'f'; /* maybe %F isn't supported here */
8124 /* This is evil, but floating point is even more evil */
8127 nv = args ? va_arg(*args, NV) : SvNVx(argsv);
8130 if (c != 'e' && c != 'E') {
8132 (void)Perl_frexp(nv, &i);
8133 if (i == PERL_INT_MIN)
8134 Perl_die(aTHX_ "panic: frexp");
8136 need = BIT_DIGITS(i);
8138 need += has_precis ? precis : 6; /* known default */
8142 need += 20; /* fudge factor */
8143 if (PL_efloatsize < need) {
8144 Safefree(PL_efloatbuf);
8145 PL_efloatsize = need + 20; /* more fudge */
8146 New(906, PL_efloatbuf, PL_efloatsize, char);
8147 PL_efloatbuf[0] = '\0';
8150 eptr = ebuf + sizeof ebuf;
8153 #if defined(USE_LONG_DOUBLE) && defined(PERL_PRIfldbl)
8155 /* Copy the one or more characters in a long double
8156 * format before the 'base' ([efgEFG]) character to
8157 * the format string. */
8158 static char const prifldbl[] = PERL_PRIfldbl;
8159 char const *p = prifldbl + sizeof(prifldbl) - 3;
8160 while (p >= prifldbl) { *--eptr = *p--; }
8165 do { *--eptr = '0' + (base % 10); } while (base /= 10);
8170 do { *--eptr = '0' + (base % 10); } while (base /= 10);
8182 /* No taint. Otherwise we are in the strange situation
8183 * where printf() taints but print($float) doesn't.
8185 (void)sprintf(PL_efloatbuf, eptr, nv);
8187 eptr = PL_efloatbuf;
8188 elen = strlen(PL_efloatbuf);
8195 i = SvCUR(sv) - origlen;
8198 case 'h': *(va_arg(*args, short*)) = i; break;
8199 default: *(va_arg(*args, int*)) = i; break;
8200 case 'l': *(va_arg(*args, long*)) = i; break;
8201 case 'V': *(va_arg(*args, IV*)) = i; break;
8203 case 'q': *(va_arg(*args, Quad_t*)) = i; break;
8208 sv_setuv_mg(argsv, (UV)i);
8209 continue; /* not "break" */
8216 if (!args && ckWARN(WARN_PRINTF) &&
8217 (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)) {
8218 SV *msg = sv_newmortal();
8219 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %s: ",
8220 (PL_op->op_type == OP_PRTF) ? "printf" : "sprintf");
8223 Perl_sv_catpvf(aTHX_ msg,
8224 "\"%%%c\"", c & 0xFF);
8226 Perl_sv_catpvf(aTHX_ msg,
8227 "\"%%\\%03"UVof"\"",
8230 sv_catpv(msg, "end of string");
8231 Perl_warner(aTHX_ WARN_PRINTF, "%"SVf, msg); /* yes, this is reentrant */
8234 /* output mangled stuff ... */
8240 /* ... right here, because formatting flags should not apply */
8241 SvGROW(sv, SvCUR(sv) + elen + 1);
8243 Copy(eptr, p, elen, char);
8246 SvCUR(sv) = p - SvPVX(sv);
8247 continue; /* not "break" */
8250 have = esignlen + zeros + elen;
8251 need = (have > width ? have : width);
8254 SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
8256 if (esignlen && fill == '0') {
8257 for (i = 0; i < esignlen; i++)
8261 memset(p, fill, gap);
8264 if (esignlen && fill != '0') {
8265 for (i = 0; i < esignlen; i++)
8269 for (i = zeros; i; i--)
8273 Copy(eptr, p, elen, char);
8277 memset(p, ' ', gap);
8282 Copy(dotstr, p, dotstrlen, char);
8286 vectorize = FALSE; /* done iterating over vecstr */
8291 SvCUR(sv) = p - SvPVX(sv);
8299 /* =========================================================================
8301 =head1 Cloning an interpreter
8303 All the macros and functions in this section are for the private use of
8304 the main function, perl_clone().
8306 The foo_dup() functions make an exact copy of an existing foo thinngy.
8307 During the course of a cloning, a hash table is used to map old addresses
8308 to new addresses. The table is created and manipulated with the
8309 ptr_table_* functions.
8313 ============================================================================*/
8316 #if defined(USE_ITHREADS)
8318 #if defined(USE_THREADS)
8319 # include "error: USE_THREADS and USE_ITHREADS are incompatible"
8322 #ifndef GpREFCNT_inc
8323 # define GpREFCNT_inc(gp) ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
8327 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
8328 #define av_dup(s,t) (AV*)sv_dup((SV*)s,t)
8329 #define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
8330 #define hv_dup(s,t) (HV*)sv_dup((SV*)s,t)
8331 #define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
8332 #define cv_dup(s,t) (CV*)sv_dup((SV*)s,t)
8333 #define cv_dup_inc(s,t) (CV*)SvREFCNT_inc(sv_dup((SV*)s,t))
8334 #define io_dup(s,t) (IO*)sv_dup((SV*)s,t)
8335 #define io_dup_inc(s,t) (IO*)SvREFCNT_inc(sv_dup((SV*)s,t))
8336 #define gv_dup(s,t) (GV*)sv_dup((SV*)s,t)
8337 #define gv_dup_inc(s,t) (GV*)SvREFCNT_inc(sv_dup((SV*)s,t))
8338 #define SAVEPV(p) (p ? savepv(p) : Nullch)
8339 #define SAVEPVN(p,n) (p ? savepvn(p,n) : Nullch)
8343 /* duplicate a regexp */
8346 Perl_re_dup(pTHX_ REGEXP *r)
8348 /* XXX fix when pmop->op_pmregexp becomes shared */
8349 return ReREFCNT_inc(r);
8352 /* duplicate a file handle */
8355 Perl_fp_dup(pTHX_ PerlIO *fp, char type)
8359 return (PerlIO*)NULL;
8361 /* look for it in the table first */
8362 ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
8366 /* create anew and remember what it is */
8367 ret = PerlIO_fdupopen(aTHX_ fp);
8368 ptr_table_store(PL_ptr_table, fp, ret);
8372 /* duplicate a directory handle */
8375 Perl_dirp_dup(pTHX_ DIR *dp)
8383 /* duplicate a typeglob */
8386 Perl_gp_dup(pTHX_ GP *gp, clone_params* param)
8391 /* look for it in the table first */
8392 ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
8396 /* create anew and remember what it is */
8397 Newz(0, ret, 1, GP);
8398 ptr_table_store(PL_ptr_table, gp, ret);
8401 ret->gp_refcnt = 0; /* must be before any other dups! */
8402 ret->gp_sv = sv_dup_inc(gp->gp_sv, param);
8403 ret->gp_io = io_dup_inc(gp->gp_io, param);
8404 ret->gp_form = cv_dup_inc(gp->gp_form, param);
8405 ret->gp_av = av_dup_inc(gp->gp_av, param);
8406 ret->gp_hv = hv_dup_inc(gp->gp_hv, param);
8407 ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
8408 ret->gp_cv = cv_dup_inc(gp->gp_cv, param);
8409 ret->gp_cvgen = gp->gp_cvgen;
8410 ret->gp_flags = gp->gp_flags;
8411 ret->gp_line = gp->gp_line;
8412 ret->gp_file = gp->gp_file; /* points to COP.cop_file */
8416 /* duplicate a chain of magic */
8419 Perl_mg_dup(pTHX_ MAGIC *mg, clone_params* param)
8421 MAGIC *mgprev = (MAGIC*)NULL;
8424 return (MAGIC*)NULL;
8425 /* look for it in the table first */
8426 mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
8430 for (; mg; mg = mg->mg_moremagic) {
8432 Newz(0, nmg, 1, MAGIC);
8434 mgprev->mg_moremagic = nmg;
8437 nmg->mg_virtual = mg->mg_virtual; /* XXX copy dynamic vtable? */
8438 nmg->mg_private = mg->mg_private;
8439 nmg->mg_type = mg->mg_type;
8440 nmg->mg_flags = mg->mg_flags;
8441 if (mg->mg_type == PERL_MAGIC_qr) {
8442 nmg->mg_obj = (SV*)re_dup((REGEXP*)mg->mg_obj);
8444 else if(mg->mg_type == PERL_MAGIC_backref) {
8445 AV *av = (AV*) mg->mg_obj;
8448 nmg->mg_obj = (SV*)newAV();
8452 av_push((AV*)nmg->mg_obj,sv_dup(svp[i],param));
8457 nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
8458 ? sv_dup_inc(mg->mg_obj, param)
8459 : sv_dup(mg->mg_obj, param);
8461 nmg->mg_len = mg->mg_len;
8462 nmg->mg_ptr = mg->mg_ptr; /* XXX random ptr? */
8463 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
8464 if (mg->mg_len >= 0) {
8465 nmg->mg_ptr = SAVEPVN(mg->mg_ptr, mg->mg_len);
8466 if (mg->mg_type == PERL_MAGIC_overload_table &&
8467 AMT_AMAGIC((AMT*)mg->mg_ptr))
8469 AMT *amtp = (AMT*)mg->mg_ptr;
8470 AMT *namtp = (AMT*)nmg->mg_ptr;
8472 for (i = 1; i < NofAMmeth; i++) {
8473 namtp->table[i] = cv_dup_inc(amtp->table[i], param);
8477 else if (mg->mg_len == HEf_SVKEY)
8478 nmg->mg_ptr = (char*)sv_dup_inc((SV*)mg->mg_ptr, param);
8485 /* create a new pointer-mapping table */
8488 Perl_ptr_table_new(pTHX)
8491 Newz(0, tbl, 1, PTR_TBL_t);
8494 Newz(0, tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
8498 /* map an existing pointer using a table */
8501 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, void *sv)
8503 PTR_TBL_ENT_t *tblent;
8504 UV hash = PTR2UV(sv);
8506 tblent = tbl->tbl_ary[hash & tbl->tbl_max];
8507 for (; tblent; tblent = tblent->next) {
8508 if (tblent->oldval == sv)
8509 return tblent->newval;
8514 /* add a new entry to a pointer-mapping table */
8517 Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, void *oldv, void *newv)
8519 PTR_TBL_ENT_t *tblent, **otblent;
8520 /* XXX this may be pessimal on platforms where pointers aren't good
8521 * hash values e.g. if they grow faster in the most significant
8523 UV hash = PTR2UV(oldv);
8527 otblent = &tbl->tbl_ary[hash & tbl->tbl_max];
8528 for (tblent = *otblent; tblent; i=0, tblent = tblent->next) {
8529 if (tblent->oldval == oldv) {
8530 tblent->newval = newv;
8535 Newz(0, tblent, 1, PTR_TBL_ENT_t);
8536 tblent->oldval = oldv;
8537 tblent->newval = newv;
8538 tblent->next = *otblent;
8541 if (i && tbl->tbl_items > tbl->tbl_max)
8542 ptr_table_split(tbl);
8545 /* double the hash bucket size of an existing ptr table */
8548 Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl)
8550 PTR_TBL_ENT_t **ary = tbl->tbl_ary;
8551 UV oldsize = tbl->tbl_max + 1;
8552 UV newsize = oldsize * 2;
8555 Renew(ary, newsize, PTR_TBL_ENT_t*);
8556 Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
8557 tbl->tbl_max = --newsize;
8559 for (i=0; i < oldsize; i++, ary++) {
8560 PTR_TBL_ENT_t **curentp, **entp, *ent;
8563 curentp = ary + oldsize;
8564 for (entp = ary, ent = *ary; ent; ent = *entp) {
8565 if ((newsize & PTR2UV(ent->oldval)) != i) {
8567 ent->next = *curentp;
8577 /* remove all the entries from a ptr table */
8580 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl)
8582 register PTR_TBL_ENT_t **array;
8583 register PTR_TBL_ENT_t *entry;
8584 register PTR_TBL_ENT_t *oentry = Null(PTR_TBL_ENT_t*);
8588 if (!tbl || !tbl->tbl_items) {
8592 array = tbl->tbl_ary;
8599 entry = entry->next;
8603 if (++riter > max) {
8606 entry = array[riter];
8613 /* clear and free a ptr table */
8616 Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl)
8621 ptr_table_clear(tbl);
8622 Safefree(tbl->tbl_ary);
8630 /* attempt to make everything in the typeglob readonly */
8633 S_gv_share(pTHX_ SV *sstr)
8636 SV *sv = &PL_sv_no; /* just need SvREADONLY-ness */
8638 if (GvIO(gv) || GvFORM(gv)) {
8639 GvUNIQUE_off(gv); /* GvIOs cannot be shared. nor can GvFORMs */
8641 else if (!GvCV(gv)) {
8645 /* CvPADLISTs cannot be shared */
8646 if (!CvXSUB(GvCV(gv))) {
8651 if (!GvUNIQUE(gv)) {
8653 PerlIO_printf(Perl_debug_log, "gv_share: unable to share %s::%s\n",
8654 HvNAME(GvSTASH(gv)), GvNAME(gv));
8660 * write attempts will die with
8661 * "Modification of a read-only value attempted"
8667 SvREADONLY_on(GvSV(gv));
8674 SvREADONLY_on(GvAV(gv));
8681 SvREADONLY_on(GvAV(gv));
8684 return sstr; /* he_dup() will SvREFCNT_inc() */
8687 /* duplicate an SV of any type (including AV, HV etc) */
8690 Perl_sv_dup(pTHX_ SV *sstr, clone_params* param)
8694 if (!sstr || SvTYPE(sstr) == SVTYPEMASK)
8696 /* look for it in the table first */
8697 dstr = (SV*)ptr_table_fetch(PL_ptr_table, sstr);
8701 /* create anew and remember what it is */
8703 ptr_table_store(PL_ptr_table, sstr, dstr);
8706 SvFLAGS(dstr) = SvFLAGS(sstr);
8707 SvFLAGS(dstr) &= ~SVf_OOK; /* don't propagate OOK hack */
8708 SvREFCNT(dstr) = 0; /* must be before any other dups! */
8711 if (SvANY(sstr) && PL_watch_pvx && SvPVX(sstr) == PL_watch_pvx)
8712 PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
8713 PL_watch_pvx, SvPVX(sstr));
8716 switch (SvTYPE(sstr)) {
8721 SvANY(dstr) = new_XIV();
8722 SvIVX(dstr) = SvIVX(sstr);
8725 SvANY(dstr) = new_XNV();
8726 SvNVX(dstr) = SvNVX(sstr);
8729 SvANY(dstr) = new_XRV();
8730 SvRV(dstr) = SvRV(sstr) && SvWEAKREF(sstr)
8731 ? sv_dup(SvRV(sstr), param)
8732 : sv_dup_inc(SvRV(sstr), param);
8735 SvANY(dstr) = new_XPV();
8736 SvCUR(dstr) = SvCUR(sstr);
8737 SvLEN(dstr) = SvLEN(sstr);
8739 SvRV(dstr) = SvWEAKREF(sstr)
8740 ? sv_dup(SvRV(sstr), param)
8741 : sv_dup_inc(SvRV(sstr), param);
8742 else if (SvPVX(sstr) && SvLEN(sstr))
8743 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8745 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8748 SvANY(dstr) = new_XPVIV();
8749 SvCUR(dstr) = SvCUR(sstr);
8750 SvLEN(dstr) = SvLEN(sstr);
8751 SvIVX(dstr) = SvIVX(sstr);
8753 SvRV(dstr) = SvWEAKREF(sstr)
8754 ? sv_dup(SvRV(sstr), param)
8755 : sv_dup_inc(SvRV(sstr), param);
8756 else if (SvPVX(sstr) && SvLEN(sstr))
8757 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8759 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8762 SvANY(dstr) = new_XPVNV();
8763 SvCUR(dstr) = SvCUR(sstr);
8764 SvLEN(dstr) = SvLEN(sstr);
8765 SvIVX(dstr) = SvIVX(sstr);
8766 SvNVX(dstr) = SvNVX(sstr);
8768 SvRV(dstr) = SvWEAKREF(sstr)
8769 ? sv_dup(SvRV(sstr), param)
8770 : sv_dup_inc(SvRV(sstr), param);
8771 else if (SvPVX(sstr) && SvLEN(sstr))
8772 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8774 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8777 SvANY(dstr) = new_XPVMG();
8778 SvCUR(dstr) = SvCUR(sstr);
8779 SvLEN(dstr) = SvLEN(sstr);
8780 SvIVX(dstr) = SvIVX(sstr);
8781 SvNVX(dstr) = SvNVX(sstr);
8782 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8783 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8785 SvRV(dstr) = SvWEAKREF(sstr)
8786 ? sv_dup(SvRV(sstr), param)
8787 : sv_dup_inc(SvRV(sstr), param);
8788 else if (SvPVX(sstr) && SvLEN(sstr))
8789 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8791 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8794 SvANY(dstr) = new_XPVBM();
8795 SvCUR(dstr) = SvCUR(sstr);
8796 SvLEN(dstr) = SvLEN(sstr);
8797 SvIVX(dstr) = SvIVX(sstr);
8798 SvNVX(dstr) = SvNVX(sstr);
8799 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8800 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8802 SvRV(dstr) = SvWEAKREF(sstr)
8803 ? sv_dup(SvRV(sstr), param)
8804 : sv_dup_inc(SvRV(sstr), param);
8805 else if (SvPVX(sstr) && SvLEN(sstr))
8806 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8808 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8809 BmRARE(dstr) = BmRARE(sstr);
8810 BmUSEFUL(dstr) = BmUSEFUL(sstr);
8811 BmPREVIOUS(dstr)= BmPREVIOUS(sstr);
8814 SvANY(dstr) = new_XPVLV();
8815 SvCUR(dstr) = SvCUR(sstr);
8816 SvLEN(dstr) = SvLEN(sstr);
8817 SvIVX(dstr) = SvIVX(sstr);
8818 SvNVX(dstr) = SvNVX(sstr);
8819 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8820 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8822 SvRV(dstr) = SvWEAKREF(sstr)
8823 ? sv_dup(SvRV(sstr), param)
8824 : sv_dup_inc(SvRV(sstr), param);
8825 else if (SvPVX(sstr) && SvLEN(sstr))
8826 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8828 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8829 LvTARGOFF(dstr) = LvTARGOFF(sstr); /* XXX sometimes holds PMOP* when DEBUGGING */
8830 LvTARGLEN(dstr) = LvTARGLEN(sstr);
8831 LvTARG(dstr) = sv_dup_inc(LvTARG(sstr), param);
8832 LvTYPE(dstr) = LvTYPE(sstr);
8835 if (GvUNIQUE((GV*)sstr)) {
8837 if ((share = gv_share(sstr))) {
8841 PerlIO_printf(Perl_debug_log, "sv_dup: sharing %s::%s\n",
8842 HvNAME(GvSTASH(share)), GvNAME(share));
8847 SvANY(dstr) = new_XPVGV();
8848 SvCUR(dstr) = SvCUR(sstr);
8849 SvLEN(dstr) = SvLEN(sstr);
8850 SvIVX(dstr) = SvIVX(sstr);
8851 SvNVX(dstr) = SvNVX(sstr);
8852 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8853 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8855 SvRV(dstr) = SvWEAKREF(sstr)
8856 ? sv_dup(SvRV(sstr), param)
8857 : sv_dup_inc(SvRV(sstr), param);
8858 else if (SvPVX(sstr) && SvLEN(sstr))
8859 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8861 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8862 GvNAMELEN(dstr) = GvNAMELEN(sstr);
8863 GvNAME(dstr) = SAVEPVN(GvNAME(sstr), GvNAMELEN(sstr));
8864 GvSTASH(dstr) = hv_dup_inc(GvSTASH(sstr), param);
8865 GvFLAGS(dstr) = GvFLAGS(sstr);
8866 GvGP(dstr) = gp_dup(GvGP(sstr), param);
8867 (void)GpREFCNT_inc(GvGP(dstr));
8870 SvANY(dstr) = new_XPVIO();
8871 SvCUR(dstr) = SvCUR(sstr);
8872 SvLEN(dstr) = SvLEN(sstr);
8873 SvIVX(dstr) = SvIVX(sstr);
8874 SvNVX(dstr) = SvNVX(sstr);
8875 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8876 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8878 SvRV(dstr) = SvWEAKREF(sstr)
8879 ? sv_dup(SvRV(sstr), param)
8880 : sv_dup_inc(SvRV(sstr), param);
8881 else if (SvPVX(sstr) && SvLEN(sstr))
8882 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8884 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8885 IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(sstr));
8886 if (IoOFP(sstr) == IoIFP(sstr))
8887 IoOFP(dstr) = IoIFP(dstr);
8889 IoOFP(dstr) = fp_dup(IoOFP(sstr), IoTYPE(sstr));
8890 /* PL_rsfp_filters entries have fake IoDIRP() */
8891 if (IoDIRP(sstr) && !(IoFLAGS(sstr) & IOf_FAKE_DIRP))
8892 IoDIRP(dstr) = dirp_dup(IoDIRP(sstr));
8894 IoDIRP(dstr) = IoDIRP(sstr);
8895 IoLINES(dstr) = IoLINES(sstr);
8896 IoPAGE(dstr) = IoPAGE(sstr);
8897 IoPAGE_LEN(dstr) = IoPAGE_LEN(sstr);
8898 IoLINES_LEFT(dstr) = IoLINES_LEFT(sstr);
8899 IoTOP_NAME(dstr) = SAVEPV(IoTOP_NAME(sstr));
8900 IoTOP_GV(dstr) = gv_dup(IoTOP_GV(sstr), param);
8901 IoFMT_NAME(dstr) = SAVEPV(IoFMT_NAME(sstr));
8902 IoFMT_GV(dstr) = gv_dup(IoFMT_GV(sstr), param);
8903 IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(sstr));
8904 IoBOTTOM_GV(dstr) = gv_dup(IoBOTTOM_GV(sstr), param);
8905 IoSUBPROCESS(dstr) = IoSUBPROCESS(sstr);
8906 IoTYPE(dstr) = IoTYPE(sstr);
8907 IoFLAGS(dstr) = IoFLAGS(sstr);
8910 SvANY(dstr) = new_XPVAV();
8911 SvCUR(dstr) = SvCUR(sstr);
8912 SvLEN(dstr) = SvLEN(sstr);
8913 SvIVX(dstr) = SvIVX(sstr);
8914 SvNVX(dstr) = SvNVX(sstr);
8915 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8916 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8917 AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
8918 AvFLAGS((AV*)dstr) = AvFLAGS((AV*)sstr);
8919 if (AvARRAY((AV*)sstr)) {
8920 SV **dst_ary, **src_ary;
8921 SSize_t items = AvFILLp((AV*)sstr) + 1;
8923 src_ary = AvARRAY((AV*)sstr);
8924 Newz(0, dst_ary, AvMAX((AV*)sstr)+1, SV*);
8925 ptr_table_store(PL_ptr_table, src_ary, dst_ary);
8926 SvPVX(dstr) = (char*)dst_ary;
8927 AvALLOC((AV*)dstr) = dst_ary;
8928 if (AvREAL((AV*)sstr)) {
8930 *dst_ary++ = sv_dup_inc(*src_ary++, param);
8934 *dst_ary++ = sv_dup(*src_ary++, param);
8936 items = AvMAX((AV*)sstr) - AvFILLp((AV*)sstr);
8937 while (items-- > 0) {
8938 *dst_ary++ = &PL_sv_undef;
8942 SvPVX(dstr) = Nullch;
8943 AvALLOC((AV*)dstr) = (SV**)NULL;
8947 SvANY(dstr) = new_XPVHV();
8948 SvCUR(dstr) = SvCUR(sstr);
8949 SvLEN(dstr) = SvLEN(sstr);
8950 SvIVX(dstr) = SvIVX(sstr);
8951 SvNVX(dstr) = SvNVX(sstr);
8952 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8953 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8954 HvRITER((HV*)dstr) = HvRITER((HV*)sstr);
8955 if (HvARRAY((HV*)sstr)) {
8957 XPVHV *dxhv = (XPVHV*)SvANY(dstr);
8958 XPVHV *sxhv = (XPVHV*)SvANY(sstr);
8959 Newz(0, dxhv->xhv_array,
8960 PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1), char);
8961 while (i <= sxhv->xhv_max) {
8962 ((HE**)dxhv->xhv_array)[i] = he_dup(((HE**)sxhv->xhv_array)[i],
8963 !!HvSHAREKEYS(sstr), param);
8966 dxhv->xhv_eiter = he_dup(sxhv->xhv_eiter, !!HvSHAREKEYS(sstr), param);
8969 SvPVX(dstr) = Nullch;
8970 HvEITER((HV*)dstr) = (HE*)NULL;
8972 HvPMROOT((HV*)dstr) = HvPMROOT((HV*)sstr); /* XXX */
8973 HvNAME((HV*)dstr) = SAVEPV(HvNAME((HV*)sstr));
8974 /* Record stashes for possible cloning in Perl_clone(). */
8975 if(HvNAME((HV*)dstr))
8976 av_push(param->stashes, dstr);
8979 SvANY(dstr) = new_XPVFM();
8980 FmLINES(dstr) = FmLINES(sstr);
8984 SvANY(dstr) = new_XPVCV();
8986 SvCUR(dstr) = SvCUR(sstr);
8987 SvLEN(dstr) = SvLEN(sstr);
8988 SvIVX(dstr) = SvIVX(sstr);
8989 SvNVX(dstr) = SvNVX(sstr);
8990 SvMAGIC(dstr) = mg_dup(SvMAGIC(sstr), param);
8991 SvSTASH(dstr) = hv_dup_inc(SvSTASH(sstr), param);
8992 if (SvPVX(sstr) && SvLEN(sstr))
8993 SvPVX(dstr) = SAVEPVN(SvPVX(sstr), SvLEN(sstr)-1);
8995 SvPVX(dstr) = SvPVX(sstr); /* XXX shared string/random ptr? */
8996 CvSTASH(dstr) = hv_dup(CvSTASH(sstr), param); /* NOTE: not refcounted */
8997 CvSTART(dstr) = CvSTART(sstr);
8998 CvROOT(dstr) = OpREFCNT_inc(CvROOT(sstr));
8999 CvXSUB(dstr) = CvXSUB(sstr);
9000 CvXSUBANY(dstr) = CvXSUBANY(sstr);
9001 CvGV(dstr) = gv_dup(CvGV(sstr), param);
9002 if (param->flags & CLONEf_COPY_STACKS) {
9003 CvDEPTH(dstr) = CvDEPTH(sstr);
9007 if (CvPADLIST(sstr) && !AvREAL(CvPADLIST(sstr))) {
9008 /* XXX padlists are real, but pretend to be not */
9009 AvREAL_on(CvPADLIST(sstr));
9010 CvPADLIST(dstr) = av_dup_inc(CvPADLIST(sstr), param);
9011 AvREAL_off(CvPADLIST(sstr));
9012 AvREAL_off(CvPADLIST(dstr));
9015 CvPADLIST(dstr) = av_dup_inc(CvPADLIST(sstr), param);
9016 if (!CvANON(sstr) || CvCLONED(sstr))
9017 CvOUTSIDE(dstr) = cv_dup_inc(CvOUTSIDE(sstr), param);
9019 CvOUTSIDE(dstr) = cv_dup(CvOUTSIDE(sstr), param);
9020 CvFLAGS(dstr) = CvFLAGS(sstr);
9021 CvFILE(dstr) = CvXSUB(sstr) ? CvFILE(sstr) : SAVEPV(CvFILE(sstr));
9024 Perl_croak(aTHX_ "Bizarre SvTYPE [%d]", SvTYPE(sstr));
9028 if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
9034 /* duplicate a context */
9037 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, clone_params* param)
9042 return (PERL_CONTEXT*)NULL;
9044 /* look for it in the table first */
9045 ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
9049 /* create anew and remember what it is */
9050 Newz(56, ncxs, max + 1, PERL_CONTEXT);
9051 ptr_table_store(PL_ptr_table, cxs, ncxs);
9054 PERL_CONTEXT *cx = &cxs[ix];
9055 PERL_CONTEXT *ncx = &ncxs[ix];
9056 ncx->cx_type = cx->cx_type;
9057 if (CxTYPE(cx) == CXt_SUBST) {
9058 Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
9061 ncx->blk_oldsp = cx->blk_oldsp;
9062 ncx->blk_oldcop = cx->blk_oldcop;
9063 ncx->blk_oldretsp = cx->blk_oldretsp;
9064 ncx->blk_oldmarksp = cx->blk_oldmarksp;
9065 ncx->blk_oldscopesp = cx->blk_oldscopesp;
9066 ncx->blk_oldpm = cx->blk_oldpm;
9067 ncx->blk_gimme = cx->blk_gimme;
9068 switch (CxTYPE(cx)) {
9070 ncx->blk_sub.cv = (cx->blk_sub.olddepth == 0
9071 ? cv_dup_inc(cx->blk_sub.cv, param)
9072 : cv_dup(cx->blk_sub.cv,param));
9073 ncx->blk_sub.argarray = (cx->blk_sub.hasargs
9074 ? av_dup_inc(cx->blk_sub.argarray, param)
9076 ncx->blk_sub.savearray = av_dup_inc(cx->blk_sub.savearray, param);
9077 ncx->blk_sub.olddepth = cx->blk_sub.olddepth;
9078 ncx->blk_sub.hasargs = cx->blk_sub.hasargs;
9079 ncx->blk_sub.lval = cx->blk_sub.lval;
9082 ncx->blk_eval.old_in_eval = cx->blk_eval.old_in_eval;
9083 ncx->blk_eval.old_op_type = cx->blk_eval.old_op_type;
9084 ncx->blk_eval.old_namesv = sv_dup_inc(cx->blk_eval.old_namesv, param);;
9085 ncx->blk_eval.old_eval_root = cx->blk_eval.old_eval_root;
9086 ncx->blk_eval.cur_text = sv_dup(cx->blk_eval.cur_text, param);
9089 ncx->blk_loop.label = cx->blk_loop.label;
9090 ncx->blk_loop.resetsp = cx->blk_loop.resetsp;
9091 ncx->blk_loop.redo_op = cx->blk_loop.redo_op;
9092 ncx->blk_loop.next_op = cx->blk_loop.next_op;
9093 ncx->blk_loop.last_op = cx->blk_loop.last_op;
9094 ncx->blk_loop.iterdata = (CxPADLOOP(cx)
9095 ? cx->blk_loop.iterdata
9096 : gv_dup((GV*)cx->blk_loop.iterdata, param));
9097 ncx->blk_loop.oldcurpad
9098 = (SV**)ptr_table_fetch(PL_ptr_table,
9099 cx->blk_loop.oldcurpad);
9100 ncx->blk_loop.itersave = sv_dup_inc(cx->blk_loop.itersave, param);
9101 ncx->blk_loop.iterlval = sv_dup_inc(cx->blk_loop.iterlval, param);
9102 ncx->blk_loop.iterary = av_dup_inc(cx->blk_loop.iterary, param);
9103 ncx->blk_loop.iterix = cx->blk_loop.iterix;
9104 ncx->blk_loop.itermax = cx->blk_loop.itermax;
9107 ncx->blk_sub.cv = cv_dup(cx->blk_sub.cv, param);
9108 ncx->blk_sub.gv = gv_dup(cx->blk_sub.gv, param);
9109 ncx->blk_sub.dfoutgv = gv_dup_inc(cx->blk_sub.dfoutgv, param);
9110 ncx->blk_sub.hasargs = cx->blk_sub.hasargs;
9122 /* duplicate a stack info structure */
9125 Perl_si_dup(pTHX_ PERL_SI *si, clone_params* param)
9130 return (PERL_SI*)NULL;
9132 /* look for it in the table first */
9133 nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
9137 /* create anew and remember what it is */
9138 Newz(56, nsi, 1, PERL_SI);
9139 ptr_table_store(PL_ptr_table, si, nsi);
9141 nsi->si_stack = av_dup_inc(si->si_stack, param);
9142 nsi->si_cxix = si->si_cxix;
9143 nsi->si_cxmax = si->si_cxmax;
9144 nsi->si_cxstack = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
9145 nsi->si_type = si->si_type;
9146 nsi->si_prev = si_dup(si->si_prev, param);
9147 nsi->si_next = si_dup(si->si_next, param);
9148 nsi->si_markoff = si->si_markoff;
9153 #define POPINT(ss,ix) ((ss)[--(ix)].any_i32)
9154 #define TOPINT(ss,ix) ((ss)[ix].any_i32)
9155 #define POPLONG(ss,ix) ((ss)[--(ix)].any_long)
9156 #define TOPLONG(ss,ix) ((ss)[ix].any_long)
9157 #define POPIV(ss,ix) ((ss)[--(ix)].any_iv)
9158 #define TOPIV(ss,ix) ((ss)[ix].any_iv)
9159 #define POPPTR(ss,ix) ((ss)[--(ix)].any_ptr)
9160 #define TOPPTR(ss,ix) ((ss)[ix].any_ptr)
9161 #define POPDPTR(ss,ix) ((ss)[--(ix)].any_dptr)
9162 #define TOPDPTR(ss,ix) ((ss)[ix].any_dptr)
9163 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
9164 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
9167 #define pv_dup_inc(p) SAVEPV(p)
9168 #define pv_dup(p) SAVEPV(p)
9169 #define svp_dup_inc(p,pp) any_dup(p,pp)
9171 /* map any object to the new equivent - either something in the
9172 * ptr table, or something in the interpreter structure
9176 Perl_any_dup(pTHX_ void *v, PerlInterpreter *proto_perl)
9183 /* look for it in the table first */
9184 ret = ptr_table_fetch(PL_ptr_table, v);
9188 /* see if it is part of the interpreter structure */
9189 if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
9190 ret = (void*)(((char*)aTHXo) + (((char*)v) - (char*)proto_perl));
9197 /* duplicate the save stack */
9200 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, clone_params* param)
9202 ANY *ss = proto_perl->Tsavestack;
9203 I32 ix = proto_perl->Tsavestack_ix;
9204 I32 max = proto_perl->Tsavestack_max;
9217 void (*dptr) (void*);
9218 void (*dxptr) (pTHXo_ void*);
9221 Newz(54, nss, max, ANY);
9227 case SAVEt_ITEM: /* normal string */
9228 sv = (SV*)POPPTR(ss,ix);
9229 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9230 sv = (SV*)POPPTR(ss,ix);
9231 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9233 case SAVEt_SV: /* scalar reference */
9234 sv = (SV*)POPPTR(ss,ix);
9235 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9236 gv = (GV*)POPPTR(ss,ix);
9237 TOPPTR(nss,ix) = gv_dup_inc(gv, param);
9239 case SAVEt_GENERIC_PVREF: /* generic char* */
9240 c = (char*)POPPTR(ss,ix);
9241 TOPPTR(nss,ix) = pv_dup(c);
9242 ptr = POPPTR(ss,ix);
9243 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9245 case SAVEt_GENERIC_SVREF: /* generic sv */
9246 case SAVEt_SVREF: /* scalar reference */
9247 sv = (SV*)POPPTR(ss,ix);
9248 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9249 ptr = POPPTR(ss,ix);
9250 TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
9252 case SAVEt_AV: /* array reference */
9253 av = (AV*)POPPTR(ss,ix);
9254 TOPPTR(nss,ix) = av_dup_inc(av, param);
9255 gv = (GV*)POPPTR(ss,ix);
9256 TOPPTR(nss,ix) = gv_dup(gv, param);
9258 case SAVEt_HV: /* hash reference */
9259 hv = (HV*)POPPTR(ss,ix);
9260 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
9261 gv = (GV*)POPPTR(ss,ix);
9262 TOPPTR(nss,ix) = gv_dup(gv, param);
9264 case SAVEt_INT: /* int reference */
9265 ptr = POPPTR(ss,ix);
9266 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9267 intval = (int)POPINT(ss,ix);
9268 TOPINT(nss,ix) = intval;
9270 case SAVEt_LONG: /* long reference */
9271 ptr = POPPTR(ss,ix);
9272 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9273 longval = (long)POPLONG(ss,ix);
9274 TOPLONG(nss,ix) = longval;
9276 case SAVEt_I32: /* I32 reference */
9277 case SAVEt_I16: /* I16 reference */
9278 case SAVEt_I8: /* I8 reference */
9279 ptr = POPPTR(ss,ix);
9280 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9284 case SAVEt_IV: /* IV reference */
9285 ptr = POPPTR(ss,ix);
9286 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9290 case SAVEt_SPTR: /* SV* reference */
9291 ptr = POPPTR(ss,ix);
9292 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9293 sv = (SV*)POPPTR(ss,ix);
9294 TOPPTR(nss,ix) = sv_dup(sv, param);
9296 case SAVEt_VPTR: /* random* reference */
9297 ptr = POPPTR(ss,ix);
9298 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9299 ptr = POPPTR(ss,ix);
9300 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9302 case SAVEt_PPTR: /* char* reference */
9303 ptr = POPPTR(ss,ix);
9304 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9305 c = (char*)POPPTR(ss,ix);
9306 TOPPTR(nss,ix) = pv_dup(c);
9308 case SAVEt_HPTR: /* HV* reference */
9309 ptr = POPPTR(ss,ix);
9310 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9311 hv = (HV*)POPPTR(ss,ix);
9312 TOPPTR(nss,ix) = hv_dup(hv, param);
9314 case SAVEt_APTR: /* AV* reference */
9315 ptr = POPPTR(ss,ix);
9316 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9317 av = (AV*)POPPTR(ss,ix);
9318 TOPPTR(nss,ix) = av_dup(av, param);
9321 gv = (GV*)POPPTR(ss,ix);
9322 TOPPTR(nss,ix) = gv_dup(gv, param);
9324 case SAVEt_GP: /* scalar reference */
9325 gp = (GP*)POPPTR(ss,ix);
9326 TOPPTR(nss,ix) = gp = gp_dup(gp, param);
9327 (void)GpREFCNT_inc(gp);
9328 gv = (GV*)POPPTR(ss,ix);
9329 TOPPTR(nss,ix) = gv_dup_inc(c, param);
9330 c = (char*)POPPTR(ss,ix);
9331 TOPPTR(nss,ix) = pv_dup(c);
9338 case SAVEt_MORTALIZESV:
9339 sv = (SV*)POPPTR(ss,ix);
9340 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9343 ptr = POPPTR(ss,ix);
9344 if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
9345 /* these are assumed to be refcounted properly */
9346 switch (((OP*)ptr)->op_type) {
9353 TOPPTR(nss,ix) = ptr;
9358 TOPPTR(nss,ix) = Nullop;
9363 TOPPTR(nss,ix) = Nullop;
9366 c = (char*)POPPTR(ss,ix);
9367 TOPPTR(nss,ix) = pv_dup_inc(c);
9370 longval = POPLONG(ss,ix);
9371 TOPLONG(nss,ix) = longval;
9374 hv = (HV*)POPPTR(ss,ix);
9375 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
9376 c = (char*)POPPTR(ss,ix);
9377 TOPPTR(nss,ix) = pv_dup_inc(c);
9381 case SAVEt_DESTRUCTOR:
9382 ptr = POPPTR(ss,ix);
9383 TOPPTR(nss,ix) = any_dup(ptr, proto_perl); /* XXX quite arbitrary */
9384 dptr = POPDPTR(ss,ix);
9385 TOPDPTR(nss,ix) = (void (*)(void*))any_dup((void *)dptr, proto_perl);
9387 case SAVEt_DESTRUCTOR_X:
9388 ptr = POPPTR(ss,ix);
9389 TOPPTR(nss,ix) = any_dup(ptr, proto_perl); /* XXX quite arbitrary */
9390 dxptr = POPDXPTR(ss,ix);
9391 TOPDXPTR(nss,ix) = (void (*)(pTHXo_ void*))any_dup((void *)dxptr, proto_perl);
9393 case SAVEt_REGCONTEXT:
9399 case SAVEt_STACK_POS: /* Position on Perl stack */
9403 case SAVEt_AELEM: /* array element */
9404 sv = (SV*)POPPTR(ss,ix);
9405 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9408 av = (AV*)POPPTR(ss,ix);
9409 TOPPTR(nss,ix) = av_dup_inc(av, param);
9411 case SAVEt_HELEM: /* hash element */
9412 sv = (SV*)POPPTR(ss,ix);
9413 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9414 sv = (SV*)POPPTR(ss,ix);
9415 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
9416 hv = (HV*)POPPTR(ss,ix);
9417 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
9420 ptr = POPPTR(ss,ix);
9421 TOPPTR(nss,ix) = ptr;
9428 av = (AV*)POPPTR(ss,ix);
9429 TOPPTR(nss,ix) = av_dup(av, param);
9432 longval = (long)POPLONG(ss,ix);
9433 TOPLONG(nss,ix) = longval;
9434 ptr = POPPTR(ss,ix);
9435 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
9436 sv = (SV*)POPPTR(ss,ix);
9437 TOPPTR(nss,ix) = sv_dup(sv, param);
9440 Perl_croak(aTHX_ "panic: ss_dup inconsistency");
9452 =for apidoc perl_clone
9454 Create and return a new interpreter by cloning the current one.
9459 /* XXX the above needs expanding by someone who actually understands it ! */
9462 perl_clone(PerlInterpreter *proto_perl, UV flags)
9465 CPerlObj *pPerl = (CPerlObj*)proto_perl;
9468 #ifdef PERL_IMPLICIT_SYS
9470 /* perlhost.h so we need to call into it
9471 to clone the host, CPerlHost should have a c interface, sky */
9473 if (flags & CLONEf_CLONE_HOST) {
9474 return perl_clone_host(proto_perl,flags);
9476 return perl_clone_using(proto_perl, flags,
9478 proto_perl->IMemShared,
9479 proto_perl->IMemParse,
9489 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
9490 struct IPerlMem* ipM, struct IPerlMem* ipMS,
9491 struct IPerlMem* ipMP, struct IPerlEnv* ipE,
9492 struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
9493 struct IPerlDir* ipD, struct IPerlSock* ipS,
9494 struct IPerlProc* ipP)
9496 /* XXX many of the string copies here can be optimized if they're
9497 * constants; they need to be allocated as common memory and just
9498 * their pointers copied. */
9501 clone_params* param = (clone_params*) malloc(sizeof(clone_params));
9506 CPerlObj *pPerl = new(ipM) CPerlObj(ipM, ipMS, ipMP, ipE, ipStd, ipLIO,
9508 PERL_SET_THX(pPerl);
9509 # else /* !PERL_OBJECT */
9510 PerlInterpreter *my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
9511 PERL_SET_THX(my_perl);
9514 memset(my_perl, 0xab, sizeof(PerlInterpreter));
9520 # else /* !DEBUGGING */
9521 Zero(my_perl, 1, PerlInterpreter);
9522 # endif /* DEBUGGING */
9526 PL_MemShared = ipMS;
9534 # endif /* PERL_OBJECT */
9535 #else /* !PERL_IMPLICIT_SYS */
9537 clone_params* param = (clone_params*) malloc(sizeof(clone_params));
9538 PerlInterpreter *my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
9539 PERL_SET_THX(my_perl);
9544 memset(my_perl, 0xab, sizeof(PerlInterpreter));
9550 # else /* !DEBUGGING */
9551 Zero(my_perl, 1, PerlInterpreter);
9552 # endif /* DEBUGGING */
9553 #endif /* PERL_IMPLICIT_SYS */
9554 param->flags = flags;
9557 PL_xiv_arenaroot = NULL;
9559 PL_xnv_arenaroot = NULL;
9561 PL_xrv_arenaroot = NULL;
9563 PL_xpv_arenaroot = NULL;
9565 PL_xpviv_arenaroot = NULL;
9566 PL_xpviv_root = NULL;
9567 PL_xpvnv_arenaroot = NULL;
9568 PL_xpvnv_root = NULL;
9569 PL_xpvcv_arenaroot = NULL;
9570 PL_xpvcv_root = NULL;
9571 PL_xpvav_arenaroot = NULL;
9572 PL_xpvav_root = NULL;
9573 PL_xpvhv_arenaroot = NULL;
9574 PL_xpvhv_root = NULL;
9575 PL_xpvmg_arenaroot = NULL;
9576 PL_xpvmg_root = NULL;
9577 PL_xpvlv_arenaroot = NULL;
9578 PL_xpvlv_root = NULL;
9579 PL_xpvbm_arenaroot = NULL;
9580 PL_xpvbm_root = NULL;
9581 PL_he_arenaroot = NULL;
9583 PL_nice_chunk = NULL;
9584 PL_nice_chunk_size = 0;
9587 PL_sv_root = Nullsv;
9588 PL_sv_arenaroot = Nullsv;
9590 PL_debug = proto_perl->Idebug;
9592 /* create SV map for pointer relocation */
9593 PL_ptr_table = ptr_table_new();
9595 /* initialize these special pointers as early as possible */
9596 SvANY(&PL_sv_undef) = NULL;
9597 SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
9598 SvFLAGS(&PL_sv_undef) = SVf_READONLY|SVt_NULL;
9599 ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
9602 SvUPGRADE(&PL_sv_no, SVt_PVNV);
9604 SvANY(&PL_sv_no) = new_XPVNV();
9606 SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
9607 SvFLAGS(&PL_sv_no) = SVp_NOK|SVf_NOK|SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
9608 SvPVX(&PL_sv_no) = SAVEPVN(PL_No, 0);
9609 SvCUR(&PL_sv_no) = 0;
9610 SvLEN(&PL_sv_no) = 1;
9611 SvNVX(&PL_sv_no) = 0;
9612 ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
9615 SvUPGRADE(&PL_sv_yes, SVt_PVNV);
9617 SvANY(&PL_sv_yes) = new_XPVNV();
9619 SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
9620 SvFLAGS(&PL_sv_yes) = SVp_NOK|SVf_NOK|SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
9621 SvPVX(&PL_sv_yes) = SAVEPVN(PL_Yes, 1);
9622 SvCUR(&PL_sv_yes) = 1;
9623 SvLEN(&PL_sv_yes) = 2;
9624 SvNVX(&PL_sv_yes) = 1;
9625 ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
9627 /* create shared string table */
9628 PL_strtab = newHV();
9629 HvSHAREKEYS_off(PL_strtab);
9630 hv_ksplit(PL_strtab, 512);
9631 ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
9633 PL_compiling = proto_perl->Icompiling;
9634 PL_compiling.cop_stashpv = SAVEPV(PL_compiling.cop_stashpv);
9635 PL_compiling.cop_file = SAVEPV(PL_compiling.cop_file);
9636 ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
9637 if (!specialWARN(PL_compiling.cop_warnings))
9638 PL_compiling.cop_warnings = sv_dup_inc(PL_compiling.cop_warnings, param);
9639 if (!specialCopIO(PL_compiling.cop_io))
9640 PL_compiling.cop_io = sv_dup_inc(PL_compiling.cop_io, param);
9641 PL_curcop = (COP*)any_dup(proto_perl->Tcurcop, proto_perl);
9643 /* pseudo environmental stuff */
9644 PL_origargc = proto_perl->Iorigargc;
9646 New(0, PL_origargv, i+1, char*);
9647 PL_origargv[i] = '\0';
9649 PL_origargv[i] = SAVEPV(proto_perl->Iorigargv[i]);
9653 param->stashes = newAV(); /* Setup array of objects to call clone on */
9656 PL_envgv = gv_dup(proto_perl->Ienvgv, param);
9657 PL_incgv = gv_dup(proto_perl->Iincgv, param);
9658 PL_hintgv = gv_dup(proto_perl->Ihintgv, param);
9659 PL_origfilename = SAVEPV(proto_perl->Iorigfilename);
9660 PL_diehook = sv_dup_inc(proto_perl->Idiehook, param);
9661 PL_warnhook = sv_dup_inc(proto_perl->Iwarnhook, param);
9664 PL_minus_c = proto_perl->Iminus_c;
9665 PL_patchlevel = sv_dup_inc(proto_perl->Ipatchlevel, param);
9666 PL_localpatches = proto_perl->Ilocalpatches;
9667 PL_splitstr = proto_perl->Isplitstr;
9668 PL_preprocess = proto_perl->Ipreprocess;
9669 PL_minus_n = proto_perl->Iminus_n;
9670 PL_minus_p = proto_perl->Iminus_p;
9671 PL_minus_l = proto_perl->Iminus_l;
9672 PL_minus_a = proto_perl->Iminus_a;
9673 PL_minus_F = proto_perl->Iminus_F;
9674 PL_doswitches = proto_perl->Idoswitches;
9675 PL_dowarn = proto_perl->Idowarn;
9676 PL_doextract = proto_perl->Idoextract;
9677 PL_sawampersand = proto_perl->Isawampersand;
9678 PL_unsafe = proto_perl->Iunsafe;
9679 PL_inplace = SAVEPV(proto_perl->Iinplace);
9680 PL_e_script = sv_dup_inc(proto_perl->Ie_script, param);
9681 PL_perldb = proto_perl->Iperldb;
9682 PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
9684 /* magical thingies */
9685 /* XXX time(&PL_basetime) when asked for? */
9686 PL_basetime = proto_perl->Ibasetime;
9687 PL_formfeed = sv_dup(proto_perl->Iformfeed, param);
9689 PL_maxsysfd = proto_perl->Imaxsysfd;
9690 PL_multiline = proto_perl->Imultiline;
9691 PL_statusvalue = proto_perl->Istatusvalue;
9693 PL_statusvalue_vms = proto_perl->Istatusvalue_vms;
9696 /* shortcuts to various I/O objects */
9697 PL_stdingv = gv_dup(proto_perl->Istdingv, param);
9698 PL_stderrgv = gv_dup(proto_perl->Istderrgv, param);
9699 PL_defgv = gv_dup(proto_perl->Idefgv, param);
9700 PL_argvgv = gv_dup(proto_perl->Iargvgv, param);
9701 PL_argvoutgv = gv_dup(proto_perl->Iargvoutgv, param);
9702 PL_argvout_stack = av_dup_inc(proto_perl->Iargvout_stack, param);
9704 /* shortcuts to regexp stuff */
9705 PL_replgv = gv_dup(proto_perl->Ireplgv, param);
9707 /* shortcuts to misc objects */
9708 PL_errgv = gv_dup(proto_perl->Ierrgv, param);
9710 /* shortcuts to debugging objects */
9711 PL_DBgv = gv_dup(proto_perl->IDBgv, param);
9712 PL_DBline = gv_dup(proto_perl->IDBline, param);
9713 PL_DBsub = gv_dup(proto_perl->IDBsub, param);
9714 PL_DBsingle = sv_dup(proto_perl->IDBsingle, param);
9715 PL_DBtrace = sv_dup(proto_perl->IDBtrace, param);
9716 PL_DBsignal = sv_dup(proto_perl->IDBsignal, param);
9717 PL_lineary = av_dup(proto_perl->Ilineary, param);
9718 PL_dbargs = av_dup(proto_perl->Idbargs, param);
9721 PL_defstash = hv_dup_inc(proto_perl->Tdefstash, param);
9722 PL_curstash = hv_dup(proto_perl->Tcurstash, param);
9723 PL_nullstash = hv_dup(proto_perl->Inullstash, param);
9724 PL_debstash = hv_dup(proto_perl->Idebstash, param);
9725 PL_globalstash = hv_dup(proto_perl->Iglobalstash, param);
9726 PL_curstname = sv_dup_inc(proto_perl->Icurstname, param);
9728 PL_beginav = av_dup_inc(proto_perl->Ibeginav, param);
9729 PL_endav = av_dup_inc(proto_perl->Iendav, param);
9730 PL_checkav = av_dup_inc(proto_perl->Icheckav, param);
9731 PL_initav = av_dup_inc(proto_perl->Iinitav, param);
9733 PL_sub_generation = proto_perl->Isub_generation;
9735 /* funky return mechanisms */
9736 PL_forkprocess = proto_perl->Iforkprocess;
9738 /* subprocess state */
9739 PL_fdpid = av_dup_inc(proto_perl->Ifdpid, param);
9741 /* internal state */
9742 PL_tainting = proto_perl->Itainting;
9743 PL_maxo = proto_perl->Imaxo;
9744 if (proto_perl->Iop_mask)
9745 PL_op_mask = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
9747 PL_op_mask = Nullch;
9749 /* current interpreter roots */
9750 PL_main_cv = cv_dup_inc(proto_perl->Imain_cv, param);
9751 PL_main_root = OpREFCNT_inc(proto_perl->Imain_root);
9752 PL_main_start = proto_perl->Imain_start;
9753 PL_eval_root = proto_perl->Ieval_root;
9754 PL_eval_start = proto_perl->Ieval_start;
9756 /* runtime control stuff */
9757 PL_curcopdb = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
9758 PL_copline = proto_perl->Icopline;
9760 PL_filemode = proto_perl->Ifilemode;
9761 PL_lastfd = proto_perl->Ilastfd;
9762 PL_oldname = proto_perl->Ioldname; /* XXX not quite right */
9765 PL_gensym = proto_perl->Igensym;
9766 PL_preambled = proto_perl->Ipreambled;
9767 PL_preambleav = av_dup_inc(proto_perl->Ipreambleav, param);
9768 PL_laststatval = proto_perl->Ilaststatval;
9769 PL_laststype = proto_perl->Ilaststype;
9770 PL_mess_sv = Nullsv;
9772 PL_ors_sv = sv_dup_inc(proto_perl->Iors_sv, param);
9773 PL_ofmt = SAVEPV(proto_perl->Iofmt);
9775 /* interpreter atexit processing */
9776 PL_exitlistlen = proto_perl->Iexitlistlen;
9777 if (PL_exitlistlen) {
9778 New(0, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
9779 Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
9782 PL_exitlist = (PerlExitListEntry*)NULL;
9783 PL_modglobal = hv_dup_inc(proto_perl->Imodglobal, param);
9785 PL_profiledata = NULL;
9786 PL_rsfp = fp_dup(proto_perl->Irsfp, '<');
9787 /* PL_rsfp_filters entries have fake IoDIRP() */
9788 PL_rsfp_filters = av_dup_inc(proto_perl->Irsfp_filters, param);
9790 PL_compcv = cv_dup(proto_perl->Icompcv, param);
9791 PL_comppad = av_dup(proto_perl->Icomppad, param);
9792 PL_comppad_name = av_dup(proto_perl->Icomppad_name, param);
9793 PL_comppad_name_fill = proto_perl->Icomppad_name_fill;
9794 PL_comppad_name_floor = proto_perl->Icomppad_name_floor;
9795 PL_curpad = (SV**)ptr_table_fetch(PL_ptr_table,
9796 proto_perl->Tcurpad);
9798 #ifdef HAVE_INTERP_INTERN
9799 sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
9802 /* more statics moved here */
9803 PL_generation = proto_perl->Igeneration;
9804 PL_DBcv = cv_dup(proto_perl->IDBcv, param);
9806 PL_in_clean_objs = proto_perl->Iin_clean_objs;
9807 PL_in_clean_all = proto_perl->Iin_clean_all;
9809 PL_uid = proto_perl->Iuid;
9810 PL_euid = proto_perl->Ieuid;
9811 PL_gid = proto_perl->Igid;
9812 PL_egid = proto_perl->Iegid;
9813 PL_nomemok = proto_perl->Inomemok;
9814 PL_an = proto_perl->Ian;
9815 PL_cop_seqmax = proto_perl->Icop_seqmax;
9816 PL_op_seqmax = proto_perl->Iop_seqmax;
9817 PL_evalseq = proto_perl->Ievalseq;
9818 PL_origenviron = proto_perl->Iorigenviron; /* XXX not quite right */
9819 PL_origalen = proto_perl->Iorigalen;
9820 PL_pidstatus = newHV(); /* XXX flag for cloning? */
9821 PL_osname = SAVEPV(proto_perl->Iosname);
9822 PL_sh_path = SAVEPV(proto_perl->Ish_path);
9823 PL_sighandlerp = proto_perl->Isighandlerp;
9826 PL_runops = proto_perl->Irunops;
9828 Copy(proto_perl->Itokenbuf, PL_tokenbuf, 256, char);
9831 PL_cshlen = proto_perl->Icshlen;
9832 PL_cshname = SAVEPVN(proto_perl->Icshname, PL_cshlen);
9835 PL_lex_state = proto_perl->Ilex_state;
9836 PL_lex_defer = proto_perl->Ilex_defer;
9837 PL_lex_expect = proto_perl->Ilex_expect;
9838 PL_lex_formbrack = proto_perl->Ilex_formbrack;
9839 PL_lex_dojoin = proto_perl->Ilex_dojoin;
9840 PL_lex_starts = proto_perl->Ilex_starts;
9841 PL_lex_stuff = sv_dup_inc(proto_perl->Ilex_stuff, param);
9842 PL_lex_repl = sv_dup_inc(proto_perl->Ilex_repl, param);
9843 PL_lex_op = proto_perl->Ilex_op;
9844 PL_lex_inpat = proto_perl->Ilex_inpat;
9845 PL_lex_inwhat = proto_perl->Ilex_inwhat;
9846 PL_lex_brackets = proto_perl->Ilex_brackets;
9847 i = (PL_lex_brackets < 120 ? 120 : PL_lex_brackets);
9848 PL_lex_brackstack = SAVEPVN(proto_perl->Ilex_brackstack,i);
9849 PL_lex_casemods = proto_perl->Ilex_casemods;
9850 i = (PL_lex_casemods < 12 ? 12 : PL_lex_casemods);
9851 PL_lex_casestack = SAVEPVN(proto_perl->Ilex_casestack,i);
9853 Copy(proto_perl->Inextval, PL_nextval, 5, YYSTYPE);
9854 Copy(proto_perl->Inexttype, PL_nexttype, 5, I32);
9855 PL_nexttoke = proto_perl->Inexttoke;
9857 PL_linestr = sv_dup_inc(proto_perl->Ilinestr, param);
9858 i = proto_perl->Ibufptr - SvPVX(proto_perl->Ilinestr);
9859 PL_bufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
9860 i = proto_perl->Ioldbufptr - SvPVX(proto_perl->Ilinestr);
9861 PL_oldbufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
9862 i = proto_perl->Ioldoldbufptr - SvPVX(proto_perl->Ilinestr);
9863 PL_oldoldbufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
9864 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
9865 i = proto_perl->Ilinestart - SvPVX(proto_perl->Ilinestr);
9866 PL_linestart = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
9867 PL_pending_ident = proto_perl->Ipending_ident;
9868 PL_sublex_info = proto_perl->Isublex_info; /* XXX not quite right */
9870 PL_expect = proto_perl->Iexpect;
9872 PL_multi_start = proto_perl->Imulti_start;
9873 PL_multi_end = proto_perl->Imulti_end;
9874 PL_multi_open = proto_perl->Imulti_open;
9875 PL_multi_close = proto_perl->Imulti_close;
9877 PL_error_count = proto_perl->Ierror_count;
9878 PL_subline = proto_perl->Isubline;
9879 PL_subname = sv_dup_inc(proto_perl->Isubname, param);
9881 PL_min_intro_pending = proto_perl->Imin_intro_pending;
9882 PL_max_intro_pending = proto_perl->Imax_intro_pending;
9883 PL_padix = proto_perl->Ipadix;
9884 PL_padix_floor = proto_perl->Ipadix_floor;
9885 PL_pad_reset_pending = proto_perl->Ipad_reset_pending;
9887 i = proto_perl->Ilast_uni - SvPVX(proto_perl->Ilinestr);
9888 PL_last_uni = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
9889 i = proto_perl->Ilast_lop - SvPVX(proto_perl->Ilinestr);
9890 PL_last_lop = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
9891 PL_last_lop_op = proto_perl->Ilast_lop_op;
9892 PL_in_my = proto_perl->Iin_my;
9893 PL_in_my_stash = hv_dup(proto_perl->Iin_my_stash, param);
9895 PL_cryptseen = proto_perl->Icryptseen;
9898 PL_hints = proto_perl->Ihints;
9900 PL_amagic_generation = proto_perl->Iamagic_generation;
9902 #ifdef USE_LOCALE_COLLATE
9903 PL_collation_ix = proto_perl->Icollation_ix;
9904 PL_collation_name = SAVEPV(proto_perl->Icollation_name);
9905 PL_collation_standard = proto_perl->Icollation_standard;
9906 PL_collxfrm_base = proto_perl->Icollxfrm_base;
9907 PL_collxfrm_mult = proto_perl->Icollxfrm_mult;
9908 #endif /* USE_LOCALE_COLLATE */
9910 #ifdef USE_LOCALE_NUMERIC
9911 PL_numeric_name = SAVEPV(proto_perl->Inumeric_name);
9912 PL_numeric_standard = proto_perl->Inumeric_standard;
9913 PL_numeric_local = proto_perl->Inumeric_local;
9914 PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
9915 #endif /* !USE_LOCALE_NUMERIC */
9917 /* utf8 character classes */
9918 PL_utf8_alnum = sv_dup_inc(proto_perl->Iutf8_alnum, param);
9919 PL_utf8_alnumc = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
9920 PL_utf8_ascii = sv_dup_inc(proto_perl->Iutf8_ascii, param);
9921 PL_utf8_alpha = sv_dup_inc(proto_perl->Iutf8_alpha, param);
9922 PL_utf8_space = sv_dup_inc(proto_perl->Iutf8_space, param);
9923 PL_utf8_cntrl = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
9924 PL_utf8_graph = sv_dup_inc(proto_perl->Iutf8_graph, param);
9925 PL_utf8_digit = sv_dup_inc(proto_perl->Iutf8_digit, param);
9926 PL_utf8_upper = sv_dup_inc(proto_perl->Iutf8_upper, param);
9927 PL_utf8_lower = sv_dup_inc(proto_perl->Iutf8_lower, param);
9928 PL_utf8_print = sv_dup_inc(proto_perl->Iutf8_print, param);
9929 PL_utf8_punct = sv_dup_inc(proto_perl->Iutf8_punct, param);
9930 PL_utf8_xdigit = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
9931 PL_utf8_mark = sv_dup_inc(proto_perl->Iutf8_mark, param);
9932 PL_utf8_toupper = sv_dup_inc(proto_perl->Iutf8_toupper, param);
9933 PL_utf8_totitle = sv_dup_inc(proto_perl->Iutf8_totitle, param);
9934 PL_utf8_tolower = sv_dup_inc(proto_perl->Iutf8_tolower, param);
9937 PL_last_swash_hv = Nullhv; /* reinits on demand */
9938 PL_last_swash_klen = 0;
9939 PL_last_swash_key[0]= '\0';
9940 PL_last_swash_tmps = (U8*)NULL;
9941 PL_last_swash_slen = 0;
9943 /* perly.c globals */
9944 PL_yydebug = proto_perl->Iyydebug;
9945 PL_yynerrs = proto_perl->Iyynerrs;
9946 PL_yyerrflag = proto_perl->Iyyerrflag;
9947 PL_yychar = proto_perl->Iyychar;
9948 PL_yyval = proto_perl->Iyyval;
9949 PL_yylval = proto_perl->Iyylval;
9951 PL_glob_index = proto_perl->Iglob_index;
9952 PL_srand_called = proto_perl->Isrand_called;
9953 PL_uudmap['M'] = 0; /* reinits on demand */
9954 PL_bitcount = Nullch; /* reinits on demand */
9956 if (proto_perl->Ipsig_pend) {
9957 Newz(0, PL_psig_pend, SIG_SIZE, int);
9960 PL_psig_pend = (int*)NULL;
9963 if (proto_perl->Ipsig_ptr) {
9964 Newz(0, PL_psig_ptr, SIG_SIZE, SV*);
9965 Newz(0, PL_psig_name, SIG_SIZE, SV*);
9966 for (i = 1; i < SIG_SIZE; i++) {
9967 PL_psig_ptr[i] = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
9968 PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
9972 PL_psig_ptr = (SV**)NULL;
9973 PL_psig_name = (SV**)NULL;
9976 /* thrdvar.h stuff */
9978 if (flags & CLONEf_COPY_STACKS) {
9979 /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
9980 PL_tmps_ix = proto_perl->Ttmps_ix;
9981 PL_tmps_max = proto_perl->Ttmps_max;
9982 PL_tmps_floor = proto_perl->Ttmps_floor;
9983 Newz(50, PL_tmps_stack, PL_tmps_max, SV*);
9985 while (i <= PL_tmps_ix) {
9986 PL_tmps_stack[i] = sv_dup_inc(proto_perl->Ttmps_stack[i], param);
9990 /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
9991 i = proto_perl->Tmarkstack_max - proto_perl->Tmarkstack;
9992 Newz(54, PL_markstack, i, I32);
9993 PL_markstack_max = PL_markstack + (proto_perl->Tmarkstack_max
9994 - proto_perl->Tmarkstack);
9995 PL_markstack_ptr = PL_markstack + (proto_perl->Tmarkstack_ptr
9996 - proto_perl->Tmarkstack);
9997 Copy(proto_perl->Tmarkstack, PL_markstack,
9998 PL_markstack_ptr - PL_markstack + 1, I32);
10000 /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
10001 * NOTE: unlike the others! */
10002 PL_scopestack_ix = proto_perl->Tscopestack_ix;
10003 PL_scopestack_max = proto_perl->Tscopestack_max;
10004 Newz(54, PL_scopestack, PL_scopestack_max, I32);
10005 Copy(proto_perl->Tscopestack, PL_scopestack, PL_scopestack_ix, I32);
10007 /* next push_return() sets PL_retstack[PL_retstack_ix]
10008 * NOTE: unlike the others! */
10009 PL_retstack_ix = proto_perl->Tretstack_ix;
10010 PL_retstack_max = proto_perl->Tretstack_max;
10011 Newz(54, PL_retstack, PL_retstack_max, OP*);
10012 Copy(proto_perl->Tretstack, PL_retstack, PL_retstack_ix, I32);
10014 /* NOTE: si_dup() looks at PL_markstack */
10015 PL_curstackinfo = si_dup(proto_perl->Tcurstackinfo, param);
10017 /* PL_curstack = PL_curstackinfo->si_stack; */
10018 PL_curstack = av_dup(proto_perl->Tcurstack, param);
10019 PL_mainstack = av_dup(proto_perl->Tmainstack, param);
10021 /* next PUSHs() etc. set *(PL_stack_sp+1) */
10022 PL_stack_base = AvARRAY(PL_curstack);
10023 PL_stack_sp = PL_stack_base + (proto_perl->Tstack_sp
10024 - proto_perl->Tstack_base);
10025 PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
10027 /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
10028 * NOTE: unlike the others! */
10029 PL_savestack_ix = proto_perl->Tsavestack_ix;
10030 PL_savestack_max = proto_perl->Tsavestack_max;
10031 /*Newz(54, PL_savestack, PL_savestack_max, ANY);*/
10032 PL_savestack = ss_dup(proto_perl, param);
10036 ENTER; /* perl_destruct() wants to LEAVE; */
10039 PL_start_env = proto_perl->Tstart_env; /* XXXXXX */
10040 PL_top_env = &PL_start_env;
10042 PL_op = proto_perl->Top;
10045 PL_Xpv = (XPV*)NULL;
10046 PL_na = proto_perl->Tna;
10048 PL_statbuf = proto_perl->Tstatbuf;
10049 PL_statcache = proto_perl->Tstatcache;
10050 PL_statgv = gv_dup(proto_perl->Tstatgv, param);
10051 PL_statname = sv_dup_inc(proto_perl->Tstatname, param);
10053 PL_timesbuf = proto_perl->Ttimesbuf;
10056 PL_tainted = proto_perl->Ttainted;
10057 PL_curpm = proto_perl->Tcurpm; /* XXX No PMOP ref count */
10058 PL_nrs = sv_dup_inc(proto_perl->Tnrs, param);
10059 PL_rs = sv_dup_inc(proto_perl->Trs, param);
10060 PL_last_in_gv = gv_dup(proto_perl->Tlast_in_gv, param);
10061 PL_ofs_sv = sv_dup_inc(proto_perl->Tofs_sv, param);
10062 PL_defoutgv = gv_dup_inc(proto_perl->Tdefoutgv, param);
10063 PL_chopset = proto_perl->Tchopset; /* XXX never deallocated */
10064 PL_toptarget = sv_dup_inc(proto_perl->Ttoptarget, param);
10065 PL_bodytarget = sv_dup_inc(proto_perl->Tbodytarget, param);
10066 PL_formtarget = sv_dup(proto_perl->Tformtarget, param);
10068 PL_restartop = proto_perl->Trestartop;
10069 PL_in_eval = proto_perl->Tin_eval;
10070 PL_delaymagic = proto_perl->Tdelaymagic;
10071 PL_dirty = proto_perl->Tdirty;
10072 PL_localizing = proto_perl->Tlocalizing;
10074 #ifdef PERL_FLEXIBLE_EXCEPTIONS
10075 PL_protect = proto_perl->Tprotect;
10077 PL_errors = sv_dup_inc(proto_perl->Terrors, param);
10078 PL_av_fetch_sv = Nullsv;
10079 PL_hv_fetch_sv = Nullsv;
10080 Zero(&PL_hv_fetch_ent_mh, 1, HE); /* XXX */
10081 PL_modcount = proto_perl->Tmodcount;
10082 PL_lastgotoprobe = Nullop;
10083 PL_dumpindent = proto_perl->Tdumpindent;
10085 PL_sortcop = (OP*)any_dup(proto_perl->Tsortcop, proto_perl);
10086 PL_sortstash = hv_dup(proto_perl->Tsortstash, param);
10087 PL_firstgv = gv_dup(proto_perl->Tfirstgv, param);
10088 PL_secondgv = gv_dup(proto_perl->Tsecondgv, param);
10089 PL_sortcxix = proto_perl->Tsortcxix;
10090 PL_efloatbuf = Nullch; /* reinits on demand */
10091 PL_efloatsize = 0; /* reinits on demand */
10095 PL_screamfirst = NULL;
10096 PL_screamnext = NULL;
10097 PL_maxscream = -1; /* reinits on demand */
10098 PL_lastscream = Nullsv;
10100 PL_watchaddr = NULL;
10101 PL_watchok = Nullch;
10103 PL_regdummy = proto_perl->Tregdummy;
10104 PL_regcomp_parse = Nullch;
10105 PL_regxend = Nullch;
10106 PL_regcode = (regnode*)NULL;
10109 PL_regprecomp = Nullch;
10114 PL_seen_zerolen = 0;
10116 PL_regcomp_rx = (regexp*)NULL;
10118 PL_colorset = 0; /* reinits PL_colors[] */
10119 /*PL_colors[6] = {0,0,0,0,0,0};*/
10120 PL_reg_whilem_seen = 0;
10121 PL_reginput = Nullch;
10122 PL_regbol = Nullch;
10123 PL_regeol = Nullch;
10124 PL_regstartp = (I32*)NULL;
10125 PL_regendp = (I32*)NULL;
10126 PL_reglastparen = (U32*)NULL;
10127 PL_regtill = Nullch;
10128 PL_reg_start_tmp = (char**)NULL;
10129 PL_reg_start_tmpl = 0;
10130 PL_regdata = (struct reg_data*)NULL;
10133 PL_reg_eval_set = 0;
10135 PL_regprogram = (regnode*)NULL;
10137 PL_regcc = (CURCUR*)NULL;
10138 PL_reg_call_cc = (struct re_cc_state*)NULL;
10139 PL_reg_re = (regexp*)NULL;
10140 PL_reg_ganch = Nullch;
10141 PL_reg_sv = Nullsv;
10142 PL_reg_magic = (MAGIC*)NULL;
10144 PL_reg_oldcurpm = (PMOP*)NULL;
10145 PL_reg_curpm = (PMOP*)NULL;
10146 PL_reg_oldsaved = Nullch;
10147 PL_reg_oldsavedlen = 0;
10148 PL_reg_maxiter = 0;
10149 PL_reg_leftiter = 0;
10150 PL_reg_poscache = Nullch;
10151 PL_reg_poscache_size= 0;
10153 /* RE engine - function pointers */
10154 PL_regcompp = proto_perl->Tregcompp;
10155 PL_regexecp = proto_perl->Tregexecp;
10156 PL_regint_start = proto_perl->Tregint_start;
10157 PL_regint_string = proto_perl->Tregint_string;
10158 PL_regfree = proto_perl->Tregfree;
10160 PL_reginterp_cnt = 0;
10161 PL_reg_starttry = 0;
10163 if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
10164 ptr_table_free(PL_ptr_table);
10165 PL_ptr_table = NULL;
10168 /* Call the ->CLONE method, if it exists, for each of the stashes
10169 identified by sv_dup() above.
10171 while(av_len(param->stashes) != -1) {
10172 HV* stash = (HV*) av_shift(param->stashes);
10173 GV* cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
10174 if (cloner && GvCV(cloner)) {
10179 XPUSHs(newSVpv(HvNAME(stash), 0));
10181 call_sv((SV*)GvCV(cloner), G_DISCARD);
10188 return (PerlInterpreter*)pPerl;
10194 #else /* !USE_ITHREADS */
10200 #endif /* USE_ITHREADS */