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