1 /* Fundamental definitions for XEmacs Lisp interpreter -- union objects.
2 Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of XEmacs.
7 XEmacs is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with XEmacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Divergent from FSF. */
24 /* Definition of Lisp_Object type as a union.
25 The declaration order of the objects within the struct members
26 of the union is dependent on ENDIAN-ness and USE_MINIMAL_TAGBITS.
27 See lisp-disunion.h for more details. */
32 /* if non-valbits are at lower addresses */
33 #if defined(WORDS_BIGENDIAN) == defined(USE_MINIMAL_TAGBITS)
36 EMACS_UINT val : VALBITS;
38 unsigned int markbit: GCMARKBITS;
40 enum_field (Lisp_Type) type : GCTYPEBITS;
45 signed EMACS_INT val : INT_VALBITS;
46 unsigned int bits : INT_GCBITS;
51 EMACS_UINT val : INT_VALBITS;
52 unsigned int bits : INT_GCBITS;
54 #else /* non-valbits are at higher addresses */
57 enum_field (Lisp_Type) type : GCTYPEBITS;
59 unsigned int markbit: GCMARKBITS;
61 EMACS_UINT val : VALBITS;
66 unsigned int bits : INT_GCBITS;
67 signed EMACS_INT val : INT_VALBITS;
72 unsigned int bits : INT_GCBITS;
73 EMACS_UINT val : INT_VALBITS;
76 #endif /* non-valbits are at higher addresses */
81 /* This was formerly declared 'void *v' etc. but that causes
82 GCC to accept any (yes, any) pointer as the argument of
83 a function declared to accept a Lisp_Object. */
84 struct nosuchstruct *v;
85 CONST struct nosuchstruct *cv;
89 #define XCHARVAL(x) ((x).gu.val)
91 #ifdef USE_MINIMAL_TAGBITS
93 # define XSETINT(var, value) do { \
94 EMACS_INT xset_value = (value); \
95 Lisp_Object *xset_var = &(var); \
96 xset_var->s.bits = 1; \
97 xset_var->s.val = xset_value; \
99 # define XSETCHAR(var, value) do { \
100 Emchar xset_value = (value); \
101 Lisp_Object *xset_var = &(var); \
102 xset_var->gu.type = Lisp_Type_Char; \
103 xset_var->gu.val = xset_value; \
105 # define XSETOBJ(var, vartype, value) do { \
106 EMACS_UINT xset_value = (EMACS_UINT) (value); \
107 (var).ui = xset_value; \
109 # define XPNTRVAL(x) ((x).ui)
111 #else /* ! USE_MINIMAL_TAGBITS */
113 # define XSETOBJ(var, vartype, value) do { \
114 EMACS_UINT xset_value = (EMACS_UINT) (value); \
115 Lisp_Object *xset_var = &(var); \
116 xset_var->gu.type = (vartype); \
117 xset_var->gu.markbit = 0; \
118 xset_var->gu.val = xset_value; \
120 # define XSETINT(var, value) XSETOBJ (var, Lisp_Type_Int, value)
121 # define XSETCHAR(var, value) XSETOBJ (var, Lisp_Type_Char, value)
122 # define XPNTRVAL(x) ((x).gu.val)
124 #endif /* ! USE_MINIMAL_TAGBITS */
126 INLINE Lisp_Object make_int (EMACS_INT val);
128 make_int (EMACS_INT val)
135 INLINE Lisp_Object make_char (Emchar val);
137 make_char (Emchar val)
144 extern Lisp_Object Qnull_pointer, Qzero;
146 #define XREALINT(x) ((x).s.val)
147 #define XUINT(x) ((x).u.val)
148 #define XTYPE(x) ((x).gu.type)
149 #define XGCTYPE(x) XTYPE (x)
150 #define EQ(x,y) ((x).v == (y).v)
152 #ifdef USE_MINIMAL_TAGBITS
153 #define INTP(x) ((x).s.bits)
154 #define GC_EQ(x,y) EQ (x, y)
156 #define INTP(x) (XTYPE(x) == Lisp_Type_Int)
157 #define GC_EQ(x,y) ((x).gu.val == (y).gu.val && XTYPE (x) == XTYPE (y))
161 /* XMARKBIT accesses the markbit. Markbits are used only in
162 particular slots of particular structure types. Other markbits are
163 always zero. Outside of garbage collection, all mark bits are
165 # define XMARKBIT(x) ((x).gu.markbit)
166 # define XMARK(x) ((void) (XMARKBIT (x) = 1))
167 # define XUNMARK(x) ((void) (XMARKBIT (x) = 0))
169 # define XUNMARK(x) DO_NOTHING
172 /* Convert between a (void *) and a Lisp_Object, as when the
173 Lisp_Object is passed to a toolkit callback function */
174 #define VOID_TO_LISP(larg,varg) \
175 ((void) ((larg).v = (struct nosuchstruct *) (varg)))
176 #define CVOID_TO_LISP(larg,varg) \
177 ((void) ((larg).cv = (CONST struct nosuchstruct *) (varg)))
178 #define LISP_TO_VOID(larg) ((void *) ((larg).v))
179 #define LISP_TO_CVOID(larg) ((CONST void *) ((larg).cv))
181 /* Convert a Lisp_Object into something that can't be used as an
182 lvalue. Useful for type-checking. */
184 #define NON_LVALUE(larg) ({ (larg); })
186 /* Well, you can't really do it without using a function call, and
187 there's no real point in that; no-union-type is the rule, and that
188 will catch errors. */
189 #define NON_LVALUE(larg) (larg)