]> gcc.gnu.org Git - gcc.git/blame - gcc/tree.c
re PR target/25168 (FAIL: g++.old-deja/g++.abi/cxa_vec.C execution test)
[gcc.git] / gcc / tree.c
CommitLineData
c6a1db6c 1/* Language-independent node constructors for parse phase of GNU compiler.
06ceef4e 2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
69618c49 3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
c6a1db6c 4
1322177d 5This file is part of GCC.
c6a1db6c 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
c6a1db6c 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
c6a1db6c
RS
16
17You should have received a copy of the GNU General Public License
1322177d 18along with GCC; see the file COPYING. If not, write to the Free
366ccddb
KC
19Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2002110-1301, USA. */
c6a1db6c 21
c6a1db6c
RS
22/* This file contains the low level primitives for operating on tree nodes,
23 including allocation, list operations, interning of identifiers,
24 construction of data type nodes and statement nodes,
25 and construction of type conversion nodes. It also contains
26 tables index by tree code that describe how to take apart
27 nodes of that code.
28
29 It is intended to be language-independent, but occasionally
6d9f628e 30 calls language-dependent routines defined (for C) in typecheck.c. */
c6a1db6c
RS
31
32#include "config.h"
670ee920 33#include "system.h"
4977bab6
ZW
34#include "coretypes.h"
35#include "tm.h"
c6a1db6c 36#include "flags.h"
c6a1db6c 37#include "tree.h"
11ad4784 38#include "real.h"
6baf1cc8 39#include "tm_p.h"
d69c4bd1 40#include "function.h"
c6a1db6c 41#include "obstack.h"
10f0ad3d 42#include "toplev.h"
87ff9c8e 43#include "ggc.h"
d88f311b 44#include "hashtab.h"
3b304f5b 45#include "output.h"
672a6f42 46#include "target.h"
5d69f816 47#include "langhooks.h"
6de9cd9a
DN
48#include "tree-iterator.h"
49#include "basic-block.h"
50#include "tree-flow.h"
89b0433e 51#include "params.h"
b8c4a565 52#include "pointer-set.h"
956d6950 53
6615c446
JO
54/* Each tree code class has an associated string representation.
55 These must correspond to the tree_code_class entries. */
56
b85e3643
ZW
57const char *const tree_code_class_strings[] =
58{
59 "exceptional",
60 "constant",
61 "type",
62 "declaration",
63 "reference",
64 "comparison",
65 "unary",
66 "binary",
67 "statement",
68 "expression",
69};
6615c446 70
dc478a5d 71/* obstack.[ch] explicitly declined to prototype this. */
46c5ad27 72extern int _obstack_allocated_p (struct obstack *h, void *obj);
c6a1db6c 73
3e16bfe2 74#ifdef GATHER_STATISTICS
c6a1db6c 75/* Statistics-gathering stuff. */
03646189 76
dc478a5d
KH
77int tree_node_counts[(int) all_kinds];
78int tree_node_sizes[(int) all_kinds];
03646189 79
938d968e 80/* Keep in sync with tree.h:enum tree_node_kind. */
341a243e 81static const char * const tree_node_kind_names[] = {
03646189
RS
82 "decls",
83 "types",
84 "blocks",
85 "stmts",
86 "refs",
87 "exprs",
88 "constants",
89 "identifiers",
03646189
RS
90 "perm_tree_lists",
91 "temp_tree_lists",
92 "vecs",
95b4aca6 93 "binfos",
6de9cd9a
DN
94 "phi_nodes",
95 "ssa names",
4038c495 96 "constructors",
03646189
RS
97 "random kinds",
98 "lang_decl kinds",
99 "lang_type kinds"
100};
3e16bfe2 101#endif /* GATHER_STATISTICS */
c6a1db6c 102
0e77444b 103/* Unique id for next decl created. */
03907fbd 104static GTY(()) int next_decl_uid;
579f50b6 105/* Unique id for next type created. */
03907fbd 106static GTY(()) int next_type_uid = 1;
0e77444b 107
d88f311b
ML
108/* Since we cannot rehash a type after it is in the table, we have to
109 keep the hash code. */
87ff9c8e 110
e2500fed 111struct type_hash GTY(())
87ff9c8e 112{
d88f311b
ML
113 unsigned long hash;
114 tree type;
87ff9c8e
RH
115};
116
dc478a5d 117/* Initial size of the hash table (rounded to next prime). */
d88f311b 118#define TYPE_HASH_INITIAL_SIZE 1000
87ff9c8e 119
d88f311b
ML
120/* Now here is the hash table. When recording a type, it is added to
121 the slot whose index is the hash code. Note that the hash table is
122 used for several kinds of types (function types, array types and
123 array index range types, for now). While all these live in the
124 same table, they are completely independent, and the hash code is
125 computed differently for each of these. */
126
e2500fed
GK
127static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
128 htab_t type_hash_table;
87ff9c8e 129
b66a64f1
NS
130/* Hash table and temporary node for larger integer const values. */
131static GTY (()) tree int_cst_node;
132static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
133 htab_t int_cst_hash_table;
134
f991abd1
DB
135/* General tree->tree mapping structure for use in hash tables. */
136
f991abd1
DB
137
138static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
139 htab_t debug_expr_for_decl;
140
833b3afe
DB
141static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
142 htab_t value_expr_for_decl;
143
820cc88f
DB
144static GTY ((if_marked ("tree_int_map_marked_p"), param_is (struct tree_int_map)))
145 htab_t init_priority_for_decl;
146
0b494699
ILT
147static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
148 htab_t restrict_base_for_decl;
149
820cc88f
DB
150struct tree_int_map GTY(())
151{
152 tree from;
153 unsigned short to;
154};
155static unsigned int tree_int_map_hash (const void *);
156static int tree_int_map_eq (const void *, const void *);
157static int tree_int_map_marked_p (const void *);
46c5ad27 158static void set_type_quals (tree, int);
46c5ad27
AJ
159static int type_hash_eq (const void *, const void *);
160static hashval_t type_hash_hash (const void *);
b66a64f1
NS
161static hashval_t int_cst_hash_hash (const void *);
162static int int_cst_hash_eq (const void *, const void *);
46c5ad27 163static void print_type_hash_statistics (void);
f991abd1 164static void print_debug_expr_statistics (void);
833b3afe 165static void print_value_expr_statistics (void);
26277d41 166static tree make_vector_type (tree, int, enum machine_mode);
46c5ad27 167static int type_hash_marked_p (const void *);
fd917e0d
JM
168static unsigned int type_hash_list (tree, hashval_t);
169static unsigned int attribute_hash_list (tree, hashval_t);
0a818f84 170
81b3411c 171tree global_trees[TI_MAX];
7145ef21 172tree integer_types[itk_none];
f991abd1 173
820cc88f 174unsigned char tree_contains_struct[256][64];
81b3411c 175\f
6d9f628e 176/* Init tree.c. */
c6a1db6c
RS
177
178void
46c5ad27 179init_ttree (void)
c6a1db6c 180{
820cc88f 181
d4b60170 182 /* Initialize the hash table of types. */
17211ab5
GK
183 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
184 type_hash_eq, 0);
f991abd1
DB
185
186 debug_expr_for_decl = htab_create_ggc (512, tree_map_hash,
187 tree_map_eq, 0);
188
833b3afe
DB
189 value_expr_for_decl = htab_create_ggc (512, tree_map_hash,
190 tree_map_eq, 0);
820cc88f
DB
191 init_priority_for_decl = htab_create_ggc (512, tree_int_map_hash,
192 tree_int_map_eq, 0);
0b494699
ILT
193 restrict_base_for_decl = htab_create_ggc (256, tree_map_hash,
194 tree_map_eq, 0);
833b3afe 195
b66a64f1
NS
196 int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
197 int_cst_hash_eq, NULL);
f991abd1 198
b66a64f1 199 int_cst_node = make_node (INTEGER_CST);
f991abd1 200
820cc88f
DB
201 tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON] = 1;
202 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_NON_COMMON] = 1;
203 tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON] = 1;
204
205
206 tree_contains_struct[CONST_DECL][TS_DECL_COMMON] = 1;
207 tree_contains_struct[VAR_DECL][TS_DECL_COMMON] = 1;
208 tree_contains_struct[PARM_DECL][TS_DECL_COMMON] = 1;
209 tree_contains_struct[RESULT_DECL][TS_DECL_COMMON] = 1;
210 tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON] = 1;
211 tree_contains_struct[TYPE_DECL][TS_DECL_COMMON] = 1;
212 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON] = 1;
213 tree_contains_struct[LABEL_DECL][TS_DECL_COMMON] = 1;
214 tree_contains_struct[FIELD_DECL][TS_DECL_COMMON] = 1;
215
216
217 tree_contains_struct[CONST_DECL][TS_DECL_WRTL] = 1;
218 tree_contains_struct[VAR_DECL][TS_DECL_WRTL] = 1;
219 tree_contains_struct[PARM_DECL][TS_DECL_WRTL] = 1;
220 tree_contains_struct[RESULT_DECL][TS_DECL_WRTL] = 1;
221 tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL] = 1;
222 tree_contains_struct[LABEL_DECL][TS_DECL_WRTL] = 1;
223
224 tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL] = 1;
225 tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL] = 1;
226 tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL] = 1;
227 tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL] = 1;
228 tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL] = 1;
229 tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL] = 1;
230 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL] = 1;
231 tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL] = 1;
232 tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL] = 1;
326eda4b
DB
233 tree_contains_struct[STRUCT_FIELD_TAG][TS_DECL_MINIMAL] = 1;
234 tree_contains_struct[NAME_MEMORY_TAG][TS_DECL_MINIMAL] = 1;
235 tree_contains_struct[TYPE_MEMORY_TAG][TS_DECL_MINIMAL] = 1;
236
237 tree_contains_struct[STRUCT_FIELD_TAG][TS_MEMORY_TAG] = 1;
238 tree_contains_struct[NAME_MEMORY_TAG][TS_MEMORY_TAG] = 1;
239 tree_contains_struct[TYPE_MEMORY_TAG][TS_MEMORY_TAG] = 1;
820cc88f
DB
240
241 tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS] = 1;
242 tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS] = 1;
243 tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS] = 1;
244 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_WITH_VIS] = 1;
245
246 tree_contains_struct[VAR_DECL][TS_VAR_DECL] = 1;
247 tree_contains_struct[FIELD_DECL][TS_FIELD_DECL] = 1;
248 tree_contains_struct[PARM_DECL][TS_PARM_DECL] = 1;
249 tree_contains_struct[LABEL_DECL][TS_LABEL_DECL] = 1;
250 tree_contains_struct[RESULT_DECL][TS_RESULT_DECL] = 1;
251 tree_contains_struct[CONST_DECL][TS_CONST_DECL] = 1;
252 tree_contains_struct[TYPE_DECL][TS_TYPE_DECL] = 1;
253 tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL] = 1;
254
255 lang_hooks.init_ts ();
c6a1db6c
RS
256}
257
c6a1db6c 258\f
599bba86
NB
259/* The name of the object as the assembler will see it (but before any
260 translations made by ASM_OUTPUT_LABELREF). Often this is the same
261 as DECL_NAME. It is an IDENTIFIER_NODE. */
262tree
46c5ad27 263decl_assembler_name (tree decl)
599bba86
NB
264{
265 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
ae2bcd98 266 lang_hooks.set_decl_assembler_name (decl);
820cc88f 267 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
599bba86
NB
268}
269
a396f8ae
GK
270/* Compute the number of bytes occupied by a tree with code CODE.
271 This function cannot be used for TREE_VEC, PHI_NODE, or STRING_CST
272 codes, which are of variable length. */
c5620996 273size_t
a38b644b 274tree_code_size (enum tree_code code)
c5620996 275{
c5620996
GK
276 switch (TREE_CODE_CLASS (code))
277 {
6615c446 278 case tcc_declaration: /* A decl node */
820cc88f
DB
279 {
280 switch (code)
281 {
282 case FIELD_DECL:
283 return sizeof (struct tree_field_decl);
284 case PARM_DECL:
285 return sizeof (struct tree_parm_decl);
286 case VAR_DECL:
287 return sizeof (struct tree_var_decl);
288 case LABEL_DECL:
289 return sizeof (struct tree_label_decl);
290 case RESULT_DECL:
291 return sizeof (struct tree_result_decl);
292 case CONST_DECL:
293 return sizeof (struct tree_const_decl);
294 case TYPE_DECL:
295 return sizeof (struct tree_type_decl);
296 case FUNCTION_DECL:
297 return sizeof (struct tree_function_decl);
326eda4b
DB
298 case NAME_MEMORY_TAG:
299 case TYPE_MEMORY_TAG:
300 case STRUCT_FIELD_TAG:
301 return sizeof (struct tree_memory_tag);
820cc88f
DB
302 default:
303 return sizeof (struct tree_decl_non_common);
304 }
305 }
c5620996 306
6615c446 307 case tcc_type: /* a type node */
c5620996
GK
308 return sizeof (struct tree_type);
309
6615c446
JO
310 case tcc_reference: /* a reference */
311 case tcc_expression: /* an expression */
312 case tcc_statement: /* an expression with side effects */
313 case tcc_comparison: /* a comparison expression */
314 case tcc_unary: /* a unary arithmetic expression */
315 case tcc_binary: /* a binary arithmetic expression */
c5620996 316 return (sizeof (struct tree_exp)
a38b644b 317 + (TREE_CODE_LENGTH (code) - 1) * sizeof (char *));
c5620996 318
6615c446 319 case tcc_constant: /* a constant */
d78e771d
ZW
320 switch (code)
321 {
322 case INTEGER_CST: return sizeof (struct tree_int_cst);
323 case REAL_CST: return sizeof (struct tree_real_cst);
324 case COMPLEX_CST: return sizeof (struct tree_complex);
325 case VECTOR_CST: return sizeof (struct tree_vector);
a396f8ae 326 case STRING_CST: gcc_unreachable ();
d78e771d 327 default:
ae2bcd98 328 return lang_hooks.tree_size (code);
d78e771d 329 }
c5620996 330
6615c446 331 case tcc_exceptional: /* something random, like an identifier. */
d78e771d
ZW
332 switch (code)
333 {
334 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
335 case TREE_LIST: return sizeof (struct tree_list);
d78e771d
ZW
336
337 case ERROR_MARK:
338 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
339
a396f8ae
GK
340 case TREE_VEC:
341 case PHI_NODE: gcc_unreachable ();
6de9cd9a 342
6de9cd9a 343 case SSA_NAME: return sizeof (struct tree_ssa_name);
6de9cd9a
DN
344
345 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
90afe2c9 346 case BLOCK: return sizeof (struct tree_block);
33c94679 347 case VALUE_HANDLE: return sizeof (struct tree_value_handle);
4038c495 348 case CONSTRUCTOR: return sizeof (struct tree_constructor);
6de9cd9a 349
d78e771d 350 default:
ae2bcd98 351 return lang_hooks.tree_size (code);
d78e771d 352 }
c5620996
GK
353
354 default:
1e128c5f 355 gcc_unreachable ();
c5620996
GK
356 }
357}
358
a38b644b
ZW
359/* Compute the number of bytes occupied by NODE. This routine only
360 looks at TREE_CODE, except for PHI_NODE and TREE_VEC nodes. */
361size_t
362tree_size (tree node)
363{
364 enum tree_code code = TREE_CODE (node);
365 switch (code)
366 {
367 case PHI_NODE:
368 return (sizeof (struct tree_phi_node)
369 + (PHI_ARG_CAPACITY (node) - 1) * sizeof (struct phi_arg_d));
0ebfd2c9
RS
370
371 case TREE_BINFO:
372 return (offsetof (struct tree_binfo, base_binfos)
373 + VEC_embedded_size (tree, BINFO_N_BASE_BINFOS (node)));
a38b644b
ZW
374
375 case TREE_VEC:
376 return (sizeof (struct tree_vec)
377 + (TREE_VEC_LENGTH (node) - 1) * sizeof(char *));
378
a396f8ae
GK
379 case STRING_CST:
380 return sizeof (struct tree_string) + TREE_STRING_LENGTH (node) - 1;
381
a38b644b
ZW
382 default:
383 return tree_code_size (code);
384 }
385}
386
387/* Return a newly allocated node of code CODE. For decl and type
388 nodes, some other fields are initialized. The rest of the node is
389 initialized to zero. This function cannot be used for PHI_NODE or
390 TREE_VEC nodes, which is enforced by asserts in tree_code_size.
c6a1db6c
RS
391
392 Achoo! I got a code in the node. */
393
394tree
b9dcdee4 395make_node_stat (enum tree_code code MEM_STAT_DECL)
c6a1db6c 396{
b3694847 397 tree t;
6615c446 398 enum tree_code_class type = TREE_CODE_CLASS (code);
a38b644b 399 size_t length = tree_code_size (code);
5e9defae 400#ifdef GATHER_STATISTICS
b3694847 401 tree_node_kind kind;
3b03c671 402
c6a1db6c
RS
403 switch (type)
404 {
6615c446 405 case tcc_declaration: /* A decl node */
c6a1db6c 406 kind = d_kind;
c6a1db6c
RS
407 break;
408
6615c446 409 case tcc_type: /* a type node */
c6a1db6c 410 kind = t_kind;
c6a1db6c
RS
411 break;
412
6615c446 413 case tcc_statement: /* an expression with side effects */
c6a1db6c 414 kind = s_kind;
c5620996
GK
415 break;
416
6615c446 417 case tcc_reference: /* a reference */
c6a1db6c 418 kind = r_kind;
c5620996
GK
419 break;
420
6615c446
JO
421 case tcc_expression: /* an expression */
422 case tcc_comparison: /* a comparison expression */
423 case tcc_unary: /* a unary arithmetic expression */
424 case tcc_binary: /* a binary arithmetic expression */
c6a1db6c 425 kind = e_kind;
c6a1db6c
RS
426 break;
427
6615c446 428 case tcc_constant: /* a constant */
c6a1db6c 429 kind = c_kind;
66212c2f 430 break;
c6a1db6c 431
6615c446 432 case tcc_exceptional: /* something random, like an identifier. */
c4b3f0eb
NS
433 switch (code)
434 {
435 case IDENTIFIER_NODE:
436 kind = id_kind;
437 break;
438
4038c495 439 case TREE_VEC:
c4b3f0eb
NS
440 kind = vec_kind;
441 break;
442
443 case TREE_BINFO:
444 kind = binfo_kind;
445 break;
446
447 case PHI_NODE:
448 kind = phi_kind;
449 break;
450
451 case SSA_NAME:
452 kind = ssa_name_kind;
453 break;
454
455 case BLOCK:
456 kind = b_kind;
457 break;
458
4038c495
GB
459 case CONSTRUCTOR:
460 kind = constr_kind;
461 break;
462
c4b3f0eb
NS
463 default:
464 kind = x_kind;
465 break;
466 }
a7fcb968 467 break;
c4b3f0eb
NS
468
469 default:
470 gcc_unreachable ();
c6a1db6c
RS
471 }
472
dc478a5d
KH
473 tree_node_counts[(int) kind]++;
474 tree_node_sizes[(int) kind] += length;
c6a1db6c
RS
475#endif
476
08cee789 477 if (code == IDENTIFIER_NODE)
a6e4d85b 478 t = ggc_alloc_zone_pass_stat (length, &tree_id_zone);
08cee789 479 else
a6e4d85b 480 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
c5620996 481
fad205ff 482 memset (t, 0, length);
c5620996 483
c6a1db6c 484 TREE_SET_CODE (t, code);
c6a1db6c
RS
485
486 switch (type)
487 {
6615c446 488 case tcc_statement:
c6a1db6c 489 TREE_SIDE_EFFECTS (t) = 1;
c6a1db6c
RS
490 break;
491
6615c446 492 case tcc_declaration:
820cc88f
DB
493 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
494 DECL_IN_SYSTEM_HEADER (t) = in_system_header;
326eda4b
DB
495 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
496 {
497 if (code != FUNCTION_DECL)
498 DECL_ALIGN (t) = 1;
499 DECL_USER_ALIGN (t) = 0;
500 /* We have not yet computed the alias set for this declaration. */
501 DECL_POINTER_ALIAS_SET (t) = -1;
502 }
f31686a3 503 DECL_SOURCE_LOCATION (t) = input_location;
5b02f0e0 504 DECL_UID (t) = next_decl_uid++;
128e8aa9 505
c6a1db6c
RS
506 break;
507
6615c446 508 case tcc_type:
579f50b6 509 TYPE_UID (t) = next_type_uid++;
490272b4 510 TYPE_ALIGN (t) = BITS_PER_UNIT;
11cf4d18 511 TYPE_USER_ALIGN (t) = 0;
c6a1db6c 512 TYPE_MAIN_VARIANT (t) = t;
128e8aa9
RK
513
514 /* Default to no attributes for type, but let target change that. */
91e97eb8 515 TYPE_ATTRIBUTES (t) = NULL_TREE;
5fd9b178 516 targetm.set_default_type_attributes (t);
128e8aa9
RK
517
518 /* We have not yet computed the alias set for this type. */
41472af8 519 TYPE_ALIAS_SET (t) = -1;
c6a1db6c
RS
520 break;
521
6615c446 522 case tcc_constant:
c6a1db6c 523 TREE_CONSTANT (t) = 1;
6de9cd9a 524 TREE_INVARIANT (t) = 1;
c6a1db6c 525 break;
783feeb0 526
6615c446 527 case tcc_expression:
783feeb0
MM
528 switch (code)
529 {
530 case INIT_EXPR:
531 case MODIFY_EXPR:
532 case VA_ARG_EXPR:
783feeb0
MM
533 case PREDECREMENT_EXPR:
534 case PREINCREMENT_EXPR:
535 case POSTDECREMENT_EXPR:
536 case POSTINCREMENT_EXPR:
537 /* All of these have side-effects, no matter what their
538 operands are. */
539 TREE_SIDE_EFFECTS (t) = 1;
540 break;
dc478a5d 541
783feeb0
MM
542 default:
543 break;
544 }
545 break;
6615c446
JO
546
547 default:
548 /* Other classes need no special treatment. */
549 break;
c6a1db6c
RS
550 }
551
552 return t;
553}
554\f
c3da6f12 555/* Return a new node with the same contents as NODE except that its
3af4c257 556 TREE_CHAIN is zero and it has a fresh uid. */
c6a1db6c
RS
557
558tree
b9dcdee4 559copy_node_stat (tree node MEM_STAT_DECL)
c6a1db6c 560{
b3694847
SS
561 tree t;
562 enum tree_code code = TREE_CODE (node);
563 size_t length;
c6a1db6c 564
1e128c5f 565 gcc_assert (code != STATEMENT_LIST);
6de9cd9a 566
c5620996 567 length = tree_size (node);
a6e4d85b 568 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
2e28f042 569 memcpy (t, node, length);
c6a1db6c 570
1e54d32b 571 TREE_CHAIN (t) = 0;
69b7087e 572 TREE_ASM_WRITTEN (t) = 0;
6de9cd9a
DN
573 TREE_VISITED (t) = 0;
574 t->common.ann = 0;
c6a1db6c 575
6615c446 576 if (TREE_CODE_CLASS (code) == tcc_declaration)
833b3afe
DB
577 {
578 DECL_UID (t) = next_decl_uid++;
579 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
580 && DECL_HAS_VALUE_EXPR_P (node))
581 {
582 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
583 DECL_HAS_VALUE_EXPR_P (t) = 1;
584 }
820cc88f
DB
585 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
586 {
587 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
588 DECL_HAS_INIT_PRIORITY_P (t) = 1;
589 }
0b494699
ILT
590 if (TREE_CODE (node) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (node))
591 {
592 SET_DECL_RESTRICT_BASE (t, DECL_GET_RESTRICT_BASE (node));
593 DECL_BASED_ON_RESTRICT_P (t) = 1;
594 }
833b3afe 595 }
6615c446 596 else if (TREE_CODE_CLASS (code) == tcc_type)
d9cbc259
RK
597 {
598 TYPE_UID (t) = next_type_uid++;
28238567
PB
599 /* The following is so that the debug code for
600 the copy is different from the original type.
601 The two statements usually duplicate each other
602 (because they clear fields of the same union),
0f41302f 603 but the optimizer should catch that. */
28238567
PB
604 TYPE_SYMTAB_POINTER (t) = 0;
605 TYPE_SYMTAB_ADDRESS (t) = 0;
8c1d6d62
NS
606
607 /* Do not copy the values cache. */
608 if (TYPE_CACHED_VALUES_P(t))
609 {
610 TYPE_CACHED_VALUES_P (t) = 0;
611 TYPE_CACHED_VALUES (t) = NULL_TREE;
612 }
d9cbc259 613 }
579f50b6 614
c6a1db6c
RS
615 return t;
616}
617
618/* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
619 For example, this can copy a list made of TREE_LIST nodes. */
620
621tree
46c5ad27 622copy_list (tree list)
c6a1db6c
RS
623{
624 tree head;
b3694847 625 tree prev, next;
c6a1db6c
RS
626
627 if (list == 0)
628 return 0;
629
630 head = prev = copy_node (list);
631 next = TREE_CHAIN (list);
632 while (next)
633 {
634 TREE_CHAIN (prev) = copy_node (next);
635 prev = TREE_CHAIN (prev);
636 next = TREE_CHAIN (next);
637 }
638 return head;
639}
a94dbf2c 640
c6a1db6c 641\f
7d60be94
NS
642/* Create an INT_CST node with a LOW value sign extended. */
643
d938569c
RK
644tree
645build_int_cst (tree type, HOST_WIDE_INT low)
7d60be94 646{
69fbfdd8 647 return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
7d60be94
NS
648}
649
650/* Create an INT_CST node with a LOW value zero extended. */
651
d938569c
RK
652tree
653build_int_cstu (tree type, unsigned HOST_WIDE_INT low)
7d60be94
NS
654{
655 return build_int_cst_wide (type, low, 0);
656}
657
89d12f5d
ZD
658/* Create an INT_CST node with a LOW value in TYPE. The value is sign extended
659 if it is negative. This function is similar to build_int_cst, but
660 the extra bits outside of the type precision are cleared. Constants
661 with these extra bits may confuse the fold so that it detects overflows
662 even in cases when they do not occur, and in general should be avoided.
663 We cannot however make this a default behavior of build_int_cst without
664 more intrusive changes, since there are parts of gcc that rely on the extra
665 precision of the integer constants. */
8b11a64c
ZD
666
667tree
668build_int_cst_type (tree type, HOST_WIDE_INT low)
669{
670 unsigned HOST_WIDE_INT val = (unsigned HOST_WIDE_INT) low;
9be872b7 671 unsigned HOST_WIDE_INT hi, mask;
8b11a64c
ZD
672 unsigned bits;
673 bool signed_p;
674 bool negative;
8b11a64c
ZD
675
676 if (!type)
677 type = integer_type_node;
678
679 bits = TYPE_PRECISION (type);
680 signed_p = !TYPE_UNSIGNED (type);
8b11a64c 681
89d12f5d
ZD
682 if (bits >= HOST_BITS_PER_WIDE_INT)
683 negative = (low < 0);
684 else
8b11a64c 685 {
89d12f5d
ZD
686 /* If the sign bit is inside precision of LOW, use it to determine
687 the sign of the constant. */
688 negative = ((val >> (bits - 1)) & 1) != 0;
689
690 /* Mask out the bits outside of the precision of the constant. */
9be872b7
ZD
691 mask = (((unsigned HOST_WIDE_INT) 2) << (bits - 1)) - 1;
692
89d12f5d 693 if (signed_p && negative)
9be872b7 694 val |= ~mask;
89d12f5d 695 else
9be872b7 696 val &= mask;
8b11a64c 697 }
89d12f5d
ZD
698
699 /* Determine the high bits. */
700 hi = (negative ? ~(unsigned HOST_WIDE_INT) 0 : 0);
701
702 /* For unsigned type we need to mask out the bits outside of the type
703 precision. */
704 if (!signed_p)
8b11a64c 705 {
89d12f5d
ZD
706 if (bits <= HOST_BITS_PER_WIDE_INT)
707 hi = 0;
708 else
709 {
710 bits -= HOST_BITS_PER_WIDE_INT;
9be872b7
ZD
711 mask = (((unsigned HOST_WIDE_INT) 2) << (bits - 1)) - 1;
712 hi &= mask;
89d12f5d 713 }
8b11a64c
ZD
714 }
715
89d12f5d 716 return build_int_cst_wide (type, val, hi);
8b11a64c
ZD
717}
718
b66a64f1
NS
719/* These are the hash table functions for the hash table of INTEGER_CST
720 nodes of a sizetype. */
721
722/* Return the hash code code X, an INTEGER_CST. */
723
724static hashval_t
725int_cst_hash_hash (const void *x)
726{
727 tree t = (tree) x;
728
729 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
730 ^ htab_hash_pointer (TREE_TYPE (t)));
731}
732
733/* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
734 is the same as that given by *Y, which is the same. */
735
736static int
737int_cst_hash_eq (const void *x, const void *y)
738{
739 tree xt = (tree) x;
740 tree yt = (tree) y;
741
742 return (TREE_TYPE (xt) == TREE_TYPE (yt)
743 && TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
744 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt));
745}
746
4a90aeeb 747/* Create an INT_CST node of TYPE and value HI:LOW. If TYPE is NULL,
b66a64f1
NS
748 integer_type_node is used. The returned node is always shared.
749 For small integers we use a per-type vector cache, for larger ones
750 we use a single hash table. */
c6a1db6c
RS
751
752tree
7d60be94 753build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
c6a1db6c 754{
4a90aeeb 755 tree t;
89b0433e
NS
756 int ix = -1;
757 int limit = 0;
4a90aeeb
NS
758
759 if (!type)
760 type = integer_type_node;
19114537 761
89b0433e
NS
762 switch (TREE_CODE (type))
763 {
764 case POINTER_TYPE:
765 case REFERENCE_TYPE:
766 /* Cache NULL pointer. */
767 if (!hi && !low)
768 {
769 limit = 1;
770 ix = 0;
771 }
772 break;
19114537 773
89b0433e
NS
774 case BOOLEAN_TYPE:
775 /* Cache false or true. */
776 limit = 2;
777 if (!hi && low < 2)
778 ix = low;
779 break;
19114537 780
89b0433e
NS
781 case INTEGER_TYPE:
782 case CHAR_TYPE:
783 case OFFSET_TYPE:
784 if (TYPE_UNSIGNED (type))
785 {
786 /* Cache 0..N */
787 limit = INTEGER_SHARE_LIMIT;
788 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
789 ix = low;
790 }
791 else
792 {
793 /* Cache -1..N */
794 limit = INTEGER_SHARE_LIMIT + 1;
795 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
796 ix = low + 1;
797 else if (hi == -1 && low == -(unsigned HOST_WIDE_INT)1)
798 ix = 0;
799 }
800 break;
801 default:
802 break;
803 }
19114537 804
89b0433e
NS
805 if (ix >= 0)
806 {
b66a64f1 807 /* Look for it in the type's vector of small shared ints. */
89b0433e
NS
808 if (!TYPE_CACHED_VALUES_P (type))
809 {
810 TYPE_CACHED_VALUES_P (type) = 1;
811 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
812 }
19114537 813
89b0433e
NS
814 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
815 if (t)
816 {
817 /* Make sure no one is clobbering the shared constant. */
1e128c5f
GB
818 gcc_assert (TREE_TYPE (t) == type);
819 gcc_assert (TREE_INT_CST_LOW (t) == low);
820 gcc_assert (TREE_INT_CST_HIGH (t) == hi);
b66a64f1
NS
821 }
822 else
823 {
824 /* Create a new shared int. */
825 t = make_node (INTEGER_CST);
826
827 TREE_INT_CST_LOW (t) = low;
828 TREE_INT_CST_HIGH (t) = hi;
829 TREE_TYPE (t) = type;
830
831 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
89b0433e
NS
832 }
833 }
b66a64f1
NS
834 else
835 {
836 /* Use the cache of larger shared ints. */
837 void **slot;
19114537 838
b66a64f1
NS
839 TREE_INT_CST_LOW (int_cst_node) = low;
840 TREE_INT_CST_HIGH (int_cst_node) = hi;
841 TREE_TYPE (int_cst_node) = type;
89b0433e 842
b66a64f1
NS
843 slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
844 t = *slot;
845 if (!t)
846 {
847 /* Insert this one into the hash table. */
848 t = int_cst_node;
849 *slot = t;
850 /* Make a new node for next time round. */
851 int_cst_node = make_node (INTEGER_CST);
852 }
853 }
19114537 854
c6a1db6c
RS
855 return t;
856}
857
38b0dcb8
ZD
858/* Builds an integer constant in TYPE such that lowest BITS bits are ones
859 and the rest are zeros. */
860
861tree
862build_low_bits_mask (tree type, unsigned bits)
863{
864 unsigned HOST_WIDE_INT low;
865 HOST_WIDE_INT high;
866 unsigned HOST_WIDE_INT all_ones = ~(unsigned HOST_WIDE_INT) 0;
867
868 gcc_assert (bits <= TYPE_PRECISION (type));
869
870 if (bits == TYPE_PRECISION (type)
871 && !TYPE_UNSIGNED (type))
872 {
873 /* Sign extended all-ones mask. */
874 low = all_ones;
875 high = -1;
876 }
877 else if (bits <= HOST_BITS_PER_WIDE_INT)
878 {
879 low = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
880 high = 0;
881 }
882 else
883 {
884 bits -= HOST_BITS_PER_WIDE_INT;
885 low = all_ones;
886 high = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
887 }
888
889 return build_int_cst_wide (type, low, high);
890}
891
8b11a64c
ZD
892/* Checks that X is integer constant that can be expressed in (unsigned)
893 HOST_WIDE_INT without loss of precision. */
894
895bool
896cst_and_fits_in_hwi (tree x)
897{
898 if (TREE_CODE (x) != INTEGER_CST)
899 return false;
900
901 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
902 return false;
903
904 return (TREE_INT_CST_HIGH (x) == 0
905 || TREE_INT_CST_HIGH (x) == -1);
906}
907
69ef87e2 908/* Return a new VECTOR_CST node whose type is TYPE and whose values
206048bd 909 are in a list pointed to by VALS. */
69ef87e2
AH
910
911tree
46c5ad27 912build_vector (tree type, tree vals)
69ef87e2
AH
913{
914 tree v = make_node (VECTOR_CST);
915 int over1 = 0, over2 = 0;
916 tree link;
917
918 TREE_VECTOR_CST_ELTS (v) = vals;
919 TREE_TYPE (v) = type;
920
921 /* Iterate through elements and check for overflow. */
922 for (link = vals; link; link = TREE_CHAIN (link))
923 {
924 tree value = TREE_VALUE (link);
925
926 over1 |= TREE_OVERFLOW (value);
927 over2 |= TREE_CONSTANT_OVERFLOW (value);
928 }
3b03c671 929
69ef87e2
AH
930 TREE_OVERFLOW (v) = over1;
931 TREE_CONSTANT_OVERFLOW (v) = over2;
932
933 return v;
934}
935
4038c495
GB
936/* Return a new VECTOR_CST node whose type is TYPE and whose values
937 are extracted from V, a vector of CONSTRUCTOR_ELT. */
938
939tree
940build_vector_from_ctor (tree type, VEC(constructor_elt,gc) *v)
941{
942 tree list = NULL_TREE;
943 unsigned HOST_WIDE_INT idx;
944 tree value;
945
946 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
947 list = tree_cons (NULL_TREE, value, list);
948 return build_vector (type, nreverse (list));
949}
950
dcf92453 951/* Return a new CONSTRUCTOR node whose type is TYPE and whose values
206048bd 952 are in the VEC pointed to by VALS. */
dcf92453 953tree
4038c495 954build_constructor (tree type, VEC(constructor_elt,gc) *vals)
dcf92453
ZW
955{
956 tree c = make_node (CONSTRUCTOR);
957 TREE_TYPE (c) = type;
958 CONSTRUCTOR_ELTS (c) = vals;
4038c495
GB
959 return c;
960}
961
962/* Build a CONSTRUCTOR node made of a single initializer, with the specified
963 INDEX and VALUE. */
964tree
965build_constructor_single (tree type, tree index, tree value)
966{
967 VEC(constructor_elt,gc) *v;
968 constructor_elt *elt;
969
970 v = VEC_alloc (constructor_elt, gc, 1);
971 elt = VEC_quick_push (constructor_elt, v, NULL);
972 elt->index = index;
973 elt->value = value;
974
975 return build_constructor (type, v);
976}
977
978
979/* Return a new CONSTRUCTOR node whose type is TYPE and whose values
980 are in a list pointed to by VALS. */
981tree
982build_constructor_from_list (tree type, tree vals)
983{
984 tree t;
985 VEC(constructor_elt,gc) *v = NULL;
dcf92453 986
dcf92453
ZW
987 if (vals)
988 {
4038c495
GB
989 v = VEC_alloc (constructor_elt, gc, list_length (vals));
990 for (t = vals; t; t = TREE_CHAIN (t))
991 {
992 constructor_elt *elt = VEC_quick_push (constructor_elt, v, NULL);
993 elt->index = TREE_PURPOSE (t);
994 elt->value = TREE_VALUE (t);
995 }
dcf92453 996 }
dcf92453 997
4038c495 998 return build_constructor (type, v);
dcf92453
ZW
999}
1000
4038c495 1001
c6a1db6c
RS
1002/* Return a new REAL_CST node whose type is TYPE and value is D. */
1003
1004tree
46c5ad27 1005build_real (tree type, REAL_VALUE_TYPE d)
c6a1db6c
RS
1006{
1007 tree v;
11ad4784 1008 REAL_VALUE_TYPE *dp;
0afbe93d 1009 int overflow = 0;
c6a1db6c 1010
efdc7e19
RH
1011 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1012 Consider doing it via real_convert now. */
c6a1db6c
RS
1013
1014 v = make_node (REAL_CST);
11ad4784
ZW
1015 dp = ggc_alloc (sizeof (REAL_VALUE_TYPE));
1016 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
41077ce4 1017
c6a1db6c 1018 TREE_TYPE (v) = type;
11ad4784 1019 TREE_REAL_CST_PTR (v) = dp;
0afbe93d 1020 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
c6a1db6c
RS
1021 return v;
1022}
1023
1024/* Return a new REAL_CST node whose type is TYPE
1025 and whose value is the integer value of the INTEGER_CST node I. */
1026
c6a1db6c 1027REAL_VALUE_TYPE
875eda9c 1028real_value_from_int_cst (tree type, tree i)
c6a1db6c
RS
1029{
1030 REAL_VALUE_TYPE d;
2026444a 1031
e545d37f
RK
1032 /* Clear all bits of the real value type so that we can later do
1033 bitwise comparisons to see if two values are the same. */
703ad42b 1034 memset (&d, 0, sizeof d);
e545d37f 1035
875eda9c
RS
1036 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
1037 TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
8df83eae 1038 TYPE_UNSIGNED (TREE_TYPE (i)));
c6a1db6c
RS
1039 return d;
1040}
1041
d4b60170 1042/* Given a tree representing an integer constant I, return a tree
15e5ad76 1043 representing the same value as a floating-point constant of type TYPE. */
c6a1db6c
RS
1044
1045tree
46c5ad27 1046build_real_from_int_cst (tree type, tree i)
c6a1db6c
RS
1047{
1048 tree v;
53d74c3c 1049 int overflow = TREE_OVERFLOW (i);
c6a1db6c 1050
11ad4784 1051 v = build_real (type, real_value_from_int_cst (type, i));
c6a1db6c 1052
11ad4784
ZW
1053 TREE_OVERFLOW (v) |= overflow;
1054 TREE_CONSTANT_OVERFLOW (v) |= overflow;
c6a1db6c
RS
1055 return v;
1056}
1057
c6a1db6c
RS
1058/* Return a newly constructed STRING_CST node whose value is
1059 the LEN characters at STR.
1060 The TREE_TYPE is not initialized. */
1061
1062tree
46c5ad27 1063build_string (int len, const char *str)
c6a1db6c 1064{
a396f8ae
GK
1065 tree s;
1066 size_t length;
1067
1068 length = len + sizeof (struct tree_string);
1069
1070#ifdef GATHER_STATISTICS
1071 tree_node_counts[(int) c_kind]++;
1072 tree_node_sizes[(int) c_kind] += length;
1073#endif
1074
1075 s = ggc_alloc_tree (length);
d4b60170 1076
a396f8ae
GK
1077 memset (s, 0, sizeof (struct tree_common));
1078 TREE_SET_CODE (s, STRING_CST);
1595ec20
ILT
1079 TREE_CONSTANT (s) = 1;
1080 TREE_INVARIANT (s) = 1;
c6a1db6c 1081 TREE_STRING_LENGTH (s) = len;
a396f8ae
GK
1082 memcpy ((char *) TREE_STRING_POINTER (s), str, len);
1083 ((char *) TREE_STRING_POINTER (s))[len] = '\0';
d4b60170 1084
c6a1db6c
RS
1085 return s;
1086}
1087
1088/* Return a newly constructed COMPLEX_CST node whose value is
1089 specified by the real and imaginary parts REAL and IMAG.
b217d7fe
RK
1090 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1091 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
c6a1db6c
RS
1092
1093tree
46c5ad27 1094build_complex (tree type, tree real, tree imag)
c6a1db6c 1095{
b3694847 1096 tree t = make_node (COMPLEX_CST);
53d74c3c 1097
c6a1db6c
RS
1098 TREE_REALPART (t) = real;
1099 TREE_IMAGPART (t) = imag;
b217d7fe 1100 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
53d74c3c
RK
1101 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1102 TREE_CONSTANT_OVERFLOW (t)
1103 = TREE_CONSTANT_OVERFLOW (real) | TREE_CONSTANT_OVERFLOW (imag);
c6a1db6c
RS
1104 return t;
1105}
1106
95b4aca6
NS
1107/* Build a BINFO with LEN language slots. */
1108
1109tree
fa743e8c 1110make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
95b4aca6
NS
1111{
1112 tree t;
fa743e8c
NS
1113 size_t length = (offsetof (struct tree_binfo, base_binfos)
1114 + VEC_embedded_size (tree, base_binfos));
9f63daea 1115
95b4aca6
NS
1116#ifdef GATHER_STATISTICS
1117 tree_node_counts[(int) binfo_kind]++;
1118 tree_node_sizes[(int) binfo_kind] += length;
1119#endif
1120
a6e4d85b 1121 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
95b4aca6 1122
fa743e8c 1123 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
95b4aca6
NS
1124
1125 TREE_SET_CODE (t, TREE_BINFO);
9f63daea 1126
fa743e8c 1127 VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos);
95b4aca6
NS
1128
1129 return t;
1130}
1131
1132
c6a1db6c 1133/* Build a newly constructed TREE_VEC node of length LEN. */
0f41302f 1134
c6a1db6c 1135tree
b9dcdee4 1136make_tree_vec_stat (int len MEM_STAT_DECL)
c6a1db6c 1137{
b3694847 1138 tree t;
3b03c671 1139 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
c6a1db6c
RS
1140
1141#ifdef GATHER_STATISTICS
3b03c671
KH
1142 tree_node_counts[(int) vec_kind]++;
1143 tree_node_sizes[(int) vec_kind] += length;
c6a1db6c
RS
1144#endif
1145
a6e4d85b 1146 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
508f8149 1147
fad205ff 1148 memset (t, 0, length);
b9dcdee4 1149
c6a1db6c
RS
1150 TREE_SET_CODE (t, TREE_VEC);
1151 TREE_VEC_LENGTH (t) = len;
c6a1db6c
RS
1152
1153 return t;
1154}
1155\f
9ad265b0
RK
1156/* Return 1 if EXPR is the integer constant zero or a complex constant
1157 of zero. */
c6a1db6c
RS
1158
1159int
46c5ad27 1160integer_zerop (tree expr)
c6a1db6c 1161{
d964285c 1162 STRIP_NOPS (expr);
c6a1db6c 1163
9ad265b0 1164 return ((TREE_CODE (expr) == INTEGER_CST
1ac876be 1165 && ! TREE_CONSTANT_OVERFLOW (expr)
9ad265b0
RK
1166 && TREE_INT_CST_LOW (expr) == 0
1167 && TREE_INT_CST_HIGH (expr) == 0)
1168 || (TREE_CODE (expr) == COMPLEX_CST
1169 && integer_zerop (TREE_REALPART (expr))
1170 && integer_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1171}
1172
9ad265b0
RK
1173/* Return 1 if EXPR is the integer constant one or the corresponding
1174 complex constant. */
c6a1db6c
RS
1175
1176int
46c5ad27 1177integer_onep (tree expr)
c6a1db6c 1178{
d964285c 1179 STRIP_NOPS (expr);
c6a1db6c 1180
9ad265b0 1181 return ((TREE_CODE (expr) == INTEGER_CST
1ac876be 1182 && ! TREE_CONSTANT_OVERFLOW (expr)
9ad265b0
RK
1183 && TREE_INT_CST_LOW (expr) == 1
1184 && TREE_INT_CST_HIGH (expr) == 0)
1185 || (TREE_CODE (expr) == COMPLEX_CST
1186 && integer_onep (TREE_REALPART (expr))
1187 && integer_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1188}
1189
9ad265b0
RK
1190/* Return 1 if EXPR is an integer containing all 1's in as much precision as
1191 it contains. Likewise for the corresponding complex constant. */
c6a1db6c
RS
1192
1193int
46c5ad27 1194integer_all_onesp (tree expr)
c6a1db6c 1195{
b3694847
SS
1196 int prec;
1197 int uns;
c6a1db6c 1198
d964285c 1199 STRIP_NOPS (expr);
c6a1db6c 1200
9ad265b0
RK
1201 if (TREE_CODE (expr) == COMPLEX_CST
1202 && integer_all_onesp (TREE_REALPART (expr))
1203 && integer_zerop (TREE_IMAGPART (expr)))
1204 return 1;
1205
1ac876be
RK
1206 else if (TREE_CODE (expr) != INTEGER_CST
1207 || TREE_CONSTANT_OVERFLOW (expr))
c6a1db6c
RS
1208 return 0;
1209
8df83eae 1210 uns = TYPE_UNSIGNED (TREE_TYPE (expr));
d7d93837
AH
1211 if (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1212 && TREE_INT_CST_HIGH (expr) == -1)
1213 return 1;
c6a1db6c 1214 if (!uns)
d7d93837 1215 return 0;
c6a1db6c 1216
8980b5a3
RK
1217 /* Note that using TYPE_PRECISION here is wrong. We care about the
1218 actual bits, not the (arbitrary) range of the type. */
1219 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
37366632 1220 if (prec >= HOST_BITS_PER_WIDE_INT)
c6a1db6c 1221 {
05bccae2
RK
1222 HOST_WIDE_INT high_value;
1223 int shift_amount;
c6a1db6c 1224
37366632 1225 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
c6a1db6c 1226
1e128c5f
GB
1227 /* Can not handle precisions greater than twice the host int size. */
1228 gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT);
1229 if (shift_amount == HOST_BITS_PER_WIDE_INT)
c6a1db6c
RS
1230 /* Shifting by the host word size is undefined according to the ANSI
1231 standard, so we must handle this as a special case. */
1232 high_value = -1;
1233 else
37366632 1234 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
c6a1db6c 1235
dc478a5d 1236 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
05bccae2 1237 && TREE_INT_CST_HIGH (expr) == high_value);
c6a1db6c
RS
1238 }
1239 else
05bccae2 1240 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
c6a1db6c
RS
1241}
1242
1243/* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1244 one bit on). */
1245
1246int
46c5ad27 1247integer_pow2p (tree expr)
c6a1db6c 1248{
5cb1f2fa 1249 int prec;
37366632 1250 HOST_WIDE_INT high, low;
c6a1db6c 1251
d964285c 1252 STRIP_NOPS (expr);
c6a1db6c 1253
9ad265b0
RK
1254 if (TREE_CODE (expr) == COMPLEX_CST
1255 && integer_pow2p (TREE_REALPART (expr))
1256 && integer_zerop (TREE_IMAGPART (expr)))
1257 return 1;
1258
1ac876be 1259 if (TREE_CODE (expr) != INTEGER_CST || TREE_CONSTANT_OVERFLOW (expr))
c6a1db6c
RS
1260 return 0;
1261
e5e809f4 1262 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
5cb1f2fa 1263 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
c6a1db6c
RS
1264 high = TREE_INT_CST_HIGH (expr);
1265 low = TREE_INT_CST_LOW (expr);
1266
5cb1f2fa
RK
1267 /* First clear all bits that are beyond the type's precision in case
1268 we've been sign extended. */
1269
1270 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1271 ;
1272 else if (prec > HOST_BITS_PER_WIDE_INT)
1273 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1274 else
1275 {
1276 high = 0;
1277 if (prec < HOST_BITS_PER_WIDE_INT)
1278 low &= ~((HOST_WIDE_INT) (-1) << prec);
1279 }
1280
c6a1db6c
RS
1281 if (high == 0 && low == 0)
1282 return 0;
1283
1284 return ((high == 0 && (low & (low - 1)) == 0)
1285 || (low == 0 && (high & (high - 1)) == 0));
1286}
1287
4977bab6
ZW
1288/* Return 1 if EXPR is an integer constant other than zero or a
1289 complex constant other than zero. */
1290
1291int
46c5ad27 1292integer_nonzerop (tree expr)
4977bab6
ZW
1293{
1294 STRIP_NOPS (expr);
1295
1296 return ((TREE_CODE (expr) == INTEGER_CST
1297 && ! TREE_CONSTANT_OVERFLOW (expr)
1298 && (TREE_INT_CST_LOW (expr) != 0
1299 || TREE_INT_CST_HIGH (expr) != 0))
1300 || (TREE_CODE (expr) == COMPLEX_CST
1301 && (integer_nonzerop (TREE_REALPART (expr))
1302 || integer_nonzerop (TREE_IMAGPART (expr)))));
1303}
1304
5cb1f2fa
RK
1305/* Return the power of two represented by a tree node known to be a
1306 power of two. */
1307
1308int
46c5ad27 1309tree_log2 (tree expr)
5cb1f2fa
RK
1310{
1311 int prec;
1312 HOST_WIDE_INT high, low;
1313
1314 STRIP_NOPS (expr);
1315
1316 if (TREE_CODE (expr) == COMPLEX_CST)
1317 return tree_log2 (TREE_REALPART (expr));
1318
e5e809f4 1319 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
5cb1f2fa
RK
1320 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1321
1322 high = TREE_INT_CST_HIGH (expr);
1323 low = TREE_INT_CST_LOW (expr);
1324
1325 /* First clear all bits that are beyond the type's precision in case
1326 we've been sign extended. */
1327
1328 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1329 ;
1330 else if (prec > HOST_BITS_PER_WIDE_INT)
1331 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1332 else
1333 {
1334 high = 0;
1335 if (prec < HOST_BITS_PER_WIDE_INT)
1336 low &= ~((HOST_WIDE_INT) (-1) << prec);
1337 }
1338
1339 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
dc478a5d 1340 : exact_log2 (low));
5cb1f2fa
RK
1341}
1342
05bccae2
RK
1343/* Similar, but return the largest integer Y such that 2 ** Y is less
1344 than or equal to EXPR. */
1345
1346int
46c5ad27 1347tree_floor_log2 (tree expr)
05bccae2
RK
1348{
1349 int prec;
1350 HOST_WIDE_INT high, low;
1351
1352 STRIP_NOPS (expr);
1353
1354 if (TREE_CODE (expr) == COMPLEX_CST)
1355 return tree_log2 (TREE_REALPART (expr));
1356
1357 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1358 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1359
1360 high = TREE_INT_CST_HIGH (expr);
1361 low = TREE_INT_CST_LOW (expr);
1362
1363 /* First clear all bits that are beyond the type's precision in case
1364 we've been sign extended. Ignore if type's precision hasn't been set
1365 since what we are doing is setting it. */
1366
1367 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1368 ;
1369 else if (prec > HOST_BITS_PER_WIDE_INT)
1370 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1371 else
1372 {
1373 high = 0;
1374 if (prec < HOST_BITS_PER_WIDE_INT)
1375 low &= ~((HOST_WIDE_INT) (-1) << prec);
1376 }
1377
1378 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1379 : floor_log2 (low));
1380}
1381
c6a1db6c
RS
1382/* Return 1 if EXPR is the real constant zero. */
1383
1384int
46c5ad27 1385real_zerop (tree expr)
c6a1db6c 1386{
d964285c 1387 STRIP_NOPS (expr);
c6a1db6c 1388
9ad265b0 1389 return ((TREE_CODE (expr) == REAL_CST
1ac876be 1390 && ! TREE_CONSTANT_OVERFLOW (expr)
9ad265b0
RK
1391 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
1392 || (TREE_CODE (expr) == COMPLEX_CST
1393 && real_zerop (TREE_REALPART (expr))
1394 && real_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1395}
1396
9ad265b0 1397/* Return 1 if EXPR is the real constant one in real or complex form. */
c6a1db6c
RS
1398
1399int
46c5ad27 1400real_onep (tree expr)
c6a1db6c 1401{
d964285c 1402 STRIP_NOPS (expr);
c6a1db6c 1403
9ad265b0 1404 return ((TREE_CODE (expr) == REAL_CST
1ac876be 1405 && ! TREE_CONSTANT_OVERFLOW (expr)
9ad265b0
RK
1406 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
1407 || (TREE_CODE (expr) == COMPLEX_CST
1408 && real_onep (TREE_REALPART (expr))
1409 && real_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1410}
1411
1412/* Return 1 if EXPR is the real constant two. */
1413
1414int
46c5ad27 1415real_twop (tree expr)
c6a1db6c 1416{
d964285c 1417 STRIP_NOPS (expr);
c6a1db6c 1418
9ad265b0 1419 return ((TREE_CODE (expr) == REAL_CST
1ac876be 1420 && ! TREE_CONSTANT_OVERFLOW (expr)
9ad265b0
RK
1421 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
1422 || (TREE_CODE (expr) == COMPLEX_CST
1423 && real_twop (TREE_REALPART (expr))
1424 && real_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1425}
1426
378393da
RS
1427/* Return 1 if EXPR is the real constant minus one. */
1428
1429int
46c5ad27 1430real_minus_onep (tree expr)
378393da
RS
1431{
1432 STRIP_NOPS (expr);
1433
1434 return ((TREE_CODE (expr) == REAL_CST
1435 && ! TREE_CONSTANT_OVERFLOW (expr)
1436 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1))
1437 || (TREE_CODE (expr) == COMPLEX_CST
1438 && real_minus_onep (TREE_REALPART (expr))
1439 && real_zerop (TREE_IMAGPART (expr))));
1440}
1441
c6a1db6c 1442/* Nonzero if EXP is a constant or a cast of a constant. */
dc478a5d 1443
c6a1db6c 1444int
46c5ad27 1445really_constant_p (tree exp)
c6a1db6c 1446{
d964285c 1447 /* This is not quite the same as STRIP_NOPS. It does more. */
c6a1db6c
RS
1448 while (TREE_CODE (exp) == NOP_EXPR
1449 || TREE_CODE (exp) == CONVERT_EXPR
1450 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1451 exp = TREE_OPERAND (exp, 0);
1452 return TREE_CONSTANT (exp);
1453}
1454\f
1455/* Return first list element whose TREE_VALUE is ELEM.
2a3c15b5 1456 Return 0 if ELEM is not in LIST. */
c6a1db6c
RS
1457
1458tree
46c5ad27 1459value_member (tree elem, tree list)
c6a1db6c
RS
1460{
1461 while (list)
1462 {
1463 if (elem == TREE_VALUE (list))
1464 return list;
1465 list = TREE_CHAIN (list);
1466 }
1467 return NULL_TREE;
1468}
1469
1470/* Return first list element whose TREE_PURPOSE is ELEM.
2a3c15b5 1471 Return 0 if ELEM is not in LIST. */
c6a1db6c
RS
1472
1473tree
46c5ad27 1474purpose_member (tree elem, tree list)
c6a1db6c
RS
1475{
1476 while (list)
1477 {
1478 if (elem == TREE_PURPOSE (list))
1479 return list;
1480 list = TREE_CHAIN (list);
c6a1db6c
RS
1481 }
1482 return NULL_TREE;
1483}
1484
0f41302f 1485/* Return nonzero if ELEM is part of the chain CHAIN. */
c6a1db6c
RS
1486
1487int
46c5ad27 1488chain_member (tree elem, tree chain)
c6a1db6c
RS
1489{
1490 while (chain)
1491 {
1492 if (elem == chain)
1493 return 1;
1494 chain = TREE_CHAIN (chain);
1495 }
1496
1497 return 0;
1498}
1499
1500/* Return the length of a chain of nodes chained through TREE_CHAIN.
1501 We expect a null pointer to mark the end of the chain.
1502 This is the Lisp primitive `length'. */
1503
1504int
46c5ad27 1505list_length (tree t)
c6a1db6c 1506{
f75fbaf7
ZW
1507 tree p = t;
1508#ifdef ENABLE_TREE_CHECKING
1509 tree q = t;
1510#endif
b3694847 1511 int len = 0;
c6a1db6c 1512
f75fbaf7
ZW
1513 while (p)
1514 {
1515 p = TREE_CHAIN (p);
1516#ifdef ENABLE_TREE_CHECKING
1517 if (len % 2)
1518 q = TREE_CHAIN (q);
1e128c5f 1519 gcc_assert (p != q);
f75fbaf7
ZW
1520#endif
1521 len++;
1522 }
c6a1db6c
RS
1523
1524 return len;
1525}
1526
c3b247b4
JM
1527/* Returns the number of FIELD_DECLs in TYPE. */
1528
1529int
46c5ad27 1530fields_length (tree type)
c3b247b4
JM
1531{
1532 tree t = TYPE_FIELDS (type);
1533 int count = 0;
1534
1535 for (; t; t = TREE_CHAIN (t))
1536 if (TREE_CODE (t) == FIELD_DECL)
1537 ++count;
1538
1539 return count;
1540}
1541
c6a1db6c
RS
1542/* Concatenate two chains of nodes (chained through TREE_CHAIN)
1543 by modifying the last node in chain 1 to point to chain 2.
1544 This is the Lisp primitive `nconc'. */
1545
1546tree
46c5ad27 1547chainon (tree op1, tree op2)
c6a1db6c 1548{
66ea6f4c 1549 tree t1;
c6a1db6c 1550
66ea6f4c
RH
1551 if (!op1)
1552 return op2;
1553 if (!op2)
1554 return op1;
1555
1556 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
1557 continue;
1558 TREE_CHAIN (t1) = op2;
1810c3fa 1559
f4524c9e 1560#ifdef ENABLE_TREE_CHECKING
66ea6f4c
RH
1561 {
1562 tree t2;
1563 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1e128c5f 1564 gcc_assert (t2 != t1);
66ea6f4c 1565 }
0f4668ef 1566#endif
66ea6f4c
RH
1567
1568 return op1;
c6a1db6c
RS
1569}
1570
1571/* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1572
1573tree
46c5ad27 1574tree_last (tree chain)
c6a1db6c 1575{
b3694847 1576 tree next;
c6a1db6c 1577 if (chain)
5e9defae 1578 while ((next = TREE_CHAIN (chain)))
c6a1db6c
RS
1579 chain = next;
1580 return chain;
1581}
1582
1583/* Reverse the order of elements in the chain T,
1584 and return the new head of the chain (old last element). */
1585
1586tree
46c5ad27 1587nreverse (tree t)
c6a1db6c 1588{
b3694847 1589 tree prev = 0, decl, next;
c6a1db6c
RS
1590 for (decl = t; decl; decl = next)
1591 {
1592 next = TREE_CHAIN (decl);
1593 TREE_CHAIN (decl) = prev;
1594 prev = decl;
1595 }
1596 return prev;
1597}
c6a1db6c
RS
1598\f
1599/* Return a newly created TREE_LIST node whose
1600 purpose and value fields are PARM and VALUE. */
1601
1602tree
b9dcdee4 1603build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
c6a1db6c 1604{
b9dcdee4 1605 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
c6a1db6c
RS
1606 TREE_PURPOSE (t) = parm;
1607 TREE_VALUE (t) = value;
1608 return t;
1609}
1610
c6a1db6c 1611/* Return a newly created TREE_LIST node whose
411e2759 1612 purpose and value fields are PURPOSE and VALUE
c6a1db6c
RS
1613 and whose TREE_CHAIN is CHAIN. */
1614
1615tree
b9dcdee4 1616tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
c6a1db6c 1617{
b3694847 1618 tree node;
a3770a81 1619
a6e4d85b 1620 node = ggc_alloc_zone_pass_stat (sizeof (struct tree_list), &tree_zone);
f8a83ee3
ZW
1621
1622 memset (node, 0, sizeof (struct tree_common));
a3770a81 1623
c6a1db6c 1624#ifdef GATHER_STATISTICS
ad41cc2a
RK
1625 tree_node_counts[(int) x_kind]++;
1626 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
c6a1db6c
RS
1627#endif
1628
c6a1db6c 1629 TREE_SET_CODE (node, TREE_LIST);
c6a1db6c
RS
1630 TREE_CHAIN (node) = chain;
1631 TREE_PURPOSE (node) = purpose;
1632 TREE_VALUE (node) = value;
1633 return node;
1634}
1635
c6a1db6c
RS
1636\f
1637/* Return the size nominally occupied by an object of type TYPE
1638 when it resides in memory. The value is measured in units of bytes,
1639 and its data type is that normally used for type sizes
1640 (which is the first type created by make_signed_type or
1641 make_unsigned_type). */
1642
1643tree
46c5ad27 1644size_in_bytes (tree type)
c6a1db6c 1645{
cdc5a032
RS
1646 tree t;
1647
c6a1db6c
RS
1648 if (type == error_mark_node)
1649 return integer_zero_node;
ead17059 1650
c6a1db6c 1651 type = TYPE_MAIN_VARIANT (type);
ead17059 1652 t = TYPE_SIZE_UNIT (type);
d4b60170 1653
ead17059 1654 if (t == 0)
c6a1db6c 1655 {
ae2bcd98 1656 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
dc397323 1657 return size_zero_node;
c6a1db6c 1658 }
d4b60170 1659
4d7d0403 1660 if (TREE_CODE (t) == INTEGER_CST)
ca7a3bd7 1661 t = force_fit_type (t, 0, false, false);
ead17059 1662
cdc5a032 1663 return t;
c6a1db6c
RS
1664}
1665
e5e809f4
JL
1666/* Return the size of TYPE (in bytes) as a wide integer
1667 or return -1 if the size can vary or is larger than an integer. */
c6a1db6c 1668
e5e809f4 1669HOST_WIDE_INT
46c5ad27 1670int_size_in_bytes (tree type)
c6a1db6c 1671{
e5e809f4
JL
1672 tree t;
1673
c6a1db6c
RS
1674 if (type == error_mark_node)
1675 return 0;
e5e809f4 1676
c6a1db6c 1677 type = TYPE_MAIN_VARIANT (type);
ead17059
RH
1678 t = TYPE_SIZE_UNIT (type);
1679 if (t == 0
1680 || TREE_CODE (t) != INTEGER_CST
d4b60170 1681 || TREE_OVERFLOW (t)
665f2503
RK
1682 || TREE_INT_CST_HIGH (t) != 0
1683 /* If the result would appear negative, it's too big to represent. */
1684 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
c6a1db6c 1685 return -1;
e5e809f4
JL
1686
1687 return TREE_INT_CST_LOW (t);
c6a1db6c 1688}
665f2503
RK
1689\f
1690/* Return the bit position of FIELD, in bits from the start of the record.
1691 This is a tree of type bitsizetype. */
1692
1693tree
46c5ad27 1694bit_position (tree field)
665f2503 1695{
f2704b9f
RK
1696 return bit_from_pos (DECL_FIELD_OFFSET (field),
1697 DECL_FIELD_BIT_OFFSET (field));
665f2503 1698}
729a2125 1699
0e61db61
NS
1700/* Likewise, but return as an integer. It must be representable in
1701 that way (since it could be a signed value, we don't have the
1702 option of returning -1 like int_size_in_byte can. */
665f2503
RK
1703
1704HOST_WIDE_INT
46c5ad27 1705int_bit_position (tree field)
665f2503
RK
1706{
1707 return tree_low_cst (bit_position (field), 0);
1708}
1709\f
770ae6cc
RK
1710/* Return the byte position of FIELD, in bytes from the start of the record.
1711 This is a tree of type sizetype. */
1712
1713tree
46c5ad27 1714byte_position (tree field)
770ae6cc 1715{
f2704b9f
RK
1716 return byte_from_pos (DECL_FIELD_OFFSET (field),
1717 DECL_FIELD_BIT_OFFSET (field));
770ae6cc
RK
1718}
1719
0e61db61
NS
1720/* Likewise, but return as an integer. It must be representable in
1721 that way (since it could be a signed value, we don't have the
1722 option of returning -1 like int_size_in_byte can. */
770ae6cc
RK
1723
1724HOST_WIDE_INT
46c5ad27 1725int_byte_position (tree field)
770ae6cc
RK
1726{
1727 return tree_low_cst (byte_position (field), 0);
1728}
1729\f
665f2503 1730/* Return the strictest alignment, in bits, that T is known to have. */
729a2125
RK
1731
1732unsigned int
46c5ad27 1733expr_align (tree t)
729a2125
RK
1734{
1735 unsigned int align0, align1;
1736
1737 switch (TREE_CODE (t))
1738 {
1739 case NOP_EXPR: case CONVERT_EXPR: case NON_LVALUE_EXPR:
1740 /* If we have conversions, we know that the alignment of the
1741 object must meet each of the alignments of the types. */
1742 align0 = expr_align (TREE_OPERAND (t, 0));
1743 align1 = TYPE_ALIGN (TREE_TYPE (t));
1744 return MAX (align0, align1);
1745
1746 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
1747 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
9f63daea 1748 case CLEANUP_POINT_EXPR:
729a2125
RK
1749 /* These don't change the alignment of an object. */
1750 return expr_align (TREE_OPERAND (t, 0));
1751
1752 case COND_EXPR:
1753 /* The best we can do is say that the alignment is the least aligned
1754 of the two arms. */
1755 align0 = expr_align (TREE_OPERAND (t, 1));
1756 align1 = expr_align (TREE_OPERAND (t, 2));
1757 return MIN (align0, align1);
1758
06ceef4e 1759 case LABEL_DECL: case CONST_DECL:
729a2125
RK
1760 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
1761 if (DECL_ALIGN (t) != 0)
1762 return DECL_ALIGN (t);
1763 break;
1764
06ceef4e
RK
1765 case FUNCTION_DECL:
1766 return FUNCTION_BOUNDARY;
1767
729a2125
RK
1768 default:
1769 break;
1770 }
1771
1772 /* Otherwise take the alignment from that of the type. */
1773 return TYPE_ALIGN (TREE_TYPE (t));
1774}
c0560b8b
RK
1775\f
1776/* Return, as a tree node, the number of elements for TYPE (which is an
d26f8097 1777 ARRAY_TYPE) minus one. This counts only elements of the top array. */
c6a1db6c
RS
1778
1779tree
46c5ad27 1780array_type_nelts (tree type)
c6a1db6c 1781{
7671d67b
BK
1782 tree index_type, min, max;
1783
1784 /* If they did it with unspecified bounds, then we should have already
1785 given an error about it before we got here. */
1786 if (! TYPE_DOMAIN (type))
1787 return error_mark_node;
1788
1789 index_type = TYPE_DOMAIN (type);
1790 min = TYPE_MIN_VALUE (index_type);
1791 max = TYPE_MAX_VALUE (index_type);
83b853c9 1792
83b853c9
JM
1793 return (integer_zerop (min)
1794 ? max
987b67bc 1795 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
c6a1db6c
RS
1796}
1797\f
dc700f49
RH
1798/* If arg is static -- a reference to an object in static storage -- then
1799 return the object. This is not the same as the C meaning of `static'.
1800 If arg isn't static, return NULL. */
c6a1db6c 1801
525c6bf5 1802tree
46c5ad27 1803staticp (tree arg)
c6a1db6c
RS
1804{
1805 switch (TREE_CODE (arg))
1806 {
c6a1db6c 1807 case FUNCTION_DECL:
269b7526
AP
1808 /* Nested functions are static, even though taking their address will
1809 involve a trampoline as we unnest the nested function and create
1810 the trampoline on the tree level. */
1811 return arg;
27da1b4d 1812
86270344 1813 case VAR_DECL:
3d78f2e9 1814 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
c2f7fa15 1815 && ! DECL_THREAD_LOCAL_P (arg)
43d9ad1d 1816 && ! DECL_DLLIMPORT_P (arg)
525c6bf5 1817 ? arg : NULL);
c6a1db6c 1818
943db347
AP
1819 case CONST_DECL:
1820 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1821 ? arg : NULL);
1822
492c86a4 1823 case CONSTRUCTOR:
525c6bf5 1824 return TREE_STATIC (arg) ? arg : NULL;
492c86a4 1825
1c12c179 1826 case LABEL_DECL:
c6a1db6c 1827 case STRING_CST:
525c6bf5 1828 return arg;
c6a1db6c 1829
6de9cd9a 1830 case COMPONENT_REF:
9f63daea 1831 /* If the thing being referenced is not a field, then it is
6de9cd9a
DN
1832 something language specific. */
1833 if (TREE_CODE (TREE_OPERAND (arg, 1)) != FIELD_DECL)
1834 return (*lang_hooks.staticp) (arg);
1835
f7fa6ef9
RK
1836 /* If we are referencing a bitfield, we can't evaluate an
1837 ADDR_EXPR at compile time and so it isn't a constant. */
6de9cd9a 1838 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
525c6bf5 1839 return NULL;
6de9cd9a
DN
1840
1841 return staticp (TREE_OPERAND (arg, 0));
f7fa6ef9 1842
c6a1db6c 1843 case BIT_FIELD_REF:
525c6bf5 1844 return NULL;
c6a1db6c 1845
7ccf35ed
DN
1846 case MISALIGNED_INDIRECT_REF:
1847 case ALIGN_INDIRECT_REF:
c6a1db6c 1848 case INDIRECT_REF:
525c6bf5 1849 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
c6a1db6c
RS
1850
1851 case ARRAY_REF:
b4e3fabb 1852 case ARRAY_RANGE_REF:
c6a1db6c
RS
1853 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
1854 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
1855 return staticp (TREE_OPERAND (arg, 0));
6de9cd9a 1856 else
ea06b166 1857 return false;
c6a1db6c 1858
e9a25f70 1859 default:
d062a680
JM
1860 if ((unsigned int) TREE_CODE (arg)
1861 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
ae2bcd98 1862 return lang_hooks.staticp (arg);
d062a680 1863 else
525c6bf5 1864 return NULL;
e9a25f70 1865 }
c6a1db6c
RS
1866}
1867\f
3aa77500
RS
1868/* Wrap a SAVE_EXPR around EXPR, if appropriate.
1869 Do this to any expression which may be used in more than one place,
1870 but must be evaluated only once.
1871
1872 Normally, expand_expr would reevaluate the expression each time.
1873 Calling save_expr produces something that is evaluated and recorded
1874 the first time expand_expr is called on it. Subsequent calls to
1875 expand_expr just reuse the recorded value.
1876
1877 The call to expand_expr that generates code that actually computes
1878 the value is the first call *at compile time*. Subsequent calls
1879 *at compile time* generate code to use the saved value.
1880 This produces correct result provided that *at run time* control
1881 always flows through the insns made by the first expand_expr
1882 before reaching the other places where the save_expr was evaluated.
1883 You, the caller of save_expr, must make sure this is so.
1884
1885 Constants, and certain read-only nodes, are returned with no
1886 SAVE_EXPR because that is safe. Expressions containing placeholders
c5af9901
RK
1887 are not touched; see tree.def for an explanation of what these
1888 are used for. */
c6a1db6c
RS
1889
1890tree
46c5ad27 1891save_expr (tree expr)
c6a1db6c 1892{
7a6cdb44 1893 tree t = fold (expr);
84d8756d
RK
1894 tree inner;
1895
c6a1db6c
RS
1896 /* If the tree evaluates to a constant, then we don't want to hide that
1897 fact (i.e. this allows further folding, and direct checks for constants).
af929c62 1898 However, a read-only object that has side effects cannot be bypassed.
dc478a5d 1899 Since it is no problem to reevaluate literals, we just return the
0f41302f 1900 literal node. */
84d8756d 1901 inner = skip_simple_arithmetic (t);
6de9cd9a
DN
1902
1903 if (TREE_INVARIANT (inner)
ac79cd5a 1904 || (TREE_READONLY (inner) && ! TREE_SIDE_EFFECTS (inner))
0c685f12
NS
1905 || TREE_CODE (inner) == SAVE_EXPR
1906 || TREE_CODE (inner) == ERROR_MARK)
c6a1db6c
RS
1907 return t;
1908
a9ecacf6 1909 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
dec20b4b
RK
1910 it means that the size or offset of some field of an object depends on
1911 the value within another field.
1912
1913 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
1914 and some variable since it would then need to be both evaluated once and
1915 evaluated more than once. Front-ends must assure this case cannot
1916 happen by surrounding any such subexpressions in their own SAVE_EXPR
1917 and forcing evaluation at the proper time. */
a9ecacf6 1918 if (contains_placeholder_p (inner))
dec20b4b
RK
1919 return t;
1920
82c82743 1921 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
c6a1db6c
RS
1922
1923 /* This expression might be placed ahead of a jump to ensure that the
1924 value was computed on both sides of the jump. So make sure it isn't
1925 eliminated as dead. */
1926 TREE_SIDE_EFFECTS (t) = 1;
6de9cd9a 1927 TREE_INVARIANT (t) = 1;
c6a1db6c
RS
1928 return t;
1929}
679163cf 1930
a9ecacf6
OH
1931/* Look inside EXPR and into any simple arithmetic operations. Return
1932 the innermost non-arithmetic node. */
1933
1934tree
46c5ad27 1935skip_simple_arithmetic (tree expr)
a9ecacf6
OH
1936{
1937 tree inner;
46c5ad27 1938
a9ecacf6
OH
1939 /* We don't care about whether this can be used as an lvalue in this
1940 context. */
1941 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
1942 expr = TREE_OPERAND (expr, 0);
1943
1944 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
1945 a constant, it will be more efficient to not make another SAVE_EXPR since
1946 it will allow better simplification and GCSE will be able to merge the
1947 computations if they actually occur. */
1948 inner = expr;
1949 while (1)
1950 {
6615c446 1951 if (UNARY_CLASS_P (inner))
a9ecacf6 1952 inner = TREE_OPERAND (inner, 0);
6615c446 1953 else if (BINARY_CLASS_P (inner))
a9ecacf6 1954 {
6de9cd9a 1955 if (TREE_INVARIANT (TREE_OPERAND (inner, 1)))
a9ecacf6 1956 inner = TREE_OPERAND (inner, 0);
6de9cd9a 1957 else if (TREE_INVARIANT (TREE_OPERAND (inner, 0)))
a9ecacf6
OH
1958 inner = TREE_OPERAND (inner, 1);
1959 else
1960 break;
1961 }
1962 else
1963 break;
1964 }
1965
1966 return inner;
1967}
1968
e2500fed
GK
1969/* Return which tree structure is used by T. */
1970
1971enum tree_node_structure_enum
46c5ad27 1972tree_node_structure (tree t)
e2500fed
GK
1973{
1974 enum tree_code code = TREE_CODE (t);
46c5ad27 1975
e2500fed 1976 switch (TREE_CODE_CLASS (code))
820cc88f 1977 {
6615c446 1978 case tcc_declaration:
820cc88f
DB
1979 {
1980 switch (code)
1981 {
1982 case FIELD_DECL:
1983 return TS_FIELD_DECL;
1984 case PARM_DECL:
1985 return TS_PARM_DECL;
1986 case VAR_DECL:
1987 return TS_VAR_DECL;
1988 case LABEL_DECL:
1989 return TS_LABEL_DECL;
1990 case RESULT_DECL:
1991 return TS_RESULT_DECL;
1992 case CONST_DECL:
1993 return TS_CONST_DECL;
1994 case TYPE_DECL:
1995 return TS_TYPE_DECL;
1996 case FUNCTION_DECL:
1997 return TS_FUNCTION_DECL;
326eda4b
DB
1998 case TYPE_MEMORY_TAG:
1999 case NAME_MEMORY_TAG:
2000 case STRUCT_FIELD_TAG:
2001 return TS_MEMORY_TAG;
820cc88f
DB
2002 default:
2003 return TS_DECL_NON_COMMON;
2004 }
2005 }
6615c446
JO
2006 case tcc_type:
2007 return TS_TYPE;
2008 case tcc_reference:
2009 case tcc_comparison:
2010 case tcc_unary:
2011 case tcc_binary:
2012 case tcc_expression:
2013 case tcc_statement:
e2500fed 2014 return TS_EXP;
6615c446 2015 default: /* tcc_constant and tcc_exceptional */
e2500fed
GK
2016 break;
2017 }
2018 switch (code)
2019 {
6615c446 2020 /* tcc_constant cases. */
e2500fed
GK
2021 case INTEGER_CST: return TS_INT_CST;
2022 case REAL_CST: return TS_REAL_CST;
2023 case COMPLEX_CST: return TS_COMPLEX;
2024 case VECTOR_CST: return TS_VECTOR;
2025 case STRING_CST: return TS_STRING;
6615c446 2026 /* tcc_exceptional cases. */
e2500fed
GK
2027 case ERROR_MARK: return TS_COMMON;
2028 case IDENTIFIER_NODE: return TS_IDENTIFIER;
2029 case TREE_LIST: return TS_LIST;
2030 case TREE_VEC: return TS_VEC;
6de9cd9a 2031 case PHI_NODE: return TS_PHI_NODE;
6de9cd9a 2032 case SSA_NAME: return TS_SSA_NAME;
e2500fed 2033 case PLACEHOLDER_EXPR: return TS_COMMON;
6de9cd9a 2034 case STATEMENT_LIST: return TS_STATEMENT_LIST;
90afe2c9 2035 case BLOCK: return TS_BLOCK;
4038c495 2036 case CONSTRUCTOR: return TS_CONSTRUCTOR;
95b4aca6 2037 case TREE_BINFO: return TS_BINFO;
33c94679 2038 case VALUE_HANDLE: return TS_VALUE_HANDLE;
e2500fed
GK
2039
2040 default:
1e128c5f 2041 gcc_unreachable ();
e2500fed
GK
2042 }
2043}
dec20b4b
RK
2044\f
2045/* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
3910a7cb 2046 or offset that depends on a field within a record. */
dec20b4b 2047
7a6cdb44 2048bool
46c5ad27 2049contains_placeholder_p (tree exp)
dec20b4b 2050{
b3694847 2051 enum tree_code code;
dec20b4b 2052
8f17b5c5
MM
2053 if (!exp)
2054 return 0;
2055
8f17b5c5 2056 code = TREE_CODE (exp);
6fce44af 2057 if (code == PLACEHOLDER_EXPR)
cc3c7c13 2058 return 1;
67c8d7de 2059
dec20b4b
RK
2060 switch (TREE_CODE_CLASS (code))
2061 {
6615c446 2062 case tcc_reference:
cc3c7c13
RK
2063 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2064 position computations since they will be converted into a
2065 WITH_RECORD_EXPR involving the reference, which will assume
2066 here will be valid. */
7a6cdb44 2067 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
dec20b4b 2068
6615c446 2069 case tcc_exceptional:
e9a25f70 2070 if (code == TREE_LIST)
7a6cdb44
RK
2071 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
2072 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
e9a25f70 2073 break;
dc478a5d 2074
6615c446
JO
2075 case tcc_unary:
2076 case tcc_binary:
2077 case tcc_comparison:
2078 case tcc_expression:
3910a7cb
RK
2079 switch (code)
2080 {
2081 case COMPOUND_EXPR:
dc478a5d 2082 /* Ignoring the first operand isn't quite right, but works best. */
7a6cdb44 2083 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3910a7cb 2084
3910a7cb 2085 case COND_EXPR:
7a6cdb44
RK
2086 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2087 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
2088 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3910a7cb 2089
4c223d6a
EB
2090 case CALL_EXPR:
2091 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
2092
e9a25f70
JL
2093 default:
2094 break;
3910a7cb
RK
2095 }
2096
54e4aedb 2097 switch (TREE_CODE_LENGTH (code))
dec20b4b
RK
2098 {
2099 case 1:
7a6cdb44 2100 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
dec20b4b 2101 case 2:
7a6cdb44
RK
2102 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2103 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
e9a25f70
JL
2104 default:
2105 return 0;
dec20b4b 2106 }
dec20b4b 2107
e9a25f70
JL
2108 default:
2109 return 0;
2110 }
1160f9ec 2111 return 0;
dec20b4b 2112}
b7f6588d 2113
a5bfe141
RH
2114/* Return true if any part of the computation of TYPE involves a
2115 PLACEHOLDER_EXPR. This includes size, bounds, qualifiers
2116 (for QUAL_UNION_TYPE) and field positions. */
7a6cdb44 2117
a5bfe141
RH
2118static bool
2119type_contains_placeholder_1 (tree type)
7a6cdb44
RK
2120{
2121 /* If the size contains a placeholder or the parent type (component type in
2122 the case of arrays) type involves a placeholder, this type does. */
2123 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
2124 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
2125 || (TREE_TYPE (type) != 0
2126 && type_contains_placeholder_p (TREE_TYPE (type))))
a5bfe141 2127 return true;
7a6cdb44
RK
2128
2129 /* Now do type-specific checks. Note that the last part of the check above
2130 greatly limits what we have to do below. */
2131 switch (TREE_CODE (type))
2132 {
2133 case VOID_TYPE:
2134 case COMPLEX_TYPE:
7a6cdb44
RK
2135 case ENUMERAL_TYPE:
2136 case BOOLEAN_TYPE:
2137 case CHAR_TYPE:
2138 case POINTER_TYPE:
2139 case OFFSET_TYPE:
2140 case REFERENCE_TYPE:
2141 case METHOD_TYPE:
7a6cdb44 2142 case FUNCTION_TYPE:
a65735cd 2143 case VECTOR_TYPE:
a5bfe141 2144 return false;
7a6cdb44
RK
2145
2146 case INTEGER_TYPE:
2147 case REAL_TYPE:
2148 /* Here we just check the bounds. */
2149 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
2150 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
2151
2152 case ARRAY_TYPE:
7a6cdb44
RK
2153 /* We're already checked the component type (TREE_TYPE), so just check
2154 the index type. */
2155 return type_contains_placeholder_p (TYPE_DOMAIN (type));
2156
2157 case RECORD_TYPE:
2158 case UNION_TYPE:
2159 case QUAL_UNION_TYPE:
2160 {
7a6cdb44 2161 tree field;
7a6cdb44
RK
2162
2163 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
2164 if (TREE_CODE (field) == FIELD_DECL
2165 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
2166 || (TREE_CODE (type) == QUAL_UNION_TYPE
2167 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
2168 || type_contains_placeholder_p (TREE_TYPE (field))))
a5bfe141
RH
2169 return true;
2170
2171 return false;
7a6cdb44
RK
2172 }
2173
2174 default:
1e128c5f 2175 gcc_unreachable ();
7a6cdb44
RK
2176 }
2177}
a5bfe141
RH
2178
2179bool
2180type_contains_placeholder_p (tree type)
2181{
2182 bool result;
2183
2184 /* If the contains_placeholder_bits field has been initialized,
2185 then we know the answer. */
2186 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
2187 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
2188
2189 /* Indicate that we've seen this type node, and the answer is false.
2190 This is what we want to return if we run into recursion via fields. */
2191 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
2192
2193 /* Compute the real value. */
2194 result = type_contains_placeholder_1 (type);
2195
2196 /* Store the real value. */
2197 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
2198
2199 return result;
2200}
dec20b4b
RK
2201\f
2202/* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
2203 return a tree with all occurrences of references to F in a
2204 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
e9a25f70
JL
2205 contains only arithmetic expressions or a CALL_EXPR with a
2206 PLACEHOLDER_EXPR occurring only in its arglist. */
dec20b4b
RK
2207
2208tree
46c5ad27 2209substitute_in_expr (tree exp, tree f, tree r)
dec20b4b
RK
2210{
2211 enum tree_code code = TREE_CODE (exp);
7ad00e13 2212 tree op0, op1, op2, op3;
e9a25f70 2213 tree new;
dec20b4b
RK
2214 tree inner;
2215
9d2a492d
RK
2216 /* We handle TREE_LIST and COMPONENT_REF separately. */
2217 if (code == TREE_LIST)
dec20b4b 2218 {
6fce44af
RK
2219 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
2220 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
9d2a492d 2221 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
dec20b4b 2222 return exp;
e9a25f70 2223
9d2a492d
RK
2224 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2225 }
2226 else if (code == COMPONENT_REF)
2227 {
2228 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2229 and it is the right field, replace it with R. */
2230 for (inner = TREE_OPERAND (exp, 0);
6615c446 2231 REFERENCE_CLASS_P (inner);
9d2a492d
RK
2232 inner = TREE_OPERAND (inner, 0))
2233 ;
2234 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2235 && TREE_OPERAND (exp, 1) == f)
2236 return r;
2237
3244e67d 2238 /* If this expression hasn't been completed let, leave it alone. */
9d2a492d
RK
2239 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && TREE_TYPE (inner) == 0)
2240 return exp;
2241
6fce44af 2242 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
9d2a492d
RK
2243 if (op0 == TREE_OPERAND (exp, 0))
2244 return exp;
2245
987b67bc
KH
2246 new = fold_build3 (COMPONENT_REF, TREE_TYPE (exp),
2247 op0, TREE_OPERAND (exp, 1), NULL_TREE);
9d2a492d
RK
2248 }
2249 else
2250 switch (TREE_CODE_CLASS (code))
2251 {
6615c446
JO
2252 case tcc_constant:
2253 case tcc_declaration:
9d2a492d 2254 return exp;
dec20b4b 2255
6615c446
JO
2256 case tcc_exceptional:
2257 case tcc_unary:
2258 case tcc_binary:
2259 case tcc_comparison:
2260 case tcc_expression:
2261 case tcc_reference:
54e4aedb 2262 switch (TREE_CODE_LENGTH (code))
9d2a492d
RK
2263 {
2264 case 0:
9b594acf 2265 return exp;
dc478a5d 2266
9d2a492d 2267 case 1:
6fce44af 2268 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
9d2a492d
RK
2269 if (op0 == TREE_OPERAND (exp, 0))
2270 return exp;
235783d1 2271
987b67bc 2272 new = fold_build1 (code, TREE_TYPE (exp), op0);
9d2a492d 2273 break;
dec20b4b 2274
9d2a492d 2275 case 2:
6fce44af
RK
2276 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2277 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
784fb70e 2278
9d2a492d
RK
2279 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2280 return exp;
9b594acf 2281
987b67bc 2282 new = fold_build2 (code, TREE_TYPE (exp), op0, op1);
9d2a492d 2283 break;
dec20b4b 2284
9d2a492d 2285 case 3:
6fce44af
RK
2286 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2287 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2288 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
6a22e3a7 2289
9d2a492d
RK
2290 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2291 && op2 == TREE_OPERAND (exp, 2))
2292 return exp;
e9a25f70 2293
987b67bc 2294 new = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
9d2a492d 2295 break;
e9a25f70 2296
7ad00e13
EB
2297 case 4:
2298 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2299 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2300 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
2301 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
2302
2303 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2304 && op2 == TREE_OPERAND (exp, 2)
2305 && op3 == TREE_OPERAND (exp, 3))
2306 return exp;
2307
2308 new = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2309 break;
2310
9d2a492d 2311 default:
1e128c5f 2312 gcc_unreachable ();
9d2a492d
RK
2313 }
2314 break;
dec20b4b 2315
9d2a492d 2316 default:
1e128c5f 2317 gcc_unreachable ();
9d2a492d 2318 }
dec20b4b 2319
abd23b66
RK
2320 TREE_READONLY (new) = TREE_READONLY (exp);
2321 return new;
dec20b4b 2322}
6fce44af
RK
2323
2324/* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
2325 for it within OBJ, a tree that is an object or a chain of references. */
2326
2327tree
2328substitute_placeholder_in_expr (tree exp, tree obj)
2329{
2330 enum tree_code code = TREE_CODE (exp);
95df09f0 2331 tree op0, op1, op2, op3;
6fce44af
RK
2332
2333 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
2334 in the chain of OBJ. */
2335 if (code == PLACEHOLDER_EXPR)
2336 {
2337 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
2338 tree elt;
2339
2340 for (elt = obj; elt != 0;
2341 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
2342 || TREE_CODE (elt) == COND_EXPR)
2343 ? TREE_OPERAND (elt, 1)
6615c446
JO
2344 : (REFERENCE_CLASS_P (elt)
2345 || UNARY_CLASS_P (elt)
2346 || BINARY_CLASS_P (elt)
2347 || EXPRESSION_CLASS_P (elt))
6fce44af
RK
2348 ? TREE_OPERAND (elt, 0) : 0))
2349 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
2350 return elt;
2351
2352 for (elt = obj; elt != 0;
2353 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
2354 || TREE_CODE (elt) == COND_EXPR)
2355 ? TREE_OPERAND (elt, 1)
6615c446
JO
2356 : (REFERENCE_CLASS_P (elt)
2357 || UNARY_CLASS_P (elt)
2358 || BINARY_CLASS_P (elt)
2359 || EXPRESSION_CLASS_P (elt))
6fce44af
RK
2360 ? TREE_OPERAND (elt, 0) : 0))
2361 if (POINTER_TYPE_P (TREE_TYPE (elt))
2362 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
2363 == need_type))
987b67bc 2364 return fold_build1 (INDIRECT_REF, need_type, elt);
6fce44af
RK
2365
2366 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
2367 survives until RTL generation, there will be an error. */
2368 return exp;
2369 }
2370
2371 /* TREE_LIST is special because we need to look at TREE_VALUE
2372 and TREE_CHAIN, not TREE_OPERANDS. */
2373 else if (code == TREE_LIST)
2374 {
2375 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
2376 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
2377 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2378 return exp;
2379
2380 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2381 }
2382 else
2383 switch (TREE_CODE_CLASS (code))
2384 {
6615c446
JO
2385 case tcc_constant:
2386 case tcc_declaration:
6fce44af
RK
2387 return exp;
2388
6615c446
JO
2389 case tcc_exceptional:
2390 case tcc_unary:
2391 case tcc_binary:
2392 case tcc_comparison:
2393 case tcc_expression:
2394 case tcc_reference:
2395 case tcc_statement:
54e4aedb 2396 switch (TREE_CODE_LENGTH (code))
6fce44af
RK
2397 {
2398 case 0:
2399 return exp;
2400
2401 case 1:
2402 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2403 if (op0 == TREE_OPERAND (exp, 0))
2404 return exp;
2405 else
987b67bc 2406 return fold_build1 (code, TREE_TYPE (exp), op0);
6fce44af
RK
2407
2408 case 2:
2409 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2410 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2411
2412 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2413 return exp;
2414 else
987b67bc 2415 return fold_build2 (code, TREE_TYPE (exp), op0, op1);
6fce44af
RK
2416
2417 case 3:
2418 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2419 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2420 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
2421
2422 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2423 && op2 == TREE_OPERAND (exp, 2))
2424 return exp;
2425 else
987b67bc 2426 return fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
6fce44af 2427
95df09f0
RK
2428 case 4:
2429 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2430 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2431 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
2432 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
2433
2434 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2435 && op2 == TREE_OPERAND (exp, 2)
2436 && op3 == TREE_OPERAND (exp, 3))
2437 return exp;
2438 else
2439 return fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2440
6fce44af 2441 default:
1e128c5f 2442 gcc_unreachable ();
6fce44af
RK
2443 }
2444 break;
2445
2446 default:
1e128c5f 2447 gcc_unreachable ();
6fce44af
RK
2448 }
2449}
dec20b4b 2450\f
c6a1db6c
RS
2451/* Stabilize a reference so that we can use it any number of times
2452 without causing its operands to be evaluated more than once.
4b1d0fea
RS
2453 Returns the stabilized reference. This works by means of save_expr,
2454 so see the caveats in the comments about save_expr.
c6a1db6c
RS
2455
2456 Also allows conversion expressions whose operands are references.
2457 Any other kind of expression is returned unchanged. */
2458
2459tree
46c5ad27 2460stabilize_reference (tree ref)
c6a1db6c 2461{
b3694847
SS
2462 tree result;
2463 enum tree_code code = TREE_CODE (ref);
c6a1db6c
RS
2464
2465 switch (code)
2466 {
2467 case VAR_DECL:
2468 case PARM_DECL:
2469 case RESULT_DECL:
2470 /* No action is needed in this case. */
2471 return ref;
2472
2473 case NOP_EXPR:
2474 case CONVERT_EXPR:
2475 case FLOAT_EXPR:
2476 case FIX_TRUNC_EXPR:
2477 case FIX_FLOOR_EXPR:
2478 case FIX_ROUND_EXPR:
2479 case FIX_CEIL_EXPR:
2480 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
2481 break;
2482
2483 case INDIRECT_REF:
2484 result = build_nt (INDIRECT_REF,
2485 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
2486 break;
2487
2488 case COMPONENT_REF:
2489 result = build_nt (COMPONENT_REF,
2490 stabilize_reference (TREE_OPERAND (ref, 0)),
44de5aeb 2491 TREE_OPERAND (ref, 1), NULL_TREE);
c6a1db6c
RS
2492 break;
2493
2494 case BIT_FIELD_REF:
2495 result = build_nt (BIT_FIELD_REF,
2496 stabilize_reference (TREE_OPERAND (ref, 0)),
2497 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2498 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
2499 break;
2500
2501 case ARRAY_REF:
2502 result = build_nt (ARRAY_REF,
2503 stabilize_reference (TREE_OPERAND (ref, 0)),
44de5aeb
RK
2504 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2505 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
c6a1db6c
RS
2506 break;
2507
b4e3fabb
RK
2508 case ARRAY_RANGE_REF:
2509 result = build_nt (ARRAY_RANGE_REF,
2510 stabilize_reference (TREE_OPERAND (ref, 0)),
44de5aeb
RK
2511 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2512 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
b4e3fabb
RK
2513 break;
2514
c451a7a0 2515 case COMPOUND_EXPR:
7b8b9722
MS
2516 /* We cannot wrap the first expression in a SAVE_EXPR, as then
2517 it wouldn't be ignored. This matters when dealing with
2518 volatiles. */
2519 return stabilize_reference_1 (ref);
c451a7a0 2520
c6a1db6c
RS
2521 /* If arg isn't a kind of lvalue we recognize, make no change.
2522 Caller should recognize the error for an invalid lvalue. */
2523 default:
2524 return ref;
2525
2526 case ERROR_MARK:
2527 return error_mark_node;
2528 }
2529
2530 TREE_TYPE (result) = TREE_TYPE (ref);
2531 TREE_READONLY (result) = TREE_READONLY (ref);
2532 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
2533 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
c6a1db6c
RS
2534
2535 return result;
2536}
2537
2538/* Subroutine of stabilize_reference; this is called for subtrees of
2539 references. Any expression with side-effects must be put in a SAVE_EXPR
2540 to ensure that it is only evaluated once.
2541
2542 We don't put SAVE_EXPR nodes around everything, because assigning very
2543 simple expressions to temporaries causes us to miss good opportunities
2544 for optimizations. Among other things, the opportunity to fold in the
2545 addition of a constant into an addressing mode often gets lost, e.g.
2546 "y[i+1] += x;". In general, we take the approach that we should not make
2547 an assignment unless we are forced into it - i.e., that any non-side effect
2548 operator should be allowed, and that cse should take care of coalescing
2549 multiple utterances of the same expression should that prove fruitful. */
2550
4745ddae 2551tree
46c5ad27 2552stabilize_reference_1 (tree e)
c6a1db6c 2553{
b3694847
SS
2554 tree result;
2555 enum tree_code code = TREE_CODE (e);
c6a1db6c 2556
af929c62
RK
2557 /* We cannot ignore const expressions because it might be a reference
2558 to a const array but whose index contains side-effects. But we can
2559 ignore things that are actual constant or that already have been
2560 handled by this function. */
2561
6de9cd9a 2562 if (TREE_INVARIANT (e))
c6a1db6c
RS
2563 return e;
2564
2565 switch (TREE_CODE_CLASS (code))
2566 {
6615c446
JO
2567 case tcc_exceptional:
2568 case tcc_type:
2569 case tcc_declaration:
2570 case tcc_comparison:
2571 case tcc_statement:
2572 case tcc_expression:
2573 case tcc_reference:
c6a1db6c
RS
2574 /* If the expression has side-effects, then encase it in a SAVE_EXPR
2575 so that it will only be evaluated once. */
2576 /* The reference (r) and comparison (<) classes could be handled as
2577 below, but it is generally faster to only evaluate them once. */
2578 if (TREE_SIDE_EFFECTS (e))
2579 return save_expr (e);
2580 return e;
2581
6615c446 2582 case tcc_constant:
c6a1db6c
RS
2583 /* Constants need no processing. In fact, we should never reach
2584 here. */
2585 return e;
dc478a5d 2586
6615c446 2587 case tcc_binary:
ae698e41
RS
2588 /* Division is slow and tends to be compiled with jumps,
2589 especially the division by powers of 2 that is often
2590 found inside of an array reference. So do it just once. */
2591 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
2592 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
2593 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
2594 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
2595 return save_expr (e);
c6a1db6c
RS
2596 /* Recursively stabilize each operand. */
2597 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
2598 stabilize_reference_1 (TREE_OPERAND (e, 1)));
2599 break;
2600
6615c446 2601 case tcc_unary:
c6a1db6c
RS
2602 /* Recursively stabilize each operand. */
2603 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
2604 break;
a7fcb968
RK
2605
2606 default:
1e128c5f 2607 gcc_unreachable ();
c6a1db6c 2608 }
dc478a5d 2609
c6a1db6c
RS
2610 TREE_TYPE (result) = TREE_TYPE (e);
2611 TREE_READONLY (result) = TREE_READONLY (e);
2612 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
2613 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
6de9cd9a 2614 TREE_INVARIANT (result) = 1;
c6a1db6c
RS
2615
2616 return result;
2617}
2618\f
2619/* Low-level constructors for expressions. */
2620
44de5aeb
RK
2621/* A helper function for build1 and constant folders. Set TREE_CONSTANT,
2622 TREE_INVARIANT, and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
6de9cd9a
DN
2623
2624void
127203ac 2625recompute_tree_invariant_for_addr_expr (tree t)
6de9cd9a 2626{
44de5aeb
RK
2627 tree node;
2628 bool tc = true, ti = true, se = false;
6de9cd9a 2629
44de5aeb
RK
2630 /* We started out assuming this address is both invariant and constant, but
2631 does not have side effects. Now go down any handled components and see if
2632 any of them involve offsets that are either non-constant or non-invariant.
2633 Also check for side-effects.
2634
2635 ??? Note that this code makes no attempt to deal with the case where
2636 taking the address of something causes a copy due to misalignment. */
2637
2638#define UPDATE_TITCSE(NODE) \
2639do { tree _node = (NODE); \
2640 if (_node && !TREE_INVARIANT (_node)) ti = false; \
2641 if (_node && !TREE_CONSTANT (_node)) tc = false; \
2642 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
2643
2644 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
2645 node = TREE_OPERAND (node, 0))
6de9cd9a 2646 {
44de5aeb
RK
2647 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
2648 array reference (probably made temporarily by the G++ front end),
2649 so ignore all the operands. */
2650 if ((TREE_CODE (node) == ARRAY_REF
2651 || TREE_CODE (node) == ARRAY_RANGE_REF)
2652 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
6de9cd9a 2653 {
44de5aeb 2654 UPDATE_TITCSE (TREE_OPERAND (node, 1));
bc482be4
RH
2655 if (TREE_OPERAND (node, 2))
2656 UPDATE_TITCSE (TREE_OPERAND (node, 2));
2657 if (TREE_OPERAND (node, 3))
2658 UPDATE_TITCSE (TREE_OPERAND (node, 3));
6de9cd9a 2659 }
44de5aeb
RK
2660 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
2661 FIELD_DECL, apparently. The G++ front end can put something else
2662 there, at least temporarily. */
2663 else if (TREE_CODE (node) == COMPONENT_REF
2664 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
bc482be4
RH
2665 {
2666 if (TREE_OPERAND (node, 2))
2667 UPDATE_TITCSE (TREE_OPERAND (node, 2));
2668 }
44de5aeb
RK
2669 else if (TREE_CODE (node) == BIT_FIELD_REF)
2670 UPDATE_TITCSE (TREE_OPERAND (node, 2));
2671 }
9f63daea 2672
73f397d4
JM
2673 node = lang_hooks.expr_to_decl (node, &tc, &ti, &se);
2674
44de5aeb 2675 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
a8afd3ac
RH
2676 the address, since &(*a)->b is a form of addition. If it's a decl, it's
2677 invariant and constant if the decl is static. It's also invariant if it's
2678 a decl in the current function. Taking the address of a volatile variable
2679 is not volatile. If it's a constant, the address is both invariant and
2680 constant. Otherwise it's neither. */
44de5aeb 2681 if (TREE_CODE (node) == INDIRECT_REF)
a8afd3ac 2682 UPDATE_TITCSE (TREE_OPERAND (node, 0));
44de5aeb
RK
2683 else if (DECL_P (node))
2684 {
5377d5ba
RK
2685 if (staticp (node))
2686 ;
4033a1f2
AH
2687 else if (decl_function_context (node) == current_function_decl
2688 /* Addresses of thread-local variables are invariant. */
c2f7fa15
SB
2689 || (TREE_CODE (node) == VAR_DECL
2690 && DECL_THREAD_LOCAL_P (node)))
44de5aeb 2691 tc = false;
5377d5ba
RK
2692 else
2693 ti = tc = false;
44de5aeb 2694 }
6615c446 2695 else if (CONSTANT_CLASS_P (node))
44de5aeb
RK
2696 ;
2697 else
2698 {
2699 ti = tc = false;
2700 se |= TREE_SIDE_EFFECTS (node);
6de9cd9a
DN
2701 }
2702
2703 TREE_CONSTANT (t) = tc;
2704 TREE_INVARIANT (t) = ti;
44de5aeb
RK
2705 TREE_SIDE_EFFECTS (t) = se;
2706#undef UPDATE_TITCSE
6de9cd9a
DN
2707}
2708
4221057e
RH
2709/* Build an expression of code CODE, data type TYPE, and operands as
2710 specified. Expressions and reference nodes can be created this way.
2711 Constants, decls, types and misc nodes cannot be.
2712
2713 We define 5 non-variadic functions, from 0 to 4 arguments. This is
d82dd39a 2714 enough for all extant tree codes. */
c6a1db6c
RS
2715
2716tree
b9dcdee4 2717build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
c6a1db6c 2718{
b3694847 2719 tree t;
c6a1db6c 2720
1e128c5f 2721 gcc_assert (TREE_CODE_LENGTH (code) == 0);
ba63ed56 2722
b9dcdee4 2723 t = make_node_stat (code PASS_MEM_STAT);
ba63ed56 2724 TREE_TYPE (t) = tt;
c6a1db6c 2725
c6a1db6c
RS
2726 return t;
2727}
2728
c6a1db6c 2729tree
b9dcdee4 2730build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
c6a1db6c 2731{
9ec22713 2732 int length = sizeof (struct tree_exp);
5e9defae 2733#ifdef GATHER_STATISTICS
b3694847 2734 tree_node_kind kind;
5e9defae 2735#endif
b3694847 2736 tree t;
c6a1db6c
RS
2737
2738#ifdef GATHER_STATISTICS
9ec22713
JM
2739 switch (TREE_CODE_CLASS (code))
2740 {
6615c446 2741 case tcc_statement: /* an expression with side effects */
9ec22713
JM
2742 kind = s_kind;
2743 break;
6615c446 2744 case tcc_reference: /* a reference */
9ec22713
JM
2745 kind = r_kind;
2746 break;
2747 default:
2748 kind = e_kind;
2749 break;
2750 }
2751
2752 tree_node_counts[(int) kind]++;
2753 tree_node_sizes[(int) kind] += length;
c6a1db6c
RS
2754#endif
2755
1e128c5f 2756 gcc_assert (TREE_CODE_LENGTH (code) == 1);
3af4c257 2757
a6e4d85b 2758 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
f8a83ee3 2759
fad205ff 2760 memset (t, 0, sizeof (struct tree_common));
c6a1db6c 2761
c6a1db6c 2762 TREE_SET_CODE (t, code);
235783d1 2763
f8a83ee3 2764 TREE_TYPE (t) = type;
c1667470
PB
2765#ifdef USE_MAPPED_LOCATION
2766 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
2767#else
6de9cd9a 2768 SET_EXPR_LOCUS (t, NULL);
c1667470 2769#endif
f8a83ee3 2770 TREE_COMPLEXITY (t) = 0;
c6a1db6c 2771 TREE_OPERAND (t, 0) = node;
6de9cd9a 2772 TREE_BLOCK (t) = NULL_TREE;
ac1b13f4 2773 if (node && !TYPE_P (node))
235783d1
RK
2774 {
2775 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
2776 TREE_READONLY (t) = TREE_READONLY (node);
2777 }
c6a1db6c 2778
6615c446 2779 if (TREE_CODE_CLASS (code) == tcc_statement)
4f7c4327 2780 TREE_SIDE_EFFECTS (t) = 1;
9ec22713 2781 else switch (code)
1fef02f6 2782 {
1fef02f6 2783 case VA_ARG_EXPR:
1fef02f6
RH
2784 /* All of these have side-effects, no matter what their
2785 operands are. */
2786 TREE_SIDE_EFFECTS (t) = 1;
235783d1 2787 TREE_READONLY (t) = 0;
1fef02f6 2788 break;
f893c16e 2789
7ccf35ed
DN
2790 case MISALIGNED_INDIRECT_REF:
2791 case ALIGN_INDIRECT_REF:
f893c16e
JM
2792 case INDIRECT_REF:
2793 /* Whether a dereference is readonly has nothing to do with whether
2794 its operand is readonly. */
2795 TREE_READONLY (t) = 0;
2796 break;
dc478a5d 2797
2038bd69
JM
2798 case ADDR_EXPR:
2799 if (node)
127203ac 2800 recompute_tree_invariant_for_addr_expr (t);
2038bd69
JM
2801 break;
2802
1fef02f6 2803 default:
6615c446
JO
2804 if (TREE_CODE_CLASS (code) == tcc_unary
2805 && node && !TYPE_P (node)
4f976745 2806 && TREE_CONSTANT (node))
1796dff4 2807 TREE_CONSTANT (t) = 1;
6615c446
JO
2808 if (TREE_CODE_CLASS (code) == tcc_unary
2809 && node && TREE_INVARIANT (node))
6de9cd9a 2810 TREE_INVARIANT (t) = 1;
6615c446
JO
2811 if (TREE_CODE_CLASS (code) == tcc_reference
2812 && node && TREE_THIS_VOLATILE (node))
497be978 2813 TREE_THIS_VOLATILE (t) = 1;
1fef02f6
RH
2814 break;
2815 }
2816
c6a1db6c
RS
2817 return t;
2818}
2819
4221057e
RH
2820#define PROCESS_ARG(N) \
2821 do { \
2822 TREE_OPERAND (t, N) = arg##N; \
ac1b13f4 2823 if (arg##N &&!TYPE_P (arg##N)) \
4221057e
RH
2824 { \
2825 if (TREE_SIDE_EFFECTS (arg##N)) \
2826 side_effects = 1; \
2827 if (!TREE_READONLY (arg##N)) \
2828 read_only = 0; \
2829 if (!TREE_CONSTANT (arg##N)) \
2830 constant = 0; \
6de9cd9a
DN
2831 if (!TREE_INVARIANT (arg##N)) \
2832 invariant = 0; \
4221057e
RH
2833 } \
2834 } while (0)
2835
2836tree
b9dcdee4 2837build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4221057e 2838{
6de9cd9a 2839 bool constant, read_only, side_effects, invariant;
4221057e 2840 tree t;
4221057e 2841
1e128c5f 2842 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4221057e 2843
b9dcdee4 2844 t = make_node_stat (code PASS_MEM_STAT);
4221057e
RH
2845 TREE_TYPE (t) = tt;
2846
2847 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
2848 result based on those same flags for the arguments. But if the
2849 arguments aren't really even `tree' expressions, we shouldn't be trying
2850 to do this. */
4221057e
RH
2851
2852 /* Expressions without side effects may be constant if their
2853 arguments are as well. */
6615c446
JO
2854 constant = (TREE_CODE_CLASS (code) == tcc_comparison
2855 || TREE_CODE_CLASS (code) == tcc_binary);
4221057e
RH
2856 read_only = 1;
2857 side_effects = TREE_SIDE_EFFECTS (t);
6de9cd9a 2858 invariant = constant;
4221057e
RH
2859
2860 PROCESS_ARG(0);
2861 PROCESS_ARG(1);
2862
4221057e
RH
2863 TREE_READONLY (t) = read_only;
2864 TREE_CONSTANT (t) = constant;
6de9cd9a 2865 TREE_INVARIANT (t) = invariant;
9f63daea 2866 TREE_SIDE_EFFECTS (t) = side_effects;
44de5aeb 2867 TREE_THIS_VOLATILE (t)
6615c446
JO
2868 = (TREE_CODE_CLASS (code) == tcc_reference
2869 && arg0 && TREE_THIS_VOLATILE (arg0));
4221057e
RH
2870
2871 return t;
2872}
2873
2874tree
b9dcdee4
JH
2875build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
2876 tree arg2 MEM_STAT_DECL)
4221057e 2877{
6de9cd9a 2878 bool constant, read_only, side_effects, invariant;
4221057e 2879 tree t;
4221057e 2880
1e128c5f 2881 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4221057e 2882
b9dcdee4 2883 t = make_node_stat (code PASS_MEM_STAT);
4221057e
RH
2884 TREE_TYPE (t) = tt;
2885
4221057e
RH
2886 side_effects = TREE_SIDE_EFFECTS (t);
2887
2888 PROCESS_ARG(0);
2889 PROCESS_ARG(1);
2890 PROCESS_ARG(2);
2891
6de9cd9a
DN
2892 if (code == CALL_EXPR && !side_effects)
2893 {
2894 tree node;
2895 int i;
2896
2897 /* Calls have side-effects, except those to const or
2898 pure functions. */
2899 i = call_expr_flags (t);
2900 if (!(i & (ECF_CONST | ECF_PURE)))
2901 side_effects = 1;
2902
2903 /* And even those have side-effects if their arguments do. */
2904 else for (node = arg1; node; node = TREE_CHAIN (node))
2905 if (TREE_SIDE_EFFECTS (TREE_VALUE (node)))
2906 {
2907 side_effects = 1;
2908 break;
2909 }
2910 }
2911
9f63daea 2912 TREE_SIDE_EFFECTS (t) = side_effects;
44de5aeb 2913 TREE_THIS_VOLATILE (t)
6615c446
JO
2914 = (TREE_CODE_CLASS (code) == tcc_reference
2915 && arg0 && TREE_THIS_VOLATILE (arg0));
4221057e
RH
2916
2917 return t;
2918}
2919
2920tree
b9dcdee4
JH
2921build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
2922 tree arg2, tree arg3 MEM_STAT_DECL)
4221057e 2923{
6de9cd9a 2924 bool constant, read_only, side_effects, invariant;
4221057e 2925 tree t;
4221057e 2926
1e128c5f 2927 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4221057e 2928
b9dcdee4 2929 t = make_node_stat (code PASS_MEM_STAT);
4221057e
RH
2930 TREE_TYPE (t) = tt;
2931
4221057e
RH
2932 side_effects = TREE_SIDE_EFFECTS (t);
2933
2934 PROCESS_ARG(0);
2935 PROCESS_ARG(1);
2936 PROCESS_ARG(2);
2937 PROCESS_ARG(3);
2938
9f63daea 2939 TREE_SIDE_EFFECTS (t) = side_effects;
44de5aeb 2940 TREE_THIS_VOLATILE (t)
6615c446
JO
2941 = (TREE_CODE_CLASS (code) == tcc_reference
2942 && arg0 && TREE_THIS_VOLATILE (arg0));
4221057e
RH
2943
2944 return t;
2945}
2946
ac182688
ZD
2947tree
2948build7_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
2949 tree arg2, tree arg3, tree arg4, tree arg5,
2950 tree arg6 MEM_STAT_DECL)
2951{
2952 bool constant, read_only, side_effects, invariant;
2953 tree t;
2954
2955 gcc_assert (code == TARGET_MEM_REF);
2956
2957 t = make_node_stat (code PASS_MEM_STAT);
2958 TREE_TYPE (t) = tt;
2959
2960 side_effects = TREE_SIDE_EFFECTS (t);
2961
2962 PROCESS_ARG(0);
2963 PROCESS_ARG(1);
2964 PROCESS_ARG(2);
2965 PROCESS_ARG(3);
2966 PROCESS_ARG(4);
2967 PROCESS_ARG(5);
2968 PROCESS_ARG(6);
2969
2970 TREE_SIDE_EFFECTS (t) = side_effects;
2971 TREE_THIS_VOLATILE (t) = 0;
2972
2973 return t;
2974}
2975
c6a1db6c
RS
2976/* Similar except don't specify the TREE_TYPE
2977 and leave the TREE_SIDE_EFFECTS as 0.
2978 It is permissible for arguments to be null,
2979 or even garbage if their values do not matter. */
2980
2981tree
e34d07f2 2982build_nt (enum tree_code code, ...)
c6a1db6c 2983{
b3694847
SS
2984 tree t;
2985 int length;
2986 int i;
e34d07f2 2987 va_list p;
c6a1db6c 2988
e34d07f2 2989 va_start (p, code);
ba63ed56 2990
c6a1db6c 2991 t = make_node (code);
8d5e6e25 2992 length = TREE_CODE_LENGTH (code);
c6a1db6c
RS
2993
2994 for (i = 0; i < length; i++)
2995 TREE_OPERAND (t, i) = va_arg (p, tree);
2996
e34d07f2 2997 va_end (p);
c6a1db6c
RS
2998 return t;
2999}
c6a1db6c
RS
3000\f
3001/* Create a DECL_... node of code CODE, name NAME and data type TYPE.
3002 We do NOT enter this node in any sort of symbol table.
3003
3004 layout_decl is used to set up the decl's storage layout.
3005 Other slots are initialized to 0 or null pointers. */
3006
3007tree
b9dcdee4 3008build_decl_stat (enum tree_code code, tree name, tree type MEM_STAT_DECL)
c6a1db6c 3009{
b3694847 3010 tree t;
c6a1db6c 3011
b9dcdee4 3012 t = make_node_stat (code PASS_MEM_STAT);
c6a1db6c
RS
3013
3014/* if (type == error_mark_node)
3015 type = integer_type_node; */
3016/* That is not done, deliberately, so that having error_mark_node
3017 as the type can suppress useless errors in the use of this variable. */
3018
3019 DECL_NAME (t) = name;
c6a1db6c
RS
3020 TREE_TYPE (t) = type;
3021
3022 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
3023 layout_decl (t, 0);
3024 else if (code == FUNCTION_DECL)
3025 DECL_MODE (t) = FUNCTION_MODE;
9f63daea 3026
820cc88f
DB
3027 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
3028 {
3029 /* Set default visibility to whatever the user supplied with
3030 visibility_specified depending on #pragma GCC visibility. */
3031 DECL_VISIBILITY (t) = default_visibility;
3032 DECL_VISIBILITY_SPECIFIED (t) = visibility_options.inpragma;
3033 }
c6a1db6c
RS
3034
3035 return t;
3036}
9885da8e
ZD
3037
3038/* Builds and returns function declaration with NAME and TYPE. */
3039
3040tree
3041build_fn_decl (const char *name, tree type)
3042{
3043 tree id = get_identifier (name);
3044 tree decl = build_decl (FUNCTION_DECL, id, type);
3045
3046 DECL_EXTERNAL (decl) = 1;
3047 TREE_PUBLIC (decl) = 1;
3048 DECL_ARTIFICIAL (decl) = 1;
3049 TREE_NOTHROW (decl) = 1;
3050
3051 return decl;
3052}
3053
c6a1db6c
RS
3054\f
3055/* BLOCK nodes are used to represent the structure of binding contours
3056 and declarations, once those contours have been exited and their contents
52d2830e 3057 compiled. This information is used for outputting debugging info. */
c6a1db6c
RS
3058
3059tree
22e8617b 3060build_block (tree vars, tree subblocks, tree supercontext, tree chain)
c6a1db6c 3061{
b3694847 3062 tree block = make_node (BLOCK);
d4b60170 3063
c6a1db6c 3064 BLOCK_VARS (block) = vars;
c6a1db6c
RS
3065 BLOCK_SUBBLOCKS (block) = subblocks;
3066 BLOCK_SUPERCONTEXT (block) = supercontext;
3067 BLOCK_CHAIN (block) = chain;
3068 return block;
3069}
bf1e5319 3070
c1667470
PB
3071#if 1 /* ! defined(USE_MAPPED_LOCATION) */
3072/* ??? gengtype doesn't handle conditionals */
b4ceda13 3073static GTY(()) location_t *last_annotated_node;
c1667470
PB
3074#endif
3075
3076#ifdef USE_MAPPED_LOCATION
3077
3078expanded_location
3079expand_location (source_location loc)
3080{
3081 expanded_location xloc;
aa3c6dc1 3082 if (loc == 0) { xloc.file = NULL; xloc.line = 0; xloc.column = 0; }
c1667470
PB
3083 else
3084 {
3085 const struct line_map *map = linemap_lookup (&line_table, loc);
3086 xloc.file = map->to_file;
3087 xloc.line = SOURCE_LINE (map, loc);
aa3c6dc1 3088 xloc.column = SOURCE_COLUMN (map, loc);
c1667470
PB
3089 };
3090 return xloc;
3091}
3092
3093#else
bf1e5319 3094
6de9cd9a
DN
3095/* Record the exact location where an expression or an identifier were
3096 encountered. */
9fe9a2e1 3097
6de9cd9a
DN
3098void
3099annotate_with_file_line (tree node, const char *file, int line)
3100{
3101 /* Roughly one percent of the calls to this function are to annotate
3102 a node with the same information already attached to that node!
3103 Just return instead of wasting memory. */
3104 if (EXPR_LOCUS (node)
282c3fdc 3105 && EXPR_LINENO (node) == line
6de9cd9a 3106 && (EXPR_FILENAME (node) == file
282c3fdc 3107 || !strcmp (EXPR_FILENAME (node), file)))
9fe9a2e1 3108 {
b4ceda13 3109 last_annotated_node = EXPR_LOCUS (node);
6de9cd9a 3110 return;
9fe9a2e1 3111 }
d4b60170 3112
6de9cd9a
DN
3113 /* In heavily macroized code (such as GCC itself) this single
3114 entry cache can reduce the number of allocations by more
3115 than half. */
3116 if (last_annotated_node
44d25172 3117 && last_annotated_node->line == line
b4ceda13
AP
3118 && (last_annotated_node->file == file
3119 || !strcmp (last_annotated_node->file, file)))
9fe9a2e1 3120 {
b4ceda13 3121 SET_EXPR_LOCUS (node, last_annotated_node);
6de9cd9a 3122 return;
9fe9a2e1 3123 }
d4b60170 3124
6de9cd9a
DN
3125 SET_EXPR_LOCUS (node, ggc_alloc (sizeof (location_t)));
3126 EXPR_LINENO (node) = line;
3127 EXPR_FILENAME (node) = file;
b4ceda13 3128 last_annotated_node = EXPR_LOCUS (node);
6de9cd9a
DN
3129}
3130
3131void
3132annotate_with_locus (tree node, location_t locus)
3133{
3134 annotate_with_file_line (node, locus.file, locus.line);
bf1e5319 3135}
c1667470 3136#endif
c6a1db6c 3137\f
91d231cb 3138/* Return a declaration like DDECL except that its DECL_ATTRIBUTES
0f41302f 3139 is ATTRIBUTE. */
1a2927d2
RK
3140
3141tree
46c5ad27 3142build_decl_attribute_variant (tree ddecl, tree attribute)
1a2927d2 3143{
91d231cb 3144 DECL_ATTRIBUTES (ddecl) = attribute;
1a2927d2
RK
3145 return ddecl;
3146}
3147
caf29de7
JH
3148/* Borrowed from hashtab.c iterative_hash implementation. */
3149#define mix(a,b,c) \
3150{ \
3151 a -= b; a -= c; a ^= (c>>13); \
3152 b -= c; b -= a; b ^= (a<< 8); \
3153 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
3154 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
3155 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
3156 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
3157 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
3158 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
3159 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
3160}
3161
3162
3163/* Produce good hash value combining VAL and VAL2. */
3164static inline hashval_t
3165iterative_hash_hashval_t (hashval_t val, hashval_t val2)
3166{
3167 /* the golden ratio; an arbitrary value. */
3168 hashval_t a = 0x9e3779b9;
3169
3170 mix (a, val, val2);
3171 return val2;
3172}
3173
3174/* Produce good hash value combining PTR and VAL2. */
3175static inline hashval_t
3176iterative_hash_pointer (void *ptr, hashval_t val2)
3177{
3178 if (sizeof (ptr) == sizeof (hashval_t))
3179 return iterative_hash_hashval_t ((size_t) ptr, val2);
3180 else
3181 {
3182 hashval_t a = (hashval_t) (size_t) ptr;
3183 /* Avoid warnings about shifting of more than the width of the type on
3184 hosts that won't execute this path. */
3185 int zero = 0;
3186 hashval_t b = (hashval_t) ((size_t) ptr >> (sizeof (hashval_t) * 8 + zero));
3187 mix (a, b, val2);
3188 return val2;
3189 }
3190}
3191
3192/* Produce good hash value combining VAL and VAL2. */
3193static inline hashval_t
3194iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
3195{
3196 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
3197 return iterative_hash_hashval_t (val, val2);
3198 else
3199 {
3200 hashval_t a = (hashval_t) val;
3201 /* Avoid warnings about shifting of more than the width of the type on
3202 hosts that won't execute this path. */
3203 int zero = 0;
3204 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
3205 mix (a, b, val2);
3206 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
3207 {
3208 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
3209 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
3210 mix (a, b, val2);
3211 }
3212 return val2;
3213 }
3214}
3215
91e97eb8
RK
3216/* Return a type like TTYPE except that its TYPE_ATTRIBUTE
3217 is ATTRIBUTE.
3218
f8a89236 3219 Record such modified types already made so we don't make duplicates. */
91e97eb8
RK
3220
3221tree
46c5ad27 3222build_type_attribute_variant (tree ttype, tree attribute)
91e97eb8 3223{
3b03c671 3224 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
91e97eb8 3225 {
fd917e0d 3226 hashval_t hashcode = 0;
91e97eb8 3227 tree ntype;
fd917e0d 3228 enum tree_code code = TREE_CODE (ttype);
91e97eb8 3229
91e97eb8 3230 ntype = copy_node (ttype);
91e97eb8
RK
3231
3232 TYPE_POINTER_TO (ntype) = 0;
3233 TYPE_REFERENCE_TO (ntype) = 0;
3234 TYPE_ATTRIBUTES (ntype) = attribute;
3235
3236 /* Create a new main variant of TYPE. */
3237 TYPE_MAIN_VARIANT (ntype) = ntype;
3238 TYPE_NEXT_VARIANT (ntype) = 0;
3932261a 3239 set_type_quals (ntype, TYPE_UNQUALIFIED);
91e97eb8 3240
fd917e0d
JM
3241 hashcode = iterative_hash_object (code, hashcode);
3242 if (TREE_TYPE (ntype))
3243 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
3244 hashcode);
3245 hashcode = attribute_hash_list (attribute, hashcode);
91e97eb8
RK
3246
3247 switch (TREE_CODE (ntype))
dc478a5d 3248 {
e9a25f70 3249 case FUNCTION_TYPE:
fd917e0d 3250 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
e9a25f70
JL
3251 break;
3252 case ARRAY_TYPE:
fd917e0d
JM
3253 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
3254 hashcode);
e9a25f70
JL
3255 break;
3256 case INTEGER_TYPE:
fd917e0d
JM
3257 hashcode = iterative_hash_object
3258 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
3259 hashcode = iterative_hash_object
3260 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
e9a25f70
JL
3261 break;
3262 case REAL_TYPE:
fd917e0d
JM
3263 {
3264 unsigned int precision = TYPE_PRECISION (ntype);
3265 hashcode = iterative_hash_object (precision, hashcode);
3266 }
e9a25f70
JL
3267 break;
3268 default:
3269 break;
dc478a5d 3270 }
91e97eb8
RK
3271
3272 ntype = type_hash_canon (hashcode, ntype);
3932261a 3273 ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
91e97eb8
RK
3274 }
3275
3276 return ttype;
3277}
1a2927d2 3278
e5410ba7 3279
0e9e1e0a 3280/* Return nonzero if IDENT is a valid name for attribute ATTR,
2a3c15b5
DE
3281 or zero if not.
3282
3283 We try both `text' and `__text__', ATTR may be either one. */
3284/* ??? It might be a reasonable simplification to require ATTR to be only
3285 `text'. One might then also require attribute lists to be stored in
3286 their canonicalized form. */
3287
e5410ba7
AP
3288static int
3289is_attribute_with_length_p (const char *attr, int attr_len, tree ident)
2a3c15b5 3290{
e5410ba7 3291 int ident_len;
63ad61ed 3292 const char *p;
2a3c15b5
DE
3293
3294 if (TREE_CODE (ident) != IDENTIFIER_NODE)
3295 return 0;
e5410ba7 3296
2a3c15b5 3297 p = IDENTIFIER_POINTER (ident);
e5410ba7
AP
3298 ident_len = IDENTIFIER_LENGTH (ident);
3299
3300 if (ident_len == attr_len
3301 && strcmp (attr, p) == 0)
3302 return 1;
2a3c15b5
DE
3303
3304 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
3305 if (attr[0] == '_')
3306 {
1e128c5f
GB
3307 gcc_assert (attr[1] == '_');
3308 gcc_assert (attr[attr_len - 2] == '_');
3309 gcc_assert (attr[attr_len - 1] == '_');
3310 gcc_assert (attr[1] == '_');
2a3c15b5
DE
3311 if (ident_len == attr_len - 4
3312 && strncmp (attr + 2, p, attr_len - 4) == 0)
3313 return 1;
3314 }
3315 else
3316 {
3317 if (ident_len == attr_len + 4
3318 && p[0] == '_' && p[1] == '_'
3319 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
3320 && strncmp (attr, p + 2, attr_len) == 0)
3321 return 1;
3322 }
3323
3324 return 0;
3325}
3326
e5410ba7
AP
3327/* Return nonzero if IDENT is a valid name for attribute ATTR,
3328 or zero if not.
3329
3330 We try both `text' and `__text__', ATTR may be either one. */
3331
3332int
3333is_attribute_p (const char *attr, tree ident)
3334{
3335 return is_attribute_with_length_p (attr, strlen (attr), ident);
3336}
3337
2a3c15b5
DE
3338/* Given an attribute name and a list of attributes, return a pointer to the
3339 attribute's list element if the attribute is part of the list, or NULL_TREE
91d231cb 3340 if not found. If the attribute appears more than once, this only
ff7cc307
JM
3341 returns the first occurrence; the TREE_CHAIN of the return value should
3342 be passed back in if further occurrences are wanted. */
2a3c15b5
DE
3343
3344tree
46c5ad27 3345lookup_attribute (const char *attr_name, tree list)
2a3c15b5
DE
3346{
3347 tree l;
e5410ba7 3348 size_t attr_len = strlen (attr_name);
2a3c15b5
DE
3349
3350 for (l = list; l; l = TREE_CHAIN (l))
3351 {
1e128c5f 3352 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
e5410ba7 3353 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
2a3c15b5
DE
3354 return l;
3355 }
3356
3357 return NULL_TREE;
3358}
f3209e2f
DE
3359
3360/* Return an attribute list that is the union of a1 and a2. */
3361
3362tree
46c5ad27 3363merge_attributes (tree a1, tree a2)
f3209e2f
DE
3364{
3365 tree attributes;
3366
3367 /* Either one unset? Take the set one. */
3368
d4b60170 3369 if ((attributes = a1) == 0)
f3209e2f
DE
3370 attributes = a2;
3371
3372 /* One that completely contains the other? Take it. */
3373
d4b60170 3374 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
dc478a5d
KH
3375 {
3376 if (attribute_list_contained (a2, a1))
3377 attributes = a2;
3378 else
3379 {
3380 /* Pick the longest list, and hang on the other list. */
dc478a5d
KH
3381
3382 if (list_length (a1) < list_length (a2))
3383 attributes = a2, a2 = a1;
3384
3385 for (; a2 != 0; a2 = TREE_CHAIN (a2))
91d231cb
JM
3386 {
3387 tree a;
3388 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3389 attributes);
3390 a != NULL_TREE;
3391 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3392 TREE_CHAIN (a)))
3393 {
3394 if (simple_cst_equal (TREE_VALUE (a), TREE_VALUE (a2)) == 1)
3395 break;
3396 }
3397 if (a == NULL_TREE)
3398 {
3399 a1 = copy_node (a2);
3400 TREE_CHAIN (a1) = attributes;
3401 attributes = a1;
3402 }
3403 }
dc478a5d
KH
3404 }
3405 }
f3209e2f
DE
3406 return attributes;
3407}
d9525bec
BK
3408
3409/* Given types T1 and T2, merge their attributes and return
672a6f42 3410 the result. */
d9525bec
BK
3411
3412tree
46c5ad27 3413merge_type_attributes (tree t1, tree t2)
d9525bec 3414{
d9525bec
BK
3415 return merge_attributes (TYPE_ATTRIBUTES (t1),
3416 TYPE_ATTRIBUTES (t2));
d9525bec
BK
3417}
3418
3419/* Given decls OLDDECL and NEWDECL, merge their attributes and return
3420 the result. */
3421
3422tree
46c5ad27 3423merge_decl_attributes (tree olddecl, tree newdecl)
d9525bec 3424{
91d231cb
JM
3425 return merge_attributes (DECL_ATTRIBUTES (olddecl),
3426 DECL_ATTRIBUTES (newdecl));
d9525bec 3427}
672a6f42 3428
b2ca3702 3429#if TARGET_DLLIMPORT_DECL_ATTRIBUTES
672a6f42
NB
3430
3431/* Specialization of merge_decl_attributes for various Windows targets.
3432
3433 This handles the following situation:
3434
3435 __declspec (dllimport) int foo;
3436 int foo;
3437
3438 The second instance of `foo' nullifies the dllimport. */
3439
3440tree
46c5ad27 3441merge_dllimport_decl_attributes (tree old, tree new)
672a6f42
NB
3442{
3443 tree a;
43d9ad1d 3444 int delete_dllimport_p = 1;
672a6f42
NB
3445
3446 /* What we need to do here is remove from `old' dllimport if it doesn't
3447 appear in `new'. dllimport behaves like extern: if a declaration is
3448 marked dllimport and a definition appears later, then the object
43d9ad1d
DS
3449 is not dllimport'd. We also remove a `new' dllimport if the old list
3450 contains dllexport: dllexport always overrides dllimport, regardless
3451 of the order of declaration. */
3452 if (!VAR_OR_FUNCTION_DECL_P (new))
3453 delete_dllimport_p = 0;
3454 else if (DECL_DLLIMPORT_P (new)
3455 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
3456 {
3457 DECL_DLLIMPORT_P (new) = 0;
3458 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
3459 "dllimport ignored", new);
3460 }
3461 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new))
3462 {
3463 /* Warn about overriding a symbol that has already been used. eg:
3464 extern int __attribute__ ((dllimport)) foo;
3465 int* bar () {return &foo;}
3466 int foo;
3467 */
3468 if (TREE_USED (old))
3469 {
3470 warning (0, "%q+D redeclared without dllimport attribute "
3471 "after being referenced with dll linkage", new);
3472 /* If we have used a variable's address with dllimport linkage,
3473 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
3474 decl may already have had TREE_INVARIANT and TREE_CONSTANT
3475 computed.
3476 We still remove the attribute so that assembler code refers
3477 to '&foo rather than '_imp__foo'. */
3478 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
3479 DECL_DLLIMPORT_P (new) = 1;
3480 }
3481
3482 /* Let an inline definition silently override the external reference,
3483 but otherwise warn about attribute inconsistency. */
3484 else if (TREE_CODE (new) == VAR_DECL
3485 || !DECL_DECLARED_INLINE_P (new))
3486 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
3487 "previous dllimport ignored", new);
3488 }
672a6f42
NB
3489 else
3490 delete_dllimport_p = 0;
3491
43d9ad1d 3492 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new));
672a6f42 3493
43d9ad1d 3494 if (delete_dllimport_p)
672a6f42 3495 {
a01da83b 3496 tree prev, t;
43d9ad1d
DS
3497 const size_t attr_len = strlen ("dllimport");
3498
672a6f42
NB
3499 /* Scan the list for dllimport and delete it. */
3500 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
3501 {
43d9ad1d
DS
3502 if (is_attribute_with_length_p ("dllimport", attr_len,
3503 TREE_PURPOSE (t)))
672a6f42
NB
3504 {
3505 if (prev == NULL_TREE)
3506 a = TREE_CHAIN (a);
3507 else
3508 TREE_CHAIN (prev) = TREE_CHAIN (t);
3509 break;
3510 }
3511 }
3512 }
3513
3514 return a;
3515}
3516
b2ca3702
MM
3517/* Handle a "dllimport" or "dllexport" attribute; arguments as in
3518 struct attribute_spec.handler. */
3519
3520tree
3521handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
3522 bool *no_add_attrs)
3523{
3524 tree node = *pnode;
3525
3526 /* These attributes may apply to structure and union types being created,
3527 but otherwise should pass to the declaration involved. */
3528 if (!DECL_P (node))
3529 {
3530 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
3531 | (int) ATTR_FLAG_ARRAY_NEXT))
3532 {
3533 *no_add_attrs = true;
3534 return tree_cons (name, args, NULL_TREE);
3535 }
3536 if (TREE_CODE (node) != RECORD_TYPE && TREE_CODE (node) != UNION_TYPE)
3537 {
5c498b10
DD
3538 warning (OPT_Wattributes, "%qs attribute ignored",
3539 IDENTIFIER_POINTER (name));
b2ca3702
MM
3540 *no_add_attrs = true;
3541 }
3542
3543 return NULL_TREE;
3544 }
3545
3546 /* Report error on dllimport ambiguities seen now before they cause
3547 any damage. */
3548 if (is_attribute_p ("dllimport", name))
3549 {
c83eecad 3550 /* Honor any target-specific overrides. */
43d9ad1d
DS
3551 if (!targetm.valid_dllimport_attribute_p (node))
3552 *no_add_attrs = true;
3553
3554 else if (TREE_CODE (node) == FUNCTION_DECL
3555 && DECL_DECLARED_INLINE_P (node))
3556 {
3557 warning (OPT_Wattributes, "inline function %q+D declared as "
3558 " dllimport: attribute ignored", node);
3559 *no_add_attrs = true;
3560 }
b2ca3702 3561 /* Like MS, treat definition of dllimported variables and
43d9ad1d
DS
3562 non-inlined functions on declaration as syntax errors. */
3563 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
b2ca3702 3564 {
c85ce869 3565 error ("function %q+D definition is marked dllimport", node);
b2ca3702
MM
3566 *no_add_attrs = true;
3567 }
3568
43d9ad1d 3569 else if (TREE_CODE (node) == VAR_DECL)
b2ca3702
MM
3570 {
3571 if (DECL_INITIAL (node))
3572 {
c85ce869 3573 error ("variable %q+D definition is marked dllimport",
dee15844 3574 node);
b2ca3702
MM
3575 *no_add_attrs = true;
3576 }
3577
3578 /* `extern' needn't be specified with dllimport.
3579 Specify `extern' now and hope for the best. Sigh. */
3580 DECL_EXTERNAL (node) = 1;
3581 /* Also, implicitly give dllimport'd variables declared within
3582 a function global scope, unless declared static. */
3583 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
3584 TREE_PUBLIC (node) = 1;
3585 }
43d9ad1d
DS
3586
3587 if (*no_add_attrs == false)
3588 DECL_DLLIMPORT_P (node) = 1;
b2ca3702
MM
3589 }
3590
3591 /* Report error if symbol is not accessible at global scope. */
3592 if (!TREE_PUBLIC (node)
3593 && (TREE_CODE (node) == VAR_DECL
3594 || TREE_CODE (node) == FUNCTION_DECL))
3595 {
dee15844 3596 error ("external linkage required for symbol %q+D because of "
c85ce869 3597 "%qs attribute", node, IDENTIFIER_POINTER (name));
b2ca3702
MM
3598 *no_add_attrs = true;
3599 }
3600
3601 return NULL_TREE;
3602}
3603
672a6f42 3604#endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
91e97eb8 3605\f
3932261a
MM
3606/* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
3607 of the various TYPE_QUAL values. */
c6a1db6c 3608
3932261a 3609static void
46c5ad27 3610set_type_quals (tree type, int type_quals)
3932261a
MM
3611{
3612 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
3613 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
3614 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
3615}
c6a1db6c 3616
896c3aa3
JM
3617/* Returns true iff cand is equivalent to base with type_quals. */
3618
3619bool
3620check_qualified_type (tree cand, tree base, int type_quals)
3621{
3622 return (TYPE_QUALS (cand) == type_quals
3623 && TYPE_NAME (cand) == TYPE_NAME (base)
3624 /* Apparently this is needed for Objective-C. */
3625 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
3626 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
3627 TYPE_ATTRIBUTES (base)));
3628}
3629
5101b304
MM
3630/* Return a version of the TYPE, qualified as indicated by the
3631 TYPE_QUALS, if one exists. If no qualified version exists yet,
3632 return NULL_TREE. */
c6a1db6c
RS
3633
3634tree
46c5ad27 3635get_qualified_type (tree type, int type_quals)
c6a1db6c 3636{
5101b304 3637 tree t;
dc478a5d 3638
896c3aa3
JM
3639 if (TYPE_QUALS (type) == type_quals)
3640 return type;
3641
e24fa534
JW
3642 /* Search the chain of variants to see if there is already one there just
3643 like the one we need to have. If so, use that existing one. We must
3644 preserve the TYPE_NAME, since there is code that depends on this. */
b217d7fe 3645 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
896c3aa3 3646 if (check_qualified_type (t, type, type_quals))
e24fa534 3647 return t;
c6a1db6c 3648
5101b304
MM
3649 return NULL_TREE;
3650}
3651
3652/* Like get_qualified_type, but creates the type if it does not
3653 exist. This function never returns NULL_TREE. */
3654
3655tree
46c5ad27 3656build_qualified_type (tree type, int type_quals)
5101b304
MM
3657{
3658 tree t;
3659
3660 /* See if we already have the appropriate qualified variant. */
3661 t = get_qualified_type (type, type_quals);
3662
3663 /* If not, build it. */
3664 if (!t)
3665 {
8dd16ecc 3666 t = build_variant_type_copy (type);
5101b304 3667 set_type_quals (t, type_quals);
7e854c00
EB
3668
3669 /* If it's a pointer type, the new variant points to the same type. */
3670 if (TREE_CODE (type) == POINTER_TYPE)
3671 {
3672 TYPE_NEXT_PTR_TO (t) = TYPE_NEXT_PTR_TO (type);
3673 TYPE_NEXT_PTR_TO (type) = t;
3674 }
3675
3676 /* Same for a reference type. */
3677 else if (TREE_CODE (type) == REFERENCE_TYPE)
3678 {
3679 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (type);
3680 TYPE_NEXT_REF_TO (type) = t;
3681 }
5101b304
MM
3682 }
3683
c6a1db6c
RS
3684 return t;
3685}
b4ac57ab 3686
8dd16ecc
NS
3687/* Create a new distinct copy of TYPE. The new type is made its own
3688 MAIN_VARIANT. */
b4ac57ab
RS
3689
3690tree
8dd16ecc 3691build_distinct_type_copy (tree type)
b4ac57ab 3692{
8dd16ecc
NS
3693 tree t = copy_node (type);
3694
b4ac57ab
RS
3695 TYPE_POINTER_TO (t) = 0;
3696 TYPE_REFERENCE_TO (t) = 0;
3697
8dd16ecc
NS
3698 /* Make it its own variant. */
3699 TYPE_MAIN_VARIANT (t) = t;
3700 TYPE_NEXT_VARIANT (t) = 0;
3701
3702 return t;
3703}
3704
3705/* Create a new variant of TYPE, equivalent but distinct.
3706 This is so the caller can modify it. */
3707
3708tree
3709build_variant_type_copy (tree type)
3710{
3711 tree t, m = TYPE_MAIN_VARIANT (type);
3712
3713 t = build_distinct_type_copy (type);
3714
3715 /* Add the new type to the chain of variants of TYPE. */
b4ac57ab
RS
3716 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
3717 TYPE_NEXT_VARIANT (m) = t;
8dd16ecc 3718 TYPE_MAIN_VARIANT (t) = m;
b4ac57ab 3719
b4ac57ab
RS
3720 return t;
3721}
c6a1db6c 3722\f
f991abd1
DB
3723/* Return true if the from tree in both tree maps are equal. */
3724
820cc88f 3725int
f991abd1
DB
3726tree_map_eq (const void *va, const void *vb)
3727{
3728 const struct tree_map *a = va, *b = vb;
3729 return (a->from == b->from);
3730}
3731
3732/* Hash a from tree in a tree_map. */
3733
820cc88f 3734unsigned int
f991abd1
DB
3735tree_map_hash (const void *item)
3736{
3737 return (((const struct tree_map *) item)->hash);
3738}
3739
3740/* Return true if this tree map structure is marked for garbage collection
3741 purposes. We simply return true if the from tree is marked, so that this
3742 structure goes away when the from tree goes away. */
3743
820cc88f 3744int
f991abd1
DB
3745tree_map_marked_p (const void *p)
3746{
3747 tree from = ((struct tree_map *) p)->from;
3748
3749 return ggc_marked_p (from);
3750}
3751
820cc88f
DB
3752/* Return true if the trees in the tree_int_map *'s VA and VB are equal. */
3753
3754static int
3755tree_int_map_eq (const void *va, const void *vb)
3756{
3757 const struct tree_int_map *a = va, *b = vb;
3758 return (a->from == b->from);
3759}
3760
3761/* Hash a from tree in the tree_int_map * ITEM. */
3762
3763static unsigned int
3764tree_int_map_hash (const void *item)
3765{
3766 return htab_hash_pointer (((const struct tree_int_map *)item)->from);
3767}
3768
3769/* Return true if this tree int map structure is marked for garbage collection
3770 purposes. We simply return true if the from tree_int_map *P's from tree is marked, so that this
3771 structure goes away when the from tree goes away. */
3772
3773static int
3774tree_int_map_marked_p (const void *p)
3775{
3776 tree from = ((struct tree_int_map *) p)->from;
3777
3778 return ggc_marked_p (from);
3779}
3780/* Lookup an init priority for FROM, and return it if we find one. */
3781
3782unsigned short
3783decl_init_priority_lookup (tree from)
3784{
3785 struct tree_int_map *h, in;
3786 in.from = from;
3787
3788 h = htab_find_with_hash (init_priority_for_decl,
3789 &in, htab_hash_pointer (from));
3790 if (h)
3791 return h->to;
3792 return 0;
3793}
3794
3795/* Insert a mapping FROM->TO in the init priority hashtable. */
3796
3797void
3798decl_init_priority_insert (tree from, unsigned short to)
3799{
3800 struct tree_int_map *h;
3801 void **loc;
3802
3803 h = ggc_alloc (sizeof (struct tree_int_map));
3804 h->from = from;
3805 h->to = to;
3806 loc = htab_find_slot_with_hash (init_priority_for_decl, h,
3807 htab_hash_pointer (from), INSERT);
3808 *(struct tree_int_map **) loc = h;
3809}
3810
0b494699
ILT
3811/* Look up a restrict qualified base decl for FROM. */
3812
3813tree
3814decl_restrict_base_lookup (tree from)
3815{
3816 struct tree_map *h;
3817 struct tree_map in;
3818
3819 in.from = from;
3820 h = htab_find_with_hash (restrict_base_for_decl, &in,
3821 htab_hash_pointer (from));
3822 return h ? h->to : NULL_TREE;
3823}
3824
3825/* Record the restrict qualified base TO for FROM. */
3826
3827void
3828decl_restrict_base_insert (tree from, tree to)
3829{
3830 struct tree_map *h;
3831 void **loc;
3832
3833 h = ggc_alloc (sizeof (struct tree_map));
3834 h->hash = htab_hash_pointer (from);
3835 h->from = from;
3836 h->to = to;
3837 loc = htab_find_slot_with_hash (restrict_base_for_decl, h, h->hash, INSERT);
3838 *(struct tree_map **) loc = h;
3839}
3840
f991abd1
DB
3841/* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
3842
3843static void
3844print_debug_expr_statistics (void)
3845{
3846 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
3847 (long) htab_size (debug_expr_for_decl),
3848 (long) htab_elements (debug_expr_for_decl),
3849 htab_collisions (debug_expr_for_decl));
3850}
3851
833b3afe
DB
3852/* Print out the statistics for the DECL_VALUE_EXPR hash table. */
3853
3854static void
3855print_value_expr_statistics (void)
3856{
3857 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
3858 (long) htab_size (value_expr_for_decl),
3859 (long) htab_elements (value_expr_for_decl),
3860 htab_collisions (value_expr_for_decl));
3861}
0b494699
ILT
3862
3863/* Print out statistics for the RESTRICT_BASE_FOR_DECL hash table, but
3864 don't print anything if the table is empty. */
3865
3866static void
3867print_restrict_base_statistics (void)
3868{
3869 if (htab_elements (restrict_base_for_decl) != 0)
3870 fprintf (stderr,
3871 "RESTRICT_BASE hash: size %ld, %ld elements, %f collisions\n",
3872 (long) htab_size (restrict_base_for_decl),
3873 (long) htab_elements (restrict_base_for_decl),
3874 htab_collisions (restrict_base_for_decl));
3875}
3876
f991abd1
DB
3877/* Lookup a debug expression for FROM, and return it if we find one. */
3878
3879tree
3880decl_debug_expr_lookup (tree from)
3881{
3882 struct tree_map *h, in;
3883 in.from = from;
3884
3885 h = htab_find_with_hash (debug_expr_for_decl, &in, htab_hash_pointer (from));
3886 if (h)
3887 return h->to;
3888 return NULL_TREE;
3889}
3890
3891/* Insert a mapping FROM->TO in the debug expression hashtable. */
3892
3893void
3894decl_debug_expr_insert (tree from, tree to)
3895{
3896 struct tree_map *h;
3897 void **loc;
3898
3899 h = ggc_alloc (sizeof (struct tree_map));
3900 h->hash = htab_hash_pointer (from);
3901 h->from = from;
3902 h->to = to;
3903 loc = htab_find_slot_with_hash (debug_expr_for_decl, h, h->hash, INSERT);
3904 *(struct tree_map **) loc = h;
3905}
833b3afe
DB
3906
3907/* Lookup a value expression for FROM, and return it if we find one. */
3908
3909tree
3910decl_value_expr_lookup (tree from)
3911{
3912 struct tree_map *h, in;
3913 in.from = from;
3914
3915 h = htab_find_with_hash (value_expr_for_decl, &in, htab_hash_pointer (from));
3916 if (h)
3917 return h->to;
3918 return NULL_TREE;
3919}
3920
3921/* Insert a mapping FROM->TO in the value expression hashtable. */
3922
3923void
3924decl_value_expr_insert (tree from, tree to)
3925{
3926 struct tree_map *h;
3927 void **loc;
3928
3929 h = ggc_alloc (sizeof (struct tree_map));
3930 h->hash = htab_hash_pointer (from);
3931 h->from = from;
3932 h->to = to;
3933 loc = htab_find_slot_with_hash (value_expr_for_decl, h, h->hash, INSERT);
3934 *(struct tree_map **) loc = h;
3935}
3936
c6a1db6c
RS
3937/* Hashing of types so that we don't make duplicates.
3938 The entry point is `type_hash_canon'. */
3939
c6a1db6c
RS
3940/* Compute a hash code for a list of types (chain of TREE_LIST nodes
3941 with types in the TREE_VALUE slots), by adding the hash codes
3942 of the individual types. */
3943
05bccae2 3944unsigned int
fd917e0d 3945type_hash_list (tree list, hashval_t hashcode)
c6a1db6c 3946{
b3694847 3947 tree tail;
d4b60170 3948
fd917e0d
JM
3949 for (tail = list; tail; tail = TREE_CHAIN (tail))
3950 if (TREE_VALUE (tail) != error_mark_node)
3951 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
3952 hashcode);
d4b60170 3953
c6a1db6c
RS
3954 return hashcode;
3955}
3956
d88f311b
ML
3957/* These are the Hashtable callback functions. */
3958
eb34af89 3959/* Returns true iff the types are equivalent. */
d88f311b
ML
3960
3961static int
46c5ad27 3962type_hash_eq (const void *va, const void *vb)
d88f311b
ML
3963{
3964 const struct type_hash *a = va, *b = vb;
eb34af89
RK
3965
3966 /* First test the things that are the same for all types. */
3967 if (a->hash != b->hash
3968 || TREE_CODE (a->type) != TREE_CODE (b->type)
3969 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
3970 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
3971 TYPE_ATTRIBUTES (b->type))
3972 || TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
3973 || TYPE_MODE (a->type) != TYPE_MODE (b->type))
3974 return 0;
3975
3976 switch (TREE_CODE (a->type))
3977 {
3978 case VOID_TYPE:
3979 case COMPLEX_TYPE:
eb34af89
RK
3980 case POINTER_TYPE:
3981 case REFERENCE_TYPE:
3982 return 1;
3983
d70b8c3a
PB
3984 case VECTOR_TYPE:
3985 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
3986
eb34af89
RK
3987 case ENUMERAL_TYPE:
3988 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
3989 && !(TYPE_VALUES (a->type)
3990 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
3991 && TYPE_VALUES (b->type)
3992 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
3993 && type_list_equal (TYPE_VALUES (a->type),
3994 TYPE_VALUES (b->type))))
3995 return 0;
3996
3997 /* ... fall through ... */
3998
3999 case INTEGER_TYPE:
4000 case REAL_TYPE:
4001 case BOOLEAN_TYPE:
4002 case CHAR_TYPE:
4003 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
4004 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
4005 TYPE_MAX_VALUE (b->type)))
4006 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
614ed70a 4007 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
eb34af89
RK
4008 TYPE_MIN_VALUE (b->type))));
4009
4010 case OFFSET_TYPE:
4011 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
4012
4013 case METHOD_TYPE:
4014 return (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
4015 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
4016 || (TYPE_ARG_TYPES (a->type)
4017 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
4018 && TYPE_ARG_TYPES (b->type)
4019 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
4020 && type_list_equal (TYPE_ARG_TYPES (a->type),
4021 TYPE_ARG_TYPES (b->type)))));
9f63daea 4022
eb34af89 4023 case ARRAY_TYPE:
eb34af89
RK
4024 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
4025
4026 case RECORD_TYPE:
4027 case UNION_TYPE:
4028 case QUAL_UNION_TYPE:
4029 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
4030 || (TYPE_FIELDS (a->type)
4031 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
4032 && TYPE_FIELDS (b->type)
4033 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
4034 && type_list_equal (TYPE_FIELDS (a->type),
4035 TYPE_FIELDS (b->type))));
4036
4037 case FUNCTION_TYPE:
4038 return (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
4039 || (TYPE_ARG_TYPES (a->type)
4040 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
4041 && TYPE_ARG_TYPES (b->type)
4042 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
4043 && type_list_equal (TYPE_ARG_TYPES (a->type),
4044 TYPE_ARG_TYPES (b->type))));
4045
4046 default:
4047 return 0;
4048 }
d88f311b
ML
4049}
4050
4051/* Return the cached hash value. */
4052
fb7e6024 4053static hashval_t
46c5ad27 4054type_hash_hash (const void *item)
d88f311b 4055{
dc478a5d 4056 return ((const struct type_hash *) item)->hash;
d88f311b
ML
4057}
4058
c6a1db6c
RS
4059/* Look in the type hash table for a type isomorphic to TYPE.
4060 If one is found, return it. Otherwise return 0. */
4061
4062tree
fd917e0d 4063type_hash_lookup (hashval_t hashcode, tree type)
c6a1db6c 4064{
d88f311b 4065 struct type_hash *h, in;
da48638e
AH
4066
4067 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
dc478a5d 4068 must call that routine before comparing TYPE_ALIGNs. */
da48638e
AH
4069 layout_type (type);
4070
d88f311b
ML
4071 in.hash = hashcode;
4072 in.type = type;
d4b60170 4073
d88f311b
ML
4074 h = htab_find_with_hash (type_hash_table, &in, hashcode);
4075 if (h)
4076 return h->type;
4077 return NULL_TREE;
c6a1db6c
RS
4078}
4079
4080/* Add an entry to the type-hash-table
4081 for a type TYPE whose hash code is HASHCODE. */
4082
4083void
fd917e0d 4084type_hash_add (hashval_t hashcode, tree type)
c6a1db6c 4085{
d88f311b
ML
4086 struct type_hash *h;
4087 void **loc;
c6a1db6c 4088
703ad42b 4089 h = ggc_alloc (sizeof (struct type_hash));
d88f311b 4090 h->hash = hashcode;
c6a1db6c 4091 h->type = type;
f64bedbd 4092 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
dc478a5d 4093 *(struct type_hash **) loc = h;
c6a1db6c
RS
4094}
4095
4096/* Given TYPE, and HASHCODE its hash code, return the canonical
4097 object for an identical type if one already exists.
7548281d 4098 Otherwise, return TYPE, and record it as the canonical object.
c6a1db6c
RS
4099
4100 To use this function, first create a type of the sort you want.
4101 Then compute its hash code from the fields of the type that
4102 make it different from other similar types.
7548281d 4103 Then call this function and use the value. */
c6a1db6c
RS
4104
4105tree
46c5ad27 4106type_hash_canon (unsigned int hashcode, tree type)
c6a1db6c
RS
4107{
4108 tree t1;
4109
7548281d
RK
4110 /* The hash table only contains main variants, so ensure that's what we're
4111 being passed. */
1e128c5f 4112 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7548281d
RK
4113
4114 if (!lang_hooks.types.hash_types)
c6a1db6c
RS
4115 return type;
4116
4c160717
RK
4117 /* See if the type is in the hash table already. If so, return it.
4118 Otherwise, add the type. */
c6a1db6c
RS
4119 t1 = type_hash_lookup (hashcode, type);
4120 if (t1 != 0)
4121 {
c6a1db6c 4122#ifdef GATHER_STATISTICS
770ae6cc
RK
4123 tree_node_counts[(int) t_kind]--;
4124 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
c6a1db6c
RS
4125#endif
4126 return t1;
4127 }
4c160717
RK
4128 else
4129 {
4130 type_hash_add (hashcode, type);
4131 return type;
4132 }
c6a1db6c
RS
4133}
4134
6abba055
RK
4135/* See if the data pointed to by the type hash table is marked. We consider
4136 it marked if the type is marked or if a debug type number or symbol
4137 table entry has been made for the type. This reduces the amount of
4138 debugging output and eliminates that dependency of the debug output on
4139 the number of garbage collections. */
d88f311b
ML
4140
4141static int
46c5ad27 4142type_hash_marked_p (const void *p)
d88f311b 4143{
6abba055
RK
4144 tree type = ((struct type_hash *) p)->type;
4145
4146 return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
d88f311b
ML
4147}
4148
d88f311b 4149static void
46c5ad27 4150print_type_hash_statistics (void)
d88f311b 4151{
770ae6cc
RK
4152 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
4153 (long) htab_size (type_hash_table),
4154 (long) htab_elements (type_hash_table),
d88f311b 4155 htab_collisions (type_hash_table));
87ff9c8e
RH
4156}
4157
2a3c15b5
DE
4158/* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
4159 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
4160 by adding the hash codes of the individual attributes. */
3e3d7e77 4161
05bccae2 4162unsigned int
fd917e0d 4163attribute_hash_list (tree list, hashval_t hashcode)
3e3d7e77 4164{
b3694847 4165 tree tail;
d4b60170 4166
fd917e0d 4167 for (tail = list; tail; tail = TREE_CHAIN (tail))
2a3c15b5 4168 /* ??? Do we want to add in TREE_VALUE too? */
fd917e0d
JM
4169 hashcode = iterative_hash_object
4170 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
2a3c15b5 4171 return hashcode;
3e3d7e77
RK
4172}
4173
91e97eb8
RK
4174/* Given two lists of attributes, return true if list l2 is
4175 equivalent to l1. */
4176
4177int
46c5ad27 4178attribute_list_equal (tree l1, tree l2)
91e97eb8 4179{
3b03c671
KH
4180 return attribute_list_contained (l1, l2)
4181 && attribute_list_contained (l2, l1);
91e97eb8
RK
4182}
4183
2a3c15b5
DE
4184/* Given two lists of attributes, return true if list L2 is
4185 completely contained within L1. */
4186/* ??? This would be faster if attribute names were stored in a canonicalized
4187 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
4188 must be used to show these elements are equivalent (which they are). */
4189/* ??? It's not clear that attributes with arguments will always be handled
4190 correctly. */
91e97eb8
RK
4191
4192int
46c5ad27 4193attribute_list_contained (tree l1, tree l2)
91e97eb8 4194{
b3694847 4195 tree t1, t2;
91e97eb8
RK
4196
4197 /* First check the obvious, maybe the lists are identical. */
4198 if (l1 == l2)
dc478a5d 4199 return 1;
91e97eb8 4200
2a3c15b5 4201 /* Maybe the lists are similar. */
91e97eb8 4202 for (t1 = l1, t2 = l2;
d4b60170 4203 t1 != 0 && t2 != 0
2a3c15b5 4204 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
91e97eb8
RK
4205 && TREE_VALUE (t1) == TREE_VALUE (t2);
4206 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
4207
4208 /* Maybe the lists are equal. */
4209 if (t1 == 0 && t2 == 0)
a01da83b 4210 return 1;
91e97eb8 4211
d4b60170 4212 for (; t2 != 0; t2 = TREE_CHAIN (t2))
2a3c15b5 4213 {
91d231cb
JM
4214 tree attr;
4215 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)), l1);
4216 attr != NULL_TREE;
4217 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
4218 TREE_CHAIN (attr)))
4219 {
4220 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
4221 break;
4222 }
2a3c15b5 4223
d4b60170 4224 if (attr == 0)
91e97eb8 4225 return 0;
d4b60170 4226
2a3c15b5
DE
4227 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) != 1)
4228 return 0;
4229 }
3e3d7e77 4230
91e97eb8
RK
4231 return 1;
4232}
4233
c6a1db6c
RS
4234/* Given two lists of types
4235 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
4236 return 1 if the lists contain the same types in the same order.
4237 Also, the TREE_PURPOSEs must match. */
4238
4239int
46c5ad27 4240type_list_equal (tree l1, tree l2)
c6a1db6c 4241{
b3694847 4242 tree t1, t2;
364e1f1c 4243
c6a1db6c 4244 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
364e1f1c
RK
4245 if (TREE_VALUE (t1) != TREE_VALUE (t2)
4246 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
bbda4250
JM
4247 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
4248 && (TREE_TYPE (TREE_PURPOSE (t1))
4249 == TREE_TYPE (TREE_PURPOSE (t2))))))
364e1f1c 4250 return 0;
c6a1db6c
RS
4251
4252 return t1 == t2;
4253}
4254
f5d6a24c
MM
4255/* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
4256 given by TYPE. If the argument list accepts variable arguments,
4257 then this function counts only the ordinary arguments. */
4258
4259int
46c5ad27 4260type_num_arguments (tree type)
f5d6a24c
MM
4261{
4262 int i = 0;
4263 tree t;
4264
4265 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
4266 /* If the function does not take a variable number of arguments,
4267 the last element in the list will have type `void'. */
4268 if (VOID_TYPE_P (TREE_VALUE (t)))
4269 break;
4270 else
4271 ++i;
4272
4273 return i;
4274}
4275
c6a1db6c
RS
4276/* Nonzero if integer constants T1 and T2
4277 represent the same constant value. */
4278
4279int
46c5ad27 4280tree_int_cst_equal (tree t1, tree t2)
c6a1db6c
RS
4281{
4282 if (t1 == t2)
4283 return 1;
d4b60170 4284
c6a1db6c
RS
4285 if (t1 == 0 || t2 == 0)
4286 return 0;
d4b60170 4287
c6a1db6c
RS
4288 if (TREE_CODE (t1) == INTEGER_CST
4289 && TREE_CODE (t2) == INTEGER_CST
4290 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
4291 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
4292 return 1;
d4b60170 4293
c6a1db6c
RS
4294 return 0;
4295}
4296
4297/* Nonzero if integer constants T1 and T2 represent values that satisfy <.
4298 The precise way of comparison depends on their data type. */
4299
4300int
46c5ad27 4301tree_int_cst_lt (tree t1, tree t2)
c6a1db6c
RS
4302{
4303 if (t1 == t2)
4304 return 0;
4305
8df83eae 4306 if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
b13ab42c
AO
4307 {
4308 int t1_sgn = tree_int_cst_sgn (t1);
4309 int t2_sgn = tree_int_cst_sgn (t2);
4310
4311 if (t1_sgn < t2_sgn)
4312 return 1;
4313 else if (t1_sgn > t2_sgn)
4314 return 0;
4315 /* Otherwise, both are non-negative, so we compare them as
4316 unsigned just in case one of them would overflow a signed
4317 type. */
4318 }
8df83eae 4319 else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
c6a1db6c 4320 return INT_CST_LT (t1, t2);
d4b60170 4321
c6a1db6c
RS
4322 return INT_CST_LT_UNSIGNED (t1, t2);
4323}
4324
56cb9733
MM
4325/* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
4326
4327int
46c5ad27 4328tree_int_cst_compare (tree t1, tree t2)
56cb9733
MM
4329{
4330 if (tree_int_cst_lt (t1, t2))
4331 return -1;
4332 else if (tree_int_cst_lt (t2, t1))
4333 return 1;
3b03c671 4334 else
56cb9733
MM
4335 return 0;
4336}
4337
4636c87e
JJ
4338/* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
4339 the host. If POS is zero, the value can be represented in a single
9f36bc49 4340 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
4636c87e 4341 be represented in a single unsigned HOST_WIDE_INT. */
665f2503
RK
4342
4343int
46c5ad27 4344host_integerp (tree t, int pos)
665f2503
RK
4345{
4346 return (TREE_CODE (t) == INTEGER_CST
4347 && ! TREE_OVERFLOW (t)
4348 && ((TREE_INT_CST_HIGH (t) == 0
4349 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
4350 || (! pos && TREE_INT_CST_HIGH (t) == -1
4636c87e 4351 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
8df83eae 4352 && !TYPE_UNSIGNED (TREE_TYPE (t)))
4636c87e 4353 || (pos && TREE_INT_CST_HIGH (t) == 0)));
665f2503
RK
4354}
4355
4356/* Return the HOST_WIDE_INT least significant bits of T if it is an
4357 INTEGER_CST and there is no overflow. POS is nonzero if the result must
9f36bc49 4358 be non-negative. We must be able to satisfy the above conditions. */
665f2503
RK
4359
4360HOST_WIDE_INT
46c5ad27 4361tree_low_cst (tree t, int pos)
665f2503 4362{
1e128c5f
GB
4363 gcc_assert (host_integerp (t, pos));
4364 return TREE_INT_CST_LOW (t);
dc478a5d 4365}
665f2503 4366
4694840a
OH
4367/* Return the most significant bit of the integer constant T. */
4368
4369int
46c5ad27 4370tree_int_cst_msb (tree t)
4694840a
OH
4371{
4372 int prec;
4373 HOST_WIDE_INT h;
4374 unsigned HOST_WIDE_INT l;
4375
4376 /* Note that using TYPE_PRECISION here is wrong. We care about the
4377 actual bits, not the (arbitrary) range of the type. */
4378 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
4379 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
4380 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
4381 return (l & 1) == 1;
4382}
4383
6d9cb074
RK
4384/* Return an indication of the sign of the integer constant T.
4385 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
f85f1ca7 4386 Note that -1 will never be returned if T's type is unsigned. */
6d9cb074
RK
4387
4388int
46c5ad27 4389tree_int_cst_sgn (tree t)
6d9cb074
RK
4390{
4391 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
4392 return 0;
8df83eae 4393 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6d9cb074
RK
4394 return 1;
4395 else if (TREE_INT_CST_HIGH (t) < 0)
4396 return -1;
4397 else
4398 return 1;
4399}
4400
364e1f1c
RK
4401/* Compare two constructor-element-type constants. Return 1 if the lists
4402 are known to be equal; otherwise return 0. */
4403
c6a1db6c 4404int
46c5ad27 4405simple_cst_list_equal (tree l1, tree l2)
c6a1db6c
RS
4406{
4407 while (l1 != NULL_TREE && l2 != NULL_TREE)
4408 {
364e1f1c 4409 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
c6a1db6c 4410 return 0;
364e1f1c 4411
c6a1db6c
RS
4412 l1 = TREE_CHAIN (l1);
4413 l2 = TREE_CHAIN (l2);
4414 }
364e1f1c 4415
d4b60170 4416 return l1 == l2;
c6a1db6c
RS
4417}
4418
4419/* Return truthvalue of whether T1 is the same tree structure as T2.
4420 Return 1 if they are the same.
4421 Return 0 if they are understandably different.
4422 Return -1 if either contains tree structure not understood by
4423 this function. */
4424
4425int
46c5ad27 4426simple_cst_equal (tree t1, tree t2)
c6a1db6c 4427{
b3694847 4428 enum tree_code code1, code2;
c6a1db6c 4429 int cmp;
d4b60170 4430 int i;
c6a1db6c
RS
4431
4432 if (t1 == t2)
4433 return 1;
4434 if (t1 == 0 || t2 == 0)
4435 return 0;
4436
4437 code1 = TREE_CODE (t1);
4438 code2 = TREE_CODE (t2);
4439
4440 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
af79bb86
JM
4441 {
4442 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
4443 || code2 == NON_LVALUE_EXPR)
4444 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4445 else
4446 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
4447 }
d4b60170 4448
c6a1db6c
RS
4449 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
4450 || code2 == NON_LVALUE_EXPR)
4451 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
4452
4453 if (code1 != code2)
4454 return 0;
4455
4456 switch (code1)
4457 {
4458 case INTEGER_CST:
d4b60170
RK
4459 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
4460 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
c6a1db6c
RS
4461
4462 case REAL_CST:
41c9120b 4463 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
c6a1db6c
RS
4464
4465 case STRING_CST:
d4b60170 4466 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
da61dec9 4467 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
d4b60170 4468 TREE_STRING_LENGTH (t1)));
c6a1db6c
RS
4469
4470 case CONSTRUCTOR:
4038c495
GB
4471 {
4472 unsigned HOST_WIDE_INT idx;
4473 VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1);
4474 VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2);
4475
4476 if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2))
4477 return false;
4478
4479 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
4480 /* ??? Should we handle also fields here? */
4481 if (!simple_cst_equal (VEC_index (constructor_elt, v1, idx)->value,
4482 VEC_index (constructor_elt, v2, idx)->value))
4483 return false;
4484 return true;
4485 }
c6a1db6c
RS
4486
4487 case SAVE_EXPR:
4488 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4489
4490 case CALL_EXPR:
4491 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4492 if (cmp <= 0)
4493 return cmp;
d4b60170
RK
4494 return
4495 simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
c6a1db6c
RS
4496
4497 case TARGET_EXPR:
4498 /* Special case: if either target is an unallocated VAR_DECL,
4499 it means that it's going to be unified with whatever the
4500 TARGET_EXPR is really supposed to initialize, so treat it
4501 as being equivalent to anything. */
4502 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
4503 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
19e7881c 4504 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
c6a1db6c
RS
4505 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
4506 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
19e7881c 4507 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
c6a1db6c
RS
4508 cmp = 1;
4509 else
4510 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
d4b60170 4511
c6a1db6c
RS
4512 if (cmp <= 0)
4513 return cmp;
d4b60170 4514
c6a1db6c
RS
4515 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
4516
4517 case WITH_CLEANUP_EXPR:
4518 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4519 if (cmp <= 0)
4520 return cmp;
d4b60170 4521
6ad7895a 4522 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
c6a1db6c
RS
4523
4524 case COMPONENT_REF:
4525 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
4526 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
d4b60170 4527
c6a1db6c
RS
4528 return 0;
4529
c6a1db6c
RS
4530 case VAR_DECL:
4531 case PARM_DECL:
4532 case CONST_DECL:
4533 case FUNCTION_DECL:
4534 return 0;
dc478a5d 4535
e9a25f70
JL
4536 default:
4537 break;
86aed40b 4538 }
c6a1db6c 4539
8ae49a28
RK
4540 /* This general rule works for most tree codes. All exceptions should be
4541 handled above. If this is a language-specific tree code, we can't
4542 trust what might be in the operand, so say we don't know
4543 the situation. */
0a6969ad 4544 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
8ae49a28 4545 return -1;
c6a1db6c 4546
86aed40b
RS
4547 switch (TREE_CODE_CLASS (code1))
4548 {
6615c446
JO
4549 case tcc_unary:
4550 case tcc_binary:
4551 case tcc_comparison:
4552 case tcc_expression:
4553 case tcc_reference:
4554 case tcc_statement:
86aed40b 4555 cmp = 1;
8d5e6e25 4556 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
86aed40b
RS
4557 {
4558 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
4559 if (cmp <= 0)
4560 return cmp;
4561 }
d4b60170 4562
86aed40b 4563 return cmp;
86aed40b 4564
e9a25f70
JL
4565 default:
4566 return -1;
4567 }
c6a1db6c 4568}
05bccae2
RK
4569
4570/* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
4571 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
4572 than U, respectively. */
4573
4574int
46c5ad27 4575compare_tree_int (tree t, unsigned HOST_WIDE_INT u)
05bccae2
RK
4576{
4577 if (tree_int_cst_sgn (t) < 0)
4578 return -1;
4579 else if (TREE_INT_CST_HIGH (t) != 0)
4580 return 1;
4581 else if (TREE_INT_CST_LOW (t) == u)
4582 return 0;
4583 else if (TREE_INT_CST_LOW (t) < u)
4584 return -1;
4585 else
4586 return 1;
4587}
03307888 4588
3168cb99
JL
4589/* Return true if CODE represents an associative tree code. Otherwise
4590 return false. */
4591bool
4592associative_tree_code (enum tree_code code)
4593{
4594 switch (code)
4595 {
4596 case BIT_IOR_EXPR:
4597 case BIT_AND_EXPR:
4598 case BIT_XOR_EXPR:
4599 case PLUS_EXPR:
3168cb99 4600 case MULT_EXPR:
3168cb99
JL
4601 case MIN_EXPR:
4602 case MAX_EXPR:
4603 return true;
4604
4605 default:
4606 break;
4607 }
4608 return false;
4609}
4610
1f838355 4611/* Return true if CODE represents a commutative tree code. Otherwise
3168cb99
JL
4612 return false. */
4613bool
4614commutative_tree_code (enum tree_code code)
4615{
4616 switch (code)
4617 {
4618 case PLUS_EXPR:
4619 case MULT_EXPR:
4620 case MIN_EXPR:
4621 case MAX_EXPR:
4622 case BIT_IOR_EXPR:
4623 case BIT_XOR_EXPR:
4624 case BIT_AND_EXPR:
4625 case NE_EXPR:
4626 case EQ_EXPR:
54d581a2
RS
4627 case UNORDERED_EXPR:
4628 case ORDERED_EXPR:
4629 case UNEQ_EXPR:
4630 case LTGT_EXPR:
4631 case TRUTH_AND_EXPR:
4632 case TRUTH_XOR_EXPR:
4633 case TRUTH_OR_EXPR:
3168cb99
JL
4634 return true;
4635
4636 default:
4637 break;
4638 }
4639 return false;
4640}
4641
03307888
JM
4642/* Generate a hash value for an expression. This can be used iteratively
4643 by passing a previous result as the "val" argument.
4644
4645 This function is intended to produce the same hash for expressions which
4646 would compare equal using operand_equal_p. */
4647
4648hashval_t
4649iterative_hash_expr (tree t, hashval_t val)
4650{
4651 int i;
4652 enum tree_code code;
4653 char class;
4654
4655 if (t == NULL_TREE)
caf29de7 4656 return iterative_hash_pointer (t, val);
03307888
JM
4657
4658 code = TREE_CODE (t);
03307888 4659
caf29de7 4660 switch (code)
03307888 4661 {
caf29de7
JH
4662 /* Alas, constants aren't shared, so we can't rely on pointer
4663 identity. */
4664 case INTEGER_CST:
4665 val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
4666 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
4667 case REAL_CST:
4668 {
4669 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
f29b9db9 4670
caf29de7
JH
4671 return iterative_hash_hashval_t (val2, val);
4672 }
4673 case STRING_CST:
4674 return iterative_hash (TREE_STRING_POINTER (t),
4675 TREE_STRING_LENGTH (t), val);
4676 case COMPLEX_CST:
4677 val = iterative_hash_expr (TREE_REALPART (t), val);
4678 return iterative_hash_expr (TREE_IMAGPART (t), val);
4679 case VECTOR_CST:
4680 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
4681
4682 case SSA_NAME:
4683 case VALUE_HANDLE:
4684 /* we can just compare by pointer. */
4685 return iterative_hash_pointer (t, val);
4686
4687 case TREE_LIST:
4688 /* A list of expressions, for a CALL_EXPR or as the elements of a
4689 VECTOR_CST. */
4690 for (; t; t = TREE_CHAIN (t))
4691 val = iterative_hash_expr (TREE_VALUE (t), val);
4692 return val;
4038c495
GB
4693 case CONSTRUCTOR:
4694 {
4695 unsigned HOST_WIDE_INT idx;
4696 tree field, value;
4697 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
4698 {
4699 val = iterative_hash_expr (field, val);
4700 val = iterative_hash_expr (value, val);
4701 }
4702 return val;
4703 }
d070d4fd
DJ
4704 case FUNCTION_DECL:
4705 /* When referring to a built-in FUNCTION_DECL, use the
4706 __builtin__ form. Otherwise nodes that compare equal
4707 according to operand_equal_p might get different
4708 hash codes. */
4709 if (DECL_BUILT_IN (t))
4710 {
4711 val = iterative_hash_pointer (built_in_decls[DECL_FUNCTION_CODE (t)],
4712 val);
4713 return val;
4714 }
4715 /* else FALL THROUGH */
caf29de7
JH
4716 default:
4717 class = TREE_CODE_CLASS (code);
03307888 4718
6615c446 4719 if (class == tcc_declaration)
6de9cd9a 4720 {
27840768
DB
4721 /* DECL's have a unique ID */
4722 val = iterative_hash_host_wide_int (DECL_UID (t), val);
6de9cd9a 4723 }
1a2caa7a 4724 else
066f50a9 4725 {
1a2caa7a
NS
4726 gcc_assert (IS_EXPR_CODE_CLASS (class));
4727
caf29de7
JH
4728 val = iterative_hash_object (code, val);
4729
4730 /* Don't hash the type, that can lead to having nodes which
4731 compare equal according to operand_equal_p, but which
4732 have different hash codes. */
4733 if (code == NOP_EXPR
4734 || code == CONVERT_EXPR
4735 || code == NON_LVALUE_EXPR)
4736 {
4737 /* Make sure to include signness in the hash computation. */
4738 val += TYPE_UNSIGNED (TREE_TYPE (t));
4739 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
4740 }
4741
4742 else if (commutative_tree_code (code))
4743 {
4744 /* It's a commutative expression. We want to hash it the same
4745 however it appears. We do this by first hashing both operands
4746 and then rehashing based on the order of their independent
4747 hashes. */
4748 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
4749 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
4750 hashval_t t;
4751
4752 if (one > two)
4753 t = one, one = two, two = t;
4754
4755 val = iterative_hash_hashval_t (one, val);
4756 val = iterative_hash_hashval_t (two, val);
4757 }
4758 else
54e4aedb 4759 for (i = TREE_CODE_LENGTH (code) - 1; i >= 0; --i)
caf29de7 4760 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
066f50a9 4761 }
caf29de7
JH
4762 return val;
4763 break;
6de9cd9a 4764 }
03307888 4765}
c6a1db6c
RS
4766\f
4767/* Constructors for pointer, array and function types.
4768 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
4769 constructed by language-dependent code, not here.) */
4770
22421b79
RK
4771/* Construct, lay out and return the type of pointers to TO_TYPE with
4772 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
4773 reference all of memory. If such a type has already been
4774 constructed, reuse it. */
c6a1db6c
RS
4775
4776tree
22421b79
RK
4777build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
4778 bool can_alias_all)
c6a1db6c 4779{
22421b79
RK
4780 tree t;
4781
a4faac50
JM
4782 if (to_type == error_mark_node)
4783 return error_mark_node;
4784
22421b79
RK
4785 /* In some cases, languages will have things that aren't a POINTER_TYPE
4786 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
4787 In that case, return that type without regard to the rest of our
4788 operands.
4789
4790 ??? This is a kludge, but consistent with the way this function has
4791 always operated and there doesn't seem to be a good way to avoid this
4792 at the moment. */
4793 if (TYPE_POINTER_TO (to_type) != 0
4794 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
4795 return TYPE_POINTER_TO (to_type);
c6a1db6c 4796
7e854c00
EB
4797 /* First, if we already have an unqualified type for pointers to TO_TYPE
4798 and it's the proper mode, use it. */
22421b79 4799 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7e854c00
EB
4800 if (TYPE_MODE (t) == mode
4801 && !TYPE_QUALS (t)
4802 && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
22421b79 4803 return t;
c6a1db6c 4804
c6a1db6c 4805 t = make_node (POINTER_TYPE);
d9cbc259 4806
c6a1db6c 4807 TREE_TYPE (t) = to_type;
4977bab6 4808 TYPE_MODE (t) = mode;
22421b79
RK
4809 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
4810 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
4811 TYPE_POINTER_TO (to_type) = t;
c6a1db6c
RS
4812
4813 /* Lay out the type. This function has many callers that are concerned
20475e78 4814 with expression-construction, and this simplifies them all. */
c6a1db6c
RS
4815 layout_type (t);
4816
c6a1db6c
RS
4817 return t;
4818}
4819
4977bab6 4820/* By default build pointers in ptr_mode. */
d4b60170
RK
4821
4822tree
46c5ad27 4823build_pointer_type (tree to_type)
4977bab6 4824{
22421b79 4825 return build_pointer_type_for_mode (to_type, ptr_mode, false);
4977bab6
ZW
4826}
4827
22421b79 4828/* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
4977bab6
ZW
4829
4830tree
22421b79
RK
4831build_reference_type_for_mode (tree to_type, enum machine_mode mode,
4832 bool can_alias_all)
d4b60170 4833{
22421b79 4834 tree t;
d4b60170 4835
22421b79
RK
4836 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
4837 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
4838 In that case, return that type without regard to the rest of our
4839 operands.
4840
4841 ??? This is a kludge, but consistent with the way this function has
4842 always operated and there doesn't seem to be a good way to avoid this
4843 at the moment. */
4844 if (TYPE_REFERENCE_TO (to_type) != 0
4845 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
4846 return TYPE_REFERENCE_TO (to_type);
4847
7e854c00
EB
4848 /* First, if we already have an unqualified type for references to TO_TYPE
4849 and it's the proper mode, use it. */
22421b79 4850 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7e854c00
EB
4851 if (TYPE_MODE (t) == mode
4852 && !TYPE_QUALS (t)
4853 && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
22421b79 4854 return t;
d4b60170 4855
d4b60170 4856 t = make_node (REFERENCE_TYPE);
d4b60170
RK
4857
4858 TREE_TYPE (t) = to_type;
4977bab6 4859 TYPE_MODE (t) = mode;
22421b79
RK
4860 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
4861 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
d4b60170
RK
4862 TYPE_REFERENCE_TO (to_type) = t;
4863
4864 layout_type (t);
4865
4866 return t;
4867}
4868
4977bab6
ZW
4869
4870/* Build the node for the type of references-to-TO_TYPE by default
4871 in ptr_mode. */
4872
4873tree
46c5ad27 4874build_reference_type (tree to_type)
4977bab6 4875{
22421b79 4876 return build_reference_type_for_mode (to_type, ptr_mode, false);
4977bab6
ZW
4877}
4878
12e1243e
AH
4879/* Build a type that is compatible with t but has no cv quals anywhere
4880 in its type, thus
4881
4882 const char *const *const * -> char ***. */
4883
4884tree
46c5ad27 4885build_type_no_quals (tree t)
12e1243e
AH
4886{
4887 switch (TREE_CODE (t))
4888 {
4889 case POINTER_TYPE:
7548281d 4890 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
22421b79
RK
4891 TYPE_MODE (t),
4892 TYPE_REF_CAN_ALIAS_ALL (t));
12e1243e 4893 case REFERENCE_TYPE:
7548281d
RK
4894 return
4895 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
22421b79
RK
4896 TYPE_MODE (t),
4897 TYPE_REF_CAN_ALIAS_ALL (t));
12e1243e
AH
4898 default:
4899 return TYPE_MAIN_VARIANT (t);
4900 }
4901}
4902
c6a1db6c
RS
4903/* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
4904 MAXVAL should be the maximum value in the domain
e9a25f70
JL
4905 (one less than the length of the array).
4906
4907 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
4908 We don't enforce this limit, that is up to caller (e.g. language front end).
4909 The limit exists because the result is a signed type and we don't handle
4910 sizes that use more than one HOST_WIDE_INT. */
c6a1db6c
RS
4911
4912tree
46c5ad27 4913build_index_type (tree maxval)
c6a1db6c 4914{
b3694847 4915 tree itype = make_node (INTEGER_TYPE);
0fd17968 4916
770ae6cc 4917 TREE_TYPE (itype) = sizetype;
c6a1db6c 4918 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
967e627a 4919 TYPE_MIN_VALUE (itype) = size_zero_node;
455f19cb 4920 TYPE_MAX_VALUE (itype) = fold_convert (sizetype, maxval);
c6a1db6c
RS
4921 TYPE_MODE (itype) = TYPE_MODE (sizetype);
4922 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
def9b006 4923 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
c6a1db6c 4924 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
11cf4d18 4925 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
05bccae2 4926
967e627a 4927 if (host_integerp (maxval, 1))
770ae6cc 4928 return type_hash_canon (tree_low_cst (maxval, 1), itype);
c6a1db6c
RS
4929 else
4930 return itype;
4931}
4932
bc15d0ef
JM
4933/* Builds a signed or unsigned integer type of precision PRECISION.
4934 Used for C bitfields whose precision does not match that of
4935 built-in target types. */
4936tree
4937build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
4938 int unsignedp)
4939{
4940 tree itype = make_node (INTEGER_TYPE);
4941
4942 TYPE_PRECISION (itype) = precision;
4943
4944 if (unsignedp)
4945 fixup_unsigned_type (itype);
4946 else
4947 fixup_signed_type (itype);
4948
4949 if (host_integerp (TYPE_MAX_VALUE (itype), 1))
4950 return type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
4951
4952 return itype;
4953}
4954
742e43a2 4955/* Create a range of some discrete type TYPE (an INTEGER_TYPE,
238a1856 4956 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
742e43a2 4957 low bound LOWVAL and high bound HIGHVAL.
0f41302f 4958 if TYPE==NULL_TREE, sizetype is used. */
c6a1db6c
RS
4959
4960tree
46c5ad27 4961build_range_type (tree type, tree lowval, tree highval)
c6a1db6c 4962{
b3694847 4963 tree itype = make_node (INTEGER_TYPE);
0fd17968 4964
742e43a2
PB
4965 TREE_TYPE (itype) = type;
4966 if (type == NULL_TREE)
4967 type = sizetype;
0fd17968 4968
742e43a2 4969 TYPE_MIN_VALUE (itype) = convert (type, lowval);
e1ee5cdc 4970 TYPE_MAX_VALUE (itype) = highval ? convert (type, highval) : NULL;
0fd17968
RK
4971
4972 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
742e43a2
PB
4973 TYPE_MODE (itype) = TYPE_MODE (type);
4974 TYPE_SIZE (itype) = TYPE_SIZE (type);
28372f41 4975 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
742e43a2 4976 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
11cf4d18 4977 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
e1ee5cdc 4978
770ae6cc
RK
4979 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
4980 return type_hash_canon (tree_low_cst (highval, 0)
4981 - tree_low_cst (lowval, 0),
4982 itype);
c6a1db6c
RS
4983 else
4984 return itype;
4985}
4986
742e43a2 4987/* Just like build_index_type, but takes lowval and highval instead
0f41302f 4988 of just highval (maxval). */
742e43a2
PB
4989
4990tree
46c5ad27 4991build_index_2_type (tree lowval, tree highval)
742e43a2 4992{
770ae6cc 4993 return build_range_type (sizetype, lowval, highval);
742e43a2
PB
4994}
4995
c6a1db6c
RS
4996/* Construct, lay out and return the type of arrays of elements with ELT_TYPE
4997 and number of elements specified by the range of values of INDEX_TYPE.
4998 If such a type has already been constructed, reuse it. */
4999
5000tree
46c5ad27 5001build_array_type (tree elt_type, tree index_type)
c6a1db6c 5002{
b3694847 5003 tree t;
fd917e0d 5004 hashval_t hashcode = 0;
c6a1db6c
RS
5005
5006 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
5007 {
5008 error ("arrays of functions are not meaningful");
5009 elt_type = integer_type_node;
5010 }
5011
c6a1db6c
RS
5012 t = make_node (ARRAY_TYPE);
5013 TREE_TYPE (t) = elt_type;
5014 TYPE_DOMAIN (t) = index_type;
4c7c0c70 5015
c6a1db6c 5016 if (index_type == 0)
4c7c0c70
AP
5017 {
5018 layout_type (t);
5019 return t;
5020 }
c6a1db6c 5021
fd917e0d
JM
5022 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
5023 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
c6a1db6c
RS
5024 t = type_hash_canon (hashcode, t);
5025
d0f062fb 5026 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
5027 layout_type (t);
5028 return t;
5029}
5030
a260abc9
DE
5031/* Return the TYPE of the elements comprising
5032 the innermost dimension of ARRAY. */
5033
5034tree
46c5ad27 5035get_inner_array_type (tree array)
a260abc9
DE
5036{
5037 tree type = TREE_TYPE (array);
5038
5039 while (TREE_CODE (type) == ARRAY_TYPE)
5040 type = TREE_TYPE (type);
5041
5042 return type;
5043}
5044
c6a1db6c
RS
5045/* Construct, lay out and return
5046 the type of functions returning type VALUE_TYPE
5047 given arguments of types ARG_TYPES.
5048 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
5049 are data type nodes for the arguments of the function.
5050 If such a type has already been constructed, reuse it. */
5051
5052tree
46c5ad27 5053build_function_type (tree value_type, tree arg_types)
c6a1db6c 5054{
b3694847 5055 tree t;
fd917e0d 5056 hashval_t hashcode = 0;
c6a1db6c 5057
c0560b8b 5058 if (TREE_CODE (value_type) == FUNCTION_TYPE)
c6a1db6c 5059 {
c0560b8b 5060 error ("function return type cannot be function");
c6a1db6c
RS
5061 value_type = integer_type_node;
5062 }
5063
5064 /* Make a node of the sort we want. */
5065 t = make_node (FUNCTION_TYPE);
5066 TREE_TYPE (t) = value_type;
5067 TYPE_ARG_TYPES (t) = arg_types;
5068
7548281d 5069 /* If we already have such a type, use the old one. */
fd917e0d
JM
5070 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
5071 hashcode = type_hash_list (arg_types, hashcode);
c6a1db6c
RS
5072 t = type_hash_canon (hashcode, t);
5073
d0f062fb 5074 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
5075 layout_type (t);
5076 return t;
5077}
5078
a98ebe2e 5079/* Build a function type. The RETURN_TYPE is the type returned by the
97ebc06f
AH
5080 function. If additional arguments are provided, they are
5081 additional argument types. The list of argument types must always
5082 be terminated by NULL_TREE. */
b4de2f7d
AH
5083
5084tree
e34d07f2 5085build_function_type_list (tree return_type, ...)
b4de2f7d
AH
5086{
5087 tree t, args, last;
e34d07f2 5088 va_list p;
b4de2f7d 5089
e34d07f2 5090 va_start (p, return_type);
b4de2f7d
AH
5091
5092 t = va_arg (p, tree);
5093 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (p, tree))
5094 args = tree_cons (NULL_TREE, t, args);
5095
f6254da4
ILT
5096 if (args == NULL_TREE)
5097 args = void_list_node;
5098 else
5099 {
5100 last = args;
5101 args = nreverse (args);
5102 TREE_CHAIN (last) = void_list_node;
5103 }
97ebc06f 5104 args = build_function_type (return_type, args);
b4de2f7d 5105
e34d07f2 5106 va_end (p);
b4de2f7d
AH
5107 return args;
5108}
5109
1281fe11
MM
5110/* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
5111 and ARGTYPES (a TREE_LIST) are the return type and arguments types
5112 for the method. An implicit additional parameter (of type
5113 pointer-to-BASETYPE) is added to the ARGTYPES. */
c6a1db6c
RS
5114
5115tree
1281fe11
MM
5116build_method_type_directly (tree basetype,
5117 tree rettype,
5118 tree argtypes)
c6a1db6c 5119{
b3694847 5120 tree t;
1281fe11 5121 tree ptype;
fd917e0d 5122 int hashcode = 0;
c6a1db6c
RS
5123
5124 /* Make a node of the sort we want. */
5125 t = make_node (METHOD_TYPE);
5126
c6a1db6c 5127 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
1281fe11
MM
5128 TREE_TYPE (t) = rettype;
5129 ptype = build_pointer_type (basetype);
c6a1db6c
RS
5130
5131 /* The actual arglist for this function includes a "hidden" argument
5132 which is "this". Put it into the list of argument types. */
1281fe11
MM
5133 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
5134 TYPE_ARG_TYPES (t) = argtypes;
c6a1db6c 5135
7548281d 5136 /* If we already have such a type, use the old one. */
fd917e0d
JM
5137 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
5138 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
5139 hashcode = type_hash_list (argtypes, hashcode);
c6a1db6c
RS
5140 t = type_hash_canon (hashcode, t);
5141
d0f062fb 5142 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
5143 layout_type (t);
5144
5145 return t;
5146}
5147
1281fe11
MM
5148/* Construct, lay out and return the type of methods belonging to class
5149 BASETYPE and whose arguments and values are described by TYPE.
5150 If that type exists already, reuse it.
5151 TYPE must be a FUNCTION_TYPE node. */
5152
5153tree
5154build_method_type (tree basetype, tree type)
5155{
1e128c5f 5156 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1281fe11 5157
9f63daea 5158 return build_method_type_directly (basetype,
1281fe11
MM
5159 TREE_TYPE (type),
5160 TYPE_ARG_TYPES (type));
5161}
5162
86aed40b
RS
5163/* Construct, lay out and return the type of offsets to a value
5164 of type TYPE, within an object of type BASETYPE.
5165 If a suitable offset type exists already, reuse it. */
c6a1db6c
RS
5166
5167tree
46c5ad27 5168build_offset_type (tree basetype, tree type)
c6a1db6c 5169{
b3694847 5170 tree t;
fd917e0d 5171 hashval_t hashcode = 0;
c6a1db6c
RS
5172
5173 /* Make a node of the sort we want. */
5174 t = make_node (OFFSET_TYPE);
5175
5176 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
5177 TREE_TYPE (t) = type;
5178
7548281d 5179 /* If we already have such a type, use the old one. */
fd917e0d
JM
5180 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
5181 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
c6a1db6c
RS
5182 t = type_hash_canon (hashcode, t);
5183
d0f062fb 5184 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
5185 layout_type (t);
5186
5187 return t;
5188}
5189
5190/* Create a complex type whose components are COMPONENT_TYPE. */
5191
5192tree
46c5ad27 5193build_complex_type (tree component_type)
c6a1db6c 5194{
b3694847 5195 tree t;
fd917e0d 5196 hashval_t hashcode;
c6a1db6c
RS
5197
5198 /* Make a node of the sort we want. */
5199 t = make_node (COMPLEX_TYPE);
5200
5201 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
c6a1db6c 5202
7548281d 5203 /* If we already have such a type, use the old one. */
fd917e0d 5204 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
c6a1db6c
RS
5205 t = type_hash_canon (hashcode, t);
5206
d0f062fb 5207 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
5208 layout_type (t);
5209
405f63da
MM
5210 /* If we are writing Dwarf2 output we need to create a name,
5211 since complex is a fundamental type. */
7a0c8d71
DR
5212 if ((write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
5213 && ! TYPE_NAME (t))
405f63da 5214 {
ec0ce6e2 5215 const char *name;
405f63da
MM
5216 if (component_type == char_type_node)
5217 name = "complex char";
5218 else if (component_type == signed_char_type_node)
5219 name = "complex signed char";
5220 else if (component_type == unsigned_char_type_node)
5221 name = "complex unsigned char";
5222 else if (component_type == short_integer_type_node)
5223 name = "complex short int";
5224 else if (component_type == short_unsigned_type_node)
5225 name = "complex short unsigned int";
5226 else if (component_type == integer_type_node)
5227 name = "complex int";
5228 else if (component_type == unsigned_type_node)
5229 name = "complex unsigned int";
5230 else if (component_type == long_integer_type_node)
5231 name = "complex long int";
5232 else if (component_type == long_unsigned_type_node)
5233 name = "complex long unsigned int";
5234 else if (component_type == long_long_integer_type_node)
5235 name = "complex long long int";
5236 else if (component_type == long_long_unsigned_type_node)
5237 name = "complex long long unsigned int";
5238 else
d4b60170 5239 name = 0;
405f63da 5240
d4b60170 5241 if (name != 0)
405f63da
MM
5242 TYPE_NAME (t) = get_identifier (name);
5243 }
5244
7548281d 5245 return build_qualified_type (t, TYPE_QUALS (component_type));
c6a1db6c
RS
5246}
5247\f
5248/* Return OP, stripped of any conversions to wider types as much as is safe.
5249 Converting the value back to OP's type makes a value equivalent to OP.
5250
5251 If FOR_TYPE is nonzero, we return a value which, if converted to
5252 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
5253
5254 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
5255 narrowest type that can hold the value, even if they don't exactly fit.
5256 Otherwise, bit-field references are changed to a narrower type
5257 only if they can be fetched directly from memory in that type.
5258
5259 OP must have integer, real or enumeral type. Pointers are not allowed!
5260
5261 There are some cases where the obvious value we could return
dc478a5d 5262 would regenerate to OP if converted to OP's type,
c6a1db6c
RS
5263 but would not extend like OP to wider types.
5264 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
5265 For example, if OP is (unsigned short)(signed char)-1,
5266 we avoid returning (signed char)-1 if FOR_TYPE is int,
5267 even though extending that to an unsigned short would regenerate OP,
5268 since the result of extending (signed char)-1 to (int)
5269 is different from (int) OP. */
5270
5271tree
46c5ad27 5272get_unwidened (tree op, tree for_type)
c6a1db6c
RS
5273{
5274 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
b3694847
SS
5275 tree type = TREE_TYPE (op);
5276 unsigned final_prec
c6a1db6c 5277 = TYPE_PRECISION (for_type != 0 ? for_type : type);
b3694847 5278 int uns
c6a1db6c
RS
5279 = (for_type != 0 && for_type != type
5280 && final_prec > TYPE_PRECISION (type)
8df83eae 5281 && TYPE_UNSIGNED (type));
b3694847 5282 tree win = op;
c6a1db6c 5283
362cb1bb
RS
5284 while (TREE_CODE (op) == NOP_EXPR
5285 || TREE_CODE (op) == CONVERT_EXPR)
c6a1db6c 5286 {
145357a4
JJ
5287 int bitschange;
5288
5289 /* TYPE_PRECISION on vector types has different meaning
5290 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
5291 so avoid them here. */
5292 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
5293 break;
5294
5295 bitschange = TYPE_PRECISION (TREE_TYPE (op))
5296 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
c6a1db6c
RS
5297
5298 /* Truncations are many-one so cannot be removed.
5299 Unless we are later going to truncate down even farther. */
5300 if (bitschange < 0
5301 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
5302 break;
5303
5304 /* See what's inside this conversion. If we decide to strip it,
5305 we will set WIN. */
5306 op = TREE_OPERAND (op, 0);
5307
5308 /* If we have not stripped any zero-extensions (uns is 0),
5309 we can strip any kind of extension.
5310 If we have previously stripped a zero-extension,
5311 only zero-extensions can safely be stripped.
5312 Any extension can be stripped if the bits it would produce
5313 are all going to be discarded later by truncating to FOR_TYPE. */
5314
5315 if (bitschange > 0)
5316 {
5317 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
5318 win = op;
8df83eae 5319 /* TYPE_UNSIGNED says whether this is a zero-extension.
c6a1db6c
RS
5320 Let's avoid computing it if it does not affect WIN
5321 and if UNS will not be needed again. */
362cb1bb
RS
5322 if ((uns
5323 || TREE_CODE (op) == NOP_EXPR
5324 || TREE_CODE (op) == CONVERT_EXPR)
8df83eae 5325 && TYPE_UNSIGNED (TREE_TYPE (op)))
c6a1db6c
RS
5326 {
5327 uns = 1;
5328 win = op;
5329 }
5330 }
5331 }
5332
5333 if (TREE_CODE (op) == COMPONENT_REF
5334 /* Since type_for_size always gives an integer type. */
02a27e82 5335 && TREE_CODE (type) != REAL_TYPE
956d6950 5336 /* Don't crash if field not laid out yet. */
3401c26b
RK
5337 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
5338 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
c6a1db6c 5339 {
05bccae2 5340 unsigned int innerprec
3401c26b 5341 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
a150de29 5342 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8df83eae 5343 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
ae2bcd98 5344 type = lang_hooks.types.type_for_size (innerprec, unsignedp);
c6a1db6c
RS
5345
5346 /* We can get this structure field in the narrowest type it fits in.
5347 If FOR_TYPE is 0, do this only for a field that matches the
5348 narrower type exactly and is aligned for it
5349 The resulting extension to its nominal type (a fullword type)
5350 must fit the same conditions as for other extensions. */
5351
bb3f5384
RS
5352 if (type != 0
5353 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type), TYPE_SIZE (TREE_TYPE (op)))
c6a1db6c 5354 && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
bb3f5384 5355 && (! uns || final_prec <= innerprec || unsignedp))
c6a1db6c 5356 {
44de5aeb
RK
5357 win = build3 (COMPONENT_REF, type, TREE_OPERAND (op, 0),
5358 TREE_OPERAND (op, 1), NULL_TREE);
c6a1db6c
RS
5359 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
5360 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
c6a1db6c
RS
5361 }
5362 }
3401c26b 5363
c6a1db6c
RS
5364 return win;
5365}
5366\f
5367/* Return OP or a simpler expression for a narrower value
5368 which can be sign-extended or zero-extended to give back OP.
5369 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
5370 or 0 if the value should be sign-extended. */
5371
5372tree
46c5ad27 5373get_narrower (tree op, int *unsignedp_ptr)
c6a1db6c 5374{
b3694847 5375 int uns = 0;
c6a1db6c 5376 int first = 1;
b3694847 5377 tree win = op;
beed8fc0 5378 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
c6a1db6c
RS
5379
5380 while (TREE_CODE (op) == NOP_EXPR)
5381 {
b3694847 5382 int bitschange
d4b60170
RK
5383 = (TYPE_PRECISION (TREE_TYPE (op))
5384 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
c6a1db6c
RS
5385
5386 /* Truncations are many-one so cannot be removed. */
5387 if (bitschange < 0)
5388 break;
5389
5390 /* See what's inside this conversion. If we decide to strip it,
5391 we will set WIN. */
c6a1db6c
RS
5392
5393 if (bitschange > 0)
5394 {
0a71919d 5395 op = TREE_OPERAND (op, 0);
c6a1db6c
RS
5396 /* An extension: the outermost one can be stripped,
5397 but remember whether it is zero or sign extension. */
5398 if (first)
8df83eae 5399 uns = TYPE_UNSIGNED (TREE_TYPE (op));
c6a1db6c
RS
5400 /* Otherwise, if a sign extension has been stripped,
5401 only sign extensions can now be stripped;
5402 if a zero extension has been stripped, only zero-extensions. */
8df83eae 5403 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
c6a1db6c
RS
5404 break;
5405 first = 0;
5406 }
e02b9957
DE
5407 else /* bitschange == 0 */
5408 {
5409 /* A change in nominal type can always be stripped, but we must
5410 preserve the unsignedness. */
5411 if (first)
8df83eae 5412 uns = TYPE_UNSIGNED (TREE_TYPE (op));
e02b9957 5413 first = 0;
0a71919d 5414 op = TREE_OPERAND (op, 0);
beed8fc0
AO
5415 /* Keep trying to narrow, but don't assign op to win if it
5416 would turn an integral type into something else. */
5417 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
5418 continue;
e02b9957 5419 }
c6a1db6c
RS
5420
5421 win = op;
5422 }
5423
5424 if (TREE_CODE (op) == COMPONENT_REF
5425 /* Since type_for_size always gives an integer type. */
0fba7208
RK
5426 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
5427 /* Ensure field is laid out already. */
44de5aeb
RK
5428 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
5429 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
c6a1db6c 5430 {
0fba7208
RK
5431 unsigned HOST_WIDE_INT innerprec
5432 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
a150de29 5433 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8df83eae 5434 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
ae2bcd98 5435 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
c6a1db6c
RS
5436
5437 /* We can get this structure field in a narrower type that fits it,
5438 but the resulting extension to its nominal type (a fullword type)
5439 must satisfy the same conditions as for other extensions.
5440
5441 Do this only for fields that are aligned (not bit-fields),
5442 because when bit-field insns will be used there is no
5443 advantage in doing this. */
5444
5445 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
5446 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
a150de29 5447 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
c6a1db6c
RS
5448 && type != 0)
5449 {
5450 if (first)
a150de29 5451 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
44de5aeb
RK
5452 win = build3 (COMPONENT_REF, type, TREE_OPERAND (op, 0),
5453 TREE_OPERAND (op, 1), NULL_TREE);
c6a1db6c
RS
5454 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
5455 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
c6a1db6c
RS
5456 }
5457 }
5458 *unsignedp_ptr = uns;
5459 return win;
5460}
5461\f
c6a1db6c
RS
5462/* Nonzero if integer constant C has a value that is permissible
5463 for type TYPE (an INTEGER_TYPE). */
5464
5465int
46c5ad27 5466int_fits_type_p (tree c, tree type)
c6a1db6c 5467{
4694840a
OH
5468 tree type_low_bound = TYPE_MIN_VALUE (type);
5469 tree type_high_bound = TYPE_MAX_VALUE (type);
4634cf7e
RS
5470 bool ok_for_low_bound, ok_for_high_bound;
5471 tree tmp;
4694840a
OH
5472
5473 /* If at least one bound of the type is a constant integer, we can check
5474 ourselves and maybe make a decision. If no such decision is possible, but
5475 this type is a subtype, try checking against that. Otherwise, use
5476 force_fit_type, which checks against the precision.
5477
5478 Compute the status for each possibly constant bound, and return if we see
5479 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
5480 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
5481 for "constant known to fit". */
5482
4694840a
OH
5483 /* Check if C >= type_low_bound. */
5484 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
3401c26b 5485 {
4634cf7e 5486 if (tree_int_cst_lt (c, type_low_bound))
4694840a 5487 return 0;
4634cf7e 5488 ok_for_low_bound = true;
3401c26b 5489 }
4634cf7e
RS
5490 else
5491 ok_for_low_bound = false;
4694840a
OH
5492
5493 /* Check if c <= type_high_bound. */
5494 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
5495 {
4634cf7e 5496 if (tree_int_cst_lt (type_high_bound, c))
4694840a 5497 return 0;
4634cf7e 5498 ok_for_high_bound = true;
4694840a 5499 }
4634cf7e
RS
5500 else
5501 ok_for_high_bound = false;
4694840a
OH
5502
5503 /* If the constant fits both bounds, the result is known. */
4634cf7e 5504 if (ok_for_low_bound && ok_for_high_bound)
4694840a
OH
5505 return 1;
5506
4634cf7e
RS
5507 /* Perform some generic filtering which may allow making a decision
5508 even if the bounds are not constant. First, negative integers
5509 never fit in unsigned types, */
5510 if (TYPE_UNSIGNED (type) && tree_int_cst_sgn (c) < 0)
5511 return 0;
5512
5513 /* Second, narrower types always fit in wider ones. */
5514 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
5515 return 1;
5516
5517 /* Third, unsigned integers with top bit set never fit signed types. */
5518 if (! TYPE_UNSIGNED (type)
5519 && TYPE_UNSIGNED (TREE_TYPE (c))
5520 && tree_int_cst_msb (c))
5521 return 0;
5522
4694840a 5523 /* If we haven't been able to decide at this point, there nothing more we
d25f3b83
EB
5524 can check ourselves here. Look at the base type if we have one and it
5525 has the same precision. */
5526 if (TREE_CODE (type) == INTEGER_TYPE
5527 && TREE_TYPE (type) != 0
5528 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
a8765ae7 5529 return int_fits_type_p (c, TREE_TYPE (type));
46c5ad27 5530
4694840a 5531 /* Or to force_fit_type, if nothing else. */
4634cf7e
RS
5532 tmp = copy_node (c);
5533 TREE_TYPE (tmp) = type;
5534 tmp = force_fit_type (tmp, -1, false, false);
5535 return TREE_INT_CST_HIGH (tmp) == TREE_INT_CST_HIGH (c)
5536 && TREE_INT_CST_LOW (tmp) == TREE_INT_CST_LOW (c);
c6a1db6c
RS
5537}
5538
5377d5ba
RK
5539/* Subprogram of following function. Called by walk_tree.
5540
5541 Return *TP if it is an automatic variable or parameter of the
5542 function passed in as DATA. */
5543
5544static tree
5545find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
5546{
5547 tree fn = (tree) data;
5548
5549 if (TYPE_P (*tp))
5550 *walk_subtrees = 0;
5551
6615c446
JO
5552 else if (DECL_P (*tp)
5553 && lang_hooks.tree_inlining.auto_var_in_fn_p (*tp, fn))
5377d5ba
RK
5554 return *tp;
5555
5556 return NULL_TREE;
5557}
5558
8bcefb43 5559/* Returns true if T is, contains, or refers to a type with variable
5377d5ba
RK
5560 size. If FN is nonzero, only return true if a modifier of the type
5561 or position of FN is a variable or parameter inside FN.
5562
5563 This concept is more general than that of C99 'variably modified types':
5564 in C99, a struct type is never variably modified because a VLA may not
5565 appear as a structure member. However, in GNU C code like:
46c5ad27 5566
8bcefb43
ZW
5567 struct S { int i[f()]; };
5568
5569 is valid, and other languages may define similar constructs. */
5570
5571bool
5377d5ba 5572variably_modified_type_p (tree type, tree fn)
8bcefb43 5573{
3c2a7a6a
RH
5574 tree t;
5575
5377d5ba
RK
5576/* Test if T is either variable (if FN is zero) or an expression containing
5577 a variable in FN. */
5578#define RETURN_TRUE_IF_VAR(T) \
5579 do { tree _t = (T); \
5580 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
5581 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
5582 return true; } while (0)
5583
c246c65d
JM
5584 if (type == error_mark_node)
5585 return false;
5586
46c5ad27 5587 /* If TYPE itself has variable size, it is variably modified.
8bcefb43
ZW
5588
5589 We do not yet have a representation of the C99 '[*]' syntax.
5590 When a representation is chosen, this function should be modified
5591 to test for that case as well. */
5377d5ba
RK
5592 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
5593 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT(type));
8bcefb43 5594
3c2a7a6a
RH
5595 switch (TREE_CODE (type))
5596 {
5597 case POINTER_TYPE:
5598 case REFERENCE_TYPE:
5599 case ARRAY_TYPE:
1c9766da 5600 case VECTOR_TYPE:
5377d5ba 5601 if (variably_modified_type_p (TREE_TYPE (type), fn))
1c9766da
RK
5602 return true;
5603 break;
46c5ad27 5604
3c2a7a6a
RH
5605 case FUNCTION_TYPE:
5606 case METHOD_TYPE:
5607 /* If TYPE is a function type, it is variably modified if any of the
5608 parameters or the return type are variably modified. */
5377d5ba 5609 if (variably_modified_type_p (TREE_TYPE (type), fn))
1c9766da 5610 return true;
8bcefb43 5611
1c9766da
RK
5612 for (t = TYPE_ARG_TYPES (type);
5613 t && t != void_list_node;
5614 t = TREE_CHAIN (t))
5377d5ba 5615 if (variably_modified_type_p (TREE_VALUE (t), fn))
3c2a7a6a 5616 return true;
3c2a7a6a 5617 break;
8bcefb43 5618
3c2a7a6a 5619 case INTEGER_TYPE:
1c9766da
RK
5620 case REAL_TYPE:
5621 case ENUMERAL_TYPE:
5622 case BOOLEAN_TYPE:
5623 case CHAR_TYPE:
3c2a7a6a
RH
5624 /* Scalar types are variably modified if their end points
5625 aren't constant. */
5377d5ba
RK
5626 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
5627 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
1c9766da
RK
5628 break;
5629
5630 case RECORD_TYPE:
5631 case UNION_TYPE:
5632 case QUAL_UNION_TYPE:
5633 /* We can't see if any of the field are variably-modified by the
5634 definition we normally use, since that would produce infinite
5635 recursion via pointers. */
5636 /* This is variably modified if some field's type is. */
5637 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
5638 if (TREE_CODE (t) == FIELD_DECL)
5639 {
5377d5ba
RK
5640 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
5641 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
5642 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
1c9766da 5643
5377d5ba
RK
5644 if (TREE_CODE (type) == QUAL_UNION_TYPE)
5645 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
1c9766da
RK
5646 }
5647 break;
3c2a7a6a
RH
5648
5649 default:
5650 break;
8bcefb43
ZW
5651 }
5652
5653 /* The current language may have other cases to check, but in general,
5654 all other types are not variably modified. */
5377d5ba
RK
5655 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
5656
5657#undef RETURN_TRUE_IF_VAR
8bcefb43
ZW
5658}
5659
140b60b4 5660/* Given a DECL or TYPE, return the scope in which it was declared, or
77a02dba 5661 NULL_TREE if there is no containing scope. */
140b60b4
MM
5662
5663tree
46c5ad27 5664get_containing_scope (tree t)
140b60b4
MM
5665{
5666 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
5667}
5668
bfa30b22 5669/* Return the innermost context enclosing DECL that is
c6a1db6c
RS
5670 a FUNCTION_DECL, or zero if none. */
5671
5672tree
46c5ad27 5673decl_function_context (tree decl)
c6a1db6c
RS
5674{
5675 tree context;
5676
bfa30b22 5677 if (TREE_CODE (decl) == ERROR_MARK)
c6a1db6c
RS
5678 return 0;
5679
6ff7fb95
JM
5680 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
5681 where we look up the function at runtime. Such functions always take
5682 a first argument of type 'pointer to real context'.
5683
5684 C++ should really be fixed to use DECL_CONTEXT for the real context,
5685 and use something else for the "virtual context". */
5686 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
77a02dba
RK
5687 context
5688 = TYPE_MAIN_VARIANT
5689 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
c6a1db6c 5690 else
bfa30b22 5691 context = DECL_CONTEXT (decl);
c6a1db6c
RS
5692
5693 while (context && TREE_CODE (context) != FUNCTION_DECL)
5694 {
140b60b4 5695 if (TREE_CODE (context) == BLOCK)
c6a1db6c 5696 context = BLOCK_SUPERCONTEXT (context);
dc478a5d 5697 else
140b60b4 5698 context = get_containing_scope (context);
c6a1db6c
RS
5699 }
5700
5701 return context;
5702}
5703
bfa30b22 5704/* Return the innermost context enclosing DECL that is
c0560b8b 5705 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
c6a1db6c
RS
5706 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
5707
5708tree
46c5ad27 5709decl_type_context (tree decl)
c6a1db6c 5710{
bfa30b22 5711 tree context = DECL_CONTEXT (decl);
c6a1db6c
RS
5712
5713 while (context)
d1bd0ded
GK
5714 switch (TREE_CODE (context))
5715 {
5716 case NAMESPACE_DECL:
5717 case TRANSLATION_UNIT_DECL:
41077ce4 5718 return NULL_TREE;
7efda054 5719
d1bd0ded
GK
5720 case RECORD_TYPE:
5721 case UNION_TYPE:
5722 case QUAL_UNION_TYPE:
c6a1db6c 5723 return context;
9f63daea 5724
d1bd0ded
GK
5725 case TYPE_DECL:
5726 case FUNCTION_DECL:
c6a1db6c 5727 context = DECL_CONTEXT (context);
d1bd0ded 5728 break;
9f63daea 5729
d1bd0ded 5730 case BLOCK:
c6a1db6c 5731 context = BLOCK_SUPERCONTEXT (context);
d1bd0ded 5732 break;
9f63daea 5733
d1bd0ded 5734 default:
1e128c5f 5735 gcc_unreachable ();
d1bd0ded
GK
5736 }
5737
c6a1db6c
RS
5738 return NULL_TREE;
5739}
5740
582db8e4 5741/* CALL is a CALL_EXPR. Return the declaration for the function
dc478a5d 5742 called, or NULL_TREE if the called function cannot be
582db8e4
MM
5743 determined. */
5744
5745tree
46c5ad27 5746get_callee_fndecl (tree call)
582db8e4
MM
5747{
5748 tree addr;
5749
5750 /* It's invalid to call this function with anything but a
5751 CALL_EXPR. */
1e128c5f 5752 gcc_assert (TREE_CODE (call) == CALL_EXPR);
582db8e4
MM
5753
5754 /* The first operand to the CALL is the address of the function
5755 called. */
5756 addr = TREE_OPERAND (call, 0);
5757
c083cf9a
JM
5758 STRIP_NOPS (addr);
5759
5760 /* If this is a readonly function pointer, extract its initial value. */
5761 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
5762 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
5763 && DECL_INITIAL (addr))
5764 addr = DECL_INITIAL (addr);
5765
582db8e4
MM
5766 /* If the address is just `&f' for some function `f', then we know
5767 that `f' is being called. */
5768 if (TREE_CODE (addr) == ADDR_EXPR
5769 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
a1a0fd4e 5770 return TREE_OPERAND (addr, 0);
9f63daea 5771
83d865c5
AH
5772 /* We couldn't figure out what was being called. Maybe the front
5773 end has some idea. */
ae2bcd98 5774 return lang_hooks.lang_get_callee_fndecl (call);
582db8e4
MM
5775}
5776
d1485032
JM
5777/* Print debugging information about tree nodes generated during the compile,
5778 and any language-specific information. */
5779
c6a1db6c 5780void
46c5ad27 5781dump_tree_statistics (void)
c6a1db6c 5782{
5e9defae 5783#ifdef GATHER_STATISTICS
c6a1db6c
RS
5784 int i;
5785 int total_nodes, total_bytes;
5e9defae 5786#endif
c6a1db6c
RS
5787
5788 fprintf (stderr, "\n??? tree nodes created\n\n");
5789#ifdef GATHER_STATISTICS
adc4adcd
GP
5790 fprintf (stderr, "Kind Nodes Bytes\n");
5791 fprintf (stderr, "---------------------------------------\n");
c6a1db6c
RS
5792 total_nodes = total_bytes = 0;
5793 for (i = 0; i < (int) all_kinds; i++)
5794 {
adc4adcd 5795 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
c6a1db6c
RS
5796 tree_node_counts[i], tree_node_sizes[i]);
5797 total_nodes += tree_node_counts[i];
5798 total_bytes += tree_node_sizes[i];
5799 }
adc4adcd
GP
5800 fprintf (stderr, "---------------------------------------\n");
5801 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
5802 fprintf (stderr, "---------------------------------------\n");
6de9cd9a
DN
5803 ssanames_print_statistics ();
5804 phinodes_print_statistics ();
c6a1db6c
RS
5805#else
5806 fprintf (stderr, "(No per-node statistics)\n");
5807#endif
d88f311b 5808 print_type_hash_statistics ();
f991abd1 5809 print_debug_expr_statistics ();
833b3afe 5810 print_value_expr_statistics ();
0b494699 5811 print_restrict_base_statistics ();
ae2bcd98 5812 lang_hooks.print_statistics ();
c6a1db6c 5813}
bb288278 5814\f
2ce3c6c6 5815#define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
bb288278 5816
2aab7ceb 5817/* Generate a crc32 of a string. */
e2c31432 5818
2aab7ceb
NS
5819unsigned
5820crc32_string (unsigned chksum, const char *string)
e2c31432 5821{
2aab7ceb
NS
5822 do
5823 {
5824 unsigned value = *string << 24;
5825 unsigned ix;
9f63daea 5826
2aab7ceb
NS
5827 for (ix = 8; ix--; value <<= 1)
5828 {
5829 unsigned feedback;
9f63daea 5830
2aab7ceb
NS
5831 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
5832 chksum <<= 1;
5833 chksum ^= feedback;
5834 }
5835 }
5836 while (*string++);
5837 return chksum;
e2c31432
JM
5838}
5839
881c6935
JM
5840/* P is a string that will be used in a symbol. Mask out any characters
5841 that are not valid in that context. */
5842
5843void
46c5ad27 5844clean_symbol_name (char *p)
881c6935
JM
5845{
5846 for (; *p; p++)
0df6c2c7 5847 if (! (ISALNUM (*p)
881c6935
JM
5848#ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
5849 || *p == '$'
5850#endif
5851#ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
5852 || *p == '.'
5853#endif
0df6c2c7 5854 ))
881c6935
JM
5855 *p = '_';
5856}
3b03c671 5857
e2c31432
JM
5858/* Generate a name for a function unique to this translation unit.
5859 TYPE is some string to identify the purpose of this function to the
5860 linker or collect2. */
bb288278
PB
5861
5862tree
46c5ad27 5863get_file_function_name_long (const char *type)
bb288278
PB
5864{
5865 char *buf;
3b304f5b
ZW
5866 const char *p;
5867 char *q;
bb288278
PB
5868
5869 if (first_global_object_name)
e21d6c60
JDA
5870 {
5871 p = first_global_object_name;
5872
5873 /* For type 'F', the generated name must be unique not only to this
5874 translation unit but also to any given link. Since global names
5875 can be overloaded, we concatenate the first global object name
5876 with a string derived from the file name of this object. */
5877 if (!strcmp (type, "F"))
5878 {
5879 const char *file = main_input_filename;
5880
5881 if (! file)
5882 file = input_filename;
5883
5884 q = alloca (strlen (p) + 10);
5885 sprintf (q, "%s_%08X", p, crc32_string (0, file));
5886
5887 p = q;
5888 }
5889 }
bb288278 5890 else
e2c31432
JM
5891 {
5892 /* We don't have anything that we know to be unique to this translation
5893 unit, so use what we do have and throw in some randomness. */
2aab7ceb 5894 unsigned len;
37b37199
KG
5895 const char *name = weak_global_object_name;
5896 const char *file = main_input_filename;
e2c31432
JM
5897
5898 if (! name)
5899 name = "";
5900 if (! file)
5901 file = input_filename;
5902
2aab7ceb 5903 len = strlen (file);
679c4092 5904 q = alloca (9 * 2 + len + 1);
2aab7ceb
NS
5905 memcpy (q, file, len + 1);
5906 clean_symbol_name (q);
5907
2aab7ceb
NS
5908 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
5909 crc32_string (0, flag_random_seed));
e2c31432 5910
3b304f5b 5911 p = q;
e2c31432 5912 }
bb288278 5913
703ad42b 5914 buf = alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p) + strlen (type));
bb288278 5915
dc478a5d 5916 /* Set up the name of the file-level functions we may need.
d4b60170 5917 Use a global object (which is already required to be unique over
bb288278 5918 the program) rather than the file name (which imposes extra
d4b60170 5919 constraints). */
2ce3c6c6 5920 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
bb288278 5921
bb288278
PB
5922 return get_identifier (buf);
5923}
2ce3c6c6
JM
5924
5925/* If KIND=='I', return a suitable global initializer (constructor) name.
5926 If KIND=='D', return a suitable global clean-up (destructor) name. */
5927
5928tree
46c5ad27 5929get_file_function_name (int kind)
2ce3c6c6
JM
5930{
5931 char p[2];
d4b60170 5932
2ce3c6c6
JM
5933 p[0] = kind;
5934 p[1] = 0;
5935
5936 return get_file_function_name_long (p);
5937}
bca949e2 5938\f
f4524c9e 5939#if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
eb34af89 5940
086e3095 5941/* Complain that the tree code of NODE does not match the expected 0
ea1763b1
NS
5942 terminated list of trailing codes. The trailing code list can be
5943 empty, for a more vague error message. FILE, LINE, and FUNCTION
5944 are of the caller. */
dc478a5d 5945
8f985ec4 5946void
086e3095
NS
5947tree_check_failed (const tree node, const char *file,
5948 int line, const char *function, ...)
5949{
5950 va_list args;
5951 char *buffer;
5952 unsigned length = 0;
5953 int code;
5954
5955 va_start (args, function);
5956 while ((code = va_arg (args, int)))
5957 length += 4 + strlen (tree_code_name[code]);
5958 va_end (args);
ea1763b1 5959 if (length)
086e3095 5960 {
ea1763b1
NS
5961 va_start (args, function);
5962 length += strlen ("expected ");
5963 buffer = alloca (length);
5964 length = 0;
5965 while ((code = va_arg (args, int)))
086e3095 5966 {
ea1763b1
NS
5967 const char *prefix = length ? " or " : "expected ";
5968
5969 strcpy (buffer + length, prefix);
5970 length += strlen (prefix);
5971 strcpy (buffer + length, tree_code_name[code]);
5972 length += strlen (tree_code_name[code]);
086e3095 5973 }
ea1763b1 5974 va_end (args);
086e3095 5975 }
ea1763b1
NS
5976 else
5977 buffer = (char *)"unexpected node";
9f63daea 5978
ea1763b1 5979 internal_error ("tree check: %s, have %s in %s, at %s:%d",
086e3095 5980 buffer, tree_code_name[TREE_CODE (node)],
eb34af89
RK
5981 function, trim_filename (file), line);
5982}
5983
086e3095
NS
5984/* Complain that the tree code of NODE does match the expected 0
5985 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
5986 the caller. */
eb34af89
RK
5987
5988void
086e3095
NS
5989tree_not_check_failed (const tree node, const char *file,
5990 int line, const char *function, ...)
5991{
5992 va_list args;
5993 char *buffer;
5994 unsigned length = 0;
5995 int code;
5996
5997 va_start (args, function);
5998 while ((code = va_arg (args, int)))
5999 length += 4 + strlen (tree_code_name[code]);
6000 va_end (args);
6001 va_start (args, function);
6002 buffer = alloca (length);
6003 length = 0;
6004 while ((code = va_arg (args, int)))
6005 {
6006 if (length)
6007 {
6008 strcpy (buffer + length, " or ");
6009 length += 4;
6010 }
6011 strcpy (buffer + length, tree_code_name[code]);
6012 length += strlen (tree_code_name[code]);
6013 }
6014 va_end (args);
9f63daea 6015
086e3095
NS
6016 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
6017 buffer, tree_code_name[TREE_CODE (node)],
eb34af89
RK
6018 function, trim_filename (file), line);
6019}
6020
eb34af89 6021/* Similar to tree_check_failed, except that we check for a class of tree
9ec36da5 6022 code, given in CL. */
dc478a5d 6023
8f985ec4 6024void
6615c446
JO
6025tree_class_check_failed (const tree node, const enum tree_code_class cl,
6026 const char *file, int line, const char *function)
12b195d9 6027{
fce687f8 6028 internal_error
6615c446
JO
6029 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
6030 TREE_CODE_CLASS_STRING (cl),
6031 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
fce687f8 6032 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8f985ec4 6033}
dd5827cb
ILT
6034
6035/* Similar to tree_check_failed, except that we check that a tree does
6036 not have the specified code, given in CL. */
6037
6038void
6039tree_not_class_check_failed (const tree node, const enum tree_code_class cl,
6040 const char *file, int line, const char *function)
6041{
6042 internal_error
6043 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
6044 TREE_CODE_CLASS_STRING (cl),
6045 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
6046 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
6047}
6048
820cc88f
DB
6049#undef DEFTREESTRUCT
6050#define DEFTREESTRUCT(VAL, NAME) NAME,
6051
6052static const char *ts_enum_names[] = {
6053#include "treestruct.def"
6054};
6055#undef DEFTREESTRUCT
6056
6057#define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
6058
6059/* Similar to tree_class_check_failed, except that we check for
6060 whether CODE contains the tree structure identified by EN. */
6061
6062void
6063tree_contains_struct_check_failed (const tree node,
6064 const enum tree_node_structure_enum en,
6065 const char *file, int line,
6066 const char *function)
6067{
6068 internal_error
6069 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
6070 TS_ENUM_NAME(en),
6071 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
6072}
6073
8f985ec4 6074
fa7b533b
ZW
6075/* Similar to above, except that the check is for the bounds of a TREE_VEC's
6076 (dynamically sized) vector. */
6077
6078void
46c5ad27
AJ
6079tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
6080 const char *function)
fa7b533b
ZW
6081{
6082 internal_error
6083 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
6084 idx + 1, len, function, trim_filename (file), line);
6085}
6086
6de9cd9a
DN
6087/* Similar to above, except that the check is for the bounds of a PHI_NODE's
6088 (dynamically sized) vector. */
6089
6090void
6091phi_node_elt_check_failed (int idx, int len, const char *file, int line,
6092 const char *function)
6093{
6094 internal_error
6095 ("tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d",
6096 idx + 1, len, function, trim_filename (file), line);
6097}
6098
06790e5f
ZW
6099/* Similar to above, except that the check is for the bounds of the operand
6100 vector of an expression node. */
6101
6102void
46c5ad27
AJ
6103tree_operand_check_failed (int idx, enum tree_code code, const char *file,
6104 int line, const char *function)
06790e5f
ZW
6105{
6106 internal_error
6107 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
6108 idx + 1, tree_code_name[code], TREE_CODE_LENGTH (code),
6109 function, trim_filename (file), line);
6110}
f4524c9e 6111#endif /* ENABLE_TREE_CHECKING */
81b3411c 6112\f
26277d41
PB
6113/* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
6114 and mapped to the machine mode MODE. Initialize its fields and build
6115 the information necessary for debugging output. */
dc478a5d 6116
26277d41
PB
6117static tree
6118make_vector_type (tree innertype, int nunits, enum machine_mode mode)
4061f623 6119{
26277d41
PB
6120 tree t = make_node (VECTOR_TYPE);
6121
d70b8c3a 6122 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
a4e8ea7f 6123 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
26277d41 6124 TYPE_MODE (t) = mode;
d70b8c3a
PB
6125 TYPE_READONLY (t) = TYPE_READONLY (innertype);
6126 TYPE_VOLATILE (t) = TYPE_VOLATILE (innertype);
6127
4061f623
BS
6128 layout_type (t);
6129
6130 {
7d60be94 6131 tree index = build_int_cst (NULL_TREE, nunits - 1);
26277d41 6132 tree array = build_array_type (innertype, build_index_type (index));
4061f623
BS
6133 tree rt = make_node (RECORD_TYPE);
6134
6135 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
6136 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
6137 layout_type (rt);
6138 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
6139 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
6140 the representation type, and we want to find that die when looking up
6141 the vector type. This is most easily achieved by making the TYPE_UID
6142 numbers equal. */
6143 TYPE_UID (rt) = TYPE_UID (t);
6144 }
26277d41 6145
d70b8c3a
PB
6146 /* Build our main variant, based on the main variant of the inner type. */
6147 if (TYPE_MAIN_VARIANT (innertype) != innertype)
6148 {
6149 tree innertype_main_variant = TYPE_MAIN_VARIANT (innertype);
6150 unsigned int hash = TYPE_HASH (innertype_main_variant);
6151 TYPE_MAIN_VARIANT (t)
6152 = type_hash_canon (hash, make_vector_type (innertype_main_variant,
6153 nunits, mode));
6154 }
6155
26277d41 6156 return t;
4061f623
BS
6157}
6158
cc27e657
PB
6159static tree
6160make_or_reuse_type (unsigned size, int unsignedp)
6161{
6162 if (size == INT_TYPE_SIZE)
6163 return unsignedp ? unsigned_type_node : integer_type_node;
6164 if (size == CHAR_TYPE_SIZE)
6165 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
6166 if (size == SHORT_TYPE_SIZE)
6167 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
6168 if (size == LONG_TYPE_SIZE)
6169 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
6170 if (size == LONG_LONG_TYPE_SIZE)
6171 return (unsignedp ? long_long_unsigned_type_node
6172 : long_long_integer_type_node);
6173
6174 if (unsignedp)
6175 return make_unsigned_type (size);
6176 else
6177 return make_signed_type (size);
6178}
6179
81b3411c
BS
6180/* Create nodes for all integer types (and error_mark_node) using the sizes
6181 of C datatypes. The caller should call set_sizetype soon after calling
6182 this function to select one of the types as sizetype. */
dc478a5d 6183
81b3411c 6184void
8c1d6d62 6185build_common_tree_nodes (bool signed_char, bool signed_sizetype)
81b3411c
BS
6186{
6187 error_mark_node = make_node (ERROR_MARK);
6188 TREE_TYPE (error_mark_node) = error_mark_node;
6189
8c1d6d62 6190 initialize_sizetypes (signed_sizetype);
fed3cef0 6191
81b3411c
BS
6192 /* Define both `signed char' and `unsigned char'. */
6193 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
6194 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
6195
6196 /* Define `char', which is like either `signed char' or `unsigned char'
6197 but not the same as either. */
6198 char_type_node
6199 = (signed_char
6200 ? make_signed_type (CHAR_TYPE_SIZE)
6201 : make_unsigned_type (CHAR_TYPE_SIZE));
6202
6203 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
6204 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
6205 integer_type_node = make_signed_type (INT_TYPE_SIZE);
81b3411c
BS
6206 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
6207 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
6208 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
6209 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
6210 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
6211
de7df9eb
JM
6212 /* Define a boolean type. This type only represents boolean values but
6213 may be larger than char depending on the value of BOOL_TYPE_SIZE.
6214 Front ends which want to override this size (i.e. Java) can redefine
6215 boolean_type_node before calling build_common_tree_nodes_2. */
6216 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
6217 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
7d60be94 6218 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
de7df9eb
JM
6219 TYPE_PRECISION (boolean_type_node) = 1;
6220
cc27e657
PB
6221 /* Fill in the rest of the sized types. Reuse existing type nodes
6222 when possible. */
6223 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
6224 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
6225 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
6226 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
6227 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
6228
6229 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
6230 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
6231 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
6232 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
6233 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9f63daea 6234
5a98fa7b
MM
6235 access_public_node = get_identifier ("public");
6236 access_protected_node = get_identifier ("protected");
6237 access_private_node = get_identifier ("private");
81b3411c
BS
6238}
6239
81b3411c 6240/* Call this function after calling build_common_tree_nodes and set_sizetype.
fed3cef0 6241 It will create several other common tree nodes. */
d4b60170 6242
81b3411c 6243void
46c5ad27 6244build_common_tree_nodes_2 (int short_double)
81b3411c 6245{
05bccae2 6246 /* Define these next since types below may used them. */
7d60be94
NS
6247 integer_zero_node = build_int_cst (NULL_TREE, 0);
6248 integer_one_node = build_int_cst (NULL_TREE, 1);
6249 integer_minus_one_node = build_int_cst (NULL_TREE, -1);
81b3411c 6250
770ae6cc
RK
6251 size_zero_node = size_int (0);
6252 size_one_node = size_int (1);
6253 bitsize_zero_node = bitsize_int (0);
6254 bitsize_one_node = bitsize_int (1);
6255 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
81b3411c 6256
de7df9eb
JM
6257 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
6258 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
6259
81b3411c 6260 void_type_node = make_node (VOID_TYPE);
05bccae2 6261 layout_type (void_type_node);
d4b60170 6262
81b3411c
BS
6263 /* We are not going to have real types in C with less than byte alignment,
6264 so we might as well not have any types that claim to have it. */
6265 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
11cf4d18 6266 TYPE_USER_ALIGN (void_type_node) = 0;
81b3411c 6267
7d60be94 6268 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
81b3411c
BS
6269 layout_type (TREE_TYPE (null_pointer_node));
6270
6271 ptr_type_node = build_pointer_type (void_type_node);
6272 const_ptr_type_node
6273 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
498c0f27 6274 fileptr_type_node = ptr_type_node;
81b3411c
BS
6275
6276 float_type_node = make_node (REAL_TYPE);
6277 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
6278 layout_type (float_type_node);
6279
6280 double_type_node = make_node (REAL_TYPE);
6281 if (short_double)
6282 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
6283 else
6284 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
6285 layout_type (double_type_node);
6286
6287 long_double_type_node = make_node (REAL_TYPE);
6288 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
6289 layout_type (long_double_type_node);
6290
a2a919aa
KG
6291 float_ptr_type_node = build_pointer_type (float_type_node);
6292 double_ptr_type_node = build_pointer_type (double_type_node);
6293 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
6294 integer_ptr_type_node = build_pointer_type (integer_type_node);
6295
9a8ce21f
JG
6296 /* Decimal float types. */
6297 dfloat32_type_node = make_node (REAL_TYPE);
6298 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
6299 layout_type (dfloat32_type_node);
6300 TYPE_MODE (dfloat32_type_node) = SDmode;
6301 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
6302
6303 dfloat64_type_node = make_node (REAL_TYPE);
6304 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
6305 layout_type (dfloat64_type_node);
6306 TYPE_MODE (dfloat64_type_node) = DDmode;
6307 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
6308
6309 dfloat128_type_node = make_node (REAL_TYPE);
6310 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
6311 layout_type (dfloat128_type_node);
6312 TYPE_MODE (dfloat128_type_node) = TDmode;
6313 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
6314
81b3411c
BS
6315 complex_integer_type_node = make_node (COMPLEX_TYPE);
6316 TREE_TYPE (complex_integer_type_node) = integer_type_node;
6317 layout_type (complex_integer_type_node);
6318
6319 complex_float_type_node = make_node (COMPLEX_TYPE);
6320 TREE_TYPE (complex_float_type_node) = float_type_node;
6321 layout_type (complex_float_type_node);
6322
6323 complex_double_type_node = make_node (COMPLEX_TYPE);
6324 TREE_TYPE (complex_double_type_node) = double_type_node;
6325 layout_type (complex_double_type_node);
6326
6327 complex_long_double_type_node = make_node (COMPLEX_TYPE);
6328 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
6329 layout_type (complex_long_double_type_node);
6330
2df88e9f 6331 {
5fd9b178 6332 tree t = targetm.build_builtin_va_list ();
066c84df 6333
4d6922ee 6334 /* Many back-ends define record types without setting TYPE_NAME.
066c84df
AO
6335 If we copied the record type here, we'd keep the original
6336 record type without a name. This breaks name mangling. So,
6337 don't copy record types and let c_common_nodes_and_builtins()
6338 declare the type to be __builtin_va_list. */
6339 if (TREE_CODE (t) != RECORD_TYPE)
8dd16ecc 6340 t = build_variant_type_copy (t);
066c84df
AO
6341
6342 va_list_type_node = t;
2df88e9f 6343 }
0afeef64
AH
6344}
6345
c6a912da
RH
6346/* A subroutine of build_common_builtin_nodes. Define a builtin function. */
6347
6348static void
6349local_define_builtin (const char *name, tree type, enum built_in_function code,
6350 const char *library_name, int ecf_flags)
6351{
6352 tree decl;
6353
6354 decl = lang_hooks.builtin_function (name, type, code, BUILT_IN_NORMAL,
6355 library_name, NULL_TREE);
6356 if (ecf_flags & ECF_CONST)
6357 TREE_READONLY (decl) = 1;
6358 if (ecf_flags & ECF_PURE)
6359 DECL_IS_PURE (decl) = 1;
6360 if (ecf_flags & ECF_NORETURN)
6361 TREE_THIS_VOLATILE (decl) = 1;
6362 if (ecf_flags & ECF_NOTHROW)
6363 TREE_NOTHROW (decl) = 1;
6364 if (ecf_flags & ECF_MALLOC)
6365 DECL_IS_MALLOC (decl) = 1;
6366
6367 built_in_decls[code] = decl;
6368 implicit_built_in_decls[code] = decl;
6369}
6370
6371/* Call this function after instantiating all builtins that the language
6372 front end cares about. This will build the rest of the builtins that
6373 are relied upon by the tree optimizers and the middle-end. */
6374
6375void
6376build_common_builtin_nodes (void)
6377{
6378 tree tmp, ftype;
6379
6380 if (built_in_decls[BUILT_IN_MEMCPY] == NULL
6381 || built_in_decls[BUILT_IN_MEMMOVE] == NULL)
6382 {
6383 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
6384 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
6385 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
6386 ftype = build_function_type (ptr_type_node, tmp);
6387
6388 if (built_in_decls[BUILT_IN_MEMCPY] == NULL)
6389 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
6390 "memcpy", ECF_NOTHROW);
6391 if (built_in_decls[BUILT_IN_MEMMOVE] == NULL)
6392 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
6393 "memmove", ECF_NOTHROW);
6394 }
6395
6396 if (built_in_decls[BUILT_IN_MEMCMP] == NULL)
6397 {
6398 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
6399 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
6400 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
d1604bc5 6401 ftype = build_function_type (integer_type_node, tmp);
c6a912da
RH
6402 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
6403 "memcmp", ECF_PURE | ECF_NOTHROW);
6404 }
6405
6406 if (built_in_decls[BUILT_IN_MEMSET] == NULL)
6407 {
6408 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
6409 tmp = tree_cons (NULL_TREE, integer_type_node, tmp);
6410 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
6411 ftype = build_function_type (ptr_type_node, tmp);
6412 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
6413 "memset", ECF_NOTHROW);
6414 }
6415
6416 if (built_in_decls[BUILT_IN_ALLOCA] == NULL)
6417 {
6418 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
6419 ftype = build_function_type (ptr_type_node, tmp);
6420 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
6421 "alloca", ECF_NOTHROW | ECF_MALLOC);
6422 }
6423
6424 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
6425 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
6426 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
6427 ftype = build_function_type (void_type_node, tmp);
6428 local_define_builtin ("__builtin_init_trampoline", ftype,
6429 BUILT_IN_INIT_TRAMPOLINE,
6430 "__builtin_init_trampoline", ECF_NOTHROW);
6431
6432 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
6433 ftype = build_function_type (ptr_type_node, tmp);
6434 local_define_builtin ("__builtin_adjust_trampoline", ftype,
6435 BUILT_IN_ADJUST_TRAMPOLINE,
6436 "__builtin_adjust_trampoline",
6437 ECF_CONST | ECF_NOTHROW);
6438
6439 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
6440 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
6441 ftype = build_function_type (void_type_node, tmp);
6442 local_define_builtin ("__builtin_nonlocal_goto", ftype,
6443 BUILT_IN_NONLOCAL_GOTO,
6444 "__builtin_nonlocal_goto",
6445 ECF_NORETURN | ECF_NOTHROW);
6446
6447 ftype = build_function_type (ptr_type_node, void_list_node);
6448 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
6449 "__builtin_stack_save", ECF_NOTHROW);
6450
6451 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
6452 ftype = build_function_type (void_type_node, tmp);
6453 local_define_builtin ("__builtin_stack_restore", ftype,
6454 BUILT_IN_STACK_RESTORE,
6455 "__builtin_stack_restore", ECF_NOTHROW);
6456
6457 ftype = build_function_type (void_type_node, void_list_node);
6458 local_define_builtin ("__builtin_profile_func_enter", ftype,
6459 BUILT_IN_PROFILE_FUNC_ENTER, "profile_func_enter", 0);
6460 local_define_builtin ("__builtin_profile_func_exit", ftype,
6461 BUILT_IN_PROFILE_FUNC_EXIT, "profile_func_exit", 0);
7e7e470f
RH
6462
6463 /* Complex multiplication and division. These are handled as builtins
6464 rather than optabs because emit_library_call_value doesn't support
6465 complex. Further, we can do slightly better with folding these
6466 beasties if the real and complex parts of the arguments are separate. */
6467 {
6468 enum machine_mode mode;
6469
6470 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
6471 {
6472 char mode_name_buf[4], *q;
6473 const char *p;
6474 enum built_in_function mcode, dcode;
6475 tree type, inner_type;
6476
6477 type = lang_hooks.types.type_for_mode (mode, 0);
6478 if (type == NULL)
6479 continue;
6480 inner_type = TREE_TYPE (type);
6481
6482 tmp = tree_cons (NULL_TREE, inner_type, void_list_node);
6483 tmp = tree_cons (NULL_TREE, inner_type, tmp);
6484 tmp = tree_cons (NULL_TREE, inner_type, tmp);
6485 tmp = tree_cons (NULL_TREE, inner_type, tmp);
6486 ftype = build_function_type (type, tmp);
6487
6488 mcode = BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT;
6489 dcode = BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT;
6490
6491 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
6492 *q = TOLOWER (*p);
6493 *q = '\0';
6494
6495 built_in_names[mcode] = concat ("__mul", mode_name_buf, "3", NULL);
6496 local_define_builtin (built_in_names[mcode], ftype, mcode,
6497 built_in_names[mcode], ECF_CONST | ECF_NOTHROW);
6498
6499 built_in_names[dcode] = concat ("__div", mode_name_buf, "3", NULL);
6500 local_define_builtin (built_in_names[dcode], ftype, dcode,
6501 built_in_names[dcode], ECF_CONST | ECF_NOTHROW);
6502 }
6503 }
c6a912da
RH
6504}
6505
b34417a4
ZL
6506/* HACK. GROSS. This is absolutely disgusting. I wish there was a
6507 better way.
6508
6509 If we requested a pointer to a vector, build up the pointers that
6510 we stripped off while looking for the inner type. Similarly for
6511 return values from functions.
6512
6513 The argument TYPE is the top of the chain, and BOTTOM is the
6514 new type which we will point to. */
6515
6516tree
6517reconstruct_complex_type (tree type, tree bottom)
6518{
6519 tree inner, outer;
6520
6521 if (POINTER_TYPE_P (type))
6522 {
6523 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
6524 outer = build_pointer_type (inner);
6525 }
6526 else if (TREE_CODE (type) == ARRAY_TYPE)
6527 {
6528 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
6529 outer = build_array_type (inner, TYPE_DOMAIN (type));
6530 }
6531 else if (TREE_CODE (type) == FUNCTION_TYPE)
6532 {
6533 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
6534 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
6535 }
6536 else if (TREE_CODE (type) == METHOD_TYPE)
6537 {
037cc9c5 6538 tree argtypes;
b34417a4 6539 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
037cc9c5
FJ
6540 /* The build_method_type_directly() routine prepends 'this' to argument list,
6541 so we must compensate by getting rid of it. */
6542 argtypes = TYPE_ARG_TYPES (type);
b34417a4 6543 outer = build_method_type_directly (TYPE_METHOD_BASETYPE (type),
9f63daea 6544 inner,
b34417a4 6545 TYPE_ARG_TYPES (type));
037cc9c5 6546 TYPE_ARG_TYPES (outer) = argtypes;
b34417a4
ZL
6547 }
6548 else
6549 return bottom;
6550
e0e4ac7f
AP
6551 TYPE_READONLY (outer) = TYPE_READONLY (type);
6552 TYPE_VOLATILE (outer) = TYPE_VOLATILE (type);
b34417a4
ZL
6553
6554 return outer;
6555}
6556
26277d41
PB
6557/* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
6558 the inner type. */
b34417a4 6559tree
4a5eab38 6560build_vector_type_for_mode (tree innertype, enum machine_mode mode)
0afeef64 6561{
26277d41 6562 int nunits;
27b41650 6563
1e128c5f 6564 switch (GET_MODE_CLASS (mode))
26277d41 6565 {
1e128c5f
GB
6566 case MODE_VECTOR_INT:
6567 case MODE_VECTOR_FLOAT:
6568 nunits = GET_MODE_NUNITS (mode);
6569 break;
6570
6571 case MODE_INT:
26277d41 6572 /* Check that there are no leftover bits. */
1e128c5f
GB
6573 gcc_assert (GET_MODE_BITSIZE (mode)
6574 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
4a5eab38 6575
26277d41
PB
6576 nunits = GET_MODE_BITSIZE (mode)
6577 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
1e128c5f
GB
6578 break;
6579
6580 default:
6581 gcc_unreachable ();
26277d41 6582 }
4a5eab38 6583
26277d41
PB
6584 return make_vector_type (innertype, nunits, mode);
6585}
4a5eab38 6586
26277d41
PB
6587/* Similarly, but takes the inner type and number of units, which must be
6588 a power of two. */
6589
6590tree
6591build_vector_type (tree innertype, int nunits)
6592{
6593 return make_vector_type (innertype, nunits, VOIDmode);
4a5eab38
PB
6594}
6595
b4660e5a
JH
6596/* Build RESX_EXPR with given REGION_NUMBER. */
6597tree
6598build_resx (int region_number)
6599{
6600 tree t;
6601 t = build1 (RESX_EXPR, void_type_node,
6602 build_int_cst (NULL_TREE, region_number));
6603 return t;
6604}
6605
27b41650
KG
6606/* Given an initializer INIT, return TRUE if INIT is zero or some
6607 aggregate of zeros. Otherwise return FALSE. */
27b41650 6608bool
46c5ad27 6609initializer_zerop (tree init)
27b41650 6610{
6de9cd9a
DN
6611 tree elt;
6612
27b41650
KG
6613 STRIP_NOPS (init);
6614
6615 switch (TREE_CODE (init))
6616 {
6617 case INTEGER_CST:
6618 return integer_zerop (init);
6de9cd9a 6619
27b41650 6620 case REAL_CST:
6de9cd9a
DN
6621 /* ??? Note that this is not correct for C4X float formats. There,
6622 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
6623 negative exponent. */
27b41650
KG
6624 return real_zerop (init)
6625 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
6de9cd9a 6626
27b41650
KG
6627 case COMPLEX_CST:
6628 return integer_zerop (init)
6629 || (real_zerop (init)
6630 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
6631 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
6de9cd9a
DN
6632
6633 case VECTOR_CST:
6634 for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
6635 if (!initializer_zerop (TREE_VALUE (elt)))
e8423af9 6636 return false;
6de9cd9a 6637 return true;
e8423af9 6638
6de9cd9a 6639 case CONSTRUCTOR:
4038c495
GB
6640 {
6641 unsigned HOST_WIDE_INT idx;
6de9cd9a 6642
4038c495
GB
6643 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
6644 if (!initializer_zerop (elt))
6645 return false;
6646 return true;
6647 }
6de9cd9a 6648
27b41650
KG
6649 default:
6650 return false;
6651 }
6652}
e2500fed 6653
6de9cd9a
DN
6654void
6655add_var_to_bind_expr (tree bind_expr, tree var)
6656{
6657 BIND_EXPR_VARS (bind_expr)
6658 = chainon (BIND_EXPR_VARS (bind_expr), var);
6659 if (BIND_EXPR_BLOCK (bind_expr))
6660 BLOCK_VARS (BIND_EXPR_BLOCK (bind_expr))
6661 = BIND_EXPR_VARS (bind_expr);
6662}
6663
6664/* Build an empty statement. */
6665
6666tree
6667build_empty_stmt (void)
6668{
6669 return build1 (NOP_EXPR, void_type_node, size_zero_node);
6670}
6671
6de9cd9a 6672
a7e5372d
ZD
6673/* Returns true if it is possible to prove that the index of
6674 an array access REF (an ARRAY_REF expression) falls into the
6675 array bounds. */
6676
6677bool
6678in_array_bounds_p (tree ref)
6679{
6680 tree idx = TREE_OPERAND (ref, 1);
6681 tree min, max;
6682
6683 if (TREE_CODE (idx) != INTEGER_CST)
6684 return false;
9f63daea 6685
a7e5372d
ZD
6686 min = array_ref_low_bound (ref);
6687 max = array_ref_up_bound (ref);
6688 if (!min
6689 || !max
6690 || TREE_CODE (min) != INTEGER_CST
6691 || TREE_CODE (max) != INTEGER_CST)
6692 return false;
6693
6694 if (tree_int_cst_lt (idx, min)
6695 || tree_int_cst_lt (max, idx))
6696 return false;
6697
6698 return true;
6699}
6700
c597ef4e
DN
6701/* Return true if T (assumed to be a DECL) is a global variable. */
6702
6703bool
6704is_global_var (tree t)
6705{
326eda4b
DB
6706 if (MTAG_P (t))
6707 return (TREE_STATIC (t) || MTAG_GLOBAL (t));
6708 else
6709 return (TREE_STATIC (t) || DECL_EXTERNAL (t));
c597ef4e
DN
6710}
6711
6de9cd9a
DN
6712/* Return true if T (assumed to be a DECL) must be assigned a memory
6713 location. */
6714
6715bool
6716needs_to_live_in_memory (tree t)
6717{
c597ef4e
DN
6718 return (TREE_ADDRESSABLE (t)
6719 || is_global_var (t)
6de9cd9a 6720 || (TREE_CODE (t) == RESULT_DECL
ab8907ef 6721 && aggregate_value_p (t, current_function_decl)));
6de9cd9a
DN
6722}
6723
fa27426e
RH
6724/* There are situations in which a language considers record types
6725 compatible which have different field lists. Decide if two fields
6726 are compatible. It is assumed that the parent records are compatible. */
6727
6728bool
6729fields_compatible_p (tree f1, tree f2)
6730{
6731 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1),
6732 DECL_FIELD_BIT_OFFSET (f2), OEP_ONLY_CONST))
6733 return false;
6734
6735 if (!operand_equal_p (DECL_FIELD_OFFSET (f1),
6736 DECL_FIELD_OFFSET (f2), OEP_ONLY_CONST))
6737 return false;
6738
6739 if (!lang_hooks.types_compatible_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9f63daea 6740 return false;
fa27426e
RH
6741
6742 return true;
6743}
6744
6745/* Locate within RECORD a field that is compatible with ORIG_FIELD. */
6746
6747tree
6748find_compatible_field (tree record, tree orig_field)
6749{
6750 tree f;
6751
6752 for (f = TYPE_FIELDS (record); f ; f = TREE_CHAIN (f))
6753 if (TREE_CODE (f) == FIELD_DECL
6754 && fields_compatible_p (f, orig_field))
6755 return f;
6756
6757 /* ??? Why isn't this on the main fields list? */
6758 f = TYPE_VFIELD (record);
6759 if (f && TREE_CODE (f) == FIELD_DECL
6760 && fields_compatible_p (f, orig_field))
6761 return f;
6762
6763 /* ??? We should abort here, but Java appears to do Bad Things
6764 with inherited fields. */
6765 return orig_field;
6766}
6767
56cf8686
SP
6768/* Return value of a constant X. */
6769
6770HOST_WIDE_INT
6771int_cst_value (tree x)
6772{
6773 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
6774 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
6775 bool negative = ((val >> (bits - 1)) & 1) != 0;
6776
1e128c5f 6777 gcc_assert (bits <= HOST_BITS_PER_WIDE_INT);
56cf8686
SP
6778
6779 if (negative)
6780 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
6781 else
6782 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
6783
6784 return val;
6785}
6786
6787/* Returns the greatest common divisor of A and B, which must be
6788 INTEGER_CSTs. */
6789
9f63daea 6790tree
56cf8686
SP
6791tree_fold_gcd (tree a, tree b)
6792{
6793 tree a_mod_b;
6794 tree type = TREE_TYPE (a);
9f63daea 6795
1e128c5f
GB
6796 gcc_assert (TREE_CODE (a) == INTEGER_CST);
6797 gcc_assert (TREE_CODE (b) == INTEGER_CST);
9f63daea
EC
6798
6799 if (integer_zerop (a))
56cf8686 6800 return b;
9f63daea
EC
6801
6802 if (integer_zerop (b))
56cf8686 6803 return a;
9f63daea 6804
56cf8686 6805 if (tree_int_cst_sgn (a) == -1)
987b67bc 6806 a = fold_build2 (MULT_EXPR, type, a,
57decb7e 6807 build_int_cst (type, -1));
9f63daea 6808
56cf8686 6809 if (tree_int_cst_sgn (b) == -1)
987b67bc 6810 b = fold_build2 (MULT_EXPR, type, b,
57decb7e 6811 build_int_cst (type, -1));
9f63daea 6812
56cf8686
SP
6813 while (1)
6814 {
987b67bc 6815 a_mod_b = fold_build2 (FLOOR_MOD_EXPR, type, a, b);
9f63daea 6816
56cf8686
SP
6817 if (!TREE_INT_CST_LOW (a_mod_b)
6818 && !TREE_INT_CST_HIGH (a_mod_b))
6819 return b;
6820
6821 a = b;
6822 b = a_mod_b;
6823 }
6824}
fa27426e 6825
2f4675b4
ZD
6826/* Returns unsigned variant of TYPE. */
6827
6828tree
6829unsigned_type_for (tree type)
6830{
7f17528a
ZD
6831 if (POINTER_TYPE_P (type))
6832 return size_type_node;
2f4675b4
ZD
6833 return lang_hooks.types.unsigned_type (type);
6834}
6835
6836/* Returns signed variant of TYPE. */
6837
6838tree
6839signed_type_for (tree type)
6840{
6841 return lang_hooks.types.signed_type (type);
6842}
6843
18522563
ZD
6844/* Returns the largest value obtainable by casting something in INNER type to
6845 OUTER type. */
6846
6847tree
6848upper_bound_in_type (tree outer, tree inner)
6849{
6850 unsigned HOST_WIDE_INT lo, hi;
ea9a5df4
KH
6851 unsigned int det = 0;
6852 unsigned oprec = TYPE_PRECISION (outer);
6853 unsigned iprec = TYPE_PRECISION (inner);
6854 unsigned prec;
6855
6856 /* Compute a unique number for every combination. */
6857 det |= (oprec > iprec) ? 4 : 0;
6858 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
6859 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
6860
6861 /* Determine the exponent to use. */
6862 switch (det)
6863 {
6864 case 0:
6865 case 1:
6866 /* oprec <= iprec, outer: signed, inner: don't care. */
6867 prec = oprec - 1;
6868 break;
6869 case 2:
6870 case 3:
6871 /* oprec <= iprec, outer: unsigned, inner: don't care. */
6872 prec = oprec;
6873 break;
6874 case 4:
6875 /* oprec > iprec, outer: signed, inner: signed. */
6876 prec = iprec - 1;
6877 break;
6878 case 5:
6879 /* oprec > iprec, outer: signed, inner: unsigned. */
6880 prec = iprec;
6881 break;
6882 case 6:
6883 /* oprec > iprec, outer: unsigned, inner: signed. */
6884 prec = oprec;
6885 break;
6886 case 7:
6887 /* oprec > iprec, outer: unsigned, inner: unsigned. */
6888 prec = iprec;
6889 break;
6890 default:
6891 gcc_unreachable ();
6892 }
18522563 6893
ea9a5df4
KH
6894 /* Compute 2^^prec - 1. */
6895 if (prec <= HOST_BITS_PER_WIDE_INT)
18522563 6896 {
ea9a5df4
KH
6897 hi = 0;
6898 lo = ((~(unsigned HOST_WIDE_INT) 0)
6899 >> (HOST_BITS_PER_WIDE_INT - prec));
18522563
ZD
6900 }
6901 else
6902 {
ea9a5df4
KH
6903 hi = ((~(unsigned HOST_WIDE_INT) 0)
6904 >> (2 * HOST_BITS_PER_WIDE_INT - prec));
6905 lo = ~(unsigned HOST_WIDE_INT) 0;
18522563
ZD
6906 }
6907
ea9a5df4 6908 return build_int_cst_wide (outer, lo, hi);
18522563
ZD
6909}
6910
6911/* Returns the smallest value obtainable by casting something in INNER type to
6912 OUTER type. */
6913
6914tree
6915lower_bound_in_type (tree outer, tree inner)
6916{
6917 unsigned HOST_WIDE_INT lo, hi;
ea9a5df4
KH
6918 unsigned oprec = TYPE_PRECISION (outer);
6919 unsigned iprec = TYPE_PRECISION (inner);
6920
6921 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
6922 and obtain 0. */
6923 if (TYPE_UNSIGNED (outer)
6924 /* If we are widening something of an unsigned type, OUTER type
6925 contains all values of INNER type. In particular, both INNER
6926 and OUTER types have zero in common. */
6927 || (oprec > iprec && TYPE_UNSIGNED (inner)))
18522563 6928 lo = hi = 0;
18522563
ZD
6929 else
6930 {
ea9a5df4
KH
6931 /* If we are widening a signed type to another signed type, we
6932 want to obtain -2^^(iprec-1). If we are keeping the
6933 precision or narrowing to a signed type, we want to obtain
6934 -2^(oprec-1). */
6935 unsigned prec = oprec > iprec ? iprec : oprec;
6936
6937 if (prec <= HOST_BITS_PER_WIDE_INT)
6938 {
6939 hi = ~(unsigned HOST_WIDE_INT) 0;
6940 lo = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1);
6941 }
6942 else
6943 {
6944 hi = ((~(unsigned HOST_WIDE_INT) 0)
6945 << (prec - HOST_BITS_PER_WIDE_INT - 1));
6946 lo = 0;
6947 }
18522563
ZD
6948 }
6949
ea9a5df4 6950 return build_int_cst_wide (outer, lo, hi);
18522563
ZD
6951}
6952
cdef8bc6
KH
6953/* Return nonzero if two operands that are suitable for PHI nodes are
6954 necessarily equal. Specifically, both ARG0 and ARG1 must be either
6955 SSA_NAME or invariant. Note that this is strictly an optimization.
6956 That is, callers of this function can directly call operand_equal_p
6957 and get the same result, only slower. */
6958
6959int
6960operand_equal_for_phi_arg_p (tree arg0, tree arg1)
6961{
6962 if (arg0 == arg1)
6963 return 1;
6964 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
6965 return 0;
6966 return operand_equal_p (arg0, arg1, 0);
6967}
6968
ca4c3169
ZD
6969/* Returns number of zeros at the end of binary representation of X.
6970
6971 ??? Use ffs if available? */
6972
6973tree
6974num_ending_zeros (tree x)
6975{
6976 unsigned HOST_WIDE_INT fr, nfr;
6977 unsigned num, abits;
6978 tree type = TREE_TYPE (x);
6979
6980 if (TREE_INT_CST_LOW (x) == 0)
6981 {
6982 num = HOST_BITS_PER_WIDE_INT;
6983 fr = TREE_INT_CST_HIGH (x);
6984 }
6985 else
6986 {
6987 num = 0;
6988 fr = TREE_INT_CST_LOW (x);
6989 }
6990
6991 for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
6992 {
6993 nfr = fr >> abits;
6994 if (nfr << abits == fr)
6995 {
6996 num += abits;
6997 fr = nfr;
6998 }
6999 }
7000
7001 if (num > TYPE_PRECISION (type))
7002 num = TYPE_PRECISION (type);
7003
7004 return build_int_cst_type (type, num);
7005}
7006
b8c4a565
SB
7007
7008#define WALK_SUBTREE(NODE) \
7009 do \
7010 { \
7011 result = walk_tree (&(NODE), func, data, pset); \
7012 if (result) \
7013 return result; \
7014 } \
7015 while (0)
7016
7017/* This is a subroutine of walk_tree that walks field of TYPE that are to
7018 be walked whenever a type is seen in the tree. Rest of operands and return
7019 value are as for walk_tree. */
7020
7021static tree
7022walk_type_fields (tree type, walk_tree_fn func, void *data,
7023 struct pointer_set_t *pset)
7024{
7025 tree result = NULL_TREE;
7026
7027 switch (TREE_CODE (type))
7028 {
7029 case POINTER_TYPE:
7030 case REFERENCE_TYPE:
7031 /* We have to worry about mutually recursive pointers. These can't
7032 be written in C. They can in Ada. It's pathological, but
7033 there's an ACATS test (c38102a) that checks it. Deal with this
7034 by checking if we're pointing to another pointer, that one
7035 points to another pointer, that one does too, and we have no htab.
7036 If so, get a hash table. We check three levels deep to avoid
7037 the cost of the hash table if we don't need one. */
7038 if (POINTER_TYPE_P (TREE_TYPE (type))
7039 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
7040 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
7041 && !pset)
7042 {
7043 result = walk_tree_without_duplicates (&TREE_TYPE (type),
7044 func, data);
7045 if (result)
7046 return result;
7047
7048 break;
7049 }
7050
7051 /* ... fall through ... */
7052
7053 case COMPLEX_TYPE:
7054 WALK_SUBTREE (TREE_TYPE (type));
7055 break;
7056
7057 case METHOD_TYPE:
7058 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
7059
7060 /* Fall through. */
7061
7062 case FUNCTION_TYPE:
7063 WALK_SUBTREE (TREE_TYPE (type));
7064 {
7065 tree arg;
7066
7067 /* We never want to walk into default arguments. */
7068 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
7069 WALK_SUBTREE (TREE_VALUE (arg));
7070 }
7071 break;
7072
7073 case ARRAY_TYPE:
7074 /* Don't follow this nodes's type if a pointer for fear that we'll
7075 have infinite recursion. Those types are uninteresting anyway. */
7076 if (!POINTER_TYPE_P (TREE_TYPE (type))
7077 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE)
7078 WALK_SUBTREE (TREE_TYPE (type));
7079 WALK_SUBTREE (TYPE_DOMAIN (type));
7080 break;
7081
7082 case BOOLEAN_TYPE:
7083 case ENUMERAL_TYPE:
7084 case INTEGER_TYPE:
7085 case CHAR_TYPE:
7086 case REAL_TYPE:
7087 WALK_SUBTREE (TYPE_MIN_VALUE (type));
7088 WALK_SUBTREE (TYPE_MAX_VALUE (type));
7089 break;
7090
7091 case OFFSET_TYPE:
7092 WALK_SUBTREE (TREE_TYPE (type));
7093 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
7094 break;
7095
7096 default:
7097 break;
7098 }
7099
7100 return NULL_TREE;
7101}
7102
7103/* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
7104 called with the DATA and the address of each sub-tree. If FUNC returns a
0e61db61 7105 non-NULL value, the traversal is stopped, and the value returned by FUNC
b8c4a565
SB
7106 is returned. If PSET is non-NULL it is used to record the nodes visited,
7107 and to avoid visiting a node more than once. */
7108
7109tree
7110walk_tree (tree *tp, walk_tree_fn func, void *data, struct pointer_set_t *pset)
7111{
7112 enum tree_code code;
7113 int walk_subtrees;
7114 tree result;
7115
7116#define WALK_SUBTREE_TAIL(NODE) \
7117 do \
7118 { \
7119 tp = & (NODE); \
7120 goto tail_recurse; \
7121 } \
7122 while (0)
7123
7124 tail_recurse:
7125 /* Skip empty subtrees. */
7126 if (!*tp)
7127 return NULL_TREE;
7128
7129 /* Don't walk the same tree twice, if the user has requested
7130 that we avoid doing so. */
7131 if (pset && pointer_set_insert (pset, *tp))
7132 return NULL_TREE;
7133
7134 /* Call the function. */
7135 walk_subtrees = 1;
7136 result = (*func) (tp, &walk_subtrees, data);
7137
7138 /* If we found something, return it. */
7139 if (result)
7140 return result;
7141
7142 code = TREE_CODE (*tp);
7143
7144 /* Even if we didn't, FUNC may have decided that there was nothing
7145 interesting below this point in the tree. */
7146 if (!walk_subtrees)
7147 {
7148 if (code == TREE_LIST)
7149 /* But we still need to check our siblings. */
7150 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
7151 else
7152 return NULL_TREE;
7153 }
7154
7155 result = lang_hooks.tree_inlining.walk_subtrees (tp, &walk_subtrees, func,
7156 data, pset);
7157 if (result || ! walk_subtrees)
7158 return result;
7159
7160 /* If this is a DECL_EXPR, walk into various fields of the type that it's
7161 defining. We only want to walk into these fields of a type in this
7162 case. Note that decls get walked as part of the processing of a
7163 BIND_EXPR.
7164
7165 ??? Precisely which fields of types that we are supposed to walk in
7166 this case vs. the normal case aren't well defined. */
7167 if (code == DECL_EXPR
7168 && TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL
7169 && TREE_CODE (TREE_TYPE (DECL_EXPR_DECL (*tp))) != ERROR_MARK)
7170 {
7171 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
7172
7173 /* Call the function for the type. See if it returns anything or
7174 doesn't want us to continue. If we are to continue, walk both
7175 the normal fields and those for the declaration case. */
7176 result = (*func) (type_p, &walk_subtrees, data);
7177 if (result || !walk_subtrees)
7178 return NULL_TREE;
7179
7180 result = walk_type_fields (*type_p, func, data, pset);
7181 if (result)
7182 return result;
7183
7184 WALK_SUBTREE (TYPE_SIZE (*type_p));
7185 WALK_SUBTREE (TYPE_SIZE_UNIT (*type_p));
7186
7187 /* If this is a record type, also walk the fields. */
7188 if (TREE_CODE (*type_p) == RECORD_TYPE
7189 || TREE_CODE (*type_p) == UNION_TYPE
7190 || TREE_CODE (*type_p) == QUAL_UNION_TYPE)
7191 {
7192 tree field;
7193
7194 for (field = TYPE_FIELDS (*type_p); field;
7195 field = TREE_CHAIN (field))
7196 {
7197 /* We'd like to look at the type of the field, but we can easily
7198 get infinite recursion. So assume it's pointed to elsewhere
7199 in the tree. Also, ignore things that aren't fields. */
7200 if (TREE_CODE (field) != FIELD_DECL)
7201 continue;
7202
7203 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
7204 WALK_SUBTREE (DECL_SIZE (field));
7205 WALK_SUBTREE (DECL_SIZE_UNIT (field));
7206 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
7207 WALK_SUBTREE (DECL_QUALIFIER (field));
7208 }
7209 }
7210 }
7211
7212 else if (code != SAVE_EXPR
7213 && code != BIND_EXPR
7214 && IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
7215 {
7216 int i, len;
7217
7218 /* Walk over all the sub-trees of this operand. */
7219 len = TREE_CODE_LENGTH (code);
7220 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
7221 But, we only want to walk once. */
7222 if (code == TARGET_EXPR
7223 && TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1))
7224 --len;
7225
7226 /* Go through the subtrees. We need to do this in forward order so
7227 that the scope of a FOR_EXPR is handled properly. */
7228#ifdef DEBUG_WALK_TREE
7229 for (i = 0; i < len; ++i)
7230 WALK_SUBTREE (TREE_OPERAND (*tp, i));
7231#else
7232 for (i = 0; i < len - 1; ++i)
7233 WALK_SUBTREE (TREE_OPERAND (*tp, i));
7234
7235 if (len)
7236 {
7237 /* The common case is that we may tail recurse here. */
7238 if (code != BIND_EXPR
7239 && !TREE_CHAIN (*tp))
7240 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
7241 else
7242 WALK_SUBTREE (TREE_OPERAND (*tp, len - 1));
7243 }
7244#endif
7245 }
7246
7247 /* If this is a type, walk the needed fields in the type. */
7248 else if (TYPE_P (*tp))
7249 {
7250 result = walk_type_fields (*tp, func, data, pset);
7251 if (result)
7252 return result;
7253 }
7254 else
7255 {
7256 /* Not one of the easy cases. We must explicitly go through the
7257 children. */
7258 switch (code)
7259 {
7260 case ERROR_MARK:
7261 case IDENTIFIER_NODE:
7262 case INTEGER_CST:
7263 case REAL_CST:
7264 case VECTOR_CST:
7265 case STRING_CST:
7266 case BLOCK:
7267 case PLACEHOLDER_EXPR:
7268 case SSA_NAME:
7269 case FIELD_DECL:
7270 case RESULT_DECL:
0fa2e4df 7271 /* None of these have subtrees other than those already walked
b8c4a565
SB
7272 above. */
7273 break;
7274
7275 case TREE_LIST:
7276 WALK_SUBTREE (TREE_VALUE (*tp));
7277 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
7278 break;
7279
7280 case TREE_VEC:
7281 {
7282 int len = TREE_VEC_LENGTH (*tp);
7283
7284 if (len == 0)
7285 break;
7286
7287 /* Walk all elements but the first. */
7288 while (--len)
7289 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
7290
7291 /* Now walk the first one as a tail call. */
7292 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
7293 }
7294
7295 case COMPLEX_CST:
7296 WALK_SUBTREE (TREE_REALPART (*tp));
7297 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
7298
7299 case CONSTRUCTOR:
4038c495
GB
7300 {
7301 unsigned HOST_WIDE_INT idx;
7302 constructor_elt *ce;
7303
7304 for (idx = 0;
7305 VEC_iterate(constructor_elt, CONSTRUCTOR_ELTS (*tp), idx, ce);
7306 idx++)
7307 WALK_SUBTREE (ce->value);
7308 }
7309 break;
b8c4a565
SB
7310
7311 case SAVE_EXPR:
7312 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
7313
7314 case BIND_EXPR:
7315 {
7316 tree decl;
7317 for (decl = BIND_EXPR_VARS (*tp); decl; decl = TREE_CHAIN (decl))
7318 {
7319 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
7320 into declarations that are just mentioned, rather than
7321 declared; they don't really belong to this part of the tree.
7322 And, we can see cycles: the initializer for a declaration
7323 can refer to the declaration itself. */
7324 WALK_SUBTREE (DECL_INITIAL (decl));
7325 WALK_SUBTREE (DECL_SIZE (decl));
7326 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
7327 }
7328 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
7329 }
7330
7331 case STATEMENT_LIST:
7332 {
7333 tree_stmt_iterator i;
7334 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
7335 WALK_SUBTREE (*tsi_stmt_ptr (i));
7336 }
7337 break;
7338
7339 default:
7340 /* ??? This could be a language-defined node. We really should make
7341 a hook for it, but right now just ignore it. */
7342 break;
7343 }
7344 }
7345
7346 /* We didn't find what we were looking for. */
7347 return NULL_TREE;
7348
7349#undef WALK_SUBTREE_TAIL
7350}
7351#undef WALK_SUBTREE
7352
7353/* Like walk_tree, but does not walk duplicate nodes more than once. */
7354
7355tree
7356walk_tree_without_duplicates (tree *tp, walk_tree_fn func, void *data)
7357{
7358 tree result;
7359 struct pointer_set_t *pset;
7360
7361 pset = pointer_set_create ();
7362 result = walk_tree (tp, func, data, pset);
7363 pointer_set_destroy (pset);
7364 return result;
7365}
7366
e2500fed 7367#include "gt-tree.h"
This page took 5.005604 seconds and 5 git commands to generate.