Merge commit '5b7632331e7551ac202bbaba37c572b96a791c6e'
[bpt/guile.git] / libguile / pairs.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
e81d98ec
DH
3#ifndef SCM_PAIRS_H
4#define SCM_PAIRS_H
0527e687 5
730af462 6/* Copyright (C) 1995,1996,2000,2001, 2004, 2006, 2008, 2009, 2010, 2012 Free Software Foundation, Inc.
0527e687 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
0527e687 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
0527e687 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
1bbd0b84 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
0f2d19dd 27
730af462
AW
28#include "libguile/gc.h"
29
0f2d19dd
JB
30\f
31
e81d98ec 32#if (SCM_DEBUG_PAIR_ACCESSES == 1)
e81d98ec 33# define SCM_VALIDATE_PAIR(cell, expr) \
6fcc7d48 34 ((!scm_is_pair (cell) ? scm_error_pair_access (cell), 0 : 0), (expr))
e81d98ec
DH
35#else
36# define SCM_VALIDATE_PAIR(cell, expr) (expr)
37#endif
38
45f4cbdf
MW
39/*
40 * Use scm_is_null_and_not_nil if it's important (for correctness)
92a61010 41 * that #nil must NOT be considered null.
45f4cbdf
MW
42 */
43#define scm_is_null_and_not_nil(x) (scm_is_eq ((x), SCM_EOL))
44
45/*
92a61010
AW
46 * Use scm_is_null_assume_not_nil if
47#nil will never be tested,
45f4cbdf
MW
48 * for increased efficiency.
49 */
50#define scm_is_null_assume_not_nil(x) (scm_is_eq ((x), SCM_EOL))
51
52/*
53 * See the comments preceeding the definitions of SCM_BOOL_F and
54 * SCM_MATCHES_BITS_IN_COMMON in tags.h for more information on
55 * how the following macro works.
56 */
c1b7c940 57#define scm_is_null_or_nil(x) \
45f4cbdf 58 (SCM_MATCHES_BITS_IN_COMMON ((x), SCM_ELISP_NIL, SCM_EOL))
45f4cbdf 59
cd038da5 60
8a4ed2dd
AW
61\f
62
63/* Older spellings for these null, nil, and pair predicates. */
cd038da5
AW
64#define SCM_NILP(x) (scm_is_eq ((x), SCM_ELISP_NIL))
65#define SCM_NULL_OR_NIL_P(x) (scm_is_null_or_nil (x))
8a4ed2dd
AW
66#define SCM_NULLP(x) (scm_is_null (x))
67#define SCM_NNULLP(x) (!scm_is_null (x))
68#define SCM_CONSP(x) (scm_is_pair (x))
69#define SCM_NCONSP(x) (!SCM_CONSP (x))
cd038da5
AW
70
71
8a4ed2dd
AW
72\f
73
92a61010 74/* #nil is null. */
2533f10b 75#define scm_is_null(x) (scm_is_null_or_nil(x))
0f2d19dd 76
e81d98ec
DH
77#define SCM_CAR(x) (SCM_VALIDATE_PAIR (x, SCM_CELL_OBJECT_0 (x)))
78#define SCM_CDR(x) (SCM_VALIDATE_PAIR (x, SCM_CELL_OBJECT_1 (x)))
76a369d9 79
e81d98ec
DH
80#define SCM_SETCAR(x, v) (SCM_VALIDATE_PAIR (x, SCM_SET_CELL_OBJECT_0 ((x), (v))))
81#define SCM_SETCDR(x, v) (SCM_VALIDATE_PAIR (x, SCM_SET_CELL_OBJECT_1 ((x), (v))))
24e68a57 82
0f2d19dd
JB
83#define SCM_CAAR(OBJ) SCM_CAR (SCM_CAR (OBJ))
84#define SCM_CDAR(OBJ) SCM_CDR (SCM_CAR (OBJ))
85#define SCM_CADR(OBJ) SCM_CAR (SCM_CDR (OBJ))
86#define SCM_CDDR(OBJ) SCM_CDR (SCM_CDR (OBJ))
87
88#define SCM_CAAAR(OBJ) SCM_CAR (SCM_CAR (SCM_CAR (OBJ)))
89#define SCM_CDAAR(OBJ) SCM_CDR (SCM_CAR (SCM_CAR (OBJ)))
90#define SCM_CADAR(OBJ) SCM_CAR (SCM_CDR (SCM_CAR (OBJ)))
91#define SCM_CDDAR(OBJ) SCM_CDR (SCM_CDR (SCM_CAR (OBJ)))
92#define SCM_CAADR(OBJ) SCM_CAR (SCM_CAR (SCM_CDR (OBJ)))
93#define SCM_CDADR(OBJ) SCM_CDR (SCM_CAR (SCM_CDR (OBJ)))
94#define SCM_CADDR(OBJ) SCM_CAR (SCM_CDR (SCM_CDR (OBJ)))
95#define SCM_CDDDR(OBJ) SCM_CDR (SCM_CDR (SCM_CDR (OBJ)))
96
97#define SCM_CAAAAR(OBJ) SCM_CAR (SCM_CAR (SCM_CAR (SCM_CAR (OBJ))))
98#define SCM_CDAAAR(OBJ) SCM_CDR (SCM_CAR (SCM_CAR (SCM_CAR (OBJ))))
99#define SCM_CADAAR(OBJ) SCM_CAR (SCM_CDR (SCM_CAR (SCM_CAR (OBJ))))
100#define SCM_CDDAAR(OBJ) SCM_CDR (SCM_CDR (SCM_CAR (SCM_CAR (OBJ))))
101#define SCM_CAADAR(OBJ) SCM_CAR (SCM_CAR (SCM_CDR (SCM_CAR (OBJ))))
102#define SCM_CDADAR(OBJ) SCM_CDR (SCM_CAR (SCM_CDR (SCM_CAR (OBJ))))
103#define SCM_CADDAR(OBJ) SCM_CAR (SCM_CDR (SCM_CDR (SCM_CAR (OBJ))))
104#define SCM_CDDDAR(OBJ) SCM_CDR (SCM_CDR (SCM_CDR (SCM_CAR (OBJ))))
105#define SCM_CAAADR(OBJ) SCM_CAR (SCM_CAR (SCM_CAR (SCM_CDR (OBJ))))
106#define SCM_CDAADR(OBJ) SCM_CDR (SCM_CAR (SCM_CAR (SCM_CDR (OBJ))))
107#define SCM_CADADR(OBJ) SCM_CAR (SCM_CDR (SCM_CAR (SCM_CDR (OBJ))))
108#define SCM_CDDADR(OBJ) SCM_CDR (SCM_CDR (SCM_CAR (SCM_CDR (OBJ))))
109#define SCM_CAADDR(OBJ) SCM_CAR (SCM_CAR (SCM_CDR (SCM_CDR (OBJ))))
110#define SCM_CDADDR(OBJ) SCM_CDR (SCM_CAR (SCM_CDR (SCM_CDR (OBJ))))
111#define SCM_CADDDR(OBJ) SCM_CAR (SCM_CDR (SCM_CDR (SCM_CDR (OBJ))))
112#define SCM_CDDDDR(OBJ) SCM_CDR (SCM_CDR (SCM_CDR (SCM_CDR (OBJ))))
113
0f2d19dd 114\f
1cc91f1b 115
e81d98ec 116#if (SCM_DEBUG_PAIR_ACCESSES == 1)
33b001fd 117SCM_API void scm_error_pair_access (SCM);
e81d98ec 118#endif
6fcc7d48 119
730af462
AW
120SCM_INLINE int scm_is_pair (SCM x);
121SCM_INLINE SCM scm_cons (SCM x, SCM y);
122SCM_INLINE SCM scm_car (SCM x);
123SCM_INLINE SCM scm_cdr (SCM x);
124
125#if SCM_CAN_INLINE || defined SCM_INLINE_C_IMPLEMENTING_INLINES
126/* Return a newly allocated pair whose car is @var{x} and whose cdr is
127 @var{y}. The pair is guaranteed to be different (in the sense of
128 @code{eq?}) from every previously existing object. */
129SCM_INLINE_IMPLEMENTATION SCM
130scm_cons (SCM x, SCM y)
131{
132 return scm_cell (SCM_UNPACK (x), SCM_UNPACK (y));
133}
134
135SCM_INLINE_IMPLEMENTATION int
136scm_is_pair (SCM x)
137{
138 /* The following "workaround_for_gcc_295" avoids bad code generated by
139 i386 gcc 2.95.4 (the Debian packaged 2.95.4-24 at least).
140
141 Under the default -O2 the inlined SCM_I_CONSP test gets "optimized" so
142 the fetch of the tag word from x is done before confirming it's a
143 non-immediate (SCM_NIMP). Needless to say that bombs badly if x is a
144 immediate. This was seen to afflict scm_srfi1_split_at and something
145 deep in the bowels of ceval(). In both cases segvs resulted from
146 deferencing a random immediate value. srfi-1.test exposes the problem
147 through a short list, the immediate being SCM_EOL in that case.
148 Something in syntax.test exposed the ceval() problem.
149
150 Just "volatile SCM workaround_for_gcc_295 = lst" is enough to avoid the
151 problem, without even using that variable. The "w=w" is just to
152 prevent a warning about it being unused.
153 */
154#if defined (__GNUC__) && __GNUC__ == 2 && __GNUC_MINOR__ == 95
155 volatile SCM workaround_for_gcc_295 = x;
156 workaround_for_gcc_295 = workaround_for_gcc_295;
157#endif
158
159 return SCM_I_CONSP (x);
160}
161
162SCM_INLINE_IMPLEMENTATION SCM
163scm_car (SCM x)
164{
165 if (SCM_UNLIKELY (!scm_is_pair (x)))
166 scm_wrong_type_arg_msg ("car", 0, x, "pair");
167 return SCM_CAR (x);
168}
169
170SCM_INLINE_IMPLEMENTATION SCM
171scm_cdr (SCM x)
172{
173 if (SCM_UNLIKELY (!scm_is_pair (x)))
174 scm_wrong_type_arg_msg ("cdr", 0, x, "pair");
175 return SCM_CDR (x);
176}
177#endif
178
33b001fd
MV
179SCM_API SCM scm_cons2 (SCM w, SCM x, SCM y);
180SCM_API SCM scm_pair_p (SCM x);
181SCM_API SCM scm_set_car_x (SCM pair, SCM value);
182SCM_API SCM scm_set_cdr_x (SCM pair, SCM value);
ddda5e8f 183
f36878ba
AW
184SCM_API SCM scm_cddr (SCM x);
185SCM_API SCM scm_cdar (SCM x);
186SCM_API SCM scm_cadr (SCM x);
187SCM_API SCM scm_caar (SCM x);
188SCM_API SCM scm_cdddr (SCM x);
189SCM_API SCM scm_cddar (SCM x);
190SCM_API SCM scm_cdadr (SCM x);
191SCM_API SCM scm_cdaar (SCM x);
192SCM_API SCM scm_caddr (SCM x);
193SCM_API SCM scm_cadar (SCM x);
194SCM_API SCM scm_caadr (SCM x);
195SCM_API SCM scm_caaar (SCM x);
196SCM_API SCM scm_cddddr (SCM x);
197SCM_API SCM scm_cdddar (SCM x);
198SCM_API SCM scm_cddadr (SCM x);
199SCM_API SCM scm_cddaar (SCM x);
200SCM_API SCM scm_cdaddr (SCM x);
201SCM_API SCM scm_cdadar (SCM x);
202SCM_API SCM scm_cdaadr (SCM x);
203SCM_API SCM scm_cdaaar (SCM x);
204SCM_API SCM scm_cadddr (SCM x);
205SCM_API SCM scm_caddar (SCM x);
206SCM_API SCM scm_cadadr (SCM x);
207SCM_API SCM scm_cadaar (SCM x);
208SCM_API SCM scm_caaddr (SCM x);
209SCM_API SCM scm_caadar (SCM x);
210SCM_API SCM scm_caaadr (SCM x);
211SCM_API SCM scm_caaaar (SCM x);
ddda5e8f 212
102dbb6f 213SCM_INTERNAL void scm_init_pairs (void);
1cc91f1b 214
e81d98ec 215#endif /* SCM_PAIRS_H */
89e00824
ML
216
217/*
218 Local Variables:
219 c-file-style: "gnu"
220 End:
221*/