]>
Commit | Line | Data |
---|---|---|
8da1b058 | 1 | /* Front-end tree definitions for GNU compiler. |
1c8b10bb | 2 | Copyright (C) 1989, 1993, 1994, 1995 Free Software Foundation, Inc. |
8da1b058 RS |
3 | |
4 | This file is part of GNU CC. | |
5 | ||
6 | GNU CC is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2, or (at your option) | |
9 | any later version. | |
10 | ||
11 | GNU CC is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with GNU CC; see the file COPYING. If not, write to | |
e9fa0c7c RK |
18 | the Free Software Foundation, 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. */ | |
8da1b058 RS |
20 | |
21 | #include "machmode.h" | |
22 | ||
d6b12657 RK |
23 | #ifndef RTX_CODE |
24 | struct rtx_def; | |
25 | #endif | |
26 | ||
27 | /* Codes of tree nodes */ | |
8da1b058 RS |
28 | |
29 | #define DEFTREECODE(SYM, STRING, TYPE, NARGS) SYM, | |
30 | ||
31 | enum tree_code { | |
32 | #include "tree.def" | |
33 | ||
6dc42e49 | 34 | LAST_AND_UNUSED_TREE_CODE /* A convenient way to get a value for |
8da1b058 RS |
35 | NUM_TREE_CODE. */ |
36 | }; | |
37 | ||
38 | #undef DEFTREECODE | |
39 | ||
40 | /* Number of tree codes. */ | |
41 | #define NUM_TREE_CODES ((int)LAST_AND_UNUSED_TREE_CODE) | |
42 | ||
43 | /* Indexed by enum tree_code, contains a character which is | |
44 | `<' for a comparison expression, `1', for a unary arithmetic | |
45 | expression, `2' for a binary arithmetic expression, `e' for | |
46 | other types of expressions, `r' for a reference, `c' for a | |
47 | constant, `d' for a decl, `t' for a type, `s' for a statement, | |
48 | and `x' for anything else (TREE_LIST, IDENTIFIER, etc). */ | |
49 | ||
50 | extern char **tree_code_type; | |
51 | #define TREE_CODE_CLASS(CODE) (*tree_code_type[(int) (CODE)]) | |
52 | ||
53 | /* Number of argument-words in each kind of tree-node. */ | |
54 | ||
55 | extern int *tree_code_length; | |
56 | ||
57 | /* Names of tree components. */ | |
58 | ||
59 | extern char **tree_code_name; | |
60 | \f | |
61 | /* Codes that identify the various built in functions | |
62 | so that expand_call can identify them quickly. */ | |
63 | ||
64 | enum built_in_function | |
65 | { | |
66 | NOT_BUILT_IN, | |
67 | BUILT_IN_ALLOCA, | |
68 | BUILT_IN_ABS, | |
69 | BUILT_IN_FABS, | |
70 | BUILT_IN_LABS, | |
71 | BUILT_IN_FFS, | |
72 | BUILT_IN_DIV, | |
73 | BUILT_IN_LDIV, | |
74 | BUILT_IN_FFLOOR, | |
75 | BUILT_IN_FCEIL, | |
76 | BUILT_IN_FMOD, | |
77 | BUILT_IN_FREM, | |
78 | BUILT_IN_MEMCPY, | |
79 | BUILT_IN_MEMCMP, | |
80 | BUILT_IN_MEMSET, | |
81 | BUILT_IN_STRCPY, | |
82 | BUILT_IN_STRCMP, | |
83 | BUILT_IN_STRLEN, | |
84 | BUILT_IN_FSQRT, | |
a1ee10a4 JVA |
85 | BUILT_IN_SIN, |
86 | BUILT_IN_COS, | |
8da1b058 RS |
87 | BUILT_IN_GETEXP, |
88 | BUILT_IN_GETMAN, | |
89 | BUILT_IN_SAVEREGS, | |
90 | BUILT_IN_CLASSIFY_TYPE, | |
91 | BUILT_IN_NEXT_ARG, | |
92 | BUILT_IN_ARGS_INFO, | |
93 | BUILT_IN_CONSTANT_P, | |
94 | BUILT_IN_FRAME_ADDRESS, | |
95 | BUILT_IN_RETURN_ADDRESS, | |
96 | BUILT_IN_CALLER_RETURN_ADDRESS, | |
7f11e158 TW |
97 | BUILT_IN_APPLY_ARGS, |
98 | BUILT_IN_APPLY, | |
99 | BUILT_IN_RETURN, | |
8da1b058 RS |
100 | |
101 | /* C++ extensions */ | |
102 | BUILT_IN_NEW, | |
103 | BUILT_IN_VEC_NEW, | |
104 | BUILT_IN_DELETE, | |
972ded9c RS |
105 | BUILT_IN_VEC_DELETE, |
106 | ||
107 | /* Upper bound on non-language-specific builtins. */ | |
108 | END_BUILTINS | |
8da1b058 RS |
109 | }; |
110 | \f | |
111 | /* The definition of tree nodes fills the next several pages. */ | |
112 | ||
113 | /* A tree node can represent a data type, a variable, an expression | |
114 | or a statement. Each node has a TREE_CODE which says what kind of | |
115 | thing it represents. Some common codes are: | |
116 | INTEGER_TYPE -- represents a type of integers. | |
117 | ARRAY_TYPE -- represents a type of pointer. | |
118 | VAR_DECL -- represents a declared variable. | |
119 | INTEGER_CST -- represents a constant integer value. | |
120 | PLUS_EXPR -- represents a sum (an expression). | |
121 | ||
122 | As for the contents of a tree node: there are some fields | |
123 | that all nodes share. Each TREE_CODE has various special-purpose | |
124 | fields as well. The fields of a node are never accessed directly, | |
125 | always through accessor macros. */ | |
126 | ||
127 | /* This type is used everywhere to refer to a tree node. */ | |
128 | ||
129 | typedef union tree_node *tree; | |
130 | ||
8da1b058 RS |
131 | /* Every kind of tree node starts with this structure, |
132 | so all nodes have these fields. | |
133 | ||
134 | See the accessor macros, defined below, for documentation of the fields. */ | |
135 | ||
136 | struct tree_common | |
137 | { | |
138 | union tree_node *chain; | |
139 | union tree_node *type; | |
140 | #ifdef ONLY_INT_FIELDS | |
141 | unsigned int code : 8; | |
142 | #else | |
143 | enum tree_code code : 8; | |
144 | #endif | |
145 | ||
146 | unsigned side_effects_flag : 1; | |
147 | unsigned constant_flag : 1; | |
148 | unsigned permanent_flag : 1; | |
149 | unsigned addressable_flag : 1; | |
150 | unsigned volatile_flag : 1; | |
151 | unsigned readonly_flag : 1; | |
152 | unsigned unsigned_flag : 1; | |
153 | unsigned asm_written_flag: 1; | |
154 | ||
155 | unsigned used_flag : 1; | |
156 | unsigned raises_flag : 1; | |
157 | unsigned static_flag : 1; | |
158 | unsigned public_flag : 1; | |
159 | unsigned private_flag : 1; | |
160 | unsigned protected_flag : 1; | |
161 | ||
162 | unsigned lang_flag_0 : 1; | |
163 | unsigned lang_flag_1 : 1; | |
164 | unsigned lang_flag_2 : 1; | |
165 | unsigned lang_flag_3 : 1; | |
166 | unsigned lang_flag_4 : 1; | |
167 | unsigned lang_flag_5 : 1; | |
168 | unsigned lang_flag_6 : 1; | |
169 | /* There is room for two more flags. */ | |
170 | }; | |
171 | ||
172 | /* Define accessors for the fields that all tree nodes have | |
173 | (though some fields are not used for all kinds of nodes). */ | |
174 | ||
175 | /* The tree-code says what kind of node it is. | |
176 | Codes are defined in tree.def. */ | |
177 | #define TREE_CODE(NODE) ((enum tree_code) (NODE)->common.code) | |
178 | #define TREE_SET_CODE(NODE, VALUE) ((NODE)->common.code = (int) (VALUE)) | |
179 | ||
180 | /* In all nodes that are expressions, this is the data type of the expression. | |
181 | In POINTER_TYPE nodes, this is the type that the pointer points to. | |
182 | In ARRAY_TYPE nodes, this is the type of the elements. */ | |
183 | #define TREE_TYPE(NODE) ((NODE)->common.type) | |
184 | ||
185 | /* Nodes are chained together for many purposes. | |
186 | Types are chained together to record them for being output to the debugger | |
187 | (see the function `chain_type'). | |
188 | Decls in the same scope are chained together to record the contents | |
189 | of the scope. | |
190 | Statement nodes for successive statements used to be chained together. | |
191 | Often lists of things are represented by TREE_LIST nodes that | |
192 | are chained together. */ | |
193 | ||
194 | #define TREE_CHAIN(NODE) ((NODE)->common.chain) | |
195 | ||
196 | /* Given an expression as a tree, strip any NON_LVALUE_EXPRs and NOP_EXPRs | |
197 | that don't change the machine mode. */ | |
198 | ||
199 | #define STRIP_NOPS(EXP) \ | |
200 | while ((TREE_CODE (EXP) == NOP_EXPR \ | |
201 | || TREE_CODE (EXP) == CONVERT_EXPR \ | |
202 | || TREE_CODE (EXP) == NON_LVALUE_EXPR) \ | |
203 | && (TYPE_MODE (TREE_TYPE (EXP)) \ | |
204 | == TYPE_MODE (TREE_TYPE (TREE_OPERAND (EXP, 0))))) \ | |
205 | (EXP) = TREE_OPERAND (EXP, 0); | |
0fafb45e RS |
206 | |
207 | /* Like STRIP_NOPS, but don't alter the TREE_TYPE either. */ | |
208 | ||
209 | #define STRIP_TYPE_NOPS(EXP) \ | |
210 | while ((TREE_CODE (EXP) == NOP_EXPR \ | |
211 | || TREE_CODE (EXP) == CONVERT_EXPR \ | |
212 | || TREE_CODE (EXP) == NON_LVALUE_EXPR) \ | |
213 | && (TREE_TYPE (EXP) \ | |
214 | == TREE_TYPE (TREE_OPERAND (EXP, 0)))) \ | |
215 | (EXP) = TREE_OPERAND (EXP, 0); | |
87291138 RK |
216 | |
217 | /* Nonzero if TYPE represents an integral type. Note that we do not | |
218 | include COMPLEX types here. */ | |
219 | ||
220 | #define INTEGRAL_TYPE_P(TYPE) \ | |
221 | (TREE_CODE (TYPE) == INTEGER_TYPE || TREE_CODE (TYPE) == ENUMERAL_TYPE \ | |
222 | || TREE_CODE (TYPE) == BOOLEAN_TYPE || TREE_CODE (TYPE) == CHAR_TYPE) | |
223 | ||
224 | /* Nonzero if TYPE represents a floating-point type, including complex | |
225 | floating-point types. */ | |
226 | ||
227 | #define FLOAT_TYPE_P(TYPE) \ | |
228 | (TREE_CODE (TYPE) == REAL_TYPE \ | |
229 | || (TREE_CODE (TYPE) == COMPLEX_TYPE \ | |
230 | && TREE_CODE (TREE_TYPE (TYPE)) == REAL_TYPE)) | |
947765f9 PB |
231 | |
232 | /* Nonzero if TYPE represents an aggregate (multi-component) type. */ | |
233 | ||
234 | #define AGGREGATE_TYPE_P(TYPE) \ | |
235 | (TREE_CODE (TYPE) == ARRAY_TYPE || TREE_CODE (TYPE) == RECORD_TYPE \ | |
236 | || TREE_CODE (TYPE) == UNION_TYPE || TREE_CODE (TYPE) == QUAL_UNION_TYPE \ | |
237 | || TREE_CODE (TYPE) == SET_TYPE) | |
9e6cfc43 JM |
238 | |
239 | /* Nonzero if TYPE represents a pointer type. */ | |
240 | ||
241 | #define POINTER_TYPE_P(TYPE) \ | |
242 | (TREE_CODE (TYPE) == POINTER_TYPE || TREE_CODE (TYPE) == REFERENCE_TYPE) | |
8da1b058 RS |
243 | \f |
244 | /* Define many boolean fields that all tree nodes have. */ | |
245 | ||
246 | /* In VAR_DECL nodes, nonzero means address of this is needed. | |
247 | So it cannot be in a register. | |
248 | In a FUNCTION_DECL, nonzero means its address is needed. | |
249 | So it must be compiled even if it is an inline function. | |
250 | In CONSTRUCTOR nodes, it means object constructed must be in memory. | |
251 | In LABEL_DECL nodes, it means a goto for this label has been seen | |
252 | from a place outside all binding contours that restore stack levels. | |
253 | In ..._TYPE nodes, it means that objects of this type must | |
254 | be fully addressable. This means that pieces of this | |
255 | object cannot go into register parameters, for example. | |
256 | In IDENTIFIER_NODEs, this means that some extern decl for this name | |
257 | had its address taken. That matters for inline functions. */ | |
258 | #define TREE_ADDRESSABLE(NODE) ((NODE)->common.addressable_flag) | |
259 | ||
260 | /* In a VAR_DECL, nonzero means allocate static storage. | |
9f86614b | 261 | In a FUNCTION_DECL, nonzero if function has been defined. |
8da1b058 RS |
262 | In a CONSTRUCTOR, nonzero means allocate static storage. */ |
263 | #define TREE_STATIC(NODE) ((NODE)->common.static_flag) | |
264 | ||
248c0f74 JM |
265 | /* In a CONVERT_EXPR, NOP_EXPR or COMPOUND_EXPR, this means the node was |
266 | made implicitly and should not lead to an "unused value" warning. */ | |
8da1b058 RS |
267 | #define TREE_NO_UNUSED_WARNING(NODE) ((NODE)->common.static_flag) |
268 | ||
269 | /* Nonzero for a TREE_LIST or TREE_VEC node means that the derivation | |
270 | chain is via a `virtual' declaration. */ | |
271 | #define TREE_VIA_VIRTUAL(NODE) ((NODE)->common.static_flag) | |
272 | ||
ae202b56 RK |
273 | /* In an INTEGER_CST, REAL_CST, or COMPLEX_CST, this means there was an |
274 | overflow in folding. This is distinct from TREE_OVERFLOW because ANSI C | |
275 | requires a diagnostic when overflows occur in constant expressions. */ | |
261450e8 PE |
276 | #define TREE_CONSTANT_OVERFLOW(NODE) ((NODE)->common.static_flag) |
277 | ||
d3568529 JM |
278 | /* In an IDENTIFIER_NODE, this means that assemble_name was called with |
279 | this string as an argument. */ | |
280 | #define TREE_SYMBOL_REFERENCED(NODE) ((NODE)->common.static_flag) | |
281 | ||
ae202b56 RK |
282 | /* In an INTEGER_CST, REAL_CST, of COMPLEX_CST, this means there was an |
283 | overflow in folding, and no warning has been issued for this subexpression. | |
261450e8 PE |
284 | TREE_OVERFLOW implies TREE_CONSTANT_OVERFLOW, but not vice versa. */ |
285 | #define TREE_OVERFLOW(NODE) ((NODE)->common.public_flag) | |
286 | ||
8da1b058 RS |
287 | /* In a VAR_DECL or FUNCTION_DECL, |
288 | nonzero means name is to be accessible from outside this module. | |
858a47b1 | 289 | In an identifier node, nonzero means an external declaration |
6dc42e49 | 290 | accessible from outside this module was previously seen |
8da1b058 RS |
291 | for this name in an inner scope. */ |
292 | #define TREE_PUBLIC(NODE) ((NODE)->common.public_flag) | |
293 | ||
294 | /* Nonzero for TREE_LIST or TREE_VEC node means that the path to the | |
295 | base class is via a `public' declaration, which preserves public | |
296 | fields from the base class as public. */ | |
297 | #define TREE_VIA_PUBLIC(NODE) ((NODE)->common.public_flag) | |
298 | ||
9e5386db MS |
299 | /* Ditto, for `private' declarations. */ |
300 | #define TREE_VIA_PRIVATE(NODE) ((NODE)->common.private_flag) | |
301 | ||
302 | /* Nonzero for TREE_LIST node means that the path to the | |
303 | base class is via a `protected' declaration, which preserves | |
304 | protected fields from the base class as protected. | |
305 | OVERLOADED. */ | |
026380ff | 306 | #define TREE_VIA_PROTECTED(NODE) ((NODE)->common.protected_flag) |
9e5386db | 307 | |
8da1b058 RS |
308 | /* In any expression, nonzero means it has side effects or reevaluation |
309 | of the whole expression could produce a different value. | |
310 | This is set if any subexpression is a function call, a side effect | |
311 | or a reference to a volatile variable. | |
312 | In a ..._DECL, this is set only if the declaration said `volatile'. */ | |
313 | #define TREE_SIDE_EFFECTS(NODE) ((NODE)->common.side_effects_flag) | |
314 | ||
315 | /* Nonzero means this expression is volatile in the C sense: | |
316 | its address should be of type `volatile WHATEVER *'. | |
317 | In other words, the declared item is volatile qualified. | |
318 | This is used in _DECL nodes and _REF nodes. | |
319 | ||
320 | In a ..._TYPE node, means this type is volatile-qualified. | |
321 | But use TYPE_VOLATILE instead of this macro when the node is a type, | |
322 | because eventually we may make that a different bit. | |
323 | ||
324 | If this bit is set in an expression, so is TREE_SIDE_EFFECTS. */ | |
325 | #define TREE_THIS_VOLATILE(NODE) ((NODE)->common.volatile_flag) | |
326 | ||
327 | /* In a VAR_DECL, PARM_DECL or FIELD_DECL, or any kind of ..._REF node, | |
328 | nonzero means it may not be the lhs of an assignment. | |
329 | In a ..._TYPE node, means this type is const-qualified | |
330 | (but the macro TYPE_READONLY should be used instead of this macro | |
331 | when the node is a type). */ | |
332 | #define TREE_READONLY(NODE) ((NODE)->common.readonly_flag) | |
333 | ||
334 | /* Value of expression is constant. | |
335 | Always appears in all ..._CST nodes. | |
336 | May also appear in an arithmetic expression, an ADDR_EXPR or a CONSTRUCTOR | |
337 | if the value is constant. */ | |
338 | #define TREE_CONSTANT(NODE) ((NODE)->common.constant_flag) | |
339 | ||
340 | /* Nonzero means permanent node; | |
341 | node will continue to exist for the entire compiler run. | |
342 | Otherwise it will be recycled at the end of the function. */ | |
343 | #define TREE_PERMANENT(NODE) ((NODE)->common.permanent_flag) | |
344 | ||
345 | /* In INTEGER_TYPE or ENUMERAL_TYPE nodes, means an unsigned type. | |
346 | In FIELD_DECL nodes, means an unsigned bit field. | |
347 | The same bit is used in functions as DECL_BUILT_IN_NONANSI. */ | |
348 | #define TREE_UNSIGNED(NODE) ((NODE)->common.unsigned_flag) | |
349 | ||
350 | /* Nonzero in a VAR_DECL means assembler code has been written. | |
351 | Nonzero in a FUNCTION_DECL means that the function has been compiled. | |
352 | This is interesting in an inline function, since it might not need | |
353 | to be compiled separately. | |
3635a54b | 354 | Nonzero in a RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE or ENUMERAL_TYPE |
9f86614b RS |
355 | if the sdb debugging info for the type has been written. |
356 | In a BLOCK node, nonzero if reorder_blocks has already seen this block. */ | |
8da1b058 RS |
357 | #define TREE_ASM_WRITTEN(NODE) ((NODE)->common.asm_written_flag) |
358 | ||
359 | /* Nonzero in a _DECL if the name is used in its scope. | |
360 | Nonzero in an expr node means inhibit warning if value is unused. | |
361 | In IDENTIFIER_NODEs, this means that some extern decl for this name | |
362 | was used. */ | |
363 | #define TREE_USED(NODE) ((NODE)->common.used_flag) | |
364 | ||
365 | /* Nonzero for a tree node whose evaluation could result | |
366 | in the raising of an exception. Not implemented yet. */ | |
367 | #define TREE_RAISES(NODE) ((NODE)->common.raises_flag) | |
368 | ||
9f86614b | 369 | /* Used in classes in C++. */ |
8da1b058 | 370 | #define TREE_PRIVATE(NODE) ((NODE)->common.private_flag) |
9f86614b RS |
371 | /* Used in classes in C++. |
372 | In a BLOCK node, this is BLOCK_HANDLER_BLOCK. */ | |
8da1b058 RS |
373 | #define TREE_PROTECTED(NODE) ((NODE)->common.protected_flag) |
374 | ||
9f86614b | 375 | /* These flags are available for each language front end to use internally. */ |
8da1b058 RS |
376 | #define TREE_LANG_FLAG_0(NODE) ((NODE)->common.lang_flag_0) |
377 | #define TREE_LANG_FLAG_1(NODE) ((NODE)->common.lang_flag_1) | |
378 | #define TREE_LANG_FLAG_2(NODE) ((NODE)->common.lang_flag_2) | |
379 | #define TREE_LANG_FLAG_3(NODE) ((NODE)->common.lang_flag_3) | |
380 | #define TREE_LANG_FLAG_4(NODE) ((NODE)->common.lang_flag_4) | |
381 | #define TREE_LANG_FLAG_5(NODE) ((NODE)->common.lang_flag_5) | |
382 | #define TREE_LANG_FLAG_6(NODE) ((NODE)->common.lang_flag_6) | |
383 | \f | |
384 | /* Define additional fields and accessors for nodes representing constants. */ | |
385 | ||
e5d70561 RK |
386 | /* In an INTEGER_CST node. These two together make a 2-word integer. |
387 | If the data type is signed, the value is sign-extended to 2 words | |
8da1b058 | 388 | even though not all of them may really be in use. |
e5d70561 | 389 | In an unsigned constant shorter than 2 words, the extra bits are 0. */ |
8da1b058 RS |
390 | #define TREE_INT_CST_LOW(NODE) ((NODE)->int_cst.int_cst_low) |
391 | #define TREE_INT_CST_HIGH(NODE) ((NODE)->int_cst.int_cst_high) | |
392 | ||
393 | #define INT_CST_LT(A, B) \ | |
394 | (TREE_INT_CST_HIGH (A) < TREE_INT_CST_HIGH (B) \ | |
395 | || (TREE_INT_CST_HIGH (A) == TREE_INT_CST_HIGH (B) \ | |
e5d70561 RK |
396 | && ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (A) \ |
397 | < (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (B)))) | |
8da1b058 RS |
398 | |
399 | #define INT_CST_LT_UNSIGNED(A, B) \ | |
e5d70561 RK |
400 | (((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (A) \ |
401 | < (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (B)) \ | |
402 | || (((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (A) \ | |
403 | == (unsigned HOST_WIDE_INT ) TREE_INT_CST_HIGH (B)) \ | |
404 | && (((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (A) \ | |
405 | < (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (B))))) | |
8da1b058 RS |
406 | |
407 | struct tree_int_cst | |
408 | { | |
409 | char common[sizeof (struct tree_common)]; | |
e5d70561 RK |
410 | HOST_WIDE_INT int_cst_low; |
411 | HOST_WIDE_INT int_cst_high; | |
8da1b058 RS |
412 | }; |
413 | ||
414 | /* In REAL_CST, STRING_CST, COMPLEX_CST nodes, and CONSTRUCTOR nodes, | |
415 | and generally in all kinds of constants that could | |
416 | be given labels (rather than being immediate). */ | |
417 | ||
418 | #define TREE_CST_RTL(NODE) ((NODE)->real_cst.rtl) | |
419 | ||
420 | /* In a REAL_CST node. */ | |
421 | /* We can represent a real value as either a `double' or a string. | |
422 | Strings don't allow for any optimization, but they do allow | |
423 | for cross-compilation. */ | |
424 | ||
425 | #define TREE_REAL_CST(NODE) ((NODE)->real_cst.real_cst) | |
426 | ||
427 | #include "real.h" | |
428 | ||
429 | struct tree_real_cst | |
430 | { | |
431 | char common[sizeof (struct tree_common)]; | |
432 | struct rtx_def *rtl; /* acts as link to register transfer language | |
433 | (rtl) info */ | |
434 | REAL_VALUE_TYPE real_cst; | |
435 | }; | |
436 | ||
437 | /* In a STRING_CST */ | |
438 | #define TREE_STRING_LENGTH(NODE) ((NODE)->string.length) | |
439 | #define TREE_STRING_POINTER(NODE) ((NODE)->string.pointer) | |
440 | ||
441 | struct tree_string | |
442 | { | |
443 | char common[sizeof (struct tree_common)]; | |
444 | struct rtx_def *rtl; /* acts as link to register transfer language | |
445 | (rtl) info */ | |
446 | int length; | |
447 | char *pointer; | |
448 | }; | |
449 | ||
450 | /* In a COMPLEX_CST node. */ | |
451 | #define TREE_REALPART(NODE) ((NODE)->complex.real) | |
452 | #define TREE_IMAGPART(NODE) ((NODE)->complex.imag) | |
453 | ||
454 | struct tree_complex | |
455 | { | |
456 | char common[sizeof (struct tree_common)]; | |
457 | struct rtx_def *rtl; /* acts as link to register transfer language | |
458 | (rtl) info */ | |
459 | union tree_node *real; | |
460 | union tree_node *imag; | |
461 | }; | |
462 | \f | |
463 | /* Define fields and accessors for some special-purpose tree nodes. */ | |
464 | ||
465 | #define IDENTIFIER_LENGTH(NODE) ((NODE)->identifier.length) | |
466 | #define IDENTIFIER_POINTER(NODE) ((NODE)->identifier.pointer) | |
8da1b058 RS |
467 | |
468 | struct tree_identifier | |
469 | { | |
470 | char common[sizeof (struct tree_common)]; | |
471 | int length; | |
472 | char *pointer; | |
473 | }; | |
474 | ||
475 | /* In a TREE_LIST node. */ | |
476 | #define TREE_PURPOSE(NODE) ((NODE)->list.purpose) | |
477 | #define TREE_VALUE(NODE) ((NODE)->list.value) | |
478 | ||
479 | struct tree_list | |
480 | { | |
481 | char common[sizeof (struct tree_common)]; | |
482 | union tree_node *purpose; | |
483 | union tree_node *value; | |
484 | }; | |
485 | ||
486 | /* In a TREE_VEC node. */ | |
487 | #define TREE_VEC_LENGTH(NODE) ((NODE)->vec.length) | |
488 | #define TREE_VEC_ELT(NODE,I) ((NODE)->vec.a[I]) | |
489 | #define TREE_VEC_END(NODE) (&((NODE)->vec.a[(NODE)->vec.length])) | |
490 | ||
491 | struct tree_vec | |
492 | { | |
493 | char common[sizeof (struct tree_common)]; | |
494 | int length; | |
495 | union tree_node *a[1]; | |
496 | }; | |
497 | ||
498 | /* Define fields and accessors for some nodes that represent expressions. */ | |
499 | ||
500 | /* In a SAVE_EXPR node. */ | |
501 | #define SAVE_EXPR_CONTEXT(NODE) TREE_OPERAND(NODE, 1) | |
502 | #define SAVE_EXPR_RTL(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[2]) | |
503 | ||
504 | /* In a RTL_EXPR node. */ | |
505 | #define RTL_EXPR_SEQUENCE(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[0]) | |
506 | #define RTL_EXPR_RTL(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[1]) | |
507 | ||
508 | /* In a CALL_EXPR node. */ | |
509 | #define CALL_EXPR_RTL(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[2]) | |
510 | ||
511 | /* In a CONSTRUCTOR node. */ | |
512 | #define CONSTRUCTOR_ELTS(NODE) TREE_OPERAND (NODE, 1) | |
f316d71e | 513 | #define CONSTRUCTOR_TARGET_CLEARED_P(NODE) ((NODE)->common.unsigned_flag) |
8da1b058 | 514 | |
61131fa2 RS |
515 | /* In ordinary expression nodes. */ |
516 | #define TREE_OPERAND(NODE, I) ((NODE)->exp.operands[I]) | |
517 | #define TREE_COMPLEXITY(NODE) ((NODE)->exp.complexity) | |
518 | ||
519 | struct tree_exp | |
520 | { | |
521 | char common[sizeof (struct tree_common)]; | |
522 | int complexity; | |
523 | union tree_node *operands[1]; | |
524 | }; | |
525 | \f | |
8da1b058 | 526 | /* In a BLOCK node. */ |
61131fa2 RS |
527 | #define BLOCK_VARS(NODE) ((NODE)->block.vars) |
528 | #define BLOCK_TYPE_TAGS(NODE) ((NODE)->block.type_tags) | |
529 | #define BLOCK_SUBBLOCKS(NODE) ((NODE)->block.subblocks) | |
530 | #define BLOCK_SUPERCONTEXT(NODE) ((NODE)->block.supercontext) | |
8da1b058 RS |
531 | /* Note: when changing this, make sure to find the places |
532 | that use chainon or nreverse. */ | |
533 | #define BLOCK_CHAIN(NODE) TREE_CHAIN (NODE) | |
61131fa2 RS |
534 | #define BLOCK_ABSTRACT_ORIGIN(NODE) ((NODE)->block.abstract_origin) |
535 | #define BLOCK_ABSTRACT(NODE) ((NODE)->block.abstract_flag) | |
5b3f0db1 | 536 | #define BLOCK_END_NOTE(NODE) ((NODE)->block.end_note) |
8da1b058 RS |
537 | |
538 | /* Nonzero means that this block is prepared to handle exceptions | |
539 | listed in the BLOCK_VARS slot. */ | |
61131fa2 | 540 | #define BLOCK_HANDLER_BLOCK(NODE) ((NODE)->block.handler_block_flag) |
8da1b058 | 541 | |
61131fa2 | 542 | struct tree_block |
8da1b058 RS |
543 | { |
544 | char common[sizeof (struct tree_common)]; | |
61131fa2 RS |
545 | |
546 | unsigned handler_block_flag : 1; | |
547 | unsigned abstract_flag : 1; | |
548 | ||
549 | union tree_node *vars; | |
550 | union tree_node *type_tags; | |
551 | union tree_node *subblocks; | |
552 | union tree_node *supercontext; | |
553 | union tree_node *abstract_origin; | |
5b3f0db1 | 554 | struct rtx_def *end_note; |
8da1b058 RS |
555 | }; |
556 | \f | |
557 | /* Define fields and accessors for nodes representing data types. */ | |
558 | ||
559 | /* See tree.def for documentation of the use of these fields. | |
560 | Look at the documentation of the various ..._TYPE tree codes. */ | |
561 | ||
562 | #define TYPE_UID(NODE) ((NODE)->type.uid) | |
563 | #define TYPE_SIZE(NODE) ((NODE)->type.size) | |
564 | #define TYPE_MODE(NODE) ((NODE)->type.mode) | |
8da1b058 RS |
565 | #define TYPE_VALUES(NODE) ((NODE)->type.values) |
566 | #define TYPE_DOMAIN(NODE) ((NODE)->type.values) | |
567 | #define TYPE_FIELDS(NODE) ((NODE)->type.values) | |
568 | #define TYPE_METHODS(NODE) ((NODE)->type.maxval) | |
569 | #define TYPE_VFIELD(NODE) ((NODE)->type.minval) | |
570 | #define TYPE_ARG_TYPES(NODE) ((NODE)->type.values) | |
571 | #define TYPE_METHOD_BASETYPE(NODE) ((NODE)->type.maxval) | |
572 | #define TYPE_OFFSET_BASETYPE(NODE) ((NODE)->type.maxval) | |
573 | #define TYPE_POINTER_TO(NODE) ((NODE)->type.pointer_to) | |
574 | #define TYPE_REFERENCE_TO(NODE) ((NODE)->type.reference_to) | |
575 | #define TYPE_MIN_VALUE(NODE) ((NODE)->type.minval) | |
576 | #define TYPE_MAX_VALUE(NODE) ((NODE)->type.maxval) | |
577 | #define TYPE_PRECISION(NODE) ((NODE)->type.precision) | |
a0665b77 RK |
578 | #define TYPE_SYMTAB_ADDRESS(NODE) ((NODE)->type.symtab.address) |
579 | #define TYPE_SYMTAB_POINTER(NODE) ((NODE)->type.symtab.pointer) | |
8da1b058 RS |
580 | #define TYPE_NAME(NODE) ((NODE)->type.name) |
581 | #define TYPE_NEXT_VARIANT(NODE) ((NODE)->type.next_variant) | |
582 | #define TYPE_MAIN_VARIANT(NODE) ((NODE)->type.main_variant) | |
583 | #define TYPE_BINFO(NODE) ((NODE)->type.binfo) | |
584 | #define TYPE_NONCOPIED_PARTS(NODE) ((NODE)->type.noncopied_parts) | |
585 | #define TYPE_CONTEXT(NODE) ((NODE)->type.context) | |
b20e883e | 586 | #define TYPE_OBSTACK(NODE) ((NODE)->type.obstack) |
8da1b058 RS |
587 | #define TYPE_LANG_SPECIFIC(NODE) ((NODE)->type.lang_specific) |
588 | ||
bad1b4ba RK |
589 | /* A TREE_LIST of IDENTIFIER nodes of the attributes that apply |
590 | to this type. */ | |
591 | #define TYPE_ATTRIBUTES(NODE) ((NODE)->type.attributes) | |
592 | ||
869637e6 RS |
593 | /* The alignment necessary for objects of this type. |
594 | The value is an int, measured in bits. */ | |
595 | #define TYPE_ALIGN(NODE) ((NODE)->type.align) | |
596 | ||
8da1b058 RS |
597 | #define TYPE_STUB_DECL(NODE) (TREE_CHAIN (NODE)) |
598 | ||
3635a54b RK |
599 | /* In a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, it means the type |
600 | has BLKmode only because it lacks the alignment requirement for | |
601 | its size. */ | |
8da1b058 RS |
602 | #define TYPE_NO_FORCE_BLK(NODE) ((NODE)->type.no_force_blk_flag) |
603 | ||
604 | /* Nonzero in a type considered volatile as a whole. */ | |
605 | #define TYPE_VOLATILE(NODE) ((NODE)->common.volatile_flag) | |
606 | ||
607 | /* Means this type is const-qualified. */ | |
608 | #define TYPE_READONLY(NODE) ((NODE)->common.readonly_flag) | |
609 | ||
9f86614b | 610 | /* These flags are available for each language front end to use internally. */ |
8da1b058 RS |
611 | #define TYPE_LANG_FLAG_0(NODE) ((NODE)->type.lang_flag_0) |
612 | #define TYPE_LANG_FLAG_1(NODE) ((NODE)->type.lang_flag_1) | |
613 | #define TYPE_LANG_FLAG_2(NODE) ((NODE)->type.lang_flag_2) | |
614 | #define TYPE_LANG_FLAG_3(NODE) ((NODE)->type.lang_flag_3) | |
615 | #define TYPE_LANG_FLAG_4(NODE) ((NODE)->type.lang_flag_4) | |
616 | #define TYPE_LANG_FLAG_5(NODE) ((NODE)->type.lang_flag_5) | |
617 | #define TYPE_LANG_FLAG_6(NODE) ((NODE)->type.lang_flag_6) | |
618 | ||
74a3fd26 PB |
619 | /* If set in an ARRAY_TYPE, indicates a string type (for languages |
620 | that distinguish string from array of char). | |
621 | If set in a SET_TYPE, indicates a bitstring type. */ | |
622 | #define TYPE_STRING_FLAG(NODE) ((NODE)->type.string_flag) | |
623 | ||
4ac3d994 JM |
624 | /* Indicates that objects of this type must be initialized by calling a |
625 | function when they are created. */ | |
626 | #define TYPE_NEEDS_CONSTRUCTING(NODE) ((NODE)->type.needs_constructing_flag) | |
627 | ||
adb23061 RK |
628 | /* Indicates that objects of this type (a UNION_TYPE), should be passed |
629 | the same way that the first union alternative would be passed. */ | |
630 | #define TYPE_TRANSPARENT_UNION(NODE) ((NODE)->type.transparent_union_flag) | |
631 | ||
9e357cd8 RK |
632 | /* Indicated that objects of this type should be layed out in as |
633 | compact a way as possible. */ | |
634 | #define TYPE_PACKED(NODE) ((NODE)->type.packed_flag) | |
635 | ||
8da1b058 RS |
636 | struct tree_type |
637 | { | |
638 | char common[sizeof (struct tree_common)]; | |
639 | union tree_node *values; | |
640 | union tree_node *size; | |
bad1b4ba | 641 | union tree_node *attributes; |
8da1b058 RS |
642 | unsigned uid; |
643 | ||
bad1b4ba | 644 | unsigned char precision; |
8da1b058 RS |
645 | #ifdef ONLY_INT_FIELDS |
646 | int mode : 8; | |
647 | #else | |
648 | enum machine_mode mode : 8; | |
649 | #endif | |
bad1b4ba | 650 | |
74a3fd26 | 651 | unsigned string_flag : 1; |
8da1b058 | 652 | unsigned no_force_blk_flag : 1; |
4ac3d994 | 653 | unsigned needs_constructing_flag : 1; |
adb23061 | 654 | unsigned transparent_union_flag : 1; |
9e357cd8 | 655 | unsigned packed_flag : 1; |
8da1b058 RS |
656 | unsigned lang_flag_0 : 1; |
657 | unsigned lang_flag_1 : 1; | |
658 | unsigned lang_flag_2 : 1; | |
659 | unsigned lang_flag_3 : 1; | |
660 | unsigned lang_flag_4 : 1; | |
661 | unsigned lang_flag_5 : 1; | |
662 | unsigned lang_flag_6 : 1; | |
9e357cd8 | 663 | /* room for 4 more bits */ |
8da1b058 | 664 | |
69b78d8d | 665 | unsigned int align; |
8da1b058 RS |
666 | union tree_node *pointer_to; |
667 | union tree_node *reference_to; | |
a0665b77 | 668 | union {int address; char *pointer; } symtab; |
8da1b058 RS |
669 | union tree_node *name; |
670 | union tree_node *minval; | |
671 | union tree_node *maxval; | |
672 | union tree_node *next_variant; | |
673 | union tree_node *main_variant; | |
674 | union tree_node *binfo; | |
675 | union tree_node *noncopied_parts; | |
676 | union tree_node *context; | |
b20e883e | 677 | struct obstack *obstack; |
8da1b058 RS |
678 | /* Points to a structure whose details depend on the language in use. */ |
679 | struct lang_type *lang_specific; | |
680 | }; | |
681 | \f | |
682 | /* Define accessor macros for information about type inheritance | |
683 | and basetypes. | |
684 | ||
685 | A "basetype" means a particular usage of a data type for inheritance | |
686 | in another type. Each such basetype usage has its own "binfo" | |
687 | object to describe it. The binfo object is a TREE_VEC node. | |
688 | ||
689 | Inheritance is represented by the binfo nodes allocated for a | |
690 | given type. For example, given types C and D, such that D is | |
691 | inherited by C, 3 binfo nodes will be allocated: one for describing | |
692 | the binfo properties of C, similarly one for D, and one for | |
693 | describing the binfo properties of D as a base type for C. | |
694 | Thus, given a pointer to class C, one can get a pointer to the binfo | |
695 | of D acting as a basetype for C by looking at C's binfo's basetypes. */ | |
696 | ||
697 | /* The actual data type node being inherited in this basetype. */ | |
698 | #define BINFO_TYPE(NODE) TREE_TYPE (NODE) | |
699 | ||
700 | /* The offset where this basetype appears in its containing type. | |
701 | BINFO_OFFSET slot holds the offset (in bytes) | |
702 | from the base of the complete object to the base of the part of the | |
703 | object that is allocated on behalf of this `type'. | |
704 | This is always 0 except when there is multiple inheritance. */ | |
705 | ||
706 | #define BINFO_OFFSET(NODE) TREE_VEC_ELT ((NODE), 1) | |
707 | #define TYPE_BINFO_OFFSET(NODE) BINFO_OFFSET (TYPE_BINFO (NODE)) | |
708 | #define BINFO_OFFSET_ZEROP(NODE) (BINFO_OFFSET (NODE) == integer_zero_node) | |
709 | ||
710 | /* The virtual function table belonging to this basetype. Virtual | |
711 | function tables provide a mechanism for run-time method dispatching. | |
712 | The entries of a virtual function table are language-dependent. */ | |
713 | ||
714 | #define BINFO_VTABLE(NODE) TREE_VEC_ELT ((NODE), 2) | |
715 | #define TYPE_BINFO_VTABLE(NODE) BINFO_VTABLE (TYPE_BINFO (NODE)) | |
716 | ||
717 | /* The virtual functions in the virtual function table. This is | |
718 | a TREE_LIST that is used as an initial approximation for building | |
719 | a virtual function table for this basetype. */ | |
720 | #define BINFO_VIRTUALS(NODE) TREE_VEC_ELT ((NODE), 3) | |
721 | #define TYPE_BINFO_VIRTUALS(NODE) BINFO_VIRTUALS (TYPE_BINFO (NODE)) | |
722 | ||
723 | /* A vector of additional binfos for the types inherited by this basetype. | |
724 | ||
725 | If this basetype describes type D as inherited in C, | |
726 | and if the basetypes of D are E anf F, | |
727 | then this vector contains binfos for inheritance of E and F by C. | |
728 | ||
729 | ??? This could probably be done by just allocating the | |
730 | base types at the end of this TREE_VEC (instead of using | |
731 | another TREE_VEC). This would simplify the calculation | |
732 | of how many basetypes a given type had. */ | |
733 | #define BINFO_BASETYPES(NODE) TREE_VEC_ELT ((NODE), 4) | |
734 | #define TYPE_BINFO_BASETYPES(NODE) TREE_VEC_ELT (TYPE_BINFO (NODE), 4) | |
735 | ||
2cc3ac7a MS |
736 | /* For a BINFO record describing an inheritance, this yields a pointer |
737 | to the artificial FIELD_DECL node which contains the "virtual base | |
738 | class pointer" for the given inheritance. */ | |
739 | ||
740 | #define BINFO_VPTR_FIELD(NODE) TREE_VEC_ELT ((NODE), 5) | |
741 | ||
8da1b058 RS |
742 | /* Accessor macro to get to the Nth basetype of this basetype. */ |
743 | #define BINFO_BASETYPE(NODE,N) TREE_VEC_ELT (BINFO_BASETYPES (NODE), (N)) | |
744 | #define TYPE_BINFO_BASETYPE(NODE,N) BINFO_TYPE (TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (NODE)), (N))) | |
745 | ||
746 | /* Slot used to build a chain that represents a use of inheritance. | |
747 | For example, if X is derived from Y, and Y is derived from Z, | |
748 | then this field can be used to link the binfo node for X to | |
749 | the binfo node for X's Y to represent the use of inheritance | |
750 | from X to Y. Similarly, this slot of the binfo node for X's Y | |
751 | can point to the Z from which Y is inherited (in X's inheritance | |
752 | hierarchy). In this fashion, one can represent and traverse specific | |
753 | uses of inheritance using the binfo nodes themselves (instead of | |
754 | consing new space pointing to binfo nodes). | |
755 | It is up to the language-dependent front-ends to maintain | |
756 | this information as necessary. */ | |
757 | #define BINFO_INHERITANCE_CHAIN(NODE) TREE_VEC_ELT ((NODE), 0) | |
758 | \f | |
759 | /* Define fields and accessors for nodes representing declared names. */ | |
760 | ||
761 | /* This is the name of the object as written by the user. | |
762 | It is an IDENTIFIER_NODE. */ | |
763 | #define DECL_NAME(NODE) ((NODE)->decl.name) | |
8da1b058 RS |
764 | /* This is the name of the object as the assembler will see it |
765 | (but before any translations made by ASM_OUTPUT_LABELREF). | |
766 | Often this is the same as DECL_NAME. | |
767 | It is an IDENTIFIER_NODE. */ | |
768 | #define DECL_ASSEMBLER_NAME(NODE) ((NODE)->decl.assembler_name) | |
868e8789 DE |
769 | /* Records the section name in a section attribute. Used to pass |
770 | the name from decl_attributes to make_function_rtl and make_decl_rtl. */ | |
771 | #define DECL_SECTION_NAME(NODE) ((NODE)->decl.section_name) | |
9b800101 | 772 | /* For FIELD_DECLs, this is the |
3635a54b RK |
773 | RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE node that the field is |
774 | a member of. For VAR_DECL, PARM_DECL, FUNCTION_DECL, LABEL_DECL, | |
775 | and CONST_DECL nodes, this points to the FUNCTION_DECL for the | |
776 | containing function, or else yields NULL_TREE if the given decl has "file scope". */ | |
8da1b058 RS |
777 | #define DECL_CONTEXT(NODE) ((NODE)->decl.context) |
778 | #define DECL_FIELD_CONTEXT(NODE) ((NODE)->decl.context) | |
77cf75a8 RK |
779 | /* In a DECL this is the field where configuration dependent machine |
780 | attributes are store */ | |
781 | #define DECL_MACHINE_ATTRIBUTES(NODE) ((NODE)->decl.machine_attributes) | |
8da1b058 RS |
782 | /* In a FIELD_DECL, this is the field position, counting in bits, |
783 | of the bit closest to the beginning of the structure. */ | |
784 | #define DECL_FIELD_BITPOS(NODE) ((NODE)->decl.arguments) | |
785 | /* In a FIELD_DECL, this indicates whether the field was a bit-field and | |
8e148bef RS |
786 | if so, the type that was originally specified for it. |
787 | TREE_TYPE may have been modified (in finish_struct). */ | |
8da1b058 RS |
788 | #define DECL_BIT_FIELD_TYPE(NODE) ((NODE)->decl.result) |
789 | /* In FUNCTION_DECL, a chain of ..._DECL nodes. */ | |
790 | /* VAR_DECL and PARM_DECL reserve the arguments slot | |
791 | for language-specific uses. */ | |
792 | #define DECL_ARGUMENTS(NODE) ((NODE)->decl.arguments) | |
793 | /* In FUNCTION_DECL, holds the decl for the return value. */ | |
794 | #define DECL_RESULT(NODE) ((NODE)->decl.result) | |
795 | /* In PARM_DECL, holds the type as written (perhaps a function or array). */ | |
796 | #define DECL_ARG_TYPE_AS_WRITTEN(NODE) ((NODE)->decl.result) | |
797 | /* For a FUNCTION_DECL, holds the tree of BINDINGs. | |
798 | For a VAR_DECL, holds the initial value. | |
799 | For a PARM_DECL, not used--default | |
800 | values for parameters are encoded in the type of the function, | |
801 | not in the PARM_DECL slot. */ | |
802 | #define DECL_INITIAL(NODE) ((NODE)->decl.initial) | |
803 | /* For a PARM_DECL, records the data type used to pass the argument, | |
804 | which may be different from the type seen in the program. */ | |
805 | #define DECL_ARG_TYPE(NODE) ((NODE)->decl.initial) /* In PARM_DECL. */ | |
3635a54b RK |
806 | /* For a FIELD_DECL in a QUAL_UNION_TYPE, records the expression, which |
807 | if nonzero, indicates that the field occupies the type. */ | |
808 | #define DECL_QUALIFIER(NODE) ((NODE)->decl.initial) | |
8da1b058 RS |
809 | /* These two fields describe where in the source code the declaration was. */ |
810 | #define DECL_SOURCE_FILE(NODE) ((NODE)->decl.filename) | |
811 | #define DECL_SOURCE_LINE(NODE) ((NODE)->decl.linenum) | |
812 | /* Holds the size of the datum, as a tree expression. | |
813 | Need not be constant. */ | |
814 | #define DECL_SIZE(NODE) ((NODE)->decl.size) | |
815 | /* Holds the alignment required for the datum. */ | |
73f3c7c3 | 816 | #define DECL_ALIGN(NODE) ((NODE)->decl.frame_size.u) |
17c73321 RK |
817 | /* Holds the machine mode corresponding to the declaration of a variable or |
818 | field. Always equal to TYPE_MODE (TREE_TYPE (decl)) except for a | |
819 | FIELD_DECL. */ | |
8da1b058 | 820 | #define DECL_MODE(NODE) ((NODE)->decl.mode) |
17c73321 RK |
821 | /* Holds the RTL expression for the value of a variable or function. If |
822 | PROMOTED_MODE is defined, the mode of this expression may not be same | |
823 | as DECL_MODE. In that case, DECL_MODE contains the mode corresponding | |
824 | to the variable's data type, while the mode | |
825 | of DECL_RTL is the mode actually used to contain the data. */ | |
8da1b058 RS |
826 | #define DECL_RTL(NODE) ((NODE)->decl.rtl) |
827 | /* For PARM_DECL, holds an RTL for the stack slot or register | |
828 | where the data was actually passed. */ | |
77f934bb | 829 | #define DECL_INCOMING_RTL(NODE) ((NODE)->decl.saved_insns.r) |
8da1b058 | 830 | /* For FUNCTION_DECL, if it is inline, holds the saved insn chain. */ |
77f934bb | 831 | #define DECL_SAVED_INSNS(NODE) ((NODE)->decl.saved_insns.r) |
66321686 RS |
832 | /* For FUNCTION_DECL, if it is inline, |
833 | holds the size of the stack frame, as an integer. */ | |
73f3c7c3 | 834 | #define DECL_FRAME_SIZE(NODE) ((NODE)->decl.frame_size.i) |
66321686 RS |
835 | /* For FUNCTION_DECL, if it is built-in, |
836 | this identifies which built-in operation it is. */ | |
73f3c7c3 RK |
837 | #define DECL_FUNCTION_CODE(NODE) ((NODE)->decl.frame_size.f) |
838 | #define DECL_SET_FUNCTION_CODE(NODE,VAL) ((NODE)->decl.frame_size.f = (VAL)) | |
77f934bb TW |
839 | /* For a FIELD_DECL, holds the size of the member as an integer. */ |
840 | #define DECL_FIELD_SIZE(NODE) ((NODE)->decl.saved_insns.i) | |
8da1b058 RS |
841 | |
842 | /* The DECL_VINDEX is used for FUNCTION_DECLS in two different ways. | |
843 | Before the struct containing the FUNCTION_DECL is laid out, | |
844 | DECL_VINDEX may point to a FUNCTION_DECL in a base class which | |
845 | is the FUNCTION_DECL which this FUNCTION_DECL will replace as a virtual | |
846 | function. When the class is laid out, this pointer is changed | |
847 | to an INTEGER_CST node which is suitable for use as an index | |
848 | into the virtual function table. */ | |
849 | #define DECL_VINDEX(NODE) ((NODE)->decl.vindex) | |
850 | /* For FIELD_DECLS, DECL_FCONTEXT is the *first* baseclass in | |
851 | which this FIELD_DECL is defined. This information is needed when | |
852 | writing debugging information about vfield and vbase decls for C++. */ | |
853 | #define DECL_FCONTEXT(NODE) ((NODE)->decl.vindex) | |
854 | ||
0e77444b RS |
855 | /* Every ..._DECL node gets a unique number. */ |
856 | #define DECL_UID(NODE) ((NODE)->decl.uid) | |
857 | ||
c5caa350 CH |
858 | /* For any sort of a ..._DECL node, this points to the original (abstract) |
859 | decl node which this decl is an instance of, or else it is NULL indicating | |
860 | that this decl is not an instance of some other decl. */ | |
861 | #define DECL_ABSTRACT_ORIGIN(NODE) ((NODE)->decl.abstract_origin) | |
862 | ||
863 | /* Nonzero for any sort of ..._DECL node means this decl node represents | |
864 | an inline instance of some original (abstract) decl from an inline function; | |
8da1b058 | 865 | suppress any warnings about shadowing some other variable. */ |
c5caa350 | 866 | #define DECL_FROM_INLINE(NODE) (DECL_ABSTRACT_ORIGIN (NODE) != (tree) 0) |
8da1b058 RS |
867 | |
868 | /* Nonzero if a _DECL means that the name of this decl should be ignored | |
869 | for symbolic debug purposes. */ | |
870 | #define DECL_IGNORED_P(NODE) ((NODE)->decl.ignored_flag) | |
871 | ||
c5caa350 CH |
872 | /* Nonzero for a given ..._DECL node means that this node represents an |
873 | "abstract instance" of the given declaration (e.g. in the original | |
874 | declaration of an inline function). When generating symbolic debugging | |
9faa82d8 | 875 | information, we mustn't try to generate any address information for nodes |
c5caa350 CH |
876 | marked as "abstract instances" because we don't actually generate |
877 | any code or allocate any data space for such instances. */ | |
878 | #define DECL_ABSTRACT(NODE) ((NODE)->decl.abstract_flag) | |
879 | ||
3110a56e RS |
880 | /* Nonzero if a _DECL means that no warnings should be generated just |
881 | because this decl is unused. */ | |
882 | #define DECL_IN_SYSTEM_HEADER(NODE) ((NODE)->decl.in_system_header_flag) | |
883 | ||
2c0d84d6 MS |
884 | /* Nonzero for a given ..._DECL node means that this node should be |
885 | put in .common, if possible. If a DECL_INITIAL is given, and it | |
886 | is not error_mark_node, then the decl cannot be put in .common. */ | |
887 | #define DECL_COMMON(NODE) ((NODE)->decl.common_flag) | |
888 | ||
3110a56e | 889 | /* Language-specific decl information. */ |
8da1b058 RS |
890 | #define DECL_LANG_SPECIFIC(NODE) ((NODE)->decl.lang_specific) |
891 | ||
892 | /* In a VAR_DECL or FUNCTION_DECL, | |
893 | nonzero means external reference: | |
894 | do not allocate storage, and refer to a definition elsewhere. */ | |
1394aabd | 895 | #define DECL_EXTERNAL(NODE) ((NODE)->decl.external_flag) |
8da1b058 | 896 | |
60e9e4b7 DE |
897 | /* In a TYPE_DECL |
898 | nonzero means the detail info about this type is not dumped into stabs. | |
5a783256 | 899 | Instead it will generate cross reference ('x') of names. |
60e9e4b7 DE |
900 | This uses the same flag as DECL_EXTERNAL. */ |
901 | #define TYPE_DECL_SUPPRESS_DEBUG(NODE) ((NODE)->decl.external_flag) | |
902 | ||
903 | ||
8da1b058 RS |
904 | /* In VAR_DECL and PARM_DECL nodes, nonzero means declared `register'. |
905 | In LABEL_DECL nodes, nonzero means that an error message about | |
906 | jumping into such a binding contour has been printed for this label. */ | |
1394aabd | 907 | #define DECL_REGISTER(NODE) ((NODE)->decl.regdecl_flag) |
5a1c7968 RS |
908 | /* In a FIELD_DECL, indicates this field should be bit-packed. */ |
909 | #define DECL_PACKED(NODE) ((NODE)->decl.regdecl_flag) | |
8da1b058 RS |
910 | |
911 | /* Nonzero in a ..._DECL means this variable is ref'd from a nested function. | |
912 | For VAR_DECL nodes, PARM_DECL nodes, and FUNCTION_DECL nodes. | |
913 | ||
914 | For LABEL_DECL nodes, nonzero if nonlocal gotos to the label are permitted. | |
915 | ||
916 | Also set in some languages for variables, etc., outside the normal | |
917 | lexical scope, such as class instance variables. */ | |
1394aabd | 918 | #define DECL_NONLOCAL(NODE) ((NODE)->decl.nonlocal_flag) |
8da1b058 RS |
919 | |
920 | /* Nonzero in a FUNCTION_DECL means this function can be substituted | |
921 | where it is called. */ | |
1394aabd | 922 | #define DECL_INLINE(NODE) ((NODE)->decl.inline_flag) |
8da1b058 RS |
923 | |
924 | /* Nonzero in a FUNCTION_DECL means this is a built-in function | |
925 | that is not specified by ansi C and that users are supposed to be allowed | |
926 | to redefine for any purpose whatever. */ | |
927 | #define DECL_BUILT_IN_NONANSI(NODE) ((NODE)->common.unsigned_flag) | |
928 | ||
929 | /* Nonzero in a FIELD_DECL means it is a bit field, and must be accessed | |
930 | specially. */ | |
931 | #define DECL_BIT_FIELD(NODE) ((NODE)->decl.bit_field_flag) | |
932 | /* In a LABEL_DECL, nonzero means label was defined inside a binding | |
933 | contour that restored a stack level and which is now exited. */ | |
934 | #define DECL_TOO_LATE(NODE) ((NODE)->decl.bit_field_flag) | |
935 | /* In a FUNCTION_DECL, nonzero means a built in function. */ | |
936 | #define DECL_BUILT_IN(NODE) ((NODE)->decl.bit_field_flag) | |
b8af45d0 RS |
937 | /* In a VAR_DECL that's static, |
938 | nonzero if the space is in the text section. */ | |
939 | #define DECL_IN_TEXT_SECTION(NODE) ((NODE)->decl.bit_field_flag) | |
8da1b058 | 940 | |
5a1c7968 | 941 | /* Used in VAR_DECLs to indicate that the variable is a vtable. |
2458b9c0 JM |
942 | Used in FIELD_DECLs for vtable pointers. |
943 | Used in FUNCTION_DECLs to indicate that the function is virtual. */ | |
8da1b058 | 944 | #define DECL_VIRTUAL_P(NODE) ((NODE)->decl.virtual_flag) |
8da1b058 | 945 | |
30801830 JM |
946 | /* Used to indicate that the linkage status of this DECL is not yet known, |
947 | so it should not be output now. */ | |
948 | #define DECL_DEFER_OUTPUT(NODE) ((NODE)->decl.defer_output) | |
949 | ||
adb23061 RK |
950 | /* Used in PARM_DECLs whose type are unions to indicate that the |
951 | argument should be passed in the same way that the first union | |
952 | alternative would be passed. */ | |
953 | #define DECL_TRANSPARENT_UNION(NODE) ((NODE)->decl.transparent_union) | |
954 | ||
2c5f4139 JM |
955 | /* Used in FUNCTION_DECLs to indicate that they should be run automatically |
956 | at the beginning or end of execution. */ | |
957 | #define DECL_STATIC_CONSTRUCTOR(NODE) ((NODE)->decl.static_ctor_flag) | |
958 | #define DECL_STATIC_DESTRUCTOR(NODE) ((NODE)->decl.static_dtor_flag) | |
959 | ||
3edbc4b9 JM |
960 | /* Used to indicate that this DECL represents a compiler-generated entity. */ |
961 | #define DECL_ARTIFICIAL(NODE) ((NODE)->decl.artificial_flag) | |
962 | ||
daefd78b JM |
963 | /* Used to indicate that this DECL has weak linkage. */ |
964 | #define DECL_WEAK(NODE) ((NODE)->decl.weak_flag) | |
965 | ||
8da1b058 RS |
966 | /* Additional flags for language-specific uses. */ |
967 | #define DECL_LANG_FLAG_0(NODE) ((NODE)->decl.lang_flag_0) | |
968 | #define DECL_LANG_FLAG_1(NODE) ((NODE)->decl.lang_flag_1) | |
969 | #define DECL_LANG_FLAG_2(NODE) ((NODE)->decl.lang_flag_2) | |
970 | #define DECL_LANG_FLAG_3(NODE) ((NODE)->decl.lang_flag_3) | |
971 | #define DECL_LANG_FLAG_4(NODE) ((NODE)->decl.lang_flag_4) | |
972 | #define DECL_LANG_FLAG_5(NODE) ((NODE)->decl.lang_flag_5) | |
973 | #define DECL_LANG_FLAG_6(NODE) ((NODE)->decl.lang_flag_6) | |
974 | #define DECL_LANG_FLAG_7(NODE) ((NODE)->decl.lang_flag_7) | |
975 | ||
976 | struct tree_decl | |
977 | { | |
978 | char common[sizeof (struct tree_common)]; | |
979 | char *filename; | |
980 | int linenum; | |
981 | union tree_node *size; | |
0e77444b | 982 | unsigned int uid; |
8da1b058 RS |
983 | #ifdef ONLY_INT_FIELDS |
984 | int mode : 8; | |
985 | #else | |
986 | enum machine_mode mode : 8; | |
987 | #endif | |
8da1b058 RS |
988 | |
989 | unsigned external_flag : 1; | |
990 | unsigned nonlocal_flag : 1; | |
991 | unsigned regdecl_flag : 1; | |
992 | unsigned inline_flag : 1; | |
993 | unsigned bit_field_flag : 1; | |
994 | unsigned virtual_flag : 1; | |
8da1b058 | 995 | unsigned ignored_flag : 1; |
c5caa350 | 996 | unsigned abstract_flag : 1; |
8da1b058 | 997 | |
3110a56e | 998 | unsigned in_system_header_flag : 1; |
2c0d84d6 | 999 | unsigned common_flag : 1; |
30801830 | 1000 | unsigned defer_output : 1; |
adb23061 | 1001 | unsigned transparent_union : 1; |
2c5f4139 JM |
1002 | unsigned static_ctor_flag : 1; |
1003 | unsigned static_dtor_flag : 1; | |
3edbc4b9 | 1004 | unsigned artificial_flag : 1; |
daefd78b JM |
1005 | unsigned weak_flag : 1; |
1006 | /* room for no more */ | |
3110a56e | 1007 | |
8da1b058 RS |
1008 | unsigned lang_flag_0 : 1; |
1009 | unsigned lang_flag_1 : 1; | |
1010 | unsigned lang_flag_2 : 1; | |
1011 | unsigned lang_flag_3 : 1; | |
1012 | unsigned lang_flag_4 : 1; | |
1013 | unsigned lang_flag_5 : 1; | |
1014 | unsigned lang_flag_6 : 1; | |
1015 | unsigned lang_flag_7 : 1; | |
1016 | ||
1017 | union tree_node *name; | |
1018 | union tree_node *context; | |
1019 | union tree_node *arguments; | |
1020 | union tree_node *result; | |
1021 | union tree_node *initial; | |
c5caa350 | 1022 | union tree_node *abstract_origin; |
8da1b058 | 1023 | union tree_node *assembler_name; |
868e8789 | 1024 | union tree_node *section_name; |
77cf75a8 | 1025 | union tree_node *machine_attributes; |
8da1b058 RS |
1026 | struct rtx_def *rtl; /* acts as link to register transfer language |
1027 | (rtl) info */ | |
c0920bf9 | 1028 | /* For a FUNCTION_DECL, if inline, this is the size of frame needed. |
66321686 RS |
1029 | If built-in, this is the code for which built-in function. |
1030 | For other kinds of decls, this is DECL_ALIGN. */ | |
73f3c7c3 RK |
1031 | union { |
1032 | int i; | |
1033 | unsigned int u; | |
1034 | enum built_in_function f; | |
1035 | } frame_size; | |
77f934bb TW |
1036 | /* For FUNCTION_DECLs: points to insn that constitutes its definition |
1037 | on the permanent obstack. For any other kind of decl, this is the | |
1038 | alignment. */ | |
1039 | union { | |
1040 | struct rtx_def *r; | |
1041 | int i; | |
1042 | } saved_insns; | |
8da1b058 RS |
1043 | union tree_node *vindex; |
1044 | /* Points to a structure whose details depend on the language in use. */ | |
1045 | struct lang_decl *lang_specific; | |
1046 | }; | |
1047 | \f | |
1048 | /* Define the overall contents of a tree node. | |
1049 | It may be any of the structures declared above | |
1050 | for various types of node. */ | |
1051 | ||
1052 | union tree_node | |
1053 | { | |
1054 | struct tree_common common; | |
1055 | struct tree_int_cst int_cst; | |
1056 | struct tree_real_cst real_cst; | |
1057 | struct tree_string string; | |
1058 | struct tree_complex complex; | |
1059 | struct tree_identifier identifier; | |
1060 | struct tree_decl decl; | |
1061 | struct tree_type type; | |
1062 | struct tree_list list; | |
1063 | struct tree_vec vec; | |
1064 | struct tree_exp exp; | |
61131fa2 | 1065 | struct tree_block block; |
8da1b058 RS |
1066 | }; |
1067 | ||
f837a861 MM |
1068 | /* Add prototype support. */ |
1069 | #ifndef PROTO | |
1070 | #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__) | |
1071 | #define PROTO(ARGS) ARGS | |
1072 | #else | |
1073 | #define PROTO(ARGS) () | |
1074 | #endif | |
1075 | #endif | |
1076 | ||
cc927263 | 1077 | #ifndef VPROTO |
41109364 | 1078 | #ifdef __STDC__ |
bdea67fa | 1079 | #define PVPROTO(ARGS) ARGS |
41109364 RK |
1080 | #define VPROTO(ARGS) ARGS |
1081 | #define VA_START(va_list,var) va_start(va_list,var) | |
1082 | #else | |
bdea67fa | 1083 | #define PVPROTO(ARGS) () |
41109364 RK |
1084 | #define VPROTO(ARGS) (va_alist) va_dcl |
1085 | #define VA_START(va_list,var) va_start(va_list) | |
1086 | #endif | |
cc927263 | 1087 | #endif |
f837a861 | 1088 | |
d6b12657 RK |
1089 | #ifndef STDIO_PROTO |
1090 | #ifdef BUFSIZ | |
1091 | #define STDIO_PROTO(ARGS) PROTO(ARGS) | |
1092 | #else | |
1093 | #define STDIO_PROTO(ARGS) () | |
1094 | #endif | |
1095 | #endif | |
1096 | ||
f837a861 MM |
1097 | #define NULL_TREE (tree) NULL |
1098 | ||
1099 | /* Define a generic NULL if one hasn't already been defined. */ | |
1100 | ||
1101 | #ifndef NULL | |
1102 | #define NULL 0 | |
1103 | #endif | |
1104 | ||
1105 | #ifndef GENERIC_PTR | |
1106 | #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__) | |
1107 | #define GENERIC_PTR void * | |
1108 | #else | |
1109 | #define GENERIC_PTR char * | |
1110 | #endif | |
1111 | #endif | |
1112 | ||
1113 | #ifndef NULL_PTR | |
1114 | #define NULL_PTR ((GENERIC_PTR)0) | |
1115 | #endif | |
8da1b058 | 1116 | \f |
e5d70561 RK |
1117 | /* The following functions accept a wide integer argument. Rather than |
1118 | having to cast on every function call, we use a macro instead, that is | |
1119 | defined here and in rtl.h. */ | |
1120 | ||
1121 | #ifndef exact_log2 | |
1122 | #define exact_log2(N) exact_log2_wide ((HOST_WIDE_INT) (N)) | |
1123 | #define floor_log2(N) floor_log2_wide ((HOST_WIDE_INT) (N)) | |
1124 | #endif | |
1125 | ||
f837a861 MM |
1126 | #if 0 |
1127 | /* At present, don't prototype xrealloc, since all of the callers don't | |
1128 | cast their pointers to char *, and all of the xrealloc's don't use | |
1129 | void * yet. */ | |
bbfd16d4 RK |
1130 | extern char *xmalloc PROTO((size_t)); |
1131 | extern char *xrealloc PROTO((void *, size_t)); | |
f837a861 | 1132 | #else |
bbfd16d4 | 1133 | extern char *xmalloc (); |
0e77444b | 1134 | extern char *xrealloc (); |
f837a861 MM |
1135 | #endif |
1136 | ||
1137 | extern char *oballoc PROTO((int)); | |
1138 | extern char *permalloc PROTO((int)); | |
1139 | extern char *savealloc PROTO((int)); | |
f837a861 | 1140 | extern void free PROTO((void *)); |
8da1b058 RS |
1141 | |
1142 | /* Lowest level primitive for allocating a node. | |
1143 | The TREE_CODE is the only argument. Contents are initialized | |
1144 | to zero except for a few of the common fields. */ | |
1145 | ||
f837a861 | 1146 | extern tree make_node PROTO((enum tree_code)); |
8da1b058 RS |
1147 | |
1148 | /* Make a copy of a node, with all the same contents except | |
1149 | for TREE_PERMANENT. (The copy is permanent | |
1150 | iff nodes being made now are permanent.) */ | |
1151 | ||
f837a861 | 1152 | extern tree copy_node PROTO((tree)); |
8da1b058 RS |
1153 | |
1154 | /* Make a copy of a chain of TREE_LIST nodes. */ | |
1155 | ||
f837a861 | 1156 | extern tree copy_list PROTO((tree)); |
8da1b058 RS |
1157 | |
1158 | /* Make a TREE_VEC. */ | |
1159 | ||
f837a861 | 1160 | extern tree make_tree_vec PROTO((int)); |
8da1b058 RS |
1161 | |
1162 | /* Return the (unique) IDENTIFIER_NODE node for a given name. | |
1163 | The name is supplied as a char *. */ | |
1164 | ||
f837a861 | 1165 | extern tree get_identifier PROTO((char *)); |
8da1b058 RS |
1166 | |
1167 | /* Construct various types of nodes. */ | |
1168 | ||
e5d70561 RK |
1169 | #define build_int_2(LO,HI) \ |
1170 | build_int_2_wide ((HOST_WIDE_INT) (LO), (HOST_WIDE_INT) (HI)) | |
1171 | ||
bdea67fa RK |
1172 | extern tree build PVPROTO((enum tree_code, tree, ...)); |
1173 | extern tree build_nt PVPROTO((enum tree_code, ...)); | |
1174 | extern tree build_parse_node PVPROTO((enum tree_code, ...)); | |
f837a861 MM |
1175 | |
1176 | extern tree build_int_2_wide PROTO((HOST_WIDE_INT, HOST_WIDE_INT)); | |
1177 | extern tree build_real PROTO((tree, REAL_VALUE_TYPE)); | |
1178 | extern tree build_real_from_int_cst PROTO((tree, tree)); | |
1179 | extern tree build_complex PROTO((tree, tree)); | |
1180 | extern tree build_string PROTO((int, char *)); | |
1181 | extern tree build1 PROTO((enum tree_code, tree, tree)); | |
1182 | extern tree build_tree_list PROTO((tree, tree)); | |
1183 | extern tree build_decl_list PROTO((tree, tree)); | |
1184 | extern tree build_decl PROTO((enum tree_code, tree, tree)); | |
1185 | extern tree build_block PROTO((tree, tree, tree, tree, tree)); | |
8da1b058 RS |
1186 | |
1187 | /* Construct various nodes representing data types. */ | |
1188 | ||
f837a861 MM |
1189 | extern tree make_signed_type PROTO((int)); |
1190 | extern tree make_unsigned_type PROTO((int)); | |
1191 | extern tree signed_or_unsigned_type PROTO((int, tree)); | |
1192 | extern void fixup_unsigned_type PROTO((tree)); | |
1193 | extern tree build_pointer_type PROTO((tree)); | |
1194 | extern tree build_reference_type PROTO((tree)); | |
1195 | extern tree build_index_type PROTO((tree)); | |
1196 | extern tree build_index_2_type PROTO((tree, tree)); | |
1197 | extern tree build_array_type PROTO((tree, tree)); | |
1198 | extern tree build_function_type PROTO((tree, tree)); | |
1199 | extern tree build_method_type PROTO((tree, tree)); | |
1200 | extern tree build_offset_type PROTO((tree, tree)); | |
1201 | extern tree build_complex_type PROTO((tree)); | |
1202 | extern tree array_type_nelts PROTO((tree)); | |
1203 | ||
12cfc830 BK |
1204 | extern tree value_member PROTO((tree, tree)); |
1205 | extern tree purpose_member PROTO((tree, tree)); | |
1206 | extern tree binfo_member PROTO((tree, tree)); | |
9c130398 | 1207 | extern int attribute_hash_list PROTO((tree)); |
bad1b4ba RK |
1208 | extern int attribute_list_equal PROTO((tree, tree)); |
1209 | extern int attribute_list_contained PROTO((tree, tree)); | |
12cfc830 BK |
1210 | extern int tree_int_cst_equal PROTO((tree, tree)); |
1211 | extern int tree_int_cst_lt PROTO((tree, tree)); | |
40c9a549 | 1212 | extern int tree_int_cst_sgn PROTO((tree)); |
12cfc830 BK |
1213 | extern int index_type_equal PROTO((tree, tree)); |
1214 | ||
f837a861 MM |
1215 | /* From expmed.c. Since rtl.h is included after tree.h, we can't |
1216 | put the prototype here. Rtl.h does declare the prototype if | |
1217 | tree.h had been included. */ | |
1218 | ||
1219 | extern tree make_tree (); | |
8da1b058 | 1220 | \f |
bad1b4ba RK |
1221 | /* Return a type like TTYPE except that its TYPE_ATTRIBUTES |
1222 | is ATTRIBUTE. | |
1223 | ||
1224 | Such modified types already made are recorded so that duplicates | |
1225 | are not made. */ | |
1226 | ||
1227 | extern tree build_type_attribute_variant PROTO((tree, tree)); | |
77cf75a8 | 1228 | extern tree build_decl_attribute_variant PROTO((tree, tree)); |
bad1b4ba | 1229 | |
9c130398 DE |
1230 | /* Return 1 if an attribute and its arguments are valid for a decl or type. */ |
1231 | ||
1232 | int valid_machine_attribute PROTO((tree, tree, tree, tree)); | |
1233 | ||
1234 | /* Given a tree node and a string, return non-zero if the tree node is | |
1235 | a valid attribute name for the string. */ | |
1236 | ||
1237 | int is_attribute_p PROTO((char *, tree)); | |
1238 | ||
1239 | /* Given an attribute name and a list of attributes, return the list element | |
1240 | of the attribute or NULL_TREE if not found. */ | |
1241 | ||
1242 | tree lookup_attribute PROTO((char *, tree)); | |
1243 | ||
8da1b058 RS |
1244 | /* Given a type node TYPE, and CONSTP and VOLATILEP, return a type |
1245 | for the same kind of data as TYPE describes. | |
1246 | Variants point to the "main variant" (which has neither CONST nor VOLATILE) | |
1247 | via TYPE_MAIN_VARIANT, and it points to a chain of other variants | |
1248 | so that duplicate variants are never made. | |
1249 | Only main variants should ever appear as types of expressions. */ | |
1250 | ||
f837a861 | 1251 | extern tree build_type_variant PROTO((tree, int, int)); |
8da1b058 | 1252 | |
43100b14 RS |
1253 | /* Make a copy of a type node. */ |
1254 | ||
f837a861 | 1255 | extern tree build_type_copy PROTO((tree)); |
43100b14 | 1256 | |
8da1b058 RS |
1257 | /* Given a ..._TYPE node, calculate the TYPE_SIZE, TYPE_SIZE_UNIT, |
1258 | TYPE_ALIGN and TYPE_MODE fields. | |
1259 | If called more than once on one node, does nothing except | |
1260 | for the first time. */ | |
1261 | ||
f837a861 | 1262 | extern void layout_type PROTO((tree)); |
8da1b058 RS |
1263 | |
1264 | /* Given a hashcode and a ..._TYPE node (for which the hashcode was made), | |
1265 | return a canonicalized ..._TYPE node, so that duplicates are not made. | |
1266 | How the hash code is computed is up to the caller, as long as any two | |
1267 | callers that could hash identical-looking type nodes agree. */ | |
1268 | ||
f837a861 | 1269 | extern tree type_hash_canon PROTO((int, tree)); |
8da1b058 RS |
1270 | |
1271 | /* Given a VAR_DECL, PARM_DECL, RESULT_DECL or FIELD_DECL node, | |
1272 | calculates the DECL_SIZE, DECL_SIZE_UNIT, DECL_ALIGN and DECL_MODE | |
1273 | fields. Call this only once for any given decl node. | |
1274 | ||
1275 | Second argument is the boundary that this field can be assumed to | |
1276 | be starting at (in bits). Zero means it can be assumed aligned | |
1277 | on any boundary that may be needed. */ | |
1278 | ||
f837a861 | 1279 | extern void layout_decl PROTO((tree, unsigned)); |
8da1b058 | 1280 | |
8da1b058 RS |
1281 | /* Return an expr equal to X but certainly not valid as an lvalue. */ |
1282 | ||
f837a861 | 1283 | extern tree non_lvalue PROTO((tree)); |
f0d568b7 | 1284 | extern tree pedantic_non_lvalue PROTO((tree)); |
8da1b058 | 1285 | |
f837a861 MM |
1286 | extern tree convert PROTO((tree, tree)); |
1287 | extern tree size_in_bytes PROTO((tree)); | |
1288 | extern int int_size_in_bytes PROTO((tree)); | |
1289 | extern tree size_binop PROTO((enum tree_code, tree, tree)); | |
f42c0c38 | 1290 | extern tree size_int PROTO((unsigned HOST_WIDE_INT)); |
f837a861 MM |
1291 | extern tree round_up PROTO((tree, int)); |
1292 | extern tree get_pending_sizes PROTO((void)); | |
f05a769f | 1293 | extern void put_pending_sizes PROTO((tree)); |
8da1b058 RS |
1294 | |
1295 | /* Type for sizes of data-type. */ | |
1296 | ||
1297 | extern tree sizetype; | |
1298 | ||
8294accf PB |
1299 | /* If nonzero, an upper limit on alignment of structure fields, in bits. */ |
1300 | extern int maximum_field_alignment; | |
1301 | ||
abc95ed3 | 1302 | /* If non-zero, the alignment of a bitstring or (power-)set value, in bits. */ |
8294accf PB |
1303 | extern int set_alignment; |
1304 | ||
8da1b058 RS |
1305 | /* Concatenate two lists (chains of TREE_LIST nodes) X and Y |
1306 | by making the last node in X point to Y. | |
1307 | Returns X, except if X is 0 returns Y. */ | |
1308 | ||
f837a861 | 1309 | extern tree chainon PROTO((tree, tree)); |
8da1b058 RS |
1310 | |
1311 | /* Make a new TREE_LIST node from specified PURPOSE, VALUE and CHAIN. */ | |
1312 | ||
f837a861 MM |
1313 | extern tree tree_cons PROTO((tree, tree, tree)); |
1314 | extern tree perm_tree_cons PROTO((tree, tree, tree)); | |
1315 | extern tree temp_tree_cons PROTO((tree, tree, tree)); | |
1316 | extern tree saveable_tree_cons PROTO((tree, tree, tree)); | |
1317 | extern tree decl_tree_cons PROTO((tree, tree, tree)); | |
8da1b058 RS |
1318 | |
1319 | /* Return the last tree node in a chain. */ | |
1320 | ||
f837a861 | 1321 | extern tree tree_last PROTO((tree)); |
8da1b058 RS |
1322 | |
1323 | /* Reverse the order of elements in a chain, and return the new head. */ | |
1324 | ||
f837a861 | 1325 | extern tree nreverse PROTO((tree)); |
8da1b058 RS |
1326 | |
1327 | /* Returns the length of a chain of nodes | |
1328 | (number of chain pointers to follow before reaching a null pointer). */ | |
1329 | ||
f837a861 | 1330 | extern int list_length PROTO((tree)); |
8da1b058 RS |
1331 | |
1332 | /* integer_zerop (tree x) is nonzero if X is an integer constant of value 0 */ | |
1333 | ||
f837a861 | 1334 | extern int integer_zerop PROTO((tree)); |
8da1b058 RS |
1335 | |
1336 | /* integer_onep (tree x) is nonzero if X is an integer constant of value 1 */ | |
1337 | ||
f837a861 | 1338 | extern int integer_onep PROTO((tree)); |
8da1b058 RS |
1339 | |
1340 | /* integer_all_onesp (tree x) is nonzero if X is an integer constant | |
1341 | all of whose significant bits are 1. */ | |
1342 | ||
f837a861 | 1343 | extern int integer_all_onesp PROTO((tree)); |
8da1b058 RS |
1344 | |
1345 | /* integer_pow2p (tree x) is nonzero is X is an integer constant with | |
1346 | exactly one bit 1. */ | |
1347 | ||
f837a861 | 1348 | extern int integer_pow2p PROTO((tree)); |
8da1b058 RS |
1349 | |
1350 | /* staticp (tree x) is nonzero if X is a reference to data allocated | |
1351 | at a fixed address in memory. */ | |
1352 | ||
f837a861 | 1353 | extern int staticp PROTO((tree)); |
8da1b058 RS |
1354 | |
1355 | /* Gets an error if argument X is not an lvalue. | |
1356 | Also returns 1 if X is an lvalue, 0 if not. */ | |
1357 | ||
f837a861 | 1358 | extern int lvalue_or_else PROTO((tree, char *)); |
8da1b058 RS |
1359 | |
1360 | /* save_expr (EXP) returns an expression equivalent to EXP | |
1361 | but it can be used multiple times within context CTX | |
1362 | and only evaluate EXP once. */ | |
1363 | ||
f837a861 | 1364 | extern tree save_expr PROTO((tree)); |
8da1b058 | 1365 | |
7380d707 RK |
1366 | /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size |
1367 | or offset that depends on a field within a record. | |
1368 | ||
1369 | Note that we only allow such expressions within simple arithmetic | |
1370 | or a COND_EXPR. */ | |
1371 | ||
1372 | extern int contains_placeholder_p PROTO((tree)); | |
1373 | ||
1374 | /* Given a tree EXP, a FIELD_DECL F, and a replacement value R, | |
1375 | return a tree with all occurrences of references to F in a | |
1376 | PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP | |
1377 | contains only arithmetic expressions. */ | |
1378 | ||
1379 | extern tree substitute_in_expr PROTO((tree, tree, tree)); | |
1380 | ||
1381 | /* Given a type T, a FIELD_DECL F, and a replacement value R, | |
1382 | return a new type with all size expressions that contain F | |
1383 | updated by replacing the reference to F with R. */ | |
1384 | ||
1385 | extern tree substitute_in_type PROTO((tree, tree, tree)); | |
1386 | ||
90ca31be RS |
1387 | /* variable_size (EXP) is like save_expr (EXP) except that it |
1388 | is for the special case of something that is part of a | |
1389 | variable size for a data type. It makes special arrangements | |
1390 | to compute the value at the right time when the data type | |
1391 | belongs to a function parameter. */ | |
1392 | ||
f837a861 | 1393 | extern tree variable_size PROTO((tree)); |
90ca31be | 1394 | |
8da1b058 RS |
1395 | /* stabilize_reference (EXP) returns an reference equivalent to EXP |
1396 | but it can be used multiple times | |
1397 | and only evaluate the subexpressions once. */ | |
1398 | ||
f837a861 | 1399 | extern tree stabilize_reference PROTO((tree)); |
8da1b058 | 1400 | |
1c8b10bb RK |
1401 | /* Subroutine of stabilize_reference; this is called for subtrees of |
1402 | references. Any expression with side-effects must be put in a SAVE_EXPR | |
1403 | to ensure that it is only evaluated once. */ | |
1404 | ||
1405 | extern tree stabilize_reference_1 PROTO((tree)); | |
1406 | ||
8da1b058 RS |
1407 | /* Return EXP, stripped of any conversions to wider types |
1408 | in such a way that the result of converting to type FOR_TYPE | |
1409 | is the same as if EXP were converted to FOR_TYPE. | |
1410 | If FOR_TYPE is 0, it signifies EXP's type. */ | |
1411 | ||
f837a861 | 1412 | extern tree get_unwidened PROTO((tree, tree)); |
8da1b058 RS |
1413 | |
1414 | /* Return OP or a simpler expression for a narrower value | |
1415 | which can be sign-extended or zero-extended to give back OP. | |
1416 | Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended | |
1417 | or 0 if the value should be sign-extended. */ | |
1418 | ||
f837a861 | 1419 | extern tree get_narrower PROTO((tree, int *)); |
8da1b058 RS |
1420 | |
1421 | /* Given MODE and UNSIGNEDP, return a suitable type-tree | |
1422 | with that mode. | |
1423 | The definition of this resides in language-specific code | |
1424 | as the repertoire of available types may vary. */ | |
1425 | ||
f837a861 | 1426 | extern tree type_for_mode PROTO((enum machine_mode, int)); |
8da1b058 RS |
1427 | |
1428 | /* Given PRECISION and UNSIGNEDP, return a suitable type-tree | |
1429 | for an integer type with at least that precision. | |
1430 | The definition of this resides in language-specific code | |
1431 | as the repertoire of available types may vary. */ | |
1432 | ||
f837a861 | 1433 | extern tree type_for_size PROTO((unsigned, int)); |
8da1b058 RS |
1434 | |
1435 | /* Given an integer type T, return a type like T but unsigned. | |
1436 | If T is unsigned, the value is T. | |
1437 | The definition of this resides in language-specific code | |
1438 | as the repertoire of available types may vary. */ | |
1439 | ||
f837a861 | 1440 | extern tree unsigned_type PROTO((tree)); |
8da1b058 RS |
1441 | |
1442 | /* Given an integer type T, return a type like T but signed. | |
1443 | If T is signed, the value is T. | |
1444 | The definition of this resides in language-specific code | |
1445 | as the repertoire of available types may vary. */ | |
1446 | ||
f837a861 | 1447 | extern tree signed_type PROTO((tree)); |
8da1b058 RS |
1448 | |
1449 | /* This function must be defined in the language-specific files. | |
1450 | expand_expr calls it to build the cleanup-expression for a TARGET_EXPR. | |
1451 | This is defined in a language-specific file. */ | |
1452 | ||
f837a861 | 1453 | extern tree maybe_build_cleanup PROTO((tree)); |
8da1b058 RS |
1454 | |
1455 | /* Given an expression EXP that may be a COMPONENT_REF or an ARRAY_REF, | |
1456 | look for nested component-refs or array-refs at constant positions | |
1457 | and find the ultimate containing object, which is returned. */ | |
1458 | ||
f837a861 | 1459 | extern tree get_inner_reference PROTO((tree, int *, int *, tree *, enum machine_mode *, int *, int *)); |
8da1b058 RS |
1460 | |
1461 | /* Return the FUNCTION_DECL which provides this _DECL with its context, | |
1462 | or zero if none. */ | |
f837a861 | 1463 | extern tree decl_function_context PROTO((tree)); |
8da1b058 | 1464 | |
3635a54b RK |
1465 | /* Return the RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE which provides |
1466 | this _DECL with its context, or zero if none. */ | |
f837a861 | 1467 | extern tree decl_type_context PROTO((tree)); |
8da1b058 RS |
1468 | |
1469 | /* Given the FUNCTION_DECL for the current function, | |
1470 | return zero if it is ok for this function to be inline. | |
1471 | Otherwise return a warning message with a single %s | |
1472 | for the function's name. */ | |
1473 | ||
f837a861 | 1474 | extern char *function_cannot_inline_p PROTO((tree)); |
a3c11cd3 JW |
1475 | |
1476 | /* Return 1 if EXPR is the real constant zero. */ | |
1477 | extern int real_zerop PROTO((tree)); | |
8da1b058 RS |
1478 | \f |
1479 | /* Declare commonly used variables for tree structure. */ | |
1480 | ||
1481 | /* An integer constant with value 0 */ | |
1482 | extern tree integer_zero_node; | |
1483 | ||
1484 | /* An integer constant with value 1 */ | |
1485 | extern tree integer_one_node; | |
1486 | ||
1487 | /* An integer constant with value 0 whose type is sizetype. */ | |
1488 | extern tree size_zero_node; | |
1489 | ||
1490 | /* An integer constant with value 1 whose type is sizetype. */ | |
1491 | extern tree size_one_node; | |
1492 | ||
1493 | /* A constant of type pointer-to-int and value 0 */ | |
1494 | extern tree null_pointer_node; | |
1495 | ||
1496 | /* A node of type ERROR_MARK. */ | |
1497 | extern tree error_mark_node; | |
1498 | ||
1499 | /* The type node for the void type. */ | |
1500 | extern tree void_type_node; | |
1501 | ||
1502 | /* The type node for the ordinary (signed) integer type. */ | |
1503 | extern tree integer_type_node; | |
1504 | ||
1505 | /* The type node for the unsigned integer type. */ | |
1506 | extern tree unsigned_type_node; | |
1507 | ||
1508 | /* The type node for the ordinary character type. */ | |
1509 | extern tree char_type_node; | |
1510 | ||
1511 | /* Points to the name of the input file from which the current input | |
1512 | being parsed originally came (before it went into cpp). */ | |
1513 | extern char *input_filename; | |
1514 | ||
1515 | /* Current line number in input file. */ | |
1516 | extern int lineno; | |
1517 | ||
1518 | /* Nonzero for -pedantic switch: warn about anything | |
1519 | that standard C forbids. */ | |
1520 | extern int pedantic; | |
1521 | ||
4812480a JM |
1522 | /* Nonzero means lvalues are limited to those valid in pedantic ANSI C. |
1523 | Zero means allow extended lvalues. */ | |
1524 | ||
1525 | extern int pedantic_lvalues; | |
1526 | ||
8da1b058 RS |
1527 | /* Nonzero means can safely call expand_expr now; |
1528 | otherwise layout_type puts variable sizes onto `pending_sizes' instead. */ | |
1529 | ||
1530 | extern int immediate_size_expand; | |
1531 | ||
1532 | /* Points to the FUNCTION_DECL of the function whose body we are reading. */ | |
1533 | ||
1534 | extern tree current_function_decl; | |
1535 | ||
1536 | /* Nonzero if function being compiled can call setjmp. */ | |
1537 | ||
1538 | extern int current_function_calls_setjmp; | |
1539 | ||
1540 | /* Nonzero if function being compiled can call longjmp. */ | |
1541 | ||
1542 | extern int current_function_calls_longjmp; | |
1543 | ||
1544 | /* Nonzero means all ..._TYPE nodes should be allocated permanently. */ | |
1545 | ||
1546 | extern int all_types_permanent; | |
1547 | ||
1548 | /* Pointer to function to compute the name to use to print a declaration. */ | |
1549 | ||
1550 | extern char *(*decl_printable_name) (); | |
dc437e16 RS |
1551 | |
1552 | /* Pointer to function to finish handling an incomplete decl at the | |
1553 | end of compilation. */ | |
1554 | ||
1555 | extern void (*incomplete_decl_finalize_hook) (); | |
8da1b058 | 1556 | \f |
143f1945 BK |
1557 | /* In tree.c */ |
1558 | extern char *perm_calloc PROTO((int, long)); | |
bca949e2 | 1559 | extern tree get_set_constructor_bits PROTO((tree, char*, int)); |
4aad31ac | 1560 | extern tree get_set_constructor_bytes PROTO((tree, |
4e95c4d0 | 1561 | unsigned char*, int)); |
143f1945 | 1562 | \f |
8da1b058 RS |
1563 | /* In stmt.c */ |
1564 | ||
d6b12657 | 1565 | extern void expand_fixups PROTO((struct rtx_def *)); |
f837a861 MM |
1566 | extern tree expand_start_stmt_expr PROTO((void)); |
1567 | extern tree expand_end_stmt_expr PROTO((tree)); | |
1568 | extern void expand_expr_stmt PROTO((tree)); | |
17ca38a2 | 1569 | extern int warn_if_unused_value PROTO((tree)); |
12cfc830 | 1570 | extern void expand_decl_init PROTO((tree)); |
f837a861 MM |
1571 | extern void clear_last_expr PROTO((void)); |
1572 | extern void expand_label PROTO((tree)); | |
1573 | extern void expand_goto PROTO((tree)); | |
1574 | extern void expand_asm PROTO((tree)); | |
1575 | extern void expand_start_cond PROTO((tree, int)); | |
1576 | extern void expand_end_cond PROTO((void)); | |
1577 | extern void expand_start_else PROTO((void)); | |
1578 | extern void expand_start_elseif PROTO((tree)); | |
1579 | extern struct nesting *expand_start_loop PROTO((int)); | |
1580 | extern struct nesting *expand_start_loop_continue_elsewhere PROTO((int)); | |
1581 | extern void expand_loop_continue_here PROTO((void)); | |
1582 | extern void expand_end_loop PROTO((void)); | |
1583 | extern int expand_continue_loop PROTO((struct nesting *)); | |
1584 | extern int expand_exit_loop PROTO((struct nesting *)); | |
d6b12657 RK |
1585 | extern int expand_exit_loop_if_false PROTO((struct nesting *, |
1586 | tree)); | |
f837a861 MM |
1587 | extern int expand_exit_something PROTO((void)); |
1588 | ||
1589 | extern void expand_null_return PROTO((void)); | |
1590 | extern void expand_return PROTO((tree)); | |
1591 | extern void expand_start_bindings PROTO((int)); | |
1592 | extern void expand_end_bindings PROTO((tree, int, int)); | |
1593 | extern tree last_cleanup_this_contour PROTO((void)); | |
d6b12657 RK |
1594 | extern void expand_start_case PROTO((int, tree, tree, |
1595 | char *)); | |
f837a861 | 1596 | extern void expand_end_case PROTO((tree)); |
d6b12657 RK |
1597 | extern int pushcase PROTO((tree, |
1598 | tree (*) (tree, tree), | |
1599 | tree, tree *)); | |
1600 | extern int pushcase_range PROTO((tree, tree, | |
1601 | tree (*) (tree, tree), | |
1602 | tree, tree *)); | |
8da1b058 RS |
1603 | |
1604 | /* In fold-const.c */ | |
1605 | ||
4b63dccb RK |
1606 | /* Fold constants as much as possible in an expression. |
1607 | Returns the simplified expression. | |
1608 | Acts only on the top level of the expression; | |
1609 | if the argument itself cannot be simplified, its | |
1610 | subexpressions are not changed. */ | |
1611 | ||
1612 | extern tree fold PROTO((tree)); | |
1613 | ||
1614 | extern int force_fit_type PROTO((tree, int)); | |
1615 | extern int add_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1616 | HOST_WIDE_INT, HOST_WIDE_INT, | |
1617 | HOST_WIDE_INT *, HOST_WIDE_INT *)); | |
1618 | extern int neg_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1619 | HOST_WIDE_INT *, HOST_WIDE_INT *)); | |
1620 | extern int mul_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1621 | HOST_WIDE_INT, HOST_WIDE_INT, | |
1622 | HOST_WIDE_INT *, HOST_WIDE_INT *)); | |
1623 | extern void lshift_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1624 | HOST_WIDE_INT, int, HOST_WIDE_INT *, | |
1625 | HOST_WIDE_INT *, int)); | |
1626 | extern void rshift_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1627 | HOST_WIDE_INT, int, | |
1628 | HOST_WIDE_INT *, HOST_WIDE_INT *, int)); | |
1629 | extern void lrotate_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1630 | HOST_WIDE_INT, int, HOST_WIDE_INT *, | |
1631 | HOST_WIDE_INT *)); | |
1632 | extern void rrotate_double PROTO((HOST_WIDE_INT, HOST_WIDE_INT, | |
1633 | HOST_WIDE_INT, int, HOST_WIDE_INT *, | |
1634 | HOST_WIDE_INT *)); | |
1635 | extern int operand_equal_p PROTO((tree, tree, int)); | |
1636 | extern tree invert_truthvalue PROTO((tree)); | |
8da1b058 RS |
1637 | \f |
1638 | /* The language front-end must define these functions. */ | |
1639 | ||
1640 | /* Function of no arguments for initializing lexical scanning. */ | |
f837a861 | 1641 | extern void init_lex PROTO((void)); |
8da1b058 | 1642 | /* Function of no arguments for initializing the symbol table. */ |
f837a861 | 1643 | extern void init_decl_processing PROTO((void)); |
8da1b058 RS |
1644 | |
1645 | /* Functions called with no arguments at the beginning and end or processing | |
1646 | the input source file. */ | |
f837a861 MM |
1647 | extern void lang_init PROTO((void)); |
1648 | extern void lang_finish PROTO((void)); | |
8da1b058 | 1649 | |
9faa82d8 | 1650 | /* Function to identify which front-end produced the output file. */ |
d0d4af87 MS |
1651 | extern char *lang_identify PROTO((void)); |
1652 | ||
78b099bd JM |
1653 | /* Function to replace the DECL_LANG_SPECIFIC field of a DECL with a copy. */ |
1654 | extern void copy_lang_decl PROTO((tree)); | |
1655 | ||
8da1b058 | 1656 | /* Function called with no arguments to parse and compile the input. */ |
f837a861 | 1657 | extern int yyparse PROTO((void)); |
8da1b058 RS |
1658 | /* Function called with option as argument |
1659 | to decode options starting with -f or -W or +. | |
1660 | It should return nonzero if it handles the option. */ | |
f837a861 | 1661 | extern int lang_decode_option PROTO((char *)); |
8da1b058 RS |
1662 | |
1663 | /* Functions for processing symbol declarations. */ | |
1664 | /* Function to enter a new lexical scope. | |
1665 | Takes one argument: always zero when called from outside the front end. */ | |
f837a861 | 1666 | extern void pushlevel PROTO((int)); |
8da1b058 RS |
1667 | /* Function to exit a lexical scope. It returns a BINDING for that scope. |
1668 | Takes three arguments: | |
1669 | KEEP -- nonzero if there were declarations in this scope. | |
1670 | REVERSE -- reverse the order of decls before returning them. | |
1671 | FUNCTIONBODY -- nonzero if this level is the body of a function. */ | |
f837a861 | 1672 | extern tree poplevel PROTO((int, int, int)); |
69b78d8d RS |
1673 | /* Set the BLOCK node for the current scope level. */ |
1674 | extern void set_block PROTO((tree)); | |
8da1b058 RS |
1675 | /* Function to add a decl to the current scope level. |
1676 | Takes one argument, a decl to add. | |
1677 | Returns that decl, or, if the same symbol is already declared, may | |
1678 | return a different decl for that name. */ | |
f837a861 | 1679 | extern tree pushdecl PROTO((tree)); |
8da1b058 | 1680 | /* Function to return the chain of decls so far in the current scope level. */ |
f837a861 | 1681 | extern tree getdecls PROTO((void)); |
8da1b058 | 1682 | /* Function to return the chain of structure tags in the current scope level. */ |
f837a861 | 1683 | extern tree gettags PROTO((void)); |
a3c11cd3 JW |
1684 | |
1685 | extern tree build_range_type PROTO((tree, tree, tree)); | |
1686 | ||
1687 | /* Call when starting to parse a declaration: | |
1688 | make expressions in the declaration last the length of the function. | |
1689 | Returns an argument that should be passed to resume_momentary later. */ | |
1690 | extern int suspend_momentary PROTO((void)); | |
1691 | ||
1692 | extern int allocation_temporary_p PROTO((void)); | |
1693 | ||
1694 | /* Call when finished parsing a declaration: | |
1695 | restore the treatment of node-allocation that was | |
1696 | in effect before the suspension. | |
1697 | YES should be the value previously returned by suspend_momentary. */ | |
1698 | extern void resume_momentary PROTO((int)); | |
1699 | ||
1700 | /* Called after finishing a record, union or enumeral type. */ | |
1701 | extern void rest_of_type_compilation PROTO((tree, int)); | |
1702 | ||
1703 | /* Save the current set of obstacks, but don't change them. */ | |
1704 | extern void push_obstacks_nochange PROTO((void)); | |
1705 | ||
96bcb120 JW |
1706 | extern void permanent_allocation PROTO((int)); |
1707 | ||
a3c11cd3 JW |
1708 | extern void push_momentary PROTO((void)); |
1709 | ||
1710 | extern void clear_momentary PROTO((void)); | |
1711 | ||
1712 | extern void pop_momentary PROTO((void)); | |
1713 | ||
1714 | extern void end_temporary_allocation PROTO((void)); | |
1715 | ||
1716 | /* Pop the obstack selection stack. */ | |
1717 | extern void pop_obstacks PROTO((void)); |