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