This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
make qw(...) first-class syntax
[perl5.git] / sv.c
CommitLineData
a0d0e21e 1/* sv.c
79072805 2 *
1129b882 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
83706693
RGS
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5 * and others
79072805
LW
6 *
7 * You may distribute under the terms of either the GNU General Public
8 * License or the Artistic License, as specified in the README file.
9 *
4ac71550
TC
10 */
11
12/*
13 * 'I wonder what the Entish is for "yes" and "no",' he thought.
14 * --Pippin
15 *
16 * [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17 */
18
19/*
645c22ef
DM
20 *
21 *
5e045b90
AMS
22 * This file contains the code that creates, manipulates and destroys
23 * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24 * structure of an SV, so their creation and destruction is handled
25 * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26 * level functions (eg. substr, split, join) for each of the types are
27 * in the pp*.c files.
79072805
LW
28 */
29
30#include "EXTERN.h"
864dbfa3 31#define PERL_IN_SV_C
79072805 32#include "perl.h"
d2f185dc 33#include "regcomp.h"
79072805 34
51371543 35#define FCALL *f
2c5424a7 36
2f8ed50e
OS
37#ifdef __Lynx__
38/* Missing proto on LynxOS */
39 char *gconvert(double, int, int, char *);
40#endif
41
e23c8137 42#ifdef PERL_UTF8_CACHE_ASSERT
ab455f60 43/* if adding more checks watch out for the following tests:
e23c8137
JH
44 * t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
45 * lib/utf8.t lib/Unicode/Collate/t/index.t
46 * --jhi
47 */
6f207bd3 48# define ASSERT_UTF8_CACHE(cache) \
ab455f60
NC
49 STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
50 assert((cache)[2] <= (cache)[3]); \
51 assert((cache)[3] <= (cache)[1]);} \
52 } STMT_END
e23c8137 53#else
6f207bd3 54# define ASSERT_UTF8_CACHE(cache) NOOP
e23c8137
JH
55#endif
56
f8c7b90f 57#ifdef PERL_OLD_COPY_ON_WRITE
765f542d 58#define SV_COW_NEXT_SV(sv) INT2PTR(SV *,SvUVX(sv))
607fa7f2 59#define SV_COW_NEXT_SV_SET(current,next) SvUV_set(current, PTR2UV(next))
b5ccf5f2 60/* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
765f542d 61 on-write. */
765f542d 62#endif
645c22ef
DM
63
64/* ============================================================================
65
66=head1 Allocation and deallocation of SVs.
67
d2a0f284
JC
68An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
69sv, av, hv...) contains type and reference count information, and for
70many types, a pointer to the body (struct xrv, xpv, xpviv...), which
71contains fields specific to each type. Some types store all they need
72in the head, so don't have a body.
73
74In all but the most memory-paranoid configuations (ex: PURIFY), heads
75and bodies are allocated out of arenas, which by default are
76approximately 4K chunks of memory parcelled up into N heads or bodies.
93e68bfb
JC
77Sv-bodies are allocated by their sv-type, guaranteeing size
78consistency needed to allocate safely from arrays.
79
d2a0f284
JC
80For SV-heads, the first slot in each arena is reserved, and holds a
81link to the next arena, some flags, and a note of the number of slots.
82Snaked through each arena chain is a linked list of free items; when
83this becomes empty, an extra arena is allocated and divided up into N
84items which are threaded into the free list.
85
86SV-bodies are similar, but they use arena-sets by default, which
87separate the link and info from the arena itself, and reclaim the 1st
88slot in the arena. SV-bodies are further described later.
645c22ef
DM
89
90The following global variables are associated with arenas:
91
92 PL_sv_arenaroot pointer to list of SV arenas
93 PL_sv_root pointer to list of free SV structures
94
d2a0f284
JC
95 PL_body_arenas head of linked-list of body arenas
96 PL_body_roots[] array of pointers to list of free bodies of svtype
97 arrays are indexed by the svtype needed
93e68bfb 98
d2a0f284
JC
99A few special SV heads are not allocated from an arena, but are
100instead directly created in the interpreter structure, eg PL_sv_undef.
93e68bfb
JC
101The size of arenas can be changed from the default by setting
102PERL_ARENA_SIZE appropriately at compile time.
645c22ef
DM
103
104The SV arena serves the secondary purpose of allowing still-live SVs
105to be located and destroyed during final cleanup.
106
107At the lowest level, the macros new_SV() and del_SV() grab and free
108an SV head. (If debugging with -DD, del_SV() calls the function S_del_sv()
109to return the SV to the free list with error checking.) new_SV() calls
110more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
111SVs in the free list have their SvTYPE field set to all ones.
112
ff276b08 113At the time of very final cleanup, sv_free_arenas() is called from
645c22ef 114perl_destruct() to physically free all the arenas allocated since the
6a93a7e5 115start of the interpreter.
645c22ef 116
645c22ef
DM
117The function visit() scans the SV arenas list, and calls a specified
118function for each SV it finds which is still live - ie which has an SvTYPE
119other than all 1's, and a non-zero SvREFCNT. visit() is used by the
120following functions (specified as [function that calls visit()] / [function
121called by visit() for each SV]):
122
123 sv_report_used() / do_report_used()
f2524eef 124 dump all remaining SVs (debugging aid)
645c22ef
DM
125
126 sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
127 Attempt to free all objects pointed to by RVs,
128 and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
129 try to do the same for all objects indirectly
130 referenced by typeglobs too. Called once from
131 perl_destruct(), prior to calling sv_clean_all()
132 below.
133
134 sv_clean_all() / do_clean_all()
135 SvREFCNT_dec(sv) each remaining SV, possibly
136 triggering an sv_free(). It also sets the
137 SVf_BREAK flag on the SV to indicate that the
138 refcnt has been artificially lowered, and thus
139 stopping sv_free() from giving spurious warnings
140 about SVs which unexpectedly have a refcnt
141 of zero. called repeatedly from perl_destruct()
142 until there are no SVs left.
143
93e68bfb 144=head2 Arena allocator API Summary
645c22ef
DM
145
146Private API to rest of sv.c
147
148 new_SV(), del_SV(),
149
df0f0429 150 new_XPVNV(), del_XPVGV(),
645c22ef
DM
151 etc
152
153Public API:
154
8cf8f3d1 155 sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
645c22ef 156
645c22ef
DM
157=cut
158
3e8320cc 159 * ========================================================================= */
645c22ef 160
4561caa4
CS
161/*
162 * "A time to plant, and a time to uproot what was planted..."
163 */
164
77354fb4 165void
de37a194 166Perl_offer_nice_chunk(pTHX_ void *const chunk, const U32 chunk_size)
77354fb4 167{
97aff369 168 dVAR;
77354fb4
NC
169 void *new_chunk;
170 U32 new_chunk_size;
7918f24d
NC
171
172 PERL_ARGS_ASSERT_OFFER_NICE_CHUNK;
173
77354fb4
NC
174 new_chunk = (void *)(chunk);
175 new_chunk_size = (chunk_size);
176 if (new_chunk_size > PL_nice_chunk_size) {
177 Safefree(PL_nice_chunk);
178 PL_nice_chunk = (char *) new_chunk;
179 PL_nice_chunk_size = new_chunk_size;
180 } else {
181 Safefree(chunk);
182 }
77354fb4 183}
cac9b346 184
d7a2c63c
MHM
185#ifdef PERL_MEM_LOG
186# define MEM_LOG_NEW_SV(sv, file, line, func) \
187 Perl_mem_log_new_sv(sv, file, line, func)
188# define MEM_LOG_DEL_SV(sv, file, line, func) \
189 Perl_mem_log_del_sv(sv, file, line, func)
190#else
191# define MEM_LOG_NEW_SV(sv, file, line, func) NOOP
192# define MEM_LOG_DEL_SV(sv, file, line, func) NOOP
193#endif
194
fd0854ff 195#ifdef DEBUG_LEAKING_SCALARS
22162ca8 196# define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
d7a2c63c
MHM
197# define DEBUG_SV_SERIAL(sv) \
198 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n", \
199 PTR2UV(sv), (long)(sv)->sv_debug_serial))
fd0854ff
DM
200#else
201# define FREE_SV_DEBUG_FILE(sv)
d7a2c63c 202# define DEBUG_SV_SERIAL(sv) NOOP
fd0854ff
DM
203#endif
204
48614a46
NC
205#ifdef PERL_POISON
206# define SvARENA_CHAIN(sv) ((sv)->sv_u.svu_rv)
daba3364 207# define SvARENA_CHAIN_SET(sv,val) (sv)->sv_u.svu_rv = MUTABLE_SV((val))
48614a46
NC
208/* Whilst I'd love to do this, it seems that things like to check on
209 unreferenced scalars
7e337ee0 210# define POSION_SV_HEAD(sv) PoisonNew(sv, 1, struct STRUCT_SV)
48614a46 211*/
7e337ee0
JH
212# define POSION_SV_HEAD(sv) PoisonNew(&SvANY(sv), 1, void *), \
213 PoisonNew(&SvREFCNT(sv), 1, U32)
48614a46
NC
214#else
215# define SvARENA_CHAIN(sv) SvANY(sv)
3eef1deb 216# define SvARENA_CHAIN_SET(sv,val) SvANY(sv) = (void *)(val)
48614a46
NC
217# define POSION_SV_HEAD(sv)
218#endif
219
990198f0
DM
220/* Mark an SV head as unused, and add to free list.
221 *
222 * If SVf_BREAK is set, skip adding it to the free list, as this SV had
223 * its refcount artificially decremented during global destruction, so
224 * there may be dangling pointers to it. The last thing we want in that
225 * case is for it to be reused. */
226
053fc874
GS
227#define plant_SV(p) \
228 STMT_START { \
990198f0 229 const U32 old_flags = SvFLAGS(p); \
d7a2c63c
MHM
230 MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__); \
231 DEBUG_SV_SERIAL(p); \
fd0854ff 232 FREE_SV_DEBUG_FILE(p); \
48614a46 233 POSION_SV_HEAD(p); \
053fc874 234 SvFLAGS(p) = SVTYPEMASK; \
990198f0 235 if (!(old_flags & SVf_BREAK)) { \
3eef1deb 236 SvARENA_CHAIN_SET(p, PL_sv_root); \
990198f0
DM
237 PL_sv_root = (p); \
238 } \
053fc874
GS
239 --PL_sv_count; \
240 } STMT_END
a0d0e21e 241
053fc874
GS
242#define uproot_SV(p) \
243 STMT_START { \
244 (p) = PL_sv_root; \
daba3364 245 PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p)); \
053fc874
GS
246 ++PL_sv_count; \
247 } STMT_END
248
645c22ef 249
cac9b346
NC
250/* make some more SVs by adding another arena */
251
cac9b346
NC
252STATIC SV*
253S_more_sv(pTHX)
254{
97aff369 255 dVAR;
cac9b346
NC
256 SV* sv;
257
258 if (PL_nice_chunk) {
259 sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
bd61b366 260 PL_nice_chunk = NULL;
cac9b346
NC
261 PL_nice_chunk_size = 0;
262 }
263 else {
264 char *chunk; /* must use New here to match call to */
d2a0f284 265 Newx(chunk,PERL_ARENA_SIZE,char); /* Safefree() in sv_free_arenas() */
2e7ed132 266 sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
cac9b346
NC
267 }
268 uproot_SV(sv);
269 return sv;
270}
271
645c22ef
DM
272/* new_SV(): return a new, empty SV head */
273
eba0f806
DM
274#ifdef DEBUG_LEAKING_SCALARS
275/* provide a real function for a debugger to play with */
276STATIC SV*
d7a2c63c 277S_new_SV(pTHX_ const char *file, int line, const char *func)
eba0f806
DM
278{
279 SV* sv;
280
eba0f806
DM
281 if (PL_sv_root)
282 uproot_SV(sv);
283 else
cac9b346 284 sv = S_more_sv(aTHX);
eba0f806
DM
285 SvANY(sv) = 0;
286 SvREFCNT(sv) = 1;
287 SvFLAGS(sv) = 0;
fd0854ff 288 sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
e385c3bf
DM
289 sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
290 ? PL_parser->copline
291 : PL_curcop
f24aceb1
DM
292 ? CopLINE(PL_curcop)
293 : 0
e385c3bf 294 );
fd0854ff 295 sv->sv_debug_inpad = 0;
cd676548 296 sv->sv_debug_parent = NULL;
fd0854ff 297 sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
d7a2c63c
MHM
298
299 sv->sv_debug_serial = PL_sv_serial++;
300
301 MEM_LOG_NEW_SV(sv, file, line, func);
302 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
303 PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
304
eba0f806
DM
305 return sv;
306}
d7a2c63c 307# define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
eba0f806
DM
308
309#else
310# define new_SV(p) \
053fc874 311 STMT_START { \
053fc874
GS
312 if (PL_sv_root) \
313 uproot_SV(p); \
314 else \
cac9b346 315 (p) = S_more_sv(aTHX); \
053fc874
GS
316 SvANY(p) = 0; \
317 SvREFCNT(p) = 1; \
318 SvFLAGS(p) = 0; \
d7a2c63c 319 MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__); \
053fc874 320 } STMT_END
eba0f806 321#endif
463ee0b2 322
645c22ef
DM
323
324/* del_SV(): return an empty SV head to the free list */
325
a0d0e21e 326#ifdef DEBUGGING
4561caa4 327
053fc874
GS
328#define del_SV(p) \
329 STMT_START { \
aea4f609 330 if (DEBUG_D_TEST) \
053fc874
GS
331 del_sv(p); \
332 else \
333 plant_SV(p); \
053fc874 334 } STMT_END
a0d0e21e 335
76e3520e 336STATIC void
cea2e8a9 337S_del_sv(pTHX_ SV *p)
463ee0b2 338{
97aff369 339 dVAR;
7918f24d
NC
340
341 PERL_ARGS_ASSERT_DEL_SV;
342
aea4f609 343 if (DEBUG_D_TEST) {
4633a7c4 344 SV* sva;
a3b680e6 345 bool ok = 0;
daba3364 346 for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
53c1dcc0
AL
347 const SV * const sv = sva + 1;
348 const SV * const svend = &sva[SvREFCNT(sva)];
c0ff570e 349 if (p >= sv && p < svend) {
a0d0e21e 350 ok = 1;
c0ff570e
NC
351 break;
352 }
a0d0e21e
LW
353 }
354 if (!ok) {
9b387841
NC
355 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
356 "Attempt to free non-arena SV: 0x%"UVxf
357 pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
a0d0e21e
LW
358 return;
359 }
360 }
4561caa4 361 plant_SV(p);
463ee0b2 362}
a0d0e21e 363
4561caa4
CS
364#else /* ! DEBUGGING */
365
366#define del_SV(p) plant_SV(p)
367
368#endif /* DEBUGGING */
463ee0b2 369
645c22ef
DM
370
371/*
ccfc67b7
JH
372=head1 SV Manipulation Functions
373
645c22ef
DM
374=for apidoc sv_add_arena
375
376Given a chunk of memory, link it to the head of the list of arenas,
377and split it into a list of free SVs.
378
379=cut
380*/
381
d2bd4e7f
NC
382static void
383S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
463ee0b2 384{
97aff369 385 dVAR;
daba3364 386 SV *const sva = MUTABLE_SV(ptr);
463ee0b2
LW
387 register SV* sv;
388 register SV* svend;
4633a7c4 389
7918f24d
NC
390 PERL_ARGS_ASSERT_SV_ADD_ARENA;
391
4633a7c4 392 /* The first SV in an arena isn't an SV. */
3280af22 393 SvANY(sva) = (void *) PL_sv_arenaroot; /* ptr to next arena */
4633a7c4
LW
394 SvREFCNT(sva) = size / sizeof(SV); /* number of SV slots */
395 SvFLAGS(sva) = flags; /* FAKE if not to be freed */
396
3280af22
NIS
397 PL_sv_arenaroot = sva;
398 PL_sv_root = sva + 1;
4633a7c4
LW
399
400 svend = &sva[SvREFCNT(sva) - 1];
401 sv = sva + 1;
463ee0b2 402 while (sv < svend) {
3eef1deb 403 SvARENA_CHAIN_SET(sv, (sv + 1));
03e36789 404#ifdef DEBUGGING
978b032e 405 SvREFCNT(sv) = 0;
03e36789 406#endif
4b69cbe3 407 /* Must always set typemask because it's always checked in on cleanup
03e36789 408 when the arenas are walked looking for objects. */
8990e307 409 SvFLAGS(sv) = SVTYPEMASK;
463ee0b2
LW
410 sv++;
411 }
3eef1deb 412 SvARENA_CHAIN_SET(sv, 0);
03e36789
NC
413#ifdef DEBUGGING
414 SvREFCNT(sv) = 0;
415#endif
4633a7c4
LW
416 SvFLAGS(sv) = SVTYPEMASK;
417}
418
055972dc
DM
419/* visit(): call the named function for each non-free SV in the arenas
420 * whose flags field matches the flags/mask args. */
645c22ef 421
5226ed68 422STATIC I32
de37a194 423S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
8990e307 424{
97aff369 425 dVAR;
4633a7c4 426 SV* sva;
5226ed68 427 I32 visited = 0;
8990e307 428
7918f24d
NC
429 PERL_ARGS_ASSERT_VISIT;
430
daba3364 431 for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
53c1dcc0 432 register const SV * const svend = &sva[SvREFCNT(sva)];
a3b680e6 433 register SV* sv;
4561caa4 434 for (sv = sva + 1; sv < svend; ++sv) {
055972dc
DM
435 if (SvTYPE(sv) != SVTYPEMASK
436 && (sv->sv_flags & mask) == flags
437 && SvREFCNT(sv))
438 {
acfe0abc 439 (FCALL)(aTHX_ sv);
5226ed68
JH
440 ++visited;
441 }
8990e307
LW
442 }
443 }
5226ed68 444 return visited;
8990e307
LW
445}
446
758a08c3
JH
447#ifdef DEBUGGING
448
645c22ef
DM
449/* called by sv_report_used() for each live SV */
450
451static void
5fa45a31 452do_report_used(pTHX_ SV *const sv)
645c22ef
DM
453{
454 if (SvTYPE(sv) != SVTYPEMASK) {
455 PerlIO_printf(Perl_debug_log, "****\n");
456 sv_dump(sv);
457 }
458}
758a08c3 459#endif
645c22ef
DM
460
461/*
462=for apidoc sv_report_used
463
464Dump the contents of all SVs not yet freed. (Debugging aid).
465
466=cut
467*/
468
8990e307 469void
864dbfa3 470Perl_sv_report_used(pTHX)
4561caa4 471{
ff270d3a 472#ifdef DEBUGGING
055972dc 473 visit(do_report_used, 0, 0);
96a5add6
AL
474#else
475 PERL_UNUSED_CONTEXT;
ff270d3a 476#endif
4561caa4
CS
477}
478
645c22ef
DM
479/* called by sv_clean_objs() for each live SV */
480
481static void
de37a194 482do_clean_objs(pTHX_ SV *const ref)
645c22ef 483{
97aff369 484 dVAR;
ea724faa
NC
485 assert (SvROK(ref));
486 {
823a54a3
AL
487 SV * const target = SvRV(ref);
488 if (SvOBJECT(target)) {
489 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
490 if (SvWEAKREF(ref)) {
491 sv_del_backref(target, ref);
492 SvWEAKREF_off(ref);
493 SvRV_set(ref, NULL);
494 } else {
495 SvROK_off(ref);
496 SvRV_set(ref, NULL);
497 SvREFCNT_dec(target);
498 }
645c22ef
DM
499 }
500 }
501
502 /* XXX Might want to check arrays, etc. */
503}
504
505/* called by sv_clean_objs() for each live SV */
506
507#ifndef DISABLE_DESTRUCTOR_KLUDGE
508static void
f30de749 509do_clean_named_objs(pTHX_ SV *const sv)
645c22ef 510{
97aff369 511 dVAR;
ea724faa 512 assert(SvTYPE(sv) == SVt_PVGV);
d011219a
NC
513 assert(isGV_with_GP(sv));
514 if (GvGP(sv)) {
c69033f2
NC
515 if ((
516#ifdef PERL_DONT_CREATE_GVSV
517 GvSV(sv) &&
518#endif
519 SvOBJECT(GvSV(sv))) ||
645c22ef
DM
520 (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
521 (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
9c12f1e5
RGS
522 /* In certain rare cases GvIOp(sv) can be NULL, which would make SvOBJECT(GvIO(sv)) dereference NULL. */
523 (GvIO(sv) ? (SvFLAGS(GvIOp(sv)) & SVs_OBJECT) : 0) ||
645c22ef
DM
524 (GvCV(sv) && SvOBJECT(GvCV(sv))) )
525 {
526 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
ec5f3c78 527 SvFLAGS(sv) |= SVf_BREAK;
645c22ef
DM
528 SvREFCNT_dec(sv);
529 }
530 }
531}
532#endif
533
534/*
535=for apidoc sv_clean_objs
536
537Attempt to destroy all objects not yet freed
538
539=cut
540*/
541
4561caa4 542void
864dbfa3 543Perl_sv_clean_objs(pTHX)
4561caa4 544{
97aff369 545 dVAR;
3280af22 546 PL_in_clean_objs = TRUE;
055972dc 547 visit(do_clean_objs, SVf_ROK, SVf_ROK);
4561caa4 548#ifndef DISABLE_DESTRUCTOR_KLUDGE
2d0f3c12 549 /* some barnacles may yet remain, clinging to typeglobs */
d011219a 550 visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
4561caa4 551#endif
3280af22 552 PL_in_clean_objs = FALSE;
4561caa4
CS
553}
554
645c22ef
DM
555/* called by sv_clean_all() for each live SV */
556
557static void
de37a194 558do_clean_all(pTHX_ SV *const sv)
645c22ef 559{
97aff369 560 dVAR;
daba3364 561 if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
cddfcddc 562 /* don't clean pid table and strtab */
d17ea597 563 return;
cddfcddc 564 }
645c22ef
DM
565 DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
566 SvFLAGS(sv) |= SVf_BREAK;
567 SvREFCNT_dec(sv);
568}
569
570/*
571=for apidoc sv_clean_all
572
573Decrement the refcnt of each remaining SV, possibly triggering a
574cleanup. This function may have to be called multiple times to free
ff276b08 575SVs which are in complex self-referential hierarchies.
645c22ef
DM
576
577=cut
578*/
579
5226ed68 580I32
864dbfa3 581Perl_sv_clean_all(pTHX)
8990e307 582{
97aff369 583 dVAR;
5226ed68 584 I32 cleaned;
3280af22 585 PL_in_clean_all = TRUE;
055972dc 586 cleaned = visit(do_clean_all, 0,0);
3280af22 587 PL_in_clean_all = FALSE;
5226ed68 588 return cleaned;
8990e307 589}
463ee0b2 590
5e258f8c
JC
591/*
592 ARENASETS: a meta-arena implementation which separates arena-info
593 into struct arena_set, which contains an array of struct
594 arena_descs, each holding info for a single arena. By separating
595 the meta-info from the arena, we recover the 1st slot, formerly
596 borrowed for list management. The arena_set is about the size of an
39244528 597 arena, avoiding the needless malloc overhead of a naive linked-list.
5e258f8c
JC
598
599 The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
600 memory in the last arena-set (1/2 on average). In trade, we get
601 back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
d2a0f284 602 smaller types). The recovery of the wasted space allows use of
e15dad31
JC
603 small arenas for large, rare body types, by changing array* fields
604 in body_details_by_type[] below.
5e258f8c 605*/
5e258f8c 606struct arena_desc {
398c677b
NC
607 char *arena; /* the raw storage, allocated aligned */
608 size_t size; /* its size ~4k typ */
e5973ed5 609 svtype utype; /* bodytype stored in arena */
5e258f8c
JC
610};
611
e6148039
NC
612struct arena_set;
613
614/* Get the maximum number of elements in set[] such that struct arena_set
e15dad31 615 will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
e6148039
NC
616 therefore likely to be 1 aligned memory page. */
617
618#define ARENAS_PER_SET ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
619 - 2 * sizeof(int)) / sizeof (struct arena_desc))
5e258f8c
JC
620
621struct arena_set {
622 struct arena_set* next;
0a848332
NC
623 unsigned int set_size; /* ie ARENAS_PER_SET */
624 unsigned int curr; /* index of next available arena-desc */
5e258f8c
JC
625 struct arena_desc set[ARENAS_PER_SET];
626};
627
645c22ef
DM
628/*
629=for apidoc sv_free_arenas
630
631Deallocate the memory used by all arenas. Note that all the individual SV
632heads and bodies within the arenas must already have been freed.
633
634=cut
635*/
4633a7c4 636void
864dbfa3 637Perl_sv_free_arenas(pTHX)
4633a7c4 638{
97aff369 639 dVAR;
4633a7c4
LW
640 SV* sva;
641 SV* svanext;
0a848332 642 unsigned int i;
4633a7c4
LW
643
644 /* Free arenas here, but be careful about fake ones. (We assume
645 contiguity of the fake ones with the corresponding real ones.) */
646
3280af22 647 for (sva = PL_sv_arenaroot; sva; sva = svanext) {
daba3364 648 svanext = MUTABLE_SV(SvANY(sva));
4633a7c4 649 while (svanext && SvFAKE(svanext))
daba3364 650 svanext = MUTABLE_SV(SvANY(svanext));
4633a7c4
LW
651
652 if (!SvFAKE(sva))
1df70142 653 Safefree(sva);
4633a7c4 654 }
93e68bfb 655
5e258f8c 656 {
0a848332
NC
657 struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
658
659 while (aroot) {
660 struct arena_set *current = aroot;
661 i = aroot->curr;
662 while (i--) {
5e258f8c
JC
663 assert(aroot->set[i].arena);
664 Safefree(aroot->set[i].arena);
665 }
0a848332
NC
666 aroot = aroot->next;
667 Safefree(current);
5e258f8c
JC
668 }
669 }
dc8220bf 670 PL_body_arenas = 0;
fdda85ca 671
0a848332
NC
672 i = PERL_ARENA_ROOTS_SIZE;
673 while (i--)
93e68bfb 674 PL_body_roots[i] = 0;
93e68bfb 675
43c5f42d 676 Safefree(PL_nice_chunk);
bd61b366 677 PL_nice_chunk = NULL;
3280af22
NIS
678 PL_nice_chunk_size = 0;
679 PL_sv_arenaroot = 0;
680 PL_sv_root = 0;
4633a7c4
LW
681}
682
bd81e77b
NC
683/*
684 Here are mid-level routines that manage the allocation of bodies out
685 of the various arenas. There are 5 kinds of arenas:
29489e7c 686
bd81e77b
NC
687 1. SV-head arenas, which are discussed and handled above
688 2. regular body arenas
689 3. arenas for reduced-size bodies
690 4. Hash-Entry arenas
29489e7c 691
bd81e77b
NC
692 Arena types 2 & 3 are chained by body-type off an array of
693 arena-root pointers, which is indexed by svtype. Some of the
694 larger/less used body types are malloced singly, since a large
695 unused block of them is wasteful. Also, several svtypes dont have
696 bodies; the data fits into the sv-head itself. The arena-root
697 pointer thus has a few unused root-pointers (which may be hijacked
698 later for arena types 4,5)
29489e7c 699
bd81e77b
NC
700 3 differs from 2 as an optimization; some body types have several
701 unused fields in the front of the structure (which are kept in-place
702 for consistency). These bodies can be allocated in smaller chunks,
703 because the leading fields arent accessed. Pointers to such bodies
704 are decremented to point at the unused 'ghost' memory, knowing that
705 the pointers are used with offsets to the real memory.
29489e7c 706
d2a0f284
JC
707
708=head1 SV-Body Allocation
709
710Allocation of SV-bodies is similar to SV-heads, differing as follows;
711the allocation mechanism is used for many body types, so is somewhat
712more complicated, it uses arena-sets, and has no need for still-live
713SV detection.
714
715At the outermost level, (new|del)_X*V macros return bodies of the
716appropriate type. These macros call either (new|del)_body_type or
717(new|del)_body_allocated macro pairs, depending on specifics of the
718type. Most body types use the former pair, the latter pair is used to
719allocate body types with "ghost fields".
720
721"ghost fields" are fields that are unused in certain types, and
69ba284b 722consequently don't need to actually exist. They are declared because
d2a0f284
JC
723they're part of a "base type", which allows use of functions as
724methods. The simplest examples are AVs and HVs, 2 aggregate types
725which don't use the fields which support SCALAR semantics.
726
69ba284b 727For these types, the arenas are carved up into appropriately sized
d2a0f284
JC
728chunks, we thus avoid wasted memory for those unaccessed members.
729When bodies are allocated, we adjust the pointer back in memory by the
69ba284b 730size of the part not allocated, so it's as if we allocated the full
d2a0f284
JC
731structure. (But things will all go boom if you write to the part that
732is "not there", because you'll be overwriting the last members of the
733preceding structure in memory.)
734
69ba284b
NC
735We calculate the correction using the STRUCT_OFFSET macro on the first
736member present. If the allocated structure is smaller (no initial NV
737actually allocated) then the net effect is to subtract the size of the NV
738from the pointer, to return a new pointer as if an initial NV were actually
739allocated. (We were using structures named *_allocated for this, but
740this turned out to be a subtle bug, because a structure without an NV
741could have a lower alignment constraint, but the compiler is allowed to
742optimised accesses based on the alignment constraint of the actual pointer
743to the full structure, for example, using a single 64 bit load instruction
744because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
d2a0f284
JC
745
746This is the same trick as was used for NV and IV bodies. Ironically it
747doesn't need to be used for NV bodies any more, because NV is now at
748the start of the structure. IV bodies don't need it either, because
749they are no longer allocated.
750
751In turn, the new_body_* allocators call S_new_body(), which invokes
752new_body_inline macro, which takes a lock, and takes a body off the
1e30fcd5 753linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
d2a0f284
JC
754necessary to refresh an empty list. Then the lock is released, and
755the body is returned.
756
99816f8d 757Perl_more_bodies allocates a new arena, and carves it up into an array of N
d2a0f284
JC
758bodies, which it strings into a linked list. It looks up arena-size
759and body-size from the body_details table described below, thus
760supporting the multiple body-types.
761
762If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
763the (new|del)_X*V macros are mapped directly to malloc/free.
764
d2a0f284
JC
765For each sv-type, struct body_details bodies_by_type[] carries
766parameters which control these aspects of SV handling:
767
768Arena_size determines whether arenas are used for this body type, and if
769so, how big they are. PURIFY or PERL_ARENA_SIZE=0 set this field to
770zero, forcing individual mallocs and frees.
771
772Body_size determines how big a body is, and therefore how many fit into
773each arena. Offset carries the body-pointer adjustment needed for
69ba284b 774"ghost fields", and is used in *_allocated macros.
d2a0f284
JC
775
776But its main purpose is to parameterize info needed in
777Perl_sv_upgrade(). The info here dramatically simplifies the function
69ba284b 778vs the implementation in 5.8.8, making it table-driven. All fields
d2a0f284
JC
779are used for this, except for arena_size.
780
781For the sv-types that have no bodies, arenas are not used, so those
782PL_body_roots[sv_type] are unused, and can be overloaded. In
783something of a special case, SVt_NULL is borrowed for HE arenas;
c6f8b1d0 784PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
d2a0f284 785bodies_by_type[SVt_NULL] slot is not used, as the table is not
c6f8b1d0 786available in hv.c.
d2a0f284 787
29489e7c
DM
788*/
789
bd81e77b 790struct body_details {
0fb58b32 791 U8 body_size; /* Size to allocate */
10666ae3 792 U8 copy; /* Size of structure to copy (may be shorter) */
0fb58b32 793 U8 offset;
10666ae3
NC
794 unsigned int type : 4; /* We have space for a sanity check. */
795 unsigned int cant_upgrade : 1; /* Cannot upgrade this type */
796 unsigned int zero_nv : 1; /* zero the NV when upgrading from this */
797 unsigned int arena : 1; /* Allocated from an arena */
798 size_t arena_size; /* Size of arena to allocate */
bd81e77b 799};
29489e7c 800
bd81e77b
NC
801#define HADNV FALSE
802#define NONV TRUE
29489e7c 803
d2a0f284 804
bd81e77b
NC
805#ifdef PURIFY
806/* With -DPURFIY we allocate everything directly, and don't use arenas.
807 This seems a rather elegant way to simplify some of the code below. */
808#define HASARENA FALSE
809#else
810#define HASARENA TRUE
811#endif
812#define NOARENA FALSE
29489e7c 813
d2a0f284
JC
814/* Size the arenas to exactly fit a given number of bodies. A count
815 of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
816 simplifying the default. If count > 0, the arena is sized to fit
817 only that many bodies, allowing arenas to be used for large, rare
818 bodies (XPVFM, XPVIO) without undue waste. The arena size is
819 limited by PERL_ARENA_SIZE, so we can safely oversize the
820 declarations.
821 */
95db5f15
MB
822#define FIT_ARENA0(body_size) \
823 ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
824#define FIT_ARENAn(count,body_size) \
825 ( count * body_size <= PERL_ARENA_SIZE) \
826 ? count * body_size \
827 : FIT_ARENA0 (body_size)
828#define FIT_ARENA(count,body_size) \
829 count \
830 ? FIT_ARENAn (count, body_size) \
831 : FIT_ARENA0 (body_size)
d2a0f284 832
bd81e77b
NC
833/* Calculate the length to copy. Specifically work out the length less any
834 final padding the compiler needed to add. See the comment in sv_upgrade
835 for why copying the padding proved to be a bug. */
29489e7c 836
bd81e77b
NC
837#define copy_length(type, last_member) \
838 STRUCT_OFFSET(type, last_member) \
daba3364 839 + sizeof (((type*)SvANY((const SV *)0))->last_member)
29489e7c 840
bd81e77b 841static const struct body_details bodies_by_type[] = {
829cd18a
NC
842 /* HEs use this offset for their arena. */
843 { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
d2a0f284 844
1cb9cd50 845 /* The bind placeholder pretends to be an RV for now.
c6f8b1d0 846 Also it's marked as "can't upgrade" to stop anyone using it before it's
1cb9cd50
NC
847 implemented. */
848 { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
849
db93c0c4
NC
850 /* IVs are in the head, so the allocation size is 0. */
851 { 0,
d2a0f284 852 sizeof(IV), /* This is used to copy out the IV body. */
10666ae3 853 STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
db93c0c4 854 NOARENA /* IVS don't need an arena */, 0
d2a0f284
JC
855 },
856
bd81e77b 857 /* 8 bytes on most ILP32 with IEEE doubles */
6e128786
NC
858 { sizeof(NV), sizeof(NV),
859 STRUCT_OFFSET(XPVNV, xnv_u),
860 SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
d2a0f284 861
bd81e77b 862 /* 8 bytes on most ILP32 with IEEE doubles */
bc337e5c 863 { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
889d28b2
NC
864 copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
865 + STRUCT_OFFSET(XPV, xpv_cur),
69ba284b 866 SVt_PV, FALSE, NONV, HASARENA,
889d28b2 867 FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
d2a0f284 868
bd81e77b 869 /* 12 */
bc337e5c 870 { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
889d28b2
NC
871 copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
872 + STRUCT_OFFSET(XPV, xpv_cur),
873 SVt_PVIV, FALSE, NONV, HASARENA,
874 FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
d2a0f284 875
889d28b2 876 /* 20 */
bc337e5c 877 { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
889d28b2
NC
878 copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
879 + STRUCT_OFFSET(XPV, xpv_cur),
880 SVt_PVNV, FALSE, HADNV, HASARENA,
881 FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
d2a0f284 882
bd81e77b 883 /* 28 */
6e128786 884 { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
d2a0f284 885 HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
4df7f6af 886
288b8c02 887 /* something big */
601dfd0a
NC
888 { sizeof(regexp),
889 sizeof(regexp),
890 0,
08e44740 891 SVt_REGEXP, FALSE, NONV, HASARENA,
eaeb1e7f 892 FIT_ARENA(0, sizeof(regexp))
5c35adbb 893 },
4df7f6af 894
bd81e77b 895 /* 48 */
10666ae3 896 { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
d2a0f284
JC
897 HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
898
bd81e77b 899 /* 64 */
10666ae3 900 { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
d2a0f284
JC
901 HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
902
601dfd0a 903 { sizeof(XPVAV),
4f7003f5 904 copy_length(XPVAV, xav_alloc),
601dfd0a 905 0,
69ba284b 906 SVt_PVAV, TRUE, NONV, HASARENA,
601dfd0a 907 FIT_ARENA(0, sizeof(XPVAV)) },
d2a0f284 908
601dfd0a 909 { sizeof(XPVHV),
359164a0 910 copy_length(XPVHV, xhv_max),
601dfd0a 911 0,
69ba284b 912 SVt_PVHV, TRUE, NONV, HASARENA,
601dfd0a 913 FIT_ARENA(0, sizeof(XPVHV)) },
d2a0f284 914
c84c4652 915 /* 56 */
601dfd0a
NC
916 { sizeof(XPVCV),
917 sizeof(XPVCV),
918 0,
69ba284b 919 SVt_PVCV, TRUE, NONV, HASARENA,
601dfd0a 920 FIT_ARENA(0, sizeof(XPVCV)) },
69ba284b 921
601dfd0a
NC
922 { sizeof(XPVFM),
923 sizeof(XPVFM),
924 0,
69ba284b 925 SVt_PVFM, TRUE, NONV, NOARENA,
601dfd0a 926 FIT_ARENA(20, sizeof(XPVFM)) },
d2a0f284
JC
927
928 /* XPVIO is 84 bytes, fits 48x */
601dfd0a
NC
929 { sizeof(XPVIO),
930 sizeof(XPVIO),
931 0,
b6f60916 932 SVt_PVIO, TRUE, NONV, HASARENA,
601dfd0a 933 FIT_ARENA(24, sizeof(XPVIO)) },
bd81e77b 934};
29489e7c 935
bd81e77b 936#define new_body_allocated(sv_type) \
d2a0f284 937 (void *)((char *)S_new_body(aTHX_ sv_type) \
bd81e77b 938 - bodies_by_type[sv_type].offset)
29489e7c 939
26359cfa
NC
940/* return a thing to the free list */
941
942#define del_body(thing, root) \
943 STMT_START { \
944 void ** const thing_copy = (void **)thing; \
945 *thing_copy = *root; \
946 *root = (void*)thing_copy; \
947 } STMT_END
29489e7c 948
bd81e77b 949#ifdef PURIFY
29489e7c 950
beeec492
NC
951#define new_XNV() safemalloc(sizeof(XPVNV))
952#define new_XPVNV() safemalloc(sizeof(XPVNV))
953#define new_XPVMG() safemalloc(sizeof(XPVMG))
29489e7c 954
beeec492 955#define del_XPVGV(p) safefree(p)
29489e7c 956
bd81e77b 957#else /* !PURIFY */
29489e7c 958
65ac1738 959#define new_XNV() new_body_allocated(SVt_NV)
65ac1738 960#define new_XPVNV() new_body_allocated(SVt_PVNV)
65ac1738 961#define new_XPVMG() new_body_allocated(SVt_PVMG)
645c22ef 962
26359cfa
NC
963#define del_XPVGV(p) del_body(p + bodies_by_type[SVt_PVGV].offset, \
964 &PL_body_roots[SVt_PVGV])
1d7c1841 965
bd81e77b 966#endif /* PURIFY */
93e68bfb 967
bd81e77b 968/* no arena for you! */
93e68bfb 969
bd81e77b 970#define new_NOARENA(details) \
beeec492 971 safemalloc((details)->body_size + (details)->offset)
bd81e77b 972#define new_NOARENAZ(details) \
beeec492 973 safecalloc((details)->body_size + (details)->offset, 1)
d2a0f284 974
1e30fcd5
NC
975void *
976Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
977 const size_t arena_size)
d2a0f284
JC
978{
979 dVAR;
980 void ** const root = &PL_body_roots[sv_type];
99816f8d
NC
981 struct arena_desc *adesc;
982 struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
983 unsigned int curr;
d2a0f284
JC
984 char *start;
985 const char *end;
02982131 986 const size_t good_arena_size = Perl_malloc_good_size(arena_size);
0b2d3faa 987#if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
23e9d66c
NC
988 static bool done_sanity_check;
989
0b2d3faa
JH
990 /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
991 * variables like done_sanity_check. */
10666ae3 992 if (!done_sanity_check) {
ea471437 993 unsigned int i = SVt_LAST;
10666ae3
NC
994
995 done_sanity_check = TRUE;
996
997 while (i--)
998 assert (bodies_by_type[i].type == i);
999 }
1000#endif
1001
02982131 1002 assert(arena_size);
23e9d66c 1003
99816f8d
NC
1004 /* may need new arena-set to hold new arena */
1005 if (!aroot || aroot->curr >= aroot->set_size) {
1006 struct arena_set *newroot;
1007 Newxz(newroot, 1, struct arena_set);
1008 newroot->set_size = ARENAS_PER_SET;
1009 newroot->next = aroot;
1010 aroot = newroot;
1011 PL_body_arenas = (void *) newroot;
1012 DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1013 }
1014
1015 /* ok, now have arena-set with at least 1 empty/available arena-desc */
1016 curr = aroot->curr++;
1017 adesc = &(aroot->set[curr]);
1018 assert(!adesc->arena);
1019
1020 Newx(adesc->arena, good_arena_size, char);
1021 adesc->size = good_arena_size;
1022 adesc->utype = sv_type;
1023 DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n",
1024 curr, (void*)adesc->arena, (UV)good_arena_size));
1025
1026 start = (char *) adesc->arena;
d2a0f284 1027
29657bb6
NC
1028 /* Get the address of the byte after the end of the last body we can fit.
1029 Remember, this is integer division: */
02982131 1030 end = start + good_arena_size / body_size * body_size;
d2a0f284 1031
d2a0f284 1032 /* computed count doesnt reflect the 1st slot reservation */
d8fca402
NC
1033#if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1034 DEBUG_m(PerlIO_printf(Perl_debug_log,
1035 "arena %p end %p arena-size %d (from %d) type %d "
1036 "size %d ct %d\n",
02982131
NC
1037 (void*)start, (void*)end, (int)good_arena_size,
1038 (int)arena_size, sv_type, (int)body_size,
1039 (int)good_arena_size / (int)body_size));
d8fca402 1040#else
d2a0f284
JC
1041 DEBUG_m(PerlIO_printf(Perl_debug_log,
1042 "arena %p end %p arena-size %d type %d size %d ct %d\n",
6c9570dc 1043 (void*)start, (void*)end,
02982131
NC
1044 (int)arena_size, sv_type, (int)body_size,
1045 (int)good_arena_size / (int)body_size));
d8fca402 1046#endif
d2a0f284
JC
1047 *root = (void *)start;
1048
29657bb6
NC
1049 while (1) {
1050 /* Where the next body would start: */
d2a0f284 1051 char * const next = start + body_size;
29657bb6
NC
1052
1053 if (next >= end) {
1054 /* This is the last body: */
1055 assert(next == end);
1056
1057 *(void **)start = 0;
1058 return *root;
1059 }
1060
d2a0f284
JC
1061 *(void**) start = (void *)next;
1062 start = next;
1063 }
d2a0f284
JC
1064}
1065
1066/* grab a new thing from the free list, allocating more if necessary.
1067 The inline version is used for speed in hot routines, and the
1068 function using it serves the rest (unless PURIFY).
1069*/
1070#define new_body_inline(xpv, sv_type) \
1071 STMT_START { \
1072 void ** const r3wt = &PL_body_roots[sv_type]; \
11b79775 1073 xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt)) \
1e30fcd5 1074 ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
02982131
NC
1075 bodies_by_type[sv_type].body_size,\
1076 bodies_by_type[sv_type].arena_size)); \
d2a0f284 1077 *(r3wt) = *(void**)(xpv); \
d2a0f284
JC
1078 } STMT_END
1079
1080#ifndef PURIFY
1081
1082STATIC void *
de37a194 1083S_new_body(pTHX_ const svtype sv_type)
d2a0f284
JC
1084{
1085 dVAR;
1086 void *xpv;
1087 new_body_inline(xpv, sv_type);
1088 return xpv;
1089}
1090
1091#endif
93e68bfb 1092
238b27b3
NC
1093static const struct body_details fake_rv =
1094 { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1095
bd81e77b
NC
1096/*
1097=for apidoc sv_upgrade
93e68bfb 1098
bd81e77b
NC
1099Upgrade an SV to a more complex form. Generally adds a new body type to the
1100SV, then copies across as much information as possible from the old body.
1101You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
93e68bfb 1102
bd81e77b 1103=cut
93e68bfb 1104*/
93e68bfb 1105
bd81e77b 1106void
aad570aa 1107Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
cac9b346 1108{
97aff369 1109 dVAR;
bd81e77b
NC
1110 void* old_body;
1111 void* new_body;
42d0e0b7 1112 const svtype old_type = SvTYPE(sv);
d2a0f284 1113 const struct body_details *new_type_details;
238b27b3 1114 const struct body_details *old_type_details
bd81e77b 1115 = bodies_by_type + old_type;
4df7f6af 1116 SV *referant = NULL;
cac9b346 1117
7918f24d
NC
1118 PERL_ARGS_ASSERT_SV_UPGRADE;
1119
1776cbe8
NC
1120 if (old_type == new_type)
1121 return;
1122
1123 /* This clause was purposefully added ahead of the early return above to
1124 the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1125 inference by Nick I-S that it would fix other troublesome cases. See
1126 changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1127
1128 Given that shared hash key scalars are no longer PVIV, but PV, there is
1129 no longer need to unshare so as to free up the IVX slot for its proper
1130 purpose. So it's safe to move the early return earlier. */
1131
bd81e77b
NC
1132 if (new_type != SVt_PV && SvIsCOW(sv)) {
1133 sv_force_normal_flags(sv, 0);
1134 }
cac9b346 1135
bd81e77b 1136 old_body = SvANY(sv);
de042e1d 1137
bd81e77b
NC
1138 /* Copying structures onto other structures that have been neatly zeroed
1139 has a subtle gotcha. Consider XPVMG
cac9b346 1140
bd81e77b
NC
1141 +------+------+------+------+------+-------+-------+
1142 | NV | CUR | LEN | IV | MAGIC | STASH |
1143 +------+------+------+------+------+-------+-------+
1144 0 4 8 12 16 20 24 28
645c22ef 1145
bd81e77b
NC
1146 where NVs are aligned to 8 bytes, so that sizeof that structure is
1147 actually 32 bytes long, with 4 bytes of padding at the end:
08742458 1148
bd81e77b
NC
1149 +------+------+------+------+------+-------+-------+------+
1150 | NV | CUR | LEN | IV | MAGIC | STASH | ??? |
1151 +------+------+------+------+------+-------+-------+------+
1152 0 4 8 12 16 20 24 28 32
08742458 1153
bd81e77b 1154 so what happens if you allocate memory for this structure:
30f9da9e 1155
bd81e77b
NC
1156 +------+------+------+------+------+-------+-------+------+------+...
1157 | NV | CUR | LEN | IV | MAGIC | STASH | GP | NAME |
1158 +------+------+------+------+------+-------+-------+------+------+...
1159 0 4 8 12 16 20 24 28 32 36
bfc44f79 1160
bd81e77b
NC
1161 zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1162 expect, because you copy the area marked ??? onto GP. Now, ??? may have
1163 started out as zero once, but it's quite possible that it isn't. So now,
1164 rather than a nicely zeroed GP, you have it pointing somewhere random.
1165 Bugs ensue.
bfc44f79 1166
bd81e77b
NC
1167 (In fact, GP ends up pointing at a previous GP structure, because the
1168 principle cause of the padding in XPVMG getting garbage is a copy of
6c9e42f7
NC
1169 sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1170 this happens to be moot because XPVGV has been re-ordered, with GP
1171 no longer after STASH)
30f9da9e 1172
bd81e77b
NC
1173 So we are careful and work out the size of used parts of all the
1174 structures. */
bfc44f79 1175
bd81e77b
NC
1176 switch (old_type) {
1177 case SVt_NULL:
1178 break;
1179 case SVt_IV:
4df7f6af
NC
1180 if (SvROK(sv)) {
1181 referant = SvRV(sv);
238b27b3
NC
1182 old_type_details = &fake_rv;
1183 if (new_type == SVt_NV)
1184 new_type = SVt_PVNV;
4df7f6af
NC
1185 } else {
1186 if (new_type < SVt_PVIV) {
1187 new_type = (new_type == SVt_NV)
1188 ? SVt_PVNV : SVt_PVIV;
1189 }
bd81e77b
NC
1190 }
1191 break;
1192 case SVt_NV:
1193 if (new_type < SVt_PVNV) {
1194 new_type = SVt_PVNV;
bd81e77b
NC
1195 }
1196 break;
bd81e77b
NC
1197 case SVt_PV:
1198 assert(new_type > SVt_PV);
1199 assert(SVt_IV < SVt_PV);
1200 assert(SVt_NV < SVt_PV);
1201 break;
1202 case SVt_PVIV:
1203 break;
1204 case SVt_PVNV:
1205 break;
1206 case SVt_PVMG:
1207 /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1208 there's no way that it can be safely upgraded, because perl.c
1209 expects to Safefree(SvANY(PL_mess_sv)) */
1210 assert(sv != PL_mess_sv);
1211 /* This flag bit is used to mean other things in other scalar types.
1212 Given that it only has meaning inside the pad, it shouldn't be set
1213 on anything that can get upgraded. */
00b1698f 1214 assert(!SvPAD_TYPED(sv));
bd81e77b
NC
1215 break;
1216 default:
1217 if (old_type_details->cant_upgrade)
c81225bc
NC
1218 Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1219 sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
bd81e77b 1220 }
3376de98
NC
1221
1222 if (old_type > new_type)
1223 Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1224 (int)old_type, (int)new_type);
1225
2fa1109b 1226 new_type_details = bodies_by_type + new_type;
645c22ef 1227
bd81e77b
NC
1228 SvFLAGS(sv) &= ~SVTYPEMASK;
1229 SvFLAGS(sv) |= new_type;
932e9ff9 1230
ab4416c0
NC
1231 /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1232 the return statements above will have triggered. */
1233 assert (new_type != SVt_NULL);
bd81e77b 1234 switch (new_type) {
bd81e77b
NC
1235 case SVt_IV:
1236 assert(old_type == SVt_NULL);
1237 SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1238 SvIV_set(sv, 0);
1239 return;
1240 case SVt_NV:
1241 assert(old_type == SVt_NULL);
1242 SvANY(sv) = new_XNV();
1243 SvNV_set(sv, 0);
1244 return;
bd81e77b 1245 case SVt_PVHV:
bd81e77b 1246 case SVt_PVAV:
d2a0f284 1247 assert(new_type_details->body_size);
c1ae03ae
NC
1248
1249#ifndef PURIFY
1250 assert(new_type_details->arena);
d2a0f284 1251 assert(new_type_details->arena_size);
c1ae03ae 1252 /* This points to the start of the allocated area. */
d2a0f284
JC
1253 new_body_inline(new_body, new_type);
1254 Zero(new_body, new_type_details->body_size, char);
c1ae03ae
NC
1255 new_body = ((char *)new_body) - new_type_details->offset;
1256#else
1257 /* We always allocated the full length item with PURIFY. To do this
1258 we fake things so that arena is false for all 16 types.. */
1259 new_body = new_NOARENAZ(new_type_details);
1260#endif
1261 SvANY(sv) = new_body;
1262 if (new_type == SVt_PVAV) {
1263 AvMAX(sv) = -1;
1264 AvFILLp(sv) = -1;
1265 AvREAL_only(sv);
64484faa 1266 if (old_type_details->body_size) {
ac572bf4
NC
1267 AvALLOC(sv) = 0;
1268 } else {
1269 /* It will have been zeroed when the new body was allocated.
1270 Lets not write to it, in case it confuses a write-back
1271 cache. */
1272 }
78ac7dd9
NC
1273 } else {
1274 assert(!SvOK(sv));
1275 SvOK_off(sv);
1276#ifndef NODEFAULT_SHAREKEYS
1277 HvSHAREKEYS_on(sv); /* key-sharing on by default */
1278#endif
1279 HvMAX(sv) = 7; /* (start with 8 buckets) */
c1ae03ae 1280 }
aeb18a1e 1281
bd81e77b
NC
1282 /* SVt_NULL isn't the only thing upgraded to AV or HV.
1283 The target created by newSVrv also is, and it can have magic.
1284 However, it never has SvPVX set.
1285 */
4df7f6af
NC
1286 if (old_type == SVt_IV) {
1287 assert(!SvROK(sv));
1288 } else if (old_type >= SVt_PV) {
bd81e77b
NC
1289 assert(SvPVX_const(sv) == 0);
1290 }
aeb18a1e 1291
bd81e77b 1292 if (old_type >= SVt_PVMG) {
e736a858 1293 SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
bd81e77b 1294 SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
797c7171
NC
1295 } else {
1296 sv->sv_u.svu_array = NULL; /* or svu_hash */
bd81e77b
NC
1297 }
1298 break;
93e68bfb 1299
93e68bfb 1300
b9ad13ac
NC
1301 case SVt_REGEXP:
1302 /* This ensures that SvTHINKFIRST(sv) is true, and hence that
1303 sv_force_normal_flags(sv) is called. */
1304 SvFAKE_on(sv);
bd81e77b
NC
1305 case SVt_PVIV:
1306 /* XXX Is this still needed? Was it ever needed? Surely as there is
1307 no route from NV to PVIV, NOK can never be true */
1308 assert(!SvNOKp(sv));
1309 assert(!SvNOK(sv));
1310 case SVt_PVIO:
1311 case SVt_PVFM:
bd81e77b
NC
1312 case SVt_PVGV:
1313 case SVt_PVCV:
1314 case SVt_PVLV:
1315 case SVt_PVMG:
1316 case SVt_PVNV:
1317 case SVt_PV:
93e68bfb 1318
d2a0f284 1319 assert(new_type_details->body_size);
bd81e77b
NC
1320 /* We always allocated the full length item with PURIFY. To do this
1321 we fake things so that arena is false for all 16 types.. */
1322 if(new_type_details->arena) {
1323 /* This points to the start of the allocated area. */
d2a0f284
JC
1324 new_body_inline(new_body, new_type);
1325 Zero(new_body, new_type_details->body_size, char);
bd81e77b
NC
1326 new_body = ((char *)new_body) - new_type_details->offset;
1327 } else {
1328 new_body = new_NOARENAZ(new_type_details);
1329 }
1330 SvANY(sv) = new_body;
5e2fc214 1331
bd81e77b 1332 if (old_type_details->copy) {
f9ba3d20
NC
1333 /* There is now the potential for an upgrade from something without
1334 an offset (PVNV or PVMG) to something with one (PVCV, PVFM) */
1335 int offset = old_type_details->offset;
1336 int length = old_type_details->copy;
1337
1338 if (new_type_details->offset > old_type_details->offset) {
d4c19fe8 1339 const int difference
f9ba3d20
NC
1340 = new_type_details->offset - old_type_details->offset;
1341 offset += difference;
1342 length -= difference;
1343 }
1344 assert (length >= 0);
1345
1346 Copy((char *)old_body + offset, (char *)new_body + offset, length,
1347 char);
bd81e77b
NC
1348 }
1349
1350#ifndef NV_ZERO_IS_ALLBITS_ZERO
f2524eef 1351 /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
e5ce394c
NC
1352 * correct 0.0 for us. Otherwise, if the old body didn't have an
1353 * NV slot, but the new one does, then we need to initialise the
1354 * freshly created NV slot with whatever the correct bit pattern is
1355 * for 0.0 */
e22a937e
NC
1356 if (old_type_details->zero_nv && !new_type_details->zero_nv
1357 && !isGV_with_GP(sv))
bd81e77b 1358 SvNV_set(sv, 0);
82048762 1359#endif
5e2fc214 1360
85dca89a
NC
1361 if (new_type == SVt_PVIO) {
1362 IO * const io = MUTABLE_IO(sv);
d963bf01 1363 GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
85dca89a
NC
1364
1365 SvOBJECT_on(io);
1366 /* Clear the stashcache because a new IO could overrule a package
1367 name */
1368 hv_clear(PL_stashcache);
1369
85dca89a 1370 SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
f2524eef 1371 IoPAGE_LEN(sv) = 60;
85dca89a 1372 }
4df7f6af
NC
1373 if (old_type < SVt_PV) {
1374 /* referant will be NULL unless the old type was SVt_IV emulating
1375 SVt_RV */
1376 sv->sv_u.svu_rv = referant;
1377 }
bd81e77b
NC
1378 break;
1379 default:
afd78fd5
JH
1380 Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1381 (unsigned long)new_type);
bd81e77b 1382 }
73171d91 1383
db93c0c4 1384 if (old_type > SVt_IV) {
bd81e77b 1385#ifdef PURIFY
beeec492 1386 safefree(old_body);
bd81e77b 1387#else
bc786448
GG
1388 /* Note that there is an assumption that all bodies of types that
1389 can be upgraded came from arenas. Only the more complex non-
1390 upgradable types are allowed to be directly malloc()ed. */
1391 assert(old_type_details->arena);
bd81e77b
NC
1392 del_body((void*)((char*)old_body + old_type_details->offset),
1393 &PL_body_roots[old_type]);
1394#endif
1395 }
1396}
73171d91 1397
bd81e77b
NC
1398/*
1399=for apidoc sv_backoff
73171d91 1400
bd81e77b
NC
1401Remove any string offset. You should normally use the C<SvOOK_off> macro
1402wrapper instead.
73171d91 1403
bd81e77b 1404=cut
73171d91
NC
1405*/
1406
bd81e77b 1407int
aad570aa 1408Perl_sv_backoff(pTHX_ register SV *const sv)
bd81e77b 1409{
69240efd 1410 STRLEN delta;
7a4bba22 1411 const char * const s = SvPVX_const(sv);
7918f24d
NC
1412
1413 PERL_ARGS_ASSERT_SV_BACKOFF;
96a5add6 1414 PERL_UNUSED_CONTEXT;
7918f24d 1415
bd81e77b
NC
1416 assert(SvOOK(sv));
1417 assert(SvTYPE(sv) != SVt_PVHV);
1418 assert(SvTYPE(sv) != SVt_PVAV);
7a4bba22 1419
69240efd
NC
1420 SvOOK_offset(sv, delta);
1421
7a4bba22
NC
1422 SvLEN_set(sv, SvLEN(sv) + delta);
1423 SvPV_set(sv, SvPVX(sv) - delta);
1424 Move(s, SvPVX(sv), SvCUR(sv)+1, char);
bd81e77b
NC
1425 SvFLAGS(sv) &= ~SVf_OOK;
1426 return 0;
1427}
73171d91 1428
bd81e77b
NC
1429/*
1430=for apidoc sv_grow
73171d91 1431
bd81e77b
NC
1432Expands the character buffer in the SV. If necessary, uses C<sv_unref> and
1433upgrades the SV to C<SVt_PV>. Returns a pointer to the character buffer.
1434Use the C<SvGROW> wrapper instead.
93e68bfb 1435
bd81e77b
NC
1436=cut
1437*/
93e68bfb 1438
bd81e77b 1439char *
aad570aa 1440Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
bd81e77b
NC
1441{
1442 register char *s;
93e68bfb 1443
7918f24d
NC
1444 PERL_ARGS_ASSERT_SV_GROW;
1445
5db06880
NC
1446 if (PL_madskills && newlen >= 0x100000) {
1447 PerlIO_printf(Perl_debug_log,
1448 "Allocation too large: %"UVxf"\n", (UV)newlen);
1449 }
bd81e77b
NC
1450#ifdef HAS_64K_LIMIT
1451 if (newlen >= 0x10000) {
1452 PerlIO_printf(Perl_debug_log,
1453 "Allocation too large: %"UVxf"\n", (UV)newlen);
1454 my_exit(1);
1455 }
1456#endif /* HAS_64K_LIMIT */
1457 if (SvROK(sv))
1458 sv_unref(sv);
1459 if (SvTYPE(sv) < SVt_PV) {
1460 sv_upgrade(sv, SVt_PV);
1461 s = SvPVX_mutable(sv);
1462 }
1463 else if (SvOOK(sv)) { /* pv is offset? */
1464 sv_backoff(sv);
1465 s = SvPVX_mutable(sv);
1466 if (newlen > SvLEN(sv))
1467 newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1468#ifdef HAS_64K_LIMIT
1469 if (newlen >= 0x10000)
1470 newlen = 0xFFFF;
1471#endif
1472 }
1473 else
1474 s = SvPVX_mutable(sv);
aeb18a1e 1475
bd81e77b 1476 if (newlen > SvLEN(sv)) { /* need more room? */
f1200559
WH
1477 STRLEN minlen = SvCUR(sv);
1478 minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1479 if (newlen < minlen)
1480 newlen = minlen;
aedff202 1481#ifndef Perl_safesysmalloc_size
bd81e77b 1482 newlen = PERL_STRLEN_ROUNDUP(newlen);
bd81e77b 1483#endif
98653f18 1484 if (SvLEN(sv) && s) {
10edeb5d 1485 s = (char*)saferealloc(s, newlen);
bd81e77b
NC
1486 }
1487 else {
10edeb5d 1488 s = (char*)safemalloc(newlen);
bd81e77b
NC
1489 if (SvPVX_const(sv) && SvCUR(sv)) {
1490 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1491 }
1492 }
1493 SvPV_set(sv, s);
ca7c1a29 1494#ifdef Perl_safesysmalloc_size
98653f18
NC
1495 /* Do this here, do it once, do it right, and then we will never get
1496 called back into sv_grow() unless there really is some growing
1497 needed. */
ca7c1a29 1498 SvLEN_set(sv, Perl_safesysmalloc_size(s));
98653f18 1499#else
bd81e77b 1500 SvLEN_set(sv, newlen);
98653f18 1501#endif
bd81e77b
NC
1502 }
1503 return s;
1504}
aeb18a1e 1505
bd81e77b
NC
1506/*
1507=for apidoc sv_setiv
932e9ff9 1508
bd81e77b
NC
1509Copies an integer into the given SV, upgrading first if necessary.
1510Does not handle 'set' magic. See also C<sv_setiv_mg>.
463ee0b2 1511
bd81e77b
NC
1512=cut
1513*/
463ee0b2 1514
bd81e77b 1515void
aad570aa 1516Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
bd81e77b 1517{
97aff369 1518 dVAR;
7918f24d
NC
1519
1520 PERL_ARGS_ASSERT_SV_SETIV;
1521
bd81e77b
NC
1522 SV_CHECK_THINKFIRST_COW_DROP(sv);
1523 switch (SvTYPE(sv)) {
1524 case SVt_NULL:
bd81e77b 1525 case SVt_NV:
3376de98 1526 sv_upgrade(sv, SVt_IV);
bd81e77b 1527 break;
bd81e77b
NC
1528 case SVt_PV:
1529 sv_upgrade(sv, SVt_PVIV);
1530 break;
463ee0b2 1531
bd81e77b 1532 case SVt_PVGV:
6e592b3a
BM
1533 if (!isGV_with_GP(sv))
1534 break;
bd81e77b
NC
1535 case SVt_PVAV:
1536 case SVt_PVHV:
1537 case SVt_PVCV:
1538 case SVt_PVFM:
1539 case SVt_PVIO:
1540 Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1541 OP_DESC(PL_op));
42d0e0b7 1542 default: NOOP;
bd81e77b
NC
1543 }
1544 (void)SvIOK_only(sv); /* validate number */
1545 SvIV_set(sv, i);
1546 SvTAINT(sv);
1547}
932e9ff9 1548
bd81e77b
NC
1549/*
1550=for apidoc sv_setiv_mg
d33b2eba 1551
bd81e77b 1552Like C<sv_setiv>, but also handles 'set' magic.
1c846c1f 1553
bd81e77b
NC
1554=cut
1555*/
d33b2eba 1556
bd81e77b 1557void
aad570aa 1558Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
bd81e77b 1559{
7918f24d
NC
1560 PERL_ARGS_ASSERT_SV_SETIV_MG;
1561
bd81e77b
NC
1562 sv_setiv(sv,i);
1563 SvSETMAGIC(sv);
1564}
727879eb 1565
bd81e77b
NC
1566/*
1567=for apidoc sv_setuv
d33b2eba 1568
bd81e77b
NC
1569Copies an unsigned integer into the given SV, upgrading first if necessary.
1570Does not handle 'set' magic. See also C<sv_setuv_mg>.
9b94d1dd 1571
bd81e77b
NC
1572=cut
1573*/
d33b2eba 1574
bd81e77b 1575void
aad570aa 1576Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
bd81e77b 1577{
7918f24d
NC
1578 PERL_ARGS_ASSERT_SV_SETUV;
1579
bd81e77b
NC
1580 /* With these two if statements:
1581 u=1.49 s=0.52 cu=72.49 cs=10.64 scripts=270 tests=20865
d33b2eba 1582
bd81e77b
NC
1583 without
1584 u=1.35 s=0.47 cu=73.45 cs=11.43 scripts=270 tests=20865
1c846c1f 1585
bd81e77b
NC
1586 If you wish to remove them, please benchmark to see what the effect is
1587 */
1588 if (u <= (UV)IV_MAX) {
1589 sv_setiv(sv, (IV)u);
1590 return;
1591 }
1592 sv_setiv(sv, 0);
1593 SvIsUV_on(sv);
1594 SvUV_set(sv, u);
1595}
d33b2eba 1596
bd81e77b
NC
1597/*
1598=for apidoc sv_setuv_mg
727879eb 1599
bd81e77b 1600Like C<sv_setuv>, but also handles 'set' magic.
9b94d1dd 1601
bd81e77b
NC
1602=cut
1603*/
5e2fc214 1604
bd81e77b 1605void
aad570aa 1606Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
bd81e77b 1607{
7918f24d
NC
1608 PERL_ARGS_ASSERT_SV_SETUV_MG;
1609
bd81e77b
NC
1610 sv_setuv(sv,u);
1611 SvSETMAGIC(sv);
1612}
5e2fc214 1613
954c1994 1614/*
bd81e77b 1615=for apidoc sv_setnv
954c1994 1616
bd81e77b
NC
1617Copies a double into the given SV, upgrading first if necessary.
1618Does not handle 'set' magic. See also C<sv_setnv_mg>.
954c1994
GS
1619
1620=cut
1621*/
1622
63f97190 1623void
aad570aa 1624Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
79072805 1625{
97aff369 1626 dVAR;
7918f24d
NC
1627
1628 PERL_ARGS_ASSERT_SV_SETNV;
1629
bd81e77b
NC
1630 SV_CHECK_THINKFIRST_COW_DROP(sv);
1631 switch (SvTYPE(sv)) {
79072805 1632 case SVt_NULL:
79072805 1633 case SVt_IV:
bd81e77b 1634 sv_upgrade(sv, SVt_NV);
79072805
LW
1635 break;
1636 case SVt_PV:
79072805 1637 case SVt_PVIV:
bd81e77b 1638 sv_upgrade(sv, SVt_PVNV);
79072805 1639 break;
bd4b1eb5 1640
bd4b1eb5 1641 case SVt_PVGV:
6e592b3a
BM
1642 if (!isGV_with_GP(sv))
1643 break;
bd81e77b
NC
1644 case SVt_PVAV:
1645 case SVt_PVHV:
79072805 1646 case SVt_PVCV:
bd81e77b
NC
1647 case SVt_PVFM:
1648 case SVt_PVIO:
1649 Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
94bbb3f4 1650 OP_DESC(PL_op));
42d0e0b7 1651 default: NOOP;
2068cd4d 1652 }
bd81e77b
NC
1653 SvNV_set(sv, num);
1654 (void)SvNOK_only(sv); /* validate number */
1655 SvTAINT(sv);
79072805
LW
1656}
1657
645c22ef 1658/*
bd81e77b 1659=for apidoc sv_setnv_mg
645c22ef 1660
bd81e77b 1661Like C<sv_setnv>, but also handles 'set' magic.
645c22ef
DM
1662
1663=cut
1664*/
1665
bd81e77b 1666void
aad570aa 1667Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
79072805 1668{
7918f24d
NC
1669 PERL_ARGS_ASSERT_SV_SETNV_MG;
1670
bd81e77b
NC
1671 sv_setnv(sv,num);
1672 SvSETMAGIC(sv);
79072805
LW
1673}
1674
bd81e77b
NC
1675/* Print an "isn't numeric" warning, using a cleaned-up,
1676 * printable version of the offending string
1677 */
954c1994 1678
bd81e77b 1679STATIC void
aad570aa 1680S_not_a_number(pTHX_ SV *const sv)
79072805 1681{
97aff369 1682 dVAR;
bd81e77b
NC
1683 SV *dsv;
1684 char tmpbuf[64];
1685 const char *pv;
94463019 1686
7918f24d
NC
1687 PERL_ARGS_ASSERT_NOT_A_NUMBER;
1688
94463019 1689 if (DO_UTF8(sv)) {
84bafc02 1690 dsv = newSVpvs_flags("", SVs_TEMP);
94463019
JH
1691 pv = sv_uni_display(dsv, sv, 10, 0);
1692 } else {
1693 char *d = tmpbuf;
551405c4 1694 const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
94463019
JH
1695 /* each *s can expand to 4 chars + "...\0",
1696 i.e. need room for 8 chars */
ecdeb87c 1697
00b6aa41
AL
1698 const char *s = SvPVX_const(sv);
1699 const char * const end = s + SvCUR(sv);
1700 for ( ; s < end && d < limit; s++ ) {
94463019
JH
1701 int ch = *s & 0xFF;
1702 if (ch & 128 && !isPRINT_LC(ch)) {
1703 *d++ = 'M';
1704 *d++ = '-';
1705 ch &= 127;
1706 }
1707 if (ch == '\n') {
1708 *d++ = '\\';
1709 *d++ = 'n';
1710 }
1711 else if (ch == '\r') {
1712 *d++ = '\\';
1713 *d++ = 'r';
1714 }
1715 else if (ch == '\f') {
1716 *d++ = '\\';
1717 *d++ = 'f';
1718 }
1719 else if (ch == '\\') {
1720 *d++ = '\\';
1721 *d++ = '\\';
1722 }
1723 else if (ch == '\0') {
1724 *d++ = '\\';
1725 *d++ = '0';
1726 }
1727 else if (isPRINT_LC(ch))
1728 *d++ = ch;
1729 else {
1730 *d++ = '^';
1731 *d++ = toCTRL(ch);
1732 }
1733 }
1734 if (s < end) {
1735 *d++ = '.';
1736 *d++ = '.';
1737 *d++ = '.';
1738 }
1739 *d = '\0';
1740 pv = tmpbuf;
a0d0e21e 1741 }
a0d0e21e 1742
533c011a 1743 if (PL_op)
9014280d 1744 Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
94463019
JH
1745 "Argument \"%s\" isn't numeric in %s", pv,
1746 OP_DESC(PL_op));
a0d0e21e 1747 else
9014280d 1748 Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
94463019 1749 "Argument \"%s\" isn't numeric", pv);
a0d0e21e
LW
1750}
1751
c2988b20
NC
1752/*
1753=for apidoc looks_like_number
1754
645c22ef
DM
1755Test if the content of an SV looks like a number (or is a number).
1756C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1757non-numeric warning), even if your atof() doesn't grok them.
c2988b20
NC
1758
1759=cut
1760*/
1761
1762I32
aad570aa 1763Perl_looks_like_number(pTHX_ SV *const sv)
c2988b20 1764{
a3b680e6 1765 register const char *sbegin;
c2988b20
NC
1766 STRLEN len;
1767
7918f24d
NC
1768 PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1769
c2988b20 1770 if (SvPOK(sv)) {
3f7c398e 1771 sbegin = SvPVX_const(sv);
c2988b20
NC
1772 len = SvCUR(sv);
1773 }
1774 else if (SvPOKp(sv))
83003860 1775 sbegin = SvPV_const(sv, len);
c2988b20 1776 else
e0ab1c0e 1777 return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
c2988b20
NC
1778 return grok_number(sbegin, len, NULL);
1779}
25da4f38 1780
19f6321d
NC
1781STATIC bool
1782S_glob_2number(pTHX_ GV * const gv)
180488f8
NC
1783{
1784 const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1785 SV *const buffer = sv_newmortal();
1786
7918f24d
NC
1787 PERL_ARGS_ASSERT_GLOB_2NUMBER;
1788
180488f8
NC
1789 /* FAKE globs can get coerced, so need to turn this off temporarily if it
1790 is on. */
1791 SvFAKE_off(gv);
1792 gv_efullname3(buffer, gv, "*");
1793 SvFLAGS(gv) |= wasfake;
1794
675c862f
AL
1795 /* We know that all GVs stringify to something that is not-a-number,
1796 so no need to test that. */
1797 if (ckWARN(WARN_NUMERIC))
1798 not_a_number(buffer);
1799 /* We just want something true to return, so that S_sv_2iuv_common
1800 can tail call us and return true. */
19f6321d 1801 return TRUE;
675c862f
AL
1802}
1803
25da4f38
IZ
1804/* Actually, ISO C leaves conversion of UV to IV undefined, but
1805 until proven guilty, assume that things are not that bad... */
1806
645c22ef
DM
1807/*
1808 NV_PRESERVES_UV:
1809
1810 As 64 bit platforms often have an NV that doesn't preserve all bits of
28e5dec8
JH
1811 an IV (an assumption perl has been based on to date) it becomes necessary
1812 to remove the assumption that the NV always carries enough precision to
1813 recreate the IV whenever needed, and that the NV is the canonical form.
1814 Instead, IV/UV and NV need to be given equal rights. So as to not lose
645c22ef 1815 precision as a side effect of conversion (which would lead to insanity
28e5dec8
JH
1816 and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1817 1) to distinguish between IV/UV/NV slots that have cached a valid
1818 conversion where precision was lost and IV/UV/NV slots that have a
1819 valid conversion which has lost no precision
645c22ef 1820 2) to ensure that if a numeric conversion to one form is requested that
28e5dec8
JH
1821 would lose precision, the precise conversion (or differently
1822 imprecise conversion) is also performed and cached, to prevent
1823 requests for different numeric formats on the same SV causing
1824 lossy conversion chains. (lossless conversion chains are perfectly
1825 acceptable (still))
1826
1827
1828 flags are used:
1829 SvIOKp is true if the IV slot contains a valid value
1830 SvIOK is true only if the IV value is accurate (UV if SvIOK_UV true)
1831 SvNOKp is true if the NV slot contains a valid value
1832 SvNOK is true only if the NV value is accurate
1833
1834 so
645c22ef 1835 while converting from PV to NV, check to see if converting that NV to an
28e5dec8
JH
1836 IV(or UV) would lose accuracy over a direct conversion from PV to
1837 IV(or UV). If it would, cache both conversions, return NV, but mark
1838 SV as IOK NOKp (ie not NOK).
1839
645c22ef 1840 While converting from PV to IV, check to see if converting that IV to an
28e5dec8
JH
1841 NV would lose accuracy over a direct conversion from PV to NV. If it
1842 would, cache both conversions, flag similarly.
1843
1844 Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1845 correctly because if IV & NV were set NV *always* overruled.
645c22ef
DM
1846 Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1847 changes - now IV and NV together means that the two are interchangeable:
28e5dec8 1848 SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
d460ef45 1849
645c22ef
DM
1850 The benefit of this is that operations such as pp_add know that if
1851 SvIOK is true for both left and right operands, then integer addition
1852 can be used instead of floating point (for cases where the result won't
1853 overflow). Before, floating point was always used, which could lead to
28e5dec8
JH
1854 loss of precision compared with integer addition.
1855
1856 * making IV and NV equal status should make maths accurate on 64 bit
1857 platforms
1858 * may speed up maths somewhat if pp_add and friends start to use
645c22ef 1859 integers when possible instead of fp. (Hopefully the overhead in
28e5dec8
JH
1860 looking for SvIOK and checking for overflow will not outweigh the
1861 fp to integer speedup)
1862 * will slow down integer operations (callers of SvIV) on "inaccurate"
1863 values, as the change from SvIOK to SvIOKp will cause a call into
1864 sv_2iv each time rather than a macro access direct to the IV slot
1865 * should speed up number->string conversion on integers as IV is
645c22ef 1866 favoured when IV and NV are equally accurate
28e5dec8
JH
1867
1868 ####################################################################
645c22ef
DM
1869 You had better be using SvIOK_notUV if you want an IV for arithmetic:
1870 SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1871 On the other hand, SvUOK is true iff UV.
28e5dec8
JH
1872 ####################################################################
1873
645c22ef 1874 Your mileage will vary depending your CPU's relative fp to integer
28e5dec8
JH
1875 performance ratio.
1876*/
1877
1878#ifndef NV_PRESERVES_UV
645c22ef
DM
1879# define IS_NUMBER_UNDERFLOW_IV 1
1880# define IS_NUMBER_UNDERFLOW_UV 2
1881# define IS_NUMBER_IV_AND_UV 2
1882# define IS_NUMBER_OVERFLOW_IV 4
1883# define IS_NUMBER_OVERFLOW_UV 5
1884
1885/* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
28e5dec8
JH
1886
1887/* For sv_2nv these three cases are "SvNOK and don't bother casting" */
1888STATIC int
5de3775c 1889S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
47031da6
NC
1890# ifdef DEBUGGING
1891 , I32 numtype
1892# endif
1893 )
28e5dec8 1894{
97aff369 1895 dVAR;
7918f24d
NC
1896
1897 PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1898
3f7c398e 1899 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
1900 if (SvNVX(sv) < (NV)IV_MIN) {
1901 (void)SvIOKp_on(sv);
1902 (void)SvNOK_on(sv);
45977657 1903 SvIV_set(sv, IV_MIN);
28e5dec8
JH
1904 return IS_NUMBER_UNDERFLOW_IV;
1905 }
1906 if (SvNVX(sv) > (NV)UV_MAX) {
1907 (void)SvIOKp_on(sv);
1908 (void)SvNOK_on(sv);
1909 SvIsUV_on(sv);
607fa7f2 1910 SvUV_set(sv, UV_MAX);
28e5dec8
JH
1911 return IS_NUMBER_OVERFLOW_UV;
1912 }
c2988b20
NC
1913 (void)SvIOKp_on(sv);
1914 (void)SvNOK_on(sv);
1915 /* Can't use strtol etc to convert this string. (See truth table in
1916 sv_2iv */
1917 if (SvNVX(sv) <= (UV)IV_MAX) {
45977657 1918 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
1919 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1920 SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1921 } else {
1922 /* Integer is imprecise. NOK, IOKp */
1923 }
1924 return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1925 }
1926 SvIsUV_on(sv);
607fa7f2 1927 SvUV_set(sv, U_V(SvNVX(sv)));
c2988b20
NC
1928 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1929 if (SvUVX(sv) == UV_MAX) {
1930 /* As we know that NVs don't preserve UVs, UV_MAX cannot
1931 possibly be preserved by NV. Hence, it must be overflow.
1932 NOK, IOKp */
1933 return IS_NUMBER_OVERFLOW_UV;
1934 }
1935 SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1936 } else {
1937 /* Integer is imprecise. NOK, IOKp */
28e5dec8 1938 }
c2988b20 1939 return IS_NUMBER_OVERFLOW_IV;
28e5dec8 1940}
645c22ef
DM
1941#endif /* !NV_PRESERVES_UV*/
1942
af359546 1943STATIC bool
7918f24d
NC
1944S_sv_2iuv_common(pTHX_ SV *const sv)
1945{
97aff369 1946 dVAR;
7918f24d
NC
1947
1948 PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1949
af359546 1950 if (SvNOKp(sv)) {
28e5dec8
JH
1951 /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1952 * without also getting a cached IV/UV from it at the same time
1953 * (ie PV->NV conversion should detect loss of accuracy and cache
af359546
NC
1954 * IV or UV at same time to avoid this. */
1955 /* IV-over-UV optimisation - choose to cache IV if possible */
25da4f38
IZ
1956
1957 if (SvTYPE(sv) == SVt_NV)
1958 sv_upgrade(sv, SVt_PVNV);
1959
28e5dec8
JH
1960 (void)SvIOKp_on(sv); /* Must do this first, to clear any SvOOK */
1961 /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1962 certainly cast into the IV range at IV_MAX, whereas the correct
1963 answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1964 cases go to UV */
cab190d4
JD
1965#if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1966 if (Perl_isnan(SvNVX(sv))) {
1967 SvUV_set(sv, 0);
1968 SvIsUV_on(sv);
fdbe6d7c 1969 return FALSE;
cab190d4 1970 }
cab190d4 1971#endif
28e5dec8 1972 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
45977657 1973 SvIV_set(sv, I_V(SvNVX(sv)));
28e5dec8
JH
1974 if (SvNVX(sv) == (NV) SvIVX(sv)
1975#ifndef NV_PRESERVES_UV
1976 && (((UV)1 << NV_PRESERVES_UV_BITS) >
1977 (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
1978 /* Don't flag it as "accurately an integer" if the number
1979 came from a (by definition imprecise) NV operation, and
1980 we're outside the range of NV integer precision */
1981#endif
1982 ) {
a43d94f2
NC
1983 if (SvNOK(sv))
1984 SvIOK_on(sv); /* Can this go wrong with rounding? NWC */
1985 else {
1986 /* scalar has trailing garbage, eg "42a" */
1987 }
28e5dec8 1988 DEBUG_c(PerlIO_printf(Perl_debug_log,
7234c960 1989 "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
28e5dec8
JH
1990 PTR2UV(sv),
1991 SvNVX(sv),
1992 SvIVX(sv)));
1993
1994 } else {
1995 /* IV not precise. No need to convert from PV, as NV
1996 conversion would already have cached IV if it detected
1997 that PV->IV would be better than PV->NV->IV
1998 flags already correct - don't set public IOK. */
1999 DEBUG_c(PerlIO_printf(Perl_debug_log,
7234c960 2000 "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
28e5dec8
JH
2001 PTR2UV(sv),
2002 SvNVX(sv),
2003 SvIVX(sv)));
2004 }
2005 /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2006 but the cast (NV)IV_MIN rounds to a the value less (more
2007 negative) than IV_MIN which happens to be equal to SvNVX ??
2008 Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2009 NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2010 (NV)UVX == NVX are both true, but the values differ. :-(
2011 Hopefully for 2s complement IV_MIN is something like
2012 0x8000000000000000 which will be exact. NWC */
d460ef45 2013 }
25da4f38 2014 else {
607fa7f2 2015 SvUV_set(sv, U_V(SvNVX(sv)));
28e5dec8
JH
2016 if (
2017 (SvNVX(sv) == (NV) SvUVX(sv))
2018#ifndef NV_PRESERVES_UV
2019 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2020 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2021 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2022 /* Don't flag it as "accurately an integer" if the number
2023 came from a (by definition imprecise) NV operation, and
2024 we're outside the range of NV integer precision */
2025#endif
a43d94f2 2026 && SvNOK(sv)
28e5dec8
JH
2027 )
2028 SvIOK_on(sv);
25da4f38 2029 SvIsUV_on(sv);
1c846c1f 2030 DEBUG_c(PerlIO_printf(Perl_debug_log,
57def98f 2031 "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
56431972 2032 PTR2UV(sv),
57def98f
JH
2033 SvUVX(sv),
2034 SvUVX(sv)));
25da4f38 2035 }
748a9306
LW
2036 }
2037 else if (SvPOKp(sv) && SvLEN(sv)) {
c2988b20 2038 UV value;
504618e9 2039 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
af359546 2040 /* We want to avoid a possible problem when we cache an IV/ a UV which
25da4f38 2041 may be later translated to an NV, and the resulting NV is not
c2988b20
NC
2042 the same as the direct translation of the initial string
2043 (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2044 be careful to ensure that the value with the .456 is around if the
2045 NV value is requested in the future).
1c846c1f 2046
af359546 2047 This means that if we cache such an IV/a UV, we need to cache the
25da4f38 2048 NV as well. Moreover, we trade speed for space, and do not
28e5dec8 2049 cache the NV if we are sure it's not needed.
25da4f38 2050 */
16b7a9a4 2051
c2988b20
NC
2052 /* SVt_PVNV is one higher than SVt_PVIV, hence this order */
2053 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2054 == IS_NUMBER_IN_UV) {
5e045b90 2055 /* It's definitely an integer, only upgrade to PVIV */
28e5dec8
JH
2056 if (SvTYPE(sv) < SVt_PVIV)
2057 sv_upgrade(sv, SVt_PVIV);
f7bbb42a 2058 (void)SvIOK_on(sv);
c2988b20
NC
2059 } else if (SvTYPE(sv) < SVt_PVNV)
2060 sv_upgrade(sv, SVt_PVNV);
28e5dec8 2061
f2524eef 2062 /* If NVs preserve UVs then we only use the UV value if we know that
c2988b20
NC
2063 we aren't going to call atof() below. If NVs don't preserve UVs
2064 then the value returned may have more precision than atof() will
2065 return, even though value isn't perfectly accurate. */
2066 if ((numtype & (IS_NUMBER_IN_UV
2067#ifdef NV_PRESERVES_UV
2068 | IS_NUMBER_NOT_INT
2069#endif
2070 )) == IS_NUMBER_IN_UV) {
2071 /* This won't turn off the public IOK flag if it was set above */
2072 (void)SvIOKp_on(sv);
2073
2074 if (!(numtype & IS_NUMBER_NEG)) {
2075 /* positive */;
2076 if (value <= (UV)IV_MAX) {
45977657 2077 SvIV_set(sv, (IV)value);
c2988b20 2078 } else {
af359546 2079 /* it didn't overflow, and it was positive. */
607fa7f2 2080 SvUV_set(sv, value);
c2988b20
NC
2081 SvIsUV_on(sv);
2082 }
2083 } else {
2084 /* 2s complement assumption */
2085 if (value <= (UV)IV_MIN) {
45977657 2086 SvIV_set(sv, -(IV)value);
c2988b20
NC
2087 } else {
2088 /* Too negative for an IV. This is a double upgrade, but
d1be9408 2089 I'm assuming it will be rare. */
c2988b20
NC
2090 if (SvTYPE(sv) < SVt_PVNV)
2091 sv_upgrade(sv, SVt_PVNV);
2092 SvNOK_on(sv);
2093 SvIOK_off(sv);
2094 SvIOKp_on(sv);
9d6ce603 2095 SvNV_set(sv, -(NV)value);
45977657 2096 SvIV_set(sv, IV_MIN);
c2988b20
NC
2097 }
2098 }
2099 }
2100 /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2101 will be in the previous block to set the IV slot, and the next
2102 block to set the NV slot. So no else here. */
2103
2104 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2105 != IS_NUMBER_IN_UV) {
2106 /* It wasn't an (integer that doesn't overflow the UV). */
3f7c398e 2107 SvNV_set(sv, Atof(SvPVX_const(sv)));
28e5dec8 2108
c2988b20
NC
2109 if (! numtype && ckWARN(WARN_NUMERIC))
2110 not_a_number(sv);
28e5dec8 2111
65202027 2112#if defined(USE_LONG_DOUBLE)
c2988b20
NC
2113 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2114 PTR2UV(sv), SvNVX(sv)));
65202027 2115#else
1779d84d 2116 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
c2988b20 2117 PTR2UV(sv), SvNVX(sv)));
65202027 2118#endif
28e5dec8 2119
28e5dec8 2120#ifdef NV_PRESERVES_UV
af359546
NC
2121 (void)SvIOKp_on(sv);
2122 (void)SvNOK_on(sv);
2123 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2124 SvIV_set(sv, I_V(SvNVX(sv)));
2125 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2126 SvIOK_on(sv);
2127 } else {
6f207bd3 2128 NOOP; /* Integer is imprecise. NOK, IOKp */
af359546
NC
2129 }
2130 /* UV will not work better than IV */
2131 } else {
2132 if (SvNVX(sv) > (NV)UV_MAX) {
2133 SvIsUV_on(sv);
2134 /* Integer is inaccurate. NOK, IOKp, is UV */
2135 SvUV_set(sv, UV_MAX);
af359546
NC
2136 } else {
2137 SvUV_set(sv, U_V(SvNVX(sv)));
2138 /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2139 NV preservse UV so can do correct comparison. */
2140 if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2141 SvIOK_on(sv);
af359546 2142 } else {
6f207bd3 2143 NOOP; /* Integer is imprecise. NOK, IOKp, is UV */
af359546
NC
2144 }
2145 }
4b0c9573 2146 SvIsUV_on(sv);
af359546 2147 }
28e5dec8 2148#else /* NV_PRESERVES_UV */
c2988b20
NC
2149 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2150 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
af359546 2151 /* The IV/UV slot will have been set from value returned by
c2988b20
NC
2152 grok_number above. The NV slot has just been set using
2153 Atof. */
560b0c46 2154 SvNOK_on(sv);
c2988b20
NC
2155 assert (SvIOKp(sv));
2156 } else {
2157 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2158 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2159 /* Small enough to preserve all bits. */
2160 (void)SvIOKp_on(sv);
2161 SvNOK_on(sv);
45977657 2162 SvIV_set(sv, I_V(SvNVX(sv)));
c2988b20
NC
2163 if ((NV)(SvIVX(sv)) == SvNVX(sv))
2164 SvIOK_on(sv);
2165 /* Assumption: first non-preserved integer is < IV_MAX,
2166 this NV is in the preserved range, therefore: */
2167 if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2168 < (UV)IV_MAX)) {
32fdb065 2169 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
2170 }
2171 } else {
2172 /* IN_UV NOT_INT
2173 0 0 already failed to read UV.
2174 0 1 already failed to read UV.
2175 1 0 you won't get here in this case. IV/UV
2176 slot set, public IOK, Atof() unneeded.
2177 1 1 already read UV.
2178 so there's no point in sv_2iuv_non_preserve() attempting
2179 to use atol, strtol, strtoul etc. */
47031da6 2180# ifdef DEBUGGING
40a17c4c 2181 sv_2iuv_non_preserve (sv, numtype);
47031da6
NC
2182# else
2183 sv_2iuv_non_preserve (sv);
2184# endif
c2988b20
NC
2185 }
2186 }
28e5dec8 2187#endif /* NV_PRESERVES_UV */
a43d94f2
NC
2188 /* It might be more code efficient to go through the entire logic above
2189 and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2190 gets complex and potentially buggy, so more programmer efficient
2191 to do it this way, by turning off the public flags: */
2192 if (!numtype)
2193 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
25da4f38 2194 }
af359546
NC
2195 }
2196 else {
675c862f 2197 if (isGV_with_GP(sv))
159b6efe 2198 return glob_2number(MUTABLE_GV(sv));
180488f8 2199
af359546
NC
2200 if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2201 if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2202 report_uninit(sv);
2203 }
25da4f38
IZ
2204 if (SvTYPE(sv) < SVt_IV)
2205 /* Typically the caller expects that sv_any is not NULL now. */
2206 sv_upgrade(sv, SVt_IV);
af359546
NC
2207 /* Return 0 from the caller. */
2208 return TRUE;
2209 }
2210 return FALSE;
2211}
2212
2213/*
2214=for apidoc sv_2iv_flags
2215
2216Return the integer value of an SV, doing any necessary string
2217conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2218Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2219
2220=cut
2221*/
2222
2223IV
5de3775c 2224Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
af359546 2225{
97aff369 2226 dVAR;
af359546 2227 if (!sv)
a0d0e21e 2228 return 0;
cecf5685
NC
2229 if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2230 /* FBMs use the same flag bit as SVf_IVisUV, so must let them
50caf62e
NC
2231 cache IVs just in case. In practice it seems that they never
2232 actually anywhere accessible by user Perl code, let alone get used
2233 in anything other than a string context. */
af359546
NC
2234 if (flags & SV_GMAGIC)
2235 mg_get(sv);
2236 if (SvIOKp(sv))
2237 return SvIVX(sv);
2238 if (SvNOKp(sv)) {
2239 return I_V(SvNVX(sv));
2240 }
71c558c3
NC
2241 if (SvPOKp(sv) && SvLEN(sv)) {
2242 UV value;
2243 const int numtype
2244 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2245
2246 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2247 == IS_NUMBER_IN_UV) {
2248 /* It's definitely an integer */
2249 if (numtype & IS_NUMBER_NEG) {
2250 if (value < (UV)IV_MIN)
2251 return -(IV)value;
2252 } else {
2253 if (value < (UV)IV_MAX)
2254 return (IV)value;
2255 }
2256 }
2257 if (!numtype) {
2258 if (ckWARN(WARN_NUMERIC))
2259 not_a_number(sv);
2260 }
2261 return I_V(Atof(SvPVX_const(sv)));
2262 }
1c7ff15e
NC
2263 if (SvROK(sv)) {
2264 goto return_rok;
af359546 2265 }
1c7ff15e
NC
2266 assert(SvTYPE(sv) >= SVt_PVMG);
2267 /* This falls through to the report_uninit inside S_sv_2iuv_common. */
4cb1ec55 2268 } else if (SvTHINKFIRST(sv)) {
af359546 2269 if (SvROK(sv)) {
1c7ff15e 2270 return_rok:
af359546 2271 if (SvAMAGIC(sv)) {
aee036bb
DM
2272 SV * tmpstr;
2273 if (flags & SV_SKIP_OVERLOAD)
2274 return 0;
2275 tmpstr=AMG_CALLun(sv,numer);
af359546
NC
2276 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2277 return SvIV(tmpstr);
2278 }
2279 }
2280 return PTR2IV(SvRV(sv));
2281 }
2282 if (SvIsCOW(sv)) {
2283 sv_force_normal_flags(sv, 0);
2284 }
2285 if (SvREADONLY(sv) && !SvOK(sv)) {
2286 if (ckWARN(WARN_UNINITIALIZED))
2287 report_uninit(sv);
2288 return 0;
2289 }
2290 }
2291 if (!SvIOKp(sv)) {
2292 if (S_sv_2iuv_common(aTHX_ sv))
2293 return 0;
79072805 2294 }
1d7c1841
GS
2295 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2296 PTR2UV(sv),SvIVX(sv)));
25da4f38 2297 return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
79072805
LW
2298}
2299
645c22ef 2300/*
891f9566 2301=for apidoc sv_2uv_flags
645c22ef
DM
2302
2303Return the unsigned integer value of an SV, doing any necessary string
891f9566
YST
2304conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2305Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
645c22ef
DM
2306
2307=cut
2308*/
2309
ff68c719 2310UV
5de3775c 2311Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
ff68c719 2312{
97aff369 2313 dVAR;
ff68c719 2314 if (!sv)
2315 return 0;
cecf5685
NC
2316 if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2317 /* FBMs use the same flag bit as SVf_IVisUV, so must let them
50caf62e 2318 cache IVs just in case. */
891f9566
YST
2319 if (flags & SV_GMAGIC)
2320 mg_get(sv);
ff68c719 2321 if (SvIOKp(sv))
2322 return SvUVX(sv);
2323 if (SvNOKp(sv))
2324 return U_V(SvNVX(sv));
71c558c3
NC
2325 if (SvPOKp(sv) && SvLEN(sv)) {
2326 UV value;
2327 const int numtype
2328 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2329
2330 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2331 == IS_NUMBER_IN_UV) {
2332 /* It's definitely an integer */
2333 if (!(numtype & IS_NUMBER_NEG))
2334 return value;
2335 }
2336 if (!numtype) {
2337 if (ckWARN(WARN_NUMERIC))
2338 not_a_number(sv);
2339 }
2340 return U_V(Atof(SvPVX_const(sv)));
2341 }
1c7ff15e
NC
2342 if (SvROK(sv)) {
2343 goto return_rok;
3fe9a6f1 2344 }
1c7ff15e
NC
2345 assert(SvTYPE(sv) >= SVt_PVMG);
2346 /* This falls through to the report_uninit inside S_sv_2iuv_common. */
4cb1ec55 2347 } else if (SvTHINKFIRST(sv)) {
ff68c719 2348 if (SvROK(sv)) {
1c7ff15e 2349 return_rok:
deb46114 2350 if (SvAMAGIC(sv)) {
aee036bb
DM
2351 SV *tmpstr;
2352 if (flags & SV_SKIP_OVERLOAD)
2353 return 0;
2354 tmpstr = AMG_CALLun(sv,numer);
deb46114
NC
2355 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2356 return SvUV(tmpstr);
2357 }
2358 }
2359 return PTR2UV(SvRV(sv));
ff68c719 2360 }
765f542d
NC
2361 if (SvIsCOW(sv)) {
2362 sv_force_normal_flags(sv, 0);
8a818333 2363 }
0336b60e 2364 if (SvREADONLY(sv) && !SvOK(sv)) {
0336b60e 2365 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 2366 report_uninit(sv);
ff68c719 2367 return 0;
2368 }
2369 }
af359546
NC
2370 if (!SvIOKp(sv)) {
2371 if (S_sv_2iuv_common(aTHX_ sv))
2372 return 0;
ff68c719 2373 }
25da4f38 2374
1d7c1841
GS
2375 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2376 PTR2UV(sv),SvUVX(sv)));
25da4f38 2377 return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
ff68c719 2378}
2379
645c22ef 2380/*
196007d1 2381=for apidoc sv_2nv_flags
645c22ef
DM
2382
2383Return the num value of an SV, doing any necessary string or integer
39d5de13
DM
2384conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2385Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
645c22ef
DM
2386
2387=cut
2388*/
2389
65202027 2390NV
39d5de13 2391Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
79072805 2392{
97aff369 2393 dVAR;
79072805
LW
2394 if (!sv)
2395 return 0.0;
cecf5685
NC
2396 if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2397 /* FBMs use the same flag bit as SVf_IVisUV, so must let them
50caf62e 2398 cache IVs just in case. */
39d5de13
DM
2399 if (flags & SV_GMAGIC)
2400 mg_get(sv);
463ee0b2
LW
2401 if (SvNOKp(sv))
2402 return SvNVX(sv);
0aa395f8 2403 if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
041457d9 2404 if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
504618e9 2405 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
a0d0e21e 2406 not_a_number(sv);
3f7c398e 2407 return Atof(SvPVX_const(sv));
a0d0e21e 2408 }
25da4f38 2409 if (SvIOKp(sv)) {
1c846c1f 2410 if (SvIsUV(sv))
65202027 2411 return (NV)SvUVX(sv);
25da4f38 2412 else
65202027 2413 return (NV)SvIVX(sv);
47a72cb8
NC
2414 }
2415 if (SvROK(sv)) {
2416 goto return_rok;
2417 }
2418 assert(SvTYPE(sv) >= SVt_PVMG);
2419 /* This falls through to the report_uninit near the end of the
2420 function. */
2421 } else if (SvTHINKFIRST(sv)) {
a0d0e21e 2422 if (SvROK(sv)) {
47a72cb8 2423 return_rok:
deb46114 2424 if (SvAMAGIC(sv)) {
aee036bb
DM
2425 SV *tmpstr;
2426 if (flags & SV_SKIP_OVERLOAD)
2427 return 0;
2428 tmpstr = AMG_CALLun(sv,numer);
deb46114
NC
2429 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2430 return SvNV(tmpstr);
2431 }
2432 }
2433 return PTR2NV(SvRV(sv));
a0d0e21e 2434 }
765f542d
NC
2435 if (SvIsCOW(sv)) {
2436 sv_force_normal_flags(sv, 0);
8a818333 2437 }
0336b60e 2438 if (SvREADONLY(sv) && !SvOK(sv)) {
599cee73 2439 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 2440 report_uninit(sv);
ed6116ce
LW
2441 return 0.0;
2442 }
79072805
LW
2443 }
2444 if (SvTYPE(sv) < SVt_NV) {
7e25a7e9
NC
2445 /* The logic to use SVt_PVNV if necessary is in sv_upgrade. */
2446 sv_upgrade(sv, SVt_NV);
906f284f 2447#ifdef USE_LONG_DOUBLE
097ee67d 2448 DEBUG_c({
f93f4e46 2449 STORE_NUMERIC_LOCAL_SET_STANDARD();
1d7c1841
GS
2450 PerlIO_printf(Perl_debug_log,
2451 "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2452 PTR2UV(sv), SvNVX(sv));
572bbb43
GS
2453 RESTORE_NUMERIC_LOCAL();
2454 });
65202027 2455#else
572bbb43 2456 DEBUG_c({
f93f4e46 2457 STORE_NUMERIC_LOCAL_SET_STANDARD();
1779d84d 2458 PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
1d7c1841 2459 PTR2UV(sv), SvNVX(sv));
097ee67d
JH
2460 RESTORE_NUMERIC_LOCAL();
2461 });
572bbb43 2462#endif
79072805
LW
2463 }
2464 else if (SvTYPE(sv) < SVt_PVNV)
2465 sv_upgrade(sv, SVt_PVNV);
59d8ce62
NC
2466 if (SvNOKp(sv)) {
2467 return SvNVX(sv);
61604483 2468 }
59d8ce62 2469 if (SvIOKp(sv)) {
9d6ce603 2470 SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
28e5dec8 2471#ifdef NV_PRESERVES_UV
a43d94f2
NC
2472 if (SvIOK(sv))
2473 SvNOK_on(sv);
2474 else
2475 SvNOKp_on(sv);
28e5dec8
JH
2476#else
2477 /* Only set the public NV OK flag if this NV preserves the IV */
2478 /* Check it's not 0xFFFFFFFFFFFFFFFF */
a43d94f2
NC
2479 if (SvIOK(sv) &&
2480 SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
28e5dec8
JH
2481 : (SvIVX(sv) == I_V(SvNVX(sv))))
2482 SvNOK_on(sv);
2483 else
2484 SvNOKp_on(sv);
2485#endif
93a17b20 2486 }
748a9306 2487 else if (SvPOKp(sv) && SvLEN(sv)) {
c2988b20 2488 UV value;
3f7c398e 2489 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
041457d9 2490 if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
a0d0e21e 2491 not_a_number(sv);
28e5dec8 2492#ifdef NV_PRESERVES_UV
c2988b20
NC
2493 if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2494 == IS_NUMBER_IN_UV) {
5e045b90 2495 /* It's definitely an integer */
9d6ce603 2496 SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
c2988b20 2497 } else
3f7c398e 2498 SvNV_set(sv, Atof(SvPVX_const(sv)));
a43d94f2
NC
2499 if (numtype)
2500 SvNOK_on(sv);
2501 else
2502 SvNOKp_on(sv);
28e5dec8 2503#else
3f7c398e 2504 SvNV_set(sv, Atof(SvPVX_const(sv)));
28e5dec8
JH
2505 /* Only set the public NV OK flag if this NV preserves the value in
2506 the PV at least as well as an IV/UV would.
2507 Not sure how to do this 100% reliably. */
2508 /* if that shift count is out of range then Configure's test is
2509 wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2510 UV_BITS */
2511 if (((UV)1 << NV_PRESERVES_UV_BITS) >
c2988b20 2512 U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
28e5dec8 2513 SvNOK_on(sv); /* Definitely small enough to preserve all bits */
c2988b20
NC
2514 } else if (!(numtype & IS_NUMBER_IN_UV)) {
2515 /* Can't use strtol etc to convert this string, so don't try.
2516 sv_2iv and sv_2uv will use the NV to convert, not the PV. */
2517 SvNOK_on(sv);
2518 } else {
2519 /* value has been set. It may not be precise. */
2520 if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2521 /* 2s complement assumption for (UV)IV_MIN */
2522 SvNOK_on(sv); /* Integer is too negative. */
2523 } else {
2524 SvNOKp_on(sv);
2525 SvIOKp_on(sv);
6fa402ec 2526
c2988b20 2527 if (numtype & IS_NUMBER_NEG) {
45977657 2528 SvIV_set(sv, -(IV)value);
c2988b20 2529 } else if (value <= (UV)IV_MAX) {
45977657 2530 SvIV_set(sv, (IV)value);
c2988b20 2531 } else {
607fa7f2 2532 SvUV_set(sv, value);
c2988b20
NC
2533 SvIsUV_on(sv);
2534 }
2535
2536 if (numtype & IS_NUMBER_NOT_INT) {
2537 /* I believe that even if the original PV had decimals,
2538 they are lost beyond the limit of the FP precision.
2539 However, neither is canonical, so both only get p
2540 flags. NWC, 2000/11/25 */
2541 /* Both already have p flags, so do nothing */
2542 } else {
66a1b24b 2543 const NV nv = SvNVX(sv);
c2988b20
NC
2544 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2545 if (SvIVX(sv) == I_V(nv)) {
2546 SvNOK_on(sv);
c2988b20 2547 } else {
c2988b20
NC
2548 /* It had no "." so it must be integer. */
2549 }
00b6aa41 2550 SvIOK_on(sv);
c2988b20
NC
2551 } else {
2552 /* between IV_MAX and NV(UV_MAX).
2553 Could be slightly > UV_MAX */
6fa402ec 2554
c2988b20
NC
2555 if (numtype & IS_NUMBER_NOT_INT) {
2556 /* UV and NV both imprecise. */
2557 } else {
66a1b24b 2558 const UV nv_as_uv = U_V(nv);
c2988b20
NC
2559
2560 if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2561 SvNOK_on(sv);
c2988b20 2562 }
00b6aa41 2563 SvIOK_on(sv);
c2988b20
NC
2564 }
2565 }
2566 }
2567 }
2568 }
a43d94f2
NC
2569 /* It might be more code efficient to go through the entire logic above
2570 and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2571 gets complex and potentially buggy, so more programmer efficient
2572 to do it this way, by turning off the public flags: */
2573 if (!numtype)
2574 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
28e5dec8 2575#endif /* NV_PRESERVES_UV */
93a17b20 2576 }
79072805 2577 else {
f7877b28 2578 if (isGV_with_GP(sv)) {
159b6efe 2579 glob_2number(MUTABLE_GV(sv));
180488f8
NC
2580 return 0.0;
2581 }
2582
041457d9 2583 if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
29489e7c 2584 report_uninit(sv);
7e25a7e9
NC
2585 assert (SvTYPE(sv) >= SVt_NV);
2586 /* Typically the caller expects that sv_any is not NULL now. */
2587 /* XXX Ilya implies that this is a bug in callers that assume this
2588 and ideally should be fixed. */
a0d0e21e 2589 return 0.0;
79072805 2590 }
572bbb43 2591#if defined(USE_LONG_DOUBLE)
097ee67d 2592 DEBUG_c({
f93f4e46 2593 STORE_NUMERIC_LOCAL_SET_STANDARD();
1d7c1841
GS
2594 PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2595 PTR2UV(sv), SvNVX(sv));
572bbb43
GS
2596 RESTORE_NUMERIC_LOCAL();
2597 });
65202027 2598#else
572bbb43 2599 DEBUG_c({
f93f4e46 2600 STORE_NUMERIC_LOCAL_SET_STANDARD();
1779d84d 2601 PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
1d7c1841 2602 PTR2UV(sv), SvNVX(sv));
097ee67d
JH
2603 RESTORE_NUMERIC_LOCAL();
2604 });
572bbb43 2605#endif
463ee0b2 2606 return SvNVX(sv);
79072805
LW
2607}
2608
800401ee
JH
2609/*
2610=for apidoc sv_2num
2611
2612Return an SV with the numeric value of the source SV, doing any necessary
a196a5fa
JH
2613reference or overload conversion. You must use the C<SvNUM(sv)> macro to
2614access this function.
800401ee
JH
2615
2616=cut
2617*/
2618
2619SV *
5de3775c 2620Perl_sv_2num(pTHX_ register SV *const sv)
800401ee 2621{
7918f24d
NC
2622 PERL_ARGS_ASSERT_SV_2NUM;
2623
b9ee0594
RGS
2624 if (!SvROK(sv))
2625 return sv;
800401ee
JH
2626 if (SvAMAGIC(sv)) {
2627 SV * const tmpsv = AMG_CALLun(sv,numer);
a02ec77a 2628 TAINT_IF(tmpsv && SvTAINTED(tmpsv));
800401ee
JH
2629 if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2630 return sv_2num(tmpsv);
2631 }
2632 return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2633}
2634
645c22ef
DM
2635/* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2636 * UV as a string towards the end of buf, and return pointers to start and
2637 * end of it.
2638 *
2639 * We assume that buf is at least TYPE_CHARS(UV) long.
2640 */
2641
864dbfa3 2642static char *
5de3775c 2643S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
25da4f38 2644{
25da4f38 2645 char *ptr = buf + TYPE_CHARS(UV);
823a54a3 2646 char * const ebuf = ptr;
25da4f38 2647 int sign;
25da4f38 2648
7918f24d
NC
2649 PERL_ARGS_ASSERT_UIV_2BUF;
2650
25da4f38
IZ
2651 if (is_uv)
2652 sign = 0;
2653 else if (iv >= 0) {
2654 uv = iv;
2655 sign = 0;
2656 } else {
2657 uv = -iv;
2658 sign = 1;
2659 }
2660 do {
eb160463 2661 *--ptr = '0' + (char)(uv % 10);
25da4f38
IZ
2662 } while (uv /= 10);
2663 if (sign)
2664 *--ptr = '-';
2665 *peob = ebuf;
2666 return ptr;
2667}
2668
645c22ef
DM
2669/*
2670=for apidoc sv_2pv_flags
2671
ff276b08 2672Returns a pointer to the string value of an SV, and sets *lp to its length.
645c22ef
DM
2673If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2674if necessary.
2675Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2676usually end up here too.
2677
2678=cut
2679*/
2680
8d6d96c1 2681char *
5de3775c 2682Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
8d6d96c1 2683{
97aff369 2684 dVAR;
79072805 2685 register char *s;
79072805 2686
463ee0b2 2687 if (!sv) {
cdb061a3
NC
2688 if (lp)
2689 *lp = 0;
73d840c0 2690 return (char *)"";
463ee0b2 2691 }
8990e307 2692 if (SvGMAGICAL(sv)) {
8d6d96c1
HS
2693 if (flags & SV_GMAGIC)
2694 mg_get(sv);
463ee0b2 2695 if (SvPOKp(sv)) {
cdb061a3
NC
2696 if (lp)
2697 *lp = SvCUR(sv);
10516c54
NC
2698 if (flags & SV_MUTABLE_RETURN)
2699 return SvPVX_mutable(sv);
4d84ee25
NC
2700 if (flags & SV_CONST_RETURN)
2701 return (char *)SvPVX_const(sv);
463ee0b2
LW
2702 return SvPVX(sv);
2703 }
75dfc8ec
NC
2704 if (SvIOKp(sv) || SvNOKp(sv)) {
2705 char tbuf[64]; /* Must fit sprintf/Gconvert of longest IV/NV */
75dfc8ec
NC
2706 STRLEN len;
2707
2708 if (SvIOKp(sv)) {
e80fed9d 2709 len = SvIsUV(sv)
d9fad198
JH
2710 ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2711 : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
75dfc8ec 2712 } else {
e8ada2d0
NC
2713 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2714 len = strlen(tbuf);
75dfc8ec 2715 }
b5b886f0
NC
2716 assert(!SvROK(sv));
2717 {
75dfc8ec
NC
2718 dVAR;
2719
2720#ifdef FIXNEGATIVEZERO
e8ada2d0
NC
2721 if (len == 2 && tbuf[0] == '-' && tbuf[1] == '0') {
2722 tbuf[0] = '0';
2723 tbuf[1] = 0;
75dfc8ec
NC
2724 len = 1;
2725 }
2726#endif
2727 SvUPGRADE(sv, SVt_PV);
2728 if (lp)
2729 *lp = len;
2730 s = SvGROW_mutable(sv, len + 1);
2731 SvCUR_set(sv, len);
2732 SvPOKp_on(sv);
10edeb5d 2733 return (char*)memcpy(s, tbuf, len + 1);
75dfc8ec 2734 }
463ee0b2 2735 }
1c7ff15e
NC
2736 if (SvROK(sv)) {
2737 goto return_rok;
2738 }
2739 assert(SvTYPE(sv) >= SVt_PVMG);
2740 /* This falls through to the report_uninit near the end of the
2741 function. */
2742 } else if (SvTHINKFIRST(sv)) {
ed6116ce 2743 if (SvROK(sv)) {
1c7ff15e 2744 return_rok:
deb46114 2745 if (SvAMAGIC(sv)) {
aee036bb
DM
2746 SV *tmpstr;
2747 if (flags & SV_SKIP_OVERLOAD)
2748 return NULL;
2749 tmpstr = AMG_CALLun(sv,string);
a02ec77a 2750 TAINT_IF(tmpstr && SvTAINTED(tmpstr));
deb46114
NC
2751 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2752 /* Unwrap this: */
2753 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2754 */
2755
2756 char *pv;
2757 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2758 if (flags & SV_CONST_RETURN) {
2759 pv = (char *) SvPVX_const(tmpstr);
2760 } else {
2761 pv = (flags & SV_MUTABLE_RETURN)
2762 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2763 }
2764 if (lp)
2765 *lp = SvCUR(tmpstr);
50adf7d2 2766 } else {
deb46114 2767 pv = sv_2pv_flags(tmpstr, lp, flags);
50adf7d2 2768 }
deb46114
NC
2769 if (SvUTF8(tmpstr))
2770 SvUTF8_on(sv);
2771 else
2772 SvUTF8_off(sv);
2773 return pv;
50adf7d2 2774 }
deb46114
NC
2775 }
2776 {
fafee734
NC
2777 STRLEN len;
2778 char *retval;
2779 char *buffer;
d2c6dc5e 2780 SV *const referent = SvRV(sv);
d8eae41e
NC
2781
2782 if (!referent) {
fafee734
NC
2783 len = 7;
2784 retval = buffer = savepvn("NULLREF", len);
5c35adbb 2785 } else if (SvTYPE(referent) == SVt_REGEXP) {
d2c6dc5e 2786 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
67d2d14d
AB
2787 I32 seen_evals = 0;
2788
2789 assert(re);
2790
2791 /* If the regex is UTF-8 we want the containing scalar to
2792 have an UTF-8 flag too */
2793 if (RX_UTF8(re))
2794 SvUTF8_on(sv);
2795 else
2796 SvUTF8_off(sv);
2797
2798 if ((seen_evals = RX_SEEN_EVALS(re)))
2799 PL_reginterp_cnt += seen_evals;
2800
2801 if (lp)
2802 *lp = RX_WRAPLEN(re);
2803
2804 return RX_WRAPPED(re);
d8eae41e
NC
2805 } else {
2806 const char *const typestr = sv_reftype(referent, 0);
fafee734
NC
2807 const STRLEN typelen = strlen(typestr);
2808 UV addr = PTR2UV(referent);
2809 const char *stashname = NULL;
2810 STRLEN stashnamelen = 0; /* hush, gcc */
2811 const char *buffer_end;
d8eae41e 2812
d8eae41e 2813 if (SvOBJECT(referent)) {
fafee734
NC
2814 const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2815
2816 if (name) {
2817 stashname = HEK_KEY(name);
2818 stashnamelen = HEK_LEN(name);
2819
2820 if (HEK_UTF8(name)) {
2821 SvUTF8_on(sv);
2822 } else {
2823 SvUTF8_off(sv);
2824 }
2825 } else {
2826 stashname = "__ANON__";
2827 stashnamelen = 8;
2828 }
2829 len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2830 + 2 * sizeof(UV) + 2 /* )\0 */;
2831 } else {
2832 len = typelen + 3 /* (0x */
2833 + 2 * sizeof(UV) + 2 /* )\0 */;
d8eae41e 2834 }
fafee734
NC
2835
2836 Newx(buffer, len, char);
2837 buffer_end = retval = buffer + len;
2838
2839 /* Working backwards */
2840 *--retval = '\0';
2841 *--retval = ')';
2842 do {
2843 *--retval = PL_hexdigit[addr & 15];
2844 } while (addr >>= 4);
2845 *--retval = 'x';
2846 *--retval = '0';
2847 *--retval = '(';
2848
2849 retval -= typelen;
2850 memcpy(retval, typestr, typelen);
2851
2852 if (stashname) {
2853 *--retval = '=';
2854 retval -= stashnamelen;
2855 memcpy(retval, stashname, stashnamelen);
2856 }
2857 /* retval may not neccesarily have reached the start of the
2858 buffer here. */
2859 assert (retval >= buffer);
2860
2861 len = buffer_end - retval - 1; /* -1 for that \0 */
c080367d 2862 }
042dae7a 2863 if (lp)
fafee734
NC
2864 *lp = len;
2865 SAVEFREEPV(buffer);
2866 return retval;
463ee0b2 2867 }
79072805 2868 }
0336b60e 2869 if (SvREADONLY(sv) && !SvOK(sv)) {
cdb061a3
NC
2870 if (lp)
2871 *lp = 0;
9f621bb0
NC
2872 if (flags & SV_UNDEF_RETURNS_NULL)
2873 return NULL;
2874 if (ckWARN(WARN_UNINITIALIZED))
2875 report_uninit(sv);
73d840c0 2876 return (char *)"";
79072805 2877 }
79072805 2878 }
28e5dec8
JH
2879 if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2880 /* I'm assuming that if both IV and NV are equally valid then
2881 converting the IV is going to be more efficient */
e1ec3a88 2882 const U32 isUIOK = SvIsUV(sv);
28e5dec8
JH
2883 char buf[TYPE_CHARS(UV)];
2884 char *ebuf, *ptr;
97a130b8 2885 STRLEN len;
28e5dec8
JH
2886
2887 if (SvTYPE(sv) < SVt_PVIV)
2888 sv_upgrade(sv, SVt_PVIV);
4ea1d550 2889 ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
97a130b8 2890 len = ebuf - ptr;
5902b6a9 2891 /* inlined from sv_setpvn */
97a130b8
NC
2892 s = SvGROW_mutable(sv, len + 1);
2893 Move(ptr, s, len, char);
2894 s += len;
28e5dec8 2895 *s = '\0';
28e5dec8
JH
2896 }
2897 else if (SvNOKp(sv)) {
4ee39169 2898 dSAVE_ERRNO;
79072805
LW
2899 if (SvTYPE(sv) < SVt_PVNV)
2900 sv_upgrade(sv, SVt_PVNV);
1c846c1f 2901 /* The +20 is pure guesswork. Configure test needed. --jhi */
5902b6a9 2902 s = SvGROW_mutable(sv, NV_DIG + 20);
c81271c3 2903 /* some Xenix systems wipe out errno here */
79072805 2904#ifdef apollo
463ee0b2 2905 if (SvNVX(sv) == 0.0)
d1307786 2906 my_strlcpy(s, "0", SvLEN(sv));
79072805
LW
2907 else
2908#endif /*apollo*/
bbce6d69 2909 {
2d4389e4 2910 Gconvert(SvNVX(sv), NV_DIG, 0, s);
bbce6d69 2911 }
4ee39169 2912 RESTORE_ERRNO;
a0d0e21e 2913#ifdef FIXNEGATIVEZERO
20773dcd
NC
2914 if (*s == '-' && s[1] == '0' && !s[2]) {
2915 s[0] = '0';
2916 s[1] = 0;
2917 }
a0d0e21e 2918#endif
79072805
LW
2919 while (*s) s++;
2920#ifdef hcx
2921 if (s[-1] == '.')
46fc3d4c 2922 *--s = '\0';
79072805
LW
2923#endif
2924 }
79072805 2925 else {
8d1c3e26
NC
2926 if (isGV_with_GP(sv)) {
2927 GV *const gv = MUTABLE_GV(sv);
2928 const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
2929 SV *const buffer = sv_newmortal();
2930
2931 /* FAKE globs can get coerced, so need to turn this off temporarily
2932 if it is on. */
2933 SvFAKE_off(gv);
2934 gv_efullname3(buffer, gv, "*");
2935 SvFLAGS(gv) |= wasfake;
2936
1809c940
DM
2937 if (SvPOK(buffer)) {
2938 if (lp) {
2939 *lp = SvCUR(buffer);
2940 }
2941 return SvPVX(buffer);
2942 }
2943 else {
2944 if (lp)
2945 *lp = 0;
2946 return (char *)"";
8d1c3e26 2947 }
8d1c3e26 2948 }
180488f8 2949
cdb061a3 2950 if (lp)
00b6aa41 2951 *lp = 0;
9f621bb0
NC
2952 if (flags & SV_UNDEF_RETURNS_NULL)
2953 return NULL;
2954 if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2955 report_uninit(sv);
25da4f38
IZ
2956 if (SvTYPE(sv) < SVt_PV)
2957 /* Typically the caller expects that sv_any is not NULL now. */
2958 sv_upgrade(sv, SVt_PV);
73d840c0 2959 return (char *)"";
79072805 2960 }
cdb061a3 2961 {
823a54a3 2962 const STRLEN len = s - SvPVX_const(sv);
cdb061a3
NC
2963 if (lp)
2964 *lp = len;
2965 SvCUR_set(sv, len);
2966 }
79072805 2967 SvPOK_on(sv);
1d7c1841 2968 DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3f7c398e 2969 PTR2UV(sv),SvPVX_const(sv)));
4d84ee25
NC
2970 if (flags & SV_CONST_RETURN)
2971 return (char *)SvPVX_const(sv);
10516c54
NC
2972 if (flags & SV_MUTABLE_RETURN)
2973 return SvPVX_mutable(sv);
463ee0b2
LW
2974 return SvPVX(sv);
2975}
2976
645c22ef 2977/*
6050d10e
JP
2978=for apidoc sv_copypv
2979
2980Copies a stringified representation of the source SV into the
2981destination SV. Automatically performs any necessary mg_get and
54f0641b 2982coercion of numeric values into strings. Guaranteed to preserve
2575c402 2983UTF8 flag even from overloaded objects. Similar in nature to
54f0641b
NIS
2984sv_2pv[_flags] but operates directly on an SV instead of just the
2985string. Mostly uses sv_2pv_flags to do its work, except when that
6050d10e
JP
2986would lose the UTF-8'ness of the PV.
2987
2988=cut
2989*/
2990
2991void
5de3775c 2992Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
6050d10e 2993{
446eaa42 2994 STRLEN len;
53c1dcc0 2995 const char * const s = SvPV_const(ssv,len);
7918f24d
NC
2996
2997 PERL_ARGS_ASSERT_SV_COPYPV;
2998
cb50f42d 2999 sv_setpvn(dsv,s,len);
446eaa42 3000 if (SvUTF8(ssv))
cb50f42d 3001 SvUTF8_on(dsv);
446eaa42 3002 else
cb50f42d 3003 SvUTF8_off(dsv);
6050d10e
JP
3004}
3005
3006/*
645c22ef
DM
3007=for apidoc sv_2pvbyte
3008
3009Return a pointer to the byte-encoded representation of the SV, and set *lp
1e54db1a 3010to its length. May cause the SV to be downgraded from UTF-8 as a
645c22ef
DM
3011side-effect.
3012
3013Usually accessed via the C<SvPVbyte> macro.
3014
3015=cut
3016*/
3017
7340a771 3018char *
5de3775c 3019Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
7340a771 3020{
7918f24d
NC
3021 PERL_ARGS_ASSERT_SV_2PVBYTE;
3022
0875d2fe 3023 sv_utf8_downgrade(sv,0);
97972285 3024 return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
7340a771
GS
3025}
3026
645c22ef 3027/*
035cbb0e
RGS
3028=for apidoc sv_2pvutf8
3029
3030Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3031to its length. May cause the SV to be upgraded to UTF-8 as a side-effect.
3032
3033Usually accessed via the C<SvPVutf8> macro.
3034
3035=cut
3036*/
645c22ef 3037
7340a771 3038char *
7bc54cea 3039Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
7340a771 3040{
7918f24d
NC
3041 PERL_ARGS_ASSERT_SV_2PVUTF8;
3042
035cbb0e
RGS
3043 sv_utf8_upgrade(sv);
3044 return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
7340a771 3045}
1c846c1f 3046
7ee2227d 3047
645c22ef
DM
3048/*
3049=for apidoc sv_2bool
3050
3051This function is only called on magical items, and is only used by
8cf8f3d1 3052sv_true() or its macro equivalent.
645c22ef
DM
3053
3054=cut
3055*/
3056
463ee0b2 3057bool
7bc54cea 3058Perl_sv_2bool(pTHX_ register SV *const sv)
463ee0b2 3059{
97aff369 3060 dVAR;
7918f24d
NC
3061
3062 PERL_ARGS_ASSERT_SV_2BOOL;
3063
5b295bef 3064 SvGETMAGIC(sv);
463ee0b2 3065
a0d0e21e
LW
3066 if (!SvOK(sv))
3067 return 0;
3068 if (SvROK(sv)) {
fabdb6c0
AL
3069 if (SvAMAGIC(sv)) {
3070 SV * const tmpsv = AMG_CALLun(sv,bool_);
3071 if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
f2338a2e 3072 return cBOOL(SvTRUE(tmpsv));
fabdb6c0
AL
3073 }
3074 return SvRV(sv) != 0;
a0d0e21e 3075 }
463ee0b2 3076 if (SvPOKp(sv)) {
53c1dcc0
AL
3077 register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3078 if (Xpvtmp &&
339049b0 3079 (*sv->sv_u.svu_pv > '0' ||
11343788 3080 Xpvtmp->xpv_cur > 1 ||
339049b0 3081 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
463ee0b2
LW
3082 return 1;
3083 else
3084 return 0;
3085 }
3086 else {
3087 if (SvIOKp(sv))
3088 return SvIVX(sv) != 0;
3089 else {
3090 if (SvNOKp(sv))
3091 return SvNVX(sv) != 0.0;
180488f8 3092 else {
f7877b28 3093 if (isGV_with_GP(sv))
180488f8
NC
3094 return TRUE;
3095 else
3096 return FALSE;
3097 }
463ee0b2
LW
3098 }
3099 }
79072805
LW
3100}
3101
c461cf8f
JH
3102/*
3103=for apidoc sv_utf8_upgrade
3104
78ea37eb 3105Converts the PV of an SV to its UTF-8-encoded form.
645c22ef 3106Forces the SV to string form if it is not already.
2bbc8d55 3107Will C<mg_get> on C<sv> if appropriate.
4411f3b6 3108Always sets the SvUTF8 flag to avoid future validity checks even
2bbc8d55
SP
3109if the whole string is the same in UTF-8 as not.
3110Returns the number of bytes in the converted string
c461cf8f 3111
13a6c0e0
JH
3112This is not as a general purpose byte encoding to Unicode interface:
3113use the Encode extension for that.
3114
fe749c9a
KW
3115=for apidoc sv_utf8_upgrade_nomg
3116
3117Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3118
8d6d96c1
HS
3119=for apidoc sv_utf8_upgrade_flags
3120
78ea37eb 3121Converts the PV of an SV to its UTF-8-encoded form.
645c22ef 3122Forces the SV to string form if it is not already.
8d6d96c1 3123Always sets the SvUTF8 flag to avoid future validity checks even
2bbc8d55
SP
3124if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3125will C<mg_get> on C<sv> if appropriate, else not.
3126Returns the number of bytes in the converted string
3127C<sv_utf8_upgrade> and
8d6d96c1
HS
3128C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3129
13a6c0e0
JH
3130This is not as a general purpose byte encoding to Unicode interface:
3131use the Encode extension for that.
3132
8d6d96c1 3133=cut
b3ab6785
KW
3134
3135The grow version is currently not externally documented. It adds a parameter,
3136extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3137have free after it upon return. This allows the caller to reserve extra space
3138that it intends to fill, to avoid extra grows.
3139
3140Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3141which can be used to tell this function to not first check to see if there are
3142any characters that are different in UTF-8 (variant characters) which would
3143force it to allocate a new string to sv, but to assume there are. Typically
3144this flag is used by a routine that has already parsed the string to find that
3145there are such characters, and passes this information on so that the work
3146doesn't have to be repeated.
3147
3148(One might think that the calling routine could pass in the position of the
3149first such variant, so it wouldn't have to be found again. But that is not the
3150case, because typically when the caller is likely to use this flag, it won't be
3151calling this routine unless it finds something that won't fit into a byte.
3152Otherwise it tries to not upgrade and just use bytes. But some things that
3153do fit into a byte are variants in utf8, and the caller may not have been
3154keeping track of these.)
3155
3156If the routine itself changes the string, it adds a trailing NUL. Such a NUL
3157isn't guaranteed due to having other routines do the work in some input cases,
3158or if the input is already flagged as being in utf8.
3159
3160The speed of this could perhaps be improved for many cases if someone wanted to
3161write a fast function that counts the number of variant characters in a string,
3162especially if it could return the position of the first one.
3163
8d6d96c1
HS
3164*/
3165
3166STRLEN
b3ab6785 3167Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
8d6d96c1 3168{
97aff369 3169 dVAR;
7918f24d 3170
b3ab6785 3171 PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
7918f24d 3172
808c356f
RGS
3173 if (sv == &PL_sv_undef)
3174 return 0;
e0e62c2a
NIS
3175 if (!SvPOK(sv)) {
3176 STRLEN len = 0;
d52b7888
NC
3177 if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3178 (void) sv_2pv_flags(sv,&len, flags);
b3ab6785
KW
3179 if (SvUTF8(sv)) {
3180 if (extra) SvGROW(sv, SvCUR(sv) + extra);
d52b7888 3181 return len;
b3ab6785 3182 }
d52b7888
NC
3183 } else {
3184 (void) SvPV_force(sv,len);
3185 }
e0e62c2a 3186 }
4411f3b6 3187
f5cee72b 3188 if (SvUTF8(sv)) {
b3ab6785 3189 if (extra) SvGROW(sv, SvCUR(sv) + extra);
5fec3b1d 3190 return SvCUR(sv);
f5cee72b 3191 }
5fec3b1d 3192
765f542d
NC
3193 if (SvIsCOW(sv)) {
3194 sv_force_normal_flags(sv, 0);
db42d148
NIS
3195 }
3196
b3ab6785 3197 if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
799ef3cb 3198 sv_recode_to_utf8(sv, PL_encoding);
b3ab6785
KW
3199 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3200 return SvCUR(sv);
3201 }
3202
4e93345f
KW
3203 if (SvCUR(sv) == 0) {
3204 if (extra) SvGROW(sv, extra);
3205 } else { /* Assume Latin-1/EBCDIC */
c4e7c712 3206 /* This function could be much more efficient if we
2bbc8d55 3207 * had a FLAG in SVs to signal if there are any variant
c4e7c712 3208 * chars in the PV. Given that there isn't such a flag
b3ab6785
KW
3209 * make the loop as fast as possible (although there are certainly ways
3210 * to speed this up, eg. through vectorization) */
3211 U8 * s = (U8 *) SvPVX_const(sv);
3212 U8 * e = (U8 *) SvEND(sv);
3213 U8 *t = s;
3214 STRLEN two_byte_count = 0;
c4e7c712 3215
b3ab6785
KW
3216 if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3217
3218 /* See if really will need to convert to utf8. We mustn't rely on our
3219 * incoming SV being well formed and having a trailing '\0', as certain
3220 * code in pp_formline can send us partially built SVs. */
3221
c4e7c712 3222 while (t < e) {
53c1dcc0 3223 const U8 ch = *t++;
b3ab6785
KW
3224 if (NATIVE_IS_INVARIANT(ch)) continue;
3225
3226 t--; /* t already incremented; re-point to first variant */
3227 two_byte_count = 1;
3228 goto must_be_utf8;
c4e7c712 3229 }
b3ab6785
KW
3230
3231 /* utf8 conversion not needed because all are invariants. Mark as
3232 * UTF-8 even if no variant - saves scanning loop */
c4e7c712 3233 SvUTF8_on(sv);
b3ab6785
KW
3234 return SvCUR(sv);
3235
3236must_be_utf8:
3237
3238 /* Here, the string should be converted to utf8, either because of an
3239 * input flag (two_byte_count = 0), or because a character that
3240 * requires 2 bytes was found (two_byte_count = 1). t points either to
3241 * the beginning of the string (if we didn't examine anything), or to
3242 * the first variant. In either case, everything from s to t - 1 will
3243 * occupy only 1 byte each on output.
3244 *
3245 * There are two main ways to convert. One is to create a new string
3246 * and go through the input starting from the beginning, appending each
3247 * converted value onto the new string as we go along. It's probably
3248 * best to allocate enough space in the string for the worst possible
3249 * case rather than possibly running out of space and having to
3250 * reallocate and then copy what we've done so far. Since everything
3251 * from s to t - 1 is invariant, the destination can be initialized
3252 * with these using a fast memory copy
3253 *
3254 * The other way is to figure out exactly how big the string should be
3255 * by parsing the entire input. Then you don't have to make it big
3256 * enough to handle the worst possible case, and more importantly, if
3257 * the string you already have is large enough, you don't have to
3258 * allocate a new string, you can copy the last character in the input
3259 * string to the final position(s) that will be occupied by the
3260 * converted string and go backwards, stopping at t, since everything
3261 * before that is invariant.
3262 *
3263 * There are advantages and disadvantages to each method.
3264 *
3265 * In the first method, we can allocate a new string, do the memory
3266 * copy from the s to t - 1, and then proceed through the rest of the
3267 * string byte-by-byte.
3268 *
3269 * In the second method, we proceed through the rest of the input
3270 * string just calculating how big the converted string will be. Then
3271 * there are two cases:
3272 * 1) if the string has enough extra space to handle the converted
3273 * value. We go backwards through the string, converting until we
3274 * get to the position we are at now, and then stop. If this
3275 * position is far enough along in the string, this method is
3276 * faster than the other method. If the memory copy were the same
3277 * speed as the byte-by-byte loop, that position would be about
3278 * half-way, as at the half-way mark, parsing to the end and back
3279 * is one complete string's parse, the same amount as starting
3280 * over and going all the way through. Actually, it would be
3281 * somewhat less than half-way, as it's faster to just count bytes
3282 * than to also copy, and we don't have the overhead of allocating
3283 * a new string, changing the scalar to use it, and freeing the
3284 * existing one. But if the memory copy is fast, the break-even
3285 * point is somewhere after half way. The counting loop could be
3286 * sped up by vectorization, etc, to move the break-even point
3287 * further towards the beginning.
3288 * 2) if the string doesn't have enough space to handle the converted
3289 * value. A new string will have to be allocated, and one might
3290 * as well, given that, start from the beginning doing the first
3291 * method. We've spent extra time parsing the string and in
3292 * exchange all we've gotten is that we know precisely how big to
3293 * make the new one. Perl is more optimized for time than space,
3294 * so this case is a loser.
3295 * So what I've decided to do is not use the 2nd method unless it is
3296 * guaranteed that a new string won't have to be allocated, assuming
3297 * the worst case. I also decided not to put any more conditions on it
3298 * than this, for now. It seems likely that, since the worst case is
3299 * twice as big as the unknown portion of the string (plus 1), we won't
3300 * be guaranteed enough space, causing us to go to the first method,
3301 * unless the string is short, or the first variant character is near
3302 * the end of it. In either of these cases, it seems best to use the
3303 * 2nd method. The only circumstance I can think of where this would
3304 * be really slower is if the string had once had much more data in it
3305 * than it does now, but there is still a substantial amount in it */
3306
3307 {
3308 STRLEN invariant_head = t - s;
3309 STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3310 if (SvLEN(sv) < size) {
3311
3312 /* Here, have decided to allocate a new string */
3313
3314 U8 *dst;
3315 U8 *d;
3316
3317 Newx(dst, size, U8);
3318
3319 /* If no known invariants at the beginning of the input string,
3320 * set so starts from there. Otherwise, can use memory copy to
3321 * get up to where we are now, and then start from here */
3322
3323 if (invariant_head <= 0) {
3324 d = dst;
3325 } else {
3326 Copy(s, dst, invariant_head, char);
3327 d = dst + invariant_head;
3328 }
3329
3330 while (t < e) {
3331 const UV uv = NATIVE8_TO_UNI(*t++);
3332 if (UNI_IS_INVARIANT(uv))
3333 *d++ = (U8)UNI_TO_NATIVE(uv);
3334 else {
3335 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3336 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3337 }
3338 }
3339 *d = '\0';
3340 SvPV_free(sv); /* No longer using pre-existing string */
3341 SvPV_set(sv, (char*)dst);
3342 SvCUR_set(sv, d - dst);
3343 SvLEN_set(sv, size);
3344 } else {
3345
3346 /* Here, have decided to get the exact size of the string.
3347 * Currently this happens only when we know that there is
3348 * guaranteed enough space to fit the converted string, so
3349 * don't have to worry about growing. If two_byte_count is 0,
3350 * then t points to the first byte of the string which hasn't
3351 * been examined yet. Otherwise two_byte_count is 1, and t
3352 * points to the first byte in the string that will expand to
3353 * two. Depending on this, start examining at t or 1 after t.
3354 * */
3355
3356 U8 *d = t + two_byte_count;
3357
3358
3359 /* Count up the remaining bytes that expand to two */
3360
3361 while (d < e) {
3362 const U8 chr = *d++;
3363 if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3364 }
3365
3366 /* The string will expand by just the number of bytes that
3367 * occupy two positions. But we are one afterwards because of
3368 * the increment just above. This is the place to put the
3369 * trailing NUL, and to set the length before we decrement */
3370
3371 d += two_byte_count;
3372 SvCUR_set(sv, d - s);
3373 *d-- = '\0';
3374
3375
3376 /* Having decremented d, it points to the position to put the
3377 * very last byte of the expanded string. Go backwards through
3378 * the string, copying and expanding as we go, stopping when we
3379 * get to the part that is invariant the rest of the way down */
3380
3381 e--;
3382 while (e >= t) {
3383 const U8 ch = NATIVE8_TO_UNI(*e--);
3384 if (UNI_IS_INVARIANT(ch)) {
3385 *d-- = UNI_TO_NATIVE(ch);
3386 } else {
3387 *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3388 *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3389 }
3390 }
3391 }
3392 }
560a288e 3393 }
b3ab6785
KW
3394
3395 /* Mark as UTF-8 even if no variant - saves scanning loop */
3396 SvUTF8_on(sv);
4411f3b6 3397 return SvCUR(sv);
560a288e
GS
3398}
3399
c461cf8f
JH
3400/*
3401=for apidoc sv_utf8_downgrade
3402
78ea37eb 3403Attempts to convert the PV of an SV from characters to bytes.
2bbc8d55
SP
3404If the PV contains a character that cannot fit
3405in a byte, this conversion will fail;
78ea37eb 3406in this case, either returns false or, if C<fail_ok> is not
c461cf8f
JH
3407true, croaks.
3408
13a6c0e0
JH
3409This is not as a general purpose Unicode to byte encoding interface:
3410use the Encode extension for that.
3411
c461cf8f
JH
3412=cut
3413*/
3414
560a288e 3415bool
7bc54cea 3416Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
560a288e 3417{
97aff369 3418 dVAR;
7918f24d
NC
3419
3420 PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3421
78ea37eb 3422 if (SvPOKp(sv) && SvUTF8(sv)) {
fa301091 3423 if (SvCUR(sv)) {
03cfe0ae 3424 U8 *s;
652088fc 3425 STRLEN len;
fa301091 3426
765f542d
NC
3427 if (SvIsCOW(sv)) {
3428 sv_force_normal_flags(sv, 0);
3429 }
03cfe0ae
NIS
3430 s = (U8 *) SvPV(sv, len);
3431 if (!utf8_to_bytes(s, &len)) {
fa301091
JH
3432 if (fail_ok)
3433 return FALSE;
3434 else {
3435 if (PL_op)
3436 Perl_croak(aTHX_ "Wide character in %s",
53e06cf0 3437 OP_DESC(PL_op));
fa301091
JH
3438 else
3439 Perl_croak(aTHX_ "Wide character");
3440 }
4b3603a4 3441 }
b162af07 3442 SvCUR_set(sv, len);
67e989fb 3443 }
560a288e 3444 }
ffebcc3e 3445 SvUTF8_off(sv);
560a288e
GS
3446 return TRUE;
3447}
3448
c461cf8f
JH
3449/*
3450=for apidoc sv_utf8_encode
3451
78ea37eb
TS
3452Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3453flag off so that it looks like octets again.
c461cf8f
JH
3454
3455=cut
3456*/
3457
560a288e 3458void
7bc54cea 3459Perl_sv_utf8_encode(pTHX_ register SV *const sv)
560a288e 3460{
7918f24d
NC
3461 PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3462
4c94c214
NC
3463 if (SvIsCOW(sv)) {
3464 sv_force_normal_flags(sv, 0);
3465 }
3466 if (SvREADONLY(sv)) {
6ad8f254 3467 Perl_croak_no_modify(aTHX);
4c94c214 3468 }
a5f5288a 3469 (void) sv_utf8_upgrade(sv);
560a288e
GS
3470 SvUTF8_off(sv);
3471}
3472
4411f3b6
NIS
3473/*
3474=for apidoc sv_utf8_decode
3475
78ea37eb
TS
3476If the PV of the SV is an octet sequence in UTF-8
3477and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3478so that it looks like a character. If the PV contains only single-byte
3479characters, the C<SvUTF8> flag stays being off.
3480Scans PV for validity and returns false if the PV is invalid UTF-8.
4411f3b6
NIS
3481
3482=cut
3483*/
3484
560a288e 3485bool
7bc54cea 3486Perl_sv_utf8_decode(pTHX_ register SV *const sv)
560a288e 3487{
7918f24d
NC
3488 PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3489
78ea37eb 3490 if (SvPOKp(sv)) {
93524f2b
NC
3491 const U8 *c;
3492 const U8 *e;
9cbac4c7 3493
645c22ef
DM
3494 /* The octets may have got themselves encoded - get them back as
3495 * bytes
3496 */
3497 if (!sv_utf8_downgrade(sv, TRUE))
560a288e
GS
3498 return FALSE;
3499
3500 /* it is actually just a matter of turning the utf8 flag on, but
3501 * we want to make sure everything inside is valid utf8 first.
3502 */
93524f2b 3503 c = (const U8 *) SvPVX_const(sv);
63cd0674 3504 if (!is_utf8_string(c, SvCUR(sv)+1))
67e989fb 3505 return FALSE;
93524f2b 3506 e = (const U8 *) SvEND(sv);
511c2ff0 3507 while (c < e) {
b64e5050 3508 const U8 ch = *c++;
c4d5f83a 3509 if (!UTF8_IS_INVARIANT(ch)) {
67e989fb
JH
3510 SvUTF8_on(sv);
3511 break;
3512 }
560a288e 3513 }
560a288e
GS
3514 }
3515 return TRUE;
3516}
3517
954c1994
GS
3518/*
3519=for apidoc sv_setsv
3520
645c22ef
DM
3521Copies the contents of the source SV C<ssv> into the destination SV
3522C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
3523function if the source SV needs to be reused. Does not handle 'set' magic.
3524Loosely speaking, it performs a copy-by-value, obliterating any previous
3525content of the destination.
3526
3527You probably want to use one of the assortment of wrappers, such as
3528C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3529C<SvSetMagicSV_nosteal>.
3530
8d6d96c1
HS
3531=for apidoc sv_setsv_flags
3532
645c22ef
DM
3533Copies the contents of the source SV C<ssv> into the destination SV
3534C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
3535function if the source SV needs to be reused. Does not handle 'set' magic.
3536Loosely speaking, it performs a copy-by-value, obliterating any previous
3537content of the destination.
3538If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
5fcdf167
NC
3539C<ssv> if appropriate, else not. If the C<flags> parameter has the
3540C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3541and C<sv_setsv_nomg> are implemented in terms of this function.
645c22ef
DM
3542
3543You probably want to use one of the assortment of wrappers, such as
3544C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3545C<SvSetMagicSV_nosteal>.
3546
3547This is the primary function for copying scalars, and most other
3548copy-ish functions and macros use this underneath.
8d6d96c1
HS
3549
3550=cut
3551*/
3552
5d0301b7 3553static void
7bc54cea 3554S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
5d0301b7 3555{
70cd14a1 3556 I32 mro_changes = 0; /* 1 = method, 2 = isa */
dd69841b 3557
7918f24d
NC
3558 PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3559
5d0301b7
NC
3560 if (dtype != SVt_PVGV) {
3561 const char * const name = GvNAME(sstr);
3562 const STRLEN len = GvNAMELEN(sstr);
0d092c36 3563 {
f7877b28
NC
3564 if (dtype >= SVt_PV) {
3565 SvPV_free(dstr);
3566 SvPV_set(dstr, 0);
3567 SvLEN_set(dstr, 0);
3568 SvCUR_set(dstr, 0);
3569 }
0d092c36 3570 SvUPGRADE(dstr, SVt_PVGV);
dedf8e73 3571 (void)SvOK_off(dstr);
2e5b91de
NC
3572 /* FIXME - why are we doing this, then turning it off and on again
3573 below? */
3574 isGV_with_GP_on(dstr);
f7877b28 3575 }
5d0301b7
NC
3576 GvSTASH(dstr) = GvSTASH(sstr);
3577 if (GvSTASH(dstr))
daba3364 3578 Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
159b6efe 3579 gv_name_set(MUTABLE_GV(dstr), name, len, GV_ADD);
5d0301b7
NC
3580 SvFAKE_on(dstr); /* can coerce to non-glob */
3581 }
3582
159b6efe 3583 if(GvGP(MUTABLE_GV(sstr))) {
dd69841b
BB
3584 /* If source has method cache entry, clear it */
3585 if(GvCVGEN(sstr)) {
3586 SvREFCNT_dec(GvCV(sstr));
3587 GvCV(sstr) = NULL;
3588 GvCVGEN(sstr) = 0;
3589 }
3590 /* If source has a real method, then a method is
3591 going to change */
159b6efe 3592 else if(GvCV((const GV *)sstr)) {
70cd14a1 3593 mro_changes = 1;
dd69841b
BB
3594 }
3595 }
3596
3597 /* If dest already had a real method, that's a change as well */
159b6efe 3598 if(!mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)) {
70cd14a1 3599 mro_changes = 1;
dd69841b
BB
3600 }
3601
159b6efe 3602 if(strEQ(GvNAME((const GV *)dstr),"ISA"))
70cd14a1
CB
3603 mro_changes = 2;
3604
159b6efe 3605 gp_free(MUTABLE_GV(dstr));
2e5b91de 3606 isGV_with_GP_off(dstr);
5d0301b7 3607 (void)SvOK_off(dstr);
2e5b91de 3608 isGV_with_GP_on(dstr);
dedf8e73 3609 GvINTRO_off(dstr); /* one-shot flag */
5d0301b7
NC
3610 GvGP(dstr) = gp_ref(GvGP(sstr));
3611 if (SvTAINTED(sstr))
3612 SvTAINT(dstr);
3613 if (GvIMPORTED(dstr) != GVf_IMPORTED
3614 && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3615 {
3616 GvIMPORTED_on(dstr);
3617 }
3618 GvMULTI_on(dstr);
70cd14a1
CB
3619 if(mro_changes == 2) mro_isa_changed_in(GvSTASH(dstr));
3620 else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
5d0301b7
NC
3621 return;
3622}
3623
b8473700 3624static void
7bc54cea 3625S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
7918f24d 3626{
b8473700
NC
3627 SV * const sref = SvREFCNT_inc(SvRV(sstr));
3628 SV *dref = NULL;
3629 const int intro = GvINTRO(dstr);
2440974c 3630 SV **location;
3386d083 3631 U8 import_flag = 0;
27242d61
NC
3632 const U32 stype = SvTYPE(sref);
3633
7918f24d 3634 PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
b8473700 3635
b8473700
NC
3636 if (intro) {
3637 GvINTRO_off(dstr); /* one-shot flag */
3638 GvLINE(dstr) = CopLINE(PL_curcop);
159b6efe 3639 GvEGV(dstr) = MUTABLE_GV(dstr);
b8473700
NC
3640 }
3641 GvMULTI_on(dstr);
27242d61 3642 switch (stype) {
b8473700 3643 case SVt_PVCV:
27242d61
NC
3644 location = (SV **) &GvCV(dstr);
3645 import_flag = GVf_IMPORTED_CV;
3646 goto common;
3647 case SVt_PVHV:
3648 location = (SV **) &GvHV(dstr);
3649 import_flag = GVf_IMPORTED_HV;
3650 goto common;
3651 case SVt_PVAV:
3652 location = (SV **) &GvAV(dstr);
3653 import_flag = GVf_IMPORTED_AV;
3654 goto common;
3655 case SVt_PVIO:
3656 location = (SV **) &GvIOp(dstr);
3657 goto common;
3658 case SVt_PVFM:
3659 location = (SV **) &GvFORM(dstr);