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