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