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