annotate src/lrecord.h @ 420:41dbb7a9d5f2 r21-2-18

Import from CVS: tag r21-2-18
author cvs
date Mon, 13 Aug 2007 11:24:09 +0200
parents 697ef44129c6
children 11054d720c21
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* The "lrecord" structure (header of a compound lisp object).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
24 #ifndef _XEMACS_LRECORD_H_
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
25 #define _XEMACS_LRECORD_H_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* The "lrecord" type of Lisp object is used for all object types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 other than a few simple ones. This allows many types to be
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
29 implemented but only a few bits required in a Lisp object for
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
30 type information. (The tradeoff is that each object has its
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
31 type marked in it, thereby increasing its size.) The first
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
32 four bytes of all lrecords is either a pointer to a struct
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
33 lrecord_implementation, which contains methods describing how
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
34 to process this object, or an index into an array of pointers
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
35 to struct lrecord_implementations plus some other data bits.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
37 Lrecords are of two types: straight lrecords, and lcrecords.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
38 Straight lrecords are used for those types of objects that have
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
39 their own allocation routines (typically allocated out of 2K chunks
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
40 of memory called `frob blocks'). These objects have a `struct
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
41 lrecord_header' at the top, containing only the bits needed to find
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
42 the lrecord_implementation for the object. There are special
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
43 routines in alloc.c to deal with each such object type.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
45 Lcrecords are used for less common sorts of objects that don't
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
46 do their own allocation. Each such object is malloc()ed
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
47 individually, and the objects are chained together through
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
48 a `next' pointer. Lcrecords have a `struct lcrecord_header'
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
49 at the top, which contains a `struct lrecord_header' and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
50 a `next' pointer, and are allocated using alloc_lcrecord().
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Creating a new lcrecord type is fairly easy; just follow the
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
53 lead of some existing type (e.g. hash tables). Note that you
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 do not need to supply all the methods (see below); reasonable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 defaults are provided for many of them. Alternatively, if you're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 just looking for a way of encapsulating data (which possibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 could contain Lisp_Objects in it), you may well be able to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 the opaque type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 struct lrecord_header
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
61 {
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 207
diff changeset
62 /* index into lrecord_implementations_table[] */
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
63 unsigned type :8;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
64 /* 1 if the object is marked during GC. */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
65 unsigned mark :1;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
66 /* 1 if the object resides in read-only space */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
67 unsigned c_readonly : 1;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
68 /* 1 if the object is readonly from lisp */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
69 unsigned lisp_readonly : 1;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
70 };
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 207
diff changeset
71
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 213
diff changeset
72 struct lrecord_implementation;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
73 int lrecord_type_index (CONST struct lrecord_implementation *implementation);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
74
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
75 # define set_lheader_implementation(header,imp) do { \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
76 struct lrecord_header* SLI_header = (header); \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
77 (SLI_header)->type = lrecord_type_index (imp); \
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
78 (SLI_header)->mark = 0; \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
79 (SLI_header)->c_readonly = 0; \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
80 (SLI_header)->lisp_readonly = 0; \
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
81 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 struct lcrecord_header
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
84 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
85 struct lrecord_header lheader;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
86
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
87 /* The `next' field is normally used to chain all lrecords together
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
88 so that the GC can find (and free) all of them.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
89 `alloc_lcrecord' threads records together.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
90
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
91 The `next' field may be used for other purposes as long as some
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
92 other mechanism is provided for letting the GC do its work.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
93
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
94 For example, the event and marker object types allocate members
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
95 out of memory chunks, and are able to find all unmarked members
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
96 by sweeping through the elements of the list of chunks. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
97 struct lcrecord_header *next;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
98
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
99 /* The `uid' field is just for debugging/printing convenience.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
100 Having this slot doesn't hurt us much spacewise, since an
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
101 lcrecord already has the above slots plus malloc overhead. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
102 unsigned int uid :31;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
103
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
104 /* The `free' field is a flag that indicates whether this lcrecord
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
105 is on a "free list". Free lists are used to minimize the number
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
106 of calls to malloc() when we're repeatedly allocating and freeing
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
107 a number of the same sort of lcrecord. Lcrecords on a free list
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
108 always get marked in a different fashion, so we can use this flag
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
109 as a sanity check to make sure that free lists only have freed
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
110 lcrecords and there are no freed lcrecords elsewhere. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
111 unsigned int free :1;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
112 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* Used for lcrecords in an lcrecord-list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 struct free_lcrecord_header
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
116 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
117 struct lcrecord_header lcheader;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
118 Lisp_Object chain;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
119 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
121 /* see alloc.c for an explanation */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
122 Lisp_Object this_one_is_unmarkable (Lisp_Object obj,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
123 void (*markobj) (Lisp_Object));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 struct lrecord_implementation
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
126 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
127 CONST char *name;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
128 /* This function is called at GC time, to make sure that all Lisp_Objects
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
129 pointed to by this object get properly marked. It should call
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
130 the mark_object function on all Lisp_Objects in the object. If
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
131 the return value is non-nil, it should be a Lisp_Object to be
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
132 marked (don't call the mark_object function explicitly on it,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
133 because the GC routines will do this). Doing it this way reduces
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
134 recursion, so the object returned should preferably be the one
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
135 with the deepest level of Lisp_Object pointers. This function
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
136 can be NULL, meaning no GC marking is necessary. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
137 Lisp_Object (*marker) (Lisp_Object, void (*mark_object) (Lisp_Object));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
138 /* This can be NULL if the object is an lcrecord; the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
139 default_object_printer() in print.c will be used. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
140 void (*printer) (Lisp_Object, Lisp_Object printcharfun, int escapeflag);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
141 /* This function is called at GC time when the object is about to
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
142 be freed, and at dump time (FOR_DISKSAVE will be non-zero in this
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
143 case). It should perform any necessary cleanup (e.g. freeing
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
144 malloc()ed memory. This can be NULL, meaning no special
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
145 finalization is necessary.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
146
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
147 WARNING: remember that the finalizer is called at dump time even
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
148 though the object is not being freed. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
149 void (*finalizer) (void *header, int for_disksave);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
150 /* This can be NULL, meaning compare objects with EQ(). */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
151 int (*equal) (Lisp_Object obj1, Lisp_Object obj2, int depth);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
152 /* This can be NULL, meaning use the Lisp_Object itself as the hash;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
153 but *only* if the `equal' function is EQ (if two objects are
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
154 `equal', they *must* hash to the same value or the hashing won't
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
155 work). */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
156 unsigned long (*hash) (Lisp_Object, int);
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
157
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
158 /* External data layout description */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
159 const struct lrecord_description *description;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
160
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
161 Lisp_Object (*getprop) (Lisp_Object obj, Lisp_Object prop);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
162 int (*putprop) (Lisp_Object obj, Lisp_Object prop, Lisp_Object val);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
163 int (*remprop) (Lisp_Object obj, Lisp_Object prop);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
164 Lisp_Object (*plist) (Lisp_Object obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
166 /* Only one of these is non-0. If both are 0, it means that this type
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
167 is not instantiable by alloc_lcrecord(). */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
168 size_t static_size;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
169 size_t (*size_in_bytes_method) (CONST void *header);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
170 /* A unique subtag-code (dynamically) assigned to this datatype. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
171 /* (This is a pointer so the rest of this structure can be read-only.) */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
172 int *lrecord_type_index;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
173 /* A "basic" lrecord is any lrecord that's not an lcrecord, i.e.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
174 one that does not have an lcrecord_header at the front and which
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
175 is (usually) allocated in frob blocks. We only use this flag for
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
176 some consistency checking, and that only when error-checking is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
177 enabled. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
178 int basic_p;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
179 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
181 extern CONST struct lrecord_implementation *lrecord_implementations_table[];
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 207
diff changeset
182
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
183 #define XRECORD_LHEADER_IMPLEMENTATION(obj) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
184 (lrecord_implementations_table[XRECORD_LHEADER (obj)->type])
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
185 #define LHEADER_IMPLEMENTATION(lh) (lrecord_implementations_table[(lh)->type])
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 207
diff changeset
186
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 extern int gc_in_progress;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
189 #define MARKED_RECORD_P(obj) (gc_in_progress && XRECORD_LHEADER (obj)->mark)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
190 #define MARKED_RECORD_HEADER_P(lheader) ((lheader)->mark)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
191 #define MARK_RECORD_HEADER(lheader) ((void) ((lheader)->mark = 1))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
192 #define UNMARK_RECORD_HEADER(lheader) ((void) ((lheader)->mark = 0))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
193
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
194 #define UNMARKABLE_RECORD_HEADER_P(lheader) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
195 (LHEADER_IMPLEMENTATION (lheader)->marker == this_one_is_unmarkable)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
196
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
197 #define C_READONLY_RECORD_HEADER_P(lheader) ((lheader)->c_readonly)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
198 #define LISP_READONLY_RECORD_HEADER_P(lheader) ((lheader)->lisp_readonly)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
199 #define SET_C_READONLY_RECORD_HEADER(lheader) \
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
200 ((void) ((lheader)->c_readonly = (lheader)->lisp_readonly = 1))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
201 #define SET_LISP_READONLY_RECORD_HEADER(lheader) \
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
202 ((void) ((lheader)->lisp_readonly = 1))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
203
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
204 /* External description stuff
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
205
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
206 A lrecord external description is an array of values. The first
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
207 value of each line is a type, the second the offset in the lrecord
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
208 structure. Following values are parameters, their presence, type
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
209 and number is type-dependant.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
210
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
211 The description ends with a "XD_END" record.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
212
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
213 Some example descriptions :
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
214 static const struct lrecord_description cons_description[] = {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
215 { XD_LISP_OBJECT, offsetof(struct Lisp_Cons, car), 2 },
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
216 { XD_END }
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
217 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
218
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
219 Which means "two lisp objects starting at the 'car' element"
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
220
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
221 static const struct lrecord_description string_description[] = {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
222 { XD_STRING_DATA, offsetof(Lisp_String, data) },
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
223 { XD_LISP_OBJECT, offsetof(Lisp_String, plist), 1 },
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
224 { XD_END }
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
225 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
226 "A string data pointer at 'data', one lisp object at 'plist'"
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
227
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
228 The existing types :
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
229 XD_LISP_OBJECT
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
230 Lisp objects. The third element is the count. This is also the type to use
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
231 for pointers to other lrecords.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
232
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
233 XD_STRING_DATA
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
234 Pointer to string data.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
235
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
236 XD_OPAQUE_PTR
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
237 Pointer to undumpable data. Must be NULL when dumping.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
238
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
239 XD_STRUCT_PTR
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
240 Pointer to described struct. Parameters are number of structures and
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
241 struct_description.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
242
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
243 XD_OPAQUE_DATA_PTR
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
244 Pointer to dumpable opaque data. Parameter is the size of the data.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
245 Pointed data must be relocatable without changes.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
246
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
247 XD_SIZE_T
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
248 size_t value. Used for counts.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
249
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
250 XD_INT
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
251 int value. Used for counts.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
252
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
253 XD_LONG
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
254 long value. Used for counts.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
255
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
256 XD_END
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
257 Special type indicating the end of the array.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
258
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
259
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
260 Special macros:
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
261 XD_INDIRECT(line)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
262 Usable where a "count" or "size" is requested. Gives the value of the element
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
263 which is at line number 'line' in the description (count starts at zero).
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
264
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
265 XD_PARENT_INDIRECT(line)
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
266 Same as XD_INDIRECT but the element number refers to the parent structure.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
267 Usable only in struct descriptions.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
268 */
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
269
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
270 enum lrecord_description_type {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
271 XD_LISP_OBJECT,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
272 XD_STRING_DATA,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
273 XD_OPAQUE_PTR,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
274 XD_STRUCT_PTR,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
275 XD_OPAQUE_DATA_PTR,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
276 XD_SIZE_T,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
277 XD_INT,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
278 XD_LONG,
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
279 XD_END
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
280 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
281
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
282 struct lrecord_description {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
283 enum lrecord_description_type type;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
284 int offset;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
285 EMACS_INT data1;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
286 const struct struct_description *data2;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
287 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
288
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
289 struct struct_description {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
290 size_t size;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
291 const struct lrecord_description *description;
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
292 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
293
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
294 #define XD_INDIRECT(count) (-1-(count))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
295 #define XD_PARENT_INDIRECT(count) (-1000-(count))
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
296
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
297 #define XD_DYNARR_DESC(base_type, sub_desc) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
298 { XD_STRUCT_PTR, offsetof(base_type, base), XD_INDIRECT(1), sub_desc }, \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
299 { XD_INT, offsetof(base_type, max) }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
300
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
301 /* Declaring the following structures as const puts them in the
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
302 text (read-only) segment, which makes debugging inconvenient
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
303 because this segment is not mapped when processing a core-
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
304 dump file */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
305
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
306 #ifdef DEBUG_XEMACS
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
307 #define CONST_IF_NOT_DEBUG
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
308 #else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
309 #define CONST_IF_NOT_DEBUG CONST
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
310 #endif
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
311
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 /* DEFINE_LRECORD_IMPLEMENTATION is for objects with constant size.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION is for objects whose size varies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 #if defined (ERROR_CHECK_TYPECHECK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 # define DECLARE_ERROR_CHECK_TYPECHECK(c_name, structtype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 # define DECLARE_ERROR_CHECK_TYPECHECK(c_name, structtype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
322 #define DEFINE_BASIC_LRECORD_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,structtype) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
323 DEFINE_BASIC_LRECORD_IMPLEMENTATION_WITH_PROPS(name,c_name,marker,printer,nuker,equal,hash,desc,0,0,0,0,structtype)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
325 #define DEFINE_BASIC_LRECORD_IMPLEMENTATION_WITH_PROPS(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,structtype) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
326 MAKE_LRECORD_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,sizeof(structtype),0,1,structtype)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
328 #define DEFINE_LRECORD_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,structtype) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
329 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS(name,c_name,marker,printer,nuker,equal,hash,desc,0,0,0,0,structtype)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
330
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
331 #define DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,structtype) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
332 MAKE_LRECORD_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,sizeof (structtype),0,0,structtype)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
333
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
334 #define DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,sizer,structtype) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
335 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION_WITH_PROPS(name,c_name,marker,printer,nuker,equal,hash,desc,0,0,0,0,sizer,structtype)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 243
diff changeset
336
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
337 #define DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION_WITH_PROPS(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,sizer,structtype) \
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
338 MAKE_LRECORD_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,0,sizer,0,structtype) \
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
339
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
340 #define MAKE_LRECORD_IMPLEMENTATION(name,c_name,marker,printer,nuker,equal,hash,desc,getprop,putprop,remprop,props,size,sizer,basic_p,structtype) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
341 DECLARE_ERROR_CHECK_TYPECHECK(c_name, structtype) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
342 static int lrecord_##c_name##_lrecord_type_index; \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
343 CONST_IF_NOT_DEBUG struct lrecord_implementation lrecord_##c_name = \
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
344 { name, marker, printer, nuker, equal, hash, desc, \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
345 getprop, putprop, remprop, props, size, sizer, \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
346 &(lrecord_##c_name##_lrecord_type_index), basic_p } \
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
347
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
348 #define LRECORDP(a) (XTYPE ((a)) == Lisp_Type_Record)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 #define XRECORD_LHEADER(a) ((struct lrecord_header *) XPNTR (a))
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 207
diff changeset
350
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
351 #define RECORD_TYPEP(x, ty) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
352 (LRECORDP (x) && \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
353 lrecord_implementations_table[XRECORD_LHEADER (x)->type] == (ty))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 /* NOTE: the DECLARE_LRECORD() must come before the associated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 DEFINE_LRECORD_*() or you will get compile errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 Furthermore, you always need to put the DECLARE_LRECORD() in a header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 file, and make sure the header file is included in inline.c, even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 if the type is private to a particular file. Otherwise, you will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 get undefined references for the error_check_foo() inline function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 under GCC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 #ifdef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
366 # define DECLARE_LRECORD(c_name, structtype) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
367 extern CONST_IF_NOT_DEBUG struct lrecord_implementation \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
368 lrecord_##c_name; \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
369 INLINE structtype *error_check_##c_name (Lisp_Object obj); \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
370 INLINE structtype * \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
371 error_check_##c_name (Lisp_Object obj) \
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
372 { \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
373 assert (RECORD_TYPEP (obj, &lrecord_##c_name) || \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
374 MARKED_RECORD_P (obj)); \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
375 return (structtype *) XPNTR (obj); \
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
376 } \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 extern Lisp_Object Q##c_name##p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
379 # define DECLARE_NONRECORD(c_name, type_enum, structtype) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
380 INLINE structtype *error_check_##c_name (Lisp_Object obj); \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
381 INLINE structtype * \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
382 error_check_##c_name (Lisp_Object obj) \
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
383 { \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
384 assert (XGCTYPE (obj) == type_enum); \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
385 return (structtype *) XPNTR (obj); \
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
386 } \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 extern Lisp_Object Q##c_name##p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 # define XRECORD(x, c_name, structtype) error_check_##c_name (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 # define XNONRECORD(x, c_name, type_enum, structtype) error_check_##c_name (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
392 # define XSETRECORD(var, p, c_name) do \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
393 { \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
394 XSETOBJ (var, Lisp_Type_Record, p); \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
395 assert (RECORD_TYPEP (var, &lrecord_##c_name) || \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
396 MARKED_RECORD_P (var)); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 #else /* not ERROR_CHECK_TYPECHECK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
401 # define DECLARE_LRECORD(c_name, structtype) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
402 extern Lisp_Object Q##c_name##p; \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
403 extern CONST_IF_NOT_DEBUG struct lrecord_implementation \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
404 lrecord_##c_name
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
405 # define DECLARE_NONRECORD(c_name, type_enum, structtype) \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 extern Lisp_Object Q##c_name##p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 # define XRECORD(x, c_name, structtype) ((structtype *) XPNTR (x))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
408 # define XNONRECORD(x, c_name, type_enum, structtype) \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 ((structtype *) XPNTR (x))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
410 # define XSETRECORD(var, p, c_name) XSETOBJ (var, Lisp_Type_Record, p)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 #endif /* not ERROR_CHECK_TYPECHECK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
414 #define RECORDP(x, c_name) RECORD_TYPEP (x, &lrecord_##c_name)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
415 #define GC_RECORDP(x, c_name) gc_record_type_p (x, &lrecord_##c_name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 /* Note: we now have two different kinds of type-checking macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 The "old" kind has now been renamed CONCHECK_foo. The reason for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 this is that the CONCHECK_foo macros signal a continuable error,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
420 allowing the user (through debug-on-error) to substitute a different
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 value and return from the signal, which causes the lvalue argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 to get changed. Quite a lot of code would crash if that happened,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 because it did things like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 foo = XCAR (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 CHECK_STRING (foo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 and later on did XSTRING (XCAR (list)), assuming that the type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 is correct (when it might be wrong, if the user substituted a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 correct value in the debugger).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 To get around this, I made all the CHECK_foo macros signal a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 non-continuable error. Places where a continuable error is OK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (generally only when called directly on the argument of a Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 primitive) should be changed to use CONCHECK().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 FSF Emacs does not have this problem because RMS took the cheesy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 way out and disabled returning from a signal entirely. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
440 #define CONCHECK_RECORD(x, c_name) do { \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
441 if (!RECORD_TYPEP (x, &lrecord_##c_name)) \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
442 x = wrong_type_argument (Q##c_name##p, x); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
443 } while (0)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
444 #define CONCHECK_NONRECORD(x, lisp_enum, predicate) do {\
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
445 if (XTYPE (x) != lisp_enum) \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
446 x = wrong_type_argument (predicate, x); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
447 } while (0)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
448 #define CHECK_RECORD(x, c_name) do { \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
449 if (!RECORD_TYPEP (x, &lrecord_##c_name)) \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
450 dead_wrong_type_argument (Q##c_name##p, x); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
451 } while (0)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
452 #define CHECK_NONRECORD(x, lisp_enum, predicate) do { \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
453 if (XTYPE (x) != lisp_enum) \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
454 dead_wrong_type_argument (predicate, x); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
455 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
457 void *alloc_lcrecord (size_t size, CONST struct lrecord_implementation *);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
459 #define alloc_lcrecord_type(type, lrecord_implementation) \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
460 ((type *) alloc_lcrecord (sizeof (type), lrecord_implementation))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 2
diff changeset
461
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
462 int gc_record_type_p (Lisp_Object frob,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
463 CONST struct lrecord_implementation *type);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
464
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 /* Copy the data from one lcrecord structure into another, but don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 overwrite the header information. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
468 #define copy_lcrecord(dst, src) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
469 memcpy ((char *) dst + sizeof (struct lcrecord_header), \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
470 (char *) src + sizeof (struct lcrecord_header), \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
471 sizeof (*dst) - sizeof (struct lcrecord_header))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
473 #define zero_lcrecord(lcr) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
474 memset ((char *) lcr + sizeof (struct lcrecord_header), 0, \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
475 sizeof (*lcr) - sizeof (struct lcrecord_header))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
477 #endif /* _XEMACS_LRECORD_H_ */