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