]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree.c
re PR fortran/46818 (ICE on pointer assignment (-fwhole-file))
[thirdparty/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,
47ea1edf
DK
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011 Free Software Foundation, Inc.
c6a1db6c 5
1322177d 6This file is part of GCC.
c6a1db6c 7
1322177d
LB
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
9dcd6f09 10Software Foundation; either version 3, or (at your option) any later
1322177d 11version.
c6a1db6c 12
1322177d
LB
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
c6a1db6c
RS
17
18You should have received a copy of the GNU General Public License
9dcd6f09
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
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"
6baf1cc8 38#include "tm_p.h"
d69c4bd1 39#include "function.h"
c6a1db6c 40#include "obstack.h"
10f0ad3d 41#include "toplev.h"
87ff9c8e 42#include "ggc.h"
d88f311b 43#include "hashtab.h"
3b304f5b 44#include "output.h"
672a6f42 45#include "target.h"
5d69f816 46#include "langhooks.h"
f82a627c 47#include "tree-inline.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"
4537ec0c
DN
53#include "tree-pass.h"
54#include "langhooks-def.h"
55#include "diagnostic.h"
cf835838
JM
56#include "tree-diagnostic.h"
57#include "tree-pretty-print.h"
4537ec0c
DN
58#include "cgraph.h"
59#include "timevar.h"
60#include "except.h"
61#include "debug.h"
96c169e1 62#include "intl.h"
956d6950 63
c0ed0531
ILT
64/* Tree code classes. */
65
66#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
67#define END_OF_BASE_TREE_CODES tcc_exceptional,
68
69const enum tree_code_class tree_code_type[] = {
70#include "all-tree.def"
71};
72
73#undef DEFTREECODE
74#undef END_OF_BASE_TREE_CODES
75
76/* Table indexed by tree code giving number of expression
77 operands beyond the fixed part of the node structure.
78 Not used for types or decls. */
79
80#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
81#define END_OF_BASE_TREE_CODES 0,
82
83const unsigned char tree_code_length[] = {
84#include "all-tree.def"
85};
86
87#undef DEFTREECODE
88#undef END_OF_BASE_TREE_CODES
89
90/* Names of tree components.
91 Used for printing out the tree and error messages. */
92#define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
93#define END_OF_BASE_TREE_CODES "@dummy",
94
95const char *const tree_code_name[] = {
96#include "all-tree.def"
97};
98
99#undef DEFTREECODE
100#undef END_OF_BASE_TREE_CODES
101
6615c446
JO
102/* Each tree code class has an associated string representation.
103 These must correspond to the tree_code_class entries. */
104
b85e3643
ZW
105const char *const tree_code_class_strings[] =
106{
107 "exceptional",
108 "constant",
109 "type",
110 "declaration",
111 "reference",
112 "comparison",
113 "unary",
114 "binary",
115 "statement",
5039610b 116 "vl_exp",
726a989a 117 "expression"
b85e3643 118};
6615c446 119
dc478a5d 120/* obstack.[ch] explicitly declined to prototype this. */
46c5ad27 121extern int _obstack_allocated_p (struct obstack *h, void *obj);
c6a1db6c 122
3e16bfe2 123#ifdef GATHER_STATISTICS
c6a1db6c 124/* Statistics-gathering stuff. */
03646189 125
dc478a5d
KH
126int tree_node_counts[(int) all_kinds];
127int tree_node_sizes[(int) all_kinds];
03646189 128
938d968e 129/* Keep in sync with tree.h:enum tree_node_kind. */
341a243e 130static const char * const tree_node_kind_names[] = {
03646189
RS
131 "decls",
132 "types",
133 "blocks",
134 "stmts",
135 "refs",
136 "exprs",
137 "constants",
138 "identifiers",
03646189 139 "vecs",
95b4aca6 140 "binfos",
6de9cd9a 141 "ssa names",
4038c495 142 "constructors",
03646189
RS
143 "random kinds",
144 "lang_decl kinds",
aaf46ef9 145 "lang_type kinds",
07beea0d 146 "omp clauses",
03646189 147};
3e16bfe2 148#endif /* GATHER_STATISTICS */
c6a1db6c 149
0e77444b 150/* Unique id for next decl created. */
03907fbd 151static GTY(()) int next_decl_uid;
579f50b6 152/* Unique id for next type created. */
03907fbd 153static GTY(()) int next_type_uid = 1;
0ca5af51
AO
154/* Unique id for next debug decl created. Use negative numbers,
155 to catch erroneous uses. */
156static GTY(()) int next_debug_decl_uid;
0e77444b 157
d88f311b
ML
158/* Since we cannot rehash a type after it is in the table, we have to
159 keep the hash code. */
87ff9c8e 160
d1b38208 161struct GTY(()) type_hash {
d88f311b
ML
162 unsigned long hash;
163 tree type;
87ff9c8e
RH
164};
165
dc478a5d 166/* Initial size of the hash table (rounded to next prime). */
d88f311b 167#define TYPE_HASH_INITIAL_SIZE 1000
87ff9c8e 168
d88f311b
ML
169/* Now here is the hash table. When recording a type, it is added to
170 the slot whose index is the hash code. Note that the hash table is
171 used for several kinds of types (function types, array types and
172 array index range types, for now). While all these live in the
173 same table, they are completely independent, and the hash code is
174 computed differently for each of these. */
175
e2500fed
GK
176static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
177 htab_t type_hash_table;
87ff9c8e 178
b66a64f1
NS
179/* Hash table and temporary node for larger integer const values. */
180static GTY (()) tree int_cst_node;
181static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
182 htab_t int_cst_hash_table;
183
ab442df7
MM
184/* Hash table for optimization flags and target option flags. Use the same
185 hash table for both sets of options. Nodes for building the current
186 optimization and target option nodes. The assumption is most of the time
187 the options created will already be in the hash table, so we avoid
188 allocating and freeing up a node repeatably. */
189static GTY (()) tree cl_optimization_node;
190static GTY (()) tree cl_target_option_node;
191static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
192 htab_t cl_option_hash_table;
193
f991abd1
DB
194/* General tree->tree mapping structure for use in hash tables. */
195
f991abd1 196
53e030f1 197static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
f991abd1
DB
198 htab_t debug_expr_for_decl;
199
53e030f1 200static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
833b3afe
DB
201 htab_t value_expr_for_decl;
202
b8698a0f 203static GTY ((if_marked ("tree_priority_map_marked_p"),
fc8600f9 204 param_is (struct tree_priority_map)))
820cc88f
DB
205 htab_t init_priority_for_decl;
206
46c5ad27 207static void set_type_quals (tree, int);
46c5ad27
AJ
208static int type_hash_eq (const void *, const void *);
209static hashval_t type_hash_hash (const void *);
b66a64f1
NS
210static hashval_t int_cst_hash_hash (const void *);
211static int int_cst_hash_eq (const void *, const void *);
ab442df7
MM
212static hashval_t cl_option_hash_hash (const void *);
213static int cl_option_hash_eq (const void *, const void *);
46c5ad27 214static void print_type_hash_statistics (void);
f991abd1 215static void print_debug_expr_statistics (void);
833b3afe 216static void print_value_expr_statistics (void);
46c5ad27 217static int type_hash_marked_p (const void *);
9566a759
KG
218static unsigned int type_hash_list (const_tree, hashval_t);
219static unsigned int attribute_hash_list (const_tree, hashval_t);
0a818f84 220
81b3411c 221tree global_trees[TI_MAX];
7145ef21 222tree integer_types[itk_none];
f991abd1 223
00ffc97c 224unsigned char tree_contains_struct[MAX_TREE_CODES][64];
aaf46ef9
DN
225
226/* Number of operands for each OpenMP clause. */
227unsigned const char omp_clause_num_ops[] =
228{
229 0, /* OMP_CLAUSE_ERROR */
230 1, /* OMP_CLAUSE_PRIVATE */
231 1, /* OMP_CLAUSE_SHARED */
232 1, /* OMP_CLAUSE_FIRSTPRIVATE */
a68ab351 233 2, /* OMP_CLAUSE_LASTPRIVATE */
aaf46ef9
DN
234 4, /* OMP_CLAUSE_REDUCTION */
235 1, /* OMP_CLAUSE_COPYIN */
236 1, /* OMP_CLAUSE_COPYPRIVATE */
237 1, /* OMP_CLAUSE_IF */
238 1, /* OMP_CLAUSE_NUM_THREADS */
239 1, /* OMP_CLAUSE_SCHEDULE */
240 0, /* OMP_CLAUSE_NOWAIT */
241 0, /* OMP_CLAUSE_ORDERED */
a68ab351
JJ
242 0, /* OMP_CLAUSE_DEFAULT */
243 3, /* OMP_CLAUSE_COLLAPSE */
244 0 /* OMP_CLAUSE_UNTIED */
aaf46ef9
DN
245};
246
247const char * const omp_clause_code_name[] =
248{
249 "error_clause",
250 "private",
251 "shared",
252 "firstprivate",
253 "lastprivate",
254 "reduction",
255 "copyin",
256 "copyprivate",
257 "if",
258 "num_threads",
259 "schedule",
260 "nowait",
261 "ordered",
a68ab351
JJ
262 "default",
263 "collapse",
264 "untied"
aaf46ef9 265};
d251bfca
DN
266
267
268/* Return the tree node structure used by tree code CODE. */
269
270static inline enum tree_node_structure_enum
271tree_node_structure_for_code (enum tree_code code)
272{
273 switch (TREE_CODE_CLASS (code))
b8698a0f 274 {
d251bfca
DN
275 case tcc_declaration:
276 {
277 switch (code)
278 {
279 case FIELD_DECL:
280 return TS_FIELD_DECL;
281 case PARM_DECL:
282 return TS_PARM_DECL;
283 case VAR_DECL:
284 return TS_VAR_DECL;
285 case LABEL_DECL:
286 return TS_LABEL_DECL;
287 case RESULT_DECL:
288 return TS_RESULT_DECL;
a83f5409
AO
289 case DEBUG_EXPR_DECL:
290 return TS_DECL_WRTL;
d251bfca
DN
291 case CONST_DECL:
292 return TS_CONST_DECL;
293 case TYPE_DECL:
294 return TS_TYPE_DECL;
295 case FUNCTION_DECL:
296 return TS_FUNCTION_DECL;
6be14c0e
RG
297 case TRANSLATION_UNIT_DECL:
298 return TS_TRANSLATION_UNIT_DECL;
d251bfca
DN
299 default:
300 return TS_DECL_NON_COMMON;
301 }
302 }
303 case tcc_type:
304 return TS_TYPE;
305 case tcc_reference:
306 case tcc_comparison:
307 case tcc_unary:
308 case tcc_binary:
309 case tcc_expression:
310 case tcc_statement:
311 case tcc_vl_exp:
312 return TS_EXP;
313 default: /* tcc_constant and tcc_exceptional */
314 break;
315 }
316 switch (code)
317 {
318 /* tcc_constant cases. */
319 case INTEGER_CST: return TS_INT_CST;
320 case REAL_CST: return TS_REAL_CST;
321 case FIXED_CST: return TS_FIXED_CST;
322 case COMPLEX_CST: return TS_COMPLEX;
323 case VECTOR_CST: return TS_VECTOR;
324 case STRING_CST: return TS_STRING;
325 /* tcc_exceptional cases. */
326 case ERROR_MARK: return TS_COMMON;
327 case IDENTIFIER_NODE: return TS_IDENTIFIER;
328 case TREE_LIST: return TS_LIST;
329 case TREE_VEC: return TS_VEC;
330 case SSA_NAME: return TS_SSA_NAME;
331 case PLACEHOLDER_EXPR: return TS_COMMON;
332 case STATEMENT_LIST: return TS_STATEMENT_LIST;
333 case BLOCK: return TS_BLOCK;
334 case CONSTRUCTOR: return TS_CONSTRUCTOR;
335 case TREE_BINFO: return TS_BINFO;
336 case OMP_CLAUSE: return TS_OMP_CLAUSE;
337 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
338 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
339
340 default:
341 gcc_unreachable ();
342 }
343}
344
345
346/* Initialize tree_contains_struct to describe the hierarchy of tree
347 nodes. */
348
349static void
350initialize_tree_contains_struct (void)
351{
352 unsigned i;
353
354#define MARK_TS_BASE(C) \
355 do { \
356 tree_contains_struct[C][TS_BASE] = 1; \
357 } while (0)
358
359#define MARK_TS_COMMON(C) \
360 do { \
361 MARK_TS_BASE (C); \
362 tree_contains_struct[C][TS_COMMON] = 1; \
363 } while (0)
364
365#define MARK_TS_DECL_MINIMAL(C) \
366 do { \
367 MARK_TS_COMMON (C); \
368 tree_contains_struct[C][TS_DECL_MINIMAL] = 1; \
369 } while (0)
b8698a0f 370
d251bfca
DN
371#define MARK_TS_DECL_COMMON(C) \
372 do { \
373 MARK_TS_DECL_MINIMAL (C); \
374 tree_contains_struct[C][TS_DECL_COMMON] = 1; \
375 } while (0)
376
377#define MARK_TS_DECL_WRTL(C) \
378 do { \
379 MARK_TS_DECL_COMMON (C); \
380 tree_contains_struct[C][TS_DECL_WRTL] = 1; \
381 } while (0)
382
383#define MARK_TS_DECL_WITH_VIS(C) \
384 do { \
385 MARK_TS_DECL_WRTL (C); \
386 tree_contains_struct[C][TS_DECL_WITH_VIS] = 1; \
387 } while (0)
388
389#define MARK_TS_DECL_NON_COMMON(C) \
390 do { \
391 MARK_TS_DECL_WITH_VIS (C); \
392 tree_contains_struct[C][TS_DECL_NON_COMMON] = 1; \
393 } while (0)
394
395 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
396 {
397 enum tree_code code;
398 enum tree_node_structure_enum ts_code;
399
400 code = (enum tree_code) i;
401 ts_code = tree_node_structure_for_code (code);
402
403 /* Mark the TS structure itself. */
404 tree_contains_struct[code][ts_code] = 1;
405
406 /* Mark all the structures that TS is derived from. */
407 switch (ts_code)
408 {
409 case TS_COMMON:
410 MARK_TS_BASE (code);
411 break;
412
413 case TS_INT_CST:
414 case TS_REAL_CST:
415 case TS_FIXED_CST:
416 case TS_VECTOR:
417 case TS_STRING:
418 case TS_COMPLEX:
419 case TS_IDENTIFIER:
420 case TS_DECL_MINIMAL:
421 case TS_TYPE:
422 case TS_LIST:
423 case TS_VEC:
424 case TS_EXP:
425 case TS_SSA_NAME:
426 case TS_BLOCK:
427 case TS_BINFO:
428 case TS_STATEMENT_LIST:
429 case TS_CONSTRUCTOR:
430 case TS_OMP_CLAUSE:
431 case TS_OPTIMIZATION:
432 case TS_TARGET_OPTION:
433 MARK_TS_COMMON (code);
434 break;
435
436 case TS_DECL_COMMON:
437 MARK_TS_DECL_MINIMAL (code);
438 break;
439
440 case TS_DECL_WRTL:
441 MARK_TS_DECL_COMMON (code);
442 break;
443
444 case TS_DECL_NON_COMMON:
445 MARK_TS_DECL_WITH_VIS (code);
446 break;
447
448 case TS_DECL_WITH_VIS:
449 case TS_PARM_DECL:
450 case TS_LABEL_DECL:
451 case TS_RESULT_DECL:
452 case TS_CONST_DECL:
453 MARK_TS_DECL_WRTL (code);
454 break;
455
456 case TS_FIELD_DECL:
457 MARK_TS_DECL_COMMON (code);
458 break;
459
460 case TS_VAR_DECL:
461 MARK_TS_DECL_WITH_VIS (code);
462 break;
463
464 case TS_TYPE_DECL:
465 case TS_FUNCTION_DECL:
466 MARK_TS_DECL_NON_COMMON (code);
467 break;
468
6be14c0e
RG
469 case TS_TRANSLATION_UNIT_DECL:
470 MARK_TS_DECL_COMMON (code);
471 break;
472
d251bfca
DN
473 default:
474 gcc_unreachable ();
475 }
476 }
477
478 /* Basic consistency checks for attributes used in fold. */
479 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
d251bfca
DN
480 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
481 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
482 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
483 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
484 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
485 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
486 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
487 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
488 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
489 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
490 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_WRTL]);
491 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
492 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
493 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
494 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
495 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
496 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
497 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
498 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
499 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
500 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
501 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
502 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
503 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
504 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
505 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
506 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
507 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
d251bfca
DN
508 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
509 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
510 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
511 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
512 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
513 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
514 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
515 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
516 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
517 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
518
519#undef MARK_TS_BASE
520#undef MARK_TS_COMMON
521#undef MARK_TS_DECL_MINIMAL
522#undef MARK_TS_DECL_COMMON
523#undef MARK_TS_DECL_WRTL
524#undef MARK_TS_DECL_WITH_VIS
525#undef MARK_TS_DECL_NON_COMMON
526}
527
528
6d9f628e 529/* Init tree.c. */
c6a1db6c
RS
530
531void
46c5ad27 532init_ttree (void)
c6a1db6c 533{
d4b60170 534 /* Initialize the hash table of types. */
17211ab5
GK
535 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
536 type_hash_eq, 0);
f991abd1 537
53e030f1
JJ
538 debug_expr_for_decl = htab_create_ggc (512, tree_decl_map_hash,
539 tree_decl_map_eq, 0);
f991abd1 540
53e030f1
JJ
541 value_expr_for_decl = htab_create_ggc (512, tree_decl_map_hash,
542 tree_decl_map_eq, 0);
fc8600f9
MM
543 init_priority_for_decl = htab_create_ggc (512, tree_priority_map_hash,
544 tree_priority_map_eq, 0);
833b3afe 545
b66a64f1
NS
546 int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
547 int_cst_hash_eq, NULL);
b8698a0f 548
b66a64f1 549 int_cst_node = make_node (INTEGER_CST);
f991abd1 550
ab442df7
MM
551 cl_option_hash_table = htab_create_ggc (64, cl_option_hash_hash,
552 cl_option_hash_eq, NULL);
553
554 cl_optimization_node = make_node (OPTIMIZATION_NODE);
555 cl_target_option_node = make_node (TARGET_OPTION_NODE);
556
d251bfca
DN
557 /* Initialize the tree_contains_struct array. */
558 initialize_tree_contains_struct ();
820cc88f 559 lang_hooks.init_ts ();
c6a1db6c
RS
560}
561
c6a1db6c 562\f
599bba86
NB
563/* The name of the object as the assembler will see it (but before any
564 translations made by ASM_OUTPUT_LABELREF). Often this is the same
565 as DECL_NAME. It is an IDENTIFIER_NODE. */
566tree
46c5ad27 567decl_assembler_name (tree decl)
599bba86
NB
568{
569 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
ae2bcd98 570 lang_hooks.set_decl_assembler_name (decl);
820cc88f 571 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
599bba86
NB
572}
573
8a4a83ed
JH
574/* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
575
576bool
266ad5c8 577decl_assembler_name_equal (tree decl, const_tree asmname)
8a4a83ed
JH
578{
579 tree decl_asmname = DECL_ASSEMBLER_NAME (decl);
4d16a7b7
JH
580 const char *decl_str;
581 const char *asmname_str;
582 bool test = false;
8a4a83ed
JH
583
584 if (decl_asmname == asmname)
585 return true;
586
4d16a7b7
JH
587 decl_str = IDENTIFIER_POINTER (decl_asmname);
588 asmname_str = IDENTIFIER_POINTER (asmname);
b8698a0f 589
4d16a7b7 590
8a4a83ed
JH
591 /* If the target assembler name was set by the user, things are trickier.
592 We have a leading '*' to begin with. After that, it's arguable what
593 is the correct thing to do with -fleading-underscore. Arguably, we've
594 historically been doing the wrong thing in assemble_alias by always
595 printing the leading underscore. Since we're not changing that, make
596 sure user_label_prefix follows the '*' before matching. */
4d16a7b7 597 if (decl_str[0] == '*')
8a4a83ed 598 {
8a4a83ed
JH
599 size_t ulp_len = strlen (user_label_prefix);
600
4d16a7b7
JH
601 decl_str ++;
602
8a4a83ed 603 if (ulp_len == 0)
4d16a7b7 604 test = true;
8a4a83ed 605 else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
4d16a7b7 606 decl_str += ulp_len, test=true;
8a4a83ed 607 else
4d16a7b7
JH
608 decl_str --;
609 }
610 if (asmname_str[0] == '*')
611 {
612 size_t ulp_len = strlen (user_label_prefix);
613
614 asmname_str ++;
8a4a83ed 615
4d16a7b7
JH
616 if (ulp_len == 0)
617 test = true;
618 else if (strncmp (asmname_str, user_label_prefix, ulp_len) == 0)
619 asmname_str += ulp_len, test=true;
620 else
621 asmname_str --;
8a4a83ed
JH
622 }
623
4d16a7b7
JH
624 if (!test)
625 return false;
626 return strcmp (decl_str, asmname_str) == 0;
8a4a83ed
JH
627}
628
266ad5c8
JH
629/* Hash asmnames ignoring the user specified marks. */
630
631hashval_t
632decl_assembler_name_hash (const_tree asmname)
633{
634 if (IDENTIFIER_POINTER (asmname)[0] == '*')
635 {
636 const char *decl_str = IDENTIFIER_POINTER (asmname) + 1;
637 size_t ulp_len = strlen (user_label_prefix);
638
639 if (ulp_len == 0)
640 ;
641 else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
642 decl_str += ulp_len;
643
644 return htab_hash_string (decl_str);
645 }
646
647 return htab_hash_string (IDENTIFIER_POINTER (asmname));
648}
649
a396f8ae 650/* Compute the number of bytes occupied by a tree with code CODE.
5039610b 651 This function cannot be used for nodes that have variable sizes,
726a989a 652 including TREE_VEC, STRING_CST, and CALL_EXPR. */
c5620996 653size_t
a38b644b 654tree_code_size (enum tree_code code)
c5620996 655{
c5620996
GK
656 switch (TREE_CODE_CLASS (code))
657 {
6615c446 658 case tcc_declaration: /* A decl node */
820cc88f
DB
659 {
660 switch (code)
661 {
662 case FIELD_DECL:
663 return sizeof (struct tree_field_decl);
664 case PARM_DECL:
665 return sizeof (struct tree_parm_decl);
666 case VAR_DECL:
667 return sizeof (struct tree_var_decl);
668 case LABEL_DECL:
669 return sizeof (struct tree_label_decl);
670 case RESULT_DECL:
671 return sizeof (struct tree_result_decl);
672 case CONST_DECL:
673 return sizeof (struct tree_const_decl);
674 case TYPE_DECL:
675 return sizeof (struct tree_type_decl);
676 case FUNCTION_DECL:
677 return sizeof (struct tree_function_decl);
a83f5409
AO
678 case DEBUG_EXPR_DECL:
679 return sizeof (struct tree_decl_with_rtl);
820cc88f
DB
680 default:
681 return sizeof (struct tree_decl_non_common);
682 }
683 }
c5620996 684
6615c446 685 case tcc_type: /* a type node */
c5620996
GK
686 return sizeof (struct tree_type);
687
6615c446
JO
688 case tcc_reference: /* a reference */
689 case tcc_expression: /* an expression */
690 case tcc_statement: /* an expression with side effects */
691 case tcc_comparison: /* a comparison expression */
692 case tcc_unary: /* a unary arithmetic expression */
693 case tcc_binary: /* a binary arithmetic expression */
c5620996 694 return (sizeof (struct tree_exp)
5039610b 695 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
c5620996 696
6615c446 697 case tcc_constant: /* a constant */
d78e771d
ZW
698 switch (code)
699 {
700 case INTEGER_CST: return sizeof (struct tree_int_cst);
701 case REAL_CST: return sizeof (struct tree_real_cst);
325217ed 702 case FIXED_CST: return sizeof (struct tree_fixed_cst);
d78e771d
ZW
703 case COMPLEX_CST: return sizeof (struct tree_complex);
704 case VECTOR_CST: return sizeof (struct tree_vector);
a396f8ae 705 case STRING_CST: gcc_unreachable ();
d78e771d 706 default:
ae2bcd98 707 return lang_hooks.tree_size (code);
d78e771d 708 }
c5620996 709
6615c446 710 case tcc_exceptional: /* something random, like an identifier. */
d78e771d
ZW
711 switch (code)
712 {
713 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
714 case TREE_LIST: return sizeof (struct tree_list);
d78e771d
ZW
715
716 case ERROR_MARK:
717 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
718
a396f8ae 719 case TREE_VEC:
726a989a 720 case OMP_CLAUSE: gcc_unreachable ();
6de9cd9a 721
6de9cd9a 722 case SSA_NAME: return sizeof (struct tree_ssa_name);
6de9cd9a
DN
723
724 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
90afe2c9 725 case BLOCK: return sizeof (struct tree_block);
4038c495 726 case CONSTRUCTOR: return sizeof (struct tree_constructor);
ab442df7
MM
727 case OPTIMIZATION_NODE: return sizeof (struct tree_optimization_option);
728 case TARGET_OPTION_NODE: return sizeof (struct tree_target_option);
6de9cd9a 729
d78e771d 730 default:
ae2bcd98 731 return lang_hooks.tree_size (code);
d78e771d 732 }
c5620996
GK
733
734 default:
1e128c5f 735 gcc_unreachable ();
c5620996
GK
736 }
737}
738
a38b644b 739/* Compute the number of bytes occupied by NODE. This routine only
5039610b 740 looks at TREE_CODE, except for those nodes that have variable sizes. */
a38b644b 741size_t
9566a759 742tree_size (const_tree node)
a38b644b 743{
9566a759 744 const enum tree_code code = TREE_CODE (node);
a38b644b
ZW
745 switch (code)
746 {
0ebfd2c9
RS
747 case TREE_BINFO:
748 return (offsetof (struct tree_binfo, base_binfos)
749 + VEC_embedded_size (tree, BINFO_N_BASE_BINFOS (node)));
a38b644b
ZW
750
751 case TREE_VEC:
752 return (sizeof (struct tree_vec)
5039610b 753 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
a38b644b 754
a396f8ae 755 case STRING_CST:
43b50eb2 756 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
a396f8ae 757
aaf46ef9
DN
758 case OMP_CLAUSE:
759 return (sizeof (struct tree_omp_clause)
760 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
761 * sizeof (tree));
762
a38b644b 763 default:
5039610b
SL
764 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
765 return (sizeof (struct tree_exp)
766 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
767 else
768 return tree_code_size (code);
a38b644b
ZW
769 }
770}
771
772/* Return a newly allocated node of code CODE. For decl and type
773 nodes, some other fields are initialized. The rest of the node is
726a989a
RB
774 initialized to zero. This function cannot be used for TREE_VEC or
775 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
c6a1db6c
RS
776
777 Achoo! I got a code in the node. */
778
779tree
b9dcdee4 780make_node_stat (enum tree_code code MEM_STAT_DECL)
c6a1db6c 781{
b3694847 782 tree t;
6615c446 783 enum tree_code_class type = TREE_CODE_CLASS (code);
a38b644b 784 size_t length = tree_code_size (code);
5e9defae 785#ifdef GATHER_STATISTICS
b3694847 786 tree_node_kind kind;
3b03c671 787
c6a1db6c
RS
788 switch (type)
789 {
6615c446 790 case tcc_declaration: /* A decl node */
c6a1db6c 791 kind = d_kind;
c6a1db6c
RS
792 break;
793
6615c446 794 case tcc_type: /* a type node */
c6a1db6c 795 kind = t_kind;
c6a1db6c
RS
796 break;
797
6615c446 798 case tcc_statement: /* an expression with side effects */
c6a1db6c 799 kind = s_kind;
c5620996
GK
800 break;
801
6615c446 802 case tcc_reference: /* a reference */
c6a1db6c 803 kind = r_kind;
c5620996
GK
804 break;
805
6615c446
JO
806 case tcc_expression: /* an expression */
807 case tcc_comparison: /* a comparison expression */
808 case tcc_unary: /* a unary arithmetic expression */
809 case tcc_binary: /* a binary arithmetic expression */
c6a1db6c 810 kind = e_kind;
c6a1db6c
RS
811 break;
812
6615c446 813 case tcc_constant: /* a constant */
c6a1db6c 814 kind = c_kind;
66212c2f 815 break;
c6a1db6c 816
6615c446 817 case tcc_exceptional: /* something random, like an identifier. */
c4b3f0eb
NS
818 switch (code)
819 {
820 case IDENTIFIER_NODE:
821 kind = id_kind;
822 break;
823
4038c495 824 case TREE_VEC:
c4b3f0eb
NS
825 kind = vec_kind;
826 break;
827
828 case TREE_BINFO:
829 kind = binfo_kind;
830 break;
831
c4b3f0eb
NS
832 case SSA_NAME:
833 kind = ssa_name_kind;
834 break;
835
836 case BLOCK:
837 kind = b_kind;
838 break;
839
4038c495
GB
840 case CONSTRUCTOR:
841 kind = constr_kind;
842 break;
843
c4b3f0eb
NS
844 default:
845 kind = x_kind;
846 break;
847 }
a7fcb968 848 break;
b8698a0f 849
c4b3f0eb
NS
850 default:
851 gcc_unreachable ();
c6a1db6c
RS
852 }
853
dc478a5d
KH
854 tree_node_counts[(int) kind]++;
855 tree_node_sizes[(int) kind] += length;
c6a1db6c
RS
856#endif
857
a9429e29
LB
858 t = ggc_alloc_zone_cleared_tree_node_stat (
859 (code == IDENTIFIER_NODE) ? &tree_id_zone : &tree_zone,
860 length PASS_MEM_STAT);
c6a1db6c 861 TREE_SET_CODE (t, code);
c6a1db6c
RS
862
863 switch (type)
864 {
6615c446 865 case tcc_statement:
c6a1db6c 866 TREE_SIDE_EFFECTS (t) = 1;
c6a1db6c
RS
867 break;
868
6615c446 869 case tcc_declaration:
326eda4b
DB
870 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
871 {
d872ada0
GK
872 if (code == FUNCTION_DECL)
873 {
874 DECL_ALIGN (t) = FUNCTION_BOUNDARY;
875 DECL_MODE (t) = FUNCTION_MODE;
876 }
877 else
326eda4b 878 DECL_ALIGN (t) = 1;
326eda4b 879 }
f31686a3 880 DECL_SOURCE_LOCATION (t) = input_location;
0ca5af51
AO
881 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
882 DECL_UID (t) = --next_debug_decl_uid;
883 else
25a6a873
RG
884 {
885 DECL_UID (t) = next_decl_uid++;
886 SET_DECL_PT_UID (t, -1);
887 }
5b21f0f3
RG
888 if (TREE_CODE (t) == LABEL_DECL)
889 LABEL_DECL_UID (t) = -1;
128e8aa9 890
c6a1db6c
RS
891 break;
892
6615c446 893 case tcc_type:
579f50b6 894 TYPE_UID (t) = next_type_uid++;
490272b4 895 TYPE_ALIGN (t) = BITS_PER_UNIT;
11cf4d18 896 TYPE_USER_ALIGN (t) = 0;
c6a1db6c 897 TYPE_MAIN_VARIANT (t) = t;
06d40de8 898 TYPE_CANONICAL (t) = t;
128e8aa9
RK
899
900 /* Default to no attributes for type, but let target change that. */
91e97eb8 901 TYPE_ATTRIBUTES (t) = NULL_TREE;
5fd9b178 902 targetm.set_default_type_attributes (t);
128e8aa9
RK
903
904 /* We have not yet computed the alias set for this type. */
41472af8 905 TYPE_ALIAS_SET (t) = -1;
c6a1db6c
RS
906 break;
907
6615c446 908 case tcc_constant:
c6a1db6c
RS
909 TREE_CONSTANT (t) = 1;
910 break;
783feeb0 911
6615c446 912 case tcc_expression:
783feeb0
MM
913 switch (code)
914 {
915 case INIT_EXPR:
916 case MODIFY_EXPR:
917 case VA_ARG_EXPR:
783feeb0
MM
918 case PREDECREMENT_EXPR:
919 case PREINCREMENT_EXPR:
920 case POSTDECREMENT_EXPR:
921 case POSTINCREMENT_EXPR:
922 /* All of these have side-effects, no matter what their
923 operands are. */
924 TREE_SIDE_EFFECTS (t) = 1;
925 break;
dc478a5d 926
783feeb0
MM
927 default:
928 break;
929 }
930 break;
6615c446
JO
931
932 default:
933 /* Other classes need no special treatment. */
934 break;
c6a1db6c
RS
935 }
936
937 return t;
938}
939\f
c3da6f12 940/* Return a new node with the same contents as NODE except that its
3af4c257 941 TREE_CHAIN is zero and it has a fresh uid. */
c6a1db6c
RS
942
943tree
b9dcdee4 944copy_node_stat (tree node MEM_STAT_DECL)
c6a1db6c 945{
b3694847
SS
946 tree t;
947 enum tree_code code = TREE_CODE (node);
948 size_t length;
c6a1db6c 949
1e128c5f 950 gcc_assert (code != STATEMENT_LIST);
6de9cd9a 951
c5620996 952 length = tree_size (node);
a9429e29 953 t = ggc_alloc_zone_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
2e28f042 954 memcpy (t, node, length);
c6a1db6c 955
726a989a 956 TREE_CHAIN (t) = 0;
69b7087e 957 TREE_ASM_WRITTEN (t) = 0;
6de9cd9a 958 TREE_VISITED (t) = 0;
a5883ba0
MM
959 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
960 *DECL_VAR_ANN_PTR (t) = 0;
c6a1db6c 961
6615c446 962 if (TREE_CODE_CLASS (code) == tcc_declaration)
833b3afe 963 {
0ca5af51
AO
964 if (code == DEBUG_EXPR_DECL)
965 DECL_UID (t) = --next_debug_decl_uid;
966 else
25a6a873
RG
967 {
968 DECL_UID (t) = next_decl_uid++;
969 if (DECL_PT_UID_SET_P (node))
970 SET_DECL_PT_UID (t, DECL_PT_UID (node));
971 }
833b3afe
DB
972 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
973 && DECL_HAS_VALUE_EXPR_P (node))
974 {
975 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
976 DECL_HAS_VALUE_EXPR_P (t) = 1;
977 }
820cc88f
DB
978 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
979 {
980 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
981 DECL_HAS_INIT_PRIORITY_P (t) = 1;
982 }
833b3afe 983 }
6615c446 984 else if (TREE_CODE_CLASS (code) == tcc_type)
d9cbc259
RK
985 {
986 TYPE_UID (t) = next_type_uid++;
28238567
PB
987 /* The following is so that the debug code for
988 the copy is different from the original type.
989 The two statements usually duplicate each other
990 (because they clear fields of the same union),
0f41302f 991 but the optimizer should catch that. */
28238567
PB
992 TYPE_SYMTAB_POINTER (t) = 0;
993 TYPE_SYMTAB_ADDRESS (t) = 0;
b8698a0f 994
8c1d6d62
NS
995 /* Do not copy the values cache. */
996 if (TYPE_CACHED_VALUES_P(t))
997 {
998 TYPE_CACHED_VALUES_P (t) = 0;
999 TYPE_CACHED_VALUES (t) = NULL_TREE;
1000 }
d9cbc259 1001 }
579f50b6 1002
c6a1db6c
RS
1003 return t;
1004}
1005
1006/* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1007 For example, this can copy a list made of TREE_LIST nodes. */
1008
1009tree
46c5ad27 1010copy_list (tree list)
c6a1db6c
RS
1011{
1012 tree head;
b3694847 1013 tree prev, next;
c6a1db6c
RS
1014
1015 if (list == 0)
1016 return 0;
1017
1018 head = prev = copy_node (list);
1019 next = TREE_CHAIN (list);
1020 while (next)
1021 {
1022 TREE_CHAIN (prev) = copy_node (next);
1023 prev = TREE_CHAIN (prev);
1024 next = TREE_CHAIN (next);
1025 }
1026 return head;
1027}
a94dbf2c 1028
c6a1db6c 1029\f
7d60be94
NS
1030/* Create an INT_CST node with a LOW value sign extended. */
1031
d938569c
RK
1032tree
1033build_int_cst (tree type, HOST_WIDE_INT low)
7d60be94 1034{
7fb41a42
RG
1035 /* Support legacy code. */
1036 if (!type)
1037 type = integer_type_node;
1038
69fbfdd8 1039 return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
7d60be94
NS
1040}
1041
89d12f5d
ZD
1042/* Create an INT_CST node with a LOW value in TYPE. The value is sign extended
1043 if it is negative. This function is similar to build_int_cst, but
1044 the extra bits outside of the type precision are cleared. Constants
1045 with these extra bits may confuse the fold so that it detects overflows
1046 even in cases when they do not occur, and in general should be avoided.
1047 We cannot however make this a default behavior of build_int_cst without
1048 more intrusive changes, since there are parts of gcc that rely on the extra
1049 precision of the integer constants. */
8b11a64c
ZD
1050
1051tree
1052build_int_cst_type (tree type, HOST_WIDE_INT low)
1053{
2b60792f 1054 gcc_assert (type);
89d12f5d 1055
88e06841 1056 return double_int_to_tree (type, shwi_to_double_int (low));
8b11a64c
ZD
1057}
1058
e6693cfa
AS
1059/* Constructs tree in type TYPE from with value given by CST. Signedness
1060 of CST is assumed to be the same as the signedness of TYPE. */
1061
1062tree
1063double_int_to_tree (tree type, double_int cst)
1064{
abdbbf16
AS
1065 /* Size types *are* sign extended. */
1066 bool sign_extended_type = (!TYPE_UNSIGNED (type)
1067 || (TREE_CODE (type) == INTEGER_TYPE
1068 && TYPE_IS_SIZETYPE (type)));
1069
1070 cst = double_int_ext (cst, TYPE_PRECISION (type), !sign_extended_type);
e6693cfa
AS
1071
1072 return build_int_cst_wide (type, cst.low, cst.high);
1073}
1074
1075/* Returns true if CST fits into range of TYPE. Signedness of CST is assumed
1076 to be the same as the signedness of TYPE. */
1077
1078bool
1079double_int_fits_to_tree_p (const_tree type, double_int cst)
1080{
abdbbf16
AS
1081 /* Size types *are* sign extended. */
1082 bool sign_extended_type = (!TYPE_UNSIGNED (type)
1083 || (TREE_CODE (type) == INTEGER_TYPE
1084 && TYPE_IS_SIZETYPE (type)));
1085
1086 double_int ext
1087 = double_int_ext (cst, TYPE_PRECISION (type), !sign_extended_type);
e6693cfa
AS
1088
1089 return double_int_equal_p (cst, ext);
1090}
1091
9589f23e
AS
1092/* We force the double_int CST to the range of the type TYPE by sign or
1093 zero extending it. OVERFLOWABLE indicates if we are interested in
1094 overflow of the value, when >0 we are only interested in signed
1095 overflow, for <0 we are interested in any overflow. OVERFLOWED
1096 indicates whether overflow has already occurred. CONST_OVERFLOWED
1097 indicates whether constant overflow has already occurred. We force
1098 T's value to be within range of T's type (by setting to 0 or 1 all
1099 the bits outside the type's range). We set TREE_OVERFLOWED if,
1100 OVERFLOWED is nonzero,
1101 or OVERFLOWABLE is >0 and signed overflow occurs
1102 or OVERFLOWABLE is <0 and any overflow occurs
1103 We return a new tree node for the extended double_int. The node
1104 is shared if no overflow flags are set. */
1105
1106
1107tree
1108force_fit_type_double (tree type, double_int cst, int overflowable,
1109 bool overflowed)
1110{
1111 bool sign_extended_type;
1112
1113 /* Size types *are* sign extended. */
1114 sign_extended_type = (!TYPE_UNSIGNED (type)
1115 || (TREE_CODE (type) == INTEGER_TYPE
1116 && TYPE_IS_SIZETYPE (type)));
1117
1118 /* If we need to set overflow flags, return a new unshared node. */
1119 if (overflowed || !double_int_fits_to_tree_p(type, cst))
1120 {
1121 if (overflowed
1122 || overflowable < 0
1123 || (overflowable > 0 && sign_extended_type))
1124 {
1125 tree t = make_node (INTEGER_CST);
1126 TREE_INT_CST (t) = double_int_ext (cst, TYPE_PRECISION (type),
1127 !sign_extended_type);
1128 TREE_TYPE (t) = type;
1129 TREE_OVERFLOW (t) = 1;
1130 return t;
1131 }
1132 }
1133
1134 /* Else build a shared node. */
1135 return double_int_to_tree (type, cst);
1136}
1137
b66a64f1
NS
1138/* These are the hash table functions for the hash table of INTEGER_CST
1139 nodes of a sizetype. */
1140
1141/* Return the hash code code X, an INTEGER_CST. */
1142
1143static hashval_t
1144int_cst_hash_hash (const void *x)
1145{
741ac903 1146 const_tree const t = (const_tree) x;
b66a64f1
NS
1147
1148 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
1149 ^ htab_hash_pointer (TREE_TYPE (t)));
1150}
1151
1152/* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1153 is the same as that given by *Y, which is the same. */
1154
1155static int
1156int_cst_hash_eq (const void *x, const void *y)
1157{
741ac903
KG
1158 const_tree const xt = (const_tree) x;
1159 const_tree const yt = (const_tree) y;
b66a64f1
NS
1160
1161 return (TREE_TYPE (xt) == TREE_TYPE (yt)
1162 && TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
1163 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt));
1164}
1165
2ac7cbb5
RG
1166/* Create an INT_CST node of TYPE and value HI:LOW.
1167 The returned node is always shared. For small integers we use a
1168 per-type vector cache, for larger ones we use a single hash table. */
c6a1db6c
RS
1169
1170tree
7d60be94 1171build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
c6a1db6c 1172{
4a90aeeb 1173 tree t;
89b0433e
NS
1174 int ix = -1;
1175 int limit = 0;
4a90aeeb 1176
7fb41a42 1177 gcc_assert (type);
19114537 1178
89b0433e
NS
1179 switch (TREE_CODE (type))
1180 {
1e85e720
RG
1181 case NULLPTR_TYPE:
1182 gcc_assert (hi == 0 && low == 0);
1183 /* Fallthru. */
1184
89b0433e
NS
1185 case POINTER_TYPE:
1186 case REFERENCE_TYPE:
1187 /* Cache NULL pointer. */
1188 if (!hi && !low)
1189 {
1190 limit = 1;
1191 ix = 0;
1192 }
1193 break;
19114537 1194
89b0433e
NS
1195 case BOOLEAN_TYPE:
1196 /* Cache false or true. */
1197 limit = 2;
1198 if (!hi && low < 2)
1199 ix = low;
1200 break;
19114537 1201
89b0433e 1202 case INTEGER_TYPE:
89b0433e
NS
1203 case OFFSET_TYPE:
1204 if (TYPE_UNSIGNED (type))
1205 {
1206 /* Cache 0..N */
1207 limit = INTEGER_SHARE_LIMIT;
1208 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
1209 ix = low;
1210 }
1211 else
1212 {
1213 /* Cache -1..N */
1214 limit = INTEGER_SHARE_LIMIT + 1;
1215 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
1216 ix = low + 1;
1217 else if (hi == -1 && low == -(unsigned HOST_WIDE_INT)1)
1218 ix = 0;
1219 }
1220 break;
b8b7f162
RS
1221
1222 case ENUMERAL_TYPE:
89b0433e 1223 break;
b8b7f162
RS
1224
1225 default:
1226 gcc_unreachable ();
89b0433e 1227 }
19114537 1228
89b0433e
NS
1229 if (ix >= 0)
1230 {
b66a64f1 1231 /* Look for it in the type's vector of small shared ints. */
89b0433e
NS
1232 if (!TYPE_CACHED_VALUES_P (type))
1233 {
1234 TYPE_CACHED_VALUES_P (type) = 1;
1235 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1236 }
19114537 1237
89b0433e
NS
1238 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1239 if (t)
1240 {
1241 /* Make sure no one is clobbering the shared constant. */
1e128c5f
GB
1242 gcc_assert (TREE_TYPE (t) == type);
1243 gcc_assert (TREE_INT_CST_LOW (t) == low);
1244 gcc_assert (TREE_INT_CST_HIGH (t) == hi);
b66a64f1
NS
1245 }
1246 else
1247 {
1248 /* Create a new shared int. */
1249 t = make_node (INTEGER_CST);
1250
1251 TREE_INT_CST_LOW (t) = low;
1252 TREE_INT_CST_HIGH (t) = hi;
1253 TREE_TYPE (t) = type;
b8698a0f 1254
b66a64f1 1255 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
89b0433e
NS
1256 }
1257 }
b66a64f1
NS
1258 else
1259 {
1260 /* Use the cache of larger shared ints. */
1261 void **slot;
19114537 1262
b66a64f1
NS
1263 TREE_INT_CST_LOW (int_cst_node) = low;
1264 TREE_INT_CST_HIGH (int_cst_node) = hi;
1265 TREE_TYPE (int_cst_node) = type;
89b0433e 1266
b66a64f1 1267 slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
3d9a9f94 1268 t = (tree) *slot;
b66a64f1
NS
1269 if (!t)
1270 {
1271 /* Insert this one into the hash table. */
1272 t = int_cst_node;
1273 *slot = t;
1274 /* Make a new node for next time round. */
1275 int_cst_node = make_node (INTEGER_CST);
1276 }
1277 }
19114537 1278
c6a1db6c
RS
1279 return t;
1280}
1281
38b0dcb8
ZD
1282/* Builds an integer constant in TYPE such that lowest BITS bits are ones
1283 and the rest are zeros. */
1284
1285tree
1286build_low_bits_mask (tree type, unsigned bits)
1287{
2bd1333d 1288 double_int mask;
38b0dcb8
ZD
1289
1290 gcc_assert (bits <= TYPE_PRECISION (type));
1291
1292 if (bits == TYPE_PRECISION (type)
1293 && !TYPE_UNSIGNED (type))
2bd1333d
AS
1294 /* Sign extended all-ones mask. */
1295 mask = double_int_minus_one;
38b0dcb8 1296 else
2bd1333d 1297 mask = double_int_mask (bits);
38b0dcb8 1298
2bd1333d 1299 return build_int_cst_wide (type, mask.low, mask.high);
38b0dcb8
ZD
1300}
1301
8b11a64c
ZD
1302/* Checks that X is integer constant that can be expressed in (unsigned)
1303 HOST_WIDE_INT without loss of precision. */
1304
1305bool
9566a759 1306cst_and_fits_in_hwi (const_tree x)
8b11a64c
ZD
1307{
1308 if (TREE_CODE (x) != INTEGER_CST)
1309 return false;
1310
1311 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1312 return false;
1313
1314 return (TREE_INT_CST_HIGH (x) == 0
1315 || TREE_INT_CST_HIGH (x) == -1);
1316}
1317
69ef87e2 1318/* Return a new VECTOR_CST node whose type is TYPE and whose values
206048bd 1319 are in a list pointed to by VALS. */
69ef87e2
AH
1320
1321tree
46c5ad27 1322build_vector (tree type, tree vals)
69ef87e2
AH
1323{
1324 tree v = make_node (VECTOR_CST);
455f14dd 1325 int over = 0;
69ef87e2 1326 tree link;
9b638c03 1327 unsigned cnt = 0;
69ef87e2
AH
1328
1329 TREE_VECTOR_CST_ELTS (v) = vals;
1330 TREE_TYPE (v) = type;
1331
1332 /* Iterate through elements and check for overflow. */
1333 for (link = vals; link; link = TREE_CHAIN (link))
1334 {
1335 tree value = TREE_VALUE (link);
9b638c03 1336 cnt++;
69ef87e2 1337
84816907
JM
1338 /* Don't crash if we get an address constant. */
1339 if (!CONSTANT_CLASS_P (value))
1340 continue;
1341
455f14dd 1342 over |= TREE_OVERFLOW (value);
69ef87e2 1343 }
3b03c671 1344
9b638c03
RG
1345 gcc_assert (cnt == TYPE_VECTOR_SUBPARTS (type));
1346
455f14dd 1347 TREE_OVERFLOW (v) = over;
69ef87e2
AH
1348 return v;
1349}
1350
4038c495
GB
1351/* Return a new VECTOR_CST node whose type is TYPE and whose values
1352 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1353
1354tree
1355build_vector_from_ctor (tree type, VEC(constructor_elt,gc) *v)
1356{
1357 tree list = NULL_TREE;
1358 unsigned HOST_WIDE_INT idx;
1359 tree value;
1360
1361 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1362 list = tree_cons (NULL_TREE, value, list);
9b638c03
RG
1363 for (; idx < TYPE_VECTOR_SUBPARTS (type); ++idx)
1364 list = tree_cons (NULL_TREE,
e8160c9a 1365 build_zero_cst (TREE_TYPE (type)), list);
4038c495
GB
1366 return build_vector (type, nreverse (list));
1367}
1368
f87bd04b
AS
1369/* Build a vector of type VECTYPE where all the elements are SCs. */
1370tree
1371build_vector_from_val (tree vectype, tree sc)
1372{
1373 int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1374 VEC(constructor_elt, gc) *v = NULL;
1375
1376 if (sc == error_mark_node)
1377 return sc;
1378
eb8e7cb1
NF
1379 gcc_assert (useless_type_conversion_p (TREE_TYPE (sc),
1380 TREE_TYPE (vectype)));
f87bd04b
AS
1381
1382 v = VEC_alloc (constructor_elt, gc, nunits);
1383 for (i = 0; i < nunits; ++i)
1384 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1385
1386 if (CONSTANT_CLASS_P (sc))
1387 return build_vector_from_ctor (vectype, v);
1388 else
1389 return build_constructor (vectype, v);
1390}
1391
dcf92453 1392/* Return a new CONSTRUCTOR node whose type is TYPE and whose values
206048bd 1393 are in the VEC pointed to by VALS. */
dcf92453 1394tree
4038c495 1395build_constructor (tree type, VEC(constructor_elt,gc) *vals)
dcf92453
ZW
1396{
1397 tree c = make_node (CONSTRUCTOR);
f88203b0
NF
1398 unsigned int i;
1399 constructor_elt *elt;
1400 bool constant_p = true;
1401
dcf92453
ZW
1402 TREE_TYPE (c) = type;
1403 CONSTRUCTOR_ELTS (c) = vals;
f88203b0 1404
ac47786e 1405 FOR_EACH_VEC_ELT (constructor_elt, vals, i, elt)
f88203b0
NF
1406 if (!TREE_CONSTANT (elt->value))
1407 {
1408 constant_p = false;
1409 break;
1410 }
1411
1412 TREE_CONSTANT (c) = constant_p;
1413
4038c495
GB
1414 return c;
1415}
1416
1417/* Build a CONSTRUCTOR node made of a single initializer, with the specified
1418 INDEX and VALUE. */
1419tree
1420build_constructor_single (tree type, tree index, tree value)
1421{
1422 VEC(constructor_elt,gc) *v;
1423 constructor_elt *elt;
1424
1425 v = VEC_alloc (constructor_elt, gc, 1);
1426 elt = VEC_quick_push (constructor_elt, v, NULL);
1427 elt->index = index;
1428 elt->value = value;
1429
f88203b0 1430 return build_constructor (type, v);
4038c495
GB
1431}
1432
1433
1434/* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1435 are in a list pointed to by VALS. */
1436tree
1437build_constructor_from_list (tree type, tree vals)
1438{
f88203b0 1439 tree t;
4038c495 1440 VEC(constructor_elt,gc) *v = NULL;
dcf92453 1441
dcf92453
ZW
1442 if (vals)
1443 {
4038c495
GB
1444 v = VEC_alloc (constructor_elt, gc, list_length (vals));
1445 for (t = vals; t; t = TREE_CHAIN (t))
f88203b0 1446 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
dcf92453 1447 }
dcf92453 1448
f88203b0 1449 return build_constructor (type, v);
dcf92453
ZW
1450}
1451
325217ed
CF
1452/* Return a new FIXED_CST node whose type is TYPE and value is F. */
1453
1454tree
1455build_fixed (tree type, FIXED_VALUE_TYPE f)
1456{
1457 tree v;
1458 FIXED_VALUE_TYPE *fp;
1459
1460 v = make_node (FIXED_CST);
a9429e29 1461 fp = ggc_alloc_fixed_value ();
325217ed
CF
1462 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1463
1464 TREE_TYPE (v) = type;
1465 TREE_FIXED_CST_PTR (v) = fp;
1466 return v;
1467}
4038c495 1468
c6a1db6c
RS
1469/* Return a new REAL_CST node whose type is TYPE and value is D. */
1470
1471tree
46c5ad27 1472build_real (tree type, REAL_VALUE_TYPE d)
c6a1db6c
RS
1473{
1474 tree v;
11ad4784 1475 REAL_VALUE_TYPE *dp;
0afbe93d 1476 int overflow = 0;
c6a1db6c 1477
efdc7e19
RH
1478 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1479 Consider doing it via real_convert now. */
c6a1db6c
RS
1480
1481 v = make_node (REAL_CST);
a9429e29 1482 dp = ggc_alloc_real_value ();
11ad4784 1483 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
41077ce4 1484
c6a1db6c 1485 TREE_TYPE (v) = type;
11ad4784 1486 TREE_REAL_CST_PTR (v) = dp;
455f14dd 1487 TREE_OVERFLOW (v) = overflow;
c6a1db6c
RS
1488 return v;
1489}
1490
1491/* Return a new REAL_CST node whose type is TYPE
1492 and whose value is the integer value of the INTEGER_CST node I. */
1493
c6a1db6c 1494REAL_VALUE_TYPE
9566a759 1495real_value_from_int_cst (const_tree type, const_tree i)
c6a1db6c
RS
1496{
1497 REAL_VALUE_TYPE d;
2026444a 1498
e545d37f
RK
1499 /* Clear all bits of the real value type so that we can later do
1500 bitwise comparisons to see if two values are the same. */
703ad42b 1501 memset (&d, 0, sizeof d);
e545d37f 1502
875eda9c
RS
1503 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
1504 TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
8df83eae 1505 TYPE_UNSIGNED (TREE_TYPE (i)));
c6a1db6c
RS
1506 return d;
1507}
1508
d4b60170 1509/* Given a tree representing an integer constant I, return a tree
15e5ad76 1510 representing the same value as a floating-point constant of type TYPE. */
c6a1db6c
RS
1511
1512tree
9566a759 1513build_real_from_int_cst (tree type, const_tree i)
c6a1db6c
RS
1514{
1515 tree v;
53d74c3c 1516 int overflow = TREE_OVERFLOW (i);
c6a1db6c 1517
11ad4784 1518 v = build_real (type, real_value_from_int_cst (type, i));
c6a1db6c 1519
11ad4784 1520 TREE_OVERFLOW (v) |= overflow;
c6a1db6c
RS
1521 return v;
1522}
1523
c6a1db6c
RS
1524/* Return a newly constructed STRING_CST node whose value is
1525 the LEN characters at STR.
1526 The TREE_TYPE is not initialized. */
1527
1528tree
46c5ad27 1529build_string (int len, const char *str)
c6a1db6c 1530{
a396f8ae
GK
1531 tree s;
1532 size_t length;
28df01ac
RG
1533
1534 /* Do not waste bytes provided by padding of struct tree_string. */
1535 length = len + offsetof (struct tree_string, str) + 1;
a396f8ae
GK
1536
1537#ifdef GATHER_STATISTICS
1538 tree_node_counts[(int) c_kind]++;
1539 tree_node_sizes[(int) c_kind] += length;
b8698a0f 1540#endif
a396f8ae 1541
a9429e29 1542 s = ggc_alloc_tree_node (length);
d4b60170 1543
a396f8ae
GK
1544 memset (s, 0, sizeof (struct tree_common));
1545 TREE_SET_CODE (s, STRING_CST);
1595ec20 1546 TREE_CONSTANT (s) = 1;
c6a1db6c 1547 TREE_STRING_LENGTH (s) = len;
b1d5455a
KG
1548 memcpy (s->string.str, str, len);
1549 s->string.str[len] = '\0';
d4b60170 1550
c6a1db6c
RS
1551 return s;
1552}
1553
1554/* Return a newly constructed COMPLEX_CST node whose value is
1555 specified by the real and imaginary parts REAL and IMAG.
b217d7fe
RK
1556 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1557 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
c6a1db6c
RS
1558
1559tree
46c5ad27 1560build_complex (tree type, tree real, tree imag)
c6a1db6c 1561{
b3694847 1562 tree t = make_node (COMPLEX_CST);
53d74c3c 1563
c6a1db6c
RS
1564 TREE_REALPART (t) = real;
1565 TREE_IMAGPART (t) = imag;
b217d7fe 1566 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
53d74c3c 1567 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
c6a1db6c
RS
1568 return t;
1569}
1570
bfabddb6 1571/* Return a constant of arithmetic type TYPE which is the
5f89204e 1572 multiplicative identity of the set TYPE. */
bfabddb6
RG
1573
1574tree
1575build_one_cst (tree type)
1576{
1577 switch (TREE_CODE (type))
1578 {
1579 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1580 case POINTER_TYPE: case REFERENCE_TYPE:
1581 case OFFSET_TYPE:
1582 return build_int_cst (type, 1);
1583
1584 case REAL_TYPE:
1585 return build_real (type, dconst1);
1586
325217ed
CF
1587 case FIXED_POINT_TYPE:
1588 /* We can only generate 1 for accum types. */
1589 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1590 return build_fixed (type, FCONST1(TYPE_MODE (type)));
1591
bfabddb6
RG
1592 case VECTOR_TYPE:
1593 {
b9acc9f1 1594 tree scalar = build_one_cst (TREE_TYPE (type));
bfabddb6 1595
b9acc9f1 1596 return build_vector_from_val (type, scalar);
bfabddb6
RG
1597 }
1598
1599 case COMPLEX_TYPE:
1600 return build_complex (type,
1601 build_one_cst (TREE_TYPE (type)),
e8160c9a 1602 build_zero_cst (TREE_TYPE (type)));
bfabddb6
RG
1603
1604 default:
1605 gcc_unreachable ();
1606 }
1607}
1608
e8160c9a
NF
1609/* Build 0 constant of type TYPE. This is used by constructor folding
1610 and thus the constant should be represented in memory by
1611 zero(es). */
e196b221
JH
1612
1613tree
1614build_zero_cst (tree type)
1615{
e8160c9a
NF
1616 switch (TREE_CODE (type))
1617 {
1618 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1619 case POINTER_TYPE: case REFERENCE_TYPE:
1620 case OFFSET_TYPE:
1621 return build_int_cst (type, 0);
1622
1623 case REAL_TYPE:
1624 return build_real (type, dconst0);
1625
1626 case FIXED_POINT_TYPE:
1627 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
1628
1629 case VECTOR_TYPE:
1630 {
1631 tree scalar = build_zero_cst (TREE_TYPE (type));
1632
1633 return build_vector_from_val (type, scalar);
1634 }
1635
1636 case COMPLEX_TYPE:
1637 {
1638 tree zero = build_zero_cst (TREE_TYPE (type));
1639
1640 return build_complex (type, zero, zero);
1641 }
1642
1643 default:
1644 if (!AGGREGATE_TYPE_P (type))
1645 return fold_convert (type, integer_zero_node);
1646 return build_constructor (type, NULL);
1647 }
e196b221
JH
1648}
1649
1650
95b4aca6
NS
1651/* Build a BINFO with LEN language slots. */
1652
1653tree
fa743e8c 1654make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
95b4aca6
NS
1655{
1656 tree t;
fa743e8c
NS
1657 size_t length = (offsetof (struct tree_binfo, base_binfos)
1658 + VEC_embedded_size (tree, base_binfos));
9f63daea 1659
95b4aca6
NS
1660#ifdef GATHER_STATISTICS
1661 tree_node_counts[(int) binfo_kind]++;
1662 tree_node_sizes[(int) binfo_kind] += length;
1663#endif
1664
a9429e29 1665 t = ggc_alloc_zone_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
95b4aca6 1666
fa743e8c 1667 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
95b4aca6
NS
1668
1669 TREE_SET_CODE (t, TREE_BINFO);
9f63daea 1670
fa743e8c 1671 VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos);
95b4aca6
NS
1672
1673 return t;
1674}
1675
1676
c6a1db6c 1677/* Build a newly constructed TREE_VEC node of length LEN. */
0f41302f 1678
c6a1db6c 1679tree
b9dcdee4 1680make_tree_vec_stat (int len MEM_STAT_DECL)
c6a1db6c 1681{
b3694847 1682 tree t;
3b03c671 1683 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
c6a1db6c
RS
1684
1685#ifdef GATHER_STATISTICS
3b03c671
KH
1686 tree_node_counts[(int) vec_kind]++;
1687 tree_node_sizes[(int) vec_kind] += length;
c6a1db6c
RS
1688#endif
1689
a9429e29 1690 t = ggc_alloc_zone_cleared_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
b9dcdee4 1691
c6a1db6c
RS
1692 TREE_SET_CODE (t, TREE_VEC);
1693 TREE_VEC_LENGTH (t) = len;
c6a1db6c
RS
1694
1695 return t;
1696}
1697\f
9ad265b0
RK
1698/* Return 1 if EXPR is the integer constant zero or a complex constant
1699 of zero. */
c6a1db6c
RS
1700
1701int
9566a759 1702integer_zerop (const_tree expr)
c6a1db6c 1703{
d964285c 1704 STRIP_NOPS (expr);
c6a1db6c 1705
9ad265b0
RK
1706 return ((TREE_CODE (expr) == INTEGER_CST
1707 && TREE_INT_CST_LOW (expr) == 0
1708 && TREE_INT_CST_HIGH (expr) == 0)
1709 || (TREE_CODE (expr) == COMPLEX_CST
1710 && integer_zerop (TREE_REALPART (expr))
1711 && integer_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1712}
1713
9ad265b0
RK
1714/* Return 1 if EXPR is the integer constant one or the corresponding
1715 complex constant. */
c6a1db6c
RS
1716
1717int
9566a759 1718integer_onep (const_tree expr)
c6a1db6c 1719{
d964285c 1720 STRIP_NOPS (expr);
c6a1db6c 1721
9ad265b0
RK
1722 return ((TREE_CODE (expr) == INTEGER_CST
1723 && TREE_INT_CST_LOW (expr) == 1
1724 && TREE_INT_CST_HIGH (expr) == 0)
1725 || (TREE_CODE (expr) == COMPLEX_CST
1726 && integer_onep (TREE_REALPART (expr))
1727 && integer_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1728}
1729
9ad265b0
RK
1730/* Return 1 if EXPR is an integer containing all 1's in as much precision as
1731 it contains. Likewise for the corresponding complex constant. */
c6a1db6c
RS
1732
1733int
9566a759 1734integer_all_onesp (const_tree expr)
c6a1db6c 1735{
b3694847
SS
1736 int prec;
1737 int uns;
c6a1db6c 1738
d964285c 1739 STRIP_NOPS (expr);
c6a1db6c 1740
9ad265b0
RK
1741 if (TREE_CODE (expr) == COMPLEX_CST
1742 && integer_all_onesp (TREE_REALPART (expr))
1743 && integer_zerop (TREE_IMAGPART (expr)))
1744 return 1;
1745
7fe25d1a 1746 else if (TREE_CODE (expr) != INTEGER_CST)
c6a1db6c
RS
1747 return 0;
1748
8df83eae 1749 uns = TYPE_UNSIGNED (TREE_TYPE (expr));
d7d93837
AH
1750 if (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1751 && TREE_INT_CST_HIGH (expr) == -1)
1752 return 1;
c6a1db6c 1753 if (!uns)
d7d93837 1754 return 0;
c6a1db6c 1755
8980b5a3
RK
1756 /* Note that using TYPE_PRECISION here is wrong. We care about the
1757 actual bits, not the (arbitrary) range of the type. */
1758 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
37366632 1759 if (prec >= HOST_BITS_PER_WIDE_INT)
c6a1db6c 1760 {
05bccae2
RK
1761 HOST_WIDE_INT high_value;
1762 int shift_amount;
c6a1db6c 1763
37366632 1764 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
c6a1db6c 1765
1e128c5f
GB
1766 /* Can not handle precisions greater than twice the host int size. */
1767 gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT);
1768 if (shift_amount == HOST_BITS_PER_WIDE_INT)
c6a1db6c
RS
1769 /* Shifting by the host word size is undefined according to the ANSI
1770 standard, so we must handle this as a special case. */
1771 high_value = -1;
1772 else
37366632 1773 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
c6a1db6c 1774
dc478a5d 1775 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
05bccae2 1776 && TREE_INT_CST_HIGH (expr) == high_value);
c6a1db6c
RS
1777 }
1778 else
05bccae2 1779 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
c6a1db6c
RS
1780}
1781
1782/* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1783 one bit on). */
1784
1785int
9566a759 1786integer_pow2p (const_tree expr)
c6a1db6c 1787{
5cb1f2fa 1788 int prec;
37366632 1789 HOST_WIDE_INT high, low;
c6a1db6c 1790
d964285c 1791 STRIP_NOPS (expr);
c6a1db6c 1792
9ad265b0
RK
1793 if (TREE_CODE (expr) == COMPLEX_CST
1794 && integer_pow2p (TREE_REALPART (expr))
1795 && integer_zerop (TREE_IMAGPART (expr)))
1796 return 1;
1797
7fe25d1a 1798 if (TREE_CODE (expr) != INTEGER_CST)
c6a1db6c
RS
1799 return 0;
1800
368a05d5 1801 prec = TYPE_PRECISION (TREE_TYPE (expr));
c6a1db6c
RS
1802 high = TREE_INT_CST_HIGH (expr);
1803 low = TREE_INT_CST_LOW (expr);
1804
5cb1f2fa
RK
1805 /* First clear all bits that are beyond the type's precision in case
1806 we've been sign extended. */
1807
1808 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1809 ;
1810 else if (prec > HOST_BITS_PER_WIDE_INT)
1811 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1812 else
1813 {
1814 high = 0;
1815 if (prec < HOST_BITS_PER_WIDE_INT)
1816 low &= ~((HOST_WIDE_INT) (-1) << prec);
1817 }
1818
c6a1db6c
RS
1819 if (high == 0 && low == 0)
1820 return 0;
1821
1822 return ((high == 0 && (low & (low - 1)) == 0)
1823 || (low == 0 && (high & (high - 1)) == 0));
1824}
1825
4977bab6
ZW
1826/* Return 1 if EXPR is an integer constant other than zero or a
1827 complex constant other than zero. */
1828
1829int
9566a759 1830integer_nonzerop (const_tree expr)
4977bab6
ZW
1831{
1832 STRIP_NOPS (expr);
1833
1834 return ((TREE_CODE (expr) == INTEGER_CST
4977bab6
ZW
1835 && (TREE_INT_CST_LOW (expr) != 0
1836 || TREE_INT_CST_HIGH (expr) != 0))
1837 || (TREE_CODE (expr) == COMPLEX_CST
1838 && (integer_nonzerop (TREE_REALPART (expr))
1839 || integer_nonzerop (TREE_IMAGPART (expr)))));
1840}
1841
325217ed
CF
1842/* Return 1 if EXPR is the fixed-point constant zero. */
1843
1844int
3eb0da77 1845fixed_zerop (const_tree expr)
325217ed
CF
1846{
1847 return (TREE_CODE (expr) == FIXED_CST
1848 && double_int_zero_p (TREE_FIXED_CST (expr).data));
1849}
1850
5cb1f2fa
RK
1851/* Return the power of two represented by a tree node known to be a
1852 power of two. */
1853
1854int
9566a759 1855tree_log2 (const_tree expr)
5cb1f2fa
RK
1856{
1857 int prec;
1858 HOST_WIDE_INT high, low;
1859
1860 STRIP_NOPS (expr);
1861
1862 if (TREE_CODE (expr) == COMPLEX_CST)
1863 return tree_log2 (TREE_REALPART (expr));
1864
368a05d5 1865 prec = TYPE_PRECISION (TREE_TYPE (expr));
5cb1f2fa
RK
1866 high = TREE_INT_CST_HIGH (expr);
1867 low = TREE_INT_CST_LOW (expr);
1868
1869 /* First clear all bits that are beyond the type's precision in case
1870 we've been sign extended. */
1871
1872 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1873 ;
1874 else if (prec > HOST_BITS_PER_WIDE_INT)
1875 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1876 else
1877 {
1878 high = 0;
1879 if (prec < HOST_BITS_PER_WIDE_INT)
1880 low &= ~((HOST_WIDE_INT) (-1) << prec);
1881 }
1882
1883 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
dc478a5d 1884 : exact_log2 (low));
5cb1f2fa
RK
1885}
1886
05bccae2
RK
1887/* Similar, but return the largest integer Y such that 2 ** Y is less
1888 than or equal to EXPR. */
1889
1890int
9566a759 1891tree_floor_log2 (const_tree expr)
05bccae2
RK
1892{
1893 int prec;
1894 HOST_WIDE_INT high, low;
1895
1896 STRIP_NOPS (expr);
1897
1898 if (TREE_CODE (expr) == COMPLEX_CST)
1899 return tree_log2 (TREE_REALPART (expr));
1900
368a05d5 1901 prec = TYPE_PRECISION (TREE_TYPE (expr));
05bccae2
RK
1902 high = TREE_INT_CST_HIGH (expr);
1903 low = TREE_INT_CST_LOW (expr);
1904
1905 /* First clear all bits that are beyond the type's precision in case
1906 we've been sign extended. Ignore if type's precision hasn't been set
1907 since what we are doing is setting it. */
1908
1909 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1910 ;
1911 else if (prec > HOST_BITS_PER_WIDE_INT)
1912 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1913 else
1914 {
1915 high = 0;
1916 if (prec < HOST_BITS_PER_WIDE_INT)
1917 low &= ~((HOST_WIDE_INT) (-1) << prec);
1918 }
1919
1920 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1921 : floor_log2 (low));
1922}
1923
4b6e55df
JJ
1924/* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
1925 decimal float constants, so don't return 1 for them. */
c6a1db6c
RS
1926
1927int
9566a759 1928real_zerop (const_tree expr)
c6a1db6c 1929{
d964285c 1930 STRIP_NOPS (expr);
c6a1db6c 1931
9ad265b0 1932 return ((TREE_CODE (expr) == REAL_CST
4b6e55df
JJ
1933 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0)
1934 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
9ad265b0
RK
1935 || (TREE_CODE (expr) == COMPLEX_CST
1936 && real_zerop (TREE_REALPART (expr))
1937 && real_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1938}
1939
4b6e55df
JJ
1940/* Return 1 if EXPR is the real constant one in real or complex form.
1941 Trailing zeroes matter for decimal float constants, so don't return
1942 1 for them. */
c6a1db6c
RS
1943
1944int
9566a759 1945real_onep (const_tree expr)
c6a1db6c 1946{
d964285c 1947 STRIP_NOPS (expr);
c6a1db6c 1948
9ad265b0 1949 return ((TREE_CODE (expr) == REAL_CST
4b6e55df
JJ
1950 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1)
1951 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
9ad265b0
RK
1952 || (TREE_CODE (expr) == COMPLEX_CST
1953 && real_onep (TREE_REALPART (expr))
1954 && real_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1955}
1956
4b6e55df
JJ
1957/* Return 1 if EXPR is the real constant two. Trailing zeroes matter
1958 for decimal float constants, so don't return 1 for them. */
c6a1db6c
RS
1959
1960int
9566a759 1961real_twop (const_tree expr)
c6a1db6c 1962{
d964285c 1963 STRIP_NOPS (expr);
c6a1db6c 1964
9ad265b0 1965 return ((TREE_CODE (expr) == REAL_CST
4b6e55df
JJ
1966 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2)
1967 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
9ad265b0
RK
1968 || (TREE_CODE (expr) == COMPLEX_CST
1969 && real_twop (TREE_REALPART (expr))
1970 && real_zerop (TREE_IMAGPART (expr))));
c6a1db6c
RS
1971}
1972
4b6e55df
JJ
1973/* Return 1 if EXPR is the real constant minus one. Trailing zeroes
1974 matter for decimal float constants, so don't return 1 for them. */
378393da
RS
1975
1976int
9566a759 1977real_minus_onep (const_tree expr)
378393da
RS
1978{
1979 STRIP_NOPS (expr);
1980
1981 return ((TREE_CODE (expr) == REAL_CST
4b6e55df
JJ
1982 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1)
1983 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
378393da
RS
1984 || (TREE_CODE (expr) == COMPLEX_CST
1985 && real_minus_onep (TREE_REALPART (expr))
1986 && real_zerop (TREE_IMAGPART (expr))));
1987}
1988
c6a1db6c 1989/* Nonzero if EXP is a constant or a cast of a constant. */
dc478a5d 1990
c6a1db6c 1991int
9566a759 1992really_constant_p (const_tree exp)
c6a1db6c 1993{
d964285c 1994 /* This is not quite the same as STRIP_NOPS. It does more. */
1043771b 1995 while (CONVERT_EXPR_P (exp)
c6a1db6c
RS
1996 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1997 exp = TREE_OPERAND (exp, 0);
1998 return TREE_CONSTANT (exp);
1999}
2000\f
2001/* Return first list element whose TREE_VALUE is ELEM.
2a3c15b5 2002 Return 0 if ELEM is not in LIST. */
c6a1db6c
RS
2003
2004tree
46c5ad27 2005value_member (tree elem, tree list)
c6a1db6c
RS
2006{
2007 while (list)
2008 {
2009 if (elem == TREE_VALUE (list))
2010 return list;
2011 list = TREE_CHAIN (list);
2012 }
2013 return NULL_TREE;
2014}
2015
2016/* Return first list element whose TREE_PURPOSE is ELEM.
2a3c15b5 2017 Return 0 if ELEM is not in LIST. */
c6a1db6c
RS
2018
2019tree
9566a759 2020purpose_member (const_tree elem, tree list)
c6a1db6c
RS
2021{
2022 while (list)
2023 {
2024 if (elem == TREE_PURPOSE (list))
2025 return list;
2026 list = TREE_CHAIN (list);
c6a1db6c
RS
2027 }
2028 return NULL_TREE;
2029}
2030
bfdb7b70
NF
2031/* Return true if ELEM is in V. */
2032
2033bool
2034vec_member (const_tree elem, VEC(tree,gc) *v)
2035{
2036 unsigned ix;
2037 tree t;
ac47786e 2038 FOR_EACH_VEC_ELT (tree, v, ix, t)
bfdb7b70
NF
2039 if (elem == t)
2040 return true;
2041 return false;
2042}
2043
ad42ff1e
JM
2044/* Returns element number IDX (zero-origin) of chain CHAIN, or
2045 NULL_TREE. */
2046
2047tree
2048chain_index (int idx, tree chain)
2049{
2050 for (; chain && idx > 0; --idx)
2051 chain = TREE_CHAIN (chain);
2052 return chain;
2053}
2054
0f41302f 2055/* Return nonzero if ELEM is part of the chain CHAIN. */
c6a1db6c
RS
2056
2057int
9566a759 2058chain_member (const_tree elem, const_tree chain)
c6a1db6c
RS
2059{
2060 while (chain)
2061 {
2062 if (elem == chain)
2063 return 1;
910ad8de 2064 chain = DECL_CHAIN (chain);
c6a1db6c
RS
2065 }
2066
2067 return 0;
2068}
2069
2070/* Return the length of a chain of nodes chained through TREE_CHAIN.
2071 We expect a null pointer to mark the end of the chain.
2072 This is the Lisp primitive `length'. */
2073
2074int
9566a759 2075list_length (const_tree t)
c6a1db6c 2076{
9566a759 2077 const_tree p = t;
f75fbaf7 2078#ifdef ENABLE_TREE_CHECKING
9566a759 2079 const_tree q = t;
f75fbaf7 2080#endif
b3694847 2081 int len = 0;
c6a1db6c 2082
f75fbaf7
ZW
2083 while (p)
2084 {
2085 p = TREE_CHAIN (p);
2086#ifdef ENABLE_TREE_CHECKING
2087 if (len % 2)
2088 q = TREE_CHAIN (q);
1e128c5f 2089 gcc_assert (p != q);
f75fbaf7
ZW
2090#endif
2091 len++;
2092 }
c6a1db6c
RS
2093
2094 return len;
2095}
2096
c3b247b4
JM
2097/* Returns the number of FIELD_DECLs in TYPE. */
2098
2099int
9566a759 2100fields_length (const_tree type)
c3b247b4
JM
2101{
2102 tree t = TYPE_FIELDS (type);
2103 int count = 0;
2104
910ad8de 2105 for (; t; t = DECL_CHAIN (t))
c3b247b4
JM
2106 if (TREE_CODE (t) == FIELD_DECL)
2107 ++count;
2108
2109 return count;
2110}
2111
ebf0bf7f
JJ
2112/* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2113 UNION_TYPE TYPE, or NULL_TREE if none. */
2114
2115tree
2116first_field (const_tree type)
2117{
2118 tree t = TYPE_FIELDS (type);
2119 while (t && TREE_CODE (t) != FIELD_DECL)
2120 t = TREE_CHAIN (t);
2121 return t;
2122}
2123
c6a1db6c
RS
2124/* Concatenate two chains of nodes (chained through TREE_CHAIN)
2125 by modifying the last node in chain 1 to point to chain 2.
2126 This is the Lisp primitive `nconc'. */
2127
2128tree
46c5ad27 2129chainon (tree op1, tree op2)
c6a1db6c 2130{
66ea6f4c 2131 tree t1;
c6a1db6c 2132
66ea6f4c
RH
2133 if (!op1)
2134 return op2;
2135 if (!op2)
2136 return op1;
2137
2138 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2139 continue;
2140 TREE_CHAIN (t1) = op2;
1810c3fa 2141
f4524c9e 2142#ifdef ENABLE_TREE_CHECKING
66ea6f4c
RH
2143 {
2144 tree t2;
2145 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1e128c5f 2146 gcc_assert (t2 != t1);
66ea6f4c 2147 }
0f4668ef 2148#endif
66ea6f4c
RH
2149
2150 return op1;
c6a1db6c
RS
2151}
2152
2153/* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2154
2155tree
46c5ad27 2156tree_last (tree chain)
c6a1db6c 2157{
b3694847 2158 tree next;
c6a1db6c 2159 if (chain)
5e9defae 2160 while ((next = TREE_CHAIN (chain)))
c6a1db6c
RS
2161 chain = next;
2162 return chain;
2163}
2164
2165/* Reverse the order of elements in the chain T,
2166 and return the new head of the chain (old last element). */
2167
2168tree
46c5ad27 2169nreverse (tree t)
c6a1db6c 2170{
b3694847 2171 tree prev = 0, decl, next;
c6a1db6c
RS
2172 for (decl = t; decl; decl = next)
2173 {
72ac05b0
NF
2174 /* We shouldn't be using this function to reverse BLOCK chains; we
2175 have blocks_nreverse for that. */
2176 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
c6a1db6c
RS
2177 next = TREE_CHAIN (decl);
2178 TREE_CHAIN (decl) = prev;
2179 prev = decl;
2180 }
2181 return prev;
2182}
c6a1db6c
RS
2183\f
2184/* Return a newly created TREE_LIST node whose
2185 purpose and value fields are PARM and VALUE. */
2186
2187tree
b9dcdee4 2188build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
c6a1db6c 2189{
b9dcdee4 2190 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
c6a1db6c
RS
2191 TREE_PURPOSE (t) = parm;
2192 TREE_VALUE (t) = value;
2193 return t;
2194}
2195
c166b898
ILT
2196/* Build a chain of TREE_LIST nodes from a vector. */
2197
2198tree
2199build_tree_list_vec_stat (const VEC(tree,gc) *vec MEM_STAT_DECL)
2200{
2201 tree ret = NULL_TREE;
2202 tree *pp = &ret;
2203 unsigned int i;
2204 tree t;
ac47786e 2205 FOR_EACH_VEC_ELT (tree, vec, i, t)
c166b898
ILT
2206 {
2207 *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2208 pp = &TREE_CHAIN (*pp);
2209 }
2210 return ret;
2211}
2212
c6a1db6c 2213/* Return a newly created TREE_LIST node whose
411e2759 2214 purpose and value fields are PURPOSE and VALUE
c6a1db6c
RS
2215 and whose TREE_CHAIN is CHAIN. */
2216
a9429e29 2217tree
b9dcdee4 2218tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
c6a1db6c 2219{
b3694847 2220 tree node;
a3770a81 2221
a9429e29
LB
2222 node = ggc_alloc_zone_tree_node_stat (&tree_zone, sizeof (struct tree_list)
2223 PASS_MEM_STAT);
f8a83ee3 2224 memset (node, 0, sizeof (struct tree_common));
a3770a81 2225
c6a1db6c 2226#ifdef GATHER_STATISTICS
ad41cc2a
RK
2227 tree_node_counts[(int) x_kind]++;
2228 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
c6a1db6c
RS
2229#endif
2230
c6a1db6c 2231 TREE_SET_CODE (node, TREE_LIST);
c6a1db6c
RS
2232 TREE_CHAIN (node) = chain;
2233 TREE_PURPOSE (node) = purpose;
2234 TREE_VALUE (node) = value;
2235 return node;
2236}
2237
c166b898
ILT
2238/* Return the values of the elements of a CONSTRUCTOR as a vector of
2239 trees. */
2240
2241VEC(tree,gc) *
2242ctor_to_vec (tree ctor)
2243{
2244 VEC(tree, gc) *vec = VEC_alloc (tree, gc, CONSTRUCTOR_NELTS (ctor));
2245 unsigned int ix;
2246 tree val;
2247
2248 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2249 VEC_quick_push (tree, vec, val);
2250
2251 return vec;
2252}
c6a1db6c
RS
2253\f
2254/* Return the size nominally occupied by an object of type TYPE
2255 when it resides in memory. The value is measured in units of bytes,
2256 and its data type is that normally used for type sizes
2257 (which is the first type created by make_signed_type or
2258 make_unsigned_type). */
2259
2260tree
ac7d7749 2261size_in_bytes (const_tree type)
c6a1db6c 2262{
cdc5a032
RS
2263 tree t;
2264
c6a1db6c
RS
2265 if (type == error_mark_node)
2266 return integer_zero_node;
ead17059 2267
c6a1db6c 2268 type = TYPE_MAIN_VARIANT (type);
ead17059 2269 t = TYPE_SIZE_UNIT (type);
d4b60170 2270
ead17059 2271 if (t == 0)
c6a1db6c 2272 {
ae2bcd98 2273 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
dc397323 2274 return size_zero_node;
c6a1db6c 2275 }
d4b60170 2276
cdc5a032 2277 return t;
c6a1db6c
RS
2278}
2279
e5e809f4
JL
2280/* Return the size of TYPE (in bytes) as a wide integer
2281 or return -1 if the size can vary or is larger than an integer. */
c6a1db6c 2282
e5e809f4 2283HOST_WIDE_INT
9566a759 2284int_size_in_bytes (const_tree type)
c6a1db6c 2285{
e5e809f4
JL
2286 tree t;
2287
c6a1db6c
RS
2288 if (type == error_mark_node)
2289 return 0;
e5e809f4 2290
c6a1db6c 2291 type = TYPE_MAIN_VARIANT (type);
ead17059
RH
2292 t = TYPE_SIZE_UNIT (type);
2293 if (t == 0
2294 || TREE_CODE (t) != INTEGER_CST
665f2503
RK
2295 || TREE_INT_CST_HIGH (t) != 0
2296 /* If the result would appear negative, it's too big to represent. */
2297 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
c6a1db6c 2298 return -1;
e5e809f4
JL
2299
2300 return TREE_INT_CST_LOW (t);
c6a1db6c 2301}
a441447f
OH
2302
2303/* Return the maximum size of TYPE (in bytes) as a wide integer
2304 or return -1 if the size can vary or is larger than an integer. */
2305
2306HOST_WIDE_INT
ac7d7749 2307max_int_size_in_bytes (const_tree type)
a441447f
OH
2308{
2309 HOST_WIDE_INT size = -1;
2310 tree size_tree;
2311
2312 /* If this is an array type, check for a possible MAX_SIZE attached. */
2313
2314 if (TREE_CODE (type) == ARRAY_TYPE)
2315 {
2316 size_tree = TYPE_ARRAY_MAX_SIZE (type);
2317
2318 if (size_tree && host_integerp (size_tree, 1))
2319 size = tree_low_cst (size_tree, 1);
2320 }
2321
2322 /* If we still haven't been able to get a size, see if the language
2323 can compute a maximum size. */
2324
2325 if (size == -1)
2326 {
2327 size_tree = lang_hooks.types.max_size (type);
2328
2329 if (size_tree && host_integerp (size_tree, 1))
2330 size = tree_low_cst (size_tree, 1);
2331 }
2332
2333 return size;
2334}
71c00b5c
RG
2335
2336/* Returns a tree for the size of EXP in bytes. */
2337
2338tree
2339tree_expr_size (const_tree exp)
2340{
2341 if (DECL_P (exp)
2342 && DECL_SIZE_UNIT (exp) != 0)
2343 return DECL_SIZE_UNIT (exp);
2344 else
2345 return size_in_bytes (TREE_TYPE (exp));
2346}
665f2503
RK
2347\f
2348/* Return the bit position of FIELD, in bits from the start of the record.
2349 This is a tree of type bitsizetype. */
2350
2351tree
9566a759 2352bit_position (const_tree field)
665f2503 2353{
f2704b9f
RK
2354 return bit_from_pos (DECL_FIELD_OFFSET (field),
2355 DECL_FIELD_BIT_OFFSET (field));
665f2503 2356}
729a2125 2357
0e61db61
NS
2358/* Likewise, but return as an integer. It must be representable in
2359 that way (since it could be a signed value, we don't have the
2360 option of returning -1 like int_size_in_byte can. */
665f2503
RK
2361
2362HOST_WIDE_INT
9566a759 2363int_bit_position (const_tree field)
665f2503
RK
2364{
2365 return tree_low_cst (bit_position (field), 0);
2366}
2367\f
770ae6cc
RK
2368/* Return the byte position of FIELD, in bytes from the start of the record.
2369 This is a tree of type sizetype. */
2370
2371tree
9566a759 2372byte_position (const_tree field)
770ae6cc 2373{
f2704b9f
RK
2374 return byte_from_pos (DECL_FIELD_OFFSET (field),
2375 DECL_FIELD_BIT_OFFSET (field));
770ae6cc
RK
2376}
2377
0e61db61
NS
2378/* Likewise, but return as an integer. It must be representable in
2379 that way (since it could be a signed value, we don't have the
2380 option of returning -1 like int_size_in_byte can. */
770ae6cc
RK
2381
2382HOST_WIDE_INT
9566a759 2383int_byte_position (const_tree field)
770ae6cc
RK
2384{
2385 return tree_low_cst (byte_position (field), 0);
2386}
2387\f
665f2503 2388/* Return the strictest alignment, in bits, that T is known to have. */
729a2125
RK
2389
2390unsigned int
9566a759 2391expr_align (const_tree t)
729a2125
RK
2392{
2393 unsigned int align0, align1;
2394
2395 switch (TREE_CODE (t))
2396 {
1043771b 2397 CASE_CONVERT: case NON_LVALUE_EXPR:
729a2125
RK
2398 /* If we have conversions, we know that the alignment of the
2399 object must meet each of the alignments of the types. */
2400 align0 = expr_align (TREE_OPERAND (t, 0));
2401 align1 = TYPE_ALIGN (TREE_TYPE (t));
2402 return MAX (align0, align1);
2403
939409af 2404 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
729a2125 2405 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
9f63daea 2406 case CLEANUP_POINT_EXPR:
729a2125
RK
2407 /* These don't change the alignment of an object. */
2408 return expr_align (TREE_OPERAND (t, 0));
2409
2410 case COND_EXPR:
2411 /* The best we can do is say that the alignment is the least aligned
2412 of the two arms. */
2413 align0 = expr_align (TREE_OPERAND (t, 1));
2414 align1 = expr_align (TREE_OPERAND (t, 2));
2415 return MIN (align0, align1);
2416
d872ada0
GK
2417 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2418 meaningfully, it's always 1. */
06ceef4e 2419 case LABEL_DECL: case CONST_DECL:
729a2125 2420 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
06ceef4e 2421 case FUNCTION_DECL:
d872ada0
GK
2422 gcc_assert (DECL_ALIGN (t) != 0);
2423 return DECL_ALIGN (t);
06ceef4e 2424
729a2125
RK
2425 default:
2426 break;
2427 }
2428
2429 /* Otherwise take the alignment from that of the type. */
2430 return TYPE_ALIGN (TREE_TYPE (t));
2431}
c0560b8b
RK
2432\f
2433/* Return, as a tree node, the number of elements for TYPE (which is an
d26f8097 2434 ARRAY_TYPE) minus one. This counts only elements of the top array. */
c6a1db6c
RS
2435
2436tree
9566a759 2437array_type_nelts (const_tree type)
c6a1db6c 2438{
7671d67b
BK
2439 tree index_type, min, max;
2440
2441 /* If they did it with unspecified bounds, then we should have already
2442 given an error about it before we got here. */
2443 if (! TYPE_DOMAIN (type))
2444 return error_mark_node;
2445
2446 index_type = TYPE_DOMAIN (type);
2447 min = TYPE_MIN_VALUE (index_type);
2448 max = TYPE_MAX_VALUE (index_type);
83b853c9 2449
83b853c9
JM
2450 return (integer_zerop (min)
2451 ? max
987b67bc 2452 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
c6a1db6c
RS
2453}
2454\f
dc700f49
RH
2455/* If arg is static -- a reference to an object in static storage -- then
2456 return the object. This is not the same as the C meaning of `static'.
2457 If arg isn't static, return NULL. */
c6a1db6c 2458
525c6bf5 2459tree
46c5ad27 2460staticp (tree arg)
c6a1db6c
RS
2461{
2462 switch (TREE_CODE (arg))
2463 {
c6a1db6c 2464 case FUNCTION_DECL:
269b7526
AP
2465 /* Nested functions are static, even though taking their address will
2466 involve a trampoline as we unnest the nested function and create
2467 the trampoline on the tree level. */
2468 return arg;
27da1b4d 2469
86270344 2470 case VAR_DECL:
3d78f2e9 2471 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
c2f7fa15 2472 && ! DECL_THREAD_LOCAL_P (arg)
43d9ad1d 2473 && ! DECL_DLLIMPORT_P (arg)
525c6bf5 2474 ? arg : NULL);
c6a1db6c 2475
943db347
AP
2476 case CONST_DECL:
2477 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2478 ? arg : NULL);
2479
492c86a4 2480 case CONSTRUCTOR:
525c6bf5 2481 return TREE_STATIC (arg) ? arg : NULL;
492c86a4 2482
1c12c179 2483 case LABEL_DECL:
c6a1db6c 2484 case STRING_CST:
525c6bf5 2485 return arg;
c6a1db6c 2486
6de9cd9a 2487 case COMPONENT_REF:
270c60bb
DB
2488 /* If the thing being referenced is not a field, then it is
2489 something language specific. */
2ec5deb5 2490 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
6de9cd9a 2491
f7fa6ef9
RK
2492 /* If we are referencing a bitfield, we can't evaluate an
2493 ADDR_EXPR at compile time and so it isn't a constant. */
6de9cd9a 2494 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
525c6bf5 2495 return NULL;
6de9cd9a
DN
2496
2497 return staticp (TREE_OPERAND (arg, 0));
f7fa6ef9 2498
c6a1db6c 2499 case BIT_FIELD_REF:
525c6bf5 2500 return NULL;
c6a1db6c
RS
2501
2502 case INDIRECT_REF:
525c6bf5 2503 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
c6a1db6c
RS
2504
2505 case ARRAY_REF:
b4e3fabb 2506 case ARRAY_RANGE_REF:
c6a1db6c
RS
2507 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2508 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2509 return staticp (TREE_OPERAND (arg, 0));
6de9cd9a 2510 else
2ec5deb5
PB
2511 return NULL;
2512
2513 case COMPOUND_LITERAL_EXPR:
2514 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
c6a1db6c 2515
e9a25f70 2516 default:
2ec5deb5 2517 return NULL;
e9a25f70 2518 }
c6a1db6c 2519}
51eed280 2520
c6a1db6c 2521\f
51eed280
PB
2522
2523
2524/* Return whether OP is a DECL whose address is function-invariant. */
2525
2526bool
2527decl_address_invariant_p (const_tree op)
2528{
2529 /* The conditions below are slightly less strict than the one in
2530 staticp. */
2531
2532 switch (TREE_CODE (op))
2533 {
2534 case PARM_DECL:
2535 case RESULT_DECL:
2536 case LABEL_DECL:
2537 case FUNCTION_DECL:
2538 return true;
2539
2540 case VAR_DECL:
4be4cd6d 2541 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
51eed280
PB
2542 || DECL_THREAD_LOCAL_P (op)
2543 || DECL_CONTEXT (op) == current_function_decl
2544 || decl_function_context (op) == current_function_decl)
2545 return true;
2546 break;
2547
2548 case CONST_DECL:
2549 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
2550 || decl_function_context (op) == current_function_decl)
2551 return true;
2552 break;
2553
2554 default:
2555 break;
2556 }
2557
2558 return false;
2559}
2560
00fc2333
JH
2561/* Return whether OP is a DECL whose address is interprocedural-invariant. */
2562
2563bool
2564decl_address_ip_invariant_p (const_tree op)
2565{
2566 /* The conditions below are slightly less strict than the one in
2567 staticp. */
2568
2569 switch (TREE_CODE (op))
2570 {
2571 case LABEL_DECL:
2572 case FUNCTION_DECL:
2573 case STRING_CST:
2574 return true;
2575
2576 case VAR_DECL:
2577 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2578 && !DECL_DLLIMPORT_P (op))
2579 || DECL_THREAD_LOCAL_P (op))
2580 return true;
2581 break;
2582
2583 case CONST_DECL:
2584 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
2585 return true;
2586 break;
2587
2588 default:
2589 break;
2590 }
2591
2592 return false;
2593}
2594
51eed280
PB
2595
2596/* Return true if T is function-invariant (internal function, does
2597 not handle arithmetic; that's handled in skip_simple_arithmetic and
2598 tree_invariant_p). */
2599
2600static bool tree_invariant_p (tree t);
2601
2602static bool
2603tree_invariant_p_1 (tree t)
2604{
2605 tree op;
2606
2607 if (TREE_CONSTANT (t)
2608 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
2609 return true;
2610
2611 switch (TREE_CODE (t))
2612 {
2613 case SAVE_EXPR:
2614 return true;
2615
2616 case ADDR_EXPR:
2617 op = TREE_OPERAND (t, 0);
2618 while (handled_component_p (op))
2619 {
2620 switch (TREE_CODE (op))
2621 {
2622 case ARRAY_REF:
2623 case ARRAY_RANGE_REF:
2624 if (!tree_invariant_p (TREE_OPERAND (op, 1))
2625 || TREE_OPERAND (op, 2) != NULL_TREE
2626 || TREE_OPERAND (op, 3) != NULL_TREE)
2627 return false;
2628 break;
2629
2630 case COMPONENT_REF:
2631 if (TREE_OPERAND (op, 2) != NULL_TREE)
2632 return false;
2633 break;
2634
2635 default:;
2636 }
2637 op = TREE_OPERAND (op, 0);
2638 }
2639
2640 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
2641
2642 default:
2643 break;
2644 }
2645
2646 return false;
2647}
2648
2649/* Return true if T is function-invariant. */
2650
2651static bool
2652tree_invariant_p (tree t)
2653{
2654 tree inner = skip_simple_arithmetic (t);
2655 return tree_invariant_p_1 (inner);
2656}
2657
3aa77500
RS
2658/* Wrap a SAVE_EXPR around EXPR, if appropriate.
2659 Do this to any expression which may be used in more than one place,
2660 but must be evaluated only once.
2661
2662 Normally, expand_expr would reevaluate the expression each time.
2663 Calling save_expr produces something that is evaluated and recorded
2664 the first time expand_expr is called on it. Subsequent calls to
2665 expand_expr just reuse the recorded value.
2666
2667 The call to expand_expr that generates code that actually computes
2668 the value is the first call *at compile time*. Subsequent calls
2669 *at compile time* generate code to use the saved value.
2670 This produces correct result provided that *at run time* control
2671 always flows through the insns made by the first expand_expr
2672 before reaching the other places where the save_expr was evaluated.
2673 You, the caller of save_expr, must make sure this is so.
2674
2675 Constants, and certain read-only nodes, are returned with no
2676 SAVE_EXPR because that is safe. Expressions containing placeholders
c5af9901
RK
2677 are not touched; see tree.def for an explanation of what these
2678 are used for. */
c6a1db6c
RS
2679
2680tree
46c5ad27 2681save_expr (tree expr)
c6a1db6c 2682{
7a6cdb44 2683 tree t = fold (expr);
84d8756d
RK
2684 tree inner;
2685
c6a1db6c
RS
2686 /* If the tree evaluates to a constant, then we don't want to hide that
2687 fact (i.e. this allows further folding, and direct checks for constants).
af929c62 2688 However, a read-only object that has side effects cannot be bypassed.
dc478a5d 2689 Since it is no problem to reevaluate literals, we just return the
0f41302f 2690 literal node. */
84d8756d 2691 inner = skip_simple_arithmetic (t);
51eed280
PB
2692 if (TREE_CODE (inner) == ERROR_MARK)
2693 return inner;
6de9cd9a 2694
51eed280 2695 if (tree_invariant_p_1 (inner))
c6a1db6c
RS
2696 return t;
2697
a9ecacf6 2698 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
dec20b4b
RK
2699 it means that the size or offset of some field of an object depends on
2700 the value within another field.
2701
2702 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2703 and some variable since it would then need to be both evaluated once and
2704 evaluated more than once. Front-ends must assure this case cannot
2705 happen by surrounding any such subexpressions in their own SAVE_EXPR
2706 and forcing evaluation at the proper time. */
a9ecacf6 2707 if (contains_placeholder_p (inner))
dec20b4b
RK
2708 return t;
2709
82c82743 2710 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
c2255bc4 2711 SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
c6a1db6c
RS
2712
2713 /* This expression might be placed ahead of a jump to ensure that the
2714 value was computed on both sides of the jump. So make sure it isn't
2715 eliminated as dead. */
2716 TREE_SIDE_EFFECTS (t) = 1;
2717 return t;
2718}
679163cf 2719
a9ecacf6
OH
2720/* Look inside EXPR and into any simple arithmetic operations. Return
2721 the innermost non-arithmetic node. */
2722
2723tree
46c5ad27 2724skip_simple_arithmetic (tree expr)
a9ecacf6
OH
2725{
2726 tree inner;
46c5ad27 2727
a9ecacf6
OH
2728 /* We don't care about whether this can be used as an lvalue in this
2729 context. */
2730 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
2731 expr = TREE_OPERAND (expr, 0);
2732
2733 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2734 a constant, it will be more efficient to not make another SAVE_EXPR since
2735 it will allow better simplification and GCSE will be able to merge the
2736 computations if they actually occur. */
2737 inner = expr;
2738 while (1)
2739 {
6615c446 2740 if (UNARY_CLASS_P (inner))
a9ecacf6 2741 inner = TREE_OPERAND (inner, 0);
6615c446 2742 else if (BINARY_CLASS_P (inner))
a9ecacf6 2743 {
51eed280 2744 if (tree_invariant_p (TREE_OPERAND (inner, 1)))
a9ecacf6 2745 inner = TREE_OPERAND (inner, 0);
51eed280 2746 else if (tree_invariant_p (TREE_OPERAND (inner, 0)))
a9ecacf6
OH
2747 inner = TREE_OPERAND (inner, 1);
2748 else
2749 break;
2750 }
2751 else
2752 break;
2753 }
2754
2755 return inner;
2756}
2757
d251bfca 2758
e2500fed
GK
2759/* Return which tree structure is used by T. */
2760
2761enum tree_node_structure_enum
9566a759 2762tree_node_structure (const_tree t)
e2500fed 2763{
9566a759 2764 const enum tree_code code = TREE_CODE (t);
d251bfca 2765 return tree_node_structure_for_code (code);
e2500fed 2766}
6569d386
EB
2767
2768/* Set various status flags when building a CALL_EXPR object T. */
2769
2770static void
2771process_call_operands (tree t)
2772{
2773 bool side_effects = TREE_SIDE_EFFECTS (t);
96da8066
EB
2774 bool read_only = false;
2775 int i = call_expr_flags (t);
6569d386 2776
96da8066
EB
2777 /* Calls have side-effects, except those to const or pure functions. */
2778 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
2779 side_effects = true;
2780 /* Propagate TREE_READONLY of arguments for const functions. */
2781 if (i & ECF_CONST)
2782 read_only = true;
2783
2784 if (!side_effects || read_only)
6569d386
EB
2785 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
2786 {
2787 tree op = TREE_OPERAND (t, i);
2788 if (op && TREE_SIDE_EFFECTS (op))
96da8066
EB
2789 side_effects = true;
2790 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
2791 read_only = false;
6569d386
EB
2792 }
2793
6569d386 2794 TREE_SIDE_EFFECTS (t) = side_effects;
96da8066 2795 TREE_READONLY (t) = read_only;
6569d386 2796}
dec20b4b 2797\f
98cd3025
EB
2798/* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
2799 size or offset that depends on a field within a record. */
dec20b4b 2800
7a6cdb44 2801bool
fa233e34 2802contains_placeholder_p (const_tree exp)
dec20b4b 2803{
b3694847 2804 enum tree_code code;
dec20b4b 2805
8f17b5c5
MM
2806 if (!exp)
2807 return 0;
2808
8f17b5c5 2809 code = TREE_CODE (exp);
6fce44af 2810 if (code == PLACEHOLDER_EXPR)
cc3c7c13 2811 return 1;
67c8d7de 2812
dec20b4b
RK
2813 switch (TREE_CODE_CLASS (code))
2814 {
6615c446 2815 case tcc_reference:
cc3c7c13
RK
2816 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2817 position computations since they will be converted into a
2818 WITH_RECORD_EXPR involving the reference, which will assume
2819 here will be valid. */
7a6cdb44 2820 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
dec20b4b 2821
6615c446 2822 case tcc_exceptional:
e9a25f70 2823 if (code == TREE_LIST)
7a6cdb44
RK
2824 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
2825 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
e9a25f70 2826 break;
dc478a5d 2827
6615c446
JO
2828 case tcc_unary:
2829 case tcc_binary:
2830 case tcc_comparison:
2831 case tcc_expression:
3910a7cb
RK
2832 switch (code)
2833 {
2834 case COMPOUND_EXPR:
dc478a5d 2835 /* Ignoring the first operand isn't quite right, but works best. */
7a6cdb44 2836 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3910a7cb 2837
3910a7cb 2838 case COND_EXPR:
7a6cdb44
RK
2839 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2840 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
2841 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3910a7cb 2842
522aa637
GB
2843 case SAVE_EXPR:
2844 /* The save_expr function never wraps anything containing
2845 a PLACEHOLDER_EXPR. */
2846 return 0;
2847
e9a25f70
JL
2848 default:
2849 break;
3910a7cb
RK
2850 }
2851
54e4aedb 2852 switch (TREE_CODE_LENGTH (code))
dec20b4b
RK
2853 {
2854 case 1:
7a6cdb44 2855 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
dec20b4b 2856 case 2:
7a6cdb44
RK
2857 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2858 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
e9a25f70
JL
2859 default:
2860 return 0;
dec20b4b 2861 }
dec20b4b 2862
5039610b
SL
2863 case tcc_vl_exp:
2864 switch (code)
2865 {
2866 case CALL_EXPR:
2867 {
fa233e34
KG
2868 const_tree arg;
2869 const_call_expr_arg_iterator iter;
2870 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
5039610b
SL
2871 if (CONTAINS_PLACEHOLDER_P (arg))
2872 return 1;
2873 return 0;
2874 }
2875 default:
2876 return 0;
2877 }
2878
e9a25f70
JL
2879 default:
2880 return 0;
2881 }
1160f9ec 2882 return 0;
dec20b4b 2883}
b7f6588d 2884
98cd3025
EB
2885/* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
2886 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
2887 field positions. */
7a6cdb44 2888
a5bfe141 2889static bool
9566a759 2890type_contains_placeholder_1 (const_tree type)
7a6cdb44
RK
2891{
2892 /* If the size contains a placeholder or the parent type (component type in
2893 the case of arrays) type involves a placeholder, this type does. */
2894 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
2895 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
98cd3025
EB
2896 || (!POINTER_TYPE_P (type)
2897 && TREE_TYPE (type)
7a6cdb44 2898 && type_contains_placeholder_p (TREE_TYPE (type))))
a5bfe141 2899 return true;
7a6cdb44
RK
2900
2901 /* Now do type-specific checks. Note that the last part of the check above
2902 greatly limits what we have to do below. */
2903 switch (TREE_CODE (type))
2904 {
2905 case VOID_TYPE:
2906 case COMPLEX_TYPE:
7a6cdb44
RK
2907 case ENUMERAL_TYPE:
2908 case BOOLEAN_TYPE:
7a6cdb44
RK
2909 case POINTER_TYPE:
2910 case OFFSET_TYPE:
2911 case REFERENCE_TYPE:
2912 case METHOD_TYPE:
7a6cdb44 2913 case FUNCTION_TYPE:
a65735cd 2914 case VECTOR_TYPE:
a5bfe141 2915 return false;
7a6cdb44
RK
2916
2917 case INTEGER_TYPE:
2918 case REAL_TYPE:
325217ed 2919 case FIXED_POINT_TYPE:
7a6cdb44
RK
2920 /* Here we just check the bounds. */
2921 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
2922 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
2923
2924 case ARRAY_TYPE:
98cd3025
EB
2925 /* We have already checked the component type above, so just check the
2926 domain type. */
7a6cdb44
RK
2927 return type_contains_placeholder_p (TYPE_DOMAIN (type));
2928
2929 case RECORD_TYPE:
2930 case UNION_TYPE:
2931 case QUAL_UNION_TYPE:
2932 {
7a6cdb44 2933 tree field;
7a6cdb44 2934
910ad8de 2935 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7a6cdb44
RK
2936 if (TREE_CODE (field) == FIELD_DECL
2937 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
2938 || (TREE_CODE (type) == QUAL_UNION_TYPE
2939 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
2940 || type_contains_placeholder_p (TREE_TYPE (field))))
a5bfe141
RH
2941 return true;
2942
2943 return false;
7a6cdb44
RK
2944 }
2945
2946 default:
1e128c5f 2947 gcc_unreachable ();
7a6cdb44
RK
2948 }
2949}
a5bfe141 2950
98cd3025
EB
2951/* Wrapper around above function used to cache its result. */
2952
a5bfe141
RH
2953bool
2954type_contains_placeholder_p (tree type)
2955{
2956 bool result;
2957
2958 /* If the contains_placeholder_bits field has been initialized,
2959 then we know the answer. */
2960 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
2961 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
2962
2963 /* Indicate that we've seen this type node, and the answer is false.
2964 This is what we want to return if we run into recursion via fields. */
2965 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
2966
2967 /* Compute the real value. */
2968 result = type_contains_placeholder_1 (type);
2969
2970 /* Store the real value. */
2971 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
2972
2973 return result;
2974}
dec20b4b 2975\f
f82a627c
EB
2976/* Push tree EXP onto vector QUEUE if it is not already present. */
2977
2978static void
2979push_without_duplicates (tree exp, VEC (tree, heap) **queue)
2980{
2981 unsigned int i;
2982 tree iter;
2983
ac47786e 2984 FOR_EACH_VEC_ELT (tree, *queue, i, iter)
f82a627c
EB
2985 if (simple_cst_equal (iter, exp) == 1)
2986 break;
2987
2988 if (!iter)
2989 VEC_safe_push (tree, heap, *queue, exp);
2990}
2991
2992/* Given a tree EXP, find all occurences of references to fields
2993 in a PLACEHOLDER_EXPR and place them in vector REFS without
2994 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
2995 we assume here that EXP contains only arithmetic expressions
2996 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
2997 argument list. */
2998
2999void
3000find_placeholder_in_expr (tree exp, VEC (tree, heap) **refs)
3001{
3002 enum tree_code code = TREE_CODE (exp);
3003 tree inner;
3004 int i;
3005
3006 /* We handle TREE_LIST and COMPONENT_REF separately. */
3007 if (code == TREE_LIST)
3008 {
3009 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3010 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3011 }
3012 else if (code == COMPONENT_REF)
3013 {
3014 for (inner = TREE_OPERAND (exp, 0);
3015 REFERENCE_CLASS_P (inner);
3016 inner = TREE_OPERAND (inner, 0))
3017 ;
3018
3019 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3020 push_without_duplicates (exp, refs);
3021 else
3022 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3023 }
3024 else
3025 switch (TREE_CODE_CLASS (code))
3026 {
3027 case tcc_constant:
3028 break;
3029
3030 case tcc_declaration:
3031 /* Variables allocated to static storage can stay. */
3032 if (!TREE_STATIC (exp))
3033 push_without_duplicates (exp, refs);
3034 break;
3035
3036 case tcc_expression:
3037 /* This is the pattern built in ada/make_aligning_type. */
3038 if (code == ADDR_EXPR
3039 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3040 {
3041 push_without_duplicates (exp, refs);
3042 break;
3043 }
3044
3045 /* Fall through... */
3046
3047 case tcc_exceptional:
3048 case tcc_unary:
3049 case tcc_binary:
3050 case tcc_comparison:
3051 case tcc_reference:
3052 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3053 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3054 break;
3055
3056 case tcc_vl_exp:
3057 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3058 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3059 break;
3060
3061 default:
3062 gcc_unreachable ();
3063 }
3064}
3065
dec20b4b
RK
3066/* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3067 return a tree with all occurrences of references to F in a
f82a627c
EB
3068 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3069 CONST_DECLs. Note that we assume here that EXP contains only
3070 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3071 occurring only in their argument list. */
dec20b4b
RK
3072
3073tree
46c5ad27 3074substitute_in_expr (tree exp, tree f, tree r)
dec20b4b
RK
3075{
3076 enum tree_code code = TREE_CODE (exp);
7ad00e13 3077 tree op0, op1, op2, op3;
6569d386 3078 tree new_tree;
dec20b4b 3079
9d2a492d
RK
3080 /* We handle TREE_LIST and COMPONENT_REF separately. */
3081 if (code == TREE_LIST)
dec20b4b 3082 {
6fce44af
RK
3083 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3084 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
9d2a492d 3085 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
dec20b4b 3086 return exp;
e9a25f70 3087
9d2a492d
RK
3088 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3089 }
3090 else if (code == COMPONENT_REF)
6569d386
EB
3091 {
3092 tree inner;
3093
3094 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3095 and it is the right field, replace it with R. */
3096 for (inner = TREE_OPERAND (exp, 0);
3097 REFERENCE_CLASS_P (inner);
3098 inner = TREE_OPERAND (inner, 0))
3099 ;
3100
3101 /* The field. */
3102 op1 = TREE_OPERAND (exp, 1);
3103
3104 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3105 return r;
3106
3107 /* If this expression hasn't been completed let, leave it alone. */
3108 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3109 return exp;
3110
3111 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3112 if (op0 == TREE_OPERAND (exp, 0))
3113 return exp;
3114
3115 new_tree
3116 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
9d2a492d
RK
3117 }
3118 else
3119 switch (TREE_CODE_CLASS (code))
3120 {
6615c446 3121 case tcc_constant:
9d2a492d 3122 return exp;
dec20b4b 3123
f82a627c
EB
3124 case tcc_declaration:
3125 if (exp == f)
3126 return r;
3127 else
3128 return exp;
3129
3130 case tcc_expression:
3131 if (exp == f)
3132 return r;
3133
3134 /* Fall through... */
3135
6615c446
JO
3136 case tcc_exceptional:
3137 case tcc_unary:
3138 case tcc_binary:
3139 case tcc_comparison:
6615c446 3140 case tcc_reference:
54e4aedb 3141 switch (TREE_CODE_LENGTH (code))
9d2a492d
RK
3142 {
3143 case 0:
9b594acf 3144 return exp;
dc478a5d 3145
9d2a492d 3146 case 1:
6fce44af 3147 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
9d2a492d
RK
3148 if (op0 == TREE_OPERAND (exp, 0))
3149 return exp;
235783d1 3150
82d6e6fc 3151 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
9d2a492d 3152 break;
dec20b4b 3153
9d2a492d 3154 case 2:
6fce44af
RK
3155 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3156 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
784fb70e 3157
9d2a492d
RK
3158 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3159 return exp;
9b594acf 3160
82d6e6fc 3161 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
9d2a492d 3162 break;
dec20b4b 3163
9d2a492d 3164 case 3:
6fce44af
RK
3165 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3166 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3167 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
6a22e3a7 3168
9d2a492d
RK
3169 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3170 && op2 == TREE_OPERAND (exp, 2))
3171 return exp;
e9a25f70 3172
82d6e6fc 3173 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
9d2a492d 3174 break;
e9a25f70 3175
7ad00e13
EB
3176 case 4:
3177 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3178 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3179 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3180 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3181
3182 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3183 && op2 == TREE_OPERAND (exp, 2)
3184 && op3 == TREE_OPERAND (exp, 3))
3185 return exp;
3186
6569d386
EB
3187 new_tree
3188 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
7ad00e13
EB
3189 break;
3190
9d2a492d 3191 default:
1e128c5f 3192 gcc_unreachable ();
9d2a492d
RK
3193 }
3194 break;
dec20b4b 3195
5039610b
SL
3196 case tcc_vl_exp:
3197 {
5039610b 3198 int i;
9328dd57 3199
6569d386
EB
3200 new_tree = NULL_TREE;
3201
f82a627c
EB
3202 /* If we are trying to replace F with a constant, inline back
3203 functions which do nothing else than computing a value from
3204 the arguments they are passed. This makes it possible to
3205 fold partially or entirely the replacement expression. */
3206 if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3207 {
3208 tree t = maybe_inline_call_in_expr (exp);
3209 if (t)
3210 return SUBSTITUTE_IN_EXPR (t, f, r);
3211 }
3212
9328dd57 3213 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
5039610b
SL
3214 {
3215 tree op = TREE_OPERAND (exp, i);
df8e1fdc
EB
3216 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3217 if (new_op != op)
5039610b 3218 {
6569d386
EB
3219 if (!new_tree)
3220 new_tree = copy_node (exp);
3221 TREE_OPERAND (new_tree, i) = new_op;
5039610b
SL
3222 }
3223 }
df8e1fdc 3224
6569d386
EB
3225 if (new_tree)
3226 {
3227 new_tree = fold (new_tree);
3228 if (TREE_CODE (new_tree) == CALL_EXPR)
3229 process_call_operands (new_tree);
3230 }
5039610b
SL
3231 else
3232 return exp;
3233 }
9328dd57 3234 break;
5039610b 3235
9d2a492d 3236 default:
1e128c5f 3237 gcc_unreachable ();
9d2a492d 3238 }
dec20b4b 3239
6569d386 3240 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
a61c3633
EB
3241
3242 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3243 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3244
82d6e6fc 3245 return new_tree;
dec20b4b 3246}
6fce44af
RK
3247
3248/* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3249 for it within OBJ, a tree that is an object or a chain of references. */
3250
3251tree
3252substitute_placeholder_in_expr (tree exp, tree obj)
3253{
3254 enum tree_code code = TREE_CODE (exp);
95df09f0 3255 tree op0, op1, op2, op3;
6569d386 3256 tree new_tree;
6fce44af
RK
3257
3258 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3259 in the chain of OBJ. */
3260 if (code == PLACEHOLDER_EXPR)
3261 {
3262 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3263 tree elt;
3264
3265 for (elt = obj; elt != 0;
3266 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3267 || TREE_CODE (elt) == COND_EXPR)
3268 ? TREE_OPERAND (elt, 1)
6615c446
JO
3269 : (REFERENCE_CLASS_P (elt)
3270 || UNARY_CLASS_P (elt)
3271 || BINARY_CLASS_P (elt)
5039610b 3272 || VL_EXP_CLASS_P (elt)
6615c446 3273 || EXPRESSION_CLASS_P (elt))
6fce44af
RK
3274 ? TREE_OPERAND (elt, 0) : 0))
3275 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3276 return elt;
3277
3278 for (elt = obj; elt != 0;
3279 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3280 || TREE_CODE (elt) == COND_EXPR)
3281 ? TREE_OPERAND (elt, 1)
6615c446
JO
3282 : (REFERENCE_CLASS_P (elt)
3283 || UNARY_CLASS_P (elt)
3284 || BINARY_CLASS_P (elt)
5039610b 3285 || VL_EXP_CLASS_P (elt)
6615c446 3286 || EXPRESSION_CLASS_P (elt))
6fce44af
RK
3287 ? TREE_OPERAND (elt, 0) : 0))
3288 if (POINTER_TYPE_P (TREE_TYPE (elt))
3289 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3290 == need_type))
987b67bc 3291 return fold_build1 (INDIRECT_REF, need_type, elt);
6fce44af
RK
3292
3293 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3294 survives until RTL generation, there will be an error. */
3295 return exp;
3296 }
3297
3298 /* TREE_LIST is special because we need to look at TREE_VALUE
3299 and TREE_CHAIN, not TREE_OPERANDS. */
3300 else if (code == TREE_LIST)
3301 {
3302 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3303 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3304 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3305 return exp;
3306
3307 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3308 }
3309 else
3310 switch (TREE_CODE_CLASS (code))
3311 {
6615c446
JO
3312 case tcc_constant:
3313 case tcc_declaration:
6fce44af
RK
3314 return exp;
3315
6615c446
JO
3316 case tcc_exceptional:
3317 case tcc_unary:
3318 case tcc_binary:
3319 case tcc_comparison:
3320 case tcc_expression:
3321 case tcc_reference:
3322 case tcc_statement:
54e4aedb 3323 switch (TREE_CODE_LENGTH (code))
6fce44af
RK
3324 {
3325 case 0:
3326 return exp;
3327
3328 case 1:
3329 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3330 if (op0 == TREE_OPERAND (exp, 0))
3331 return exp;
6569d386
EB
3332
3333 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3334 break;
6fce44af
RK
3335
3336 case 2:
3337 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3338 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3339
3340 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3341 return exp;
6569d386
EB
3342
3343 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3344 break;
6fce44af
RK
3345
3346 case 3:
3347 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3348 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3349 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3350
3351 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3352 && op2 == TREE_OPERAND (exp, 2))
3353 return exp;
6569d386
EB
3354
3355 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3356 break;
6fce44af 3357
95df09f0
RK
3358 case 4:
3359 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3360 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3361 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3362 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
3363
3364 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3365 && op2 == TREE_OPERAND (exp, 2)
3366 && op3 == TREE_OPERAND (exp, 3))
3367 return exp;
6569d386
EB
3368
3369 new_tree
3370 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3371 break;
95df09f0 3372
6fce44af 3373 default:
1e128c5f 3374 gcc_unreachable ();
6fce44af
RK
3375 }
3376 break;
3377
5039610b
SL
3378 case tcc_vl_exp:
3379 {
5039610b 3380 int i;
fa74fa39 3381
6569d386
EB
3382 new_tree = NULL_TREE;
3383
fa74fa39 3384 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
5039610b
SL
3385 {
3386 tree op = TREE_OPERAND (exp, i);
fa74fa39
EB
3387 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
3388 if (new_op != op)
5039610b 3389 {
6569d386
EB
3390 if (!new_tree)
3391 new_tree = copy_node (exp);
3392 TREE_OPERAND (new_tree, i) = new_op;
5039610b
SL
3393 }
3394 }
fa74fa39 3395
6569d386
EB
3396 if (new_tree)
3397 {
3398 new_tree = fold (new_tree);
3399 if (TREE_CODE (new_tree) == CALL_EXPR)
3400 process_call_operands (new_tree);
3401 }
5039610b
SL
3402 else
3403 return exp;
3404 }
6569d386 3405 break;
5039610b 3406
6fce44af 3407 default:
1e128c5f 3408 gcc_unreachable ();
6fce44af 3409 }
6569d386
EB
3410
3411 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
a61c3633
EB
3412
3413 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3414 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3415
6569d386 3416 return new_tree;
6fce44af 3417}
dec20b4b 3418\f
c6a1db6c
RS
3419/* Stabilize a reference so that we can use it any number of times
3420 without causing its operands to be evaluated more than once.
4b1d0fea
RS
3421 Returns the stabilized reference. This works by means of save_expr,
3422 so see the caveats in the comments about save_expr.
c6a1db6c
RS
3423
3424 Also allows conversion expressions whose operands are references.
3425 Any other kind of expression is returned unchanged. */
3426
3427tree
46c5ad27 3428stabilize_reference (tree ref)
c6a1db6c 3429{
b3694847
SS
3430 tree result;
3431 enum tree_code code = TREE_CODE (ref);
c6a1db6c
RS
3432
3433 switch (code)
3434 {
3435 case VAR_DECL:
3436 case PARM_DECL:
3437 case RESULT_DECL:
3438 /* No action is needed in this case. */
3439 return ref;
3440
1043771b 3441 CASE_CONVERT:
c6a1db6c
RS
3442 case FLOAT_EXPR:
3443 case FIX_TRUNC_EXPR:
c6a1db6c
RS
3444 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
3445 break;
3446
3447 case INDIRECT_REF:
3448 result = build_nt (INDIRECT_REF,
3449 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
3450 break;
3451
3452 case COMPONENT_REF:
3453 result = build_nt (COMPONENT_REF,
3454 stabilize_reference (TREE_OPERAND (ref, 0)),
44de5aeb 3455 TREE_OPERAND (ref, 1), NULL_TREE);
c6a1db6c
RS
3456 break;
3457
3458 case BIT_FIELD_REF:
3459 result = build_nt (BIT_FIELD_REF,
3460 stabilize_reference (TREE_OPERAND (ref, 0)),
3461 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3462 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
3463 break;
3464
3465 case ARRAY_REF:
3466 result = build_nt (ARRAY_REF,
3467 stabilize_reference (TREE_OPERAND (ref, 0)),
44de5aeb
RK
3468 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3469 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
c6a1db6c
RS
3470 break;
3471
b4e3fabb
RK
3472 case ARRAY_RANGE_REF:
3473 result = build_nt (ARRAY_RANGE_REF,
3474 stabilize_reference (TREE_OPERAND (ref, 0)),
44de5aeb
RK
3475 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3476 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
b4e3fabb
RK
3477 break;
3478
c451a7a0 3479 case COMPOUND_EXPR:
7b8b9722
MS
3480 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3481 it wouldn't be ignored. This matters when dealing with
3482 volatiles. */
3483 return stabilize_reference_1 (ref);
c451a7a0 3484
c6a1db6c
RS
3485 /* If arg isn't a kind of lvalue we recognize, make no change.
3486 Caller should recognize the error for an invalid lvalue. */
3487 default:
3488 return ref;
3489
3490 case ERROR_MARK:
3491 return error_mark_node;
3492 }
3493
3494 TREE_TYPE (result) = TREE_TYPE (ref);
3495 TREE_READONLY (result) = TREE_READONLY (ref);
3496 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
3497 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
c6a1db6c
RS
3498
3499 return result;
3500}
3501
3502/* Subroutine of stabilize_reference; this is called for subtrees of
3503 references. Any expression with side-effects must be put in a SAVE_EXPR
3504 to ensure that it is only evaluated once.
3505
3506 We don't put SAVE_EXPR nodes around everything, because assigning very
3507 simple expressions to temporaries causes us to miss good opportunities
3508 for optimizations. Among other things, the opportunity to fold in the
3509 addition of a constant into an addressing mode often gets lost, e.g.
3510 "y[i+1] += x;". In general, we take the approach that we should not make
3511 an assignment unless we are forced into it - i.e., that any non-side effect
3512 operator should be allowed, and that cse should take care of coalescing
3513 multiple utterances of the same expression should that prove fruitful. */
3514
4745ddae 3515tree
46c5ad27 3516stabilize_reference_1 (tree e)
c6a1db6c 3517{
b3694847
SS
3518 tree result;
3519 enum tree_code code = TREE_CODE (e);
c6a1db6c 3520
af929c62
RK
3521 /* We cannot ignore const expressions because it might be a reference
3522 to a const array but whose index contains side-effects. But we can
3523 ignore things that are actual constant or that already have been
3524 handled by this function. */
3525
51eed280 3526 if (tree_invariant_p (e))
c6a1db6c
RS
3527 return e;
3528
3529 switch (TREE_CODE_CLASS (code))
3530 {
6615c446
JO
3531 case tcc_exceptional:
3532 case tcc_type:
3533 case tcc_declaration:
3534 case tcc_comparison:
3535 case tcc_statement:
3536 case tcc_expression:
3537 case tcc_reference:
5039610b 3538 case tcc_vl_exp:
c6a1db6c
RS
3539 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3540 so that it will only be evaluated once. */
3541 /* The reference (r) and comparison (<) classes could be handled as
3542 below, but it is generally faster to only evaluate them once. */
3543 if (TREE_SIDE_EFFECTS (e))
3544 return save_expr (e);
3545 return e;
3546
6615c446 3547 case tcc_constant:
c6a1db6c
RS
3548 /* Constants need no processing. In fact, we should never reach
3549 here. */
3550 return e;
dc478a5d 3551
6615c446 3552 case tcc_binary:
ae698e41
RS
3553 /* Division is slow and tends to be compiled with jumps,
3554 especially the division by powers of 2 that is often
3555 found inside of an array reference. So do it just once. */
3556 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
3557 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
3558 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
3559 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
3560 return save_expr (e);
c6a1db6c
RS
3561 /* Recursively stabilize each operand. */
3562 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
3563 stabilize_reference_1 (TREE_OPERAND (e, 1)));
3564 break;
3565
6615c446 3566 case tcc_unary:
c6a1db6c
RS
3567 /* Recursively stabilize each operand. */
3568 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
3569 break;
a7fcb968
RK
3570
3571 default:
1e128c5f 3572 gcc_unreachable ();
c6a1db6c 3573 }
dc478a5d 3574
c6a1db6c
RS
3575 TREE_TYPE (result) = TREE_TYPE (e);
3576 TREE_READONLY (result) = TREE_READONLY (e);
3577 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
3578 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
c6a1db6c
RS
3579
3580 return result;
3581}
3582\f
3583/* Low-level constructors for expressions. */
3584
44de5aeb 3585/* A helper function for build1 and constant folders. Set TREE_CONSTANT,
51eed280 3586 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
6de9cd9a
DN
3587
3588void
127203ac 3589recompute_tree_invariant_for_addr_expr (tree t)
6de9cd9a 3590{
44de5aeb 3591 tree node;
51eed280 3592 bool tc = true, se = false;
6de9cd9a 3593
44de5aeb
RK
3594 /* We started out assuming this address is both invariant and constant, but
3595 does not have side effects. Now go down any handled components and see if
3596 any of them involve offsets that are either non-constant or non-invariant.
3597 Also check for side-effects.
3598
3599 ??? Note that this code makes no attempt to deal with the case where
3600 taking the address of something causes a copy due to misalignment. */
3601
51eed280 3602#define UPDATE_FLAGS(NODE) \
44de5aeb 3603do { tree _node = (NODE); \
44de5aeb
RK
3604 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3605 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3606
3607 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
3608 node = TREE_OPERAND (node, 0))
6de9cd9a 3609 {
44de5aeb
RK
3610 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3611 array reference (probably made temporarily by the G++ front end),
3612 so ignore all the operands. */
3613 if ((TREE_CODE (node) == ARRAY_REF
3614 || TREE_CODE (node) == ARRAY_RANGE_REF)
3615 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
6de9cd9a 3616 {
51eed280 3617 UPDATE_FLAGS (TREE_OPERAND (node, 1));
bc482be4 3618 if (TREE_OPERAND (node, 2))
51eed280 3619 UPDATE_FLAGS (TREE_OPERAND (node, 2));
bc482be4 3620 if (TREE_OPERAND (node, 3))
51eed280 3621 UPDATE_FLAGS (TREE_OPERAND (node, 3));
6de9cd9a 3622 }
44de5aeb
RK
3623 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3624 FIELD_DECL, apparently. The G++ front end can put something else
3625 there, at least temporarily. */
3626 else if (TREE_CODE (node) == COMPONENT_REF
3627 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
bc482be4
RH
3628 {
3629 if (TREE_OPERAND (node, 2))
51eed280 3630 UPDATE_FLAGS (TREE_OPERAND (node, 2));
bc482be4 3631 }
44de5aeb 3632 else if (TREE_CODE (node) == BIT_FIELD_REF)
51eed280 3633 UPDATE_FLAGS (TREE_OPERAND (node, 2));
44de5aeb 3634 }
9f63daea 3635
51eed280 3636 node = lang_hooks.expr_to_decl (node, &tc, &se);
73f397d4 3637
44de5aeb 3638 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
51eed280
PB
3639 the address, since &(*a)->b is a form of addition. If it's a constant, the
3640 address is constant too. If it's a decl, its address is constant if the
3641 decl is static. Everything else is not constant and, furthermore,
3642 taking the address of a volatile variable is not volatile. */
70f34814
RG
3643 if (TREE_CODE (node) == INDIRECT_REF
3644 || TREE_CODE (node) == MEM_REF)
51eed280 3645 UPDATE_FLAGS (TREE_OPERAND (node, 0));
6615c446 3646 else if (CONSTANT_CLASS_P (node))
44de5aeb 3647 ;
51eed280
PB
3648 else if (DECL_P (node))
3649 tc &= (staticp (node) != NULL_TREE);
44de5aeb
RK
3650 else
3651 {
51eed280 3652 tc = false;
44de5aeb 3653 se |= TREE_SIDE_EFFECTS (node);
6de9cd9a
DN
3654 }
3655
51eed280 3656
6de9cd9a 3657 TREE_CONSTANT (t) = tc;
44de5aeb 3658 TREE_SIDE_EFFECTS (t) = se;
51eed280 3659#undef UPDATE_FLAGS
6de9cd9a
DN
3660}
3661
4221057e
RH
3662/* Build an expression of code CODE, data type TYPE, and operands as
3663 specified. Expressions and reference nodes can be created this way.
3664 Constants, decls, types and misc nodes cannot be.
3665
3666 We define 5 non-variadic functions, from 0 to 4 arguments. This is
d82dd39a 3667 enough for all extant tree codes. */
c6a1db6c
RS
3668
3669tree
b9dcdee4 3670build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
c6a1db6c 3671{
b3694847 3672 tree t;
c6a1db6c 3673
1e128c5f 3674 gcc_assert (TREE_CODE_LENGTH (code) == 0);
ba63ed56 3675
b9dcdee4 3676 t = make_node_stat (code PASS_MEM_STAT);
ba63ed56 3677 TREE_TYPE (t) = tt;
c6a1db6c 3678
c6a1db6c
RS
3679 return t;
3680}
3681
c6a1db6c 3682tree
b9dcdee4 3683build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
c6a1db6c 3684{
9ec22713 3685 int length = sizeof (struct tree_exp);
5e9defae 3686#ifdef GATHER_STATISTICS
b3694847 3687 tree_node_kind kind;
5e9defae 3688#endif
b3694847 3689 tree t;
c6a1db6c
RS
3690
3691#ifdef GATHER_STATISTICS
9ec22713
JM
3692 switch (TREE_CODE_CLASS (code))
3693 {
6615c446 3694 case tcc_statement: /* an expression with side effects */
9ec22713
JM
3695 kind = s_kind;
3696 break;
6615c446 3697 case tcc_reference: /* a reference */
9ec22713
JM
3698 kind = r_kind;
3699 break;
3700 default:
3701 kind = e_kind;
3702 break;
3703 }
3704
3705 tree_node_counts[(int) kind]++;
3706 tree_node_sizes[(int) kind] += length;
c6a1db6c
RS
3707#endif
3708
1e128c5f 3709 gcc_assert (TREE_CODE_LENGTH (code) == 1);
3af4c257 3710
a9429e29 3711 t = ggc_alloc_zone_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
f8a83ee3 3712
fad205ff 3713 memset (t, 0, sizeof (struct tree_common));
c6a1db6c 3714
c6a1db6c 3715 TREE_SET_CODE (t, code);
235783d1 3716
f8a83ee3 3717 TREE_TYPE (t) = type;
c1667470 3718 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
c6a1db6c 3719 TREE_OPERAND (t, 0) = node;
6de9cd9a 3720 TREE_BLOCK (t) = NULL_TREE;
ac1b13f4 3721 if (node && !TYPE_P (node))
235783d1
RK
3722 {
3723 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
3724 TREE_READONLY (t) = TREE_READONLY (node);
3725 }
c6a1db6c 3726
6615c446 3727 if (TREE_CODE_CLASS (code) == tcc_statement)
4f7c4327 3728 TREE_SIDE_EFFECTS (t) = 1;
9ec22713 3729 else switch (code)
1fef02f6 3730 {
1fef02f6 3731 case VA_ARG_EXPR:
1fef02f6
RH
3732 /* All of these have side-effects, no matter what their
3733 operands are. */
3734 TREE_SIDE_EFFECTS (t) = 1;
235783d1 3735 TREE_READONLY (t) = 0;
1fef02f6 3736 break;
f893c16e
JM
3737
3738 case INDIRECT_REF:
3739 /* Whether a dereference is readonly has nothing to do with whether
3740 its operand is readonly. */
3741 TREE_READONLY (t) = 0;
3742 break;
dc478a5d 3743
2038bd69
JM
3744 case ADDR_EXPR:
3745 if (node)
127203ac 3746 recompute_tree_invariant_for_addr_expr (t);
2038bd69
JM
3747 break;
3748
1fef02f6 3749 default:
5d5995f1 3750 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
6615c446 3751 && node && !TYPE_P (node)
4f976745 3752 && TREE_CONSTANT (node))
1796dff4 3753 TREE_CONSTANT (t) = 1;
6615c446
JO
3754 if (TREE_CODE_CLASS (code) == tcc_reference
3755 && node && TREE_THIS_VOLATILE (node))
497be978 3756 TREE_THIS_VOLATILE (t) = 1;
1fef02f6
RH
3757 break;
3758 }
3759
c6a1db6c
RS
3760 return t;
3761}
3762
96da8066
EB
3763#define PROCESS_ARG(N) \
3764 do { \
3765 TREE_OPERAND (t, N) = arg##N; \
3766 if (arg##N &&!TYPE_P (arg##N)) \
3767 { \
3768 if (TREE_SIDE_EFFECTS (arg##N)) \
3769 side_effects = 1; \
3770 if (!TREE_READONLY (arg##N) \
3771 && !CONSTANT_CLASS_P (arg##N)) \
60d3aec4 3772 (void) (read_only = 0); \
96da8066 3773 if (!TREE_CONSTANT (arg##N)) \
60d3aec4 3774 (void) (constant = 0); \
96da8066 3775 } \
4221057e
RH
3776 } while (0)
3777
3778tree
b9dcdee4 3779build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4221057e 3780{
51eed280 3781 bool constant, read_only, side_effects;
4221057e 3782 tree t;
4221057e 3783
1e128c5f 3784 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4221057e 3785
5be014d5 3786 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
98665861
RG
3787 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
3788 /* When sizetype precision doesn't match that of pointers
3789 we need to be able to build explicit extensions or truncations
3790 of the offset argument. */
3791 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
3792 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
3793 && TREE_CODE (arg1) == INTEGER_CST);
5be014d5
AP
3794
3795 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
3796 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
49271fc0 3797 && INTEGRAL_TYPE_P (TREE_TYPE (arg1))
36618b93 3798 && useless_type_conversion_p (sizetype, TREE_TYPE (arg1)));
5be014d5 3799
b9dcdee4 3800 t = make_node_stat (code PASS_MEM_STAT);
4221057e
RH
3801 TREE_TYPE (t) = tt;
3802
3803 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3804 result based on those same flags for the arguments. But if the
3805 arguments aren't really even `tree' expressions, we shouldn't be trying
3806 to do this. */
4221057e
RH
3807
3808 /* Expressions without side effects may be constant if their
3809 arguments are as well. */
6615c446
JO
3810 constant = (TREE_CODE_CLASS (code) == tcc_comparison
3811 || TREE_CODE_CLASS (code) == tcc_binary);
4221057e
RH
3812 read_only = 1;
3813 side_effects = TREE_SIDE_EFFECTS (t);
3814
3815 PROCESS_ARG(0);
3816 PROCESS_ARG(1);
3817
4221057e
RH
3818 TREE_READONLY (t) = read_only;
3819 TREE_CONSTANT (t) = constant;
9f63daea 3820 TREE_SIDE_EFFECTS (t) = side_effects;
44de5aeb 3821 TREE_THIS_VOLATILE (t)
6615c446
JO
3822 = (TREE_CODE_CLASS (code) == tcc_reference
3823 && arg0 && TREE_THIS_VOLATILE (arg0));
4221057e
RH
3824
3825 return t;
3826}
3827
07beea0d 3828
4221057e 3829tree
b9dcdee4
JH
3830build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3831 tree arg2 MEM_STAT_DECL)
4221057e 3832{
51eed280 3833 bool constant, read_only, side_effects;
4221057e 3834 tree t;
4221057e 3835
1e128c5f 3836 gcc_assert (TREE_CODE_LENGTH (code) == 3);
5039610b 3837 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4221057e 3838
b9dcdee4 3839 t = make_node_stat (code PASS_MEM_STAT);
4221057e
RH
3840 TREE_TYPE (t) = tt;
3841
96da8066
EB
3842 read_only = 1;
3843
a9b77cd1
ZD
3844 /* As a special exception, if COND_EXPR has NULL branches, we
3845 assume that it is a gimple statement and always consider
3846 it to have side effects. */
3847 if (code == COND_EXPR
3848 && tt == void_type_node
3849 && arg1 == NULL_TREE
3850 && arg2 == NULL_TREE)
3851 side_effects = true;
3852 else
3853 side_effects = TREE_SIDE_EFFECTS (t);
4221057e
RH
3854
3855 PROCESS_ARG(0);
3856 PROCESS_ARG(1);
3857 PROCESS_ARG(2);
3858
96da8066
EB
3859 if (code == COND_EXPR)
3860 TREE_READONLY (t) = read_only;
3861
9f63daea 3862 TREE_SIDE_EFFECTS (t) = side_effects;
44de5aeb 3863 TREE_THIS_VOLATILE (t)
6615c446
JO
3864 = (TREE_CODE_CLASS (code) == tcc_reference
3865 && arg0 && TREE_THIS_VOLATILE (arg0));
4221057e
RH
3866
3867 return t;
3868}
3869
3870tree
b9dcdee4
JH
3871build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3872 tree arg2, tree arg3 MEM_STAT_DECL)
4221057e 3873{
51eed280 3874 bool constant, read_only, side_effects;
4221057e 3875 tree t;
4221057e 3876
1e128c5f 3877 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4221057e 3878
b9dcdee4 3879 t = make_node_stat (code PASS_MEM_STAT);
4221057e
RH
3880 TREE_TYPE (t) = tt;
3881
4221057e
RH
3882 side_effects = TREE_SIDE_EFFECTS (t);
3883
3884 PROCESS_ARG(0);
3885 PROCESS_ARG(1);
3886 PROCESS_ARG(2);
3887 PROCESS_ARG(3);
3888
9f63daea 3889 TREE_SIDE_EFFECTS (t) = side_effects;
44de5aeb 3890 TREE_THIS_VOLATILE (t)
6615c446
JO
3891 = (TREE_CODE_CLASS (code) == tcc_reference
3892 && arg0 && TREE_THIS_VOLATILE (arg0));
4221057e
RH
3893
3894 return t;
3895}
3896
953ff289
DN
3897tree
3898build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3899 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
3900{
51eed280 3901 bool constant, read_only, side_effects;
953ff289
DN
3902 tree t;
3903
3904 gcc_assert (TREE_CODE_LENGTH (code) == 5);
3905
3906 t = make_node_stat (code PASS_MEM_STAT);
3907 TREE_TYPE (t) = tt;
3908
3909 side_effects = TREE_SIDE_EFFECTS (t);
3910
3911 PROCESS_ARG(0);
3912 PROCESS_ARG(1);
3913 PROCESS_ARG(2);
3914 PROCESS_ARG(3);
3915 PROCESS_ARG(4);
3916
3917 TREE_SIDE_EFFECTS (t) = side_effects;
3918 TREE_THIS_VOLATILE (t)
3919 = (TREE_CODE_CLASS (code) == tcc_reference
3920 && arg0 && TREE_THIS_VOLATILE (arg0));
3921
3922 return t;
3923}
3924
ac182688 3925tree
5006671f
RG
3926build6_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3927 tree arg2, tree arg3, tree arg4, tree arg5 MEM_STAT_DECL)
ac182688 3928{
51eed280 3929 bool constant, read_only, side_effects;
ac182688
ZD
3930 tree t;
3931
3932 gcc_assert (code == TARGET_MEM_REF);
3933
3934 t = make_node_stat (code PASS_MEM_STAT);
3935 TREE_TYPE (t) = tt;
3936
3937 side_effects = TREE_SIDE_EFFECTS (t);
3938
3939 PROCESS_ARG(0);
3940 PROCESS_ARG(1);
3941 PROCESS_ARG(2);
3942 PROCESS_ARG(3);
3943 PROCESS_ARG(4);
5e9fb3db
RG
3944 if (code == TARGET_MEM_REF)
3945 side_effects = 0;
ac182688 3946 PROCESS_ARG(5);
ac182688
ZD
3947
3948 TREE_SIDE_EFFECTS (t) = side_effects;
5e9fb3db
RG
3949 TREE_THIS_VOLATILE (t)
3950 = (code == TARGET_MEM_REF
3951 && arg5 && TREE_THIS_VOLATILE (arg5));
ac182688
ZD
3952
3953 return t;
3954}
3955
70f34814
RG
3956/* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
3957 on the pointer PTR. */
3958
3959tree
3960build_simple_mem_ref_loc (location_t loc, tree ptr)
3961{
3962 HOST_WIDE_INT offset = 0;
3963 tree ptype = TREE_TYPE (ptr);
3964 tree tem;
3965 /* For convenience allow addresses that collapse to a simple base
3966 and offset. */
3967 if (TREE_CODE (ptr) == ADDR_EXPR
3968 && (handled_component_p (TREE_OPERAND (ptr, 0))
3969 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
3970 {
3971 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
3972 gcc_assert (ptr);
3973 ptr = build_fold_addr_expr (ptr);
3974 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
3975 }
3976 tem = build2 (MEM_REF, TREE_TYPE (ptype),
3977 ptr, build_int_cst (ptype, offset));
3978 SET_EXPR_LOCATION (tem, loc);
3979 return tem;
3980}
3981
4b228e61 3982/* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
70f34814
RG
3983
3984double_int
3985mem_ref_offset (const_tree t)
3986{
4d948885 3987 tree toff = TREE_OPERAND (t, 1);
70f34814
RG
3988 return double_int_sext (tree_to_double_int (toff),
3989 TYPE_PRECISION (TREE_TYPE (toff)));
3990}
3991
a41e5e86
RG
3992/* Return the pointer-type relevant for TBAA purposes from the
3993 gimple memory reference tree T. This is the type to be used for
3994 the offset operand of MEM_REF or TARGET_MEM_REF replacements of T. */
3995
3996tree
3997reference_alias_ptr_type (const_tree t)
3998{
3999 const_tree base = t;
4000 while (handled_component_p (base))
4001 base = TREE_OPERAND (base, 0);
4002 if (TREE_CODE (base) == MEM_REF)
4003 return TREE_TYPE (TREE_OPERAND (base, 1));
4b228e61
RG
4004 else if (TREE_CODE (base) == TARGET_MEM_REF)
4005 return TREE_TYPE (TMR_OFFSET (base));
a41e5e86
RG
4006 else
4007 return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (base)));
4008}
4009
c6a1db6c
RS
4010/* Similar except don't specify the TREE_TYPE
4011 and leave the TREE_SIDE_EFFECTS as 0.
4012 It is permissible for arguments to be null,
4013 or even garbage if their values do not matter. */
4014
4015tree
e34d07f2 4016build_nt (enum tree_code code, ...)
c6a1db6c 4017{
b3694847
SS
4018 tree t;
4019 int length;
4020 int i;
e34d07f2 4021 va_list p;
c6a1db6c 4022
5039610b
SL
4023 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4024
e34d07f2 4025 va_start (p, code);
ba63ed56 4026
c6a1db6c 4027 t = make_node (code);
8d5e6e25 4028 length = TREE_CODE_LENGTH (code);
c6a1db6c
RS
4029
4030 for (i = 0; i < length; i++)
4031 TREE_OPERAND (t, i) = va_arg (p, tree);
4032
e34d07f2 4033 va_end (p);
c6a1db6c
RS
4034 return t;
4035}
5039610b 4036
c166b898
ILT
4037/* Similar to build_nt, but for creating a CALL_EXPR object with a
4038 tree VEC. */
4039
4040tree
4041build_nt_call_vec (tree fn, VEC(tree,gc) *args)
4042{
4043 tree ret, t;
4044 unsigned int ix;
4045
4046 ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
4047 CALL_EXPR_FN (ret) = fn;
4048 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
ac47786e 4049 FOR_EACH_VEC_ELT (tree, args, ix, t)
c166b898
ILT
4050 CALL_EXPR_ARG (ret, ix) = t;
4051 return ret;
4052}
c6a1db6c
RS
4053\f
4054/* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4055 We do NOT enter this node in any sort of symbol table.
4056
c2255bc4
AH
4057 LOC is the location of the decl.
4058
c6a1db6c
RS
4059 layout_decl is used to set up the decl's storage layout.
4060 Other slots are initialized to 0 or null pointers. */
4061
4062tree
c2255bc4
AH
4063build_decl_stat (location_t loc, enum tree_code code, tree name,
4064 tree type MEM_STAT_DECL)
c6a1db6c 4065{
b3694847 4066 tree t;
c6a1db6c 4067
b9dcdee4 4068 t = make_node_stat (code PASS_MEM_STAT);
c2255bc4 4069 DECL_SOURCE_LOCATION (t) = loc;
c6a1db6c
RS
4070
4071/* if (type == error_mark_node)
4072 type = integer_type_node; */
4073/* That is not done, deliberately, so that having error_mark_node
4074 as the type can suppress useless errors in the use of this variable. */
4075
4076 DECL_NAME (t) = name;
c6a1db6c
RS
4077 TREE_TYPE (t) = type;
4078
4079 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4080 layout_decl (t, 0);
9f63daea 4081
c6a1db6c
RS
4082 return t;
4083}
9885da8e
ZD
4084
4085/* Builds and returns function declaration with NAME and TYPE. */
4086
4087tree
4088build_fn_decl (const char *name, tree type)
4089{
4090 tree id = get_identifier (name);
c2255bc4 4091 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
9885da8e
ZD
4092
4093 DECL_EXTERNAL (decl) = 1;
4094 TREE_PUBLIC (decl) = 1;
4095 DECL_ARTIFICIAL (decl) = 1;
4096 TREE_NOTHROW (decl) = 1;
4097
4098 return decl;
4099}
4100
6be14c0e
RG
4101VEC(tree,gc) *all_translation_units;
4102
4103/* Builds a new translation-unit decl with name NAME, queues it in the
4104 global list of translation-unit decls and returns it. */
4105
4106tree
4107build_translation_unit_decl (tree name)
4108{
4109 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4110 name, NULL_TREE);
4111 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4112 VEC_safe_push (tree, gc, all_translation_units, tu);
4113 return tu;
4114}
4115
c6a1db6c
RS
4116\f
4117/* BLOCK nodes are used to represent the structure of binding contours
4118 and declarations, once those contours have been exited and their contents
52d2830e 4119 compiled. This information is used for outputting debugging info. */
c6a1db6c
RS
4120
4121tree
22e8617b 4122build_block (tree vars, tree subblocks, tree supercontext, tree chain)
c6a1db6c 4123{
b3694847 4124 tree block = make_node (BLOCK);
d4b60170 4125
c6a1db6c 4126 BLOCK_VARS (block) = vars;
c6a1db6c
RS
4127 BLOCK_SUBBLOCKS (block) = subblocks;
4128 BLOCK_SUPERCONTEXT (block) = supercontext;
4129 BLOCK_CHAIN (block) = chain;
4130 return block;
4131}
bf1e5319 4132
c6a1db6c 4133\f
6a3799eb
AH
4134/* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4135
4136 LOC is the location to use in tree T. */
4137
9db4cdd3
EB
4138void
4139protected_set_expr_location (tree t, location_t loc)
6a3799eb 4140{
6847a754 4141 if (t && CAN_HAVE_LOCATION_P (t))
6a3799eb
AH
4142 SET_EXPR_LOCATION (t, loc);
4143}
07beea0d 4144\f
91d231cb 4145/* Return a declaration like DDECL except that its DECL_ATTRIBUTES
0f41302f 4146 is ATTRIBUTE. */
1a2927d2
RK
4147
4148tree
46c5ad27 4149build_decl_attribute_variant (tree ddecl, tree attribute)
1a2927d2 4150{
91d231cb 4151 DECL_ATTRIBUTES (ddecl) = attribute;
1a2927d2
RK
4152 return ddecl;
4153}
4154
caf29de7
JH
4155/* Borrowed from hashtab.c iterative_hash implementation. */
4156#define mix(a,b,c) \
4157{ \
4158 a -= b; a -= c; a ^= (c>>13); \
4159 b -= c; b -= a; b ^= (a<< 8); \
4160 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4161 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4162 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4163 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4164 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4165 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4166 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4167}
4168
4169
4170/* Produce good hash value combining VAL and VAL2. */
c9145754 4171hashval_t
caf29de7
JH
4172iterative_hash_hashval_t (hashval_t val, hashval_t val2)
4173{
4174 /* the golden ratio; an arbitrary value. */
4175 hashval_t a = 0x9e3779b9;
4176
4177 mix (a, val, val2);
4178 return val2;
4179}
4180
caf29de7 4181/* Produce good hash value combining VAL and VAL2. */
8bc88f25 4182hashval_t
caf29de7
JH
4183iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
4184{
4185 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
4186 return iterative_hash_hashval_t (val, val2);
4187 else
4188 {
4189 hashval_t a = (hashval_t) val;
4190 /* Avoid warnings about shifting of more than the width of the type on
4191 hosts that won't execute this path. */
4192 int zero = 0;
4193 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
4194 mix (a, b, val2);
4195 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
4196 {
4197 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
4198 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
4199 mix (a, b, val2);
4200 }
4201 return val2;
4202 }
4203}
4204
91e97eb8 4205/* Return a type like TTYPE except that its TYPE_ATTRIBUTE
ca58211b 4206 is ATTRIBUTE and its qualifiers are QUALS.
91e97eb8 4207
f8a89236 4208 Record such modified types already made so we don't make duplicates. */
91e97eb8 4209
040c6d51 4210tree
ca58211b 4211build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
91e97eb8 4212{
3b03c671 4213 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
91e97eb8 4214 {
fd917e0d 4215 hashval_t hashcode = 0;
91e97eb8 4216 tree ntype;
fd917e0d 4217 enum tree_code code = TREE_CODE (ttype);
91e97eb8 4218
4009f2e7
JM
4219 /* Building a distinct copy of a tagged type is inappropriate; it
4220 causes breakage in code that expects there to be a one-to-one
4221 relationship between a struct and its fields.
4222 build_duplicate_type is another solution (as used in
4223 handle_transparent_union_attribute), but that doesn't play well
4224 with the stronger C++ type identity model. */
4225 if (TREE_CODE (ttype) == RECORD_TYPE
4226 || TREE_CODE (ttype) == UNION_TYPE
4227 || TREE_CODE (ttype) == QUAL_UNION_TYPE
4228 || TREE_CODE (ttype) == ENUMERAL_TYPE)
4229 {
4230 warning (OPT_Wattributes,
4231 "ignoring attributes applied to %qT after definition",
4232 TYPE_MAIN_VARIANT (ttype));
4233 return build_qualified_type (ttype, quals);
4234 }
91e97eb8 4235
9c880618 4236 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4009f2e7 4237 ntype = build_distinct_type_copy (ttype);
91e97eb8 4238
4009f2e7 4239 TYPE_ATTRIBUTES (ntype) = attribute;
91e97eb8 4240
fd917e0d
JM
4241 hashcode = iterative_hash_object (code, hashcode);
4242 if (TREE_TYPE (ntype))
4243 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
4244 hashcode);
4245 hashcode = attribute_hash_list (attribute, hashcode);
91e97eb8
RK
4246
4247 switch (TREE_CODE (ntype))
dc478a5d 4248 {
e9a25f70 4249 case FUNCTION_TYPE:
fd917e0d 4250 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
e9a25f70
JL
4251 break;
4252 case ARRAY_TYPE:
2ae7b972
RH
4253 if (TYPE_DOMAIN (ntype))
4254 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
4255 hashcode);
e9a25f70
JL
4256 break;
4257 case INTEGER_TYPE:
fd917e0d
JM
4258 hashcode = iterative_hash_object
4259 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
4260 hashcode = iterative_hash_object
4261 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
e9a25f70
JL
4262 break;
4263 case REAL_TYPE:
325217ed 4264 case FIXED_POINT_TYPE:
fd917e0d
JM
4265 {
4266 unsigned int precision = TYPE_PRECISION (ntype);
4267 hashcode = iterative_hash_object (precision, hashcode);
4268 }
e9a25f70
JL
4269 break;
4270 default:
4271 break;
dc478a5d 4272 }
91e97eb8
RK
4273
4274 ntype = type_hash_canon (hashcode, ntype);
06d40de8
DG
4275
4276 /* If the target-dependent attributes make NTYPE different from
4277 its canonical type, we will need to use structural equality
9c880618 4278 checks for this type. */
31fa4998
DG
4279 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4280 || !targetm.comp_type_attributes (ntype, ttype))
06d40de8 4281 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
9c880618 4282 else if (TYPE_CANONICAL (ntype) == ntype)
31fa4998 4283 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
06d40de8 4284
ca58211b 4285 ttype = build_qualified_type (ntype, quals);
91e97eb8 4286 }
42a89d2d
JJ
4287 else if (TYPE_QUALS (ttype) != quals)
4288 ttype = build_qualified_type (ttype, quals);
91e97eb8
RK
4289
4290 return ttype;
4291}
1a2927d2 4292
e5410ba7 4293
ca58211b
PB
4294/* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4295 is ATTRIBUTE.
4296
4297 Record such modified types already made so we don't make duplicates. */
4298
4299tree
4300build_type_attribute_variant (tree ttype, tree attribute)
4301{
4302 return build_type_attribute_qual_variant (ttype, attribute,
4303 TYPE_QUALS (ttype));
4304}
4305
d7f09764 4306
7ef5e86c
EB
4307/* Reset the expression *EXPR_P, a size or position.
4308
4309 ??? We could reset all non-constant sizes or positions. But it's cheap
4310 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4311
4312 We need to reset self-referential sizes or positions because they cannot
4313 be gimplified and thus can contain a CALL_EXPR after the gimplification
4314 is finished, which will run afoul of LTO streaming. And they need to be
4315 reset to something essentially dummy but not constant, so as to preserve
4316 the properties of the object they are attached to. */
4317
4318static inline void
4319free_lang_data_in_one_sizepos (tree *expr_p)
4320{
4321 tree expr = *expr_p;
4322 if (CONTAINS_PLACEHOLDER_P (expr))
4323 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
4324}
4325
4326
d7f09764
DN
4327/* Reset all the fields in a binfo node BINFO. We only keep
4328 BINFO_VIRTUALS, which is used by gimple_fold_obj_type_ref. */
4329
4330static void
4331free_lang_data_in_binfo (tree binfo)
4332{
4333 unsigned i;
4334 tree t;
4335
4336 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
4337
d7f09764 4338 BINFO_VTABLE (binfo) = NULL_TREE;
d7f09764
DN
4339 BINFO_BASE_ACCESSES (binfo) = NULL;
4340 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4341 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
d7f09764 4342
ac47786e 4343 FOR_EACH_VEC_ELT (tree, BINFO_BASE_BINFOS (binfo), i, t)
d7f09764
DN
4344 free_lang_data_in_binfo (t);
4345}
4346
4347
4537ec0c
DN
4348/* Reset all language specific information still present in TYPE. */
4349
4350static void
4351free_lang_data_in_type (tree type)
4352{
4353 gcc_assert (TYPE_P (type));
4354
4537ec0c
DN
4355 /* Give the FE a chance to remove its own data first. */
4356 lang_hooks.free_lang_data (type);
4357
4358 TREE_LANG_FLAG_0 (type) = 0;
4359 TREE_LANG_FLAG_1 (type) = 0;
4360 TREE_LANG_FLAG_2 (type) = 0;
4361 TREE_LANG_FLAG_3 (type) = 0;
4362 TREE_LANG_FLAG_4 (type) = 0;
4363 TREE_LANG_FLAG_5 (type) = 0;
4364 TREE_LANG_FLAG_6 (type) = 0;
4365
4366 if (TREE_CODE (type) == FUNCTION_TYPE)
4367 {
4368 /* Remove the const and volatile qualifiers from arguments. The
4369 C++ front end removes them, but the C front end does not,
4370 leading to false ODR violation errors when merging two
4371 instances of the same function signature compiled by
4372 different front ends. */
4373 tree p;
4374
4375 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4376 {
4377 tree arg_type = TREE_VALUE (p);
4378
4379 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4380 {
4381 int quals = TYPE_QUALS (arg_type)
4382 & ~TYPE_QUAL_CONST
4383 & ~TYPE_QUAL_VOLATILE;
4384 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4385 free_lang_data_in_type (TREE_VALUE (p));
4386 }
4387 }
4388 }
b8698a0f 4389
4537ec0c
DN
4390 /* Remove members that are not actually FIELD_DECLs from the field
4391 list of an aggregate. These occur in C++. */
d7f09764 4392 if (RECORD_OR_UNION_TYPE_P (type))
4537ec0c
DN
4393 {
4394 tree prev, member;
4395
4396 /* Note that TYPE_FIELDS can be shared across distinct
4397 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4398 to be removed, we cannot set its TREE_CHAIN to NULL.
4399 Otherwise, we would not be able to find all the other fields
4400 in the other instances of this TREE_TYPE.
b8698a0f 4401
4537ec0c
DN
4402 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4403 prev = NULL_TREE;
4404 member = TYPE_FIELDS (type);
4405 while (member)
4406 {
4407 if (TREE_CODE (member) == FIELD_DECL)
4408 {
4409 if (prev)
4410 TREE_CHAIN (prev) = member;
4411 else
4412 TYPE_FIELDS (type) = member;
4413 prev = member;
4414 }
4415
4416 member = TREE_CHAIN (member);
4417 }
4418
4419 if (prev)
4420 TREE_CHAIN (prev) = NULL_TREE;
4421 else
4422 TYPE_FIELDS (type) = NULL_TREE;
4423
4424 TYPE_METHODS (type) = NULL_TREE;
4425 if (TYPE_BINFO (type))
d7f09764 4426 free_lang_data_in_binfo (TYPE_BINFO (type));
4537ec0c
DN
4427 }
4428 else
4429 {
4430 /* For non-aggregate types, clear out the language slot (which
4431 overloads TYPE_BINFO). */
4432 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
7ef5e86c
EB
4433
4434 if (INTEGRAL_TYPE_P (type)
4435 || SCALAR_FLOAT_TYPE_P (type)
4436 || FIXED_POINT_TYPE_P (type))
4437 {
4438 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
4439 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
4440 }
4537ec0c
DN
4441 }
4442
7ef5e86c
EB
4443 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
4444 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
4445
1ae3075b
RG
4446 if (debug_info_level < DINFO_LEVEL_TERSE
4447 || (TYPE_CONTEXT (type)
4448 && TREE_CODE (TYPE_CONTEXT (type)) != FUNCTION_DECL
4449 && TREE_CODE (TYPE_CONTEXT (type)) != NAMESPACE_DECL))
4450 TYPE_CONTEXT (type) = NULL_TREE;
4451
2a71eb48
RG
4452 if (debug_info_level < DINFO_LEVEL_TERSE)
4453 TYPE_STUB_DECL (type) = NULL_TREE;
4537ec0c
DN
4454}
4455
4456
4457/* Return true if DECL may need an assembler name to be set. */
4458
4459static inline bool
4460need_assembler_name_p (tree decl)
4461{
4462 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4463 if (TREE_CODE (decl) != FUNCTION_DECL
4464 && TREE_CODE (decl) != VAR_DECL)
4465 return false;
4466
4467 /* If DECL already has its assembler name set, it does not need a
4468 new one. */
4469 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
4470 || DECL_ASSEMBLER_NAME_SET_P (decl))
4471 return false;
4472
2bcbee3a
RG
4473 /* Abstract decls do not need an assembler name. */
4474 if (DECL_ABSTRACT (decl))
4475 return false;
4476
4537ec0c
DN
4477 /* For VAR_DECLs, only static, public and external symbols need an
4478 assembler name. */
4479 if (TREE_CODE (decl) == VAR_DECL
4480 && !TREE_STATIC (decl)
4481 && !TREE_PUBLIC (decl)
4482 && !DECL_EXTERNAL (decl))
4483 return false;
4484
d7f09764
DN
4485 if (TREE_CODE (decl) == FUNCTION_DECL)
4486 {
4487 /* Do not set assembler name on builtins. Allow RTL expansion to
4488 decide whether to expand inline or via a regular call. */
4489 if (DECL_BUILT_IN (decl)
4490 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
4491 return false;
4537ec0c 4492
d7f09764 4493 /* Functions represented in the callgraph need an assembler name. */
986ad133 4494 if (cgraph_get_node (decl) != NULL)
d7f09764
DN
4495 return true;
4496
4497 /* Unused and not public functions don't need an assembler name. */
4498 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
4499 return false;
4500 }
4537ec0c
DN
4501
4502 return true;
4503}
4504
4505
4537ec0c
DN
4506/* Reset all language specific information still present in symbol
4507 DECL. */
4508
4509static void
4510free_lang_data_in_decl (tree decl)
4511{
4512 gcc_assert (DECL_P (decl));
4513
4514 /* Give the FE a chance to remove its own data first. */
4515 lang_hooks.free_lang_data (decl);
4516
4517 TREE_LANG_FLAG_0 (decl) = 0;
4518 TREE_LANG_FLAG_1 (decl) = 0;
4519 TREE_LANG_FLAG_2 (decl) = 0;
4520 TREE_LANG_FLAG_3 (decl) = 0;
4521 TREE_LANG_FLAG_4 (decl) = 0;
4522 TREE_LANG_FLAG_5 (decl) = 0;
4523 TREE_LANG_FLAG_6 (decl) = 0;
4524
4525 /* Identifiers need not have a type. */
4526 if (DECL_NAME (decl))
4527 TREE_TYPE (DECL_NAME (decl)) = NULL_TREE;
4528
7ef5e86c
EB
4529 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
4530 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
4531 if (TREE_CODE (decl) == FIELD_DECL)
4532 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
4537ec0c 4533
2a71eb48
RG
4534 /* DECL_FCONTEXT is only used for debug info generation. */
4535 if (TREE_CODE (decl) == FIELD_DECL
4536 && debug_info_level < DINFO_LEVEL_TERSE)
4537 DECL_FCONTEXT (decl) = NULL_TREE;
23503efc 4538
2a71eb48 4539 if (TREE_CODE (decl) == FUNCTION_DECL)
4537ec0c
DN
4540 {
4541 if (gimple_has_body_p (decl))
4542 {
4543 tree t;
4537ec0c
DN
4544
4545 /* If DECL has a gimple body, then the context for its
4546 arguments must be DECL. Otherwise, it doesn't really
4547 matter, as we will not be emitting any code for DECL. In
4548 general, there may be other instances of DECL created by
4549 the front end and since PARM_DECLs are generally shared,
4550 their DECL_CONTEXT changes as the replicas of DECL are
4551 created. The only time where DECL_CONTEXT is important
4552 is for the FUNCTION_DECLs that have a gimple body (since
4553 the PARM_DECL will be used in the function's body). */
4554 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
4555 DECL_CONTEXT (t) = decl;
4537ec0c
DN
4556 }
4557
4558 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4559 At this point, it is not needed anymore. */
4560 DECL_SAVED_TREE (decl) = NULL_TREE;
e20efbfb
RG
4561
4562 /* Clear the abstract origin if it refers to a method. Otherwise
4563 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
4564 origin will not be output correctly. */
4565 if (DECL_ABSTRACT_ORIGIN (decl)
4566 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
4567 && RECORD_OR_UNION_TYPE_P
4568 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
4569 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
4537ec0c
DN
4570 }
4571 else if (TREE_CODE (decl) == VAR_DECL)
4572 {
638fd1e5
RG
4573 if ((DECL_EXTERNAL (decl)
4574 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
4575 || (decl_function_context (decl) && !TREE_STATIC (decl)))
4537ec0c
DN
4576 DECL_INITIAL (decl) = NULL_TREE;
4577 }
4578 else if (TREE_CODE (decl) == TYPE_DECL)
bd39cb52 4579 DECL_INITIAL (decl) = NULL_TREE;
4537ec0c
DN
4580}
4581
4582
4583/* Data used when collecting DECLs and TYPEs for language data removal. */
4584
4585struct free_lang_data_d
4586{
c7a3980a
RG
4587 /* Worklist to avoid excessive recursion. */
4588 VEC(tree,heap) *worklist;
4589
4537ec0c
DN
4590 /* Set of traversed objects. Used to avoid duplicate visits. */
4591 struct pointer_set_t *pset;
4592
4593 /* Array of symbols to process with free_lang_data_in_decl. */
4594 VEC(tree,heap) *decls;
4595
4596 /* Array of types to process with free_lang_data_in_type. */
4597 VEC(tree,heap) *types;
4598};
4599
4600
4601/* Save all language fields needed to generate proper debug information
4602 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4603
4604static void
4605save_debug_info_for_decl (tree t)
4606{
4607 /*struct saved_debug_info_d *sdi;*/
4608
4609 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
4610
4611 /* FIXME. Partial implementation for saving debug info removed. */
4612}
4613
4614
4615/* Save all language fields needed to generate proper debug information
4616 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4617
4618static void
4619save_debug_info_for_type (tree t)
4620{
4621 /*struct saved_debug_info_d *sdi;*/
4622
4623 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
4624
4625 /* FIXME. Partial implementation for saving debug info removed. */
4626}
4627
4628
4629/* Add type or decl T to one of the list of tree nodes that need their
4630 language data removed. The lists are held inside FLD. */
4631
4632static void
4633add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
4634{
4635 if (DECL_P (t))
4636 {
4637 VEC_safe_push (tree, heap, fld->decls, t);
4638 if (debug_info_level > DINFO_LEVEL_TERSE)
4639 save_debug_info_for_decl (t);
4640 }
4641 else if (TYPE_P (t))
4642 {
4643 VEC_safe_push (tree, heap, fld->types, t);
4644 if (debug_info_level > DINFO_LEVEL_TERSE)
4645 save_debug_info_for_type (t);
4646 }
4647 else
4648 gcc_unreachable ();
4649}
4650
d7f09764
DN
4651/* Push tree node T into FLD->WORKLIST. */
4652
4653static inline void
4654fld_worklist_push (tree t, struct free_lang_data_d *fld)
4655{
4656 if (t && !is_lang_specific (t) && !pointer_set_contains (fld->pset, t))
4657 VEC_safe_push (tree, heap, fld->worklist, (t));
4658}
4659
4537ec0c
DN
4660
4661/* Operand callback helper for free_lang_data_in_node. *TP is the
4662 subtree operand being considered. */
4663
4664static tree
d7f09764 4665find_decls_types_r (tree *tp, int *ws, void *data)
4537ec0c
DN
4666{
4667 tree t = *tp;
4668 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
4669
c7a3980a
RG
4670 if (TREE_CODE (t) == TREE_LIST)
4671 return NULL_TREE;
4672
d7f09764
DN
4673 /* Language specific nodes will be removed, so there is no need
4674 to gather anything under them. */
4675 if (is_lang_specific (t))
4676 {
4677 *ws = 0;
4678 return NULL_TREE;
4679 }
4680
4537ec0c
DN
4681 if (DECL_P (t))
4682 {
4683 /* Note that walk_tree does not traverse every possible field in
4684 decls, so we have to do our own traversals here. */
4685 add_tree_to_fld_list (t, fld);
4686
d7f09764
DN
4687 fld_worklist_push (DECL_NAME (t), fld);
4688 fld_worklist_push (DECL_CONTEXT (t), fld);
4689 fld_worklist_push (DECL_SIZE (t), fld);
4690 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
4691
4692 /* We are going to remove everything under DECL_INITIAL for
4693 TYPE_DECLs. No point walking them. */
4694 if (TREE_CODE (t) != TYPE_DECL)
4695 fld_worklist_push (DECL_INITIAL (t), fld);
4696
4697 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
4698 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
4537ec0c
DN
4699
4700 if (TREE_CODE (t) == FUNCTION_DECL)
4701 {
d7f09764
DN
4702 fld_worklist_push (DECL_ARGUMENTS (t), fld);
4703 fld_worklist_push (DECL_RESULT (t), fld);
4537ec0c
DN
4704 }
4705 else if (TREE_CODE (t) == TYPE_DECL)
4706 {
d7f09764
DN
4707 fld_worklist_push (DECL_ARGUMENT_FLD (t), fld);
4708 fld_worklist_push (DECL_VINDEX (t), fld);
4537ec0c
DN
4709 }
4710 else if (TREE_CODE (t) == FIELD_DECL)
4711 {
d7f09764
DN
4712 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
4713 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
4714 fld_worklist_push (DECL_QUALIFIER (t), fld);
4715 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
4716 fld_worklist_push (DECL_FCONTEXT (t), fld);
4537ec0c
DN
4717 }
4718 else if (TREE_CODE (t) == VAR_DECL)
4719 {
d7f09764
DN
4720 fld_worklist_push (DECL_SECTION_NAME (t), fld);
4721 fld_worklist_push (DECL_COMDAT_GROUP (t), fld);
4537ec0c 4722 }
c7a3980a 4723
7ef5e86c
EB
4724 if ((TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
4725 && DECL_HAS_VALUE_EXPR_P (t))
4726 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
4727
60f6be5a
RG
4728 if (TREE_CODE (t) != FIELD_DECL
4729 && TREE_CODE (t) != TYPE_DECL)
d7f09764 4730 fld_worklist_push (TREE_CHAIN (t), fld);
c7a3980a 4731 *ws = 0;
4537ec0c
DN
4732 }
4733 else if (TYPE_P (t))
4734 {
4735 /* Note that walk_tree does not traverse every possible field in
4736 types, so we have to do our own traversals here. */
4737 add_tree_to_fld_list (t, fld);
4738
d7f09764
DN
4739 if (!RECORD_OR_UNION_TYPE_P (t))
4740 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
4741 fld_worklist_push (TYPE_SIZE (t), fld);
4742 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
4743 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
4744 fld_worklist_push (TYPE_POINTER_TO (t), fld);
4745 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
4746 fld_worklist_push (TYPE_NAME (t), fld);
60f6be5a
RG
4747 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
4748 them and thus do not and want not to reach unused pointer types
4749 this way. */
4750 if (!POINTER_TYPE_P (t))
4751 fld_worklist_push (TYPE_MINVAL (t), fld);
d7f09764
DN
4752 if (!RECORD_OR_UNION_TYPE_P (t))
4753 fld_worklist_push (TYPE_MAXVAL (t), fld);
4754 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
60f6be5a
RG
4755 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
4756 do not and want not to reach unused variants this way. */
d7f09764 4757 fld_worklist_push (TYPE_CONTEXT (t), fld);
60f6be5a
RG
4758 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
4759 and want not to reach unused types this way. */
d7f09764
DN
4760
4761 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
c7a3980a
RG
4762 {
4763 unsigned i;
4764 tree tem;
4765 for (i = 0; VEC_iterate (tree, BINFO_BASE_BINFOS (TYPE_BINFO (t)),
4766 i, tem); ++i)
d7f09764
DN
4767 fld_worklist_push (TREE_TYPE (tem), fld);
4768 tem = BINFO_VIRTUALS (TYPE_BINFO (t));
22dfb60e
RG
4769 if (tem
4770 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
4771 && TREE_CODE (tem) == TREE_LIST)
4772 do
4773 {
4774 fld_worklist_push (TREE_VALUE (tem), fld);
4775 tem = TREE_CHAIN (tem);
4776 }
4777 while (tem);
d7f09764
DN
4778 }
4779 if (RECORD_OR_UNION_TYPE_P (t))
4780 {
4781 tree tem;
4782 /* Push all TYPE_FIELDS - there can be interleaving interesting
4783 and non-interesting things. */
4784 tem = TYPE_FIELDS (t);
4785 while (tem)
4786 {
4787 if (TREE_CODE (tem) == FIELD_DECL)
4788 fld_worklist_push (tem, fld);
4789 tem = TREE_CHAIN (tem);
4790 }
c7a3980a 4791 }
4537ec0c 4792
d7f09764 4793 fld_worklist_push (TREE_CHAIN (t), fld);
c7a3980a 4794 *ws = 0;
4537ec0c 4795 }
817c2996
RG
4796 else if (TREE_CODE (t) == BLOCK)
4797 {
4798 tree tem;
4799 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
4800 fld_worklist_push (tem, fld);
4801 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
4802 fld_worklist_push (tem, fld);
4803 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
4804 }
4537ec0c 4805
d7f09764 4806 fld_worklist_push (TREE_TYPE (t), fld);
c7a3980a 4807
4537ec0c
DN
4808 return NULL_TREE;
4809}
4810
c7a3980a
RG
4811
4812/* Find decls and types in T. */
4813
4814static void
4815find_decls_types (tree t, struct free_lang_data_d *fld)
4816{
4817 while (1)
4818 {
4819 if (!pointer_set_contains (fld->pset, t))
4820 walk_tree (&t, find_decls_types_r, fld, fld->pset);
4821 if (VEC_empty (tree, fld->worklist))
4822 break;
4823 t = VEC_pop (tree, fld->worklist);
4824 }
4825}
4537ec0c
DN
4826
4827/* Translate all the types in LIST with the corresponding runtime
4828 types. */
4829
4830static tree
4831get_eh_types_for_runtime (tree list)
4832{
4833 tree head, prev;
4834
4835 if (list == NULL_TREE)
4836 return NULL_TREE;
4837
4838 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4839 prev = head;
4840 list = TREE_CHAIN (list);
4841 while (list)
4842 {
4843 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4844 TREE_CHAIN (prev) = n;
4845 prev = TREE_CHAIN (prev);
4846 list = TREE_CHAIN (list);
4847 }
4848
4849 return head;
4850}
4851
4852
4853/* Find decls and types referenced in EH region R and store them in
4854 FLD->DECLS and FLD->TYPES. */
4855
4856static void
4857find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
4858{
1d65f45c 4859 switch (r->type)
4537ec0c 4860 {
1d65f45c
RH
4861 case ERT_CLEANUP:
4862 break;
4863
4864 case ERT_TRY:
4865 {
4866 eh_catch c;
4867
4868 /* The types referenced in each catch must first be changed to the
4869 EH types used at runtime. This removes references to FE types
4870 in the region. */
4871 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
4872 {
4873 c->type_list = get_eh_types_for_runtime (c->type_list);
4874 walk_tree (&c->type_list, find_decls_types_r, fld, fld->pset);
4875 }
4876 }
4877 break;
4878
4879 case ERT_ALLOWED_EXCEPTIONS:
4880 r->u.allowed.type_list
4881 = get_eh_types_for_runtime (r->u.allowed.type_list);
4882 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, fld->pset);
4883 break;
4884
4885 case ERT_MUST_NOT_THROW:
4886 walk_tree (&r->u.must_not_throw.failure_decl,
4887 find_decls_types_r, fld, fld->pset);
4888 break;
4537ec0c
DN
4889 }
4890}
4891
4892
4893/* Find decls and types referenced in cgraph node N and store them in
4894 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4895 look for *every* kind of DECL and TYPE node reachable from N,
4896 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4897 NAMESPACE_DECLs, etc). */
4898
4899static void
4900find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
4901{
4902 basic_block bb;
4903 struct function *fn;
c021f10b 4904 unsigned ix;
4537ec0c
DN
4905 tree t;
4906
c7a3980a 4907 find_decls_types (n->decl, fld);
4537ec0c
DN
4908
4909 if (!gimple_has_body_p (n->decl))
4910 return;
4911
4912 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
4913
4914 fn = DECL_STRUCT_FUNCTION (n->decl);
4915
4916 /* Traverse locals. */
c021f10b
NF
4917 FOR_EACH_LOCAL_DECL (fn, ix, t)
4918 find_decls_types (t, fld);
4537ec0c
DN
4919
4920 /* Traverse EH regions in FN. */
1d65f45c
RH
4921 {
4922 eh_region r;
4923 FOR_ALL_EH_REGION_FN (r, fn)
4924 find_decls_types_in_eh_region (r, fld);
4925 }
4537ec0c
DN
4926
4927 /* Traverse every statement in FN. */
4928 FOR_EACH_BB_FN (bb, fn)
4929 {
4930 gimple_stmt_iterator si;
4931 unsigned i;
4932
4933 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
4934 {
4935 gimple phi = gsi_stmt (si);
4936
4937 for (i = 0; i < gimple_phi_num_args (phi); i++)
4938 {
4939 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
c7a3980a 4940 find_decls_types (*arg_p, fld);
4537ec0c
DN
4941 }
4942 }
4943
4944 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
4945 {
4946 gimple stmt = gsi_stmt (si);
4947
4948 for (i = 0; i < gimple_num_ops (stmt); i++)
4949 {
c7a3980a
RG
4950 tree arg = gimple_op (stmt, i);
4951 find_decls_types (arg, fld);
4537ec0c
DN
4952 }
4953 }
4954 }
4955}
4956
4957
4958/* Find decls and types referenced in varpool node N and store them in
4959 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4960 look for *every* kind of DECL and TYPE node reachable from N,
4961 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4962 NAMESPACE_DECLs, etc). */
4963
4964static void
4965find_decls_types_in_var (struct varpool_node *v, struct free_lang_data_d *fld)
4966{
c7a3980a 4967 find_decls_types (v->decl, fld);
4537ec0c
DN
4968}
4969
0e0a1359
MJ
4970/* If T needs an assembler name, have one created for it. */
4971
4972void
4973assign_assembler_name_if_neeeded (tree t)
4974{
4975 if (need_assembler_name_p (t))
4976 {
4977 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
4978 diagnostics that use input_location to show locus
4979 information. The problem here is that, at this point,
4980 input_location is generally anchored to the end of the file
4981 (since the parser is long gone), so we don't have a good
4982 position to pin it to.
4983
4984 To alleviate this problem, this uses the location of T's
4985 declaration. Examples of this are
4986 testsuite/g++.dg/template/cond2.C and
4987 testsuite/g++.dg/template/pr35240.C. */
4988 location_t saved_location = input_location;
4989 input_location = DECL_SOURCE_LOCATION (t);
4990
4991 decl_assembler_name (t);
4992
4993 input_location = saved_location;
4994 }
4995}
4996
4537ec0c
DN
4997
4998/* Free language specific information for every operand and expression
4999 in every node of the call graph. This process operates in three stages:
5000
5001 1- Every callgraph node and varpool node is traversed looking for
5002 decls and types embedded in them. This is a more exhaustive
5003 search than that done by find_referenced_vars, because it will
5004 also collect individual fields, decls embedded in types, etc.
5005
5006 2- All the decls found are sent to free_lang_data_in_decl.
5007
5008 3- All the types found are sent to free_lang_data_in_type.
5009
5010 The ordering between decls and types is important because
5011 free_lang_data_in_decl sets assembler names, which includes
5012 mangling. So types cannot be freed up until assembler names have
5013 been set up. */
5014
5015static void
5016free_lang_data_in_cgraph (void)
5017{
5018 struct cgraph_node *n;
5019 struct varpool_node *v;
5020 struct free_lang_data_d fld;
5021 tree t;
5022 unsigned i;
5023 alias_pair *p;
5024
5025 /* Initialize sets and arrays to store referenced decls and types. */
5026 fld.pset = pointer_set_create ();
c7a3980a 5027 fld.worklist = NULL;
4537ec0c
DN
5028 fld.decls = VEC_alloc (tree, heap, 100);
5029 fld.types = VEC_alloc (tree, heap, 100);
5030
5031 /* Find decls and types in the body of every function in the callgraph. */
5032 for (n = cgraph_nodes; n; n = n->next)
5033 find_decls_types_in_node (n, &fld);
5034
ac47786e 5035 FOR_EACH_VEC_ELT (alias_pair, alias_pairs, i, p)
c7a3980a 5036 find_decls_types (p->decl, &fld);
4537ec0c
DN
5037
5038 /* Find decls and types in every varpool symbol. */
865e8e8e 5039 for (v = varpool_nodes; v; v = v->next)
4537ec0c
DN
5040 find_decls_types_in_var (v, &fld);
5041
5042 /* Set the assembler name on every decl found. We need to do this
5043 now because free_lang_data_in_decl will invalidate data needed
5044 for mangling. This breaks mangling on interdependent decls. */
ac47786e 5045 FOR_EACH_VEC_ELT (tree, fld.decls, i, t)
0e0a1359 5046 assign_assembler_name_if_neeeded (t);
4537ec0c
DN
5047
5048 /* Traverse every decl found freeing its language data. */
ac47786e 5049 FOR_EACH_VEC_ELT (tree, fld.decls, i, t)
4537ec0c
DN
5050 free_lang_data_in_decl (t);
5051
5052 /* Traverse every type found freeing its language data. */
ac47786e 5053 FOR_EACH_VEC_ELT (tree, fld.types, i, t)
4537ec0c
DN
5054 free_lang_data_in_type (t);
5055
5056 pointer_set_destroy (fld.pset);
c7a3980a 5057 VEC_free (tree, heap, fld.worklist);
4537ec0c
DN
5058 VEC_free (tree, heap, fld.decls);
5059 VEC_free (tree, heap, fld.types);
5060}
5061
5062
5063/* Free resources that are used by FE but are not needed once they are done. */
5064
5065static unsigned
5066free_lang_data (void)
5067{
14cf68d9
RG
5068 unsigned i;
5069
b66a1bac 5070 /* If we are the LTO frontend we have freed lang-specific data already. */
a881cad6
RG
5071 if (in_lto_p
5072 || !flag_generate_lto)
b66a1bac
RG
5073 return 0;
5074
14cf68d9
RG
5075 /* Allocate and assign alias sets to the standard integer types
5076 while the slots are still in the way the frontends generated them. */
5077 for (i = 0; i < itk_none; ++i)
5078 if (integer_types[i])
5079 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5080
4537ec0c
DN
5081 /* Traverse the IL resetting language specific information for
5082 operands, expressions, etc. */
5083 free_lang_data_in_cgraph ();
5084
5085 /* Create gimple variants for common types. */
5086 ptrdiff_type_node = integer_type_node;
5087 fileptr_type_node = ptr_type_node;
5088 if (TREE_CODE (boolean_type_node) != BOOLEAN_TYPE
5089 || (TYPE_MODE (boolean_type_node)
5090 != mode_for_size (BOOL_TYPE_SIZE, MODE_INT, 0))
5091 || TYPE_PRECISION (boolean_type_node) != 1
5092 || !TYPE_UNSIGNED (boolean_type_node))
5093 {
5094 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
5095 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
5096 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
5097 TYPE_PRECISION (boolean_type_node) = 1;
5098 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
5099 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
5100 }
5101
ccffb755
RG
5102 /* Unify char_type_node with its properly signed variant. */
5103 if (TYPE_UNSIGNED (char_type_node))
5104 unsigned_char_type_node = char_type_node;
5105 else
5106 signed_char_type_node = char_type_node;
5107
14cf68d9
RG
5108 /* Reset some langhooks. Do not reset types_compatible_p, it may
5109 still be used indirectly via the get_alias_set langhook. */
4537ec0c 5110 lang_hooks.callgraph.analyze_expr = NULL;
4537ec0c
DN
5111 lang_hooks.dwarf_name = lhd_dwarf_name;
5112 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5113 lang_hooks.set_decl_assembler_name = lhd_set_decl_assembler_name;
4537ec0c
DN
5114
5115 /* Reset diagnostic machinery. */
cf835838 5116 diagnostic_starter (global_dc) = default_tree_diagnostic_starter;
4537ec0c
DN
5117 diagnostic_finalizer (global_dc) = default_diagnostic_finalizer;
5118 diagnostic_format_decoder (global_dc) = default_tree_printer;
5119
5120 return 0;
5121}
5122
5123
b8698a0f 5124struct simple_ipa_opt_pass pass_ipa_free_lang_data =
4537ec0c
DN
5125{
5126 {
5127 SIMPLE_IPA_PASS,
e0a42b0f 5128 "*free_lang_data", /* name */
14cf68d9 5129 NULL, /* gate */
4537ec0c
DN
5130 free_lang_data, /* execute */
5131 NULL, /* sub */
5132 NULL, /* next */
5133 0, /* static_pass_number */
5134 TV_IPA_FREE_LANG_DATA, /* tv_id */
5135 0, /* properties_required */
5136 0, /* properties_provided */
5137 0, /* properties_destroyed */
5138 0, /* todo_flags_start */
ccffb755 5139 TODO_ggc_collect /* todo_flags_finish */
4537ec0c
DN
5140 }
5141};
5142
0e9e1e0a 5143/* Return nonzero if IDENT is a valid name for attribute ATTR,
2a3c15b5
DE
5144 or zero if not.
5145
5146 We try both `text' and `__text__', ATTR may be either one. */
5147/* ??? It might be a reasonable simplification to require ATTR to be only
5148 `text'. One might then also require attribute lists to be stored in
5149 their canonicalized form. */
5150
e5410ba7 5151static int
9566a759 5152is_attribute_with_length_p (const char *attr, int attr_len, const_tree ident)
2a3c15b5 5153{
e5410ba7 5154 int ident_len;
63ad61ed 5155 const char *p;
2a3c15b5
DE
5156
5157 if (TREE_CODE (ident) != IDENTIFIER_NODE)
5158 return 0;
b8698a0f 5159
2a3c15b5 5160 p = IDENTIFIER_POINTER (ident);
e5410ba7 5161 ident_len = IDENTIFIER_LENGTH (ident);
b8698a0f 5162
e5410ba7
AP
5163 if (ident_len == attr_len
5164 && strcmp (attr, p) == 0)
5165 return 1;
2a3c15b5
DE
5166
5167 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
5168 if (attr[0] == '_')
5169 {
1e128c5f
GB
5170 gcc_assert (attr[1] == '_');
5171 gcc_assert (attr[attr_len - 2] == '_');
5172 gcc_assert (attr[attr_len - 1] == '_');
2a3c15b5
DE
5173 if (ident_len == attr_len - 4
5174 && strncmp (attr + 2, p, attr_len - 4) == 0)
5175 return 1;
5176 }
5177 else
5178 {
5179 if (ident_len == attr_len + 4
5180 && p[0] == '_' && p[1] == '_'
5181 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5182 && strncmp (attr, p + 2, attr_len) == 0)
5183 return 1;
5184 }
5185
5186 return 0;
5187}
5188
e5410ba7
AP
5189/* Return nonzero if IDENT is a valid name for attribute ATTR,
5190 or zero if not.
5191
5192 We try both `text' and `__text__', ATTR may be either one. */
5193
5194int
9566a759 5195is_attribute_p (const char *attr, const_tree ident)
e5410ba7
AP
5196{
5197 return is_attribute_with_length_p (attr, strlen (attr), ident);
5198}
5199
2a3c15b5
DE
5200/* Given an attribute name and a list of attributes, return a pointer to the
5201 attribute's list element if the attribute is part of the list, or NULL_TREE
91d231cb 5202 if not found. If the attribute appears more than once, this only
ff7cc307
JM
5203 returns the first occurrence; the TREE_CHAIN of the return value should
5204 be passed back in if further occurrences are wanted. */
2a3c15b5
DE
5205
5206tree
46c5ad27 5207lookup_attribute (const char *attr_name, tree list)
2a3c15b5 5208{
75547801
KG
5209 tree l;
5210 size_t attr_len = strlen (attr_name);
2a3c15b5 5211
75547801
KG
5212 for (l = list; l; l = TREE_CHAIN (l))
5213 {
5214 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
5215 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
5216 return l;
5217 }
5218 return NULL_TREE;
2a3c15b5 5219}
f3209e2f 5220
b70f0f48
JM
5221/* Remove any instances of attribute ATTR_NAME in LIST and return the
5222 modified list. */
5223
5224tree
5225remove_attribute (const char *attr_name, tree list)
5226{
5227 tree *p;
5228 size_t attr_len = strlen (attr_name);
5229
5230 for (p = &list; *p; )
5231 {
5232 tree l = *p;
5233 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
5234 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
5235 *p = TREE_CHAIN (l);
5236 else
5237 p = &TREE_CHAIN (l);
5238 }
5239
5240 return list;
5241}
5242
f3209e2f
DE
5243/* Return an attribute list that is the union of a1 and a2. */
5244
5245tree
46c5ad27 5246merge_attributes (tree a1, tree a2)
f3209e2f
DE
5247{
5248 tree attributes;
5249
5250 /* Either one unset? Take the set one. */
5251
d4b60170 5252 if ((attributes = a1) == 0)
f3209e2f
DE
5253 attributes = a2;
5254
5255 /* One that completely contains the other? Take it. */
5256
d4b60170 5257 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
dc478a5d
KH
5258 {
5259 if (attribute_list_contained (a2, a1))
5260 attributes = a2;
5261 else
5262 {
5263 /* Pick the longest list, and hang on the other list. */
dc478a5d
KH
5264
5265 if (list_length (a1) < list_length (a2))
5266 attributes = a2, a2 = a1;
5267
5268 for (; a2 != 0; a2 = TREE_CHAIN (a2))
91d231cb
JM
5269 {
5270 tree a;
5271 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
5272 attributes);
5273 a != NULL_TREE;
5274 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
5275 TREE_CHAIN (a)))
5276 {
fcb99e7b
JJ
5277 if (TREE_VALUE (a) != NULL
5278 && TREE_CODE (TREE_VALUE (a)) == TREE_LIST
5279 && TREE_VALUE (a2) != NULL
5280 && TREE_CODE (TREE_VALUE (a2)) == TREE_LIST)
5281 {
5282 if (simple_cst_list_equal (TREE_VALUE (a),
5283 TREE_VALUE (a2)) == 1)
5284 break;
5285 }
5286 else if (simple_cst_equal (TREE_VALUE (a),
5287 TREE_VALUE (a2)) == 1)
91d231cb
JM
5288 break;
5289 }
5290 if (a == NULL_TREE)
5291 {
5292 a1 = copy_node (a2);
5293 TREE_CHAIN (a1) = attributes;
5294 attributes = a1;
5295 }
5296 }
dc478a5d
KH
5297 }
5298 }
f3209e2f
DE
5299 return attributes;
5300}
d9525bec
BK
5301
5302/* Given types T1 and T2, merge their attributes and return
672a6f42 5303 the result. */
d9525bec
BK
5304
5305tree
46c5ad27 5306merge_type_attributes (tree t1, tree t2)
d9525bec 5307{
d9525bec
BK
5308 return merge_attributes (TYPE_ATTRIBUTES (t1),
5309 TYPE_ATTRIBUTES (t2));
d9525bec
BK
5310}
5311
5312/* Given decls OLDDECL and NEWDECL, merge their attributes and return
5313 the result. */
5314
5315tree
46c5ad27 5316merge_decl_attributes (tree olddecl, tree newdecl)
d9525bec 5317{
91d231cb
JM
5318 return merge_attributes (DECL_ATTRIBUTES (olddecl),
5319 DECL_ATTRIBUTES (newdecl));
d9525bec 5320}
672a6f42 5321
b2ca3702 5322#if TARGET_DLLIMPORT_DECL_ATTRIBUTES
672a6f42
NB
5323
5324/* Specialization of merge_decl_attributes for various Windows targets.
5325
5326 This handles the following situation:
5327
5328 __declspec (dllimport) int foo;
5329 int foo;
5330
5331 The second instance of `foo' nullifies the dllimport. */
5332
5333tree
0a2aaacc 5334merge_dllimport_decl_attributes (tree old, tree new_tree)
672a6f42
NB
5335{
5336 tree a;
43d9ad1d 5337 int delete_dllimport_p = 1;
672a6f42
NB
5338
5339 /* What we need to do here is remove from `old' dllimport if it doesn't
5340 appear in `new'. dllimport behaves like extern: if a declaration is
5341 marked dllimport and a definition appears later, then the object
43d9ad1d
DS
5342 is not dllimport'd. We also remove a `new' dllimport if the old list
5343 contains dllexport: dllexport always overrides dllimport, regardless
b8698a0f 5344 of the order of declaration. */
0a2aaacc 5345 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
43d9ad1d 5346 delete_dllimport_p = 0;
0a2aaacc 5347 else if (DECL_DLLIMPORT_P (new_tree)
43d9ad1d 5348 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
b8698a0f 5349 {
0a2aaacc 5350 DECL_DLLIMPORT_P (new_tree) = 0;
43d9ad1d 5351 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
0a2aaacc 5352 "dllimport ignored", new_tree);
43d9ad1d 5353 }
0a2aaacc 5354 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
43d9ad1d 5355 {
fa10beec 5356 /* Warn about overriding a symbol that has already been used, e.g.:
43d9ad1d
DS
5357 extern int __attribute__ ((dllimport)) foo;
5358 int* bar () {return &foo;}
5359 int foo;
5360 */
5361 if (TREE_USED (old))
5362 {
5363 warning (0, "%q+D redeclared without dllimport attribute "
0a2aaacc 5364 "after being referenced with dll linkage", new_tree);
43d9ad1d
DS
5365 /* If we have used a variable's address with dllimport linkage,
5366 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
51eed280 5367 decl may already have had TREE_CONSTANT computed.
43d9ad1d
DS
5368 We still remove the attribute so that assembler code refers
5369 to '&foo rather than '_imp__foo'. */
5370 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
0a2aaacc 5371 DECL_DLLIMPORT_P (new_tree) = 1;
43d9ad1d
DS
5372 }
5373
5374 /* Let an inline definition silently override the external reference,
b8698a0f 5375 but otherwise warn about attribute inconsistency. */
0a2aaacc
KG
5376 else if (TREE_CODE (new_tree) == VAR_DECL
5377 || !DECL_DECLARED_INLINE_P (new_tree))
43d9ad1d 5378 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
0a2aaacc 5379 "previous dllimport ignored", new_tree);
43d9ad1d 5380 }
672a6f42
NB
5381 else
5382 delete_dllimport_p = 0;
5383
0a2aaacc 5384 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
672a6f42 5385
b8698a0f 5386 if (delete_dllimport_p)
672a6f42 5387 {
a01da83b 5388 tree prev, t;
b8698a0f
L
5389 const size_t attr_len = strlen ("dllimport");
5390
672a6f42
NB
5391 /* Scan the list for dllimport and delete it. */
5392 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
5393 {
43d9ad1d
DS
5394 if (is_attribute_with_length_p ("dllimport", attr_len,
5395 TREE_PURPOSE (t)))
672a6f42
NB
5396 {
5397 if (prev == NULL_TREE)
5398 a = TREE_CHAIN (a);
5399 else
5400 TREE_CHAIN (prev) = TREE_CHAIN (t);
5401 break;
5402 }
5403 }
5404 }
5405
5406 return a;
5407}
5408
b2ca3702
MM
5409/* Handle a "dllimport" or "dllexport" attribute; arguments as in
5410 struct attribute_spec.handler. */
5411
5412tree
5413handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
5414 bool *no_add_attrs)
5415{
5416 tree node = *pnode;
fe2978fb 5417 bool is_dllimport;
b2ca3702
MM
5418
5419 /* These attributes may apply to structure and union types being created,
5420 but otherwise should pass to the declaration involved. */
5421 if (!DECL_P (node))
5422 {
5423 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
5424 | (int) ATTR_FLAG_ARRAY_NEXT))
5425 {
5426 *no_add_attrs = true;
5427 return tree_cons (name, args, NULL_TREE);
5428 }
3a687f8b
MM
5429 if (TREE_CODE (node) == RECORD_TYPE
5430 || TREE_CODE (node) == UNION_TYPE)
5431 {
5432 node = TYPE_NAME (node);
5433 if (!node)
5434 return NULL_TREE;
5435 }
5436 else
b2ca3702 5437 {
4f1e4960
JM
5438 warning (OPT_Wattributes, "%qE attribute ignored",
5439 name);
b2ca3702 5440 *no_add_attrs = true;
3a687f8b 5441 return NULL_TREE;
b2ca3702 5442 }
b2ca3702
MM
5443 }
5444
09416794 5445 if (TREE_CODE (node) != FUNCTION_DECL
3a687f8b
MM
5446 && TREE_CODE (node) != VAR_DECL
5447 && TREE_CODE (node) != TYPE_DECL)
09416794
DS
5448 {
5449 *no_add_attrs = true;
4f1e4960
JM
5450 warning (OPT_Wattributes, "%qE attribute ignored",
5451 name);
09416794
DS
5452 return NULL_TREE;
5453 }
5454
dde75838
JM
5455 if (TREE_CODE (node) == TYPE_DECL
5456 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
5457 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
5458 {
5459 *no_add_attrs = true;
4f1e4960
JM
5460 warning (OPT_Wattributes, "%qE attribute ignored",
5461 name);
dde75838
JM
5462 return NULL_TREE;
5463 }
5464
fe2978fb
MM
5465 is_dllimport = is_attribute_p ("dllimport", name);
5466
b2ca3702
MM
5467 /* Report error on dllimport ambiguities seen now before they cause
5468 any damage. */
fe2978fb 5469 if (is_dllimport)
b2ca3702 5470 {
b8698a0f 5471 /* Honor any target-specific overrides. */
43d9ad1d
DS
5472 if (!targetm.valid_dllimport_attribute_p (node))
5473 *no_add_attrs = true;
5474
5475 else if (TREE_CODE (node) == FUNCTION_DECL
5476 && DECL_DECLARED_INLINE_P (node))
5477 {
5478 warning (OPT_Wattributes, "inline function %q+D declared as "
b8698a0f 5479 " dllimport: attribute ignored", node);
43d9ad1d
DS
5480 *no_add_attrs = true;
5481 }
b2ca3702 5482 /* Like MS, treat definition of dllimported variables and
43d9ad1d
DS
5483 non-inlined functions on declaration as syntax errors. */
5484 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
b2ca3702 5485 {
c85ce869 5486 error ("function %q+D definition is marked dllimport", node);
b2ca3702
MM
5487 *no_add_attrs = true;
5488 }
5489
43d9ad1d 5490 else if (TREE_CODE (node) == VAR_DECL)
b2ca3702
MM
5491 {
5492 if (DECL_INITIAL (node))
5493 {
c85ce869 5494 error ("variable %q+D definition is marked dllimport",
dee15844 5495 node);
b2ca3702
MM
5496 *no_add_attrs = true;
5497 }
5498
5499 /* `extern' needn't be specified with dllimport.
5500 Specify `extern' now and hope for the best. Sigh. */
5501 DECL_EXTERNAL (node) = 1;
5502 /* Also, implicitly give dllimport'd variables declared within
5503 a function global scope, unless declared static. */
5504 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
5505 TREE_PUBLIC (node) = 1;
5506 }
43d9ad1d
DS
5507
5508 if (*no_add_attrs == false)
5509 DECL_DLLIMPORT_P (node) = 1;
b2ca3702 5510 }
055df276 5511 else if (TREE_CODE (node) == FUNCTION_DECL
47ea1edf
DK
5512 && DECL_DECLARED_INLINE_P (node)
5513 && flag_keep_inline_dllexport)
fe2978fb
MM
5514 /* An exported function, even if inline, must be emitted. */
5515 DECL_EXTERNAL (node) = 0;
b2ca3702
MM
5516
5517 /* Report error if symbol is not accessible at global scope. */
5518 if (!TREE_PUBLIC (node)
5519 && (TREE_CODE (node) == VAR_DECL
5520 || TREE_CODE (node) == FUNCTION_DECL))
5521 {
dee15844 5522 error ("external linkage required for symbol %q+D because of "
4f1e4960 5523 "%qE attribute", node, name);
b2ca3702
MM
5524 *no_add_attrs = true;
5525 }
5526
3a687f8b
MM
5527 /* A dllexport'd entity must have default visibility so that other
5528 program units (shared libraries or the main executable) can see
5529 it. A dllimport'd entity must have default visibility so that
5530 the linker knows that undefined references within this program
5531 unit can be resolved by the dynamic linker. */
5532 if (!*no_add_attrs)
5533 {
5534 if (DECL_VISIBILITY_SPECIFIED (node)
5535 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
4f1e4960 5536 error ("%qE implies default visibility, but %qD has already "
b8698a0f 5537 "been declared with a different visibility",
4f1e4960 5538 name, node);
3a687f8b
MM
5539 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
5540 DECL_VISIBILITY_SPECIFIED (node) = 1;
5541 }
5542
b2ca3702
MM
5543 return NULL_TREE;
5544}
5545
672a6f42 5546#endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
91e97eb8 5547\f
3932261a
MM
5548/* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5549 of the various TYPE_QUAL values. */
c6a1db6c 5550
3932261a 5551static void
46c5ad27 5552set_type_quals (tree type, int type_quals)
3932261a
MM
5553{
5554 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5555 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5556 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
09e881c9 5557 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
3932261a 5558}
c6a1db6c 5559
1d4f5374 5560/* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
896c3aa3
JM
5561
5562bool
9566a759 5563check_qualified_type (const_tree cand, const_tree base, int type_quals)
896c3aa3
JM
5564{
5565 return (TYPE_QUALS (cand) == type_quals
5566 && TYPE_NAME (cand) == TYPE_NAME (base)
5567 /* Apparently this is needed for Objective-C. */
5568 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
be1ac4ec
RG
5569 /* Check alignment. */
5570 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5571 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5572 TYPE_ATTRIBUTES (base)));
5573}
5574
5575/* Returns true iff CAND is equivalent to BASE with ALIGN. */
5576
5577static bool
5578check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5579{
5580 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5581 && TYPE_NAME (cand) == TYPE_NAME (base)
5582 /* Apparently this is needed for Objective-C. */
5583 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5584 /* Check alignment. */
5585 && TYPE_ALIGN (cand) == align
896c3aa3
JM
5586 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5587 TYPE_ATTRIBUTES (base)));
5588}
5589
5101b304
MM
5590/* Return a version of the TYPE, qualified as indicated by the
5591 TYPE_QUALS, if one exists. If no qualified version exists yet,
5592 return NULL_TREE. */
c6a1db6c
RS
5593
5594tree
46c5ad27 5595get_qualified_type (tree type, int type_quals)
c6a1db6c 5596{
5101b304 5597 tree t;
dc478a5d 5598
896c3aa3
JM
5599 if (TYPE_QUALS (type) == type_quals)
5600 return type;
5601
e24fa534
JW
5602 /* Search the chain of variants to see if there is already one there just
5603 like the one we need to have. If so, use that existing one. We must
5604 preserve the TYPE_NAME, since there is code that depends on this. */
b217d7fe 5605 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
896c3aa3 5606 if (check_qualified_type (t, type, type_quals))
e24fa534 5607 return t;
c6a1db6c 5608
5101b304
MM
5609 return NULL_TREE;
5610}
5611
5612/* Like get_qualified_type, but creates the type if it does not
5613 exist. This function never returns NULL_TREE. */
5614
5615tree
46c5ad27 5616build_qualified_type (tree type, int type_quals)
5101b304
MM
5617{
5618 tree t;
5619
5620 /* See if we already have the appropriate qualified variant. */
5621 t = get_qualified_type (type, type_quals);
5622
5623 /* If not, build it. */
5624 if (!t)
5625 {
8dd16ecc 5626 t = build_variant_type_copy (type);
5101b304 5627 set_type_quals (t, type_quals);
06d40de8
DG
5628
5629 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5630 /* Propagate structural equality. */
5631 SET_TYPE_STRUCTURAL_EQUALITY (t);
5632 else if (TYPE_CANONICAL (type) != type)
5633 /* Build the underlying canonical type, since it is different
5634 from TYPE. */
5635 TYPE_CANONICAL (t) = build_qualified_type (TYPE_CANONICAL (type),
5636 type_quals);
5637 else
5638 /* T is its own canonical type. */
5639 TYPE_CANONICAL (t) = t;
b8698a0f 5640
5101b304
MM
5641 }
5642
c6a1db6c
RS
5643 return t;
5644}
b4ac57ab 5645
be1ac4ec
RG
5646/* Create a variant of type T with alignment ALIGN. */
5647
5648tree
5649build_aligned_type (tree type, unsigned int align)
5650{
5651 tree t;
5652
5653 if (TYPE_PACKED (type)
5654 || TYPE_ALIGN (type) == align)
5655 return type;
5656
5657 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5658 if (check_aligned_type (t, type, align))
5659 return t;
5660
5661 t = build_variant_type_copy (type);
5662 TYPE_ALIGN (t) = align;
5663
5664 return t;
5665}
5666
8dd16ecc 5667/* Create a new distinct copy of TYPE. The new type is made its own
06d40de8
DG
5668 MAIN_VARIANT. If TYPE requires structural equality checks, the
5669 resulting type requires structural equality checks; otherwise, its
5670 TYPE_CANONICAL points to itself. */
b4ac57ab
RS
5671
5672tree
8dd16ecc 5673build_distinct_type_copy (tree type)
b4ac57ab 5674{
8dd16ecc 5675 tree t = copy_node (type);
b8698a0f 5676
b4ac57ab
RS
5677 TYPE_POINTER_TO (t) = 0;
5678 TYPE_REFERENCE_TO (t) = 0;
5679
06d40de8
DG
5680 /* Set the canonical type either to a new equivalence class, or
5681 propagate the need for structural equality checks. */
5682 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5683 SET_TYPE_STRUCTURAL_EQUALITY (t);
5684 else
5685 TYPE_CANONICAL (t) = t;
5686
8dd16ecc
NS
5687 /* Make it its own variant. */
5688 TYPE_MAIN_VARIANT (t) = t;
5689 TYPE_NEXT_VARIANT (t) = 0;
e1f28918
ILT
5690
5691 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5692 whose TREE_TYPE is not t. This can also happen in the Ada
5693 frontend when using subtypes. */
093b203b 5694
8dd16ecc
NS
5695 return t;
5696}
5697
06d40de8
DG
5698/* Create a new variant of TYPE, equivalent but distinct. This is so
5699 the caller can modify it. TYPE_CANONICAL for the return type will
5700 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5701 are considered equal by the language itself (or that both types
5702 require structural equality checks). */
8dd16ecc
NS
5703
5704tree
5705build_variant_type_copy (tree type)
5706{
5707 tree t, m = TYPE_MAIN_VARIANT (type);
5708
5709 t = build_distinct_type_copy (type);
06d40de8
DG
5710
5711 /* Since we're building a variant, assume that it is a non-semantic
5712 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5713 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
b8698a0f 5714
8dd16ecc 5715 /* Add the new type to the chain of variants of TYPE. */
b4ac57ab
RS
5716 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
5717 TYPE_NEXT_VARIANT (m) = t;
8dd16ecc 5718 TYPE_MAIN_VARIANT (t) = m;
b4ac57ab 5719
b4ac57ab
RS
5720 return t;
5721}
c6a1db6c 5722\f
f991abd1
DB
5723/* Return true if the from tree in both tree maps are equal. */
5724
820cc88f 5725int
fc8600f9 5726tree_map_base_eq (const void *va, const void *vb)
f991abd1 5727{
3d9a9f94
KG
5728 const struct tree_map_base *const a = (const struct tree_map_base *) va,
5729 *const b = (const struct tree_map_base *) vb;
f991abd1
DB
5730 return (a->from == b->from);
5731}
5732
53e030f1 5733/* Hash a from tree in a tree_base_map. */
f991abd1 5734
820cc88f 5735unsigned int
fc8600f9 5736tree_map_base_hash (const void *item)
f991abd1 5737{
fc8600f9 5738 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
f991abd1
DB
5739}
5740
5741/* Return true if this tree map structure is marked for garbage collection
5742 purposes. We simply return true if the from tree is marked, so that this
5743 structure goes away when the from tree goes away. */
5744
820cc88f 5745int
fc8600f9 5746tree_map_base_marked_p (const void *p)
f991abd1 5747{
741ac903 5748 return ggc_marked_p (((const struct tree_map_base *) p)->from);
fc8600f9 5749}
f991abd1 5750
53e030f1
JJ
5751/* Hash a from tree in a tree_map. */
5752
fc8600f9
MM
5753unsigned int
5754tree_map_hash (const void *item)
5755{
5756 return (((const struct tree_map *) item)->hash);
f991abd1
DB
5757}
5758
53e030f1
JJ
5759/* Hash a from tree in a tree_decl_map. */
5760
5761unsigned int
5762tree_decl_map_hash (const void *item)
5763{
5764 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
5765}
5766
fc8600f9 5767/* Return the initialization priority for DECL. */
820cc88f 5768
fc8600f9
MM
5769priority_type
5770decl_init_priority_lookup (tree decl)
820cc88f 5771{
fc8600f9
MM
5772 struct tree_priority_map *h;
5773 struct tree_map_base in;
5774
5775 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
fc8600f9 5776 in.from = decl;
3d9a9f94 5777 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
fc8600f9 5778 return h ? h->init : DEFAULT_INIT_PRIORITY;
820cc88f
DB
5779}
5780
fc8600f9 5781/* Return the finalization priority for DECL. */
820cc88f 5782
fc8600f9
MM
5783priority_type
5784decl_fini_priority_lookup (tree decl)
820cc88f 5785{
fc8600f9
MM
5786 struct tree_priority_map *h;
5787 struct tree_map_base in;
5788
5789 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
fc8600f9 5790 in.from = decl;
3d9a9f94 5791 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
fc8600f9 5792 return h ? h->fini : DEFAULT_INIT_PRIORITY;
820cc88f
DB
5793}
5794
fc8600f9
MM
5795/* Return the initialization and finalization priority information for
5796 DECL. If there is no previous priority information, a freshly
5797 allocated structure is returned. */
820cc88f 5798
fc8600f9
MM
5799static struct tree_priority_map *
5800decl_priority_info (tree decl)
820cc88f 5801{
fc8600f9
MM
5802 struct tree_priority_map in;
5803 struct tree_priority_map *h;
5804 void **loc;
5805
5806 in.base.from = decl;
5807 loc = htab_find_slot (init_priority_for_decl, &in, INSERT);
3d9a9f94 5808 h = (struct tree_priority_map *) *loc;
fc8600f9
MM
5809 if (!h)
5810 {
a9429e29 5811 h = ggc_alloc_cleared_tree_priority_map ();
fc8600f9
MM
5812 *loc = h;
5813 h->base.from = decl;
5814 h->init = DEFAULT_INIT_PRIORITY;
5815 h->fini = DEFAULT_INIT_PRIORITY;
5816 }
820cc88f 5817
fc8600f9 5818 return h;
820cc88f 5819}
820cc88f 5820
fc8600f9
MM
5821/* Set the initialization priority for DECL to PRIORITY. */
5822
5823void
5824decl_init_priority_insert (tree decl, priority_type priority)
820cc88f 5825{
fc8600f9 5826 struct tree_priority_map *h;
820cc88f 5827
fc8600f9
MM
5828 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5829 h = decl_priority_info (decl);
5830 h->init = priority;
b8698a0f 5831}
820cc88f 5832
fc8600f9 5833/* Set the finalization priority for DECL to PRIORITY. */
820cc88f
DB
5834
5835void
fc8600f9 5836decl_fini_priority_insert (tree decl, priority_type priority)
820cc88f 5837{
fc8600f9 5838 struct tree_priority_map *h;
820cc88f 5839
fc8600f9
MM
5840 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5841 h = decl_priority_info (decl);
5842 h->fini = priority;
b8698a0f 5843}
820cc88f 5844
f991abd1
DB
5845/* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
5846
5847static void
5848print_debug_expr_statistics (void)
5849{
5850 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
5851 (long) htab_size (debug_expr_for_decl),
5852 (long) htab_elements (debug_expr_for_decl),
5853 htab_collisions (debug_expr_for_decl));
5854}
5855
833b3afe
DB
5856/* Print out the statistics for the DECL_VALUE_EXPR hash table. */
5857
5858static void
5859print_value_expr_statistics (void)
5860{
5861 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
5862 (long) htab_size (value_expr_for_decl),
5863 (long) htab_elements (value_expr_for_decl),
5864 htab_collisions (value_expr_for_decl));
5865}
0b494699 5866
f991abd1
DB
5867/* Lookup a debug expression for FROM, and return it if we find one. */
5868
b8698a0f 5869tree
f991abd1
DB
5870decl_debug_expr_lookup (tree from)
5871{
53e030f1 5872 struct tree_decl_map *h, in;
fc8600f9 5873 in.base.from = from;
f991abd1 5874
53e030f1
JJ
5875 h = (struct tree_decl_map *)
5876 htab_find_with_hash (debug_expr_for_decl, &in, DECL_UID (from));
f991abd1
DB
5877 if (h)
5878 return h->to;
5879 return NULL_TREE;
5880}
5881
5882/* Insert a mapping FROM->TO in the debug expression hashtable. */
5883
5884void
5885decl_debug_expr_insert (tree from, tree to)
5886{
53e030f1 5887 struct tree_decl_map *h;
f991abd1
DB
5888 void **loc;
5889
a9429e29 5890 h = ggc_alloc_tree_decl_map ();
fc8600f9 5891 h->base.from = from;
f991abd1 5892 h->to = to;
53e030f1
JJ
5893 loc = htab_find_slot_with_hash (debug_expr_for_decl, h, DECL_UID (from),
5894 INSERT);
5895 *(struct tree_decl_map **) loc = h;
b8698a0f 5896}
833b3afe
DB
5897
5898/* Lookup a value expression for FROM, and return it if we find one. */
5899
b8698a0f 5900tree
833b3afe
DB
5901decl_value_expr_lookup (tree from)
5902{
53e030f1 5903 struct tree_decl_map *h, in;
fc8600f9 5904 in.base.from = from;
833b3afe 5905
53e030f1
JJ
5906 h = (struct tree_decl_map *)
5907 htab_find_with_hash (value_expr_for_decl, &in, DECL_UID (from));
833b3afe
DB
5908 if (h)
5909 return h->to;
5910 return NULL_TREE;
5911}
5912
5913/* Insert a mapping FROM->TO in the value expression hashtable. */
5914
5915void
5916decl_value_expr_insert (tree from, tree to)
5917{
53e030f1 5918 struct tree_decl_map *h;
833b3afe
DB
5919 void **loc;
5920
a9429e29 5921 h = ggc_alloc_tree_decl_map ();
fc8600f9 5922 h->base.from = from;
833b3afe 5923 h->to = to;
53e030f1
JJ
5924 loc = htab_find_slot_with_hash (value_expr_for_decl, h, DECL_UID (from),
5925 INSERT);
5926 *(struct tree_decl_map **) loc = h;
833b3afe
DB
5927}
5928
c6a1db6c
RS
5929/* Hashing of types so that we don't make duplicates.
5930 The entry point is `type_hash_canon'. */
5931
c6a1db6c
RS
5932/* Compute a hash code for a list of types (chain of TREE_LIST nodes
5933 with types in the TREE_VALUE slots), by adding the hash codes
5934 of the individual types. */
5935
9566a759
KG
5936static unsigned int
5937type_hash_list (const_tree list, hashval_t hashcode)
c6a1db6c 5938{
9566a759 5939 const_tree tail;
d4b60170 5940
fd917e0d
JM
5941 for (tail = list; tail; tail = TREE_CHAIN (tail))
5942 if (TREE_VALUE (tail) != error_mark_node)
5943 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
5944 hashcode);
d4b60170 5945
c6a1db6c
RS
5946 return hashcode;
5947}
5948
d88f311b
ML
5949/* These are the Hashtable callback functions. */
5950
eb34af89 5951/* Returns true iff the types are equivalent. */
d88f311b
ML
5952
5953static int
46c5ad27 5954type_hash_eq (const void *va, const void *vb)
d88f311b 5955{
3d9a9f94
KG
5956 const struct type_hash *const a = (const struct type_hash *) va,
5957 *const b = (const struct type_hash *) vb;
eb34af89
RK
5958
5959 /* First test the things that are the same for all types. */
5960 if (a->hash != b->hash
5961 || TREE_CODE (a->type) != TREE_CODE (b->type)
5962 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
5963 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
5964 TYPE_ATTRIBUTES (b->type))
5965 || TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
9c880618 5966 || TYPE_MODE (a->type) != TYPE_MODE (b->type)
b8698a0f 5967 || (TREE_CODE (a->type) != COMPLEX_TYPE
9c880618 5968 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
eb34af89
RK
5969 return 0;
5970
5971 switch (TREE_CODE (a->type))
5972 {
5973 case VOID_TYPE:
5974 case COMPLEX_TYPE:
eb34af89
RK
5975 case POINTER_TYPE:
5976 case REFERENCE_TYPE:
5977 return 1;
5978
d70b8c3a
PB
5979 case VECTOR_TYPE:
5980 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
5981
eb34af89
RK
5982 case ENUMERAL_TYPE:
5983 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
5984 && !(TYPE_VALUES (a->type)
5985 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
5986 && TYPE_VALUES (b->type)
5987 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
5988 && type_list_equal (TYPE_VALUES (a->type),
5989 TYPE_VALUES (b->type))))
5990 return 0;
5991
5992 /* ... fall through ... */
5993
5994 case INTEGER_TYPE:
5995 case REAL_TYPE:
5996 case BOOLEAN_TYPE:
eb34af89
RK
5997 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
5998 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
5999 TYPE_MAX_VALUE (b->type)))
6000 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
614ed70a 6001 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
eb34af89
RK
6002 TYPE_MIN_VALUE (b->type))));
6003
325217ed
CF
6004 case FIXED_POINT_TYPE:
6005 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6006
eb34af89
RK
6007 case OFFSET_TYPE:
6008 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6009
6010 case METHOD_TYPE:
220e83ca
KT
6011 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6012 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6013 || (TYPE_ARG_TYPES (a->type)
6014 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6015 && TYPE_ARG_TYPES (b->type)
6016 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6017 && type_list_equal (TYPE_ARG_TYPES (a->type),
6018 TYPE_ARG_TYPES (b->type)))))
6019 break;
6020 return 0;
eb34af89 6021 case ARRAY_TYPE:
eb34af89
RK
6022 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
6023
6024 case RECORD_TYPE:
6025 case UNION_TYPE:
6026 case QUAL_UNION_TYPE:
6027 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6028 || (TYPE_FIELDS (a->type)
6029 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6030 && TYPE_FIELDS (b->type)
6031 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6032 && type_list_equal (TYPE_FIELDS (a->type),
6033 TYPE_FIELDS (b->type))));
6034
6035 case FUNCTION_TYPE:
2dff8956
JJ
6036 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6037 || (TYPE_ARG_TYPES (a->type)
6038 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6039 && TYPE_ARG_TYPES (b->type)
6040 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6041 && type_list_equal (TYPE_ARG_TYPES (a->type),
6042 TYPE_ARG_TYPES (b->type))))
6043 break;
6044 return 0;
eb34af89
RK
6045
6046 default:
6047 return 0;
6048 }
2dff8956
JJ
6049
6050 if (lang_hooks.types.type_hash_eq != NULL)
6051 return lang_hooks.types.type_hash_eq (a->type, b->type);
6052
6053 return 1;
d88f311b
ML
6054}
6055
6056/* Return the cached hash value. */
6057
fb7e6024 6058static hashval_t
46c5ad27 6059type_hash_hash (const void *item)
d88f311b 6060{
dc478a5d 6061 return ((const struct type_hash *) item)->hash;
d88f311b
ML
6062}
6063
c6a1db6c
RS
6064/* Look in the type hash table for a type isomorphic to TYPE.
6065 If one is found, return it. Otherwise return 0. */
6066
6067tree
fd917e0d 6068type_hash_lookup (hashval_t hashcode, tree type)
c6a1db6c 6069{
d88f311b 6070 struct type_hash *h, in;
da48638e
AH
6071
6072 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
dc478a5d 6073 must call that routine before comparing TYPE_ALIGNs. */
da48638e
AH
6074 layout_type (type);
6075
d88f311b
ML
6076 in.hash = hashcode;
6077 in.type = type;
d4b60170 6078
3d9a9f94
KG
6079 h = (struct type_hash *) htab_find_with_hash (type_hash_table, &in,
6080 hashcode);
d88f311b
ML
6081 if (h)
6082 return h->type;
6083 return NULL_TREE;
c6a1db6c
RS
6084}
6085
6086/* Add an entry to the type-hash-table
6087 for a type TYPE whose hash code is HASHCODE. */
6088
6089void
fd917e0d 6090type_hash_add (hashval_t hashcode, tree type)
c6a1db6c 6091{
d88f311b
ML
6092 struct type_hash *h;
6093 void **loc;
c6a1db6c 6094
a9429e29 6095 h = ggc_alloc_type_hash ();
d88f311b 6096 h->hash = hashcode;
c6a1db6c 6097 h->type = type;
f64bedbd 6098 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
b0d667cb 6099 *loc = (void *)h;
c6a1db6c
RS
6100}
6101
6102/* Given TYPE, and HASHCODE its hash code, return the canonical
6103 object for an identical type if one already exists.
7548281d 6104 Otherwise, return TYPE, and record it as the canonical object.
c6a1db6c
RS
6105
6106 To use this function, first create a type of the sort you want.
6107 Then compute its hash code from the fields of the type that
6108 make it different from other similar types.
7548281d 6109 Then call this function and use the value. */
c6a1db6c
RS
6110
6111tree
46c5ad27 6112type_hash_canon (unsigned int hashcode, tree type)
c6a1db6c
RS
6113{
6114 tree t1;
6115
7548281d
RK
6116 /* The hash table only contains main variants, so ensure that's what we're
6117 being passed. */
1e128c5f 6118 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7548281d 6119
4c160717
RK
6120 /* See if the type is in the hash table already. If so, return it.
6121 Otherwise, add the type. */
c6a1db6c
RS
6122 t1 = type_hash_lookup (hashcode, type);
6123 if (t1 != 0)
6124 {
c6a1db6c 6125#ifdef GATHER_STATISTICS
770ae6cc
RK
6126 tree_node_counts[(int) t_kind]--;
6127 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
c6a1db6c
RS
6128#endif
6129 return t1;
6130 }
4c160717
RK
6131 else
6132 {
6133 type_hash_add (hashcode, type);
6134 return type;
6135 }
c6a1db6c
RS
6136}
6137
6abba055
RK
6138/* See if the data pointed to by the type hash table is marked. We consider
6139 it marked if the type is marked or if a debug type number or symbol
5c9fae0d 6140 table entry has been made for the type. */
d88f311b
ML
6141
6142static int
46c5ad27 6143type_hash_marked_p (const void *p)
d88f311b 6144{
741ac903 6145 const_tree const type = ((const struct type_hash *) p)->type;
6abba055 6146
5c9fae0d 6147 return ggc_marked_p (type);
d88f311b
ML
6148}
6149
d88f311b 6150static void
46c5ad27 6151print_type_hash_statistics (void)
d88f311b 6152{
770ae6cc
RK
6153 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6154 (long) htab_size (type_hash_table),
6155 (long) htab_elements (type_hash_table),
d88f311b 6156 htab_collisions (type_hash_table));
87ff9c8e
RH
6157}
6158
2a3c15b5
DE
6159/* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6160 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6161 by adding the hash codes of the individual attributes. */
3e3d7e77 6162
9566a759
KG
6163static unsigned int
6164attribute_hash_list (const_tree list, hashval_t hashcode)
3e3d7e77 6165{
9566a759 6166 const_tree tail;
d4b60170 6167
fd917e0d 6168 for (tail = list; tail; tail = TREE_CHAIN (tail))
2a3c15b5 6169 /* ??? Do we want to add in TREE_VALUE too? */
fd917e0d
JM
6170 hashcode = iterative_hash_object
6171 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
2a3c15b5 6172 return hashcode;
3e3d7e77
RK
6173}
6174
91e97eb8
RK
6175/* Given two lists of attributes, return true if list l2 is
6176 equivalent to l1. */
6177
6178int
9678086d 6179attribute_list_equal (const_tree l1, const_tree l2)
91e97eb8 6180{
3b03c671
KH
6181 return attribute_list_contained (l1, l2)
6182 && attribute_list_contained (l2, l1);
91e97eb8
RK
6183}
6184
2a3c15b5
DE
6185/* Given two lists of attributes, return true if list L2 is
6186 completely contained within L1. */
6187/* ??? This would be faster if attribute names were stored in a canonicalized
6188 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6189 must be used to show these elements are equivalent (which they are). */
6190/* ??? It's not clear that attributes with arguments will always be handled
6191 correctly. */
91e97eb8
RK
6192
6193int
9678086d 6194attribute_list_contained (const_tree l1, const_tree l2)
91e97eb8 6195{
9678086d 6196 const_tree t1, t2;
91e97eb8
RK
6197
6198 /* First check the obvious, maybe the lists are identical. */
6199 if (l1 == l2)
dc478a5d 6200 return 1;
91e97eb8 6201
2a3c15b5 6202 /* Maybe the lists are similar. */
91e97eb8 6203 for (t1 = l1, t2 = l2;
d4b60170 6204 t1 != 0 && t2 != 0
2a3c15b5 6205 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
91e97eb8
RK
6206 && TREE_VALUE (t1) == TREE_VALUE (t2);
6207 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
6208
6209 /* Maybe the lists are equal. */
6210 if (t1 == 0 && t2 == 0)
a01da83b 6211 return 1;
91e97eb8 6212
d4b60170 6213 for (; t2 != 0; t2 = TREE_CHAIN (t2))
2a3c15b5 6214 {
9678086d 6215 const_tree attr;
75547801
KG
6216 /* This CONST_CAST is okay because lookup_attribute does not
6217 modify its argument and the return value is assigned to a
6218 const_tree. */
6219 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
b1d5455a 6220 CONST_CAST_TREE(l1));
91d231cb 6221 attr != NULL_TREE;
75547801
KG
6222 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
6223 TREE_CHAIN (attr)))
91d231cb 6224 {
fcb99e7b
JJ
6225 if (TREE_VALUE (t2) != NULL
6226 && TREE_CODE (TREE_VALUE (t2)) == TREE_LIST
6227 && TREE_VALUE (attr) != NULL
6228 && TREE_CODE (TREE_VALUE (attr)) == TREE_LIST)
6229 {
6230 if (simple_cst_list_equal (TREE_VALUE (t2),
6231 TREE_VALUE (attr)) == 1)
6232 break;
6233 }
6234 else if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
91d231cb
JM
6235 break;
6236 }
2a3c15b5 6237
d4b60170 6238 if (attr == 0)
91e97eb8 6239 return 0;
2a3c15b5 6240 }
3e3d7e77 6241
91e97eb8
RK
6242 return 1;
6243}
6244
c6a1db6c
RS
6245/* Given two lists of types
6246 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6247 return 1 if the lists contain the same types in the same order.
6248 Also, the TREE_PURPOSEs must match. */
6249
6250int
fa233e34 6251type_list_equal (const_tree l1, const_tree l2)
c6a1db6c 6252{
fa233e34 6253 const_tree t1, t2;
364e1f1c 6254
c6a1db6c 6255 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
364e1f1c
RK
6256 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6257 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
bbda4250
JM
6258 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6259 && (TREE_TYPE (TREE_PURPOSE (t1))
6260 == TREE_TYPE (TREE_PURPOSE (t2))))))
364e1f1c 6261 return 0;
c6a1db6c
RS
6262
6263 return t1 == t2;
6264}
6265
f5d6a24c
MM
6266/* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6267 given by TYPE. If the argument list accepts variable arguments,
6268 then this function counts only the ordinary arguments. */
6269
6270int
9566a759 6271type_num_arguments (const_tree type)
f5d6a24c
MM
6272{
6273 int i = 0;
6274 tree t;
6275
6276 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6277 /* If the function does not take a variable number of arguments,
6278 the last element in the list will have type `void'. */
6279 if (VOID_TYPE_P (TREE_VALUE (t)))
6280 break;
6281 else
6282 ++i;
6283
6284 return i;
6285}
6286
c6a1db6c
RS
6287/* Nonzero if integer constants T1 and T2
6288 represent the same constant value. */
6289
6290int
9566a759 6291tree_int_cst_equal (const_tree t1, const_tree t2)
c6a1db6c
RS
6292{
6293 if (t1 == t2)
6294 return 1;
d4b60170 6295
c6a1db6c
RS
6296 if (t1 == 0 || t2 == 0)
6297 return 0;
d4b60170 6298
c6a1db6c
RS
6299 if (TREE_CODE (t1) == INTEGER_CST
6300 && TREE_CODE (t2) == INTEGER_CST
6301 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6302 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
6303 return 1;
d4b60170 6304
c6a1db6c
RS
6305 return 0;
6306}
6307
6308/* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6309 The precise way of comparison depends on their data type. */
6310
6311int
9566a759 6312tree_int_cst_lt (const_tree t1, const_tree t2)
c6a1db6c
RS
6313{
6314 if (t1 == t2)
6315 return 0;
6316
8df83eae 6317 if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
b13ab42c
AO
6318 {
6319 int t1_sgn = tree_int_cst_sgn (t1);
6320 int t2_sgn = tree_int_cst_sgn (t2);
6321
6322 if (t1_sgn < t2_sgn)
6323 return 1;
6324 else if (t1_sgn > t2_sgn)
6325 return 0;
6326 /* Otherwise, both are non-negative, so we compare them as
6327 unsigned just in case one of them would overflow a signed
6328 type. */
6329 }
8df83eae 6330 else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
c6a1db6c 6331 return INT_CST_LT (t1, t2);
d4b60170 6332
c6a1db6c
RS
6333 return INT_CST_LT_UNSIGNED (t1, t2);
6334}
6335
56cb9733
MM
6336/* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6337
6338int
9566a759 6339tree_int_cst_compare (const_tree t1, const_tree t2)
56cb9733
MM
6340{
6341 if (tree_int_cst_lt (t1, t2))
6342 return -1;
6343 else if (tree_int_cst_lt (t2, t1))
6344 return 1;
3b03c671 6345 else
56cb9733
MM
6346 return 0;
6347}
6348
4636c87e
JJ
6349/* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6350 the host. If POS is zero, the value can be represented in a single
9f36bc49 6351 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
4636c87e 6352 be represented in a single unsigned HOST_WIDE_INT. */
665f2503
RK
6353
6354int
9566a759 6355host_integerp (const_tree t, int pos)
665f2503 6356{
4537ec0c
DN
6357 if (t == NULL_TREE)
6358 return 0;
6359
665f2503 6360 return (TREE_CODE (t) == INTEGER_CST
665f2503
RK
6361 && ((TREE_INT_CST_HIGH (t) == 0
6362 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
6363 || (! pos && TREE_INT_CST_HIGH (t) == -1
4636c87e 6364 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
ab5b8382 6365 && (!TYPE_UNSIGNED (TREE_TYPE (t))
cbad2e09
RG
6366 || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
6367 && TYPE_IS_SIZETYPE (TREE_TYPE (t)))))
4636c87e 6368 || (pos && TREE_INT_CST_HIGH (t) == 0)));
665f2503
RK
6369}
6370
6371/* Return the HOST_WIDE_INT least significant bits of T if it is an
6372 INTEGER_CST and there is no overflow. POS is nonzero if the result must
9f36bc49 6373 be non-negative. We must be able to satisfy the above conditions. */
665f2503
RK
6374
6375HOST_WIDE_INT
9566a759 6376tree_low_cst (const_tree t, int pos)
665f2503 6377{
1e128c5f
GB
6378 gcc_assert (host_integerp (t, pos));
6379 return TREE_INT_CST_LOW (t);
dc478a5d 6380}
665f2503 6381
4694840a
OH
6382/* Return the most significant bit of the integer constant T. */
6383
6384int
9566a759 6385tree_int_cst_msb (const_tree t)
4694840a
OH
6386{
6387 int prec;
6388 HOST_WIDE_INT h;
6389 unsigned HOST_WIDE_INT l;
6390
6391 /* Note that using TYPE_PRECISION here is wrong. We care about the
6392 actual bits, not the (arbitrary) range of the type. */
6393 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
6394 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
6395 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
6396 return (l & 1) == 1;
6397}
6398
6d9cb074
RK
6399/* Return an indication of the sign of the integer constant T.
6400 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
f85f1ca7 6401 Note that -1 will never be returned if T's type is unsigned. */
6d9cb074
RK
6402
6403int
9566a759 6404tree_int_cst_sgn (const_tree t)
6d9cb074
RK
6405{
6406 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
6407 return 0;
8df83eae 6408 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6d9cb074
RK
6409 return 1;
6410 else if (TREE_INT_CST_HIGH (t) < 0)
6411 return -1;
6412 else
6413 return 1;
6414}
6415
cdd6a337
MLI
6416/* Return the minimum number of bits needed to represent VALUE in a
6417 signed or unsigned type, UNSIGNEDP says which. */
6418
6419unsigned int
6420tree_int_cst_min_precision (tree value, bool unsignedp)
6421{
6422 int log;
6423
6424 /* If the value is negative, compute its negative minus 1. The latter
6425 adjustment is because the absolute value of the largest negative value
6426 is one larger than the largest positive value. This is equivalent to
6427 a bit-wise negation, so use that operation instead. */
6428
6429 if (tree_int_cst_sgn (value) < 0)
6430 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6431
6432 /* Return the number of bits needed, taking into account the fact
6433 that we need one more bit for a signed than unsigned type. */
6434
6435 if (integer_zerop (value))
6436 log = 0;
6437 else
6438 log = tree_floor_log2 (value);
6439
6440 return log + 1 + !unsignedp;
6441}
6442
364e1f1c
RK
6443/* Compare two constructor-element-type constants. Return 1 if the lists
6444 are known to be equal; otherwise return 0. */
6445
c6a1db6c 6446int
9566a759 6447simple_cst_list_equal (const_tree l1, const_tree l2)
c6a1db6c
RS
6448{
6449 while (l1 != NULL_TREE && l2 != NULL_TREE)
6450 {
364e1f1c 6451 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
c6a1db6c 6452 return 0;
364e1f1c 6453
c6a1db6c
RS
6454 l1 = TREE_CHAIN (l1);
6455 l2 = TREE_CHAIN (l2);
6456 }
364e1f1c 6457
d4b60170 6458 return l1 == l2;
c6a1db6c
RS
6459}
6460
6461/* Return truthvalue of whether T1 is the same tree structure as T2.
6462 Return 1 if they are the same.
6463 Return 0 if they are understandably different.
6464 Return -1 if either contains tree structure not understood by
6465 this function. */
6466
6467int
fa233e34 6468simple_cst_equal (const_tree t1, const_tree t2)
c6a1db6c 6469{
b3694847 6470 enum tree_code code1, code2;
c6a1db6c 6471 int cmp;
d4b60170 6472 int i;
c6a1db6c
RS
6473
6474 if (t1 == t2)
6475 return 1;
6476 if (t1 == 0 || t2 == 0)
6477 return 0;
6478
6479 code1 = TREE_CODE (t1);
6480 code2 = TREE_CODE (t2);
6481
1a87cf0c 6482 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
af79bb86 6483 {
1a87cf0c 6484 if (CONVERT_EXPR_CODE_P (code2)
af79bb86
JM
6485 || code2 == NON_LVALUE_EXPR)
6486 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6487 else
6488 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6489 }
d4b60170 6490
1a87cf0c 6491 else if (CONVERT_EXPR_CODE_P (code2)
c6a1db6c
RS
6492 || code2 == NON_LVALUE_EXPR)
6493 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6494
6495 if (code1 != code2)
6496 return 0;
6497
6498 switch (code1)
6499 {
6500 case INTEGER_CST:
d4b60170
RK
6501 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6502 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
c6a1db6c
RS
6503
6504 case REAL_CST:
41c9120b 6505 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
c6a1db6c 6506
325217ed
CF
6507 case FIXED_CST:
6508 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6509
c6a1db6c 6510 case STRING_CST:
d4b60170 6511 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
da61dec9 6512 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
d4b60170 6513 TREE_STRING_LENGTH (t1)));
c6a1db6c
RS
6514
6515 case CONSTRUCTOR:
4038c495
GB
6516 {
6517 unsigned HOST_WIDE_INT idx;
6518 VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1);
6519 VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2);
6520
6521 if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2))
6522 return false;
6523
6524 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
6525 /* ??? Should we handle also fields here? */
6526 if (!simple_cst_equal (VEC_index (constructor_elt, v1, idx)->value,
6527 VEC_index (constructor_elt, v2, idx)->value))
6528 return false;
6529 return true;
6530 }
c6a1db6c
RS
6531
6532 case SAVE_EXPR:
6533 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6534
6535 case CALL_EXPR:
5039610b 6536 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
c6a1db6c
RS
6537 if (cmp <= 0)
6538 return cmp;
5039610b
SL
6539 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6540 return 0;
6541 {
fa233e34
KG
6542 const_tree arg1, arg2;
6543 const_call_expr_arg_iterator iter1, iter2;
6544 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6545 arg2 = first_const_call_expr_arg (t2, &iter2);
5039610b 6546 arg1 && arg2;
fa233e34
KG
6547 arg1 = next_const_call_expr_arg (&iter1),
6548 arg2 = next_const_call_expr_arg (&iter2))
5039610b
SL
6549 {
6550 cmp = simple_cst_equal (arg1, arg2);
6551 if (cmp <= 0)
6552 return cmp;
6553 }
6554 return arg1 == arg2;
6555 }
c6a1db6c
RS
6556
6557 case TARGET_EXPR:
6558 /* Special case: if either target is an unallocated VAR_DECL,
6559 it means that it's going to be unified with whatever the
6560 TARGET_EXPR is really supposed to initialize, so treat it
6561 as being equivalent to anything. */
6562 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6563 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
19e7881c 6564 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
c6a1db6c
RS
6565 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6566 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
19e7881c 6567 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
c6a1db6c
RS
6568 cmp = 1;
6569 else
6570 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
d4b60170 6571
c6a1db6c
RS
6572 if (cmp <= 0)
6573 return cmp;
d4b60170 6574
c6a1db6c
RS
6575 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6576
6577 case WITH_CLEANUP_EXPR:
6578 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6579 if (cmp <= 0)
6580 return cmp;
d4b60170 6581
6ad7895a 6582 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
c6a1db6c
RS
6583
6584 case COMPONENT_REF:
6585 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6586 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
d4b60170 6587
c6a1db6c
RS
6588 return 0;
6589
c6a1db6c
RS
6590 case VAR_DECL:
6591 case PARM_DECL:
6592 case CONST_DECL:
6593 case FUNCTION_DECL:
6594 return 0;
dc478a5d 6595
e9a25f70
JL
6596 default:
6597 break;
86aed40b 6598 }
c6a1db6c 6599
8ae49a28
RK
6600 /* This general rule works for most tree codes. All exceptions should be
6601 handled above. If this is a language-specific tree code, we can't
6602 trust what might be in the operand, so say we don't know
6603 the situation. */
0a6969ad 6604 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
8ae49a28 6605 return -1;
c6a1db6c 6606
86aed40b
RS
6607 switch (TREE_CODE_CLASS (code1))
6608 {
6615c446
JO
6609 case tcc_unary:
6610 case tcc_binary:
6611 case tcc_comparison:
6612 case tcc_expression:
6613 case tcc_reference:
6614 case tcc_statement:
86aed40b 6615 cmp = 1;
8d5e6e25 6616 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
86aed40b
RS
6617 {
6618 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
6619 if (cmp <= 0)
6620 return cmp;
6621 }
d4b60170 6622
86aed40b 6623 return cmp;
86aed40b 6624
e9a25f70
JL
6625 default:
6626 return -1;
6627 }
c6a1db6c 6628}
05bccae2
RK
6629
6630/* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6631 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6632 than U, respectively. */
6633
6634int
9566a759 6635compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
05bccae2
RK
6636{
6637 if (tree_int_cst_sgn (t) < 0)
6638 return -1;
6639 else if (TREE_INT_CST_HIGH (t) != 0)
6640 return 1;
6641 else if (TREE_INT_CST_LOW (t) == u)
6642 return 0;
6643 else if (TREE_INT_CST_LOW (t) < u)
6644 return -1;
6645 else
6646 return 1;
6647}
03307888 6648
3168cb99
JL
6649/* Return true if CODE represents an associative tree code. Otherwise
6650 return false. */
6651bool
6652associative_tree_code (enum tree_code code)
6653{
6654 switch (code)
6655 {
6656 case BIT_IOR_EXPR:
6657 case BIT_AND_EXPR:
6658 case BIT_XOR_EXPR:
6659 case PLUS_EXPR:
3168cb99 6660 case MULT_EXPR:
3168cb99
JL
6661 case MIN_EXPR:
6662 case MAX_EXPR:
6663 return true;
6664
6665 default:
6666 break;
6667 }
6668 return false;
6669}
6670
1f838355 6671/* Return true if CODE represents a commutative tree code. Otherwise
3168cb99
JL
6672 return false. */
6673bool
6674commutative_tree_code (enum tree_code code)
6675{
6676 switch (code)
6677 {
6678 case PLUS_EXPR:
6679 case MULT_EXPR:
6680 case MIN_EXPR:
6681 case MAX_EXPR:
6682 case BIT_IOR_EXPR:
6683 case BIT_XOR_EXPR:
6684 case BIT_AND_EXPR:
6685 case NE_EXPR:
6686 case EQ_EXPR:
54d581a2
RS
6687 case UNORDERED_EXPR:
6688 case ORDERED_EXPR:
6689 case UNEQ_EXPR:
6690 case LTGT_EXPR:
6691 case TRUTH_AND_EXPR:
6692 case TRUTH_XOR_EXPR:
6693 case TRUTH_OR_EXPR:
3168cb99
JL
6694 return true;
6695
6696 default:
6697 break;
6698 }
6699 return false;
0354c0c7
BS
6700}
6701
6702/* Return true if CODE represents a ternary tree code for which the
6703 first two operands are commutative. Otherwise return false. */
6704bool
6705commutative_ternary_tree_code (enum tree_code code)
6706{
6707 switch (code)
6708 {
6709 case WIDEN_MULT_PLUS_EXPR:
6710 case WIDEN_MULT_MINUS_EXPR:
6711 return true;
6712
6713 default:
6714 break;
6715 }
6716 return false;
3168cb99
JL
6717}
6718
03307888 6719/* Generate a hash value for an expression. This can be used iteratively
726a989a 6720 by passing a previous result as the VAL argument.
03307888
JM
6721
6722 This function is intended to produce the same hash for expressions which
6723 would compare equal using operand_equal_p. */
6724
6725hashval_t
9566a759 6726iterative_hash_expr (const_tree t, hashval_t val)
03307888
JM
6727{
6728 int i;
6729 enum tree_code code;
82d6e6fc 6730 char tclass;
03307888
JM
6731
6732 if (t == NULL_TREE)
72b9acff 6733 return iterative_hash_hashval_t (0, val);
03307888
JM
6734
6735 code = TREE_CODE (t);
03307888 6736
caf29de7 6737 switch (code)
03307888 6738 {
caf29de7
JH
6739 /* Alas, constants aren't shared, so we can't rely on pointer
6740 identity. */
6741 case INTEGER_CST:
6742 val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
6743 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
6744 case REAL_CST:
6745 {
6746 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
f29b9db9 6747
325217ed
CF
6748 return iterative_hash_hashval_t (val2, val);
6749 }
6750 case FIXED_CST:
6751 {
6752 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
6753
caf29de7
JH
6754 return iterative_hash_hashval_t (val2, val);
6755 }
6756 case STRING_CST:
6757 return iterative_hash (TREE_STRING_POINTER (t),
6758 TREE_STRING_LENGTH (t), val);
6759 case COMPLEX_CST:
6760 val = iterative_hash_expr (TREE_REALPART (t), val);
6761 return iterative_hash_expr (TREE_IMAGPART (t), val);
6762 case VECTOR_CST:
6763 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
caf29de7 6764 case SSA_NAME:
7ef5e86c 6765 /* We can just compare by pointer. */
72b9acff 6766 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t), val);
7ef5e86c
EB
6767 case PLACEHOLDER_EXPR:
6768 /* The node itself doesn't matter. */
6769 return val;
caf29de7
JH
6770 case TREE_LIST:
6771 /* A list of expressions, for a CALL_EXPR or as the elements of a
6772 VECTOR_CST. */
6773 for (; t; t = TREE_CHAIN (t))
6774 val = iterative_hash_expr (TREE_VALUE (t), val);
6775 return val;
4038c495
GB
6776 case CONSTRUCTOR:
6777 {
6778 unsigned HOST_WIDE_INT idx;
6779 tree field, value;
6780 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
6781 {
6782 val = iterative_hash_expr (field, val);
6783 val = iterative_hash_expr (value, val);
6784 }
6785 return val;
6786 }
359bea1d
AO
6787 case MEM_REF:
6788 {
6789 /* The type of the second operand is relevant, except for
6790 its top-level qualifiers. */
6791 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (t, 1)));
6792
6793 val = iterative_hash_object (TYPE_HASH (type), val);
6794
6795 /* We could use the standard hash computation from this point
6796 on. */
6797 val = iterative_hash_object (code, val);
6798 val = iterative_hash_expr (TREE_OPERAND (t, 1), val);
6799 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
6800 return val;
6801 }
d070d4fd 6802 case FUNCTION_DECL:
d021d274
MM
6803 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
6804 Otherwise nodes that compare equal according to operand_equal_p might
6805 get different hash codes. However, don't do this for machine specific
6806 or front end builtins, since the function code is overloaded in those
6807 cases. */
6808 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
6809 && built_in_decls[DECL_FUNCTION_CODE (t)])
d070d4fd 6810 {
72b9acff
AO
6811 t = built_in_decls[DECL_FUNCTION_CODE (t)];
6812 code = TREE_CODE (t);
d070d4fd 6813 }
72b9acff 6814 /* FALL THROUGH */
caf29de7 6815 default:
82d6e6fc 6816 tclass = TREE_CODE_CLASS (code);
03307888 6817
82d6e6fc 6818 if (tclass == tcc_declaration)
6de9cd9a 6819 {
27840768
DB
6820 /* DECL's have a unique ID */
6821 val = iterative_hash_host_wide_int (DECL_UID (t), val);
6de9cd9a 6822 }
1a2caa7a 6823 else
066f50a9 6824 {
82d6e6fc 6825 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
b8698a0f 6826
caf29de7
JH
6827 val = iterative_hash_object (code, val);
6828
6829 /* Don't hash the type, that can lead to having nodes which
6830 compare equal according to operand_equal_p, but which
6831 have different hash codes. */
1a87cf0c 6832 if (CONVERT_EXPR_CODE_P (code)
caf29de7
JH
6833 || code == NON_LVALUE_EXPR)
6834 {
6835 /* Make sure to include signness in the hash computation. */
6836 val += TYPE_UNSIGNED (TREE_TYPE (t));
6837 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
6838 }
6839
6840 else if (commutative_tree_code (code))
6841 {
6842 /* It's a commutative expression. We want to hash it the same
6843 however it appears. We do this by first hashing both operands
6844 and then rehashing based on the order of their independent
6845 hashes. */
6846 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
6847 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
6848 hashval_t t;
6849
6850 if (one > two)
6851 t = one, one = two, two = t;
6852
6853 val = iterative_hash_hashval_t (one, val);
6854 val = iterative_hash_hashval_t (two, val);
6855 }
6856 else
5039610b 6857 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
caf29de7 6858 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
066f50a9 6859 }
caf29de7
JH
6860 return val;
6861 break;
6de9cd9a 6862 }
03307888 6863}
726a989a
RB
6864
6865/* Generate a hash value for a pair of expressions. This can be used
6866 iteratively by passing a previous result as the VAL argument.
6867
6868 The same hash value is always returned for a given pair of expressions,
6869 regardless of the order in which they are presented. This is useful in
6870 hashing the operands of commutative functions. */
6871
6872hashval_t
6873iterative_hash_exprs_commutative (const_tree t1,
6874 const_tree t2, hashval_t val)
6875{
6876 hashval_t one = iterative_hash_expr (t1, 0);
6877 hashval_t two = iterative_hash_expr (t2, 0);
6878 hashval_t t;
6879
6880 if (one > two)
6881 t = one, one = two, two = t;
6882 val = iterative_hash_hashval_t (one, val);
6883 val = iterative_hash_hashval_t (two, val);
6884
6885 return val;
6886}
c6a1db6c
RS
6887\f
6888/* Constructors for pointer, array and function types.
6889 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
6890 constructed by language-dependent code, not here.) */
6891
22421b79
RK
6892/* Construct, lay out and return the type of pointers to TO_TYPE with
6893 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
6894 reference all of memory. If such a type has already been
6895 constructed, reuse it. */
c6a1db6c
RS
6896
6897tree
22421b79
RK
6898build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
6899 bool can_alias_all)
c6a1db6c 6900{
22421b79
RK
6901 tree t;
6902
a4faac50
JM
6903 if (to_type == error_mark_node)
6904 return error_mark_node;
6905
ac7ee6ad
RG
6906 /* If the pointed-to type has the may_alias attribute set, force
6907 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6908 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
6909 can_alias_all = true;
6910
22421b79
RK
6911 /* In some cases, languages will have things that aren't a POINTER_TYPE
6912 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
6913 In that case, return that type without regard to the rest of our
6914 operands.
6915
6916 ??? This is a kludge, but consistent with the way this function has
6917 always operated and there doesn't seem to be a good way to avoid this
6918 at the moment. */
6919 if (TYPE_POINTER_TO (to_type) != 0
6920 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
6921 return TYPE_POINTER_TO (to_type);
c6a1db6c 6922
3f0dc66b
EB
6923 /* First, if we already have a type for pointers to TO_TYPE and it's
6924 the proper mode, use it. */
22421b79 6925 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
3f0dc66b 6926 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
22421b79 6927 return t;
c6a1db6c 6928
c6a1db6c 6929 t = make_node (POINTER_TYPE);
d9cbc259 6930
c6a1db6c 6931 TREE_TYPE (t) = to_type;
179d2f74 6932 SET_TYPE_MODE (t, mode);
22421b79
RK
6933 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
6934 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
6935 TYPE_POINTER_TO (to_type) = t;
c6a1db6c 6936
06d40de8
DG
6937 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
6938 SET_TYPE_STRUCTURAL_EQUALITY (t);
6939 else if (TYPE_CANONICAL (to_type) != to_type)
6940 TYPE_CANONICAL (t)
6941 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
6942 mode, can_alias_all);
6943
c6a1db6c 6944 /* Lay out the type. This function has many callers that are concerned
20475e78 6945 with expression-construction, and this simplifies them all. */
c6a1db6c
RS
6946 layout_type (t);
6947
c6a1db6c
RS
6948 return t;
6949}
6950
4977bab6 6951/* By default build pointers in ptr_mode. */
d4b60170
RK
6952
6953tree
46c5ad27 6954build_pointer_type (tree to_type)
4977bab6 6955{
d4ebfa65
BE
6956 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
6957 : TYPE_ADDR_SPACE (to_type);
6958 enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
6959 return build_pointer_type_for_mode (to_type, pointer_mode, false);
4977bab6
ZW
6960}
6961
22421b79 6962/* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
4977bab6
ZW
6963
6964tree
22421b79
RK
6965build_reference_type_for_mode (tree to_type, enum machine_mode mode,
6966 bool can_alias_all)
d4b60170 6967{
22421b79 6968 tree t;
d4b60170 6969
ac7ee6ad
RG
6970 if (to_type == error_mark_node)
6971 return error_mark_node;
6972
6973 /* If the pointed-to type has the may_alias attribute set, force
6974 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6975 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
6976 can_alias_all = true;
6977
22421b79
RK
6978 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
6979 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
6980 In that case, return that type without regard to the rest of our
6981 operands.
6982
6983 ??? This is a kludge, but consistent with the way this function has
6984 always operated and there doesn't seem to be a good way to avoid this
6985 at the moment. */
6986 if (TYPE_REFERENCE_TO (to_type) != 0
6987 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
6988 return TYPE_REFERENCE_TO (to_type);
6989
3f0dc66b
EB
6990 /* First, if we already have a type for pointers to TO_TYPE and it's
6991 the proper mode, use it. */
22421b79 6992 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
3f0dc66b 6993 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
22421b79 6994 return t;
d4b60170 6995
d4b60170 6996 t = make_node (REFERENCE_TYPE);
d4b60170
RK
6997
6998 TREE_TYPE (t) = to_type;
179d2f74 6999 SET_TYPE_MODE (t, mode);
22421b79
RK
7000 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7001 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
d4b60170
RK
7002 TYPE_REFERENCE_TO (to_type) = t;
7003
06d40de8
DG
7004 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7005 SET_TYPE_STRUCTURAL_EQUALITY (t);
7006 else if (TYPE_CANONICAL (to_type) != to_type)
b8698a0f 7007 TYPE_CANONICAL (t)
06d40de8
DG
7008 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7009 mode, can_alias_all);
7010
d4b60170
RK
7011 layout_type (t);
7012
7013 return t;
7014}
7015
4977bab6
ZW
7016
7017/* Build the node for the type of references-to-TO_TYPE by default
7018 in ptr_mode. */
7019
7020tree
46c5ad27 7021build_reference_type (tree to_type)
4977bab6 7022{
d4ebfa65
BE
7023 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7024 : TYPE_ADDR_SPACE (to_type);
7025 enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7026 return build_reference_type_for_mode (to_type, pointer_mode, false);
4977bab6
ZW
7027}
7028
12e1243e
AH
7029/* Build a type that is compatible with t but has no cv quals anywhere
7030 in its type, thus
7031
7032 const char *const *const * -> char ***. */
7033
7034tree
46c5ad27 7035build_type_no_quals (tree t)
12e1243e
AH
7036{
7037 switch (TREE_CODE (t))
7038 {
7039 case POINTER_TYPE:
7548281d 7040 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
22421b79
RK
7041 TYPE_MODE (t),
7042 TYPE_REF_CAN_ALIAS_ALL (t));
12e1243e 7043 case REFERENCE_TYPE:
7548281d
RK
7044 return
7045 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
22421b79
RK
7046 TYPE_MODE (t),
7047 TYPE_REF_CAN_ALIAS_ALL (t));
12e1243e
AH
7048 default:
7049 return TYPE_MAIN_VARIANT (t);
7050 }
7051}
7052
1a299ae4
JJ
7053#define MAX_INT_CACHED_PREC \
7054 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7055static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7056
bc15d0ef
JM
7057/* Builds a signed or unsigned integer type of precision PRECISION.
7058 Used for C bitfields whose precision does not match that of
7059 built-in target types. */
7060tree
7061build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7062 int unsignedp)
7063{
1a299ae4 7064 tree itype, ret;
bc15d0ef 7065
1a299ae4
JJ
7066 if (unsignedp)
7067 unsignedp = MAX_INT_CACHED_PREC + 1;
7068
7069 if (precision <= MAX_INT_CACHED_PREC)
7070 {
7071 itype = nonstandard_integer_type_cache[precision + unsignedp];
7072 if (itype)
7073 return itype;
7074 }
7075
7076 itype = make_node (INTEGER_TYPE);
bc15d0ef
JM
7077 TYPE_PRECISION (itype) = precision;
7078
7079 if (unsignedp)
7080 fixup_unsigned_type (itype);
7081 else
7082 fixup_signed_type (itype);
7083
1a299ae4 7084 ret = itype;
bc15d0ef 7085 if (host_integerp (TYPE_MAX_VALUE (itype), 1))
1a299ae4 7086 ret = type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
523e82a7 7087 if (precision <= MAX_INT_CACHED_PREC)
1a299ae4 7088 nonstandard_integer_type_cache[precision + unsignedp] = ret;
bc15d0ef 7089
1a299ae4 7090 return ret;
bc15d0ef
JM
7091}
7092
523e82a7
EB
7093/* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7094 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7095 is true, reuse such a type that has already been constructed. */
c6a1db6c 7096
523e82a7
EB
7097static tree
7098build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
c6a1db6c 7099{
b3694847 7100 tree itype = make_node (INTEGER_TYPE);
0370b27c 7101 hashval_t hashcode = 0;
0fd17968 7102
742e43a2 7103 TREE_TYPE (itype) = type;
0fd17968 7104
3967bc2d
RS
7105 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7106 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
0fd17968
RK
7107
7108 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
179d2f74 7109 SET_TYPE_MODE (itype, TYPE_MODE (type));
742e43a2 7110 TYPE_SIZE (itype) = TYPE_SIZE (type);
28372f41 7111 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
742e43a2 7112 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
11cf4d18 7113 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
e1ee5cdc 7114
0370b27c
EB
7115 if (!shared)
7116 return itype;
7117
8c4353b7 7118 if ((TYPE_MIN_VALUE (itype)
5b55141a 7119 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8c4353b7 7120 || (TYPE_MAX_VALUE (itype)
5b55141a 7121 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8c4353b7
RG
7122 {
7123 /* Since we cannot reliably merge this type, we need to compare it using
7124 structural equality checks. */
7125 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7126 return itype;
7127 }
523e82a7 7128
0370b27c
EB
7129 hashcode = iterative_hash_expr (TYPE_MIN_VALUE (itype), hashcode);
7130 hashcode = iterative_hash_expr (TYPE_MAX_VALUE (itype), hashcode);
7131 hashcode = iterative_hash_hashval_t (TYPE_HASH (type), hashcode);
7132 itype = type_hash_canon (hashcode, itype);
523e82a7
EB
7133
7134 return itype;
7135}
7136
7137/* Wrapper around build_range_type_1 with SHARED set to true. */
7138
7139tree
7140build_range_type (tree type, tree lowval, tree highval)
7141{
7142 return build_range_type_1 (type, lowval, highval, true);
7143}
7144
7145/* Wrapper around build_range_type_1 with SHARED set to false. */
7146
7147tree
7148build_nonshared_range_type (tree type, tree lowval, tree highval)
7149{
7150 return build_range_type_1 (type, lowval, highval, false);
8c4353b7
RG
7151}
7152
7153/* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7154 MAXVAL should be the maximum value in the domain
7155 (one less than the length of the array).
7156
7157 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7158 We don't enforce this limit, that is up to caller (e.g. language front end).
7159 The limit exists because the result is a signed type and we don't handle
7160 sizes that use more than one HOST_WIDE_INT. */
7161
7162tree
7163build_index_type (tree maxval)
7164{
7165 return build_range_type (sizetype, size_zero_node, maxval);
c6a1db6c
RS
7166}
7167
84fb43a1
EB
7168/* Return true if the debug information for TYPE, a subtype, should be emitted
7169 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7170 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7171 debug info and doesn't reflect the source code. */
7172
7173bool
7174subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7175{
7176 tree base_type = TREE_TYPE (type), low, high;
7177
7178 /* Subrange types have a base type which is an integral type. */
7179 if (!INTEGRAL_TYPE_P (base_type))
7180 return false;
7181
7182 /* Get the real bounds of the subtype. */
7183 if (lang_hooks.types.get_subrange_bounds)
7184 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7185 else
7186 {
7187 low = TYPE_MIN_VALUE (type);
7188 high = TYPE_MAX_VALUE (type);
7189 }
7190
7191 /* If the type and its base type have the same representation and the same
7192 name, then the type is not a subrange but a copy of the base type. */
7193 if ((TREE_CODE (base_type) == INTEGER_TYPE
7194 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7195 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7196 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7197 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type)))
7198 {
7199 tree type_name = TYPE_NAME (type);
7200 tree base_type_name = TYPE_NAME (base_type);
7201
7202 if (type_name && TREE_CODE (type_name) == TYPE_DECL)
7203 type_name = DECL_NAME (type_name);
7204
7205 if (base_type_name && TREE_CODE (base_type_name) == TYPE_DECL)
7206 base_type_name = DECL_NAME (base_type_name);
7207
7208 if (type_name == base_type_name)
7209 return false;
7210 }
7211
7212 if (lowval)
7213 *lowval = low;
7214 if (highval)
7215 *highval = high;
7216 return true;
7217}
7218
c6a1db6c
RS
7219/* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7220 and number of elements specified by the range of values of INDEX_TYPE.
523e82a7 7221 If SHARED is true, reuse such a type that has already been constructed. */
c6a1db6c 7222
523e82a7
EB
7223static tree
7224build_array_type_1 (tree elt_type, tree index_type, bool shared)
c6a1db6c 7225{
b3694847 7226 tree t;
c6a1db6c
RS
7227
7228 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7229 {
7230 error ("arrays of functions are not meaningful");
7231 elt_type = integer_type_node;
7232 }
7233
c6a1db6c
RS
7234 t = make_node (ARRAY_TYPE);
7235 TREE_TYPE (t) = elt_type;
7236 TYPE_DOMAIN (t) = index_type;
09e881c9 7237 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
3797a0ff 7238 layout_type (t);
06d40de8 7239
3797a0ff
RG
7240 /* If the element type is incomplete at this point we get marked for
7241 structural equality. Do not record these types in the canonical
7242 type hashtable. */
7243 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7244 return t;
c6a1db6c 7245
523e82a7
EB
7246 if (shared)
7247 {
7248 hashval_t hashcode = iterative_hash_object (TYPE_HASH (elt_type), 0);
7249 if (index_type)
7250 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
7251 t = type_hash_canon (hashcode, t);
7252 }
c6a1db6c 7253
06d40de8
DG
7254 if (TYPE_CANONICAL (t) == t)
7255 {
7256 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
3797a0ff 7257 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
06d40de8
DG
7258 SET_TYPE_STRUCTURAL_EQUALITY (t);
7259 else if (TYPE_CANONICAL (elt_type) != elt_type
3797a0ff 7260 || (index_type && TYPE_CANONICAL (index_type) != index_type))
b8698a0f 7261 TYPE_CANONICAL (t)
523e82a7
EB
7262 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7263 index_type
7264 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7265 shared);
06d40de8
DG
7266 }
7267
c6a1db6c
RS
7268 return t;
7269}
7270
523e82a7
EB
7271/* Wrapper around build_array_type_1 with SHARED set to true. */
7272
7273tree
7274build_array_type (tree elt_type, tree index_type)
7275{
7276 return build_array_type_1 (elt_type, index_type, true);
7277}
7278
7279/* Wrapper around build_array_type_1 with SHARED set to false. */
7280
7281tree
7282build_nonshared_array_type (tree elt_type, tree index_type)
7283{
7284 return build_array_type_1 (elt_type, index_type, false);
7285}
7286
dd25a747
AM
7287/* Recursively examines the array elements of TYPE, until a non-array
7288 element type is found. */
a260abc9
DE
7289
7290tree
dd25a747 7291strip_array_types (tree type)
a260abc9 7292{
a260abc9
DE
7293 while (TREE_CODE (type) == ARRAY_TYPE)
7294 type = TREE_TYPE (type);
7295
7296 return type;
7297}
7298
8de08f4c 7299/* Computes the canonical argument types from the argument type list
b8698a0f 7300 ARGTYPES.
8de08f4c 7301
c92b8515
DG
7302 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7303 on entry to this function, or if any of the ARGTYPES are
8de08f4c
DG
7304 structural.
7305
c92b8515
DG
7306 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7307 true on entry to this function, or if any of the ARGTYPES are
7308 non-canonical.
8de08f4c
DG
7309
7310 Returns a canonical argument list, which may be ARGTYPES when the
7311 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7312 true) or would not differ from ARGTYPES. */
7313
b8698a0f
L
7314static tree
7315maybe_canonicalize_argtypes(tree argtypes,
8de08f4c
DG
7316 bool *any_structural_p,
7317 bool *any_noncanonical_p)
7318{
7319 tree arg;
7320 bool any_noncanonical_argtypes_p = false;
b8698a0f 7321
8de08f4c
DG
7322 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7323 {
7324 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7325 /* Fail gracefully by stating that the type is structural. */
7326 *any_structural_p = true;
7327 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7328 *any_structural_p = true;
7329 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7330 || TREE_PURPOSE (arg))
7331 /* If the argument has a default argument, we consider it
7332 non-canonical even though the type itself is canonical.
7333 That way, different variants of function and method types
7334 with default arguments will all point to the variant with
7335 no defaults as their canonical type. */
7336 any_noncanonical_argtypes_p = true;
7337 }
7338
7339 if (*any_structural_p)
7340 return argtypes;
7341
7342 if (any_noncanonical_argtypes_p)
7343 {
7344 /* Build the canonical list of argument types. */
7345 tree canon_argtypes = NULL_TREE;
7346 bool is_void = false;
7347
7348 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7349 {
7350 if (arg == void_list_node)
7351 is_void = true;
7352 else
7353 canon_argtypes = tree_cons (NULL_TREE,
7354 TYPE_CANONICAL (TREE_VALUE (arg)),
7355 canon_argtypes);
7356 }
7357
7358 canon_argtypes = nreverse (canon_argtypes);
7359 if (is_void)
7360 canon_argtypes = chainon (canon_argtypes, void_list_node);
7361
7362 /* There is a non-canonical type. */
7363 *any_noncanonical_p = true;
7364 return canon_argtypes;
7365 }
7366
7367 /* The canonical argument types are the same as ARGTYPES. */
7368 return argtypes;
7369}
7370
c6a1db6c
RS
7371/* Construct, lay out and return
7372 the type of functions returning type VALUE_TYPE
7373 given arguments of types ARG_TYPES.
7374 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7375 are data type nodes for the arguments of the function.
7376 If such a type has already been constructed, reuse it. */
7377
7378tree
46c5ad27 7379build_function_type (tree value_type, tree arg_types)
c6a1db6c 7380{
b3694847 7381 tree t;
fd917e0d 7382 hashval_t hashcode = 0;
8de08f4c
DG
7383 bool any_structural_p, any_noncanonical_p;
7384 tree canon_argtypes;
c6a1db6c 7385
c0560b8b 7386 if (TREE_CODE (value_type) == FUNCTION_TYPE)
c6a1db6c 7387 {
c0560b8b 7388 error ("function return type cannot be function");
c6a1db6c
RS
7389 value_type = integer_type_node;
7390 }
7391
7392 /* Make a node of the sort we want. */
7393 t = make_node (FUNCTION_TYPE);
7394 TREE_TYPE (t) = value_type;
7395 TYPE_ARG_TYPES (t) = arg_types;
7396
7548281d 7397 /* If we already have such a type, use the old one. */
fd917e0d
JM
7398 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
7399 hashcode = type_hash_list (arg_types, hashcode);
c6a1db6c
RS
7400 t = type_hash_canon (hashcode, t);
7401
8de08f4c
DG
7402 /* Set up the canonical type. */
7403 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
7404 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
b8698a0f 7405 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8de08f4c
DG
7406 &any_structural_p,
7407 &any_noncanonical_p);
7408 if (any_structural_p)
7409 SET_TYPE_STRUCTURAL_EQUALITY (t);
7410 else if (any_noncanonical_p)
7411 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
7412 canon_argtypes);
b8698a0f 7413
d0f062fb 7414 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
7415 layout_type (t);
7416 return t;
7417}
7418
c6f7cfc1
JH
7419/* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP. */
7420
7421tree
7422build_function_type_skip_args (tree orig_type, bitmap args_to_skip)
7423{
7424 tree new_type = NULL;
7425 tree args, new_args = NULL, t;
7426 tree new_reversed;
7427 int i = 0;
7428
7429 for (args = TYPE_ARG_TYPES (orig_type); args && args != void_list_node;
7430 args = TREE_CHAIN (args), i++)
7431 if (!bitmap_bit_p (args_to_skip, i))
7432 new_args = tree_cons (NULL_TREE, TREE_VALUE (args), new_args);
7433
7434 new_reversed = nreverse (new_args);
7435 if (args)
7436 {
7437 if (new_reversed)
7438 TREE_CHAIN (new_args) = void_list_node;
7439 else
7440 new_reversed = void_list_node;
7441 }
c6f7cfc1
JH
7442
7443 /* Use copy_node to preserve as much as possible from original type
7444 (debug info, attribute lists etc.)
7445 Exception is METHOD_TYPEs must have THIS argument.
7446 When we are asked to remove it, we need to build new FUNCTION_TYPE
7447 instead. */
7448 if (TREE_CODE (orig_type) != METHOD_TYPE
7449 || !bitmap_bit_p (args_to_skip, 0))
7450 {
f625098e 7451 new_type = build_distinct_type_copy (orig_type);
c6f7cfc1
JH
7452 TYPE_ARG_TYPES (new_type) = new_reversed;
7453 }
7454 else
4db15d75
JH
7455 {
7456 new_type
7457 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
7458 new_reversed));
7459 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
7460 }
c6f7cfc1
JH
7461
7462 /* This is a new type, not a copy of an old type. Need to reassociate
7463 variants. We can handle everything except the main variant lazily. */
7464 t = TYPE_MAIN_VARIANT (orig_type);
7465 if (orig_type != t)
7466 {
7467 TYPE_MAIN_VARIANT (new_type) = t;
7468 TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
7469 TYPE_NEXT_VARIANT (t) = new_type;
7470 }
7471 else
7472 {
7473 TYPE_MAIN_VARIANT (new_type) = new_type;
7474 TYPE_NEXT_VARIANT (new_type) = NULL;
7475 }
7476 return new_type;
7477}
7478
b8698a0f
L
7479/* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.
7480
c6f7cfc1 7481 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
95f6e526 7482 linked by TREE_CHAIN directly. The caller is responsible for eliminating
c6f7cfc1
JH
7483 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7484
7485tree
7486build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip)
7487{
7488 tree new_decl = copy_node (orig_decl);
7489 tree new_type;
7490
7491 new_type = TREE_TYPE (orig_decl);
7492 if (prototype_p (new_type))
7493 new_type = build_function_type_skip_args (new_type, args_to_skip);
4db15d75
JH
7494 TREE_TYPE (new_decl) = new_type;
7495
7496 /* For declarations setting DECL_VINDEX (i.e. methods)
7497 we expect first argument to be THIS pointer. */
7498 if (bitmap_bit_p (args_to_skip, 0))
7499 DECL_VINDEX (new_decl) = NULL_TREE;
d402c33d
JH
7500
7501 /* When signature changes, we need to clear builtin info. */
7502 if (DECL_BUILT_IN (new_decl) && !bitmap_empty_p (args_to_skip))
7503 {
7504 DECL_BUILT_IN_CLASS (new_decl) = NOT_BUILT_IN;
7505 DECL_FUNCTION_CODE (new_decl) = (enum built_in_function) 0;
7506 }
c6f7cfc1
JH
7507 return new_decl;
7508}
7509
a98ebe2e 7510/* Build a function type. The RETURN_TYPE is the type returned by the
95f6e526
NF
7511 function. If VAARGS is set, no void_type_node is appended to the
7512 the list. ARGP must be always be terminated be a NULL_TREE. */
b4de2f7d 7513
ff1c393b
KT
7514static tree
7515build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
b4de2f7d
AH
7516{
7517 tree t, args, last;
b4de2f7d 7518
ff1c393b
KT
7519 t = va_arg (argp, tree);
7520 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
b4de2f7d
AH
7521 args = tree_cons (NULL_TREE, t, args);
7522
ff1c393b
KT
7523 if (vaargs)
7524 {
c6f7cfc1
JH
7525 last = args;
7526 if (args != NULL_TREE)
7527 args = nreverse (args);
b64fca63 7528 gcc_assert (last != void_list_node);
ff1c393b
KT
7529 }
7530 else if (args == NULL_TREE)
f6254da4
ILT
7531 args = void_list_node;
7532 else
7533 {
7534 last = args;
7535 args = nreverse (args);
7536 TREE_CHAIN (last) = void_list_node;
7537 }
97ebc06f 7538 args = build_function_type (return_type, args);
b4de2f7d 7539
ff1c393b
KT
7540 return args;
7541}
7542
7543/* Build a function type. The RETURN_TYPE is the type returned by the
7544 function. If additional arguments are provided, they are
7545 additional argument types. The list of argument types must always
7546 be terminated by NULL_TREE. */
7547
7548tree
7549build_function_type_list (tree return_type, ...)
7550{
7551 tree args;
7552 va_list p;
7553
7554 va_start (p, return_type);
7555 args = build_function_type_list_1 (false, return_type, p);
7556 va_end (p);
7557 return args;
7558}
7559
7560/* Build a variable argument function type. The RETURN_TYPE is the
7561 type returned by the function. If additional arguments are provided,
7562 they are additional argument types. The list of argument types must
7563 always be terminated by NULL_TREE. */
7564
7565tree
7566build_varargs_function_type_list (tree return_type, ...)
7567{
7568 tree args;
7569 va_list p;
7570
7571 va_start (p, return_type);
7572 args = build_function_type_list_1 (true, return_type, p);
e34d07f2 7573 va_end (p);
ff1c393b 7574
b4de2f7d
AH
7575 return args;
7576}
7577
1281fe11
MM
7578/* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7579 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7580 for the method. An implicit additional parameter (of type
7581 pointer-to-BASETYPE) is added to the ARGTYPES. */
c6a1db6c
RS
7582
7583tree
1281fe11
MM
7584build_method_type_directly (tree basetype,
7585 tree rettype,
7586 tree argtypes)
c6a1db6c 7587{
b3694847 7588 tree t;
1281fe11 7589 tree ptype;
fd917e0d 7590 int hashcode = 0;
8de08f4c
DG
7591 bool any_structural_p, any_noncanonical_p;
7592 tree canon_argtypes;
c6a1db6c
RS
7593
7594 /* Make a node of the sort we want. */
7595 t = make_node (METHOD_TYPE);
7596
c6a1db6c 7597 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
1281fe11
MM
7598 TREE_TYPE (t) = rettype;
7599 ptype = build_pointer_type (basetype);
c6a1db6c
RS
7600
7601 /* The actual arglist for this function includes a "hidden" argument
7602 which is "this". Put it into the list of argument types. */
1281fe11
MM
7603 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7604 TYPE_ARG_TYPES (t) = argtypes;
c6a1db6c 7605
7548281d 7606 /* If we already have such a type, use the old one. */
fd917e0d
JM
7607 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7608 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
7609 hashcode = type_hash_list (argtypes, hashcode);
c6a1db6c
RS
7610 t = type_hash_canon (hashcode, t);
7611
8de08f4c
DG
7612 /* Set up the canonical type. */
7613 any_structural_p
7614 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7615 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
7616 any_noncanonical_p
7617 = (TYPE_CANONICAL (basetype) != basetype
7618 || TYPE_CANONICAL (rettype) != rettype);
7619 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
7620 &any_structural_p,
7621 &any_noncanonical_p);
7622 if (any_structural_p)
7623 SET_TYPE_STRUCTURAL_EQUALITY (t);
7624 else if (any_noncanonical_p)
b8698a0f 7625 TYPE_CANONICAL (t)
8de08f4c
DG
7626 = build_method_type_directly (TYPE_CANONICAL (basetype),
7627 TYPE_CANONICAL (rettype),
7628 canon_argtypes);
d0f062fb 7629 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
7630 layout_type (t);
7631
7632 return t;
7633}
7634
1281fe11
MM
7635/* Construct, lay out and return the type of methods belonging to class
7636 BASETYPE and whose arguments and values are described by TYPE.
7637 If that type exists already, reuse it.
7638 TYPE must be a FUNCTION_TYPE node. */
7639
7640tree
7641build_method_type (tree basetype, tree type)
7642{
1e128c5f 7643 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1281fe11 7644
9f63daea 7645 return build_method_type_directly (basetype,
1281fe11
MM
7646 TREE_TYPE (type),
7647 TYPE_ARG_TYPES (type));
7648}
7649
86aed40b
RS
7650/* Construct, lay out and return the type of offsets to a value
7651 of type TYPE, within an object of type BASETYPE.
7652 If a suitable offset type exists already, reuse it. */
c6a1db6c
RS
7653
7654tree
46c5ad27 7655build_offset_type (tree basetype, tree type)
c6a1db6c 7656{
b3694847 7657 tree t;
fd917e0d 7658 hashval_t hashcode = 0;
c6a1db6c
RS
7659
7660 /* Make a node of the sort we want. */
7661 t = make_node (OFFSET_TYPE);
7662
7663 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7664 TREE_TYPE (t) = type;
7665
7548281d 7666 /* If we already have such a type, use the old one. */
fd917e0d
JM
7667 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7668 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
c6a1db6c
RS
7669 t = type_hash_canon (hashcode, t);
7670
d0f062fb 7671 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
7672 layout_type (t);
7673
06d40de8
DG
7674 if (TYPE_CANONICAL (t) == t)
7675 {
7676 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7677 || TYPE_STRUCTURAL_EQUALITY_P (type))
7678 SET_TYPE_STRUCTURAL_EQUALITY (t);
4552f5a2 7679 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
06d40de8 7680 || TYPE_CANONICAL (type) != type)
b8698a0f 7681 TYPE_CANONICAL (t)
4552f5a2 7682 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
06d40de8
DG
7683 TYPE_CANONICAL (type));
7684 }
7685
c6a1db6c
RS
7686 return t;
7687}
7688
7689/* Create a complex type whose components are COMPONENT_TYPE. */
7690
7691tree
46c5ad27 7692build_complex_type (tree component_type)
c6a1db6c 7693{
b3694847 7694 tree t;
fd917e0d 7695 hashval_t hashcode;
c6a1db6c 7696
51c869ca
RG
7697 gcc_assert (INTEGRAL_TYPE_P (component_type)
7698 || SCALAR_FLOAT_TYPE_P (component_type)
7699 || FIXED_POINT_TYPE_P (component_type));
7700
c6a1db6c
RS
7701 /* Make a node of the sort we want. */
7702 t = make_node (COMPLEX_TYPE);
7703
7704 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
c6a1db6c 7705
7548281d 7706 /* If we already have such a type, use the old one. */
fd917e0d 7707 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
c6a1db6c
RS
7708 t = type_hash_canon (hashcode, t);
7709
d0f062fb 7710 if (!COMPLETE_TYPE_P (t))
c6a1db6c
RS
7711 layout_type (t);
7712
06d40de8
DG
7713 if (TYPE_CANONICAL (t) == t)
7714 {
7715 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
7716 SET_TYPE_STRUCTURAL_EQUALITY (t);
7717 else if (TYPE_CANONICAL (component_type) != component_type)
b8698a0f 7718 TYPE_CANONICAL (t)
06d40de8
DG
7719 = build_complex_type (TYPE_CANONICAL (component_type));
7720 }
7721
05af427c
RG
7722 /* We need to create a name, since complex is a fundamental type. */
7723 if (! TYPE_NAME (t))
405f63da 7724 {
ec0ce6e2 7725 const char *name;
405f63da
MM
7726 if (component_type == char_type_node)
7727 name = "complex char";
7728 else if (component_type == signed_char_type_node)
7729 name = "complex signed char";
7730 else if (component_type == unsigned_char_type_node)
7731 name = "complex unsigned char";
7732 else if (component_type == short_integer_type_node)
7733 name = "complex short int";
7734 else if (component_type == short_unsigned_type_node)
7735 name = "complex short unsigned int";
7736 else if (component_type == integer_type_node)
7737 name = "complex int";
7738 else if (component_type == unsigned_type_node)
7739 name = "complex unsigned int";
7740 else if (component_type == long_integer_type_node)
7741 name = "complex long int";
7742 else if (component_type == long_unsigned_type_node)
7743 name = "complex long unsigned int";
7744 else if (component_type == long_long_integer_type_node)
7745 name = "complex long long int";
7746 else if (component_type == long_long_unsigned_type_node)
7747 name = "complex long long unsigned int";
7748 else
d4b60170 7749 name = 0;
405f63da 7750
d4b60170 7751 if (name != 0)
c2255bc4
AH
7752 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
7753 get_identifier (name), t);
405f63da
MM
7754 }
7755
7548281d 7756 return build_qualified_type (t, TYPE_QUALS (component_type));
c6a1db6c 7757}
8ce94e44
JM
7758
7759/* If TYPE is a real or complex floating-point type and the target
7760 does not directly support arithmetic on TYPE then return the wider
7761 type to be used for arithmetic on TYPE. Otherwise, return
7762 NULL_TREE. */
7763
7764tree
7765excess_precision_type (tree type)
7766{
7767 if (flag_excess_precision != EXCESS_PRECISION_FAST)
7768 {
7769 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
7770 switch (TREE_CODE (type))
7771 {
7772 case REAL_TYPE:
7773 switch (flt_eval_method)
7774 {
7775 case 1:
7776 if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
7777 return double_type_node;
7778 break;
7779 case 2:
7780 if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
7781 || TYPE_MODE (type) == TYPE_MODE (double_type_node))
7782 return long_double_type_node;
7783 break;
7784 default:
7785 gcc_unreachable ();
7786 }
7787 break;
7788 case COMPLEX_TYPE:
7789 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
7790 return NULL_TREE;
7791 switch (flt_eval_method)
7792 {
7793 case 1:
7794 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
7795 return complex_double_type_node;
7796 break;
7797 case 2:
7798 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
7799 || (TYPE_MODE (TREE_TYPE (type))
7800 == TYPE_MODE (double_type_node)))
7801 return complex_long_double_type_node;
7802 break;
7803 default:
7804 gcc_unreachable ();
7805 }
7806 break;
7807 default:
7808 break;
7809 }
7810 }
7811 return NULL_TREE;
7812}
c6a1db6c
RS
7813\f
7814/* Return OP, stripped of any conversions to wider types as much as is safe.
7815 Converting the value back to OP's type makes a value equivalent to OP.
7816
7817 If FOR_TYPE is nonzero, we return a value which, if converted to
7818 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
7819
c6a1db6c
RS
7820 OP must have integer, real or enumeral type. Pointers are not allowed!
7821
7822 There are some cases where the obvious value we could return
dc478a5d 7823 would regenerate to OP if converted to OP's type,
c6a1db6c
RS
7824 but would not extend like OP to wider types.
7825 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
7826 For example, if OP is (unsigned short)(signed char)-1,
7827 we avoid returning (signed char)-1 if FOR_TYPE is int,
7828 even though extending that to an unsigned short would regenerate OP,
7829 since the result of extending (signed char)-1 to (int)
7830 is different from (int) OP. */
7831
7832tree
46c5ad27 7833get_unwidened (tree op, tree for_type)
c6a1db6c
RS
7834{
7835 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
b3694847
SS
7836 tree type = TREE_TYPE (op);
7837 unsigned final_prec
c6a1db6c 7838 = TYPE_PRECISION (for_type != 0 ? for_type : type);
b3694847 7839 int uns
c6a1db6c
RS
7840 = (for_type != 0 && for_type != type
7841 && final_prec > TYPE_PRECISION (type)
8df83eae 7842 && TYPE_UNSIGNED (type));
b3694847 7843 tree win = op;
c6a1db6c 7844
1043771b 7845 while (CONVERT_EXPR_P (op))
c6a1db6c 7846 {
145357a4
JJ
7847 int bitschange;
7848
7849 /* TYPE_PRECISION on vector types has different meaning
7850 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
7851 so avoid them here. */
7852 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
7853 break;
7854
7855 bitschange = TYPE_PRECISION (TREE_TYPE (op))
7856 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
c6a1db6c
RS
7857
7858 /* Truncations are many-one so cannot be removed.
7859 Unless we are later going to truncate down even farther. */
7860 if (bitschange < 0
7861 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
7862 break;
7863
7864 /* See what's inside this conversion. If we decide to strip it,
7865 we will set WIN. */
7866 op = TREE_OPERAND (op, 0);
7867
7868 /* If we have not stripped any zero-extensions (uns is 0),
7869 we can strip any kind of extension.
7870 If we have previously stripped a zero-extension,
7871 only zero-extensions can safely be stripped.
7872 Any extension can be stripped if the bits it would produce
7873 are all going to be discarded later by truncating to FOR_TYPE. */
7874
7875 if (bitschange > 0)
7876 {
7877 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
7878 win = op;
8df83eae 7879 /* TYPE_UNSIGNED says whether this is a zero-extension.
c6a1db6c
RS
7880 Let's avoid computing it if it does not affect WIN
7881 and if UNS will not be needed again. */
362cb1bb 7882 if ((uns
1043771b 7883 || CONVERT_EXPR_P (op))
8df83eae 7884 && TYPE_UNSIGNED (TREE_TYPE (op)))
c6a1db6c
RS
7885 {
7886 uns = 1;
7887 win = op;
7888 }
7889 }
7890 }
7891
d977cb9c
RG
7892 /* If we finally reach a constant see if it fits in for_type and
7893 in that case convert it. */
7894 if (for_type
7895 && TREE_CODE (win) == INTEGER_CST
7896 && TREE_TYPE (win) != for_type
7897 && int_fits_type_p (win, for_type))
7898 win = fold_convert (for_type, win);
7899
c6a1db6c
RS
7900 return win;
7901}
7902\f
7903/* Return OP or a simpler expression for a narrower value
7904 which can be sign-extended or zero-extended to give back OP.
7905 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
7906 or 0 if the value should be sign-extended. */
7907
7908tree
46c5ad27 7909get_narrower (tree op, int *unsignedp_ptr)
c6a1db6c 7910{
b3694847 7911 int uns = 0;
c6a1db6c 7912 int first = 1;
b3694847 7913 tree win = op;
beed8fc0 7914 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
c6a1db6c
RS
7915
7916 while (TREE_CODE (op) == NOP_EXPR)
7917 {
b3694847 7918 int bitschange
d4b60170
RK
7919 = (TYPE_PRECISION (TREE_TYPE (op))
7920 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
c6a1db6c
RS
7921
7922 /* Truncations are many-one so cannot be removed. */
7923 if (bitschange < 0)
7924 break;
7925
7926 /* See what's inside this conversion. If we decide to strip it,
7927 we will set WIN. */
c6a1db6c
RS
7928
7929 if (bitschange > 0)
7930 {
0a71919d 7931 op = TREE_OPERAND (op, 0);
c6a1db6c
RS
7932 /* An extension: the outermost one can be stripped,
7933 but remember whether it is zero or sign extension. */
7934 if (first)
8df83eae 7935 uns = TYPE_UNSIGNED (TREE_TYPE (op));
c6a1db6c
RS
7936 /* Otherwise, if a sign extension has been stripped,
7937 only sign extensions can now be stripped;
7938 if a zero extension has been stripped, only zero-extensions. */
8df83eae 7939 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
c6a1db6c
RS
7940 break;
7941 first = 0;
7942 }
e02b9957
DE
7943 else /* bitschange == 0 */
7944 {
7945 /* A change in nominal type can always be stripped, but we must
7946 preserve the unsignedness. */
7947 if (first)
8df83eae 7948 uns = TYPE_UNSIGNED (TREE_TYPE (op));
e02b9957 7949 first = 0;
0a71919d 7950 op = TREE_OPERAND (op, 0);
beed8fc0
AO
7951 /* Keep trying to narrow, but don't assign op to win if it
7952 would turn an integral type into something else. */
7953 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
7954 continue;
e02b9957 7955 }
c6a1db6c
RS
7956
7957 win = op;
7958 }
7959
7960 if (TREE_CODE (op) == COMPONENT_REF
7961 /* Since type_for_size always gives an integer type. */
0fba7208 7962 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
325217ed 7963 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
0fba7208 7964 /* Ensure field is laid out already. */
44de5aeb
RK
7965 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
7966 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
c6a1db6c 7967 {
0fba7208
RK
7968 unsigned HOST_WIDE_INT innerprec
7969 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
a150de29 7970 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8df83eae 7971 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
ae2bcd98 7972 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
c6a1db6c
RS
7973
7974 /* We can get this structure field in a narrower type that fits it,
7975 but the resulting extension to its nominal type (a fullword type)
7976 must satisfy the same conditions as for other extensions.
7977
7978 Do this only for fields that are aligned (not bit-fields),
7979 because when bit-field insns will be used there is no
7980 advantage in doing this. */
7981
7982 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
7983 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
a150de29 7984 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
c6a1db6c
RS
7985 && type != 0)
7986 {
7987 if (first)
a150de29 7988 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
afe1a916 7989 win = fold_convert (type, op);
c6a1db6c
RS
7990 }
7991 }
afe1a916 7992
c6a1db6c
RS
7993 *unsignedp_ptr = uns;
7994 return win;
7995}
7996\f
88e06841 7997/* Returns true if integer constant C has a value that is permissible
c6a1db6c
RS
7998 for type TYPE (an INTEGER_TYPE). */
7999
88e06841 8000bool
9566a759 8001int_fits_type_p (const_tree c, const_tree type)
c6a1db6c 8002{
5b429886
JJ
8003 tree type_low_bound, type_high_bound;
8004 bool ok_for_low_bound, ok_for_high_bound, unsc;
8005 double_int dc, dd;
8006
8007 dc = tree_to_double_int (c);
8008 unsc = TYPE_UNSIGNED (TREE_TYPE (c));
8009
8010 if (TREE_CODE (TREE_TYPE (c)) == INTEGER_TYPE
8011 && TYPE_IS_SIZETYPE (TREE_TYPE (c))
8012 && unsc)
8013 /* So c is an unsigned integer whose type is sizetype and type is not.
8014 sizetype'd integers are sign extended even though they are
8015 unsigned. If the integer value fits in the lower end word of c,
8016 and if the higher end word has all its bits set to 1, that
8017 means the higher end bits are set to 1 only for sign extension.
8018 So let's convert c into an equivalent zero extended unsigned
8019 integer. */
8020 dc = double_int_zext (dc, TYPE_PRECISION (TREE_TYPE (c)));
8021
8022retry:
8023 type_low_bound = TYPE_MIN_VALUE (type);
8024 type_high_bound = TYPE_MAX_VALUE (type);
4694840a
OH
8025
8026 /* If at least one bound of the type is a constant integer, we can check
8027 ourselves and maybe make a decision. If no such decision is possible, but
8028 this type is a subtype, try checking against that. Otherwise, use
88e06841 8029 double_int_fits_to_tree_p, which checks against the precision.
4694840a
OH
8030
8031 Compute the status for each possibly constant bound, and return if we see
8032 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8033 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8034 for "constant known to fit". */
8035
5b429886 8036 /* Check if c >= type_low_bound. */
4694840a 8037 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
3401c26b 8038 {
5b429886
JJ
8039 dd = tree_to_double_int (type_low_bound);
8040 if (TREE_CODE (type) == INTEGER_TYPE
8041 && TYPE_IS_SIZETYPE (type)
8042 && TYPE_UNSIGNED (type))
8043 dd = double_int_zext (dd, TYPE_PRECISION (type));
8044 if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_low_bound)))
8045 {
8046 int c_neg = (!unsc && double_int_negative_p (dc));
8047 int t_neg = (unsc && double_int_negative_p (dd));
8048
8049 if (c_neg && !t_neg)
88e06841 8050 return false;
5b429886 8051 if ((c_neg || !t_neg) && double_int_ucmp (dc, dd) < 0)
88e06841 8052 return false;
5b429886
JJ
8053 }
8054 else if (double_int_cmp (dc, dd, unsc) < 0)
88e06841 8055 return false;
4634cf7e 8056 ok_for_low_bound = true;
3401c26b 8057 }
4634cf7e
RS
8058 else
8059 ok_for_low_bound = false;
4694840a
OH
8060
8061 /* Check if c <= type_high_bound. */
8062 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8063 {
5b429886
JJ
8064 dd = tree_to_double_int (type_high_bound);
8065 if (TREE_CODE (type) == INTEGER_TYPE
8066 && TYPE_IS_SIZETYPE (type)
8067 && TYPE_UNSIGNED (type))
8068 dd = double_int_zext (dd, TYPE_PRECISION (type));
8069 if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_high_bound)))
8070 {
8071 int c_neg = (!unsc && double_int_negative_p (dc));
8072 int t_neg = (unsc && double_int_negative_p (dd));
8073
8074 if (t_neg && !c_neg)
88e06841 8075 return false;
5b429886 8076 if ((t_neg || !c_neg) && double_int_ucmp (dc, dd) > 0)
88e06841 8077 return false;
5b429886
JJ
8078 }
8079 else if (double_int_cmp (dc, dd, unsc) > 0)
88e06841 8080 return false;
4634cf7e 8081 ok_for_high_bound = true;
4694840a 8082 }
4634cf7e
RS
8083 else
8084 ok_for_high_bound = false;
4694840a
OH
8085
8086 /* If the constant fits both bounds, the result is known. */
4634cf7e 8087 if (ok_for_low_bound && ok_for_high_bound)
88e06841 8088 return true;
4694840a 8089
4634cf7e
RS
8090 /* Perform some generic filtering which may allow making a decision
8091 even if the bounds are not constant. First, negative integers
8092 never fit in unsigned types, */
5b429886 8093 if (TYPE_UNSIGNED (type) && !unsc && double_int_negative_p (dc))
88e06841 8094 return false;
4634cf7e
RS
8095
8096 /* Second, narrower types always fit in wider ones. */
8097 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
88e06841 8098 return true;
4634cf7e
RS
8099
8100 /* Third, unsigned integers with top bit set never fit signed types. */
5b429886
JJ
8101 if (! TYPE_UNSIGNED (type) && unsc)
8102 {
8103 int prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c))) - 1;
8104 if (prec < HOST_BITS_PER_WIDE_INT)
8105 {
8106 if (((((unsigned HOST_WIDE_INT) 1) << prec) & dc.low) != 0)
88e06841 8107 return false;
5b429886
JJ
8108 }
8109 else if (((((unsigned HOST_WIDE_INT) 1)
8110 << (prec - HOST_BITS_PER_WIDE_INT)) & dc.high) != 0)
88e06841 8111 return false;
5b429886 8112 }
4634cf7e 8113
4694840a 8114 /* If we haven't been able to decide at this point, there nothing more we
d25f3b83
EB
8115 can check ourselves here. Look at the base type if we have one and it
8116 has the same precision. */
8117 if (TREE_CODE (type) == INTEGER_TYPE
8118 && TREE_TYPE (type) != 0
8119 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
5b429886
JJ
8120 {
8121 type = TREE_TYPE (type);
8122 goto retry;
8123 }
46c5ad27 8124
88e06841
AS
8125 /* Or to double_int_fits_to_tree_p, if nothing else. */
8126 return double_int_fits_to_tree_p (type, dc);
c6a1db6c
RS
8127}
8128
e4fd22c6
BM
8129/* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8130 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8131 represented (assuming two's-complement arithmetic) within the bit
8132 precision of the type are returned instead. */
8133
8134void
22ea9ec0 8135get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
e4fd22c6
BM
8136{
8137 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8138 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8139 mpz_set_double_int (min, tree_to_double_int (TYPE_MIN_VALUE (type)),
8140 TYPE_UNSIGNED (type));
8141 else
8142 {
8143 if (TYPE_UNSIGNED (type))
8144 mpz_set_ui (min, 0);
8145 else
8146 {
8147 double_int mn;
8148 mn = double_int_mask (TYPE_PRECISION (type) - 1);
8149 mn = double_int_sext (double_int_add (mn, double_int_one),
8150 TYPE_PRECISION (type));
8151 mpz_set_double_int (min, mn, false);
8152 }
8153 }
8154
b8698a0f 8155 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
e4fd22c6
BM
8156 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8157 mpz_set_double_int (max, tree_to_double_int (TYPE_MAX_VALUE (type)),
8158 TYPE_UNSIGNED (type));
8159 else
8160 {
8161 if (TYPE_UNSIGNED (type))
8162 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type)),
8163 true);
8164 else
8165 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type) - 1),
8166 true);
8167 }
8168}
8169
726a989a 8170/* Return true if VAR is an automatic variable defined in function FN. */
50886bf1
RG
8171
8172bool
58f9752a 8173auto_var_in_fn_p (const_tree var, const_tree fn)
50886bf1
RG
8174{
8175 return (DECL_P (var) && DECL_CONTEXT (var) == fn
a07ecd2b
JJ
8176 && ((((TREE_CODE (var) == VAR_DECL && ! DECL_EXTERNAL (var))
8177 || TREE_CODE (var) == PARM_DECL)
50886bf1
RG
8178 && ! TREE_STATIC (var))
8179 || TREE_CODE (var) == LABEL_DECL
8180 || TREE_CODE (var) == RESULT_DECL));
8181}
8182
5377d5ba
RK
8183/* Subprogram of following function. Called by walk_tree.
8184
8185 Return *TP if it is an automatic variable or parameter of the
8186 function passed in as DATA. */
8187
8188static tree
8189find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8190{
8191 tree fn = (tree) data;
8192
8193 if (TYPE_P (*tp))
8194 *walk_subtrees = 0;
8195
6615c446 8196 else if (DECL_P (*tp)
50886bf1 8197 && auto_var_in_fn_p (*tp, fn))
5377d5ba
RK
8198 return *tp;
8199
8200 return NULL_TREE;
8201}
8202
8bcefb43 8203/* Returns true if T is, contains, or refers to a type with variable
ca84a9a2
MS
8204 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8205 arguments, but not the return type. If FN is nonzero, only return
8206 true if a modifier of the type or position of FN is a variable or
8207 parameter inside FN.
5377d5ba
RK
8208
8209 This concept is more general than that of C99 'variably modified types':
8210 in C99, a struct type is never variably modified because a VLA may not
8211 appear as a structure member. However, in GNU C code like:
46c5ad27 8212
8bcefb43
ZW
8213 struct S { int i[f()]; };
8214
8215 is valid, and other languages may define similar constructs. */
8216
8217bool
5377d5ba 8218variably_modified_type_p (tree type, tree fn)
8bcefb43 8219{
3c2a7a6a
RH
8220 tree t;
8221
5377d5ba
RK
8222/* Test if T is either variable (if FN is zero) or an expression containing
8223 a variable in FN. */
8224#define RETURN_TRUE_IF_VAR(T) \
8225 do { tree _t = (T); \
8226 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
8227 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8228 return true; } while (0)
8229
c246c65d
JM
8230 if (type == error_mark_node)
8231 return false;
8232
52ffd86e 8233 /* If TYPE itself has variable size, it is variably modified. */
5377d5ba 8234 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
2e3b8fe7 8235 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8bcefb43 8236
3c2a7a6a
RH
8237 switch (TREE_CODE (type))
8238 {
8239 case POINTER_TYPE:
8240 case REFERENCE_TYPE:
1c9766da 8241 case VECTOR_TYPE:
5377d5ba 8242 if (variably_modified_type_p (TREE_TYPE (type), fn))
1c9766da
RK
8243 return true;
8244 break;
46c5ad27 8245
3c2a7a6a
RH
8246 case FUNCTION_TYPE:
8247 case METHOD_TYPE:
ca84a9a2
MS
8248 /* If TYPE is a function type, it is variably modified if the
8249 return type is variably modified. */
5377d5ba 8250 if (variably_modified_type_p (TREE_TYPE (type), fn))
1c9766da 8251 return true;
3c2a7a6a 8252 break;
8bcefb43 8253
3c2a7a6a 8254 case INTEGER_TYPE:
1c9766da 8255 case REAL_TYPE:
325217ed 8256 case FIXED_POINT_TYPE:
1c9766da
RK
8257 case ENUMERAL_TYPE:
8258 case BOOLEAN_TYPE:
3c2a7a6a
RH
8259 /* Scalar types are variably modified if their end points
8260 aren't constant. */
5377d5ba
RK
8261 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8262 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
1c9766da
RK
8263 break;
8264
8265 case RECORD_TYPE:
8266 case UNION_TYPE:
8267 case QUAL_UNION_TYPE:
52ffd86e 8268 /* We can't see if any of the fields are variably-modified by the
1c9766da
RK
8269 definition we normally use, since that would produce infinite
8270 recursion via pointers. */
8271 /* This is variably modified if some field's type is. */
910ad8de 8272 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
1c9766da
RK
8273 if (TREE_CODE (t) == FIELD_DECL)
8274 {
5377d5ba
RK
8275 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8276 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8277 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
1c9766da 8278
5377d5ba
RK
8279 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8280 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
1c9766da
RK
8281 }
8282 break;
3c2a7a6a 8283
2e3b8fe7
EB
8284 case ARRAY_TYPE:
8285 /* Do not call ourselves to avoid infinite recursion. This is
8286 variably modified if the element type is. */
8287 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8288 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8289 break;
8290
3c2a7a6a
RH
8291 default:
8292 break;
8bcefb43
ZW
8293 }
8294
8295 /* The current language may have other cases to check, but in general,
8296 all other types are not variably modified. */
5377d5ba
RK
8297 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8298
8299#undef RETURN_TRUE_IF_VAR
8bcefb43
ZW
8300}
8301
140b60b4 8302/* Given a DECL or TYPE, return the scope in which it was declared, or
77a02dba 8303 NULL_TREE if there is no containing scope. */
140b60b4
MM
8304
8305tree
9566a759 8306get_containing_scope (const_tree t)
140b60b4
MM
8307{
8308 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8309}
8310
bfa30b22 8311/* Return the innermost context enclosing DECL that is
c6a1db6c
RS
8312 a FUNCTION_DECL, or zero if none. */
8313
8314tree
9566a759 8315decl_function_context (const_tree decl)
c6a1db6c
RS
8316{
8317 tree context;
8318
bfa30b22 8319 if (TREE_CODE (decl) == ERROR_MARK)
c6a1db6c
RS
8320 return 0;
8321
6ff7fb95
JM
8322 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8323 where we look up the function at runtime. Such functions always take
8324 a first argument of type 'pointer to real context'.
8325
8326 C++ should really be fixed to use DECL_CONTEXT for the real context,
8327 and use something else for the "virtual context". */
8328 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
77a02dba
RK
8329 context
8330 = TYPE_MAIN_VARIANT
8331 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
c6a1db6c 8332 else
bfa30b22 8333 context = DECL_CONTEXT (decl);
c6a1db6c
RS
8334
8335 while (context && TREE_CODE (context) != FUNCTION_DECL)
8336 {
140b60b4 8337 if (TREE_CODE (context) == BLOCK)
c6a1db6c 8338 context = BLOCK_SUPERCONTEXT (context);
dc478a5d 8339 else
140b60b4 8340 context = get_containing_scope (context);
c6a1db6c
RS
8341 }
8342
8343 return context;
8344}
8345
bfa30b22 8346/* Return the innermost context enclosing DECL that is
c0560b8b 8347 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
c6a1db6c
RS
8348 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8349
8350tree
9566a759 8351decl_type_context (const_tree decl)
c6a1db6c 8352{
bfa30b22 8353 tree context = DECL_CONTEXT (decl);
c6a1db6c
RS
8354
8355 while (context)
d1bd0ded
GK
8356 switch (TREE_CODE (context))
8357 {
8358 case NAMESPACE_DECL:
8359 case TRANSLATION_UNIT_DECL:
41077ce4 8360 return NULL_TREE;
7efda054 8361
d1bd0ded
GK
8362 case RECORD_TYPE:
8363 case UNION_TYPE:
8364 case QUAL_UNION_TYPE:
c6a1db6c 8365 return context;
9f63daea 8366
d1bd0ded
GK
8367 case TYPE_DECL:
8368 case FUNCTION_DECL:
c6a1db6c 8369 context = DECL_CONTEXT (context);
d1bd0ded 8370 break;
9f63daea 8371
d1bd0ded 8372 case BLOCK:
c6a1db6c 8373 context = BLOCK_SUPERCONTEXT (context);
d1bd0ded 8374 break;
9f63daea 8375
d1bd0ded 8376 default:
1e128c5f 8377 gcc_unreachable ();
d1bd0ded
GK
8378 }
8379
c6a1db6c
RS
8380 return NULL_TREE;
8381}
8382
582db8e4 8383/* CALL is a CALL_EXPR. Return the declaration for the function
dc478a5d 8384 called, or NULL_TREE if the called function cannot be
582db8e4
MM
8385 determined. */
8386
8387tree
fa233e34 8388get_callee_fndecl (const_tree call)
582db8e4
MM
8389{
8390 tree addr;
8391
3c9bb46e 8392 if (call == error_mark_node)
fa233e34 8393 return error_mark_node;
3c9bb46e 8394
582db8e4
MM
8395 /* It's invalid to call this function with anything but a
8396 CALL_EXPR. */
1e128c5f 8397 gcc_assert (TREE_CODE (call) == CALL_EXPR);
582db8e4
MM
8398
8399 /* The first operand to the CALL is the address of the function
8400 called. */
5039610b 8401 addr = CALL_EXPR_FN (call);
582db8e4 8402
c083cf9a
JM
8403 STRIP_NOPS (addr);
8404
8405 /* If this is a readonly function pointer, extract its initial value. */
8406 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
8407 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
8408 && DECL_INITIAL (addr))
8409 addr = DECL_INITIAL (addr);
8410
582db8e4
MM
8411 /* If the address is just `&f' for some function `f', then we know
8412 that `f' is being called. */
8413 if (TREE_CODE (addr) == ADDR_EXPR
8414 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
a1a0fd4e 8415 return TREE_OPERAND (addr, 0);
9f63daea 8416
2700cb86
AP
8417 /* We couldn't figure out what was being called. */
8418 return NULL_TREE;
582db8e4
MM
8419}
8420
d1485032
JM
8421/* Print debugging information about tree nodes generated during the compile,
8422 and any language-specific information. */
8423
c6a1db6c 8424void
46c5ad27 8425dump_tree_statistics (void)
c6a1db6c 8426{
5e9defae 8427#ifdef GATHER_STATISTICS
c6a1db6c
RS
8428 int i;
8429 int total_nodes, total_bytes;
5e9defae 8430#endif
c6a1db6c
RS
8431
8432 fprintf (stderr, "\n??? tree nodes created\n\n");
8433#ifdef GATHER_STATISTICS
adc4adcd
GP
8434 fprintf (stderr, "Kind Nodes Bytes\n");
8435 fprintf (stderr, "---------------------------------------\n");
c6a1db6c
RS
8436 total_nodes = total_bytes = 0;
8437 for (i = 0; i < (int) all_kinds; i++)
8438 {
adc4adcd 8439 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
c6a1db6c
RS
8440 tree_node_counts[i], tree_node_sizes[i]);
8441 total_nodes += tree_node_counts[i];
8442 total_bytes += tree_node_sizes[i];
8443 }
adc4adcd
GP
8444 fprintf (stderr, "---------------------------------------\n");
8445 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
8446 fprintf (stderr, "---------------------------------------\n");
6de9cd9a
DN
8447 ssanames_print_statistics ();
8448 phinodes_print_statistics ();
c6a1db6c
RS
8449#else
8450 fprintf (stderr, "(No per-node statistics)\n");
8451#endif
d88f311b 8452 print_type_hash_statistics ();
f991abd1 8453 print_debug_expr_statistics ();
833b3afe 8454 print_value_expr_statistics ();
ae2bcd98 8455 lang_hooks.print_statistics ();
c6a1db6c 8456}
bb288278 8457\f
2ce3c6c6 8458#define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
bb288278 8459
2aab7ceb 8460/* Generate a crc32 of a string. */
e2c31432 8461
2aab7ceb
NS
8462unsigned
8463crc32_string (unsigned chksum, const char *string)
e2c31432 8464{
2aab7ceb
NS
8465 do
8466 {
8467 unsigned value = *string << 24;
8468 unsigned ix;
9f63daea 8469
2aab7ceb
NS
8470 for (ix = 8; ix--; value <<= 1)
8471 {
8472 unsigned feedback;
9f63daea 8473
2aab7ceb
NS
8474 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
8475 chksum <<= 1;
8476 chksum ^= feedback;
8477 }
8478 }
8479 while (*string++);
8480 return chksum;
e2c31432
JM
8481}
8482
881c6935
JM
8483/* P is a string that will be used in a symbol. Mask out any characters
8484 that are not valid in that context. */
8485
8486void
46c5ad27 8487clean_symbol_name (char *p)
881c6935
JM
8488{
8489 for (; *p; p++)
0df6c2c7 8490 if (! (ISALNUM (*p)
881c6935
JM
8491#ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8492 || *p == '$'
8493#endif
8494#ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8495 || *p == '.'
8496#endif
0df6c2c7 8497 ))
881c6935
JM
8498 *p = '_';
8499}
3b03c671 8500
5880f14f
GK
8501/* Generate a name for a special-purpose function function.
8502 The generated name may need to be unique across the whole link.
e2c31432 8503 TYPE is some string to identify the purpose of this function to the
5880f14f
GK
8504 linker or collect2; it must start with an uppercase letter,
8505 one of:
8506 I - for constructors
8507 D - for destructors
8508 N - for C++ anonymous namespaces
8509 F - for DWARF unwind frame information. */
bb288278
PB
8510
8511tree
5880f14f 8512get_file_function_name (const char *type)
bb288278
PB
8513{
8514 char *buf;
3b304f5b
ZW
8515 const char *p;
8516 char *q;
bb288278 8517
5880f14f 8518 /* If we already have a name we know to be unique, just use that. */
bb288278 8519 if (first_global_object_name)
3b8031bb 8520 p = q = ASTRDUP (first_global_object_name);
5880f14f
GK
8521 /* If the target is handling the constructors/destructors, they
8522 will be local to this file and the name is only necessary for
b121d18c
JH
8523 debugging purposes.
8524 We also assign sub_I and sub_D sufixes to constructors called from
8525 the global static constructors. These are always local. */
8526 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
8527 || (strncmp (type, "sub_", 4) == 0
8528 && (type[4] == 'I' || type[4] == 'D')))
e21d6c60 8529 {
5880f14f
GK
8530 const char *file = main_input_filename;
8531 if (! file)
8532 file = input_filename;
8533 /* Just use the file's basename, because the full pathname
8534 might be quite long. */
8535 p = strrchr (file, '/');
8536 if (p)
8537 p++;
8538 else
8539 p = file;
8540 p = q = ASTRDUP (p);
e21d6c60 8541 }
bb288278 8542 else
e2c31432 8543 {
5880f14f
GK
8544 /* Otherwise, the name must be unique across the entire link.
8545 We don't have anything that we know to be unique to this translation
e2c31432 8546 unit, so use what we do have and throw in some randomness. */
2aab7ceb 8547 unsigned len;
37b37199
KG
8548 const char *name = weak_global_object_name;
8549 const char *file = main_input_filename;
e2c31432
JM
8550
8551 if (! name)
8552 name = "";
8553 if (! file)
8554 file = input_filename;
8555
2aab7ceb 8556 len = strlen (file);
3d9a9f94 8557 q = (char *) alloca (9 * 2 + len + 1);
2aab7ceb 8558 memcpy (q, file, len + 1);
2aab7ceb 8559
2aab7ceb 8560 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
403d4851 8561 crc32_string (0, get_random_seed (false)));
e2c31432 8562
3b304f5b 8563 p = q;
e2c31432 8564 }
bb288278 8565
3b8031bb 8566 clean_symbol_name (q);
3d9a9f94
KG
8567 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
8568 + strlen (type));
bb288278 8569
dc478a5d 8570 /* Set up the name of the file-level functions we may need.
d4b60170 8571 Use a global object (which is already required to be unique over
bb288278 8572 the program) rather than the file name (which imposes extra
d4b60170 8573 constraints). */
2ce3c6c6 8574 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
bb288278 8575
bb288278
PB
8576 return get_identifier (buf);
8577}
bca949e2 8578\f
f4524c9e 8579#if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
eb34af89 8580
086e3095 8581/* Complain that the tree code of NODE does not match the expected 0
ea1763b1
NS
8582 terminated list of trailing codes. The trailing code list can be
8583 empty, for a more vague error message. FILE, LINE, and FUNCTION
8584 are of the caller. */
dc478a5d 8585
8f985ec4 8586void
741ac903 8587tree_check_failed (const_tree node, const char *file,
086e3095
NS
8588 int line, const char *function, ...)
8589{
8590 va_list args;
741ac903 8591 const char *buffer;
086e3095
NS
8592 unsigned length = 0;
8593 int code;
8594
8595 va_start (args, function);
8596 while ((code = va_arg (args, int)))
8597 length += 4 + strlen (tree_code_name[code]);
8598 va_end (args);
ea1763b1 8599 if (length)
086e3095 8600 {
741ac903 8601 char *tmp;
ea1763b1
NS
8602 va_start (args, function);
8603 length += strlen ("expected ");
3d9a9f94 8604 buffer = tmp = (char *) alloca (length);
ea1763b1
NS
8605 length = 0;
8606 while ((code = va_arg (args, int)))
086e3095 8607 {
ea1763b1 8608 const char *prefix = length ? " or " : "expected ";
b8698a0f 8609
741ac903 8610 strcpy (tmp + length, prefix);
ea1763b1 8611 length += strlen (prefix);
741ac903 8612 strcpy (tmp + length, tree_code_name[code]);
ea1763b1 8613 length += strlen (tree_code_name[code]);
086e3095 8614 }
ea1763b1 8615 va_end (args);
086e3095 8616 }
ea1763b1 8617 else
741ac903 8618 buffer = "unexpected node";
9f63daea 8619
ea1763b1 8620 internal_error ("tree check: %s, have %s in %s, at %s:%d",
086e3095 8621 buffer, tree_code_name[TREE_CODE (node)],
eb34af89
RK
8622 function, trim_filename (file), line);
8623}
8624
086e3095
NS
8625/* Complain that the tree code of NODE does match the expected 0
8626 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8627 the caller. */
eb34af89
RK
8628
8629void
741ac903 8630tree_not_check_failed (const_tree node, const char *file,
086e3095
NS
8631 int line, const char *function, ...)
8632{
8633 va_list args;
8634 char *buffer;
8635 unsigned length = 0;
8636 int code;
8637
8638 va_start (args, function);
8639 while ((code = va_arg (args, int)))
8640 length += 4 + strlen (tree_code_name[code]);
8641 va_end (args);
8642 va_start (args, function);
3d9a9f94 8643 buffer = (char *) alloca (length);
086e3095
NS
8644 length = 0;
8645 while ((code = va_arg (args, int)))
8646 {
8647 if (length)
8648 {
8649 strcpy (buffer + length, " or ");
8650 length += 4;
8651 }
8652 strcpy (buffer + length, tree_code_name[code]);
8653 length += strlen (tree_code_name[code]);
8654 }
8655 va_end (args);
9f63daea 8656
086e3095
NS
8657 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8658 buffer, tree_code_name[TREE_CODE (node)],
eb34af89
RK
8659 function, trim_filename (file), line);
8660}
8661
eb34af89 8662/* Similar to tree_check_failed, except that we check for a class of tree
9ec36da5 8663 code, given in CL. */
dc478a5d 8664
8f985ec4 8665void
741ac903 8666tree_class_check_failed (const_tree node, const enum tree_code_class cl,
6615c446 8667 const char *file, int line, const char *function)
12b195d9 8668{
fce687f8 8669 internal_error
6615c446
JO
8670 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
8671 TREE_CODE_CLASS_STRING (cl),
8672 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
fce687f8 8673 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8f985ec4 8674}
dd5827cb 8675
953ff289
DN
8676/* Similar to tree_check_failed, except that instead of specifying a
8677 dozen codes, use the knowledge that they're all sequential. */
8678
8679void
741ac903 8680tree_range_check_failed (const_tree node, const char *file, int line,
953ff289
DN
8681 const char *function, enum tree_code c1,
8682 enum tree_code c2)
8683{
8684 char *buffer;
8685 unsigned length = 0;
09639a83 8686 unsigned int c;
953ff289
DN
8687
8688 for (c = c1; c <= c2; ++c)
8689 length += 4 + strlen (tree_code_name[c]);
8690
8691 length += strlen ("expected ");
3d9a9f94 8692 buffer = (char *) alloca (length);
953ff289
DN
8693 length = 0;
8694
8695 for (c = c1; c <= c2; ++c)
8696 {
8697 const char *prefix = length ? " or " : "expected ";
8698
8699 strcpy (buffer + length, prefix);
8700 length += strlen (prefix);
8701 strcpy (buffer + length, tree_code_name[c]);
8702 length += strlen (tree_code_name[c]);
8703 }
8704
8705 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8706 buffer, tree_code_name[TREE_CODE (node)],
8707 function, trim_filename (file), line);
8708}
8709
8710
dd5827cb
ILT
8711/* Similar to tree_check_failed, except that we check that a tree does
8712 not have the specified code, given in CL. */
8713
8714void
741ac903 8715tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
dd5827cb
ILT
8716 const char *file, int line, const char *function)
8717{
8718 internal_error
8719 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
8720 TREE_CODE_CLASS_STRING (cl),
8721 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8722 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8723}
8724
aaf46ef9
DN
8725
8726/* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
8727
8728void
741ac903 8729omp_clause_check_failed (const_tree node, const char *file, int line,
aaf46ef9
DN
8730 const char *function, enum omp_clause_code code)
8731{
8732 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
8733 omp_clause_code_name[code], tree_code_name[TREE_CODE (node)],
8734 function, trim_filename (file), line);
8735}
8736
8737
8738/* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
8739
8740void
741ac903 8741omp_clause_range_check_failed (const_tree node, const char *file, int line,
aaf46ef9
DN
8742 const char *function, enum omp_clause_code c1,
8743 enum omp_clause_code c2)
8744{
8745 char *buffer;
8746 unsigned length = 0;
09639a83 8747 unsigned int c;
aaf46ef9
DN
8748
8749 for (c = c1; c <= c2; ++c)
8750 length += 4 + strlen (omp_clause_code_name[c]);
8751
8752 length += strlen ("expected ");
3d9a9f94 8753 buffer = (char *) alloca (length);
aaf46ef9
DN
8754 length = 0;
8755
8756 for (c = c1; c <= c2; ++c)
8757 {
8758 const char *prefix = length ? " or " : "expected ";
8759
8760 strcpy (buffer + length, prefix);
8761 length += strlen (prefix);
8762 strcpy (buffer + length, omp_clause_code_name[c]);
8763 length += strlen (omp_clause_code_name[c]);
8764 }
8765
8766 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8767 buffer, omp_clause_code_name[TREE_CODE (node)],
8768 function, trim_filename (file), line);
8769}
8770
8771
820cc88f
DB
8772#undef DEFTREESTRUCT
8773#define DEFTREESTRUCT(VAL, NAME) NAME,
8774
8775static const char *ts_enum_names[] = {
8776#include "treestruct.def"
8777};
8778#undef DEFTREESTRUCT
8779
8780#define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
8781
8782/* Similar to tree_class_check_failed, except that we check for
8783 whether CODE contains the tree structure identified by EN. */
8784
8785void
b8698a0f 8786tree_contains_struct_check_failed (const_tree node,
820cc88f 8787 const enum tree_node_structure_enum en,
b8698a0f 8788 const char *file, int line,
820cc88f
DB
8789 const char *function)
8790{
8791 internal_error
23204428 8792 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
820cc88f
DB
8793 TS_ENUM_NAME(en),
8794 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8795}
8796
8f985ec4 8797
fa7b533b
ZW
8798/* Similar to above, except that the check is for the bounds of a TREE_VEC's
8799 (dynamically sized) vector. */
8800
8801void
46c5ad27
AJ
8802tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
8803 const char *function)
fa7b533b
ZW
8804{
8805 internal_error
8806 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
8807 idx + 1, len, function, trim_filename (file), line);
8808}
8809
06790e5f 8810/* Similar to above, except that the check is for the bounds of the operand
5039610b 8811 vector of an expression node EXP. */
06790e5f
ZW
8812
8813void
741ac903 8814tree_operand_check_failed (int idx, const_tree exp, const char *file,
46c5ad27 8815 int line, const char *function)
06790e5f 8816{
5039610b 8817 int code = TREE_CODE (exp);
06790e5f
ZW
8818 internal_error
8819 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
5039610b 8820 idx + 1, tree_code_name[code], TREE_OPERAND_LENGTH (exp),
06790e5f
ZW
8821 function, trim_filename (file), line);
8822}
aaf46ef9
DN
8823
8824/* Similar to above, except that the check is for the number of
8825 operands of an OMP_CLAUSE node. */
8826
8827void
9566a759 8828omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
aaf46ef9
DN
8829 int line, const char *function)
8830{
8831 internal_error
8832 ("tree check: accessed operand %d of omp_clause %s with %d operands "
8833 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
8834 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
8835 trim_filename (file), line);
8836}
f4524c9e 8837#endif /* ENABLE_TREE_CHECKING */
81b3411c 8838\f
26277d41
PB
8839/* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
8840 and mapped to the machine mode MODE. Initialize its fields and build
8841 the information necessary for debugging output. */
dc478a5d 8842
26277d41
PB
8843static tree
8844make_vector_type (tree innertype, int nunits, enum machine_mode mode)
4061f623 8845{
ca58211b
PB
8846 tree t;
8847 hashval_t hashcode = 0;
8848
ca58211b 8849 t = make_node (VECTOR_TYPE);
d70b8c3a 8850 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
a4e8ea7f 8851 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
179d2f74 8852 SET_TYPE_MODE (t, mode);
d70b8c3a 8853
06d40de8
DG
8854 if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
8855 SET_TYPE_STRUCTURAL_EQUALITY (t);
8856 else if (TYPE_CANONICAL (innertype) != innertype
8857 || mode != VOIDmode)
b8698a0f 8858 TYPE_CANONICAL (t)
06d40de8
DG
8859 = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
8860
4061f623
BS
8861 layout_type (t);
8862
ca58211b 8863 hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode);
907dd6ae 8864 hashcode = iterative_hash_host_wide_int (nunits, hashcode);
ca58211b 8865 hashcode = iterative_hash_host_wide_int (mode, hashcode);
907dd6ae
RG
8866 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (t)), hashcode);
8867 t = type_hash_canon (hashcode, t);
8868
8869 /* We have built a main variant, based on the main variant of the
8870 inner type. Use it to build the variant we return. */
8871 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
8872 && TREE_TYPE (t) != innertype)
8873 return build_type_attribute_qual_variant (t,
8874 TYPE_ATTRIBUTES (innertype),
8875 TYPE_QUALS (innertype));
8876
8877 return t;
4061f623
BS
8878}
8879
cc27e657
PB
8880static tree
8881make_or_reuse_type (unsigned size, int unsignedp)
8882{
8883 if (size == INT_TYPE_SIZE)
8884 return unsignedp ? unsigned_type_node : integer_type_node;
8885 if (size == CHAR_TYPE_SIZE)
8886 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
8887 if (size == SHORT_TYPE_SIZE)
8888 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
8889 if (size == LONG_TYPE_SIZE)
8890 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
8891 if (size == LONG_LONG_TYPE_SIZE)
8892 return (unsignedp ? long_long_unsigned_type_node
8893 : long_long_integer_type_node);
a6766312
KT
8894 if (size == 128 && int128_integer_type_node)
8895 return (unsignedp ? int128_unsigned_type_node
8896 : int128_integer_type_node);
cc27e657
PB
8897
8898 if (unsignedp)
8899 return make_unsigned_type (size);
8900 else
8901 return make_signed_type (size);
8902}
8903
325217ed
CF
8904/* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
8905
8906static tree
8907make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
8908{
8909 if (satp)
8910 {
8911 if (size == SHORT_FRACT_TYPE_SIZE)
8912 return unsignedp ? sat_unsigned_short_fract_type_node
8913 : sat_short_fract_type_node;
8914 if (size == FRACT_TYPE_SIZE)
8915 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
8916 if (size == LONG_FRACT_TYPE_SIZE)
8917 return unsignedp ? sat_unsigned_long_fract_type_node
8918 : sat_long_fract_type_node;
8919 if (size == LONG_LONG_FRACT_TYPE_SIZE)
8920 return unsignedp ? sat_unsigned_long_long_fract_type_node
8921 : sat_long_long_fract_type_node;
8922 }
8923 else
8924 {
8925 if (size == SHORT_FRACT_TYPE_SIZE)
8926 return unsignedp ? unsigned_short_fract_type_node
8927 : short_fract_type_node;
8928 if (size == FRACT_TYPE_SIZE)
8929 return unsignedp ? unsigned_fract_type_node : fract_type_node;
8930 if (size == LONG_FRACT_TYPE_SIZE)
8931 return unsignedp ? unsigned_long_fract_type_node
8932 : long_fract_type_node;
8933 if (size == LONG_LONG_FRACT_TYPE_SIZE)
8934 return unsignedp ? unsigned_long_long_fract_type_node
8935 : long_long_fract_type_node;
8936 }
8937
8938 return make_fract_type (size, unsignedp, satp);
8939}
8940
8941/* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
8942
8943static tree
8944make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
8945{
8946 if (satp)
8947 {
8948 if (size == SHORT_ACCUM_TYPE_SIZE)
8949 return unsignedp ? sat_unsigned_short_accum_type_node
8950 : sat_short_accum_type_node;
8951 if (size == ACCUM_TYPE_SIZE)
8952 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
8953 if (size == LONG_ACCUM_TYPE_SIZE)
8954 return unsignedp ? sat_unsigned_long_accum_type_node
8955 : sat_long_accum_type_node;
8956 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
8957 return unsignedp ? sat_unsigned_long_long_accum_type_node
8958 : sat_long_long_accum_type_node;
8959 }
8960 else
8961 {
8962 if (size == SHORT_ACCUM_TYPE_SIZE)
8963 return unsignedp ? unsigned_short_accum_type_node
8964 : short_accum_type_node;
8965 if (size == ACCUM_TYPE_SIZE)
8966 return unsignedp ? unsigned_accum_type_node : accum_type_node;
8967 if (size == LONG_ACCUM_TYPE_SIZE)
8968 return unsignedp ? unsigned_long_accum_type_node
8969 : long_accum_type_node;
8970 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
8971 return unsignedp ? unsigned_long_long_accum_type_node
8972 : long_long_accum_type_node;
8973 }
8974
8975 return make_accum_type (size, unsignedp, satp);
8976}
8977
81b3411c
BS
8978/* Create nodes for all integer types (and error_mark_node) using the sizes
8979 of C datatypes. The caller should call set_sizetype soon after calling
8980 this function to select one of the types as sizetype. */
dc478a5d 8981
81b3411c 8982void
3b9e5d95 8983build_common_tree_nodes (bool signed_char)
81b3411c
BS
8984{
8985 error_mark_node = make_node (ERROR_MARK);
8986 TREE_TYPE (error_mark_node) = error_mark_node;
8987
3b9e5d95 8988 initialize_sizetypes ();
fed3cef0 8989
81b3411c
BS
8990 /* Define both `signed char' and `unsigned char'. */
8991 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
05fa7d54 8992 TYPE_STRING_FLAG (signed_char_type_node) = 1;
81b3411c 8993 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
05fa7d54 8994 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
81b3411c
BS
8995
8996 /* Define `char', which is like either `signed char' or `unsigned char'
8997 but not the same as either. */
8998 char_type_node
8999 = (signed_char
9000 ? make_signed_type (CHAR_TYPE_SIZE)
9001 : make_unsigned_type (CHAR_TYPE_SIZE));
05fa7d54 9002 TYPE_STRING_FLAG (char_type_node) = 1;
81b3411c
BS
9003
9004 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9005 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9006 integer_type_node = make_signed_type (INT_TYPE_SIZE);
81b3411c
BS
9007 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9008 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9009 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9010 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9011 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
a6766312
KT
9012#if HOST_BITS_PER_WIDE_INT >= 64
9013 /* TODO: This isn't correct, but as logic depends at the moment on
9014 host's instead of target's wide-integer.
9015 If there is a target not supporting TImode, but has an 128-bit
9016 integer-scalar register, this target check needs to be adjusted. */
9017 if (targetm.scalar_mode_supported_p (TImode))
9018 {
9019 int128_integer_type_node = make_signed_type (128);
9020 int128_unsigned_type_node = make_unsigned_type (128);
9021 }
9022#endif
de7df9eb
JM
9023 /* Define a boolean type. This type only represents boolean values but
9024 may be larger than char depending on the value of BOOL_TYPE_SIZE.
9025 Front ends which want to override this size (i.e. Java) can redefine
9026 boolean_type_node before calling build_common_tree_nodes_2. */
9027 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9028 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
7d60be94 9029 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
de7df9eb
JM
9030 TYPE_PRECISION (boolean_type_node) = 1;
9031
cc27e657
PB
9032 /* Fill in the rest of the sized types. Reuse existing type nodes
9033 when possible. */
9034 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9035 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9036 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9037 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9038 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9039
9040 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9041 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9042 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9043 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9044 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9f63daea 9045
5a98fa7b
MM
9046 access_public_node = get_identifier ("public");
9047 access_protected_node = get_identifier ("protected");
9048 access_private_node = get_identifier ("private");
81b3411c
BS
9049}
9050
81b3411c 9051/* Call this function after calling build_common_tree_nodes and set_sizetype.
fed3cef0 9052 It will create several other common tree nodes. */
d4b60170 9053
81b3411c 9054void
46c5ad27 9055build_common_tree_nodes_2 (int short_double)
81b3411c 9056{
05bccae2 9057 /* Define these next since types below may used them. */
9a9d280e
AS
9058 integer_zero_node = build_int_cst (integer_type_node, 0);
9059 integer_one_node = build_int_cst (integer_type_node, 1);
9060 integer_three_node = build_int_cst (integer_type_node, 3);
9061 integer_minus_one_node = build_int_cst (integer_type_node, -1);
81b3411c 9062
770ae6cc
RK
9063 size_zero_node = size_int (0);
9064 size_one_node = size_int (1);
9065 bitsize_zero_node = bitsize_int (0);
9066 bitsize_one_node = bitsize_int (1);
9067 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
81b3411c 9068
de7df9eb
JM
9069 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9070 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9071
81b3411c 9072 void_type_node = make_node (VOID_TYPE);
05bccae2 9073 layout_type (void_type_node);
d4b60170 9074
81b3411c
BS
9075 /* We are not going to have real types in C with less than byte alignment,
9076 so we might as well not have any types that claim to have it. */
9077 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
11cf4d18 9078 TYPE_USER_ALIGN (void_type_node) = 0;
81b3411c 9079
7d60be94 9080 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
81b3411c
BS
9081 layout_type (TREE_TYPE (null_pointer_node));
9082
9083 ptr_type_node = build_pointer_type (void_type_node);
9084 const_ptr_type_node
9085 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
498c0f27 9086 fileptr_type_node = ptr_type_node;
81b3411c
BS
9087
9088 float_type_node = make_node (REAL_TYPE);
9089 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9090 layout_type (float_type_node);
9091
9092 double_type_node = make_node (REAL_TYPE);
9093 if (short_double)
9094 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
9095 else
9096 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9097 layout_type (double_type_node);
9098
9099 long_double_type_node = make_node (REAL_TYPE);
9100 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9101 layout_type (long_double_type_node);
9102
a2a919aa
KG
9103 float_ptr_type_node = build_pointer_type (float_type_node);
9104 double_ptr_type_node = build_pointer_type (double_type_node);
9105 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9106 integer_ptr_type_node = build_pointer_type (integer_type_node);
9107
167fa32c
EC
9108 /* Fixed size integer types. */
9109 uint32_type_node = build_nonstandard_integer_type (32, true);
9110 uint64_type_node = build_nonstandard_integer_type (64, true);
9111
9a8ce21f
JG
9112 /* Decimal float types. */
9113 dfloat32_type_node = make_node (REAL_TYPE);
b8698a0f 9114 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9a8ce21f 9115 layout_type (dfloat32_type_node);
179d2f74 9116 SET_TYPE_MODE (dfloat32_type_node, SDmode);
9a8ce21f
JG
9117 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9118
9119 dfloat64_type_node = make_node (REAL_TYPE);
9120 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9121 layout_type (dfloat64_type_node);
179d2f74 9122 SET_TYPE_MODE (dfloat64_type_node, DDmode);
9a8ce21f
JG
9123 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9124
9125 dfloat128_type_node = make_node (REAL_TYPE);
b8698a0f 9126 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9a8ce21f 9127 layout_type (dfloat128_type_node);
179d2f74 9128 SET_TYPE_MODE (dfloat128_type_node, TDmode);
9a8ce21f
JG
9129 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
9130
e89886a0
DG
9131 complex_integer_type_node = build_complex_type (integer_type_node);
9132 complex_float_type_node = build_complex_type (float_type_node);
9133 complex_double_type_node = build_complex_type (double_type_node);
9134 complex_long_double_type_node = build_complex_type (long_double_type_node);
81b3411c 9135
325217ed 9136/* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
70d3fcab
AH
9137#define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9138 sat_ ## KIND ## _type_node = \
9139 make_sat_signed_ ## KIND ## _type (SIZE); \
9140 sat_unsigned_ ## KIND ## _type_node = \
9141 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9142 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9143 unsigned_ ## KIND ## _type_node = \
9144 make_unsigned_ ## KIND ## _type (SIZE);
9145
9146#define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
325217ed
CF
9147 sat_ ## WIDTH ## KIND ## _type_node = \
9148 make_sat_signed_ ## KIND ## _type (SIZE); \
9149 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9150 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9151 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9152 unsigned_ ## WIDTH ## KIND ## _type_node = \
9153 make_unsigned_ ## KIND ## _type (SIZE);
9154
9155/* Make fixed-point type nodes based on four different widths. */
9156#define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
70d3fcab
AH
9157 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9158 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9159 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9160 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
325217ed
CF
9161
9162/* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9163#define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9164 NAME ## _type_node = \
9165 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9166 u ## NAME ## _type_node = \
9167 make_or_reuse_unsigned_ ## KIND ## _type \
9168 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9169 sat_ ## NAME ## _type_node = \
9170 make_or_reuse_sat_signed_ ## KIND ## _type \
9171 (GET_MODE_BITSIZE (MODE ## mode)); \
9172 sat_u ## NAME ## _type_node = \
9173 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9174 (GET_MODE_BITSIZE (U ## MODE ## mode));
9175
9176 /* Fixed-point type and mode nodes. */
9177 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
9178 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
9179 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
9180 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
9181 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
9182 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
9183 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
9184 MAKE_FIXED_MODE_NODE (accum, ha, HA)
9185 MAKE_FIXED_MODE_NODE (accum, sa, SA)
9186 MAKE_FIXED_MODE_NODE (accum, da, DA)
9187 MAKE_FIXED_MODE_NODE (accum, ta, TA)
9188
2df88e9f 9189 {
5fd9b178 9190 tree t = targetm.build_builtin_va_list ();
066c84df 9191
4d6922ee 9192 /* Many back-ends define record types without setting TYPE_NAME.
066c84df
AO
9193 If we copied the record type here, we'd keep the original
9194 record type without a name. This breaks name mangling. So,
9195 don't copy record types and let c_common_nodes_and_builtins()
9196 declare the type to be __builtin_va_list. */
9197 if (TREE_CODE (t) != RECORD_TYPE)
8dd16ecc 9198 t = build_variant_type_copy (t);
b8698a0f 9199
066c84df 9200 va_list_type_node = t;
2df88e9f 9201 }
0afeef64
AH
9202}
9203
c6a912da
RH
9204/* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9205
9206static void
9207local_define_builtin (const char *name, tree type, enum built_in_function code,
9208 const char *library_name, int ecf_flags)
9209{
9210 tree decl;
9211
c79efc4d
RÁE
9212 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
9213 library_name, NULL_TREE);
c6a912da
RH
9214 if (ecf_flags & ECF_CONST)
9215 TREE_READONLY (decl) = 1;
9216 if (ecf_flags & ECF_PURE)
becfd6e5
KZ
9217 DECL_PURE_P (decl) = 1;
9218 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
9219 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
c6a912da
RH
9220 if (ecf_flags & ECF_NORETURN)
9221 TREE_THIS_VOLATILE (decl) = 1;
9222 if (ecf_flags & ECF_NOTHROW)
9223 TREE_NOTHROW (decl) = 1;
9224 if (ecf_flags & ECF_MALLOC)
9225 DECL_IS_MALLOC (decl) = 1;
46a4da10
JH
9226 if (ecf_flags & ECF_LEAF)
9227 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
9228 NULL, DECL_ATTRIBUTES (decl));
c6a912da
RH
9229
9230 built_in_decls[code] = decl;
9231 implicit_built_in_decls[code] = decl;
9232}
9233
9234/* Call this function after instantiating all builtins that the language
9235 front end cares about. This will build the rest of the builtins that
384c400a 9236 are relied upon by the tree optimizers and the middle-end. */
c6a912da
RH
9237
9238void
384c400a 9239build_common_builtin_nodes (void)
c6a912da 9240{
6a4825bd 9241 tree tmp, ftype;
c6a912da
RH
9242
9243 if (built_in_decls[BUILT_IN_MEMCPY] == NULL
9244 || built_in_decls[BUILT_IN_MEMMOVE] == NULL)
9245 {
6a4825bd
NF
9246 ftype = build_function_type_list (ptr_type_node,
9247 ptr_type_node, const_ptr_type_node,
9248 size_type_node, NULL_TREE);
c6a912da
RH
9249
9250 if (built_in_decls[BUILT_IN_MEMCPY] == NULL)
9251 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
46a4da10 9252 "memcpy", ECF_NOTHROW | ECF_LEAF);
c6a912da
RH
9253 if (built_in_decls[BUILT_IN_MEMMOVE] == NULL)
9254 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
46a4da10 9255 "memmove", ECF_NOTHROW | ECF_LEAF);
c6a912da
RH
9256 }
9257
9258 if (built_in_decls[BUILT_IN_MEMCMP] == NULL)
9259 {
6a4825bd
NF
9260 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
9261 const_ptr_type_node, size_type_node,
9262 NULL_TREE);
c6a912da 9263 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
46a4da10 9264 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
c6a912da
RH
9265 }
9266
9267 if (built_in_decls[BUILT_IN_MEMSET] == NULL)
9268 {
6a4825bd
NF
9269 ftype = build_function_type_list (ptr_type_node,
9270 ptr_type_node, integer_type_node,
9271 size_type_node, NULL_TREE);
c6a912da 9272 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
46a4da10 9273 "memset", ECF_NOTHROW | ECF_LEAF);
c6a912da
RH
9274 }
9275
9276 if (built_in_decls[BUILT_IN_ALLOCA] == NULL)
9277 {
6a4825bd
NF
9278 ftype = build_function_type_list (ptr_type_node,
9279 size_type_node, NULL_TREE);
c6a912da 9280 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
46a4da10 9281 "alloca", ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
c6a912da
RH
9282 }
9283
29d17485
EB
9284 /* If we're checking the stack, `alloca' can throw. */
9285 if (flag_stack_check)
9286 TREE_NOTHROW (built_in_decls[BUILT_IN_ALLOCA]) = 0;
9287
6a4825bd
NF
9288 ftype = build_function_type_list (void_type_node,
9289 ptr_type_node, ptr_type_node,
9290 ptr_type_node, NULL_TREE);
c6a912da
RH
9291 local_define_builtin ("__builtin_init_trampoline", ftype,
9292 BUILT_IN_INIT_TRAMPOLINE,
46a4da10 9293 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
c6a912da 9294
6a4825bd 9295 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
c6a912da
RH
9296 local_define_builtin ("__builtin_adjust_trampoline", ftype,
9297 BUILT_IN_ADJUST_TRAMPOLINE,
9298 "__builtin_adjust_trampoline",
9299 ECF_CONST | ECF_NOTHROW);
9300
6a4825bd
NF
9301 ftype = build_function_type_list (void_type_node,
9302 ptr_type_node, ptr_type_node, NULL_TREE);
c6a912da
RH
9303 local_define_builtin ("__builtin_nonlocal_goto", ftype,
9304 BUILT_IN_NONLOCAL_GOTO,
9305 "__builtin_nonlocal_goto",
9306 ECF_NORETURN | ECF_NOTHROW);
9307
6a4825bd
NF
9308 ftype = build_function_type_list (void_type_node,
9309 ptr_type_node, ptr_type_node, NULL_TREE);
4f6c2131
EB
9310 local_define_builtin ("__builtin_setjmp_setup", ftype,
9311 BUILT_IN_SETJMP_SETUP,
9312 "__builtin_setjmp_setup", ECF_NOTHROW);
9313
6a4825bd 9314 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
4f6c2131
EB
9315 local_define_builtin ("__builtin_setjmp_dispatcher", ftype,
9316 BUILT_IN_SETJMP_DISPATCHER,
9317 "__builtin_setjmp_dispatcher",
9318 ECF_PURE | ECF_NOTHROW);
9319
6a4825bd 9320 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
4f6c2131
EB
9321 local_define_builtin ("__builtin_setjmp_receiver", ftype,
9322 BUILT_IN_SETJMP_RECEIVER,
9323 "__builtin_setjmp_receiver", ECF_NOTHROW);
9324
6a4825bd 9325 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
c6a912da 9326 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
46a4da10 9327 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
c6a912da 9328
6a4825bd 9329 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
c6a912da
RH
9330 local_define_builtin ("__builtin_stack_restore", ftype,
9331 BUILT_IN_STACK_RESTORE,
46a4da10 9332 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
c6a912da 9333
384c400a
RH
9334 /* If there's a possibility that we might use the ARM EABI, build the
9335 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
9336 if (targetm.arm_eabi_unwinder)
1d65f45c 9337 {
6a4825bd 9338 ftype = build_function_type_list (void_type_node, NULL_TREE);
384c400a
RH
9339 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
9340 BUILT_IN_CXA_END_CLEANUP,
46a4da10 9341 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
1d65f45c 9342 }
384c400a 9343
6a4825bd 9344 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
384c400a
RH
9345 local_define_builtin ("__builtin_unwind_resume", ftype,
9346 BUILT_IN_UNWIND_RESUME,
d5fabb58
JM
9347 ((targetm.except_unwind_info (&global_options)
9348 == UI_SJLJ)
384c400a
RH
9349 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
9350 ECF_NORETURN);
1d65f45c
RH
9351
9352 /* The exception object and filter values from the runtime. The argument
9353 must be zero before exception lowering, i.e. from the front end. After
9354 exception lowering, it will be the region number for the exception
9355 landing pad. These functions are PURE instead of CONST to prevent
9356 them from being hoisted past the exception edge that will initialize
9357 its value in the landing pad. */
6a4825bd
NF
9358 ftype = build_function_type_list (ptr_type_node,
9359 integer_type_node, NULL_TREE);
1d65f45c 9360 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
46a4da10 9361 "__builtin_eh_pointer", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
1d65f45c 9362
6a4825bd
NF
9363 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
9364 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
1d65f45c 9365 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
46a4da10 9366 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
1d65f45c 9367
6a4825bd
NF
9368 ftype = build_function_type_list (void_type_node,
9369 integer_type_node, integer_type_node,
9370 NULL_TREE);
1d65f45c
RH
9371 local_define_builtin ("__builtin_eh_copy_values", ftype,
9372 BUILT_IN_EH_COPY_VALUES,
9373 "__builtin_eh_copy_values", ECF_NOTHROW);
9374
7e7e470f
RH
9375 /* Complex multiplication and division. These are handled as builtins
9376 rather than optabs because emit_library_call_value doesn't support
b8698a0f 9377 complex. Further, we can do slightly better with folding these
7e7e470f
RH
9378 beasties if the real and complex parts of the arguments are separate. */
9379 {
09639a83 9380 int mode;
7e7e470f
RH
9381
9382 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
9383 {
9384 char mode_name_buf[4], *q;
9385 const char *p;
9386 enum built_in_function mcode, dcode;
9387 tree type, inner_type;
9388
09639a83 9389 type = lang_hooks.types.type_for_mode ((enum machine_mode) mode, 0);
7e7e470f
RH
9390 if (type == NULL)
9391 continue;
9392 inner_type = TREE_TYPE (type);
9393
6a4825bd
NF
9394 ftype = build_function_type_list (type, inner_type, inner_type,
9395 inner_type, inner_type, NULL_TREE);
7e7e470f 9396
32e8bb8e
ILT
9397 mcode = ((enum built_in_function)
9398 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9399 dcode = ((enum built_in_function)
9400 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
7e7e470f
RH
9401
9402 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
9403 *q = TOLOWER (*p);
9404 *q = '\0';
9405
9406 built_in_names[mcode] = concat ("__mul", mode_name_buf, "3", NULL);
9407 local_define_builtin (built_in_names[mcode], ftype, mcode,
46a4da10 9408 built_in_names[mcode], ECF_CONST | ECF_NOTHROW | ECF_LEAF);
7e7e470f
RH
9409
9410 built_in_names[dcode] = concat ("__div", mode_name_buf, "3", NULL);
9411 local_define_builtin (built_in_names[dcode], ftype, dcode,
46a4da10 9412 built_in_names[dcode], ECF_CONST | ECF_NOTHROW | ECF_LEAF);
7e7e470f
RH
9413 }
9414 }
c6a912da
RH
9415}
9416
b34417a4
ZL
9417/* HACK. GROSS. This is absolutely disgusting. I wish there was a
9418 better way.
9419
9420 If we requested a pointer to a vector, build up the pointers that
9421 we stripped off while looking for the inner type. Similarly for
9422 return values from functions.
9423
9424 The argument TYPE is the top of the chain, and BOTTOM is the
9425 new type which we will point to. */
9426
9427tree
9428reconstruct_complex_type (tree type, tree bottom)
9429{
9430 tree inner, outer;
b8698a0f 9431
ab44f281
AP
9432 if (TREE_CODE (type) == POINTER_TYPE)
9433 {
9434 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9435 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
9436 TYPE_REF_CAN_ALIAS_ALL (type));
9437 }
9438 else if (TREE_CODE (type) == REFERENCE_TYPE)
b34417a4
ZL
9439 {
9440 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
ab44f281
AP
9441 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
9442 TYPE_REF_CAN_ALIAS_ALL (type));
b34417a4
ZL
9443 }
9444 else if (TREE_CODE (type) == ARRAY_TYPE)
9445 {
9446 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9447 outer = build_array_type (inner, TYPE_DOMAIN (type));
9448 }
9449 else if (TREE_CODE (type) == FUNCTION_TYPE)
9450 {
9451 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9452 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
9453 }
9454 else if (TREE_CODE (type) == METHOD_TYPE)
9455 {
9456 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
037cc9c5
FJ
9457 /* The build_method_type_directly() routine prepends 'this' to argument list,
9458 so we must compensate by getting rid of it. */
b8698a0f
L
9459 outer
9460 = build_method_type_directly
8de08f4c
DG
9461 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
9462 inner,
9463 TREE_CHAIN (TYPE_ARG_TYPES (type)));
b34417a4 9464 }
270e749d
JJ
9465 else if (TREE_CODE (type) == OFFSET_TYPE)
9466 {
9467 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9468 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
9469 }
b34417a4
ZL
9470 else
9471 return bottom;
9472
b5fcfe89
JM
9473 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
9474 TYPE_QUALS (type));
b34417a4
ZL
9475}
9476
26277d41
PB
9477/* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9478 the inner type. */
b34417a4 9479tree
4a5eab38 9480build_vector_type_for_mode (tree innertype, enum machine_mode mode)
0afeef64 9481{
26277d41 9482 int nunits;
27b41650 9483
1e128c5f 9484 switch (GET_MODE_CLASS (mode))
26277d41 9485 {
1e128c5f
GB
9486 case MODE_VECTOR_INT:
9487 case MODE_VECTOR_FLOAT:
325217ed
CF
9488 case MODE_VECTOR_FRACT:
9489 case MODE_VECTOR_UFRACT:
9490 case MODE_VECTOR_ACCUM:
9491 case MODE_VECTOR_UACCUM:
1e128c5f
GB
9492 nunits = GET_MODE_NUNITS (mode);
9493 break;
9494
9495 case MODE_INT:
26277d41 9496 /* Check that there are no leftover bits. */
1e128c5f
GB
9497 gcc_assert (GET_MODE_BITSIZE (mode)
9498 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
4a5eab38 9499
26277d41
PB
9500 nunits = GET_MODE_BITSIZE (mode)
9501 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
1e128c5f
GB
9502 break;
9503
9504 default:
9505 gcc_unreachable ();
26277d41 9506 }
4a5eab38 9507
26277d41
PB
9508 return make_vector_type (innertype, nunits, mode);
9509}
4a5eab38 9510
26277d41
PB
9511/* Similarly, but takes the inner type and number of units, which must be
9512 a power of two. */
9513
9514tree
9515build_vector_type (tree innertype, int nunits)
9516{
9517 return make_vector_type (innertype, nunits, VOIDmode);
4a5eab38
PB
9518}
9519
b6fc2cdb
PB
9520/* Similarly, but takes the inner type and number of units, which must be
9521 a power of two. */
9522
9523tree
9524build_opaque_vector_type (tree innertype, int nunits)
9525{
9526 tree t;
9527 innertype = build_distinct_type_copy (innertype);
9528 t = make_vector_type (innertype, nunits, VOIDmode);
9529 TYPE_VECTOR_OPAQUE (t) = true;
9530 return t;
9531}
9532
ca58211b 9533
27b41650
KG
9534/* Given an initializer INIT, return TRUE if INIT is zero or some
9535 aggregate of zeros. Otherwise return FALSE. */
27b41650 9536bool
9566a759 9537initializer_zerop (const_tree init)
27b41650 9538{
6de9cd9a
DN
9539 tree elt;
9540
27b41650
KG
9541 STRIP_NOPS (init);
9542
9543 switch (TREE_CODE (init))
9544 {
9545 case INTEGER_CST:
9546 return integer_zerop (init);
6de9cd9a 9547
27b41650 9548 case REAL_CST:
6de9cd9a
DN
9549 /* ??? Note that this is not correct for C4X float formats. There,
9550 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9551 negative exponent. */
27b41650
KG
9552 return real_zerop (init)
9553 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
6de9cd9a 9554
325217ed
CF
9555 case FIXED_CST:
9556 return fixed_zerop (init);
9557
27b41650
KG
9558 case COMPLEX_CST:
9559 return integer_zerop (init)
9560 || (real_zerop (init)
9561 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
9562 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
6de9cd9a
DN
9563
9564 case VECTOR_CST:
9565 for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
9566 if (!initializer_zerop (TREE_VALUE (elt)))
e8423af9 9567 return false;
6de9cd9a 9568 return true;
e8423af9 9569
6de9cd9a 9570 case CONSTRUCTOR:
4038c495
GB
9571 {
9572 unsigned HOST_WIDE_INT idx;
6de9cd9a 9573
4038c495
GB
9574 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
9575 if (!initializer_zerop (elt))
9576 return false;
9577 return true;
315a02da
MK
9578 }
9579
9580 case STRING_CST:
9581 {
9582 int i;
9583
9584 /* We need to loop through all elements to handle cases like
9585 "\0" and "\0foobar". */
9586 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
9587 if (TREE_STRING_POINTER (init)[i] != '\0')
9588 return false;
9589
9590 return true;
4038c495 9591 }
6de9cd9a 9592
27b41650
KG
9593 default:
9594 return false;
9595 }
9596}
e2500fed 9597
c2255bc4 9598/* Build an empty statement at location LOC. */
6de9cd9a
DN
9599
9600tree
c2255bc4 9601build_empty_stmt (location_t loc)
6de9cd9a 9602{
c2255bc4
AH
9603 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
9604 SET_EXPR_LOCATION (t, loc);
9605 return t;
6de9cd9a
DN
9606}
9607
6de9cd9a 9608
c2255bc4
AH
9609/* Build an OpenMP clause with code CODE. LOC is the location of the
9610 clause. */
aaf46ef9
DN
9611
9612tree
c2255bc4 9613build_omp_clause (location_t loc, enum omp_clause_code code)
aaf46ef9
DN
9614{
9615 tree t;
9616 int size, length;
9617
9618 length = omp_clause_num_ops[code];
9619 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
9620
a9429e29 9621 t = ggc_alloc_tree_node (size);
aaf46ef9
DN
9622 memset (t, 0, size);
9623 TREE_SET_CODE (t, OMP_CLAUSE);
9624 OMP_CLAUSE_SET_CODE (t, code);
c2255bc4 9625 OMP_CLAUSE_LOCATION (t) = loc;
aaf46ef9
DN
9626
9627#ifdef GATHER_STATISTICS
9628 tree_node_counts[(int) omp_clause_kind]++;
9629 tree_node_sizes[(int) omp_clause_kind] += size;
9630#endif
b8698a0f 9631
aaf46ef9
DN
9632 return t;
9633}
9634
5039610b
SL
9635/* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
9636 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
9637 Except for the CODE and operand count field, other storage for the
9638 object is initialized to zeros. */
9639
9640tree
9641build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
9642{
9643 tree t;
9644 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
9645
9646 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
9647 gcc_assert (len >= 1);
9648
9649#ifdef GATHER_STATISTICS
9650 tree_node_counts[(int) e_kind]++;
9651 tree_node_sizes[(int) e_kind] += length;
9652#endif
9653
a9429e29 9654 t = ggc_alloc_zone_cleared_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
5039610b
SL
9655
9656 TREE_SET_CODE (t, code);
9657
9658 /* Can't use TREE_OPERAND to store the length because if checking is
9659 enabled, it will try to check the length before we store it. :-P */
9660 t->exp.operands[0] = build_int_cst (sizetype, len);
9661
9662 return t;
9663}
9664
5039610b
SL
9665/* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9666 FN and a null static chain slot. NARGS is the number of call arguments
9667 which are specified as "..." arguments. */
9668
9669tree
9670build_call_nary (tree return_type, tree fn, int nargs, ...)
9671{
9672 tree ret;
9673 va_list args;
9674 va_start (args, nargs);
9675 ret = build_call_valist (return_type, fn, nargs, args);
9676 va_end (args);
9677 return ret;
9678}
9679
9680/* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9681 FN and a null static chain slot. NARGS is the number of call arguments
9682 which are specified as a va_list ARGS. */
9683
9684tree
9685build_call_valist (tree return_type, tree fn, int nargs, va_list args)
9686{
9687 tree t;
9688 int i;
9689
9690 t = build_vl_exp (CALL_EXPR, nargs + 3);
9691 TREE_TYPE (t) = return_type;
9692 CALL_EXPR_FN (t) = fn;
9693 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9694 for (i = 0; i < nargs; i++)
9695 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
9696 process_call_operands (t);
9697 return t;
9698}
9699
9700/* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9701 FN and a null static chain slot. NARGS is the number of call arguments
9702 which are specified as a tree array ARGS. */
9703
9704tree
db3927fb
AH
9705build_call_array_loc (location_t loc, tree return_type, tree fn,
9706 int nargs, const tree *args)
5039610b
SL
9707{
9708 tree t;
9709 int i;
9710
9711 t = build_vl_exp (CALL_EXPR, nargs + 3);
9712 TREE_TYPE (t) = return_type;
9713 CALL_EXPR_FN (t) = fn;
9714 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9715 for (i = 0; i < nargs; i++)
9716 CALL_EXPR_ARG (t, i) = args[i];
9717 process_call_operands (t);
db3927fb 9718 SET_EXPR_LOCATION (t, loc);
5039610b
SL
9719 return t;
9720}
9721
c166b898
ILT
9722/* Like build_call_array, but takes a VEC. */
9723
9724tree
9725build_call_vec (tree return_type, tree fn, VEC(tree,gc) *args)
9726{
9727 tree ret, t;
9728 unsigned int ix;
9729
9730 ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
9731 TREE_TYPE (ret) = return_type;
9732 CALL_EXPR_FN (ret) = fn;
9733 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
ac47786e 9734 FOR_EACH_VEC_ELT (tree, args, ix, t)
c166b898
ILT
9735 CALL_EXPR_ARG (ret, ix) = t;
9736 process_call_operands (ret);
9737 return ret;
9738}
9739
aaf46ef9 9740
a7e5372d
ZD
9741/* Returns true if it is possible to prove that the index of
9742 an array access REF (an ARRAY_REF expression) falls into the
9743 array bounds. */
9744
9745bool
9746in_array_bounds_p (tree ref)
9747{
9748 tree idx = TREE_OPERAND (ref, 1);
9749 tree min, max;
9750
9751 if (TREE_CODE (idx) != INTEGER_CST)
9752 return false;
9f63daea 9753
a7e5372d
ZD
9754 min = array_ref_low_bound (ref);
9755 max = array_ref_up_bound (ref);
9756 if (!min
9757 || !max
9758 || TREE_CODE (min) != INTEGER_CST
9759 || TREE_CODE (max) != INTEGER_CST)
9760 return false;
9761
9762 if (tree_int_cst_lt (idx, min)
9763 || tree_int_cst_lt (max, idx))
9764 return false;
9765
9766 return true;
9767}
9768
11fc4275
EB
9769/* Returns true if it is possible to prove that the range of
9770 an array access REF (an ARRAY_RANGE_REF expression) falls
9771 into the array bounds. */
9772
9773bool
9774range_in_array_bounds_p (tree ref)
9775{
9776 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
9777 tree range_min, range_max, min, max;
9778
9779 range_min = TYPE_MIN_VALUE (domain_type);
9780 range_max = TYPE_MAX_VALUE (domain_type);
9781 if (!range_min
9782 || !range_max
9783 || TREE_CODE (range_min) != INTEGER_CST
9784 || TREE_CODE (range_max) != INTEGER_CST)
9785 return false;
9786
9787 min = array_ref_low_bound (ref);
9788 max = array_ref_up_bound (ref);
9789 if (!min
9790 || !max
9791 || TREE_CODE (min) != INTEGER_CST
9792 || TREE_CODE (max) != INTEGER_CST)
9793 return false;
9794
9795 if (tree_int_cst_lt (range_min, min)
9796 || tree_int_cst_lt (max, range_max))
9797 return false;
9798
9799 return true;
9800}
9801
6de9cd9a
DN
9802/* Return true if T (assumed to be a DECL) must be assigned a memory
9803 location. */
9804
9805bool
586de218 9806needs_to_live_in_memory (const_tree t)
6de9cd9a 9807{
cfaab3a9
DN
9808 if (TREE_CODE (t) == SSA_NAME)
9809 t = SSA_NAME_VAR (t);
9810
c597ef4e
DN
9811 return (TREE_ADDRESSABLE (t)
9812 || is_global_var (t)
6de9cd9a 9813 || (TREE_CODE (t) == RESULT_DECL
6938f93f 9814 && !DECL_BY_REFERENCE (t)
ab8907ef 9815 && aggregate_value_p (t, current_function_decl)));
6de9cd9a
DN
9816}
9817
fa27426e
RH
9818/* There are situations in which a language considers record types
9819 compatible which have different field lists. Decide if two fields
9820 are compatible. It is assumed that the parent records are compatible. */
9821
9822bool
6ea2b70d 9823fields_compatible_p (const_tree f1, const_tree f2)
fa27426e
RH
9824{
9825 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1),
9826 DECL_FIELD_BIT_OFFSET (f2), OEP_ONLY_CONST))
9827 return false;
9828
9829 if (!operand_equal_p (DECL_FIELD_OFFSET (f1),
9830 DECL_FIELD_OFFSET (f2), OEP_ONLY_CONST))
9831 return false;
9832
f4088621 9833 if (!types_compatible_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9f63daea 9834 return false;
fa27426e
RH
9835
9836 return true;
9837}
9838
9839/* Locate within RECORD a field that is compatible with ORIG_FIELD. */
9840
9841tree
9842find_compatible_field (tree record, tree orig_field)
9843{
9844 tree f;
9845
9846 for (f = TYPE_FIELDS (record); f ; f = TREE_CHAIN (f))
9847 if (TREE_CODE (f) == FIELD_DECL
9848 && fields_compatible_p (f, orig_field))
9849 return f;
9850
9851 /* ??? Why isn't this on the main fields list? */
9852 f = TYPE_VFIELD (record);
9853 if (f && TREE_CODE (f) == FIELD_DECL
9854 && fields_compatible_p (f, orig_field))
9855 return f;
9856
9857 /* ??? We should abort here, but Java appears to do Bad Things
9858 with inherited fields. */
9859 return orig_field;
9860}
9861
a1a5996d 9862/* Return value of a constant X and sign-extend it. */
56cf8686
SP
9863
9864HOST_WIDE_INT
9566a759 9865int_cst_value (const_tree x)
56cf8686
SP
9866{
9867 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
9868 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
56cf8686 9869
a1a5996d
RG
9870 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9871 gcc_assert (TREE_INT_CST_HIGH (x) == 0
9872 || TREE_INT_CST_HIGH (x) == -1);
56cf8686 9873
a1a5996d
RG
9874 if (bits < HOST_BITS_PER_WIDE_INT)
9875 {
9876 bool negative = ((val >> (bits - 1)) & 1) != 0;
9877 if (negative)
9878 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
9879 else
9880 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
9881 }
56cf8686
SP
9882
9883 return val;
9884}
9885
03bd2f1a
AK
9886/* Return value of a constant X and sign-extend it. */
9887
9888HOST_WIDEST_INT
9889widest_int_cst_value (const_tree x)
9890{
9891 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
9892 unsigned HOST_WIDEST_INT val = TREE_INT_CST_LOW (x);
9893
9894#if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
9895 gcc_assert (HOST_BITS_PER_WIDEST_INT >= 2 * HOST_BITS_PER_WIDE_INT);
0eb92735
RG
9896 val |= (((unsigned HOST_WIDEST_INT) TREE_INT_CST_HIGH (x))
9897 << HOST_BITS_PER_WIDE_INT);
03bd2f1a
AK
9898#else
9899 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9900 gcc_assert (TREE_INT_CST_HIGH (x) == 0
9901 || TREE_INT_CST_HIGH (x) == -1);
9902#endif
9903
9904 if (bits < HOST_BITS_PER_WIDEST_INT)
9905 {
9906 bool negative = ((val >> (bits - 1)) & 1) != 0;
9907 if (negative)
9908 val |= (~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1;
9909 else
9910 val &= ~((~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1);
9911 }
9912
9913 return val;
9914}
9915
12753674
RE
9916/* If TYPE is an integral type, return an equivalent type which is
9917 unsigned iff UNSIGNEDP is true. If TYPE is not an integral type,
9918 return TYPE itself. */
fa27426e 9919
12753674
RE
9920tree
9921signed_or_unsigned_type_for (int unsignedp, tree type)
ca5ba2a3 9922{
12753674
RE
9923 tree t = type;
9924 if (POINTER_TYPE_P (type))
d4ebfa65
BE
9925 {
9926 /* If the pointer points to the normal address space, use the
9927 size_type_node. Otherwise use an appropriate size for the pointer
9928 based on the named address space it points to. */
9929 if (!TYPE_ADDR_SPACE (TREE_TYPE (t)))
9930 t = size_type_node;
d4ebfa65 9931 else
368a05d5 9932 return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
d4ebfa65 9933 }
12753674
RE
9934
9935 if (!INTEGRAL_TYPE_P (t) || TYPE_UNSIGNED (t) == unsignedp)
9936 return t;
b8698a0f 9937
12753674 9938 return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
ca5ba2a3
RAE
9939}
9940
2f4675b4
ZD
9941/* Returns unsigned variant of TYPE. */
9942
9943tree
9944unsigned_type_for (tree type)
9945{
12753674 9946 return signed_or_unsigned_type_for (1, type);
2f4675b4
ZD
9947}
9948
9949/* Returns signed variant of TYPE. */
9950
9951tree
9952signed_type_for (tree type)
9953{
12753674 9954 return signed_or_unsigned_type_for (0, type);
2f4675b4
ZD
9955}
9956
18522563
ZD
9957/* Returns the largest value obtainable by casting something in INNER type to
9958 OUTER type. */
9959
9960tree
9961upper_bound_in_type (tree outer, tree inner)
9962{
9963 unsigned HOST_WIDE_INT lo, hi;
ea9a5df4
KH
9964 unsigned int det = 0;
9965 unsigned oprec = TYPE_PRECISION (outer);
9966 unsigned iprec = TYPE_PRECISION (inner);
9967 unsigned prec;
9968
9969 /* Compute a unique number for every combination. */
9970 det |= (oprec > iprec) ? 4 : 0;
9971 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
9972 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
9973
9974 /* Determine the exponent to use. */
9975 switch (det)
9976 {
9977 case 0:
9978 case 1:
9979 /* oprec <= iprec, outer: signed, inner: don't care. */
9980 prec = oprec - 1;
9981 break;
9982 case 2:
9983 case 3:
9984 /* oprec <= iprec, outer: unsigned, inner: don't care. */
9985 prec = oprec;
9986 break;
9987 case 4:
9988 /* oprec > iprec, outer: signed, inner: signed. */
9989 prec = iprec - 1;
9990 break;
9991 case 5:
9992 /* oprec > iprec, outer: signed, inner: unsigned. */
9993 prec = iprec;
9994 break;
9995 case 6:
9996 /* oprec > iprec, outer: unsigned, inner: signed. */
9997 prec = oprec;
9998 break;
9999 case 7:
10000 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10001 prec = iprec;
10002 break;
10003 default:
10004 gcc_unreachable ();
10005 }
18522563 10006
ea9a5df4
KH
10007 /* Compute 2^^prec - 1. */
10008 if (prec <= HOST_BITS_PER_WIDE_INT)
18522563 10009 {
ea9a5df4
KH
10010 hi = 0;
10011 lo = ((~(unsigned HOST_WIDE_INT) 0)
10012 >> (HOST_BITS_PER_WIDE_INT - prec));
18522563
ZD
10013 }
10014 else
10015 {
ea9a5df4
KH
10016 hi = ((~(unsigned HOST_WIDE_INT) 0)
10017 >> (2 * HOST_BITS_PER_WIDE_INT - prec));
10018 lo = ~(unsigned HOST_WIDE_INT) 0;
18522563
ZD
10019 }
10020
ea9a5df4 10021 return build_int_cst_wide (outer, lo, hi);
18522563
ZD
10022}
10023
10024/* Returns the smallest value obtainable by casting something in INNER type to
10025 OUTER type. */
10026
10027tree
10028lower_bound_in_type (tree outer, tree inner)
10029{
10030 unsigned HOST_WIDE_INT lo, hi;
ea9a5df4
KH
10031 unsigned oprec = TYPE_PRECISION (outer);
10032 unsigned iprec = TYPE_PRECISION (inner);
10033
10034 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10035 and obtain 0. */
10036 if (TYPE_UNSIGNED (outer)
10037 /* If we are widening something of an unsigned type, OUTER type
10038 contains all values of INNER type. In particular, both INNER
10039 and OUTER types have zero in common. */
10040 || (oprec > iprec && TYPE_UNSIGNED (inner)))
18522563 10041 lo = hi = 0;
18522563
ZD
10042 else
10043 {
ea9a5df4
KH
10044 /* If we are widening a signed type to another signed type, we
10045 want to obtain -2^^(iprec-1). If we are keeping the
10046 precision or narrowing to a signed type, we want to obtain
10047 -2^(oprec-1). */
10048 unsigned prec = oprec > iprec ? iprec : oprec;
10049
10050 if (prec <= HOST_BITS_PER_WIDE_INT)
10051 {
10052 hi = ~(unsigned HOST_WIDE_INT) 0;
10053 lo = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1);
10054 }
10055 else
10056 {
10057 hi = ((~(unsigned HOST_WIDE_INT) 0)
10058 << (prec - HOST_BITS_PER_WIDE_INT - 1));
10059 lo = 0;
10060 }
18522563
ZD
10061 }
10062
ea9a5df4 10063 return build_int_cst_wide (outer, lo, hi);
18522563
ZD
10064}
10065
cdef8bc6
KH
10066/* Return nonzero if two operands that are suitable for PHI nodes are
10067 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10068 SSA_NAME or invariant. Note that this is strictly an optimization.
10069 That is, callers of this function can directly call operand_equal_p
10070 and get the same result, only slower. */
10071
10072int
fa233e34 10073operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
cdef8bc6
KH
10074{
10075 if (arg0 == arg1)
10076 return 1;
10077 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
10078 return 0;
10079 return operand_equal_p (arg0, arg1, 0);
10080}
10081
ca4c3169 10082/* Returns number of zeros at the end of binary representation of X.
b8698a0f 10083
ca4c3169
ZD
10084 ??? Use ffs if available? */
10085
10086tree
9566a759 10087num_ending_zeros (const_tree x)
ca4c3169
ZD
10088{
10089 unsigned HOST_WIDE_INT fr, nfr;
10090 unsigned num, abits;
10091 tree type = TREE_TYPE (x);
10092
10093 if (TREE_INT_CST_LOW (x) == 0)
10094 {
10095 num = HOST_BITS_PER_WIDE_INT;
10096 fr = TREE_INT_CST_HIGH (x);
10097 }
10098 else
10099 {
10100 num = 0;
10101 fr = TREE_INT_CST_LOW (x);
10102 }
10103
10104 for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
10105 {
10106 nfr = fr >> abits;
10107 if (nfr << abits == fr)
10108 {
10109 num += abits;
10110 fr = nfr;
10111 }
10112 }
10113
10114 if (num > TYPE_PRECISION (type))
10115 num = TYPE_PRECISION (type);
10116
10117 return build_int_cst_type (type, num);
10118}
10119
b8c4a565
SB
10120
10121#define WALK_SUBTREE(NODE) \
10122 do \
10123 { \
14588106 10124 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
b8c4a565
SB
10125 if (result) \
10126 return result; \
10127 } \
10128 while (0)
10129
10130/* This is a subroutine of walk_tree that walks field of TYPE that are to
10131 be walked whenever a type is seen in the tree. Rest of operands and return
10132 value are as for walk_tree. */
10133
10134static tree
10135walk_type_fields (tree type, walk_tree_fn func, void *data,
14588106 10136 struct pointer_set_t *pset, walk_tree_lh lh)
b8c4a565
SB
10137{
10138 tree result = NULL_TREE;
10139
10140 switch (TREE_CODE (type))
10141 {
10142 case POINTER_TYPE:
10143 case REFERENCE_TYPE:
10144 /* We have to worry about mutually recursive pointers. These can't
10145 be written in C. They can in Ada. It's pathological, but
10146 there's an ACATS test (c38102a) that checks it. Deal with this
10147 by checking if we're pointing to another pointer, that one
10148 points to another pointer, that one does too, and we have no htab.
10149 If so, get a hash table. We check three levels deep to avoid
10150 the cost of the hash table if we don't need one. */
10151 if (POINTER_TYPE_P (TREE_TYPE (type))
10152 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
10153 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
10154 && !pset)
10155 {
10156 result = walk_tree_without_duplicates (&TREE_TYPE (type),
10157 func, data);
10158 if (result)
10159 return result;
10160
10161 break;
10162 }
10163
10164 /* ... fall through ... */
10165
10166 case COMPLEX_TYPE:
10167 WALK_SUBTREE (TREE_TYPE (type));
10168 break;
10169
10170 case METHOD_TYPE:
10171 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
10172
10173 /* Fall through. */
10174
10175 case FUNCTION_TYPE:
10176 WALK_SUBTREE (TREE_TYPE (type));
10177 {
10178 tree arg;
10179
10180 /* We never want to walk into default arguments. */
10181 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
10182 WALK_SUBTREE (TREE_VALUE (arg));
10183 }
10184 break;
10185
10186 case ARRAY_TYPE:
222725d0
MM
10187 /* Don't follow this nodes's type if a pointer for fear that
10188 we'll have infinite recursion. If we have a PSET, then we
10189 need not fear. */
10190 if (pset
10191 || (!POINTER_TYPE_P (TREE_TYPE (type))
10192 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
b8c4a565
SB
10193 WALK_SUBTREE (TREE_TYPE (type));
10194 WALK_SUBTREE (TYPE_DOMAIN (type));
10195 break;
10196
b8c4a565
SB
10197 case OFFSET_TYPE:
10198 WALK_SUBTREE (TREE_TYPE (type));
10199 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
10200 break;
10201
10202 default:
10203 break;
10204 }
10205
10206 return NULL_TREE;
10207}
10208
10209/* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10210 called with the DATA and the address of each sub-tree. If FUNC returns a
0e61db61 10211 non-NULL value, the traversal is stopped, and the value returned by FUNC
b8c4a565
SB
10212 is returned. If PSET is non-NULL it is used to record the nodes visited,
10213 and to avoid visiting a node more than once. */
10214
10215tree
14588106
RG
10216walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
10217 struct pointer_set_t *pset, walk_tree_lh lh)
b8c4a565
SB
10218{
10219 enum tree_code code;
10220 int walk_subtrees;
10221 tree result;
10222
10223#define WALK_SUBTREE_TAIL(NODE) \
10224 do \
10225 { \
10226 tp = & (NODE); \
10227 goto tail_recurse; \
10228 } \
10229 while (0)
10230
10231 tail_recurse:
10232 /* Skip empty subtrees. */
10233 if (!*tp)
10234 return NULL_TREE;
10235
10236 /* Don't walk the same tree twice, if the user has requested
10237 that we avoid doing so. */
10238 if (pset && pointer_set_insert (pset, *tp))
10239 return NULL_TREE;
10240
10241 /* Call the function. */
10242 walk_subtrees = 1;
10243 result = (*func) (tp, &walk_subtrees, data);
10244
10245 /* If we found something, return it. */
10246 if (result)
10247 return result;
10248
10249 code = TREE_CODE (*tp);
10250
10251 /* Even if we didn't, FUNC may have decided that there was nothing
10252 interesting below this point in the tree. */
10253 if (!walk_subtrees)
10254 {
953ff289 10255 /* But we still need to check our siblings. */
b8c4a565 10256 if (code == TREE_LIST)
b8c4a565 10257 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
aaf46ef9 10258 else if (code == OMP_CLAUSE)
953ff289 10259 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
b8c4a565
SB
10260 else
10261 return NULL_TREE;
10262 }
10263
14588106
RG
10264 if (lh)
10265 {
10266 result = (*lh) (tp, &walk_subtrees, func, data, pset);
10267 if (result || !walk_subtrees)
10268 return result;
10269 }
b8c4a565 10270
953ff289 10271 switch (code)
b8c4a565 10272 {
953ff289
DN
10273 case ERROR_MARK:
10274 case IDENTIFIER_NODE:
10275 case INTEGER_CST:
10276 case REAL_CST:
325217ed 10277 case FIXED_CST:
953ff289
DN
10278 case VECTOR_CST:
10279 case STRING_CST:
10280 case BLOCK:
10281 case PLACEHOLDER_EXPR:
10282 case SSA_NAME:
10283 case FIELD_DECL:
10284 case RESULT_DECL:
10285 /* None of these have subtrees other than those already walked
10286 above. */
10287 break;
b8c4a565 10288
953ff289
DN
10289 case TREE_LIST:
10290 WALK_SUBTREE (TREE_VALUE (*tp));
10291 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
10292 break;
b8c4a565 10293
953ff289
DN
10294 case TREE_VEC:
10295 {
10296 int len = TREE_VEC_LENGTH (*tp);
b8c4a565 10297
953ff289
DN
10298 if (len == 0)
10299 break;
b8c4a565 10300
953ff289
DN
10301 /* Walk all elements but the first. */
10302 while (--len)
10303 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
b8c4a565 10304
953ff289
DN
10305 /* Now walk the first one as a tail call. */
10306 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
10307 }
b8c4a565 10308
953ff289
DN
10309 case COMPLEX_CST:
10310 WALK_SUBTREE (TREE_REALPART (*tp));
10311 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
b8c4a565 10312
953ff289
DN
10313 case CONSTRUCTOR:
10314 {
10315 unsigned HOST_WIDE_INT idx;
10316 constructor_elt *ce;
b8c4a565 10317
953ff289
DN
10318 for (idx = 0;
10319 VEC_iterate(constructor_elt, CONSTRUCTOR_ELTS (*tp), idx, ce);
10320 idx++)
10321 WALK_SUBTREE (ce->value);
10322 }
10323 break;
b8c4a565 10324
953ff289
DN
10325 case SAVE_EXPR:
10326 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
b8c4a565 10327
953ff289
DN
10328 case BIND_EXPR:
10329 {
10330 tree decl;
910ad8de 10331 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
b8c4a565 10332 {
953ff289
DN
10333 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
10334 into declarations that are just mentioned, rather than
10335 declared; they don't really belong to this part of the tree.
10336 And, we can see cycles: the initializer for a declaration
10337 can refer to the declaration itself. */
10338 WALK_SUBTREE (DECL_INITIAL (decl));
10339 WALK_SUBTREE (DECL_SIZE (decl));
10340 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
10341 }
10342 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
10343 }
b8c4a565 10344
953ff289
DN
10345 case STATEMENT_LIST:
10346 {
10347 tree_stmt_iterator i;
10348 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
10349 WALK_SUBTREE (*tsi_stmt_ptr (i));
10350 }
10351 break;
b8c4a565 10352
aaf46ef9
DN
10353 case OMP_CLAUSE:
10354 switch (OMP_CLAUSE_CODE (*tp))
10355 {
10356 case OMP_CLAUSE_PRIVATE:
10357 case OMP_CLAUSE_SHARED:
10358 case OMP_CLAUSE_FIRSTPRIVATE:
aaf46ef9
DN
10359 case OMP_CLAUSE_COPYIN:
10360 case OMP_CLAUSE_COPYPRIVATE:
10361 case OMP_CLAUSE_IF:
10362 case OMP_CLAUSE_NUM_THREADS:
10363 case OMP_CLAUSE_SCHEDULE:
10364 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
10365 /* FALLTHRU */
10366
10367 case OMP_CLAUSE_NOWAIT:
10368 case OMP_CLAUSE_ORDERED:
10369 case OMP_CLAUSE_DEFAULT:
a68ab351 10370 case OMP_CLAUSE_UNTIED:
aaf46ef9
DN
10371 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10372
a68ab351
JJ
10373 case OMP_CLAUSE_LASTPRIVATE:
10374 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
10375 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
10376 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10377
10378 case OMP_CLAUSE_COLLAPSE:
10379 {
10380 int i;
10381 for (i = 0; i < 3; i++)
10382 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10383 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10384 }
10385
aaf46ef9
DN
10386 case OMP_CLAUSE_REDUCTION:
10387 {
10388 int i;
10389 for (i = 0; i < 4; i++)
10390 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10391 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10392 }
10393
10394 default:
10395 gcc_unreachable ();
10396 }
10397 break;
b8c4a565 10398
953ff289
DN
10399 case TARGET_EXPR:
10400 {
10401 int i, len;
10402
10403 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10404 But, we only want to walk once. */
10405 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
10406 for (i = 0; i < len; ++i)
10407 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10408 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
10409 }
b8c4a565 10410
953ff289 10411 case DECL_EXPR:
8f6e6bf3
EB
10412 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10413 defining. We only want to walk into these fields of a type in this
10414 case and not in the general case of a mere reference to the type.
10415
10416 The criterion is as follows: if the field can be an expression, it
10417 must be walked only here. This should be in keeping with the fields
10418 that are directly gimplified in gimplify_type_sizes in order for the
10419 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10420 variable-sized types.
b8698a0f 10421
8f6e6bf3
EB
10422 Note that DECLs get walked as part of processing the BIND_EXPR. */
10423 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
953ff289
DN
10424 {
10425 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
8f6e6bf3
EB
10426 if (TREE_CODE (*type_p) == ERROR_MARK)
10427 return NULL_TREE;
4038c495 10428
953ff289
DN
10429 /* Call the function for the type. See if it returns anything or
10430 doesn't want us to continue. If we are to continue, walk both
10431 the normal fields and those for the declaration case. */
10432 result = (*func) (type_p, &walk_subtrees, data);
10433 if (result || !walk_subtrees)
8f6e6bf3 10434 return result;
b8c4a565 10435
14588106 10436 result = walk_type_fields (*type_p, func, data, pset, lh);
953ff289
DN
10437 if (result)
10438 return result;
b8c4a565 10439
953ff289 10440 /* If this is a record type, also walk the fields. */
d7f09764 10441 if (RECORD_OR_UNION_TYPE_P (*type_p))
953ff289
DN
10442 {
10443 tree field;
b8c4a565 10444
953ff289 10445 for (field = TYPE_FIELDS (*type_p); field;
910ad8de 10446 field = DECL_CHAIN (field))
953ff289
DN
10447 {
10448 /* We'd like to look at the type of the field, but we can
10449 easily get infinite recursion. So assume it's pointed
10450 to elsewhere in the tree. Also, ignore things that
10451 aren't fields. */
10452 if (TREE_CODE (field) != FIELD_DECL)
10453 continue;
10454
10455 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
10456 WALK_SUBTREE (DECL_SIZE (field));
10457 WALK_SUBTREE (DECL_SIZE_UNIT (field));
10458 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
10459 WALK_SUBTREE (DECL_QUALIFIER (field));
10460 }
10461 }
b8c4a565 10462
8f6e6bf3
EB
10463 /* Same for scalar types. */
10464 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
10465 || TREE_CODE (*type_p) == ENUMERAL_TYPE
10466 || TREE_CODE (*type_p) == INTEGER_TYPE
325217ed 10467 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
8f6e6bf3
EB
10468 || TREE_CODE (*type_p) == REAL_TYPE)
10469 {
10470 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
10471 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
10472 }
10473
953ff289
DN
10474 WALK_SUBTREE (TYPE_SIZE (*type_p));
10475 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
b8c4a565 10476 }
953ff289
DN
10477 /* FALLTHRU */
10478
10479 default:
726a989a 10480 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
953ff289
DN
10481 {
10482 int i, len;
10483
10484 /* Walk over all the sub-trees of this operand. */
5039610b 10485 len = TREE_OPERAND_LENGTH (*tp);
953ff289
DN
10486
10487 /* Go through the subtrees. We need to do this in forward order so
10488 that the scope of a FOR_EXPR is handled properly. */
10489 if (len)
10490 {
10491 for (i = 0; i < len - 1; ++i)
726a989a
RB
10492 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10493 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
953ff289
DN
10494 }
10495 }
953ff289
DN
10496 /* If this is a type, walk the needed fields in the type. */
10497 else if (TYPE_P (*tp))
14588106 10498 return walk_type_fields (*tp, func, data, pset, lh);
953ff289 10499 break;
b8c4a565
SB
10500 }
10501
10502 /* We didn't find what we were looking for. */
10503 return NULL_TREE;
10504
10505#undef WALK_SUBTREE_TAIL
10506}
10507#undef WALK_SUBTREE
10508
10509/* Like walk_tree, but does not walk duplicate nodes more than once. */
10510
10511tree
14588106
RG
10512walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
10513 walk_tree_lh lh)
b8c4a565
SB
10514{
10515 tree result;
10516 struct pointer_set_t *pset;
10517
10518 pset = pointer_set_create ();
14588106 10519 result = walk_tree_1 (tp, func, data, pset, lh);
b8c4a565
SB
10520 pointer_set_destroy (pset);
10521 return result;
10522}
10523
953ff289 10524
07beea0d
AH
10525tree *
10526tree_block (tree t)
10527{
10528 char const c = TREE_CODE_CLASS (TREE_CODE (t));
10529
10530 if (IS_EXPR_CODE_CLASS (c))
10531 return &t->exp.block;
07beea0d
AH
10532 gcc_unreachable ();
10533 return NULL;
10534}
10535
c2255bc4
AH
10536/* Create a nameless artificial label and put it in the current
10537 function context. The label has a location of LOC. Returns the
10538 newly created label. */
726a989a
RB
10539
10540tree
c2255bc4 10541create_artificial_label (location_t loc)
726a989a 10542{
c2255bc4
AH
10543 tree lab = build_decl (loc,
10544 LABEL_DECL, NULL_TREE, void_type_node);
726a989a
RB
10545
10546 DECL_ARTIFICIAL (lab) = 1;
10547 DECL_IGNORED_P (lab) = 1;
10548 DECL_CONTEXT (lab) = current_function_decl;
10549 return lab;
10550}
10551
10552/* Given a tree, try to return a useful variable name that we can use
10553 to prefix a temporary that is being assigned the value of the tree.
10554 I.E. given <temp> = &A, return A. */
10555
10556const char *
10557get_name (tree t)
10558{
10559 tree stripped_decl;
10560
10561 stripped_decl = t;
10562 STRIP_NOPS (stripped_decl);
10563 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
10564 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
10565 else
10566 {
10567 switch (TREE_CODE (stripped_decl))
10568 {
10569 case ADDR_EXPR:
10570 return get_name (TREE_OPERAND (stripped_decl, 0));
10571 default:
10572 return NULL;
10573 }
10574 }
10575}
10576
04e1d06b
MM
10577/* Return true if TYPE has a variable argument list. */
10578
10579bool
6e0833db 10580stdarg_p (const_tree fntype)
04e1d06b
MM
10581{
10582 function_args_iterator args_iter;
10583 tree n = NULL_TREE, t;
10584
10585 if (!fntype)
10586 return false;
10587
10588 FOREACH_FUNCTION_ARGS(fntype, t, args_iter)
10589 {
10590 n = t;
10591 }
10592
10593 return n != NULL_TREE && n != void_type_node;
10594}
10595
10596/* Return true if TYPE has a prototype. */
10597
10598bool
10599prototype_p (tree fntype)
10600{
10601 tree t;
10602
10603 gcc_assert (fntype != NULL_TREE);
10604
10605 t = TYPE_ARG_TYPES (fntype);
10606 return (t != NULL_TREE);
10607}
10608
d752cfdb
JJ
10609/* If BLOCK is inlined from an __attribute__((__artificial__))
10610 routine, return pointer to location from where it has been
10611 called. */
10612location_t *
10613block_nonartificial_location (tree block)
10614{
10615 location_t *ret = NULL;
10616
10617 while (block && TREE_CODE (block) == BLOCK
10618 && BLOCK_ABSTRACT_ORIGIN (block))
10619 {
10620 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
10621
e92cbe3a
JJ
10622 while (TREE_CODE (ao) == BLOCK
10623 && BLOCK_ABSTRACT_ORIGIN (ao)
10624 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
d752cfdb
JJ
10625 ao = BLOCK_ABSTRACT_ORIGIN (ao);
10626
10627 if (TREE_CODE (ao) == FUNCTION_DECL)
10628 {
10629 /* If AO is an artificial inline, point RET to the
10630 call site locus at which it has been inlined and continue
10631 the loop, in case AO's caller is also an artificial
10632 inline. */
10633 if (DECL_DECLARED_INLINE_P (ao)
10634 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
10635 ret = &BLOCK_SOURCE_LOCATION (block);
10636 else
10637 break;
10638 }
10639 else if (TREE_CODE (ao) != BLOCK)
10640 break;
10641
10642 block = BLOCK_SUPERCONTEXT (block);
10643 }
10644 return ret;
10645}
10646
9bd9f738
RG
10647
10648/* If EXP is inlined from an __attribute__((__artificial__))
10649 function, return the location of the original call expression. */
10650
10651location_t
10652tree_nonartificial_location (tree exp)
10653{
9f706f23 10654 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
9bd9f738 10655
9f706f23
JJ
10656 if (loc)
10657 return *loc;
10658 else
10659 return EXPR_LOCATION (exp);
9bd9f738
RG
10660}
10661
10662
ab442df7
MM
10663/* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
10664 nodes. */
10665
10666/* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
10667
10668static hashval_t
10669cl_option_hash_hash (const void *x)
10670{
10671 const_tree const t = (const_tree) x;
10672 const char *p;
10673 size_t i;
10674 size_t len = 0;
10675 hashval_t hash = 0;
10676
10677 if (TREE_CODE (t) == OPTIMIZATION_NODE)
10678 {
10679 p = (const char *)TREE_OPTIMIZATION (t);
10680 len = sizeof (struct cl_optimization);
10681 }
10682
10683 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
10684 {
10685 p = (const char *)TREE_TARGET_OPTION (t);
10686 len = sizeof (struct cl_target_option);
10687 }
10688
10689 else
10690 gcc_unreachable ();
10691
10692 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
10693 something else. */
10694 for (i = 0; i < len; i++)
10695 if (p[i])
10696 hash = (hash << 4) ^ ((i << 2) | p[i]);
10697
10698 return hash;
10699}
10700
10701/* Return nonzero if the value represented by *X (an OPTIMIZATION or
10702 TARGET_OPTION tree node) is the same as that given by *Y, which is the
10703 same. */
10704
10705static int
10706cl_option_hash_eq (const void *x, const void *y)
10707{
10708 const_tree const xt = (const_tree) x;
10709 const_tree const yt = (const_tree) y;
10710 const char *xp;
10711 const char *yp;
10712 size_t len;
10713
10714 if (TREE_CODE (xt) != TREE_CODE (yt))
10715 return 0;
10716
10717 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
10718 {
10719 xp = (const char *)TREE_OPTIMIZATION (xt);
10720 yp = (const char *)TREE_OPTIMIZATION (yt);
10721 len = sizeof (struct cl_optimization);
10722 }
10723
10724 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
10725 {
10726 xp = (const char *)TREE_TARGET_OPTION (xt);
10727 yp = (const char *)TREE_TARGET_OPTION (yt);
10728 len = sizeof (struct cl_target_option);
10729 }
10730
10731 else
10732 gcc_unreachable ();
10733
10734 return (memcmp (xp, yp, len) == 0);
10735}
10736
10737/* Build an OPTIMIZATION_NODE based on the current options. */
10738
10739tree
10740build_optimization_node (void)
10741{
10742 tree t;
10743 void **slot;
10744
10745 /* Use the cache of optimization nodes. */
10746
46625112
JM
10747 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
10748 &global_options);
ab442df7
MM
10749
10750 slot = htab_find_slot (cl_option_hash_table, cl_optimization_node, INSERT);
10751 t = (tree) *slot;
10752 if (!t)
10753 {
10754 /* Insert this one into the hash table. */
10755 t = cl_optimization_node;
10756 *slot = t;
10757
10758 /* Make a new node for next time round. */
10759 cl_optimization_node = make_node (OPTIMIZATION_NODE);
10760 }
10761
10762 return t;
10763}
10764
10765/* Build a TARGET_OPTION_NODE based on the current options. */
10766
10767tree
10768build_target_option_node (void)
10769{
10770 tree t;
10771 void **slot;
10772
10773 /* Use the cache of optimization nodes. */
10774
46625112
JM
10775 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
10776 &global_options);
ab442df7
MM
10777
10778 slot = htab_find_slot (cl_option_hash_table, cl_target_option_node, INSERT);
10779 t = (tree) *slot;
10780 if (!t)
10781 {
10782 /* Insert this one into the hash table. */
10783 t = cl_target_option_node;
10784 *slot = t;
10785
10786 /* Make a new node for next time round. */
10787 cl_target_option_node = make_node (TARGET_OPTION_NODE);
10788 }
10789
10790 return t;
10791}
10792
61e04322
JH
10793/* Determine the "ultimate origin" of a block. The block may be an inlined
10794 instance of an inlined instance of a block which is local to an inline
10795 function, so we have to trace all of the way back through the origin chain
10796 to find out what sort of node actually served as the original seed for the
10797 given block. */
10798
10799tree
10800block_ultimate_origin (const_tree block)
10801{
10802 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
10803
10804 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
10805 nodes in the function to point to themselves; ignore that if
10806 we're trying to output the abstract instance of this function. */
10807 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
10808 return NULL_TREE;
10809
10810 if (immediate_origin == NULL_TREE)
10811 return NULL_TREE;
10812 else
10813 {
10814 tree ret_val;
10815 tree lookahead = immediate_origin;
10816
10817 do
10818 {
10819 ret_val = lookahead;
10820 lookahead = (TREE_CODE (ret_val) == BLOCK
10821 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
10822 }
10823 while (lookahead != NULL && lookahead != ret_val);
10824
10825 /* The block's abstract origin chain may not be the *ultimate* origin of
10826 the block. It could lead to a DECL that has an abstract origin set.
10827 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
10828 will give us if it has one). Note that DECL's abstract origins are
10829 supposed to be the most distant ancestor (or so decl_ultimate_origin
10830 claims), so we don't need to loop following the DECL origins. */
10831 if (DECL_P (ret_val))
10832 return DECL_ORIGIN (ret_val);
10833
10834 return ret_val;
10835 }
10836}
10837
a3710436
JH
10838/* Return true if T1 and T2 are equivalent lists. */
10839
10840bool
10841list_equal_p (const_tree t1, const_tree t2)
10842{
10843 for (; t1 && t2; t1 = TREE_CHAIN (t1) , t2 = TREE_CHAIN (t2))
10844 if (TREE_VALUE (t1) != TREE_VALUE (t2))
10845 return false;
10846 return !t1 && !t2;
10847}
10848
23314e77
AN
10849/* Return true iff conversion in EXP generates no instruction. Mark
10850 it inline so that we fully inline into the stripping functions even
10851 though we have two uses of this function. */
10852
10853static inline bool
10854tree_nop_conversion (const_tree exp)
10855{
10856 tree outer_type, inner_type;
10857
10858 if (!CONVERT_EXPR_P (exp)
10859 && TREE_CODE (exp) != NON_LVALUE_EXPR)
10860 return false;
10861 if (TREE_OPERAND (exp, 0) == error_mark_node)
10862 return false;
10863
10864 outer_type = TREE_TYPE (exp);
10865 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
10866
56c47f22
RG
10867 if (!inner_type)
10868 return false;
10869
23314e77
AN
10870 /* Use precision rather then machine mode when we can, which gives
10871 the correct answer even for submode (bit-field) types. */
10872 if ((INTEGRAL_TYPE_P (outer_type)
10873 || POINTER_TYPE_P (outer_type)
10874 || TREE_CODE (outer_type) == OFFSET_TYPE)
10875 && (INTEGRAL_TYPE_P (inner_type)
10876 || POINTER_TYPE_P (inner_type)
10877 || TREE_CODE (inner_type) == OFFSET_TYPE))
10878 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
10879
10880 /* Otherwise fall back on comparing machine modes (e.g. for
10881 aggregate types, floats). */
10882 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
10883}
10884
10885/* Return true iff conversion in EXP generates no instruction. Don't
10886 consider conversions changing the signedness. */
10887
10888static bool
10889tree_sign_nop_conversion (const_tree exp)
10890{
10891 tree outer_type, inner_type;
10892
10893 if (!tree_nop_conversion (exp))
10894 return false;
10895
10896 outer_type = TREE_TYPE (exp);
10897 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
10898
10899 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
10900 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
10901}
10902
10903/* Strip conversions from EXP according to tree_nop_conversion and
10904 return the resulting expression. */
10905
10906tree
10907tree_strip_nop_conversions (tree exp)
10908{
10909 while (tree_nop_conversion (exp))
10910 exp = TREE_OPERAND (exp, 0);
10911 return exp;
10912}
10913
10914/* Strip conversions from EXP according to tree_sign_nop_conversion
10915 and return the resulting expression. */
10916
10917tree
10918tree_strip_sign_nop_conversions (tree exp)
10919{
10920 while (tree_sign_nop_conversion (exp))
10921 exp = TREE_OPERAND (exp, 0);
10922 return exp;
10923}
10924
f9417da1
RG
10925static GTY(()) tree gcc_eh_personality_decl;
10926
10927/* Return the GCC personality function decl. */
10928
10929tree
10930lhd_gcc_personality (void)
10931{
10932 if (!gcc_eh_personality_decl)
bde8a146 10933 gcc_eh_personality_decl = build_personality_function ("gcc");
f9417da1
RG
10934 return gcc_eh_personality_decl;
10935}
a3710436 10936
b258210c
MJ
10937/* Try to find a base info of BINFO that would have its field decl at offset
10938 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
10939 found, return, otherwise return NULL_TREE. */
10940
10941tree
10942get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
10943{
f2f04486 10944 tree type = BINFO_TYPE (binfo);
b258210c 10945
4c203066 10946 while (true)
b258210c 10947 {
b258210c
MJ
10948 HOST_WIDE_INT pos, size;
10949 tree fld;
10950 int i;
10951
f2f04486 10952 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (expected_type))
4c203066 10953 return binfo;
32aa622c 10954 if (offset < 0)
b258210c
MJ
10955 return NULL_TREE;
10956
910ad8de 10957 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
b258210c
MJ
10958 {
10959 if (TREE_CODE (fld) != FIELD_DECL)
10960 continue;
10961
10962 pos = int_bit_position (fld);
10963 size = tree_low_cst (DECL_SIZE (fld), 1);
10964 if (pos <= offset && (pos + size) > offset)
10965 break;
10966 }
32aa622c 10967 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
b258210c
MJ
10968 return NULL_TREE;
10969
32aa622c
MJ
10970 if (!DECL_ARTIFICIAL (fld))
10971 {
10972 binfo = TYPE_BINFO (TREE_TYPE (fld));
10973 if (!binfo)
10974 return NULL_TREE;
10975 }
4c203066
MJ
10976 /* Offset 0 indicates the primary base, whose vtable contents are
10977 represented in the binfo for the derived class. */
32aa622c 10978 else if (offset != 0)
4c203066
MJ
10979 {
10980 tree base_binfo, found_binfo = NULL_TREE;
10981 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
10982 if (TREE_TYPE (base_binfo) == TREE_TYPE (fld))
10983 {
10984 found_binfo = base_binfo;
10985 break;
10986 }
10987 if (!found_binfo)
10988 return NULL_TREE;
10989 binfo = found_binfo;
10990 }
b258210c
MJ
10991
10992 type = TREE_TYPE (fld);
b258210c
MJ
10993 offset -= pos;
10994 }
b258210c
MJ
10995}
10996
e62b90b4
DS
10997/* Returns true if X is a typedef decl. */
10998
10999bool
11000is_typedef_decl (tree x)
11001{
11002 return (x && TREE_CODE (x) == TYPE_DECL
11003 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
11004}
11005
11006/* Returns true iff TYPE is a type variant created for a typedef. */
11007
11008bool
11009typedef_variant_p (tree type)
11010{
11011 return is_typedef_decl (TYPE_NAME (type));
11012}
11013
a803773f
JM
11014/* Warn about a use of an identifier which was marked deprecated. */
11015void
11016warn_deprecated_use (tree node, tree attr)
11017{
11018 const char *msg;
11019
11020 if (node == 0 || !warn_deprecated_decl)
11021 return;
11022
11023 if (!attr)
11024 {
11025 if (DECL_P (node))
11026 attr = DECL_ATTRIBUTES (node);
11027 else if (TYPE_P (node))
11028 {
11029 tree decl = TYPE_STUB_DECL (node);
11030 if (decl)
11031 attr = lookup_attribute ("deprecated",
11032 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
11033 }
11034 }
11035
11036 if (attr)
11037 attr = lookup_attribute ("deprecated", attr);
11038
11039 if (attr)
11040 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
11041 else
11042 msg = NULL;
11043
11044 if (DECL_P (node))
11045 {
11046 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
11047 if (msg)
11048 warning (OPT_Wdeprecated_declarations,
11049 "%qD is deprecated (declared at %s:%d): %s",
11050 node, xloc.file, xloc.line, msg);
11051 else
11052 warning (OPT_Wdeprecated_declarations,
11053 "%qD is deprecated (declared at %s:%d)",
11054 node, xloc.file, xloc.line);
11055 }
11056 else if (TYPE_P (node))
11057 {
11058 tree what = NULL_TREE;
11059 tree decl = TYPE_STUB_DECL (node);
11060
11061 if (TYPE_NAME (node))
11062 {
11063 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
11064 what = TYPE_NAME (node);
11065 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
11066 && DECL_NAME (TYPE_NAME (node)))
11067 what = DECL_NAME (TYPE_NAME (node));
11068 }
11069
11070 if (decl)
11071 {
11072 expanded_location xloc
11073 = expand_location (DECL_SOURCE_LOCATION (decl));
11074 if (what)
11075 {
11076 if (msg)
11077 warning (OPT_Wdeprecated_declarations,
11078 "%qE is deprecated (declared at %s:%d): %s",
11079 what, xloc.file, xloc.line, msg);
11080 else
11081 warning (OPT_Wdeprecated_declarations,
11082 "%qE is deprecated (declared at %s:%d)", what,
11083 xloc.file, xloc.line);
11084 }
11085 else
11086 {
11087 if (msg)
11088 warning (OPT_Wdeprecated_declarations,
11089 "type is deprecated (declared at %s:%d): %s",
11090 xloc.file, xloc.line, msg);
11091 else
11092 warning (OPT_Wdeprecated_declarations,
11093 "type is deprecated (declared at %s:%d)",
11094 xloc.file, xloc.line);
11095 }
11096 }
11097 else
11098 {
11099 if (what)
11100 {
11101 if (msg)
11102 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
11103 what, msg);
11104 else
11105 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
11106 }
11107 else
11108 {
11109 if (msg)
11110 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
11111 msg);
11112 else
11113 warning (OPT_Wdeprecated_declarations, "type is deprecated");
11114 }
11115 }
11116 }
11117}
11118
e2500fed 11119#include "gt-tree.h"