This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix a compilation warning created when RX_PRELEN() was changed to
[perl5.git] / av.h
CommitLineData
a0d0e21e 1/* av.h
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
bc641c27 4 * 2000, 2001, 2002, 2005, 2006, 2007, by Larry Wall and others
79072805
LW
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 *
79072805
LW
9 */
10
20f4945e
MHM
11#define _XPVAV_ALLOCATED_HEAD \
12 SSize_t xav_fill; /* Index of last element present */ \
13 SSize_t xav_max /* max index for which array has space */
14
15#define _XPVAV_HEAD \
16 union _xnvu xnv_u; \
17 _XPVAV_ALLOCATED_HEAD
18
79072805 19struct xpvav {
20f4945e
MHM
20 _XPVAV_HEAD;
21 _XPVMG_HEAD;
79072805
LW
22};
23
9f1501b2 24typedef struct {
20f4945e
MHM
25 _XPVAV_ALLOCATED_HEAD;
26 _XPVMG_HEAD;
9f1501b2 27} xpvav_allocated;
59813432 28
20f4945e
MHM
29#undef _XPVAV_ALLOCATED_HEAD
30#undef _XPVAV_HEAD
31
e4305a63 32/* SV** xav_alloc; */
311a25d9 33#define xav_alloc xiv_u.xivu_p1
e4305a63 34/* SV* xav_arylen; */
61b858cf 35
8c18259e 36/* SVpav_REAL is set for all AVs whose xav_array contents are refcounted.
61b858cf
GS
37 * Some things like "@_" and the scratchpad list do not set this, to
38 * indicate that they are cheating (for efficiency) by not refcounting
39 * the AV's contents.
40 *
8c18259e 41 * SVpav_REIFY is only meaningful on such "fake" AVs (i.e. where SVpav_REAL
61b858cf
GS
42 * is not set). It indicates that the fake AV is capable of becoming
43 * real if the array needs to be modified in some way. Functions that
44 * modify fake AVs check both flags to call av_reify() as appropriate.
45 *
3ddcf04c
GS
46 * Note that the Perl stack and @DB::args have neither flag set. (Thus,
47 * items that go on the stack are never refcounted.)
61b858cf
GS
48 *
49 * These internal details are subject to change any time. AV
50 * manipulations external to perl should not care about any of this.
51 * GSAR 1999-09-10
52 */
79072805 53
954c1994 54/*
ccfc67b7
JH
55=head1 Handy Values
56
954c1994
GS
57=for apidoc AmU||Nullav
58Null AV pointer.
59
ccfc67b7
JH
60=head1 Array Manipulation Functions
61
954c1994
GS
62=for apidoc Am|int|AvFILL|AV* av
63Same as C<av_len()>. Deprecated, use C<av_len()> instead.
64
65=cut
66*/
67
79072805
LW
68#define Nullav Null(AV*)
69
339049b0 70#define AvARRAY(av) ((av)->sv_u.svu_array)
e4305a63 71#define AvALLOC(av) (*((SV***)&((XPVAV*) SvANY(av))->xav_alloc))
79072805 72#define AvMAX(av) ((XPVAV*) SvANY(av))->xav_max
93965878 73#define AvFILLp(av) ((XPVAV*) SvANY(av))->xav_fill
a3874608 74#define AvARYLEN(av) (*Perl_av_arylen_p(aTHX_ (AV*)av))
79072805 75
11ca45c0
NC
76#define AvREAL(av) (SvFLAGS(av) & SVpav_REAL)
77#define AvREAL_on(av) (SvFLAGS(av) |= SVpav_REAL)
78#define AvREAL_off(av) (SvFLAGS(av) &= ~SVpav_REAL)
79#define AvREAL_only(av) (AvREIFY_off(av), SvFLAGS(av) |= SVpav_REAL)
80#define AvREIFY(av) (SvFLAGS(av) & SVpav_REIFY)
81#define AvREIFY_on(av) (SvFLAGS(av) |= SVpav_REIFY)
82#define AvREIFY_off(av) (SvFLAGS(av) &= ~SVpav_REIFY)
83#define AvREIFY_only(av) (AvREAL_off(av), SvFLAGS(av) |= SVpav_REIFY)
a0d0e21e 84
11ca45c0 85#define AvREALISH(av) (SvFLAGS(av) & (SVpav_REAL|SVpav_REIFY))
93965878
NIS
86
87#define AvFILL(av) ((SvRMAGICAL((SV *) (av))) \
a60c0954 88 ? mg_size((SV *) av) : AvFILLp(av))
a0d0e21e 89
6f12eb6d 90#define NEGATIVE_INDICES_VAR "NEGATIVE_INDICES"
102d3b8a
NC
91
92/*
ac572bf4
NC
93=for apidoc newAV
94
95Creates a new AV. The reference count is set to 1.
96
97=cut
98*/
99
100#define newAV() ((AV *)newSV_type(SVt_PVAV))
101
102/*
102d3b8a
NC
103 * Local variables:
104 * c-indentation-style: bsd
105 * c-basic-offset: 4
106 * indent-tabs-mode: t
107 * End:
108 *
109 * ex: set ts=8 sts=4 sw=4 noet:
110 */