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