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