Try to fix largefileness so that it "works" without a quad IV.
[p5sagit/p5-mst-13.2.git] / sv.h
CommitLineData
a0d0e21e 1/* sv.h
79072805 2 *
4eb8286e 3 * Copyright (c) 1991-1999, Larry Wall
79072805 4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
79072805 8 */
9
a0d0e21e 10#ifdef sv_flags
11#undef sv_flags /* Convex has this in <signal.h> for sigvec() */
12#endif
13
79072805 14typedef enum {
a0d0e21e 15 SVt_NULL, /* 0 */
16 SVt_IV, /* 1 */
17 SVt_NV, /* 2 */
18 SVt_RV, /* 3 */
19 SVt_PV, /* 4 */
20 SVt_PVIV, /* 5 */
21 SVt_PVNV, /* 6 */
22 SVt_PVMG, /* 7 */
23 SVt_PVBM, /* 8 */
24 SVt_PVLV, /* 9 */
25 SVt_PVAV, /* 10 */
26 SVt_PVHV, /* 11 */
27 SVt_PVCV, /* 12 */
28 SVt_PVGV, /* 13 */
29 SVt_PVFM, /* 14 */
30 SVt_PVIO /* 15 */
79072805 31} svtype;
32
79072805 33/* Using C's structural equivalence to help emulate C++ inheritance here... */
34
35struct sv {
463ee0b2 36 void* sv_any; /* pointer to something */
79072805 37 U32 sv_refcnt; /* how many references to us */
8990e307 38 U32 sv_flags; /* what we are */
79072805 39};
40
41struct gv {
463ee0b2 42 XPVGV* sv_any; /* pointer to something */
79072805 43 U32 sv_refcnt; /* how many references to us */
8990e307 44 U32 sv_flags; /* what we are */
79072805 45};
46
47struct cv {
232e078e 48 XPVCV* sv_any; /* pointer to something */
79072805 49 U32 sv_refcnt; /* how many references to us */
8990e307 50 U32 sv_flags; /* what we are */
79072805 51};
52
53struct av {
463ee0b2 54 XPVAV* sv_any; /* pointer to something */
79072805 55 U32 sv_refcnt; /* how many references to us */
8990e307 56 U32 sv_flags; /* what we are */
79072805 57};
58
59struct hv {
463ee0b2 60 XPVHV* sv_any; /* pointer to something */
79072805 61 U32 sv_refcnt; /* how many references to us */
8990e307 62 U32 sv_flags; /* what we are */
63};
64
65struct io {
66 XPVIO* sv_any; /* pointer to something */
67 U32 sv_refcnt; /* how many references to us */
68 U32 sv_flags; /* what we are */
79072805 69};
70
463ee0b2 71#define SvANY(sv) (sv)->sv_any
79072805 72#define SvFLAGS(sv) (sv)->sv_flags
aeea060c 73#define SvREFCNT(sv) (sv)->sv_refcnt
a863c7d1 74
dce16143 75#ifdef USE_THREADS
76
dce16143 77# ifdef EMULATE_ATOMIC_REFCOUNTS
78# define ATOMIC_INC(count) STMT_START { \
533c011a 79 MUTEX_LOCK(&PL_svref_mutex); \
dce16143 80 ++count; \
533c011a 81 MUTEX_UNLOCK(&PL_svref_mutex); \
dce16143 82 } STMT_END
0bfcb09d 83# define ATOMIC_DEC_AND_TEST(res,count) STMT_START { \
533c011a 84 MUTEX_LOCK(&PL_svref_mutex); \
0bfcb09d 85 res = (--count == 0); \
533c011a 86 MUTEX_UNLOCK(&PL_svref_mutex); \
dce16143 87 } STMT_END
88# else
89# define ATOMIC_INC(count) atomic_inc(&count)
90# define ATOMIC_DEC_AND_TEST(res,count) (res = atomic_dec_and_test(&count))
91# endif /* EMULATE_ATOMIC_REFCOUNTS */
92#else
93# define ATOMIC_INC(count) (++count)
83b0a010 94# define ATOMIC_DEC_AND_TEST(res, count) (res = (--count == 0))
dce16143 95#endif /* USE_THREADS */
96
a863c7d1 97#ifdef __GNUC__
dce16143 98# define SvREFCNT_inc(sv) \
99 ({ \
100 SV *nsv = (SV*)(sv); \
101 if (nsv) \
102 ATOMIC_INC(SvREFCNT(nsv)); \
103 nsv; \
104 })
8990e307 105#else
a863c7d1 106# if defined(CRIPPLED_CC) || defined(USE_THREADS)
199100c8 107# define SvREFCNT_inc(sv) sv_newref((SV*)sv)
a863c7d1 108# else
dce16143 109# define SvREFCNT_inc(sv) \
6b88bc9c 110 ((PL_Sv=(SV*)(sv)), (PL_Sv && ATOMIC_INC(SvREFCNT(PL_Sv))), (SV*)PL_Sv)
a863c7d1 111# endif
8990e307 112#endif
113
a863c7d1 114#define SvREFCNT_dec(sv) sv_free((SV*)sv)
115
8990e307 116#define SVTYPEMASK 0xff
117#define SvTYPE(sv) ((sv)->sv_flags & SVTYPEMASK)
79072805 118
119#define SvUPGRADE(sv, mt) (SvTYPE(sv) >= mt || sv_upgrade(sv, mt))
120
8990e307 121#define SVs_PADBUSY 0x00000100 /* reserved for tmp or my already */
122#define SVs_PADTMP 0x00000200 /* in use as tmp */
123#define SVs_PADMY 0x00000400 /* in use a "my" variable */
124#define SVs_TEMP 0x00000800 /* string is stealable? */
125#define SVs_OBJECT 0x00001000 /* is "blessed" */
126#define SVs_GMG 0x00002000 /* has magical get method */
127#define SVs_SMG 0x00004000 /* has magical set method */
128#define SVs_RMG 0x00008000 /* has random magical methods */
129
130#define SVf_IOK 0x00010000 /* has valid public integer value */
131#define SVf_NOK 0x00020000 /* has valid public numeric value */
132#define SVf_POK 0x00040000 /* has valid public pointer value */
133#define SVf_ROK 0x00080000 /* has a valid reference pointer */
a0d0e21e 134
748a9306 135#define SVf_FAKE 0x00100000 /* glob or lexical is just a copy */
8990e307 136#define SVf_OOK 0x00200000 /* has valid offset value */
137#define SVf_BREAK 0x00400000 /* refcnt is artificially low */
138#define SVf_READONLY 0x00800000 /* may not be modified */
139
6fc92669 140#define SVf_THINKFIRST (SVf_READONLY|SVf_ROK|SVf_FAKE)
a0d0e21e 141
8990e307 142#define SVp_IOK 0x01000000 /* has valid non-public integer value */
143#define SVp_NOK 0x02000000 /* has valid non-public numeric value */
144#define SVp_POK 0x04000000 /* has valid non-public pointer value */
145#define SVp_SCREAM 0x08000000 /* has been studied? */
146
a0d0e21e 147#define SVf_OK (SVf_IOK|SVf_NOK|SVf_POK|SVf_ROK| \
148 SVp_IOK|SVp_NOK|SVp_POK)
149
9e7bc3e8 150#define SVf_AMAGIC 0x10000000 /* has magical overloaded methods */
a0d0e21e 151
8990e307 152#define PRIVSHIFT 8
153
154/* Some private flags. */
155
77ca0c92 156#define SVpad_OUR 0x80000000 /* pad name is "our" instead of "my" */
157
25da4f38 158#define SVf_IVisUV 0x80000000 /* use XPVUV instead of XPVIV */
159
160#define SVpfm_COMPILED 0x80000000 /* FORMLINE is compiled */
8990e307 161
162#define SVpbm_VALID 0x80000000
bbce6d69 163#define SVpbm_TAIL 0x40000000
8990e307 164
25da4f38 165#define SVrepl_EVAL 0x40000000 /* Replacement part of s///e */
166
bf6bd887 167#define SVphv_SHAREKEYS 0x20000000 /* keys live on shared string table */
51594c39 168#define SVphv_LAZYDEL 0x40000000 /* entry in xhv_eiter must be deleted */
bf6bd887 169
810b8aa5 170#define SVprv_WEAKREF 0x80000000 /* Weak reference */
171
ed6116ce 172struct xrv {
173 SV * xrv_rv; /* pointer to another SV */
174};
175
79072805 176struct xpv {
ed6116ce 177 char * xpv_pv; /* pointer to malloced string */
178 STRLEN xpv_cur; /* length of xpv_pv as a C string */
179 STRLEN xpv_len; /* allocated size */
79072805 180};
181
182struct xpviv {
ed6116ce 183 char * xpv_pv; /* pointer to malloced string */
184 STRLEN xpv_cur; /* length of xpv_pv as a C string */
185 STRLEN xpv_len; /* allocated size */
a0d0e21e 186 IV xiv_iv; /* integer value or pv offset */
79072805 187};
188
ff68c719 189struct xpvuv {
190 char * xpv_pv; /* pointer to malloced string */
191 STRLEN xpv_cur; /* length of xpv_pv as a C string */
192 STRLEN xpv_len; /* allocated size */
193 UV xuv_uv; /* unsigned value or pv offset */
194};
195
79072805 196struct xpvnv {
ed6116ce 197 char * xpv_pv; /* pointer to malloced string */
198 STRLEN xpv_cur; /* length of xpv_pv as a C string */
199 STRLEN xpv_len; /* allocated size */
a0d0e21e 200 IV xiv_iv; /* integer value or pv offset */
65202027 201 NV xnv_nv; /* numeric value, if any */
79072805 202};
203
6ee623d5 204/* These structure must match the beginning of struct xpvhv in hv.h. */
79072805 205struct xpvmg {
ed6116ce 206 char * xpv_pv; /* pointer to malloced string */
207 STRLEN xpv_cur; /* length of xpv_pv as a C string */
208 STRLEN xpv_len; /* allocated size */
a0d0e21e 209 IV xiv_iv; /* integer value or pv offset */
65202027 210 NV xnv_nv; /* numeric value, if any */
79072805 211 MAGIC* xmg_magic; /* linked list of magicalness */
212 HV* xmg_stash; /* class package */
213};
214
215struct xpvlv {
ed6116ce 216 char * xpv_pv; /* pointer to malloced string */
217 STRLEN xpv_cur; /* length of xpv_pv as a C string */
218 STRLEN xpv_len; /* allocated size */
a0d0e21e 219 IV xiv_iv; /* integer value or pv offset */
65202027 220 NV xnv_nv; /* numeric value, if any */
79072805 221 MAGIC* xmg_magic; /* linked list of magicalness */
222 HV* xmg_stash; /* class package */
8990e307 223
79072805 224 STRLEN xlv_targoff;
225 STRLEN xlv_targlen;
226 SV* xlv_targ;
227 char xlv_type;
228};
229
230struct xpvgv {
ed6116ce 231 char * xpv_pv; /* pointer to malloced string */
232 STRLEN xpv_cur; /* length of xpv_pv as a C string */
233 STRLEN xpv_len; /* allocated size */
a0d0e21e 234 IV xiv_iv; /* integer value or pv offset */
65202027 235 NV xnv_nv; /* numeric value, if any */
79072805 236 MAGIC* xmg_magic; /* linked list of magicalness */
237 HV* xmg_stash; /* class package */
8990e307 238
79072805 239 GP* xgv_gp;
240 char* xgv_name;
241 STRLEN xgv_namelen;
242 HV* xgv_stash;
a5f75d66 243 U8 xgv_flags;
79072805 244};
245
246struct xpvbm {
ed6116ce 247 char * xpv_pv; /* pointer to malloced string */
248 STRLEN xpv_cur; /* length of xpv_pv as a C string */
249 STRLEN xpv_len; /* allocated size */
a0d0e21e 250 IV xiv_iv; /* integer value or pv offset */
65202027 251 NV xnv_nv; /* numeric value, if any */
79072805 252 MAGIC* xmg_magic; /* linked list of magicalness */
253 HV* xmg_stash; /* class package */
8990e307 254
79072805 255 I32 xbm_useful; /* is this constant pattern being useful? */
256 U16 xbm_previous; /* how many characters in string before rare? */
257 U8 xbm_rare; /* rarest character in string */
258};
259
57843af0 260/* This structure much match XPVCV in cv.h */
44a8e56a 261
77a005ab 262typedef U16 cv_flags_t;
263
79072805 264struct xpvfm {
ed6116ce 265 char * xpv_pv; /* pointer to malloced string */
266 STRLEN xpv_cur; /* length of xpv_pv as a C string */
267 STRLEN xpv_len; /* allocated size */
a0d0e21e 268 IV xiv_iv; /* integer value or pv offset */
65202027 269 NV xnv_nv; /* numeric value, if any */
79072805 270 MAGIC* xmg_magic; /* linked list of magicalness */
271 HV* xmg_stash; /* class package */
8990e307 272
79072805 273 HV * xcv_stash;
274 OP * xcv_start;
275 OP * xcv_root;
0cb96387 276 void (*xcv_xsub)(pTHXo_ CV*);
a0d0e21e 277 ANY xcv_xsubany;
278 GV * xcv_gv;
57843af0 279 char * xcv_file;
b195d487 280 long xcv_depth; /* >= 2 indicates recursive call */
79072805 281 AV * xcv_padlist;
748a9306 282 CV * xcv_outside;
e858de61 283#ifdef USE_THREADS
f6d98b14 284 perl_mutex *xcv_mutexp; /* protects xcv_owner */
52e1cb5e 285 struct perl_thread *xcv_owner; /* current owner thread */
e858de61 286#endif /* USE_THREADS */
77a005ab 287 cv_flags_t xcv_flags;
44a8e56a 288
79072805 289 I32 xfm_lines;
290};
291
8990e307 292struct xpvio {
293 char * xpv_pv; /* pointer to malloced string */
294 STRLEN xpv_cur; /* length of xpv_pv as a C string */
295 STRLEN xpv_len; /* allocated size */
a0d0e21e 296 IV xiv_iv; /* integer value or pv offset */
65202027 297 NV xnv_nv; /* numeric value, if any */
8990e307 298 MAGIC* xmg_magic; /* linked list of magicalness */
299 HV* xmg_stash; /* class package */
300
760ac839 301 PerlIO * xio_ifp; /* ifp and ofp are normally the same */
302 PerlIO * xio_ofp; /* but sockets need separate streams */
8990e307 303 DIR * xio_dirp; /* for opendir, readdir, etc */
304 long xio_lines; /* $. */
305 long xio_page; /* $% */
306 long xio_page_len; /* $= */
307 long xio_lines_left; /* $- */
308 char * xio_top_name; /* $^ */
309 GV * xio_top_gv; /* $^ */
310 char * xio_fmt_name; /* $~ */
311 GV * xio_fmt_gv; /* $~ */
312 char * xio_bottom_name;/* $^B */
313 GV * xio_bottom_gv; /* $^B */
314 short xio_subprocess; /* -| or |- */
315 char xio_type;
316 char xio_flags;
317};
318
e0c19803 319#define IOf_ARGV 1 /* this fp iterates over ARGV */
320#define IOf_START 2 /* check for null ARGV and substitute '-' */
321#define IOf_FLUSH 4 /* this fp wants a flush after write op */
322#define IOf_DIDTOP 8 /* just did top of form */
323#define IOf_UNTAINT 16 /* consider this fp (and its data) "safe" */
324#define IOf_NOLINE 32 /* slurped a pseudo-line from empty file */
325#define IOf_FAKE_DIRP 64 /* xio_dirp is fake (source filters kludge) */
8990e307 326
ed6116ce 327/* The following macros define implementation-independent predicates on SVs. */
328
79072805 329#define SvNIOK(sv) (SvFLAGS(sv) & (SVf_IOK|SVf_NOK))
748a9306 330#define SvNIOKp(sv) (SvFLAGS(sv) & (SVp_IOK|SVp_NOK))
a0d0e21e 331#define SvNIOK_off(sv) (SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK| \
25da4f38 332 SVp_IOK|SVp_NOK|SVf_IVisUV))
79072805 333
463ee0b2 334#define SvOK(sv) (SvFLAGS(sv) & SVf_OK)
25da4f38 335#define SvOK_off(sv) (SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC| \
336 SVf_IVisUV), \
337 SvOOK_off(sv))
338#define SvOK_off_exc_UV(sv) (SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC), \
a0d0e21e 339 SvOOK_off(sv))
79072805 340
8990e307 341#define SvOKp(sv) (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK))
342#define SvIOKp(sv) (SvFLAGS(sv) & SVp_IOK)
343#define SvIOKp_on(sv) (SvOOK_off(sv), SvFLAGS(sv) |= SVp_IOK)
344#define SvNOKp(sv) (SvFLAGS(sv) & SVp_NOK)
345#define SvNOKp_on(sv) (SvFLAGS(sv) |= SVp_NOK)
346#define SvPOKp(sv) (SvFLAGS(sv) & SVp_POK)
347#define SvPOKp_on(sv) (SvFLAGS(sv) |= SVp_POK)
463ee0b2 348
79072805 349#define SvIOK(sv) (SvFLAGS(sv) & SVf_IOK)
8990e307 350#define SvIOK_on(sv) (SvOOK_off(sv), \
a0d0e21e 351 SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
25da4f38 352#define SvIOK_off(sv) (SvFLAGS(sv) &= ~(SVf_IOK|SVp_IOK|SVf_IVisUV))
827b7e14 353#define SvIOK_only(sv) (SvOK_off(sv), \
a0d0e21e 354 SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
25da4f38 355#define SvIOK_only_UV(sv) (SvOK_off_exc_UV(sv), \
356 SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
357
358#define SvIOK_UV(sv) ((SvFLAGS(sv) & (SVf_IOK|SVf_IVisUV)) \
359 == (SVf_IOK|SVf_IVisUV))
360#define SvIOK_notUV(sv) ((SvFLAGS(sv) & (SVf_IOK|SVf_IVisUV)) \
361 == SVf_IOK)
362
363#define SvIsUV(sv) (SvFLAGS(sv) & SVf_IVisUV)
364#define SvIsUV_on(sv) (SvFLAGS(sv) |= SVf_IVisUV)
365#define SvIsUV_off(sv) (SvFLAGS(sv) &= ~SVf_IVisUV)
79072805 366
367#define SvNOK(sv) (SvFLAGS(sv) & SVf_NOK)
a0d0e21e 368#define SvNOK_on(sv) (SvFLAGS(sv) |= (SVf_NOK|SVp_NOK))
8990e307 369#define SvNOK_off(sv) (SvFLAGS(sv) &= ~(SVf_NOK|SVp_NOK))
370#define SvNOK_only(sv) (SvOK_off(sv), \
a0d0e21e 371 SvFLAGS(sv) |= (SVf_NOK|SVp_NOK))
79072805 372
373#define SvPOK(sv) (SvFLAGS(sv) & SVf_POK)
a0d0e21e 374#define SvPOK_on(sv) (SvFLAGS(sv) |= (SVf_POK|SVp_POK))
8990e307 375#define SvPOK_off(sv) (SvFLAGS(sv) &= ~(SVf_POK|SVp_POK))
25da4f38 376#define SvPOK_only(sv) (SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC|SVf_IVisUV), \
a0d0e21e 377 SvFLAGS(sv) |= (SVf_POK|SVp_POK))
79072805 378
379#define SvOOK(sv) (SvFLAGS(sv) & SVf_OOK)
380#define SvOOK_on(sv) (SvIOK_off(sv), SvFLAGS(sv) |= SVf_OOK)
381#define SvOOK_off(sv) (SvOOK(sv) && sv_backoff(sv))
79072805 382
a0d0e21e 383#define SvFAKE(sv) (SvFLAGS(sv) & SVf_FAKE)
384#define SvFAKE_on(sv) (SvFLAGS(sv) |= SVf_FAKE)
385#define SvFAKE_off(sv) (SvFLAGS(sv) &= ~SVf_FAKE)
386
ed6116ce 387#define SvROK(sv) (SvFLAGS(sv) & SVf_ROK)
a0d0e21e 388#define SvROK_on(sv) (SvFLAGS(sv) |= SVf_ROK)
a0d0e21e 389#define SvROK_off(sv) (SvFLAGS(sv) &= ~(SVf_ROK|SVf_AMAGIC))
79072805 390
8990e307 391#define SvMAGICAL(sv) (SvFLAGS(sv) & (SVs_GMG|SVs_SMG|SVs_RMG))
392#define SvMAGICAL_on(sv) (SvFLAGS(sv) |= (SVs_GMG|SVs_SMG|SVs_RMG))
393#define SvMAGICAL_off(sv) (SvFLAGS(sv) &= ~(SVs_GMG|SVs_SMG|SVs_RMG))
79072805 394
8990e307 395#define SvGMAGICAL(sv) (SvFLAGS(sv) & SVs_GMG)
396#define SvGMAGICAL_on(sv) (SvFLAGS(sv) |= SVs_GMG)
397#define SvGMAGICAL_off(sv) (SvFLAGS(sv) &= ~SVs_GMG)
ed6116ce 398
8990e307 399#define SvSMAGICAL(sv) (SvFLAGS(sv) & SVs_SMG)
400#define SvSMAGICAL_on(sv) (SvFLAGS(sv) |= SVs_SMG)
401#define SvSMAGICAL_off(sv) (SvFLAGS(sv) &= ~SVs_SMG)
ed6116ce 402
8990e307 403#define SvRMAGICAL(sv) (SvFLAGS(sv) & SVs_RMG)
404#define SvRMAGICAL_on(sv) (SvFLAGS(sv) |= SVs_RMG)
405#define SvRMAGICAL_off(sv) (SvFLAGS(sv) &= ~SVs_RMG)
ed6116ce 406
9e7bc3e8 407#define SvAMAGIC(sv) (SvFLAGS(sv) & SVf_AMAGIC)
408#define SvAMAGIC_on(sv) (SvFLAGS(sv) |= SVf_AMAGIC)
409#define SvAMAGIC_off(sv) (SvFLAGS(sv) &= ~SVf_AMAGIC)
a0d0e21e 410
411/*
412#define Gv_AMG(stash) \
413 (HV_AMAGICmb(stash) && \
414 ((!HV_AMAGICbad(stash) && HV_AMAGIC(stash)) || Gv_AMupdate(stash)))
415*/
3280af22 416#define Gv_AMG(stash) (PL_amagic_generation && Gv_AMupdate(stash))
a0d0e21e 417
810b8aa5 418#define SvWEAKREF(sv) ((SvFLAGS(sv) & (SVf_ROK|SVprv_WEAKREF)) \
419 == (SVf_ROK|SVprv_WEAKREF))
420#define SvWEAKREF_on(sv) (SvFLAGS(sv) |= (SVf_ROK|SVprv_WEAKREF))
421#define SvWEAKREF_off(sv) (SvFLAGS(sv) &= ~(SVf_ROK|SVprv_WEAKREF))
422
a0d0e21e 423#define SvTHINKFIRST(sv) (SvFLAGS(sv) & SVf_THINKFIRST)
ed6116ce 424
8990e307 425#define SvPADBUSY(sv) (SvFLAGS(sv) & SVs_PADBUSY)
ed6116ce 426
8990e307 427#define SvPADTMP(sv) (SvFLAGS(sv) & SVs_PADTMP)
428#define SvPADTMP_on(sv) (SvFLAGS(sv) |= SVs_PADTMP|SVs_PADBUSY)
429#define SvPADTMP_off(sv) (SvFLAGS(sv) &= ~SVs_PADTMP)
ed6116ce 430
8990e307 431#define SvPADMY(sv) (SvFLAGS(sv) & SVs_PADMY)
432#define SvPADMY_on(sv) (SvFLAGS(sv) |= SVs_PADMY|SVs_PADBUSY)
ed6116ce 433
8990e307 434#define SvTEMP(sv) (SvFLAGS(sv) & SVs_TEMP)
435#define SvTEMP_on(sv) (SvFLAGS(sv) |= SVs_TEMP)
436#define SvTEMP_off(sv) (SvFLAGS(sv) &= ~SVs_TEMP)
79072805 437
8990e307 438#define SvOBJECT(sv) (SvFLAGS(sv) & SVs_OBJECT)
439#define SvOBJECT_on(sv) (SvFLAGS(sv) |= SVs_OBJECT)
440#define SvOBJECT_off(sv) (SvFLAGS(sv) &= ~SVs_OBJECT)
79072805 441
8990e307 442#define SvREADONLY(sv) (SvFLAGS(sv) & SVf_READONLY)
443#define SvREADONLY_on(sv) (SvFLAGS(sv) |= SVf_READONLY)
444#define SvREADONLY_off(sv) (SvFLAGS(sv) &= ~SVf_READONLY)
79072805 445
8990e307 446#define SvSCREAM(sv) (SvFLAGS(sv) & SVp_SCREAM)
447#define SvSCREAM_on(sv) (SvFLAGS(sv) |= SVp_SCREAM)
448#define SvSCREAM_off(sv) (SvFLAGS(sv) &= ~SVp_SCREAM)
79072805 449
8990e307 450#define SvCOMPILED(sv) (SvFLAGS(sv) & SVpfm_COMPILED)
451#define SvCOMPILED_on(sv) (SvFLAGS(sv) |= SVpfm_COMPILED)
452#define SvCOMPILED_off(sv) (SvFLAGS(sv) &= ~SVpfm_COMPILED)
79072805 453
25da4f38 454#define SvEVALED(sv) (SvFLAGS(sv) & SVrepl_EVAL)
455#define SvEVALED_on(sv) (SvFLAGS(sv) |= SVrepl_EVAL)
456#define SvEVALED_off(sv) (SvFLAGS(sv) &= ~SVrepl_EVAL)
457
8990e307 458#define SvTAIL(sv) (SvFLAGS(sv) & SVpbm_TAIL)
459#define SvTAIL_on(sv) (SvFLAGS(sv) |= SVpbm_TAIL)
460#define SvTAIL_off(sv) (SvFLAGS(sv) &= ~SVpbm_TAIL)
461
8990e307 462#define SvVALID(sv) (SvFLAGS(sv) & SVpbm_VALID)
463#define SvVALID_on(sv) (SvFLAGS(sv) |= SVpbm_VALID)
464#define SvVALID_off(sv) (SvFLAGS(sv) &= ~SVpbm_VALID)
465
ed6116ce 466#define SvRV(sv) ((XRV*) SvANY(sv))->xrv_rv
467#define SvRVx(sv) SvRV(sv)
468
463ee0b2 469#define SvIVX(sv) ((XPVIV*) SvANY(sv))->xiv_iv
470#define SvIVXx(sv) SvIVX(sv)
ff68c719 471#define SvUVX(sv) ((XPVUV*) SvANY(sv))->xuv_uv
472#define SvUVXx(sv) SvUVX(sv)
463ee0b2 473#define SvNVX(sv) ((XPVNV*)SvANY(sv))->xnv_nv
474#define SvNVXx(sv) SvNVX(sv)
475#define SvPVX(sv) ((XPV*) SvANY(sv))->xpv_pv
476#define SvPVXx(sv) SvPVX(sv)
79072805 477#define SvCUR(sv) ((XPV*) SvANY(sv))->xpv_cur
79072805 478#define SvLEN(sv) ((XPV*) SvANY(sv))->xpv_len
479#define SvLENx(sv) SvLEN(sv)
480#define SvEND(sv)(((XPV*) SvANY(sv))->xpv_pv + ((XPV*)SvANY(sv))->xpv_cur)
6b88bc9c 481#define SvENDx(sv) ((PL_Sv = (sv)), SvEND(PL_Sv))
79072805 482#define SvMAGIC(sv) ((XPVMG*) SvANY(sv))->xmg_magic
483#define SvSTASH(sv) ((XPVMG*) SvANY(sv))->xmg_stash
484
485#define SvIV_set(sv, val) \
80b92232 486 STMT_START { assert(SvTYPE(sv) == SVt_IV || SvTYPE(sv) >= SVt_PVIV); \
487 (((XPVIV*) SvANY(sv))->xiv_iv = val); } STMT_END
79072805 488#define SvNV_set(sv, val) \
80b92232 489 STMT_START { assert(SvTYPE(sv) == SVt_NV || SvTYPE(sv) >= SVt_PVNV); \
490 (((XPVNV*) SvANY(sv))->xnv_nv = val); } STMT_END
79072805 491#define SvPV_set(sv, val) \
80b92232 492 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
493 (((XPV*) SvANY(sv))->xpv_pv = val); } STMT_END
79072805 494#define SvCUR_set(sv, val) \
80b92232 495 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
496 (((XPV*) SvANY(sv))->xpv_cur = val); } STMT_END
79072805 497#define SvLEN_set(sv, val) \
80b92232 498 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
499 (((XPV*) SvANY(sv))->xpv_len = val); } STMT_END
79072805 500#define SvEND_set(sv, val) \
80b92232 501 STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
502 (((XPV*) SvANY(sv))->xpv_cur = val - SvPVX(sv)); } STMT_END
79072805 503
504#define BmRARE(sv) ((XPVBM*) SvANY(sv))->xbm_rare
505#define BmUSEFUL(sv) ((XPVBM*) SvANY(sv))->xbm_useful
506#define BmPREVIOUS(sv) ((XPVBM*) SvANY(sv))->xbm_previous
507
508#define FmLINES(sv) ((XPVFM*) SvANY(sv))->xfm_lines
509
510#define LvTYPE(sv) ((XPVLV*) SvANY(sv))->xlv_type
511#define LvTARG(sv) ((XPVLV*) SvANY(sv))->xlv_targ
512#define LvTARGOFF(sv) ((XPVLV*) SvANY(sv))->xlv_targoff
513#define LvTARGLEN(sv) ((XPVLV*) SvANY(sv))->xlv_targlen
514
8990e307 515#define IoIFP(sv) ((XPVIO*) SvANY(sv))->xio_ifp
516#define IoOFP(sv) ((XPVIO*) SvANY(sv))->xio_ofp
517#define IoDIRP(sv) ((XPVIO*) SvANY(sv))->xio_dirp
518#define IoLINES(sv) ((XPVIO*) SvANY(sv))->xio_lines
519#define IoPAGE(sv) ((XPVIO*) SvANY(sv))->xio_page
520#define IoPAGE_LEN(sv) ((XPVIO*) SvANY(sv))->xio_page_len
521#define IoLINES_LEFT(sv)((XPVIO*) SvANY(sv))->xio_lines_left
522#define IoTOP_NAME(sv) ((XPVIO*) SvANY(sv))->xio_top_name
523#define IoTOP_GV(sv) ((XPVIO*) SvANY(sv))->xio_top_gv
524#define IoFMT_NAME(sv) ((XPVIO*) SvANY(sv))->xio_fmt_name
525#define IoFMT_GV(sv) ((XPVIO*) SvANY(sv))->xio_fmt_gv
526#define IoBOTTOM_NAME(sv)((XPVIO*) SvANY(sv))->xio_bottom_name
527#define IoBOTTOM_GV(sv) ((XPVIO*) SvANY(sv))->xio_bottom_gv
528#define IoSUBPROCESS(sv)((XPVIO*) SvANY(sv))->xio_subprocess
529#define IoTYPE(sv) ((XPVIO*) SvANY(sv))->xio_type
530#define IoFLAGS(sv) ((XPVIO*) SvANY(sv))->xio_flags
531
bbce6d69 532#define SvTAINTED(sv) (SvMAGICAL(sv) && sv_tainted(sv))
3280af22 533#define SvTAINTED_on(sv) STMT_START{ if(PL_tainting){sv_taint(sv);} }STMT_END
534#define SvTAINTED_off(sv) STMT_START{ if(PL_tainting){sv_untaint(sv);} }STMT_END
bbce6d69 535
c6ee37c5 536#define SvTAINT(sv) \
537 STMT_START { \
3280af22 538 if (PL_tainting) { \
c6ee37c5 539 dTHR; \
3280af22 540 if (PL_tainted) \
c6ee37c5 541 SvTAINTED_on(sv); \
542 } \
543 } STMT_END
79072805 544
a0d0e21e 545#define SvPV_force(sv, lp) sv_pvn_force(sv, &lp)
463ee0b2 546#define SvPV(sv, lp) sv_pvn(sv, &lp)
1fa8b10d 547#define SvPV_nolen(sv) sv_pv(sv)
4e35701f 548#define SvIVx(sv) sv_iv(sv)
549#define SvUVx(sv) sv_uv(sv)
550#define SvNVx(sv) sv_nv(sv)
463ee0b2 551#define SvPVx(sv, lp) sv_pvn(sv, &lp)
a0d0e21e 552#define SvPVx_force(sv, lp) sv_pvn_force(sv, &lp)
4e35701f 553#define SvTRUEx(sv) sv_true(sv)
554
555#define SvIV(sv) SvIVx(sv)
556#define SvNV(sv) SvNVx(sv)
25da4f38 557#define SvUV(sv) SvUVx(sv)
4e35701f 558#define SvTRUE(sv) SvTRUEx(sv)
79072805 559
a80f87c4 560#ifndef CRIPPLED_CC
561/* redefine some things to more efficient inlined versions */
79072805 562
25da4f38 563/* Let us hope that bitmaps for UV and IV are the same */
ff68c719 564#undef SvIV
463ee0b2 565#define SvIV(sv) (SvIOK(sv) ? SvIVX(sv) : sv_2iv(sv))
79072805 566
ff68c719 567#undef SvUV
568#define SvUV(sv) (SvIOK(sv) ? SvUVX(sv) : sv_2uv(sv))
569
570#undef SvNV
463ee0b2 571#define SvNV(sv) (SvNOK(sv) ? SvNVX(sv) : sv_2nv(sv))
79072805 572
ff68c719 573#undef SvPV
574#define SvPV(sv, lp) \
575 (SvPOK(sv) ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_2pv(sv, &lp))
79072805 576
ff68c719 577#undef SvPV_force
578#define SvPV_force(sv, lp) \
579 ((SvFLAGS(sv) & (SVf_POK|SVf_THINKFIRST)) == SVf_POK \
580 ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_pvn_force(sv, &lp))
a0d0e21e 581
1fa8b10d 582#undef SvPV_nolen
583#define SvPV_nolen(sv) \
584 (SvPOK(sv) ? SvPVX(sv) : sv_2pv_nolen(sv))
585
a80f87c4 586#ifdef __GNUC__
587# undef SvIVx
588# undef SvUVx
589# undef SvNVx
590# undef SvPVx
591# undef SvTRUE
592# undef SvTRUEx
593# define SvIVx(sv) ({SV *nsv = (SV*)(sv); SvIV(nsv); })
594# define SvUVx(sv) ({SV *nsv = (SV*)(sv); SvUV(nsv); })
595# define SvNVx(sv) ({SV *nsv = (SV*)(sv); SvNV(nsv); })
596# define SvPVx(sv, lp) ({SV *nsv = (sv); SvPV(nsv, lp); })
597# define SvTRUE(sv) ( \
8990e307 598 !sv \
599 ? 0 \
600 : SvPOK(sv) \
a80f87c4 601 ? (({XPV *nxpv = (XPV*)SvANY(sv); \
602 nxpv && \
603 (*nxpv->xpv_pv > '0' || \
604 nxpv->xpv_cur > 1 || \
605 (nxpv->xpv_cur && *nxpv->xpv_pv != '0')); }) \
79072805 606 ? 1 \
607 : 0) \
608 : \
609 SvIOK(sv) \
463ee0b2 610 ? SvIVX(sv) != 0 \
79072805 611 : SvNOK(sv) \
463ee0b2 612 ? SvNVX(sv) != 0.0 \
613 : sv_2bool(sv) )
a80f87c4 614# define SvTRUEx(sv) ({SV *nsv = (sv); SvTRUE(nsv); })
615#else /* __GNUC__ */
616#ifndef USE_THREADS
617/* These inlined macros use globals, which will require a thread
618 * declaration in user code, so we avoid them under threads */
619
620# undef SvIVx
621# undef SvUVx
622# undef SvNVx
623# undef SvPVx
624# undef SvTRUE
625# undef SvTRUEx
6b88bc9c 626# define SvIVx(sv) ((PL_Sv = (sv)), SvIV(PL_Sv))
627# define SvUVx(sv) ((PL_Sv = (sv)), SvUV(PL_Sv))
628# define SvNVx(sv) ((PL_Sv = (sv)), SvNV(PL_Sv))
629# define SvPVx(sv, lp) ((PL_Sv = (sv)), SvPV(PL_Sv, lp))
a80f87c4 630# define SvTRUE(sv) ( \
631 !sv \
632 ? 0 \
633 : SvPOK(sv) \
6b88bc9c 634 ? ((PL_Xpv = (XPV*)SvANY(sv)) && \
635 (*PL_Xpv->xpv_pv > '0' || \
636 PL_Xpv->xpv_cur > 1 || \
637 (PL_Xpv->xpv_cur && *PL_Xpv->xpv_pv != '0')) \
a80f87c4 638 ? 1 \
639 : 0) \
640 : \
641 SvIOK(sv) \
642 ? SvIVX(sv) != 0 \
643 : SvNOK(sv) \
644 ? SvNVX(sv) != 0.0 \
645 : sv_2bool(sv) )
6b88bc9c 646# define SvTRUEx(sv) ((PL_Sv = (sv)), SvTRUE(PL_Sv))
a80f87c4 647#endif /* !USE_THREADS */
648#endif /* !__GNU__ */
649#endif /* !CRIPPLED_CC */
79072805 650
5f05dabc 651#define newRV_inc(sv) newRV(sv)
5f05dabc 652
ef50df4b 653/* the following macros update any magic values this sv is associated with */
79072805 654
189b2af5 655#define SvGETMAGIC(x) STMT_START { if (SvGMAGICAL(x)) mg_get(x); } STMT_END
656#define SvSETMAGIC(x) STMT_START { if (SvSMAGICAL(x)) mg_set(x); } STMT_END
79072805 657
54310121 658#define SvSetSV_and(dst,src,finally) \
189b2af5 659 STMT_START { \
54310121 660 if ((dst) != (src)) { \
661 sv_setsv(dst, src); \
662 finally; \
189b2af5 663 } \
664 } STMT_END
54310121 665#define SvSetSV_nosteal_and(dst,src,finally) \
189b2af5 666 STMT_START { \
8ebc5c01 667 if ((dst) != (src)) { \
668 U32 tMpF = SvFLAGS(src) & SVs_TEMP; \
669 SvTEMP_off(src); \
670 sv_setsv(dst, src); \
671 SvFLAGS(src) |= tMpF; \
54310121 672 finally; \
189b2af5 673 } \
674 } STMT_END
79072805 675
54310121 676#define SvSetSV(dst,src) \
c9d716f7 677 SvSetSV_and(dst,src,/*nothing*/;)
54310121 678#define SvSetSV_nosteal(dst,src) \
c9d716f7 679 SvSetSV_nosteal_and(dst,src,/*nothing*/;)
54310121 680
681#define SvSetMagicSV(dst,src) \
682 SvSetSV_and(dst,src,SvSETMAGIC(dst))
683#define SvSetMagicSV_nosteal(dst,src) \
684 SvSetSV_nosteal_and(dst,src,SvSETMAGIC(dst))
685
3967c732 686#ifdef DEBUGGING
79072805 687#define SvPEEK(sv) sv_peek(sv)
3967c732 688#else
689#define SvPEEK(sv) ""
690#endif
79072805 691
3280af22 692#define SvIMMORTAL(sv) ((sv)==&PL_sv_undef || (sv)==&PL_sv_yes || (sv)==&PL_sv_no)
36477c24 693
3280af22 694#define boolSV(b) ((b) ? &PL_sv_yes : &PL_sv_no)
54310121 695
79072805 696#define isGV(sv) (SvTYPE(sv) == SVt_PVGV)
697
933fea7f 698#define SvGROW(sv,len) (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX(sv))
699#define Sv_Grow sv_grow