3 * Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2005, 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 */
16 SSize_t xav_fill; /* Index of last element present */
17 SSize_t xav_max; /* max index for which array has space */
19 IV xivu_iv; /* integer value or pv offset */
26 MAGIC* xmg_magic; /* linked list of magicalness */
27 HV* xmg_ourstash; /* Stash for our (when SvPAD_OUR is true) */
29 HV* xmg_stash; /* class package */
33 typedef struct xpvav xpvav_allocated;
36 SSize_t xav_fill; /* Index of last element present */
37 SSize_t xav_max; /* max index for which array has space */
39 IV xivu_iv; /* integer value or pv offset */
46 MAGIC* xmg_magic; /* linked list of magicalness */
47 HV* xmg_ourstash; /* Stash for our (when SvPAD_OUR is true) */
49 HV* xmg_stash; /* class package */
54 #define xav_alloc xiv_u.xivu_p1
57 /* SVpav_REAL is set for all AVs whose xav_array contents are refcounted.
58 * Some things like "@_" and the scratchpad list do not set this, to
59 * indicate that they are cheating (for efficiency) by not refcounting
62 * SVpav_REIFY is only meaningful on such "fake" AVs (i.e. where SVpav_REAL
63 * is not set). It indicates that the fake AV is capable of becoming
64 * real if the array needs to be modified in some way. Functions that
65 * modify fake AVs check both flags to call av_reify() as appropriate.
67 * Note that the Perl stack and @DB::args have neither flag set. (Thus,
68 * items that go on the stack are never refcounted.)
70 * These internal details are subject to change any time. AV
71 * manipulations external to perl should not care about any of this.
78 =for apidoc AmU||Nullav
81 =head1 Array Manipulation Functions
83 =for apidoc Am|int|AvFILL|AV* av
84 Same as C<av_len()>. Deprecated, use C<av_len()> instead.
89 #define Nullav Null(AV*)
91 #define AvARRAY(av) ((av)->sv_u.svu_array)
92 #define AvALLOC(av) (*((SV***)&((XPVAV*) SvANY(av))->xav_alloc))
93 #define AvMAX(av) ((XPVAV*) SvANY(av))->xav_max
94 #define AvFILLp(av) ((XPVAV*) SvANY(av))->xav_fill
95 #define AvARYLEN(av) (*Perl_av_arylen_p(aTHX_ (AV*)av))
97 #define AvREAL(av) (SvFLAGS(av) & SVpav_REAL)
98 #define AvREAL_on(av) (SvFLAGS(av) |= SVpav_REAL)
99 #define AvREAL_off(av) (SvFLAGS(av) &= ~SVpav_REAL)
100 #define AvREAL_only(av) (AvREIFY_off(av), SvFLAGS(av) |= SVpav_REAL)
101 #define AvREIFY(av) (SvFLAGS(av) & SVpav_REIFY)
102 #define AvREIFY_on(av) (SvFLAGS(av) |= SVpav_REIFY)
103 #define AvREIFY_off(av) (SvFLAGS(av) &= ~SVpav_REIFY)
104 #define AvREIFY_only(av) (AvREAL_off(av), SvFLAGS(av) |= SVpav_REIFY)
106 #define AvREALISH(av) (SvFLAGS(av) & (SVpav_REAL|SVpav_REIFY))
108 #define AvFILL(av) ((SvRMAGICAL((SV *) (av))) \
109 ? mg_size((SV *) av) : AvFILLp(av))
111 #define NEGATIVE_INDICES_VAR "NEGATIVE_INDICES"
115 * c-indentation-style: bsd
117 * indent-tabs-mode: t
120 * ex: set ts=8 sts=4 sw=4 noet: