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