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