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