3 * Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2005, 2006, 2007, by Larry Wall and others
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.
13 NV xnv_nv; /* numeric value, if any */
18 } xpad_cop_seq; /* used by pad.c for cop_sequence */
20 U32 xbm_previous; /* how many characters in string before rare? */
22 U8 xbm_rare; /* rarest character in string */
23 } xbm_s; /* fields from PVBM */
25 SSize_t xav_fill; /* Index of last element present */
26 SSize_t xav_max; /* max index for which array has space */
28 IV xivu_iv; /* integer value or pv offset */
35 MAGIC* xmg_magic; /* linked list of magicalness */
36 HV* xmg_ourstash; /* Stash for our (when SvPAD_OUR is true) */
38 HV* xmg_stash; /* class package */
42 SSize_t xav_fill; /* Index of last element present */
43 SSize_t xav_max; /* max index for which array has space */
45 IV xivu_iv; /* integer value or pv offset */
52 MAGIC* xmg_magic; /* linked list of magicalness */
53 HV* xmg_ourstash; /* Stash for our (when SvPAD_OUR is true) */
55 HV* xmg_stash; /* class package */
59 #define xav_alloc xiv_u.xivu_p1
62 /* SVpav_REAL is set for all AVs whose xav_array contents are refcounted.
63 * Some things like "@_" and the scratchpad list do not set this, to
64 * indicate that they are cheating (for efficiency) by not refcounting
67 * SVpav_REIFY is only meaningful on such "fake" AVs (i.e. where SVpav_REAL
68 * is not set). It indicates that the fake AV is capable of becoming
69 * real if the array needs to be modified in some way. Functions that
70 * modify fake AVs check both flags to call av_reify() as appropriate.
72 * Note that the Perl stack and @DB::args have neither flag set. (Thus,
73 * items that go on the stack are never refcounted.)
75 * These internal details are subject to change any time. AV
76 * manipulations external to perl should not care about any of this.
83 =for apidoc AmU||Nullav
86 =head1 Array Manipulation Functions
88 =for apidoc Am|int|AvFILL|AV* av
89 Same as C<av_len()>. Deprecated, use C<av_len()> instead.
94 #define Nullav Null(AV*)
96 #define AvARRAY(av) ((av)->sv_u.svu_array)
97 #define AvALLOC(av) (*((SV***)&((XPVAV*) SvANY(av))->xav_alloc))
98 #define AvMAX(av) ((XPVAV*) SvANY(av))->xav_max
99 #define AvFILLp(av) ((XPVAV*) SvANY(av))->xav_fill
100 #define AvARYLEN(av) (*Perl_av_arylen_p(aTHX_ (AV*)av))
102 #define AvREAL(av) (SvFLAGS(av) & SVpav_REAL)
103 #define AvREAL_on(av) (SvFLAGS(av) |= SVpav_REAL)
104 #define AvREAL_off(av) (SvFLAGS(av) &= ~SVpav_REAL)
105 #define AvREAL_only(av) (AvREIFY_off(av), SvFLAGS(av) |= SVpav_REAL)
106 #define AvREIFY(av) (SvFLAGS(av) & SVpav_REIFY)
107 #define AvREIFY_on(av) (SvFLAGS(av) |= SVpav_REIFY)
108 #define AvREIFY_off(av) (SvFLAGS(av) &= ~SVpav_REIFY)
109 #define AvREIFY_only(av) (AvREAL_off(av), SvFLAGS(av) |= SVpav_REIFY)
111 #define AvREALISH(av) (SvFLAGS(av) & (SVpav_REAL|SVpav_REIFY))
113 #define AvFILL(av) ((SvRMAGICAL((SV *) (av))) \
114 ? mg_size((SV *) av) : AvFILLp(av))
116 #define NEGATIVE_INDICES_VAR "NEGATIVE_INDICES"
120 * c-indentation-style: bsd
122 * indent-tabs-mode: t
125 * ex: set ts=8 sts=4 sw=4 noet: