e99891dd22c0efc25d1a3f6bdc8dec4108f72f48
[p5sagit/p5-mst-13.2.git] / sv.h
1 /*    sv.h
2  *
3  *    Copyright (c) 1991-1999, Larry Wall
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  *
8  */
9
10 #ifdef sv_flags
11 #undef sv_flags         /* Convex has this in <signal.h> for sigvec() */
12 #endif
13
14 typedef enum {
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 */
31 } svtype;
32
33 /* Using C's structural equivalence to help emulate C++ inheritance here... */
34
35 struct sv {
36     void*       sv_any;         /* pointer to something */
37     U32         sv_refcnt;      /* how many references to us */
38     U32         sv_flags;       /* what we are */
39 };
40
41 struct gv {
42     XPVGV*      sv_any;         /* pointer to something */
43     U32         sv_refcnt;      /* how many references to us */
44     U32         sv_flags;       /* what we are */
45 };
46
47 struct cv {
48     XPVCV*      sv_any;         /* pointer to something */
49     U32         sv_refcnt;      /* how many references to us */
50     U32         sv_flags;       /* what we are */
51 };
52
53 struct av {
54     XPVAV*      sv_any;         /* pointer to something */
55     U32         sv_refcnt;      /* how many references to us */
56     U32         sv_flags;       /* what we are */
57 };
58
59 struct hv {
60     XPVHV*      sv_any;         /* pointer to something */
61     U32         sv_refcnt;      /* how many references to us */
62     U32         sv_flags;       /* what we are */
63 };
64
65 struct io {
66     XPVIO*      sv_any;         /* pointer to something */
67     U32         sv_refcnt;      /* how many references to us */
68     U32         sv_flags;       /* what we are */
69 };
70
71 #define SvANY(sv)       (sv)->sv_any
72 #define SvFLAGS(sv)     (sv)->sv_flags
73 #define SvREFCNT(sv)    (sv)->sv_refcnt
74
75 #ifdef USE_THREADS
76
77 #  ifdef EMULATE_ATOMIC_REFCOUNTS
78 #    define ATOMIC_INC(count) STMT_START {      \
79         MUTEX_LOCK(&PL_svref_mutex);            \
80         ++count;                                \
81         MUTEX_UNLOCK(&PL_svref_mutex);          \
82      } STMT_END
83 #    define ATOMIC_DEC_AND_TEST(res,count) STMT_START { \
84         MUTEX_LOCK(&PL_svref_mutex);                    \
85         res = (--count == 0);                           \
86         MUTEX_UNLOCK(&PL_svref_mutex);                  \
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)
94 #  define ATOMIC_DEC_AND_TEST(res, count) (res = (--count == 0))
95 #endif /* USE_THREADS */
96
97 #ifdef __GNUC__
98 #  define SvREFCNT_inc(sv)              \
99     ({                                  \
100         SV *nsv = (SV*)(sv);            \
101         if (nsv)                        \
102              ATOMIC_INC(SvREFCNT(nsv)); \
103         nsv;                            \
104     })
105 #else
106 #  if defined(CRIPPLED_CC) || defined(USE_THREADS)
107 #    define SvREFCNT_inc(sv) sv_newref((SV*)sv)
108 #  else
109 #    define SvREFCNT_inc(sv)    \
110         ((PL_Sv=(SV*)(sv)), (PL_Sv && ATOMIC_INC(SvREFCNT(PL_Sv))), (SV*)PL_Sv)
111 #  endif
112 #endif
113
114 #define SvREFCNT_dec(sv)        sv_free((SV*)sv)
115
116 #define SVTYPEMASK      0xff
117 #define SvTYPE(sv)      ((sv)->sv_flags & SVTYPEMASK)
118
119 #define SvUPGRADE(sv, mt) (SvTYPE(sv) >= mt || sv_upgrade(sv, mt))
120
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 */
134
135 #define SVf_FAKE        0x00100000      /* glob or lexical is just a copy */
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
140 #define SVf_THINKFIRST  (SVf_READONLY|SVf_ROK|SVf_FAKE)
141
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
147 #define SVf_OK          (SVf_IOK|SVf_NOK|SVf_POK|SVf_ROK| \
148                          SVp_IOK|SVp_NOK|SVp_POK)
149
150 #define SVf_AMAGIC      0x10000000      /* has magical overloaded methods */
151
152 #define PRIVSHIFT 8
153
154 /* Some private flags. */
155
156 #define SVpad_OUR       0x80000000      /* pad name is "our" instead of "my" */
157
158 #define SVf_IVisUV      0x80000000      /* use XPVUV instead of XPVIV */
159
160 #define SVpfm_COMPILED  0x80000000      /* FORMLINE is compiled */
161
162 #define SVpbm_VALID     0x80000000
163 #define SVpbm_TAIL      0x40000000
164
165 #define SVrepl_EVAL     0x40000000      /* Replacement part of s///e */
166
167 #define SVphv_SHAREKEYS 0x20000000      /* keys live on shared string table */
168 #define SVphv_LAZYDEL   0x40000000      /* entry in xhv_eiter must be deleted */
169
170 #define SVprv_WEAKREF   0x80000000      /* Weak reference */
171
172 struct xrv {
173     SV *        xrv_rv;         /* pointer to another SV */
174 };
175
176 struct xpv {
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 */
180 };
181
182 struct xpviv {
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 */
186     IV          xiv_iv;         /* integer value or pv offset */
187 };
188
189 struct 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
196 struct xpvnv {
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 */
200     IV          xiv_iv;         /* integer value or pv offset */
201     NV          xnv_nv;         /* numeric value, if any */
202 };
203
204 /* These structure must match the beginning of struct xpvhv in hv.h. */
205 struct xpvmg {
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 */
209     IV          xiv_iv;         /* integer value or pv offset */
210     NV          xnv_nv;         /* numeric value, if any */
211     MAGIC*      xmg_magic;      /* linked list of magicalness */
212     HV*         xmg_stash;      /* class package */
213 };
214
215 struct xpvlv {
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 */
219     IV          xiv_iv;         /* integer value or pv offset */
220     NV          xnv_nv;         /* numeric value, if any */
221     MAGIC*      xmg_magic;      /* linked list of magicalness */
222     HV*         xmg_stash;      /* class package */
223
224     STRLEN      xlv_targoff;
225     STRLEN      xlv_targlen;
226     SV*         xlv_targ;
227     char        xlv_type;
228 };
229
230 struct xpvgv {
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 */
234     IV          xiv_iv;         /* integer value or pv offset */
235     NV          xnv_nv;         /* numeric value, if any */
236     MAGIC*      xmg_magic;      /* linked list of magicalness */
237     HV*         xmg_stash;      /* class package */
238
239     GP*         xgv_gp;
240     char*       xgv_name;
241     STRLEN      xgv_namelen;
242     HV*         xgv_stash;
243     U8          xgv_flags;
244 };
245
246 struct xpvbm {
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 */
250     IV          xiv_iv;         /* integer value or pv offset */
251     NV          xnv_nv;         /* numeric value, if any */
252     MAGIC*      xmg_magic;      /* linked list of magicalness */
253     HV*         xmg_stash;      /* class package */
254
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
260 /* This structure much match XPVCV */
261
262 typedef U16 cv_flags_t;
263
264 struct xpvfm {
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 */
268     IV          xiv_iv;         /* integer value or pv offset */
269     NV          xnv_nv;         /* numeric value, if any */
270     MAGIC*      xmg_magic;      /* linked list of magicalness */
271     HV*         xmg_stash;      /* class package */
272
273     HV *        xcv_stash;
274     OP *        xcv_start;
275     OP *        xcv_root;
276     void      (*xcv_xsub)(pTHXo_ CV*);
277     ANY         xcv_xsubany;
278     GV *        xcv_gv;
279     GV *        xcv_filegv;
280     long        xcv_depth;              /* >= 2 indicates recursive call */
281     AV *        xcv_padlist;
282     CV *        xcv_outside;
283 #ifdef USE_THREADS
284     perl_mutex *xcv_mutexp;     /* protects xcv_owner */
285     struct perl_thread *xcv_owner;      /* current owner thread */
286 #endif /* USE_THREADS */
287     cv_flags_t  xcv_flags;
288
289     I32         xfm_lines;
290 };
291
292 struct 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 */
296     IV          xiv_iv;         /* integer value or pv offset */
297     NV          xnv_nv;         /* numeric value, if any */
298     MAGIC*      xmg_magic;      /* linked list of magicalness */
299     HV*         xmg_stash;      /* class package */
300
301     PerlIO *    xio_ifp;        /* ifp and ofp are normally the same */
302     PerlIO *    xio_ofp;        /* but sockets need separate streams */
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
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
326 /* The following macros define implementation-independent predicates on SVs. */
327
328 #define SvNIOK(sv)              (SvFLAGS(sv) & (SVf_IOK|SVf_NOK))
329 #define SvNIOKp(sv)             (SvFLAGS(sv) & (SVp_IOK|SVp_NOK))
330 #define SvNIOK_off(sv)          (SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK| \
331                                                   SVp_IOK|SVp_NOK|SVf_IVisUV))
332
333 #define SvOK(sv)                (SvFLAGS(sv) & SVf_OK)
334 #define SvOK_off(sv)            (SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC|    \
335                                                   SVf_IVisUV),          \
336                                                         SvOOK_off(sv))
337 #define SvOK_off_exc_UV(sv)     (SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC),   \
338                                                         SvOOK_off(sv))
339
340 #define SvOKp(sv)               (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK))
341 #define SvIOKp(sv)              (SvFLAGS(sv) & SVp_IOK)
342 #define SvIOKp_on(sv)           (SvOOK_off(sv), SvFLAGS(sv) |= SVp_IOK)
343 #define SvNOKp(sv)              (SvFLAGS(sv) & SVp_NOK)
344 #define SvNOKp_on(sv)           (SvFLAGS(sv) |= SVp_NOK)
345 #define SvPOKp(sv)              (SvFLAGS(sv) & SVp_POK)
346 #define SvPOKp_on(sv)           (SvFLAGS(sv) |= SVp_POK)
347
348 #define SvIOK(sv)               (SvFLAGS(sv) & SVf_IOK)
349 #define SvIOK_on(sv)            (SvOOK_off(sv), \
350                                     SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
351 #define SvIOK_off(sv)           (SvFLAGS(sv) &= ~(SVf_IOK|SVp_IOK|SVf_IVisUV))
352 #define SvIOK_only(sv)          (SvOK_off(sv), \
353                                     SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
354 #define SvIOK_only_UV(sv)       (SvOK_off_exc_UV(sv), \
355                                     SvFLAGS(sv) |= (SVf_IOK|SVp_IOK))
356  
357 #define SvIOK_UV(sv)            ((SvFLAGS(sv) & (SVf_IOK|SVf_IVisUV))   \
358                                  == (SVf_IOK|SVf_IVisUV))
359 #define SvIOK_notUV(sv)         ((SvFLAGS(sv) & (SVf_IOK|SVf_IVisUV))   \
360                                  == SVf_IOK)
361
362 #define SvIsUV(sv)              (SvFLAGS(sv) & SVf_IVisUV)
363 #define SvIsUV_on(sv)           (SvFLAGS(sv) |= SVf_IVisUV)
364 #define SvIsUV_off(sv)          (SvFLAGS(sv) &= ~SVf_IVisUV)
365
366 #define SvNOK(sv)               (SvFLAGS(sv) & SVf_NOK)
367 #define SvNOK_on(sv)            (SvFLAGS(sv) |= (SVf_NOK|SVp_NOK))
368 #define SvNOK_off(sv)           (SvFLAGS(sv) &= ~(SVf_NOK|SVp_NOK))
369 #define SvNOK_only(sv)          (SvOK_off(sv), \
370                                     SvFLAGS(sv) |= (SVf_NOK|SVp_NOK))
371
372 #define SvPOK(sv)               (SvFLAGS(sv) & SVf_POK)
373 #define SvPOK_on(sv)            (SvFLAGS(sv) |= (SVf_POK|SVp_POK))
374 #define SvPOK_off(sv)           (SvFLAGS(sv) &= ~(SVf_POK|SVp_POK))
375 #define SvPOK_only(sv)          (SvFLAGS(sv) &= ~(SVf_OK|SVf_AMAGIC|SVf_IVisUV),        \
376                                     SvFLAGS(sv) |= (SVf_POK|SVp_POK))
377
378 #define SvOOK(sv)               (SvFLAGS(sv) & SVf_OOK)
379 #define SvOOK_on(sv)            (SvIOK_off(sv), SvFLAGS(sv) |= SVf_OOK)
380 #define SvOOK_off(sv)           (SvOOK(sv) && sv_backoff(sv))
381
382 #define SvFAKE(sv)              (SvFLAGS(sv) & SVf_FAKE)
383 #define SvFAKE_on(sv)           (SvFLAGS(sv) |= SVf_FAKE)
384 #define SvFAKE_off(sv)          (SvFLAGS(sv) &= ~SVf_FAKE)
385
386 #define SvROK(sv)               (SvFLAGS(sv) & SVf_ROK)
387 #define SvROK_on(sv)            (SvFLAGS(sv) |= SVf_ROK)
388 #define SvROK_off(sv)           (SvFLAGS(sv) &= ~(SVf_ROK|SVf_AMAGIC))
389
390 #define SvMAGICAL(sv)           (SvFLAGS(sv) & (SVs_GMG|SVs_SMG|SVs_RMG))
391 #define SvMAGICAL_on(sv)        (SvFLAGS(sv) |= (SVs_GMG|SVs_SMG|SVs_RMG))
392 #define SvMAGICAL_off(sv)       (SvFLAGS(sv) &= ~(SVs_GMG|SVs_SMG|SVs_RMG))
393
394 #define SvGMAGICAL(sv)          (SvFLAGS(sv) & SVs_GMG)
395 #define SvGMAGICAL_on(sv)       (SvFLAGS(sv) |= SVs_GMG)
396 #define SvGMAGICAL_off(sv)      (SvFLAGS(sv) &= ~SVs_GMG)
397
398 #define SvSMAGICAL(sv)          (SvFLAGS(sv) & SVs_SMG)
399 #define SvSMAGICAL_on(sv)       (SvFLAGS(sv) |= SVs_SMG)
400 #define SvSMAGICAL_off(sv)      (SvFLAGS(sv) &= ~SVs_SMG)
401
402 #define SvRMAGICAL(sv)          (SvFLAGS(sv) & SVs_RMG)
403 #define SvRMAGICAL_on(sv)       (SvFLAGS(sv) |= SVs_RMG)
404 #define SvRMAGICAL_off(sv)      (SvFLAGS(sv) &= ~SVs_RMG)
405
406 #define SvAMAGIC(sv)            (SvFLAGS(sv) & SVf_AMAGIC)
407 #define SvAMAGIC_on(sv)         (SvFLAGS(sv) |= SVf_AMAGIC)
408 #define SvAMAGIC_off(sv)        (SvFLAGS(sv) &= ~SVf_AMAGIC)
409
410 /*
411 #define Gv_AMG(stash) \
412         (HV_AMAGICmb(stash) && \
413          ((!HV_AMAGICbad(stash) && HV_AMAGIC(stash)) || Gv_AMupdate(stash)))
414 */
415 #define Gv_AMG(stash)           (PL_amagic_generation && Gv_AMupdate(stash))
416
417 #define SvWEAKREF(sv)           ((SvFLAGS(sv) & (SVf_ROK|SVprv_WEAKREF)) \
418                                   == (SVf_ROK|SVprv_WEAKREF))
419 #define SvWEAKREF_on(sv)        (SvFLAGS(sv) |=  (SVf_ROK|SVprv_WEAKREF))
420 #define SvWEAKREF_off(sv)       (SvFLAGS(sv) &= ~(SVf_ROK|SVprv_WEAKREF))
421
422 #define SvTHINKFIRST(sv)        (SvFLAGS(sv) & SVf_THINKFIRST)
423
424 #define SvPADBUSY(sv)           (SvFLAGS(sv) & SVs_PADBUSY)
425
426 #define SvPADTMP(sv)            (SvFLAGS(sv) & SVs_PADTMP)
427 #define SvPADTMP_on(sv)         (SvFLAGS(sv) |= SVs_PADTMP|SVs_PADBUSY)
428 #define SvPADTMP_off(sv)        (SvFLAGS(sv) &= ~SVs_PADTMP)
429
430 #define SvPADMY(sv)             (SvFLAGS(sv) & SVs_PADMY)
431 #define SvPADMY_on(sv)          (SvFLAGS(sv) |= SVs_PADMY|SVs_PADBUSY)
432
433 #define SvTEMP(sv)              (SvFLAGS(sv) & SVs_TEMP)
434 #define SvTEMP_on(sv)           (SvFLAGS(sv) |= SVs_TEMP)
435 #define SvTEMP_off(sv)          (SvFLAGS(sv) &= ~SVs_TEMP)
436
437 #define SvOBJECT(sv)            (SvFLAGS(sv) & SVs_OBJECT)
438 #define SvOBJECT_on(sv)         (SvFLAGS(sv) |= SVs_OBJECT)
439 #define SvOBJECT_off(sv)        (SvFLAGS(sv) &= ~SVs_OBJECT)
440
441 #define SvREADONLY(sv)          (SvFLAGS(sv) & SVf_READONLY)
442 #define SvREADONLY_on(sv)       (SvFLAGS(sv) |= SVf_READONLY)
443 #define SvREADONLY_off(sv)      (SvFLAGS(sv) &= ~SVf_READONLY)
444
445 #define SvSCREAM(sv)            (SvFLAGS(sv) & SVp_SCREAM)
446 #define SvSCREAM_on(sv)         (SvFLAGS(sv) |= SVp_SCREAM)
447 #define SvSCREAM_off(sv)        (SvFLAGS(sv) &= ~SVp_SCREAM)
448
449 #define SvCOMPILED(sv)          (SvFLAGS(sv) & SVpfm_COMPILED)
450 #define SvCOMPILED_on(sv)       (SvFLAGS(sv) |= SVpfm_COMPILED)
451 #define SvCOMPILED_off(sv)      (SvFLAGS(sv) &= ~SVpfm_COMPILED)
452
453 #define SvEVALED(sv)            (SvFLAGS(sv) & SVrepl_EVAL)
454 #define SvEVALED_on(sv)         (SvFLAGS(sv) |= SVrepl_EVAL)
455 #define SvEVALED_off(sv)        (SvFLAGS(sv) &= ~SVrepl_EVAL)
456
457 #define SvTAIL(sv)              (SvFLAGS(sv) & SVpbm_TAIL)
458 #define SvTAIL_on(sv)           (SvFLAGS(sv) |= SVpbm_TAIL)
459 #define SvTAIL_off(sv)          (SvFLAGS(sv) &= ~SVpbm_TAIL)
460
461 #define SvVALID(sv)             (SvFLAGS(sv) & SVpbm_VALID)
462 #define SvVALID_on(sv)          (SvFLAGS(sv) |= SVpbm_VALID)
463 #define SvVALID_off(sv)         (SvFLAGS(sv) &= ~SVpbm_VALID)
464
465 #define SvRV(sv) ((XRV*)  SvANY(sv))->xrv_rv
466 #define SvRVx(sv) SvRV(sv)
467
468 #define SvIVX(sv) ((XPVIV*)  SvANY(sv))->xiv_iv
469 #define SvIVXx(sv) SvIVX(sv)
470 #define SvUVX(sv) ((XPVUV*)  SvANY(sv))->xuv_uv
471 #define SvUVXx(sv) SvUVX(sv)
472 #define SvNVX(sv)  ((XPVNV*)SvANY(sv))->xnv_nv
473 #define SvNVXx(sv) SvNVX(sv)
474 #define SvPVX(sv)  ((XPV*)  SvANY(sv))->xpv_pv
475 #define SvPVXx(sv) SvPVX(sv)
476 #define SvCUR(sv) ((XPV*)  SvANY(sv))->xpv_cur
477 #define SvLEN(sv) ((XPV*)  SvANY(sv))->xpv_len
478 #define SvLENx(sv) SvLEN(sv)
479 #define SvEND(sv)(((XPV*)  SvANY(sv))->xpv_pv + ((XPV*)SvANY(sv))->xpv_cur)
480 #define SvENDx(sv) ((PL_Sv = (sv)), SvEND(PL_Sv))
481 #define SvMAGIC(sv)     ((XPVMG*)  SvANY(sv))->xmg_magic
482 #define SvSTASH(sv)     ((XPVMG*)  SvANY(sv))->xmg_stash
483
484 #define SvIV_set(sv, val) \
485         STMT_START { assert(SvTYPE(sv) == SVt_IV || SvTYPE(sv) >= SVt_PVIV); \
486                 (((XPVIV*)  SvANY(sv))->xiv_iv = val); } STMT_END
487 #define SvNV_set(sv, val) \
488         STMT_START { assert(SvTYPE(sv) == SVt_NV || SvTYPE(sv) >= SVt_PVNV); \
489                 (((XPVNV*)  SvANY(sv))->xnv_nv = val); } STMT_END
490 #define SvPV_set(sv, val) \
491         STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
492                 (((XPV*)  SvANY(sv))->xpv_pv = val); } STMT_END
493 #define SvCUR_set(sv, val) \
494         STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
495                 (((XPV*)  SvANY(sv))->xpv_cur = val); } STMT_END
496 #define SvLEN_set(sv, val) \
497         STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
498                 (((XPV*)  SvANY(sv))->xpv_len = val); } STMT_END
499 #define SvEND_set(sv, val) \
500         STMT_START { assert(SvTYPE(sv) >= SVt_PV); \
501                 (((XPV*)  SvANY(sv))->xpv_cur = val - SvPVX(sv)); } STMT_END
502
503 #define BmRARE(sv)      ((XPVBM*)  SvANY(sv))->xbm_rare
504 #define BmUSEFUL(sv)    ((XPVBM*)  SvANY(sv))->xbm_useful
505 #define BmPREVIOUS(sv)  ((XPVBM*)  SvANY(sv))->xbm_previous
506
507 #define FmLINES(sv)     ((XPVFM*)  SvANY(sv))->xfm_lines
508
509 #define LvTYPE(sv)      ((XPVLV*)  SvANY(sv))->xlv_type
510 #define LvTARG(sv)      ((XPVLV*)  SvANY(sv))->xlv_targ
511 #define LvTARGOFF(sv)   ((XPVLV*)  SvANY(sv))->xlv_targoff
512 #define LvTARGLEN(sv)   ((XPVLV*)  SvANY(sv))->xlv_targlen
513
514 #define IoIFP(sv)       ((XPVIO*)  SvANY(sv))->xio_ifp
515 #define IoOFP(sv)       ((XPVIO*)  SvANY(sv))->xio_ofp
516 #define IoDIRP(sv)      ((XPVIO*)  SvANY(sv))->xio_dirp
517 #define IoLINES(sv)     ((XPVIO*)  SvANY(sv))->xio_lines
518 #define IoPAGE(sv)      ((XPVIO*)  SvANY(sv))->xio_page
519 #define IoPAGE_LEN(sv)  ((XPVIO*)  SvANY(sv))->xio_page_len
520 #define IoLINES_LEFT(sv)((XPVIO*)  SvANY(sv))->xio_lines_left
521 #define IoTOP_NAME(sv)  ((XPVIO*)  SvANY(sv))->xio_top_name
522 #define IoTOP_GV(sv)    ((XPVIO*)  SvANY(sv))->xio_top_gv
523 #define IoFMT_NAME(sv)  ((XPVIO*)  SvANY(sv))->xio_fmt_name
524 #define IoFMT_GV(sv)    ((XPVIO*)  SvANY(sv))->xio_fmt_gv
525 #define IoBOTTOM_NAME(sv)((XPVIO*) SvANY(sv))->xio_bottom_name
526 #define IoBOTTOM_GV(sv) ((XPVIO*)  SvANY(sv))->xio_bottom_gv
527 #define IoSUBPROCESS(sv)((XPVIO*)  SvANY(sv))->xio_subprocess
528 #define IoTYPE(sv)      ((XPVIO*)  SvANY(sv))->xio_type
529 #define IoFLAGS(sv)     ((XPVIO*)  SvANY(sv))->xio_flags
530
531 #define SvTAINTED(sv)     (SvMAGICAL(sv) && sv_tainted(sv))
532 #define SvTAINTED_on(sv)  STMT_START{ if(PL_tainting){sv_taint(sv);}   }STMT_END
533 #define SvTAINTED_off(sv) STMT_START{ if(PL_tainting){sv_untaint(sv);} }STMT_END
534
535 #define SvTAINT(sv)                     \
536     STMT_START {                        \
537         if (PL_tainting) {              \
538             dTHR;                       \
539             if (PL_tainted)             \
540                 SvTAINTED_on(sv);       \
541         }                               \
542     } STMT_END
543
544 #define SvPV_force(sv, lp) sv_pvn_force(sv, &lp)
545 #define SvPV(sv, lp) sv_pvn(sv, &lp)
546 #define SvPV_nolen(sv) sv_pv(sv)
547 #define SvIVx(sv) sv_iv(sv)
548 #define SvUVx(sv) sv_uv(sv)
549 #define SvNVx(sv) sv_nv(sv)
550 #define SvPVx(sv, lp) sv_pvn(sv, &lp)
551 #define SvPVx_force(sv, lp) sv_pvn_force(sv, &lp)
552 #define SvTRUEx(sv) sv_true(sv)
553
554 #define SvIV(sv) SvIVx(sv)
555 #define SvNV(sv) SvNVx(sv)
556 #define SvUV(sv) SvUVx(sv)
557 #define SvTRUE(sv) SvTRUEx(sv)
558
559 #ifndef CRIPPLED_CC
560 /* redefine some things to more efficient inlined versions */
561
562 /* Let us hope that bitmaps for UV and IV are the same */
563 #undef SvIV
564 #define SvIV(sv) (SvIOK(sv) ? SvIVX(sv) : sv_2iv(sv))
565
566 #undef SvUV
567 #define SvUV(sv) (SvIOK(sv) ? SvUVX(sv) : sv_2uv(sv))
568
569 #undef SvNV
570 #define SvNV(sv) (SvNOK(sv) ? SvNVX(sv) : sv_2nv(sv))
571
572 #undef SvPV
573 #define SvPV(sv, lp) \
574     (SvPOK(sv) ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_2pv(sv, &lp))
575
576 #undef SvPV_force
577 #define SvPV_force(sv, lp) \
578     ((SvFLAGS(sv) & (SVf_POK|SVf_THINKFIRST)) == SVf_POK \
579      ? ((lp = SvCUR(sv)), SvPVX(sv)) : sv_pvn_force(sv, &lp))
580
581 #undef SvPV_nolen
582 #define SvPV_nolen(sv) \
583     (SvPOK(sv) ? SvPVX(sv) : sv_2pv_nolen(sv))
584
585 #ifdef __GNUC__
586 #  undef SvIVx
587 #  undef SvUVx
588 #  undef SvNVx
589 #  undef SvPVx
590 #  undef SvTRUE
591 #  undef SvTRUEx
592 #  define SvIVx(sv) ({SV *nsv = (SV*)(sv); SvIV(nsv); })
593 #  define SvUVx(sv) ({SV *nsv = (SV*)(sv); SvUV(nsv); })
594 #  define SvNVx(sv) ({SV *nsv = (SV*)(sv); SvNV(nsv); })
595 #  define SvPVx(sv, lp) ({SV *nsv = (sv); SvPV(nsv, lp); })
596 #  define SvTRUE(sv) (                                          \
597     !sv                                                         \
598     ? 0                                                         \
599     :    SvPOK(sv)                                              \
600         ?   (({XPV *nxpv = (XPV*)SvANY(sv);                     \
601              nxpv &&                                            \
602              (*nxpv->xpv_pv > '0' ||                            \
603               nxpv->xpv_cur > 1 ||                              \
604               (nxpv->xpv_cur && *nxpv->xpv_pv != '0')); })      \
605              ? 1                                                \
606              : 0)                                               \
607         :                                                       \
608             SvIOK(sv)                                           \
609             ? SvIVX(sv) != 0                                    \
610             :   SvNOK(sv)                                       \
611                 ? SvNVX(sv) != 0.0                              \
612                 : sv_2bool(sv) )
613 #  define SvTRUEx(sv) ({SV *nsv = (sv); SvTRUE(nsv); })
614 #else /* __GNUC__ */
615 #ifndef USE_THREADS
616 /* These inlined macros use globals, which will require a thread
617  * declaration in user code, so we avoid them under threads */
618
619 #  undef SvIVx
620 #  undef SvUVx
621 #  undef SvNVx
622 #  undef SvPVx
623 #  undef SvTRUE
624 #  undef SvTRUEx
625 #  define SvIVx(sv) ((PL_Sv = (sv)), SvIV(PL_Sv))
626 #  define SvUVx(sv) ((PL_Sv = (sv)), SvUV(PL_Sv))
627 #  define SvNVx(sv) ((PL_Sv = (sv)), SvNV(PL_Sv))
628 #  define SvPVx(sv, lp) ((PL_Sv = (sv)), SvPV(PL_Sv, lp))
629 #  define SvTRUE(sv) (                                          \
630     !sv                                                         \
631     ? 0                                                         \
632     :    SvPOK(sv)                                              \
633         ?   ((PL_Xpv = (XPV*)SvANY(sv)) &&                      \
634              (*PL_Xpv->xpv_pv > '0' ||                          \
635               PL_Xpv->xpv_cur > 1 ||                            \
636               (PL_Xpv->xpv_cur && *PL_Xpv->xpv_pv != '0'))      \
637              ? 1                                                \
638              : 0)                                               \
639         :                                                       \
640             SvIOK(sv)                                           \
641             ? SvIVX(sv) != 0                                    \
642             :   SvNOK(sv)                                       \
643                 ? SvNVX(sv) != 0.0                              \
644                 : sv_2bool(sv) )
645 #  define SvTRUEx(sv) ((PL_Sv = (sv)), SvTRUE(PL_Sv))
646 #endif /* !USE_THREADS */
647 #endif /* !__GNU__ */
648 #endif /* !CRIPPLED_CC */
649
650 #define newRV_inc(sv)   newRV(sv)
651
652 /* the following macros update any magic values this sv is associated with */
653
654 #define SvGETMAGIC(x) STMT_START { if (SvGMAGICAL(x)) mg_get(x); } STMT_END
655 #define SvSETMAGIC(x) STMT_START { if (SvSMAGICAL(x)) mg_set(x); } STMT_END
656
657 #define SvSetSV_and(dst,src,finally) \
658         STMT_START {                                    \
659             if ((dst) != (src)) {                       \
660                 sv_setsv(dst, src);                     \
661                 finally;                                \
662             }                                           \
663         } STMT_END
664 #define SvSetSV_nosteal_and(dst,src,finally) \
665         STMT_START {                                    \
666             if ((dst) != (src)) {                       \
667                 U32 tMpF = SvFLAGS(src) & SVs_TEMP;     \
668                 SvTEMP_off(src);                        \
669                 sv_setsv(dst, src);                     \
670                 SvFLAGS(src) |= tMpF;                   \
671                 finally;                                \
672             }                                           \
673         } STMT_END
674
675 #define SvSetSV(dst,src) \
676                 SvSetSV_and(dst,src,/*nothing*/;)
677 #define SvSetSV_nosteal(dst,src) \
678                 SvSetSV_nosteal_and(dst,src,/*nothing*/;)
679
680 #define SvSetMagicSV(dst,src) \
681                 SvSetSV_and(dst,src,SvSETMAGIC(dst))
682 #define SvSetMagicSV_nosteal(dst,src) \
683                 SvSetSV_nosteal_and(dst,src,SvSETMAGIC(dst))
684
685 #ifdef DEBUGGING
686 #define SvPEEK(sv) sv_peek(sv)
687 #else
688 #define SvPEEK(sv) ""
689 #endif
690
691 #define SvIMMORTAL(sv) ((sv)==&PL_sv_undef || (sv)==&PL_sv_yes || (sv)==&PL_sv_no)
692
693 #define boolSV(b) ((b) ? &PL_sv_yes : &PL_sv_no)
694
695 #define isGV(sv) (SvTYPE(sv) == SVt_PVGV)
696
697 #define SvGROW(sv,len) (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX(sv))
698 #define Sv_Grow sv_grow