This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Strip \\?\ prefix from Perl path in win32/win32.c:set_w32_module_name()
[perl5.git] / sv.c
CommitLineData
a0d0e21e 1/* sv.c
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
241d1a3b 4 * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
79072805
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
a0d0e21e 9 * "I wonder what the Entish is for 'yes' and 'no'," he thought.
645c22ef
DM
10 *
11 *
5e045b90
AMS
12 * This file contains the code that creates, manipulates and destroys
13 * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
14 * structure of an SV, so their creation and destruction is handled
15 * here; higher-level functions are in av.c, hv.c, and so on. Opcode
16 * level functions (eg. substr, split, join) for each of the types are
17 * in the pp*.c files.
79072805
LW
18 */
19
20#include "EXTERN.h"
864dbfa3 21#define PERL_IN_SV_C
79072805 22#include "perl.h"
d2f185dc 23#include "regcomp.h"
79072805 24
51371543 25#define FCALL *f
2c5424a7 26
2f8ed50e
OS
27#ifdef __Lynx__
28/* Missing proto on LynxOS */
29 char *gconvert(double, int, int, char *);
30#endif
31
e23c8137
JH
32#ifdef PERL_UTF8_CACHE_ASSERT
33/* The cache element 0 is the Unicode offset;
34 * the cache element 1 is the byte offset of the element 0;
35 * the cache element 2 is the Unicode length of the substring;
36 * the cache element 3 is the byte length of the substring;
37 * The checking of the substring side would be good
38 * but substr() has enough code paths to make my head spin;
39 * if adding more checks watch out for the following tests:
40 * t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
41 * lib/utf8.t lib/Unicode/Collate/t/index.t
42 * --jhi
43 */
44#define ASSERT_UTF8_CACHE(cache) \
45 STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); } } STMT_END
46#else
47#define ASSERT_UTF8_CACHE(cache) NOOP
48#endif
49
f8c7b90f 50#ifdef PERL_OLD_COPY_ON_WRITE
765f542d 51#define SV_COW_NEXT_SV(sv) INT2PTR(SV *,SvUVX(sv))
607fa7f2 52#define SV_COW_NEXT_SV_SET(current,next) SvUV_set(current, PTR2UV(next))
b5ccf5f2 53/* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
765f542d 54 on-write. */
765f542d 55#endif
645c22ef
DM
56
57/* ============================================================================
58
59=head1 Allocation and deallocation of SVs.
60
5e045b90
AMS
61An SV (or AV, HV, etc.) is allocated in two parts: the head (struct sv,
62av, hv...) contains type and reference count information, as well as a
63pointer to the body (struct xrv, xpv, xpviv...), which contains fields
64specific to each type.
65
4977e971
NC
66Normally, this allocation is done using arenas, which by default are
67approximately 4K chunks of memory parcelled up into N heads or bodies. The
68first slot in each arena is reserved, and is used to hold a link to the next
69arena. In the case of heads, the unused first slot also contains some flags
70and a note of the number of slots. Snaked through each arena chain is a
5e045b90 71linked list of free items; when this becomes empty, an extra arena is
4977e971 72allocated and divided up into N items which are threaded into the free list.
645c22ef
DM
73
74The following global variables are associated with arenas:
75
76 PL_sv_arenaroot pointer to list of SV arenas
77 PL_sv_root pointer to list of free SV structures
78
79 PL_foo_arenaroot pointer to list of foo arenas,
80 PL_foo_root pointer to list of free foo bodies
81 ... for foo in xiv, xnv, xrv, xpv etc.
82
83Note that some of the larger and more rarely used body types (eg xpvio)
84are not allocated using arenas, but are instead just malloc()/free()ed as
85required. Also, if PURIFY is defined, arenas are abandoned altogether,
86with all items individually malloc()ed. In addition, a few SV heads are
87not allocated from an arena, but are instead directly created as static
4977e971
NC
88or auto variables, eg PL_sv_undef. The size of arenas can be changed from
89the default by setting PERL_ARENA_SIZE appropriately at compile time.
645c22ef
DM
90
91The SV arena serves the secondary purpose of allowing still-live SVs
92to be located and destroyed during final cleanup.
93
94At the lowest level, the macros new_SV() and del_SV() grab and free
95an SV head. (If debugging with -DD, del_SV() calls the function S_del_sv()
96to return the SV to the free list with error checking.) new_SV() calls
97more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
98SVs in the free list have their SvTYPE field set to all ones.
99
100Similarly, there are macros new_XIV()/del_XIV(), new_XNV()/del_XNV() etc
101that allocate and return individual body types. Normally these are mapped
ff276b08
RG
102to the arena-manipulating functions new_xiv()/del_xiv() etc, but may be
103instead mapped directly to malloc()/free() if PURIFY is defined. The
645c22ef
DM
104new/del functions remove from, or add to, the appropriate PL_foo_root
105list, and call more_xiv() etc to add a new arena if the list is empty.
106
ff276b08 107At the time of very final cleanup, sv_free_arenas() is called from
645c22ef
DM
108perl_destruct() to physically free all the arenas allocated since the
109start of the interpreter. Note that this also clears PL_he_arenaroot,
110which is otherwise dealt with in hv.c.
111
112Manipulation of any of the PL_*root pointers is protected by enclosing
113LOCK_SV_MUTEX; ... UNLOCK_SV_MUTEX calls which should Do the Right Thing
114if threads are enabled.
115
116The function visit() scans the SV arenas list, and calls a specified
117function for each SV it finds which is still live - ie which has an SvTYPE
118other than all 1's, and a non-zero SvREFCNT. visit() is used by the
119following functions (specified as [function that calls visit()] / [function
120called by visit() for each SV]):
121
122 sv_report_used() / do_report_used()
123 dump all remaining SVs (debugging aid)
124
125 sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
126 Attempt to free all objects pointed to by RVs,
127 and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
128 try to do the same for all objects indirectly
129 referenced by typeglobs too. Called once from
130 perl_destruct(), prior to calling sv_clean_all()
131 below.
132
133 sv_clean_all() / do_clean_all()
134 SvREFCNT_dec(sv) each remaining SV, possibly
135 triggering an sv_free(). It also sets the
136 SVf_BREAK flag on the SV to indicate that the
137 refcnt has been artificially lowered, and thus
138 stopping sv_free() from giving spurious warnings
139 about SVs which unexpectedly have a refcnt
140 of zero. called repeatedly from perl_destruct()
141 until there are no SVs left.
142
143=head2 Summary
144
145Private API to rest of sv.c
146
147 new_SV(), del_SV(),
148
149 new_XIV(), del_XIV(),
150 new_XNV(), del_XNV(),
151 etc
152
153Public API:
154
8cf8f3d1 155 sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
645c22ef
DM
156
157
158=cut
159
160============================================================================ */
161
162
51371543 163
4561caa4
CS
164/*
165 * "A time to plant, and a time to uproot what was planted..."
166 */
167
cac9b346 168
fd0854ff
DM
169#ifdef DEBUG_LEAKING_SCALARS
170# ifdef NETWARE
171# define FREE_SV_DEBUG_FILE(sv) PerlMemfree((sv)->sv_debug_file)
172# else
173# define FREE_SV_DEBUG_FILE(sv) PerlMemShared_free((sv)->sv_debug_file)
174# endif
175#else
176# define FREE_SV_DEBUG_FILE(sv)
177#endif
178
053fc874
GS
179#define plant_SV(p) \
180 STMT_START { \
fd0854ff 181 FREE_SV_DEBUG_FILE(p); \
053fc874
GS
182 SvANY(p) = (void *)PL_sv_root; \
183 SvFLAGS(p) = SVTYPEMASK; \
184 PL_sv_root = (p); \
185 --PL_sv_count; \
186 } STMT_END
a0d0e21e 187
fba3b22e 188/* sv_mutex must be held while calling uproot_SV() */
053fc874
GS
189#define uproot_SV(p) \
190 STMT_START { \
191 (p) = PL_sv_root; \
192 PL_sv_root = (SV*)SvANY(p); \
193 ++PL_sv_count; \
194 } STMT_END
195
645c22ef 196
cac9b346
NC
197/* make some more SVs by adding another arena */
198
199/* sv_mutex must be held while calling more_sv() */
200STATIC SV*
201S_more_sv(pTHX)
202{
203 SV* sv;
204
205 if (PL_nice_chunk) {
206 sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
207 PL_nice_chunk = Nullch;
208 PL_nice_chunk_size = 0;
209 }
210 else {
211 char *chunk; /* must use New here to match call to */
2e7ed132
NC
212 New(704,chunk,PERL_ARENA_SIZE,char); /* Safefree() in sv_free_arenas() */
213 sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
cac9b346
NC
214 }
215 uproot_SV(sv);
216 return sv;
217}
218
645c22ef
DM
219/* new_SV(): return a new, empty SV head */
220
eba0f806
DM
221#ifdef DEBUG_LEAKING_SCALARS
222/* provide a real function for a debugger to play with */
223STATIC SV*
224S_new_SV(pTHX)
225{
226 SV* sv;
227
228 LOCK_SV_MUTEX;
229 if (PL_sv_root)
230 uproot_SV(sv);
231 else
cac9b346 232 sv = S_more_sv(aTHX);
eba0f806
DM
233 UNLOCK_SV_MUTEX;
234 SvANY(sv) = 0;
235 SvREFCNT(sv) = 1;
236 SvFLAGS(sv) = 0;
fd0854ff
DM
237 sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
238 sv->sv_debug_line = (U16) ((PL_copline == NOLINE) ?
239 (PL_curcop ? CopLINE(PL_curcop) : 0) : PL_copline);
240 sv->sv_debug_inpad = 0;
241 sv->sv_debug_cloned = 0;
242# ifdef NETWARE
243 sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
244# else
245 sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
246# endif
247
eba0f806
DM
248 return sv;
249}
250# define new_SV(p) (p)=S_new_SV(aTHX)
251
252#else
253# define new_SV(p) \
053fc874
GS
254 STMT_START { \
255 LOCK_SV_MUTEX; \
256 if (PL_sv_root) \
257 uproot_SV(p); \
258 else \
cac9b346 259 (p) = S_more_sv(aTHX); \
053fc874
GS
260 UNLOCK_SV_MUTEX; \
261 SvANY(p) = 0; \
262 SvREFCNT(p) = 1; \
263 SvFLAGS(p) = 0; \
264 } STMT_END
eba0f806 265#endif
463ee0b2 266
645c22ef
DM
267
268/* del_SV(): return an empty SV head to the free list */
269
a0d0e21e 270#ifdef DEBUGGING
4561caa4 271
053fc874
GS
272#define del_SV(p) \
273 STMT_START { \
274 LOCK_SV_MUTEX; \
aea4f609 275 if (DEBUG_D_TEST) \
053fc874
GS
276 del_sv(p); \
277 else \
278 plant_SV(p); \
279 UNLOCK_SV_MUTEX; \
280 } STMT_END
a0d0e21e 281
76e3520e 282STATIC void
cea2e8a9 283S_del_sv(pTHX_ SV *p)
463ee0b2 284{
aea4f609 285 if (DEBUG_D_TEST) {
4633a7c4 286 SV* sva;
a3b680e6 287 bool ok = 0;
3280af22 288 for (sva = PL_sv_arenaroot; sva; sva = (SV *) SvANY(sva)) {
a3b680e6
AL
289 SV *sv = sva + 1;
290 SV *svend = &sva[SvREFCNT(sva)];
c0ff570e 291 if (p >= sv && p < svend) {
a0d0e21e 292 ok = 1;
c0ff570e
NC
293 break;
294 }
a0d0e21e
LW
295 }
296 if (!ok) {
0453d815 297 if (ckWARN_d(WARN_INTERNAL))
9014280d 298 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
472d47bc
SB
299 "Attempt to free non-arena SV: 0x%"UVxf
300 pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
a0d0e21e
LW
301 return;
302 }
303 }
4561caa4 304 plant_SV(p);
463ee0b2 305}
a0d0e21e 306
4561caa4
CS
307#else /* ! DEBUGGING */
308
309#define del_SV(p) plant_SV(p)
310
311#endif /* DEBUGGING */
463ee0b2 312
645c22ef
DM
313
314/*
ccfc67b7
JH
315=head1 SV Manipulation Functions
316
645c22ef
DM
317=for apidoc sv_add_arena
318
319Given a chunk of memory, link it to the head of the list of arenas,
320and split it into a list of free SVs.
321
322=cut
323*/
324
4633a7c4 325void
864dbfa3 326Perl_sv_add_arena(pTHX_ char *ptr, U32 size, U32 flags)
463ee0b2 327{
4633a7c4 328 SV* sva = (SV*)ptr;
463ee0b2
LW
329 register SV* sv;
330 register SV* svend;
4633a7c4
LW
331
332 /* The first SV in an arena isn't an SV. */
3280af22 333 SvANY(sva) = (void *) PL_sv_arenaroot; /* ptr to next arena */
4633a7c4
LW
334 SvREFCNT(sva) = size / sizeof(SV); /* number of SV slots */
335 SvFLAGS(sva) = flags; /* FAKE if not to be freed */
336
3280af22
NIS
337 PL_sv_arenaroot = sva;
338 PL_sv_root = sva + 1;
4633a7c4
LW
339
340 svend = &sva[SvREFCNT(sva) - 1];
341 sv = sva + 1;
463ee0b2 342 while (sv < svend) {
a0d0e21e 343 SvANY(sv) = (void *)(SV*)(sv + 1);
03e36789 344#ifdef DEBUGGING
978b032e 345 SvREFCNT(sv) = 0;
03e36789
NC
346#endif
347 /* Must always set typemask because it's awlays checked in on cleanup
348 when the arenas are walked looking for objects. */
8990e307 349 SvFLAGS(sv) = SVTYPEMASK;
463ee0b2
LW
350 sv++;
351 }
352 SvANY(sv) = 0;
03e36789
NC
353#ifdef DEBUGGING
354 SvREFCNT(sv) = 0;
355#endif
4633a7c4
LW
356 SvFLAGS(sv) = SVTYPEMASK;
357}
358
055972dc
DM
359/* visit(): call the named function for each non-free SV in the arenas
360 * whose flags field matches the flags/mask args. */
645c22ef 361
5226ed68 362STATIC I32
055972dc 363S_visit(pTHX_ SVFUNC_t f, U32 flags, U32 mask)
8990e307 364{
4633a7c4 365 SV* sva;
5226ed68 366 I32 visited = 0;
8990e307 367
3280af22 368 for (sva = PL_sv_arenaroot; sva; sva = (SV*)SvANY(sva)) {
a3b680e6
AL
369 register SV * const svend = &sva[SvREFCNT(sva)];
370 register SV* sv;
4561caa4 371 for (sv = sva + 1; sv < svend; ++sv) {
055972dc
DM
372 if (SvTYPE(sv) != SVTYPEMASK
373 && (sv->sv_flags & mask) == flags
374 && SvREFCNT(sv))
375 {
acfe0abc 376 (FCALL)(aTHX_ sv);
5226ed68
JH
377 ++visited;
378 }
8990e307
LW
379 }
380 }
5226ed68 381 return visited;
8990e307
LW
382}
383
758a08c3
JH
384#ifdef DEBUGGING
385
645c22ef
DM
386/* called by sv_report_used() for each live SV */
387
388static void
acfe0abc 389do_report_used(pTHX_ SV *sv)
645c22ef
DM
390{
391 if (SvTYPE(sv) != SVTYPEMASK) {
392 PerlIO_printf(Perl_debug_log, "****\n");
393 sv_dump(sv);
394 }
395}
758a08c3 396#endif
645c22ef
DM
397
398/*
399=for apidoc sv_report_used
400
401Dump the contents of all SVs not yet freed. (Debugging aid).
402
403=cut
404*/
405
8990e307 406void
864dbfa3 407Perl_sv_report_used(pTHX)
4561caa4 408{
ff270d3a 409#ifdef DEBUGGING
055972dc 410 visit(do_report_used, 0, 0);
ff270d3a 411#endif
4561caa4
CS
412}
413
645c22ef
DM
414/* called by sv_clean_objs() for each live SV */
415
416static void
acfe0abc 417do_clean_objs(pTHX_ SV *sv)
645c22ef
DM
418{
419 SV* rv;
420
421 if (SvROK(sv) && SvOBJECT(rv = SvRV(sv))) {
422 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(sv)));
423 if (SvWEAKREF(sv)) {
424 sv_del_backref(sv);
425 SvWEAKREF_off(sv);
b162af07 426 SvRV_set(sv, NULL);
645c22ef
DM
427 } else {
428 SvROK_off(sv);
b162af07 429 SvRV_set(sv, NULL);
645c22ef
DM
430 SvREFCNT_dec(rv);
431 }
432 }
433
434 /* XXX Might want to check arrays, etc. */
435}
436
437/* called by sv_clean_objs() for each live SV */
438
439#ifndef DISABLE_DESTRUCTOR_KLUDGE
440static void
acfe0abc 441do_clean_named_objs(pTHX_ SV *sv)
645c22ef
DM
442{
443 if (SvTYPE(sv) == SVt_PVGV && GvGP(sv)) {
444 if ( SvOBJECT(GvSV(sv)) ||
445 (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
446 (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
447 (GvIO(sv) && SvOBJECT(GvIO(sv))) ||
448 (GvCV(sv) && SvOBJECT(GvCV(sv))) )
449 {
450 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
ec5f3c78 451 SvFLAGS(sv) |= SVf_BREAK;
645c22ef
DM
452 SvREFCNT_dec(sv);
453 }
454 }
455}
456#endif
457
458/*
459=for apidoc sv_clean_objs
460
461Attempt to destroy all objects not yet freed
462
463=cut
464*/
465
4561caa4 466void
864dbfa3 467Perl_sv_clean_objs(pTHX)
4561caa4 468{
3280af22 469 PL_in_clean_objs = TRUE;
055972dc 470 visit(do_clean_objs, SVf_ROK, SVf_ROK);
4561caa4 471#ifndef DISABLE_DESTRUCTOR_KLUDGE
2d0f3c12 472 /* some barnacles may yet remain, clinging to typeglobs */
055972dc 473 visit(do_clean_named_objs, SVt_PVGV, SVTYPEMASK);
4561caa4 474#endif
3280af22 475 PL_in_clean_objs = FALSE;
4561caa4
CS
476}
477
645c22ef
DM
478/* called by sv_clean_all() for each live SV */
479
480static void
acfe0abc 481do_clean_all(pTHX_ SV *sv)
645c22ef
DM
482{
483 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
484 SvFLAGS(sv) |= SVf_BREAK;
0e705b3b
DM
485 if (PL_comppad == (AV*)sv) {
486 PL_comppad = Nullav;
487 PL_curpad = Null(SV**);
488 }
645c22ef
DM
489 SvREFCNT_dec(sv);
490}
491
492/*
493=for apidoc sv_clean_all
494
495Decrement the refcnt of each remaining SV, possibly triggering a
496cleanup. This function may have to be called multiple times to free
ff276b08 497SVs which are in complex self-referential hierarchies.
645c22ef
DM
498
499=cut
500*/
501
5226ed68 502I32
864dbfa3 503Perl_sv_clean_all(pTHX)
8990e307 504{
5226ed68 505 I32 cleaned;
3280af22 506 PL_in_clean_all = TRUE;
055972dc 507 cleaned = visit(do_clean_all, 0,0);
3280af22 508 PL_in_clean_all = FALSE;
5226ed68 509 return cleaned;
8990e307 510}
463ee0b2 511
645c22ef
DM
512/*
513=for apidoc sv_free_arenas
514
515Deallocate the memory used by all arenas. Note that all the individual SV
516heads and bodies within the arenas must already have been freed.
517
518=cut
519*/
520
4633a7c4 521void
864dbfa3 522Perl_sv_free_arenas(pTHX)
4633a7c4
LW
523{
524 SV* sva;
525 SV* svanext;
7b2c381c 526 void *arena, *arenanext;
4633a7c4
LW
527
528 /* Free arenas here, but be careful about fake ones. (We assume
529 contiguity of the fake ones with the corresponding real ones.) */
530
3280af22 531 for (sva = PL_sv_arenaroot; sva; sva = svanext) {
4633a7c4
LW
532 svanext = (SV*) SvANY(sva);
533 while (svanext && SvFAKE(svanext))
534 svanext = (SV*) SvANY(svanext);
535
536 if (!SvFAKE(sva))
1df70142 537 Safefree(sva);
4633a7c4 538 }
5f05dabc 539
612f20c3 540 for (arena = PL_xnv_arenaroot; arena; arena = arenanext) {
7b2c381c 541 arenanext = *(void **)arena;
612f20c3
GS
542 Safefree(arena);
543 }
544 PL_xnv_arenaroot = 0;
bf9cdc68 545 PL_xnv_root = 0;
612f20c3 546
612f20c3 547 for (arena = PL_xpv_arenaroot; arena; arena = arenanext) {
7b2c381c 548 arenanext = *(void **)arena;
612f20c3
GS
549 Safefree(arena);
550 }
551 PL_xpv_arenaroot = 0;
bf9cdc68 552 PL_xpv_root = 0;
612f20c3 553
7b2c381c
NC
554 for (arena = PL_xpviv_arenaroot; arena; arena = arenanext) {
555 arenanext = *(void **)arena;
612f20c3
GS
556 Safefree(arena);
557 }
558 PL_xpviv_arenaroot = 0;
bf9cdc68 559 PL_xpviv_root = 0;
612f20c3 560
7b2c381c
NC
561 for (arena = PL_xpvnv_arenaroot; arena; arena = arenanext) {
562 arenanext = *(void **)arena;
612f20c3
GS
563 Safefree(arena);
564 }
565 PL_xpvnv_arenaroot = 0;
bf9cdc68 566 PL_xpvnv_root = 0;
612f20c3 567
7b2c381c
NC
568 for (arena = PL_xpvcv_arenaroot; arena; arena = arenanext) {
569 arenanext = *(void **)arena;
612f20c3
GS
570 Safefree(arena);
571 }
572 PL_xpvcv_arenaroot = 0;
bf9cdc68 573 PL_xpvcv_root = 0;
612f20c3 574
7b2c381c
NC
575 for (arena = PL_xpvav_arenaroot; arena; arena = arenanext) {
576 arenanext = *(void **)arena;
612f20c3
GS
577 Safefree(arena);
578 }
579 PL_xpvav_arenaroot = 0;
bf9cdc68 580 PL_xpvav_root = 0;
612f20c3 581
7b2c381c
NC
582 for (arena = PL_xpvhv_arenaroot; arena; arena = arenanext) {
583 arenanext = *(void **)arena;
612f20c3
GS
584 Safefree(arena);
585 }
586 PL_xpvhv_arenaroot = 0;
bf9cdc68 587 PL_xpvhv_root = 0;
612f20c3 588
7b2c381c
NC
589 for (arena = PL_xpvmg_arenaroot; arena; arena = arenanext) {
590 arenanext = *(void **)arena;
612f20c3
GS
591 Safefree(arena);
592 }
593 PL_xpvmg_arenaroot = 0;
bf9cdc68 594 PL_xpvmg_root = 0;
612f20c3 595
7b2c381c
NC
596 for (arena = PL_xpvgv_arenaroot; arena; arena = arenanext) {
597 arenanext = *(void **)arena;
727879eb
NC
598 Safefree(arena);
599 }
600 PL_xpvgv_arenaroot = 0;
601 PL_xpvgv_root = 0;
602
7b2c381c
NC
603 for (arena = PL_xpvlv_arenaroot; arena; arena = arenanext) {
604 arenanext = *(void **)arena;
612f20c3
GS
605 Safefree(arena);
606 }
607 PL_xpvlv_arenaroot = 0;
bf9cdc68 608 PL_xpvlv_root = 0;
612f20c3 609
7b2c381c
NC
610 for (arena = PL_xpvbm_arenaroot; arena; arena = arenanext) {
611 arenanext = *(void **)arena;
612f20c3
GS
612 Safefree(arena);
613 }
614 PL_xpvbm_arenaroot = 0;
bf9cdc68 615 PL_xpvbm_root = 0;
612f20c3 616
b1135e3d
NC
617 {
618 HE *he;
619 HE *he_next;
620 for (he = PL_he_arenaroot; he; he = he_next) {
621 he_next = HeNEXT(he);
622 Safefree(he);
623 }
612f20c3
GS
624 }
625 PL_he_arenaroot = 0;
bf9cdc68 626 PL_he_root = 0;
612f20c3 627
892b45be 628#if defined(USE_ITHREADS)
b1135e3d
NC
629 {
630 struct ptr_tbl_ent *pte;
631 struct ptr_tbl_ent *pte_next;
632 for (pte = PL_pte_arenaroot; pte; pte = pte_next) {
633 pte_next = pte->next;
634 Safefree(pte);
635 }
32e691d0
NC
636 }
637 PL_pte_arenaroot = 0;
638 PL_pte_root = 0;
892b45be 639#endif
32e691d0 640
3280af22
NIS
641 if (PL_nice_chunk)
642 Safefree(PL_nice_chunk);
643 PL_nice_chunk = Nullch;
644 PL_nice_chunk_size = 0;
645 PL_sv_arenaroot = 0;
646 PL_sv_root = 0;
4633a7c4
LW
647}
648
29489e7c
DM
649/* ---------------------------------------------------------------------
650 *
651 * support functions for report_uninit()
652 */
653
654/* the maxiumum size of array or hash where we will scan looking
655 * for the undefined element that triggered the warning */
656
657#define FUV_MAX_SEARCH_SIZE 1000
658
659/* Look for an entry in the hash whose value has the same SV as val;
660 * If so, return a mortal copy of the key. */
661
662STATIC SV*
663S_find_hash_subscript(pTHX_ HV *hv, SV* val)
664{
27da23d5 665 dVAR;
29489e7c 666 register HE **array;
29489e7c
DM
667 I32 i;
668
669 if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
670 (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
671 return Nullsv;
672
673 array = HvARRAY(hv);
674
675 for (i=HvMAX(hv); i>0; i--) {
f54cb97a 676 register HE *entry;
29489e7c
DM
677 for (entry = array[i]; entry; entry = HeNEXT(entry)) {
678 if (HeVAL(entry) != val)
679 continue;
680 if ( HeVAL(entry) == &PL_sv_undef ||
681 HeVAL(entry) == &PL_sv_placeholder)
682 continue;
683 if (!HeKEY(entry))
684 return Nullsv;
685 if (HeKLEN(entry) == HEf_SVKEY)
686 return sv_mortalcopy(HeKEY_sv(entry));
687 return sv_2mortal(newSVpvn(HeKEY(entry), HeKLEN(entry)));
688 }
689 }
690 return Nullsv;
691}
692
693/* Look for an entry in the array whose value has the same SV as val;
694 * If so, return the index, otherwise return -1. */
695
696STATIC I32
697S_find_array_subscript(pTHX_ AV *av, SV* val)
698{
699 SV** svp;
700 I32 i;
701 if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
702 (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
703 return -1;
704
705 svp = AvARRAY(av);
706 for (i=AvFILLp(av); i>=0; i--) {
707 if (svp[i] == val && svp[i] != &PL_sv_undef)
708 return i;
709 }
710 return -1;
711}
712
713/* S_varname(): return the name of a variable, optionally with a subscript.
714 * If gv is non-zero, use the name of that global, along with gvtype (one
715 * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
716 * targ. Depending on the value of the subscript_type flag, return:
717 */
718
719#define FUV_SUBSCRIPT_NONE 1 /* "@foo" */
720#define FUV_SUBSCRIPT_ARRAY 2 /* "$foo[aindex]" */
721#define FUV_SUBSCRIPT_HASH 3 /* "$foo{keyname}" */
722#define FUV_SUBSCRIPT_WITHIN 4 /* "within @foo" */
723
724STATIC SV*
bfed75c6 725S_varname(pTHX_ GV *gv, const char *gvtype, PADOFFSET targ,
29489e7c
DM
726 SV* keyname, I32 aindex, int subscript_type)
727{
728 AV *av;
a3b680e6 729 SV *sv;
29489e7c 730
a3b680e6 731 SV * const name = sv_newmortal();
29489e7c
DM
732 if (gv) {
733
734 /* simulate gv_fullname4(), but add literal '^' for $^FOO names
735 * XXX get rid of all this if gv_fullnameX() ever supports this
736 * directly */
737
bfed75c6 738 const char *p;
29489e7c
DM
739 HV *hv = GvSTASH(gv);
740 sv_setpv(name, gvtype);
741 if (!hv)
742 p = "???";
bfcb3514 743 else if (!(p=HvNAME_get(hv)))
29489e7c 744 p = "__ANON__";
29489e7c
DM
745 if (strNE(p, "main")) {
746 sv_catpv(name,p);
747 sv_catpvn(name,"::", 2);
748 }
749 if (GvNAMELEN(gv)>= 1 &&
750 ((unsigned int)*GvNAME(gv)) <= 26)
751 { /* handle $^FOO */
752 Perl_sv_catpvf(aTHX_ name,"^%c", *GvNAME(gv) + 'A' - 1);
753 sv_catpvn(name,GvNAME(gv)+1,GvNAMELEN(gv)-1);
754 }
755 else
756 sv_catpvn(name,GvNAME(gv),GvNAMELEN(gv));
757 }
758 else {
759 U32 u;
760 CV *cv = find_runcv(&u);
761 if (!cv || !CvPADLIST(cv))
762 return Nullsv;;
763 av = (AV*)(*av_fetch(CvPADLIST(cv), 0, FALSE));
764 sv = *av_fetch(av, targ, FALSE);
765 /* SvLEN in a pad name is not to be trusted */
f9926b10 766 sv_setpv(name, SvPV_nolen_const(sv));
29489e7c
DM
767 }
768
769 if (subscript_type == FUV_SUBSCRIPT_HASH) {
770 *SvPVX(name) = '$';
771 sv = NEWSV(0,0);
772 Perl_sv_catpvf(aTHX_ name, "{%s}",
3f7c398e 773 pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
29489e7c
DM
774 SvREFCNT_dec(sv);
775 }
776 else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
777 *SvPVX(name) = '$';
265a12b8 778 Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
29489e7c
DM
779 }
780 else if (subscript_type == FUV_SUBSCRIPT_WITHIN)
781 sv_insert(name, 0, 0, "within ", 7);
782
783 return name;
784}
785
786
787/*
788=for apidoc find_uninit_var
789
790Find the name of the undefined variable (if any) that caused the operator o
791to issue a "Use of uninitialized value" warning.
792If match is true, only return a name if it's value matches uninit_sv.
793So roughly speaking, if a unary operator (such as OP_COS) generates a
794warning, then following the direct child of the op may yield an
795OP_PADSV or OP_GV that gives the name of the undefined variable. On the
796other hand, with OP_ADD there are two branches to follow, so we only print
797the variable name if we get an exact match.
798
799The name is returned as a mortal SV.
800
801Assumes that PL_op is the op that originally triggered the error, and that
802PL_comppad/PL_curpad points to the currently executing pad.
803
804=cut
805*/
806
807STATIC SV *
808S_find_uninit_var(pTHX_ OP* obase, SV* uninit_sv, bool match)
809{
27da23d5 810 dVAR;
29489e7c
DM
811 SV *sv;
812 AV *av;
813 SV **svp;
814 GV *gv;
815 OP *o, *o2, *kid;
816
817 if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
818 uninit_sv == &PL_sv_placeholder)))
819 return Nullsv;
820
821 switch (obase->op_type) {
822
823 case OP_RV2AV:
824 case OP_RV2HV:
825 case OP_PADAV:
826 case OP_PADHV:
827 {
f54cb97a
AL
828 const bool pad = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
829 const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
112dcc46
RGS
830 I32 index = 0;
831 SV *keysv = Nullsv;
29489e7c
DM
832 int subscript_type = FUV_SUBSCRIPT_WITHIN;
833
834 if (pad) { /* @lex, %lex */
835 sv = PAD_SVl(obase->op_targ);
836 gv = Nullgv;
837 }
838 else {
839 if (cUNOPx(obase)->op_first->op_type == OP_GV) {
840 /* @global, %global */
841 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
842 if (!gv)
843 break;
844 sv = hash ? (SV*)GvHV(gv): (SV*)GvAV(gv);
845 }
846 else /* @{expr}, %{expr} */
847 return find_uninit_var(cUNOPx(obase)->op_first,
848 uninit_sv, match);
849 }
850
851 /* attempt to find a match within the aggregate */
852 if (hash) {
853 keysv = S_find_hash_subscript(aTHX_ (HV*)sv, uninit_sv);
854 if (keysv)
855 subscript_type = FUV_SUBSCRIPT_HASH;
856 }
857 else {
858 index = S_find_array_subscript(aTHX_ (AV*)sv, uninit_sv);
859 if (index >= 0)
860 subscript_type = FUV_SUBSCRIPT_ARRAY;
861 }
862
863 if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
864 break;
865
866 return S_varname(aTHX_ gv, hash ? "%" : "@", obase->op_targ,
867 keysv, index, subscript_type);
868 }
869
870 case OP_PADSV:
871 if (match && PAD_SVl(obase->op_targ) != uninit_sv)
872 break;
873 return S_varname(aTHX_ Nullgv, "$", obase->op_targ,
874 Nullsv, 0, FUV_SUBSCRIPT_NONE);
875
876 case OP_GVSV:
877 gv = cGVOPx_gv(obase);
878 if (!gv || (match && GvSV(gv) != uninit_sv))
879 break;
880 return S_varname(aTHX_ gv, "$", 0, Nullsv, 0, FUV_SUBSCRIPT_NONE);
881
882 case OP_AELEMFAST:
883 if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
884 if (match) {
885 av = (AV*)PAD_SV(obase->op_targ);
886 if (!av || SvRMAGICAL(av))
887 break;
888 svp = av_fetch(av, (I32)obase->op_private, FALSE);
889 if (!svp || *svp != uninit_sv)
890 break;
891 }
892 return S_varname(aTHX_ Nullgv, "$", obase->op_targ,
893 Nullsv, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
894 }
895 else {
896 gv = cGVOPx_gv(obase);
897 if (!gv)
898 break;
899 if (match) {
900 av = GvAV(gv);
901 if (!av || SvRMAGICAL(av))
902 break;
903 svp = av_fetch(av, (I32)obase->op_private, FALSE);
904 if (!svp || *svp != uninit_sv)
905 break;
906 }
907 return S_varname(aTHX_ gv, "$", 0,
908 Nullsv, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
909 }
910 break;
911
912 case OP_EXISTS:
913 o = cUNOPx(obase)->op_first;
914 if (!o || o->op_type != OP_NULL ||
915 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
916 break;
917 return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
918
919 case OP_AELEM:
920 case OP_HELEM:
921 if (PL_op == obase)
922 /* $a[uninit_expr] or $h{uninit_expr} */
923 return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
924
925 gv = Nullgv;
926 o = cBINOPx(obase)->op_first;
927 kid = cBINOPx(obase)->op_last;
928
929 /* get the av or hv, and optionally the gv */
930 sv = Nullsv;
931 if (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
932 sv = PAD_SV(o->op_targ);
933 }
934 else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
935 && cUNOPo->op_first->op_type == OP_GV)
936 {
937 gv = cGVOPx_gv(cUNOPo->op_first);
938 if (!gv)
939 break;
940 sv = o->op_type == OP_RV2HV ? (SV*)GvHV(gv) : (SV*)GvAV(gv);
941 }
942 if (!sv)
943 break;
944
945 if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
946 /* index is constant */
947 if (match) {
948 if (SvMAGICAL(sv))
949 break;
950 if (obase->op_type == OP_HELEM) {
951 HE* he = hv_fetch_ent((HV*)sv, cSVOPx_sv(kid), 0, 0);
952 if (!he || HeVAL(he) != uninit_sv)
953 break;
954 }
955 else {
956 svp = av_fetch((AV*)sv, SvIV(cSVOPx_sv(kid)), FALSE);
957 if (!svp || *svp != uninit_sv)
958 break;
959 }
960 }
961 if (obase->op_type == OP_HELEM)
962 return S_varname(aTHX_ gv, "%", o->op_targ,
963 cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
964 else
965 return S_varname(aTHX_ gv, "@", o->op_targ, Nullsv,
966 SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
967 ;
968 }
969 else {
970 /* index is an expression;
971 * attempt to find a match within the aggregate */
972 if (obase->op_type == OP_HELEM) {
973 SV *keysv = S_find_hash_subscript(aTHX_ (HV*)sv, uninit_sv);
974 if (keysv)
975 return S_varname(aTHX_ gv, "%", o->op_targ,
976 keysv, 0, FUV_SUBSCRIPT_HASH);
977 }
978 else {
f54cb97a 979 const I32 index = S_find_array_subscript(aTHX_ (AV*)sv, uninit_sv);
29489e7c 980 if (index >= 0)
f54cb97a 981 return S_varname(aTHX_ gv, "@", o->op_targ,
29489e7c
DM
982 Nullsv, index, FUV_SUBSCRIPT_ARRAY);
983 }
984 if (match)
985 break;
986 return S_varname(aTHX_ gv,
987 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
988 ? "@" : "%",
989 o->op_targ, Nullsv, 0, FUV_SUBSCRIPT_WITHIN);
990 }
991
992 break;
993
994 case OP_AASSIGN:
995 /* only examine RHS */
996 return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
997
998 case OP_OPEN:
999 o = cUNOPx(obase)->op_first;
1000 if (o->op_type == OP_PUSHMARK)
1001 o = o->op_sibling;
1002
1003 if (!o->op_sibling) {
1004 /* one-arg version of open is highly magical */
1005
1006 if (o->op_type == OP_GV) { /* open FOO; */
1007 gv = cGVOPx_gv(o);
1008 if (match && GvSV(gv) != uninit_sv)
1009 break;
7a5fa8a2 1010 return S_varname(aTHX_ gv, "$", 0,
29489e7c
DM
1011 Nullsv, 0, FUV_SUBSCRIPT_NONE);
1012 }
1013 /* other possibilities not handled are:
1014 * open $x; or open my $x; should return '${*$x}'
1015 * open expr; should return '$'.expr ideally
1016 */
1017 break;
1018 }
1019 goto do_op;
1020
1021 /* ops where $_ may be an implicit arg */
1022 case OP_TRANS:
1023 case OP_SUBST:
1024 case OP_MATCH:
1025 if ( !(obase->op_flags & OPf_STACKED)) {
1026 if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
1027 ? PAD_SVl(obase->op_targ)
1028 : DEFSV))
1029 {
1030 sv = sv_newmortal();
616d8c9c 1031 sv_setpvn(sv, "$_", 2);
29489e7c
DM
1032 return sv;
1033 }
1034 }
1035 goto do_op;
1036
1037 case OP_PRTF:
1038 case OP_PRINT:
1039 /* skip filehandle as it can't produce 'undef' warning */
1040 o = cUNOPx(obase)->op_first;
1041 if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
1042 o = o->op_sibling->op_sibling;
1043 goto do_op2;
1044
1045
e21bd382 1046 case OP_RV2SV:
29489e7c
DM
1047 case OP_CUSTOM:
1048 case OP_ENTERSUB:
1049 match = 1; /* XS or custom code could trigger random warnings */
1050 goto do_op;
1051
1052 case OP_SCHOMP:
1053 case OP_CHOMP:
1054 if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
1055 return sv_2mortal(newSVpv("${$/}", 0));
1056 /* FALL THROUGH */
1057
1058 default:
1059 do_op:
1060 if (!(obase->op_flags & OPf_KIDS))
1061 break;
1062 o = cUNOPx(obase)->op_first;
1063
1064 do_op2:
1065 if (!o)
1066 break;
1067
1068 /* if all except one arg are constant, or have no side-effects,
1069 * or are optimized away, then it's unambiguous */
1070 o2 = Nullop;
1071 for (kid=o; kid; kid = kid->op_sibling) {
1072 if (kid &&
1073 ( (kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid)))
1074 || (kid->op_type == OP_NULL && ! (kid->op_flags & OPf_KIDS))
1075 || (kid->op_type == OP_PUSHMARK)
1076 )
1077 )
1078 continue;
1079 if (o2) { /* more than one found */
1080 o2 = Nullop;
1081 break;
1082 }
1083 o2 = kid;
1084 }
1085 if (o2)
1086 return find_uninit_var(o2, uninit_sv, match);
1087
1088 /* scan all args */
1089 while (o) {
1090 sv = find_uninit_var(o, uninit_sv, 1);
1091 if (sv)
1092 return sv;
1093 o = o->op_sibling;
1094 }
1095 break;
1096 }
1097 return Nullsv;
1098}
1099
1100
645c22ef
DM
1101/*
1102=for apidoc report_uninit
1103
1104Print appropriate "Use of uninitialized variable" warning
1105
1106=cut
1107*/
1108
1d7c1841 1109void
29489e7c
DM
1110Perl_report_uninit(pTHX_ SV* uninit_sv)
1111{
1112 if (PL_op) {
112dcc46 1113 SV* varname = Nullsv;
29489e7c
DM
1114 if (uninit_sv) {
1115 varname = find_uninit_var(PL_op, uninit_sv,0);
1116 if (varname)
1117 sv_insert(varname, 0, 0, " ", 1);
1118 }
9014280d 1119 Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
93524f2b 1120 varname ? SvPV_nolen_const(varname) : "",
29489e7c
DM
1121 " in ", OP_DESC(PL_op));
1122 }
1d7c1841 1123 else
29489e7c
DM
1124 Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
1125 "", "", "");
1d7c1841
GS
1126}
1127
de042e1d 1128STATIC void *
e3bbdc67 1129S_more_bodies (pTHX_ void **arena_root, void **root, size_t size)
cac9b346 1130{
e3bbdc67
NC
1131 char *start;
1132 const char *end;
1133 size_t count = PERL_ARENA_SIZE/size;
1134 New(0, start, count*size, char);
1135 *((void **) start) = *arena_root;
1136 *arena_root = (void *)start;
cac9b346 1137
e3bbdc67 1138 end = start + (count-1) * size;
cac9b346 1139
e3bbdc67
NC
1140 /* The initial slot is used to link the arenas together, so it isn't to be
1141 linked into the list of ready-to-use bodies. */
cac9b346 1142
e3bbdc67 1143 start += size;
cac9b346 1144
e3bbdc67 1145 *root = (void *)start;
cac9b346 1146
e3bbdc67
NC
1147 while (start < end) {
1148 char *next = start + size;
1149 *(void**) start = (void *)next;
1150 start = next;
cac9b346 1151 }
e3bbdc67 1152 *(void **)start = 0;
de042e1d
NC
1153
1154 return *root;
cac9b346
NC
1155}
1156
aeb18a1e 1157/* grab a new thing from the free list, allocating more if necessary */
645c22ef 1158
aeb18a1e
NC
1159STATIC void *
1160S_new_body(pTHX_ void **arena_root, void **root, size_t size, size_t offset)
932e9ff9 1161{
aeb18a1e 1162 void *xpv;
932e9ff9 1163 LOCK_SV_MUTEX;
aeb18a1e
NC
1164 xpv = *root ? *root : S_more_bodies(aTHX_ arena_root, root, size);
1165 *root = *(void**)xpv;
932e9ff9 1166 UNLOCK_SV_MUTEX;
aeb18a1e 1167 return (void*)((char*)xpv - offset);
932e9ff9
VB
1168}
1169
aeb18a1e 1170/* return a thing to the free list */
645c22ef 1171
932e9ff9 1172STATIC void
aeb18a1e 1173S_del_body(pTHX_ void *thing, void **root, size_t offset)
932e9ff9 1174{
aeb18a1e 1175 void **real_thing = (void**)((char *)thing + offset);
932e9ff9 1176 LOCK_SV_MUTEX;
aeb18a1e
NC
1177 *real_thing = *root;
1178 *root = (void*)real_thing;
932e9ff9
VB
1179 UNLOCK_SV_MUTEX;
1180}
1181
aeb18a1e
NC
1182/* Conventionally we simply malloc() a big block of memory, then divide it
1183 up into lots of the thing that we're allocating.
645c22ef 1184
aeb18a1e
NC
1185 This macro will expand to call to S_new_body. So for XPVBM (with ithreads),
1186 it would become
932e9ff9 1187
aeb18a1e
NC
1188 S_new_body(my_perl, (void**)&(my_perl->Ixpvbm_arenaroot),
1189 (void**)&(my_perl->Ixpvbm_root), sizeof(XPVBM), 0)
1190*/
645c22ef 1191
aeb18a1e
NC
1192#define new_body(TYPE,lctype) \
1193 S_new_body(aTHX_ (void**)&PL_ ## lctype ## _arenaroot, \
1194 (void**)&PL_ ## lctype ## _root, \
1195 sizeof(TYPE), \
1196 0)
1197
1198/* But for some types, we cheat. The type starts with some members that are
1199 never accessed. So we allocate the substructure, starting at the first used
1200 member, then adjust the pointer back in memory by the size of the bit not
1201 allocated, so it's as if we allocated the full structure.
1202 (But things will all go boom if you write to the part that is "not there",
1203 because you'll be overwriting the last members of the preceding structure
1204 in memory.)
1205
1206 We calculate the correction using the STRUCT_OFFSET macro. For example, if
1207 xpv_allocated is the same structure as XPV then the two OFFSETs sum to zero,
1208 and the pointer is unchanged. If the allocated structure is smaller (no
1209 initial NV actually allocated) then the net effect is to subtract the size
1210 of the NV from the pointer, to return a new pointer as if an initial NV were
1211 actually allocated.
1212
1213 This is the same trick as was used for NV and IV bodies. Ironically it
1214 doesn't need to be used for NV bodies any more, because NV is now at the
1215 start of the structure. IV bodies don't need it either, because they are
1216 no longer allocated. */
1217
1218#define new_body_allocated(TYPE,lctype,member) \
1219 S_new_body(aTHX_ (void**)&PL_ ## lctype ## _arenaroot, \
1220 (void**)&PL_ ## lctype ## _root, \
1221 sizeof(lctype ## _allocated), \
1222 STRUCT_OFFSET(TYPE, member) \
1223 - STRUCT_OFFSET(lctype ## _allocated, member))
1224
1225
1226#define del_body(p,TYPE,lctype) \
1227 S_del_body(aTHX_ (void*)p, (void**)&PL_ ## lctype ## _root, 0)
1228
1229#define del_body_allocated(p,TYPE,lctype,member) \
1230 S_del_body(aTHX_ (void*)p, (void**)&PL_ ## lctype ## _root, \
1231 STRUCT_OFFSET(TYPE, member) \
1232 - STRUCT_OFFSET(lctype ## _allocated, member))
932e9ff9 1233
7bab3ede
MB
1234#define my_safemalloc(s) (void*)safemalloc(s)
1235#define my_safefree(p) safefree((char*)p)
463ee0b2 1236
d33b2eba 1237#ifdef PURIFY
463ee0b2 1238
d33b2eba
GS
1239#define new_XNV() my_safemalloc(sizeof(XPVNV))
1240#define del_XNV(p) my_safefree(p)
463ee0b2 1241
d33b2eba
GS
1242#define new_XPV() my_safemalloc(sizeof(XPV))
1243#define del_XPV(p) my_safefree(p)
9b94d1dd 1244
d33b2eba
GS
1245#define new_XPVIV() my_safemalloc(sizeof(XPVIV))
1246#define del_XPVIV(p) my_safefree(p)
932e9ff9 1247
d33b2eba
GS
1248#define new_XPVNV() my_safemalloc(sizeof(XPVNV))
1249#define del_XPVNV(p) my_safefree(p)
932e9ff9 1250
d33b2eba
GS
1251#define new_XPVCV() my_safemalloc(sizeof(XPVCV))
1252#define del_XPVCV(p) my_safefree(p)
932e9ff9 1253
d33b2eba
GS
1254#define new_XPVAV() my_safemalloc(sizeof(XPVAV))
1255#define del_XPVAV(p) my_safefree(p)
1256
1257#define new_XPVHV() my_safemalloc(sizeof(XPVHV))
1258#define del_XPVHV(p) my_safefree(p)
1c846c1f 1259
d33b2eba
GS
1260#define new_XPVMG() my_safemalloc(sizeof(XPVMG))
1261#define del_XPVMG(p) my_safefree(p)
1262
727879eb
NC
1263#define new_XPVGV() my_safemalloc(sizeof(XPVGV))
1264#define del_XPVGV(p) my_safefree(p)
1265
d33b2eba
GS
1266#define new_XPVLV() my_safemalloc(sizeof(XPVLV))
1267#define del_XPVLV(p) my_safefree(p)
1268
1269#define new_XPVBM() my_safemalloc(sizeof(XPVBM))
1270#define del_XPVBM(p) my_safefree(p)
1271
1272#else /* !PURIFY */
1273
aeb18a1e
NC
1274#define new_XNV() new_body(NV, xnv)
1275#define del_XNV(p) del_body(p, NV, xnv)
9b94d1dd 1276
aeb18a1e
NC
1277#define new_XPV() new_body_allocated(XPV, xpv, xpv_cur)
1278#define del_XPV(p) del_body_allocated(p, XPV, xpv, xpv_cur)
d33b2eba 1279
aeb18a1e
NC
1280#define new_XPVIV() new_body_allocated(XPVIV, xpviv, xpv_cur)
1281#define del_XPVIV(p) del_body_allocated(p, XPVIV, xpviv, xpv_cur)
d33b2eba 1282
aeb18a1e
NC
1283#define new_XPVNV() new_body(XPVNV, xpvnv)
1284#define del_XPVNV(p) del_body(p, XPVNV, xpvnv)
d33b2eba 1285
aeb18a1e
NC
1286#define new_XPVCV() new_body(XPVCV, xpvcv)
1287#define del_XPVCV(p) del_body(p, XPVCV, xpvcv)
d33b2eba 1288
aeb18a1e
NC
1289#define new_XPVAV() new_body_allocated(XPVAV, xpvav, xav_fill)
1290#define del_XPVAV(p) del_body_allocated(p, XPVAV, xpvav, xav_fill)
d33b2eba 1291
aeb18a1e
NC
1292#define new_XPVHV() new_body_allocated(XPVHV, xpvhv, xhv_fill)
1293#define del_XPVHV(p) del_body_allocated(p, XPVHV, xpvhv, xhv_fill)
1c846c1f 1294
aeb18a1e
NC
1295#define new_XPVMG() new_body(XPVMG, xpvmg)
1296#define del_XPVMG(p) del_body(p, XPVMG, xpvmg)
d33b2eba 1297
aeb18a1e
NC
1298#define new_XPVGV() new_body(XPVGV, xpvgv)
1299#define del_XPVGV(p) del_body(p, XPVGV, xpvgv)
727879eb 1300
aeb18a1e
NC
1301#define new_XPVLV() new_body(XPVLV, xpvlv)
1302#define del_XPVLV(p) del_body(p, XPVLV, xpvlv)
d33b2eba 1303
aeb18a1e
NC
1304#define new_XPVBM() new_body(XPVBM, xpvbm)
1305#define del_XPVBM(p) del_body(p, XPVBM, xpvbm)
d33b2eba
GS
1306
1307#endif /* PURIFY */
9b94d1dd 1308
d33b2eba
GS
1309#define new_XPVFM() my_safemalloc(sizeof(XPVFM))
1310#define del_XPVFM(p) my_safefree(p)
1c846c1f 1311
d33b2eba
GS
1312#define new_XPVIO() my_safemalloc(sizeof(XPVIO))
1313#define del_XPVIO(p) my_safefree(p)
8990e307 1314
954c1994
GS
1315/*
1316=for apidoc sv_upgrade
1317
ff276b08 1318Upgrade an SV to a more complex form. Generally adds a new body type to the
645c22ef 1319SV, then copies across as much information as possible from the old body.
ff276b08 1320You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
954c1994
GS
1321
1322=cut
1323*/
1324
63f97190 1325void
864dbfa3 1326Perl_sv_upgrade(pTHX_ register SV *sv, U32 mt)
79072805 1327{
e763e3dc 1328
d2e56290
NC
1329 char* pv;
1330 U32 cur;
1331 U32 len;
1332 IV iv;
1333 NV nv;
1334 MAGIC* magic;
1335 HV* stash;
79072805 1336
765f542d
NC
1337 if (mt != SVt_PV && SvIsCOW(sv)) {
1338 sv_force_normal_flags(sv, 0);
f130fd45
NIS
1339 }
1340
79072805 1341 if (SvTYPE(sv) == mt)
63f97190 1342 return;
79072805 1343
d2e56290
NC
1344 pv = NULL;
1345 cur = 0;
1346 len = 0;
1347 iv = 0;
1348 nv = 0.0;
1349 magic = NULL;
1350 stash = Nullhv;
1351
79072805
LW
1352 switch (SvTYPE(sv)) {
1353 case SVt_NULL:
79072805 1354 break;
79072805 1355 case SVt_IV:
463ee0b2 1356 iv = SvIVX(sv);
ed6116ce 1357 if (mt == SVt_NV)
463ee0b2 1358 mt = SVt_PVNV;
ed6116ce
LW
1359 else if (mt < SVt_PVIV)
1360 mt = SVt_PVIV;
79072805
LW
1361 break;
1362 case SVt_NV:
463ee0b2 1363 nv = SvNVX(sv);
79072805 1364 del_XNV(SvANY(sv));
ed6116ce 1365 if (mt < SVt_PVNV)
79072805
LW
1366 mt = SVt_PVNV;
1367 break;
ed6116ce
LW
1368 case SVt_RV:
1369 pv = (char*)SvRV(sv);
ed6116ce 1370 break;
79072805 1371 case SVt_PV:
4d84ee25 1372 pv = SvPVX_mutable(sv);
79072805
LW
1373 cur = SvCUR(sv);
1374 len = SvLEN(sv);
79072805 1375 del_XPV(SvANY(sv));
748a9306
LW
1376 if (mt <= SVt_IV)
1377 mt = SVt_PVIV;
1378 else if (mt == SVt_NV)
1379 mt = SVt_PVNV;
79072805
LW
1380 break;
1381 case SVt_PVIV:
4d84ee25 1382 pv = SvPVX_mutable(sv);
79072805
LW
1383 cur = SvCUR(sv);
1384 len = SvLEN(sv);
463ee0b2 1385 iv = SvIVX(sv);
79072805
LW
1386 del_XPVIV(SvANY(sv));
1387 break;
1388 case SVt_PVNV:
4d84ee25 1389 pv = SvPVX_mutable(sv);
79072805
LW
1390 cur = SvCUR(sv);
1391 len = SvLEN(sv);
463ee0b2
LW
1392 iv = SvIVX(sv);
1393 nv = SvNVX(sv);
79072805
LW
1394 del_XPVNV(SvANY(sv));
1395 break;
1396 case SVt_PVMG:
0ec50a73
NC
1397 /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1398 there's no way that it can be safely upgraded, because perl.c
1399 expects to Safefree(SvANY(PL_mess_sv)) */
1400 assert(sv != PL_mess_sv);
bce8f412
NC
1401 /* This flag bit is used to mean other things in other scalar types.
1402 Given that it only has meaning inside the pad, it shouldn't be set
1403 on anything that can get upgraded. */
1404 assert((SvFLAGS(sv) & SVpad_TYPED) == 0);
4d84ee25 1405 pv = SvPVX_mutable(sv);
79072805
LW
1406 cur = SvCUR(sv);
1407 len = SvLEN(sv);
463ee0b2
LW
1408 iv = SvIVX(sv);
1409 nv = SvNVX(sv);
79072805
LW
1410 magic = SvMAGIC(sv);
1411 stash = SvSTASH(sv);
1412 del_XPVMG(SvANY(sv));
1413 break;
1414 default:
cea2e8a9 1415 Perl_croak(aTHX_ "Can't upgrade that kind of scalar");
79072805
LW
1416 }
1417
ffb05e06
NC
1418 SvFLAGS(sv) &= ~SVTYPEMASK;
1419 SvFLAGS(sv) |= mt;
1420
79072805
LW
1421 switch (mt) {
1422 case SVt_NULL:
cea2e8a9 1423 Perl_croak(aTHX_ "Can't upgrade to undef");
79072805 1424 case SVt_IV:
339049b0 1425 SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
45977657 1426 SvIV_set(sv, iv);
79072805
LW
1427 break;
1428 case SVt_NV:
1429 SvANY(sv) = new_XNV();
9d6ce603 1430 SvNV_set(sv, nv);
79072805 1431 break;
ed6116ce 1432 case SVt_RV:
339049b0 1433 SvANY(sv) = &sv->sv_u.svu_rv;
b162af07 1434 SvRV_set(sv, (SV*)pv);
ed6116ce 1435 break;
79072805
LW
1436 case SVt_PVHV:
1437 SvANY(sv) = new_XPVHV();
463ee0b2
LW
1438 HvFILL(sv) = 0;
1439 HvMAX(sv) = 0;
8aacddc1 1440 HvTOTALKEYS(sv) = 0;
bd4b1eb5
NC
1441
1442 /* Fall through... */
1443 if (0) {
1444 case SVt_PVAV:
1445 SvANY(sv) = new_XPVAV();
1446 AvMAX(sv) = -1;
1447 AvFILLp(sv) = -1;
1448 AvALLOC(sv) = 0;
11ca45c0 1449 AvREAL_only(sv);
bd4b1eb5
NC
1450 }
1451 /* to here. */
c2bfdfaf
NC
1452 /* XXX? Only SVt_NULL is ever upgraded to AV or HV? */
1453 assert(!pv);
8bd4d4c5
NC
1454 /* FIXME. Should be able to remove all this if()... if the above
1455 assertion is genuinely always true. */
1456 if(SvOOK(sv)) {
1457 pv -= iv;
1458 SvFLAGS(sv) &= ~SVf_OOK;
1459 }
1460 Safefree(pv);
bd4b1eb5 1461 SvPV_set(sv, (char*)0);
b162af07
SP
1462 SvMAGIC_set(sv, magic);
1463 SvSTASH_set(sv, stash);
79072805 1464 break;
bd4b1eb5
NC
1465
1466 case SVt_PVIO:
1467 SvANY(sv) = new_XPVIO();
1468 Zero(SvANY(sv), 1, XPVIO);
1469 IoPAGE_LEN(sv) = 60;
1470 goto set_magic_common;
1471 case SVt_PVFM:
1472 SvANY(sv) = new_XPVFM();
1473 Zero(SvANY(sv), 1, XPVFM);
1474 goto set_magic_common;
1475 case SVt_PVBM:
1476 SvANY(sv) = new_XPVBM();
1477 BmRARE(sv) = 0;
1478 BmUSEFUL(sv) = 0;
1479 BmPREVIOUS(sv) = 0;
1480 goto set_magic_common;
1481 case SVt_PVGV:
1482 SvANY(sv) = new_XPVGV();
1483 GvGP(sv) = 0;
1484 GvNAME(sv) = 0;
1485 GvNAMELEN(sv) = 0;
1486 GvSTASH(sv) = 0;
1487 GvFLAGS(sv) = 0;
1488 goto set_magic_common;
79072805
LW
1489 case SVt_PVCV:
1490 SvANY(sv) = new_XPVCV();
748a9306 1491 Zero(SvANY(sv), 1, XPVCV);
bd4b1eb5
NC
1492 goto set_magic_common;
1493 case SVt_PVLV:
1494 SvANY(sv) = new_XPVLV();
1495 LvTARGOFF(sv) = 0;
1496 LvTARGLEN(sv) = 0;
1497 LvTARG(sv) = 0;
1498 LvTYPE(sv) = 0;
93a17b20 1499 GvGP(sv) = 0;
79072805
LW
1500 GvNAME(sv) = 0;
1501 GvNAMELEN(sv) = 0;
1502 GvSTASH(sv) = 0;
a5f75d66 1503 GvFLAGS(sv) = 0;
bd4b1eb5
NC
1504 /* Fall through. */
1505 if (0) {
1506 case SVt_PVMG:
1507 SvANY(sv) = new_XPVMG();
1508 }
1509 set_magic_common:
b162af07
SP
1510 SvMAGIC_set(sv, magic);
1511 SvSTASH_set(sv, stash);
bd4b1eb5
NC
1512 /* Fall through. */
1513 if (0) {
1514 case SVt_PVNV:
1515 SvANY(sv) = new_XPVNV();
1516 }
9d6ce603 1517 SvNV_set(sv, nv);
bd4b1eb5
NC
1518 /* Fall through. */
1519 if (0) {
1520 case SVt_PVIV:
1521 SvANY(sv) = new_XPVIV();
1522 if (SvNIOK(sv))
1523 (void)SvIOK_on(sv);
1524 SvNOK_off(sv);
1525 }
1526 SvIV_set(sv, iv);
1527 /* Fall through. */
1528 if (0) {
1529 case SVt_PV:
1530 SvANY(sv) = new_XPV();
1531 }
f880fe2f 1532 SvPV_set(sv, pv);
b162af07
SP
1533 SvCUR_set(sv, cur);
1534 SvLEN_set(sv, len);
8990e307
LW
1535 break;
1536 }
79072805
LW
1537}
1538
645c22ef
DM
1539/*
1540=for apidoc sv_backoff
1541
1542Remove any string offset. You should normally use the C<SvOOK_off> macro
1543wrapper instead.
1544
1545=cut
1546*/
1547
79072805 1548int
864dbfa3 1549Perl_sv_backoff(pTHX_ register SV *sv)
79072805
LW
1550{
1551 assert(SvOOK(sv));
b79f7545
NC
1552 assert(SvTYPE(sv) != SVt_PVHV);
1553 assert(SvTYPE(sv) != SVt_PVAV);
463ee0b2 1554 if (SvIVX(sv)) {
3f7c398e 1555 const char *s = SvPVX_const(sv);
b162af07 1556 SvLEN_set(sv, SvLEN(sv) + SvIVX(sv));
f880fe2f 1557 SvPV_set(sv, SvPVX(sv) - SvIVX(sv));
79072805 1558 SvIV_set(sv, 0);
463ee0b2 1559 Move(s, SvPVX(sv), SvCUR(sv)+1, char);
79072805
LW
1560 }
1561 SvFLAGS(sv) &= ~SVf_OOK;
a0d0e21e 1562 return 0;
79072805
LW
1563}
1564
954c1994
GS
1565/*
1566=for apidoc sv_grow
1567
645c22ef
DM
1568Expands the character buffer in the SV. If necessary, uses C<sv_unref> and
1569upgrades the SV to C<SVt_PV>. Returns a pointer to the character buffer.
1570Use the C<SvGROW> wrapper instead.
954c1994
GS
1571
1572=cut
1573*/
1574
79072805 1575char *
864dbfa3 1576Perl_sv_grow(pTHX_ register SV *sv, register STRLEN newlen)
79072805
LW
1577{
1578 register char *s;
1579
55497cff 1580#ifdef HAS_64K_LIMIT
79072805 1581 if (newlen >= 0x10000) {
1d7c1841
GS
1582 PerlIO_printf(Perl_debug_log,
1583 "Allocation too large: %"UVxf"\n", (UV)newlen);
79072805
LW
1584 my_exit(1);
1585 }
55497cff 1586#endif /* HAS_64K_LIMIT */
a0d0e21e
LW
1587 if (SvROK(sv))
1588 sv_unref(sv);
79072805
LW
1589 if (SvTYPE(sv) < SVt_PV) {
1590 sv_upgrade(sv, SVt_PV);
93524f2b 1591 s = SvPVX_mutable(sv);
79072805
LW
1592 }
1593 else if (SvOOK(sv)) { /* pv is offset? */
1594 sv_backoff(sv);
93524f2b 1595 s = SvPVX_mutable(sv);
79072805
LW
1596 if (newlen > SvLEN(sv))
1597 newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
c6f8c383
GA
1598#ifdef HAS_64K_LIMIT
1599 if (newlen >= 0x10000)
1600 newlen = 0xFFFF;
1601#endif
79072805 1602 }
bc44a8a2 1603 else
4d84ee25 1604 s = SvPVX_mutable(sv);
54f0641b 1605
79072805 1606 if (newlen > SvLEN(sv)) { /* need more room? */
7a9b70e9 1607 newlen = PERL_STRLEN_ROUNDUP(newlen);
8d6dde3e 1608 if (SvLEN(sv) && s) {
7bab3ede 1609#ifdef MYMALLOC
93524f2b 1610 const STRLEN l = malloced_size((void*)SvPVX_const(sv));
8d6dde3e
IZ
1611 if (newlen <= l) {
1612 SvLEN_set(sv, l);
1613 return s;
1614 } else
c70c8a0a 1615#endif
1936d2a7 1616 s = saferealloc(s, newlen);
8d6dde3e 1617 }
bfed75c6 1618 else {
1936d2a7 1619 s = safemalloc(newlen);
3f7c398e
SP
1620 if (SvPVX_const(sv) && SvCUR(sv)) {
1621 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
40565179 1622 }
4e83176d 1623 }
79072805 1624 SvPV_set(sv, s);
e1ec3a88 1625 SvLEN_set(sv, newlen);
79072805
LW
1626 }
1627 return s;
1628}
1629
954c1994
GS
1630/*
1631=for apidoc sv_setiv
1632
645c22ef
DM
1633Copies an integer into the given SV, upgrading first if necessary.
1634Does not handle 'set' magic. See also C<sv_setiv_mg>.
954c1994
GS
1635
1636=cut
1637*/
1638
79072805 1639void
864dbfa3 1640Perl_sv_setiv(pTHX_ register SV *sv, IV i)
79072805 1641{
765f542d 1642 SV_CHECK_THINKFIRST_COW_DROP(sv);
463ee0b2
LW
1643 switch (SvTYPE(sv)) {
1644 case SVt_NULL:
79072805 1645 sv_upgrade(sv, SVt_IV);
463ee0b2
LW
1646 break;
1647 case SVt_NV:
1648 sv_upgrade(sv, SVt_PVNV);
1649 break;
ed6116ce 1650 case SVt_RV:
463ee0b2 1651 case SVt_PV:
79072805 1652 sv_upgrade(sv, SVt_PVIV);
463ee0b2 1653 break;
a0d0e21e
LW
1654
1655 case SVt_PVGV:
a0d0e21e
LW
1656 case SVt_PVAV:
1657 case SVt_PVHV:
1658 case SVt_PVCV:
1659 case SVt_PVFM:
1660 case SVt_PVIO:
411caa50 1661 Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
53e06cf0 1662 OP_DESC(PL_op));
463ee0b2 1663 }
a0d0e21e 1664 (void)SvIOK_only(sv); /* validate number */
45977657 1665 SvIV_set(sv, i);
463ee0b2 1666 SvTAINT(sv);
79072805
LW
1667}
1668
954c1994
GS
1669/*
1670=for apidoc sv_setiv_mg
1671
1672Like C<sv_setiv>, but also handles 'set' magic.
1673
1674=cut
1675*/
1676
79072805 1677void
864dbfa3 1678Perl_sv_setiv_mg(pTHX_ register SV *sv, IV i)
ef50df4b
GS
1679{
1680 sv_setiv(sv,i);
1681 SvSETMAGIC(sv);
1682}
1683
954c1994
GS
1684/*
1685=for apidoc sv_setuv
1686
645c22ef
DM
1687Copies an unsigned integer into the given SV, upgrading first if necessary.
1688Does not handle 'set' magic. See also C<sv_setuv_mg>.
954c1994
GS
1689
1690=cut
1691*/
1692
ef50df4b 1693void
864dbfa3 1694Perl_sv_setuv(pTHX_ register SV *sv, UV u)
55497cff 1695{
55ada374
NC
1696 /* With these two if statements:
1697 u=1.49 s=0.52 cu=72.49 cs=10.64 scripts=270 tests=20865
d460ef45 1698
55ada374
NC
1699 without
1700 u=1.35 s=0.47 cu=73.45 cs=11.43 scripts=270 tests=20865
d460ef45 1701
55ada374
NC
1702 If you wish to remove them, please benchmark to see what the effect is
1703 */
28e5dec8
JH
1704 if (u <= (UV)IV_MAX) {
1705 sv_setiv(sv, (IV)u);
1706 return;
1707 }
25da4f38
IZ
1708 sv_setiv(sv, 0);
1709 SvIsUV_on(sv);
607fa7f2 1710 SvUV_set(sv, u);
55497cff 1711}
1712
954c1994
GS
1713/*
1714=for apidoc sv_setuv_mg
1715
1716Like C<sv_setuv>, but also handles 'set' magic.
1717
1718=cut
1719*/
1720
55497cff 1721void
864dbfa3 1722Perl_sv_setuv_mg(pTHX_ register SV *sv, UV u)
ef50df4b 1723{
55ada374
NC
1724 /* With these two if statements:
1725 u=1.49 s=0.52 cu=72.49 cs=10.64 scripts=270 tests=20865
d460ef45 1726
55ada374
NC
1727 without
1728 u=1.35 s=0.47 cu=73.45 cs=11.43 scripts=270 tests=20865
d460ef45 1729
55ada374
NC
1730 If you wish to remove them, please benchmark to see what the effect is
1731 */
28e5dec8
JH
1732 if (u <= (UV)IV_MAX) {
1733 sv_setiv(sv, (IV)u);
1734 } else {
1735 sv_setiv(sv, 0);
1736 SvIsUV_on(sv);
1737 sv_setuv(sv,u);
1738 }
ef50df4b
GS
1739 SvSETMAGIC(sv);
1740}
1741
954c1994
GS
1742/*
1743=for apidoc sv_setnv
1744
645c22ef
DM
1745Copies a double into the given SV, upgrading first if necessary.
1746Does not handle 'set' magic. See also C<sv_setnv_mg>.
954c1994
GS
1747
1748=cut
1749*/
1750
ef50df4b 1751void
65202027 1752Perl_sv_setnv(pTHX_ register SV *sv, NV num)
79072805 1753{
765f542d 1754 SV_CHECK_THINKFIRST_COW_DROP(sv);
a0d0e21e
LW
1755 switch (SvTYPE(sv)) {
1756 case SVt_NULL:
1757 case SVt_IV:
79072805 1758 sv_upgrade(sv, SVt_NV);
a0d0e21e 1759 break;
a0d0e21e
LW
1760 case SVt_RV:
1761 case SVt_PV:
1762 case SVt_PVIV:
79072805 1763 sv_upgrade(sv, SVt_PVNV);
a0d0e21e 1764 break;
827b7e14 1765
a0d0e21e 1766 case SVt_PVGV:
a0d0e21e
LW
1767 case SVt_PVAV:
1768 case SVt_PVHV:
1769 case SVt_PVCV:
1770 case SVt_PVFM:
1771 case SVt_PVIO:
411caa50 1772 Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
53e06cf0 1773 OP_NAME(PL_op));
79072805 1774 }
9d6ce603 1775 SvNV_set(sv, num);
a0d0e21e 1776 (void)SvNOK_only(sv); /* validate number */
463ee0b2 1777 SvTAINT(sv);
79072805
LW
1778}
1779
954c1994
GS
1780/*
1781=for apidoc sv_setnv_mg
1782
1783Like C<sv_setnv>, but also handles 'set' magic.
1784
1785=cut
1786*/
1787
ef50df4b 1788void
65202027 1789Perl_sv_setnv_mg(pTHX_ register SV *sv, NV num)
ef50df4b
GS
1790{
1791 sv_setnv(sv,num);
1792 SvSETMAGIC(sv);
1793}
1794
645c22ef
DM
1795/* Print an "isn't numeric" warning, using a cleaned-up,
1796 * printable version of the offending string
1797 */
1798
76e3520e 1799STATIC void
cea2e8a9 1800S_not_a_number(pTHX_ SV *sv)
a0d0e21e 1801{
94463019
JH
1802 SV *dsv;
1803 char tmpbuf[64];
1804 char *pv;
1805
1806 if (DO_UTF8(sv)) {
1807 dsv = sv_2mortal(newSVpv("", 0));
1808 pv = sv_uni_display(dsv, sv, 10, 0);
1809 } else {
1810 char *d = tmpbuf;
1811 char *limit = tmpbuf + sizeof(tmpbuf) - 8;
1812 /* each *s can expand to 4 chars + "...\0",
1813 i.e. need room for 8 chars */
ecdeb87c 1814
e62f0680
NC
1815 const char *s, *end;
1816 for (s = SvPVX_const(sv), end = s + SvCUR(sv); s < end && d < limit;
1817 s++) {
94463019
JH
1818 int ch = *s & 0xFF;
1819 if (ch & 128 && !isPRINT_LC(ch)) {
1820 *d++ = 'M';
1821 *d++ = '-';
1822 ch &= 127;
1823 }
1824 if (ch == '\n') {
1825 *d++ = '\\';
1826 *d++ = 'n';
1827 }
1828 else if (ch == '\r') {
1829 *d++ = '\\';
1830 *d++ = 'r';
1831 }
1832 else if (ch == '\f') {
1833 *d++ = '\\';
1834 *d++ = 'f';
1835 }
1836 else if (ch == '\\') {
1837 *d++ = '\\';
1838 *d++ = '\\';
1839 }
1840 else if (ch == '\0') {
1841 *d++ = '\\';
1842 *d++ = '0';
1843 }
1844 else if (isPRINT_LC(ch))
1845 *d++ = ch;
1846 else {
1847 *d++ = '^';
1848 *d++ = toCTRL(ch);
1849 }
1850 }
1851 if (s < end) {
1852 *d++ = '.';
1853 *d++ = '.';
1854 *d++ = '.';
1855 }
1856 *d = '\0';
1857 pv = tmpbuf;
a0d0e21e 1858 }
a0d0e21e 1859
533c011a 1860 if (PL_op)
9014280d 1861 Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
94463019
JH
1862 "Argument \"%s\" isn't numeric in %s", pv,
1863 OP_DESC(PL_op));
a0d0e21e 1864 else
9014280d 1865 Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
94463019 1866 "Argument \"%s\" isn't numeric", pv);
a0d0e21e
LW
1867}
1868
c2988b20
NC
1869/*
1870=for apidoc looks_like_number
1871
645c22ef
DM
1872Test if the content of an SV looks like a number (or is a number).
1873C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1874non-numeric warning), even if your atof() doesn't grok them.
c2988b20
NC
1875
1876=cut
1877*/
1878
1879I32
1880Perl_looks_like_number(pTHX_ SV *sv)
1881{
a3b680e6 1882 register const char *sbegin;
c2988b20
NC
1883 STRLEN len;
1884
1885 if (SvPOK(sv)) {
3f7c398e 1886 sbegin = SvPVX_const(sv);
c2988b20
NC
1887 len = SvCUR(sv);
1888 }
1889 else if (SvPOKp(sv))
83003860 1890 sbegin = SvPV_const(sv, len);
c2988b20 1891 else
e0ab1c0e 1892 return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
c2988b20
NC
1893 return grok_number(sbegin, len, NULL);
1894}
25da4f38
IZ
1895
1896/* Actually, ISO C leaves conversion of UV to IV undefined, but
1897 until proven guilty, assume that things are not that bad... */
1898
645c22ef
DM
1899/*
1900 NV_PRESERVES_UV:
1901
1902 As 64 bit platforms often have an NV that doesn't preserve all bits of
28e5dec8
JH
1903 an IV (an assumption perl has been based on to date) it becomes necessary
1904 to remove the assumption that the NV always carries enough precision to
1905 recreate the IV whenever needed, and that the NV is the canonical form.
1906 Instead, IV/UV and NV need to be given equal rights. So as to not lose
645c22ef 1907 precision as a side effect of conversion (which would lead to insanity
28e5dec8
JH
1908 and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1909 1) to distinguish between IV/UV/NV slots that have cached a valid
1910 conversion where precision was lost and IV/UV/NV slots that have a
1911 valid conversion which has lost no precision
645c22ef 1912 2) to ensure that if a numeric conversion to one form is requested that
28e5dec8
JH
1913 would lose precision, the precise conversion (or differently
1914 imprecise conversion) is also performed and cached, to prevent
1915 requests for different numeric formats on the same SV causing
1916 lossy conversion chains. (lossless conversion chains are perfectly
1917 acceptable (still))
1918
1919
1920 flags are used:
1921 SvIOKp is true if the IV slot contains a valid value
1922 SvIOK is true only if the IV value is accurate (UV if SvIOK_UV true)
1923 SvNOKp is true if the NV slot contains a valid value
1924 SvNOK is true only if the NV value is accurate
1925
1926 so
645c22ef 1927 while converting from PV to NV, check to see if converting that NV to an
28e5dec8
JH
1928 IV(or UV) would lose accuracy over a direct conversion from PV to
1929 IV(or UV). If it would, cache both conversions, return NV, but mark
1930 SV as IOK NOKp (ie not NOK).
1931
645c22ef 1932 While converting from PV to IV, check to see if converting that IV to an
28e5dec8
JH
1933 NV would lose accuracy over a direct conversion from PV to NV. If it
1934 would, cache both conversions, flag similarly.
1935
1936 Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1937 correctly because if IV & NV were set NV *always* overruled.
645c22ef
DM
1938 Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1939 changes - now IV and NV together means that the two are interchangeable:
28e5dec8 1940 SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
d460ef45 1941
645c22ef
DM
1942 The benefit of this is that operations such as pp_add know that if
1943 SvIOK is true for both left and right operands, then integer addition
1944 can be used instead of floating point (for cases where the result won't
1945 overflow). Before, floating point was always used, which could lead to
28e5dec8
JH
1946 loss of precision compared with integer addition.
1947
1948 * making IV and NV equal status should make maths accurate on 64 bit
1949 platforms
1950 * may speed up maths somewhat if pp_add and friends start to use
645c22ef 1951 integers when possible instead of fp. (Hopefully the overhead in
28e5dec8
JH
1952 looking for SvIOK and checking for overflow will not outweigh the
1953 fp to integer speedup)
1954 * will slow down integer operations (callers of SvIV) on "inaccurate"
1955 values, as the change from SvIOK to SvIOKp will cause a call into
1956 sv_2iv each time rather than a macro access direct to the IV slot
1957 * should speed up number->string conversion on integers as IV is
645c22ef 1958 favoured when IV and NV are equally accurate
28e5dec8
JH
1959
1960 ####################################################################
645c22ef
DM
1961 You had better be using SvIOK_notUV if you want an IV for arithmetic:
1962 SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1963 On the other hand, SvUOK is true iff UV.
28e5dec8
JH
1964 ####################################################################
1965
645c22ef 1966 Your mileage will vary depending your CPU's relative fp to integer
28e5dec8
JH
1967 performance ratio.
1968*/
1969
1970#ifndef NV_PRESERVES_UV
645c22ef
DM
1971# define IS_NUMBER_UNDERFLOW_IV 1
1972# define IS_NUMBER_UNDERFLOW_UV 2
1973# define IS_NUMBER_IV_AND_UV 2
1974# define IS_NUMBER_OVERFLOW_IV 4
1975# define IS_NUMBER_OVERFLOW_UV 5
1976
1977/* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
28e5dec8
JH
1978
1979/* For sv_2nv these three cases are "SvNOK and don't bother casting" */
1980STATIC int
645c22ef 1981S_sv_2iuv_non_preserve(pTHX_ register SV *sv, I32 numtype)
28e5dec8 1982{
3f7c398e 1983 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%"UVxf" NV=%"NVgf" inttype=%"UVXf"\n", SvPVX_const(sv), SvIVX(sv), SvNVX(sv), (UV)numtype));
28e5dec8
JH
1984 if (SvNVX(sv) < (NV)IV_MIN) {
1985 (void)SvIOKp_on(sv);
1986 (void)SvNOK_on(sv);
45977657 1987 SvIV_set(sv, IV_MIN);
28e5dec8
JH
1988 return IS_NUMBER_UNDERFLOW_IV;
1989 }
1990 if (SvNVX(sv) > (NV)UV_MAX) {
1991 (void)SvIOKp_on(sv);
1992 (void)SvNOK_on(sv);
1993 SvIsUV_on(sv);
607fa7f2 1994 SvUV_set(sv, UV_MAX);
28e5dec8
JH
1995 return IS_NUMBER_OVERFLOW_UV;
1996 }
c2988b20
NC
1997 (void)SvIOKp_on(sv);
1998 (void)SvNOK_on(sv);
1999 /* Can't use strtol etc to convert this string. (See truth table in
2000 sv_2iv */
2001 if (SvNVX(sv) <= (UV)IV_MAX) {
45977657 2002 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
2003 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2004 SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2005 } else {
2006 /* Integer is imprecise. NOK, IOKp */
2007 }
2008 return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2009 }
2010 SvIsUV_on(sv);
607fa7f2 2011 SvUV_set(sv, U_V(SvNVX(sv)));
c2988b20
NC
2012 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2013 if (SvUVX(sv) == UV_MAX) {
2014 /* As we know that NVs don't preserve UVs, UV_MAX cannot
2015 possibly be preserved by NV. Hence, it must be overflow.
2016 NOK, IOKp */
2017 return IS_NUMBER_OVERFLOW_UV;
2018 }
2019 SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2020 } else {
2021 /* Integer is imprecise. NOK, IOKp */
28e5dec8 2022 }
c2988b20 2023 return IS_NUMBER_OVERFLOW_IV;
28e5dec8 2024}
645c22ef
DM
2025#endif /* !NV_PRESERVES_UV*/
2026
891f9566
YST
2027/* sv_2iv() is now a macro using Perl_sv_2iv_flags();
2028 * this function provided for binary compatibility only
2029 */
2030
2031IV
2032Perl_sv_2iv(pTHX_ register SV *sv)
2033{
2034 return sv_2iv_flags(sv, SV_GMAGIC);
2035}
2036
645c22ef 2037/*
891f9566 2038=for apidoc sv_2iv_flags
645c22ef 2039
891f9566
YST
2040Return the integer value of an SV, doing any necessary string
2041conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2042Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
645c22ef
DM
2043
2044=cut
2045*/
28e5dec8 2046
a0d0e21e 2047IV
891f9566 2048Perl_sv_2iv_flags(pTHX_ register SV *sv, I32 flags)
79072805
LW
2049{
2050 if (!sv)
2051 return 0;
8990e307 2052 if (SvGMAGICAL(sv)) {
891f9566
YST
2053 if (flags & SV_GMAGIC)
2054 mg_get(sv);
463ee0b2
LW
2055 if (SvIOKp(sv))
2056 return SvIVX(sv);
748a9306 2057 if (SvNOKp(sv)) {
25da4f38 2058 return I_V(SvNVX(sv));
748a9306 2059 }
36477c24 2060 if (SvPOKp(sv) && SvLEN(sv))
2061 return asIV(sv);
3fe9a6f1 2062 if (!SvROK(sv)) {
d008e5eb 2063 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
d008e5eb 2064 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
29489e7c 2065 report_uninit(sv);
c6ee37c5 2066 }
36477c24 2067 return 0;
3fe9a6f1 2068 }
463ee0b2 2069 }
ed6116ce 2070 if (SvTHINKFIRST(sv)) {
a0d0e21e 2071 if (SvROK(sv)) {
a0d0e21e 2072 SV* tmpstr;
1554e226 2073 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
b4b9a328 2074 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv))))
9e7bc3e8 2075 return SvIV(tmpstr);
56431972 2076 return PTR2IV(SvRV(sv));
a0d0e21e 2077 }
765f542d
NC
2078 if (SvIsCOW(sv)) {
2079 sv_force_normal_flags(sv, 0);
47deb5e7 2080 }
0336b60e 2081 if (SvREADONLY(sv) && !SvOK(sv)) {
0336b60e 2082 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 2083 report_uninit(sv);
ed6116ce
LW
2084 return 0;
2085 }
79072805 2086 }
25da4f38
IZ
2087 if (SvIOKp(sv)) {
2088 if (SvIsUV(sv)) {
2089 return (IV)(SvUVX(sv));
2090 }
2091 else {
2092 return SvIVX(sv);
2093 }
463ee0b2 2094 }
748a9306 2095 if (SvNOKp(sv)) {
28e5dec8
JH
2096 /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2097 * without also getting a cached IV/UV from it at the same time
2098 * (ie PV->NV conversion should detect loss of accuracy and cache
2099 * IV or UV at same time to avoid this. NWC */
25da4f38
IZ
2100
2101 if (SvTYPE(sv) == SVt_NV)
2102 sv_upgrade(sv, SVt_PVNV);
2103
28e5dec8
JH
2104 (void)SvIOKp_on(sv); /* Must do this first, to clear any SvOOK */
2105 /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2106 certainly cast into the IV range at IV_MAX, whereas the correct
2107 answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2108 cases go to UV */
2109 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
45977657 2110 SvIV_set(sv, I_V(SvNVX(sv)));
28e5dec8
JH
2111 if (SvNVX(sv) == (NV) SvIVX(sv)
2112#ifndef NV_PRESERVES_UV
2113 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2114 (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2115 /* Don't flag it as "accurately an integer" if the number
2116 came from a (by definition imprecise) NV operation, and
2117 we're outside the range of NV integer precision */
2118#endif
2119 ) {
2120 SvIOK_on(sv); /* Can this go wrong with rounding? NWC */
2121 DEBUG_c(PerlIO_printf(Perl_debug_log,
7234c960 2122 "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
28e5dec8
JH
2123 PTR2UV(sv),
2124 SvNVX(sv),
2125 SvIVX(sv)));
2126
2127 } else {
2128 /* IV not precise. No need to convert from PV, as NV
2129 conversion would already have cached IV if it detected
2130 that PV->IV would be better than PV->NV->IV
2131 flags already correct - don't set public IOK. */
2132 DEBUG_c(PerlIO_printf(Perl_debug_log,
7234c960 2133 "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
28e5dec8
JH
2134 PTR2UV(sv),
2135 SvNVX(sv),
2136 SvIVX(sv)));
2137 }
2138 /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2139 but the cast (NV)IV_MIN rounds to a the value less (more
2140 negative) than IV_MIN which happens to be equal to SvNVX ??
2141 Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2142 NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2143 (NV)UVX == NVX are both true, but the values differ. :-(
2144 Hopefully for 2s complement IV_MIN is something like
2145 0x8000000000000000 which will be exact. NWC */
d460ef45 2146 }
25da4f38 2147 else {
607fa7f2 2148 SvUV_set(sv, U_V(SvNVX(sv)));
28e5dec8
JH
2149 if (
2150 (SvNVX(sv) == (NV) SvUVX(sv))
2151#ifndef NV_PRESERVES_UV
2152 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2153 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2154 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2155 /* Don't flag it as "accurately an integer" if the number
2156 came from a (by definition imprecise) NV operation, and
2157 we're outside the range of NV integer precision */
2158#endif
2159 )
2160 SvIOK_on(sv);
25da4f38
IZ
2161 SvIsUV_on(sv);
2162 ret_iv_max:
1c846c1f 2163 DEBUG_c(PerlIO_printf(Perl_debug_log,
57def98f 2164 "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
56431972 2165 PTR2UV(sv),
57def98f
JH
2166 SvUVX(sv),
2167 SvUVX(sv)));
25da4f38
IZ
2168 return (IV)SvUVX(sv);
2169 }
748a9306
LW
2170 }
2171 else if (SvPOKp(sv) && SvLEN(sv)) {
c2988b20 2172 UV value;
504618e9 2173 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
25da4f38
IZ
2174 /* We want to avoid a possible problem when we cache an IV which
2175 may be later translated to an NV, and the resulting NV is not
c2988b20
NC
2176 the same as the direct translation of the initial string
2177 (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2178 be careful to ensure that the value with the .456 is around if the
2179 NV value is requested in the future).
1c846c1f 2180
25da4f38
IZ
2181 This means that if we cache such an IV, we need to cache the
2182 NV as well. Moreover, we trade speed for space, and do not
28e5dec8 2183 cache the NV if we are sure it's not needed.
25da4f38 2184 */
16b7a9a4 2185
c2988b20
NC
2186 /* SVt_PVNV is one higher than SVt_PVIV, hence this order */
2187 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2188 == IS_NUMBER_IN_UV) {
5e045b90 2189 /* It's definitely an integer, only upgrade to PVIV */
28e5dec8
JH
2190 if (SvTYPE(sv) < SVt_PVIV)
2191 sv_upgrade(sv, SVt_PVIV);
f7bbb42a 2192 (void)SvIOK_on(sv);
c2988b20
NC
2193 } else if (SvTYPE(sv) < SVt_PVNV)
2194 sv_upgrade(sv, SVt_PVNV);
28e5dec8 2195
c2988b20
NC
2196 /* If NV preserves UV then we only use the UV value if we know that
2197 we aren't going to call atof() below. If NVs don't preserve UVs
2198 then the value returned may have more precision than atof() will
2199 return, even though value isn't perfectly accurate. */
2200 if ((numtype & (IS_NUMBER_IN_UV
2201#ifdef NV_PRESERVES_UV
2202 | IS_NUMBER_NOT_INT
2203#endif
2204 )) == IS_NUMBER_IN_UV) {
2205 /* This won't turn off the public IOK flag if it was set above */
2206 (void)SvIOKp_on(sv);
2207
2208 if (!(numtype & IS_NUMBER_NEG)) {
2209 /* positive */;
2210 if (value <= (UV)IV_MAX) {
45977657 2211 SvIV_set(sv, (IV)value);
c2988b20 2212 } else {
607fa7f2 2213 SvUV_set(sv, value);
c2988b20
NC
2214 SvIsUV_on(sv);
2215 }
2216 } else {
2217 /* 2s complement assumption */
2218 if (value <= (UV)IV_MIN) {
45977657 2219 SvIV_set(sv, -(IV)value);
c2988b20
NC
2220 } else {
2221 /* Too negative for an IV. This is a double upgrade, but
d1be9408 2222 I'm assuming it will be rare. */
c2988b20
NC
2223 if (SvTYPE(sv) < SVt_PVNV)
2224 sv_upgrade(sv, SVt_PVNV);
2225 SvNOK_on(sv);
2226 SvIOK_off(sv);
2227 SvIOKp_on(sv);
9d6ce603 2228 SvNV_set(sv, -(NV)value);
45977657 2229 SvIV_set(sv, IV_MIN);
c2988b20
NC
2230 }
2231 }
2232 }
2233 /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2234 will be in the previous block to set the IV slot, and the next
2235 block to set the NV slot. So no else here. */
2236
2237 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2238 != IS_NUMBER_IN_UV) {
2239 /* It wasn't an (integer that doesn't overflow the UV). */
3f7c398e 2240 SvNV_set(sv, Atof(SvPVX_const(sv)));
28e5dec8 2241
c2988b20
NC
2242 if (! numtype && ckWARN(WARN_NUMERIC))
2243 not_a_number(sv);
28e5dec8 2244
65202027 2245#if defined(USE_LONG_DOUBLE)
c2988b20
NC
2246 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2247 PTR2UV(sv), SvNVX(sv)));
65202027 2248#else
1779d84d 2249 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
c2988b20 2250 PTR2UV(sv), SvNVX(sv)));
65202027 2251#endif
28e5dec8
JH
2252
2253
2254#ifdef NV_PRESERVES_UV
c2988b20
NC
2255 (void)SvIOKp_on(sv);
2256 (void)SvNOK_on(sv);
2257 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
45977657 2258 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
2259 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2260 SvIOK_on(sv);
28e5dec8 2261 } else {
c2988b20
NC
2262 /* Integer is imprecise. NOK, IOKp */
2263 }
2264 /* UV will not work better than IV */
2265 } else {
2266 if (SvNVX(sv) > (NV)UV_MAX) {
2267 SvIsUV_on(sv);
2268 /* Integer is inaccurate. NOK, IOKp, is UV */
607fa7f2 2269 SvUV_set(sv, UV_MAX);
c2988b20
NC
2270 SvIsUV_on(sv);
2271 } else {
607fa7f2 2272 SvUV_set(sv, U_V(SvNVX(sv)));
c2988b20
NC
2273 /* 0xFFFFFFFFFFFFFFFF not an issue in here */
2274 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2275 SvIOK_on(sv);
28e5dec8
JH
2276 SvIsUV_on(sv);
2277 } else {
c2988b20
NC
2278 /* Integer is imprecise. NOK, IOKp, is UV */
2279 SvIsUV_on(sv);
28e5dec8 2280 }
28e5dec8 2281 }
c2988b20
NC
2282 goto ret_iv_max;
2283 }
28e5dec8 2284#else /* NV_PRESERVES_UV */
c2988b20
NC
2285 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2286 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2287 /* The IV slot will have been set from value returned by
2288 grok_number above. The NV slot has just been set using
2289 Atof. */
560b0c46 2290 SvNOK_on(sv);
c2988b20
NC
2291 assert (SvIOKp(sv));
2292 } else {
2293 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2294 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2295 /* Small enough to preserve all bits. */
2296 (void)SvIOKp_on(sv);
2297 SvNOK_on(sv);
45977657 2298 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
2299 if ((NV)(SvIVX(sv)) == SvNVX(sv))
2300 SvIOK_on(sv);
2301 /* Assumption: first non-preserved integer is < IV_MAX,
2302 this NV is in the preserved range, therefore: */
2303 if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2304 < (UV)IV_MAX)) {
32fdb065 2305 Perl_croak(aTHX_ "sv_2iv assumed (U_V(fabs((double)SvNVX(sv))) < (UV)IV_MAX) but SvNVX(sv)=%"NVgf" U_V is 0x%"UVxf", IV_MAX is 0x%"UVxf"\n", SvNVX(sv), U_V(SvNVX(sv)), (UV)IV_MAX);
c2988b20
NC
2306 }
2307 } else {
2308 /* IN_UV NOT_INT
2309 0 0 already failed to read UV.
2310 0 1 already failed to read UV.
2311 1 0 you won't get here in this case. IV/UV
2312 slot set, public IOK, Atof() unneeded.
2313 1 1 already read UV.
2314 so there's no point in sv_2iuv_non_preserve() attempting
2315 to use atol, strtol, strtoul etc. */
2316 if (sv_2iuv_non_preserve (sv, numtype)
2317 >= IS_NUMBER_OVERFLOW_IV)
2318 goto ret_iv_max;
2319 }
2320 }
28e5dec8 2321#endif /* NV_PRESERVES_UV */
25da4f38 2322 }
28e5dec8 2323 } else {
599cee73 2324 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
29489e7c 2325 report_uninit(sv);
25da4f38
IZ
2326 if (SvTYPE(sv) < SVt_IV)
2327 /* Typically the caller expects that sv_any is not NULL now. */
2328 sv_upgrade(sv, SVt_IV);
a0d0e21e 2329 return 0;
79072805 2330 }
1d7c1841
GS
2331 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2332 PTR2UV(sv),SvIVX(sv)));
25da4f38 2333 return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
79072805
LW
2334}
2335
891f9566
YST
2336/* sv_2uv() is now a macro using Perl_sv_2uv_flags();
2337 * this function provided for binary compatibility only
2338 */
2339
2340UV
2341Perl_sv_2uv(pTHX_ register SV *sv)
2342{
2343 return sv_2uv_flags(sv, SV_GMAGIC);
2344}
2345
645c22ef 2346/*
891f9566 2347=for apidoc sv_2uv_flags
645c22ef
DM
2348
2349Return the unsigned integer value of an SV, doing any necessary string
891f9566
YST
2350conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2351Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
645c22ef
DM
2352
2353=cut
2354*/
2355
ff68c719 2356UV
891f9566 2357Perl_sv_2uv_flags(pTHX_ register SV *sv, I32 flags)
ff68c719 2358{
2359 if (!sv)
2360 return 0;
2361 if (SvGMAGICAL(sv)) {
891f9566
YST
2362 if (flags & SV_GMAGIC)
2363 mg_get(sv);
ff68c719 2364 if (SvIOKp(sv))
2365 return SvUVX(sv);
2366 if (SvNOKp(sv))
2367 return U_V(SvNVX(sv));
36477c24 2368 if (SvPOKp(sv) && SvLEN(sv))
2369 return asUV(sv);
3fe9a6f1 2370 if (!SvROK(sv)) {
d008e5eb 2371 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
d008e5eb 2372 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
29489e7c 2373 report_uninit(sv);
c6ee37c5 2374 }
36477c24 2375 return 0;
3fe9a6f1 2376 }
ff68c719 2377 }
2378 if (SvTHINKFIRST(sv)) {
2379 if (SvROK(sv)) {
ff68c719 2380 SV* tmpstr;
1554e226 2381 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
b4b9a328 2382 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv))))
9e7bc3e8 2383 return SvUV(tmpstr);
56431972 2384 return PTR2UV(SvRV(sv));
ff68c719 2385 }
765f542d
NC
2386 if (SvIsCOW(sv)) {
2387 sv_force_normal_flags(sv, 0);
8a818333 2388 }
0336b60e 2389 if (SvREADONLY(sv) && !SvOK(sv)) {
0336b60e 2390 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 2391 report_uninit(sv);
ff68c719 2392 return 0;
2393 }
2394 }
25da4f38
IZ
2395 if (SvIOKp(sv)) {
2396 if (SvIsUV(sv)) {
2397 return SvUVX(sv);
2398 }
2399 else {
2400 return (UV)SvIVX(sv);
2401 }
ff68c719 2402 }
2403 if (SvNOKp(sv)) {
28e5dec8
JH
2404 /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2405 * without also getting a cached IV/UV from it at the same time
2406 * (ie PV->NV conversion should detect loss of accuracy and cache
2407 * IV or UV at same time to avoid this. */
2408 /* IV-over-UV optimisation - choose to cache IV if possible */
2409
25da4f38
IZ
2410 if (SvTYPE(sv) == SVt_NV)
2411 sv_upgrade(sv, SVt_PVNV);
28e5dec8
JH
2412
2413 (void)SvIOKp_on(sv); /* Must do this first, to clear any SvOOK */
2414 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
45977657 2415 SvIV_set(sv, I_V(SvNVX(sv)));
28e5dec8
JH
2416 if (SvNVX(sv) == (NV) SvIVX(sv)
2417#ifndef NV_PRESERVES_UV
2418 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2419 (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2420 /* Don't flag it as "accurately an integer" if the number
2421 came from a (by definition imprecise) NV operation, and
2422 we're outside the range of NV integer precision */
2423#endif
2424 ) {
2425 SvIOK_on(sv); /* Can this go wrong with rounding? NWC */
2426 DEBUG_c(PerlIO_printf(Perl_debug_log,
7234c960 2427 "0x%"UVxf" uv(%"NVgf" => %"IVdf") (precise)\n",
28e5dec8
JH
2428 PTR2UV(sv),
2429 SvNVX(sv),
2430 SvIVX(sv)));
2431
2432 } else {
2433 /* IV not precise. No need to convert from PV, as NV
2434 conversion would already have cached IV if it detected
2435 that PV->IV would be better than PV->NV->IV
2436 flags already correct - don't set public IOK. */
2437 DEBUG_c(PerlIO_printf(Perl_debug_log,
7234c960 2438 "0x%"UVxf" uv(%"NVgf" => %"IVdf") (imprecise)\n",
28e5dec8
JH
2439 PTR2UV(sv),
2440 SvNVX(sv),
2441 SvIVX(sv)));
2442 }
2443 /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2444 but the cast (NV)IV_MIN rounds to a the value less (more
2445 negative) than IV_MIN which happens to be equal to SvNVX ??
2446 Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2447 NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2448 (NV)UVX == NVX are both true, but the values differ. :-(
2449 Hopefully for 2s complement IV_MIN is something like
2450 0x8000000000000000 which will be exact. NWC */
d460ef45 2451 }
28e5dec8 2452 else {
607fa7f2 2453 SvUV_set(sv, U_V(SvNVX(sv)));
28e5dec8
JH
2454 if (
2455 (SvNVX(sv) == (NV) SvUVX(sv))
2456#ifndef NV_PRESERVES_UV
2457 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2458 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2459 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2460 /* Don't flag it as "accurately an integer" if the number
2461 came from a (by definition imprecise) NV operation, and
2462 we're outside the range of NV integer precision */
2463#endif
2464 )
2465 SvIOK_on(sv);
2466 SvIsUV_on(sv);
1c846c1f 2467 DEBUG_c(PerlIO_printf(Perl_debug_log,
28e5dec8 2468 "0x%"UVxf" 2uv(%"UVuf" => %"IVdf") (as unsigned)\n",
57def98f 2469 PTR2UV(sv),
28e5dec8
JH
2470 SvUVX(sv),
2471 SvUVX(sv)));
25da4f38 2472 }
ff68c719 2473 }
2474 else if (SvPOKp(sv) && SvLEN(sv)) {
c2988b20 2475 UV value;
504618e9 2476 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
25da4f38
IZ
2477
2478 /* We want to avoid a possible problem when we cache a UV which
2479 may be later translated to an NV, and the resulting NV is not
2480 the translation of the initial data.
1c846c1f 2481
25da4f38
IZ
2482 This means that if we cache such a UV, we need to cache the
2483 NV as well. Moreover, we trade speed for space, and do not
2484 cache the NV if not needed.
2485 */
16b7a9a4 2486
c2988b20
NC
2487 /* SVt_PVNV is one higher than SVt_PVIV, hence this order */
2488 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2489 == IS_NUMBER_IN_UV) {
5e045b90 2490 /* It's definitely an integer, only upgrade to PVIV */
28e5dec8 2491 if (SvTYPE(sv) < SVt_PVIV)
f7bbb42a
JH
2492 sv_upgrade(sv, SVt_PVIV);
2493 (void)SvIOK_on(sv);
c2988b20
NC
2494 } else if (SvTYPE(sv) < SVt_PVNV)
2495 sv_upgrade(sv, SVt_PVNV);
d460ef45 2496
c2988b20
NC
2497 /* If NV preserves UV then we only use the UV value if we know that
2498 we aren't going to call atof() below. If NVs don't preserve UVs
2499 then the value returned may have more precision than atof() will
2500 return, even though it isn't accurate. */
2501 if ((numtype & (IS_NUMBER_IN_UV
2502#ifdef NV_PRESERVES_UV
2503 | IS_NUMBER_NOT_INT
2504#endif
2505 )) == IS_NUMBER_IN_UV) {
2506 /* This won't turn off the public IOK flag if it was set above */
2507 (void)SvIOKp_on(sv);
2508
2509 if (!(numtype & IS_NUMBER_NEG)) {
2510 /* positive */;
2511 if (value <= (UV)IV_MAX) {
45977657 2512 SvIV_set(sv, (IV)value);
28e5dec8
JH
2513 } else {
2514 /* it didn't overflow, and it was positive. */
607fa7f2 2515 SvUV_set(sv, value);
28e5dec8
JH
2516 SvIsUV_on(sv);
2517 }
c2988b20
NC
2518 } else {
2519 /* 2s complement assumption */
2520 if (value <= (UV)IV_MIN) {
45977657 2521 SvIV_set(sv, -(IV)value);
c2988b20
NC
2522 } else {
2523 /* Too negative for an IV. This is a double upgrade, but
d1be9408 2524 I'm assuming it will be rare. */
c2988b20
NC
2525 if (SvTYPE(sv) < SVt_PVNV)
2526 sv_upgrade(sv, SVt_PVNV);
2527 SvNOK_on(sv);
2528 SvIOK_off(sv);
2529 SvIOKp_on(sv);
9d6ce603 2530 SvNV_set(sv, -(NV)value);
45977657 2531 SvIV_set(sv, IV_MIN);
c2988b20
NC
2532 }
2533 }
2534 }
2535
2536 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2537 != IS_NUMBER_IN_UV) {
2538 /* It wasn't an integer, or it overflowed the UV. */
3f7c398e 2539 SvNV_set(sv, Atof(SvPVX_const(sv)));
28e5dec8 2540
c2988b20 2541 if (! numtype && ckWARN(WARN_NUMERIC))
28e5dec8
JH
2542 not_a_number(sv);
2543
2544#if defined(USE_LONG_DOUBLE)
c2988b20
NC
2545 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%" PERL_PRIgldbl ")\n",
2546 PTR2UV(sv), SvNVX(sv)));
28e5dec8 2547#else
1779d84d 2548 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"NVgf")\n",
c2988b20 2549 PTR2UV(sv), SvNVX(sv)));
28e5dec8
JH
2550#endif
2551
2552#ifdef NV_PRESERVES_UV
c2988b20
NC
2553 (void)SvIOKp_on(sv);
2554 (void)SvNOK_on(sv);
2555 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
45977657 2556 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
2557 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2558 SvIOK_on(sv);
2559 } else {
2560 /* Integer is imprecise. NOK, IOKp */
2561 }
2562 /* UV will not work better than IV */
2563 } else {
2564 if (SvNVX(sv) > (NV)UV_MAX) {
2565 SvIsUV_on(sv);
2566 /* Integer is inaccurate. NOK, IOKp, is UV */
607fa7f2 2567 SvUV_set(sv, UV_MAX);
c2988b20
NC
2568 SvIsUV_on(sv);
2569 } else {
607fa7f2 2570 SvUV_set(sv, U_V(SvNVX(sv)));
c2988b20
NC
2571 /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2572 NV preservse UV so can do correct comparison. */
2573 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2574 SvIOK_on(sv);
2575 SvIsUV_on(sv);
2576 } else {
2577 /* Integer is imprecise. NOK, IOKp, is UV */
2578 SvIsUV_on(sv);
2579 }
2580 }
2581 }
28e5dec8 2582#else /* NV_PRESERVES_UV */
c2988b20
NC
2583 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2584 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2585 /* The UV slot will have been set from value returned by
2586 grok_number above. The NV slot has just been set using
2587 Atof. */
560b0c46 2588 SvNOK_on(sv);
c2988b20
NC
2589 assert (SvIOKp(sv));
2590 } else {
2591 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2592 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2593 /* Small enough to preserve all bits. */
2594 (void)SvIOKp_on(sv);
2595 SvNOK_on(sv);
45977657 2596 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
2597 if ((NV)(SvIVX(sv)) == SvNVX(sv))
2598 SvIOK_on(sv);
2599 /* Assumption: first non-preserved integer is < IV_MAX,
2600 this NV is in the preserved range, therefore: */
2601 if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2602 < (UV)IV_MAX)) {
32fdb065 2603 Perl_croak(aTHX_ "sv_2uv assumed (U_V(fabs((double)SvNVX(sv))) < (UV)IV_MAX) but SvNVX(sv)=%"NVgf" U_V is 0x%"UVxf", IV_MAX is 0x%"UVxf"\n", SvNVX(sv), U_V(SvNVX(sv)), (UV)IV_MAX);
c2988b20
NC
2604 }
2605 } else
2606 sv_2iuv_non_preserve (sv, numtype);
2607 }
28e5dec8 2608#endif /* NV_PRESERVES_UV */
f7bbb42a 2609 }
ff68c719 2610 }
2611 else {
d008e5eb 2612 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
d008e5eb 2613 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
29489e7c 2614 report_uninit(sv);
c6ee37c5 2615 }
25da4f38
IZ
2616 if (SvTYPE(sv) < SVt_IV)
2617 /* Typically the caller expects that sv_any is not NULL now. */
2618 sv_upgrade(sv, SVt_IV);
ff68c719 2619 return 0;
2620 }
25da4f38 2621
1d7c1841
GS
2622 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2623 PTR2UV(sv),SvUVX(sv)));
25da4f38 2624 return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
ff68c719 2625}
2626
645c22ef
DM
2627/*
2628=for apidoc sv_2nv
2629
2630Return the num value of an SV, doing any necessary string or integer
2631conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
2632macros.
2633
2634=cut
2635*/
2636
65202027 2637NV
864dbfa3 2638Perl_sv_2nv(pTHX_ register SV *sv)
79072805
LW
2639{
2640 if (!sv)
2641 return 0.0;
8990e307 2642 if (SvGMAGICAL(sv)) {
463ee0b2
LW
2643 mg_get(sv);
2644 if (SvNOKp(sv))
2645 return SvNVX(sv);
a0d0e21e 2646 if (SvPOKp(sv) && SvLEN(sv)) {
c2988b20 2647 if (ckWARN(WARN_NUMERIC) && !SvIOKp(sv) &&
504618e9 2648 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
a0d0e21e 2649 not_a_number(sv);
3f7c398e 2650 return Atof(SvPVX_const(sv));
a0d0e21e 2651 }
25da4f38 2652 if (SvIOKp(sv)) {
1c846c1f 2653 if (SvIsUV(sv))
65202027 2654 return (NV)SvUVX(sv);
25da4f38 2655 else
65202027 2656 return (NV)SvIVX(sv);
25da4f38 2657 }
16d20bd9 2658 if (!SvROK(sv)) {
d008e5eb 2659 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
d008e5eb 2660 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
29489e7c 2661 report_uninit(sv);
c6ee37c5 2662 }
66a1b24b 2663 return (NV)0;
16d20bd9 2664 }
463ee0b2 2665 }
ed6116ce 2666 if (SvTHINKFIRST(sv)) {
a0d0e21e 2667 if (SvROK(sv)) {
a0d0e21e 2668 SV* tmpstr;
1554e226 2669 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,numer)) &&
b4b9a328 2670 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv))))
9e7bc3e8 2671 return SvNV(tmpstr);
56431972 2672 return PTR2NV(SvRV(sv));
a0d0e21e 2673 }
765f542d
NC
2674 if (SvIsCOW(sv)) {
2675 sv_force_normal_flags(sv, 0);
8a818333 2676 }
0336b60e 2677 if (SvREADONLY(sv) && !SvOK(sv)) {
599cee73 2678 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 2679 report_uninit(sv);
ed6116ce
LW
2680 return 0.0;
2681 }
79072805
LW
2682 }
2683 if (SvTYPE(sv) < SVt_NV) {
463ee0b2
LW
2684 if (SvTYPE(sv) == SVt_IV)
2685 sv_upgrade(sv, SVt_PVNV);
2686 else
2687 sv_upgrade(sv, SVt_NV);
906f284f 2688#ifdef USE_LONG_DOUBLE
097ee67d 2689 DEBUG_c({
f93f4e46 2690 STORE_NUMERIC_LOCAL_SET_STANDARD();
1d7c1841
GS
2691 PerlIO_printf(Perl_debug_log,
2692 "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2693 PTR2UV(sv), SvNVX(sv));
572bbb43
GS
2694 RESTORE_NUMERIC_LOCAL();
2695 });
65202027 2696#else
572bbb43 2697 DEBUG_c({
f93f4e46 2698 STORE_NUMERIC_LOCAL_SET_STANDARD();
1779d84d 2699 PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
1d7c1841 2700 PTR2UV(sv), SvNVX(sv));
097ee67d
JH
2701 RESTORE_NUMERIC_LOCAL();
2702 });
572bbb43 2703#endif
79072805
LW
2704 }
2705 else if (SvTYPE(sv) < SVt_PVNV)
2706 sv_upgrade(sv, SVt_PVNV);
59d8ce62
NC
2707 if (SvNOKp(sv)) {
2708 return SvNVX(sv);
61604483 2709 }
59d8ce62 2710 if (SvIOKp(sv)) {
9d6ce603 2711 SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
28e5dec8
JH
2712#ifdef NV_PRESERVES_UV
2713 SvNOK_on(sv);
2714#else
2715 /* Only set the public NV OK flag if this NV preserves the IV */
2716 /* Check it's not 0xFFFFFFFFFFFFFFFF */
2717 if (SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2718 : (SvIVX(sv) == I_V(SvNVX(sv))))
2719 SvNOK_on(sv);
2720 else
2721 SvNOKp_on(sv);
2722#endif
93a17b20 2723 }
748a9306 2724 else if (SvPOKp(sv) && SvLEN(sv)) {
c2988b20 2725 UV value;
3f7c398e 2726 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
c2988b20 2727 if (ckWARN(WARN_NUMERIC) && !SvIOKp(sv) && !numtype)
a0d0e21e 2728 not_a_number(sv);
28e5dec8 2729#ifdef NV_PRESERVES_UV
c2988b20
NC
2730 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2731 == IS_NUMBER_IN_UV) {
5e045b90 2732 /* It's definitely an integer */
9d6ce603 2733 SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
c2988b20 2734 } else
3f7c398e 2735 SvNV_set(sv, Atof(SvPVX_const(sv)));
28e5dec8
JH
2736 SvNOK_on(sv);
2737#else
3f7c398e 2738 SvNV_set(sv, Atof(SvPVX_const(sv)));
28e5dec8
JH
2739 /* Only set the public NV OK flag if this NV preserves the value in
2740 the PV at least as well as an IV/UV would.
2741 Not sure how to do this 100% reliably. */
2742 /* if that shift count is out of range then Configure's test is
2743 wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2744 UV_BITS */
2745 if (((UV)1 << NV_PRESERVES_UV_BITS) >
c2988b20 2746 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
28e5dec8 2747 SvNOK_on(sv); /* Definitely small enough to preserve all bits */
c2988b20
NC
2748 } else if (!(numtype & IS_NUMBER_IN_UV)) {
2749 /* Can't use strtol etc to convert this string, so don't try.
2750 sv_2iv and sv_2uv will use the NV to convert, not the PV. */
2751 SvNOK_on(sv);
2752 } else {
2753 /* value has been set. It may not be precise. */
2754 if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2755 /* 2s complement assumption for (UV)IV_MIN */
2756 SvNOK_on(sv); /* Integer is too negative. */
2757 } else {
2758 SvNOKp_on(sv);
2759 SvIOKp_on(sv);
6fa402ec 2760
c2988b20 2761 if (numtype & IS_NUMBER_NEG) {
45977657 2762 SvIV_set(sv, -(IV)value);
c2988b20 2763 } else if (value <= (UV)IV_MAX) {
45977657 2764 SvIV_set(sv, (IV)value);
c2988b20 2765 } else {
607fa7f2 2766 SvUV_set(sv, value);
c2988b20
NC
2767 SvIsUV_on(sv);
2768 }
2769
2770 if (numtype & IS_NUMBER_NOT_INT) {
2771 /* I believe that even if the original PV had decimals,
2772 they are lost beyond the limit of the FP precision.
2773 However, neither is canonical, so both only get p
2774 flags. NWC, 2000/11/25 */
2775 /* Both already have p flags, so do nothing */
2776 } else {
66a1b24b 2777 const NV nv = SvNVX(sv);
c2988b20
NC
2778 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2779 if (SvIVX(sv) == I_V(nv)) {
2780 SvNOK_on(sv);
2781 SvIOK_on(sv);
2782 } else {
2783 SvIOK_on(sv);
2784 /* It had no "." so it must be integer. */
2785 }
2786 } else {
2787 /* between IV_MAX and NV(UV_MAX).
2788 Could be slightly > UV_MAX */
6fa402ec 2789
c2988b20
NC
2790 if (numtype & IS_NUMBER_NOT_INT) {
2791 /* UV and NV both imprecise. */
2792 } else {
66a1b24b 2793 const UV nv_as_uv = U_V(nv);
c2988b20
NC
2794
2795 if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2796 SvNOK_on(sv);
2797 SvIOK_on(sv);
2798 } else {
2799 SvIOK_on(sv);
2800 }
2801 }
2802 }
2803 }
2804 }
2805 }
28e5dec8 2806#endif /* NV_PRESERVES_UV */
93a17b20 2807 }
79072805 2808 else {
599cee73 2809 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
29489e7c 2810 report_uninit(sv);
25da4f38
IZ
2811 if (SvTYPE(sv) < SVt_NV)
2812 /* Typically the caller expects that sv_any is not NULL now. */
28e5dec8
JH
2813 /* XXX Ilya implies that this is a bug in callers that assume this
2814 and ideally should be fixed. */
25da4f38 2815 sv_upgrade(sv, SVt_NV);
a0d0e21e 2816 return 0.0;
79072805 2817 }
572bbb43 2818#if defined(USE_LONG_DOUBLE)
097ee67d 2819 DEBUG_c({
f93f4e46 2820 STORE_NUMERIC_LOCAL_SET_STANDARD();
1d7c1841
GS
2821 PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2822 PTR2UV(sv), SvNVX(sv));
572bbb43
GS
2823 RESTORE_NUMERIC_LOCAL();
2824 });
65202027 2825#else
572bbb43 2826 DEBUG_c({
f93f4e46 2827 STORE_NUMERIC_LOCAL_SET_STANDARD();
1779d84d 2828 PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
1d7c1841 2829 PTR2UV(sv), SvNVX(sv));
097ee67d
JH
2830 RESTORE_NUMERIC_LOCAL();
2831 });
572bbb43 2832#endif
463ee0b2 2833 return SvNVX(sv);
79072805
LW
2834}
2835
645c22ef
DM
2836/* asIV(): extract an integer from the string value of an SV.
2837 * Caller must validate PVX */
2838
76e3520e 2839STATIC IV
cea2e8a9 2840S_asIV(pTHX_ SV *sv)
36477c24 2841{
c2988b20 2842 UV value;
66a1b24b 2843 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
c2988b20
NC
2844
2845 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2846 == IS_NUMBER_IN_UV) {
645c22ef 2847 /* It's definitely an integer */
c2988b20
NC
2848 if (numtype & IS_NUMBER_NEG) {
2849 if (value < (UV)IV_MIN)
2850 return -(IV)value;
2851 } else {
2852 if (value < (UV)IV_MAX)
2853 return (IV)value;
2854 }
2855 }
d008e5eb 2856 if (!numtype) {
d008e5eb
GS
2857 if (ckWARN(WARN_NUMERIC))
2858 not_a_number(sv);
2859 }
3f7c398e 2860 return I_V(Atof(SvPVX_const(sv)));
36477c24 2861}
2862
645c22ef
DM
2863/* asUV(): extract an unsigned integer from the string value of an SV
2864 * Caller must validate PVX */
2865
76e3520e 2866STATIC UV
cea2e8a9 2867S_asUV(pTHX_ SV *sv)
36477c24 2868{
c2988b20 2869 UV value;
504618e9 2870 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
36477c24 2871
c2988b20
NC
2872 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2873 == IS_NUMBER_IN_UV) {
645c22ef 2874 /* It's definitely an integer */
6fa402ec 2875 if (!(numtype & IS_NUMBER_NEG))
c2988b20
NC
2876 return value;
2877 }
d008e5eb 2878 if (!numtype) {
d008e5eb
GS
2879 if (ckWARN(WARN_NUMERIC))
2880 not_a_number(sv);
2881 }
3f7c398e 2882 return U_V(Atof(SvPVX_const(sv)));
36477c24 2883}
2884
645c22ef
DM
2885/*
2886=for apidoc sv_2pv_nolen
2887
2888Like C<sv_2pv()>, but doesn't return the length too. You should usually
2889use the macro wrapper C<SvPV_nolen(sv)> instead.
2890=cut
2891*/
2892
79072805 2893char *
864dbfa3 2894Perl_sv_2pv_nolen(pTHX_ register SV *sv)
1fa8b10d 2895{
dafda6d1 2896 return sv_2pv(sv, 0);
1fa8b10d
JD
2897}
2898
645c22ef
DM
2899/* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2900 * UV as a string towards the end of buf, and return pointers to start and
2901 * end of it.
2902 *
2903 * We assume that buf is at least TYPE_CHARS(UV) long.
2904 */
2905
864dbfa3 2906static char *
25da4f38
IZ
2907uiv_2buf(char *buf, IV iv, UV uv, int is_uv, char **peob)
2908{
25da4f38
IZ
2909 char *ptr = buf + TYPE_CHARS(UV);
2910 char *ebuf = ptr;
2911 int sign;
25da4f38
IZ
2912
2913 if (is_uv)
2914 sign = 0;
2915 else if (iv >= 0) {
2916 uv = iv;
2917 sign = 0;
2918 } else {
2919 uv = -iv;
2920 sign = 1;
2921 }
2922 do {
eb160463 2923 *--ptr = '0' + (char)(uv % 10);
25da4f38
IZ
2924 } while (uv /= 10);
2925 if (sign)
2926 *--ptr = '-';
2927 *peob = ebuf;
2928 return ptr;
2929}
2930
09540bc3
JH
2931/* sv_2pv() is now a macro using Perl_sv_2pv_flags();
2932 * this function provided for binary compatibility only
2933 */
2934
2935char *
2936Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp)
2937{
2938 return sv_2pv_flags(sv, lp, SV_GMAGIC);
2939}
2940
645c22ef
DM
2941/*
2942=for apidoc sv_2pv_flags
2943
ff276b08 2944Returns a pointer to the string value of an SV, and sets *lp to its length.
645c22ef
DM
2945If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2946if necessary.
2947Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2948usually end up here too.
2949
2950=cut
2951*/
2952
8d6d96c1
HS
2953char *
2954Perl_sv_2pv_flags(pTHX_ register SV *sv, STRLEN *lp, I32 flags)
2955{
79072805
LW
2956 register char *s;
2957 int olderrno;
cb50f42d 2958 SV *tsv, *origsv;
25da4f38
IZ
2959 char tbuf[64]; /* Must fit sprintf/Gconvert of longest IV/NV */
2960 char *tmpbuf = tbuf;
79072805 2961
463ee0b2 2962 if (!sv) {
cdb061a3
NC
2963 if (lp)
2964 *lp = 0;
73d840c0 2965 return (char *)"";
463ee0b2 2966 }
8990e307 2967 if (SvGMAGICAL(sv)) {
8d6d96c1
HS
2968 if (flags & SV_GMAGIC)
2969 mg_get(sv);
463ee0b2 2970 if (SvPOKp(sv)) {
cdb061a3
NC
2971 if (lp)
2972 *lp = SvCUR(sv);
10516c54
NC
2973 if (flags & SV_MUTABLE_RETURN)
2974 return SvPVX_mutable(sv);
4d84ee25
NC
2975 if (flags & SV_CONST_RETURN)
2976 return (char *)SvPVX_const(sv);
463ee0b2
LW
2977 return SvPVX(sv);
2978 }
cf2093f6 2979 if (SvIOKp(sv)) {
1c846c1f 2980 if (SvIsUV(sv))
57def98f 2981 (void)sprintf(tmpbuf,"%"UVuf, (UV)SvUVX(sv));
cf2093f6 2982 else
57def98f 2983 (void)sprintf(tmpbuf,"%"IVdf, (IV)SvIVX(sv));
46fc3d4c 2984 tsv = Nullsv;
a0d0e21e 2985 goto tokensave;
463ee0b2
LW
2986 }
2987 if (SvNOKp(sv)) {
2d4389e4 2988 Gconvert(SvNVX(sv), NV_DIG, 0, tmpbuf);
46fc3d4c 2989 tsv = Nullsv;
a0d0e21e 2990 goto tokensave;
463ee0b2 2991 }
16d20bd9 2992 if (!SvROK(sv)) {
d008e5eb 2993 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
d008e5eb 2994 if (ckWARN(WARN_UNINITIALIZED) && !PL_localizing)
29489e7c 2995 report_uninit(sv);
c6ee37c5 2996 }
cdb061a3
NC
2997 if (lp)
2998 *lp = 0;
73d840c0 2999 return (char *)"";
16d20bd9 3000 }
463ee0b2 3001 }
ed6116ce
LW
3002 if (SvTHINKFIRST(sv)) {
3003 if (SvROK(sv)) {
a0d0e21e 3004 SV* tmpstr;
e1ec3a88 3005 register const char *typestr;
1554e226 3006 if (SvAMAGIC(sv) && (tmpstr=AMG_CALLun(sv,string)) &&
b4b9a328 3007 (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
50adf7d2
NC
3008 /* Unwrap this: */
3009 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr); */
3010
3011 char *pv;
3012 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
3013 if (flags & SV_CONST_RETURN) {
3014 pv = (char *) SvPVX_const(tmpstr);
3015 } else {
3016 pv = (flags & SV_MUTABLE_RETURN)
3017 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
3018 }
3019 if (lp)
3020 *lp = SvCUR(tmpstr);
3021 } else {
3022 pv = sv_2pv_flags(tmpstr, lp, flags);
3023 }
446eaa42
YST
3024 if (SvUTF8(tmpstr))
3025 SvUTF8_on(sv);
3026 else
3027 SvUTF8_off(sv);
3028 return pv;
3029 }
cb50f42d 3030 origsv = sv;
ed6116ce
LW
3031 sv = (SV*)SvRV(sv);
3032 if (!sv)
e1ec3a88 3033 typestr = "NULLREF";
ed6116ce 3034 else {
f9277f47
IZ
3035 MAGIC *mg;
3036
ed6116ce 3037 switch (SvTYPE(sv)) {
f9277f47
IZ
3038 case SVt_PVMG:
3039 if ( ((SvFLAGS(sv) &
1c846c1f 3040 (SVs_OBJECT|SVf_OK|SVs_GMG|SVs_SMG|SVs_RMG))
faf82a0b 3041 == (SVs_OBJECT|SVs_SMG))
14befaf4 3042 && (mg = mg_find(sv, PERL_MAGIC_qr))) {
e1ec3a88 3043 const regexp *re = (regexp *)mg->mg_obj;
1bd3ad17 3044
2cd61cdb 3045 if (!mg->mg_ptr) {
e1ec3a88 3046 const char *fptr = "msix";
8782bef2
GB
3047 char reflags[6];
3048 char ch;
3049 int left = 0;
3050 int right = 4;
ff385a1b 3051 char need_newline = 0;
eb160463 3052 U16 reganch = (U16)((re->reganch & PMf_COMPILETIME) >> 12);
8782bef2 3053
155aba94 3054 while((ch = *fptr++)) {
8782bef2
GB
3055 if(reganch & 1) {
3056 reflags[left++] = ch;
3057 }
3058 else {
3059 reflags[right--] = ch;
3060 }
3061 reganch >>= 1;
3062 }
3063 if(left != 4) {
3064 reflags[left] = '-';
3065 left = 5;
3066 }
3067
3068 mg->mg_len = re->prelen + 4 + left;
ff385a1b
JF
3069 /*
3070 * If /x was used, we have to worry about a regex
3071 * ending with a comment later being embedded
3072 * within another regex. If so, we don't want this
3073 * regex's "commentization" to leak out to the
3074 * right part of the enclosing regex, we must cap
3075 * it with a newline.
3076 *
3077 * So, if /x was used, we scan backwards from the
3078 * end of the regex. If we find a '#' before we
3079 * find a newline, we need to add a newline
3080 * ourself. If we find a '\n' first (or if we
3081 * don't find '#' or '\n'), we don't need to add
3082 * anything. -jfriedl
3083 */
3084 if (PMf_EXTENDED & re->reganch)
3085 {
e1ec3a88 3086 const char *endptr = re->precomp + re->prelen;
ff385a1b
JF
3087 while (endptr >= re->precomp)
3088 {
e1ec3a88 3089 const char c = *(endptr--);
ff385a1b
JF
3090 if (c == '\n')
3091 break; /* don't need another */
3092 if (c == '#') {
3093 /* we end while in a comment, so we
3094 need a newline */
3095 mg->mg_len++; /* save space for it */
3096 need_newline = 1; /* note to add it */
ab01544f 3097 break;
ff385a1b
JF
3098 }
3099 }
3100 }
3101
8782bef2
GB
3102 New(616, mg->mg_ptr, mg->mg_len + 1 + left, char);
3103 Copy("(?", mg->mg_ptr, 2, char);
3104 Copy(reflags, mg->mg_ptr+2, left, char);
3105 Copy(":", mg->mg_ptr+left+2, 1, char);
3106 Copy(re->precomp, mg->mg_ptr+3+left, re->prelen, char);
ff385a1b
JF
3107 if (need_newline)
3108 mg->mg_ptr[mg->mg_len - 2] = '\n';
1bd3ad17
IZ
3109 mg->mg_ptr[mg->mg_len - 1] = ')';
3110 mg->mg_ptr[mg->mg_len] = 0;
3111 }
3280af22 3112 PL_reginterp_cnt += re->program[0].next_off;
cb50f42d
YST
3113
3114 if (re->reganch & ROPT_UTF8)
3115 SvUTF8_on(origsv);
3116 else
3117 SvUTF8_off(origsv);
cdb061a3
NC
3118 if (lp)
3119 *lp = mg->mg_len;
1bd3ad17 3120 return mg->mg_ptr;
f9277f47
IZ
3121 }
3122 /* Fall through */
ed6116ce
LW
3123 case SVt_NULL:
3124 case SVt_IV:
3125 case SVt_NV:
3126 case SVt_RV:
3127 case SVt_PV:
3128 case SVt_PVIV:
3129 case SVt_PVNV:
e1ec3a88
AL
3130 case SVt_PVBM: typestr = SvROK(sv) ? "REF" : "SCALAR"; break;
3131 case SVt_PVLV: typestr = SvROK(sv) ? "REF"
be65207d
DM
3132 /* tied lvalues should appear to be
3133 * scalars for backwards compatitbility */
3134 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
3135 ? "SCALAR" : "LVALUE"; break;
e1ec3a88
AL
3136 case SVt_PVAV: typestr = "ARRAY"; break;
3137 case SVt_PVHV: typestr = "HASH"; break;
3138 case SVt_PVCV: typestr = "CODE"; break;
3139 case SVt_PVGV: typestr = "GLOB"; break;
3140 case SVt_PVFM: typestr = "FORMAT"; break;
3141 case SVt_PVIO: typestr = "IO"; break;
3142 default: typestr = "UNKNOWN"; break;
ed6116ce 3143 }
46fc3d4c 3144 tsv = NEWSV(0,0);
a5cb6b62 3145 if (SvOBJECT(sv)) {
bfcb3514 3146 const char *name = HvNAME_get(SvSTASH(sv));
a5cb6b62 3147 Perl_sv_setpvf(aTHX_ tsv, "%s=%s(0x%"UVxf")",
e1ec3a88 3148 name ? name : "__ANON__" , typestr, PTR2UV(sv));
a5cb6b62 3149 }
ed6116ce 3150 else
e1ec3a88 3151 Perl_sv_setpvf(aTHX_ tsv, "%s(0x%"UVxf")", typestr, PTR2UV(sv));
a0d0e21e 3152 goto tokensaveref;
463ee0b2 3153 }
cdb061a3
NC
3154 if (lp)
3155 *lp = strlen(typestr);
73d840c0 3156 return (char *)typestr;
79072805 3157 }
0336b60e 3158 if (SvREADONLY(sv) && !SvOK(sv)) {
0336b60e 3159 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 3160 report_uninit(sv);
cdb061a3
NC
3161 if (lp)
3162 *lp = 0;
73d840c0 3163 return (char *)"";
79072805 3164 }
79072805 3165 }
28e5dec8
JH
3166 if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
3167 /* I'm assuming that if both IV and NV are equally valid then
3168 converting the IV is going to be more efficient */
e1ec3a88
AL
3169 const U32 isIOK = SvIOK(sv);
3170 const U32 isUIOK = SvIsUV(sv);
28e5dec8
JH
3171 char buf[TYPE_CHARS(UV)];
3172 char *ebuf, *ptr;
3173
3174 if (SvTYPE(sv) < SVt_PVIV)
3175 sv_upgrade(sv, SVt_PVIV);
3176 if (isUIOK)
3177 ptr = uiv_2buf(buf, 0, SvUVX(sv), 1, &ebuf);
3178 else
3179 ptr = uiv_2buf(buf, SvIVX(sv), 0, 0, &ebuf);
5902b6a9
NC
3180 /* inlined from sv_setpvn */
3181 SvGROW_mutable(sv, (STRLEN)(ebuf - ptr + 1));
4d84ee25 3182 Move(ptr,SvPVX_mutable(sv),ebuf - ptr,char);
28e5dec8
JH
3183 SvCUR_set(sv, ebuf - ptr);
3184 s = SvEND(sv);
3185 *s = '\0';
3186 if (isIOK)
3187 SvIOK_on(sv);
3188 else
3189 SvIOKp_on(sv);
3190 if (isUIOK)
3191 SvIsUV_on(sv);
3192 }
3193 else if (SvNOKp(sv)) {
79072805
LW
3194 if (SvTYPE(sv) < SVt_PVNV)
3195 sv_upgrade(sv, SVt_PVNV);
1c846c1f 3196 /* The +20 is pure guesswork. Configure test needed. --jhi */
5902b6a9 3197 s = SvGROW_mutable(sv, NV_DIG + 20);
79072805 3198 olderrno = errno; /* some Xenix systems wipe out errno here */
79072805 3199#ifdef apollo
463ee0b2 3200 if (SvNVX(sv) == 0.0)
79072805
LW
3201 (void)strcpy(s,"0");
3202 else
3203#endif /*apollo*/
bbce6d69 3204 {
2d4389e4 3205 Gconvert(SvNVX(sv), NV_DIG, 0, s);
bbce6d69 3206 }
79072805 3207 errno = olderrno;
a0d0e21e
LW
3208#ifdef FIXNEGATIVEZERO
3209 if (*s == '-' && s[1] == '0' && !s[2])
3210 strcpy(s,"0");
3211#endif
79072805
LW
3212 while (*s) s++;
3213#ifdef hcx
3214 if (s[-1] == '.')
46fc3d4c 3215 *--s = '\0';
79072805
LW
3216#endif
3217 }
79072805 3218 else {
0336b60e
IZ
3219 if (ckWARN(WARN_UNINITIALIZED)
3220 && !PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP))
29489e7c 3221 report_uninit(sv);
cdb061a3 3222 if (lp)
a0d0e21e 3223 *lp = 0;
25da4f38
IZ
3224 if (SvTYPE(sv) < SVt_PV)
3225 /* Typically the caller expects that sv_any is not NULL now. */
3226 sv_upgrade(sv, SVt_PV);
73d840c0 3227 return (char *)"";
79072805 3228 }
cdb061a3
NC
3229 {
3230 STRLEN len = s - SvPVX_const(sv);
3231 if (lp)
3232 *lp = len;
3233 SvCUR_set(sv, len);
3234 }
79072805 3235 SvPOK_on(sv);
1d7c1841 3236 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3f7c398e 3237 PTR2UV(sv),SvPVX_const(sv)));
4d84ee25
NC
3238 if (flags & SV_CONST_RETURN)
3239 return (char *)SvPVX_const(sv);
10516c54
NC
3240 if (flags & SV_MUTABLE_RETURN)
3241 return SvPVX_mutable(sv);
463ee0b2 3242 return SvPVX(sv);
a0d0e21e
LW
3243
3244 tokensave:
3245 if (SvROK(sv)) { /* XXX Skip this when sv_pvn_force calls */
3246 /* Sneaky stuff here */
3247
3248 tokensaveref:
46fc3d4c 3249 if (!tsv)
96827780 3250 tsv = newSVpv(tmpbuf, 0);
46fc3d4c 3251 sv_2mortal(tsv);
cdb061a3
NC
3252 if (lp)
3253 *lp = SvCUR(tsv);
46fc3d4c 3254 return SvPVX(tsv);
a0d0e21e
LW
3255 }
3256 else {
27da23d5 3257 dVAR;
a0d0e21e 3258 STRLEN len;
73d840c0 3259 const char *t;
46fc3d4c 3260
3261 if (tsv) {
3262 sv_2mortal(tsv);
3f7c398e 3263 t = SvPVX_const(tsv);
46fc3d4c 3264 len = SvCUR(tsv);
3265 }
3266 else {
96827780
MB
3267 t = tmpbuf;
3268 len = strlen(tmpbuf);
46fc3d4c 3269 }
a0d0e21e 3270#ifdef FIXNEGATIVEZERO
46fc3d4c 3271 if (len == 2 && t[0] == '-' && t[1] == '0') {
3272 t = "0";
3273 len = 1;
3274 }
a0d0e21e 3275#endif
862a34c6 3276 SvUPGRADE(sv, SVt_PV);
cdb061a3
NC
3277 if (lp)
3278 *lp = len;
5902b6a9 3279 s = SvGROW_mutable(sv, len + 1);
a0d0e21e 3280 SvCUR_set(sv, len);
6bf554b4 3281 SvPOKp_on(sv);
e90e2364 3282 return strcpy(s, t);
a0d0e21e 3283 }
463ee0b2
LW
3284}
3285
645c22ef 3286/*
6050d10e
JP
3287=for apidoc sv_copypv
3288
3289Copies a stringified representation of the source SV into the
3290destination SV. Automatically performs any necessary mg_get and
54f0641b 3291coercion of numeric values into strings. Guaranteed to preserve
6050d10e 3292UTF-8 flag even from overloaded objects. Similar in nature to
54f0641b
NIS
3293sv_2pv[_flags] but operates directly on an SV instead of just the
3294string. Mostly uses sv_2pv_flags to do its work, except when that
6050d10e
JP
3295would lose the UTF-8'ness of the PV.
3296
3297=cut
3298*/
3299
3300void
3301Perl_sv_copypv(pTHX_ SV *dsv, register SV *ssv)
3302{
446eaa42 3303 STRLEN len;
4d84ee25
NC
3304 const char *s;
3305 s = SvPV_const(ssv,len);
cb50f42d 3306 sv_setpvn(dsv,s,len);
446eaa42 3307 if (SvUTF8(ssv))
cb50f42d 3308 SvUTF8_on(dsv);
446eaa42 3309 else
cb50f42d 3310 SvUTF8_off(dsv);
6050d10e
JP
3311}
3312
3313/*
645c22ef
DM
3314=for apidoc sv_2pvbyte_nolen
3315
3316Return a pointer to the byte-encoded representation of the SV.
1e54db1a 3317May cause the SV to be downgraded from UTF-8 as a side-effect.
645c22ef
DM
3318
3319Usually accessed via the C<SvPVbyte_nolen> macro.
3320
3321=cut
3322*/
3323
7340a771
GS
3324char *
3325Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv)
3326{
dafda6d1 3327 return sv_2pvbyte(sv, 0);
7340a771
GS
3328}
3329
645c22ef
DM
3330/*
3331=for apidoc sv_2pvbyte
3332
3333Return a pointer to the byte-encoded representation of the SV, and set *lp
1e54db1a 3334to its length. May cause the SV to be downgraded from UTF-8 as a
645c22ef
DM
3335side-effect.
3336
3337Usually accessed via the C<SvPVbyte> macro.
3338
3339=cut
3340*/
3341
7340a771
GS
3342char *
3343Perl_sv_2pvbyte(pTHX_ register SV *sv, STRLEN *lp)
3344{
0875d2fe 3345 sv_utf8_downgrade(sv,0);
97972285 3346 return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
7340a771
GS
3347}
3348
645c22ef
DM
3349/*
3350=for apidoc sv_2pvutf8_nolen
3351
1e54db1a
JH
3352Return a pointer to the UTF-8-encoded representation of the SV.
3353May cause the SV to be upgraded to UTF-8 as a side-effect.
645c22ef
DM
3354
3355Usually accessed via the C<SvPVutf8_nolen> macro.
3356
3357=cut
3358*/
3359
7340a771
GS
3360char *
3361Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv)
3362{
dafda6d1 3363 return sv_2pvutf8(sv, 0);
7340a771
GS
3364}
3365
645c22ef
DM
3366/*
3367=for apidoc sv_2pvutf8
3368
1e54db1a
JH
3369Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3370to its length. May cause the SV to be upgraded to UTF-8 as a side-effect.
645c22ef
DM
3371
3372Usually accessed via the C<SvPVutf8> macro.
3373
3374=cut
3375*/
3376
7340a771
GS
3377char *
3378Perl_sv_2pvutf8(pTHX_ register SV *sv, STRLEN *lp)
3379{
560a288e 3380 sv_utf8_upgrade(sv);
7d59b7e4 3381 return SvPV(sv,*lp);
7340a771 3382}
1c846c1f 3383
645c22ef
DM
3384/*
3385=for apidoc sv_2bool
3386
3387This function is only called on magical items, and is only used by
8cf8f3d1 3388sv_true() or its macro equivalent.
645c22ef
DM
3389
3390=cut
3391*/
3392
463ee0b2 3393bool
864dbfa3 3394Perl_sv_2bool(pTHX_ register SV *sv)
463ee0b2 3395{
8990e307 3396 if (SvGMAGICAL(sv))
463ee0b2
LW
3397 mg_get(sv);
3398
a0d0e21e
LW
3399 if (!SvOK(sv))
3400 return 0;
3401 if (SvROK(sv)) {
a0d0e21e 3402 SV* tmpsv;
1554e226 3403 if (SvAMAGIC(sv) && (tmpsv=AMG_CALLun(sv,bool_)) &&
9e3013b1 3404 (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
8a31060d 3405 return (bool)SvTRUE(tmpsv);
a0d0e21e
LW
3406 return SvRV(sv) != 0;
3407 }
463ee0b2 3408 if (SvPOKp(sv)) {
11343788
MB
3409 register XPV* Xpvtmp;
3410 if ((Xpvtmp = (XPV*)SvANY(sv)) &&
339049b0 3411 (*sv->sv_u.svu_pv > '0' ||
11343788 3412 Xpvtmp->xpv_cur > 1 ||
339049b0 3413 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
463ee0b2
LW
3414 return 1;
3415 else
3416 return 0;
3417 }
3418 else {
3419 if (SvIOKp(sv))
3420 return SvIVX(sv) != 0;
3421 else {
3422 if (SvNOKp(sv))
3423 return SvNVX(sv) != 0.0;
3424 else
3425 return FALSE;
3426 }
3427 }
79072805
LW
3428}
3429
09540bc3
JH
3430/* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
3431 * this function provided for binary compatibility only
3432 */
3433
3434
3435STRLEN
3436Perl_sv_utf8_upgrade(pTHX_ register SV *sv)
3437{
3438 return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
3439}
3440
c461cf8f
JH
3441/*
3442=for apidoc sv_utf8_upgrade
3443
78ea37eb 3444Converts the PV of an SV to its UTF-8-encoded form.
645c22ef 3445Forces the SV to string form if it is not already.
4411f3b6
NIS
3446Always sets the SvUTF8 flag to avoid future validity checks even
3447if all the bytes have hibit clear.
c461cf8f 3448
13a6c0e0
JH
3449This is not as a general purpose byte encoding to Unicode interface:
3450use the Encode extension for that.
3451
8d6d96c1
HS
3452=for apidoc sv_utf8_upgrade_flags
3453
78ea37eb 3454Converts the PV of an SV to its UTF-8-encoded form.
645c22ef 3455Forces the SV to string form if it is not already.
8d6d96c1
HS
3456Always sets the SvUTF8 flag to avoid future validity checks even
3457if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
3458will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
3459C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3460
13a6c0e0
JH
3461This is not as a general purpose byte encoding to Unicode interface:
3462use the Encode extension for that.
3463
8d6d96c1
HS
3464=cut
3465*/
3466
3467STRLEN
3468Perl_sv_utf8_upgrade_flags(pTHX_ register SV *sv, I32 flags)
3469{
808c356f
RGS
3470 if (sv == &PL_sv_undef)
3471 return 0;
e0e62c2a
NIS
3472 if (!SvPOK(sv)) {
3473 STRLEN len = 0;
d52b7888
NC
3474 if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3475 (void) sv_2pv_flags(sv,&len, flags);
3476 if (SvUTF8(sv))
3477 return len;
3478 } else {
3479 (void) SvPV_force(sv,len);
3480 }
e0e62c2a 3481 }
4411f3b6 3482
f5cee72b 3483 if (SvUTF8(sv)) {
5fec3b1d 3484 return SvCUR(sv);
f5cee72b 3485 }
5fec3b1d 3486
765f542d
NC
3487 if (SvIsCOW(sv)) {
3488 sv_force_normal_flags(sv, 0);
db42d148
NIS
3489 }
3490
88632417 3491 if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING))
799ef3cb 3492 sv_recode_to_utf8(sv, PL_encoding);
9f4817db 3493 else { /* Assume Latin-1/EBCDIC */
c4e7c712
NC
3494 /* This function could be much more efficient if we
3495 * had a FLAG in SVs to signal if there are any hibit
3496 * chars in the PV. Given that there isn't such a flag
3497 * make the loop as fast as possible. */
93524f2b
NC
3498 const U8 *s = (U8 *) SvPVX_const(sv);
3499 const U8 *e = (U8 *) SvEND(sv);
3500 const U8 *t = s;
c4e7c712
NC
3501 int hibit = 0;
3502
3503 while (t < e) {
3504 U8 ch = *t++;
3505 if ((hibit = !NATIVE_IS_INVARIANT(ch)))
3506 break;
3507 }
3508 if (hibit) {
3509 STRLEN len = SvCUR(sv) + 1; /* Plus the \0 */
1e2ebb21 3510 U8 *recoded = bytes_to_utf8((U8*)s, &len);
c4e7c712
NC
3511
3512 SvPV_free(sv); /* No longer using what was there before. */
3513
1e2ebb21 3514 SvPV_set(sv, (char*)recoded);
c4e7c712
NC
3515 SvCUR_set(sv, len - 1);
3516 SvLEN_set(sv, len); /* No longer know the real size. */
3517 }
3518 /* Mark as UTF-8 even if no hibit - saves scanning loop */
3519 SvUTF8_on(sv);
560a288e 3520 }
4411f3b6 3521 return SvCUR(sv);
560a288e
GS
3522}
3523
c461cf8f
JH
3524/*
3525=for apidoc sv_utf8_downgrade
3526
78ea37eb
TS
3527Attempts to convert the PV of an SV from characters to bytes.
3528If the PV contains a character beyond byte, this conversion will fail;
3529in this case, either returns false or, if C<fail_ok> is not
c461cf8f
JH
3530true, croaks.
3531
13a6c0e0
JH
3532This is not as a general purpose Unicode to byte encoding interface:
3533use the Encode extension for that.
3534
c461cf8f
JH
3535=cut
3536*/
3537
560a288e
GS
3538bool
3539Perl_sv_utf8_downgrade(pTHX_ register SV* sv, bool fail_ok)
3540{
78ea37eb 3541 if (SvPOKp(sv) && SvUTF8(sv)) {
fa301091 3542 if (SvCUR(sv)) {
03cfe0ae 3543 U8 *s;
652088fc 3544 STRLEN len;
fa301091 3545
765f542d
NC
3546 if (SvIsCOW(sv)) {
3547 sv_force_normal_flags(sv, 0);
3548 }
03cfe0ae
NIS
3549 s = (U8 *) SvPV(sv, len);
3550 if (!utf8_to_bytes(s, &len)) {
fa301091
JH
3551 if (fail_ok)
3552 return FALSE;
3553 else {
3554 if (PL_op)
3555 Perl_croak(aTHX_ "Wide character in %s",
53e06cf0 3556 OP_DESC(PL_op));
fa301091
JH
3557 else
3558 Perl_croak(aTHX_ "Wide character");
3559 }
4b3603a4 3560 }
b162af07 3561 SvCUR_set(sv, len);
67e989fb 3562 }
560a288e 3563 }
ffebcc3e 3564 SvUTF8_off(sv);
560a288e
GS
3565 return TRUE;
3566}
3567
c461cf8f
JH
3568/*
3569=for apidoc sv_utf8_encode
3570
78ea37eb
TS
3571Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3572flag off so that it looks like octets again.
c461cf8f
JH
3573
3574=cut
3575*/
3576
560a288e
GS
3577void
3578Perl_sv_utf8_encode(pTHX_ register SV *sv)
3579{
4411f3b6 3580 (void) sv_utf8_upgrade(sv);
4c94c214
NC
3581 if (SvIsCOW(sv)) {
3582 sv_force_normal_flags(sv, 0);
3583 }
3584 if (SvREADONLY(sv)) {
3585 Perl_croak(aTHX_ PL_no_modify);
3586 }
560a288e
GS
3587 SvUTF8_off(sv);
3588}
3589
4411f3b6
NIS
3590/*
3591=for apidoc sv_utf8_decode
3592
78ea37eb
TS
3593If the PV of the SV is an octet sequence in UTF-8
3594and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3595so that it looks like a character. If the PV contains only single-byte
3596characters, the C<SvUTF8> flag stays being off.
3597Scans PV for validity and returns false if the PV is invalid UTF-8.
4411f3b6
NIS
3598
3599=cut
3600*/
3601
560a288e
GS
3602bool
3603Perl_sv_utf8_decode(pTHX_ register SV *sv)
3604{
78ea37eb 3605 if (SvPOKp(sv)) {
93524f2b
NC
3606 const U8 *c;
3607 const U8 *e;
9cbac4c7 3608
645c22ef
DM
3609 /* The octets may have got themselves encoded - get them back as
3610 * bytes
3611 */
3612 if (!sv_utf8_downgrade(sv, TRUE))
560a288e
GS
3613 return FALSE;
3614
3615 /* it is actually just a matter of turning the utf8 flag on, but
3616 * we want to make sure everything inside is valid utf8 first.
3617 */
93524f2b 3618 c = (const U8 *) SvPVX_const(sv);
63cd0674 3619 if (!is_utf8_string(c, SvCUR(sv)+1))
67e989fb 3620 return FALSE;
93524f2b 3621 e = (const U8 *) SvEND(sv);
511c2ff0 3622 while (c < e) {
c4d5f83a
NIS
3623 U8 ch = *c++;
3624 if (!UTF8_IS_INVARIANT(ch)) {
67e989fb
JH
3625 SvUTF8_on(sv);
3626 break;
3627 }
560a288e 3628 }
560a288e
GS
3629 }
3630 return TRUE;
3631}
3632
09540bc3
JH
3633/* sv_setsv() is now a macro using Perl_sv_setsv_flags();
3634 * this function provided for binary compatibility only
3635 */
3636
3637void
3638Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr)
3639{
3640 sv_setsv_flags(dstr, sstr, SV_GMAGIC);
3641}
3642
954c1994
GS
3643/*
3644=for apidoc sv_setsv
3645
645c22ef
DM
3646Copies the contents of the source SV C<ssv> into the destination SV
3647C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
3648function if the source SV needs to be reused. Does not handle 'set' magic.
3649Loosely speaking, it performs a copy-by-value, obliterating any previous
3650content of the destination.
3651
3652You probably want to use one of the assortment of wrappers, such as
3653C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3654C<SvSetMagicSV_nosteal>.
3655
8d6d96c1
HS
3656=for apidoc sv_setsv_flags
3657
645c22ef
DM
3658Copies the contents of the source SV C<ssv> into the destination SV
3659C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
3660function if the source SV needs to be reused. Does not handle 'set' magic.
3661Loosely speaking, it performs a copy-by-value, obliterating any previous
3662content of the destination.
3663If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
5fcdf167
NC
3664C<ssv> if appropriate, else not. If the C<flags> parameter has the
3665C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3666and C<sv_setsv_nomg> are implemented in terms of this function.
645c22ef
DM
3667
3668You probably want to use one of the assortment of wrappers, such as
3669C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3670C<SvSetMagicSV_nosteal>.
3671
3672This is the primary function for copying scalars, and most other
3673copy-ish functions and macros use this underneath.
8d6d96c1
HS
3674
3675=cut
3676*/
3677
3678void
3679Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV *sstr, I32 flags)
3680{
8990e307
LW
3681 register U32 sflags;
3682 register int dtype;
3683 register int stype;
463ee0b2 3684
79072805
LW
3685 if (sstr == dstr)
3686 return;
765f542d 3687 SV_CHECK_THINKFIRST_COW_DROP(dstr);
79072805 3688 if (!sstr)
3280af22 3689 sstr = &PL_sv_undef;
8990e307
LW
3690 stype = SvTYPE(sstr);
3691 dtype = SvTYPE(dstr);
79072805 3692
a0d0e21e 3693 SvAMAGIC_off(dstr);
7a5fa8a2 3694 if ( SvVOK(dstr) )
ece467f9
JP
3695 {
3696 /* need to nuke the magic */
3697 mg_free(dstr);
3698 SvRMAGICAL_off(dstr);
3699 }
9e7bc3e8 3700
463ee0b2 3701 /* There's a lot of redundancy below but we're going for speed here */
79072805 3702
8990e307 3703 switch (stype) {
79072805 3704 case SVt_NULL:
aece5585 3705 undef_sstr:
20408e3c
GS
3706 if (dtype != SVt_PVGV) {
3707 (void)SvOK_off(dstr);
3708 return;
3709 }
3710 break;
463ee0b2 3711 case SVt_IV:
aece5585
GA
3712 if (SvIOK(sstr)) {
3713 switch (dtype) {
3714 case SVt_NULL:
8990e307 3715 sv_upgrade(dstr, SVt_IV);
aece5585
GA
3716 break;
3717 case SVt_NV:
8990e307 3718 sv_upgrade(dstr, SVt_PVNV);
aece5585
GA
3719 break;
3720 case SVt_RV:
3721 case SVt_PV:
a0d0e21e 3722 sv_upgrade(dstr, SVt_PVIV);
aece5585
GA
3723 break;
3724 }
3725 (void)SvIOK_only(dstr);
45977657 3726 SvIV_set(dstr, SvIVX(sstr));
25da4f38
IZ
3727 if (SvIsUV(sstr))
3728 SvIsUV_on(dstr);
27c9684d
AP
3729 if (SvTAINTED(sstr))
3730 SvTAINT(dstr);
aece5585 3731 return;
8990e307 3732 }
aece5585
GA
3733 goto undef_sstr;
3734
463ee0b2 3735 case SVt_NV:
aece5585
GA
3736 if (SvNOK(sstr)) {
3737 switch (dtype) {
3738 case SVt_NULL:
3739 case SVt_IV:
8990e307 3740 sv_upgrade(dstr, SVt_NV);
aece5585
GA
3741 break;
3742 case SVt_RV:
3743 case SVt_PV:
3744 case SVt_PVIV:
a0d0e21e 3745 sv_upgrade(dstr, SVt_PVNV);
aece5585
GA
3746 break;
3747 }
9d6ce603 3748 SvNV_set(dstr, SvNVX(sstr));
aece5585 3749 (void)SvNOK_only(dstr);
27c9684d
AP
3750 if (SvTAINTED(sstr))
3751 SvTAINT(dstr);
aece5585 3752 return;
8990e307 3753 }
aece5585
GA
3754 goto undef_sstr;
3755
ed6116ce 3756 case SVt_RV:
8990e307 3757 if (dtype < SVt_RV)
ed6116ce 3758 sv_upgrade(dstr, SVt_RV);
c07a80fd 3759 else if (dtype == SVt_PVGV &&
23bb1b96 3760 SvROK(sstr) && SvTYPE(SvRV(sstr)) == SVt_PVGV) {
c07a80fd 3761 sstr = SvRV(sstr);
a5f75d66 3762 if (sstr == dstr) {
1d7c1841
GS
3763 if (GvIMPORTED(dstr) != GVf_IMPORTED
3764 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3765 {
a5f75d66 3766 GvIMPORTED_on(dstr);
1d7c1841 3767 }
a5f75d66
AD
3768 GvMULTI_on(dstr);
3769 return;
3770 }
c07a80fd 3771 goto glob_assign;
3772 }
ed6116ce 3773 break;
fc36a67e 3774 case SVt_PVFM:
f8c7b90f 3775#ifdef PERL_OLD_COPY_ON_WRITE
d89fc664
NC
3776 if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3777 if (dtype < SVt_PVIV)
3778 sv_upgrade(dstr, SVt_PVIV);
3779 break;
3780 }
3781 /* Fall through */
3782#endif
3783 case SVt_PV:
8990e307 3784 if (dtype < SVt_PV)
463ee0b2 3785 sv_upgrade(dstr, SVt_PV);
463ee0b2
LW
3786 break;
3787 case SVt_PVIV:
8990e307 3788 if (dtype < SVt_PVIV)
463ee0b2 3789 sv_upgrade(dstr, SVt_PVIV);
463ee0b2
LW
3790 break;
3791 case SVt_PVNV:
8990e307 3792 if (dtype < SVt_PVNV)
463ee0b2 3793 sv_upgrade(dstr, SVt_PVNV);
463ee0b2 3794 break;
4633a7c4
LW
3795 case SVt_PVAV:
3796 case SVt_PVHV:
3797 case SVt_PVCV:
4633a7c4 3798 case SVt_PVIO:
a3b680e6
AL
3799 {
3800 const char * const type = sv_reftype(sstr,0);
533c011a 3801 if (PL_op)
a3b680e6 3802 Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_NAME(PL_op));
4633a7c4 3803 else
a3b680e6
AL
3804 Perl_croak(aTHX_ "Bizarre copy of %s", type);
3805 }
4633a7c4
LW
3806 break;
3807
79072805 3808 case SVt_PVGV:
8990e307 3809 if (dtype <= SVt_PVGV) {
c07a80fd 3810 glob_assign:
a5f75d66 3811 if (dtype != SVt_PVGV) {
a3b680e6
AL
3812 const char * const name = GvNAME(sstr);
3813 const STRLEN len = GvNAMELEN(sstr);
b76195c2
DM
3814 /* don't upgrade SVt_PVLV: it can hold a glob */
3815 if (dtype != SVt_PVLV)
3816 sv_upgrade(dstr, SVt_PVGV);
14befaf4 3817 sv_magic(dstr, dstr, PERL_MAGIC_glob, Nullch, 0);
85aff577 3818 GvSTASH(dstr) = (HV*)SvREFCNT_inc(GvSTASH(sstr));
a0d0e21e
LW
3819 GvNAME(dstr) = savepvn(name, len);
3820 GvNAMELEN(dstr) = len;
3821 SvFAKE_on(dstr); /* can coerce to non-glob */
3822 }
7bac28a0 3823 /* ahem, death to those who redefine active sort subs */
3280af22
NIS
3824 else if (PL_curstackinfo->si_type == PERLSI_SORT
3825 && GvCV(dstr) && PL_sortcop == CvSTART(GvCV(dstr)))
cea2e8a9 3826 Perl_croak(aTHX_ "Can't redefine active sort subroutine %s",
7bac28a0 3827 GvNAME(dstr));
5bd07a3d 3828
7fb37951
AMS
3829#ifdef GV_UNIQUE_CHECK
3830 if (GvUNIQUE((GV*)dstr)) {
5bd07a3d
DM
3831 Perl_croak(aTHX_ PL_no_modify);
3832 }
3833#endif
3834
a0d0e21e 3835 (void)SvOK_off(dstr);
a5f75d66 3836 GvINTRO_off(dstr); /* one-shot flag */
1edc1566 3837 gp_free((GV*)dstr);
79072805 3838 GvGP(dstr) = gp_ref(GvGP(sstr));
27c9684d
AP
3839 if (SvTAINTED(sstr))
3840 SvTAINT(dstr);
1d7c1841
GS
3841 if (GvIMPORTED(dstr) != GVf_IMPORTED
3842 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3843 {
a5f75d66 3844 GvIMPORTED_on(dstr);
1d7c1841 3845 }
a5f75d66 3846 GvMULTI_on(dstr);
79072805
LW
3847 return;
3848 }
3849 /* FALL THROUGH */
3850
3851 default:
8d6d96c1 3852 if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
973f89ab 3853 mg_get(sstr);
eb160463 3854 if ((int)SvTYPE(sstr) != stype) {
973f89ab
CS
3855 stype = SvTYPE(sstr);
3856 if (stype == SVt_PVGV && dtype <= SVt_PVGV)
3857 goto glob_assign;
3858 }
3859 }
ded42b9f 3860 if (stype == SVt_PVLV)
862a34c6 3861 SvUPGRADE(dstr, SVt_PVNV);
ded42b9f 3862 else
862a34c6 3863 SvUPGRADE(dstr, (U32)stype);
79072805
LW
3864 }
3865
8990e307
LW
3866 sflags = SvFLAGS(sstr);
3867
3868 if (sflags & SVf_ROK) {
3869 if (dtype >= SVt_PV) {
3870 if (dtype == SVt_PVGV) {
3871 SV *sref = SvREFCNT_inc(SvRV(sstr));
3872 SV *dref = 0;
a3b680e6 3873 const int intro = GvINTRO(dstr);
a0d0e21e 3874
7fb37951
AMS
3875#ifdef GV_UNIQUE_CHECK
3876 if (GvUNIQUE((GV*)dstr)) {
5bd07a3d
DM
3877 Perl_croak(aTHX_ PL_no_modify);
3878 }
3879#endif
3880
a0d0e21e 3881 if (intro) {
a5f75d66 3882 GvINTRO_off(dstr); /* one-shot flag */
1d7c1841 3883 GvLINE(dstr) = CopLINE(PL_curcop);
1edc1566 3884 GvEGV(dstr) = (GV*)dstr;
a0d0e21e 3885 }
a5f75d66 3886 GvMULTI_on(dstr);
8990e307
LW
3887 switch (SvTYPE(sref)) {
3888 case SVt_PVAV:
a0d0e21e 3889 if (intro)
890ed176 3890 SAVEGENERICSV(GvAV(dstr));
a0d0e21e
LW
3891 else
3892 dref = (SV*)GvAV(dstr);
8990e307 3893 GvAV(dstr) = (AV*)sref;
39bac7f7 3894 if (!GvIMPORTED_AV(dstr)
1d7c1841
GS
3895 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3896 {
a5f75d66 3897 GvIMPORTED_AV_on(dstr);
1d7c1841 3898 }
8990e307
LW
3899 break;
3900 case SVt_PVHV:
a0d0e21e 3901 if (intro)
890ed176 3902 SAVEGENERICSV(GvHV(dstr));
a0d0e21e
LW
3903 else
3904 dref = (SV*)GvHV(dstr);
8990e307 3905 GvHV(dstr) = (HV*)sref;
39bac7f7 3906 if (!GvIMPORTED_HV(dstr)
1d7c1841
GS
3907 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3908 {
a5f75d66 3909 GvIMPORTED_HV_on(dstr);
1d7c1841 3910 }
8990e307
LW
3911 break;
3912 case SVt_PVCV:
8ebc5c01 3913 if (intro) {
3914 if (GvCVGEN(dstr) && GvCV(dstr) != (CV*)sref) {
3915 SvREFCNT_dec(GvCV(dstr));
3916 GvCV(dstr) = Nullcv;
68dc0745 3917 GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3280af22 3918 PL_sub_generation++;
8ebc5c01 3919 }
890ed176 3920 SAVEGENERICSV(GvCV(dstr));
8ebc5c01 3921 }
68dc0745 3922 else
3923 dref = (SV*)GvCV(dstr);
3924 if (GvCV(dstr) != (CV*)sref) {
748a9306 3925 CV* cv = GvCV(dstr);
4633a7c4 3926 if (cv) {
68dc0745 3927 if (!GvCVGEN((GV*)dstr) &&
3928 (CvROOT(cv) || CvXSUB(cv)))
3929 {
7bac28a0 3930 /* ahem, death to those who redefine
3931 * active sort subs */
3280af22
NIS
3932 if (PL_curstackinfo->si_type == PERLSI_SORT &&
3933 PL_sortcop == CvSTART(cv))
1c846c1f 3934 Perl_croak(aTHX_
7bac28a0 3935 "Can't redefine active sort subroutine %s",
3936 GvENAME((GV*)dstr));
beab0874
JT
3937 /* Redefining a sub - warning is mandatory if
3938 it was a const and its value changed. */
3939 if (ckWARN(WARN_REDEFINE)
3940 || (CvCONST(cv)
3941 && (!CvCONST((CV*)sref)
3942 || sv_cmp(cv_const_sv(cv),
3943 cv_const_sv((CV*)sref)))))
3944 {
9014280d 3945 Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
beab0874 3946 CvCONST(cv)
910764e6
RGS
3947 ? "Constant subroutine %s::%s redefined"
3948 : "Subroutine %s::%s redefined",
bfcb3514 3949 HvNAME_get(GvSTASH((GV*)dstr)),
beab0874
JT
3950 GvENAME((GV*)dstr));
3951 }
9607fc9c 3952 }
fb24441d
RGS
3953 if (!intro)
3954 cv_ckproto(cv, (GV*)dstr,
93524f2b
NC
3955 SvPOK(sref)
3956 ? SvPVX_const(sref) : Nullch);
4633a7c4 3957 }
a5f75d66 3958 GvCV(dstr) = (CV*)sref;
7a4c00b4 3959 GvCVGEN(dstr) = 0; /* Switch off cacheness. */
a5f75d66 3960 GvASSUMECV_on(dstr);
3280af22 3961 PL_sub_generation++;
a5f75d66 3962 }
39bac7f7 3963 if (!GvIMPORTED_CV(dstr)
1d7c1841
GS
3964 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3965 {
a5f75d66 3966 GvIMPORTED_CV_on(dstr);
1d7c1841 3967 }
8990e307 3968 break;
91bba347
LW
3969 case SVt_PVIO:
3970 if (intro)
890ed176 3971 SAVEGENERICSV(GvIOp(dstr));
91bba347
LW
3972 else
3973 dref = (SV*)GvIOp(dstr);
3974 GvIOp(dstr) = (IO*)sref;
3975 break;
f4d13ee9
JH
3976 case SVt_PVFM:
3977 if (intro)
890ed176 3978 SAVEGENERICSV(GvFORM(dstr));
f4d13ee9
JH
3979 else
3980 dref = (SV*)GvFORM(dstr);
3981 GvFORM(dstr) = (CV*)sref;
3982 break;
8990e307 3983 default:
a0d0e21e 3984 if (intro)
890ed176 3985 SAVEGENERICSV(GvSV(dstr));
a0d0e21e
LW
3986 else
3987 dref = (SV*)GvSV(dstr);
8990e307 3988 GvSV(dstr) = sref;
39bac7f7 3989 if (!GvIMPORTED_SV(dstr)
1d7c1841
GS
3990 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3991 {
a5f75d66 3992 GvIMPORTED_SV_on(dstr);
1d7c1841 3993 }
8990e307
LW
3994 break;
3995 }
3996 if (dref)
3997 SvREFCNT_dec(dref);
27c9684d
AP
3998 if (SvTAINTED(sstr))
3999 SvTAINT(dstr);
8990e307
LW
4000 return;
4001 }
3f7c398e 4002 if (SvPVX_const(dstr)) {
8bd4d4c5 4003 SvPV_free(dstr);
b162af07
SP
4004 SvLEN_set(dstr, 0);
4005 SvCUR_set(dstr, 0);
a0d0e21e 4006 }
8990e307 4007 }
a0d0e21e 4008 (void)SvOK_off(dstr);
b162af07 4009 SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
ed6116ce 4010 SvROK_on(dstr);
8990e307 4011 if (sflags & SVp_NOK) {
3332b3c1
JH
4012 SvNOKp_on(dstr);
4013 /* Only set the public OK flag if the source has public OK. */
4014 if (sflags & SVf_NOK)
4015 SvFLAGS(dstr) |= SVf_NOK;
9d6ce603 4016 SvNV_set(dstr, SvNVX(sstr));
ed6116ce 4017 }
8990e307 4018 if (sflags & SVp_IOK) {
3332b3c1
JH
4019 (void)SvIOKp_on(dstr);
4020 if (sflags & SVf_IOK)
4021 SvFLAGS(dstr) |= SVf_IOK;
2b1c7e3e 4022 if (sflags & SVf_IVisUV)
25da4f38 4023 SvIsUV_on(dstr);
45977657 4024 SvIV_set(dstr, SvIVX(sstr));
ed6116ce 4025 }
a0d0e21e
LW
4026 if (SvAMAGIC(sstr)) {
4027 SvAMAGIC_on(dstr);
4028 }
ed6116ce 4029 }
8990e307 4030 else if (sflags & SVp_POK) {
765f542d 4031 bool isSwipe = 0;
79072805
LW
4032
4033 /*
4034 * Check to see if we can just swipe the string. If so, it's a
4035 * possible small lose on short strings, but a big win on long ones.
3f7c398e
SP
4036 * It might even be a win on short strings if SvPVX_const(dstr)
4037 * has to be allocated and SvPVX_const(sstr) has to be freed.
79072805
LW
4038 */
4039
120fac95
NC
4040 /* Whichever path we take through the next code, we want this true,
4041 and doing it now facilitates the COW check. */
4042 (void)SvPOK_only(dstr);
4043
765f542d 4044 if (
b8f9541a
NC
4045 /* We're not already COW */
4046 ((sflags & (SVf_FAKE | SVf_READONLY)) != (SVf_FAKE | SVf_READONLY)
f8c7b90f 4047#ifndef PERL_OLD_COPY_ON_WRITE
b8f9541a
NC
4048 /* or we are, but dstr isn't a suitable target. */
4049 || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4050#endif
4051 )
765f542d 4052 &&
765f542d
NC
4053 !(isSwipe =
4054 (sflags & SVs_TEMP) && /* slated for free anyway? */
4055 !(sflags & SVf_OOK) && /* and not involved in OOK hack? */
5fcdf167
NC
4056 (!(flags & SV_NOSTEAL)) &&
4057 /* and we're allowed to steal temps */
765f542d
NC
4058 SvREFCNT(sstr) == 1 && /* and no other references to it? */
4059 SvLEN(sstr) && /* and really is a string */
645c22ef 4060 /* and won't be needed again, potentially */
765f542d 4061 !(PL_op && PL_op->op_type == OP_AASSIGN))
f8c7b90f 4062#ifdef PERL_OLD_COPY_ON_WRITE
765f542d 4063 && !((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
120fac95 4064 && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
765f542d
NC
4065 && SvTYPE(sstr) >= SVt_PVIV)
4066#endif
4067 ) {
4068 /* Failed the swipe test, and it's not a shared hash key either.
4069 Have to copy the string. */
4070 STRLEN len = SvCUR(sstr);
4071 SvGROW(dstr, len + 1); /* inlined from sv_setpvn */
3f7c398e 4072 Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
765f542d
NC
4073 SvCUR_set(dstr, len);
4074 *SvEND(dstr) = '\0';
765f542d 4075 } else {
f8c7b90f 4076 /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
765f542d 4077 be true in here. */
765f542d
NC
4078 /* Either it's a shared hash key, or it's suitable for
4079 copy-on-write or we can swipe the string. */
46187eeb 4080 if (DEBUG_C_TEST) {
ed252734 4081 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
e419cbc5
NC
4082 sv_dump(sstr);
4083 sv_dump(dstr);
46187eeb 4084 }
f8c7b90f 4085#ifdef PERL_OLD_COPY_ON_WRITE
765f542d
NC
4086 if (!isSwipe) {
4087 /* I believe I should acquire a global SV mutex if
4088 it's a COW sv (not a shared hash key) to stop
4089 it going un copy-on-write.
4090 If the source SV has gone un copy on write between up there
4091 and down here, then (assert() that) it is of the correct
4092 form to make it copy on write again */
4093 if ((sflags & (SVf_FAKE | SVf_READONLY))
4094 != (SVf_FAKE | SVf_READONLY)) {
4095 SvREADONLY_on(sstr);
4096 SvFAKE_on(sstr);
4097 /* Make the source SV into a loop of 1.
4098 (about to become 2) */
a29f6d03 4099 SV_COW_NEXT_SV_SET(sstr, sstr);
765f542d
NC
4100 }
4101 }
4102#endif
4103 /* Initial code is common. */
3f7c398e 4104 if (SvPVX_const(dstr)) { /* we know that dtype >= SVt_PV */
a5f75d66
AD
4105 if (SvOOK(dstr)) {
4106 SvFLAGS(dstr) &= ~SVf_OOK;
3f7c398e 4107 Safefree(SvPVX_const(dstr) - SvIVX(dstr));
a5f75d66 4108 }
50483b2c 4109 else if (SvLEN(dstr))
3f7c398e 4110 Safefree(SvPVX_const(dstr));
79072805 4111 }
765f542d 4112
765f542d
NC
4113 if (!isSwipe) {
4114 /* making another shared SV. */
4115 STRLEN cur = SvCUR(sstr);
4116 STRLEN len = SvLEN(sstr);
f8c7b90f 4117#ifdef PERL_OLD_COPY_ON_WRITE
765f542d 4118 if (len) {
b8f9541a 4119 assert (SvTYPE(dstr) >= SVt_PVIV);
765f542d
NC
4120 /* SvIsCOW_normal */
4121 /* splice us in between source and next-after-source. */
a29f6d03
NC
4122 SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4123 SV_COW_NEXT_SV_SET(sstr, dstr);
940132f3 4124 SvPV_set(dstr, SvPVX_mutable(sstr));
a604c751
NC
4125 } else
4126#endif
4127 {
765f542d 4128 /* SvIsCOW_shared_hash */
46187eeb
NC
4129 DEBUG_C(PerlIO_printf(Perl_debug_log,
4130 "Copy on write: Sharing hash\n"));
b8f9541a 4131
bdd68bc3 4132 assert (SvTYPE(dstr) >= SVt_PV);
765f542d 4133 SvPV_set(dstr,
d1db91c6 4134 HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
bdd68bc3 4135 }
87a1ef3d
SP
4136 SvLEN_set(dstr, len);
4137 SvCUR_set(dstr, cur);
765f542d
NC
4138 SvREADONLY_on(dstr);
4139 SvFAKE_on(dstr);
4140 /* Relesase a global SV mutex. */
4141 }
4142 else
765f542d 4143 { /* Passes the swipe test. */
78d1e721 4144 SvPV_set(dstr, SvPVX_mutable(sstr));
765f542d
NC
4145 SvLEN_set(dstr, SvLEN(sstr));
4146 SvCUR_set(dstr, SvCUR(sstr));
4147
4148 SvTEMP_off(dstr);
4149 (void)SvOK_off(sstr); /* NOTE: nukes most SvFLAGS on sstr */
4150 SvPV_set(sstr, Nullch);
4151 SvLEN_set(sstr, 0);
4152 SvCUR_set(sstr, 0);
4153 SvTEMP_off(sstr);
4154 }
4155 }
9aa983d2 4156 if (sflags & SVf_UTF8)
a7cb1f99 4157 SvUTF8_on(dstr);
8990e307 4158 if (sflags & SVp_NOK) {
3332b3c1
JH
4159 SvNOKp_on(dstr);
4160 if (sflags & SVf_NOK)
4161 SvFLAGS(dstr) |= SVf_NOK;
9d6ce603 4162 SvNV_set(dstr, SvNVX(sstr));
79072805 4163 }
8990e307 4164 if (sflags & SVp_IOK) {
3332b3c1
JH
4165 (void)SvIOKp_on(dstr);
4166 if (sflags & SVf_IOK)
4167 SvFLAGS(dstr) |= SVf_IOK;
2b1c7e3e 4168 if (sflags & SVf_IVisUV)
25da4f38 4169 SvIsUV_on(dstr);
45977657 4170 SvIV_set(dstr, SvIVX(sstr));
79072805 4171 }
92f0c265 4172 if (SvVOK(sstr)) {
7a5fa8a2 4173 MAGIC *smg = mg_find(sstr,PERL_MAGIC_vstring);
ece467f9
JP
4174 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4175 smg->mg_ptr, smg->mg_len);
439cb1c4 4176 SvRMAGICAL_on(dstr);
7a5fa8a2 4177 }
79072805 4178 }
8990e307 4179 else if (sflags & SVp_IOK) {
3332b3c1
JH
4180 if (sflags & SVf_IOK)
4181 (void)SvIOK_only(dstr);
4182 else {
9cbac4c7
DM
4183 (void)SvOK_off(dstr);
4184 (void)SvIOKp_on(dstr);
3332b3c1
JH
4185 }
4186 /* XXXX Do we want to set IsUV for IV(ROK)? Be extra safe... */
2b1c7e3e 4187 if (sflags & SVf_IVisUV)
25da4f38 4188 SvIsUV_on(dstr);
45977657 4189 SvIV_set(dstr, SvIVX(sstr));
3332b3c1
JH
4190 if (sflags & SVp_NOK) {
4191 if (sflags & SVf_NOK)
4192 (void)SvNOK_on(dstr);
4193 else
4194 (void)SvNOKp_on(dstr);
9d6ce603 4195 SvNV_set(dstr, SvNVX(sstr));
3332b3c1
JH
4196 }
4197 }
4198 else if (sflags & SVp_NOK) {
4199 if (sflags & SVf_NOK)
4200 (void)SvNOK_only(dstr);
4201 else {
9cbac4c7 4202 (void)SvOK_off(dstr);
3332b3c1
JH
4203 SvNOKp_on(dstr);
4204 }
9d6ce603 4205 SvNV_set(dstr, SvNVX(sstr));
79072805
LW
4206 }
4207 else {
20408e3c 4208 if (dtype == SVt_PVGV) {
e476b1b5 4209 if (ckWARN(WARN_MISC))
9014280d 4210 Perl_warner(aTHX_ packWARN(WARN_MISC), "Undefined value assigned to typeglob");
20408e3c
GS
4211 }
4212 else
4213 (void)SvOK_off(dstr);
a0d0e21e 4214 }
27c9684d
AP
4215 if (SvTAINTED(sstr))
4216 SvTAINT(dstr);
79072805
LW
4217}
4218
954c1994
GS
4219/*
4220=for apidoc sv_setsv_mg
4221
4222Like C<sv_setsv>, but also handles 'set' magic.
4223
4224=cut
4225*/
4226
79072805 4227void
864dbfa3 4228Perl_sv_setsv_mg(pTHX_ SV *dstr, register SV *sstr)
ef50df4b
GS
4229{
4230 sv_setsv(dstr,sstr);
4231 SvSETMAGIC(dstr);
4232}
4233
f8c7b90f 4234#ifdef PERL_OLD_COPY_ON_WRITE
ed252734
NC
4235SV *
4236Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4237{
4238 STRLEN cur = SvCUR(sstr);
4239 STRLEN len = SvLEN(sstr);
4240 register char *new_pv;
4241
4242 if (DEBUG_C_TEST) {
4243 PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4244 sstr, dstr);
4245 sv_dump(sstr);
4246 if (dstr)
4247 sv_dump(dstr);
4248 }
4249
4250 if (dstr) {
4251 if (SvTHINKFIRST(dstr))
4252 sv_force_normal_flags(dstr, SV_COW_DROP_PV);
3f7c398e
SP
4253 else if (SvPVX_const(dstr))
4254 Safefree(SvPVX_const(dstr));
ed252734
NC
4255 }
4256 else
4257 new_SV(dstr);
862a34c6 4258 SvUPGRADE(dstr, SVt_PVIV);
ed252734
NC
4259
4260 assert (SvPOK(sstr));
4261 assert (SvPOKp(sstr));
4262 assert (!SvIOK(sstr));
4263 assert (!SvIOKp(sstr));
4264 assert (!SvNOK(sstr));
4265 assert (!SvNOKp(sstr));
4266
4267 if (SvIsCOW(sstr)) {
4268
4269 if (SvLEN(sstr) == 0) {
4270 /* source is a COW shared hash key. */
ed252734
NC
4271 DEBUG_C(PerlIO_printf(Perl_debug_log,
4272 "Fast copy on write: Sharing hash\n"));
d1db91c6 4273 new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
ed252734
NC
4274 goto common_exit;
4275 }
4276 SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4277 } else {
4278 assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
862a34c6 4279 SvUPGRADE(sstr, SVt_PVIV);
ed252734
NC
4280 SvREADONLY_on(sstr);
4281 SvFAKE_on(sstr);
4282 DEBUG_C(PerlIO_printf(Perl_debug_log,
4283 "Fast copy on write: Converting sstr to COW\n"));
4284 SV_COW_NEXT_SV_SET(dstr, sstr);
4285 }
4286 SV_COW_NEXT_SV_SET(sstr, dstr);
940132f3 4287 new_pv = SvPVX_mutable(sstr);
ed252734
NC
4288
4289 common_exit:
4290 SvPV_set(dstr, new_pv);
4291 SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4292 if (SvUTF8(sstr))
4293 SvUTF8_on(dstr);
87a1ef3d
SP
4294 SvLEN_set(dstr, len);
4295 SvCUR_set(dstr, cur);
ed252734
NC
4296 if (DEBUG_C_TEST) {
4297 sv_dump(dstr);
4298 }
4299 return dstr;
4300}
4301#endif
4302
954c1994
GS
4303/*
4304=for apidoc sv_setpvn
4305
4306Copies a string into an SV. The C<len> parameter indicates the number of
9e09f5f2
MHM
4307bytes to be copied. If the C<ptr> argument is NULL the SV will become
4308undefined. Does not handle 'set' magic. See C<sv_setpvn_mg>.
954c1994
GS
4309
4310=cut
4311*/
4312
ef50df4b 4313void
864dbfa3 4314Perl_sv_setpvn(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
79072805 4315{
c6f8c383 4316 register char *dptr;
22c522df 4317
765f542d 4318 SV_CHECK_THINKFIRST_COW_DROP(sv);
463ee0b2 4319 if (!ptr) {
a0d0e21e 4320 (void)SvOK_off(sv);
463ee0b2
LW
4321 return;
4322 }
22c522df
JH
4323 else {
4324 /* len is STRLEN which is unsigned, need to copy to signed */
a3b680e6 4325 const IV iv = len;
9c5ffd7c
JH
4326 if (iv < 0)
4327 Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
22c522df 4328 }
862a34c6 4329 SvUPGRADE(sv, SVt_PV);
c6f8c383 4330
5902b6a9 4331 dptr = SvGROW(sv, len + 1);
c6f8c383
GA
4332 Move(ptr,dptr,len,char);
4333 dptr[len] = '\0';
79072805 4334 SvCUR_set(sv, len);
1aa99e6b 4335 (void)SvPOK_only_UTF8(sv); /* validate pointer */
463ee0b2 4336 SvTAINT(sv);
79072805
LW
4337}
4338
954c1994
GS
4339/*
4340=for apidoc sv_setpvn_mg
4341
4342Like C<sv_setpvn>, but also handles 'set' magic.
4343
4344=cut
4345*/
4346
79072805 4347void
864dbfa3 4348Perl_sv_setpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
ef50df4b
GS
4349{
4350 sv_setpvn(sv,ptr,len);
4351 SvSETMAGIC(sv);
4352}
4353
954c1994
GS
4354/*
4355=for apidoc sv_setpv
4356
4357Copies a string into an SV. The string must be null-terminated. Does not
4358handle 'set' magic. See C<sv_setpv_mg>.
4359
4360=cut
4361*/
4362
ef50df4b 4363void
864dbfa3 4364Perl_sv_setpv(pTHX_ register SV *sv, register const char *ptr)
79072805
LW
4365{
4366 register STRLEN len;
4367
765f542d 4368 SV_CHECK_THINKFIRST_COW_DROP(sv);
463ee0b2 4369 if (!ptr) {
a0d0e21e 4370 (void)SvOK_off(sv);
463ee0b2
LW
4371 return;
4372 }
79072805 4373 len = strlen(ptr);
862a34c6 4374 SvUPGRADE(sv, SVt_PV);
c6f8c383 4375
79072805 4376 SvGROW(sv, len + 1);
463ee0b2 4377 Move(ptr,SvPVX(sv),len+1,char);
79072805 4378 SvCUR_set(sv, len);
1aa99e6b 4379 (void)SvPOK_only_UTF8(sv); /* validate pointer */
463ee0b2
LW
4380 SvTAINT(sv);
4381}
4382
954c1994
GS
4383/*
4384=for apidoc sv_setpv_mg
4385
4386Like C<sv_setpv>, but also handles 'set' magic.
4387
4388=cut
4389*/
4390
463ee0b2 4391void
864dbfa3 4392Perl_sv_setpv_mg(pTHX_ register SV *sv, register const char *ptr)
ef50df4b
GS
4393{
4394 sv_setpv(sv,ptr);
4395 SvSETMAGIC(sv);
4396}
4397
954c1994
GS
4398/*
4399=for apidoc sv_usepvn
4400
4401Tells an SV to use C<ptr> to find its string value. Normally the string is
1c846c1f 4402stored inside the SV but sv_usepvn allows the SV to use an outside string.
954c1994
GS
4403The C<ptr> should point to memory that was allocated by C<malloc>. The
4404string length, C<len>, must be supplied. This function will realloc the
4405memory pointed to by C<ptr>, so that pointer should not be freed or used by
4406the programmer after giving it to sv_usepvn. Does not handle 'set' magic.
4407See C<sv_usepvn_mg>.
4408
4409=cut
4410*/
4411
ef50df4b 4412void
864dbfa3 4413Perl_sv_usepvn(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
463ee0b2 4414{
1936d2a7 4415 STRLEN allocate;
765f542d 4416 SV_CHECK_THINKFIRST_COW_DROP(sv);
862a34c6 4417 SvUPGRADE(sv, SVt_PV);
463ee0b2 4418 if (!ptr) {
a0d0e21e 4419 (void)SvOK_off(sv);
463ee0b2
LW
4420 return;
4421 }
3f7c398e 4422 if (SvPVX_const(sv))
8bd4d4c5 4423 SvPV_free(sv);
1936d2a7
NC
4424
4425 allocate = PERL_STRLEN_ROUNDUP(len + 1);
7a9b70e9 4426 ptr = saferealloc (ptr, allocate);
f880fe2f 4427 SvPV_set(sv, ptr);
463ee0b2 4428 SvCUR_set(sv, len);
1936d2a7 4429 SvLEN_set(sv, allocate);
463ee0b2 4430 *SvEND(sv) = '\0';
1aa99e6b 4431 (void)SvPOK_only_UTF8(sv); /* validate pointer */
463ee0b2 4432 SvTAINT(sv);
79072805
LW
4433}
4434
954c1994
GS
4435/*
4436=for apidoc sv_usepvn_mg
4437
4438Like C<sv_usepvn>, but also handles 'set' magic.
4439
4440=cut
4441*/
4442
ef50df4b 4443void
864dbfa3 4444Perl_sv_usepvn_mg(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
ef50df4b 4445{
51c1089b 4446 sv_usepvn(sv,ptr,len);
ef50df4b
GS
4447 SvSETMAGIC(sv);
4448}
4449
f8c7b90f 4450#ifdef PERL_OLD_COPY_ON_WRITE
765f542d
NC
4451/* Need to do this *after* making the SV normal, as we need the buffer
4452 pointer to remain valid until after we've copied it. If we let go too early,
4453 another thread could invalidate it by unsharing last of the same hash key
4454 (which it can do by means other than releasing copy-on-write Svs)
4455 or by changing the other copy-on-write SVs in the loop. */
4456STATIC void
bdd68bc3 4457S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, STRLEN len, SV *after)
765f542d
NC
4458{
4459 if (len) { /* this SV was SvIsCOW_normal(sv) */
4460 /* we need to find the SV pointing to us. */
4461 SV *current = SV_COW_NEXT_SV(after);
7a5fa8a2 4462
765f542d
NC
4463 if (current == sv) {
4464 /* The SV we point to points back to us (there were only two of us
4465 in the loop.)
4466 Hence other SV is no longer copy on write either. */
4467 SvFAKE_off(after);
4468 SvREADONLY_off(after);
4469 } else {
4470 /* We need to follow the pointers around the loop. */
4471 SV *next;
4472 while ((next = SV_COW_NEXT_SV(current)) != sv) {
4473 assert (next);
4474 current = next;
4475 /* don't loop forever if the structure is bust, and we have
4476 a pointer into a closed loop. */
4477 assert (current != after);
3f7c398e 4478 assert (SvPVX_const(current) == pvx);
765f542d
NC
4479 }
4480 /* Make the SV before us point to the SV after us. */
a29f6d03 4481 SV_COW_NEXT_SV_SET(current, after);
765f542d
NC
4482 }
4483 } else {
bdd68bc3 4484 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
765f542d
NC
4485 }
4486}
4487
4488int
4489Perl_sv_release_IVX(pTHX_ register SV *sv)
4490{
4491 if (SvIsCOW(sv))
4492 sv_force_normal_flags(sv, 0);
0c34ef67
MHM
4493 SvOOK_off(sv);
4494 return 0;
765f542d
NC
4495}
4496#endif
645c22ef
DM
4497/*
4498=for apidoc sv_force_normal_flags
4499
4500Undo various types of fakery on an SV: if the PV is a shared string, make
4501a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
765f542d
NC
4502an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4503we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4504then a copy-on-write scalar drops its PV buffer (if any) and becomes
4505SvPOK_off rather than making a copy. (Used where this scalar is about to be
d3050d9d 4506set to some other value.) In addition, the C<flags> parameter gets passed to
765f542d
NC
4507C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4508with flags set to 0.
645c22ef
DM
4509
4510=cut
4511*/
4512
6fc92669 4513void
840a7b70 4514Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags)
0f15f207 4515{
f8c7b90f 4516#ifdef PERL_OLD_COPY_ON_WRITE
765f542d
NC
4517 if (SvREADONLY(sv)) {
4518 /* At this point I believe I should acquire a global SV mutex. */
4519 if (SvFAKE(sv)) {
a28509cc
AL
4520 const char *pvx = SvPVX_const(sv);
4521 const STRLEN len = SvLEN(sv);
4522 const STRLEN cur = SvCUR(sv);
a28509cc 4523 SV * const next = SV_COW_NEXT_SV(sv); /* next COW sv in the loop. */
46187eeb
NC
4524 if (DEBUG_C_TEST) {
4525 PerlIO_printf(Perl_debug_log,
4526 "Copy on write: Force normal %ld\n",
4527 (long) flags);
e419cbc5 4528 sv_dump(sv);
46187eeb 4529 }
765f542d
NC
4530 SvFAKE_off(sv);
4531 SvREADONLY_off(sv);
4532 /* This SV doesn't own the buffer, so need to New() a new one: */
f880fe2f 4533 SvPV_set(sv, (char*)0);
87a1ef3d 4534 SvLEN_set(sv, 0);
765f542d
NC
4535 if (flags & SV_COW_DROP_PV) {
4536 /* OK, so we don't need to copy our buffer. */
4537 SvPOK_off(sv);
4538 } else {
4539 SvGROW(sv, cur + 1);
4540 Move(pvx,SvPVX(sv),cur,char);
87a1ef3d 4541 SvCUR_set(sv, cur);
765f542d
NC
4542 *SvEND(sv) = '\0';
4543 }
bdd68bc3 4544 sv_release_COW(sv, pvx, len, next);
46187eeb 4545 if (DEBUG_C_TEST) {
e419cbc5 4546 sv_dump(sv);
46187eeb 4547 }
765f542d 4548 }
923e4eb5 4549 else if (IN_PERL_RUNTIME)
765f542d
NC
4550 Perl_croak(aTHX_ PL_no_modify);
4551 /* At this point I believe that I can drop the global SV mutex. */
4552 }
4553#else
2213622d 4554 if (SvREADONLY(sv)) {
1c846c1f 4555 if (SvFAKE(sv)) {
a433f3d2 4556 const char *pvx = SvPVX_const(sv);
66a1b24b 4557 const STRLEN len = SvCUR(sv);
10bcdfd6
NC
4558 SvFAKE_off(sv);
4559 SvREADONLY_off(sv);
66a1b24b
AL
4560 SvPV_set(sv, Nullch);
4561 SvLEN_set(sv, 0);
1c846c1f 4562 SvGROW(sv, len + 1);
3f7c398e 4563 Move(pvx,SvPVX_const(sv),len,char);
1c846c1f 4564 *SvEND(sv) = '\0';
bdd68bc3 4565 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
1c846c1f 4566 }
923e4eb5 4567 else if (IN_PERL_RUNTIME)
cea2e8a9 4568 Perl_croak(aTHX_ PL_no_modify);
0f15f207 4569 }
765f542d 4570#endif
2213622d 4571 if (SvROK(sv))
840a7b70 4572 sv_unref_flags(sv, flags);
6fc92669
GS
4573 else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4574 sv_unglob(sv);
0f15f207 4575}
1c846c1f 4576
645c22ef
DM
4577/*
4578=for apidoc sv_force_normal
4579
4580Undo various types of fakery on an SV: if the PV is a shared string, make
4581a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4582an xpvmg. See also C<sv_force_normal_flags>.
4583
4584=cut
4585*/
4586
840a7b70
IZ
4587void
4588Perl_sv_force_normal(pTHX_ register SV *sv)
4589{
4590 sv_force_normal_flags(sv, 0);
4591}
4592
954c1994
GS
4593/*
4594=for apidoc sv_chop
4595
1c846c1f 4596Efficient removal of characters from the beginning of the string buffer.
954c1994
GS
4597SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4598the string buffer. The C<ptr> becomes the first character of the adjusted
645c22ef 4599string. Uses the "OOK hack".
3f7c398e 4600Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
31869a79 4601refer to the same chunk of data.
954c1994
GS
4602
4603=cut
4604*/
4605
79072805 4606void
f54cb97a 4607Perl_sv_chop(pTHX_ register SV *sv, register const char *ptr)
79072805
LW
4608{
4609 register STRLEN delta;
a0d0e21e 4610 if (!ptr || !SvPOKp(sv))
79072805 4611 return;
3f7c398e 4612 delta = ptr - SvPVX_const(sv);
2213622d 4613 SV_CHECK_THINKFIRST(sv);
79072805
LW
4614 if (SvTYPE(sv) < SVt_PVIV)
4615 sv_upgrade(sv,SVt_PVIV);
4616
4617 if (!SvOOK(sv)) {
50483b2c 4618 if (!SvLEN(sv)) { /* make copy of shared string */
3f7c398e 4619 const char *pvx = SvPVX_const(sv);
a28509cc 4620 const STRLEN len = SvCUR(sv);
50483b2c 4621 SvGROW(sv, len + 1);
3f7c398e 4622 Move(pvx,SvPVX_const(sv),len,char);
50483b2c
JD
4623 *SvEND(sv) = '\0';
4624 }
45977657 4625 SvIV_set(sv, 0);
a4bfb290
AB
4626 /* Same SvOOK_on but SvOOK_on does a SvIOK_off
4627 and we do that anyway inside the SvNIOK_off
4628 */
7a5fa8a2 4629 SvFLAGS(sv) |= SVf_OOK;
79072805 4630 }
a4bfb290 4631 SvNIOK_off(sv);
b162af07
SP
4632 SvLEN_set(sv, SvLEN(sv) - delta);
4633 SvCUR_set(sv, SvCUR(sv) - delta);
f880fe2f 4634 SvPV_set(sv, SvPVX(sv) + delta);
45977657 4635 SvIV_set(sv, SvIVX(sv) + delta);
79072805
LW
4636}
4637
09540bc3
JH
4638/* sv_catpvn() is now a macro using Perl_sv_catpvn_flags();
4639 * this function provided for binary compatibility only
4640 */
4641
4642void
4643Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
4644{
4645 sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
4646}
4647
954c1994
GS
4648/*
4649=for apidoc sv_catpvn
4650
4651Concatenates the string onto the end of the string which is in the SV. The
1e54db1a
JH
4652C<len> indicates number of bytes to copy. If the SV has the UTF-8
4653status set, then the bytes appended should be valid UTF-8.
d5ce4a7c 4654Handles 'get' magic, but not 'set' magic. See C<sv_catpvn_mg>.
954c1994 4655
8d6d96c1
HS
4656=for apidoc sv_catpvn_flags
4657
4658Concatenates the string onto the end of the string which is in the SV. The
1e54db1a
JH
4659C<len> indicates number of bytes to copy. If the SV has the UTF-8
4660status set, then the bytes appended should be valid UTF-8.
8d6d96c1
HS
4661If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4662appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4663in terms of this function.
4664
4665=cut
4666*/
4667
4668void
4669Perl_sv_catpvn_flags(pTHX_ register SV *dsv, register const char *sstr, register STRLEN slen, I32 flags)
4670{
4671 STRLEN dlen;
f54cb97a 4672 const char *dstr = SvPV_force_flags(dsv, dlen, flags);
8d6d96c1 4673
8d6d96c1
HS
4674 SvGROW(dsv, dlen + slen + 1);
4675 if (sstr == dstr)
3f7c398e 4676 sstr = SvPVX_const(dsv);
8d6d96c1 4677 Move(sstr, SvPVX(dsv) + dlen, slen, char);
b162af07 4678 SvCUR_set(dsv, SvCUR(dsv) + slen);
8d6d96c1
HS
4679 *SvEND(dsv) = '\0';
4680 (void)SvPOK_only_UTF8(dsv); /* validate pointer */
4681 SvTAINT(dsv);
79072805
LW
4682}
4683
954c1994
GS
4684/*
4685=for apidoc sv_catpvn_mg
4686
4687Like C<sv_catpvn>, but also handles 'set' magic.
4688
4689=cut
4690*/
4691
79072805 4692void
864dbfa3 4693Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
ef50df4b
GS
4694{
4695 sv_catpvn(sv,ptr,len);
4696 SvSETMAGIC(sv);
4697}
4698
09540bc3
JH
4699/* sv_catsv() is now a macro using Perl_sv_catsv_flags();
4700 * this function provided for binary compatibility only
4701 */
4702
4703void
4704Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr)
4705{
4706 sv_catsv_flags(dstr, sstr, SV_GMAGIC);
4707}
4708
954c1994
GS
4709/*
4710=for apidoc sv_catsv
4711
13e8c8e3
JH
4712Concatenates the string from SV C<ssv> onto the end of the string in
4713SV C<dsv>. Modifies C<dsv> but not C<ssv>. Handles 'get' magic, but
4714not 'set' magic. See C<sv_catsv_mg>.
954c1994 4715
8d6d96c1
HS
4716=for apidoc sv_catsv_flags
4717
4718Concatenates the string from SV C<ssv> onto the end of the string in
4719SV C<dsv>. Modifies C<dsv> but not C<ssv>. If C<flags> has C<SV_GMAGIC>
4720bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4721and C<sv_catsv_nomg> are implemented in terms of this function.
4722
4723=cut */
4724
ef50df4b 4725void
8d6d96c1 4726Perl_sv_catsv_flags(pTHX_ SV *dsv, register SV *ssv, I32 flags)
79072805 4727{
4d84ee25 4728 const char *spv;
13e8c8e3 4729 STRLEN slen;
46199a12 4730 if (!ssv)
79072805 4731 return;
4d84ee25 4732 if ((spv = SvPV_const(ssv, slen))) {
4fd84b44
AD
4733 /* sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4734 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
8cf8f3d1
NIS
4735 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4736 get dutf8 = 0x20000000, (i.e. SVf_UTF8) even though
4fd84b44
AD
4737 dsv->sv_flags doesn't have that bit set.
4738 Andy Dougherty 12 Oct 2001
4739 */
b464bac0 4740 const I32 sutf8 = DO_UTF8(ssv);
4fd84b44 4741 I32 dutf8;
13e8c8e3 4742
8d6d96c1
HS
4743 if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4744 mg_get(dsv);
4745 dutf8 = DO_UTF8(dsv);
4746
4747 if (dutf8 != sutf8) {
13e8c8e3 4748 if (dutf8) {
46199a12 4749 /* Not modifying source SV, so taking a temporary copy. */
8d6d96c1 4750 SV* csv = sv_2mortal(newSVpvn(spv, slen));
13e8c8e3 4751
46199a12 4752 sv_utf8_upgrade(csv);
93524f2b 4753 spv = SvPV_const(csv, slen);
13e8c8e3 4754 }
8d6d96c1
HS
4755 else
4756 sv_utf8_upgrade_nomg(dsv);
e84ff256 4757 }
8d6d96c1 4758 sv_catpvn_nomg(dsv, spv, slen);
560a288e 4759 }
79072805
LW
4760}
4761
954c1994
GS
4762/*
4763=for apidoc sv_catsv_mg
4764
4765Like C<sv_catsv>, but also handles 'set' magic.
4766
4767=cut
4768*/
4769
79072805 4770void
46199a12 4771Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv)
ef50df4b 4772{
46199a12
JH
4773 sv_catsv(dsv,ssv);
4774 SvSETMAGIC(dsv);
ef50df4b
GS
4775}
4776
954c1994
GS
4777/*
4778=for apidoc sv_catpv
4779
4780Concatenates the string onto the end of the string which is in the SV.
1e54db1a
JH
4781If the SV has the UTF-8 status set, then the bytes appended should be
4782valid UTF-8. Handles 'get' magic, but not 'set' magic. See C<sv_catpv_mg>.
954c1994 4783
d5ce4a7c 4784=cut */
954c1994 4785
ef50df4b 4786void
0c981600 4787Perl_sv_catpv(pTHX_ register SV *sv, register const char *ptr)
79072805
LW
4788{
4789 register STRLEN len;
463ee0b2 4790 STRLEN tlen;
748a9306 4791 char *junk;
79072805 4792
0c981600 4793 if (!ptr)
79072805 4794 return;
748a9306 4795 junk = SvPV_force(sv, tlen);
0c981600 4796 len = strlen(ptr);
463ee0b2 4797 SvGROW(sv, tlen + len + 1);
0c981600 4798 if (ptr == junk)
3f7c398e 4799 ptr = SvPVX_const(sv);
0c981600 4800 Move(ptr,SvPVX(sv)+tlen,len+1,char);
b162af07 4801 SvCUR_set(sv, SvCUR(sv) + len);
d41ff1b8 4802 (void)SvPOK_only_UTF8(sv); /* validate pointer */
463ee0b2 4803 SvTAINT(sv);
79072805
LW
4804}
4805
954c1994
GS
4806/*
4807=for apidoc sv_catpv_mg
4808
4809Like C<sv_catpv>, but also handles 'set' magic.
4810
4811=cut
4812*/
4813
ef50df4b 4814void
0c981600 4815Perl_sv_catpv_mg(pTHX_ register SV *sv, register const char *ptr)
ef50df4b 4816{
0c981600 4817 sv_catpv(sv,ptr);
ef50df4b
GS
4818 SvSETMAGIC(sv);
4819}
4820
645c22ef
DM
4821/*
4822=for apidoc newSV
4823
4824Create a new null SV, or if len > 0, create a new empty SVt_PV type SV
4825with an initial PV allocation of len+1. Normally accessed via the C<NEWSV>
4826macro.
4827
4828=cut
4829*/
4830
79072805 4831SV *
864dbfa3 4832Perl_newSV(pTHX_ STRLEN len)
79072805
LW
4833{
4834 register SV *sv;
1c846c1f 4835
4561caa4 4836 new_SV(sv);
79072805
LW
4837 if (len) {
4838 sv_upgrade(sv, SVt_PV);
4839 SvGROW(sv, len + 1);
4840 }
4841 return sv;
4842}
954c1994 4843/*
92110913 4844=for apidoc sv_magicext
954c1994 4845
68795e93 4846Adds magic to an SV, upgrading it if necessary. Applies the
2d8d5d5a 4847supplied vtable and returns a pointer to the magic added.
92110913 4848
2d8d5d5a
SH
4849Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4850In particular, you can add magic to SvREADONLY SVs, and add more than
4851one instance of the same 'how'.
645c22ef 4852
2d8d5d5a
SH
4853If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4854stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4855special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4856to contain an C<SV*> and is stored as-is with its REFCNT incremented.
92110913 4857
2d8d5d5a 4858(This is now used as a subroutine by C<sv_magic>.)
954c1994
GS
4859
4860=cut
4861*/
92110913 4862MAGIC *
e1ec3a88 4863Perl_sv_magicext(pTHX_ SV* sv, SV* obj, int how, const MGVTBL *vtable,
92110913 4864 const char* name, I32 namlen)
79072805
LW
4865{
4866 MAGIC* mg;
68795e93 4867
92110913 4868 if (SvTYPE(sv) < SVt_PVMG) {
862a34c6 4869 SvUPGRADE(sv, SVt_PVMG);
463ee0b2 4870 }
79072805
LW
4871 Newz(702,mg, 1, MAGIC);
4872 mg->mg_moremagic = SvMAGIC(sv);
b162af07 4873 SvMAGIC_set(sv, mg);
75f9d97a 4874
05f95b08
SB
4875 /* Sometimes a magic contains a reference loop, where the sv and
4876 object refer to each other. To prevent a reference loop that
4877 would prevent such objects being freed, we look for such loops
4878 and if we find one we avoid incrementing the object refcount.
87f0b213
JH
4879
4880 Note we cannot do this to avoid self-tie loops as intervening RV must
b5ccf5f2 4881 have its REFCNT incremented to keep it in existence.
87f0b213
JH
4882
4883 */
14befaf4
DM
4884 if (!obj || obj == sv ||
4885 how == PERL_MAGIC_arylen ||
4886 how == PERL_MAGIC_qr ||
8d2f4536 4887 how == PERL_MAGIC_symtab ||
75f9d97a
JH
4888 (SvTYPE(obj) == SVt_PVGV &&
4889 (GvSV(obj) == sv || GvHV(obj) == (HV*)sv || GvAV(obj) == (AV*)sv ||
4890 GvCV(obj) == (CV*)sv || GvIOp(obj) == (IO*)sv ||
2628be26 4891 GvFORM(obj) == (CV*)sv)))
75f9d97a 4892 {
8990e307 4893 mg->mg_obj = obj;
75f9d97a 4894 }
85e6fe83 4895 else {
8990e307 4896 mg->mg_obj = SvREFCNT_inc(obj);
85e6fe83
LW
4897 mg->mg_flags |= MGf_REFCOUNTED;
4898 }
b5ccf5f2
YST
4899
4900 /* Normal self-ties simply pass a null object, and instead of
4901 using mg_obj directly, use the SvTIED_obj macro to produce a
4902 new RV as needed. For glob "self-ties", we are tieing the PVIO
4903 with an RV obj pointing to the glob containing the PVIO. In
4904 this case, to avoid a reference loop, we need to weaken the
4905 reference.
4906 */
4907
4908 if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
4909 obj && SvROK(obj) && GvIO(SvRV(obj)) == (IO*)sv)
4910 {
4911 sv_rvweaken(obj);
4912 }
4913
79072805 4914 mg->mg_type = how;
565764a8 4915 mg->mg_len = namlen;
9cbac4c7 4916 if (name) {
92110913 4917 if (namlen > 0)
1edc1566 4918 mg->mg_ptr = savepvn(name, namlen);
c6ee37c5 4919 else if (namlen == HEf_SVKEY)
1edc1566 4920 mg->mg_ptr = (char*)SvREFCNT_inc((SV*)name);
68795e93 4921 else
92110913 4922 mg->mg_ptr = (char *) name;
9cbac4c7 4923 }
92110913 4924 mg->mg_virtual = vtable;
68795e93 4925
92110913
NIS
4926 mg_magical(sv);
4927 if (SvGMAGICAL(sv))
4928 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4929 return mg;
4930}
4931
4932/*
4933=for apidoc sv_magic
1c846c1f 4934
92110913
NIS
4935Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4936then adds a new magic item of type C<how> to the head of the magic list.
4937
2d8d5d5a
SH
4938See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
4939handling of the C<name> and C<namlen> arguments.
4940
4509d3fb
SB
4941You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
4942to add more than one instance of the same 'how'.
4943
92110913
NIS
4944=cut
4945*/
4946
4947void
4948Perl_sv_magic(pTHX_ register SV *sv, SV *obj, int how, const char *name, I32 namlen)
68795e93 4949{
e1ec3a88 4950 const MGVTBL *vtable = 0;
92110913 4951 MAGIC* mg;
92110913 4952
f8c7b90f 4953#ifdef PERL_OLD_COPY_ON_WRITE
765f542d
NC
4954 if (SvIsCOW(sv))
4955 sv_force_normal_flags(sv, 0);
4956#endif
92110913 4957 if (SvREADONLY(sv)) {
923e4eb5 4958 if (IN_PERL_RUNTIME
92110913
NIS
4959 && how != PERL_MAGIC_regex_global
4960 && how != PERL_MAGIC_bm
4961 && how != PERL_MAGIC_fm
4962 && how != PERL_MAGIC_sv
e6469971 4963 && how != PERL_MAGIC_backref
92110913
NIS
4964 )
4965 {
4966 Perl_croak(aTHX_ PL_no_modify);
4967 }
4968 }
4969 if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
4970 if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
68795e93
NIS
4971 /* sv_magic() refuses to add a magic of the same 'how' as an
4972 existing one
92110913
NIS
4973 */
4974 if (how == PERL_MAGIC_taint)
4975 mg->mg_len |= 1;
4976 return;
4977 }
4978 }
68795e93 4979
79072805 4980 switch (how) {
14befaf4 4981 case PERL_MAGIC_sv:
92110913 4982 vtable = &PL_vtbl_sv;
79072805 4983 break;
14befaf4 4984 case PERL_MAGIC_overload:
92110913 4985 vtable = &PL_vtbl_amagic;
a0d0e21e 4986 break;
14befaf4 4987 case PERL_MAGIC_overload_elem:
92110913 4988 vtable = &PL_vtbl_amagicelem;
a0d0e21e 4989 break;
14befaf4 4990 case PERL_MAGIC_overload_table:
92110913 4991 vtable = &PL_vtbl_ovrld;
a0d0e21e 4992 break;
14befaf4 4993 case PERL_MAGIC_bm:
92110913 4994 vtable = &PL_vtbl_bm;
79072805 4995 break;
14befaf4 4996 case PERL_MAGIC_regdata:
92110913 4997 vtable = &PL_vtbl_regdata;
6cef1e77 4998 break;
14befaf4 4999 case PERL_MAGIC_regdatum:
92110913 5000 vtable = &PL_vtbl_regdatum;
6cef1e77 5001 break;
14befaf4 5002 case PERL_MAGIC_env:
92110913 5003 vtable = &PL_vtbl_env;
79072805 5004 break;
14befaf4 5005 case PERL_MAGIC_fm:
92110913 5006 vtable = &PL_vtbl_fm;
55497cff 5007 break;
14befaf4 5008 case PERL_MAGIC_envelem:
92110913 5009 vtable = &PL_vtbl_envelem;
79072805 5010 break;
14befaf4 5011 case PERL_MAGIC_regex_global:
92110913 5012 vtable = &PL_vtbl_mglob;
93a17b20 5013 break;
14befaf4 5014 case PERL_MAGIC_isa:
92110913 5015 vtable = &PL_vtbl_isa;
463ee0b2 5016 break;
14befaf4 5017 case PERL_MAGIC_isaelem:
92110913 5018 vtable = &PL_vtbl_isaelem;
463ee0b2 5019 break;
14befaf4 5020 case PERL_MAGIC_nkeys:
92110913 5021 vtable = &PL_vtbl_nkeys;
16660edb 5022 break;
14befaf4 5023 case PERL_MAGIC_dbfile:
92110913 5024 vtable = 0;
93a17b20 5025 break;
14befaf4 5026 case PERL_MAGIC_dbline:
92110913 5027 vtable = &PL_vtbl_dbline;
79072805 5028 break;
36477c24 5029#ifdef USE_LOCALE_COLLATE
14befaf4 5030 case PERL_MAGIC_collxfrm:
92110913 5031 vtable = &PL_vtbl_collxfrm;
bbce6d69 5032 break;
36477c24 5033#endif /* USE_LOCALE_COLLATE */
14befaf4 5034 case PERL_MAGIC_tied:
92110913 5035 vtable = &PL_vtbl_pack;
463ee0b2 5036 break;
14befaf4
DM
5037 case PERL_MAGIC_tiedelem:
5038 case PERL_MAGIC_tiedscalar:
92110913 5039 vtable = &PL_vtbl_packelem;
463ee0b2 5040 break;
14befaf4 5041 case PERL_MAGIC_qr:
92110913 5042 vtable = &PL_vtbl_regexp;
c277df42 5043 break;
14befaf4 5044 case PERL_MAGIC_sig:
92110913 5045 vtable = &PL_vtbl_sig;
79072805 5046 break;
14befaf4 5047 case PERL_MAGIC_sigelem:
92110913 5048 vtable = &PL_vtbl_sigelem;
79072805 5049 break;
14befaf4 5050 case PERL_MAGIC_taint:
92110913 5051 vtable = &PL_vtbl_taint;
463ee0b2 5052 break;
14befaf4 5053 case PERL_MAGIC_uvar:
92110913 5054 vtable = &PL_vtbl_uvar;
79072805 5055 break;
14befaf4 5056 case PERL_MAGIC_vec:
92110913 5057 vtable = &PL_vtbl_vec;
79072805 5058 break;
a3874608 5059 case PERL_MAGIC_arylen_p:
bfcb3514 5060 case PERL_MAGIC_rhash:
8d2f4536 5061 case PERL_MAGIC_symtab:
ece467f9
JP
5062 case PERL_MAGIC_vstring:
5063 vtable = 0;
5064 break;
7e8c5dac
HS
5065 case PERL_MAGIC_utf8:
5066 vtable = &PL_vtbl_utf8;
5067 break;
14befaf4 5068 case PERL_MAGIC_substr:
92110913 5069 vtable = &PL_vtbl_substr;
79072805 5070 break;
14befaf4 5071 case PERL_MAGIC_defelem:
92110913 5072 vtable = &PL_vtbl_defelem;
5f05dabc 5073 break;
14befaf4 5074 case PERL_MAGIC_glob:
92110913 5075 vtable = &PL_vtbl_glob;
79072805 5076 break;
14befaf4 5077 case PERL_MAGIC_arylen:
92110913 5078 vtable = &PL_vtbl_arylen;
79072805 5079 break;
14befaf4 5080 case PERL_MAGIC_pos:
92110913 5081 vtable = &PL_vtbl_pos;
a0d0e21e 5082 break;
14befaf4 5083 case PERL_MAGIC_backref:
92110913 5084 vtable = &PL_vtbl_backref;
810b8aa5 5085 break;
14befaf4
DM
5086 case PERL_MAGIC_ext:
5087 /* Reserved for use by extensions not perl internals. */
4633a7c4
LW
5088 /* Useful for attaching extension internal data to perl vars. */
5089 /* Note that multiple extensions may clash if magical scalars */
5090 /* etc holding private data from one are passed to another. */
a0d0e21e 5091 break;
79072805 5092 default:
14befaf4 5093 Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
463ee0b2 5094 }
68795e93 5095
92110913 5096 /* Rest of work is done else where */
27da23d5 5097 mg = sv_magicext(sv,obj,how,(MGVTBL*)vtable,name,namlen);
68795e93 5098
92110913
NIS
5099 switch (how) {
5100 case PERL_MAGIC_taint:
5101 mg->mg_len = 1;
5102 break;
5103 case PERL_MAGIC_ext:
5104 case PERL_MAGIC_dbfile:
5105 SvRMAGICAL_on(sv);
5106 break;
5107 }
463ee0b2
LW
5108}
5109
c461cf8f
JH
5110/*
5111=for apidoc sv_unmagic
5112
645c22ef 5113Removes all magic of type C<type> from an SV.
c461cf8f
JH
5114
5115=cut
5116*/
5117
463ee0b2 5118int
864dbfa3 5119Perl_sv_unmagic(pTHX_ SV *sv, int type)
463ee0b2
LW
5120{
5121 MAGIC* mg;
5122 MAGIC** mgp;
91bba347 5123 if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
463ee0b2
LW
5124 return 0;
5125 mgp = &SvMAGIC(sv);
5126 for (mg = *mgp; mg; mg = *mgp) {
5127 if (mg->mg_type == type) {
e1ec3a88 5128 const MGVTBL* const vtbl = mg->mg_virtual;
463ee0b2 5129 *mgp = mg->mg_moremagic;
1d7c1841 5130 if (vtbl && vtbl->svt_free)
fc0dc3b3 5131 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
14befaf4 5132 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
92110913 5133 if (mg->mg_len > 0)
1edc1566 5134 Safefree(mg->mg_ptr);
565764a8 5135 else if (mg->mg_len == HEf_SVKEY)
1edc1566 5136 SvREFCNT_dec((SV*)mg->mg_ptr);
7e8c5dac
HS
5137 else if (mg->mg_type == PERL_MAGIC_utf8 && mg->mg_ptr)
5138 Safefree(mg->mg_ptr);
9cbac4c7 5139 }
a0d0e21e
LW
5140 if (mg->mg_flags & MGf_REFCOUNTED)
5141 SvREFCNT_dec(mg->mg_obj);
463ee0b2
LW
5142 Safefree(mg);
5143 }
5144 else
5145 mgp = &mg->mg_moremagic;
79072805 5146 }
91bba347 5147 if (!SvMAGIC(sv)) {
463ee0b2 5148 SvMAGICAL_off(sv);
06759ea0 5149 SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_NOK|SVp_POK)) >> PRIVSHIFT;
463ee0b2
LW
5150 }
5151
5152 return 0;
79072805
LW
5153}
5154
c461cf8f
JH
5155/*
5156=for apidoc sv_rvweaken
5157
645c22ef
DM
5158Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5159referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5160push a back-reference to this RV onto the array of backreferences
5161associated with that magic.
c461cf8f
JH
5162
5163=cut
5164*/
5165
810b8aa5 5166SV *
864dbfa3 5167Perl_sv_rvweaken(pTHX_ SV *sv)
810b8aa5
GS
5168{
5169 SV *tsv;
5170 if (!SvOK(sv)) /* let undefs pass */
5171 return sv;
5172 if (!SvROK(sv))
cea2e8a9 5173 Perl_croak(aTHX_ "Can't weaken a nonreference");
810b8aa5 5174 else if (SvWEAKREF(sv)) {
810b8aa5 5175 if (ckWARN(WARN_MISC))
9014280d 5176 Perl_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
810b8aa5
GS
5177 return sv;
5178 }
5179 tsv = SvRV(sv);
5180 sv_add_backref(tsv, sv);
5181 SvWEAKREF_on(sv);
1c846c1f 5182 SvREFCNT_dec(tsv);
810b8aa5
GS
5183 return sv;
5184}
5185
645c22ef
DM
5186/* Give tsv backref magic if it hasn't already got it, then push a
5187 * back-reference to sv onto the array associated with the backref magic.
5188 */
5189
810b8aa5 5190STATIC void
cea2e8a9 5191S_sv_add_backref(pTHX_ SV *tsv, SV *sv)
810b8aa5
GS
5192{
5193 AV *av;
5194 MAGIC *mg;
14befaf4 5195 if (SvMAGICAL(tsv) && (mg = mg_find(tsv, PERL_MAGIC_backref)))
810b8aa5
GS
5196 av = (AV*)mg->mg_obj;
5197 else {
5198 av = newAV();
14befaf4 5199 sv_magic(tsv, (SV*)av, PERL_MAGIC_backref, NULL, 0);
d99b02a1
DM
5200 /* av now has a refcnt of 2, which avoids it getting freed
5201 * before us during global cleanup. The extra ref is removed
5202 * by magic_killbackrefs() when tsv is being freed */
810b8aa5 5203 }
d91d49e8 5204 if (AvFILLp(av) >= AvMAX(av)) {
fdc9a813 5205 I32 i;
d91d49e8 5206 SV **svp = AvARRAY(av);
fdc9a813
AE
5207 for (i = AvFILLp(av); i >= 0; i--)
5208 if (!svp[i]) {
d91d49e8
MM
5209 svp[i] = sv; /* reuse the slot */
5210 return;
5211 }
d91d49e8
MM
5212 av_extend(av, AvFILLp(av)+1);
5213 }
5214 AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
810b8aa5
GS
5215}
5216
645c22ef
DM
5217/* delete a back-reference to ourselves from the backref magic associated
5218 * with the SV we point to.
5219 */
5220
1c846c1f 5221STATIC void
cea2e8a9 5222S_sv_del_backref(pTHX_ SV *sv)
810b8aa5
GS
5223{
5224 AV *av;
5225 SV **svp;
5226 I32 i;
5227 SV *tsv = SvRV(sv);
c04a4dfe 5228 MAGIC *mg = NULL;
14befaf4 5229 if (!SvMAGICAL(tsv) || !(mg = mg_find(tsv, PERL_MAGIC_backref)))
cea2e8a9 5230 Perl_croak(aTHX_ "panic: del_backref");
810b8aa5
GS
5231 av = (AV *)mg->mg_obj;
5232 svp = AvARRAY(av);
fdc9a813
AE
5233 for (i = AvFILLp(av); i >= 0; i--)
5234 if (svp[i] == sv) svp[i] = Nullsv;
810b8aa5
GS
5235}
5236
954c1994
GS
5237/*
5238=for apidoc sv_insert
5239
5240Inserts a string at the specified offset/length within the SV. Similar to
5241the Perl substr() function.
5242
5243=cut
5244*/
5245
79072805 5246void
e1ec3a88 5247Perl_sv_insert(pTHX_ SV *bigstr, STRLEN offset, STRLEN len, const char *little, STRLEN littlelen)
79072805
LW
5248{
5249 register char *big;
5250 register char *mid;
5251 register char *midend;
5252 register char *bigend;
5253 register I32 i;
6ff81951 5254 STRLEN curlen;
1c846c1f 5255
79072805 5256
8990e307 5257 if (!bigstr)
cea2e8a9 5258 Perl_croak(aTHX_ "Can't modify non-existent substring");
6ff81951 5259 SvPV_force(bigstr, curlen);
60fa28ff 5260 (void)SvPOK_only_UTF8(bigstr);
6ff81951
GS
5261 if (offset + len > curlen) {
5262 SvGROW(bigstr, offset+len+1);
93524f2b 5263 Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
6ff81951
GS
5264 SvCUR_set(bigstr, offset+len);
5265 }
79072805 5266
69b47968 5267 SvTAINT(bigstr);
79072805
LW
5268 i = littlelen - len;
5269 if (i > 0) { /* string might grow */
a0d0e21e 5270 big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
79072805
LW
5271 mid = big + offset + len;
5272 midend = bigend = big + SvCUR(bigstr);
5273 bigend += i;
5274 *bigend = '\0';
5275 while (midend > mid) /* shove everything down */
5276 *--bigend = *--midend;
5277 Move(little,big+offset,littlelen,char);
b162af07 5278 SvCUR_set(bigstr, SvCUR(bigstr) + i);
79072805
LW
5279 SvSETMAGIC(bigstr);
5280 return;
5281 }
5282 else if (i == 0) {
463ee0b2 5283 Move(little,SvPVX(bigstr)+offset,len,char);
79072805
LW
5284 SvSETMAGIC(bigstr);
5285 return;
5286 }
5287
463ee0b2 5288 big = SvPVX(bigstr);
79072805
LW
5289 mid = big + offset;
5290 midend = mid + len;
5291 bigend = big + SvCUR(bigstr);
5292
5293 if (midend > bigend)
cea2e8a9 5294 Perl_croak(aTHX_ "panic: sv_insert");
79072805
LW
5295
5296 if (mid - big > bigend - midend) { /* faster to shorten from end */
5297 if (littlelen) {
5298 Move(little, mid, littlelen,char);
5299 mid += littlelen;
5300 }
5301 i = bigend - midend;
5302 if (i > 0) {
5303 Move(midend, mid, i,char);
5304 mid += i;
5305 }
5306 *mid = '\0';
5307 SvCUR_set(bigstr, mid - big);
5308 }
155aba94 5309 else if ((i = mid - big)) { /* faster from front */
79072805
LW
5310 midend -= littlelen;
5311 mid = midend;
5312 sv_chop(bigstr,midend-i);
5313 big += i;
5314 while (i--)
5315 *--midend = *--big;
5316 if (littlelen)
5317 Move(little, mid, littlelen,char);
5318 }
5319 else if (littlelen) {
5320 midend -= littlelen;
5321 sv_chop(bigstr,midend);
5322 Move(little,midend,littlelen,char);
5323 }
5324 else {
5325 sv_chop(bigstr,midend);
5326 }
5327 SvSETMAGIC(bigstr);
5328}
5329
c461cf8f
JH
5330/*
5331=for apidoc sv_replace
5332
5333Make the first argument a copy of the second, then delete the original.
645c22ef
DM
5334The target SV physically takes over ownership of the body of the source SV
5335and inherits its flags; however, the target keeps any magic it owns,
5336and any magic in the source is discarded.
ff276b08 5337Note that this is a rather specialist SV copying operation; most of the
645c22ef 5338time you'll want to use C<sv_setsv> or one of its many macro front-ends.
c461cf8f
JH
5339
5340=cut
5341*/
79072805
LW
5342
5343void
864dbfa3 5344Perl_sv_replace(pTHX_ register SV *sv, register SV *nsv)
79072805 5345{
a3b680e6 5346 const U32 refcnt = SvREFCNT(sv);
765f542d 5347 SV_CHECK_THINKFIRST_COW_DROP(sv);
0453d815 5348 if (SvREFCNT(nsv) != 1 && ckWARN_d(WARN_INTERNAL))
9014280d 5349 Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "Reference miscount in sv_replace()");
93a17b20 5350 if (SvMAGICAL(sv)) {
a0d0e21e
LW
5351 if (SvMAGICAL(nsv))
5352 mg_free(nsv);
5353 else
5354 sv_upgrade(nsv, SVt_PVMG);
b162af07 5355 SvMAGIC_set(nsv, SvMAGIC(sv));
a0d0e21e 5356 SvFLAGS(nsv) |= SvMAGICAL(sv);
93a17b20 5357 SvMAGICAL_off(sv);
b162af07 5358 SvMAGIC_set(sv, NULL);
93a17b20 5359 }
79072805
LW
5360 SvREFCNT(sv) = 0;
5361 sv_clear(sv);
477f5d66 5362 assert(!SvREFCNT(sv));
fd0854ff
DM
5363#ifdef DEBUG_LEAKING_SCALARS
5364 sv->sv_flags = nsv->sv_flags;
5365 sv->sv_any = nsv->sv_any;
5366 sv->sv_refcnt = nsv->sv_refcnt;
f34d0642 5367 sv->sv_u = nsv->sv_u;
fd0854ff 5368#else
79072805 5369 StructCopy(nsv,sv,SV);
fd0854ff 5370#endif
7b2c381c
NC
5371 /* Currently could join these into one piece of pointer arithmetic, but
5372 it would be unclear. */
5373 if(SvTYPE(sv) == SVt_IV)
5374 SvANY(sv)
339049b0 5375 = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
7b2c381c 5376 else if (SvTYPE(sv) == SVt_RV) {
339049b0 5377 SvANY(sv) = &sv->sv_u.svu_rv;
7b2c381c
NC
5378 }
5379
fd0854ff 5380
f8c7b90f 5381#ifdef PERL_OLD_COPY_ON_WRITE
d3d0e6f1
NC
5382 if (SvIsCOW_normal(nsv)) {
5383 /* We need to follow the pointers around the loop to make the
5384 previous SV point to sv, rather than nsv. */
5385 SV *next;
5386 SV *current = nsv;
5387 while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5388 assert(next);
5389 current = next;
3f7c398e 5390 assert(SvPVX_const(current) == SvPVX_const(nsv));
d3d0e6f1
NC
5391 }
5392 /* Make the SV before us point to the SV after us. */
5393 if (DEBUG_C_TEST) {
5394 PerlIO_printf(Perl_debug_log, "previous is\n");
5395 sv_dump(current);
a29f6d03
NC
5396 PerlIO_printf(Perl_debug_log,
5397 "move it from 0x%"UVxf" to 0x%"UVxf"\n",
d3d0e6f1
NC
5398 (UV) SV_COW_NEXT_SV(current), (UV) sv);
5399 }
a29f6d03 5400 SV_COW_NEXT_SV_SET(current, sv);
d3d0e6f1
NC
5401 }
5402#endif
79072805 5403 SvREFCNT(sv) = refcnt;
1edc1566 5404 SvFLAGS(nsv) |= SVTYPEMASK; /* Mark as freed */
39cf41c2 5405 SvREFCNT(nsv) = 0;
463ee0b2 5406 del_SV(nsv);
79072805
LW
5407}
5408
c461cf8f
JH
5409/*
5410=for apidoc sv_clear
5411
645c22ef
DM
5412Clear an SV: call any destructors, free up any memory used by the body,
5413and free the body itself. The SV's head is I<not> freed, although
5414its type is set to all 1's so that it won't inadvertently be assumed
5415to be live during global destruction etc.
5416This function should only be called when REFCNT is zero. Most of the time
5417you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5418instead.
c461cf8f
JH
5419
5420=cut
5421*/
5422
79072805 5423void
864dbfa3 5424Perl_sv_clear(pTHX_ register SV *sv)
79072805 5425{
27da23d5 5426 dVAR;
ec12f114 5427 HV* stash;
79072805
LW
5428 assert(sv);
5429 assert(SvREFCNT(sv) == 0);
5430
ed6116ce 5431 if (SvOBJECT(sv)) {
3280af22 5432 if (PL_defstash) { /* Still have a symbol table? */
39644a26 5433 dSP;
d460ef45 5434 do {
b464bac0 5435 CV* destructor;
4e8e7886 5436 stash = SvSTASH(sv);
32251b26 5437 destructor = StashHANDLER(stash,DESTROY);
4e8e7886 5438 if (destructor) {
5cc433a6
AB
5439 SV* tmpref = newRV(sv);
5440 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
4e8e7886 5441 ENTER;
e788e7d3 5442 PUSHSTACKi(PERLSI_DESTROY);
4e8e7886
GS
5443 EXTEND(SP, 2);
5444 PUSHMARK(SP);
5cc433a6 5445 PUSHs(tmpref);
4e8e7886 5446 PUTBACK;
44389ee9 5447 call_sv((SV*)destructor, G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
7a5fa8a2
NIS
5448
5449
d3acc0f7 5450 POPSTACK;
3095d977 5451 SPAGAIN;
4e8e7886 5452 LEAVE;
5cc433a6
AB
5453 if(SvREFCNT(tmpref) < 2) {
5454 /* tmpref is not kept alive! */
5455 SvREFCNT(sv)--;
b162af07 5456 SvRV_set(tmpref, NULL);
5cc433a6
AB
5457 SvROK_off(tmpref);
5458 }
5459 SvREFCNT_dec(tmpref);
4e8e7886
GS
5460 }
5461 } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
8ebc5c01 5462
6f44e0a4
JP
5463
5464 if (SvREFCNT(sv)) {
5465 if (PL_in_clean_objs)
cea2e8a9 5466 Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
bfcb3514 5467 HvNAME_get(stash));
6f44e0a4
JP
5468 /* DESTROY gave object new lease on life */
5469 return;
5470 }
a0d0e21e 5471 }
4e8e7886 5472
a0d0e21e 5473 if (SvOBJECT(sv)) {
4e8e7886 5474 SvREFCNT_dec(SvSTASH(sv)); /* possibly of changed persuasion */
a0d0e21e
LW
5475 SvOBJECT_off(sv); /* Curse the object. */
5476 if (SvTYPE(sv) != SVt_PVIO)
3280af22 5477 --PL_sv_objcount; /* XXX Might want something more general */
a0d0e21e 5478 }
463ee0b2 5479 }
524189f1
JH
5480 if (SvTYPE(sv) >= SVt_PVMG) {
5481 if (SvMAGIC(sv))
5482 mg_free(sv);
bce8f412 5483 if (SvTYPE(sv) == SVt_PVMG && SvFLAGS(sv) & SVpad_TYPED)
524189f1
JH
5484 SvREFCNT_dec(SvSTASH(sv));
5485 }
ec12f114 5486 stash = NULL;
79072805 5487 switch (SvTYPE(sv)) {
8990e307 5488 case SVt_PVIO:
df0bd2f4
GS
5489 if (IoIFP(sv) &&
5490 IoIFP(sv) != PerlIO_stdin() &&
5f05dabc 5491 IoIFP(sv) != PerlIO_stdout() &&
5492 IoIFP(sv) != PerlIO_stderr())
93578b34 5493 {
f2b5be74 5494 io_close((IO*)sv, FALSE);
93578b34 5495 }
1d7c1841 5496 if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
1236053a 5497 PerlDir_close(IoDIRP(sv));
1d7c1841 5498 IoDIRP(sv) = (DIR*)NULL;
8990e307
LW
5499 Safefree(IoTOP_NAME(sv));
5500 Safefree(IoFMT_NAME(sv));
5501 Safefree(IoBOTTOM_NAME(sv));
a0d0e21e 5502 /* FALL THROUGH */
79072805 5503 case SVt_PVBM:
a0d0e21e 5504 goto freescalar;
79072805 5505 case SVt_PVCV:
748a9306 5506 case SVt_PVFM:
85e6fe83 5507 cv_undef((CV*)sv);
a0d0e21e 5508 goto freescalar;
79072805 5509 case SVt_PVHV:
85e6fe83 5510 hv_undef((HV*)sv);
a0d0e21e 5511 break;
79072805 5512 case SVt_PVAV:
85e6fe83 5513 av_undef((AV*)sv);
a0d0e21e 5514 break;
02270b4e 5515 case SVt_PVLV:
dd28f7bb
DM
5516 if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5517 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5518 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5519 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5520 }
5521 else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV** */
5522 SvREFCNT_dec(LvTARG(sv));
02270b4e 5523 goto freescalar;
a0d0e21e 5524 case SVt_PVGV:
1edc1566 5525 gp_free((GV*)sv);
a0d0e21e 5526 Safefree(GvNAME(sv));
ec12f114
JPC
5527 /* cannot decrease stash refcount yet, as we might recursively delete
5528 ourselves when the refcnt drops to zero. Delay SvREFCNT_dec
5529 of stash until current sv is completely gone.
5530 -- JohnPC, 27 Mar 1998 */
5531 stash = GvSTASH(sv);
a0d0e21e 5532 /* FALL THROUGH */
79072805 5533 case SVt_PVMG:
79072805
LW
5534 case SVt_PVNV:
5535 case SVt_PVIV:
a0d0e21e 5536 freescalar:
5228ca4e
NC
5537 /* Don't bother with SvOOK_off(sv); as we're only going to free it. */
5538 if (SvOOK(sv)) {
93524f2b 5539 SvPV_set(sv, SvPVX_mutable(sv) - SvIVX(sv));
5228ca4e
NC
5540 /* Don't even bother with turning off the OOK flag. */
5541 }
79072805
LW
5542 /* FALL THROUGH */
5543 case SVt_PV:
a0d0e21e 5544 case SVt_RV:
810b8aa5
GS
5545 if (SvROK(sv)) {
5546 if (SvWEAKREF(sv))
5547 sv_del_backref(sv);
5548 else
5549 SvREFCNT_dec(SvRV(sv));
5550 }
f8c7b90f 5551#ifdef PERL_OLD_COPY_ON_WRITE
3f7c398e 5552 else if (SvPVX_const(sv)) {
765f542d
NC
5553 if (SvIsCOW(sv)) {
5554 /* I believe I need to grab the global SV mutex here and
5555 then recheck the COW status. */
46187eeb
NC
5556 if (DEBUG_C_TEST) {
5557 PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
e419cbc5 5558 sv_dump(sv);
46187eeb 5559 }
bdd68bc3
NC
5560 sv_release_COW(sv, SvPVX_const(sv), SvLEN(sv),
5561 SV_COW_NEXT_SV(sv));
765f542d
NC
5562 /* And drop it here. */
5563 SvFAKE_off(sv);
5564 } else if (SvLEN(sv)) {
3f7c398e 5565 Safefree(SvPVX_const(sv));
765f542d
NC
5566 }
5567 }
5568#else
3f7c398e
SP
5569 else if (SvPVX_const(sv) && SvLEN(sv))
5570 Safefree(SvPVX_const(sv));
5571 else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
bdd68bc3 5572 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
1c846c1f
NIS
5573 SvFAKE_off(sv);
5574 }
765f542d 5575#endif
79072805 5576 break;
a0d0e21e 5577/*
79072805 5578 case SVt_NV:
79072805 5579 case SVt_IV:
79072805
LW
5580 case SVt_NULL:
5581 break;
a0d0e21e 5582*/
79072805
LW
5583 }
5584
5585 switch (SvTYPE(sv)) {
5586 case SVt_NULL:
5587 break;
79072805 5588 case SVt_IV:
79072805
LW
5589 break;
5590 case SVt_NV:
5591 del_XNV(SvANY(sv));
5592 break;
ed6116ce 5593 case SVt_RV:
ed6116ce 5594 break;
79072805
LW
5595 case SVt_PV:
5596 del_XPV(SvANY(sv));
5597 break;
5598 case SVt_PVIV:
5599 del_XPVIV(SvANY(sv));
5600 break;
5601 case SVt_PVNV:
5602 del_XPVNV(SvANY(sv));
5603 break;
5604 case SVt_PVMG:
5605 del_XPVMG(SvANY(sv));
5606 break;
5607 case SVt_PVLV:
5608 del_XPVLV(SvANY(sv));
5609 break;
5610 case SVt_PVAV:
5611 del_XPVAV(SvANY(sv));
5612 break;
5613 case SVt_PVHV:
5614 del_XPVHV(SvANY(sv));
5615 break;
5616 case SVt_PVCV:
5617 del_XPVCV(SvANY(sv));
5618 break;
5619 case SVt_PVGV:
5620 del_XPVGV(SvANY(sv));
ec12f114
JPC
5621 /* code duplication for increased performance. */
5622 SvFLAGS(sv) &= SVf_BREAK;
5623 SvFLAGS(sv) |= SVTYPEMASK;
5624 /* decrease refcount of the stash that owns this GV, if any */
5625 if (stash)
5626 SvREFCNT_dec(stash);
5627 return; /* not break, SvFLAGS reset already happened */
79072805
LW
5628 case SVt_PVBM:
5629 del_XPVBM(SvANY(sv));
5630 break;
5631 case SVt_PVFM:
5632 del_XPVFM(SvANY(sv));
5633 break;
8990e307
LW
5634 case SVt_PVIO:
5635 del_XPVIO(SvANY(sv));
5636 break;
79072805 5637 }
a0d0e21e 5638 SvFLAGS(sv) &= SVf_BREAK;
8990e307 5639 SvFLAGS(sv) |= SVTYPEMASK;
79072805
LW
5640}
5641
645c22ef
DM
5642/*
5643=for apidoc sv_newref
5644
5645Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5646instead.
5647
5648=cut
5649*/
5650
79072805 5651SV *
864dbfa3 5652Perl_sv_newref(pTHX_ SV *sv)
79072805 5653{
463ee0b2 5654 if (sv)
4db098f4 5655 (SvREFCNT(sv))++;
79072805
LW
5656 return sv;
5657}
5658
c461cf8f
JH
5659/*
5660=for apidoc sv_free
5661
645c22ef
DM
5662Decrement an SV's reference count, and if it drops to zero, call
5663C<sv_clear> to invoke destructors and free up any memory used by
5664the body; finally, deallocate the SV's head itself.
5665Normally called via a wrapper macro C<SvREFCNT_dec>.
c461cf8f
JH
5666
5667=cut
5668*/
5669
79072805 5670void
864dbfa3 5671Perl_sv_free(pTHX_ SV *sv)
79072805 5672{
27da23d5 5673 dVAR;
79072805
LW
5674 if (!sv)
5675 return;
a0d0e21e
LW
5676 if (SvREFCNT(sv) == 0) {
5677 if (SvFLAGS(sv) & SVf_BREAK)
645c22ef
DM
5678 /* this SV's refcnt has been artificially decremented to
5679 * trigger cleanup */
a0d0e21e 5680 return;
3280af22 5681 if (PL_in_clean_all) /* All is fair */
1edc1566 5682 return;
d689ffdd
JP
5683 if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5684 /* make sure SvREFCNT(sv)==0 happens very seldom */
5685 SvREFCNT(sv) = (~(U32)0)/2;
5686 return;
5687 }
0453d815 5688 if (ckWARN_d(WARN_INTERNAL))
d5dede04 5689 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
472d47bc
SB
5690 "Attempt to free unreferenced scalar: SV 0x%"UVxf
5691 pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
79072805
LW
5692 return;
5693 }
4db098f4 5694 if (--(SvREFCNT(sv)) > 0)
8990e307 5695 return;
8c4d3c90
NC
5696 Perl_sv_free2(aTHX_ sv);
5697}
5698
5699void
5700Perl_sv_free2(pTHX_ SV *sv)
5701{
27da23d5 5702 dVAR;
463ee0b2
LW
5703#ifdef DEBUGGING
5704 if (SvTEMP(sv)) {
0453d815 5705 if (ckWARN_d(WARN_DEBUGGING))
9014280d 5706 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
472d47bc
SB
5707 "Attempt to free temp prematurely: SV 0x%"UVxf
5708 pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
79072805 5709 return;
79072805 5710 }
463ee0b2 5711#endif
d689ffdd
JP
5712 if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5713 /* make sure SvREFCNT(sv)==0 happens very seldom */
5714 SvREFCNT(sv) = (~(U32)0)/2;
5715 return;
5716 }
79072805 5717 sv_clear(sv);
477f5d66
CS
5718 if (! SvREFCNT(sv))
5719 del_SV(sv);
79072805
LW
5720}
5721
954c1994
GS
5722/*
5723=for apidoc sv_len
5724
645c22ef
DM
5725Returns the length of the string in the SV. Handles magic and type
5726coercion. See also C<SvCUR>, which gives raw access to the xpv_cur slot.
954c1994
GS
5727
5728=cut
5729*/
5730
79072805 5731STRLEN
864dbfa3 5732Perl_sv_len(pTHX_ register SV *sv)
79072805 5733{
463ee0b2 5734 STRLEN len;
79072805
LW
5735
5736 if (!sv)
5737 return 0;
5738
8990e307 5739 if (SvGMAGICAL(sv))
565764a8 5740 len = mg_length(sv);
8990e307 5741 else
4d84ee25 5742 (void)SvPV_const(sv, len);
463ee0b2 5743 return len;
79072805
LW
5744}
5745
c461cf8f
JH
5746/*
5747=for apidoc sv_len_utf8
5748
5749Returns the number of characters in the string in an SV, counting wide
1e54db1a 5750UTF-8 bytes as a single character. Handles magic and type coercion.
c461cf8f
JH
5751
5752=cut
5753*/
5754
7e8c5dac
HS
5755/*
5756 * The length is cached in PERL_UTF8_magic, in the mg_len field. Also the
5757 * mg_ptr is used, by sv_pos_u2b(), see the comments of S_utf8_mg_pos_init().
5758 * (Note that the mg_len is not the length of the mg_ptr field.)
7a5fa8a2 5759 *
7e8c5dac
HS
5760 */
5761
a0ed51b3 5762STRLEN
864dbfa3 5763Perl_sv_len_utf8(pTHX_ register SV *sv)
a0ed51b3 5764{
a0ed51b3
LW
5765 if (!sv)
5766 return 0;
5767
a0ed51b3 5768 if (SvGMAGICAL(sv))
b76347f2 5769 return mg_length(sv);
a0ed51b3 5770 else
b76347f2 5771 {
7e8c5dac 5772 STRLEN len, ulen;
e62f0680 5773 const U8 *s = (U8*)SvPV_const(sv, len);
7e8c5dac
HS
5774 MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : 0;
5775
e23c8137 5776 if (mg && mg->mg_len != -1 && (mg->mg_len > 0 || len == 0)) {
7e8c5dac 5777 ulen = mg->mg_len;
e23c8137
JH
5778#ifdef PERL_UTF8_CACHE_ASSERT
5779 assert(ulen == Perl_utf8_length(aTHX_ s, s + len));
5780#endif
5781 }
7e8c5dac
HS
5782 else {
5783 ulen = Perl_utf8_length(aTHX_ s, s + len);
5784 if (!mg && !SvREADONLY(sv)) {
5785 sv_magic(sv, 0, PERL_MAGIC_utf8, 0, 0);
5786 mg = mg_find(sv, PERL_MAGIC_utf8);
5787 assert(mg);
5788 }
5789 if (mg)
5790 mg->mg_len = ulen;
5791 }
5792 return ulen;
5793 }
5794}
5795
5796/* S_utf8_mg_pos_init() is used to initialize the mg_ptr field of
5797 * a PERL_UTF8_magic. The mg_ptr is used to store the mapping
5798 * between UTF-8 and byte offsets. There are two (substr offset and substr
5799 * length, the i offset, PERL_MAGIC_UTF8_CACHESIZE) times two (UTF-8 offset
5800 * and byte offset) cache positions.
5801 *
5802 * The mg_len field is used by sv_len_utf8(), see its comments.
5803 * Note that the mg_len is not the length of the mg_ptr field.
5804 *
5805 */
5806STATIC bool
245d4a47
NC
5807S_utf8_mg_pos_init(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i,
5808 I32 offsetp, const U8 *s, const U8 *start)
7e8c5dac 5809{
7a5fa8a2 5810 bool found = FALSE;
7e8c5dac
HS
5811
5812 if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
8f78557a 5813 if (!*mgp)
27da23d5 5814 *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0, 0);
7e8c5dac 5815 assert(*mgp);
b76347f2 5816
7e8c5dac
HS
5817 if ((*mgp)->mg_ptr)
5818 *cachep = (STRLEN *) (*mgp)->mg_ptr;
5819 else {
5820 Newz(0, *cachep, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
5821 (*mgp)->mg_ptr = (char *) *cachep;
5822 }
5823 assert(*cachep);
5824
a3b680e6 5825 (*cachep)[i] = offsetp;
7e8c5dac
HS
5826 (*cachep)[i+1] = s - start;
5827 found = TRUE;
a0ed51b3 5828 }
7e8c5dac
HS
5829
5830 return found;
a0ed51b3
LW
5831}
5832
645c22ef 5833/*
7e8c5dac
HS
5834 * S_utf8_mg_pos() is used to query and update mg_ptr field of
5835 * a PERL_UTF8_magic. The mg_ptr is used to store the mapping
5836 * between UTF-8 and byte offsets. See also the comments of
5837 * S_utf8_mg_pos_init().
5838 *
5839 */
5840STATIC bool
245d4a47 5841S_utf8_mg_pos(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 *offsetp, I32 uoff, const U8 **sp, const U8 *start, const U8 *send)
7e8c5dac
HS
5842{
5843 bool found = FALSE;
5844
5845 if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
5846 if (!*mgp)
5847 *mgp = mg_find(sv, PERL_MAGIC_utf8);
5848 if (*mgp && (*mgp)->mg_ptr) {
5849 *cachep = (STRLEN *) (*mgp)->mg_ptr;
e23c8137 5850 ASSERT_UTF8_CACHE(*cachep);
667208dd 5851 if ((*cachep)[i] == (STRLEN)uoff) /* An exact match. */
7a5fa8a2 5852 found = TRUE;
7e8c5dac
HS
5853 else { /* We will skip to the right spot. */
5854 STRLEN forw = 0;
5855 STRLEN backw = 0;
a3b680e6 5856 const U8* p = NULL;
7e8c5dac
HS
5857
5858 /* The assumption is that going backward is half
5859 * the speed of going forward (that's where the
5860 * 2 * backw in the below comes from). (The real
5861 * figure of course depends on the UTF-8 data.) */
5862
667208dd 5863 if ((*cachep)[i] > (STRLEN)uoff) {
7e8c5dac 5864 forw = uoff;
667208dd 5865 backw = (*cachep)[i] - (STRLEN)uoff;
7e8c5dac
HS
5866
5867 if (forw < 2 * backw)
5868 p = start;
5869 else
5870 p = start + (*cachep)[i+1];
5871 }
5872 /* Try this only for the substr offset (i == 0),
5873 * not for the substr length (i == 2). */
5874 else if (i == 0) { /* (*cachep)[i] < uoff */
a3b680e6 5875 const STRLEN ulen = sv_len_utf8(sv);
7e8c5dac 5876
667208dd
JH
5877 if ((STRLEN)uoff < ulen) {
5878 forw = (STRLEN)uoff - (*cachep)[i];
5879 backw = ulen - (STRLEN)uoff;
7e8c5dac
HS
5880
5881 if (forw < 2 * backw)
5882 p = start + (*cachep)[i+1];
5883 else
5884 p = send;
5885 }
5886
5887 /* If the string is not long enough for uoff,
5888 * we could extend it, but not at this low a level. */
5889 }
5890
5891 if (p) {
5892 if (forw < 2 * backw) {
5893 while (forw--)
5894 p += UTF8SKIP(p);
5895 }
5896 else {
5897 while (backw--) {
5898 p--;
5899 while (UTF8_IS_CONTINUATION(*p))
5900 p--;
5901 }
5902 }
5903
5904 /* Update the cache. */
667208dd 5905 (*cachep)[i] = (STRLEN)uoff;
7e8c5dac 5906 (*cachep)[i+1] = p - start;
8f78557a
AE
5907
5908 /* Drop the stale "length" cache */
5909 if (i == 0) {
5910 (*cachep)[2] = 0;
5911 (*cachep)[3] = 0;
5912 }
7a5fa8a2 5913
7e8c5dac
HS
5914 found = TRUE;
5915 }
5916 }
5917 if (found) { /* Setup the return values. */
5918 *offsetp = (*cachep)[i+1];
5919 *sp = start + *offsetp;
5920 if (*sp >= send) {
5921 *sp = send;
5922 *offsetp = send - start;
5923 }
5924 else if (*sp < start) {
5925 *sp = start;
5926 *offsetp = 0;
5927 }
5928 }
5929 }
e23c8137
JH
5930#ifdef PERL_UTF8_CACHE_ASSERT
5931 if (found) {
5932 U8 *s = start;
5933 I32 n = uoff;
5934
5935 while (n-- && s < send)
5936 s += UTF8SKIP(s);
5937
5938 if (i == 0) {
5939 assert(*offsetp == s - start);
5940 assert((*cachep)[0] == (STRLEN)uoff);
5941 assert((*cachep)[1] == *offsetp);
5942 }
5943 ASSERT_UTF8_CACHE(*cachep);
5944 }
5945#endif
7e8c5dac 5946 }
e23c8137 5947
7e8c5dac
HS
5948 return found;
5949}
7a5fa8a2 5950
7e8c5dac 5951/*
645c22ef
DM
5952=for apidoc sv_pos_u2b
5953
1e54db1a 5954Converts the value pointed to by offsetp from a count of UTF-8 chars from
645c22ef
DM
5955the start of the string, to a count of the equivalent number of bytes; if
5956lenp is non-zero, it does the same to lenp, but this time starting from
5957the offset, rather than from the start of the string. Handles magic and
5958type coercion.
5959
5960=cut
5961*/
5962
7e8c5dac
HS
5963/*
5964 * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
5965 * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
5966 * byte offsets. See also the comments of S_utf8_mg_pos().
5967 *
5968 */
5969
a0ed51b3 5970void
864dbfa3 5971Perl_sv_pos_u2b(pTHX_ register SV *sv, I32* offsetp, I32* lenp)
a0ed51b3 5972{
245d4a47 5973 const U8 *start;
a0ed51b3
LW
5974 STRLEN len;
5975
5976 if (!sv)
5977 return;
5978
245d4a47 5979 start = (U8*)SvPV_const(sv, len);
7e8c5dac 5980 if (len) {
b464bac0
AL
5981 STRLEN boffset = 0;
5982 STRLEN *cache = 0;
245d4a47
NC
5983 const U8 *s = start;
5984 I32 uoffset = *offsetp;
5985 const U8 *send = s + len;
5986 MAGIC *mg = 0;
5987 bool found = FALSE;
7e8c5dac 5988
bdf77a2a 5989 if (utf8_mg_pos(sv, &mg, &cache, 0, offsetp, *offsetp, &s, start, send))
7e8c5dac
HS
5990 found = TRUE;
5991 if (!found && uoffset > 0) {
5992 while (s < send && uoffset--)
5993 s += UTF8SKIP(s);
5994 if (s >= send)
5995 s = send;
a3b680e6 5996 if (utf8_mg_pos_init(sv, &mg, &cache, 0, *offsetp, s, start))
7e8c5dac
HS
5997 boffset = cache[1];
5998 *offsetp = s - start;
5999 }
6000 if (lenp) {
6001 found = FALSE;
6002 start = s;
ec062429 6003 if (utf8_mg_pos(sv, &mg, &cache, 2, lenp, *lenp, &s, start, send)) {
7e8c5dac
HS
6004 *lenp -= boffset;
6005 found = TRUE;
6006 }
6007 if (!found && *lenp > 0) {
6008 I32 ulen = *lenp;
6009 if (ulen > 0)
6010 while (s < send && ulen--)
6011 s += UTF8SKIP(s);
6012 if (s >= send)
6013 s = send;
a3b680e6 6014 utf8_mg_pos_init(sv, &mg, &cache, 2, *lenp, s, start);
7e8c5dac
HS
6015 }
6016 *lenp = s - start;
6017 }
e23c8137 6018 ASSERT_UTF8_CACHE(cache);
7e8c5dac
HS
6019 }
6020 else {
6021 *offsetp = 0;
6022 if (lenp)
6023 *lenp = 0;
a0ed51b3 6024 }
e23c8137 6025
a0ed51b3
LW
6026 return;
6027}
6028
645c22ef
DM
6029/*
6030=for apidoc sv_pos_b2u
6031
6032Converts the value pointed to by offsetp from a count of bytes from the
1e54db1a 6033start of the string, to a count of the equivalent number of UTF-8 chars.
645c22ef
DM
6034Handles magic and type coercion.
6035
6036=cut
6037*/
6038
7e8c5dac
HS
6039/*
6040 * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6041 * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
6042 * byte offsets. See also the comments of S_utf8_mg_pos().
6043 *
6044 */
6045
a0ed51b3 6046void
7e8c5dac 6047Perl_sv_pos_b2u(pTHX_ register SV* sv, I32* offsetp)
a0ed51b3 6048{
83003860 6049 const U8* s;
a0ed51b3
LW
6050 STRLEN len;
6051
6052 if (!sv)
6053 return;
6054
83003860 6055 s = (const U8*)SvPV_const(sv, len);
eb160463 6056 if ((I32)len < *offsetp)
a0dbb045 6057 Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
7e8c5dac 6058 else {
83003860 6059 const U8* send = s + *offsetp;
7e8c5dac
HS
6060 MAGIC* mg = NULL;
6061 STRLEN *cache = NULL;
6062
6063 len = 0;
6064
6065 if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
6066 mg = mg_find(sv, PERL_MAGIC_utf8);
6067 if (mg && mg->mg_ptr) {
6068 cache = (STRLEN *) mg->mg_ptr;
c5661c80 6069 if (cache[1] == (STRLEN)*offsetp) {
7e8c5dac
HS
6070 /* An exact match. */
6071 *offsetp = cache[0];
6072
6073 return;
6074 }
c5661c80 6075 else if (cache[1] < (STRLEN)*offsetp) {
7e8c5dac
HS
6076 /* We already know part of the way. */
6077 len = cache[0];
6078 s += cache[1];
7a5fa8a2 6079 /* Let the below loop do the rest. */
7e8c5dac
HS
6080 }
6081 else { /* cache[1] > *offsetp */
6082 /* We already know all of the way, now we may
6083 * be able to walk back. The same assumption
6084 * is made as in S_utf8_mg_pos(), namely that
6085 * walking backward is twice slower than
6086 * walking forward. */
6087 STRLEN forw = *offsetp;
6088 STRLEN backw = cache[1] - *offsetp;
6089
6090 if (!(forw < 2 * backw)) {
83003860 6091 const U8 *p = s + cache[1];
7e8c5dac 6092 STRLEN ubackw = 0;
7a5fa8a2 6093
a5b510f2
AE
6094 cache[1] -= backw;
6095
7e8c5dac
HS
6096 while (backw--) {
6097 p--;
0aeb64d0 6098 while (UTF8_IS_CONTINUATION(*p)) {
7e8c5dac 6099 p--;
0aeb64d0
JH
6100 backw--;
6101 }
7e8c5dac
HS
6102 ubackw++;
6103 }
6104
6105 cache[0] -= ubackw;
0aeb64d0 6106 *offsetp = cache[0];
a67d7df9
TS
6107
6108 /* Drop the stale "length" cache */
6109 cache[2] = 0;
6110 cache[3] = 0;
6111
0aeb64d0 6112 return;
7e8c5dac
HS
6113 }
6114 }
6115 }
e23c8137 6116 ASSERT_UTF8_CACHE(cache);
a0dbb045 6117 }
7e8c5dac
HS
6118
6119 while (s < send) {
6120 STRLEN n = 1;
6121
6122 /* Call utf8n_to_uvchr() to validate the sequence
6123 * (unless a simple non-UTF character) */
6124 if (!UTF8_IS_INVARIANT(*s))
6125 utf8n_to_uvchr(s, UTF8SKIP(s), &n, 0);
6126 if (n > 0) {
6127 s += n;
6128 len++;
6129 }
6130 else
6131 break;
6132 }
6133
6134 if (!SvREADONLY(sv)) {
6135 if (!mg) {
6136 sv_magic(sv, 0, PERL_MAGIC_utf8, 0, 0);
6137 mg = mg_find(sv, PERL_MAGIC_utf8);
6138 }
6139 assert(mg);
6140
6141 if (!mg->mg_ptr) {
979acdb5 6142 Newz(0, cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
7e8c5dac
HS
6143 mg->mg_ptr = (char *) cache;
6144 }
6145 assert(cache);
6146
6147 cache[0] = len;
6148 cache[1] = *offsetp;
a67d7df9
TS
6149 /* Drop the stale "length" cache */
6150 cache[2] = 0;
6151 cache[3] = 0;
7e8c5dac
HS
6152 }
6153
6154 *offsetp = len;
a0ed51b3 6155 }
a0ed51b3
LW
6156 return;
6157}
6158
954c1994
GS
6159/*
6160=for apidoc sv_eq
6161
6162Returns a boolean indicating whether the strings in the two SVs are
645c22ef
DM
6163identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6164coerce its args to strings if necessary.
954c1994
GS
6165
6166=cut
6167*/
6168
79072805 6169I32
e01b9e88 6170Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
79072805 6171{
e1ec3a88 6172 const char *pv1;
463ee0b2 6173 STRLEN cur1;
e1ec3a88 6174 const char *pv2;
463ee0b2 6175 STRLEN cur2;
e01b9e88 6176 I32 eq = 0;
553e1bcc
AT
6177 char *tpv = Nullch;
6178 SV* svrecode = Nullsv;
79072805 6179
e01b9e88 6180 if (!sv1) {
79072805
LW
6181 pv1 = "";
6182 cur1 = 0;
6183 }
463ee0b2 6184 else
4d84ee25 6185 pv1 = SvPV_const(sv1, cur1);
79072805 6186
e01b9e88
SC
6187 if (!sv2){
6188 pv2 = "";
6189 cur2 = 0;
92d29cee 6190 }
e01b9e88 6191 else
4d84ee25 6192 pv2 = SvPV_const(sv2, cur2);
79072805 6193
cf48d248 6194 if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
799ef3cb
JH
6195 /* Differing utf8ness.
6196 * Do not UTF8size the comparands as a side-effect. */
6197 if (PL_encoding) {
6198 if (SvUTF8(sv1)) {
553e1bcc
AT
6199 svrecode = newSVpvn(pv2, cur2);
6200 sv_recode_to_utf8(svrecode, PL_encoding);
93524f2b 6201 pv2 = SvPV_const(svrecode, cur2);
799ef3cb
JH
6202 }
6203 else {
553e1bcc
AT
6204 svrecode = newSVpvn(pv1, cur1);
6205 sv_recode_to_utf8(svrecode, PL_encoding);
93524f2b 6206 pv1 = SvPV_const(svrecode, cur1);
799ef3cb
JH
6207 }
6208 /* Now both are in UTF-8. */
0a1bd7ac
DM
6209 if (cur1 != cur2) {
6210 SvREFCNT_dec(svrecode);
799ef3cb 6211 return FALSE;
0a1bd7ac 6212 }
799ef3cb
JH
6213 }
6214 else {
6215 bool is_utf8 = TRUE;
6216
6217 if (SvUTF8(sv1)) {
6218 /* sv1 is the UTF-8 one,
6219 * if is equal it must be downgrade-able */
e1ec3a88 6220 char *pv = (char*)bytes_from_utf8((const U8*)pv1,
799ef3cb
JH
6221 &cur1, &is_utf8);
6222 if (pv != pv1)
553e1bcc 6223 pv1 = tpv = pv;
799ef3cb
JH
6224 }
6225 else {
6226 /* sv2 is the UTF-8 one,
6227 * if is equal it must be downgrade-able */
e1ec3a88 6228 char *pv = (char *)bytes_from_utf8((const U8*)pv2,
799ef3cb
JH
6229 &cur2, &is_utf8);
6230 if (pv != pv2)
553e1bcc 6231 pv2 = tpv = pv;
799ef3cb
JH
6232 }
6233 if (is_utf8) {
6234 /* Downgrade not possible - cannot be eq */
bf694877 6235 assert (tpv == 0);
799ef3cb
JH
6236 return FALSE;
6237 }
6238 }
cf48d248
JH
6239 }
6240
6241 if (cur1 == cur2)
765f542d 6242 eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
e01b9e88 6243
553e1bcc
AT
6244 if (svrecode)
6245 SvREFCNT_dec(svrecode);
799ef3cb 6246
553e1bcc
AT
6247 if (tpv)
6248 Safefree(tpv);
cf48d248 6249
e01b9e88 6250 return eq;
79072805
LW
6251}
6252
954c1994
GS
6253/*
6254=for apidoc sv_cmp
6255
6256Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
6257string in C<sv1> is less than, equal to, or greater than the string in
645c22ef
DM
6258C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6259coerce its args to strings if necessary. See also C<sv_cmp_locale>.
954c1994
GS
6260
6261=cut
6262*/
6263
79072805 6264I32
e01b9e88 6265Perl_sv_cmp(pTHX_ register SV *sv1, register SV *sv2)
79072805 6266{
560a288e 6267 STRLEN cur1, cur2;
e1ec3a88
AL
6268 const char *pv1, *pv2;
6269 char *tpv = Nullch;
cf48d248 6270 I32 cmp;
553e1bcc 6271 SV *svrecode = Nullsv;
560a288e 6272
e01b9e88
SC
6273 if (!sv1) {
6274 pv1 = "";
560a288e
GS
6275 cur1 = 0;
6276 }
e01b9e88 6277 else
4d84ee25 6278 pv1 = SvPV_const(sv1, cur1);
560a288e 6279
553e1bcc 6280 if (!sv2) {
e01b9e88 6281 pv2 = "";
560a288e
GS
6282 cur2 = 0;
6283 }
e01b9e88 6284 else
4d84ee25 6285 pv2 = SvPV_const(sv2, cur2);
79072805 6286
cf48d248 6287 if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
799ef3cb
JH
6288 /* Differing utf8ness.
6289 * Do not UTF8size the comparands as a side-effect. */
cf48d248 6290 if (SvUTF8(sv1)) {
799ef3cb 6291 if (PL_encoding) {
553e1bcc
AT
6292 svrecode = newSVpvn(pv2, cur2);
6293 sv_recode_to_utf8(svrecode, PL_encoding);
93524f2b 6294 pv2 = SvPV_const(svrecode, cur2);
799ef3cb
JH
6295 }
6296 else {
e1ec3a88 6297 pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
799ef3cb 6298 }
cf48d248
JH
6299 }
6300 else {
799ef3cb 6301 if (PL_encoding) {
553e1bcc
AT
6302 svrecode = newSVpvn(pv1, cur1);
6303 sv_recode_to_utf8(svrecode, PL_encoding);
93524f2b 6304 pv1 = SvPV_const(svrecode, cur1);
799ef3cb
JH
6305 }
6306 else {
e1ec3a88 6307 pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
799ef3cb 6308 }
cf48d248
JH
6309 }
6310 }
6311
e01b9e88 6312 if (!cur1) {
cf48d248 6313 cmp = cur2 ? -1 : 0;
e01b9e88 6314 } else if (!cur2) {
cf48d248
JH
6315 cmp = 1;
6316 } else {
e1ec3a88 6317 const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
e01b9e88
SC
6318
6319 if (retval) {
cf48d248 6320 cmp = retval < 0 ? -1 : 1;
e01b9e88 6321 } else if (cur1 == cur2) {
cf48d248
JH
6322 cmp = 0;
6323 } else {
6324 cmp = cur1 < cur2 ? -1 : 1;
e01b9e88 6325 }
cf48d248 6326 }
16660edb 6327
553e1bcc
AT
6328 if (svrecode)
6329 SvREFCNT_dec(svrecode);
799ef3cb 6330
553e1bcc
AT
6331 if (tpv)
6332 Safefree(tpv);
cf48d248
JH
6333
6334 return cmp;
bbce6d69 6335}
16660edb 6336
c461cf8f
JH
6337/*
6338=for apidoc sv_cmp_locale
6339
645c22ef
DM
6340Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
6341'use bytes' aware, handles get magic, and will coerce its args to strings
6342if necessary. See also C<sv_cmp_locale>. See also C<sv_cmp>.
c461cf8f
JH
6343
6344=cut
6345*/
6346
bbce6d69 6347I32
864dbfa3 6348Perl_sv_cmp_locale(pTHX_ register SV *sv1, register SV *sv2)
bbce6d69 6349{
36477c24 6350#ifdef USE_LOCALE_COLLATE
16660edb 6351
bbce6d69 6352 char *pv1, *pv2;
6353 STRLEN len1, len2;
6354 I32 retval;
16660edb 6355
3280af22 6356 if (PL_collation_standard)
bbce6d69 6357 goto raw_compare;
16660edb 6358
bbce6d69 6359 len1 = 0;
8ac85365 6360 pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
bbce6d69 6361 len2 = 0;
8ac85365 6362 pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
16660edb 6363
bbce6d69 6364 if (!pv1 || !len1) {
6365 if (pv2 && len2)
6366 return -1;
6367 else
6368 goto raw_compare;
6369 }
6370 else {
6371 if (!pv2 || !len2)
6372 return 1;
6373 }
16660edb 6374
bbce6d69 6375 retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
16660edb 6376
bbce6d69 6377 if (retval)
16660edb 6378 return retval < 0 ? -1 : 1;
6379
bbce6d69 6380 /*
6381 * When the result of collation is equality, that doesn't mean
6382 * that there are no differences -- some locales exclude some
6383 * characters from consideration. So to avoid false equalities,
6384 * we use the raw string as a tiebreaker.
6385 */
16660edb 6386
bbce6d69 6387 raw_compare:
6388 /* FALL THROUGH */
16660edb 6389
36477c24 6390#endif /* USE_LOCALE_COLLATE */
16660edb 6391
bbce6d69 6392 return sv_cmp(sv1, sv2);
6393}
79072805 6394
645c22ef 6395
36477c24 6396#ifdef USE_LOCALE_COLLATE
645c22ef 6397
7a4c00b4 6398/*
645c22ef
DM
6399=for apidoc sv_collxfrm
6400
6401Add Collate Transform magic to an SV if it doesn't already have it.
6402
6403Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
6404scalar data of the variable, but transformed to such a format that a normal
6405memory comparison can be used to compare the data according to the locale
6406settings.
6407
6408=cut
6409*/
6410
bbce6d69 6411char *
864dbfa3 6412Perl_sv_collxfrm(pTHX_ SV *sv, STRLEN *nxp)
bbce6d69 6413{
7a4c00b4 6414 MAGIC *mg;
16660edb 6415
14befaf4 6416 mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
3280af22 6417 if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
93524f2b
NC
6418 const char *s;
6419 char *xf;
bbce6d69 6420 STRLEN len, xlen;
6421
7a4c00b4 6422 if (mg)
6423 Safefree(mg->mg_ptr);
93524f2b 6424 s = SvPV_const(sv, len);
bbce6d69 6425 if ((xf = mem_collxfrm(s, len, &xlen))) {
ff0cee69 6426 if (SvREADONLY(sv)) {
6427 SAVEFREEPV(xf);
6428 *nxp = xlen;
3280af22 6429 return xf + sizeof(PL_collation_ix);
ff0cee69 6430 }
7a4c00b4 6431 if (! mg) {
14befaf4
DM
6432 sv_magic(sv, 0, PERL_MAGIC_collxfrm, 0, 0);
6433 mg = mg_find(sv, PERL_MAGIC_collxfrm);
7a4c00b4 6434 assert(mg);
bbce6d69 6435 }
7a4c00b4 6436 mg->mg_ptr = xf;
565764a8 6437 mg->mg_len = xlen;
7a4c00b4 6438 }
6439 else {
ff0cee69 6440 if (mg) {
6441 mg->mg_ptr = NULL;
565764a8 6442 mg->mg_len = -1;
ff0cee69 6443 }
bbce6d69 6444 }
6445 }
7a4c00b4 6446 if (mg && mg->mg_ptr) {
565764a8 6447 *nxp = mg->mg_len;
3280af22 6448 return mg->mg_ptr + sizeof(PL_collation_ix);
bbce6d69 6449 }
6450 else {
6451 *nxp = 0;
6452 return NULL;
16660edb 6453 }
79072805
LW
6454}
6455
36477c24 6456#endif /* USE_LOCALE_COLLATE */
bbce6d69 6457
c461cf8f
JH
6458/*
6459=for apidoc sv_gets
6460
6461Get a line from the filehandle and store it into the SV, optionally
6462appending to the currently-stored string.
6463
6464=cut
6465*/
6466
79072805 6467char *
864dbfa3 6468Perl_sv_gets(pTHX_ register SV *sv, register PerlIO *fp, I32 append)
79072805 6469{
e1ec3a88 6470 const char *rsptr;
c07a80fd 6471 STRLEN rslen;
6472 register STDCHAR rslast;
6473 register STDCHAR *bp;
6474 register I32 cnt;
9c5ffd7c 6475 I32 i = 0;
8bfdd7d9 6476 I32 rspara = 0;
e311fd51 6477 I32 recsize;
c07a80fd 6478
bc44a8a2
NC
6479 if (SvTHINKFIRST(sv))
6480 sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
765f542d
NC
6481 /* XXX. If you make this PVIV, then copy on write can copy scalars read
6482 from <>.
6483 However, perlbench says it's slower, because the existing swipe code
6484 is faster than copy on write.
6485 Swings and roundabouts. */
862a34c6 6486 SvUPGRADE(sv, SVt_PV);
99491443 6487
ff68c719 6488 SvSCREAM_off(sv);
efd8b2ba
AE
6489
6490 if (append) {
6491 if (PerlIO_isutf8(fp)) {
6492 if (!SvUTF8(sv)) {
6493 sv_utf8_upgrade_nomg(sv);
6494 sv_pos_u2b(sv,&append,0);
6495 }
6496 } else if (SvUTF8(sv)) {
6497 SV *tsv = NEWSV(0,0);
6498 sv_gets(tsv, fp, 0);
6499 sv_utf8_upgrade_nomg(tsv);
6500 SvCUR_set(sv,append);
6501 sv_catsv(sv,tsv);
6502 sv_free(tsv);
6503 goto return_string_or_null;
6504 }
6505 }
6506
6507 SvPOK_only(sv);
6508 if (PerlIO_isutf8(fp))
6509 SvUTF8_on(sv);
c07a80fd 6510
923e4eb5 6511 if (IN_PERL_COMPILETIME) {
8bfdd7d9
HS
6512 /* we always read code in line mode */
6513 rsptr = "\n";
6514 rslen = 1;
6515 }
6516 else if (RsSNARF(PL_rs)) {
7a5fa8a2
NIS
6517 /* If it is a regular disk file use size from stat() as estimate
6518 of amount we are going to read - may result in malloc-ing
6519 more memory than we realy need if layers bellow reduce
e468d35b
NIS
6520 size we read (e.g. CRLF or a gzip layer)
6521 */
e311fd51 6522 Stat_t st;
e468d35b 6523 if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode)) {
f54cb97a 6524 const Off_t offset = PerlIO_tell(fp);
58f1856e 6525 if (offset != (Off_t) -1 && st.st_size + append > offset) {
e468d35b
NIS
6526 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
6527 }
6528 }
c07a80fd 6529 rsptr = NULL;
6530 rslen = 0;
6531 }
3280af22 6532 else if (RsRECORD(PL_rs)) {
e311fd51 6533 I32 bytesread;
5b2b9c68
HM
6534 char *buffer;
6535
6536 /* Grab the size of the record we're getting */
3280af22 6537 recsize = SvIV(SvRV(PL_rs));
e311fd51 6538 buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
5b2b9c68
HM
6539 /* Go yank in */
6540#ifdef VMS
6541 /* VMS wants read instead of fread, because fread doesn't respect */
6542 /* RMS record boundaries. This is not necessarily a good thing to be */
e468d35b
NIS
6543 /* doing, but we've got no other real choice - except avoid stdio
6544 as implementation - perhaps write a :vms layer ?
6545 */
5b2b9c68
HM
6546 bytesread = PerlLIO_read(PerlIO_fileno(fp), buffer, recsize);
6547#else
6548 bytesread = PerlIO_read(fp, buffer, recsize);
6549#endif
27e6ca2d
AE
6550 if (bytesread < 0)
6551 bytesread = 0;
e311fd51 6552 SvCUR_set(sv, bytesread += append);
e670df4e 6553 buffer[bytesread] = '\0';
efd8b2ba 6554 goto return_string_or_null;
5b2b9c68 6555 }
3280af22 6556 else if (RsPARA(PL_rs)) {
c07a80fd 6557 rsptr = "\n\n";
6558 rslen = 2;
8bfdd7d9 6559 rspara = 1;
c07a80fd 6560 }
7d59b7e4
NIS
6561 else {
6562 /* Get $/ i.e. PL_rs into same encoding as stream wants */
6563 if (PerlIO_isutf8(fp)) {
6564 rsptr = SvPVutf8(PL_rs, rslen);
6565 }
6566 else {
6567 if (SvUTF8(PL_rs)) {
6568 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
6569 Perl_croak(aTHX_ "Wide character in $/");
6570 }
6571 }
93524f2b 6572 rsptr = SvPV_const(PL_rs, rslen);
7d59b7e4
NIS
6573 }
6574 }
6575
c07a80fd 6576 rslast = rslen ? rsptr[rslen - 1] : '\0';
6577
8bfdd7d9 6578 if (rspara) { /* have to do this both before and after */
79072805 6579 do { /* to make sure file boundaries work right */
760ac839 6580 if (PerlIO_eof(fp))
a0d0e21e 6581 return 0;
760ac839 6582 i = PerlIO_getc(fp);
79072805 6583 if (i != '\n') {
a0d0e21e
LW
6584 if (i == -1)
6585 return 0;
760ac839 6586 PerlIO_ungetc(fp,i);
79072805
LW
6587 break;
6588 }
6589 } while (i != EOF);
6590 }
c07a80fd 6591
760ac839
LW
6592 /* See if we know enough about I/O mechanism to cheat it ! */
6593
6594 /* This used to be #ifdef test - it is made run-time test for ease
1c846c1f 6595 of abstracting out stdio interface. One call should be cheap
760ac839
LW
6596 enough here - and may even be a macro allowing compile
6597 time optimization.
6598 */
6599
6600 if (PerlIO_fast_gets(fp)) {
6601
6602 /*
6603 * We're going to steal some values from the stdio struct
6604 * and put EVERYTHING in the innermost loop into registers.
6605 */
6606 register STDCHAR *ptr;
6607 STRLEN bpx;
6608 I32 shortbuffered;
6609
16660edb 6610#if defined(VMS) && defined(PERLIO_IS_STDIO)
6611 /* An ungetc()d char is handled separately from the regular
6612 * buffer, so we getc() it back out and stuff it in the buffer.
6613 */
6614 i = PerlIO_getc(fp);
6615 if (i == EOF) return 0;
6616 *(--((*fp)->_ptr)) = (unsigned char) i;
6617 (*fp)->_cnt++;
6618#endif
c07a80fd 6619
c2960299 6620 /* Here is some breathtakingly efficient cheating */
c07a80fd 6621
a20bf0c3 6622 cnt = PerlIO_get_cnt(fp); /* get count into register */
e468d35b 6623 /* make sure we have the room */
7a5fa8a2 6624 if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
e468d35b 6625 /* Not room for all of it
7a5fa8a2 6626 if we are looking for a separator and room for some
e468d35b
NIS
6627 */
6628 if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7a5fa8a2 6629 /* just process what we have room for */
79072805
LW
6630 shortbuffered = cnt - SvLEN(sv) + append + 1;
6631 cnt -= shortbuffered;
6632 }
6633 else {
6634 shortbuffered = 0;
bbce6d69 6635 /* remember that cnt can be negative */
eb160463 6636 SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
79072805
LW
6637 }
6638 }
7a5fa8a2 6639 else
79072805 6640 shortbuffered = 0;
3f7c398e 6641 bp = (STDCHAR*)SvPVX_const(sv) + append; /* move these two too to registers */
a20bf0c3 6642 ptr = (STDCHAR*)PerlIO_get_ptr(fp);
16660edb 6643 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841 6644 "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
16660edb 6645 DEBUG_P(PerlIO_printf(Perl_debug_log,
ba7abf9d 6646 "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
1c846c1f 6647 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
1d7c1841 6648 PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
79072805
LW
6649 for (;;) {
6650 screamer:
93a17b20 6651 if (cnt > 0) {
c07a80fd 6652 if (rslen) {
760ac839
LW
6653 while (cnt > 0) { /* this | eat */
6654 cnt--;
c07a80fd 6655 if ((*bp++ = *ptr++) == rslast) /* really | dust */
6656 goto thats_all_folks; /* screams | sed :-) */
6657 }
6658 }
6659 else {
1c846c1f
NIS
6660 Copy(ptr, bp, cnt, char); /* this | eat */
6661 bp += cnt; /* screams | dust */
c07a80fd 6662 ptr += cnt; /* louder | sed :-) */
a5f75d66 6663 cnt = 0;
93a17b20 6664 }
79072805
LW
6665 }
6666
748a9306 6667 if (shortbuffered) { /* oh well, must extend */
79072805
LW
6668 cnt = shortbuffered;
6669 shortbuffered = 0;
3f7c398e 6670 bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
79072805
LW
6671 SvCUR_set(sv, bpx);
6672 SvGROW(sv, SvLEN(sv) + append + cnt + 2);
3f7c398e 6673 bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
79072805
LW
6674 continue;
6675 }
6676
16660edb 6677 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841
GS
6678 "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
6679 PTR2UV(ptr),(long)cnt));
cc00df79 6680 PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
ba7abf9d 6681#if 0
16660edb 6682 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841 6683 "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
1c846c1f 6684 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
1d7c1841 6685 PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
ba7abf9d 6686#endif
1c846c1f 6687 /* This used to call 'filbuf' in stdio form, but as that behaves like
774d564b 6688 getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
6689 another abstraction. */
760ac839 6690 i = PerlIO_getc(fp); /* get more characters */
ba7abf9d 6691#if 0
16660edb 6692 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841 6693 "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
1c846c1f 6694 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
1d7c1841 6695 PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
ba7abf9d 6696#endif
a20bf0c3
JH
6697 cnt = PerlIO_get_cnt(fp);
6698 ptr = (STDCHAR*)PerlIO_get_ptr(fp); /* reregisterize cnt and ptr */
16660edb 6699 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841 6700 "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
79072805 6701
748a9306
LW
6702 if (i == EOF) /* all done for ever? */
6703 goto thats_really_all_folks;
6704
3f7c398e 6705 bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
79072805
LW
6706 SvCUR_set(sv, bpx);
6707 SvGROW(sv, bpx + cnt + 2);
3f7c398e 6708 bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
c07a80fd 6709
eb160463 6710 *bp++ = (STDCHAR)i; /* store character from PerlIO_getc */
79072805 6711
c07a80fd 6712 if (rslen && (STDCHAR)i == rslast) /* all done for now? */
79072805 6713 goto thats_all_folks;
79072805
LW
6714 }
6715
6716thats_all_folks:
3f7c398e 6717 if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
36477c24 6718 memNE((char*)bp - rslen, rsptr, rslen))
760ac839 6719 goto screamer; /* go back to the fray */
79072805
LW
6720thats_really_all_folks:
6721 if (shortbuffered)
6722 cnt += shortbuffered;
16660edb 6723 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841 6724 "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
cc00df79 6725 PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* put these back or we're in trouble */
16660edb 6726 DEBUG_P(PerlIO_printf(Perl_debug_log,
1d7c1841 6727 "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
1c846c1f 6728 PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
1d7c1841 6729 PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
79072805 6730 *bp = '\0';
3f7c398e 6731 SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv)); /* set length */
16660edb 6732 DEBUG_P(PerlIO_printf(Perl_debug_log,
fb73857a 6733 "Screamer: done, len=%ld, string=|%.*s|\n",
3f7c398e 6734 (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
760ac839
LW
6735 }
6736 else
79072805 6737 {
6edd2cd5 6738 /*The big, slow, and stupid way. */
27da23d5 6739#ifdef USE_HEAP_INSTEAD_OF_STACK /* Even slower way. */
6edd2cd5
JH
6740 STDCHAR *buf = 0;
6741 New(0, buf, 8192, STDCHAR);
6742 assert(buf);
4d2c4e07 6743#else
6edd2cd5 6744 STDCHAR buf[8192];
4d2c4e07 6745#endif
79072805 6746
760ac839 6747screamer2:
c07a80fd 6748 if (rslen) {
6867be6d 6749 const register STDCHAR *bpe = buf + sizeof(buf);
760ac839 6750 bp = buf;
eb160463 6751 while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
760ac839
LW
6752 ; /* keep reading */
6753 cnt = bp - buf;
c07a80fd 6754 }
6755 else {
760ac839 6756 cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
16660edb 6757 /* Accomodate broken VAXC compiler, which applies U8 cast to
6758 * both args of ?: operator, causing EOF to change into 255
6759 */
37be0adf 6760 if (cnt > 0)
cbe9e203
JH
6761 i = (U8)buf[cnt - 1];
6762 else
37be0adf 6763 i = EOF;
c07a80fd 6764 }
79072805 6765
cbe9e203
JH
6766 if (cnt < 0)
6767 cnt = 0; /* we do need to re-set the sv even when cnt <= 0 */
6768 if (append)
6769 sv_catpvn(sv, (char *) buf, cnt);
6770 else
6771 sv_setpvn(sv, (char *) buf, cnt);
c07a80fd 6772
6773 if (i != EOF && /* joy */
6774 (!rslen ||
6775 SvCUR(sv) < rslen ||
3f7c398e 6776 memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
79072805
LW
6777 {
6778 append = -1;
63e4d877
CS
6779 /*
6780 * If we're reading from a TTY and we get a short read,
6781 * indicating that the user hit his EOF character, we need
6782 * to notice it now, because if we try to read from the TTY
6783 * again, the EOF condition will disappear.
6784 *
6785 * The comparison of cnt to sizeof(buf) is an optimization
6786 * that prevents unnecessary calls to feof().
6787 *
6788 * - jik 9/25/96
6789 */
6790 if (!(cnt < sizeof(buf) && PerlIO_eof(fp)))
6791 goto screamer2;
79072805 6792 }
6edd2cd5 6793
27da23d5 6794#ifdef USE_HEAP_INSTEAD_OF_STACK
6edd2cd5
JH
6795 Safefree(buf);
6796#endif
79072805
LW
6797 }
6798
8bfdd7d9 6799 if (rspara) { /* have to do this both before and after */
c07a80fd 6800 while (i != EOF) { /* to make sure file boundaries work right */
760ac839 6801 i = PerlIO_getc(fp);
79072805 6802 if (i != '\n') {
760ac839 6803 PerlIO_ungetc(fp,i);
79072805
LW
6804 break;
6805 }
6806 }
6807 }
c07a80fd 6808
efd8b2ba 6809return_string_or_null:
c07a80fd 6810 return (SvCUR(sv) - append) ? SvPVX(sv) : Nullch;
79072805
LW
6811}
6812
954c1994
GS
6813/*
6814=for apidoc sv_inc
6815
645c22ef
DM
6816Auto-increment of the value in the SV, doing string to numeric conversion
6817if necessary. Handles 'get' magic.
954c1994
GS
6818
6819=cut
6820*/
6821
79072805 6822void
864dbfa3 6823Perl_sv_inc(pTHX_ register SV *sv)
79072805
LW
6824{
6825 register char *d;
463ee0b2 6826 int flags;
79072805
LW
6827
6828 if (!sv)
6829 return;
b23a5f78
GB
6830 if (SvGMAGICAL(sv))
6831 mg_get(sv);
ed6116ce 6832 if (SvTHINKFIRST(sv)) {
765f542d
NC
6833 if (SvIsCOW(sv))
6834 sv_force_normal_flags(sv, 0);
0f15f207 6835 if (SvREADONLY(sv)) {
923e4eb5 6836 if (IN_PERL_RUNTIME)
cea2e8a9 6837 Perl_croak(aTHX_ PL_no_modify);
0f15f207 6838 }
a0d0e21e 6839 if (SvROK(sv)) {
b5be31e9 6840 IV i;
9e7bc3e8
JD
6841 if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
6842 return;
56431972 6843 i = PTR2IV(SvRV(sv));
b5be31e9
SM
6844 sv_unref(sv);
6845 sv_setiv(sv, i);
a0d0e21e 6846 }
ed6116ce 6847 }
8990e307 6848 flags = SvFLAGS(sv);
28e5dec8
JH
6849 if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
6850 /* It's (privately or publicly) a float, but not tested as an
6851 integer, so test it to see. */
d460ef45 6852 (void) SvIV(sv);
28e5dec8
JH
6853 flags = SvFLAGS(sv);
6854 }
6855 if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
6856 /* It's publicly an integer, or privately an integer-not-float */
59d8ce62 6857#ifdef PERL_PRESERVE_IVUV
28e5dec8 6858 oops_its_int:
59d8ce62 6859#endif
25da4f38
IZ
6860 if (SvIsUV(sv)) {
6861 if (SvUVX(sv) == UV_MAX)
a1e868e7 6862 sv_setnv(sv, UV_MAX_P1);
25da4f38
IZ
6863 else
6864 (void)SvIOK_only_UV(sv);
607fa7f2 6865 SvUV_set(sv, SvUVX(sv) + 1);
25da4f38
IZ
6866 } else {
6867 if (SvIVX(sv) == IV_MAX)
28e5dec8 6868 sv_setuv(sv, (UV)IV_MAX + 1);
25da4f38
IZ
6869 else {
6870 (void)SvIOK_only(sv);
45977657 6871 SvIV_set(sv, SvIVX(sv) + 1);
1c846c1f 6872 }
55497cff 6873 }
79072805
LW
6874 return;
6875 }
28e5dec8
JH
6876 if (flags & SVp_NOK) {
6877 (void)SvNOK_only(sv);
9d6ce603 6878 SvNV_set(sv, SvNVX(sv) + 1.0);
28e5dec8
JH
6879 return;
6880 }
6881
3f7c398e 6882 if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
28e5dec8
JH
6883 if ((flags & SVTYPEMASK) < SVt_PVIV)
6884 sv_upgrade(sv, SVt_IV);
6885 (void)SvIOK_only(sv);
45977657 6886 SvIV_set(sv, 1);
79072805
LW
6887 return;
6888 }
463ee0b2 6889 d = SvPVX(sv);
79072805
LW
6890 while (isALPHA(*d)) d++;
6891 while (isDIGIT(*d)) d++;
6892 if (*d) {
28e5dec8 6893#ifdef PERL_PRESERVE_IVUV
d1be9408 6894 /* Got to punt this as an integer if needs be, but we don't issue
28e5dec8
JH
6895 warnings. Probably ought to make the sv_iv_please() that does
6896 the conversion if possible, and silently. */
504618e9 6897 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
28e5dec8
JH
6898 if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
6899 /* Need to try really hard to see if it's an integer.
6900 9.22337203685478e+18 is an integer.
6901 but "9.22337203685478e+18" + 0 is UV=9223372036854779904
6902 so $a="9.22337203685478e+18"; $a+0; $a++
6903 needs to be the same as $a="9.22337203685478e+18"; $a++
6904 or we go insane. */
d460ef45 6905
28e5dec8
JH
6906 (void) sv_2iv(sv);
6907 if (SvIOK(sv))
6908 goto oops_its_int;
6909
6910 /* sv_2iv *should* have made this an NV */
6911 if (flags & SVp_NOK) {
6912 (void)SvNOK_only(sv);
9d6ce603 6913 SvNV_set(sv, SvNVX(sv) + 1.0);
28e5dec8
JH
6914 return;
6915 }
6916 /* I don't think we can get here. Maybe I should assert this
6917 And if we do get here I suspect that sv_setnv will croak. NWC
6918 Fall through. */
6919#if defined(USE_LONG_DOUBLE)
6920 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",
3f7c398e 6921 SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
28e5dec8 6922#else
1779d84d 6923 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
3f7c398e 6924 SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
28e5dec8
JH
6925#endif
6926 }
6927#endif /* PERL_PRESERVE_IVUV */
3f7c398e 6928 sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
79072805
LW
6929 return;
6930 }
6931 d--;
3f7c398e 6932 while (d >= SvPVX_const(sv)) {
79072805
LW
6933 if (isDIGIT(*d)) {
6934 if (++*d <= '9')
6935 return;
6936 *(d--) = '0';
6937 }
6938 else {
9d116dd7
JH
6939#ifdef EBCDIC
6940 /* MKS: The original code here died if letters weren't consecutive.
6941 * at least it didn't have to worry about non-C locales. The
6942 * new code assumes that ('z'-'a')==('Z'-'A'), letters are
1c846c1f 6943 * arranged in order (although not consecutively) and that only
9d116dd7
JH
6944 * [A-Za-z] are accepted by isALPHA in the C locale.
6945 */
6946 if (*d != 'z' && *d != 'Z') {
6947 do { ++*d; } while (!isALPHA(*d));
6948 return;
6949 }
6950 *(d--) -= 'z' - 'a';
6951#else
79072805
LW
6952 ++*d;
6953 if (isALPHA(*d))
6954 return;
6955 *(d--) -= 'z' - 'a' + 1;
9d116dd7 6956#endif
79072805
LW
6957 }
6958 }
6959 /* oh,oh, the number grew */
6960 SvGROW(sv, SvCUR(sv) + 2);
b162af07 6961 SvCUR_set(sv, SvCUR(sv) + 1);
3f7c398e 6962 for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
79072805
LW
6963 *d = d[-1];
6964 if (isDIGIT(d[1]))
6965 *d = '1';
6966 else
6967 *d = d[1];
6968}
6969
954c1994
GS
6970/*
6971=for apidoc sv_dec
6972
645c22ef
DM
6973Auto-decrement of the value in the SV, doing string to numeric conversion
6974if necessary. Handles 'get' magic.
954c1994
GS
6975
6976=cut
6977*/
6978
79072805 6979void
864dbfa3 6980Perl_sv_dec(pTHX_ register SV *sv)
79072805 6981{
463ee0b2
LW
6982 int flags;
6983
79072805
LW
6984 if (!sv)
6985 return;
b23a5f78
GB
6986 if (SvGMAGICAL(sv))
6987 mg_get(sv);
ed6116ce 6988 if (SvTHINKFIRST(sv)) {
765f542d
NC
6989 if (SvIsCOW(sv))
6990 sv_force_normal_flags(sv, 0);
0f15f207 6991 if (SvREADONLY(sv)) {
923e4eb5 6992 if (IN_PERL_RUNTIME)
cea2e8a9 6993 Perl_croak(aTHX_ PL_no_modify);
0f15f207 6994 }
a0d0e21e 6995 if (SvROK(sv)) {
b5be31e9 6996 IV i;
9e7bc3e8
JD
6997 if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
6998 return;
56431972 6999 i = PTR2IV(SvRV(sv));
b5be31e9
SM
7000 sv_unref(sv);
7001 sv_setiv(sv, i);
a0d0e21e 7002 }
ed6116ce 7003 }
28e5dec8
JH
7004 /* Unlike sv_inc we don't have to worry about string-never-numbers
7005 and keeping them magic. But we mustn't warn on punting */
8990e307 7006 flags = SvFLAGS(sv);
28e5dec8
JH
7007 if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7008 /* It's publicly an integer, or privately an integer-not-float */
59d8ce62 7009#ifdef PERL_PRESERVE_IVUV
28e5dec8 7010 oops_its_int:
59d8ce62 7011#endif
25da4f38
IZ
7012 if (SvIsUV(sv)) {
7013 if (SvUVX(sv) == 0) {
7014 (void)SvIOK_only(sv);
45977657 7015 SvIV_set(sv, -1);
25da4f38
IZ
7016 }
7017 else {
7018 (void)SvIOK_only_UV(sv);
607fa7f2 7019 SvUV_set(sv, SvUVX(sv) + 1);
1c846c1f 7020 }
25da4f38
IZ
7021 } else {
7022 if (SvIVX(sv) == IV_MIN)
65202027 7023 sv_setnv(sv, (NV)IV_MIN - 1.0);
25da4f38
IZ
7024 else {
7025 (void)SvIOK_only(sv);
45977657 7026 SvIV_set(sv, SvIVX(sv) - 1);
1c846c1f 7027 }
55497cff 7028 }
7029 return;
7030 }
28e5dec8 7031 if (flags & SVp_NOK) {
9d6ce603 7032 SvNV_set(sv, SvNVX(sv) - 1.0);
28e5dec8
JH
7033 (void)SvNOK_only(sv);
7034 return;
7035 }
8990e307 7036 if (!(flags & SVp_POK)) {
4633a7c4
LW
7037 if ((flags & SVTYPEMASK) < SVt_PVNV)
7038 sv_upgrade(sv, SVt_NV);
f599b64b 7039 SvNV_set(sv, 1.0);
a0d0e21e 7040 (void)SvNOK_only(sv);
79072805
LW
7041 return;
7042 }
28e5dec8
JH
7043#ifdef PERL_PRESERVE_IVUV
7044 {
504618e9 7045 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
28e5dec8
JH
7046 if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7047 /* Need to try really hard to see if it's an integer.
7048 9.22337203685478e+18 is an integer.
7049 but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7050 so $a="9.22337203685478e+18"; $a+0; $a--
7051 needs to be the same as $a="9.22337203685478e+18"; $a--
7052 or we go insane. */
d460ef45 7053
28e5dec8
JH
7054 (void) sv_2iv(sv);
7055 if (SvIOK(sv))
7056 goto oops_its_int;
7057
7058 /* sv_2iv *should* have made this an NV */
7059 if (flags & SVp_NOK) {
7060 (void)SvNOK_only(sv);
9d6ce603 7061 SvNV_set(sv, SvNVX(sv) - 1.0);
28e5dec8
JH
7062 return;
7063 }
7064 /* I don't think we can get here. Maybe I should assert this
7065 And if we do get here I suspect that sv_setnv will croak. NWC
7066 Fall through. */
7067#if defined(USE_LONG_DOUBLE)
7068 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",
3f7c398e 7069 SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
28e5dec8 7070#else
1779d84d 7071 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
3f7c398e 7072 SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
28e5dec8
JH
7073#endif
7074 }
7075 }
7076#endif /* PERL_PRESERVE_IVUV */
3f7c398e 7077 sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0); /* punt */
79072805
LW
7078}
7079
954c1994
GS
7080/*
7081=for apidoc sv_mortalcopy
7082
645c22ef 7083Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
d4236ebc
DM
7084The new SV is marked as mortal. It will be destroyed "soon", either by an
7085explicit call to FREETMPS, or by an implicit call at places such as
7086statement boundaries. See also C<sv_newmortal> and C<sv_2mortal>.
954c1994
GS
7087
7088=cut
7089*/
7090
79072805
LW
7091/* Make a string that will exist for the duration of the expression
7092 * evaluation. Actually, it may have to last longer than that, but
7093 * hopefully we won't free it until it has been assigned to a
7094 * permanent location. */
7095
7096SV *
864dbfa3 7097Perl_sv_mortalcopy(pTHX_ SV *oldstr)
79072805 7098{
463ee0b2 7099 register SV *sv;
b881518d 7100
4561caa4 7101 new_SV(sv);
79072805 7102 sv_setsv(sv,oldstr);
677b06e3
GS
7103 EXTEND_MORTAL(1);
7104 PL_tmps_stack[++PL_tmps_ix] = sv;
8990e307
LW
7105 SvTEMP_on(sv);
7106 return sv;
7107}
7108
954c1994
GS
7109/*
7110=for apidoc sv_newmortal
7111
645c22ef 7112Creates a new null SV which is mortal. The reference count of the SV is
d4236ebc
DM
7113set to 1. It will be destroyed "soon", either by an explicit call to
7114FREETMPS, or by an implicit call at places such as statement boundaries.
7115See also C<sv_mortalcopy> and C<sv_2mortal>.
954c1994
GS
7116
7117=cut
7118*/
7119
8990e307 7120SV *
864dbfa3 7121Perl_sv_newmortal(pTHX)
8990e307
LW
7122{
7123 register SV *sv;
7124
4561caa4 7125 new_SV(sv);
8990e307 7126 SvFLAGS(sv) = SVs_TEMP;
677b06e3
GS
7127 EXTEND_MORTAL(1);
7128 PL_tmps_stack[++PL_tmps_ix] = sv;
79072805
LW
7129 return sv;
7130}
7131
954c1994
GS
7132/*
7133=for apidoc sv_2mortal
7134
d4236ebc
DM
7135Marks an existing SV as mortal. The SV will be destroyed "soon", either
7136by an explicit call to FREETMPS, or by an implicit call at places such as
37d2ac18
NC
7137statement boundaries. SvTEMP() is turned on which means that the SV's
7138string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7139and C<sv_mortalcopy>.
954c1994
GS
7140
7141=cut
7142*/
7143
79072805 7144SV *
864dbfa3 7145Perl_sv_2mortal(pTHX_ register SV *sv)
79072805 7146{
27da23d5 7147 dVAR;
79072805
LW
7148 if (!sv)
7149 return sv;
d689ffdd 7150 if (SvREADONLY(sv) && SvIMMORTAL(sv))
11162842 7151 return sv;
677b06e3
GS
7152 EXTEND_MORTAL(1);
7153 PL_tmps_stack[++PL_tmps_ix] = sv;
8990e307 7154 SvTEMP_on(sv);
79072805
LW
7155 return sv;
7156}
7157
954c1994
GS
7158/*
7159=for apidoc newSVpv
7160
7161Creates a new SV and copies a string into it. The reference count for the
7162SV is set to 1. If C<len> is zero, Perl will compute the length using
7163strlen(). For efficiency, consider using C<newSVpvn> instead.
7164
7165=cut
7166*/
7167
79072805 7168SV *
864dbfa3 7169Perl_newSVpv(pTHX_ const char *s, STRLEN len)
79072805 7170{
463ee0b2 7171 register SV *sv;
79072805 7172
4561caa4 7173 new_SV(sv);
616d8c9c 7174 sv_setpvn(sv,s,len ? len : strlen(s));
79072805
LW
7175 return sv;
7176}
7177
954c1994
GS
7178/*
7179=for apidoc newSVpvn
7180
7181Creates a new SV and copies a string into it. The reference count for the
1c846c1f 7182SV is set to 1. Note that if C<len> is zero, Perl will create a zero length
954c1994 7183string. You are responsible for ensuring that the source string is at least
9e09f5f2 7184C<len> bytes long. If the C<s> argument is NULL the new SV will be undefined.
954c1994
GS
7185
7186=cut
7187*/
7188
9da1e3b5 7189SV *
864dbfa3 7190Perl_newSVpvn(pTHX_ const char *s, STRLEN len)
9da1e3b5
MUN
7191{
7192 register SV *sv;
7193
7194 new_SV(sv);
9da1e3b5
MUN
7195 sv_setpvn(sv,s,len);
7196 return sv;
7197}
7198
bd08039b
NC
7199
7200/*
926f8064 7201=for apidoc newSVhek
bd08039b
NC
7202
7203Creates a new SV from the hash key structure. It will generate scalars that
5aaec2b4
NC
7204point to the shared string table where possible. Returns a new (undefined)
7205SV if the hek is NULL.
bd08039b
NC
7206
7207=cut
7208*/
7209
7210SV *
c1b02ed8 7211Perl_newSVhek(pTHX_ const HEK *hek)
bd08039b 7212{
5aaec2b4
NC
7213 if (!hek) {
7214 SV *sv;
7215
7216 new_SV(sv);
7217 return sv;
7218 }
7219
bd08039b
NC
7220 if (HEK_LEN(hek) == HEf_SVKEY) {
7221 return newSVsv(*(SV**)HEK_KEY(hek));
7222 } else {
7223 const int flags = HEK_FLAGS(hek);
7224 if (flags & HVhek_WASUTF8) {
7225 /* Trouble :-)
7226 Andreas would like keys he put in as utf8 to come back as utf8
7227 */
7228 STRLEN utf8_len = HEK_LEN(hek);
7229 U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
7230 SV *sv = newSVpvn ((char*)as_utf8, utf8_len);
7231
7232 SvUTF8_on (sv);
7233 Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
7234 return sv;
7235 } else if (flags & HVhek_REHASH) {
7236 /* We don't have a pointer to the hv, so we have to replicate the
7237 flag into every HEK. This hv is using custom a hasing
7238 algorithm. Hence we can't return a shared string scalar, as
7239 that would contain the (wrong) hash value, and might get passed
7240 into an hv routine with a regular hash */
7241
7242 SV *sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
7243 if (HEK_UTF8(hek))
7244 SvUTF8_on (sv);
7245 return sv;
7246 }
7247 /* This will be overwhelminly the most common case. */
7248 return newSVpvn_share(HEK_KEY(hek),
7249 (HEK_UTF8(hek) ? -HEK_LEN(hek) : HEK_LEN(hek)),
7250 HEK_HASH(hek));
7251 }
7252}
7253
1c846c1f
NIS
7254/*
7255=for apidoc newSVpvn_share
7256
3f7c398e 7257Creates a new SV with its SvPVX_const pointing to a shared string in the string
645c22ef
DM
7258table. If the string does not already exist in the table, it is created
7259first. Turns on READONLY and FAKE. The string's hash is stored in the UV
7260slot of the SV; if the C<hash> parameter is non-zero, that value is used;
7261otherwise the hash is computed. The idea here is that as the string table
3f7c398e 7262is used for shared hash keys these strings will have SvPVX_const == HeKEY and
645c22ef 7263hash lookup will avoid string compare.
1c846c1f
NIS
7264
7265=cut
7266*/
7267
7268SV *
c3654f1a 7269Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
1c846c1f
NIS
7270{
7271 register SV *sv;
c3654f1a
IH
7272 bool is_utf8 = FALSE;
7273 if (len < 0) {
77caf834 7274 STRLEN tmplen = -len;
c3654f1a 7275 is_utf8 = TRUE;
75a54232 7276 /* See the note in hv.c:hv_fetch() --jhi */
e1ec3a88 7277 src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
75a54232
JH
7278 len = tmplen;
7279 }
1c846c1f 7280 if (!hash)
5afd6d42 7281 PERL_HASH(hash, src, len);
1c846c1f 7282 new_SV(sv);
bdd68bc3 7283 sv_upgrade(sv, SVt_PV);
f880fe2f 7284 SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
b162af07 7285 SvCUR_set(sv, len);
b162af07 7286 SvLEN_set(sv, 0);
1c846c1f
NIS
7287 SvREADONLY_on(sv);
7288 SvFAKE_on(sv);
7289 SvPOK_on(sv);
c3654f1a
IH
7290 if (is_utf8)
7291 SvUTF8_on(sv);
1c846c1f
NIS
7292 return sv;
7293}
7294
645c22ef 7295
cea2e8a9 7296#if defined(PERL_IMPLICIT_CONTEXT)
645c22ef
DM
7297
7298/* pTHX_ magic can't cope with varargs, so this is a no-context
7299 * version of the main function, (which may itself be aliased to us).
7300 * Don't access this version directly.
7301 */
7302
46fc3d4c 7303SV *
cea2e8a9 7304Perl_newSVpvf_nocontext(const char* pat, ...)
46fc3d4c 7305{
cea2e8a9 7306 dTHX;
46fc3d4c 7307 register SV *sv;
7308 va_list args;
46fc3d4c 7309 va_start(args, pat);
c5be433b 7310 sv = vnewSVpvf(pat, &args);
46fc3d4c 7311 va_end(args);
7312 return sv;
7313}
cea2e8a9 7314#endif
46fc3d4c 7315
954c1994
GS
7316/*
7317=for apidoc newSVpvf
7318
645c22ef 7319Creates a new SV and initializes it with the string formatted like
954c1994
GS
7320C<sprintf>.
7321
7322=cut
7323*/
7324
cea2e8a9
GS
7325SV *
7326Perl_newSVpvf(pTHX_ const char* pat, ...)
7327{
7328 register SV *sv;
7329 va_list args;
cea2e8a9 7330 va_start(args, pat);
c5be433b 7331 sv = vnewSVpvf(pat, &args);
cea2e8a9
GS
7332 va_end(args);
7333 return sv;
7334}
46fc3d4c 7335
645c22ef
DM
7336/* backend for newSVpvf() and newSVpvf_nocontext() */
7337
79072805 7338SV *
c5be433b
GS
7339Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args)
7340{
7341 register SV *sv;
7342 new_SV(sv);
7343 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
7344 return sv;
7345}
7346
954c1994
GS
7347/*
7348=for apidoc newSVnv
7349
7350Creates a new SV and copies a floating point value into it.
7351The reference count for the SV is set to 1.
7352
7353=cut
7354*/
7355
c5be433b 7356SV *
65202027 7357Perl_newSVnv(pTHX_ NV n)
79072805 7358{
463ee0b2 7359 register SV *sv;
79072805 7360
4561caa4 7361 new_SV(sv);
79072805
LW
7362 sv_setnv(sv,n);
7363 return sv;
7364}
7365
954c1994
GS
7366/*
7367=for apidoc newSViv
7368
7369Creates a new SV and copies an integer into it. The reference count for the
7370SV is set to 1.
7371
7372=cut
7373*/
7374
79072805 7375SV *
864dbfa3 7376Perl_newSViv(pTHX_ IV i)
79072805 7377{
463ee0b2 7378 register SV *sv;
79072805 7379
4561caa4 7380 new_SV(sv);
79072805
LW
7381 sv_setiv(sv,i);
7382 return sv;
7383}
7384
954c1994 7385/*
1a3327fb
JH
7386=for apidoc newSVuv
7387
7388Creates a new SV and copies an unsigned integer into it.
7389The reference count for the SV is set to 1.
7390
7391=cut
7392*/
7393
7394SV *
7395Perl_newSVuv(pTHX_ UV u)
7396{
7397 register SV *sv;
7398
7399 new_SV(sv);
7400 sv_setuv(sv,u);
7401 return sv;
7402}
7403
7404/*
954c1994
GS
7405=for apidoc newRV_noinc
7406
7407Creates an RV wrapper for an SV. The reference count for the original
7408SV is B<not> incremented.
7409
7410=cut
7411*/
7412
2304df62 7413SV *
864dbfa3 7414Perl_newRV_noinc(pTHX_ SV *tmpRef)
2304df62
AD
7415{
7416 register SV *sv;
7417
4561caa4 7418 new_SV(sv);
2304df62 7419 sv_upgrade(sv, SVt_RV);
76e3520e 7420 SvTEMP_off(tmpRef);
b162af07 7421 SvRV_set(sv, tmpRef);
2304df62 7422 SvROK_on(sv);
2304df62
AD
7423 return sv;
7424}
7425
ff276b08 7426/* newRV_inc is the official function name to use now.
645c22ef
DM
7427 * newRV_inc is in fact #defined to newRV in sv.h
7428 */
7429
5f05dabc 7430SV *
864dbfa3 7431Perl_newRV(pTHX_ SV *tmpRef)
5f05dabc 7432{
5f6447b6 7433 return newRV_noinc(SvREFCNT_inc(tmpRef));
5f05dabc 7434}
5f05dabc 7435
954c1994
GS
7436/*
7437=for apidoc newSVsv
7438
7439Creates a new SV which is an exact duplicate of the original SV.
645c22ef 7440(Uses C<sv_setsv>).
954c1994
GS
7441
7442=cut
7443*/
7444
79072805 7445SV *
864dbfa3 7446Perl_newSVsv(pTHX_ register SV *old)
79072805 7447{
463ee0b2 7448 register SV *sv;
79072805
LW
7449
7450 if (!old)
7451 return Nullsv;
8990e307 7452 if (SvTYPE(old) == SVTYPEMASK) {
0453d815 7453 if (ckWARN_d(WARN_INTERNAL))
9014280d 7454 Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
79072805
LW
7455 return Nullsv;
7456 }
4561caa4 7457 new_SV(sv);
e90aabeb
NC
7458 /* SV_GMAGIC is the default for sv_setv()
7459 SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
7460 with SvTEMP_off and SvTEMP_on round a call to sv_setsv. */
7461 sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
463ee0b2 7462 return sv;
79072805
LW
7463}
7464
645c22ef
DM
7465/*
7466=for apidoc sv_reset
7467
7468Underlying implementation for the C<reset> Perl function.
7469Note that the perl-level function is vaguely deprecated.
7470
7471=cut
7472*/
7473
79072805 7474void
e1ec3a88 7475Perl_sv_reset(pTHX_ register const char *s, HV *stash)
79072805 7476{
27da23d5 7477 dVAR;
4802d5d7 7478 char todo[PERL_UCHAR_MAX+1];
79072805 7479
49d8d3a1
MB
7480 if (!stash)
7481 return;
7482
79072805 7483 if (!*s) { /* reset ?? searches */
8d2f4536
NC
7484 MAGIC *mg = mg_find((SV *)stash, PERL_MAGIC_symtab);
7485 if (mg) {
7486 PMOP *pm = (PMOP *) mg->mg_obj;
7487 while (pm) {
7488 pm->op_pmdynflags &= ~PMdf_USED;
7489 pm = pm->op_pmnext;
7490 }
79072805
LW
7491 }
7492 return;
7493 }
7494
7495 /* reset variables */
7496
7497 if (!HvARRAY(stash))
7498 return;
463ee0b2
LW
7499
7500 Zero(todo, 256, char);
79072805 7501 while (*s) {
b464bac0
AL
7502 I32 max;
7503 I32 i = (unsigned char)*s;
79072805
LW
7504 if (s[1] == '-') {
7505 s += 2;
7506 }
4802d5d7 7507 max = (unsigned char)*s++;
79072805 7508 for ( ; i <= max; i++) {
463ee0b2
LW
7509 todo[i] = 1;
7510 }
a0d0e21e 7511 for (i = 0; i <= (I32) HvMAX(stash); i++) {
b464bac0 7512 HE *entry;
79072805 7513 for (entry = HvARRAY(stash)[i];
9e35f4b3
GS
7514 entry;
7515 entry = HeNEXT(entry))
7516 {
b464bac0
AL
7517 register GV *gv;
7518 register SV *sv;
7519
1edc1566 7520 if (!todo[(U8)*HeKEY(entry)])
463ee0b2 7521 continue;
1edc1566 7522 gv = (GV*)HeVAL(entry);
79072805 7523 sv = GvSV(gv);
9e35f4b3
GS
7524 if (SvTHINKFIRST(sv)) {
7525 if (!SvREADONLY(sv) && SvROK(sv))
7526 sv_unref(sv);
7527 continue;
7528 }
0c34ef67 7529 SvOK_off(sv);
79072805
LW
7530 if (SvTYPE(sv) >= SVt_PV) {
7531 SvCUR_set(sv, 0);
3f7c398e 7532 if (SvPVX_const(sv) != Nullch)
463ee0b2 7533 *SvPVX(sv) = '\0';
44a8e56a 7534 SvTAINT(sv);
79072805
LW
7535 }
7536 if (GvAV(gv)) {
7537 av_clear(GvAV(gv));
7538 }
bfcb3514 7539 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
463ee0b2 7540 hv_clear(GvHV(gv));
2f42fcb0 7541#ifndef PERL_MICRO
fa6a1c44 7542#ifdef USE_ENVIRON_ARRAY
4efc5df6
GS
7543 if (gv == PL_envgv
7544# ifdef USE_ITHREADS
7545 && PL_curinterp == aTHX
7546# endif
7547 )
7548 {
79072805 7549 environ[0] = Nullch;
4efc5df6 7550 }
a0d0e21e 7551#endif
2f42fcb0 7552#endif /* !PERL_MICRO */
79072805
LW
7553 }
7554 }
7555 }
7556 }
7557}
7558
645c22ef
DM
7559/*
7560=for apidoc sv_2io
7561
7562Using various gambits, try to get an IO from an SV: the IO slot if its a
7563GV; or the recursive result if we're an RV; or the IO slot of the symbol
7564named after the PV if we're a string.
7565
7566=cut
7567*/
7568
46fc3d4c 7569IO*
864dbfa3 7570Perl_sv_2io(pTHX_ SV *sv)
46fc3d4c 7571{
7572 IO* io;
7573 GV* gv;
7574
7575 switch (SvTYPE(sv)) {
7576 case SVt_PVIO:
7577 io = (IO*)sv;
7578 break;
7579 case SVt_PVGV:
7580 gv = (GV*)sv;
7581 io = GvIO(gv);
7582 if (!io)
cea2e8a9 7583 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
46fc3d4c 7584 break;
7585 default:
7586 if (!SvOK(sv))
cea2e8a9 7587 Perl_croak(aTHX_ PL_no_usym, "filehandle");
46fc3d4c 7588 if (SvROK(sv))
7589 return sv_2io(SvRV(sv));
7a5fd60d 7590 gv = gv_fetchsv(sv, FALSE, SVt_PVIO);
46fc3d4c 7591 if (gv)
7592 io = GvIO(gv);
7593 else
7594 io = 0;
7595 if (!io)
35c1215d 7596 Perl_croak(aTHX_ "Bad filehandle: %"SVf, sv);
46fc3d4c 7597 break;
7598 }
7599 return io;
7600}
7601
645c22ef
DM
7602/*
7603=for apidoc sv_2cv
7604
7605Using various gambits, try to get a CV from an SV; in addition, try if
7606possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
7607
7608=cut
7609*/
7610
79072805 7611CV *
864dbfa3 7612Perl_sv_2cv(pTHX_ SV *sv, HV **st, GV **gvp, I32 lref)
79072805 7613{
27da23d5 7614 dVAR;
c04a4dfe
JH
7615 GV *gv = Nullgv;
7616 CV *cv = Nullcv;
79072805
LW
7617
7618 if (!sv)
93a17b20 7619 return *gvp = Nullgv, Nullcv;
79072805 7620 switch (SvTYPE(sv)) {
79072805
LW
7621 case SVt_PVCV:
7622 *st = CvSTASH(sv);
7623 *gvp = Nullgv;
7624 return (CV*)sv;
7625 case SVt_PVHV:
7626 case SVt_PVAV:
7627 *gvp = Nullgv;
7628 return Nullcv;
8990e307
LW
7629 case SVt_PVGV:
7630 gv = (GV*)sv;
a0d0e21e 7631 *gvp = gv;
8990e307
LW
7632 *st = GvESTASH(gv);
7633 goto fix_gv;
7634
79072805 7635 default:
a0d0e21e
LW
7636 if (SvGMAGICAL(sv))
7637 mg_get(sv);
7638 if (SvROK(sv)) {
f5284f61
IZ
7639 SV **sp = &sv; /* Used in tryAMAGICunDEREF macro. */
7640 tryAMAGICunDEREF(to_cv);
7641
62f274bf
GS
7642 sv = SvRV(sv);
7643 if (SvTYPE(sv) == SVt_PVCV) {
7644 cv = (CV*)sv;
7645 *gvp = Nullgv;
7646 *st = CvSTASH(cv);
7647 return cv;
7648 }
7649 else if(isGV(sv))
7650 gv = (GV*)sv;
7651 else
cea2e8a9 7652 Perl_croak(aTHX_ "Not a subroutine reference");
a0d0e21e 7653 }
62f274bf 7654 else if (isGV(sv))
79072805
LW
7655 gv = (GV*)sv;
7656 else
7a5fd60d 7657 gv = gv_fetchsv(sv, lref, SVt_PVCV);
79072805
LW
7658 *gvp = gv;
7659 if (!gv)
7660 return Nullcv;
7661 *st = GvESTASH(gv);
8990e307 7662 fix_gv:
8ebc5c01 7663 if (lref && !GvCVu(gv)) {
4633a7c4 7664 SV *tmpsv;
748a9306 7665 ENTER;
4633a7c4 7666 tmpsv = NEWSV(704,0);
16660edb 7667 gv_efullname3(tmpsv, gv, Nullch);
f6ec51f7
GS
7668 /* XXX this is probably not what they think they're getting.
7669 * It has the same effect as "sub name;", i.e. just a forward
7670 * declaration! */
774d564b 7671 newSUB(start_subparse(FALSE, 0),
4633a7c4
LW
7672 newSVOP(OP_CONST, 0, tmpsv),
7673 Nullop,
8990e307 7674 Nullop);
748a9306 7675 LEAVE;
8ebc5c01 7676 if (!GvCVu(gv))
35c1215d
NC
7677 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
7678 sv);
8990e307 7679 }
8ebc5c01 7680 return GvCVu(gv);
79072805
LW
7681 }
7682}
7683
c461cf8f
JH
7684/*
7685=for apidoc sv_true
7686
7687Returns true if the SV has a true value by Perl's rules.
645c22ef
DM
7688Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
7689instead use an in-line version.
c461cf8f
JH
7690
7691=cut
7692*/
7693
79072805 7694I32
864dbfa3 7695Perl_sv_true(pTHX_ register SV *sv)
79072805 7696{
8990e307
LW
7697 if (!sv)
7698 return 0;
79072805 7699 if (SvPOK(sv)) {
e1ec3a88 7700 const register XPV* tXpv;
4e35701f 7701 if ((tXpv = (XPV*)SvANY(sv)) &&
c2f1de04 7702 (tXpv->xpv_cur > 1 ||
339049b0 7703 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
79072805
LW
7704 return 1;
7705 else
7706 return 0;
7707 }
7708 else {
7709 if (SvIOK(sv))
463ee0b2 7710 return SvIVX(sv) != 0;
79072805
LW
7711 else {
7712 if (SvNOK(sv))
463ee0b2 7713 return SvNVX(sv) != 0.0;
79072805 7714 else
463ee0b2 7715 return sv_2bool(sv);
79072805
LW
7716 }
7717 }
7718}
79072805 7719
645c22ef
DM
7720/*
7721=for apidoc sv_iv
7722
7723A private implementation of the C<SvIVx> macro for compilers which can't
7724cope with complex macro expressions. Always use the macro instead.
7725
7726=cut
7727*/
7728
ff68c719 7729IV
864dbfa3 7730Perl_sv_iv(pTHX_ register SV *sv)
85e6fe83 7731{
25da4f38
IZ
7732 if (SvIOK(sv)) {
7733 if (SvIsUV(sv))
7734 return (IV)SvUVX(sv);
ff68c719 7735 return SvIVX(sv);
25da4f38 7736 }
ff68c719 7737 return sv_2iv(sv);
85e6fe83 7738}
85e6fe83 7739
645c22ef
DM
7740/*
7741=for apidoc sv_uv
7742
7743A private implementation of the C<SvUVx> macro for compilers which can't
7744cope with complex macro expressions. Always use the macro instead.
7745
7746=cut
7747*/
7748
ff68c719 7749UV
864dbfa3 7750Perl_sv_uv(pTHX_ register SV *sv)
ff68c719 7751{
25da4f38
IZ
7752 if (SvIOK(sv)) {
7753 if (SvIsUV(sv))
7754 return SvUVX(sv);
7755 return (UV)SvIVX(sv);
7756 }
ff68c719 7757 return sv_2uv(sv);
7758}
85e6fe83 7759
645c22ef
DM
7760/*
7761=for apidoc sv_nv
7762
7763A private implementation of the C<SvNVx> macro for compilers which can't
7764cope with complex macro expressions. Always use the macro instead.
7765
7766=cut
7767*/
7768
65202027 7769NV
864dbfa3 7770Perl_sv_nv(pTHX_ register SV *sv)
79072805 7771{
ff68c719 7772 if (SvNOK(sv))
7773 return SvNVX(sv);
7774 return sv_2nv(sv);
79072805 7775}
79072805 7776
09540bc3
JH
7777/* sv_pv() is now a macro using SvPV_nolen();
7778 * this function provided for binary compatibility only
7779 */
7780
7781char *
7782Perl_sv_pv(pTHX_ SV *sv)
7783{
09540bc3
JH
7784 if (SvPOK(sv))
7785 return SvPVX(sv);
7786
93524f2b 7787 return sv_2pv(sv, 0);
09540bc3
JH
7788}
7789
645c22ef
DM
7790/*
7791=for apidoc sv_pv
7792
baca2b92 7793Use the C<SvPV_nolen> macro instead
645c22ef 7794
645c22ef
DM
7795=for apidoc sv_pvn
7796
7797A private implementation of the C<SvPV> macro for compilers which can't
7798cope with complex macro expressions. Always use the macro instead.
7799
7800=cut
7801*/
7802
1fa8b10d 7803char *
864dbfa3 7804Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
79072805 7805{
85e6fe83
LW
7806 if (SvPOK(sv)) {
7807 *lp = SvCUR(sv);
a0d0e21e 7808 return SvPVX(sv);
85e6fe83 7809 }
463ee0b2 7810 return sv_2pv(sv, lp);
79072805 7811}
79072805 7812
6e9d1081
NC
7813
7814char *
7815Perl_sv_pvn_nomg(pTHX_ register SV *sv, STRLEN *lp)
7816{
7817 if (SvPOK(sv)) {
7818 *lp = SvCUR(sv);
7819 return SvPVX(sv);
7820 }
7821 return sv_2pv_flags(sv, lp, 0);
7822}
7823
09540bc3
JH
7824/* sv_pvn_force() is now a macro using Perl_sv_pvn_force_flags();
7825 * this function provided for binary compatibility only
7826 */
7827
7828char *
7829Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
7830{
7831 return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
7832}
7833
c461cf8f
JH
7834/*
7835=for apidoc sv_pvn_force
7836
7837Get a sensible string out of the SV somehow.
645c22ef
DM
7838A private implementation of the C<SvPV_force> macro for compilers which
7839can't cope with complex macro expressions. Always use the macro instead.
c461cf8f 7840
8d6d96c1
HS
7841=for apidoc sv_pvn_force_flags
7842
7843Get a sensible string out of the SV somehow.
7844If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
7845appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
7846implemented in terms of this function.
645c22ef
DM
7847You normally want to use the various wrapper macros instead: see
7848C<SvPV_force> and C<SvPV_force_nomg>
8d6d96c1
HS
7849
7850=cut
7851*/
7852
7853char *
7854Perl_sv_pvn_force_flags(pTHX_ SV *sv, STRLEN *lp, I32 flags)
7855{
a0d0e21e 7856
6fc92669 7857 if (SvTHINKFIRST(sv) && !SvROK(sv))
765f542d 7858 sv_force_normal_flags(sv, 0);
1c846c1f 7859
a0d0e21e 7860 if (SvPOK(sv)) {
13c5b33c
NC
7861 if (lp)
7862 *lp = SvCUR(sv);
a0d0e21e
LW
7863 }
7864 else {
a3b680e6 7865 char *s;
13c5b33c
NC
7866 STRLEN len;
7867
4d84ee25
NC
7868 if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
7869 if (PL_op)
7870 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
7871 sv_reftype(sv,0), OP_NAME(PL_op));
7872 else
7873 Perl_croak(aTHX_ "Can't coerce readonly %s to string",
7874 sv_reftype(sv,0));
7875 }
748a9306 7876 if (SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM) {
cea2e8a9 7877 Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
53e06cf0 7878 OP_NAME(PL_op));
a0d0e21e 7879 }
4633a7c4 7880 else
13c5b33c
NC
7881 s = sv_2pv_flags(sv, &len, flags);
7882 if (lp)
7883 *lp = len;
7884
3f7c398e 7885 if (s != SvPVX_const(sv)) { /* Almost, but not quite, sv_setpvn() */
a0d0e21e
LW
7886 if (SvROK(sv))
7887 sv_unref(sv);
862a34c6 7888 SvUPGRADE(sv, SVt_PV); /* Never FALSE */
a0d0e21e 7889 SvGROW(sv, len + 1);
3f7c398e 7890 Move(s,SvPVX_const(sv),len,char);
a0d0e21e
LW
7891 SvCUR_set(sv, len);
7892 *SvEND(sv) = '\0';
7893 }
7894 if (!SvPOK(sv)) {
7895 SvPOK_on(sv); /* validate pointer */
7896 SvTAINT(sv);
1d7c1841 7897 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3f7c398e 7898 PTR2UV(sv),SvPVX_const(sv)));
a0d0e21e
LW
7899 }
7900 }
4d84ee25 7901 return SvPVX_mutable(sv);
a0d0e21e
LW
7902}
7903
09540bc3
JH
7904/* sv_pvbyte () is now a macro using Perl_sv_2pv_flags();
7905 * this function provided for binary compatibility only
7906 */
7907
7908char *
7909Perl_sv_pvbyte(pTHX_ SV *sv)
7910{
7911 sv_utf8_downgrade(sv,0);
7912 return sv_pv(sv);
7913}
7914
645c22ef
DM
7915/*
7916=for apidoc sv_pvbyte
7917
baca2b92 7918Use C<SvPVbyte_nolen> instead.
645c22ef 7919
645c22ef
DM
7920=for apidoc sv_pvbyten
7921
7922A private implementation of the C<SvPVbyte> macro for compilers
7923which can't cope with complex macro expressions. Always use the macro
7924instead.
7925
7926=cut
7927*/
7928
7340a771
GS
7929char *
7930Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
7931{
ffebcc3e 7932 sv_utf8_downgrade(sv,0);
7340a771
GS
7933 return sv_pvn(sv,lp);
7934}
7935
645c22ef
DM
7936/*
7937=for apidoc sv_pvbyten_force
7938
7939A private implementation of the C<SvPVbytex_force> macro for compilers
7940which can't cope with complex macro expressions. Always use the macro
7941instead.
7942
7943=cut
7944*/
7945
7340a771
GS
7946char *
7947Perl_sv_pvbyten_force(pTHX_ SV *sv, STRLEN *lp)
7948{
46ec2f14 7949 sv_pvn_force(sv,lp);
ffebcc3e 7950 sv_utf8_downgrade(sv,0);
46ec2f14
TS
7951 *lp = SvCUR(sv);
7952 return SvPVX(sv);
7340a771
GS
7953}
7954
09540bc3
JH
7955/* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
7956 * this function provided for binary compatibility only
7957 */
7958
7959char *
7960Perl_sv_pvutf8(pTHX_ SV *sv)
7961{
7962 sv_utf8_upgrade(sv);
7963 return sv_pv(sv);
7964}
7965
645c22ef
DM
7966/*
7967=for apidoc sv_pvutf8
7968
baca2b92 7969Use the C<SvPVutf8_nolen> macro instead
645c22ef 7970
645c22ef
DM
7971=for apidoc sv_pvutf8n
7972
7973A private implementation of the C<SvPVutf8> macro for compilers
7974which can't cope with complex macro expressions. Always use the macro
7975instead.
7976
7977=cut
7978*/
7979
7340a771
GS
7980char *
7981Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
7982{
560a288e 7983 sv_utf8_upgrade(sv);
7340a771
GS
7984 return sv_pvn(sv,lp);
7985}
7986
c461cf8f
JH
7987/*
7988=for apidoc sv_pvutf8n_force
7989
645c22ef
DM
7990A private implementation of the C<SvPVutf8_force> macro for compilers
7991which can't cope with complex macro expressions. Always use the macro
7992instead.
c461cf8f
JH
7993
7994=cut
7995*/
7996
7340a771
GS
7997char *
7998Perl_sv_pvutf8n_force(pTHX_ SV *sv, STRLEN *lp)
7999{
46ec2f14 8000 sv_pvn_force(sv,lp);
560a288e 8001 sv_utf8_upgrade(sv);
46ec2f14
TS
8002 *lp = SvCUR(sv);
8003 return SvPVX(sv);
7340a771
GS
8004}
8005
c461cf8f
JH
8006/*
8007=for apidoc sv_reftype
8008
8009Returns a string describing what the SV is a reference to.
8010
8011=cut
8012*/
8013
1cb0ed9b 8014char *
bfed75c6 8015Perl_sv_reftype(pTHX_ const SV *sv, int ob)
a0d0e21e 8016{
07409e01
NC
8017 /* The fact that I don't need to downcast to char * everywhere, only in ?:
8018 inside return suggests a const propagation bug in g++. */
c86bf373 8019 if (ob && SvOBJECT(sv)) {
bfcb3514 8020 char *name = HvNAME_get(SvSTASH(sv));
07409e01 8021 return name ? name : (char *) "__ANON__";
c86bf373 8022 }
a0d0e21e
LW
8023 else {
8024 switch (SvTYPE(sv)) {
8025 case SVt_NULL:
8026 case SVt_IV:
8027 case SVt_NV:
8028 case SVt_RV:
8029 case SVt_PV:
8030 case SVt_PVIV:
8031 case SVt_PVNV:
8032 case SVt_PVMG:
8033 case SVt_PVBM:
1cb0ed9b 8034 if (SvVOK(sv))
439cb1c4 8035 return "VSTRING";
a0d0e21e
LW
8036 if (SvROK(sv))
8037 return "REF";
8038 else
8039 return "SCALAR";
1cb0ed9b 8040
07409e01 8041 case SVt_PVLV: return (char *) (SvROK(sv) ? "REF"
be65207d
DM
8042 /* tied lvalues should appear to be
8043 * scalars for backwards compatitbility */
8044 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
07409e01 8045 ? "SCALAR" : "LVALUE");
a0d0e21e
LW
8046 case SVt_PVAV: return "ARRAY";
8047 case SVt_PVHV: return "HASH";
8048 case SVt_PVCV: return "CODE";
8049 case SVt_PVGV: return "GLOB";
1d2dff63 8050 case SVt_PVFM: return "FORMAT";
27f9d8f3 8051 case SVt_PVIO: return "IO";
a0d0e21e
LW
8052 default: return "UNKNOWN";
8053 }
8054 }
8055}
8056
954c1994
GS
8057/*
8058=for apidoc sv_isobject
8059
8060Returns a boolean indicating whether the SV is an RV pointing to a blessed
8061object. If the SV is not an RV, or if the object is not blessed, then this
8062will return false.
8063
8064=cut
8065*/
8066
463ee0b2 8067int
864dbfa3 8068Perl_sv_isobject(pTHX_ SV *sv)
85e6fe83 8069{
68dc0745 8070 if (!sv)
8071 return 0;
8072 if (SvGMAGICAL(sv))
8073 mg_get(sv);
85e6fe83
LW
8074 if (!SvROK(sv))
8075 return 0;
8076 sv = (SV*)SvRV(sv);
8077 if (!SvOBJECT(sv))
8078 return 0;
8079 return 1;
8080}
8081
954c1994
GS
8082/*
8083=for apidoc sv_isa
8084
8085Returns a boolean indicating whether the SV is blessed into the specified
8086class. This does not check for subtypes; use C<sv_derived_from> to verify
8087an inheritance relationship.
8088
8089=cut
8090*/
8091
85e6fe83 8092int
864dbfa3 8093Perl_sv_isa(pTHX_ SV *sv, const char *name)
463ee0b2 8094{
bfcb3514 8095 const char *hvname;
68dc0745 8096 if (!sv)
8097 return 0;
8098 if (SvGMAGICAL(sv))
8099 mg_get(sv);
ed6116ce 8100 if (!SvROK(sv))
463ee0b2 8101 return 0;
ed6116ce
LW
8102 sv = (SV*)SvRV(sv);
8103 if (!SvOBJECT(sv))
463ee0b2 8104 return 0;
bfcb3514
NC
8105 hvname = HvNAME_get(SvSTASH(sv));
8106 if (!hvname)
e27ad1f2 8107 return 0;
463ee0b2 8108
bfcb3514 8109 return strEQ(hvname, name);
463ee0b2
LW
8110}
8111
954c1994
GS
8112/*
8113=for apidoc newSVrv
8114
8115Creates a new SV for the RV, C<rv>, to point to. If C<rv> is not an RV then
8116it will be upgraded to one. If C<classname> is non-null then the new SV will
8117be blessed in the specified package. The new SV is returned and its
8118reference count is 1.
8119
8120=cut
8121*/
8122
463ee0b2 8123SV*
864dbfa3 8124Perl_newSVrv(pTHX_ SV *rv, const char *classname)
463ee0b2 8125{
463ee0b2
LW
8126 SV *sv;
8127
4561caa4 8128 new_SV(sv);
51cf62d8 8129
765f542d 8130 SV_CHECK_THINKFIRST_COW_DROP(rv);
51cf62d8 8131 SvAMAGIC_off(rv);
51cf62d8 8132
0199fce9 8133 if (SvTYPE(rv) >= SVt_PVMG) {
a3b680e6 8134 const U32 refcnt = SvREFCNT(rv);
0199fce9
JD
8135 SvREFCNT(rv) = 0;
8136 sv_clear(rv);
8137 SvFLAGS(rv) = 0;
8138 SvREFCNT(rv) = refcnt;
8139 }
8140
51cf62d8 8141 if (SvTYPE(rv) < SVt_RV)
0199fce9
JD
8142 sv_upgrade(rv, SVt_RV);
8143 else if (SvTYPE(rv) > SVt_RV) {
8bd4d4c5 8144 SvPV_free(rv);
0199fce9
JD
8145 SvCUR_set(rv, 0);
8146 SvLEN_set(rv, 0);
8147 }
51cf62d8 8148
0c34ef67 8149 SvOK_off(rv);
b162af07 8150 SvRV_set(rv, sv);
ed6116ce 8151 SvROK_on(rv);
463ee0b2 8152
a0d0e21e
LW
8153 if (classname) {
8154 HV* stash = gv_stashpv(classname, TRUE);
8155 (void)sv_bless(rv, stash);
8156 }
8157 return sv;
8158}
8159
954c1994
GS
8160/*
8161=for apidoc sv_setref_pv
8162
8163Copies a pointer into a new SV, optionally blessing the SV. The C<rv>
8164argument will be upgraded to an RV. That RV will be modified to point to
8165the new SV. If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8166into the SV. The C<classname> argument indicates the package for the
8167blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
d34c2299 8168will have a reference count of 1, and the RV will be returned.
954c1994
GS
8169
8170Do not use with other Perl types such as HV, AV, SV, CV, because those
8171objects will become corrupted by the pointer copy process.
8172
8173Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8174
8175=cut
8176*/
8177
a0d0e21e 8178SV*
864dbfa3 8179Perl_sv_setref_pv(pTHX_ SV *rv, const char *classname, void *pv)
a0d0e21e 8180{
189b2af5 8181 if (!pv) {
3280af22 8182 sv_setsv(rv, &PL_sv_undef);
189b2af5
GS
8183 SvSETMAGIC(rv);
8184 }
a0d0e21e 8185 else
56431972 8186 sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
a0d0e21e
LW
8187 return rv;
8188}
8189
954c1994
GS
8190/*
8191=for apidoc sv_setref_iv
8192
8193Copies an integer into a new SV, optionally blessing the SV. The C<rv>
8194argument will be upgraded to an RV. That RV will be modified to point to
8195the new SV. The C<classname> argument indicates the package for the
8196blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
d34c2299 8197will have a reference count of 1, and the RV will be returned.
954c1994
GS
8198
8199=cut
8200*/
8201
a0d0e21e 8202SV*
864dbfa3 8203Perl_sv_setref_iv(pTHX_ SV *rv, const char *classname, IV iv)
a0d0e21e
LW
8204{
8205 sv_setiv(newSVrv(rv,classname), iv);
8206 return rv;
8207}
8208
954c1994 8209/*
e1c57cef
JH
8210=for apidoc sv_setref_uv
8211
8212Copies an unsigned integer into a new SV, optionally blessing the SV. The C<rv>
8213argument will be upgraded to an RV. That RV will be modified to point to
8214the new SV. The C<classname> argument indicates the package for the
8215blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
d34c2299 8216will have a reference count of 1, and the RV will be returned.
e1c57cef
JH
8217
8218=cut
8219*/
8220
8221SV*
8222Perl_sv_setref_uv(pTHX_ SV *rv, const char *classname, UV uv)
8223{
8224 sv_setuv(newSVrv(rv,classname), uv);
8225 return rv;
8226}
8227
8228/*
954c1994
GS
8229=for apidoc sv_setref_nv
8230
8231Copies a double into a new SV, optionally blessing the SV. The C<rv>
8232argument will be upgraded to an RV. That RV will be modified to point to
8233the new SV. The C<classname> argument indicates the package for the
8234blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
d34c2299 8235will have a reference count of 1, and the RV will be returned.
954c1994
GS
8236
8237=cut
8238*/
8239
a0d0e21e 8240SV*
65202027 8241Perl_sv_setref_nv(pTHX_ SV *rv, const char *classname, NV nv)
a0d0e21e
LW
8242{
8243 sv_setnv(newSVrv(rv,classname), nv);
8244 return rv;
8245}
463ee0b2 8246
954c1994
GS
8247/*
8248=for apidoc sv_setref_pvn
8249
8250Copies a string into a new SV, optionally blessing the SV. The length of the
8251string must be specified with C<n>. The C<rv> argument will be upgraded to
8252an RV. That RV will be modified to point to the new SV. The C<classname>
8253argument indicates the package for the blessing. Set C<classname> to
7a5fa8a2 8254C<Nullch> to avoid the blessing. The new SV will have a reference count
d34c2299 8255of 1, and the RV will be returned.
954c1994
GS
8256
8257Note that C<sv_setref_pv> copies the pointer while this copies the string.
8258
8259=cut
8260*/
8261
a0d0e21e 8262SV*
864dbfa3 8263Perl_sv_setref_pvn(pTHX_ SV *rv, const char *classname, char *pv, STRLEN n)
a0d0e21e
LW
8264{
8265 sv_setpvn(newSVrv(rv,classname), pv, n);
463ee0b2
LW
8266 return rv;
8267}
8268
954c1994
GS
8269/*
8270=for apidoc sv_bless
8271
8272Blesses an SV into a specified package. The SV must be an RV. The package
8273must be designated by its stash (see C<gv_stashpv()>). The reference count
8274of the SV is unaffected.
8275
8276=cut
8277*/
8278
a0d0e21e 8279SV*
864dbfa3 8280Perl_sv_bless(pTHX_ SV *sv, HV *stash)
a0d0e21e 8281{
76e3520e 8282 SV *tmpRef;
a0d0e21e 8283 if (!SvROK(sv))
cea2e8a9 8284 Perl_croak(aTHX_ "Can't bless non-reference value");
76e3520e
GS
8285 tmpRef = SvRV(sv);
8286 if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
8287 if (SvREADONLY(tmpRef))
cea2e8a9 8288 Perl_croak(aTHX_ PL_no_modify);
76e3520e
GS
8289 if (SvOBJECT(tmpRef)) {
8290 if (SvTYPE(tmpRef) != SVt_PVIO)
3280af22 8291 --PL_sv_objcount;
76e3520e 8292 SvREFCNT_dec(SvSTASH(tmpRef));
2e3febc6 8293 }
a0d0e21e 8294 }
76e3520e
GS
8295 SvOBJECT_on(tmpRef);
8296 if (SvTYPE(tmpRef) != SVt_PVIO)
3280af22 8297 ++PL_sv_objcount;
862a34c6 8298 SvUPGRADE(tmpRef, SVt_PVMG);
b162af07 8299 SvSTASH_set(tmpRef, (HV*)SvREFCNT_inc(stash));
a0d0e21e 8300
2e3febc6
CS
8301 if (Gv_AMG(stash))
8302 SvAMAGIC_on(sv);
8303 else
8304 SvAMAGIC_off(sv);
a0d0e21e 8305
1edbfb88
AB
8306 if(SvSMAGICAL(tmpRef))
8307 if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
8308 mg_set(tmpRef);
8309
8310
ecdeb87c 8311
a0d0e21e
LW
8312 return sv;
8313}
8314
645c22ef 8315/* Downgrades a PVGV to a PVMG.
645c22ef
DM
8316 */
8317
76e3520e 8318STATIC void
cea2e8a9 8319S_sv_unglob(pTHX_ SV *sv)
a0d0e21e 8320{
850fabdf
GS
8321 void *xpvmg;
8322
a0d0e21e
LW
8323 assert(SvTYPE(sv) == SVt_PVGV);
8324 SvFAKE_off(sv);
8325 if (GvGP(sv))
1edc1566 8326 gp_free((GV*)sv);
e826b3c7
GS
8327 if (GvSTASH(sv)) {
8328 SvREFCNT_dec(GvSTASH(sv));
8329 GvSTASH(sv) = Nullhv;
8330 }
14befaf4 8331 sv_unmagic(sv, PERL_MAGIC_glob);
a0d0e21e 8332 Safefree(GvNAME(sv));
a5f75d66 8333 GvMULTI_off(sv);
850fabdf
GS
8334
8335 /* need to keep SvANY(sv) in the right arena */
8336 xpvmg = new_XPVMG();
8337 StructCopy(SvANY(sv), xpvmg, XPVMG);
8338 del_XPVGV(SvANY(sv));
8339 SvANY(sv) = xpvmg;
8340
a0d0e21e
LW
8341 SvFLAGS(sv) &= ~SVTYPEMASK;
8342 SvFLAGS(sv) |= SVt_PVMG;
8343}
8344
954c1994 8345/*
840a7b70 8346=for apidoc sv_unref_flags
954c1994
GS
8347
8348Unsets the RV status of the SV, and decrements the reference count of
8349whatever was being referenced by the RV. This can almost be thought of
840a7b70
IZ
8350as a reversal of C<newSVrv>. The C<cflags> argument can contain
8351C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
8352(otherwise the decrementing is conditional on the reference count being
8353different from one or the reference being a readonly SV).
7889fe52 8354See C<SvROK_off>.
954c1994
GS
8355
8356=cut
8357*/
8358
ed6116ce 8359void
840a7b70 8360Perl_sv_unref_flags(pTHX_ SV *sv, U32 flags)
ed6116ce 8361{
a0d0e21e 8362 SV* rv = SvRV(sv);
810b8aa5
GS
8363
8364 if (SvWEAKREF(sv)) {
8365 sv_del_backref(sv);
8366 SvWEAKREF_off(sv);
b162af07 8367 SvRV_set(sv, NULL);
810b8aa5
GS
8368 return;
8369 }
b162af07 8370 SvRV_set(sv, NULL);
ed6116ce 8371 SvROK_off(sv);
04ca4930
NC
8372 /* You can't have a || SvREADONLY(rv) here, as $a = $$a, where $a was
8373 assigned to as BEGIN {$a = \"Foo"} will fail. */
8374 if (SvREFCNT(rv) != 1 || (flags & SV_IMMEDIATE_UNREF))
4633a7c4 8375 SvREFCNT_dec(rv);
840a7b70 8376 else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
4633a7c4 8377 sv_2mortal(rv); /* Schedule for freeing later */
ed6116ce 8378}
8990e307 8379
840a7b70
IZ
8380/*
8381=for apidoc sv_unref
8382
8383Unsets the RV status of the SV, and decrements the reference count of
8384whatever was being referenced by the RV. This can almost be thought of
8385as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
7889fe52 8386being zero. See C<SvROK_off>.
840a7b70
IZ
8387
8388=cut
8389*/
8390
8391void
8392Perl_sv_unref(pTHX_ SV *sv)
8393{
8394 sv_unref_flags(sv, 0);
8395}
8396
645c22ef
DM
8397/*
8398=for apidoc sv_taint
8399
8400Taint an SV. Use C<SvTAINTED_on> instead.
8401=cut
8402*/
8403
bbce6d69 8404void
864dbfa3 8405Perl_sv_taint(pTHX_ SV *sv)
bbce6d69 8406{
14befaf4 8407 sv_magic((sv), Nullsv, PERL_MAGIC_taint, Nullch, 0);
bbce6d69 8408}
8409
645c22ef
DM
8410/*
8411=for apidoc sv_untaint
8412
8413Untaint an SV. Use C<SvTAINTED_off> instead.
8414=cut
8415*/
8416
bbce6d69 8417void
864dbfa3 8418Perl_sv_untaint(pTHX_ SV *sv)
bbce6d69 8419{
13f57bf8 8420 if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
14befaf4 8421 MAGIC *mg = mg_find(sv, PERL_MAGIC_taint);
36477c24 8422 if (mg)
565764a8 8423 mg->mg_len &= ~1;
36477c24 8424 }
bbce6d69 8425}
8426
645c22ef
DM
8427/*
8428=for apidoc sv_tainted
8429
8430Test an SV for taintedness. Use C<SvTAINTED> instead.
8431=cut
8432*/
8433
bbce6d69 8434bool
864dbfa3 8435Perl_sv_tainted(pTHX_ SV *sv)
bbce6d69 8436{
13f57bf8 8437 if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
a28509cc 8438 MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
155aba94 8439 if (mg && ((mg->mg_len & 1) || ((mg->mg_len & 2) && mg->mg_obj == sv)))
36477c24 8440 return TRUE;
8441 }
8442 return FALSE;
bbce6d69 8443}
8444
09540bc3
JH
8445/*
8446=for apidoc sv_setpviv
8447
8448Copies an integer into the given SV, also updating its string value.
8449Does not handle 'set' magic. See C<sv_setpviv_mg>.
8450
8451=cut
8452*/
8453
8454void
8455Perl_sv_setpviv(pTHX_ SV *sv, IV iv)
8456{
8457 char buf[TYPE_CHARS(UV)];
8458 char *ebuf;
8459 char *ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8460
8461 sv_setpvn(sv, ptr, ebuf - ptr);
8462}
8463
8464/*
8465=for apidoc sv_setpviv_mg
8466
8467Like C<sv_setpviv>, but also handles 'set' magic.
8468
8469=cut
8470*/
8471
8472void
8473Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv)
8474{
8475 char buf[TYPE_CHARS(UV)];
8476 char *ebuf;
8477 char *ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8478
8479 sv_setpvn(sv, ptr, ebuf - ptr);
8480 SvSETMAGIC(sv);
8481}
8482
cea2e8a9 8483#if defined(PERL_IMPLICIT_CONTEXT)
645c22ef
DM
8484
8485/* pTHX_ magic can't cope with varargs, so this is a no-context
8486 * version of the main function, (which may itself be aliased to us).
8487 * Don't access this version directly.
8488 */
8489
cea2e8a9
GS
8490void
8491Perl_sv_setpvf_nocontext(SV *sv, const char* pat, ...)
8492{
8493 dTHX;
8494 va_list args;
8495 va_start(args, pat);
c5be433b 8496 sv_vsetpvf(sv, pat, &args);
cea2e8a9
GS
8497 va_end(args);
8498}
8499
645c22ef
DM
8500/* pTHX_ magic can't cope with varargs, so this is a no-context
8501 * version of the main function, (which may itself be aliased to us).
8502 * Don't access this version directly.
8503 */
cea2e8a9
GS
8504
8505void
8506Perl_sv_setpvf_mg_nocontext(SV *sv, const char* pat, ...)
8507{
8508 dTHX;
8509 va_list args;
8510 va_start(args, pat);
c5be433b 8511 sv_vsetpvf_mg(sv, pat, &args);
cea2e8a9 8512 va_end(args);
cea2e8a9
GS
8513}
8514#endif
8515
954c1994
GS
8516/*
8517=for apidoc sv_setpvf
8518
bffc3d17
SH
8519Works like C<sv_catpvf> but copies the text into the SV instead of
8520appending it. Does not handle 'set' magic. See C<sv_setpvf_mg>.
954c1994
GS
8521
8522=cut
8523*/
8524
46fc3d4c 8525void
864dbfa3 8526Perl_sv_setpvf(pTHX_ SV *sv, const char* pat, ...)
46fc3d4c 8527{
8528 va_list args;
46fc3d4c 8529 va_start(args, pat);
c5be433b 8530 sv_vsetpvf(sv, pat, &args);
46fc3d4c 8531 va_end(args);
8532}
8533
bffc3d17
SH
8534/*
8535=for apidoc sv_vsetpvf
8536
8537Works like C<sv_vcatpvf> but copies the text into the SV instead of
8538appending it. Does not handle 'set' magic. See C<sv_vsetpvf_mg>.
8539
8540Usually used via its frontend C<sv_setpvf>.
8541
8542=cut
8543*/
645c22ef 8544
c5be433b
GS
8545void
8546Perl_sv_vsetpvf(pTHX_ SV *sv, const char* pat, va_list* args)
8547{
8548 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
8549}
ef50df4b 8550
954c1994
GS
8551/*
8552=for apidoc sv_setpvf_mg
8553
8554Like C<sv_setpvf>, but also handles 'set' magic.
8555
8556=cut
8557*/
8558
ef50df4b 8559void
864dbfa3 8560Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...)
ef50df4b
GS
8561{
8562 va_list args;
ef50df4b 8563 va_start(args, pat);
c5be433b 8564 sv_vsetpvf_mg(sv, pat, &args);
ef50df4b 8565 va_end(args);
c5be433b
GS
8566}
8567
bffc3d17
SH
8568/*
8569=for apidoc sv_vsetpvf_mg
8570
8571Like C<sv_vsetpvf>, but also handles 'set' magic.
8572
8573Usually used via its frontend C<sv_setpvf_mg>.
8574
8575=cut
8576*/
645c22ef 8577
c5be433b
GS
8578void
8579Perl_sv_vsetpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
8580{
8581 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
ef50df4b
GS
8582 SvSETMAGIC(sv);
8583}
8584
cea2e8a9 8585#if defined(PERL_IMPLICIT_CONTEXT)
645c22ef
DM
8586
8587/* pTHX_ magic can't cope with varargs, so this is a no-context
8588 * version of the main function, (which may itself be aliased to us).
8589 * Don't access this version directly.
8590 */
8591
cea2e8a9
GS
8592void
8593Perl_sv_catpvf_nocontext(SV *sv, const char* pat, ...)
8594{
8595 dTHX;
8596 va_list args;
8597 va_start(args, pat);
c5be433b 8598 sv_vcatpvf(sv, pat, &args);
cea2e8a9
GS
8599 va_end(args);
8600}
8601
645c22ef
DM
8602/* pTHX_ magic can't cope with varargs, so this is a no-context
8603 * version of the main function, (which may itself be aliased to us).
8604 * Don't access this version directly.
8605 */
8606
cea2e8a9
GS
8607void
8608Perl_sv_catpvf_mg_nocontext(SV *sv, const char* pat, ...)
8609{
8610 dTHX;
8611 va_list args;
8612 va_start(args, pat);
c5be433b 8613 sv_vcatpvf_mg(sv, pat, &args);
cea2e8a9 8614 va_end(args);
cea2e8a9
GS
8615}
8616#endif
8617
954c1994
GS
8618/*
8619=for apidoc sv_catpvf
8620
d5ce4a7c
GA
8621Processes its arguments like C<sprintf> and appends the formatted
8622output to an SV. If the appended data contains "wide" characters
8623(including, but not limited to, SVs with a UTF-8 PV formatted with %s,
8624and characters >255 formatted with %c), the original SV might get
bffc3d17 8625upgraded to UTF-8. Handles 'get' magic, but not 'set' magic. See
cdd94ca7
NC
8626C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
8627valid UTF-8; if the original SV was bytes, the pattern should be too.
954c1994 8628
d5ce4a7c 8629=cut */
954c1994 8630
46fc3d4c 8631void
864dbfa3 8632Perl_sv_catpvf(pTHX_ SV *sv, const char* pat, ...)
46fc3d4c 8633{
8634 va_list args;
46fc3d4c 8635 va_start(args, pat);
c5be433b 8636 sv_vcatpvf(sv, pat, &args);
46fc3d4c 8637 va_end(args);
8638}
8639
bffc3d17
SH
8640/*
8641=for apidoc sv_vcatpvf
8642
8643Processes its arguments like C<vsprintf> and appends the formatted output
8644to an SV. Does not handle 'set' magic. See C<sv_vcatpvf_mg>.
8645
8646Usually used via its frontend C<sv_catpvf>.
8647
8648=cut
8649*/
645c22ef 8650
ef50df4b 8651void
c5be433b
GS
8652Perl_sv_vcatpvf(pTHX_ SV *sv, const char* pat, va_list* args)
8653{
8654 sv_vcatpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
8655}
8656
954c1994
GS
8657/*
8658=for apidoc sv_catpvf_mg
8659
8660Like C<sv_catpvf>, but also handles 'set' magic.
8661
8662=cut
8663*/
8664
c5be433b 8665void
864dbfa3 8666Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...)
ef50df4b
GS
8667{
8668 va_list args;
ef50df4b 8669 va_start(args, pat);
c5be433b 8670 sv_vcatpvf_mg(sv, pat, &args);
ef50df4b 8671 va_end(args);
c5be433b
GS
8672}
8673
bffc3d17
SH
8674/*
8675=for apidoc sv_vcatpvf_mg
8676
8677Like C<sv_vcatpvf>, but also handles 'set' magic.
8678
8679Usually used via its frontend C<sv_catpvf_mg>.
8680
8681=cut
8682*/
645c22ef 8683
c5be433b
GS
8684void
8685Perl_sv_vcatpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
8686{
8687 sv_vcatpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
ef50df4b
GS
8688 SvSETMAGIC(sv);
8689}
8690
954c1994
GS
8691/*
8692=for apidoc sv_vsetpvfn
8693
bffc3d17 8694Works like C<sv_vcatpvfn> but copies the text into the SV instead of
954c1994
GS
8695appending it.
8696
bffc3d17 8697Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
645c22ef 8698
954c1994
GS
8699=cut
8700*/
8701
46fc3d4c 8702void
7d5ea4e7 8703Perl_sv_vsetpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
46fc3d4c 8704{
8705 sv_setpvn(sv, "", 0);
7d5ea4e7 8706 sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
46fc3d4c 8707}
8708
645c22ef
DM
8709/* private function for use in sv_vcatpvfn via the EXPECT_NUMBER macro */
8710
2d00ba3b 8711STATIC I32
9dd79c3f 8712S_expect_number(pTHX_ char** pattern)
211dfcf1
HS
8713{
8714 I32 var = 0;
8715 switch (**pattern) {
8716 case '1': case '2': case '3':
8717 case '4': case '5': case '6':
8718 case '7': case '8': case '9':
8719 while (isDIGIT(**pattern))
8720 var = var * 10 + (*(*pattern)++ - '0');
8721 }
8722 return var;
8723}
9dd79c3f 8724#define EXPECT_NUMBER(pattern, var) (var = S_expect_number(aTHX_ &pattern))
211dfcf1 8725
4151a5fe
IZ
8726static char *
8727F0convert(NV nv, char *endbuf, STRLEN *len)
8728{
a3b680e6 8729 const int neg = nv < 0;
4151a5fe 8730 UV uv;
4151a5fe
IZ
8731
8732 if (neg)
8733 nv = -nv;
8734 if (nv < UV_MAX) {
b464bac0 8735 char *p = endbuf;
4151a5fe 8736 nv += 0.5;
028f8eaa 8737 uv = (UV)nv;
4151a5fe
IZ
8738 if (uv & 1 && uv == nv)
8739 uv--; /* Round to even */
8740 do {
a3b680e6 8741 const unsigned dig = uv % 10;
4151a5fe
IZ
8742 *--p = '0' + dig;
8743 } while (uv /= 10);
8744 if (neg)
8745 *--p = '-';
8746 *len = endbuf - p;
8747 return p;
8748 }
8749 return Nullch;
8750}
8751
8752
954c1994
GS
8753/*
8754=for apidoc sv_vcatpvfn
8755
8756Processes its arguments like C<vsprintf> and appends the formatted output
8757to an SV. Uses an array of SVs if the C style variable argument list is
8758missing (NULL). When running with taint checks enabled, indicates via
8759C<maybe_tainted> if results are untrustworthy (often due to the use of
8760locales).
8761
bffc3d17 8762Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
645c22ef 8763
954c1994
GS
8764=cut
8765*/
8766
1ef29b0e
RGS
8767/* XXX maybe_tainted is never assigned to, so the doc above is lying. */
8768
46fc3d4c 8769void
7d5ea4e7 8770Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
46fc3d4c 8771{
8772 char *p;
8773 char *q;
a3b680e6 8774 const char *patend;
fc36a67e 8775 STRLEN origlen;
46fc3d4c 8776 I32 svix = 0;
27da23d5 8777 static const char nullstr[] = "(null)";
9c5ffd7c 8778 SV *argsv = Nullsv;
b464bac0
AL
8779 bool has_utf8 = DO_UTF8(sv); /* has the result utf8? */
8780 const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
db79b45b 8781 SV *nsv = Nullsv;
4151a5fe
IZ
8782 /* Times 4: a decimal digit takes more than 3 binary digits.
8783 * NV_DIG: mantissa takes than many decimal digits.
8784 * Plus 32: Playing safe. */
8785 char ebuf[IV_DIG * 4 + NV_DIG + 32];
8786 /* large enough for "%#.#f" --chip */
8787 /* what about long double NVs? --jhi */
db79b45b 8788
46fc3d4c 8789 /* no matter what, this is a string now */
fc36a67e 8790 (void)SvPV_force(sv, origlen);
46fc3d4c 8791
0dbb1585 8792 /* special-case "", "%s", and "%-p" (SVf) */
46fc3d4c 8793 if (patlen == 0)
8794 return;
0dbb1585 8795 if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
c635e13b 8796 if (args) {
73d840c0 8797 const char *s = va_arg(*args, char*);
c635e13b 8798 sv_catpv(sv, s ? s : nullstr);
8799 }
7e2040f0 8800 else if (svix < svmax) {
fc36a67e 8801 sv_catsv(sv, *svargs);
7e2040f0
GS
8802 if (DO_UTF8(*svargs))
8803 SvUTF8_on(sv);
8804 }
fc36a67e 8805 return;
0dbb1585
AL
8806 }
8807 if (patlen == 3 && pat[0] == '%' &&
8808 pat[1] == '-' && pat[2] == 'p') {
fc36a67e 8809 if (args) {
7e2040f0
GS
8810 argsv = va_arg(*args, SV*);
8811 sv_catsv(sv, argsv);
8812 if (DO_UTF8(argsv))
8813 SvUTF8_on(sv);
fc36a67e 8814 return;
8815 }
46fc3d4c 8816 }
8817
1d917b39 8818#ifndef USE_LONG_DOUBLE
4151a5fe
IZ
8819 /* special-case "%.<number>[gf]" */
8820 if ( patlen <= 5 && pat[0] == '%' && pat[1] == '.'
8821 && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
8822 unsigned digits = 0;
8823 const char *pp;
8824
8825 pp = pat + 2;
8826 while (*pp >= '0' && *pp <= '9')
8827 digits = 10 * digits + (*pp++ - '0');
028f8eaa 8828 if (pp - pat == (int)patlen - 1) {
4151a5fe
IZ
8829 NV nv;
8830
8831 if (args)
8832 nv = (NV)va_arg(*args, double);
8833 else if (svix < svmax)
8834 nv = SvNV(*svargs);
8835 else
8836 return;
8837 if (*pp == 'g') {
2873255c
NC
8838 /* Add check for digits != 0 because it seems that some
8839 gconverts are buggy in this case, and we don't yet have
8840 a Configure test for this. */
8841 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
8842 /* 0, point, slack */
2e59c212 8843 Gconvert(nv, (int)digits, 0, ebuf);
4151a5fe
IZ
8844 sv_catpv(sv, ebuf);
8845 if (*ebuf) /* May return an empty string for digits==0 */
8846 return;
8847 }
8848 } else if (!digits) {
8849 STRLEN l;
8850
8851 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
8852 sv_catpvn(sv, p, l);
8853 return;
8854 }
8855 }
8856 }
8857 }
1d917b39 8858#endif /* !USE_LONG_DOUBLE */
4151a5fe 8859
2cf2cfc6 8860 if (!args && svix < svmax && DO_UTF8(*svargs))
205f51d8 8861 has_utf8 = TRUE;
2cf2cfc6 8862
46fc3d4c 8863 patend = (char*)pat + patlen;
8864 for (p = (char*)pat; p < patend; p = q) {
8865 bool alt = FALSE;
8866 bool left = FALSE;
b22c7a20 8867 bool vectorize = FALSE;
211dfcf1 8868 bool vectorarg = FALSE;
2cf2cfc6 8869 bool vec_utf8 = FALSE;
46fc3d4c 8870 char fill = ' ';
8871 char plus = 0;
8872 char intsize = 0;
8873 STRLEN width = 0;
fc36a67e 8874 STRLEN zeros = 0;
46fc3d4c 8875 bool has_precis = FALSE;
8876 STRLEN precis = 0;
58e33a90 8877 I32 osvix = svix;
2cf2cfc6 8878 bool is_utf8 = FALSE; /* is this item utf8? */
20f6aaab
AS
8879#ifdef HAS_LDBL_SPRINTF_BUG
8880 /* This is to try to fix a bug with irix/nonstop-ux/powerux and
205f51d8 8881 with sfio - Allen <allens@cpan.org> */
20f6aaab
AS
8882 bool fix_ldbl_sprintf_bug = FALSE;
8883#endif
205f51d8 8884
46fc3d4c 8885 char esignbuf[4];
89ebb4a3 8886 U8 utf8buf[UTF8_MAXBYTES+1];
46fc3d4c 8887 STRLEN esignlen = 0;
8888
4d84ee25 8889 const char *eptr = Nullch;
fc36a67e 8890 STRLEN elen = 0;
81f715da 8891 SV *vecsv = Nullsv;
245d4a47 8892 const U8 *vecstr = Null(U8*);
b22c7a20 8893 STRLEN veclen = 0;
934abaf1 8894 char c = 0;
46fc3d4c 8895 int i;
9c5ffd7c 8896 unsigned base = 0;
8c8eb53c
RB
8897 IV iv = 0;
8898 UV uv = 0;
9e5b023a
JH
8899 /* we need a long double target in case HAS_LONG_DOUBLE but
8900 not USE_LONG_DOUBLE
8901 */
35fff930 8902#if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9e5b023a
JH
8903 long double nv;
8904#else
65202027 8905 NV nv;
9e5b023a 8906#endif
46fc3d4c 8907 STRLEN have;
8908 STRLEN need;
8909 STRLEN gap;
e1ec3a88 8910 const char *dotstr = ".";
b22c7a20 8911 STRLEN dotstrlen = 1;
211dfcf1 8912 I32 efix = 0; /* explicit format parameter index */
eb3fce90 8913 I32 ewix = 0; /* explicit width index */
211dfcf1
HS
8914 I32 epix = 0; /* explicit precision index */
8915 I32 evix = 0; /* explicit vector index */
eb3fce90 8916 bool asterisk = FALSE;
46fc3d4c 8917
211dfcf1 8918 /* echo everything up to the next format specification */
46fc3d4c 8919 for (q = p; q < patend && *q != '%'; ++q) ;
8920 if (q > p) {
db79b45b
JH
8921 if (has_utf8 && !pat_utf8)
8922 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
8923 else
8924 sv_catpvn(sv, p, q - p);
46fc3d4c 8925 p = q;
8926 }
8927 if (q++ >= patend)
8928 break;
8929
211dfcf1
HS
8930/*
8931 We allow format specification elements in this order:
8932 \d+\$ explicit format parameter index
8933 [-+ 0#]+ flags
a472f209 8934 v|\*(\d+\$)?v vector with optional (optionally specified) arg
f3583277 8935 0 flag (as above): repeated to allow "v02"
211dfcf1
HS
8936 \d+|\*(\d+\$)? width using optional (optionally specified) arg
8937 \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
8938 [hlqLV] size
8939 [%bcdefginopsux_DFOUX] format (mandatory)
8940*/
8941 if (EXPECT_NUMBER(q, width)) {
8942 if (*q == '$') {
8943 ++q;
8944 efix = width;
8945 } else {
8946 goto gotwidth;
8947 }
8948 }
8949
fc36a67e 8950 /* FLAGS */
8951
46fc3d4c 8952 while (*q) {
8953 switch (*q) {
8954 case ' ':
8955 case '+':
8956 plus = *q++;
8957 continue;
8958
8959 case '-':
8960 left = TRUE;
8961 q++;
8962 continue;
8963
8964 case '0':
8965 fill = *q++;
8966 continue;
8967
8968 case '#':
8969 alt = TRUE;
8970 q++;
8971 continue;
8972
fc36a67e 8973 default:
8974 break;
8975 }
8976 break;
8977 }
46fc3d4c 8978
211dfcf1 8979 tryasterisk:
eb3fce90 8980 if (*q == '*') {
211dfcf1
HS
8981 q++;
8982 if (EXPECT_NUMBER(q, ewix))
8983 if (*q++ != '$')
8984 goto unknown;
eb3fce90 8985 asterisk = TRUE;
211dfcf1
HS
8986 }
8987 if (*q == 'v') {
eb3fce90 8988 q++;
211dfcf1
HS
8989 if (vectorize)
8990 goto unknown;
9cbac4c7 8991 if ((vectorarg = asterisk)) {
211dfcf1
HS
8992 evix = ewix;
8993 ewix = 0;
8994 asterisk = FALSE;
8995 }
8996 vectorize = TRUE;
8997 goto tryasterisk;
eb3fce90
JH
8998 }
8999
211dfcf1 9000 if (!asterisk)
7a5fa8a2 9001 if( *q == '0' )
f3583277 9002 fill = *q++;
211dfcf1
HS
9003 EXPECT_NUMBER(q, width);
9004
9005 if (vectorize) {
9006 if (vectorarg) {
9007 if (args)
9008 vecsv = va_arg(*args, SV*);
9009 else
9010 vecsv = (evix ? evix <= svmax : svix < svmax) ?
3a7a539e 9011 svargs[evix ? evix-1 : svix++] : &PL_sv_undef;
245d4a47 9012 dotstr = SvPV_const(vecsv, dotstrlen);
211dfcf1 9013 if (DO_UTF8(vecsv))
2cf2cfc6 9014 is_utf8 = TRUE;
211dfcf1
HS
9015 }
9016 if (args) {
9017 vecsv = va_arg(*args, SV*);
245d4a47 9018 vecstr = (U8*)SvPV_const(vecsv,veclen);
2cf2cfc6 9019 vec_utf8 = DO_UTF8(vecsv);
eb3fce90 9020 }
211dfcf1
HS
9021 else if (efix ? efix <= svmax : svix < svmax) {
9022 vecsv = svargs[efix ? efix-1 : svix++];
245d4a47 9023 vecstr = (U8*)SvPV_const(vecsv,veclen);
2cf2cfc6 9024 vec_utf8 = DO_UTF8(vecsv);
d7aa5382 9025 /* if this is a version object, we need to return the
3f7c398e 9026 * stringified representation (which the SvPVX_const has
d7aa5382
JP
9027 * already done for us), but not vectorize the args
9028 */
9029 if ( *q == 'd' && sv_derived_from(vecsv,"version") )
9030 {
9031 q++; /* skip past the rest of the %vd format */
245d4a47 9032 eptr = (const char *) vecstr;
d7aa5382
JP
9033 elen = strlen(eptr);
9034 vectorize=FALSE;
9035 goto string;
9036 }
211dfcf1
HS
9037 }
9038 else {
9039 vecstr = (U8*)"";
9040 veclen = 0;
9041 }
eb3fce90 9042 }
fc36a67e 9043
eb3fce90 9044 if (asterisk) {
fc36a67e 9045 if (args)
9046 i = va_arg(*args, int);
9047 else
eb3fce90
JH
9048 i = (ewix ? ewix <= svmax : svix < svmax) ?
9049 SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
fc36a67e 9050 left |= (i < 0);
9051 width = (i < 0) ? -i : i;
fc36a67e 9052 }
211dfcf1 9053 gotwidth:
fc36a67e 9054
9055 /* PRECISION */
46fc3d4c 9056
fc36a67e 9057 if (*q == '.') {
9058 q++;
9059 if (*q == '*') {
211dfcf1 9060 q++;
7b8dd722
HS
9061 if (EXPECT_NUMBER(q, epix) && *q++ != '$')
9062 goto unknown;
9063 /* XXX: todo, support specified precision parameter */
9064 if (epix)
211dfcf1 9065 goto unknown;
46fc3d4c 9066 if (args)
9067 i = va_arg(*args, int);
9068 else
eb3fce90
JH
9069 i = (ewix ? ewix <= svmax : svix < svmax)
9070 ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
fc36a67e 9071 precis = (i < 0) ? 0 : i;
fc36a67e 9072 }
9073 else {
9074 precis = 0;
9075 while (isDIGIT(*q))
9076 precis = precis * 10 + (*q++ - '0');
9077 }
9078 has_precis = TRUE;
9079 }
46fc3d4c 9080
fc36a67e 9081 /* SIZE */
46fc3d4c 9082
fc36a67e 9083 switch (*q) {
c623ac67
GS
9084#ifdef WIN32
9085 case 'I': /* Ix, I32x, and I64x */
9086# ifdef WIN64
9087 if (q[1] == '6' && q[2] == '4') {
9088 q += 3;
9089 intsize = 'q';
9090 break;
9091 }
9092# endif
9093 if (q[1] == '3' && q[2] == '2') {
9094 q += 3;
9095 break;
9096 }
9097# ifdef WIN64
9098 intsize = 'q';
9099# endif
9100 q++;
9101 break;
9102#endif
9e5b023a 9103#if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
6f9bb7fd 9104 case 'L': /* Ld */
e5c81feb 9105 /* FALL THROUGH */
e5c81feb 9106#ifdef HAS_QUAD
6f9bb7fd 9107 case 'q': /* qd */
9e5b023a 9108#endif
6f9bb7fd
GS
9109 intsize = 'q';
9110 q++;
9111 break;
9112#endif
fc36a67e 9113 case 'l':
9e5b023a 9114#if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
205f51d8 9115 if (*(q + 1) == 'l') { /* lld, llf */
fc36a67e 9116 intsize = 'q';
9117 q += 2;
46fc3d4c 9118 break;
cf2093f6 9119 }
fc36a67e 9120#endif
6f9bb7fd 9121 /* FALL THROUGH */
fc36a67e 9122 case 'h':
cf2093f6 9123 /* FALL THROUGH */
fc36a67e 9124 case 'V':
9125 intsize = *q++;
46fc3d4c 9126 break;
9127 }
9128
fc36a67e 9129 /* CONVERSION */
9130
211dfcf1
HS
9131 if (*q == '%') {
9132 eptr = q++;
9133 elen = 1;
9134 goto string;
9135 }
9136
be75b157
HS
9137 if (vectorize)
9138 argsv = vecsv;
9139 else if (!args)
211dfcf1
HS
9140 argsv = (efix ? efix <= svmax : svix < svmax) ?
9141 svargs[efix ? efix-1 : svix++] : &PL_sv_undef;
9142
46fc3d4c 9143 switch (c = *q++) {
9144
9145 /* STRINGS */
9146
46fc3d4c 9147 case 'c':
be75b157 9148 uv = (args && !vectorize) ? va_arg(*args, int) : SvIVx(argsv);
1bd104fb
JH
9149 if ((uv > 255 ||
9150 (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
0064a8a9 9151 && !IN_BYTES) {
dfe13c55 9152 eptr = (char*)utf8buf;
9041c2e3 9153 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
2cf2cfc6 9154 is_utf8 = TRUE;
7e2040f0
GS
9155 }
9156 else {
9157 c = (char)uv;
9158 eptr = &c;
9159 elen = 1;
a0ed51b3 9160 }
46fc3d4c 9161 goto string;
9162
46fc3d4c 9163 case 's':
be75b157 9164 if (args && !vectorize) {
fc36a67e 9165 eptr = va_arg(*args, char*);
c635e13b 9166 if (eptr)
1d7c1841
GS
9167#ifdef MACOS_TRADITIONAL
9168 /* On MacOS, %#s format is used for Pascal strings */
9169 if (alt)
9170 elen = *eptr++;
9171 else
9172#endif
c635e13b 9173 elen = strlen(eptr);
9174 else {
27da23d5 9175 eptr = (char *)nullstr;
c635e13b 9176 elen = sizeof nullstr - 1;
9177 }
46fc3d4c 9178 }
211dfcf1 9179 else {
4d84ee25 9180 eptr = SvPVx_const(argsv, elen);
7e2040f0 9181 if (DO_UTF8(argsv)) {
a0ed51b3
LW
9182 if (has_precis && precis < elen) {
9183 I32 p = precis;
7e2040f0 9184 sv_pos_u2b(argsv, &p, 0); /* sticks at end */
a0ed51b3
LW
9185 precis = p;
9186 }
9187 if (width) { /* fudge width (can't fudge elen) */
7e2040f0 9188 width += elen - sv_len_utf8(argsv);
a0ed51b3 9189 }
2cf2cfc6 9190 is_utf8 = TRUE;
a0ed51b3
LW
9191 }
9192 }
fc36a67e 9193
46fc3d4c 9194 string:
b22c7a20 9195 vectorize = FALSE;
46fc3d4c 9196 if (has_precis && elen > precis)
9197 elen = precis;
9198 break;
9199
9200 /* INTEGERS */
9201
fc36a67e 9202 case 'p':
0dbb1585 9203 if (left && args) { /* SVf */
5df617be 9204 left = FALSE;
0dbb1585
AL
9205 if (width) {
9206 precis = width;
9207 has_precis = TRUE;
9208 width = 0;
9209 }
9210 if (vectorize)
9211 goto unknown;
9212 argsv = va_arg(*args, SV*);
4d84ee25 9213 eptr = SvPVx_const(argsv, elen);
0dbb1585
AL
9214 if (DO_UTF8(argsv))
9215 is_utf8 = TRUE;
9216 goto string;
5df617be 9217 }
be75b157 9218 if (alt || vectorize)
c2e66d9e 9219 goto unknown;
211dfcf1 9220 uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
fc36a67e 9221 base = 16;
9222 goto integer;
9223
46fc3d4c 9224 case 'D':
29fe7a80 9225#ifdef IV_IS_QUAD
22f3ae8c 9226 intsize = 'q';
29fe7a80 9227#else
46fc3d4c 9228 intsize = 'l';
29fe7a80 9229#endif
46fc3d4c 9230 /* FALL THROUGH */
9231 case 'd':
9232 case 'i':
b22c7a20 9233 if (vectorize) {
ba210ebe 9234 STRLEN ulen;
211dfcf1
HS
9235 if (!veclen)
9236 continue;
2cf2cfc6
A
9237 if (vec_utf8)
9238 uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9239 UTF8_ALLOW_ANYUV);
b22c7a20 9240 else {
e83d50c9 9241 uv = *vecstr;
b22c7a20
GS
9242 ulen = 1;
9243 }
9244 vecstr += ulen;
9245 veclen -= ulen;
e83d50c9
JP
9246 if (plus)
9247 esignbuf[esignlen++] = plus;
b22c7a20
GS
9248 }
9249 else if (args) {
46fc3d4c 9250 switch (intsize) {
9251 case 'h': iv = (short)va_arg(*args, int); break;
46fc3d4c 9252 case 'l': iv = va_arg(*args, long); break;
fc36a67e 9253 case 'V': iv = va_arg(*args, IV); break;
b10c0dba 9254 default: iv = va_arg(*args, int); break;
cf2093f6
JH
9255#ifdef HAS_QUAD
9256 case 'q': iv = va_arg(*args, Quad_t); break;
9257#endif
46fc3d4c 9258 }
9259 }
9260 else {
b10c0dba 9261 IV tiv = SvIVx(argsv); /* work around GCC bug #13488 */
46fc3d4c 9262 switch (intsize) {
b10c0dba
MHM
9263 case 'h': iv = (short)tiv; break;
9264 case 'l': iv = (long)tiv; break;
9265 case 'V':
9266 default: iv = tiv; break;
cf2093f6 9267#ifdef HAS_QUAD
b10c0dba 9268 case 'q': iv = (Quad_t)tiv; break;
cf2093f6 9269#endif
46fc3d4c 9270 }
9271 }
e83d50c9
JP
9272 if ( !vectorize ) /* we already set uv above */
9273 {
9274 if (iv >= 0) {
9275 uv = iv;
9276 if (plus)
9277 esignbuf[esignlen++] = plus;
9278 }
9279 else {
9280 uv = -iv;
9281 esignbuf[esignlen++] = '-';
9282 }
46fc3d4c 9283 }
9284 base = 10;
9285 goto integer;
9286
fc36a67e 9287 case 'U':
29fe7a80 9288#ifdef IV_IS_QUAD
22f3ae8c 9289 intsize = 'q';
29fe7a80 9290#else
fc36a67e 9291 intsize = 'l';
29fe7a80 9292#endif
fc36a67e 9293 /* FALL THROUGH */
9294 case 'u':
9295 base = 10;
9296 goto uns_integer;
9297
4f19785b
WSI
9298 case 'b':
9299 base = 2;
9300 goto uns_integer;
9301
46fc3d4c 9302 case 'O':
29fe7a80 9303#ifdef IV_IS_QUAD
22f3ae8c 9304 intsize = 'q';
29fe7a80 9305#else
46fc3d4c 9306 intsize = 'l';
29fe7a80 9307#endif
46fc3d4c 9308 /* FALL THROUGH */
9309 case 'o':
9310 base = 8;
9311 goto uns_integer;
9312
9313 case 'X':
46fc3d4c 9314 case 'x':
9315 base = 16;
46fc3d4c 9316
9317 uns_integer:
b22c7a20 9318 if (vectorize) {
ba210ebe 9319 STRLEN ulen;
b22c7a20 9320 vector:
211dfcf1
HS
9321 if (!veclen)
9322 continue;
2cf2cfc6
A
9323 if (vec_utf8)
9324 uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9325 UTF8_ALLOW_ANYUV);
b22c7a20 9326 else {
a05b299f 9327 uv = *vecstr;
b22c7a20
GS
9328 ulen = 1;
9329 }
9330 vecstr += ulen;
9331 veclen -= ulen;
9332 }
9333 else if (args) {
46fc3d4c 9334 switch (intsize) {
9335 case 'h': uv = (unsigned short)va_arg(*args, unsigned); break;
46fc3d4c 9336 case 'l': uv = va_arg(*args, unsigned long); break;
fc36a67e 9337 case 'V': uv = va_arg(*args, UV); break;
b10c0dba 9338 default: uv = va_arg(*args, unsigned); break;
cf2093f6 9339#ifdef HAS_QUAD
9e3321a5 9340 case 'q': uv = va_arg(*args, Uquad_t); break;
cf2093f6 9341#endif
46fc3d4c 9342 }
9343 }
9344 else {
b10c0dba 9345 UV tuv = SvUVx(argsv); /* work around GCC bug #13488 */
46fc3d4c 9346 switch (intsize) {
b10c0dba
MHM
9347 case 'h': uv = (unsigned short)tuv; break;
9348 case 'l': uv = (unsigned long)tuv; break;
9349 case 'V':
9350 default: uv = tuv; break;
cf2093f6 9351#ifdef HAS_QUAD
b10c0dba 9352 case 'q': uv = (Uquad_t)tuv; break;
cf2093f6 9353#endif
46fc3d4c 9354 }
9355 }
9356
9357 integer:
4d84ee25
NC
9358 {
9359 char *ptr = ebuf + sizeof ebuf;
9360 switch (base) {
9361 unsigned dig;
9362 case 16:
9363 if (!uv)
9364 alt = FALSE;
9365 p = (char*)((c == 'X')
9366 ? "0123456789ABCDEF" : "0123456789abcdef");
9367 do {
9368 dig = uv & 15;
9369 *--ptr = p[dig];
9370 } while (uv >>= 4);
9371 if (alt) {
9372 esignbuf[esignlen++] = '0';
9373 esignbuf[esignlen++] = c; /* 'x' or 'X' */
9374 }
9375 break;
9376 case 8:
9377 do {
9378 dig = uv & 7;
9379 *--ptr = '0' + dig;
9380 } while (uv >>= 3);
9381 if (alt && *ptr != '0')
9382 *--ptr = '0';
9383 break;
9384 case 2:
9385 do {
9386 dig = uv & 1;
9387 *--ptr = '0' + dig;
9388 } while (uv >>= 1);
9389 if (alt) {
9390 esignbuf[esignlen++] = '0';
9391 esignbuf[esignlen++] = 'b';
9392 }
9393 break;
9394 default: /* it had better be ten or less */
9395 do {
9396 dig = uv % base;
9397 *--ptr = '0' + dig;
9398 } while (uv /= base);
9399 break;
46fc3d4c 9400 }
4d84ee25
NC
9401 elen = (ebuf + sizeof ebuf) - ptr;
9402 eptr = ptr;
9403 if (has_precis) {
9404 if (precis > elen)
9405 zeros = precis - elen;
9406 else if (precis == 0 && elen == 1 && *eptr == '0')
9407 elen = 0;
eda88b6d 9408 }
c10ed8b9 9409 }
46fc3d4c 9410 break;
9411
9412 /* FLOATING POINT */
9413
fc36a67e 9414 case 'F':
9415 c = 'f'; /* maybe %F isn't supported here */
9416 /* FALL THROUGH */
46fc3d4c 9417 case 'e': case 'E':
fc36a67e 9418 case 'f':
46fc3d4c 9419 case 'g': case 'G':
9420
9421 /* This is evil, but floating point is even more evil */
9422
9e5b023a
JH
9423 /* for SV-style calling, we can only get NV
9424 for C-style calling, we assume %f is double;
9425 for simplicity we allow any of %Lf, %llf, %qf for long double
9426 */
9427 switch (intsize) {
9428 case 'V':
9429#if defined(USE_LONG_DOUBLE)
9430 intsize = 'q';
9431#endif
9432 break;
8a2e3f14 9433/* [perl #20339] - we should accept and ignore %lf rather than die */
00e17364
HS
9434 case 'l':
9435 /* FALL THROUGH */
9e5b023a
JH
9436 default:
9437#if defined(USE_LONG_DOUBLE)
9438 intsize = args ? 0 : 'q';
9439#endif
9440 break;
9441 case 'q':
9442#if defined(HAS_LONG_DOUBLE)
9443 break;
9444#else
9445 /* FALL THROUGH */
9446#endif
9447 case 'h':
9e5b023a
JH
9448 goto unknown;
9449 }
9450
9451 /* now we need (long double) if intsize == 'q', else (double) */
be75b157 9452 nv = (args && !vectorize) ?
35fff930
JH
9453#if LONG_DOUBLESIZE > DOUBLESIZE
9454 intsize == 'q' ?
205f51d8
AS
9455 va_arg(*args, long double) :
9456 va_arg(*args, double)
35fff930 9457#else
205f51d8 9458 va_arg(*args, double)
35fff930 9459#endif
9e5b023a 9460 : SvNVx(argsv);
fc36a67e 9461
9462 need = 0;
be75b157 9463 vectorize = FALSE;
fc36a67e 9464 if (c != 'e' && c != 'E') {
9465 i = PERL_INT_MIN;
9e5b023a
JH
9466 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
9467 will cast our (long double) to (double) */
73b309ea 9468 (void)Perl_frexp(nv, &i);
fc36a67e 9469 if (i == PERL_INT_MIN)
cea2e8a9 9470 Perl_die(aTHX_ "panic: frexp");
c635e13b 9471 if (i > 0)
fc36a67e 9472 need = BIT_DIGITS(i);
9473 }
9474 need += has_precis ? precis : 6; /* known default */
20f6aaab 9475
fc36a67e 9476 if (need < width)
9477 need = width;
9478
20f6aaab
AS
9479#ifdef HAS_LDBL_SPRINTF_BUG
9480 /* This is to try to fix a bug with irix/nonstop-ux/powerux and
205f51d8
AS
9481 with sfio - Allen <allens@cpan.org> */
9482
9483# ifdef DBL_MAX
9484# define MY_DBL_MAX DBL_MAX
9485# else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
9486# if DOUBLESIZE >= 8
9487# define MY_DBL_MAX 1.7976931348623157E+308L
9488# else
9489# define MY_DBL_MAX 3.40282347E+38L
9490# endif
9491# endif
9492
9493# ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
9494# define MY_DBL_MAX_BUG 1L
20f6aaab 9495# else
205f51d8 9496# define MY_DBL_MAX_BUG MY_DBL_MAX
20f6aaab 9497# endif
20f6aaab 9498
205f51d8
AS
9499# ifdef DBL_MIN
9500# define MY_DBL_MIN DBL_MIN
9501# else /* XXX guessing! -Allen */
9502# if DOUBLESIZE >= 8
9503# define MY_DBL_MIN 2.2250738585072014E-308L
9504# else
9505# define MY_DBL_MIN 1.17549435E-38L
9506# endif
9507# endif
20f6aaab 9508
205f51d8
AS
9509 if ((intsize == 'q') && (c == 'f') &&
9510 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
9511 (need < DBL_DIG)) {
9512 /* it's going to be short enough that
9513 * long double precision is not needed */
9514
9515 if ((nv <= 0L) && (nv >= -0L))
9516 fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
9517 else {
9518 /* would use Perl_fp_class as a double-check but not
9519 * functional on IRIX - see perl.h comments */
9520
9521 if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
9522 /* It's within the range that a double can represent */
9523#if defined(DBL_MAX) && !defined(DBL_MIN)
9524 if ((nv >= ((long double)1/DBL_MAX)) ||
9525 (nv <= (-(long double)1/DBL_MAX)))
20f6aaab 9526#endif
205f51d8 9527 fix_ldbl_sprintf_bug = TRUE;
20f6aaab 9528 }
205f51d8
AS
9529 }
9530 if (fix_ldbl_sprintf_bug == TRUE) {
9531 double temp;
9532
9533 intsize = 0;
9534 temp = (double)nv;
9535 nv = (NV)temp;
9536 }
20f6aaab 9537 }
205f51d8
AS
9538
9539# undef MY_DBL_MAX
9540# undef MY_DBL_MAX_BUG
9541# undef MY_DBL_MIN
9542
20f6aaab
AS
9543#endif /* HAS_LDBL_SPRINTF_BUG */
9544
46fc3d4c 9545 need += 20; /* fudge factor */
80252599
GS
9546 if (PL_efloatsize < need) {
9547 Safefree(PL_efloatbuf);
9548 PL_efloatsize = need + 20; /* more fudge */
9549 New(906, PL_efloatbuf, PL_efloatsize, char);
7d5ea4e7 9550 PL_efloatbuf[0] = '\0';
46fc3d4c 9551 }
9552
4151a5fe
IZ
9553 if ( !(width || left || plus || alt) && fill != '0'
9554 && has_precis && intsize != 'q' ) { /* Shortcuts */
2873255c
NC
9555 /* See earlier comment about buggy Gconvert when digits,
9556 aka precis is 0 */
9557 if ( c == 'g' && precis) {
2e59c212 9558 Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
4151a5fe
IZ
9559 if (*PL_efloatbuf) /* May return an empty string for digits==0 */
9560 goto float_converted;
9561 } else if ( c == 'f' && !precis) {
9562 if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
9563 break;
9564 }
9565 }
4d84ee25
NC
9566 {
9567 char *ptr = ebuf + sizeof ebuf;
9568 *--ptr = '\0';
9569 *--ptr = c;
9570 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
9e5b023a 9571#if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
4d84ee25
NC
9572 if (intsize == 'q') {
9573 /* Copy the one or more characters in a long double
9574 * format before the 'base' ([efgEFG]) character to
9575 * the format string. */
9576 static char const prifldbl[] = PERL_PRIfldbl;
9577 char const *p = prifldbl + sizeof(prifldbl) - 3;
9578 while (p >= prifldbl) { *--ptr = *p--; }
9579 }
65202027 9580#endif
4d84ee25
NC
9581 if (has_precis) {
9582 base = precis;
9583 do { *--ptr = '0' + (base % 10); } while (base /= 10);
9584 *--ptr = '.';
9585 }
9586 if (width) {
9587 base = width;
9588 do { *--ptr = '0' + (base % 10); } while (base /= 10);
9589 }
9590 if (fill == '0')
9591 *--ptr = fill;
9592 if (left)
9593 *--ptr = '-';
9594 if (plus)
9595 *--ptr = plus;
9596 if (alt)
9597 *--ptr = '#';
9598 *--ptr = '%';
9599
9600 /* No taint. Otherwise we are in the strange situation
9601 * where printf() taints but print($float) doesn't.
9602 * --jhi */
9e5b023a 9603#if defined(HAS_LONG_DOUBLE)
4d84ee25
NC
9604 if (intsize == 'q')
9605 (void)sprintf(PL_efloatbuf, ptr, nv);
9606 else
9607 (void)sprintf(PL_efloatbuf, ptr, (double)nv);
9e5b023a 9608#else
4d84ee25 9609 (void)sprintf(PL_efloatbuf, ptr, nv);
9e5b023a 9610#endif
4d84ee25 9611 }
4151a5fe 9612 float_converted:
80252599
GS
9613 eptr = PL_efloatbuf;
9614 elen = strlen(PL_efloatbuf);
46fc3d4c 9615 break;
9616
fc36a67e 9617 /* SPECIAL */
9618
9619 case 'n':
9620 i = SvCUR(sv) - origlen;
be75b157 9621 if (args && !vectorize) {
c635e13b 9622 switch (intsize) {
9623 case 'h': *(va_arg(*args, short*)) = i; break;
9624 default: *(va_arg(*args, int*)) = i; break;
9625 case 'l': *(va_arg(*args, long*)) = i; break;
9626 case 'V': *(va_arg(*args, IV*)) = i; break;
cf2093f6
JH
9627#ifdef HAS_QUAD
9628 case 'q': *(va_arg(*args, Quad_t*)) = i; break;
9629#endif
c635e13b 9630 }
fc36a67e 9631 }
9dd79c3f 9632 else
211dfcf1 9633 sv_setuv_mg(argsv, (UV)i);
be75b157 9634 vectorize = FALSE;
fc36a67e 9635 continue; /* not "break" */
9636
9637 /* UNKNOWN */
9638
46fc3d4c 9639 default:
fc36a67e 9640 unknown:
599cee73 9641 if (!args && ckWARN(WARN_PRINTF) &&
533c011a 9642 (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)) {
c635e13b 9643 SV *msg = sv_newmortal();
35c1215d
NC
9644 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
9645 (PL_op->op_type == OP_PRTF) ? "" : "s");
0f4b6630 9646 if (c) {
0f4b6630 9647 if (isPRINT(c))
1c846c1f 9648 Perl_sv_catpvf(aTHX_ msg,
0f4b6630
JH
9649 "\"%%%c\"", c & 0xFF);
9650 else
9651 Perl_sv_catpvf(aTHX_ msg,
57def98f 9652 "\"%%\\%03"UVof"\"",
0f4b6630 9653 (UV)c & 0xFF);
0f4b6630 9654 } else
c635e13b 9655 sv_catpv(msg, "end of string");
9014280d 9656 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, msg); /* yes, this is reentrant */
c635e13b 9657 }
fb73857a 9658
9659 /* output mangled stuff ... */
9660 if (c == '\0')
9661 --q;
46fc3d4c 9662 eptr = p;
9663 elen = q - p;
fb73857a 9664
9665 /* ... right here, because formatting flags should not apply */
9666 SvGROW(sv, SvCUR(sv) + elen + 1);
9667 p = SvEND(sv);
4459522c 9668 Copy(eptr, p, elen, char);
fb73857a 9669 p += elen;
9670 *p = '\0';
3f7c398e 9671 SvCUR_set(sv, p - SvPVX_const(sv));
58e33a90 9672 svix = osvix;
fb73857a 9673 continue; /* not "break" */
46fc3d4c 9674 }
9675
6c94ec8b
HS
9676 /* calculate width before utf8_upgrade changes it */
9677 have = esignlen + zeros + elen;
9678
d2876be5
JH
9679 if (is_utf8 != has_utf8) {
9680 if (is_utf8) {
9681 if (SvCUR(sv))
9682 sv_utf8_upgrade(sv);
9683 }
9684 else {
9685 SV *nsv = sv_2mortal(newSVpvn(eptr, elen));
9686 sv_utf8_upgrade(nsv);
93524f2b 9687 eptr = SvPVX_const(nsv);
d2876be5
JH
9688 elen = SvCUR(nsv);
9689 }
9690 SvGROW(sv, SvCUR(sv) + elen + 1);
9691 p = SvEND(sv);
9692 *p = '\0';
9693 }
6af65485 9694
46fc3d4c 9695 need = (have > width ? have : width);
9696 gap = need - have;
9697
b22c7a20 9698 SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
46fc3d4c 9699 p = SvEND(sv);
9700 if (esignlen && fill == '0') {
eb160463 9701 for (i = 0; i < (int)esignlen; i++)
46fc3d4c 9702 *p++ = esignbuf[i];
9703 }
9704 if (gap && !left) {
9705 memset(p, fill, gap);
9706 p += gap;
9707 }
9708 if (esignlen && fill != '0') {
eb160463 9709 for (i = 0; i < (int)esignlen; i++)
46fc3d4c 9710 *p++ = esignbuf[i];
9711 }
fc36a67e 9712 if (zeros) {
9713 for (i = zeros; i; i--)
9714 *p++ = '0';
9715 }
46fc3d4c 9716 if (elen) {
4459522c 9717 Copy(eptr, p, elen, char);
46fc3d4c 9718 p += elen;
9719 }
9720 if (gap && left) {
9721 memset(p, ' ', gap);
9722 p += gap;
9723 }
b22c7a20
GS
9724 if (vectorize) {
9725 if (veclen) {
4459522c 9726 Copy(dotstr, p, dotstrlen, char);
b22c7a20
GS
9727 p += dotstrlen;
9728 }
9729 else
9730 vectorize = FALSE; /* done iterating over vecstr */
9731 }
2cf2cfc6
A
9732 if (is_utf8)
9733 has_utf8 = TRUE;
9734 if (has_utf8)
7e2040f0 9735 SvUTF8_on(sv);
46fc3d4c 9736 *p = '\0';
3f7c398e 9737 SvCUR_set(sv, p - SvPVX_const(sv));
b22c7a20
GS
9738 if (vectorize) {
9739 esignlen = 0;
9740 goto vector;
9741 }
46fc3d4c 9742 }
9743}
51371543 9744
645c22ef
DM
9745/* =========================================================================
9746
9747=head1 Cloning an interpreter
9748
9749All the macros and functions in this section are for the private use of
9750the main function, perl_clone().
9751
9752The foo_dup() functions make an exact copy of an existing foo thinngy.
9753During the course of a cloning, a hash table is used to map old addresses
9754to new addresses. The table is created and manipulated with the
9755ptr_table_* functions.
9756
9757=cut
9758
9759============================================================================*/
9760
9761
1d7c1841
GS
9762#if defined(USE_ITHREADS)
9763
1d7c1841
GS
9764#ifndef GpREFCNT_inc
9765# define GpREFCNT_inc(gp) ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
9766#endif
9767
9768
d2d73c3e
AB
9769#define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
9770#define av_dup(s,t) (AV*)sv_dup((SV*)s,t)
9771#define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9772#define hv_dup(s,t) (HV*)sv_dup((SV*)s,t)
9773#define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9774#define cv_dup(s,t) (CV*)sv_dup((SV*)s,t)
9775#define cv_dup_inc(s,t) (CV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9776#define io_dup(s,t) (IO*)sv_dup((SV*)s,t)
9777#define io_dup_inc(s,t) (IO*)SvREFCNT_inc(sv_dup((SV*)s,t))
9778#define gv_dup(s,t) (GV*)sv_dup((SV*)s,t)
9779#define gv_dup_inc(s,t) (GV*)SvREFCNT_inc(sv_dup((SV*)s,t))
1d7c1841
GS
9780#define SAVEPV(p) (p ? savepv(p) : Nullch)
9781#define SAVEPVN(p,n) (p ? savepvn(p,n) : Nullch)
8cf8f3d1 9782
d2d73c3e 9783
d2f185dc
AMS
9784/* Duplicate a regexp. Required reading: pregcomp() and pregfree() in
9785 regcomp.c. AMS 20010712 */
645c22ef 9786
1d7c1841 9787REGEXP *
a8fc9800 9788Perl_re_dup(pTHX_ REGEXP *r, CLONE_PARAMS *param)
1d7c1841 9789{
27da23d5 9790 dVAR;
d2f185dc
AMS
9791 REGEXP *ret;
9792 int i, len, npar;
9793 struct reg_substr_datum *s;
9794
9795 if (!r)
9796 return (REGEXP *)NULL;
9797
9798 if ((ret = (REGEXP *)ptr_table_fetch(PL_ptr_table, r)))
9799 return ret;
9800
9801 len = r->offsets[0];
9802 npar = r->nparens+1;
9803
9804 Newc(0, ret, sizeof(regexp) + (len+1)*sizeof(regnode), char, regexp);
9805 Copy(r->program, ret->program, len+1, regnode);
9806
9807 New(0, ret->startp, npar, I32);
9808 Copy(r->startp, ret->startp, npar, I32);
9809 New(0, ret->endp, npar, I32);
9810 Copy(r->startp, ret->startp, npar, I32);
9811
d2f185dc
AMS
9812 New(0, ret->substrs, 1, struct reg_substr_data);
9813 for (s = ret->substrs->data, i = 0; i < 3; i++, s++) {
9814 s->min_offset = r->substrs->data[i].min_offset;
9815 s->max_offset = r->substrs->data[i].max_offset;
9816 s->substr = sv_dup_inc(r->substrs->data[i].substr, param);
33b8afdf 9817 s->utf8_substr = sv_dup_inc(r->substrs->data[i].utf8_substr, param);
d2f185dc
AMS
9818 }
9819
70612e96 9820 ret->regstclass = NULL;
d2f185dc
AMS
9821 if (r->data) {
9822 struct reg_data *d;
e1ec3a88 9823 const int count = r->data->count;
d2f185dc
AMS
9824
9825 Newc(0, d, sizeof(struct reg_data) + count*sizeof(void *),
9826 char, struct reg_data);
9827 New(0, d->what, count, U8);
9828
9829 d->count = count;
9830 for (i = 0; i < count; i++) {
9831 d->what[i] = r->data->what[i];
9832 switch (d->what[i]) {
a3621e74
YO
9833 /* legal options are one of: sfpont
9834 see also regcomp.h and pregfree() */
d2f185dc
AMS
9835 case 's':
9836 d->data[i] = sv_dup_inc((SV *)r->data->data[i], param);
9837 break;
9838 case 'p':
9839 d->data[i] = av_dup_inc((AV *)r->data->data[i], param);
9840 break;
9841 case 'f':
9842 /* This is cheating. */
9843 New(0, d->data[i], 1, struct regnode_charclass_class);
9844 StructCopy(r->data->data[i], d->data[i],
9845 struct regnode_charclass_class);
70612e96 9846 ret->regstclass = (regnode*)d->data[i];
d2f185dc
AMS
9847 break;
9848 case 'o':
33773810
AMS
9849 /* Compiled op trees are readonly, and can thus be
9850 shared without duplication. */
b34c0dd4 9851 OP_REFCNT_LOCK;
9b978d73 9852 d->data[i] = (void*)OpREFCNT_inc((OP*)r->data->data[i]);
b34c0dd4 9853 OP_REFCNT_UNLOCK;
9b978d73 9854 break;
d2f185dc
AMS
9855 case 'n':
9856 d->data[i] = r->data->data[i];
9857 break;
a3621e74
YO
9858 case 't':
9859 d->data[i] = r->data->data[i];
9860 OP_REFCNT_LOCK;
9861 ((reg_trie_data*)d->data[i])->refcount++;
9862 OP_REFCNT_UNLOCK;
9863 break;
9864 default:
9865 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", r->data->what[i]);
d2f185dc
AMS
9866 }
9867 }
9868
9869 ret->data = d;
9870 }
9871 else
9872 ret->data = NULL;
9873
9874 New(0, ret->offsets, 2*len+1, U32);
9875 Copy(r->offsets, ret->offsets, 2*len+1, U32);
9876
e01c5899 9877 ret->precomp = SAVEPVN(r->precomp, r->prelen);
d2f185dc
AMS
9878 ret->refcnt = r->refcnt;
9879 ret->minlen = r->minlen;
9880 ret->prelen = r->prelen;
9881 ret->nparens = r->nparens;
9882 ret->lastparen = r->lastparen;
9883 ret->lastcloseparen = r->lastcloseparen;
9884 ret->reganch = r->reganch;
9885
70612e96
RG
9886 ret->sublen = r->sublen;
9887
9888 if (RX_MATCH_COPIED(ret))
e01c5899 9889 ret->subbeg = SAVEPVN(r->subbeg, r->sublen);
70612e96
RG
9890 else
9891 ret->subbeg = Nullch;
f8c7b90f 9892#ifdef PERL_OLD_COPY_ON_WRITE
9a26048b
NC
9893 ret->saved_copy = Nullsv;
9894#endif
70612e96 9895
d2f185dc
AMS
9896 ptr_table_store(PL_ptr_table, r, ret);
9897 return ret;
1d7c1841
GS
9898}
9899
d2d73c3e 9900/* duplicate a file handle */
645c22ef 9901
1d7c1841 9902PerlIO *
a8fc9800 9903Perl_fp_dup(pTHX_ PerlIO *fp, char type, CLONE_PARAMS *param)
1d7c1841
GS
9904{
9905 PerlIO *ret;
73d840c0
AL
9906 (void)type;
9907
1d7c1841
GS
9908 if (!fp)
9909 return (PerlIO*)NULL;
9910
9911 /* look for it in the table first */
9912 ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
9913 if (ret)
9914 return ret;
9915
9916 /* create anew and remember what it is */
ecdeb87c 9917 ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
1d7c1841
GS
9918 ptr_table_store(PL_ptr_table, fp, ret);
9919 return ret;
9920}
9921
645c22ef
DM
9922/* duplicate a directory handle */
9923
1d7c1841
GS
9924DIR *
9925Perl_dirp_dup(pTHX_ DIR *dp)
9926{
9927 if (!dp)
9928 return (DIR*)NULL;
9929 /* XXX TODO */
9930 return dp;
9931}
9932
ff276b08 9933/* duplicate a typeglob */
645c22ef 9934
1d7c1841 9935GP *
a8fc9800 9936Perl_gp_dup(pTHX_ GP *gp, CLONE_PARAMS* param)
1d7c1841
GS
9937{
9938 GP *ret;
9939 if (!gp)
9940 return (GP*)NULL;
9941 /* look for it in the table first */
9942 ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
9943 if (ret)
9944 return ret;
9945
9946 /* create anew and remember what it is */
9947 Newz(0, ret, 1, GP);
9948 ptr_table_store(PL_ptr_table, gp, ret);
9949
9950 /* clone */
9951 ret->gp_refcnt = 0; /* must be before any other dups! */
d2d73c3e
AB
9952 ret->gp_sv = sv_dup_inc(gp->gp_sv, param);
9953 ret->gp_io = io_dup_inc(gp->gp_io, param);
9954 ret->gp_form = cv_dup_inc(gp->gp_form, param);
9955 ret->gp_av = av_dup_inc(gp->gp_av, param);
9956 ret->gp_hv = hv_dup_inc(gp->gp_hv, param);
9957 ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
9958 ret->gp_cv = cv_dup_inc(gp->gp_cv, param);
1d7c1841
GS
9959 ret->gp_cvgen = gp->gp_cvgen;
9960 ret->gp_flags = gp->gp_flags;
9961 ret->gp_line = gp->gp_line;
9962 ret->gp_file = gp->gp_file; /* points to COP.cop_file */
9963 return ret;
9964}
9965
645c22ef
DM
9966/* duplicate a chain of magic */
9967
1d7c1841 9968MAGIC *
a8fc9800 9969Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS* param)
1d7c1841 9970{
cb359b41
JH
9971 MAGIC *mgprev = (MAGIC*)NULL;
9972 MAGIC *mgret;
1d7c1841
GS
9973 if (!mg)
9974 return (MAGIC*)NULL;
9975 /* look for it in the table first */
9976 mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
9977 if (mgret)
9978 return mgret;
9979
9980 for (; mg; mg = mg->mg_moremagic) {
9981 MAGIC *nmg;
9982 Newz(0, nmg, 1, MAGIC);
cb359b41 9983 if (mgprev)
1d7c1841 9984 mgprev->mg_moremagic = nmg;
cb359b41
JH
9985 else
9986 mgret = nmg;
1d7c1841
GS
9987 nmg->mg_virtual = mg->mg_virtual; /* XXX copy dynamic vtable? */
9988 nmg->mg_private = mg->mg_private;
9989 nmg->mg_type = mg->mg_type;
9990 nmg->mg_flags = mg->mg_flags;
14befaf4 9991 if (mg->mg_type == PERL_MAGIC_qr) {
d2f185dc 9992 nmg->mg_obj = (SV*)re_dup((REGEXP*)mg->mg_obj, param);
1d7c1841 9993 }
05bd4103 9994 else if(mg->mg_type == PERL_MAGIC_backref) {
7fc63493 9995 const AV * const av = (AV*) mg->mg_obj;
fdc9a813
AE
9996 SV **svp;
9997 I32 i;
7fc63493 9998 (void)SvREFCNT_inc(nmg->mg_obj = (SV*)newAV());
fdc9a813
AE
9999 svp = AvARRAY(av);
10000 for (i = AvFILLp(av); i >= 0; i--) {
3a81978b 10001 if (!svp[i]) continue;
fdc9a813
AE
10002 av_push((AV*)nmg->mg_obj,sv_dup(svp[i],param));
10003 }
05bd4103 10004 }
8d2f4536
NC
10005 else if (mg->mg_type == PERL_MAGIC_symtab) {
10006 nmg->mg_obj = mg->mg_obj;
10007 }
1d7c1841
GS
10008 else {
10009 nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
d2d73c3e
AB
10010 ? sv_dup_inc(mg->mg_obj, param)
10011 : sv_dup(mg->mg_obj, param);
1d7c1841
GS
10012 }
10013 nmg->mg_len = mg->mg_len;
10014 nmg->mg_ptr = mg->mg_ptr; /* XXX random ptr? */
14befaf4 10015 if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
68795e93 10016 if (mg->mg_len > 0) {
1d7c1841 10017 nmg->mg_ptr = SAVEPVN(mg->mg_ptr, mg->mg_len);
14befaf4
DM
10018 if (mg->mg_type == PERL_MAGIC_overload_table &&
10019 AMT_AMAGIC((AMT*)mg->mg_ptr))
10020 {
1d7c1841
GS
10021 AMT *amtp = (AMT*)mg->mg_ptr;
10022 AMT *namtp = (AMT*)nmg->mg_ptr;
10023 I32 i;
10024 for (i = 1; i < NofAMmeth; i++) {
d2d73c3e 10025 namtp->table[i] = cv_dup_inc(amtp->table[i], param);
1d7c1841
GS
10026 }
10027 }
10028 }
10029 else if (mg->mg_len == HEf_SVKEY)
d2d73c3e 10030 nmg->mg_ptr = (char*)sv_dup_inc((SV*)mg->mg_ptr, param);
1d7c1841 10031 }
68795e93
NIS
10032 if ((mg->mg_flags & MGf_DUP) && mg->mg_virtual && mg->mg_virtual->svt_dup) {
10033 CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
10034 }
1d7c1841
GS
10035 mgprev = nmg;
10036 }
10037 return mgret;
10038}
10039
645c22ef
DM
10040/* create a new pointer-mapping table */
10041
1d7c1841
GS
10042PTR_TBL_t *
10043Perl_ptr_table_new(pTHX)
10044{
10045 PTR_TBL_t *tbl;
10046 Newz(0, tbl, 1, PTR_TBL_t);
10047 tbl->tbl_max = 511;
10048 tbl->tbl_items = 0;
10049 Newz(0, tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
10050 return tbl;
10051}
10052
134ca3d6
DM
10053#if (PTRSIZE == 8)
10054# define PTR_TABLE_HASH(ptr) (PTR2UV(ptr) >> 3)
10055#else
10056# define PTR_TABLE_HASH(ptr) (PTR2UV(ptr) >> 2)
10057#endif
10058
32e691d0
NC
10059
10060
10061STATIC void
10062S_more_pte(pTHX)
10063{
cac9b346
NC
10064 struct ptr_tbl_ent* pte;
10065 struct ptr_tbl_ent* pteend;
c3929b72
NC
10066 New(0, pte, PERL_ARENA_SIZE/sizeof(struct ptr_tbl_ent), struct ptr_tbl_ent);
10067 pte->next = PL_pte_arenaroot;
10068 PL_pte_arenaroot = pte;
32e691d0 10069
9c17f24a 10070 pteend = &pte[PERL_ARENA_SIZE / sizeof(struct ptr_tbl_ent) - 1];
32e691d0
NC
10071 PL_pte_root = ++pte;
10072 while (pte < pteend) {
10073 pte->next = pte + 1;
10074 pte++;
10075 }
10076 pte->next = 0;
10077}
10078
10079STATIC struct ptr_tbl_ent*
10080S_new_pte(pTHX)
10081{
10082 struct ptr_tbl_ent* pte;
10083 if (!PL_pte_root)
10084 S_more_pte(aTHX);
10085 pte = PL_pte_root;
10086 PL_pte_root = pte->next;
10087 return pte;
10088}
10089
10090STATIC void
10091S_del_pte(pTHX_ struct ptr_tbl_ent*p)
10092{
10093 p->next = PL_pte_root;
10094 PL_pte_root = p;
10095}
10096
645c22ef
DM
10097/* map an existing pointer using a table */
10098
1d7c1841
GS
10099void *
10100Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, void *sv)
10101{
10102 PTR_TBL_ENT_t *tblent;
4373e329 10103 const UV hash = PTR_TABLE_HASH(sv);
1d7c1841
GS
10104 assert(tbl);
10105 tblent = tbl->tbl_ary[hash & tbl->tbl_max];
10106 for (; tblent; tblent = tblent->next) {
10107 if (tblent->oldval == sv)
10108 return tblent->newval;
10109 }
10110 return (void*)NULL;
10111}
10112
645c22ef
DM
10113/* add a new entry to a pointer-mapping table */
10114
1d7c1841
GS
10115void
10116Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, void *oldv, void *newv)
10117{
10118 PTR_TBL_ENT_t *tblent, **otblent;
10119 /* XXX this may be pessimal on platforms where pointers aren't good
10120 * hash values e.g. if they grow faster in the most significant
10121 * bits */
4373e329 10122 const UV hash = PTR_TABLE_HASH(oldv);
14cade97 10123 bool empty = 1;
1d7c1841
GS
10124
10125 assert(tbl);
10126 otblent = &tbl->tbl_ary[hash & tbl->tbl_max];
14cade97 10127 for (tblent = *otblent; tblent; empty=0, tblent = tblent->next) {
1d7c1841
GS
10128 if (tblent->oldval == oldv) {
10129 tblent->newval = newv;
1d7c1841
GS
10130 return;
10131 }
10132 }
32e691d0 10133 tblent = S_new_pte(aTHX);
1d7c1841
GS
10134 tblent->oldval = oldv;
10135 tblent->newval = newv;
10136 tblent->next = *otblent;
10137 *otblent = tblent;
10138 tbl->tbl_items++;
14cade97 10139 if (!empty && tbl->tbl_items > tbl->tbl_max)
1d7c1841
GS
10140 ptr_table_split(tbl);
10141}
10142
645c22ef
DM
10143/* double the hash bucket size of an existing ptr table */
10144
1d7c1841
GS
10145void
10146Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl)
10147{
10148 PTR_TBL_ENT_t **ary = tbl->tbl_ary;
4373e329 10149 const UV oldsize = tbl->tbl_max + 1;
1d7c1841
GS
10150 UV newsize = oldsize * 2;
10151 UV i;
10152
10153 Renew(ary, newsize, PTR_TBL_ENT_t*);
10154 Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
10155 tbl->tbl_max = --newsize;
10156 tbl->tbl_ary = ary;
10157 for (i=0; i < oldsize; i++, ary++) {
10158 PTR_TBL_ENT_t **curentp, **entp, *ent;
10159 if (!*ary)
10160 continue;
10161 curentp = ary + oldsize;
10162 for (entp = ary, ent = *ary; ent; ent = *entp) {
134ca3d6 10163 if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
1d7c1841
GS
10164 *entp = ent->next;
10165 ent->next = *curentp;
10166 *curentp = ent;
10167 continue;
10168 }
10169 else
10170 entp = &ent->next;
10171 }
10172 }
10173}
10174
645c22ef
DM
10175/* remove all the entries from a ptr table */
10176
a0739874
DM
10177void
10178Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl)
10179{
10180 register PTR_TBL_ENT_t **array;
10181 register PTR_TBL_ENT_t *entry;
a0739874
DM
10182 UV riter = 0;
10183 UV max;
10184
10185 if (!tbl || !tbl->tbl_items) {
10186 return;
10187 }
10188
10189 array = tbl->tbl_ary;
10190 entry = array[0];
10191 max = tbl->tbl_max;
10192
10193 for (;;) {
10194 if (entry) {
4373e329 10195 PTR_TBL_ENT_t *oentry = entry;
a0739874 10196 entry = entry->next;
32e691d0 10197 S_del_pte(aTHX_ oentry);
a0739874
DM
10198 }
10199 if (!entry) {
10200 if (++riter > max) {
10201 break;
10202 }
10203 entry = array[riter];
10204 }
10205 }
10206
10207 tbl->tbl_items = 0;
10208}
10209
645c22ef
DM
10210/* clear and free a ptr table */
10211
a0739874
DM
10212void
10213Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl)
10214{
10215 if (!tbl) {
10216 return;
10217 }
10218 ptr_table_clear(tbl);
10219 Safefree(tbl->tbl_ary);
10220 Safefree(tbl);
10221}
10222
645c22ef
DM
10223/* attempt to make everything in the typeglob readonly */
10224
5bd07a3d 10225STATIC SV *
59b40662 10226S_gv_share(pTHX_ SV *sstr, CLONE_PARAMS *param)
5bd07a3d
DM
10227{
10228 GV *gv = (GV*)sstr;
59b40662 10229 SV *sv = &param->proto_perl->Isv_no; /* just need SvREADONLY-ness */
5bd07a3d
DM
10230
10231 if (GvIO(gv) || GvFORM(gv)) {
7fb37951 10232 GvUNIQUE_off(gv); /* GvIOs cannot be shared. nor can GvFORMs */
5bd07a3d
DM
10233 }
10234 else if (!GvCV(gv)) {
10235 GvCV(gv) = (CV*)sv;
10236 }
10237 else {
10238 /* CvPADLISTs cannot be shared */
37e20706 10239 if (!SvREADONLY(GvCV(gv)) && !CvXSUB(GvCV(gv))) {
7fb37951 10240 GvUNIQUE_off(gv);
5bd07a3d
DM
10241 }
10242 }
10243
7fb37951 10244 if (!GvUNIQUE(gv)) {
5bd07a3d
DM
10245#if 0
10246 PerlIO_printf(Perl_debug_log, "gv_share: unable to share %s::%s\n",
bfcb3514 10247 HvNAME_get(GvSTASH(gv)), GvNAME(gv));
5bd07a3d
DM
10248#endif
10249 return Nullsv;
10250 }
10251
4411f3b6 10252 /*
5bd07a3d
DM
10253 * write attempts will die with
10254 * "Modification of a read-only value attempted"
10255 */
10256 if (!GvSV(gv)) {
10257 GvSV(gv) = sv;
10258 }
10259 else {
10260 SvREADONLY_on(GvSV(gv));
10261 }
10262
10263 if (!GvAV(gv)) {
10264 GvAV(gv) = (AV*)sv;
10265 }
10266 else {
10267 SvREADONLY_on(GvAV(gv));
10268 }
10269
10270 if (!GvHV(gv)) {
10271 GvHV(gv) = (HV*)sv;
10272 }
10273 else {
53c33732 10274 SvREADONLY_on(GvHV(gv));
5bd07a3d
DM
10275 }
10276
10277 return sstr; /* he_dup() will SvREFCNT_inc() */
10278}
10279
645c22ef
DM
10280/* duplicate an SV of any type (including AV, HV etc) */
10281
83841fad
NIS
10282void
10283Perl_rvpv_dup(pTHX_ SV *dstr, SV *sstr, CLONE_PARAMS* param)
10284{
10285 if (SvROK(sstr)) {
b162af07
SP
10286 SvRV_set(dstr, SvWEAKREF(sstr)
10287 ? sv_dup(SvRV(sstr), param)
10288 : sv_dup_inc(SvRV(sstr), param));
f880fe2f 10289
83841fad 10290 }
3f7c398e 10291 else if (SvPVX_const(sstr)) {
83841fad
NIS
10292 /* Has something there */
10293 if (SvLEN(sstr)) {
68795e93 10294 /* Normal PV - clone whole allocated space */
3f7c398e 10295 SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
d3d0e6f1
NC
10296 if (SvREADONLY(sstr) && SvFAKE(sstr)) {
10297 /* Not that normal - actually sstr is copy on write.
10298 But we are a true, independant SV, so: */
10299 SvREADONLY_off(dstr);
10300 SvFAKE_off(dstr);
10301 }
68795e93 10302 }
83841fad
NIS
10303 else {
10304 /* Special case - not normally malloced for some reason */
ef10be65
NC
10305 if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
10306 /* A "shared" PV - clone it as "shared" PV */
10307 SvPV_set(dstr,
10308 HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
10309 param)));
83841fad
NIS
10310 }
10311 else {
10312 /* Some other special case - random pointer */
f880fe2f 10313 SvPV_set(dstr, SvPVX(sstr));
d3d0e6f1 10314 }
83841fad
NIS
10315 }
10316 }
10317 else {
10318 /* Copy the Null */
f880fe2f 10319 if (SvTYPE(dstr) == SVt_RV)
b162af07 10320 SvRV_set(dstr, NULL);
f880fe2f
SP
10321 else
10322 SvPV_set(dstr, 0);
83841fad
NIS
10323 }
10324}
10325
1d7c1841 10326SV *
a8fc9800 10327Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
1d7c1841 10328{
27da23d5 10329 dVAR;
1d7c1841
GS
10330 SV *dstr;
10331
10332 if (!sstr || SvTYPE(sstr) == SVTYPEMASK)
10333 return Nullsv;
10334 /* look for it in the table first */
10335 dstr = (SV*)ptr_table_fetch(PL_ptr_table, sstr);
10336 if (dstr)
10337 return dstr;
10338
0405e91e
AB
10339 if(param->flags & CLONEf_JOIN_IN) {
10340 /** We are joining here so we don't want do clone
10341 something that is bad **/
bfcb3514 10342 const char *hvname;
0405e91e
AB
10343
10344 if(SvTYPE(sstr) == SVt_PVHV &&
bfcb3514 10345 (hvname = HvNAME_get(sstr))) {
0405e91e 10346 /** don't clone stashes if they already exist **/
bfcb3514 10347 HV* old_stash = gv_stashpv(hvname,0);
0405e91e
AB
10348 return (SV*) old_stash;
10349 }
10350 }
10351
1d7c1841
GS
10352 /* create anew and remember what it is */
10353 new_SV(dstr);
fd0854ff
DM
10354
10355#ifdef DEBUG_LEAKING_SCALARS
10356 dstr->sv_debug_optype = sstr->sv_debug_optype;
10357 dstr->sv_debug_line = sstr->sv_debug_line;
10358 dstr->sv_debug_inpad = sstr->sv_debug_inpad;
10359 dstr->sv_debug_cloned = 1;
10360# ifdef NETWARE
10361 dstr->sv_debug_file = savepv(sstr->sv_debug_file);
10362# else
10363 dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
10364# endif
10365#endif
10366
1d7c1841
GS
10367 ptr_table_store(PL_ptr_table, sstr, dstr);
10368
10369 /* clone */
10370 SvFLAGS(dstr) = SvFLAGS(sstr);
10371 SvFLAGS(dstr) &= ~SVf_OOK; /* don't propagate OOK hack */
10372 SvREFCNT(dstr) = 0; /* must be before any other dups! */
10373
10374#ifdef DEBUGGING
3f7c398e 10375 if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
1d7c1841 10376 PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
3f7c398e 10377 PL_watch_pvx, SvPVX_const(sstr));
1d7c1841
GS
10378#endif
10379
9660f481
DM
10380 /* don't clone objects whose class has asked us not to */
10381 if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
10382 SvFLAGS(dstr) &= ~SVTYPEMASK;
10383 SvOBJECT_off(dstr);
10384 return dstr;
10385 }
10386
1d7c1841
GS
10387 switch (SvTYPE(sstr)) {
10388 case SVt_NULL:
10389 SvANY(dstr) = NULL;
10390 break;
10391 case SVt_IV:
339049b0 10392 SvANY(dstr) = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
45977657 10393 SvIV_set(dstr, SvIVX(sstr));
1d7c1841
GS
10394 break;
10395 case SVt_NV:
10396 SvANY(dstr) = new_XNV();
9d6ce603 10397 SvNV_set(dstr, SvNVX(sstr));
1d7c1841
GS
10398 break;
10399 case SVt_RV:
339049b0 10400 SvANY(dstr) = &(dstr->sv_u.svu_rv);
83841fad 10401 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10402 break;
10403 case SVt_PV:
10404 SvANY(dstr) = new_XPV();
b162af07
SP
10405 SvCUR_set(dstr, SvCUR(sstr));
10406 SvLEN_set(dstr, SvLEN(sstr));
83841fad 10407 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10408 break;
10409 case SVt_PVIV:
10410 SvANY(dstr) = new_XPVIV();
b162af07
SP
10411 SvCUR_set(dstr, SvCUR(sstr));
10412 SvLEN_set(dstr, SvLEN(sstr));
45977657 10413 SvIV_set(dstr, SvIVX(sstr));
83841fad 10414 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10415 break;
10416 case SVt_PVNV:
10417 SvANY(dstr) = new_XPVNV();
b162af07
SP
10418 SvCUR_set(dstr, SvCUR(sstr));
10419 SvLEN_set(dstr, SvLEN(sstr));
45977657 10420 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10421 SvNV_set(dstr, SvNVX(sstr));
83841fad 10422 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10423 break;
10424 case SVt_PVMG:
10425 SvANY(dstr) = new_XPVMG();
b162af07
SP
10426 SvCUR_set(dstr, SvCUR(sstr));
10427 SvLEN_set(dstr, SvLEN(sstr));
45977657 10428 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10429 SvNV_set(dstr, SvNVX(sstr));
b162af07
SP
10430 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10431 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
83841fad 10432 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10433 break;
10434 case SVt_PVBM:
10435 SvANY(dstr) = new_XPVBM();
b162af07
SP
10436 SvCUR_set(dstr, SvCUR(sstr));
10437 SvLEN_set(dstr, SvLEN(sstr));
45977657 10438 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10439 SvNV_set(dstr, SvNVX(sstr));
b162af07
SP
10440 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10441 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
83841fad 10442 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10443 BmRARE(dstr) = BmRARE(sstr);
10444 BmUSEFUL(dstr) = BmUSEFUL(sstr);
10445 BmPREVIOUS(dstr)= BmPREVIOUS(sstr);
10446 break;
10447 case SVt_PVLV:
10448 SvANY(dstr) = new_XPVLV();
b162af07
SP
10449 SvCUR_set(dstr, SvCUR(sstr));
10450 SvLEN_set(dstr, SvLEN(sstr));
45977657 10451 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10452 SvNV_set(dstr, SvNVX(sstr));
b162af07
SP
10453 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10454 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
83841fad 10455 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10456 LvTARGOFF(dstr) = LvTARGOFF(sstr); /* XXX sometimes holds PMOP* when DEBUGGING */
10457 LvTARGLEN(dstr) = LvTARGLEN(sstr);
dd28f7bb
DM
10458 if (LvTYPE(sstr) == 't') /* for tie: unrefcnted fake (SV**) */
10459 LvTARG(dstr) = dstr;
10460 else if (LvTYPE(sstr) == 'T') /* for tie: fake HE */
10461 LvTARG(dstr) = (SV*)he_dup((HE*)LvTARG(sstr), 0, param);
10462 else
10463 LvTARG(dstr) = sv_dup_inc(LvTARG(sstr), param);
1d7c1841
GS
10464 LvTYPE(dstr) = LvTYPE(sstr);
10465 break;
10466 case SVt_PVGV:
7fb37951 10467 if (GvUNIQUE((GV*)sstr)) {
5bd07a3d 10468 SV *share;
59b40662 10469 if ((share = gv_share(sstr, param))) {
5bd07a3d
DM
10470 del_SV(dstr);
10471 dstr = share;
37e20706 10472 ptr_table_store(PL_ptr_table, sstr, dstr);
5bd07a3d
DM
10473#if 0
10474 PerlIO_printf(Perl_debug_log, "sv_dup: sharing %s::%s\n",
bfcb3514 10475 HvNAME_get(GvSTASH(share)), GvNAME(share));
5bd07a3d
DM
10476#endif
10477 break;
10478 }
10479 }
1d7c1841 10480 SvANY(dstr) = new_XPVGV();
b162af07
SP
10481 SvCUR_set(dstr, SvCUR(sstr));
10482 SvLEN_set(dstr, SvLEN(sstr));
45977657 10483 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10484 SvNV_set(dstr, SvNVX(sstr));
b162af07
SP
10485 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10486 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
83841fad 10487 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
1d7c1841
GS
10488 GvNAMELEN(dstr) = GvNAMELEN(sstr);
10489 GvNAME(dstr) = SAVEPVN(GvNAME(sstr), GvNAMELEN(sstr));
d2d73c3e 10490 GvSTASH(dstr) = hv_dup_inc(GvSTASH(sstr), param);
1d7c1841 10491 GvFLAGS(dstr) = GvFLAGS(sstr);
d2d73c3e 10492 GvGP(dstr) = gp_dup(GvGP(sstr), param);
1d7c1841
GS
10493 (void)GpREFCNT_inc(GvGP(dstr));
10494 break;
10495 case SVt_PVIO:
10496 SvANY(dstr) = new_XPVIO();
b162af07
SP
10497 SvCUR_set(dstr, SvCUR(sstr));
10498 SvLEN_set(dstr, SvLEN(sstr));
45977657 10499 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10500 SvNV_set(dstr, SvNVX(sstr));
b162af07
SP
10501 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10502 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
83841fad 10503 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
a8fc9800 10504 IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(sstr), param);
1d7c1841
GS
10505 if (IoOFP(sstr) == IoIFP(sstr))
10506 IoOFP(dstr) = IoIFP(dstr);
10507 else
a8fc9800 10508 IoOFP(dstr) = fp_dup(IoOFP(sstr), IoTYPE(sstr), param);
1d7c1841
GS
10509 /* PL_rsfp_filters entries have fake IoDIRP() */
10510 if (IoDIRP(sstr) && !(IoFLAGS(sstr) & IOf_FAKE_DIRP))
10511 IoDIRP(dstr) = dirp_dup(IoDIRP(sstr));
10512 else
10513 IoDIRP(dstr) = IoDIRP(sstr);
10514 IoLINES(dstr) = IoLINES(sstr);
10515 IoPAGE(dstr) = IoPAGE(sstr);
10516 IoPAGE_LEN(dstr) = IoPAGE_LEN(sstr);
10517 IoLINES_LEFT(dstr) = IoLINES_LEFT(sstr);
7a5fa8a2 10518 if(IoFLAGS(sstr) & IOf_FAKE_DIRP) {
5a37521b
AB
10519 /* I have no idea why fake dirp (rsfps)
10520 should be treaded differently but otherwise
10521 we end up with leaks -- sky*/
10522 IoTOP_GV(dstr) = gv_dup_inc(IoTOP_GV(sstr), param);
10523 IoFMT_GV(dstr) = gv_dup_inc(IoFMT_GV(sstr), param);
10524 IoBOTTOM_GV(dstr) = gv_dup_inc(IoBOTTOM_GV(sstr), param);
10525 } else {
10526 IoTOP_GV(dstr) = gv_dup(IoTOP_GV(sstr), param);
10527 IoFMT_GV(dstr) = gv_dup(IoFMT_GV(sstr), param);
10528 IoBOTTOM_GV(dstr) = gv_dup(IoBOTTOM_GV(sstr), param);
10529 }
1d7c1841 10530 IoTOP_NAME(dstr) = SAVEPV(IoTOP_NAME(sstr));
1d7c1841 10531 IoFMT_NAME(dstr) = SAVEPV(IoFMT_NAME(sstr));
1d7c1841 10532 IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(sstr));
1d7c1841
GS
10533 IoSUBPROCESS(dstr) = IoSUBPROCESS(sstr);
10534 IoTYPE(dstr) = IoTYPE(sstr);
10535 IoFLAGS(dstr) = IoFLAGS(sstr);
10536 break;
10537 case SVt_PVAV:
10538 SvANY(dstr) = new_XPVAV();
b162af07
SP
10539 SvCUR_set(dstr, SvCUR(sstr));
10540 SvLEN_set(dstr, SvLEN(sstr));
b162af07
SP
10541 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10542 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
1d7c1841
GS
10543 if (AvARRAY((AV*)sstr)) {
10544 SV **dst_ary, **src_ary;
10545 SSize_t items = AvFILLp((AV*)sstr) + 1;
10546
10547 src_ary = AvARRAY((AV*)sstr);
10548 Newz(0, dst_ary, AvMAX((AV*)sstr)+1, SV*);
10549 ptr_table_store(PL_ptr_table, src_ary, dst_ary);
f880fe2f 10550 SvPV_set(dstr, (char*)dst_ary);
1d7c1841
GS
10551 AvALLOC((AV*)dstr) = dst_ary;
10552 if (AvREAL((AV*)sstr)) {
10553 while (items-- > 0)
d2d73c3e 10554 *dst_ary++ = sv_dup_inc(*src_ary++, param);
1d7c1841
GS
10555 }
10556 else {
10557 while (items-- > 0)
d2d73c3e 10558 *dst_ary++ = sv_dup(*src_ary++, param);
1d7c1841
GS
10559 }
10560 items = AvMAX((AV*)sstr) - AvFILLp((AV*)sstr);
10561 while (items-- > 0) {
10562 *dst_ary++ = &PL_sv_undef;
10563 }
10564 }
10565 else {
f880fe2f 10566 SvPV_set(dstr, Nullch);
1d7c1841
GS
10567 AvALLOC((AV*)dstr) = (SV**)NULL;
10568 }
10569 break;
10570 case SVt_PVHV:
10571 SvANY(dstr) = new_XPVHV();
b162af07
SP
10572 SvCUR_set(dstr, SvCUR(sstr));
10573 SvLEN_set(dstr, SvLEN(sstr));
94a66813 10574 HvTOTALKEYS(dstr) = HvTOTALKEYS(sstr);
b162af07
SP
10575 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10576 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
bfcb3514 10577 {
7423f6db 10578 HEK *hvname = 0;
bfcb3514 10579
bfcb3514
NC
10580 if (HvARRAY((HV*)sstr)) {
10581 STRLEN i = 0;
616d8c9c
AL
10582 const bool sharekeys = !!HvSHAREKEYS(sstr);
10583 XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
10584 XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
7b2c381c 10585 char *darray;
a1cfa1c6 10586 New(0, darray,
b79f7545
NC
10587 PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
10588 + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0), char);
7b2c381c 10589 HvARRAY(dstr) = (HE**)darray;
bfcb3514 10590 while (i <= sxhv->xhv_max) {
a1cfa1c6 10591 HE *source = HvARRAY(sstr)[i];
7b2c381c 10592 HvARRAY(dstr)[i]
a1cfa1c6 10593 = source ? he_dup(source, sharekeys, param) : 0;
bfcb3514
NC
10594 ++i;
10595 }
b79f7545
NC
10596 if (SvOOK(sstr)) {
10597 struct xpvhv_aux *saux = HvAUX(sstr);
10598 struct xpvhv_aux *daux = HvAUX(dstr);
10599 /* This flag isn't copied. */
10600 /* SvOOK_on(hv) attacks the IV flags. */
10601 SvFLAGS(dstr) |= SVf_OOK;
10602
10603 hvname = saux->xhv_name;
10604 daux->xhv_name = hvname ? hek_dup(hvname, param) : hvname;
10605
10606 daux->xhv_riter = saux->xhv_riter;
10607 daux->xhv_eiter = saux->xhv_eiter
10608 ? he_dup(saux->xhv_eiter, (bool)!!HvSHAREKEYS(sstr),
10609 param) : 0;
10610 }
bfcb3514
NC
10611 }
10612 else {
10613 SvPV_set(dstr, Nullch);
bfcb3514
NC
10614 }
10615 /* Record stashes for possible cloning in Perl_clone(). */
10616 if(hvname)
10617 av_push(param->stashes, dstr);
1d7c1841 10618 }
1d7c1841
GS
10619 break;
10620 case SVt_PVFM:
10621 SvANY(dstr) = new_XPVFM();
10622 FmLINES(dstr) = FmLINES(sstr);
10623 goto dup_pvcv;
10624 /* NOTREACHED */
10625 case SVt_PVCV:
10626 SvANY(dstr) = new_XPVCV();
d2d73c3e 10627 dup_pvcv:
b162af07
SP
10628 SvCUR_set(dstr, SvCUR(sstr));
10629 SvLEN_set(dstr, SvLEN(sstr));
45977657 10630 SvIV_set(dstr, SvIVX(sstr));
9d6ce603 10631 SvNV_set(dstr, SvNVX(sstr));
b162af07
SP
10632 SvMAGIC_set(dstr, mg_dup(SvMAGIC(sstr), param));
10633 SvSTASH_set(dstr, hv_dup_inc(SvSTASH(sstr), param));
83841fad 10634 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
d2d73c3e 10635 CvSTASH(dstr) = hv_dup(CvSTASH(sstr), param); /* NOTE: not refcounted */
1d7c1841 10636 CvSTART(dstr) = CvSTART(sstr);
b34c0dd4 10637 OP_REFCNT_LOCK;
1d7c1841 10638 CvROOT(dstr) = OpREFCNT_inc(CvROOT(sstr));
b34c0dd4 10639 OP_REFCNT_UNLOCK;
1d7c1841
GS
10640 CvXSUB(dstr) = CvXSUB(sstr);
10641 CvXSUBANY(dstr) = CvXSUBANY(sstr);
01485f8b
DM
10642 if (CvCONST(sstr)) {
10643 CvXSUBANY(dstr).any_ptr = GvUNIQUE(CvGV(sstr)) ?
10644 SvREFCNT_inc(CvXSUBANY(sstr).any_ptr) :
8f77bfdb 10645 sv_dup_inc((SV *)CvXSUBANY(sstr).any_ptr, param);
01485f8b 10646 }
b23f1a86
DM
10647 /* don't dup if copying back - CvGV isn't refcounted, so the
10648 * duped GV may never be freed. A bit of a hack! DAPM */
10649 CvGV(dstr) = (param->flags & CLONEf_JOIN_IN) ?
10650 Nullgv : gv_dup(CvGV(sstr), param) ;
d2d73c3e
AB
10651 if (param->flags & CLONEf_COPY_STACKS) {
10652 CvDEPTH(dstr) = CvDEPTH(sstr);
10653 } else {
10654 CvDEPTH(dstr) = 0;
10655 }
dd2155a4 10656 PAD_DUP(CvPADLIST(dstr), CvPADLIST(sstr), param);
7dafbf52
DM
10657 CvOUTSIDE_SEQ(dstr) = CvOUTSIDE_SEQ(sstr);
10658 CvOUTSIDE(dstr) =
10659 CvWEAKOUTSIDE(sstr)
10660 ? cv_dup( CvOUTSIDE(sstr), param)
10661 : cv_dup_inc(CvOUTSIDE(sstr), param);
1d7c1841 10662 CvFLAGS(dstr) = CvFLAGS(sstr);
54356c7d 10663 CvFILE(dstr) = CvXSUB(sstr) ? CvFILE(sstr) : SAVEPV(CvFILE(sstr));
1d7c1841
GS
10664 break;
10665 default:
c803eecc 10666 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
1d7c1841
GS
10667 break;
10668 }
10669
10670 if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
10671 ++PL_sv_objcount;
10672
10673 return dstr;
d2d73c3e 10674 }
1d7c1841 10675
645c22ef
DM
10676/* duplicate a context */
10677
1d7c1841 10678PERL_CONTEXT *
a8fc9800 10679Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
1d7c1841
GS
10680{
10681 PERL_CONTEXT *ncxs;
10682
10683 if (!cxs)
10684 return (PERL_CONTEXT*)NULL;
10685
10686 /* look for it in the table first */
10687 ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
10688 if (ncxs)
10689 return ncxs;
10690
10691 /* create anew and remember what it is */
10692 Newz(56, ncxs, max + 1, PERL_CONTEXT);
10693 ptr_table_store(PL_ptr_table, cxs, ncxs);
10694
10695 while (ix >= 0) {
10696 PERL_CONTEXT *cx = &cxs[ix];
10697 PERL_CONTEXT *ncx = &ncxs[ix];
10698 ncx->cx_type = cx->cx_type;
10699 if (CxTYPE(cx) == CXt_SUBST) {
10700 Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
10701 }
10702 else {
10703 ncx->blk_oldsp = cx->blk_oldsp;
10704 ncx->blk_oldcop = cx->blk_oldcop;
1d7c1841
GS
10705 ncx->blk_oldmarksp = cx->blk_oldmarksp;
10706 ncx->blk_oldscopesp = cx->blk_oldscopesp;
10707 ncx->blk_oldpm = cx->blk_oldpm;
10708 ncx->blk_gimme = cx->blk_gimme;
10709 switch (CxTYPE(cx)) {
10710 case CXt_SUB:
10711 ncx->blk_sub.cv = (cx->blk_sub.olddepth == 0
d2d73c3e
AB
10712 ? cv_dup_inc(cx->blk_sub.cv, param)
10713 : cv_dup(cx->blk_sub.cv,param));
1d7c1841 10714 ncx->blk_sub.argarray = (cx->blk_sub.hasargs
d2d73c3e 10715 ? av_dup_inc(cx->blk_sub.argarray, param)
1d7c1841 10716 : Nullav);
d2d73c3e 10717 ncx->blk_sub.savearray = av_dup_inc(cx->blk_sub.savearray, param);
1d7c1841
GS
10718 ncx->blk_sub.olddepth = cx->blk_sub.olddepth;
10719 ncx->blk_sub.hasargs = cx->blk_sub.hasargs;
10720 ncx->blk_sub.lval = cx->blk_sub.lval;
f39bc417 10721 ncx->blk_sub.retop = cx->blk_sub.retop;
1d7c1841
GS
10722 break;
10723 case CXt_EVAL:
10724 ncx->blk_eval.old_in_eval = cx->blk_eval.old_in_eval;
10725 ncx->blk_eval.old_op_type = cx->blk_eval.old_op_type;
b47cad08 10726 ncx->blk_eval.old_namesv = sv_dup_inc(cx->blk_eval.old_namesv, param);
1d7c1841 10727 ncx->blk_eval.old_eval_root = cx->blk_eval.old_eval_root;
d2d73c3e 10728 ncx->blk_eval.cur_text = sv_dup(cx->blk_eval.cur_text, param);
f39bc417 10729 ncx->blk_eval.retop = cx->blk_eval.retop;
1d7c1841
GS
10730 break;
10731 case CXt_LOOP:
10732 ncx->blk_loop.label = cx->blk_loop.label;
10733 ncx->blk_loop.resetsp = cx->blk_loop.resetsp;
10734 ncx->blk_loop.redo_op = cx->blk_loop.redo_op;
10735 ncx->blk_loop.next_op = cx->blk_loop.next_op;
10736 ncx->blk_loop.last_op = cx->blk_loop.last_op;
10737 ncx->blk_loop.iterdata = (CxPADLOOP(cx)
10738 ? cx->blk_loop.iterdata
d2d73c3e 10739 : gv_dup((GV*)cx->blk_loop.iterdata, param));
f3548bdc
DM
10740 ncx->blk_loop.oldcomppad
10741 = (PAD*)ptr_table_fetch(PL_ptr_table,
10742 cx->blk_loop.oldcomppad);
d2d73c3e
AB
10743 ncx->blk_loop.itersave = sv_dup_inc(cx->blk_loop.itersave, param);
10744 ncx->blk_loop.iterlval = sv_dup_inc(cx->blk_loop.iterlval, param);
10745 ncx->blk_loop.iterary = av_dup_inc(cx->blk_loop.iterary, param);
1d7c1841
GS
10746 ncx->blk_loop.iterix = cx->blk_loop.iterix;
10747 ncx->blk_loop.itermax = cx->blk_loop.itermax;
10748 break;
10749 case CXt_FORMAT:
d2d73c3e
AB
10750 ncx->blk_sub.cv = cv_dup(cx->blk_sub.cv, param);
10751 ncx->blk_sub.gv = gv_dup(cx->blk_sub.gv, param);
10752 ncx->blk_sub.dfoutgv = gv_dup_inc(cx->blk_sub.dfoutgv, param);
1d7c1841 10753 ncx->blk_sub.hasargs = cx->blk_sub.hasargs;
f39bc417 10754 ncx->blk_sub.retop = cx->blk_sub.retop;
1d7c1841
GS
10755 break;
10756 case CXt_BLOCK:
10757 case CXt_NULL:
10758 break;
10759 }
10760 }
10761 --ix;
10762 }
10763 return ncxs;
10764}
10765
645c22ef
DM
10766/* duplicate a stack info structure */
10767
1d7c1841 10768PERL_SI *
a8fc9800 10769Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
1d7c1841
GS
10770{
10771 PERL_SI *nsi;
10772
10773 if (!si)
10774 return (PERL_SI*)NULL;
10775
10776 /* look for it in the table first */
10777 nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
10778 if (nsi)
10779 return nsi;
10780
10781 /* create anew and remember what it is */
10782 Newz(56, nsi, 1, PERL_SI);
10783 ptr_table_store(PL_ptr_table, si, nsi);
10784
d2d73c3e 10785 nsi->si_stack = av_dup_inc(si->si_stack, param);
1d7c1841
GS
10786 nsi->si_cxix = si->si_cxix;
10787 nsi->si_cxmax = si->si_cxmax;
d2d73c3e 10788 nsi->si_cxstack = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
1d7c1841 10789 nsi->si_type = si->si_type;
d2d73c3e
AB
10790 nsi->si_prev = si_dup(si->si_prev, param);
10791 nsi->si_next = si_dup(si->si_next, param);
1d7c1841
GS
10792 nsi->si_markoff = si->si_markoff;
10793
10794 return nsi;
10795}
10796
10797#define POPINT(ss,ix) ((ss)[--(ix)].any_i32)
10798#define TOPINT(ss,ix) ((ss)[ix].any_i32)
10799#define POPLONG(ss,ix) ((ss)[--(ix)].any_long)
10800#define TOPLONG(ss,ix) ((ss)[ix].any_long)
10801#define POPIV(ss,ix) ((ss)[--(ix)].any_iv)
10802#define TOPIV(ss,ix) ((ss)[ix].any_iv)
38d8b13e
HS
10803#define POPBOOL(ss,ix) ((ss)[--(ix)].any_bool)
10804#define TOPBOOL(ss,ix) ((ss)[ix].any_bool)
1d7c1841
GS
10805#define POPPTR(ss,ix) ((ss)[--(ix)].any_ptr)
10806#define TOPPTR(ss,ix) ((ss)[ix].any_ptr)
10807#define POPDPTR(ss,ix) ((ss)[--(ix)].any_dptr)
10808#define TOPDPTR(ss,ix) ((ss)[ix].any_dptr)
10809#define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
10810#define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
10811
10812/* XXXXX todo */
10813#define pv_dup_inc(p) SAVEPV(p)
10814#define pv_dup(p) SAVEPV(p)
10815#define svp_dup_inc(p,pp) any_dup(p,pp)
10816
645c22ef
DM
10817/* map any object to the new equivent - either something in the
10818 * ptr table, or something in the interpreter structure
10819 */
10820
1d7c1841
GS
10821void *
10822Perl_any_dup(pTHX_ void *v, PerlInterpreter *proto_perl)
10823{
10824 void *ret;
10825
10826 if (!v)
10827 return (void*)NULL;
10828
10829 /* look for it in the table first */
10830 ret = ptr_table_fetch(PL_ptr_table, v);
10831 if (ret)
10832 return ret;
10833
10834 /* see if it is part of the interpreter structure */
10835 if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
acfe0abc 10836 ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
05ec9bb3 10837 else {
1d7c1841 10838 ret = v;
05ec9bb3 10839 }
1d7c1841
GS
10840
10841 return ret;
10842}
10843
645c22ef
DM
10844/* duplicate the save stack */
10845
1d7c1841 10846ANY *
a8fc9800 10847Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
1d7c1841
GS
10848{
10849 ANY *ss = proto_perl->Tsavestack;
10850 I32 ix = proto_perl->Tsavestack_ix;
10851 I32 max = proto_perl->Tsavestack_max;
10852 ANY *nss;
10853 SV *sv;
10854 GV *gv;
10855 AV *av;
10856 HV *hv;
10857 void* ptr;
10858 int intval;
10859 long longval;
10860 GP *gp;
10861 IV iv;
c4e33207 10862 char *c = NULL;
1d7c1841 10863 void (*dptr) (void*);
acfe0abc 10864 void (*dxptr) (pTHX_ void*);
e977893f 10865 OP *o;
1d7c1841
GS
10866
10867 Newz(54, nss, max, ANY);
10868
10869 while (ix > 0) {
b464bac0 10870 I32 i = POPINT(ss,ix);
1d7c1841
GS
10871 TOPINT(nss,ix) = i;
10872 switch (i) {
10873 case SAVEt_ITEM: /* normal string */
10874 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 10875 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841 10876 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 10877 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841
GS
10878 break;
10879 case SAVEt_SV: /* scalar reference */
10880 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 10881 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841 10882 gv = (GV*)POPPTR(ss,ix);
d2d73c3e 10883 TOPPTR(nss,ix) = gv_dup_inc(gv, param);
1d7c1841 10884 break;
f4dd75d9
GS
10885 case SAVEt_GENERIC_PVREF: /* generic char* */
10886 c = (char*)POPPTR(ss,ix);
10887 TOPPTR(nss,ix) = pv_dup(c);
10888 ptr = POPPTR(ss,ix);
10889 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10890 break;
05ec9bb3
NIS
10891 case SAVEt_SHARED_PVREF: /* char* in shared space */
10892 c = (char*)POPPTR(ss,ix);
10893 TOPPTR(nss,ix) = savesharedpv(c);
10894 ptr = POPPTR(ss,ix);
10895 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10896 break;
1d7c1841
GS
10897 case SAVEt_GENERIC_SVREF: /* generic sv */
10898 case SAVEt_SVREF: /* scalar reference */
10899 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 10900 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841
GS
10901 ptr = POPPTR(ss,ix);
10902 TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
10903 break;
10904 case SAVEt_AV: /* array reference */
10905 av = (AV*)POPPTR(ss,ix);
d2d73c3e 10906 TOPPTR(nss,ix) = av_dup_inc(av, param);
1d7c1841 10907 gv = (GV*)POPPTR(ss,ix);
d2d73c3e 10908 TOPPTR(nss,ix) = gv_dup(gv, param);
1d7c1841
GS
10909 break;
10910 case SAVEt_HV: /* hash reference */
10911 hv = (HV*)POPPTR(ss,ix);
d2d73c3e 10912 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
1d7c1841 10913 gv = (GV*)POPPTR(ss,ix);
d2d73c3e 10914 TOPPTR(nss,ix) = gv_dup(gv, param);
1d7c1841
GS
10915 break;
10916 case SAVEt_INT: /* int reference */
10917 ptr = POPPTR(ss,ix);
10918 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10919 intval = (int)POPINT(ss,ix);
10920 TOPINT(nss,ix) = intval;
10921 break;
10922 case SAVEt_LONG: /* long reference */
10923 ptr = POPPTR(ss,ix);
10924 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10925 longval = (long)POPLONG(ss,ix);
10926 TOPLONG(nss,ix) = longval;
10927 break;
10928 case SAVEt_I32: /* I32 reference */
10929 case SAVEt_I16: /* I16 reference */
10930 case SAVEt_I8: /* I8 reference */
10931 ptr = POPPTR(ss,ix);
10932 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10933 i = POPINT(ss,ix);
10934 TOPINT(nss,ix) = i;
10935 break;
10936 case SAVEt_IV: /* IV reference */
10937 ptr = POPPTR(ss,ix);
10938 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10939 iv = POPIV(ss,ix);
10940 TOPIV(nss,ix) = iv;
10941 break;
10942 case SAVEt_SPTR: /* SV* reference */
10943 ptr = POPPTR(ss,ix);
10944 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10945 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 10946 TOPPTR(nss,ix) = sv_dup(sv, param);
1d7c1841
GS
10947 break;
10948 case SAVEt_VPTR: /* random* reference */
10949 ptr = POPPTR(ss,ix);
10950 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10951 ptr = POPPTR(ss,ix);
10952 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10953 break;
10954 case SAVEt_PPTR: /* char* reference */
10955 ptr = POPPTR(ss,ix);
10956 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10957 c = (char*)POPPTR(ss,ix);
10958 TOPPTR(nss,ix) = pv_dup(c);
10959 break;
10960 case SAVEt_HPTR: /* HV* reference */
10961 ptr = POPPTR(ss,ix);
10962 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10963 hv = (HV*)POPPTR(ss,ix);
d2d73c3e 10964 TOPPTR(nss,ix) = hv_dup(hv, param);
1d7c1841
GS
10965 break;
10966 case SAVEt_APTR: /* AV* reference */
10967 ptr = POPPTR(ss,ix);
10968 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10969 av = (AV*)POPPTR(ss,ix);
d2d73c3e 10970 TOPPTR(nss,ix) = av_dup(av, param);
1d7c1841
GS
10971 break;
10972 case SAVEt_NSTAB:
10973 gv = (GV*)POPPTR(ss,ix);
d2d73c3e 10974 TOPPTR(nss,ix) = gv_dup(gv, param);
1d7c1841
GS
10975 break;
10976 case SAVEt_GP: /* scalar reference */
10977 gp = (GP*)POPPTR(ss,ix);
d2d73c3e 10978 TOPPTR(nss,ix) = gp = gp_dup(gp, param);
1d7c1841
GS
10979 (void)GpREFCNT_inc(gp);
10980 gv = (GV*)POPPTR(ss,ix);
2ed3c8fc 10981 TOPPTR(nss,ix) = gv_dup_inc(gv, param);
1d7c1841
GS
10982 c = (char*)POPPTR(ss,ix);
10983 TOPPTR(nss,ix) = pv_dup(c);
10984 iv = POPIV(ss,ix);
10985 TOPIV(nss,ix) = iv;
10986 iv = POPIV(ss,ix);
10987 TOPIV(nss,ix) = iv;
10988 break;
10989 case SAVEt_FREESV:
26d9b02f 10990 case SAVEt_MORTALIZESV:
1d7c1841 10991 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 10992 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841
GS
10993 break;
10994 case SAVEt_FREEOP:
10995 ptr = POPPTR(ss,ix);
10996 if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
10997 /* these are assumed to be refcounted properly */
10998 switch (((OP*)ptr)->op_type) {
10999 case OP_LEAVESUB:
11000 case OP_LEAVESUBLV:
11001 case OP_LEAVEEVAL:
11002 case OP_LEAVE:
11003 case OP_SCOPE:
11004 case OP_LEAVEWRITE:
e977893f
GS
11005 TOPPTR(nss,ix) = ptr;
11006 o = (OP*)ptr;
11007 OpREFCNT_inc(o);
1d7c1841
GS
11008 break;
11009 default:
11010 TOPPTR(nss,ix) = Nullop;
11011 break;
11012 }
11013 }
11014 else
11015 TOPPTR(nss,ix) = Nullop;
11016 break;
11017 case SAVEt_FREEPV:
11018 c = (char*)POPPTR(ss,ix);
11019 TOPPTR(nss,ix) = pv_dup_inc(c);
11020 break;
11021 case SAVEt_CLEARSV:
11022 longval = POPLONG(ss,ix);
11023 TOPLONG(nss,ix) = longval;
11024 break;
11025 case SAVEt_DELETE:
11026 hv = (HV*)POPPTR(ss,ix);
d2d73c3e 11027 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
1d7c1841
GS
11028 c = (char*)POPPTR(ss,ix);
11029 TOPPTR(nss,ix) = pv_dup_inc(c);
11030 i = POPINT(ss,ix);
11031 TOPINT(nss,ix) = i;
11032 break;
11033 case SAVEt_DESTRUCTOR:
11034 ptr = POPPTR(ss,ix);
11035 TOPPTR(nss,ix) = any_dup(ptr, proto_perl); /* XXX quite arbitrary */
11036 dptr = POPDPTR(ss,ix);
8141890a
JH
11037 TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
11038 any_dup(FPTR2DPTR(void *, dptr),
11039 proto_perl));
1d7c1841
GS
11040 break;
11041 case SAVEt_DESTRUCTOR_X:
11042 ptr = POPPTR(ss,ix);
11043 TOPPTR(nss,ix) = any_dup(ptr, proto_perl); /* XXX quite arbitrary */
11044 dxptr = POPDXPTR(ss,ix);
8141890a
JH
11045 TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
11046 any_dup(FPTR2DPTR(void *, dxptr),
11047 proto_perl));
1d7c1841
GS
11048 break;
11049 case SAVEt_REGCONTEXT:
11050 case SAVEt_ALLOC:
11051 i = POPINT(ss,ix);
11052 TOPINT(nss,ix) = i;
11053 ix -= i;
11054 break;
11055 case SAVEt_STACK_POS: /* Position on Perl stack */
11056 i = POPINT(ss,ix);
11057 TOPINT(nss,ix) = i;
11058 break;
11059 case SAVEt_AELEM: /* array element */
11060 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 11061 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841
GS
11062 i = POPINT(ss,ix);
11063 TOPINT(nss,ix) = i;
11064 av = (AV*)POPPTR(ss,ix);
d2d73c3e 11065 TOPPTR(nss,ix) = av_dup_inc(av, param);
1d7c1841
GS
11066 break;
11067 case SAVEt_HELEM: /* hash element */
11068 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 11069 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841 11070 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 11071 TOPPTR(nss,ix) = sv_dup_inc(sv, param);
1d7c1841 11072 hv = (HV*)POPPTR(ss,ix);
d2d73c3e 11073 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
1d7c1841
GS
11074 break;
11075 case SAVEt_OP:
11076 ptr = POPPTR(ss,ix);
11077 TOPPTR(nss,ix) = ptr;
11078 break;
11079 case SAVEt_HINTS:
11080 i = POPINT(ss,ix);
11081 TOPINT(nss,ix) = i;
11082 break;
c4410b1b
GS
11083 case SAVEt_COMPPAD:
11084 av = (AV*)POPPTR(ss,ix);
58ed4fbe 11085 TOPPTR(nss,ix) = av_dup(av, param);
c4410b1b 11086 break;
c3564e5c
GS
11087 case SAVEt_PADSV:
11088 longval = (long)POPLONG(ss,ix);
11089 TOPLONG(nss,ix) = longval;
11090 ptr = POPPTR(ss,ix);
11091 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11092 sv = (SV*)POPPTR(ss,ix);
d2d73c3e 11093 TOPPTR(nss,ix) = sv_dup(sv, param);
c3564e5c 11094 break;
a1bb4754 11095 case SAVEt_BOOL:
38d8b13e 11096 ptr = POPPTR(ss,ix);
b9609c01 11097 TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
38d8b13e 11098 longval = (long)POPBOOL(ss,ix);
b9609c01 11099 TOPBOOL(nss,ix) = (bool)longval;
a1bb4754 11100 break;
8bd2680e
MHM
11101 case SAVEt_SET_SVFLAGS:
11102 i = POPINT(ss,ix);
11103 TOPINT(nss,ix) = i;
11104 i = POPINT(ss,ix);
11105 TOPINT(nss,ix) = i;
11106 sv = (SV*)POPPTR(ss,ix);
11107 TOPPTR(nss,ix) = sv_dup(sv, param);
11108 break;
1d7c1841
GS
11109 default:
11110 Perl_croak(aTHX_ "panic: ss_dup inconsistency");
11111 }
11112 }
11113
11114 return nss;
11115}
11116
9660f481
DM
11117
11118/* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
11119 * flag to the result. This is done for each stash before cloning starts,
11120 * so we know which stashes want their objects cloned */
11121
11122static void
11123do_mark_cloneable_stash(pTHX_ SV *sv)
11124{
84bda14a 11125 const HEK *hvname = HvNAME_HEK((HV*)sv);
bfcb3514 11126 if (hvname) {
9660f481
DM
11127 GV* cloner = gv_fetchmethod_autoload((HV*)sv, "CLONE_SKIP", 0);
11128 SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
11129 if (cloner && GvCV(cloner)) {
11130 dSP;
11131 UV status;
11132
11133 ENTER;
11134 SAVETMPS;
11135 PUSHMARK(SP);
84bda14a 11136 XPUSHs(sv_2mortal(newSVhek(hvname)));
9660f481
DM
11137 PUTBACK;
11138 call_sv((SV*)GvCV(cloner), G_SCALAR);
11139 SPAGAIN;
11140 status = POPu;
11141 PUTBACK;
11142 FREETMPS;
11143 LEAVE;
11144 if (status)
11145 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
11146 }
11147 }
11148}
11149
11150
11151
645c22ef
DM
11152/*
11153=for apidoc perl_clone
11154
11155Create and return a new interpreter by cloning the current one.
11156
4be49ee6 11157perl_clone takes these flags as parameters:
6a78b4db 11158
7a5fa8a2
NIS
11159CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
11160without it we only clone the data and zero the stacks,
11161with it we copy the stacks and the new perl interpreter is
11162ready to run at the exact same point as the previous one.
11163The pseudo-fork code uses COPY_STACKS while the
6a78b4db
AB
11164threads->new doesn't.
11165
11166CLONEf_KEEP_PTR_TABLE
7a5fa8a2
NIS
11167perl_clone keeps a ptr_table with the pointer of the old
11168variable as a key and the new variable as a value,
11169this allows it to check if something has been cloned and not
11170clone it again but rather just use the value and increase the
11171refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
11172the ptr_table using the function
11173C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
11174reason to keep it around is if you want to dup some of your own
11175variable who are outside the graph perl scans, example of this
6a78b4db
AB
11176code is in threads.xs create
11177
11178CLONEf_CLONE_HOST
7a5fa8a2
NIS
11179This is a win32 thing, it is ignored on unix, it tells perls
11180win32host code (which is c++) to clone itself, this is needed on
11181win32 if you want to run two threads at the same time,
11182if you just want to do some stuff in a separate perl interpreter
11183and then throw it away and return to the original one,
6a78b4db
AB
11184you don't need to do anything.
11185
645c22ef
DM
11186=cut
11187*/
11188
11189/* XXX the above needs expanding by someone who actually understands it ! */
3fc56081
NK
11190EXTERN_C PerlInterpreter *
11191perl_clone_host(PerlInterpreter* proto_perl, UV flags);
645c22ef 11192
1d7c1841
GS
11193PerlInterpreter *
11194perl_clone(PerlInterpreter *proto_perl, UV flags)
11195{
27da23d5 11196 dVAR;
1d7c1841 11197#ifdef PERL_IMPLICIT_SYS
c43294b8
AB
11198
11199 /* perlhost.h so we need to call into it
11200 to clone the host, CPerlHost should have a c interface, sky */
11201
11202 if (flags & CLONEf_CLONE_HOST) {
11203 return perl_clone_host(proto_perl,flags);
11204 }
11205 return perl_clone_using(proto_perl, flags,
1d7c1841
GS
11206 proto_perl->IMem,
11207 proto_perl->IMemShared,
11208 proto_perl->IMemParse,
11209 proto_perl->IEnv,
11210 proto_perl->IStdIO,
11211 proto_perl->ILIO,
11212 proto_perl->IDir,
11213 proto_perl->ISock,
11214 proto_perl->IProc);
11215}
11216
11217PerlInterpreter *
11218perl_clone_using(PerlInterpreter *proto_perl, UV flags,
11219 struct IPerlMem* ipM, struct IPerlMem* ipMS,
11220 struct IPerlMem* ipMP, struct IPerlEnv* ipE,
11221 struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
11222 struct IPerlDir* ipD, struct IPerlSock* ipS,
11223 struct IPerlProc* ipP)
11224{
11225 /* XXX many of the string copies here can be optimized if they're
11226 * constants; they need to be allocated as common memory and just
11227 * their pointers copied. */
11228
8fc9efbd 11229 IV i;
64aa0685
GS
11230 CLONE_PARAMS clone_params;
11231 CLONE_PARAMS* param = &clone_params;
d2d73c3e 11232
1d7c1841 11233 PerlInterpreter *my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
9660f481
DM
11234 /* for each stash, determine whether its objects should be cloned */
11235 S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
ba869deb 11236 PERL_SET_THX(my_perl);
1d7c1841 11237
acfe0abc 11238# ifdef DEBUGGING
a4530404 11239 Poison(my_perl, 1, PerlInterpreter);
fd0854ff 11240 PL_op = Nullop;
c008732b 11241 PL_curcop = (COP *)Nullop;
1d7c1841
GS
11242 PL_markstack = 0;
11243 PL_scopestack = 0;
11244 PL_savestack = 0;
22f7c9c9
JH
11245 PL_savestack_ix = 0;
11246 PL_savestack_max = -1;
66fe0623 11247 PL_sig_pending = 0;
25596c82 11248 Zero(&PL_debug_pad, 1, struct perl_debug_pad);
acfe0abc 11249# else /* !DEBUGGING */
1d7c1841 11250 Zero(my_perl, 1, PerlInterpreter);
acfe0abc 11251# endif /* DEBUGGING */
1d7c1841
GS
11252
11253 /* host pointers */
11254 PL_Mem = ipM;
11255 PL_MemShared = ipMS;
11256 PL_MemParse = ipMP;
11257 PL_Env = ipE;
11258 PL_StdIO = ipStd;
11259 PL_LIO = ipLIO;
11260 PL_Dir = ipD;
11261 PL_Sock = ipS;
11262 PL_Proc = ipP;
1d7c1841
GS
11263#else /* !PERL_IMPLICIT_SYS */
11264 IV i;
64aa0685
GS
11265 CLONE_PARAMS clone_params;
11266 CLONE_PARAMS* param = &clone_params;
1d7c1841 11267 PerlInterpreter *my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
9660f481
DM
11268 /* for each stash, determine whether its objects should be cloned */
11269 S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
ba869deb 11270 PERL_SET_THX(my_perl);
1d7c1841
GS
11271
11272# ifdef DEBUGGING
a4530404 11273 Poison(my_perl, 1, PerlInterpreter);
fd0854ff 11274 PL_op = Nullop;
c008732b 11275 PL_curcop = (COP *)Nullop;
1d7c1841
GS
11276 PL_markstack = 0;
11277 PL_scopestack = 0;
11278 PL_savestack = 0;
22f7c9c9
JH
11279 PL_savestack_ix = 0;
11280 PL_savestack_max = -1;
66fe0623 11281 PL_sig_pending = 0;
25596c82 11282 Zero(&PL_debug_pad, 1, struct perl_debug_pad);
1d7c1841
GS
11283# else /* !DEBUGGING */
11284 Zero(my_perl, 1, PerlInterpreter);
11285# endif /* DEBUGGING */
11286#endif /* PERL_IMPLICIT_SYS */
83236556 11287 param->flags = flags;
59b40662 11288 param->proto_perl = proto_perl;
1d7c1841
GS
11289
11290 /* arena roots */
612f20c3 11291 PL_xnv_arenaroot = NULL;
1d7c1841 11292 PL_xnv_root = NULL;
612f20c3 11293 PL_xpv_arenaroot = NULL;
1d7c1841 11294 PL_xpv_root = NULL;
612f20c3 11295 PL_xpviv_arenaroot = NULL;
1d7c1841 11296 PL_xpviv_root = NULL;
612f20c3 11297 PL_xpvnv_arenaroot = NULL;
1d7c1841 11298 PL_xpvnv_root = NULL;
612f20c3 11299 PL_xpvcv_arenaroot = NULL;
1d7c1841 11300 PL_xpvcv_root = NULL;
612f20c3 11301 PL_xpvav_arenaroot = NULL;
1d7c1841 11302 PL_xpvav_root = NULL;
612f20c3 11303 PL_xpvhv_arenaroot = NULL;
1d7c1841 11304 PL_xpvhv_root = NULL;
612f20c3 11305 PL_xpvmg_arenaroot = NULL;
1d7c1841 11306 PL_xpvmg_root = NULL;
7552b40b
DM
11307 PL_xpvgv_arenaroot = NULL;
11308 PL_xpvgv_root = NULL;
612f20c3 11309 PL_xpvlv_arenaroot = NULL;
1d7c1841 11310 PL_xpvlv_root = NULL;
612f20c3 11311 PL_xpvbm_arenaroot = NULL;
1d7c1841 11312 PL_xpvbm_root = NULL;
612f20c3 11313 PL_he_arenaroot = NULL;
1d7c1841 11314 PL_he_root = NULL;
892b45be 11315#if defined(USE_ITHREADS)
32e691d0
NC
11316 PL_pte_arenaroot = NULL;
11317 PL_pte_root = NULL;
892b45be 11318#endif
1d7c1841
GS
11319 PL_nice_chunk = NULL;
11320 PL_nice_chunk_size = 0;
11321 PL_sv_count = 0;
11322 PL_sv_objcount = 0;
11323 PL_sv_root = Nullsv;
11324 PL_sv_arenaroot = Nullsv;
11325
11326 PL_debug = proto_perl->Idebug;
11327
8df990a8
NC
11328 PL_hash_seed = proto_perl->Ihash_seed;
11329 PL_rehash_seed = proto_perl->Irehash_seed;
11330
e5dd39fc 11331#ifdef USE_REENTRANT_API
68853529
SB
11332 /* XXX: things like -Dm will segfault here in perlio, but doing
11333 * PERL_SET_CONTEXT(proto_perl);
11334 * breaks too many other things
11335 */
59bd0823 11336 Perl_reentrant_init(aTHX);
e5dd39fc
AB
11337#endif
11338
1d7c1841
GS
11339 /* create SV map for pointer relocation */
11340 PL_ptr_table = ptr_table_new();
11341
11342 /* initialize these special pointers as early as possible */
11343 SvANY(&PL_sv_undef) = NULL;
11344 SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
11345 SvFLAGS(&PL_sv_undef) = SVf_READONLY|SVt_NULL;
11346 ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
11347
1d7c1841 11348 SvANY(&PL_sv_no) = new_XPVNV();
1d7c1841 11349 SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
0309f36e
NC
11350 SvFLAGS(&PL_sv_no) = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11351 |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
f880fe2f 11352 SvPV_set(&PL_sv_no, SAVEPVN(PL_No, 0));
b162af07
SP
11353 SvCUR_set(&PL_sv_no, 0);
11354 SvLEN_set(&PL_sv_no, 1);
45977657 11355 SvIV_set(&PL_sv_no, 0);
9d6ce603 11356 SvNV_set(&PL_sv_no, 0);
1d7c1841
GS
11357 ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
11358
1d7c1841 11359 SvANY(&PL_sv_yes) = new_XPVNV();
1d7c1841 11360 SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
0309f36e
NC
11361 SvFLAGS(&PL_sv_yes) = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11362 |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
f880fe2f 11363 SvPV_set(&PL_sv_yes, SAVEPVN(PL_Yes, 1));
b162af07
SP
11364 SvCUR_set(&PL_sv_yes, 1);
11365 SvLEN_set(&PL_sv_yes, 2);
45977657 11366 SvIV_set(&PL_sv_yes, 1);
9d6ce603 11367 SvNV_set(&PL_sv_yes, 1);
1d7c1841
GS
11368 ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
11369
05ec9bb3 11370 /* create (a non-shared!) shared string table */
1d7c1841
GS
11371 PL_strtab = newHV();
11372 HvSHAREKEYS_off(PL_strtab);
c4a9c09d 11373 hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
1d7c1841
GS
11374 ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
11375
05ec9bb3
NIS
11376 PL_compiling = proto_perl->Icompiling;
11377
11378 /* These two PVs will be free'd special way so must set them same way op.c does */
11379 PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
11380 ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
11381
11382 PL_compiling.cop_file = savesharedpv(PL_compiling.cop_file);
11383 ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
11384
1d7c1841
GS
11385 ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
11386 if (!specialWARN(PL_compiling.cop_warnings))
d2d73c3e 11387 PL_compiling.cop_warnings = sv_dup_inc(PL_compiling.cop_warnings, param);
ac27b0f5 11388 if (!specialCopIO(PL_compiling.cop_io))
d2d73c3e 11389 PL_compiling.cop_io = sv_dup_inc(PL_compiling.cop_io, param);
1d7c1841
GS
11390 PL_curcop = (COP*)any_dup(proto_perl->Tcurcop, proto_perl);
11391
11392 /* pseudo environmental stuff */
11393 PL_origargc = proto_perl->Iorigargc;
e2975953 11394 PL_origargv = proto_perl->Iorigargv;
d2d73c3e 11395
d2d73c3e
AB
11396 param->stashes = newAV(); /* Setup array of objects to call clone on */
11397
a1ea730d 11398#ifdef PERLIO_LAYERS
3a1ee7e8
NIS
11399 /* Clone PerlIO tables as soon as we can handle general xx_dup() */
11400 PerlIO_clone(aTHX_ proto_perl, param);
a1ea730d 11401#endif
d2d73c3e
AB
11402
11403 PL_envgv = gv_dup(proto_perl->Ienvgv, param);
11404 PL_incgv = gv_dup(proto_perl->Iincgv, param);
11405 PL_hintgv = gv_dup(proto_perl->Ihintgv, param);
1d7c1841 11406 PL_origfilename = SAVEPV(proto_perl->Iorigfilename);
d2d73c3e
AB
11407 PL_diehook = sv_dup_inc(proto_perl->Idiehook, param);
11408 PL_warnhook = sv_dup_inc(proto_perl->Iwarnhook, param);
1d7c1841
GS
11409
11410 /* switches */
11411 PL_minus_c = proto_perl->Iminus_c;
d2d73c3e 11412 PL_patchlevel = sv_dup_inc(proto_perl->Ipatchlevel, param);
1d7c1841
GS
11413 PL_localpatches = proto_perl->Ilocalpatches;
11414 PL_splitstr = proto_perl->Isplitstr;
11415 PL_preprocess = proto_perl->Ipreprocess;
11416 PL_minus_n = proto_perl->Iminus_n;
11417 PL_minus_p = proto_perl->Iminus_p;
11418 PL_minus_l = proto_perl->Iminus_l;
11419 PL_minus_a = proto_perl->Iminus_a;
11420 PL_minus_F = proto_perl->Iminus_F;
11421 PL_doswitches = proto_perl->Idoswitches;
11422 PL_dowarn = proto_perl->Idowarn;
11423 PL_doextract = proto_perl->Idoextract;
11424 PL_sawampersand = proto_perl->Isawampersand;
11425 PL_unsafe = proto_perl->Iunsafe;
11426 PL_inplace = SAVEPV(proto_perl->Iinplace);
d2d73c3e 11427 PL_e_script = sv_dup_inc(proto_perl->Ie_script, param);
1d7c1841
GS
11428 PL_perldb = proto_perl->Iperldb;
11429 PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
1cbb0781 11430 PL_exit_flags = proto_perl->Iexit_flags;
1d7c1841
GS
11431
11432 /* magical thingies */
11433 /* XXX time(&PL_basetime) when asked for? */
11434 PL_basetime = proto_perl->Ibasetime;
d2d73c3e 11435 PL_formfeed = sv_dup(proto_perl->Iformfeed, param);
1d7c1841
GS
11436
11437 PL_maxsysfd = proto_perl->Imaxsysfd;
11438 PL_multiline = proto_perl->Imultiline;
11439 PL_statusvalue = proto_perl->Istatusvalue;
11440#ifdef VMS
11441 PL_statusvalue_vms = proto_perl->Istatusvalue_vms;
11442#endif
0a378802 11443 PL_encoding = sv_dup(proto_perl->Iencoding, param);
1d7c1841 11444
4a4c6fe3 11445 sv_setpvn(PERL_DEBUG_PAD(0), "", 0); /* For regex debugging. */
1f483ca1
JH
11446 sv_setpvn(PERL_DEBUG_PAD(1), "", 0); /* ext/re needs these */
11447 sv_setpvn(PERL_DEBUG_PAD(2), "", 0); /* even without DEBUGGING. */
4a4c6fe3 11448
d2f185dc
AMS
11449 /* Clone the regex array */
11450 PL_regex_padav = newAV();
11451 {
a3b680e6 11452 const I32 len = av_len((AV*)proto_perl->Iregex_padav);
d2f185dc 11453 SV** regexen = AvARRAY((AV*)proto_perl->Iregex_padav);
b464bac0 11454 IV i;
0f95fc41
AB
11455 av_push(PL_regex_padav,
11456 sv_dup_inc(regexen[0],param));
11457 for(i = 1; i <= len; i++) {
11458 if(SvREPADTMP(regexen[i])) {
11459 av_push(PL_regex_padav, sv_dup_inc(regexen[i], param));
8cf8f3d1 11460 } else {
0f95fc41
AB
11461 av_push(PL_regex_padav,
11462 SvREFCNT_inc(
8cf8f3d1 11463 newSViv(PTR2IV(re_dup(INT2PTR(REGEXP *,
cbfa9890 11464 SvIVX(regexen[i])), param)))
0f95fc41
AB
11465 ));
11466 }
d2f185dc
AMS
11467 }
11468 }
11469 PL_regex_pad = AvARRAY(PL_regex_padav);
1fcf4c12 11470
1d7c1841 11471 /* shortcuts to various I/O objects */
d2d73c3e
AB
11472 PL_stdingv = gv_dup(proto_perl->Istdingv, param);
11473 PL_stderrgv = gv_dup(proto_perl->Istderrgv, param);
11474 PL_defgv = gv_dup(proto_perl->Idefgv, param);
11475 PL_argvgv = gv_dup(proto_perl->Iargvgv, param);
11476 PL_argvoutgv = gv_dup(proto_perl->Iargvoutgv, param);
11477 PL_argvout_stack = av_dup_inc(proto_perl->Iargvout_stack, param);
1d7c1841
GS
11478
11479 /* shortcuts to regexp stuff */
d2d73c3e 11480 PL_replgv = gv_dup(proto_perl->Ireplgv, param);
1d7c1841
GS
11481
11482 /* shortcuts to misc objects */
d2d73c3e 11483 PL_errgv = gv_dup(proto_perl->Ierrgv, param);
1d7c1841
GS
11484
11485 /* shortcuts to debugging objects */
d2d73c3e
AB
11486 PL_DBgv = gv_dup(proto_perl->IDBgv, param);
11487 PL_DBline = gv_dup(proto_perl->IDBline, param);
11488 PL_DBsub = gv_dup(proto_perl->IDBsub, param);
11489 PL_DBsingle = sv_dup(proto_perl->IDBsingle, param);
11490 PL_DBtrace = sv_dup(proto_perl->IDBtrace, param);
11491 PL_DBsignal = sv_dup(proto_perl->IDBsignal, param);
06492da6 11492 PL_DBassertion = sv_dup(proto_perl->IDBassertion, param);
d2d73c3e
AB
11493 PL_lineary = av_dup(proto_perl->Ilineary, param);
11494 PL_dbargs = av_dup(proto_perl->Idbargs, param);
1d7c1841
GS
11495
11496 /* symbol tables */
d2d73c3e
AB
11497 PL_defstash = hv_dup_inc(proto_perl->Tdefstash, param);
11498 PL_curstash = hv_dup(proto_perl->Tcurstash, param);
d2d73c3e
AB
11499 PL_debstash = hv_dup(proto_perl->Idebstash, param);
11500 PL_globalstash = hv_dup(proto_perl->Iglobalstash, param);
11501 PL_curstname = sv_dup_inc(proto_perl->Icurstname, param);
11502
11503 PL_beginav = av_dup_inc(proto_perl->Ibeginav, param);
ee1c5a4e 11504 PL_beginav_save = av_dup_inc(proto_perl->Ibeginav_save, param);
ece599bd 11505 PL_checkav_save = av_dup_inc(proto_perl->Icheckav_save, param);
d2d73c3e
AB
11506 PL_endav = av_dup_inc(proto_perl->Iendav, param);
11507 PL_checkav = av_dup_inc(proto_perl->Icheckav, param);
11508 PL_initav = av_dup_inc(proto_perl->Iinitav, param);
1d7c1841
GS
11509
11510 PL_sub_generation = proto_perl->Isub_generation;
11511
11512 /* funky return mechanisms */
11513 PL_forkprocess = proto_perl->Iforkprocess;
11514
11515 /* subprocess state */
d2d73c3e 11516 PL_fdpid = av_dup_inc(proto_perl->Ifdpid, param);
1d7c1841
GS
11517
11518 /* internal state */
11519 PL_tainting = proto_perl->Itainting;
7135f00b 11520 PL_taint_warn = proto_perl->Itaint_warn;
1d7c1841
GS
11521 PL_maxo = proto_perl->Imaxo;
11522 if (proto_perl->Iop_mask)
11523 PL_op_mask = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
11524 else
11525 PL_op_mask = Nullch;
06492da6 11526 /* PL_asserting = proto_perl->Iasserting; */
1d7c1841
GS
11527
11528 /* current interpreter roots */
d2d73c3e 11529 PL_main_cv = cv_dup_inc(proto_perl->Imain_cv, param);
1d7c1841
GS
11530 PL_main_root = OpREFCNT_inc(proto_perl->Imain_root);
11531 PL_main_start = proto_perl->Imain_start;
e977893f 11532 PL_eval_root = proto_perl->Ieval_root;
1d7c1841
GS
11533 PL_eval_start = proto_perl->Ieval_start;
11534
11535 /* runtime control stuff */
11536 PL_curcopdb = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
11537 PL_copline = proto_perl->Icopline;
11538
11539 PL_filemode = proto_perl->Ifilemode;
11540 PL_lastfd = proto_perl->Ilastfd;
11541 PL_oldname = proto_perl->Ioldname; /* XXX not quite right */
11542 PL_Argv = NULL;
11543 PL_Cmd = Nullch;
11544 PL_gensym = proto_perl->Igensym;
11545 PL_preambled = proto_perl->Ipreambled;
d2d73c3e 11546 PL_preambleav = av_dup_inc(proto_perl->Ipreambleav, param);
1d7c1841
GS
11547 PL_laststatval = proto_perl->Ilaststatval;
11548 PL_laststype = proto_perl->Ilaststype;
11549 PL_mess_sv = Nullsv;
11550
d2d73c3e 11551 PL_ors_sv = sv_dup_inc(proto_perl->Iors_sv, param);
1d7c1841
GS
11552 PL_ofmt = SAVEPV(proto_perl->Iofmt);
11553
11554 /* interpreter atexit processing */
11555 PL_exitlistlen = proto_perl->Iexitlistlen;
11556 if (PL_exitlistlen) {
11557 New(0, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
11558 Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
11559 }
11560 else
11561 PL_exitlist = (PerlExitListEntry*)NULL;
d2d73c3e 11562 PL_modglobal = hv_dup_inc(proto_perl->Imodglobal, param);
19e8ce8e
AB
11563 PL_custom_op_names = hv_dup_inc(proto_perl->Icustom_op_names,param);
11564 PL_custom_op_descs = hv_dup_inc(proto_perl->Icustom_op_descs,param);
1d7c1841
GS
11565
11566 PL_profiledata = NULL;
a8fc9800 11567 PL_rsfp = fp_dup(proto_perl->Irsfp, '<', param);
1d7c1841 11568 /* PL_rsfp_filters entries have fake IoDIRP() */
d2d73c3e 11569 PL_rsfp_filters = av_dup_inc(proto_perl->Irsfp_filters, param);
1d7c1841 11570
d2d73c3e 11571 PL_compcv = cv_dup(proto_perl->Icompcv, param);
dd2155a4
DM
11572
11573 PAD_CLONE_VARS(proto_perl, param);
1d7c1841
GS
11574
11575#ifdef HAVE_INTERP_INTERN
11576 sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
11577#endif
11578
11579 /* more statics moved here */
11580 PL_generation = proto_perl->Igeneration;
d2d73c3e 11581 PL_DBcv = cv_dup(proto_perl->IDBcv, param);
1d7c1841
GS
11582
11583 PL_in_clean_objs = proto_perl->Iin_clean_objs;
11584 PL_in_clean_all = proto_perl->Iin_clean_all;
11585
11586 PL_uid = proto_perl->Iuid;
11587 PL_euid = proto_perl->Ieuid;
11588 PL_gid = proto_perl->Igid;
11589 PL_egid = proto_perl->Iegid;
11590 PL_nomemok = proto_perl->Inomemok;
11591 PL_an = proto_perl->Ian;
1d7c1841
GS
11592 PL_evalseq = proto_perl->Ievalseq;
11593 PL_origenviron = proto_perl->Iorigenviron; /* XXX not quite right */
11594 PL_origalen = proto_perl->Iorigalen;
11595 PL_pidstatus = newHV(); /* XXX flag for cloning? */
11596 PL_osname = SAVEPV(proto_perl->Iosname);
5c728af0 11597 PL_sh_path_compat = proto_perl->Ish_path_compat; /* XXX never deallocated */
1d7c1841
GS
11598 PL_sighandlerp = proto_perl->Isighandlerp;
11599
11600
11601 PL_runops = proto_perl->Irunops;
11602
11603 Copy(proto_perl->Itokenbuf, PL_tokenbuf, 256, char);
11604
11605#ifdef CSH
11606 PL_cshlen = proto_perl->Icshlen;
74f1b2b8 11607 PL_cshname = proto_perl->Icshname; /* XXX never deallocated */
1d7c1841
GS
11608#endif
11609
11610 PL_lex_state = proto_perl->Ilex_state;
11611 PL_lex_defer = proto_perl->Ilex_defer;
11612 PL_lex_expect = proto_perl->Ilex_expect;
11613 PL_lex_formbrack = proto_perl->Ilex_formbrack;
11614 PL_lex_dojoin = proto_perl->Ilex_dojoin;
11615 PL_lex_starts = proto_perl->Ilex_starts;
d2d73c3e
AB
11616 PL_lex_stuff = sv_dup_inc(proto_perl->Ilex_stuff, param);
11617 PL_lex_repl = sv_dup_inc(proto_perl->Ilex_repl, param);
1d7c1841
GS
11618 PL_lex_op = proto_perl->Ilex_op;
11619 PL_lex_inpat = proto_perl->Ilex_inpat;
11620 PL_lex_inwhat = proto_perl->Ilex_inwhat;
11621 PL_lex_brackets = proto_perl->Ilex_brackets;
11622 i = (PL_lex_brackets < 120 ? 120 : PL_lex_brackets);
11623 PL_lex_brackstack = SAVEPVN(proto_perl->Ilex_brackstack,i);
11624 PL_lex_casemods = proto_perl->Ilex_casemods;
11625 i = (PL_lex_casemods < 12 ? 12 : PL_lex_casemods);
11626 PL_lex_casestack = SAVEPVN(proto_perl->Ilex_casestack,i);
11627
11628 Copy(proto_perl->Inextval, PL_nextval, 5, YYSTYPE);
11629 Copy(proto_perl->Inexttype, PL_nexttype, 5, I32);
11630 PL_nexttoke = proto_perl->Inexttoke;
11631
1d773130
TB
11632 /* XXX This is probably masking the deeper issue of why
11633 * SvANY(proto_perl->Ilinestr) can be NULL at this point. For test case:
11634 * http://archive.develooper.com/perl5-porters%40perl.org/msg83298.html
11635 * (A little debugging with a watchpoint on it may help.)
11636 */
389edf32
TB
11637 if (SvANY(proto_perl->Ilinestr)) {
11638 PL_linestr = sv_dup_inc(proto_perl->Ilinestr, param);
3f7c398e 11639 i = proto_perl->Ibufptr - SvPVX_const(proto_perl->Ilinestr);
389edf32 11640 PL_bufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
3f7c398e 11641 i = proto_perl->Ioldbufptr - SvPVX_const(proto_perl->Ilinestr);
389edf32 11642 PL_oldbufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
3f7c398e 11643 i = proto_perl->Ioldoldbufptr - SvPVX_const(proto_perl->Ilinestr);
389edf32 11644 PL_oldoldbufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
3f7c398e 11645 i = proto_perl->Ilinestart - SvPVX_const(proto_perl->Ilinestr);
389edf32
TB
11646 PL_linestart = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
11647 }
11648 else {
11649 PL_linestr = NEWSV(65,79);
11650 sv_upgrade(PL_linestr,SVt_PVIV);
11651 sv_setpvn(PL_linestr,"",0);
11652 PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
11653 }
1d7c1841 11654 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
1d7c1841
GS
11655 PL_pending_ident = proto_perl->Ipending_ident;
11656 PL_sublex_info = proto_perl->Isublex_info; /* XXX not quite right */
11657
11658 PL_expect = proto_perl->Iexpect;
11659
11660 PL_multi_start = proto_perl->Imulti_start;
11661 PL_multi_end = proto_perl->Imulti_end;
11662 PL_multi_open = proto_perl->Imulti_open;
11663 PL_multi_close = proto_perl->Imulti_close;
11664
11665 PL_error_count = proto_perl->Ierror_count;
11666 PL_subline = proto_perl->Isubline;
d2d73c3e 11667 PL_subname = sv_dup_inc(proto_perl->Isubname, param);
1d7c1841 11668
1d773130 11669 /* XXX See comment on SvANY(proto_perl->Ilinestr) above */
389edf32 11670 if (SvANY(proto_perl->Ilinestr)) {
3f7c398e 11671 i = proto_perl->Ilast_uni - SvPVX_const(proto_perl->Ilinestr);
389edf32 11672 PL_last_uni = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
3f7c398e 11673 i = proto_perl->Ilast_lop - SvPVX_const(proto_perl->Ilinestr);
389edf32
TB
11674 PL_last_lop = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
11675 PL_last_lop_op = proto_perl->Ilast_lop_op;
11676 }
11677 else {
11678 PL_last_uni = SvPVX(PL_linestr);
11679 PL_last_lop = SvPVX(PL_linestr);
11680 PL_last_lop_op = 0;
11681 }
1d7c1841 11682 PL_in_my = proto_perl->Iin_my;
d2d73c3e 11683 PL_in_my_stash = hv_dup(proto_perl->Iin_my_stash, param);
1d7c1841
GS
11684#ifdef FCRYPT
11685 PL_cryptseen = proto_perl->Icryptseen;
11686#endif
11687
11688 PL_hints = proto_perl->Ihints;
11689
11690 PL_amagic_generation = proto_perl->Iamagic_generation;
11691
11692#ifdef USE_LOCALE_COLLATE
11693 PL_collation_ix = proto_perl->Icollation_ix;
11694 PL_collation_name = SAVEPV(proto_perl->Icollation_name);
11695 PL_collation_standard = proto_perl->Icollation_standard;
11696 PL_collxfrm_base = proto_perl->Icollxfrm_base;
11697 PL_collxfrm_mult = proto_perl->Icollxfrm_mult;
11698#endif /* USE_LOCALE_COLLATE */
11699
11700#ifdef USE_LOCALE_NUMERIC
11701 PL_numeric_name = SAVEPV(proto_perl->Inumeric_name);
11702 PL_numeric_standard = proto_perl->Inumeric_standard;
11703 PL_numeric_local = proto_perl->Inumeric_local;
d2d73c3e 11704 PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
1d7c1841
GS
11705#endif /* !USE_LOCALE_NUMERIC */
11706
11707 /* utf8 character classes */
d2d73c3e
AB
11708 PL_utf8_alnum = sv_dup_inc(proto_perl->Iutf8_alnum, param);
11709 PL_utf8_alnumc = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
11710 PL_utf8_ascii = sv_dup_inc(proto_perl->Iutf8_ascii, param);
11711 PL_utf8_alpha = sv_dup_inc(proto_perl->Iutf8_alpha, param);
11712 PL_utf8_space = sv_dup_inc(proto_perl->Iutf8_space, param);
11713 PL_utf8_cntrl = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
11714 PL_utf8_graph = sv_dup_inc(proto_perl->Iutf8_graph, param);
11715 PL_utf8_digit = sv_dup_inc(proto_perl->Iutf8_digit, param);
11716 PL_utf8_upper = sv_dup_inc(proto_perl->Iutf8_upper, param);
11717 PL_utf8_lower = sv_dup_inc(proto_perl->Iutf8_lower, param);
11718 PL_utf8_print = sv_dup_inc(proto_perl->Iutf8_print, param);
11719 PL_utf8_punct = sv_dup_inc(proto_perl->Iutf8_punct, param);
11720 PL_utf8_xdigit = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
11721 PL_utf8_mark = sv_dup_inc(proto_perl->Iutf8_mark, param);
11722 PL_utf8_toupper = sv_dup_inc(proto_perl->Iutf8_toupper, param);
11723 PL_utf8_totitle = sv_dup_inc(proto_perl->Iutf8_totitle, param);
11724 PL_utf8_tolower = sv_dup_inc(proto_perl->Iutf8_tolower, param);
b4e400f9 11725 PL_utf8_tofold = sv_dup_inc(proto_perl->Iutf8_tofold, param);
82686b01
JH
11726 PL_utf8_idstart = sv_dup_inc(proto_perl->Iutf8_idstart, param);
11727 PL_utf8_idcont = sv_dup_inc(proto_perl->Iutf8_idcont, param);
1d7c1841 11728
6c3182a5 11729 /* Did the locale setup indicate UTF-8? */
9769094f 11730 PL_utf8locale = proto_perl->Iutf8locale;
6c3182a5
JH
11731 /* Unicode features (see perlrun/-C) */
11732 PL_unicode = proto_perl->Iunicode;
11733
11734 /* Pre-5.8 signals control */
11735 PL_signals = proto_perl->Isignals;
11736
11737 /* times() ticks per second */
11738 PL_clocktick = proto_perl->Iclocktick;
11739
11740 /* Recursion stopper for PerlIO_find_layer */
11741 PL_in_load_module = proto_perl->Iin_load_module;
11742
11743 /* sort() routine */
11744 PL_sort_RealCmp = proto_perl->Isort_RealCmp;
11745
57c6e6d2
JH
11746 /* Not really needed/useful since the reenrant_retint is "volatile",
11747 * but do it for consistency's sake. */
11748 PL_reentrant_retint = proto_perl->Ireentrant_retint;
11749
15a5279a
JH
11750 /* Hooks to shared SVs and locks. */
11751 PL_sharehook = proto_perl->Isharehook;
11752 PL_lockhook = proto_perl->Ilockhook;
11753 PL_unlockhook = proto_perl->Iunlockhook;
11754 PL_threadhook = proto_perl->Ithreadhook;
11755
bce260cd
JH
11756 PL_runops_std = proto_perl->Irunops_std;
11757 PL_runops_dbg = proto_perl->Irunops_dbg;
11758
11759#ifdef THREADS_HAVE_PIDS
11760 PL_ppid = proto_perl->Ippid;
11761#endif
11762
1d7c1841
GS
11763 /* swatch cache */
11764 PL_last_swash_hv = Nullhv; /* reinits on demand */
11765 PL_last_swash_klen = 0;
11766 PL_last_swash_key[0]= '\0';
11767 PL_last_swash_tmps = (U8*)NULL;
11768 PL_last_swash_slen = 0;
11769
1d7c1841
GS
11770 PL_glob_index = proto_perl->Iglob_index;
11771 PL_srand_called = proto_perl->Isrand_called;
11772 PL_uudmap['M'] = 0; /* reinits on demand */
11773 PL_bitcount = Nullch; /* reinits on demand */
11774
66fe0623
NIS
11775 if (proto_perl->Ipsig_pend) {
11776 Newz(0, PL_psig_pend, SIG_SIZE, int);
9dd79c3f 11777 }
66fe0623
NIS
11778 else {
11779 PL_psig_pend = (int*)NULL;
11780 }
11781
1d7c1841 11782 if (proto_perl->Ipsig_ptr) {
76d3c696
JH
11783 Newz(0, PL_psig_ptr, SIG_SIZE, SV*);
11784 Newz(0, PL_psig_name, SIG_SIZE, SV*);
76d3c696 11785 for (i = 1; i < SIG_SIZE; i++) {
d2d73c3e
AB
11786 PL_psig_ptr[i] = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
11787 PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
1d7c1841
GS
11788 }
11789 }
11790 else {
11791 PL_psig_ptr = (SV**)NULL;
11792 PL_psig_name = (SV**)NULL;
11793 }
11794
11795 /* thrdvar.h stuff */
11796
a0739874 11797 if (flags & CLONEf_COPY_STACKS) {
1d7c1841
GS
11798 /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
11799 PL_tmps_ix = proto_perl->Ttmps_ix;
11800 PL_tmps_max = proto_perl->Ttmps_max;
11801 PL_tmps_floor = proto_perl->Ttmps_floor;
11802 Newz(50, PL_tmps_stack, PL_tmps_max, SV*);
11803 i = 0;
11804 while (i <= PL_tmps_ix) {
d2d73c3e 11805 PL_tmps_stack[i] = sv_dup_inc(proto_perl->Ttmps_stack[i], param);
1d7c1841
GS
11806 ++i;
11807 }
11808
11809 /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
11810 i = proto_perl->Tmarkstack_max - proto_perl->Tmarkstack;
11811 Newz(54, PL_markstack, i, I32);
11812 PL_markstack_max = PL_markstack + (proto_perl->Tmarkstack_max
11813 - proto_perl->Tmarkstack);
11814 PL_markstack_ptr = PL_markstack + (proto_perl->Tmarkstack_ptr
11815 - proto_perl->Tmarkstack);
11816 Copy(proto_perl->Tmarkstack, PL_markstack,
11817 PL_markstack_ptr - PL_markstack + 1, I32);
11818
11819 /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
11820 * NOTE: unlike the others! */
11821 PL_scopestack_ix = proto_perl->Tscopestack_ix;
11822 PL_scopestack_max = proto_perl->Tscopestack_max;
11823 Newz(54, PL_scopestack, PL_scopestack_max, I32);
11824 Copy(proto_perl->Tscopestack, PL_scopestack, PL_scopestack_ix, I32);
11825
1d7c1841 11826 /* NOTE: si_dup() looks at PL_markstack */
d2d73c3e 11827 PL_curstackinfo = si_dup(proto_perl->Tcurstackinfo, param);
1d7c1841
GS
11828
11829 /* PL_curstack = PL_curstackinfo->si_stack; */
d2d73c3e
AB
11830 PL_curstack = av_dup(proto_perl->Tcurstack, param);
11831 PL_mainstack = av_dup(proto_perl->Tmainstack, param);
1d7c1841
GS
11832
11833 /* next PUSHs() etc. set *(PL_stack_sp+1) */
11834 PL_stack_base = AvARRAY(PL_curstack);
11835 PL_stack_sp = PL_stack_base + (proto_perl->Tstack_sp
11836 - proto_perl->Tstack_base);
11837 PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
11838
11839 /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
11840 * NOTE: unlike the others! */
11841 PL_savestack_ix = proto_perl->Tsavestack_ix;
11842 PL_savestack_max = proto_perl->Tsavestack_max;
11843 /*Newz(54, PL_savestack, PL_savestack_max, ANY);*/
d2d73c3e 11844 PL_savestack = ss_dup(proto_perl, param);
1d7c1841
GS
11845 }
11846 else {
11847 init_stacks();
985e7056 11848 ENTER; /* perl_destruct() wants to LEAVE; */
1d7c1841
GS
11849 }
11850
11851 PL_start_env = proto_perl->Tstart_env; /* XXXXXX */
11852 PL_top_env = &PL_start_env;
11853
11854 PL_op = proto_perl->Top;
11855
11856 PL_Sv = Nullsv;
11857 PL_Xpv = (XPV*)NULL;
11858 PL_na = proto_perl->Tna;
11859
11860 PL_statbuf = proto_perl->Tstatbuf;
11861 PL_statcache = proto_perl->Tstatcache;
d2d73c3e
AB
11862 PL_statgv = gv_dup(proto_perl->Tstatgv, param);
11863 PL_statname = sv_dup_inc(proto_perl->Tstatname, param);
1d7c1841
GS
11864#ifdef HAS_TIMES
11865 PL_timesbuf = proto_perl->Ttimesbuf;
11866#endif
11867
11868 PL_tainted = proto_perl->Ttainted;
11869 PL_curpm = proto_perl->Tcurpm; /* XXX No PMOP ref count */
d2d73c3e
AB
11870 PL_rs = sv_dup_inc(proto_perl->Trs, param);
11871 PL_last_in_gv = gv_dup(proto_perl->Tlast_in_gv, param);
11872 PL_ofs_sv = sv_dup_inc(proto_perl->Tofs_sv, param);
11873 PL_defoutgv = gv_dup_inc(proto_perl->Tdefoutgv, param);
1d7c1841 11874 PL_chopset = proto_perl->Tchopset; /* XXX never deallocated */
d2d73c3e
AB
11875 PL_toptarget = sv_dup_inc(proto_perl->Ttoptarget, param);
11876 PL_bodytarget = sv_dup_inc(proto_perl->Tbodytarget, param);
11877 PL_formtarget = sv_dup(proto_perl->Tformtarget, param);
1d7c1841
GS
11878
11879 PL_restartop = proto_perl->Trestartop;
11880 PL_in_eval = proto_perl->Tin_eval;
11881 PL_delaymagic = proto_perl->Tdelaymagic;
11882 PL_dirty = proto_perl->Tdirty;
11883 PL_localizing = proto_perl->Tlocalizing;
11884
d2d73c3e 11885 PL_errors = sv_dup_inc(proto_perl->Terrors, param);
dd28f7bb 11886 PL_hv_fetch_ent_mh = Nullhe;
1d7c1841
GS
11887 PL_modcount = proto_perl->Tmodcount;
11888 PL_lastgotoprobe = Nullop;
11889 PL_dumpindent = proto_perl->Tdumpindent;
11890
11891 PL_sortcop = (OP*)any_dup(proto_perl->Tsortcop, proto_perl);
d2d73c3e
AB
11892 PL_sortstash = hv_dup(proto_perl->Tsortstash, param);
11893 PL_firstgv = gv_dup(proto_perl->Tfirstgv, param);
11894 PL_secondgv = gv_dup(proto_perl->Tsecondgv, param);
1d7c1841
GS
11895 PL_sortcxix = proto_perl->Tsortcxix;
11896 PL_efloatbuf = Nullch; /* reinits on demand */
11897 PL_efloatsize = 0; /* reinits on demand */
11898
11899 /* regex stuff */
11900
11901 PL_screamfirst = NULL;
11902 PL_screamnext = NULL;
11903 PL_maxscream = -1; /* reinits on demand */
11904 PL_lastscream = Nullsv;
11905
11906 PL_watchaddr = NULL;
11907 PL_watchok = Nullch;
11908
11909 PL_regdummy = proto_perl->Tregdummy;
1d7c1841
GS
11910 PL_regprecomp = Nullch;
11911 PL_regnpar = 0;
11912 PL_regsize = 0;
1d7c1841
GS
11913 PL_colorset = 0; /* reinits PL_colors[] */
11914 /*PL_colors[6] = {0,0,0,0,0,0};*/
1d7c1841
GS
11915 PL_reginput = Nullch;
11916 PL_regbol = Nullch;
11917 PL_regeol = Nullch;
11918 PL_regstartp = (I32*)NULL;
11919 PL_regendp = (I32*)NULL;
11920 PL_reglastparen = (U32*)NULL;
2d862feb 11921 PL_reglastcloseparen = (U32*)NULL;
1d7c1841 11922 PL_regtill = Nullch;
1d7c1841
GS
11923 PL_reg_start_tmp = (char**)NULL;
11924 PL_reg_start_tmpl = 0;
11925 PL_regdata = (struct reg_data*)NULL;
11926 PL_bostr = Nullch;
11927 PL_reg_flags = 0;
11928 PL_reg_eval_set = 0;
11929 PL_regnarrate = 0;
11930 PL_regprogram = (regnode*)NULL;
11931 PL_regindent = 0;
11932 PL_regcc = (CURCUR*)NULL;
11933 PL_reg_call_cc = (struct re_cc_state*)NULL;
11934 PL_reg_re = (regexp*)NULL;
11935 PL_reg_ganch = Nullch;
11936 PL_reg_sv = Nullsv;
53c4c00c 11937 PL_reg_match_utf8 = FALSE;
1d7c1841
GS
11938 PL_reg_magic = (MAGIC*)NULL;
11939 PL_reg_oldpos = 0;
11940 PL_reg_oldcurpm = (PMOP*)NULL;
11941 PL_reg_curpm = (PMOP*)NULL;
11942 PL_reg_oldsaved = Nullch;
11943 PL_reg_oldsavedlen = 0;
f8c7b90f 11944#ifdef PERL_OLD_COPY_ON_WRITE
504cff3b 11945 PL_nrs = Nullsv;
ed252734 11946#endif
1d7c1841
GS
11947 PL_reg_maxiter = 0;
11948 PL_reg_leftiter = 0;
11949 PL_reg_poscache = Nullch;
11950 PL_reg_poscache_size= 0;
11951
11952 /* RE engine - function pointers */
11953 PL_regcompp = proto_perl->Tregcompp;
11954 PL_regexecp = proto_perl->Tregexecp;
11955 PL_regint_start = proto_perl->Tregint_start;
11956 PL_regint_string = proto_perl->Tregint_string;
11957 PL_regfree = proto_perl->Tregfree;
11958
11959 PL_reginterp_cnt = 0;
11960 PL_reg_starttry = 0;
11961
a2efc822
SC
11962 /* Pluggable optimizer */
11963 PL_peepp = proto_perl->Tpeepp;
11964
081fc587
AB
11965 PL_stashcache = newHV();
11966
a0739874
DM
11967 if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
11968 ptr_table_free(PL_ptr_table);
11969 PL_ptr_table = NULL;
11970 }
8cf8f3d1 11971
f284b03f
AMS
11972 /* Call the ->CLONE method, if it exists, for each of the stashes
11973 identified by sv_dup() above.
11974 */
d2d73c3e
AB
11975 while(av_len(param->stashes) != -1) {
11976 HV* stash = (HV*) av_shift(param->stashes);
f284b03f
AMS
11977 GV* cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
11978 if (cloner && GvCV(cloner)) {
11979 dSP;
11980 ENTER;
11981 SAVETMPS;
11982 PUSHMARK(SP);
84bda14a 11983 XPUSHs(sv_2mortal(newSVhek(HvNAME_HEK(stash))));
f284b03f
AMS
11984 PUTBACK;
11985 call_sv((SV*)GvCV(cloner), G_DISCARD);
11986 FREETMPS;
11987 LEAVE;
11988 }
4a09accc 11989 }
a0739874 11990
dc507217 11991 SvREFCNT_dec(param->stashes);
dc507217 11992
6d26897e
DM
11993 /* orphaned? eg threads->new inside BEGIN or use */
11994 if (PL_compcv && ! SvREFCNT(PL_compcv)) {
a3b680e6 11995 (void)SvREFCNT_inc(PL_compcv);
6d26897e
DM
11996 SAVEFREESV(PL_compcv);
11997 }
11998
1d7c1841 11999 return my_perl;
1d7c1841
GS
12000}
12001
1d7c1841 12002#endif /* USE_ITHREADS */
a0ae6670 12003
9f4817db 12004/*
ccfc67b7
JH
12005=head1 Unicode Support
12006
9f4817db
JH
12007=for apidoc sv_recode_to_utf8
12008
5d170f3a
JH
12009The encoding is assumed to be an Encode object, on entry the PV
12010of the sv is assumed to be octets in that encoding, and the sv
12011will be converted into Unicode (and UTF-8).
9f4817db 12012
5d170f3a
JH
12013If the sv already is UTF-8 (or if it is not POK), or if the encoding
12014is not a reference, nothing is done to the sv. If the encoding is not
1768d7eb
JH
12015an C<Encode::XS> Encoding object, bad things will happen.
12016(See F<lib/encoding.pm> and L<Encode>).
9f4817db 12017
5d170f3a 12018The PV of the sv is returned.
9f4817db 12019
5d170f3a
JH
12020=cut */
12021
12022char *
12023Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
12024{
27da23d5 12025 dVAR;
220e2d4e 12026 if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
d0063567
DK
12027 SV *uni;
12028 STRLEN len;
93524f2b 12029 const char *s;
d0063567
DK
12030 dSP;
12031 ENTER;
12032 SAVETMPS;
220e2d4e 12033 save_re_context();
d0063567
DK
12034 PUSHMARK(sp);
12035 EXTEND(SP, 3);
12036 XPUSHs(encoding);
12037 XPUSHs(sv);
7a5fa8a2 12038/*
f9893866
NIS
12039 NI-S 2002/07/09
12040 Passing sv_yes is wrong - it needs to be or'ed set of constants
7a5fa8a2 12041 for Encode::XS, while UTf-8 decode (currently) assumes a true value means
f9893866
NIS
12042 remove converted chars from source.
12043
12044 Both will default the value - let them.
7a5fa8a2 12045
d0063567 12046 XPUSHs(&PL_sv_yes);
f9893866 12047*/
d0063567
DK
12048 PUTBACK;
12049 call_method("decode", G_SCALAR);
12050 SPAGAIN;
12051 uni = POPs;
12052 PUTBACK;
93524f2b 12053 s = SvPV_const(uni, len);
3f7c398e 12054 if (s != SvPVX_const(sv)) {
d0063567 12055 SvGROW(sv, len + 1);
93524f2b 12056 Move(s, SvPVX(sv), len + 1, char);
d0063567 12057 SvCUR_set(sv, len);
d0063567
DK
12058 }
12059 FREETMPS;
12060 LEAVE;
d0063567 12061 SvUTF8_on(sv);
95899a2a 12062 return SvPVX(sv);
f9893866 12063 }
95899a2a 12064 return SvPOKp(sv) ? SvPVX(sv) : NULL;
9f4817db
JH
12065}
12066
220e2d4e
IH
12067/*
12068=for apidoc sv_cat_decode
12069
12070The encoding is assumed to be an Encode object, the PV of the ssv is
12071assumed to be octets in that encoding and decoding the input starts
12072from the position which (PV + *offset) pointed to. The dsv will be
12073concatenated the decoded UTF-8 string from ssv. Decoding will terminate
12074when the string tstr appears in decoding output or the input ends on
12075the PV of the ssv. The value which the offset points will be modified
12076to the last input position on the ssv.
68795e93 12077
220e2d4e
IH
12078Returns TRUE if the terminator was found, else returns FALSE.
12079
12080=cut */
12081
12082bool
12083Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
12084 SV *ssv, int *offset, char *tstr, int tlen)
12085{
27da23d5 12086 dVAR;
a73e8557 12087 bool ret = FALSE;
220e2d4e 12088 if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
220e2d4e
IH
12089 SV *offsv;
12090 dSP;
12091 ENTER;
12092 SAVETMPS;
12093 save_re_context();
12094 PUSHMARK(sp);
12095 EXTEND(SP, 6);
12096 XPUSHs(encoding);
12097 XPUSHs(dsv);
12098 XPUSHs(ssv);
12099 XPUSHs(offsv = sv_2mortal(newSViv(*offset)));
12100 XPUSHs(sv_2mortal(newSVpvn(tstr, tlen)));
12101 PUTBACK;
12102 call_method("cat_decode", G_SCALAR);
12103 SPAGAIN;
12104 ret = SvTRUE(TOPs);
12105 *offset = SvIV(offsv);
12106 PUTBACK;
12107 FREETMPS;
12108 LEAVE;
220e2d4e 12109 }
a73e8557
JH
12110 else
12111 Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
12112 return ret;
220e2d4e 12113}
f9893866 12114
241d1a3b
NC
12115/*
12116 * Local variables:
12117 * c-indentation-style: bsd
12118 * c-basic-offset: 4
12119 * indent-tabs-mode: t
12120 * End:
12121 *
37442d52
RGS
12122 * ex: set ts=8 sts=4 sw=4 noet:
12123 */