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