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