3 * Copyright (c) 1991-1999, Larry Wall
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.
11 char* xav_array; /* pointer to first array element */
12 SSize_t xav_fill; /* Index of last element present */
13 SSize_t xav_max; /* Number of elements for which array has space */
14 IV xof_off; /* ptr is incremented by offset */
15 NV xnv_nv; /* numeric value, if any */
16 MAGIC* xmg_magic; /* magic for scalar array */
17 HV* xmg_stash; /* class package */
19 SV** xav_alloc; /* pointer to malloced string */
25 /* AVf_REAL is set for all AVs whose xav_array contents are refcounted.
26 * Some things like "@_" and the scratchpad list do not set this, to
27 * indicate that they are cheating (for efficiency) by not refcounting
30 * AVf_REIFY is only meaningful on such "fake" AVs (i.e. where AVf_REAL
31 * is not set). It indicates that the fake AV is capable of becoming
32 * real if the array needs to be modified in some way. Functions that
33 * modify fake AVs check both flags to call av_reify() as appropriate.
35 * Note that the Perl stack has neither flag set. (Thus, items that go
36 * on the stack are never refcounted.)
38 * These internal details are subject to change any time. AV
39 * manipulations external to perl should not care about any of this.
42 #define AVf_REAL 1 /* free old entries */
43 #define AVf_REIFY 2 /* can become real */
45 /* XXX this is not used anywhere */
46 #define AVf_REUSED 4 /* got undeffed--don't turn old memory into SVs now */
48 #define Nullav Null(AV*)
50 #define AvARRAY(av) ((SV**)((XPVAV*) SvANY(av))->xav_array)
51 #define AvALLOC(av) ((XPVAV*) SvANY(av))->xav_alloc
52 #define AvMAX(av) ((XPVAV*) SvANY(av))->xav_max
53 #define AvFILLp(av) ((XPVAV*) SvANY(av))->xav_fill
54 #define AvARYLEN(av) ((XPVAV*) SvANY(av))->xav_arylen
55 #define AvFLAGS(av) ((XPVAV*) SvANY(av))->xav_flags
57 #define AvREAL(av) (AvFLAGS(av) & AVf_REAL)
58 #define AvREAL_on(av) (AvFLAGS(av) |= AVf_REAL)
59 #define AvREAL_off(av) (AvFLAGS(av) &= ~AVf_REAL)
60 #define AvREIFY(av) (AvFLAGS(av) & AVf_REIFY)
61 #define AvREIFY_on(av) (AvFLAGS(av) |= AVf_REIFY)
62 #define AvREIFY_off(av) (AvFLAGS(av) &= ~AVf_REIFY)
63 #define AvREUSED(av) (AvFLAGS(av) & AVf_REUSED)
64 #define AvREUSED_on(av) (AvFLAGS(av) |= AVf_REUSED)
65 #define AvREUSED_off(av) (AvFLAGS(av) &= ~AVf_REUSED)
67 #define AvREALISH(av) (AvFLAGS(av) & (AVf_REAL|AVf_REIFY))
69 #define AvFILL(av) ((SvRMAGICAL((SV *) (av))) \
70 ? mg_size((SV *) av) : AvFILLp(av))