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