This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
AVs and HVs don't have IVXs or NVXs, so assert this too.
[perl5.git] / sv.h
CommitLineData
a0d0e21e 1/* sv.h
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
acde74e1 4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
79072805
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
79072805
LW
9 */
10
a0d0e21e
LW
11#ifdef sv_flags
12#undef sv_flags /* Convex has this in <signal.h> for sigvec() */
13#endif
14
954c1994 15/*
ccfc67b7
JH
16=head1 SV Flags
17
954c1994 18=for apidoc AmU||svtype
8cf8f3d1 19An enum of flags for Perl types. These are found in the file B<sv.h>
954c1994
GS
20in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
21
22=for apidoc AmU||SVt_PV
23Pointer type flag for scalars. See C<svtype>.
24
25=for apidoc AmU||SVt_IV
26Integer type flag for scalars. See C<svtype>.
27
28=for apidoc AmU||SVt_NV
29Double type flag for scalars. See C<svtype>.
30
31=for apidoc AmU||SVt_PVMG
32Type flag for blessed scalars. See C<svtype>.
33
34=for apidoc AmU||SVt_PVAV
35Type flag for arrays. See C<svtype>.
36
37=for apidoc AmU||SVt_PVHV
38Type flag for hashes. See C<svtype>.
39
40=for apidoc AmU||SVt_PVCV
41Type flag for code refs. See C<svtype>.
42
43=cut
44*/
45
79072805 46typedef enum {
a0d0e21e
LW
47 SVt_NULL, /* 0 */
48 SVt_IV, /* 1 */
49 SVt_NV, /* 2 */
50 SVt_RV, /* 3 */
51 SVt_PV, /* 4 */
52 SVt_PVIV, /* 5 */
53 SVt_PVNV, /* 6 */
54 SVt_PVMG, /* 7 */
55 SVt_PVBM, /* 8 */
4ce457a6
TP
56 SVt_PVGV, /* 9 */
57 SVt_PVLV, /* 10 */
58 SVt_PVAV, /* 11 */
59 SVt_PVHV, /* 12 */
60 SVt_PVCV, /* 13 */
a0d0e21e 61 SVt_PVFM, /* 14 */
93e68bfb
JC
62 SVt_PVIO, /* 15 */
63 SVt_LAST /* keep last in enum. used to size arrays */
79072805
LW
64} svtype;
65
d2a0f284
JC
66/* There is collusion here with sv_clear - sv_clear exits early for SVt_NULL
67 and SVt_IV, so never reaches the clause at the end that uses
68 sv_type_details->body_size to determine whether to call safefree(). Hence
69 body_size can be set no-zero to record the size of PTEs and HEs, without
70 fear of bogus frees. */
028b03ee 71#ifdef PERL_IN_SV_C
d2a0f284 72#define PTE_SVSLOT SVt_IV
028b03ee 73#endif
6a93a7e5
NC
74#if defined(PERL_IN_HV_C) || defined(PERL_IN_XS_APITEST)
75#define HE_SVSLOT SVt_NULL
76#endif
43e6e717
NC
77
78/* typedefs to eliminate some typing */
79typedef struct he HE;
80typedef struct hek HEK;
81
79072805
LW
82/* Using C's structural equivalence to help emulate C++ inheritance here... */
83
30153bd2
JC
84/* start with 2 sv-head building blocks */
85#define _SV_HEAD(ptrtype) \
86 ptrtype sv_any; /* pointer to body */ \
87 U32 sv_refcnt; /* how many references to us */ \
88 U32 sv_flags /* what we are */
89
90#define _SV_HEAD_UNION \
91 union { \
92 IV svu_iv; \
93 UV svu_uv; \
94 SV* svu_rv; /* pointer to another SV */ \
95 char* svu_pv; /* pointer to malloced string */ \
96 SV** svu_array; \
97 HE** svu_hash; \
98 } sv_u
99
100
5e045b90 101struct STRUCT_SV { /* struct sv { */
30153bd2
JC
102 _SV_HEAD(void*);
103 _SV_HEAD_UNION;
fd0854ff
DM
104#ifdef DEBUG_LEAKING_SCALARS
105 unsigned sv_debug_optype:9; /* the type of OP that allocated us */
106 unsigned sv_debug_inpad:1; /* was allocated in a pad for an OP */
107 unsigned sv_debug_cloned:1; /* was cloned for an ithread */
108 unsigned sv_debug_line:16; /* the line where we were allocated */
109 char * sv_debug_file; /* the file where we were allocated */
110#endif
79072805
LW
111};
112
113struct gv {
30153bd2
JC
114 _SV_HEAD(XPVGV*); /* pointer to xpvgv body */
115 _SV_HEAD_UNION;
79072805
LW
116};
117
118struct cv {
30153bd2
JC
119 _SV_HEAD(XPVCV*); /* pointer to xpvcv body */
120 _SV_HEAD_UNION;
79072805
LW
121};
122
123struct av {
0f7b1ae0 124 _SV_HEAD(XPVAV*); /* pointer to xpvav body */
30153bd2 125 _SV_HEAD_UNION;
79072805
LW
126};
127
128struct hv {
30153bd2
JC
129 _SV_HEAD(XPVHV*); /* pointer to xpvhv body */
130 _SV_HEAD_UNION;
8990e307
LW
131};
132
133struct io {
30153bd2
JC
134 _SV_HEAD(XPVIO*); /* pointer to xpvio body */
135 _SV_HEAD_UNION;
79072805
LW
136};
137
30153bd2 138#undef _SV_HEAD
0f7b1ae0 139#undef _SV_HEAD_UNION /* ensure no pollution */
30153bd2 140
954c1994 141/*
ccfc67b7
JH
142=head1 SV Manipulation Functions
143
954c1994
GS
144=for apidoc Am|U32|SvREFCNT|SV* sv
145Returns the value of the object's reference count.
146
147=for apidoc Am|SV*|SvREFCNT_inc|SV* sv
148Increments the reference count of the given SV.
149
150=for apidoc Am|void|SvREFCNT_dec|SV* sv
151Decrements the reference count of the given SV.
152
153=for apidoc Am|svtype|SvTYPE|SV* sv
154Returns the type of the SV. See C<svtype>.
155
156=for apidoc Am|void|SvUPGRADE|SV* sv|svtype type
157Used to upgrade an SV to a more complex form. Uses C<sv_upgrade> to
158perform the upgrade if necessary. See C<svtype>.
159
160=cut
161*/
162
463ee0b2 163#define SvANY(sv) (sv)->sv_any
79072805 164#define SvFLAGS(sv) (sv)->sv_flags
aeea060c 165#define SvREFCNT(sv) (sv)->sv_refcnt
a863c7d1 166
93189314 167#if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(PERL_GCC_PEDANTIC)
dce16143
MB
168# define SvREFCNT_inc(sv) \
169 ({ \
a3b680e6 170 SV * const _sv = (SV*)(sv); \
3de3296f
AE
171 if (_sv) \
172 (SvREFCNT(_sv))++; \
173 _sv; \
dce16143 174 })
8990e307 175#else
3db8f154 176# define SvREFCNT_inc(sv) \
38a574c7 177 ((PL_Sv=(SV*)(sv)) ? ((++(SvREFCNT(PL_Sv))),(PL_Sv)) : NULL)
8990e307
LW
178#endif
179
8c4d3c90
NC
180#if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(PERL_GCC_PEDANTIC)
181# define SvREFCNT_dec(sv) \
182 ({ \
a3b680e6 183 SV * const _sv = (SV*)(sv); \
3de3296f
AE
184 if (_sv) { \
185 if (SvREFCNT(_sv)) { \
186 if (--(SvREFCNT(_sv)) == 0) \
187 Perl_sv_free2(aTHX_ _sv); \
8c4d3c90 188 } else { \
3de3296f 189 sv_free(_sv); \
8c4d3c90
NC
190 } \
191 } \
192 })
193#else
91f3b821 194#define SvREFCNT_dec(sv) sv_free((SV*)(sv))
8c4d3c90 195#endif
a863c7d1 196
8990e307
LW
197#define SVTYPEMASK 0xff
198#define SvTYPE(sv) ((sv)->sv_flags & SVTYPEMASK)
79072805 199
0565a181
NC
200/* Sadly there are some parts of the core that have pointers to already-freed
201 SV heads, and rely on being able to tell that they are now free. So mark
202 them all by using a consistent macro. */
203#define SvIS_FREED(sv) ((sv)->sv_flags == SVTYPEMASK)
204
63f97190 205#define SvUPGRADE(sv, mt) (SvTYPE(sv) >= (mt) || (sv_upgrade(sv, mt), 1))
79072805 206
d9d18af6 207#define SVs_PADSTALE 0x00000100 /* lexical has gone out of scope */
8990e307
LW
208#define SVs_PADTMP 0x00000200 /* in use as tmp */
209#define SVs_PADMY 0x00000400 /* in use a "my" variable */
210#define SVs_TEMP 0x00000800 /* string is stealable? */
211#define SVs_OBJECT 0x00001000 /* is "blessed" */
212#define SVs_GMG 0x00002000 /* has magical get method */
213#define SVs_SMG 0x00004000 /* has magical set method */
214#define SVs_RMG 0x00008000 /* has random magical methods */
215
216#define SVf_IOK 0x00010000 /* has valid public integer value */
217#define SVf_NOK 0x00020000 /* has valid public numeric value */
218#define SVf_POK 0x00040000 /* has valid public pointer value */
219#define SVf_ROK 0x00080000 /* has a valid reference pointer */
a0d0e21e 220
748a9306 221#define SVf_FAKE 0x00100000 /* glob or lexical is just a copy */
b79f7545
NC
222#define SVf_OOK 0x00200000 /* has valid offset value
223 For a PVHV this means that a
224 hv_aux struct is present after the
225 main array */
645c22ef
DM
226#define SVf_BREAK 0x00400000 /* refcnt is artificially low - used
227 * by SV's in final arena cleanup */
8990e307
LW
228#define SVf_READONLY 0x00800000 /* may not be modified */
229
a0d0e21e 230
8990e307
LW
231#define SVp_IOK 0x01000000 /* has valid non-public integer value */
232#define SVp_NOK 0x02000000 /* has valid non-public numeric value */
233#define SVp_POK 0x04000000 /* has valid non-public pointer value */
234#define SVp_SCREAM 0x08000000 /* has been studied? */
235
446eaa42 236#define SVf_UTF8 0x20000000 /* SvPV is UTF-8 encoded */
7a5fd60d 237/* Ensure this value does not clash with the GV_ADD* flags in gv.h */
5bc28da9 238
430eacda 239#define SVf_THINKFIRST (SVf_READONLY|SVf_ROK|SVf_FAKE)
5bc28da9 240
a0d0e21e
LW
241#define SVf_OK (SVf_IOK|SVf_NOK|SVf_POK|SVf_ROK| \
242 SVp_IOK|SVp_NOK|SVp_POK)
243
9e7bc3e8 244#define SVf_AMAGIC 0x10000000 /* has magical overloaded methods */
a0d0e21e 245
7b2a0f84 246#define PRIVSHIFT 8 /* (SVp_?OK >> PRIVSHIFT) == SVf_?OK */
8990e307
LW
247
248/* Some private flags. */
249
f472eb5c 250/* SVpad_OUR may be set on SVt_PV{NV,MG,GV} types */
032d6771 251#define SVpad_OUR 0x80000000 /* pad name is "our" instead of "my" */
524189f1 252#define SVpad_TYPED 0x40000000 /* Typed Lexical */
032d6771 253
25da4f38
IZ
254#define SVf_IVisUV 0x80000000 /* use XPVUV instead of XPVIV */
255
256#define SVpfm_COMPILED 0x80000000 /* FORMLINE is compiled */
8990e307
LW
257
258#define SVpbm_VALID 0x80000000
bbce6d69 259#define SVpbm_TAIL 0x40000000
8990e307 260
25da4f38
IZ
261#define SVrepl_EVAL 0x40000000 /* Replacement part of s///e */
262
9660f481 263#define SVphv_CLONEABLE 0x08000000 /* for stashes: clone its objects */
4b5190b5 264#define SVphv_REHASH 0x10000000 /* HV is recalculating hash values */
6bfc225d 265#define SVphv_SHAREKEYS 0x20000000 /* keys live on shared string table */
51594c39 266#define SVphv_LAZYDEL 0x40000000 /* entry in xhv_eiter must be deleted */
19692e8d 267#define SVphv_HASKFLAGS 0x80000000 /* keys have flag byte after hash */
bf6bd887 268
810b8aa5
GS
269#define SVprv_WEAKREF 0x80000000 /* Weak reference */
270
11ca45c0
NC
271#define SVpav_REAL 0x40000000 /* free old entries */
272#define SVpav_REIFY 0x80000000 /* can become real */
273
79072805 274struct xpv {
311a25d9 275 NV xnv_nv; /* numeric value, if any */
339049b0 276 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 277 STRLEN xpv_len; /* allocated size */
79072805
LW
278};
279
9f1501b2 280#if 0
59813432 281typedef struct xpv xpv_allocated;
9f1501b2
NC
282#else
283typedef struct {
339049b0 284 STRLEN xpv_cur; /* length of svu_pv as a C string */
9f1501b2
NC
285 STRLEN xpv_len; /* allocated size */
286} xpv_allocated;
287#endif
59813432 288
79072805 289struct xpviv {
311a25d9 290 NV xnv_nv; /* numeric value, if any */
339049b0 291 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 292 STRLEN xpv_len; /* allocated size */
311a25d9
NC
293 union {
294 IV xivu_iv; /* integer value or pv offset */
295 UV xivu_uv;
296 void * xivu_p1;
297 } xiv_u;
79072805
LW
298};
299
311a25d9
NC
300#if 0
301typedef struct xpviv xpviv_allocated;
302#else
303typedef struct {
304 STRLEN xpv_cur; /* length of svu_pv as a C string */
305 STRLEN xpv_len; /* allocated size */
306 union {
307 IV xivu_iv; /* integer value or pv offset */
308 UV xivu_uv;
309 void * xivu_p1;
310 } xiv_u;
311} xpviv_allocated;
312#endif
313
314#define xiv_iv xiv_u.xivu_iv
315
ff68c719 316struct xpvuv {
311a25d9 317 NV xnv_nv; /* numeric value, if any */
339049b0 318 STRLEN xpv_cur; /* length of svu_pv as a C string */
ff68c719 319 STRLEN xpv_len; /* allocated size */
311a25d9
NC
320 union {
321 IV xuvu_iv;
322 UV xuvu_uv; /* unsigned value or pv offset */
323 void * xuvu_p1;
324 } xuv_u;
ff68c719 325};
326
311a25d9
NC
327#define xuv_uv xuv_u.xuvu_uv
328
79072805 329struct xpvnv {
311a25d9 330 NV xnv_nv; /* numeric value, if any */
339049b0 331 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 332 STRLEN xpv_len; /* allocated size */
e4305a63 333 union {
311a25d9
NC
334 IV xivu_iv; /* integer value or pv offset */
335 UV xivu_uv;
336 void * xivu_p1;
337 } xiv_u;
79072805
LW
338};
339
6ee623d5 340/* These structure must match the beginning of struct xpvhv in hv.h. */
79072805 341struct xpvmg {
311a25d9 342 NV xnv_nv; /* numeric value, if any */
339049b0 343 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 344 STRLEN xpv_len; /* allocated size */
e4305a63 345 union {
311a25d9
NC
346 IV xivu_iv; /* integer value or pv offset */
347 UV xivu_uv;
348 void * xivu_p1;
349 } xiv_u;
79072805
LW
350 MAGIC* xmg_magic; /* linked list of magicalness */
351 HV* xmg_stash; /* class package */
352};
353
354struct xpvlv {
311a25d9 355 NV xnv_nv; /* numeric value, if any */
339049b0 356 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 357 STRLEN xpv_len; /* allocated size */
e4305a63 358 union {
311a25d9
NC
359 IV xivu_iv; /* integer value or pv offset */
360 UV xivu_uv;
361 void * xivu_p1;
362 } xiv_u;
79072805
LW
363 MAGIC* xmg_magic; /* linked list of magicalness */
364 HV* xmg_stash; /* class package */
8990e307 365
4ce457a6
TP
366 /* a full glob fits into this */
367 GP* xgv_gp;
368 char* xgv_name;
369 STRLEN xgv_namelen;
370 HV* xgv_stash;
371 U8 xgv_flags;
372
79072805
LW
373 STRLEN xlv_targoff;
374 STRLEN xlv_targlen;
375 SV* xlv_targ;
dd28f7bb
DM
376 char xlv_type; /* k=keys .=pos x=substr v=vec /=join/re
377 * y=alem/helem/iter t=tie T=tied HE */
79072805
LW
378};
379
380struct xpvgv {
311a25d9 381 NV xnv_nv; /* numeric value, if any */
339049b0 382 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 383 STRLEN xpv_len; /* allocated size */
e4305a63 384 union {
311a25d9
NC
385 IV xivu_iv; /* integer value or pv offset */
386 UV xivu_uv;
387 void * xivu_p1;
388 } xiv_u;
79072805
LW
389 MAGIC* xmg_magic; /* linked list of magicalness */
390 HV* xmg_stash; /* class package */
8990e307 391
79072805
LW
392 GP* xgv_gp;
393 char* xgv_name;
394 STRLEN xgv_namelen;
395 HV* xgv_stash;
a5f75d66 396 U8 xgv_flags;
79072805
LW
397};
398
399struct xpvbm {
311a25d9 400 NV xnv_nv; /* numeric value, if any */
339049b0 401 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 402 STRLEN xpv_len; /* allocated size */
e4305a63 403 union {
311a25d9
NC
404 IV xivu_iv; /* integer value or pv offset */
405 UV xivu_uv;
406 void * xivu_p1;
407 } xiv_u;
79072805
LW
408 MAGIC* xmg_magic; /* linked list of magicalness */
409 HV* xmg_stash; /* class package */
8990e307 410
79072805
LW
411 I32 xbm_useful; /* is this constant pattern being useful? */
412 U16 xbm_previous; /* how many characters in string before rare? */
413 U8 xbm_rare; /* rarest character in string */
414};
415
fd40b977 416/* This structure must match XPVCV in cv.h */
44a8e56a 417
77a005ab
MB
418typedef U16 cv_flags_t;
419
79072805 420struct xpvfm {
311a25d9 421 NV xnv_nv; /* numeric value, if any */
339049b0 422 STRLEN xpv_cur; /* length of svu_pv as a C string */
ed6116ce 423 STRLEN xpv_len; /* allocated size */
e4305a63 424 union {
311a25d9
NC
425 IV xivu_iv; /* integer value or pv offset */
426 UV xivu_uv;
427 void * xivu_p1;
428 } xiv_u;
79072805
LW
429 MAGIC* xmg_magic; /* linked list of magicalness */
430 HV* xmg_stash; /* class package */
8990e307 431
79072805
LW
432 HV * xcv_stash;
433 OP * xcv_start;
434 OP * xcv_root;
acfe0abc 435 void (*xcv_xsub)(pTHX_ CV*);
a0d0e21e
LW
436 ANY xcv_xsubany;
437 GV * xcv_gv;
57843af0 438 char * xcv_file;
b195d487 439 long xcv_depth; /* >= 2 indicates recursive call */
79072805 440 AV * xcv_padlist;
748a9306 441 CV * xcv_outside;
77a005ab 442 cv_flags_t xcv_flags;
a3985cdc
DM
443 U32 xcv_outside_seq; /* the COP sequence (at the point of our
444 * compilation) in the lexically enclosing
445 * sub */
11a7ac70 446 IV xfm_lines;
79072805
LW
447};
448
8990e307 449struct xpvio {
311a25d9 450 NV xnv_nv; /* numeric value, if any */
339049b0 451 STRLEN xpv_cur; /* length of svu_pv as a C string */
8990e307 452 STRLEN xpv_len; /* allocated size */
e4305a63 453 union {
311a25d9
NC
454 IV xivu_iv; /* integer value or pv offset */
455 UV xivu_uv;
456 void * xivu_p1;
457 } xiv_u;
8990e307
LW
458 MAGIC* xmg_magic; /* linked list of magicalness */
459 HV* xmg_stash; /* class package */
460
760ac839
LW
461 PerlIO * xio_ifp; /* ifp and ofp are normally the same */
462 PerlIO * xio_ofp; /* but sockets need separate streams */
4755096e
GS
463 /* Cray addresses everything by word boundaries (64 bits) and
464 * code and data pointers cannot be mixed (which is exactly what
465 * Perl_filter_add() tries to do with the dirp), hence the following
466 * union trick (as suggested by Gurusamy Sarathy).
467 * For further information see Geir Johansen's problem report titled
468 [ID 20000612.002] Perl problem on Cray system
469 * The any pointer (known as IoANY()) will also be a good place
470 * to hang any IO disciplines to.
471 */
472 union {
473 DIR * xiou_dirp; /* for opendir, readdir, etc */
474 void * xiou_any; /* for alignment */
475 } xio_dirpu;
11a7ac70
JH
476 IV xio_lines; /* $. */
477 IV xio_page; /* $% */
478 IV xio_page_len; /* $= */
479 IV xio_lines_left; /* $- */
8990e307
LW
480 char * xio_top_name; /* $^ */
481 GV * xio_top_gv; /* $^ */
482 char * xio_fmt_name; /* $~ */
483 GV * xio_fmt_gv; /* $~ */
484 char * xio_bottom_name;/* $^B */
485 GV * xio_bottom_gv; /* $^B */
486 short xio_subprocess; /* -| or |- */
487 char xio_type;
488 char xio_flags;
489};
4755096e
GS
490#define xio_dirp xio_dirpu.xiou_dirp
491#define xio_any xio_dirpu.xiou_any
8990e307 492
e0c19803
GS
493#define IOf_ARGV 1 /* this fp iterates over ARGV */
494#define IOf_START 2 /* check for null ARGV and substitute '-' */
495#define IOf_FLUSH 4 /* this fp wants a flush after write op */
496#define IOf_DIDTOP 8 /* just did top of form */
497#define IOf_UNTAINT 16 /* consider this fp (and its data) "safe" */
498#define IOf_NOLINE 32 /* slurped a pseudo-line from empty file */
499#define IOf_FAKE_DIRP 64 /* xio_dirp is fake (source filters kludge) */
8990e307 500
ed6116ce
LW
501/* The following macros define implementation-independent predicates on SVs. */
502
954c1994
GS
503/*
504=for apidoc Am|bool|SvNIOK|SV* sv
505Returns a boolean indicating whether the SV contains a number, integer or
506double.
507
508=for apidoc Am|bool|SvNIOKp|SV* sv
509Returns a boolean indicating whether the SV contains a number, integer or
510double. Checks the B<private> setting. Use C<SvNIOK>.
511
512=for apidoc Am|void|SvNIOK_off|SV* sv
513Unsets the NV/IV status of an SV.
514
515=for apidoc Am|bool|SvOK|SV* sv
9adebda4
SB
516Returns a boolean indicating whether the value is an SV. It also tells
517whether the value is defined or not.
954c1994
GS
518
519=for apidoc Am|bool|SvIOKp|SV* sv
520Returns a boolean indicating whether the SV contains an integer. Checks
521the B<private> setting. Use C<SvIOK>.
522
523=for apidoc Am|bool|SvNOKp|SV* sv
524Returns a boolean indicating whether the SV contains a double. Checks the
525B<private> setting. Use C<SvNOK>.
526
527=for apidoc Am|bool|SvPOKp|SV* sv
528Returns a boolean indicating whether the SV contains a character string.
529Checks the B<private> setting. Use C<SvPOK>.
530
531=for apidoc Am|bool|SvIOK|SV* sv
532Returns a boolean indicating whether the SV contains an integer.
533
534=for apidoc Am|void|SvIOK_on|SV* sv
535Tells an SV that it is an integer.
536
537=for apidoc Am|void|SvIOK_off|SV* sv
538Unsets the IV status of an SV.
539
540=for apidoc Am|void|SvIOK_only|SV* sv
541Tells an SV that it is an integer and disables all other OK bits.
542
e331fc52
JH
543=for apidoc Am|void|SvIOK_only_UV|SV* sv
544Tells and SV that it is an unsigned integer and disables all other OK bits.
545
12fa07df 546=for apidoc Am|bool|SvIOK_UV|SV* sv
e331fc52
JH
547Returns a boolean indicating whether the SV contains an unsigned integer.
548
28e5dec8
JH
549=for apidoc Am|void|SvUOK|SV* sv
550Returns a boolean indicating whether the SV contains an unsigned integer.
551
12fa07df 552=for apidoc Am|bool|SvIOK_notUV|SV* sv
d1be9408 553Returns a boolean indicating whether the SV contains a signed integer.
e331fc52 554
954c1994
GS
555=for apidoc Am|bool|SvNOK|SV* sv
556Returns a boolean indicating whether the SV contains a double.
557
558=for apidoc Am|void|SvNOK_on|SV* sv
559Tells an SV that it is a double.
560
561=for apidoc Am|void|SvNOK_off|SV* sv
562Unsets the NV status of an SV.
563
564=for apidoc Am|void|SvNOK_only|SV* sv
565Tells an SV that it is a double and disables all other OK bits.
566
567=for apidoc Am|bool|SvPOK|SV* sv
568Returns a boolean indicating whether the SV contains a character
569string.
570
571=for apidoc Am|void|SvPOK_on|SV* sv
572Tells an SV that it is a string.
573
574=for apidoc Am|void|SvPOK_off|SV* sv
575Unsets the PV status of an SV.
576
577=for apidoc Am|void|SvPOK_only|SV* sv
578Tells an SV that it is a string and disables all other OK bits.
1e54db1a 579Will also turn off the UTF-8 status.
954c1994 580
b0f01acb
JP
581=for apidoc Am|bool|SvVOK|SV* sv
582Returns a boolean indicating whether the SV contains a v-string.
583
954c1994
GS
584=for apidoc Am|bool|SvOOK|SV* sv
585Returns a boolean indicating whether the SvIVX is a valid offset value for
586the SvPVX. This hack is used internally to speed up removal of characters
587from the beginning of a SvPV. When SvOOK is true, then the start of the
588allocated string buffer is really (SvPVX - SvIVX).
589
590=for apidoc Am|bool|SvROK|SV* sv
591Tests if the SV is an RV.
592
593=for apidoc Am|void|SvROK_on|SV* sv
594Tells an SV that it is an RV.
595
596=for apidoc Am|void|SvROK_off|SV* sv
597Unsets the RV status of an SV.
598
599=for apidoc Am|SV*|SvRV|SV* sv
600Dereferences an RV to return the SV.
601
602=for apidoc Am|IV|SvIVX|SV* sv
645c22ef
DM
603Returns the raw value in the SV's IV slot, without checks or conversions.
604Only use when you are sure SvIOK is true. See also C<SvIV()>.
954c1994
GS
605
606=for apidoc Am|UV|SvUVX|SV* sv
645c22ef
DM
607Returns the raw value in the SV's UV slot, without checks or conversions.
608Only use when you are sure SvIOK is true. See also C<SvUV()>.
954c1994
GS
609
610=for apidoc Am|NV|SvNVX|SV* sv
645c22ef
DM
611Returns the raw value in the SV's NV slot, without checks or conversions.
612Only use when you are sure SvNOK is true. See also C<SvNV()>.
954c1994
GS
613
614=for apidoc Am|char*|SvPVX|SV* sv
645c22ef 615Returns a pointer to the physical string in the SV. The SV must contain a
954c1994
GS
616string.
617
618=for apidoc Am|STRLEN|SvCUR|SV* sv
619Returns the length of the string which is in the SV. See C<SvLEN>.
620
621=for apidoc Am|STRLEN|SvLEN|SV* sv
659239a4
MG
622Returns the size of the string buffer in the SV, not including any part
623attributable to C<SvOOK>. See C<SvCUR>.
954c1994
GS
624
625=for apidoc Am|char*|SvEND|SV* sv
626Returns a pointer to the last character in the string which is in the SV.
627See C<SvCUR>. Access the character as *(SvEND(sv)).
628
629=for apidoc Am|HV*|SvSTASH|SV* sv
630Returns the stash of the SV.
631
672994ce 632=for apidoc Am|void|SvIV_set|SV* sv|IV val
20799e15
SP
633Set the value of the IV pointer in sv to val. It is possible to perform
634the same function of this macro with an lvalue assignment to C<SvIVX>.
635With future Perls, however, it will be more efficient to use
636C<SvIV_set> instead of the lvalue assignment to C<SvIVX>.
672994ce
SP
637
638=for apidoc Am|void|SvNV_set|SV* sv|NV val
20799e15 639Set the value of the NV pointer in sv to val. See C<SvIV_set>.
672994ce
SP
640
641=for apidoc Am|void|SvPV_set|SV* sv|char* val
20799e15 642Set the value of the PV pointer in sv to val. See C<SvIV_set>.
672994ce
SP
643
644=for apidoc Am|void|SvUV_set|SV* sv|UV val
20799e15 645Set the value of the UV pointer in sv to val. See C<SvIV_set>.
672994ce
SP
646
647=for apidoc Am|void|SvRV_set|SV* sv|SV* val
20799e15 648Set the value of the RV pointer in sv to val. See C<SvIV_set>.
672994ce
SP
649
650=for apidoc Am|void|SvMAGIC_set|SV* sv|MAGIC* val
20799e15 651Set the value of the MAGIC pointer in sv to val. See C<SvIV_set>.
672994ce
SP
652
653=for apidoc Am|void|SvSTASH_set|SV* sv|STASH* val
20799e15 654Set the value of the STASH pointer in sv to val. See C<SvIV_set>.
672994ce 655
954c1994 656=for apidoc Am|void|SvCUR_set|SV* sv|STRLEN len
20799e15
SP
657Set the current length of the string which is in the SV. See C<SvCUR>
658and C<SvIV_set>.
672994ce
SP
659
660=for apidoc Am|void|SvLEN_set|SV* sv|STRLEN len
20799e15 661Set the actual length of the string which is in the SV. See C<SvIV_set>.
954c1994
GS
662
663=cut
664*/
665
79072805 666#define SvNIOK(sv) (SvFLAGS(sv) & (SVf_IOK|SVf_NOK))
748a9306 667#define SvNIOKp(sv) (SvFLAGS(sv) & (SVp_IOK|SVp_NOK))
a0d0e21e 668#define SvNIOK_off(sv) (SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK| \
25da4f38 669 SVp_IOK|SVp_NOK|SVf_IVisUV))
79072805 670
5dc8bdac 671#if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
29e97371 672#define assert_not_ROK(sv) ({assert(!SvROK(sv) || !SvRV(sv));}),
906ed6d6 673#else
54866b45 674#define assert_not_ROK(sv)
906ed6d6
NC
675#endif
676
463ee0b2 677#define SvOK(sv) (SvFLAGS(sv) & SVf_OK)
54866b45 678#define SvOK_off(sv) (assert_not_ROK(sv) \
906ed6d6 679 SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC| \
d41ff1b8 680 SVf_IVisUV|SVf_UTF8), \
25da4f38 681 SvOOK_off(sv))
54866b45 682#define SvOK_off_exc_UV(sv) (assert_not_ROK(sv) \
906ed6d6 683 SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC| \
d41ff1b8 684 SVf_UTF8), \
a0d0e21e 685 SvOOK_off(sv))
79072805 686
8990e307
LW
687#define SvOKp(sv) (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK))
688#define SvIOKp(sv) (SvFLAGS(sv) & SVp_IOK)
46187eeb 689#define SvIOKp_on(sv) (SvRELEASE_IVX(sv), \
765f542d 690 SvFLAGS(sv) |= SVp_IOK)
8990e307
LW
691#define SvNOKp(sv) (SvFLAGS(sv) & SVp_NOK)
692#define SvNOKp_on(sv) (SvFLAGS(sv) |= SVp_NOK)
693#define SvPOKp(sv) (SvFLAGS(sv) & SVp_POK)
54866b45 694#define SvPOKp_on(sv) (assert_not_ROK(sv) \
906ed6d6 695 SvFLAGS(sv) |= SVp_POK)
463ee0b2 696
79072805 697#define SvIOK(sv) (SvFLAGS(sv) & SVf_IOK)
46187eeb 698#define SvIOK_on(sv) (SvRELEASE_IVX(sv), \
765f542d 699 SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
25da4f38 700#define SvIOK_off(sv) (SvFLAGS(sv) &= ~(SVf_IOK|SVp_IOK|SVf_IVisUV))
0c34ef67 701#define SvIOK_only(sv) (SvOK_off(sv), \
a0d0e21e 702 SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
0c34ef67 703#define SvIOK_only_UV(sv) (SvOK_off_exc_UV(sv), \
25da4f38 704 SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
70401c6b 705
25da4f38
IZ
706#define SvIOK_UV(sv) ((SvFLAGS(sv) & (SVf_IOK|SVf_IVisUV)) \
707 == (SVf_IOK|SVf_IVisUV))
28e5dec8 708#define SvUOK(sv) SvIOK_UV(sv)
25da4f38
IZ
709#define SvIOK_notUV(sv) ((SvFLAGS(sv) & (SVf_IOK|SVf_IVisUV)) \
710 == SVf_IOK)
711
712#define SvIsUV(sv) (SvFLAGS(sv) & SVf_IVisUV)
713#define SvIsUV_on(sv) (SvFLAGS(sv) |= SVf_IVisUV)
714#define SvIsUV_off(sv) (SvFLAGS(sv) &= ~SVf_IVisUV)
79072805
LW
715
716#define SvNOK(sv) (SvFLAGS(sv) & SVf_NOK)
a0d0e21e 717#define SvNOK_on(sv) (SvFLAGS(sv) |= (SVf_NOK|SVp_NOK))
8990e307 718#define SvNOK_off(sv) (SvFLAGS(sv) &= ~(SVf_NOK|SVp_NOK))
0c34ef67 719#define SvNOK_only(sv) (SvOK_off(sv), \
a0d0e21e 720 SvFLAGS(sv) |= (SVf_NOK|SVp_NOK))
79072805 721
914184e1 722/*
12fa07df 723=for apidoc Am|bool|SvUTF8|SV* sv
914184e1
JH
724Returns a boolean indicating whether the SV contains UTF-8 encoded data.
725
726=for apidoc Am|void|SvUTF8_on|SV *sv
1e54db1a 727Turn on the UTF-8 status of an SV (the data is not changed, just the flag).
d5ce4a7c 728Do not use frivolously.
914184e1
JH
729
730=for apidoc Am|void|SvUTF8_off|SV *sv
1e54db1a 731Unsets the UTF-8 status of an SV.
914184e1
JH
732
733=for apidoc Am|void|SvPOK_only_UTF8|SV* sv
d5ce4a7c 734Tells an SV that it is a string and disables all other OK bits,
1e54db1a 735and leaves the UTF-8 status as it was.
f1a1024e 736
914184e1
JH
737=cut
738 */
739
7a5fd60d
NC
740/* Ensure the return value of this macro does not clash with the GV_ADD* flags
741in gv.h: */
a7cb1f99
GS
742#define SvUTF8(sv) (SvFLAGS(sv) & SVf_UTF8)
743#define SvUTF8_on(sv) (SvFLAGS(sv) |= (SVf_UTF8))
744#define SvUTF8_off(sv) (SvFLAGS(sv) &= ~(SVf_UTF8))
5bc28da9 745
79072805 746#define SvPOK(sv) (SvFLAGS(sv) & SVf_POK)
54866b45 747#define SvPOK_on(sv) (assert_not_ROK(sv) \
906ed6d6 748 SvFLAGS(sv) |= (SVf_POK|SVp_POK))
8990e307 749#define SvPOK_off(sv) (SvFLAGS(sv) &= ~(SVf_POK|SVp_POK))
54866b45 750#define SvPOK_only(sv) (assert_not_ROK(sv) \
906ed6d6 751 SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC| \
d41ff1b8
GS
752 SVf_IVisUV|SVf_UTF8), \
753 SvFLAGS(sv) |= (SVf_POK|SVp_POK))
54866b45 754#define SvPOK_only_UTF8(sv) (assert_not_ROK(sv) \
906ed6d6 755 SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC| \
d41ff1b8 756 SVf_IVisUV), \
a0d0e21e 757 SvFLAGS(sv) |= (SVf_POK|SVp_POK))
79072805 758
4f2da183
NC
759#define SvVOK(sv) (SvMAGICAL(sv) \
760 ? mg_find(sv,PERL_MAGIC_vstring) : NULL)
79072805 761#define SvOOK(sv) (SvFLAGS(sv) & SVf_OOK)
155aba94 762#define SvOOK_on(sv) ((void)SvIOK_off(sv), SvFLAGS(sv) |= SVf_OOK)
0c34ef67 763#define SvOOK_off(sv) ((void)(SvOOK(sv) && sv_backoff(sv)))
79072805 764
a0d0e21e
LW
765#define SvFAKE(sv) (SvFLAGS(sv) & SVf_FAKE)
766#define SvFAKE_on(sv) (SvFLAGS(sv) |= SVf_FAKE)
767#define SvFAKE_off(sv) (SvFLAGS(sv) &= ~SVf_FAKE)
768
ed6116ce 769#define SvROK(sv) (SvFLAGS(sv) & SVf_ROK)
a0d0e21e 770#define SvROK_on(sv) (SvFLAGS(sv) |= SVf_ROK)
a0d0e21e 771#define SvROK_off(sv) (SvFLAGS(sv) &= ~(SVf_ROK|SVf_AMAGIC))
79072805 772
8990e307
LW
773#define SvMAGICAL(sv) (SvFLAGS(sv) & (SVs_GMG|SVs_SMG|SVs_RMG))
774#define SvMAGICAL_on(sv) (SvFLAGS(sv) |= (SVs_GMG|SVs_SMG|SVs_RMG))
775#define SvMAGICAL_off(sv) (SvFLAGS(sv) &= ~(SVs_GMG|SVs_SMG|SVs_RMG))
79072805 776
8990e307
LW
777#define SvGMAGICAL(sv) (SvFLAGS(sv) & SVs_GMG)
778#define SvGMAGICAL_on(sv) (SvFLAGS(sv) |= SVs_GMG)
779#define SvGMAGICAL_off(sv) (SvFLAGS(sv) &= ~SVs_GMG)
ed6116ce 780
8990e307
LW
781#define SvSMAGICAL(sv) (SvFLAGS(sv) & SVs_SMG)
782#define SvSMAGICAL_on(sv) (SvFLAGS(sv) |= SVs_SMG)
783#define SvSMAGICAL_off(sv) (SvFLAGS(sv) &= ~SVs_SMG)
ed6116ce 784
8990e307
LW
785#define SvRMAGICAL(sv) (SvFLAGS(sv) & SVs_RMG)
786#define SvRMAGICAL_on(sv) (SvFLAGS(sv) |= SVs_RMG)
787#define SvRMAGICAL_off(sv) (SvFLAGS(sv) &= ~SVs_RMG)
ed6116ce 788
9e7bc3e8
JD
789#define SvAMAGIC(sv) (SvFLAGS(sv) & SVf_AMAGIC)
790#define SvAMAGIC_on(sv) (SvFLAGS(sv) |= SVf_AMAGIC)
791#define SvAMAGIC_off(sv) (SvFLAGS(sv) &= ~SVf_AMAGIC)
a0d0e21e 792
8cf8f3d1 793#define SvGAMAGIC(sv) (SvFLAGS(sv) & (SVs_GMG|SVf_AMAGIC))
1426bbf4 794
a0d0e21e
LW
795/*
796#define Gv_AMG(stash) \
797 (HV_AMAGICmb(stash) && \
798 ((!HV_AMAGICbad(stash) && HV_AMAGIC(stash)) || Gv_AMupdate(stash)))
799*/
3280af22 800#define Gv_AMG(stash) (PL_amagic_generation && Gv_AMupdate(stash))
a0d0e21e 801
810b8aa5
GS
802#define SvWEAKREF(sv) ((SvFLAGS(sv) & (SVf_ROK|SVprv_WEAKREF)) \
803 == (SVf_ROK|SVprv_WEAKREF))
804#define SvWEAKREF_on(sv) (SvFLAGS(sv) |= (SVf_ROK|SVprv_WEAKREF))
805#define SvWEAKREF_off(sv) (SvFLAGS(sv) &= ~(SVf_ROK|SVprv_WEAKREF))
806
a0d0e21e 807#define SvTHINKFIRST(sv) (SvFLAGS(sv) & SVf_THINKFIRST)
ed6116ce 808
d9d18af6
DM
809#define SvPADSTALE(sv) (SvFLAGS(sv) & SVs_PADSTALE)
810#define SvPADSTALE_on(sv) (SvFLAGS(sv) |= SVs_PADSTALE)
811#define SvPADSTALE_off(sv) (SvFLAGS(sv) &= ~SVs_PADSTALE)
812
8990e307 813#define SvPADTMP(sv) (SvFLAGS(sv) & SVs_PADTMP)
235cc2e3 814#define SvPADTMP_on(sv) (SvFLAGS(sv) |= SVs_PADTMP)
8990e307 815#define SvPADTMP_off(sv) (SvFLAGS(sv) &= ~SVs_PADTMP)
ed6116ce 816
8990e307 817#define SvPADMY(sv) (SvFLAGS(sv) & SVs_PADMY)
235cc2e3 818#define SvPADMY_on(sv) (SvFLAGS(sv) |= SVs_PADMY)
ed6116ce 819
8990e307
LW
820#define SvTEMP(sv) (SvFLAGS(sv) & SVs_TEMP)
821#define SvTEMP_on(sv) (SvFLAGS(sv) |= SVs_TEMP)
822#define SvTEMP_off(sv) (SvFLAGS(sv) &= ~SVs_TEMP)
79072805 823
8990e307
LW
824#define SvOBJECT(sv) (SvFLAGS(sv) & SVs_OBJECT)
825#define SvOBJECT_on(sv) (SvFLAGS(sv) |= SVs_OBJECT)
826#define SvOBJECT_off(sv) (SvFLAGS(sv) &= ~SVs_OBJECT)
79072805 827
8990e307
LW
828#define SvREADONLY(sv) (SvFLAGS(sv) & SVf_READONLY)
829#define SvREADONLY_on(sv) (SvFLAGS(sv) |= SVf_READONLY)
830#define SvREADONLY_off(sv) (SvFLAGS(sv) &= ~SVf_READONLY)
79072805 831
8990e307
LW
832#define SvSCREAM(sv) (SvFLAGS(sv) & SVp_SCREAM)
833#define SvSCREAM_on(sv) (SvFLAGS(sv) |= SVp_SCREAM)
834#define SvSCREAM_off(sv) (SvFLAGS(sv) &= ~SVp_SCREAM)
79072805 835
8990e307
LW
836#define SvCOMPILED(sv) (SvFLAGS(sv) & SVpfm_COMPILED)
837#define SvCOMPILED_on(sv) (SvFLAGS(sv) |= SVpfm_COMPILED)
838#define SvCOMPILED_off(sv) (SvFLAGS(sv) &= ~SVpfm_COMPILED)
79072805 839
25da4f38
IZ
840#define SvEVALED(sv) (SvFLAGS(sv) & SVrepl_EVAL)
841#define SvEVALED_on(sv) (SvFLAGS(sv) |= SVrepl_EVAL)
842#define SvEVALED_off(sv) (SvFLAGS(sv) &= ~SVrepl_EVAL)
843
8990e307
LW
844#define SvTAIL(sv) (SvFLAGS(sv) & SVpbm_TAIL)
845#define SvTAIL_on(sv) (SvFLAGS(sv) |= SVpbm_TAIL)
846#define SvTAIL_off(sv) (SvFLAGS(sv) &= ~SVpbm_TAIL)
847
8990e307
LW
848#define SvVALID(sv) (SvFLAGS(sv) & SVpbm_VALID)
849#define SvVALID_on(sv) (SvFLAGS(sv) |= SVpbm_VALID)
850#define SvVALID_off(sv) (SvFLAGS(sv) &= ~SVpbm_VALID)
851
1cc8b4c5
AB
852#ifdef USE_ITHREADS
853/* The following uses the FAKE flag to show that a regex pointer is infact
8ca6097c 854 its own offset in the regexpad for ithreads */
1cc8b4c5
AB
855#define SvREPADTMP(sv) (SvFLAGS(sv) & SVf_FAKE)
856#define SvREPADTMP_on(sv) (SvFLAGS(sv) |= SVf_FAKE)
857#define SvREPADTMP_off(sv) (SvFLAGS(sv) &= ~SVf_FAKE)
858#endif
859
b162af07 860#ifdef PERL_DEBUG_COW
339049b0 861#define SvRV(sv) (0 + (sv)->sv_u.svu_rv)
b162af07 862#else
339049b0 863#define SvRV(sv) ((sv)->sv_u.svu_rv)
b162af07 864#endif
ed6116ce
LW
865#define SvRVx(sv) SvRV(sv)
866
f599b64b 867#ifdef PERL_DEBUG_COW
8ed30cc1
DD
868/* Need -0.0 for SvNVX to preserve IEEE FP "negative zero" because
869 +0.0 + -0.0 => +0.0 but -0.0 + -0.0 => -0.0 */
771ba71a
NC
870# define SvIVX(sv) (0 + ((XPVIV*) SvANY(sv))->xiv_iv)
871# define SvUVX(sv) (0 + ((XPVUV*) SvANY(sv))->xuv_uv)
8ed30cc1 872# define SvNVX(sv) (-0.0 + ((XPVNV*) SvANY(sv))->xnv_nv)
c0e1089a 873/* Don't test the core XS code yet. */
771ba71a
NC
874# if defined (PERL_CORE) && PERL_DEBUG_COW > 1
875# define SvPVX(sv) (0 + (assert(!SvREADONLY(sv)), (sv)->sv_u.svu_pv))
876# else
877# define SvPVX(sv) SvPVX_mutable(sv)
878# endif
771ba71a
NC
879# define SvCUR(sv) (0 + ((XPV*) SvANY(sv))->xpv_cur)
880# define SvLEN(sv) (0 + ((XPV*) SvANY(sv))->xpv_len)
881# define SvEND(sv) ((sv)->sv_u.svu_pv + ((XPV*)SvANY(sv))->xpv_cur)
882
883# ifdef DEBUGGING
884# ifdef PERL_IN_SV_C
62703e72 885/* Can't make this RVALUE because of Perl_sv_unmagic. */
771ba71a
NC
886# define SvMAGIC(sv) (*(assert(SvTYPE(sv) >= SVt_PVMG), &((XPVMG*) SvANY(sv))->xmg_magic))
887# else
888# define SvMAGIC(sv) (0 + *(assert(SvTYPE(sv) >= SVt_PVMG), &((XPVMG*) SvANY(sv))->xmg_magic))
889# endif
890# define SvSTASH(sv) (0 + *(assert(SvTYPE(sv) >= SVt_PVMG), &((XPVMG*) SvANY(sv))->xmg_stash))
03687789 891# else
771ba71a
NC
892# ifdef PERL_IN_SV_C
893# define SvMAGIC(sv) ((XPVMG*) SvANY(sv))->xmg_magic
894# else
895# define SvMAGIC(sv) (0 + ((XPVMG*) SvANY(sv))->xmg_magic)
896# endif
897# define SvSTASH(sv) (0 + ((XPVMG*) SvANY(sv))->xmg_stash)
03687789 898# endif
f599b64b 899#else
771ba71a 900# define SvPVX(sv) ((sv)->sv_u.svu_pv)
771ba71a
NC
901# define SvCUR(sv) ((XPV*) SvANY(sv))->xpv_cur
902# define SvLEN(sv) ((XPV*) SvANY(sv))->xpv_len
903# define SvEND(sv) ((sv)->sv_u.svu_pv + ((XPV*)SvANY(sv))->xpv_cur)
904
05ef5f8f
NC
905# if defined (DEBUGGING) && defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
906/* These get expanded inside other macros that already use a variable _sv */
907# define SvIVX(sv) \
908 (*({ SV *const _svi = (SV *) sv; \
909 assert(SvTYPE(_svi) == SVt_IV || SvTYPE(_svi) >= SVt_PVIV); \
675eb423
NC
910 assert(SvTYPE(_svi) != SVt_PVAV); \
911 assert(SvTYPE(_svi) != SVt_PVHV); \
05ef5f8f
NC
912 &(((XPVIV*) SvANY(_svi))->xiv_iv); \
913 }))
914# define SvUVX(sv) \
915 (*({ SV *const _svi = (SV *) sv; \
916 assert(SvTYPE(_svi) == SVt_IV || SvTYPE(_svi) >= SVt_PVIV); \
675eb423
NC
917 assert(SvTYPE(_svi) != SVt_PVAV); \
918 assert(SvTYPE(_svi) != SVt_PVHV); \
05ef5f8f
NC
919 &(((XPVUV*) SvANY(_svi))->xuv_uv); \
920 }))
921# define SvNVX(sv) \
922 (*({ SV *const _svi = (SV *) sv; \
675eb423
NC
923 assert(SvTYPE(_svi) == SVt_NV || SvTYPE(_svi) >= SVt_PVNV); \
924 assert(SvTYPE(_svi) != SVt_PVAV); \
925 assert(SvTYPE(_svi) != SVt_PVHV); \
05ef5f8f
NC
926 &(((XPVNV*) SvANY(_svi))->xnv_nv); \
927 }))
928# define SvMAGIC(sv) \
929 (*({ SV *const _svi = (SV *) sv; \
930 assert(SvTYPE(_svi) >= SVt_PVMG); \
931 &(((XPVMG*) SvANY(_svi))->xmg_magic); \
932 }))
933# define SvSTASH(sv) \
934 (*({ SV *const _svi = (SV *) sv; \
935 assert(SvTYPE(_svi) >= SVt_PVMG); \
936 &(((XPVMG*) SvANY(_svi))->xmg_stash); \
937 }))
03687789 938# else
05ef5f8f
NC
939# define SvIVX(sv) ((XPVIV*) SvANY(sv))->xiv_iv
940# define SvUVX(sv) ((XPVUV*) SvANY(sv))->xuv_uv
941# define SvNVX(sv) ((XPVNV*) SvANY(sv))->xnv_nv
771ba71a
NC
942# define SvMAGIC(sv) ((XPVMG*) SvANY(sv))->xmg_magic
943# define SvSTASH(sv) ((XPVMG*) SvANY(sv))->xmg_stash
03687789 944# endif
62703e72
NC
945#endif
946
06c0cc96 947#ifndef PERL_POISON
bb496845
SP
948/* Given that these two are new, there can't be any existing code using them
949 * as LVALUEs */
06c0cc96
NC
950# define SvPVX_mutable(sv) (0 + (sv)->sv_u.svu_pv)
951# define SvPVX_const(sv) ((const char*)(0 + (sv)->sv_u.svu_pv))
952#else
953/* Except for the poison code, which uses & to scribble over the pointer after
954 free() is called. */
955# define SvPVX_mutable(sv) ((sv)->sv_u.svu_pv)
956# define SvPVX_const(sv) ((const char*)((sv)->sv_u.svu_pv))
957#endif
bb496845 958
62703e72
NC
959#define SvIVXx(sv) SvIVX(sv)
960#define SvUVXx(sv) SvUVX(sv)
961#define SvNVXx(sv) SvNVX(sv)
962#define SvPVXx(sv) SvPVX(sv)
963#define SvLENx(sv) SvLEN(sv)
964#define SvENDx(sv) ((PL_Sv = (sv)), SvEND(PL_Sv))
965
966
28e5dec8
JH
967/* Ask a scalar nicely to try to become an IV, if possible.
968 Not guaranteed to stay returning void */
969/* Macro won't actually call sv_2iv if already IOK */
970#define SvIV_please(sv) \
971 STMT_START {if (!SvIOKp(sv) && (SvNOK(sv) || SvPOK(sv))) \
972 (void) SvIV(sv); } STMT_END
79072805 973#define SvIV_set(sv, val) \
80b92232 974 STMT_START { assert(SvTYPE(sv) == SVt_IV || SvTYPE(sv) >= SVt_PVIV); \
b19bbeda 975 (((XPVIV*) SvANY(sv))->xiv_iv = (val)); } STMT_END
79072805 976#define SvNV_set(sv, val) \
80b92232 977 STMT_START { assert(SvTYPE(sv) == SVt_NV || SvTYPE(sv) >= SVt_PVNV); \
7ffec4a4 978 assert(SvTYPE(sv) != SVt_PVAV); assert(SvTYPE(sv) != SVt_PVHV); \
f599b64b 979 (((XPVNV*)SvANY(sv))->xnv_nv = (val)); } STMT_END
79072805 980#define SvPV_set(sv, val) \
80b92232 981 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
339049b0 982 ((sv)->sv_u.svu_pv = (val)); } STMT_END
607fa7f2
SP
983#define SvUV_set(sv, val) \
984 STMT_START { assert(SvTYPE(sv) == SVt_IV || SvTYPE(sv) >= SVt_PVIV); \
985 (((XPVUV*)SvANY(sv))->xuv_uv = (val)); } STMT_END
b162af07
SP
986#define SvRV_set(sv, val) \
987 STMT_START { assert(SvTYPE(sv) >= SVt_RV); \
339049b0 988 ((sv)->sv_u.svu_rv = (val)); } STMT_END
b162af07
SP
989#define SvMAGIC_set(sv, val) \
990 STMT_START { assert(SvTYPE(sv) >= SVt_PVMG); \
991 (((XPVMG*)SvANY(sv))->xmg_magic = (val)); } STMT_END
992#define SvSTASH_set(sv, val) \
993 STMT_START { assert(SvTYPE(sv) >= SVt_PVMG); \
994 (((XPVMG*) SvANY(sv))->xmg_stash = (val)); } STMT_END
79072805 995#define SvCUR_set(sv, val) \
80b92232 996 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
b162af07 997 (((XPV*) SvANY(sv))->xpv_cur = (val)); } STMT_END
79072805 998#define SvLEN_set(sv, val) \
80b92232 999 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
b162af07 1000 (((XPV*) SvANY(sv))->xpv_len = (val)); } STMT_END
7ae8ee9e
NC
1001#define SvEND_set(sv, val) \
1002 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
1003 (SvCUR(sv) = (val) - SvPVX(sv)); } STMT_END
79072805 1004
b7e9a5c2 1005#define SvPV_renew(sv,n) \
1da4ca5f
NC
1006 STMT_START { SvLEN_set(sv, n); \
1007 SvPV_set((sv), (MEM_WRAP_CHECK_(n,char) \
1008 (char*)saferealloc((Malloc_t)SvPVX(sv), \
1009 (MEM_SIZE)((n))))); \
1010 } STMT_END
1011
1012#define SvPV_shrink_to_cur(sv) STMT_START { \
1013 const STRLEN _lEnGtH = SvCUR(sv) + 1; \
1014 SvPV_renew(sv, _lEnGtH); \
1015 } STMT_END
b7e9a5c2 1016
771ba71a
NC
1017#define SvPV_free(sv) \
1018 STMT_START { \
1019 assert(SvTYPE(sv) >= SVt_PV); \
1020 if (SvLEN(sv)) { \
1021 if(SvOOK(sv)) { \
1022 SvPV_set(sv, SvPVX_mutable(sv) - SvIVX(sv)); \
1023 SvFLAGS(sv) &= ~SVf_OOK; \
1024 } \
1025 Safefree(SvPVX(sv)); \
1026 } \
1027 } STMT_END
8bd4d4c5 1028
79072805
LW
1029#define BmRARE(sv) ((XPVBM*) SvANY(sv))->xbm_rare
1030#define BmUSEFUL(sv) ((XPVBM*) SvANY(sv))->xbm_useful
1031#define BmPREVIOUS(sv) ((XPVBM*) SvANY(sv))->xbm_previous
1032
1033#define FmLINES(sv) ((XPVFM*) SvANY(sv))->xfm_lines
1034
1035#define LvTYPE(sv) ((XPVLV*) SvANY(sv))->xlv_type
1036#define LvTARG(sv) ((XPVLV*) SvANY(sv))->xlv_targ
1037#define LvTARGOFF(sv) ((XPVLV*) SvANY(sv))->xlv_targoff
1038#define LvTARGLEN(sv) ((XPVLV*) SvANY(sv))->xlv_targlen
1039
8990e307
LW
1040#define IoIFP(sv) ((XPVIO*) SvANY(sv))->xio_ifp
1041#define IoOFP(sv) ((XPVIO*) SvANY(sv))->xio_ofp
1042#define IoDIRP(sv) ((XPVIO*) SvANY(sv))->xio_dirp
4755096e 1043#define IoANY(sv) ((XPVIO*) SvANY(sv))->xio_any
8990e307
LW
1044#define IoLINES(sv) ((XPVIO*) SvANY(sv))->xio_lines
1045#define IoPAGE(sv) ((XPVIO*) SvANY(sv))->xio_page
1046#define IoPAGE_LEN(sv) ((XPVIO*) SvANY(sv))->xio_page_len
1047#define IoLINES_LEFT(sv)((XPVIO*) SvANY(sv))->xio_lines_left
1048#define IoTOP_NAME(sv) ((XPVIO*) SvANY(sv))->xio_top_name
1049#define IoTOP_GV(sv) ((XPVIO*) SvANY(sv))->xio_top_gv
1050#define IoFMT_NAME(sv) ((XPVIO*) SvANY(sv))->xio_fmt_name
1051#define IoFMT_GV(sv) ((XPVIO*) SvANY(sv))->xio_fmt_gv
1052#define IoBOTTOM_NAME(sv)((XPVIO*) SvANY(sv))->xio_bottom_name
1053#define IoBOTTOM_GV(sv) ((XPVIO*) SvANY(sv))->xio_bottom_gv
1054#define IoSUBPROCESS(sv)((XPVIO*) SvANY(sv))->xio_subprocess
1055#define IoTYPE(sv) ((XPVIO*) SvANY(sv))->xio_type
1056#define IoFLAGS(sv) ((XPVIO*) SvANY(sv))->xio_flags
1057
50952442 1058/* IoTYPE(sv) is a single character telling the type of I/O connection. */
3b6c1aba
JH
1059#define IoTYPE_RDONLY '<'
1060#define IoTYPE_WRONLY '>'
1061#define IoTYPE_RDWR '+'
1062#define IoTYPE_APPEND 'a'
1063#define IoTYPE_PIPE '|'
1064#define IoTYPE_STD '-' /* stdin or stdout */
1065#define IoTYPE_SOCKET 's'
1066#define IoTYPE_CLOSED ' '
1067#define IoTYPE_IMPLICIT 'I' /* stdin or stdout or stderr */
1068#define IoTYPE_NUMERIC '#' /* fdopen */
03fcf2fc
GS
1069
1070/*
954c1994
GS
1071=for apidoc Am|bool|SvTAINTED|SV* sv
1072Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
1073not.
1074
1075=for apidoc Am|void|SvTAINTED_on|SV* sv
c55831ac 1076Marks an SV as tainted if tainting is enabled.
954c1994
GS
1077
1078=for apidoc Am|void|SvTAINTED_off|SV* sv
1079Untaints an SV. Be I<very> careful with this routine, as it short-circuits
1080some of Perl's fundamental security features. XS module authors should not
1081use this function unless they fully understand all the implications of
1082unconditionally untainting the value. Untainting should be done in the
1083standard perl fashion, via a carefully crafted regexp, rather than directly
1084untainting variables.
1085
1086=for apidoc Am|void|SvTAINT|SV* sv
c55831ac 1087Taints an SV if tainting is enabled.
954c1994
GS
1088
1089=cut
1090*/
1091
a0714e2c 1092#define sv_taint(sv) sv_magic((sv), NULL, PERL_MAGIC_taint, NULL, 0)
aae9cea0 1093
bbce6d69 1094#define SvTAINTED(sv) (SvMAGICAL(sv) && sv_tainted(sv))
3280af22
NIS
1095#define SvTAINTED_on(sv) STMT_START{ if(PL_tainting){sv_taint(sv);} }STMT_END
1096#define SvTAINTED_off(sv) STMT_START{ if(PL_tainting){sv_untaint(sv);} }STMT_END
bbce6d69 1097
c6ee37c5
MB
1098#define SvTAINT(sv) \
1099 STMT_START { \
3280af22 1100 if (PL_tainting) { \
3280af22 1101 if (PL_tainted) \
c6ee37c5
MB
1102 SvTAINTED_on(sv); \
1103 } \
1104 } STMT_END
79072805 1105
954c1994
GS
1106/*
1107=for apidoc Am|char*|SvPV_force|SV* sv|STRLEN len
5f08bad4
ST
1108Like C<SvPV> but will force the SV into containing just a string
1109(C<SvPOK_only>). You want force if you are going to update the C<SvPVX>
1110directly.
954c1994 1111
645c22ef 1112=for apidoc Am|char*|SvPV_force_nomg|SV* sv|STRLEN len
5f08bad4
ST
1113Like C<SvPV> but will force the SV into containing just a string
1114(C<SvPOK_only>). You want force if you are going to update the C<SvPVX>
1115directly. Doesn't process magic.
645c22ef 1116
954c1994 1117=for apidoc Am|char*|SvPV|SV* sv|STRLEN len
5f08bad4
ST
1118Returns a pointer to the string in the SV, or a stringified form of
1119the SV if the SV does not contain a string. The SV may cache the
1120stringified version becoming C<SvPOK>. Handles 'get' magic. See also
645c22ef
DM
1121C<SvPVx> for a version which guarantees to evaluate sv only once.
1122
1123=for apidoc Am|char*|SvPVx|SV* sv|STRLEN len
1124A version of C<SvPV> which guarantees to evaluate sv only once.
954c1994 1125
891f9566
YST
1126=for apidoc Am|char*|SvPV_nomg|SV* sv|STRLEN len
1127Like C<SvPV> but doesn't process magic.
1128
954c1994 1129=for apidoc Am|char*|SvPV_nolen|SV* sv
5f08bad4
ST
1130Returns a pointer to the string in the SV, or a stringified form of
1131the SV if the SV does not contain a string. The SV may cache the
1132stringified form becoming C<SvPOK>. Handles 'get' magic.
954c1994
GS
1133
1134=for apidoc Am|IV|SvIV|SV* sv
645c22ef
DM
1135Coerces the given SV to an integer and returns it. See C<SvIVx> for a
1136version which guarantees to evaluate sv only once.
1137
891f9566
YST
1138=for apidoc Am|IV|SvIV_nomg|SV* sv
1139Like C<SvIV> but doesn't process magic.
1140
645c22ef
DM
1141=for apidoc Am|IV|SvIVx|SV* sv
1142Coerces the given SV to an integer and returns it. Guarantees to evaluate
d1be9408 1143sv only once. Use the more efficient C<SvIV> otherwise.
954c1994
GS
1144
1145=for apidoc Am|NV|SvNV|SV* sv
645c22ef
DM
1146Coerce the given SV to a double and return it. See C<SvNVx> for a version
1147which guarantees to evaluate sv only once.
1148
1149=for apidoc Am|NV|SvNVx|SV* sv
1150Coerces the given SV to a double and returns it. Guarantees to evaluate
d1be9408 1151sv only once. Use the more efficient C<SvNV> otherwise.
954c1994
GS
1152
1153=for apidoc Am|UV|SvUV|SV* sv
645c22ef
DM
1154Coerces the given SV to an unsigned integer and returns it. See C<SvUVx>
1155for a version which guarantees to evaluate sv only once.
1156
891f9566
YST
1157=for apidoc Am|UV|SvUV_nomg|SV* sv
1158Like C<SvUV> but doesn't process magic.
1159
645c22ef
DM
1160=for apidoc Am|UV|SvUVx|SV* sv
1161Coerces the given SV to an unsigned integer and returns it. Guarantees to
d1be9408 1162evaluate sv only once. Use the more efficient C<SvUV> otherwise.
954c1994
GS
1163
1164=for apidoc Am|bool|SvTRUE|SV* sv
1165Returns a boolean indicating whether Perl would evaluate the SV as true or
1166false, defined or undefined. Does not handle 'get' magic.
1167
645c22ef 1168=for apidoc Am|char*|SvPVutf8_force|SV* sv|STRLEN len
b70b15d2 1169Like C<SvPV_force>, but converts sv to utf8 first if necessary.
645c22ef
DM
1170
1171=for apidoc Am|char*|SvPVutf8|SV* sv|STRLEN len
b70b15d2 1172Like C<SvPV>, but converts sv to utf8 first if necessary.
645c22ef 1173
b70b15d2
TJ
1174=for apidoc Am|char*|SvPVutf8_nolen|SV* sv
1175Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
645c22ef
DM
1176
1177=for apidoc Am|char*|SvPVbyte_force|SV* sv|STRLEN len
1178Like C<SvPV_force>, but converts sv to byte representation first if necessary.
1179
1180=for apidoc Am|char*|SvPVbyte|SV* sv|STRLEN len
1181Like C<SvPV>, but converts sv to byte representation first if necessary.
1182
b70b15d2 1183=for apidoc Am|char*|SvPVbyte_nolen|SV* sv
645c22ef
DM
1184Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
1185
1186=for apidoc Am|char*|SvPVutf8x_force|SV* sv|STRLEN len
b70b15d2 1187Like C<SvPV_force>, but converts sv to utf8 first if necessary.
d1be9408 1188Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
645c22ef
DM
1189otherwise.
1190
1191=for apidoc Am|char*|SvPVutf8x|SV* sv|STRLEN len
b70b15d2 1192Like C<SvPV>, but converts sv to utf8 first if necessary.
d1be9408 1193Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
645c22ef
DM
1194otherwise.
1195
1196=for apidoc Am|char*|SvPVbytex_force|SV* sv|STRLEN len
1197Like C<SvPV_force>, but converts sv to byte representation first if necessary.
d1be9408 1198Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
645c22ef
DM
1199otherwise.
1200
1201=for apidoc Am|char*|SvPVbytex|SV* sv|STRLEN len
1202Like C<SvPV>, but converts sv to byte representation first if necessary.
d1be9408 1203Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
645c22ef
DM
1204otherwise.
1205
19dbb8f1
NC
1206=for apidoc Am|bool|SvIsCOW|SV* sv
1207Returns a boolean indicating whether the SV is Copy-On-Write. (either shared
1208hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for
1209COW)
1210
1211=for apidoc Am|bool|SvIsCOW_shared_hash|SV* sv
1212Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
1213scalar.
645c22ef 1214
0f76ff59
MHM
1215=for apidoc Am|void|sv_catpvn_nomg|SV* sv|const char* ptr|STRLEN len
1216Like C<sv_catpvn> but doesn't process magic.
1217
1218=for apidoc Am|void|sv_setsv_nomg|SV* dsv|SV* ssv
1219Like C<sv_setsv> but doesn't process magic.
1220
1221=for apidoc Am|void|sv_catsv_nomg|SV* dsv|SV* ssv
1222Like C<sv_catsv> but doesn't process magic.
1223
954c1994
GS
1224=cut
1225*/
1226
25da4f38 1227/* Let us hope that bitmaps for UV and IV are the same */
463ee0b2 1228#define SvIV(sv) (SvIOK(sv) ? SvIVX(sv) : sv_2iv(sv))
ff68c719 1229#define SvUV(sv) (SvIOK(sv) ? SvUVX(sv) : sv_2uv(sv))
463ee0b2 1230#define SvNV(sv) (SvNOK(sv) ? SvNVX(sv) : sv_2nv(sv))
79072805 1231
891f9566
YST
1232#define SvIV_nomg(sv) (SvIOK(sv) ? SvIVX(sv) : sv_2iv_flags(sv, 0))
1233#define SvUV_nomg(sv) (SvIOK(sv) ? SvUVX(sv) : sv_2uv_flags(sv, 0))
1234
baca2b92 1235/* ----*/
8d6d96c1 1236
8d6d96c1 1237#define SvPV(sv, lp) SvPV_flags(sv, lp, SV_GMAGIC)
32a5c6ec 1238#define SvPV_const(sv, lp) SvPV_flags_const(sv, lp, SV_GMAGIC)
44d22300 1239#define SvPV_mutable(sv, lp) SvPV_flags_mutable(sv, lp, SV_GMAGIC)
8d6d96c1 1240
8d6d96c1
HS
1241#define SvPV_flags(sv, lp, flags) \
1242 ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
1243 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_2pv_flags(sv, &lp, flags))
32a5c6ec
NC
1244#define SvPV_flags_const(sv, lp, flags) \
1245 ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
1246 ? ((lp = SvCUR(sv)), SvPVX_const(sv)) : \
1247 (const char*) sv_2pv_flags(sv, &lp, flags|SV_CONST_RETURN))
2596d9fe
NC
1248#define SvPV_flags_const_nolen(sv, flags) \
1249 ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
1250 ? SvPVX_const(sv) : \
1251 (const char*) sv_2pv_flags(sv, 0, flags|SV_CONST_RETURN))
44d22300
NC
1252#define SvPV_flags_mutable(sv, lp, flags) \
1253 ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
1254 ? ((lp = SvCUR(sv)), SvPVX_mutable(sv)) : \
1255 sv_2pv_flags(sv, &lp, flags|SV_MUTABLE_RETURN))
79072805 1256
8d6d96c1 1257#define SvPV_force(sv, lp) SvPV_force_flags(sv, lp, SV_GMAGIC)
13c5b33c 1258#define SvPV_force_nolen(sv) SvPV_force_flags_nolen(sv, SV_GMAGIC)
32a5c6ec 1259#define SvPV_force_mutable(sv, lp) SvPV_force_flags_mutable(sv, lp, SV_GMAGIC)
baca2b92 1260
8d6d96c1 1261#define SvPV_force_nomg(sv, lp) SvPV_force_flags(sv, lp, 0)
2596d9fe 1262#define SvPV_force_nomg_nolen(sv) SvPV_force_flags_nolen(sv, 0)
8d6d96c1 1263
8d6d96c1 1264#define SvPV_force_flags(sv, lp, flags) \
ff68c719 1265 ((SvFLAGS(sv) & (SVf_POK|SVf_THINKFIRST)) == SVf_POK \
8d6d96c1 1266 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_pvn_force_flags(sv, &lp, flags))
13c5b33c
NC
1267#define SvPV_force_flags_nolen(sv, flags) \
1268 ((SvFLAGS(sv) & (SVf_POK|SVf_THINKFIRST)) == SVf_POK \
1269 ? SvPVX(sv) : sv_pvn_force_flags(sv, 0, flags))
32a5c6ec
NC
1270#define SvPV_force_flags_mutable(sv, lp, flags) \
1271 ((SvFLAGS(sv) & (SVf_POK|SVf_THINKFIRST)) == SVf_POK \
1272 ? ((lp = SvCUR(sv)), SvPVX_mutable(sv)) \
1273 : sv_pvn_force_flags(sv, &lp, flags|SV_MUTABLE_RETURN))
a0d0e21e 1274
1fa8b10d 1275#define SvPV_nolen(sv) \
5bc28da9 1276 ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
dafda6d1 1277 ? SvPVX(sv) : sv_2pv_flags(sv, 0, SV_GMAGIC))
70401c6b 1278
9ce348e8
NC
1279#define SvPV_nolen_const(sv) \
1280 ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
1281 ? SvPVX_const(sv) : sv_2pv_flags(sv, 0, SV_GMAGIC|SV_CONST_RETURN))
1282
baca2b92 1283#define SvPV_nomg(sv, lp) SvPV_flags(sv, lp, 0)
9ce348e8 1284#define SvPV_nomg_const(sv, lp) SvPV_flags_const(sv, lp, 0)
2596d9fe 1285#define SvPV_nomg_const_nolen(sv) SvPV_flags_const_nolen(sv, 0)
5bc28da9 1286
baca2b92 1287/* ----*/
70401c6b 1288
5bc28da9
NIS
1289#define SvPVutf8(sv, lp) \
1290 ((SvFLAGS(sv) & (SVf_POK|SVf_UTF8)) == (SVf_POK|SVf_UTF8) \
1291 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_2pvutf8(sv, &lp))
70401c6b 1292
5bc28da9 1293#define SvPVutf8_force(sv, lp) \
70401c6b 1294 ((SvFLAGS(sv) & (SVf_POK|SVf_THINKFIRST)) == (SVf_POK|SVf_UTF8) \
5bc28da9
NIS
1295 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_pvutf8n_force(sv, &lp))
1296
baca2b92 1297
5bc28da9
NIS
1298#define SvPVutf8_nolen(sv) \
1299 ((SvFLAGS(sv) & (SVf_POK|SVf_UTF8)) == (SVf_POK|SVf_UTF8)\
dafda6d1 1300 ? SvPVX(sv) : sv_2pvutf8(sv, 0))
70401c6b 1301
baca2b92
DM
1302/* ----*/
1303
5bc28da9
NIS
1304#define SvPVbyte(sv, lp) \
1305 ((SvFLAGS(sv) & (SVf_POK|SVf_UTF8)) == (SVf_POK) \
1306 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_2pvbyte(sv, &lp))
70401c6b 1307
5bc28da9
NIS
1308#define SvPVbyte_force(sv, lp) \
1309 ((SvFLAGS(sv) & (SVf_POK|SVf_UTF8|SVf_THINKFIRST)) == (SVf_POK) \
a7ec4e2e 1310 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_pvbyten_force(sv, &lp))
5bc28da9 1311
5bc28da9
NIS
1312#define SvPVbyte_nolen(sv) \
1313 ((SvFLAGS(sv) & (SVf_POK|SVf_UTF8)) == (SVf_POK)\
dafda6d1 1314 ? SvPVX(sv) : sv_2pvbyte(sv, 0))
70401c6b 1315
1fa8b10d 1316
baca2b92
DM
1317
1318/* define FOOx(): idempotent versions of FOO(). If possible, use a local
1319 * var to evaluate the arg once; failing that, use a global if possible;
1320 * failing that, call a function to do the work
1321 */
1322
1323#define SvPVx_force(sv, lp) sv_pvn_force(sv, &lp)
1324#define SvPVutf8x_force(sv, lp) sv_pvutf8n_force(sv, &lp)
1325#define SvPVbytex_force(sv, lp) sv_pvbyten_force(sv, &lp)
1326
5dc8bdac 1327#if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
baca2b92 1328
3de3296f
AE
1329# define SvIVx(sv) ({SV *_sv = (SV*)(sv); SvIV(_sv); })
1330# define SvUVx(sv) ({SV *_sv = (SV*)(sv); SvUV(_sv); })
1331# define SvNVx(sv) ({SV *_sv = (SV*)(sv); SvNV(_sv); })
1332# define SvPVx(sv, lp) ({SV *_sv = (sv); SvPV(_sv, lp); })
32a5c6ec 1333# define SvPVx_const(sv, lp) ({SV *_sv = (sv); SvPV_const(_sv, lp); })
002e4c74 1334# define SvPVx_nolen(sv) ({SV *_sv = (sv); SvPV_nolen(_sv); })
9ce348e8 1335# define SvPVx_nolen_const(sv) ({SV *_sv = (sv); SvPV_nolen_const(_sv); })
3de3296f
AE
1336# define SvPVutf8x(sv, lp) ({SV *_sv = (sv); SvPVutf8(_sv, lp); })
1337# define SvPVbytex(sv, lp) ({SV *_sv = (sv); SvPVbyte(_sv, lp); })
002e4c74 1338# define SvPVbytex_nolen(sv) ({SV *_sv = (sv); SvPVbyte_nolen(_sv); })
a80f87c4 1339# define SvTRUE(sv) ( \
8990e307
LW
1340 !sv \
1341 ? 0 \
1342 : SvPOK(sv) \
a80f87c4
GS
1343 ? (({XPV *nxpv = (XPV*)SvANY(sv); \
1344 nxpv && \
c2f1de04 1345 (nxpv->xpv_cur > 1 || \
339049b0 1346 (nxpv->xpv_cur && *(sv)->sv_u.svu_pv != '0')); }) \
79072805
LW
1347 ? 1 \
1348 : 0) \
1349 : \
1350 SvIOK(sv) \
463ee0b2 1351 ? SvIVX(sv) != 0 \
79072805 1352 : SvNOK(sv) \
463ee0b2
LW
1353 ? SvNVX(sv) != 0.0 \
1354 : sv_2bool(sv) )
3de3296f 1355# define SvTRUEx(sv) ({SV *_sv = (sv); SvTRUE(_sv); })
baca2b92 1356
a80f87c4 1357#else /* __GNUC__ */
baca2b92 1358
a80f87c4
GS
1359/* These inlined macros use globals, which will require a thread
1360 * declaration in user code, so we avoid them under threads */
1361
3db8f154
MB
1362# define SvIVx(sv) ((PL_Sv = (sv)), SvIV(PL_Sv))
1363# define SvUVx(sv) ((PL_Sv = (sv)), SvUV(PL_Sv))
1364# define SvNVx(sv) ((PL_Sv = (sv)), SvNV(PL_Sv))
1365# define SvPVx(sv, lp) ((PL_Sv = (sv)), SvPV(PL_Sv, lp))
32a5c6ec 1366# define SvPVx_const(sv, lp) ((PL_Sv = (sv)), SvPV_const(PL_Sv, lp))
002e4c74 1367# define SvPVx_nolen(sv) ((PL_Sv = (sv)), SvPV_nolen(PL_Sv))
5f1478c3 1368# define SvPVx_nolen_const(sv) ((PL_Sv = (sv)), SvPV_nolen_const(PL_Sv))
3db8f154
MB
1369# define SvPVutf8x(sv, lp) ((PL_Sv = (sv)), SvPVutf8(PL_Sv, lp))
1370# define SvPVbytex(sv, lp) ((PL_Sv = (sv)), SvPVbyte(PL_Sv, lp))
002e4c74 1371# define SvPVbytex_nolen(sv) ((PL_Sv = (sv)), SvPVbyte_nolen(PL_Sv))
3db8f154 1372# define SvTRUE(sv) ( \
a80f87c4
GS
1373 !sv \
1374 ? 0 \
1375 : SvPOK(sv) \
7b2c381c 1376 ? ((PL_Xpv = (XPV*)SvANY(PL_Sv = (sv))) && \
c2f1de04 1377 (PL_Xpv->xpv_cur > 1 || \
339049b0 1378 (PL_Xpv->xpv_cur && *PL_Sv->sv_u.svu_pv != '0')) \
a80f87c4
GS
1379 ? 1 \
1380 : 0) \
1381 : \
1382 SvIOK(sv) \
1383 ? SvIVX(sv) != 0 \
1384 : SvNOK(sv) \
1385 ? SvNVX(sv) != 0.0 \
1386 : sv_2bool(sv) )
3db8f154 1387# define SvTRUEx(sv) ((PL_Sv = (sv)), SvTRUE(PL_Sv))
baca2b92
DM
1388#endif /* __GNU__ */
1389
765f542d
NC
1390#define SvIsCOW(sv) ((SvFLAGS(sv) & (SVf_FAKE | SVf_READONLY)) == \
1391 (SVf_FAKE | SVf_READONLY))
46187eeb 1392#define SvIsCOW_shared_hash(sv) (SvIsCOW(sv) && SvLEN(sv) == 0)
baca2b92 1393
bdd68bc3
NC
1394#define SvSHARED_HEK_FROM_PV(pvx) \
1395 ((struct hek*)(pvx - STRUCT_OFFSET(struct hek, hek_key)))
0a356b31 1396#define SvSHARED_HASH(sv) (0 + SvSHARED_HEK_FROM_PV(SvPVX_const(sv))->hek_hash)
c158a4fd 1397
baca2b92
DM
1398/* flag values for sv_*_flags functions */
1399#define SV_IMMEDIATE_UNREF 1
1400#define SV_GMAGIC 2
765f542d 1401#define SV_COW_DROP_PV 4
88632417 1402#define SV_UTF8_NO_ENCODING 8
5fcdf167 1403#define SV_NOSTEAL 16
32a5c6ec
NC
1404#define SV_CONST_RETURN 32
1405#define SV_MUTABLE_RETURN 64
bddd5118 1406#define SV_SMAGIC 128
765f542d 1407
5abc721d
NC
1408#define sv_unref(sv) sv_unref_flags(sv, 0)
1409#define sv_force_normal(sv) sv_force_normal_flags(sv, 0)
174c73e3 1410
46187eeb
NC
1411/* We are about to replace the SV's current value. So if it's copy on write
1412 we need to normalise it. Use the SV_COW_DROP_PV flag hint to say that
1413 the value is about to get thrown away, so drop the PV rather than go to
1414 the effort of making a read-write copy only for it to get immediately
1415 discarded. */
765f542d
NC
1416
1417#define SV_CHECK_THINKFIRST_COW_DROP(sv) if (SvTHINKFIRST(sv)) \
1418 sv_force_normal_flags(sv, SV_COW_DROP_PV)
46187eeb 1419
f8c7b90f 1420#ifdef PERL_OLD_COPY_ON_WRITE
46187eeb 1421# define SvRELEASE_IVX(sv) ((void)((SvFLAGS(sv) & (SVf_OOK|SVf_READONLY|SVf_FAKE)) \
b885210e 1422 && Perl_sv_release_IVX(aTHX_ sv)))
46187eeb 1423# define SvIsCOW_normal(sv) (SvIsCOW(sv) && SvLEN(sv))
b8f9541a
NC
1424#else
1425# define SvRELEASE_IVX(sv) SvOOK_off(sv)
f8c7b90f 1426#endif /* PERL_OLD_COPY_ON_WRITE */
ed252734
NC
1427
1428#define CAN_COW_MASK (SVs_OBJECT|SVs_GMG|SVs_SMG|SVs_RMG|SVf_IOK|SVf_NOK| \
1429 SVf_POK|SVf_ROK|SVp_IOK|SVp_NOK|SVp_POK|SVf_FAKE| \
1430 SVf_OOK|SVf_BREAK|SVf_READONLY|SVf_AMAGIC)
1431#define CAN_COW_FLAGS (SVp_POK|SVf_POK)
1432
765f542d
NC
1433#define SV_CHECK_THINKFIRST(sv) if (SvTHINKFIRST(sv)) \
1434 sv_force_normal_flags(sv, 0)
1435
1436
baca2b92
DM
1437/* all these 'functions' are now just macros */
1438
1439#define sv_pv(sv) SvPV_nolen(sv)
1440#define sv_pvutf8(sv) SvPVutf8_nolen(sv)
1441#define sv_pvbyte(sv) SvPVbyte_nolen(sv)
1442
1443#define sv_pvn_force_nomg(sv, lp) sv_pvn_force_flags(sv, lp, 0)
1444#define sv_utf8_upgrade_nomg(sv) sv_utf8_upgrade_flags(sv, 0)
1445#define sv_catpvn_nomg(dsv, sstr, slen) sv_catpvn_flags(dsv, sstr, slen, 0)
1446#define sv_setsv(dsv, ssv) sv_setsv_flags(dsv, ssv, SV_GMAGIC)
1447#define sv_setsv_nomg(dsv, ssv) sv_setsv_flags(dsv, ssv, 0)
1448#define sv_catsv(dsv, ssv) sv_catsv_flags(dsv, ssv, SV_GMAGIC)
1449#define sv_catsv_nomg(dsv, ssv) sv_catsv_flags(dsv, ssv, 0)
b347df82 1450#define sv_catsv_mg(dsv, ssv) sv_catsv_flags(dsv, ssv, SV_GMAGIC|SV_SMAGIC)
baca2b92 1451#define sv_catpvn(dsv, sstr, slen) sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC)
b347df82
NC
1452#define sv_catpvn_mg(sv, sstr, slen) \
1453 sv_catpvn_flags(sv, sstr, slen, SV_GMAGIC|SV_SMAGIC);
baca2b92 1454#define sv_2pv(sv, lp) sv_2pv_flags(sv, lp, SV_GMAGIC)
cb2f1b7b
NC
1455#define sv_2pv_nolen(sv) sv_2pv(sv, 0)
1456#define sv_2pvbyte_nolen(sv) sv_2pvbyte(sv, 0)
1457#define sv_2pvutf8_nolen(sv) sv_2pvutf8(sv, 0)
baca2b92
DM
1458#define sv_2pv_nomg(sv, lp) sv_2pv_flags(sv, lp, 0)
1459#define sv_pvn_force(sv, lp) sv_pvn_force_flags(sv, lp, SV_GMAGIC)
1460#define sv_utf8_upgrade(sv) sv_utf8_upgrade_flags(sv, SV_GMAGIC)
891f9566
YST
1461#define sv_2iv(sv) sv_2iv_flags(sv, SV_GMAGIC)
1462#define sv_2uv(sv) sv_2uv_flags(sv, SV_GMAGIC)
baca2b92 1463
db79b45b
JH
1464/* Should be named SvCatPVN_utf8_upgrade? */
1465#define sv_catpvn_utf8_upgrade(dsv, sstr, slen, nsv) \
1466 STMT_START { \
1467 if (!(nsv)) \
1468 nsv = sv_2mortal(newSVpvn(sstr, slen)); \
1469 else \
1470 sv_setpvn(nsv, sstr, slen); \
1471 SvUTF8_off(nsv); \
1472 sv_utf8_upgrade(nsv); \
1473 sv_catsv(dsv, nsv); \
1474 } STMT_END
79072805 1475
954c1994
GS
1476/*
1477=for apidoc Am|SV*|newRV_inc|SV* sv
1478
1479Creates an RV wrapper for an SV. The reference count for the original SV is
1480incremented.
1481
1482=cut
1483*/
1484
5f05dabc 1485#define newRV_inc(sv) newRV(sv)
5f05dabc 1486
ef50df4b 1487/* the following macros update any magic values this sv is associated with */
79072805 1488
954c1994 1489/*
ccfc67b7
JH
1490=head1 Magical Functions
1491
954c1994
GS
1492=for apidoc Am|void|SvGETMAGIC|SV* sv
1493Invokes C<mg_get> on an SV if it has 'get' magic. This macro evaluates its
1494argument more than once.
1495
1496=for apidoc Am|void|SvSETMAGIC|SV* sv
1497Invokes C<mg_set> on an SV if it has 'set' magic. This macro evaluates its
1498argument more than once.
1499
1500=for apidoc Am|void|SvSetSV|SV* dsb|SV* ssv
1501Calls C<sv_setsv> if dsv is not the same as ssv. May evaluate arguments
1502more than once.
1503
1504=for apidoc Am|void|SvSetSV_nosteal|SV* dsv|SV* ssv
1505Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
1506ssv. May evaluate arguments more than once.
1507
645c22ef
DM
1508=for apidoc Am|void|SvSetMagicSV|SV* dsb|SV* ssv
1509Like C<SvSetSV>, but does any set magic required afterwards.
1510
1511=for apidoc Am|void|SvSetMagicSV_nosteal|SV* dsv|SV* ssv
80663158 1512Like C<SvSetSV_nosteal>, but does any set magic required afterwards.
645c22ef 1513
68795e93
NIS
1514=for apidoc Am|void|SvSHARE|SV* sv
1515Arranges for sv to be shared between threads if a suitable module
1516has been loaded.
1517
1518=for apidoc Am|void|SvLOCK|SV* sv
1519Arranges for a mutual exclusion lock to be obtained on sv if a suitable module
1520has been loaded.
1521
1522=for apidoc Am|void|SvUNLOCK|SV* sv
1523Releases a mutual exclusion lock on sv if a suitable module
1524has been loaded.
1525
ccfc67b7
JH
1526=head1 SV Manipulation Functions
1527
679ac26e 1528=for apidoc Am|char *|SvGROW|SV* sv|STRLEN len
954c1994
GS
1529Expands the character buffer in the SV so that it has room for the
1530indicated number of bytes (remember to reserve space for an extra trailing
8cf8f3d1 1531NUL character). Calls C<sv_grow> to perform the expansion if necessary.
954c1994
GS
1532Returns a pointer to the character buffer.
1533
1534=cut
1535*/
1536
68795e93
NIS
1537#define SvSHARE(sv) CALL_FPTR(PL_sharehook)(aTHX_ sv)
1538#define SvLOCK(sv) CALL_FPTR(PL_lockhook)(aTHX_ sv)
1539#define SvUNLOCK(sv) CALL_FPTR(PL_unlockhook)(aTHX_ sv)
1540
189b2af5
GS
1541#define SvGETMAGIC(x) STMT_START { if (SvGMAGICAL(x)) mg_get(x); } STMT_END
1542#define SvSETMAGIC(x) STMT_START { if (SvSMAGICAL(x)) mg_set(x); } STMT_END
79072805 1543
54310121 1544#define SvSetSV_and(dst,src,finally) \
189b2af5 1545 STMT_START { \
54310121 1546 if ((dst) != (src)) { \
1547 sv_setsv(dst, src); \
1548 finally; \
189b2af5
GS
1549 } \
1550 } STMT_END
54310121 1551#define SvSetSV_nosteal_and(dst,src,finally) \
189b2af5 1552 STMT_START { \
8ebc5c01 1553 if ((dst) != (src)) { \
5fcdf167 1554 sv_setsv_flags(dst, src, SV_GMAGIC | SV_NOSTEAL); \
54310121 1555 finally; \
189b2af5
GS
1556 } \
1557 } STMT_END
79072805 1558
54310121 1559#define SvSetSV(dst,src) \
c9d716f7 1560 SvSetSV_and(dst,src,/*nothing*/;)
54310121 1561#define SvSetSV_nosteal(dst,src) \
c9d716f7 1562 SvSetSV_nosteal_and(dst,src,/*nothing*/;)
54310121 1563
1564#define SvSetMagicSV(dst,src) \
1565 SvSetSV_and(dst,src,SvSETMAGIC(dst))
1566#define SvSetMagicSV_nosteal(dst,src) \
1567 SvSetSV_nosteal_and(dst,src,SvSETMAGIC(dst))
1568
db79b45b 1569
1045810a 1570#if !defined(SKIP_DEBUGGING)
79072805 1571#define SvPEEK(sv) sv_peek(sv)
3967c732
JD
1572#else
1573#define SvPEEK(sv) ""
1574#endif
79072805 1575
5dc8bdac 1576#define SvIMMORTAL(sv) ((sv)==&PL_sv_undef || (sv)==&PL_sv_yes || (sv)==&PL_sv_no || (sv)==&PL_sv_placeholder)
36477c24 1577
3280af22 1578#define boolSV(b) ((b) ? &PL_sv_yes : &PL_sv_no)
54310121 1579
79072805
LW
1580#define isGV(sv) (SvTYPE(sv) == SVt_PVGV)
1581
933fea7f 1582#define SvGROW(sv,len) (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX(sv))
5902b6a9
NC
1583#define SvGROW_mutable(sv,len) \
1584 (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX_mutable(sv))
933fea7f 1585#define Sv_Grow sv_grow
3d35f11b 1586
a0739874
DM
1587#define CLONEf_COPY_STACKS 1
1588#define CLONEf_KEEP_PTR_TABLE 2
c43294b8 1589#define CLONEf_CLONE_HOST 4
0405e91e 1590#define CLONEf_JOIN_IN 8
a0739874 1591
8cf8f3d1 1592struct clone_params {
d2d73c3e
AB
1593 AV* stashes;
1594 UV flags;
59b40662 1595 PerlInterpreter *proto_perl;
8cf8f3d1 1596};
102d3b8a
NC
1597
1598/*
1599 * Local variables:
1600 * c-indentation-style: bsd
1601 * c-basic-offset: 4
1602 * indent-tabs-mode: t
1603 * End:
1604 *
1605 * ex: set ts=8 sts=4 sw=4 noet:
1606 */