-Wall is intolerably noisy with icc.
[p5sagit/p5-mst-13.2.git] / av.h
CommitLineData
a0d0e21e 1/* av.h
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
102d3b8a 4 * 2000, 2001, 2002, 2005, by Larry Wall and others
79072805 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 9 */
10
11struct xpvav {
102d3b8a 12 IV this_space;
93965878 13 SSize_t xav_fill; /* Index of last element present */
d18c6117 14 SSize_t xav_max; /* max index for which array has space */
e4305a63 15 union {
e4305a63 16 struct {
17 void *xnv_p1; /* pointer to beginning of C array of SVs */
18 union {
19 void *xnv_p2;
20 IV xnv_i2;
21 } xnv_u2;
22 } xnv_s;
199f3245 23 NV xnvu_nv;
e4305a63 24 } xnv_u;
79072805 25 MAGIC* xmg_magic; /* magic for scalar array */
26 HV* xmg_stash; /* class package */
79072805 27};
28
209b62a3 29#if !defined(PERL_EXPERIMENTAL_LAYOUT)
59813432 30typedef struct xpvav xpvav_allocated;
9f1501b2 31#else
32typedef struct {
33 SSize_t xav_fill; /* Index of last element present */
34 SSize_t xav_max; /* max index for which array has space */
35 union {
36 NV xnvu_nv;
37 struct {
38 void *xnv_p1; /* pointer to beginning of C array of SVs */
39 union {
40 void *xnv_p2;
41 IV xnv_i2;
42 } xnv_u2;
43 } xnv_s;
44 } xnv_u;
45 MAGIC* xmg_magic; /* magic for scalar array */
46 HV* xmg_stash; /* class package */
47} xpvav_allocated;
48#endif
59813432 49
e4305a63 50/* SV** xav_alloc; */
51#define xav_alloc xnv_u.xnv_s.xnv_p1
52/* SV* xav_arylen; */
53#define xav_arylen xnv_u.xnv_s.xnv_u2.xnv_p2
61b858cf 54
55/* AVf_REAL is set for all AVs whose xav_array contents are refcounted.
56 * Some things like "@_" and the scratchpad list do not set this, to
57 * indicate that they are cheating (for efficiency) by not refcounting
58 * the AV's contents.
59 *
60 * AVf_REIFY is only meaningful on such "fake" AVs (i.e. where AVf_REAL
61 * is not set). It indicates that the fake AV is capable of becoming
62 * real if the array needs to be modified in some way. Functions that
63 * modify fake AVs check both flags to call av_reify() as appropriate.
64 *
3ddcf04c 65 * Note that the Perl stack and @DB::args have neither flag set. (Thus,
66 * items that go on the stack are never refcounted.)
61b858cf 67 *
68 * These internal details are subject to change any time. AV
69 * manipulations external to perl should not care about any of this.
70 * GSAR 1999-09-10
71 */
79072805 72
954c1994 73/*
ccfc67b7 74=head1 Handy Values
75
954c1994 76=for apidoc AmU||Nullav
77Null AV pointer.
78
ccfc67b7 79=head1 Array Manipulation Functions
80
954c1994 81=for apidoc Am|int|AvFILL|AV* av
82Same as C<av_len()>. Deprecated, use C<av_len()> instead.
83
84=cut
85*/
86
79072805 87#define Nullav Null(AV*)
88
7b2c381c 89#define AvARRAY(av) ((av)->sv_u.sv_array)
e4305a63 90#define AvALLOC(av) (*((SV***)&((XPVAV*) SvANY(av))->xav_alloc))
79072805 91#define AvMAX(av) ((XPVAV*) SvANY(av))->xav_max
93965878 92#define AvFILLp(av) ((XPVAV*) SvANY(av))->xav_fill
e4305a63 93#define AvARYLEN(av) (*((SV**)&((XPVAV*) SvANY(av))->xav_arylen))
79072805 94
11ca45c0 95#define AvREAL(av) (SvFLAGS(av) & SVpav_REAL)
96#define AvREAL_on(av) (SvFLAGS(av) |= SVpav_REAL)
97#define AvREAL_off(av) (SvFLAGS(av) &= ~SVpav_REAL)
98#define AvREAL_only(av) (AvREIFY_off(av), SvFLAGS(av) |= SVpav_REAL)
99#define AvREIFY(av) (SvFLAGS(av) & SVpav_REIFY)
100#define AvREIFY_on(av) (SvFLAGS(av) |= SVpav_REIFY)
101#define AvREIFY_off(av) (SvFLAGS(av) &= ~SVpav_REIFY)
102#define AvREIFY_only(av) (AvREAL_off(av), SvFLAGS(av) |= SVpav_REIFY)
a0d0e21e 103
11ca45c0 104#define AvREALISH(av) (SvFLAGS(av) & (SVpav_REAL|SVpav_REIFY))
93965878 105
106#define AvFILL(av) ((SvRMAGICAL((SV *) (av))) \
a60c0954 107 ? mg_size((SV *) av) : AvFILLp(av))
a0d0e21e 108
6f12eb6d 109#define NEGATIVE_INDICES_VAR "NEGATIVE_INDICES"
102d3b8a 110
111/*
112 * Local variables:
113 * c-indentation-style: bsd
114 * c-basic-offset: 4
115 * indent-tabs-mode: t
116 * End:
117 *
118 * ex: set ts=8 sts=4 sw=4 noet:
119 */