Fix dot dump bug
[official-gcc.git] / gcc / tree.c
blob559e7581ef85ed8260bf1d09ec177fc8af1da13b
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
25 nodes of that code.
27 It is intended to be language-independent, but occasionally
28 calls language-dependent routines defined (for C) in typecheck.c. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "flags.h"
35 #include "tree.h"
36 #include "stor-layout.h"
37 #include "calls.h"
38 #include "attribs.h"
39 #include "varasm.h"
40 #include "tm_p.h"
41 #include "function.h"
42 #include "obstack.h"
43 #include "toplev.h" /* get_random_seed */
44 #include "hashtab.h"
45 #include "filenames.h"
46 #include "output.h"
47 #include "target.h"
48 #include "common/common-target.h"
49 #include "langhooks.h"
50 #include "tree-inline.h"
51 #include "tree-iterator.h"
52 #include "basic-block.h"
53 #include "bitmap.h"
54 #include "pointer-set.h"
55 #include "tree-ssa-alias.h"
56 #include "internal-fn.h"
57 #include "gimple-expr.h"
58 #include "is-a.h"
59 #include "gimple.h"
60 #include "gimple-iterator.h"
61 #include "gimplify.h"
62 #include "gimple-ssa.h"
63 #include "cgraph.h"
64 #include "tree-phinodes.h"
65 #include "stringpool.h"
66 #include "tree-ssanames.h"
67 #include "expr.h"
68 #include "tree-dfa.h"
69 #include "params.h"
70 #include "tree-pass.h"
71 #include "langhooks-def.h"
72 #include "diagnostic.h"
73 #include "tree-diagnostic.h"
74 #include "tree-pretty-print.h"
75 #include "except.h"
76 #include "debug.h"
77 #include "intl.h"
78 #include "wide-int.h"
79 #include "builtins.h"
81 /* Tree code classes. */
83 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
84 #define END_OF_BASE_TREE_CODES tcc_exceptional,
86 const enum tree_code_class tree_code_type[] = {
87 #include "all-tree.def"
90 #undef DEFTREECODE
91 #undef END_OF_BASE_TREE_CODES
93 /* Table indexed by tree code giving number of expression
94 operands beyond the fixed part of the node structure.
95 Not used for types or decls. */
97 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
98 #define END_OF_BASE_TREE_CODES 0,
100 const unsigned char tree_code_length[] = {
101 #include "all-tree.def"
104 #undef DEFTREECODE
105 #undef END_OF_BASE_TREE_CODES
107 /* Names of tree components.
108 Used for printing out the tree and error messages. */
109 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
110 #define END_OF_BASE_TREE_CODES "@dummy",
112 static const char *const tree_code_name[] = {
113 #include "all-tree.def"
116 #undef DEFTREECODE
117 #undef END_OF_BASE_TREE_CODES
119 /* Each tree code class has an associated string representation.
120 These must correspond to the tree_code_class entries. */
122 const char *const tree_code_class_strings[] =
124 "exceptional",
125 "constant",
126 "type",
127 "declaration",
128 "reference",
129 "comparison",
130 "unary",
131 "binary",
132 "statement",
133 "vl_exp",
134 "expression"
137 /* obstack.[ch] explicitly declined to prototype this. */
138 extern int _obstack_allocated_p (struct obstack *h, void *obj);
140 /* Statistics-gathering stuff. */
142 static int tree_code_counts[MAX_TREE_CODES];
143 int tree_node_counts[(int) all_kinds];
144 int tree_node_sizes[(int) all_kinds];
146 /* Keep in sync with tree.h:enum tree_node_kind. */
147 static const char * const tree_node_kind_names[] = {
148 "decls",
149 "types",
150 "blocks",
151 "stmts",
152 "refs",
153 "exprs",
154 "constants",
155 "identifiers",
156 "vecs",
157 "binfos",
158 "ssa names",
159 "constructors",
160 "random kinds",
161 "lang_decl kinds",
162 "lang_type kinds",
163 "omp clauses",
166 /* Unique id for next decl created. */
167 static GTY(()) int next_decl_uid;
168 /* Unique id for next type created. */
169 static GTY(()) int next_type_uid = 1;
170 /* Unique id for next debug decl created. Use negative numbers,
171 to catch erroneous uses. */
172 static GTY(()) int next_debug_decl_uid;
174 /* Since we cannot rehash a type after it is in the table, we have to
175 keep the hash code. */
177 struct GTY(()) type_hash {
178 unsigned long hash;
179 tree type;
182 /* Initial size of the hash table (rounded to next prime). */
183 #define TYPE_HASH_INITIAL_SIZE 1000
185 /* Now here is the hash table. When recording a type, it is added to
186 the slot whose index is the hash code. Note that the hash table is
187 used for several kinds of types (function types, array types and
188 array index range types, for now). While all these live in the
189 same table, they are completely independent, and the hash code is
190 computed differently for each of these. */
192 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
193 htab_t type_hash_table;
195 /* Hash table and temporary node for larger integer const values. */
196 static GTY (()) tree int_cst_node;
197 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
198 htab_t int_cst_hash_table;
200 /* Hash table for optimization flags and target option flags. Use the same
201 hash table for both sets of options. Nodes for building the current
202 optimization and target option nodes. The assumption is most of the time
203 the options created will already be in the hash table, so we avoid
204 allocating and freeing up a node repeatably. */
205 static GTY (()) tree cl_optimization_node;
206 static GTY (()) tree cl_target_option_node;
207 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
208 htab_t cl_option_hash_table;
210 /* General tree->tree mapping structure for use in hash tables. */
213 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
214 htab_t debug_expr_for_decl;
216 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
217 htab_t value_expr_for_decl;
219 static GTY ((if_marked ("tree_vec_map_marked_p"), param_is (struct tree_vec_map)))
220 htab_t debug_args_for_decl;
222 static GTY ((if_marked ("tree_priority_map_marked_p"),
223 param_is (struct tree_priority_map)))
224 htab_t init_priority_for_decl;
226 static void set_type_quals (tree, int);
227 static int type_hash_eq (const void *, const void *);
228 static hashval_t type_hash_hash (const void *);
229 static hashval_t int_cst_hash_hash (const void *);
230 static int int_cst_hash_eq (const void *, const void *);
231 static hashval_t cl_option_hash_hash (const void *);
232 static int cl_option_hash_eq (const void *, const void *);
233 static void print_type_hash_statistics (void);
234 static void print_debug_expr_statistics (void);
235 static void print_value_expr_statistics (void);
236 static int type_hash_marked_p (const void *);
237 static unsigned int type_hash_list (const_tree, hashval_t);
238 static unsigned int attribute_hash_list (const_tree, hashval_t);
239 static bool decls_same_for_odr (tree decl1, tree decl2);
241 tree global_trees[TI_MAX];
242 tree integer_types[itk_none];
244 unsigned char tree_contains_struct[MAX_TREE_CODES][64];
246 /* Number of operands for each OpenMP clause. */
247 unsigned const char omp_clause_num_ops[] =
249 0, /* OMP_CLAUSE_ERROR */
250 1, /* OMP_CLAUSE_PRIVATE */
251 1, /* OMP_CLAUSE_SHARED */
252 1, /* OMP_CLAUSE_FIRSTPRIVATE */
253 2, /* OMP_CLAUSE_LASTPRIVATE */
254 4, /* OMP_CLAUSE_REDUCTION */
255 1, /* OMP_CLAUSE_COPYIN */
256 1, /* OMP_CLAUSE_COPYPRIVATE */
257 3, /* OMP_CLAUSE_LINEAR */
258 2, /* OMP_CLAUSE_ALIGNED */
259 1, /* OMP_CLAUSE_DEPEND */
260 1, /* OMP_CLAUSE_UNIFORM */
261 2, /* OMP_CLAUSE_FROM */
262 2, /* OMP_CLAUSE_TO */
263 2, /* OMP_CLAUSE_MAP */
264 1, /* OMP_CLAUSE__LOOPTEMP_ */
265 1, /* OMP_CLAUSE_IF */
266 1, /* OMP_CLAUSE_NUM_THREADS */
267 1, /* OMP_CLAUSE_SCHEDULE */
268 0, /* OMP_CLAUSE_NOWAIT */
269 0, /* OMP_CLAUSE_ORDERED */
270 0, /* OMP_CLAUSE_DEFAULT */
271 3, /* OMP_CLAUSE_COLLAPSE */
272 0, /* OMP_CLAUSE_UNTIED */
273 1, /* OMP_CLAUSE_FINAL */
274 0, /* OMP_CLAUSE_MERGEABLE */
275 1, /* OMP_CLAUSE_DEVICE */
276 1, /* OMP_CLAUSE_DIST_SCHEDULE */
277 0, /* OMP_CLAUSE_INBRANCH */
278 0, /* OMP_CLAUSE_NOTINBRANCH */
279 1, /* OMP_CLAUSE_NUM_TEAMS */
280 1, /* OMP_CLAUSE_THREAD_LIMIT */
281 0, /* OMP_CLAUSE_PROC_BIND */
282 1, /* OMP_CLAUSE_SAFELEN */
283 1, /* OMP_CLAUSE_SIMDLEN */
284 0, /* OMP_CLAUSE_FOR */
285 0, /* OMP_CLAUSE_PARALLEL */
286 0, /* OMP_CLAUSE_SECTIONS */
287 0, /* OMP_CLAUSE_TASKGROUP */
288 1, /* OMP_CLAUSE__SIMDUID_ */
291 const char * const omp_clause_code_name[] =
293 "error_clause",
294 "private",
295 "shared",
296 "firstprivate",
297 "lastprivate",
298 "reduction",
299 "copyin",
300 "copyprivate",
301 "linear",
302 "aligned",
303 "depend",
304 "uniform",
305 "from",
306 "to",
307 "map",
308 "_looptemp_",
309 "if",
310 "num_threads",
311 "schedule",
312 "nowait",
313 "ordered",
314 "default",
315 "collapse",
316 "untied",
317 "final",
318 "mergeable",
319 "device",
320 "dist_schedule",
321 "inbranch",
322 "notinbranch",
323 "num_teams",
324 "thread_limit",
325 "proc_bind",
326 "safelen",
327 "simdlen",
328 "for",
329 "parallel",
330 "sections",
331 "taskgroup",
332 "_simduid_"
336 /* Return the tree node structure used by tree code CODE. */
338 static inline enum tree_node_structure_enum
339 tree_node_structure_for_code (enum tree_code code)
341 switch (TREE_CODE_CLASS (code))
343 case tcc_declaration:
345 switch (code)
347 case FIELD_DECL:
348 return TS_FIELD_DECL;
349 case PARM_DECL:
350 return TS_PARM_DECL;
351 case VAR_DECL:
352 return TS_VAR_DECL;
353 case LABEL_DECL:
354 return TS_LABEL_DECL;
355 case RESULT_DECL:
356 return TS_RESULT_DECL;
357 case DEBUG_EXPR_DECL:
358 return TS_DECL_WRTL;
359 case CONST_DECL:
360 return TS_CONST_DECL;
361 case TYPE_DECL:
362 return TS_TYPE_DECL;
363 case FUNCTION_DECL:
364 return TS_FUNCTION_DECL;
365 case TRANSLATION_UNIT_DECL:
366 return TS_TRANSLATION_UNIT_DECL;
367 default:
368 return TS_DECL_NON_COMMON;
371 case tcc_type:
372 return TS_TYPE_NON_COMMON;
373 case tcc_reference:
374 case tcc_comparison:
375 case tcc_unary:
376 case tcc_binary:
377 case tcc_expression:
378 case tcc_statement:
379 case tcc_vl_exp:
380 return TS_EXP;
381 default: /* tcc_constant and tcc_exceptional */
382 break;
384 switch (code)
386 /* tcc_constant cases. */
387 case VOID_CST: return TS_TYPED;
388 case INTEGER_CST: return TS_INT_CST;
389 case REAL_CST: return TS_REAL_CST;
390 case FIXED_CST: return TS_FIXED_CST;
391 case COMPLEX_CST: return TS_COMPLEX;
392 case VECTOR_CST: return TS_VECTOR;
393 case STRING_CST: return TS_STRING;
394 /* tcc_exceptional cases. */
395 case ERROR_MARK: return TS_COMMON;
396 case IDENTIFIER_NODE: return TS_IDENTIFIER;
397 case TREE_LIST: return TS_LIST;
398 case TREE_VEC: return TS_VEC;
399 case SSA_NAME: return TS_SSA_NAME;
400 case PLACEHOLDER_EXPR: return TS_COMMON;
401 case STATEMENT_LIST: return TS_STATEMENT_LIST;
402 case BLOCK: return TS_BLOCK;
403 case CONSTRUCTOR: return TS_CONSTRUCTOR;
404 case TREE_BINFO: return TS_BINFO;
405 case OMP_CLAUSE: return TS_OMP_CLAUSE;
406 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
407 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
409 default:
410 gcc_unreachable ();
415 /* Initialize tree_contains_struct to describe the hierarchy of tree
416 nodes. */
418 static void
419 initialize_tree_contains_struct (void)
421 unsigned i;
423 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
425 enum tree_code code;
426 enum tree_node_structure_enum ts_code;
428 code = (enum tree_code) i;
429 ts_code = tree_node_structure_for_code (code);
431 /* Mark the TS structure itself. */
432 tree_contains_struct[code][ts_code] = 1;
434 /* Mark all the structures that TS is derived from. */
435 switch (ts_code)
437 case TS_TYPED:
438 case TS_BLOCK:
439 MARK_TS_BASE (code);
440 break;
442 case TS_COMMON:
443 case TS_INT_CST:
444 case TS_REAL_CST:
445 case TS_FIXED_CST:
446 case TS_VECTOR:
447 case TS_STRING:
448 case TS_COMPLEX:
449 case TS_SSA_NAME:
450 case TS_CONSTRUCTOR:
451 case TS_EXP:
452 case TS_STATEMENT_LIST:
453 MARK_TS_TYPED (code);
454 break;
456 case TS_IDENTIFIER:
457 case TS_DECL_MINIMAL:
458 case TS_TYPE_COMMON:
459 case TS_LIST:
460 case TS_VEC:
461 case TS_BINFO:
462 case TS_OMP_CLAUSE:
463 case TS_OPTIMIZATION:
464 case TS_TARGET_OPTION:
465 MARK_TS_COMMON (code);
466 break;
468 case TS_TYPE_WITH_LANG_SPECIFIC:
469 MARK_TS_TYPE_COMMON (code);
470 break;
472 case TS_TYPE_NON_COMMON:
473 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
474 break;
476 case TS_DECL_COMMON:
477 MARK_TS_DECL_MINIMAL (code);
478 break;
480 case TS_DECL_WRTL:
481 case TS_CONST_DECL:
482 MARK_TS_DECL_COMMON (code);
483 break;
485 case TS_DECL_NON_COMMON:
486 MARK_TS_DECL_WITH_VIS (code);
487 break;
489 case TS_DECL_WITH_VIS:
490 case TS_PARM_DECL:
491 case TS_LABEL_DECL:
492 case TS_RESULT_DECL:
493 MARK_TS_DECL_WRTL (code);
494 break;
496 case TS_FIELD_DECL:
497 MARK_TS_DECL_COMMON (code);
498 break;
500 case TS_VAR_DECL:
501 MARK_TS_DECL_WITH_VIS (code);
502 break;
504 case TS_TYPE_DECL:
505 case TS_FUNCTION_DECL:
506 MARK_TS_DECL_NON_COMMON (code);
507 break;
509 case TS_TRANSLATION_UNIT_DECL:
510 MARK_TS_DECL_COMMON (code);
511 break;
513 default:
514 gcc_unreachable ();
518 /* Basic consistency checks for attributes used in fold. */
519 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
520 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
521 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
522 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
523 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
524 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
525 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
526 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
527 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
528 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
529 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
530 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
531 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
532 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
533 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
534 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
535 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
536 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
537 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
538 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
539 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
540 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
541 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
542 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
543 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
544 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
545 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
546 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
547 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
548 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
549 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
550 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
551 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
552 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
553 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
554 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
555 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
556 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
557 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
558 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
562 /* Init tree.c. */
564 void
565 init_ttree (void)
567 /* Initialize the hash table of types. */
568 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
569 type_hash_eq, 0);
571 debug_expr_for_decl = htab_create_ggc (512, tree_decl_map_hash,
572 tree_decl_map_eq, 0);
574 value_expr_for_decl = htab_create_ggc (512, tree_decl_map_hash,
575 tree_decl_map_eq, 0);
576 init_priority_for_decl = htab_create_ggc (512, tree_priority_map_hash,
577 tree_priority_map_eq, 0);
579 int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
580 int_cst_hash_eq, NULL);
582 int_cst_node = make_int_cst (1, 1);
584 cl_option_hash_table = htab_create_ggc (64, cl_option_hash_hash,
585 cl_option_hash_eq, NULL);
587 cl_optimization_node = make_node (OPTIMIZATION_NODE);
588 cl_target_option_node = make_node (TARGET_OPTION_NODE);
590 /* Initialize the tree_contains_struct array. */
591 initialize_tree_contains_struct ();
592 lang_hooks.init_ts ();
596 /* The name of the object as the assembler will see it (but before any
597 translations made by ASM_OUTPUT_LABELREF). Often this is the same
598 as DECL_NAME. It is an IDENTIFIER_NODE. */
599 tree
600 decl_assembler_name (tree decl)
602 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
603 lang_hooks.set_decl_assembler_name (decl);
604 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
607 /* When the target supports COMDAT groups, this indicates which group the
608 DECL is associated with. This can be either an IDENTIFIER_NODE or a
609 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
610 tree
611 decl_comdat_group (const_tree node)
613 struct symtab_node *snode = symtab_get_node (node);
614 if (!snode)
615 return NULL;
616 return snode->get_comdat_group ();
619 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
620 tree
621 decl_comdat_group_id (const_tree node)
623 struct symtab_node *snode = symtab_get_node (node);
624 if (!snode)
625 return NULL;
626 return snode->get_comdat_group_id ();
629 /* When the target supports named section, return its name as IDENTIFIER_NODE
630 or NULL if it is in no section. */
631 const char *
632 decl_section_name (const_tree node)
634 struct symtab_node *snode = symtab_get_node (node);
635 if (!snode)
636 return NULL;
637 return snode->get_section ();
640 /* Set section section name of NODE to VALUE (that is expected to
641 be identifier node) */
642 void
643 set_decl_section_name (tree node, const char *value)
645 struct symtab_node *snode;
647 if (value == NULL)
649 snode = symtab_get_node (node);
650 if (!snode)
651 return;
653 else if (TREE_CODE (node) == VAR_DECL)
654 snode = varpool_node_for_decl (node);
655 else
656 snode = cgraph_get_create_node (node);
657 snode->set_section (value);
660 /* Return TLS model of a variable NODE. */
661 enum tls_model
662 decl_tls_model (const_tree node)
664 struct varpool_node *snode = varpool_get_node (node);
665 if (!snode)
666 return TLS_MODEL_NONE;
667 return snode->tls_model;
670 /* Set TLS model of variable NODE to MODEL. */
671 void
672 set_decl_tls_model (tree node, enum tls_model model)
674 struct varpool_node *vnode;
676 if (model == TLS_MODEL_NONE)
678 vnode = varpool_get_node (node);
679 if (!vnode)
680 return;
682 else
683 vnode = varpool_node_for_decl (node);
684 vnode->tls_model = model;
687 /* Compute the number of bytes occupied by a tree with code CODE.
688 This function cannot be used for nodes that have variable sizes,
689 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
690 size_t
691 tree_code_size (enum tree_code code)
693 switch (TREE_CODE_CLASS (code))
695 case tcc_declaration: /* A decl node */
697 switch (code)
699 case FIELD_DECL:
700 return sizeof (struct tree_field_decl);
701 case PARM_DECL:
702 return sizeof (struct tree_parm_decl);
703 case VAR_DECL:
704 return sizeof (struct tree_var_decl);
705 case LABEL_DECL:
706 return sizeof (struct tree_label_decl);
707 case RESULT_DECL:
708 return sizeof (struct tree_result_decl);
709 case CONST_DECL:
710 return sizeof (struct tree_const_decl);
711 case TYPE_DECL:
712 return sizeof (struct tree_type_decl);
713 case FUNCTION_DECL:
714 return sizeof (struct tree_function_decl);
715 case DEBUG_EXPR_DECL:
716 return sizeof (struct tree_decl_with_rtl);
717 default:
718 return sizeof (struct tree_decl_non_common);
722 case tcc_type: /* a type node */
723 return sizeof (struct tree_type_non_common);
725 case tcc_reference: /* a reference */
726 case tcc_expression: /* an expression */
727 case tcc_statement: /* an expression with side effects */
728 case tcc_comparison: /* a comparison expression */
729 case tcc_unary: /* a unary arithmetic expression */
730 case tcc_binary: /* a binary arithmetic expression */
731 return (sizeof (struct tree_exp)
732 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
734 case tcc_constant: /* a constant */
735 switch (code)
737 case VOID_CST: return sizeof (struct tree_typed);
738 case INTEGER_CST: gcc_unreachable ();
739 case REAL_CST: return sizeof (struct tree_real_cst);
740 case FIXED_CST: return sizeof (struct tree_fixed_cst);
741 case COMPLEX_CST: return sizeof (struct tree_complex);
742 case VECTOR_CST: return sizeof (struct tree_vector);
743 case STRING_CST: gcc_unreachable ();
744 default:
745 return lang_hooks.tree_size (code);
748 case tcc_exceptional: /* something random, like an identifier. */
749 switch (code)
751 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
752 case TREE_LIST: return sizeof (struct tree_list);
754 case ERROR_MARK:
755 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
757 case TREE_VEC:
758 case OMP_CLAUSE: gcc_unreachable ();
760 case SSA_NAME: return sizeof (struct tree_ssa_name);
762 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
763 case BLOCK: return sizeof (struct tree_block);
764 case CONSTRUCTOR: return sizeof (struct tree_constructor);
765 case OPTIMIZATION_NODE: return sizeof (struct tree_optimization_option);
766 case TARGET_OPTION_NODE: return sizeof (struct tree_target_option);
768 default:
769 return lang_hooks.tree_size (code);
772 default:
773 gcc_unreachable ();
777 /* Compute the number of bytes occupied by NODE. This routine only
778 looks at TREE_CODE, except for those nodes that have variable sizes. */
779 size_t
780 tree_size (const_tree node)
782 const enum tree_code code = TREE_CODE (node);
783 switch (code)
785 case INTEGER_CST:
786 return (sizeof (struct tree_int_cst)
787 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
789 case TREE_BINFO:
790 return (offsetof (struct tree_binfo, base_binfos)
791 + vec<tree, va_gc>
792 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
794 case TREE_VEC:
795 return (sizeof (struct tree_vec)
796 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
798 case VECTOR_CST:
799 return (sizeof (struct tree_vector)
800 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node)) - 1) * sizeof (tree));
802 case STRING_CST:
803 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
805 case OMP_CLAUSE:
806 return (sizeof (struct tree_omp_clause)
807 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
808 * sizeof (tree));
810 default:
811 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
812 return (sizeof (struct tree_exp)
813 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
814 else
815 return tree_code_size (code);
819 /* Record interesting allocation statistics for a tree node with CODE
820 and LENGTH. */
822 static void
823 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED,
824 size_t length ATTRIBUTE_UNUSED)
826 enum tree_code_class type = TREE_CODE_CLASS (code);
827 tree_node_kind kind;
829 if (!GATHER_STATISTICS)
830 return;
832 switch (type)
834 case tcc_declaration: /* A decl node */
835 kind = d_kind;
836 break;
838 case tcc_type: /* a type node */
839 kind = t_kind;
840 break;
842 case tcc_statement: /* an expression with side effects */
843 kind = s_kind;
844 break;
846 case tcc_reference: /* a reference */
847 kind = r_kind;
848 break;
850 case tcc_expression: /* an expression */
851 case tcc_comparison: /* a comparison expression */
852 case tcc_unary: /* a unary arithmetic expression */
853 case tcc_binary: /* a binary arithmetic expression */
854 kind = e_kind;
855 break;
857 case tcc_constant: /* a constant */
858 kind = c_kind;
859 break;
861 case tcc_exceptional: /* something random, like an identifier. */
862 switch (code)
864 case IDENTIFIER_NODE:
865 kind = id_kind;
866 break;
868 case TREE_VEC:
869 kind = vec_kind;
870 break;
872 case TREE_BINFO:
873 kind = binfo_kind;
874 break;
876 case SSA_NAME:
877 kind = ssa_name_kind;
878 break;
880 case BLOCK:
881 kind = b_kind;
882 break;
884 case CONSTRUCTOR:
885 kind = constr_kind;
886 break;
888 case OMP_CLAUSE:
889 kind = omp_clause_kind;
890 break;
892 default:
893 kind = x_kind;
894 break;
896 break;
898 case tcc_vl_exp:
899 kind = e_kind;
900 break;
902 default:
903 gcc_unreachable ();
906 tree_code_counts[(int) code]++;
907 tree_node_counts[(int) kind]++;
908 tree_node_sizes[(int) kind] += length;
911 /* Allocate and return a new UID from the DECL_UID namespace. */
914 allocate_decl_uid (void)
916 return next_decl_uid++;
919 /* Return a newly allocated node of code CODE. For decl and type
920 nodes, some other fields are initialized. The rest of the node is
921 initialized to zero. This function cannot be used for TREE_VEC,
922 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
923 tree_code_size.
925 Achoo! I got a code in the node. */
927 tree
928 make_node_stat (enum tree_code code MEM_STAT_DECL)
930 tree t;
931 enum tree_code_class type = TREE_CODE_CLASS (code);
932 size_t length = tree_code_size (code);
934 record_node_allocation_statistics (code, length);
936 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
937 TREE_SET_CODE (t, code);
939 switch (type)
941 case tcc_statement:
942 TREE_SIDE_EFFECTS (t) = 1;
943 break;
945 case tcc_declaration:
946 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
948 if (code == FUNCTION_DECL)
950 DECL_ALIGN (t) = FUNCTION_BOUNDARY;
951 DECL_MODE (t) = FUNCTION_MODE;
953 else
954 DECL_ALIGN (t) = 1;
956 DECL_SOURCE_LOCATION (t) = input_location;
957 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
958 DECL_UID (t) = --next_debug_decl_uid;
959 else
961 DECL_UID (t) = allocate_decl_uid ();
962 SET_DECL_PT_UID (t, -1);
964 if (TREE_CODE (t) == LABEL_DECL)
965 LABEL_DECL_UID (t) = -1;
967 break;
969 case tcc_type:
970 TYPE_UID (t) = next_type_uid++;
971 TYPE_ALIGN (t) = BITS_PER_UNIT;
972 TYPE_USER_ALIGN (t) = 0;
973 TYPE_MAIN_VARIANT (t) = t;
974 TYPE_CANONICAL (t) = t;
976 /* Default to no attributes for type, but let target change that. */
977 TYPE_ATTRIBUTES (t) = NULL_TREE;
978 targetm.set_default_type_attributes (t);
980 /* We have not yet computed the alias set for this type. */
981 TYPE_ALIAS_SET (t) = -1;
982 break;
984 case tcc_constant:
985 TREE_CONSTANT (t) = 1;
986 break;
988 case tcc_expression:
989 switch (code)
991 case INIT_EXPR:
992 case MODIFY_EXPR:
993 case VA_ARG_EXPR:
994 case PREDECREMENT_EXPR:
995 case PREINCREMENT_EXPR:
996 case POSTDECREMENT_EXPR:
997 case POSTINCREMENT_EXPR:
998 /* All of these have side-effects, no matter what their
999 operands are. */
1000 TREE_SIDE_EFFECTS (t) = 1;
1001 break;
1003 default:
1004 break;
1006 break;
1008 default:
1009 /* Other classes need no special treatment. */
1010 break;
1013 return t;
1016 /* Return a new node with the same contents as NODE except that its
1017 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1019 tree
1020 copy_node_stat (tree node MEM_STAT_DECL)
1022 tree t;
1023 enum tree_code code = TREE_CODE (node);
1024 size_t length;
1026 gcc_assert (code != STATEMENT_LIST);
1028 length = tree_size (node);
1029 record_node_allocation_statistics (code, length);
1030 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1031 memcpy (t, node, length);
1033 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1034 TREE_CHAIN (t) = 0;
1035 TREE_ASM_WRITTEN (t) = 0;
1036 TREE_VISITED (t) = 0;
1038 if (TREE_CODE_CLASS (code) == tcc_declaration)
1040 if (code == DEBUG_EXPR_DECL)
1041 DECL_UID (t) = --next_debug_decl_uid;
1042 else
1044 DECL_UID (t) = allocate_decl_uid ();
1045 if (DECL_PT_UID_SET_P (node))
1046 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1048 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
1049 && DECL_HAS_VALUE_EXPR_P (node))
1051 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1052 DECL_HAS_VALUE_EXPR_P (t) = 1;
1054 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1055 if (TREE_CODE (node) == VAR_DECL)
1057 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1058 t->decl_with_vis.symtab_node = NULL;
1060 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
1062 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1063 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1065 if (TREE_CODE (node) == FUNCTION_DECL)
1067 DECL_STRUCT_FUNCTION (t) = NULL;
1068 t->decl_with_vis.symtab_node = NULL;
1071 else if (TREE_CODE_CLASS (code) == tcc_type)
1073 TYPE_UID (t) = next_type_uid++;
1074 /* The following is so that the debug code for
1075 the copy is different from the original type.
1076 The two statements usually duplicate each other
1077 (because they clear fields of the same union),
1078 but the optimizer should catch that. */
1079 TYPE_SYMTAB_POINTER (t) = 0;
1080 TYPE_SYMTAB_ADDRESS (t) = 0;
1082 /* Do not copy the values cache. */
1083 if (TYPE_CACHED_VALUES_P (t))
1085 TYPE_CACHED_VALUES_P (t) = 0;
1086 TYPE_CACHED_VALUES (t) = NULL_TREE;
1090 return t;
1093 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1094 For example, this can copy a list made of TREE_LIST nodes. */
1096 tree
1097 copy_list (tree list)
1099 tree head;
1100 tree prev, next;
1102 if (list == 0)
1103 return 0;
1105 head = prev = copy_node (list);
1106 next = TREE_CHAIN (list);
1107 while (next)
1109 TREE_CHAIN (prev) = copy_node (next);
1110 prev = TREE_CHAIN (prev);
1111 next = TREE_CHAIN (next);
1113 return head;
1117 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1118 INTEGER_CST with value CST and type TYPE. */
1120 static unsigned int
1121 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1123 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1124 /* We need an extra zero HWI if CST is an unsigned integer with its
1125 upper bit set, and if CST occupies a whole number of HWIs. */
1126 if (TYPE_UNSIGNED (type)
1127 && wi::neg_p (cst)
1128 && (cst.get_precision () % HOST_BITS_PER_WIDE_INT) == 0)
1129 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1130 return cst.get_len ();
1133 /* Return a new INTEGER_CST with value CST and type TYPE. */
1135 static tree
1136 build_new_int_cst (tree type, const wide_int &cst)
1138 unsigned int len = cst.get_len ();
1139 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1140 tree nt = make_int_cst (len, ext_len);
1142 if (len < ext_len)
1144 --ext_len;
1145 TREE_INT_CST_ELT (nt, ext_len) = 0;
1146 for (unsigned int i = len; i < ext_len; ++i)
1147 TREE_INT_CST_ELT (nt, i) = -1;
1149 else if (TYPE_UNSIGNED (type)
1150 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1152 len--;
1153 TREE_INT_CST_ELT (nt, len)
1154 = zext_hwi (cst.elt (len),
1155 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1158 for (unsigned int i = 0; i < len; i++)
1159 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1160 TREE_TYPE (nt) = type;
1161 return nt;
1164 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1166 tree
1167 build_int_cst (tree type, HOST_WIDE_INT low)
1169 /* Support legacy code. */
1170 if (!type)
1171 type = integer_type_node;
1173 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1176 tree
1177 build_int_cstu (tree type, unsigned HOST_WIDE_INT cst)
1179 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1182 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1184 tree
1185 build_int_cst_type (tree type, HOST_WIDE_INT low)
1187 gcc_assert (type);
1188 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1191 /* Constructs tree in type TYPE from with value given by CST. Signedness
1192 of CST is assumed to be the same as the signedness of TYPE. */
1194 tree
1195 double_int_to_tree (tree type, double_int cst)
1197 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1200 /* We force the wide_int CST to the range of the type TYPE by sign or
1201 zero extending it. OVERFLOWABLE indicates if we are interested in
1202 overflow of the value, when >0 we are only interested in signed
1203 overflow, for <0 we are interested in any overflow. OVERFLOWED
1204 indicates whether overflow has already occurred. CONST_OVERFLOWED
1205 indicates whether constant overflow has already occurred. We force
1206 T's value to be within range of T's type (by setting to 0 or 1 all
1207 the bits outside the type's range). We set TREE_OVERFLOWED if,
1208 OVERFLOWED is nonzero,
1209 or OVERFLOWABLE is >0 and signed overflow occurs
1210 or OVERFLOWABLE is <0 and any overflow occurs
1211 We return a new tree node for the extended wide_int. The node
1212 is shared if no overflow flags are set. */
1215 tree
1216 force_fit_type (tree type, const wide_int_ref &cst,
1217 int overflowable, bool overflowed)
1219 signop sign = TYPE_SIGN (type);
1221 /* If we need to set overflow flags, return a new unshared node. */
1222 if (overflowed || !wi::fits_to_tree_p (cst, type))
1224 if (overflowed
1225 || overflowable < 0
1226 || (overflowable > 0 && sign == SIGNED))
1228 wide_int tmp = wide_int::from (cst, TYPE_PRECISION (type), sign);
1229 tree t = build_new_int_cst (type, tmp);
1230 TREE_OVERFLOW (t) = 1;
1231 return t;
1235 /* Else build a shared node. */
1236 return wide_int_to_tree (type, cst);
1239 /* These are the hash table functions for the hash table of INTEGER_CST
1240 nodes of a sizetype. */
1242 /* Return the hash code code X, an INTEGER_CST. */
1244 static hashval_t
1245 int_cst_hash_hash (const void *x)
1247 const_tree const t = (const_tree) x;
1248 hashval_t code = htab_hash_pointer (TREE_TYPE (t));
1249 int i;
1251 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1252 code ^= TREE_INT_CST_ELT (t, i);
1254 return code;
1257 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1258 is the same as that given by *Y, which is the same. */
1260 static int
1261 int_cst_hash_eq (const void *x, const void *y)
1263 const_tree const xt = (const_tree) x;
1264 const_tree const yt = (const_tree) y;
1266 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1267 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1268 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1269 return false;
1271 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1272 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1273 return false;
1275 return true;
1278 /* Create an INT_CST node of TYPE and value CST.
1279 The returned node is always shared. For small integers we use a
1280 per-type vector cache, for larger ones we use a single hash table.
1281 The value is extended from its precision according to the sign of
1282 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1283 the upper bits and ensures that hashing and value equality based
1284 upon the underlying HOST_WIDE_INTs works without masking. */
1286 tree
1287 wide_int_to_tree (tree type, const wide_int_ref &pcst)
1289 tree t;
1290 int ix = -1;
1291 int limit = 0;
1293 gcc_assert (type);
1294 unsigned int prec = TYPE_PRECISION (type);
1295 signop sgn = TYPE_SIGN (type);
1297 /* Verify that everything is canonical. */
1298 int l = pcst.get_len ();
1299 if (l > 1)
1301 if (pcst.elt (l - 1) == 0)
1302 gcc_checking_assert (pcst.elt (l - 2) < 0);
1303 if (pcst.elt (l - 1) == (HOST_WIDE_INT) -1)
1304 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1307 wide_int cst = wide_int::from (pcst, prec, sgn);
1308 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1310 if (ext_len == 1)
1312 /* We just need to store a single HOST_WIDE_INT. */
1313 HOST_WIDE_INT hwi;
1314 if (TYPE_UNSIGNED (type))
1315 hwi = cst.to_uhwi ();
1316 else
1317 hwi = cst.to_shwi ();
1319 switch (TREE_CODE (type))
1321 case NULLPTR_TYPE:
1322 gcc_assert (hwi == 0);
1323 /* Fallthru. */
1325 case POINTER_TYPE:
1326 case REFERENCE_TYPE:
1327 /* Cache NULL pointer. */
1328 if (hwi == 0)
1330 limit = 1;
1331 ix = 0;
1333 break;
1335 case BOOLEAN_TYPE:
1336 /* Cache false or true. */
1337 limit = 2;
1338 if (hwi < 2)
1339 ix = hwi;
1340 break;
1342 case INTEGER_TYPE:
1343 case OFFSET_TYPE:
1344 if (TYPE_SIGN (type) == UNSIGNED)
1346 /* Cache [0, N). */
1347 limit = INTEGER_SHARE_LIMIT;
1348 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1349 ix = hwi;
1351 else
1353 /* Cache [-1, N). */
1354 limit = INTEGER_SHARE_LIMIT + 1;
1355 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1356 ix = hwi + 1;
1358 break;
1360 case ENUMERAL_TYPE:
1361 break;
1363 default:
1364 gcc_unreachable ();
1367 if (ix >= 0)
1369 /* Look for it in the type's vector of small shared ints. */
1370 if (!TYPE_CACHED_VALUES_P (type))
1372 TYPE_CACHED_VALUES_P (type) = 1;
1373 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1376 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1377 if (t)
1378 /* Make sure no one is clobbering the shared constant. */
1379 gcc_checking_assert (TREE_TYPE (t) == type
1380 && TREE_INT_CST_NUNITS (t) == 1
1381 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1382 && TREE_INT_CST_EXT_NUNITS (t) == 1
1383 && TREE_INT_CST_ELT (t, 0) == hwi);
1384 else
1386 /* Create a new shared int. */
1387 t = build_new_int_cst (type, cst);
1388 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1391 else
1393 /* Use the cache of larger shared ints, using int_cst_node as
1394 a temporary. */
1395 void **slot;
1397 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1398 TREE_TYPE (int_cst_node) = type;
1400 slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
1401 t = (tree) *slot;
1402 if (!t)
1404 /* Insert this one into the hash table. */
1405 t = int_cst_node;
1406 *slot = t;
1407 /* Make a new node for next time round. */
1408 int_cst_node = make_int_cst (1, 1);
1412 else
1414 /* The value either hashes properly or we drop it on the floor
1415 for the gc to take care of. There will not be enough of them
1416 to worry about. */
1417 void **slot;
1419 tree nt = build_new_int_cst (type, cst);
1420 slot = htab_find_slot (int_cst_hash_table, nt, INSERT);
1421 t = (tree) *slot;
1422 if (!t)
1424 /* Insert this one into the hash table. */
1425 t = nt;
1426 *slot = t;
1430 return t;
1433 void
1434 cache_integer_cst (tree t)
1436 tree type = TREE_TYPE (t);
1437 int ix = -1;
1438 int limit = 0;
1439 int prec = TYPE_PRECISION (type);
1441 gcc_assert (!TREE_OVERFLOW (t));
1443 switch (TREE_CODE (type))
1445 case NULLPTR_TYPE:
1446 gcc_assert (integer_zerop (t));
1447 /* Fallthru. */
1449 case POINTER_TYPE:
1450 case REFERENCE_TYPE:
1451 /* Cache NULL pointer. */
1452 if (integer_zerop (t))
1454 limit = 1;
1455 ix = 0;
1457 break;
1459 case BOOLEAN_TYPE:
1460 /* Cache false or true. */
1461 limit = 2;
1462 if (wi::ltu_p (t, 2))
1463 ix = TREE_INT_CST_ELT (t, 0);
1464 break;
1466 case INTEGER_TYPE:
1467 case OFFSET_TYPE:
1468 if (TYPE_UNSIGNED (type))
1470 /* Cache 0..N */
1471 limit = INTEGER_SHARE_LIMIT;
1473 /* This is a little hokie, but if the prec is smaller than
1474 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1475 obvious test will not get the correct answer. */
1476 if (prec < HOST_BITS_PER_WIDE_INT)
1478 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1479 ix = tree_to_uhwi (t);
1481 else if (wi::ltu_p (t, INTEGER_SHARE_LIMIT))
1482 ix = tree_to_uhwi (t);
1484 else
1486 /* Cache -1..N */
1487 limit = INTEGER_SHARE_LIMIT + 1;
1489 if (integer_minus_onep (t))
1490 ix = 0;
1491 else if (!wi::neg_p (t))
1493 if (prec < HOST_BITS_PER_WIDE_INT)
1495 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1496 ix = tree_to_shwi (t) + 1;
1498 else if (wi::ltu_p (t, INTEGER_SHARE_LIMIT))
1499 ix = tree_to_shwi (t) + 1;
1502 break;
1504 case ENUMERAL_TYPE:
1505 break;
1507 default:
1508 gcc_unreachable ();
1511 if (ix >= 0)
1513 /* Look for it in the type's vector of small shared ints. */
1514 if (!TYPE_CACHED_VALUES_P (type))
1516 TYPE_CACHED_VALUES_P (type) = 1;
1517 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1520 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1521 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1523 else
1525 /* Use the cache of larger shared ints. */
1526 void **slot;
1528 slot = htab_find_slot (int_cst_hash_table, t, INSERT);
1529 /* If there is already an entry for the number verify it's the
1530 same. */
1531 if (*slot)
1532 gcc_assert (wi::eq_p (tree (*slot), t));
1533 else
1534 /* Otherwise insert this one into the hash table. */
1535 *slot = t;
1540 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1541 and the rest are zeros. */
1543 tree
1544 build_low_bits_mask (tree type, unsigned bits)
1546 gcc_assert (bits <= TYPE_PRECISION (type));
1548 return wide_int_to_tree (type, wi::mask (bits, false,
1549 TYPE_PRECISION (type)));
1552 /* Checks that X is integer constant that can be expressed in (unsigned)
1553 HOST_WIDE_INT without loss of precision. */
1555 bool
1556 cst_and_fits_in_hwi (const_tree x)
1558 if (TREE_CODE (x) != INTEGER_CST)
1559 return false;
1561 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1562 return false;
1564 return TREE_INT_CST_NUNITS (x) == 1;
1567 /* Build a newly constructed TREE_VEC node of length LEN. */
1569 tree
1570 make_vector_stat (unsigned len MEM_STAT_DECL)
1572 tree t;
1573 unsigned length = (len - 1) * sizeof (tree) + sizeof (struct tree_vector);
1575 record_node_allocation_statistics (VECTOR_CST, length);
1577 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1579 TREE_SET_CODE (t, VECTOR_CST);
1580 TREE_CONSTANT (t) = 1;
1582 return t;
1585 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1586 are in a list pointed to by VALS. */
1588 tree
1589 build_vector_stat (tree type, tree *vals MEM_STAT_DECL)
1591 int over = 0;
1592 unsigned cnt = 0;
1593 tree v = make_vector (TYPE_VECTOR_SUBPARTS (type));
1594 TREE_TYPE (v) = type;
1596 /* Iterate through elements and check for overflow. */
1597 for (cnt = 0; cnt < TYPE_VECTOR_SUBPARTS (type); ++cnt)
1599 tree value = vals[cnt];
1601 VECTOR_CST_ELT (v, cnt) = value;
1603 /* Don't crash if we get an address constant. */
1604 if (!CONSTANT_CLASS_P (value))
1605 continue;
1607 over |= TREE_OVERFLOW (value);
1610 TREE_OVERFLOW (v) = over;
1611 return v;
1614 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1615 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1617 tree
1618 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1620 tree *vec = XALLOCAVEC (tree, TYPE_VECTOR_SUBPARTS (type));
1621 unsigned HOST_WIDE_INT idx;
1622 tree value;
1624 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1625 vec[idx] = value;
1626 for (; idx < TYPE_VECTOR_SUBPARTS (type); ++idx)
1627 vec[idx] = build_zero_cst (TREE_TYPE (type));
1629 return build_vector (type, vec);
1632 /* Build a vector of type VECTYPE where all the elements are SCs. */
1633 tree
1634 build_vector_from_val (tree vectype, tree sc)
1636 int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1638 if (sc == error_mark_node)
1639 return sc;
1641 /* Verify that the vector type is suitable for SC. Note that there
1642 is some inconsistency in the type-system with respect to restrict
1643 qualifications of pointers. Vector types always have a main-variant
1644 element type and the qualification is applied to the vector-type.
1645 So TREE_TYPE (vector-type) does not return a properly qualified
1646 vector element-type. */
1647 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1648 TREE_TYPE (vectype)));
1650 if (CONSTANT_CLASS_P (sc))
1652 tree *v = XALLOCAVEC (tree, nunits);
1653 for (i = 0; i < nunits; ++i)
1654 v[i] = sc;
1655 return build_vector (vectype, v);
1657 else
1659 vec<constructor_elt, va_gc> *v;
1660 vec_alloc (v, nunits);
1661 for (i = 0; i < nunits; ++i)
1662 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1663 return build_constructor (vectype, v);
1667 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1668 are in the vec pointed to by VALS. */
1669 tree
1670 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1672 tree c = make_node (CONSTRUCTOR);
1673 unsigned int i;
1674 constructor_elt *elt;
1675 bool constant_p = true;
1676 bool side_effects_p = false;
1678 TREE_TYPE (c) = type;
1679 CONSTRUCTOR_ELTS (c) = vals;
1681 FOR_EACH_VEC_SAFE_ELT (vals, i, elt)
1683 /* Mostly ctors will have elts that don't have side-effects, so
1684 the usual case is to scan all the elements. Hence a single
1685 loop for both const and side effects, rather than one loop
1686 each (with early outs). */
1687 if (!TREE_CONSTANT (elt->value))
1688 constant_p = false;
1689 if (TREE_SIDE_EFFECTS (elt->value))
1690 side_effects_p = true;
1693 TREE_SIDE_EFFECTS (c) = side_effects_p;
1694 TREE_CONSTANT (c) = constant_p;
1696 return c;
1699 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1700 INDEX and VALUE. */
1701 tree
1702 build_constructor_single (tree type, tree index, tree value)
1704 vec<constructor_elt, va_gc> *v;
1705 constructor_elt elt = {index, value};
1707 vec_alloc (v, 1);
1708 v->quick_push (elt);
1710 return build_constructor (type, v);
1714 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1715 are in a list pointed to by VALS. */
1716 tree
1717 build_constructor_from_list (tree type, tree vals)
1719 tree t;
1720 vec<constructor_elt, va_gc> *v = NULL;
1722 if (vals)
1724 vec_alloc (v, list_length (vals));
1725 for (t = vals; t; t = TREE_CHAIN (t))
1726 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
1729 return build_constructor (type, v);
1732 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1733 of elements, provided as index/value pairs. */
1735 tree
1736 build_constructor_va (tree type, int nelts, ...)
1738 vec<constructor_elt, va_gc> *v = NULL;
1739 va_list p;
1741 va_start (p, nelts);
1742 vec_alloc (v, nelts);
1743 while (nelts--)
1745 tree index = va_arg (p, tree);
1746 tree value = va_arg (p, tree);
1747 CONSTRUCTOR_APPEND_ELT (v, index, value);
1749 va_end (p);
1750 return build_constructor (type, v);
1753 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1755 tree
1756 build_fixed (tree type, FIXED_VALUE_TYPE f)
1758 tree v;
1759 FIXED_VALUE_TYPE *fp;
1761 v = make_node (FIXED_CST);
1762 fp = ggc_alloc<fixed_value> ();
1763 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1765 TREE_TYPE (v) = type;
1766 TREE_FIXED_CST_PTR (v) = fp;
1767 return v;
1770 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1772 tree
1773 build_real (tree type, REAL_VALUE_TYPE d)
1775 tree v;
1776 REAL_VALUE_TYPE *dp;
1777 int overflow = 0;
1779 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1780 Consider doing it via real_convert now. */
1782 v = make_node (REAL_CST);
1783 dp = ggc_alloc<real_value> ();
1784 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1786 TREE_TYPE (v) = type;
1787 TREE_REAL_CST_PTR (v) = dp;
1788 TREE_OVERFLOW (v) = overflow;
1789 return v;
1792 /* Return a new REAL_CST node whose type is TYPE
1793 and whose value is the integer value of the INTEGER_CST node I. */
1795 REAL_VALUE_TYPE
1796 real_value_from_int_cst (const_tree type, const_tree i)
1798 REAL_VALUE_TYPE d;
1800 /* Clear all bits of the real value type so that we can later do
1801 bitwise comparisons to see if two values are the same. */
1802 memset (&d, 0, sizeof d);
1804 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, i,
1805 TYPE_SIGN (TREE_TYPE (i)));
1806 return d;
1809 /* Given a tree representing an integer constant I, return a tree
1810 representing the same value as a floating-point constant of type TYPE. */
1812 tree
1813 build_real_from_int_cst (tree type, const_tree i)
1815 tree v;
1816 int overflow = TREE_OVERFLOW (i);
1818 v = build_real (type, real_value_from_int_cst (type, i));
1820 TREE_OVERFLOW (v) |= overflow;
1821 return v;
1824 /* Return a newly constructed STRING_CST node whose value is
1825 the LEN characters at STR.
1826 Note that for a C string literal, LEN should include the trailing NUL.
1827 The TREE_TYPE is not initialized. */
1829 tree
1830 build_string (int len, const char *str)
1832 tree s;
1833 size_t length;
1835 /* Do not waste bytes provided by padding of struct tree_string. */
1836 length = len + offsetof (struct tree_string, str) + 1;
1838 record_node_allocation_statistics (STRING_CST, length);
1840 s = (tree) ggc_internal_alloc (length);
1842 memset (s, 0, sizeof (struct tree_typed));
1843 TREE_SET_CODE (s, STRING_CST);
1844 TREE_CONSTANT (s) = 1;
1845 TREE_STRING_LENGTH (s) = len;
1846 memcpy (s->string.str, str, len);
1847 s->string.str[len] = '\0';
1849 return s;
1852 /* Return a newly constructed COMPLEX_CST node whose value is
1853 specified by the real and imaginary parts REAL and IMAG.
1854 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1855 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1857 tree
1858 build_complex (tree type, tree real, tree imag)
1860 tree t = make_node (COMPLEX_CST);
1862 TREE_REALPART (t) = real;
1863 TREE_IMAGPART (t) = imag;
1864 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
1865 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1866 return t;
1869 /* Return a constant of arithmetic type TYPE which is the
1870 multiplicative identity of the set TYPE. */
1872 tree
1873 build_one_cst (tree type)
1875 switch (TREE_CODE (type))
1877 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1878 case POINTER_TYPE: case REFERENCE_TYPE:
1879 case OFFSET_TYPE:
1880 return build_int_cst (type, 1);
1882 case REAL_TYPE:
1883 return build_real (type, dconst1);
1885 case FIXED_POINT_TYPE:
1886 /* We can only generate 1 for accum types. */
1887 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1888 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
1890 case VECTOR_TYPE:
1892 tree scalar = build_one_cst (TREE_TYPE (type));
1894 return build_vector_from_val (type, scalar);
1897 case COMPLEX_TYPE:
1898 return build_complex (type,
1899 build_one_cst (TREE_TYPE (type)),
1900 build_zero_cst (TREE_TYPE (type)));
1902 default:
1903 gcc_unreachable ();
1907 /* Return an integer of type TYPE containing all 1's in as much precision as
1908 it contains, or a complex or vector whose subparts are such integers. */
1910 tree
1911 build_all_ones_cst (tree type)
1913 if (TREE_CODE (type) == COMPLEX_TYPE)
1915 tree scalar = build_all_ones_cst (TREE_TYPE (type));
1916 return build_complex (type, scalar, scalar);
1918 else
1919 return build_minus_one_cst (type);
1922 /* Return a constant of arithmetic type TYPE which is the
1923 opposite of the multiplicative identity of the set TYPE. */
1925 tree
1926 build_minus_one_cst (tree type)
1928 switch (TREE_CODE (type))
1930 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1931 case POINTER_TYPE: case REFERENCE_TYPE:
1932 case OFFSET_TYPE:
1933 return build_int_cst (type, -1);
1935 case REAL_TYPE:
1936 return build_real (type, dconstm1);
1938 case FIXED_POINT_TYPE:
1939 /* We can only generate 1 for accum types. */
1940 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1941 return build_fixed (type, fixed_from_double_int (double_int_minus_one,
1942 TYPE_MODE (type)));
1944 case VECTOR_TYPE:
1946 tree scalar = build_minus_one_cst (TREE_TYPE (type));
1948 return build_vector_from_val (type, scalar);
1951 case COMPLEX_TYPE:
1952 return build_complex (type,
1953 build_minus_one_cst (TREE_TYPE (type)),
1954 build_zero_cst (TREE_TYPE (type)));
1956 default:
1957 gcc_unreachable ();
1961 /* Build 0 constant of type TYPE. This is used by constructor folding
1962 and thus the constant should be represented in memory by
1963 zero(es). */
1965 tree
1966 build_zero_cst (tree type)
1968 switch (TREE_CODE (type))
1970 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1971 case POINTER_TYPE: case REFERENCE_TYPE:
1972 case OFFSET_TYPE: case NULLPTR_TYPE:
1973 return build_int_cst (type, 0);
1975 case REAL_TYPE:
1976 return build_real (type, dconst0);
1978 case FIXED_POINT_TYPE:
1979 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
1981 case VECTOR_TYPE:
1983 tree scalar = build_zero_cst (TREE_TYPE (type));
1985 return build_vector_from_val (type, scalar);
1988 case COMPLEX_TYPE:
1990 tree zero = build_zero_cst (TREE_TYPE (type));
1992 return build_complex (type, zero, zero);
1995 default:
1996 if (!AGGREGATE_TYPE_P (type))
1997 return fold_convert (type, integer_zero_node);
1998 return build_constructor (type, NULL);
2003 /* Build a BINFO with LEN language slots. */
2005 tree
2006 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
2008 tree t;
2009 size_t length = (offsetof (struct tree_binfo, base_binfos)
2010 + vec<tree, va_gc>::embedded_size (base_binfos));
2012 record_node_allocation_statistics (TREE_BINFO, length);
2014 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2016 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2018 TREE_SET_CODE (t, TREE_BINFO);
2020 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2022 return t;
2025 /* Create a CASE_LABEL_EXPR tree node and return it. */
2027 tree
2028 build_case_label (tree low_value, tree high_value, tree label_decl)
2030 tree t = make_node (CASE_LABEL_EXPR);
2032 TREE_TYPE (t) = void_type_node;
2033 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2035 CASE_LOW (t) = low_value;
2036 CASE_HIGH (t) = high_value;
2037 CASE_LABEL (t) = label_decl;
2038 CASE_CHAIN (t) = NULL_TREE;
2040 return t;
2043 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2044 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2045 The latter determines the length of the HOST_WIDE_INT vector. */
2047 tree
2048 make_int_cst_stat (int len, int ext_len MEM_STAT_DECL)
2050 tree t;
2051 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2052 + sizeof (struct tree_int_cst));
2054 gcc_assert (len);
2055 record_node_allocation_statistics (INTEGER_CST, length);
2057 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2059 TREE_SET_CODE (t, INTEGER_CST);
2060 TREE_INT_CST_NUNITS (t) = len;
2061 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2062 /* to_offset can only be applied to trees that are offset_int-sized
2063 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2064 must be exactly the precision of offset_int and so LEN is correct. */
2065 if (ext_len <= OFFSET_INT_ELTS)
2066 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2067 else
2068 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2070 TREE_CONSTANT (t) = 1;
2072 return t;
2075 /* Build a newly constructed TREE_VEC node of length LEN. */
2077 tree
2078 make_tree_vec_stat (int len MEM_STAT_DECL)
2080 tree t;
2081 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2083 record_node_allocation_statistics (TREE_VEC, length);
2085 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2087 TREE_SET_CODE (t, TREE_VEC);
2088 TREE_VEC_LENGTH (t) = len;
2090 return t;
2093 /* Grow a TREE_VEC node to new length LEN. */
2095 tree
2096 grow_tree_vec_stat (tree v, int len MEM_STAT_DECL)
2098 gcc_assert (TREE_CODE (v) == TREE_VEC);
2100 int oldlen = TREE_VEC_LENGTH (v);
2101 gcc_assert (len > oldlen);
2103 int oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2104 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2106 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2108 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2110 TREE_VEC_LENGTH (v) = len;
2112 return v;
2115 /* Return 1 if EXPR is the integer constant zero or a complex constant
2116 of zero. */
2119 integer_zerop (const_tree expr)
2121 STRIP_NOPS (expr);
2123 switch (TREE_CODE (expr))
2125 case INTEGER_CST:
2126 return wi::eq_p (expr, 0);
2127 case COMPLEX_CST:
2128 return (integer_zerop (TREE_REALPART (expr))
2129 && integer_zerop (TREE_IMAGPART (expr)));
2130 case VECTOR_CST:
2132 unsigned i;
2133 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2134 if (!integer_zerop (VECTOR_CST_ELT (expr, i)))
2135 return false;
2136 return true;
2138 default:
2139 return false;
2143 /* Return 1 if EXPR is the integer constant one or the corresponding
2144 complex constant. */
2147 integer_onep (const_tree expr)
2149 STRIP_NOPS (expr);
2151 switch (TREE_CODE (expr))
2153 case INTEGER_CST:
2154 return wi::eq_p (wi::to_widest (expr), 1);
2155 case COMPLEX_CST:
2156 return (integer_onep (TREE_REALPART (expr))
2157 && integer_zerop (TREE_IMAGPART (expr)));
2158 case VECTOR_CST:
2160 unsigned i;
2161 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2162 if (!integer_onep (VECTOR_CST_ELT (expr, i)))
2163 return false;
2164 return true;
2166 default:
2167 return false;
2171 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2172 it contains, or a complex or vector whose subparts are such integers. */
2175 integer_all_onesp (const_tree expr)
2177 STRIP_NOPS (expr);
2179 if (TREE_CODE (expr) == COMPLEX_CST
2180 && integer_all_onesp (TREE_REALPART (expr))
2181 && integer_all_onesp (TREE_IMAGPART (expr)))
2182 return 1;
2184 else if (TREE_CODE (expr) == VECTOR_CST)
2186 unsigned i;
2187 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2188 if (!integer_all_onesp (VECTOR_CST_ELT (expr, i)))
2189 return 0;
2190 return 1;
2193 else if (TREE_CODE (expr) != INTEGER_CST)
2194 return 0;
2196 return wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED) == expr;
2199 /* Return 1 if EXPR is the integer constant minus one. */
2202 integer_minus_onep (const_tree expr)
2204 STRIP_NOPS (expr);
2206 if (TREE_CODE (expr) == COMPLEX_CST)
2207 return (integer_all_onesp (TREE_REALPART (expr))
2208 && integer_zerop (TREE_IMAGPART (expr)));
2209 else
2210 return integer_all_onesp (expr);
2213 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2214 one bit on). */
2217 integer_pow2p (const_tree expr)
2219 STRIP_NOPS (expr);
2221 if (TREE_CODE (expr) == COMPLEX_CST
2222 && integer_pow2p (TREE_REALPART (expr))
2223 && integer_zerop (TREE_IMAGPART (expr)))
2224 return 1;
2226 if (TREE_CODE (expr) != INTEGER_CST)
2227 return 0;
2229 return wi::popcount (expr) == 1;
2232 /* Return 1 if EXPR is an integer constant other than zero or a
2233 complex constant other than zero. */
2236 integer_nonzerop (const_tree expr)
2238 STRIP_NOPS (expr);
2240 return ((TREE_CODE (expr) == INTEGER_CST
2241 && !wi::eq_p (expr, 0))
2242 || (TREE_CODE (expr) == COMPLEX_CST
2243 && (integer_nonzerop (TREE_REALPART (expr))
2244 || integer_nonzerop (TREE_IMAGPART (expr)))));
2247 /* Return 1 if EXPR is the fixed-point constant zero. */
2250 fixed_zerop (const_tree expr)
2252 return (TREE_CODE (expr) == FIXED_CST
2253 && TREE_FIXED_CST (expr).data.is_zero ());
2256 /* Return the power of two represented by a tree node known to be a
2257 power of two. */
2260 tree_log2 (const_tree expr)
2262 STRIP_NOPS (expr);
2264 if (TREE_CODE (expr) == COMPLEX_CST)
2265 return tree_log2 (TREE_REALPART (expr));
2267 return wi::exact_log2 (expr);
2270 /* Similar, but return the largest integer Y such that 2 ** Y is less
2271 than or equal to EXPR. */
2274 tree_floor_log2 (const_tree expr)
2276 STRIP_NOPS (expr);
2278 if (TREE_CODE (expr) == COMPLEX_CST)
2279 return tree_log2 (TREE_REALPART (expr));
2281 return wi::floor_log2 (expr);
2284 /* Return number of known trailing zero bits in EXPR, or, if the value of
2285 EXPR is known to be zero, the precision of it's type. */
2287 unsigned int
2288 tree_ctz (const_tree expr)
2290 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2291 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2292 return 0;
2294 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2295 switch (TREE_CODE (expr))
2297 case INTEGER_CST:
2298 ret1 = wi::ctz (expr);
2299 return MIN (ret1, prec);
2300 case SSA_NAME:
2301 ret1 = wi::ctz (get_nonzero_bits (expr));
2302 return MIN (ret1, prec);
2303 case PLUS_EXPR:
2304 case MINUS_EXPR:
2305 case BIT_IOR_EXPR:
2306 case BIT_XOR_EXPR:
2307 case MIN_EXPR:
2308 case MAX_EXPR:
2309 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2310 if (ret1 == 0)
2311 return ret1;
2312 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2313 return MIN (ret1, ret2);
2314 case POINTER_PLUS_EXPR:
2315 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2316 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2317 /* Second operand is sizetype, which could be in theory
2318 wider than pointer's precision. Make sure we never
2319 return more than prec. */
2320 ret2 = MIN (ret2, prec);
2321 return MIN (ret1, ret2);
2322 case BIT_AND_EXPR:
2323 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2324 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2325 return MAX (ret1, ret2);
2326 case MULT_EXPR:
2327 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2328 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2329 return MIN (ret1 + ret2, prec);
2330 case LSHIFT_EXPR:
2331 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2332 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2333 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2335 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2336 return MIN (ret1 + ret2, prec);
2338 return ret1;
2339 case RSHIFT_EXPR:
2340 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2341 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2343 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2344 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2345 if (ret1 > ret2)
2346 return ret1 - ret2;
2348 return 0;
2349 case TRUNC_DIV_EXPR:
2350 case CEIL_DIV_EXPR:
2351 case FLOOR_DIV_EXPR:
2352 case ROUND_DIV_EXPR:
2353 case EXACT_DIV_EXPR:
2354 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2355 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2357 int l = tree_log2 (TREE_OPERAND (expr, 1));
2358 if (l >= 0)
2360 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2361 ret2 = l;
2362 if (ret1 > ret2)
2363 return ret1 - ret2;
2366 return 0;
2367 CASE_CONVERT:
2368 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2369 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2370 ret1 = prec;
2371 return MIN (ret1, prec);
2372 case SAVE_EXPR:
2373 return tree_ctz (TREE_OPERAND (expr, 0));
2374 case COND_EXPR:
2375 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2376 if (ret1 == 0)
2377 return 0;
2378 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2379 return MIN (ret1, ret2);
2380 case COMPOUND_EXPR:
2381 return tree_ctz (TREE_OPERAND (expr, 1));
2382 case ADDR_EXPR:
2383 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2384 if (ret1 > BITS_PER_UNIT)
2386 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2387 return MIN (ret1, prec);
2389 return 0;
2390 default:
2391 return 0;
2395 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2396 decimal float constants, so don't return 1 for them. */
2399 real_zerop (const_tree expr)
2401 STRIP_NOPS (expr);
2403 switch (TREE_CODE (expr))
2405 case REAL_CST:
2406 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0)
2407 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2408 case COMPLEX_CST:
2409 return real_zerop (TREE_REALPART (expr))
2410 && real_zerop (TREE_IMAGPART (expr));
2411 case VECTOR_CST:
2413 unsigned i;
2414 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2415 if (!real_zerop (VECTOR_CST_ELT (expr, i)))
2416 return false;
2417 return true;
2419 default:
2420 return false;
2424 /* Return 1 if EXPR is the real constant one in real or complex form.
2425 Trailing zeroes matter for decimal float constants, so don't return
2426 1 for them. */
2429 real_onep (const_tree expr)
2431 STRIP_NOPS (expr);
2433 switch (TREE_CODE (expr))
2435 case REAL_CST:
2436 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1)
2437 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2438 case COMPLEX_CST:
2439 return real_onep (TREE_REALPART (expr))
2440 && real_zerop (TREE_IMAGPART (expr));
2441 case VECTOR_CST:
2443 unsigned i;
2444 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2445 if (!real_onep (VECTOR_CST_ELT (expr, i)))
2446 return false;
2447 return true;
2449 default:
2450 return false;
2454 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2455 matter for decimal float constants, so don't return 1 for them. */
2458 real_minus_onep (const_tree expr)
2460 STRIP_NOPS (expr);
2462 switch (TREE_CODE (expr))
2464 case REAL_CST:
2465 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1)
2466 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2467 case COMPLEX_CST:
2468 return real_minus_onep (TREE_REALPART (expr))
2469 && real_zerop (TREE_IMAGPART (expr));
2470 case VECTOR_CST:
2472 unsigned i;
2473 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2474 if (!real_minus_onep (VECTOR_CST_ELT (expr, i)))
2475 return false;
2476 return true;
2478 default:
2479 return false;
2483 /* Nonzero if EXP is a constant or a cast of a constant. */
2486 really_constant_p (const_tree exp)
2488 /* This is not quite the same as STRIP_NOPS. It does more. */
2489 while (CONVERT_EXPR_P (exp)
2490 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2491 exp = TREE_OPERAND (exp, 0);
2492 return TREE_CONSTANT (exp);
2495 /* Return first list element whose TREE_VALUE is ELEM.
2496 Return 0 if ELEM is not in LIST. */
2498 tree
2499 value_member (tree elem, tree list)
2501 while (list)
2503 if (elem == TREE_VALUE (list))
2504 return list;
2505 list = TREE_CHAIN (list);
2507 return NULL_TREE;
2510 /* Return first list element whose TREE_PURPOSE is ELEM.
2511 Return 0 if ELEM is not in LIST. */
2513 tree
2514 purpose_member (const_tree elem, tree list)
2516 while (list)
2518 if (elem == TREE_PURPOSE (list))
2519 return list;
2520 list = TREE_CHAIN (list);
2522 return NULL_TREE;
2525 /* Return true if ELEM is in V. */
2527 bool
2528 vec_member (const_tree elem, vec<tree, va_gc> *v)
2530 unsigned ix;
2531 tree t;
2532 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2533 if (elem == t)
2534 return true;
2535 return false;
2538 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2539 NULL_TREE. */
2541 tree
2542 chain_index (int idx, tree chain)
2544 for (; chain && idx > 0; --idx)
2545 chain = TREE_CHAIN (chain);
2546 return chain;
2549 /* Return nonzero if ELEM is part of the chain CHAIN. */
2552 chain_member (const_tree elem, const_tree chain)
2554 while (chain)
2556 if (elem == chain)
2557 return 1;
2558 chain = DECL_CHAIN (chain);
2561 return 0;
2564 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2565 We expect a null pointer to mark the end of the chain.
2566 This is the Lisp primitive `length'. */
2569 list_length (const_tree t)
2571 const_tree p = t;
2572 #ifdef ENABLE_TREE_CHECKING
2573 const_tree q = t;
2574 #endif
2575 int len = 0;
2577 while (p)
2579 p = TREE_CHAIN (p);
2580 #ifdef ENABLE_TREE_CHECKING
2581 if (len % 2)
2582 q = TREE_CHAIN (q);
2583 gcc_assert (p != q);
2584 #endif
2585 len++;
2588 return len;
2591 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2592 UNION_TYPE TYPE, or NULL_TREE if none. */
2594 tree
2595 first_field (const_tree type)
2597 tree t = TYPE_FIELDS (type);
2598 while (t && TREE_CODE (t) != FIELD_DECL)
2599 t = TREE_CHAIN (t);
2600 return t;
2603 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2604 by modifying the last node in chain 1 to point to chain 2.
2605 This is the Lisp primitive `nconc'. */
2607 tree
2608 chainon (tree op1, tree op2)
2610 tree t1;
2612 if (!op1)
2613 return op2;
2614 if (!op2)
2615 return op1;
2617 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2618 continue;
2619 TREE_CHAIN (t1) = op2;
2621 #ifdef ENABLE_TREE_CHECKING
2623 tree t2;
2624 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2625 gcc_assert (t2 != t1);
2627 #endif
2629 return op1;
2632 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2634 tree
2635 tree_last (tree chain)
2637 tree next;
2638 if (chain)
2639 while ((next = TREE_CHAIN (chain)))
2640 chain = next;
2641 return chain;
2644 /* Reverse the order of elements in the chain T,
2645 and return the new head of the chain (old last element). */
2647 tree
2648 nreverse (tree t)
2650 tree prev = 0, decl, next;
2651 for (decl = t; decl; decl = next)
2653 /* We shouldn't be using this function to reverse BLOCK chains; we
2654 have blocks_nreverse for that. */
2655 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
2656 next = TREE_CHAIN (decl);
2657 TREE_CHAIN (decl) = prev;
2658 prev = decl;
2660 return prev;
2663 /* Return a newly created TREE_LIST node whose
2664 purpose and value fields are PARM and VALUE. */
2666 tree
2667 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
2669 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
2670 TREE_PURPOSE (t) = parm;
2671 TREE_VALUE (t) = value;
2672 return t;
2675 /* Build a chain of TREE_LIST nodes from a vector. */
2677 tree
2678 build_tree_list_vec_stat (const vec<tree, va_gc> *vec MEM_STAT_DECL)
2680 tree ret = NULL_TREE;
2681 tree *pp = &ret;
2682 unsigned int i;
2683 tree t;
2684 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
2686 *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2687 pp = &TREE_CHAIN (*pp);
2689 return ret;
2692 /* Return a newly created TREE_LIST node whose
2693 purpose and value fields are PURPOSE and VALUE
2694 and whose TREE_CHAIN is CHAIN. */
2696 tree
2697 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
2699 tree node;
2701 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
2702 memset (node, 0, sizeof (struct tree_common));
2704 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
2706 TREE_SET_CODE (node, TREE_LIST);
2707 TREE_CHAIN (node) = chain;
2708 TREE_PURPOSE (node) = purpose;
2709 TREE_VALUE (node) = value;
2710 return node;
2713 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2714 trees. */
2716 vec<tree, va_gc> *
2717 ctor_to_vec (tree ctor)
2719 vec<tree, va_gc> *vec;
2720 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
2721 unsigned int ix;
2722 tree val;
2724 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2725 vec->quick_push (val);
2727 return vec;
2730 /* Return the size nominally occupied by an object of type TYPE
2731 when it resides in memory. The value is measured in units of bytes,
2732 and its data type is that normally used for type sizes
2733 (which is the first type created by make_signed_type or
2734 make_unsigned_type). */
2736 tree
2737 size_in_bytes (const_tree type)
2739 tree t;
2741 if (type == error_mark_node)
2742 return integer_zero_node;
2744 type = TYPE_MAIN_VARIANT (type);
2745 t = TYPE_SIZE_UNIT (type);
2747 if (t == 0)
2749 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
2750 return size_zero_node;
2753 return t;
2756 /* Return the size of TYPE (in bytes) as a wide integer
2757 or return -1 if the size can vary or is larger than an integer. */
2759 HOST_WIDE_INT
2760 int_size_in_bytes (const_tree type)
2762 tree t;
2764 if (type == error_mark_node)
2765 return 0;
2767 type = TYPE_MAIN_VARIANT (type);
2768 t = TYPE_SIZE_UNIT (type);
2770 if (t && tree_fits_uhwi_p (t))
2771 return TREE_INT_CST_LOW (t);
2772 else
2773 return -1;
2776 /* Return the maximum size of TYPE (in bytes) as a wide integer
2777 or return -1 if the size can vary or is larger than an integer. */
2779 HOST_WIDE_INT
2780 max_int_size_in_bytes (const_tree type)
2782 HOST_WIDE_INT size = -1;
2783 tree size_tree;
2785 /* If this is an array type, check for a possible MAX_SIZE attached. */
2787 if (TREE_CODE (type) == ARRAY_TYPE)
2789 size_tree = TYPE_ARRAY_MAX_SIZE (type);
2791 if (size_tree && tree_fits_uhwi_p (size_tree))
2792 size = tree_to_uhwi (size_tree);
2795 /* If we still haven't been able to get a size, see if the language
2796 can compute a maximum size. */
2798 if (size == -1)
2800 size_tree = lang_hooks.types.max_size (type);
2802 if (size_tree && tree_fits_uhwi_p (size_tree))
2803 size = tree_to_uhwi (size_tree);
2806 return size;
2809 /* Return the bit position of FIELD, in bits from the start of the record.
2810 This is a tree of type bitsizetype. */
2812 tree
2813 bit_position (const_tree field)
2815 return bit_from_pos (DECL_FIELD_OFFSET (field),
2816 DECL_FIELD_BIT_OFFSET (field));
2819 /* Likewise, but return as an integer. It must be representable in
2820 that way (since it could be a signed value, we don't have the
2821 option of returning -1 like int_size_in_byte can. */
2823 HOST_WIDE_INT
2824 int_bit_position (const_tree field)
2826 return tree_to_shwi (bit_position (field));
2829 /* Return the byte position of FIELD, in bytes from the start of the record.
2830 This is a tree of type sizetype. */
2832 tree
2833 byte_position (const_tree field)
2835 return byte_from_pos (DECL_FIELD_OFFSET (field),
2836 DECL_FIELD_BIT_OFFSET (field));
2839 /* Likewise, but return as an integer. It must be representable in
2840 that way (since it could be a signed value, we don't have the
2841 option of returning -1 like int_size_in_byte can. */
2843 HOST_WIDE_INT
2844 int_byte_position (const_tree field)
2846 return tree_to_shwi (byte_position (field));
2849 /* Return the strictest alignment, in bits, that T is known to have. */
2851 unsigned int
2852 expr_align (const_tree t)
2854 unsigned int align0, align1;
2856 switch (TREE_CODE (t))
2858 CASE_CONVERT: case NON_LVALUE_EXPR:
2859 /* If we have conversions, we know that the alignment of the
2860 object must meet each of the alignments of the types. */
2861 align0 = expr_align (TREE_OPERAND (t, 0));
2862 align1 = TYPE_ALIGN (TREE_TYPE (t));
2863 return MAX (align0, align1);
2865 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
2866 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
2867 case CLEANUP_POINT_EXPR:
2868 /* These don't change the alignment of an object. */
2869 return expr_align (TREE_OPERAND (t, 0));
2871 case COND_EXPR:
2872 /* The best we can do is say that the alignment is the least aligned
2873 of the two arms. */
2874 align0 = expr_align (TREE_OPERAND (t, 1));
2875 align1 = expr_align (TREE_OPERAND (t, 2));
2876 return MIN (align0, align1);
2878 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2879 meaningfully, it's always 1. */
2880 case LABEL_DECL: case CONST_DECL:
2881 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
2882 case FUNCTION_DECL:
2883 gcc_assert (DECL_ALIGN (t) != 0);
2884 return DECL_ALIGN (t);
2886 default:
2887 break;
2890 /* Otherwise take the alignment from that of the type. */
2891 return TYPE_ALIGN (TREE_TYPE (t));
2894 /* Return, as a tree node, the number of elements for TYPE (which is an
2895 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2897 tree
2898 array_type_nelts (const_tree type)
2900 tree index_type, min, max;
2902 /* If they did it with unspecified bounds, then we should have already
2903 given an error about it before we got here. */
2904 if (! TYPE_DOMAIN (type))
2905 return error_mark_node;
2907 index_type = TYPE_DOMAIN (type);
2908 min = TYPE_MIN_VALUE (index_type);
2909 max = TYPE_MAX_VALUE (index_type);
2911 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
2912 if (!max)
2913 return error_mark_node;
2915 return (integer_zerop (min)
2916 ? max
2917 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
2920 /* If arg is static -- a reference to an object in static storage -- then
2921 return the object. This is not the same as the C meaning of `static'.
2922 If arg isn't static, return NULL. */
2924 tree
2925 staticp (tree arg)
2927 switch (TREE_CODE (arg))
2929 case FUNCTION_DECL:
2930 /* Nested functions are static, even though taking their address will
2931 involve a trampoline as we unnest the nested function and create
2932 the trampoline on the tree level. */
2933 return arg;
2935 case VAR_DECL:
2936 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2937 && ! DECL_THREAD_LOCAL_P (arg)
2938 && ! DECL_DLLIMPORT_P (arg)
2939 ? arg : NULL);
2941 case CONST_DECL:
2942 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2943 ? arg : NULL);
2945 case CONSTRUCTOR:
2946 return TREE_STATIC (arg) ? arg : NULL;
2948 case LABEL_DECL:
2949 case STRING_CST:
2950 return arg;
2952 case COMPONENT_REF:
2953 /* If the thing being referenced is not a field, then it is
2954 something language specific. */
2955 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
2957 /* If we are referencing a bitfield, we can't evaluate an
2958 ADDR_EXPR at compile time and so it isn't a constant. */
2959 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
2960 return NULL;
2962 return staticp (TREE_OPERAND (arg, 0));
2964 case BIT_FIELD_REF:
2965 return NULL;
2967 case INDIRECT_REF:
2968 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
2970 case ARRAY_REF:
2971 case ARRAY_RANGE_REF:
2972 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2973 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2974 return staticp (TREE_OPERAND (arg, 0));
2975 else
2976 return NULL;
2978 case COMPOUND_LITERAL_EXPR:
2979 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
2981 default:
2982 return NULL;
2989 /* Return whether OP is a DECL whose address is function-invariant. */
2991 bool
2992 decl_address_invariant_p (const_tree op)
2994 /* The conditions below are slightly less strict than the one in
2995 staticp. */
2997 switch (TREE_CODE (op))
2999 case PARM_DECL:
3000 case RESULT_DECL:
3001 case LABEL_DECL:
3002 case FUNCTION_DECL:
3003 return true;
3005 case VAR_DECL:
3006 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3007 || DECL_THREAD_LOCAL_P (op)
3008 || DECL_CONTEXT (op) == current_function_decl
3009 || decl_function_context (op) == current_function_decl)
3010 return true;
3011 break;
3013 case CONST_DECL:
3014 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3015 || decl_function_context (op) == current_function_decl)
3016 return true;
3017 break;
3019 default:
3020 break;
3023 return false;
3026 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3028 bool
3029 decl_address_ip_invariant_p (const_tree op)
3031 /* The conditions below are slightly less strict than the one in
3032 staticp. */
3034 switch (TREE_CODE (op))
3036 case LABEL_DECL:
3037 case FUNCTION_DECL:
3038 case STRING_CST:
3039 return true;
3041 case VAR_DECL:
3042 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3043 && !DECL_DLLIMPORT_P (op))
3044 || DECL_THREAD_LOCAL_P (op))
3045 return true;
3046 break;
3048 case CONST_DECL:
3049 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3050 return true;
3051 break;
3053 default:
3054 break;
3057 return false;
3061 /* Return true if T is function-invariant (internal function, does
3062 not handle arithmetic; that's handled in skip_simple_arithmetic and
3063 tree_invariant_p). */
3065 static bool tree_invariant_p (tree t);
3067 static bool
3068 tree_invariant_p_1 (tree t)
3070 tree op;
3072 if (TREE_CONSTANT (t)
3073 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3074 return true;
3076 switch (TREE_CODE (t))
3078 case SAVE_EXPR:
3079 return true;
3081 case ADDR_EXPR:
3082 op = TREE_OPERAND (t, 0);
3083 while (handled_component_p (op))
3085 switch (TREE_CODE (op))
3087 case ARRAY_REF:
3088 case ARRAY_RANGE_REF:
3089 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3090 || TREE_OPERAND (op, 2) != NULL_TREE
3091 || TREE_OPERAND (op, 3) != NULL_TREE)
3092 return false;
3093 break;
3095 case COMPONENT_REF:
3096 if (TREE_OPERAND (op, 2) != NULL_TREE)
3097 return false;
3098 break;
3100 default:;
3102 op = TREE_OPERAND (op, 0);
3105 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3107 default:
3108 break;
3111 return false;
3114 /* Return true if T is function-invariant. */
3116 static bool
3117 tree_invariant_p (tree t)
3119 tree inner = skip_simple_arithmetic (t);
3120 return tree_invariant_p_1 (inner);
3123 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3124 Do this to any expression which may be used in more than one place,
3125 but must be evaluated only once.
3127 Normally, expand_expr would reevaluate the expression each time.
3128 Calling save_expr produces something that is evaluated and recorded
3129 the first time expand_expr is called on it. Subsequent calls to
3130 expand_expr just reuse the recorded value.
3132 The call to expand_expr that generates code that actually computes
3133 the value is the first call *at compile time*. Subsequent calls
3134 *at compile time* generate code to use the saved value.
3135 This produces correct result provided that *at run time* control
3136 always flows through the insns made by the first expand_expr
3137 before reaching the other places where the save_expr was evaluated.
3138 You, the caller of save_expr, must make sure this is so.
3140 Constants, and certain read-only nodes, are returned with no
3141 SAVE_EXPR because that is safe. Expressions containing placeholders
3142 are not touched; see tree.def for an explanation of what these
3143 are used for. */
3145 tree
3146 save_expr (tree expr)
3148 tree t = fold (expr);
3149 tree inner;
3151 /* If the tree evaluates to a constant, then we don't want to hide that
3152 fact (i.e. this allows further folding, and direct checks for constants).
3153 However, a read-only object that has side effects cannot be bypassed.
3154 Since it is no problem to reevaluate literals, we just return the
3155 literal node. */
3156 inner = skip_simple_arithmetic (t);
3157 if (TREE_CODE (inner) == ERROR_MARK)
3158 return inner;
3160 if (tree_invariant_p_1 (inner))
3161 return t;
3163 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3164 it means that the size or offset of some field of an object depends on
3165 the value within another field.
3167 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
3168 and some variable since it would then need to be both evaluated once and
3169 evaluated more than once. Front-ends must assure this case cannot
3170 happen by surrounding any such subexpressions in their own SAVE_EXPR
3171 and forcing evaluation at the proper time. */
3172 if (contains_placeholder_p (inner))
3173 return t;
3175 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
3176 SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
3178 /* This expression might be placed ahead of a jump to ensure that the
3179 value was computed on both sides of the jump. So make sure it isn't
3180 eliminated as dead. */
3181 TREE_SIDE_EFFECTS (t) = 1;
3182 return t;
3185 /* Look inside EXPR into any simple arithmetic operations. Return the
3186 outermost non-arithmetic or non-invariant node. */
3188 tree
3189 skip_simple_arithmetic (tree expr)
3191 /* We don't care about whether this can be used as an lvalue in this
3192 context. */
3193 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3194 expr = TREE_OPERAND (expr, 0);
3196 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3197 a constant, it will be more efficient to not make another SAVE_EXPR since
3198 it will allow better simplification and GCSE will be able to merge the
3199 computations if they actually occur. */
3200 while (true)
3202 if (UNARY_CLASS_P (expr))
3203 expr = TREE_OPERAND (expr, 0);
3204 else if (BINARY_CLASS_P (expr))
3206 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3207 expr = TREE_OPERAND (expr, 0);
3208 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3209 expr = TREE_OPERAND (expr, 1);
3210 else
3211 break;
3213 else
3214 break;
3217 return expr;
3220 /* Look inside EXPR into simple arithmetic operations involving constants.
3221 Return the outermost non-arithmetic or non-constant node. */
3223 tree
3224 skip_simple_constant_arithmetic (tree expr)
3226 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3227 expr = TREE_OPERAND (expr, 0);
3229 while (true)
3231 if (UNARY_CLASS_P (expr))
3232 expr = TREE_OPERAND (expr, 0);
3233 else if (BINARY_CLASS_P (expr))
3235 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3236 expr = TREE_OPERAND (expr, 0);
3237 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3238 expr = TREE_OPERAND (expr, 1);
3239 else
3240 break;
3242 else
3243 break;
3246 return expr;
3249 /* Return which tree structure is used by T. */
3251 enum tree_node_structure_enum
3252 tree_node_structure (const_tree t)
3254 const enum tree_code code = TREE_CODE (t);
3255 return tree_node_structure_for_code (code);
3258 /* Set various status flags when building a CALL_EXPR object T. */
3260 static void
3261 process_call_operands (tree t)
3263 bool side_effects = TREE_SIDE_EFFECTS (t);
3264 bool read_only = false;
3265 int i = call_expr_flags (t);
3267 /* Calls have side-effects, except those to const or pure functions. */
3268 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3269 side_effects = true;
3270 /* Propagate TREE_READONLY of arguments for const functions. */
3271 if (i & ECF_CONST)
3272 read_only = true;
3274 if (!side_effects || read_only)
3275 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3277 tree op = TREE_OPERAND (t, i);
3278 if (op && TREE_SIDE_EFFECTS (op))
3279 side_effects = true;
3280 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3281 read_only = false;
3284 TREE_SIDE_EFFECTS (t) = side_effects;
3285 TREE_READONLY (t) = read_only;
3288 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3289 size or offset that depends on a field within a record. */
3291 bool
3292 contains_placeholder_p (const_tree exp)
3294 enum tree_code code;
3296 if (!exp)
3297 return 0;
3299 code = TREE_CODE (exp);
3300 if (code == PLACEHOLDER_EXPR)
3301 return 1;
3303 switch (TREE_CODE_CLASS (code))
3305 case tcc_reference:
3306 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3307 position computations since they will be converted into a
3308 WITH_RECORD_EXPR involving the reference, which will assume
3309 here will be valid. */
3310 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3312 case tcc_exceptional:
3313 if (code == TREE_LIST)
3314 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3315 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3316 break;
3318 case tcc_unary:
3319 case tcc_binary:
3320 case tcc_comparison:
3321 case tcc_expression:
3322 switch (code)
3324 case COMPOUND_EXPR:
3325 /* Ignoring the first operand isn't quite right, but works best. */
3326 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3328 case COND_EXPR:
3329 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3330 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3331 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3333 case SAVE_EXPR:
3334 /* The save_expr function never wraps anything containing
3335 a PLACEHOLDER_EXPR. */
3336 return 0;
3338 default:
3339 break;
3342 switch (TREE_CODE_LENGTH (code))
3344 case 1:
3345 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3346 case 2:
3347 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3348 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3349 default:
3350 return 0;
3353 case tcc_vl_exp:
3354 switch (code)
3356 case CALL_EXPR:
3358 const_tree arg;
3359 const_call_expr_arg_iterator iter;
3360 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3361 if (CONTAINS_PLACEHOLDER_P (arg))
3362 return 1;
3363 return 0;
3365 default:
3366 return 0;
3369 default:
3370 return 0;
3372 return 0;
3375 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3376 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3377 field positions. */
3379 static bool
3380 type_contains_placeholder_1 (const_tree type)
3382 /* If the size contains a placeholder or the parent type (component type in
3383 the case of arrays) type involves a placeholder, this type does. */
3384 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3385 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3386 || (!POINTER_TYPE_P (type)
3387 && TREE_TYPE (type)
3388 && type_contains_placeholder_p (TREE_TYPE (type))))
3389 return true;
3391 /* Now do type-specific checks. Note that the last part of the check above
3392 greatly limits what we have to do below. */
3393 switch (TREE_CODE (type))
3395 case VOID_TYPE:
3396 case COMPLEX_TYPE:
3397 case ENUMERAL_TYPE:
3398 case BOOLEAN_TYPE:
3399 case POINTER_TYPE:
3400 case OFFSET_TYPE:
3401 case REFERENCE_TYPE:
3402 case METHOD_TYPE:
3403 case FUNCTION_TYPE:
3404 case VECTOR_TYPE:
3405 case NULLPTR_TYPE:
3406 return false;
3408 case INTEGER_TYPE:
3409 case REAL_TYPE:
3410 case FIXED_POINT_TYPE:
3411 /* Here we just check the bounds. */
3412 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3413 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3415 case ARRAY_TYPE:
3416 /* We have already checked the component type above, so just check the
3417 domain type. */
3418 return type_contains_placeholder_p (TYPE_DOMAIN (type));
3420 case RECORD_TYPE:
3421 case UNION_TYPE:
3422 case QUAL_UNION_TYPE:
3424 tree field;
3426 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3427 if (TREE_CODE (field) == FIELD_DECL
3428 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3429 || (TREE_CODE (type) == QUAL_UNION_TYPE
3430 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3431 || type_contains_placeholder_p (TREE_TYPE (field))))
3432 return true;
3434 return false;
3437 default:
3438 gcc_unreachable ();
3442 /* Wrapper around above function used to cache its result. */
3444 bool
3445 type_contains_placeholder_p (tree type)
3447 bool result;
3449 /* If the contains_placeholder_bits field has been initialized,
3450 then we know the answer. */
3451 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3452 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3454 /* Indicate that we've seen this type node, and the answer is false.
3455 This is what we want to return if we run into recursion via fields. */
3456 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3458 /* Compute the real value. */
3459 result = type_contains_placeholder_1 (type);
3461 /* Store the real value. */
3462 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3464 return result;
3467 /* Push tree EXP onto vector QUEUE if it is not already present. */
3469 static void
3470 push_without_duplicates (tree exp, vec<tree> *queue)
3472 unsigned int i;
3473 tree iter;
3475 FOR_EACH_VEC_ELT (*queue, i, iter)
3476 if (simple_cst_equal (iter, exp) == 1)
3477 break;
3479 if (!iter)
3480 queue->safe_push (exp);
3483 /* Given a tree EXP, find all occurrences of references to fields
3484 in a PLACEHOLDER_EXPR and place them in vector REFS without
3485 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3486 we assume here that EXP contains only arithmetic expressions
3487 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3488 argument list. */
3490 void
3491 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3493 enum tree_code code = TREE_CODE (exp);
3494 tree inner;
3495 int i;
3497 /* We handle TREE_LIST and COMPONENT_REF separately. */
3498 if (code == TREE_LIST)
3500 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3501 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3503 else if (code == COMPONENT_REF)
3505 for (inner = TREE_OPERAND (exp, 0);
3506 REFERENCE_CLASS_P (inner);
3507 inner = TREE_OPERAND (inner, 0))
3510 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3511 push_without_duplicates (exp, refs);
3512 else
3513 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3515 else
3516 switch (TREE_CODE_CLASS (code))
3518 case tcc_constant:
3519 break;
3521 case tcc_declaration:
3522 /* Variables allocated to static storage can stay. */
3523 if (!TREE_STATIC (exp))
3524 push_without_duplicates (exp, refs);
3525 break;
3527 case tcc_expression:
3528 /* This is the pattern built in ada/make_aligning_type. */
3529 if (code == ADDR_EXPR
3530 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3532 push_without_duplicates (exp, refs);
3533 break;
3536 /* Fall through... */
3538 case tcc_exceptional:
3539 case tcc_unary:
3540 case tcc_binary:
3541 case tcc_comparison:
3542 case tcc_reference:
3543 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3544 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3545 break;
3547 case tcc_vl_exp:
3548 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3549 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3550 break;
3552 default:
3553 gcc_unreachable ();
3557 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3558 return a tree with all occurrences of references to F in a
3559 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3560 CONST_DECLs. Note that we assume here that EXP contains only
3561 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3562 occurring only in their argument list. */
3564 tree
3565 substitute_in_expr (tree exp, tree f, tree r)
3567 enum tree_code code = TREE_CODE (exp);
3568 tree op0, op1, op2, op3;
3569 tree new_tree;
3571 /* We handle TREE_LIST and COMPONENT_REF separately. */
3572 if (code == TREE_LIST)
3574 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3575 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3576 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3577 return exp;
3579 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3581 else if (code == COMPONENT_REF)
3583 tree inner;
3585 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3586 and it is the right field, replace it with R. */
3587 for (inner = TREE_OPERAND (exp, 0);
3588 REFERENCE_CLASS_P (inner);
3589 inner = TREE_OPERAND (inner, 0))
3592 /* The field. */
3593 op1 = TREE_OPERAND (exp, 1);
3595 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3596 return r;
3598 /* If this expression hasn't been completed let, leave it alone. */
3599 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3600 return exp;
3602 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3603 if (op0 == TREE_OPERAND (exp, 0))
3604 return exp;
3606 new_tree
3607 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3609 else
3610 switch (TREE_CODE_CLASS (code))
3612 case tcc_constant:
3613 return exp;
3615 case tcc_declaration:
3616 if (exp == f)
3617 return r;
3618 else
3619 return exp;
3621 case tcc_expression:
3622 if (exp == f)
3623 return r;
3625 /* Fall through... */
3627 case tcc_exceptional:
3628 case tcc_unary:
3629 case tcc_binary:
3630 case tcc_comparison:
3631 case tcc_reference:
3632 switch (TREE_CODE_LENGTH (code))
3634 case 0:
3635 return exp;
3637 case 1:
3638 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3639 if (op0 == TREE_OPERAND (exp, 0))
3640 return exp;
3642 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3643 break;
3645 case 2:
3646 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3647 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3649 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3650 return exp;
3652 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3653 break;
3655 case 3:
3656 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3657 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3658 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3660 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3661 && op2 == TREE_OPERAND (exp, 2))
3662 return exp;
3664 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3665 break;
3667 case 4:
3668 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3669 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3670 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3671 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3673 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3674 && op2 == TREE_OPERAND (exp, 2)
3675 && op3 == TREE_OPERAND (exp, 3))
3676 return exp;
3678 new_tree
3679 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3680 break;
3682 default:
3683 gcc_unreachable ();
3685 break;
3687 case tcc_vl_exp:
3689 int i;
3691 new_tree = NULL_TREE;
3693 /* If we are trying to replace F with a constant, inline back
3694 functions which do nothing else than computing a value from
3695 the arguments they are passed. This makes it possible to
3696 fold partially or entirely the replacement expression. */
3697 if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3699 tree t = maybe_inline_call_in_expr (exp);
3700 if (t)
3701 return SUBSTITUTE_IN_EXPR (t, f, r);
3704 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3706 tree op = TREE_OPERAND (exp, i);
3707 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3708 if (new_op != op)
3710 if (!new_tree)
3711 new_tree = copy_node (exp);
3712 TREE_OPERAND (new_tree, i) = new_op;
3716 if (new_tree)
3718 new_tree = fold (new_tree);
3719 if (TREE_CODE (new_tree) == CALL_EXPR)
3720 process_call_operands (new_tree);
3722 else
3723 return exp;
3725 break;
3727 default:
3728 gcc_unreachable ();
3731 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3733 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3734 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3736 return new_tree;
3739 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3740 for it within OBJ, a tree that is an object or a chain of references. */
3742 tree
3743 substitute_placeholder_in_expr (tree exp, tree obj)
3745 enum tree_code code = TREE_CODE (exp);
3746 tree op0, op1, op2, op3;
3747 tree new_tree;
3749 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3750 in the chain of OBJ. */
3751 if (code == PLACEHOLDER_EXPR)
3753 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3754 tree elt;
3756 for (elt = obj; elt != 0;
3757 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3758 || TREE_CODE (elt) == COND_EXPR)
3759 ? TREE_OPERAND (elt, 1)
3760 : (REFERENCE_CLASS_P (elt)
3761 || UNARY_CLASS_P (elt)
3762 || BINARY_CLASS_P (elt)
3763 || VL_EXP_CLASS_P (elt)
3764 || EXPRESSION_CLASS_P (elt))
3765 ? TREE_OPERAND (elt, 0) : 0))
3766 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3767 return elt;
3769 for (elt = obj; elt != 0;
3770 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3771 || TREE_CODE (elt) == COND_EXPR)
3772 ? TREE_OPERAND (elt, 1)
3773 : (REFERENCE_CLASS_P (elt)
3774 || UNARY_CLASS_P (elt)
3775 || BINARY_CLASS_P (elt)
3776 || VL_EXP_CLASS_P (elt)
3777 || EXPRESSION_CLASS_P (elt))
3778 ? TREE_OPERAND (elt, 0) : 0))
3779 if (POINTER_TYPE_P (TREE_TYPE (elt))
3780 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3781 == need_type))
3782 return fold_build1 (INDIRECT_REF, need_type, elt);
3784 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3785 survives until RTL generation, there will be an error. */
3786 return exp;
3789 /* TREE_LIST is special because we need to look at TREE_VALUE
3790 and TREE_CHAIN, not TREE_OPERANDS. */
3791 else if (code == TREE_LIST)
3793 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3794 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3795 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3796 return exp;
3798 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3800 else
3801 switch (TREE_CODE_CLASS (code))
3803 case tcc_constant:
3804 case tcc_declaration:
3805 return exp;
3807 case tcc_exceptional:
3808 case tcc_unary:
3809 case tcc_binary:
3810 case tcc_comparison:
3811 case tcc_expression:
3812 case tcc_reference:
3813 case tcc_statement:
3814 switch (TREE_CODE_LENGTH (code))
3816 case 0:
3817 return exp;
3819 case 1:
3820 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3821 if (op0 == TREE_OPERAND (exp, 0))
3822 return exp;
3824 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3825 break;
3827 case 2:
3828 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3829 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3831 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3832 return exp;
3834 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3835 break;
3837 case 3:
3838 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3839 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3840 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3842 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3843 && op2 == TREE_OPERAND (exp, 2))
3844 return exp;
3846 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3847 break;
3849 case 4:
3850 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3851 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3852 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3853 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
3855 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3856 && op2 == TREE_OPERAND (exp, 2)
3857 && op3 == TREE_OPERAND (exp, 3))
3858 return exp;
3860 new_tree
3861 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3862 break;
3864 default:
3865 gcc_unreachable ();
3867 break;
3869 case tcc_vl_exp:
3871 int i;
3873 new_tree = NULL_TREE;
3875 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3877 tree op = TREE_OPERAND (exp, i);
3878 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
3879 if (new_op != op)
3881 if (!new_tree)
3882 new_tree = copy_node (exp);
3883 TREE_OPERAND (new_tree, i) = new_op;
3887 if (new_tree)
3889 new_tree = fold (new_tree);
3890 if (TREE_CODE (new_tree) == CALL_EXPR)
3891 process_call_operands (new_tree);
3893 else
3894 return exp;
3896 break;
3898 default:
3899 gcc_unreachable ();
3902 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3904 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3905 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3907 return new_tree;
3911 /* Subroutine of stabilize_reference; this is called for subtrees of
3912 references. Any expression with side-effects must be put in a SAVE_EXPR
3913 to ensure that it is only evaluated once.
3915 We don't put SAVE_EXPR nodes around everything, because assigning very
3916 simple expressions to temporaries causes us to miss good opportunities
3917 for optimizations. Among other things, the opportunity to fold in the
3918 addition of a constant into an addressing mode often gets lost, e.g.
3919 "y[i+1] += x;". In general, we take the approach that we should not make
3920 an assignment unless we are forced into it - i.e., that any non-side effect
3921 operator should be allowed, and that cse should take care of coalescing
3922 multiple utterances of the same expression should that prove fruitful. */
3924 static tree
3925 stabilize_reference_1 (tree e)
3927 tree result;
3928 enum tree_code code = TREE_CODE (e);
3930 /* We cannot ignore const expressions because it might be a reference
3931 to a const array but whose index contains side-effects. But we can
3932 ignore things that are actual constant or that already have been
3933 handled by this function. */
3935 if (tree_invariant_p (e))
3936 return e;
3938 switch (TREE_CODE_CLASS (code))
3940 case tcc_exceptional:
3941 case tcc_type:
3942 case tcc_declaration:
3943 case tcc_comparison:
3944 case tcc_statement:
3945 case tcc_expression:
3946 case tcc_reference:
3947 case tcc_vl_exp:
3948 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3949 so that it will only be evaluated once. */
3950 /* The reference (r) and comparison (<) classes could be handled as
3951 below, but it is generally faster to only evaluate them once. */
3952 if (TREE_SIDE_EFFECTS (e))
3953 return save_expr (e);
3954 return e;
3956 case tcc_constant:
3957 /* Constants need no processing. In fact, we should never reach
3958 here. */
3959 return e;
3961 case tcc_binary:
3962 /* Division is slow and tends to be compiled with jumps,
3963 especially the division by powers of 2 that is often
3964 found inside of an array reference. So do it just once. */
3965 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
3966 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
3967 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
3968 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
3969 return save_expr (e);
3970 /* Recursively stabilize each operand. */
3971 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
3972 stabilize_reference_1 (TREE_OPERAND (e, 1)));
3973 break;
3975 case tcc_unary:
3976 /* Recursively stabilize each operand. */
3977 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
3978 break;
3980 default:
3981 gcc_unreachable ();
3984 TREE_TYPE (result) = TREE_TYPE (e);
3985 TREE_READONLY (result) = TREE_READONLY (e);
3986 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
3987 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
3989 return result;
3992 /* Stabilize a reference so that we can use it any number of times
3993 without causing its operands to be evaluated more than once.
3994 Returns the stabilized reference. This works by means of save_expr,
3995 so see the caveats in the comments about save_expr.
3997 Also allows conversion expressions whose operands are references.
3998 Any other kind of expression is returned unchanged. */
4000 tree
4001 stabilize_reference (tree ref)
4003 tree result;
4004 enum tree_code code = TREE_CODE (ref);
4006 switch (code)
4008 case VAR_DECL:
4009 case PARM_DECL:
4010 case RESULT_DECL:
4011 /* No action is needed in this case. */
4012 return ref;
4014 CASE_CONVERT:
4015 case FLOAT_EXPR:
4016 case FIX_TRUNC_EXPR:
4017 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4018 break;
4020 case INDIRECT_REF:
4021 result = build_nt (INDIRECT_REF,
4022 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4023 break;
4025 case COMPONENT_REF:
4026 result = build_nt (COMPONENT_REF,
4027 stabilize_reference (TREE_OPERAND (ref, 0)),
4028 TREE_OPERAND (ref, 1), NULL_TREE);
4029 break;
4031 case BIT_FIELD_REF:
4032 result = build_nt (BIT_FIELD_REF,
4033 stabilize_reference (TREE_OPERAND (ref, 0)),
4034 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4035 break;
4037 case ARRAY_REF:
4038 result = build_nt (ARRAY_REF,
4039 stabilize_reference (TREE_OPERAND (ref, 0)),
4040 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4041 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4042 break;
4044 case ARRAY_RANGE_REF:
4045 result = build_nt (ARRAY_RANGE_REF,
4046 stabilize_reference (TREE_OPERAND (ref, 0)),
4047 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4048 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4049 break;
4051 case COMPOUND_EXPR:
4052 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4053 it wouldn't be ignored. This matters when dealing with
4054 volatiles. */
4055 return stabilize_reference_1 (ref);
4057 /* If arg isn't a kind of lvalue we recognize, make no change.
4058 Caller should recognize the error for an invalid lvalue. */
4059 default:
4060 return ref;
4062 case ERROR_MARK:
4063 return error_mark_node;
4066 TREE_TYPE (result) = TREE_TYPE (ref);
4067 TREE_READONLY (result) = TREE_READONLY (ref);
4068 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4069 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4071 return result;
4074 /* Low-level constructors for expressions. */
4076 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4077 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4079 void
4080 recompute_tree_invariant_for_addr_expr (tree t)
4082 tree node;
4083 bool tc = true, se = false;
4085 /* We started out assuming this address is both invariant and constant, but
4086 does not have side effects. Now go down any handled components and see if
4087 any of them involve offsets that are either non-constant or non-invariant.
4088 Also check for side-effects.
4090 ??? Note that this code makes no attempt to deal with the case where
4091 taking the address of something causes a copy due to misalignment. */
4093 #define UPDATE_FLAGS(NODE) \
4094 do { tree _node = (NODE); \
4095 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4096 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4098 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4099 node = TREE_OPERAND (node, 0))
4101 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4102 array reference (probably made temporarily by the G++ front end),
4103 so ignore all the operands. */
4104 if ((TREE_CODE (node) == ARRAY_REF
4105 || TREE_CODE (node) == ARRAY_RANGE_REF)
4106 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4108 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4109 if (TREE_OPERAND (node, 2))
4110 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4111 if (TREE_OPERAND (node, 3))
4112 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4114 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4115 FIELD_DECL, apparently. The G++ front end can put something else
4116 there, at least temporarily. */
4117 else if (TREE_CODE (node) == COMPONENT_REF
4118 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4120 if (TREE_OPERAND (node, 2))
4121 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4125 node = lang_hooks.expr_to_decl (node, &tc, &se);
4127 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4128 the address, since &(*a)->b is a form of addition. If it's a constant, the
4129 address is constant too. If it's a decl, its address is constant if the
4130 decl is static. Everything else is not constant and, furthermore,
4131 taking the address of a volatile variable is not volatile. */
4132 if (TREE_CODE (node) == INDIRECT_REF
4133 || TREE_CODE (node) == MEM_REF)
4134 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4135 else if (CONSTANT_CLASS_P (node))
4137 else if (DECL_P (node))
4138 tc &= (staticp (node) != NULL_TREE);
4139 else
4141 tc = false;
4142 se |= TREE_SIDE_EFFECTS (node);
4146 TREE_CONSTANT (t) = tc;
4147 TREE_SIDE_EFFECTS (t) = se;
4148 #undef UPDATE_FLAGS
4151 /* Build an expression of code CODE, data type TYPE, and operands as
4152 specified. Expressions and reference nodes can be created this way.
4153 Constants, decls, types and misc nodes cannot be.
4155 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4156 enough for all extant tree codes. */
4158 tree
4159 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
4161 tree t;
4163 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4165 t = make_node_stat (code PASS_MEM_STAT);
4166 TREE_TYPE (t) = tt;
4168 return t;
4171 tree
4172 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4174 int length = sizeof (struct tree_exp);
4175 tree t;
4177 record_node_allocation_statistics (code, length);
4179 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4181 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4183 memset (t, 0, sizeof (struct tree_common));
4185 TREE_SET_CODE (t, code);
4187 TREE_TYPE (t) = type;
4188 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4189 TREE_OPERAND (t, 0) = node;
4190 if (node && !TYPE_P (node))
4192 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4193 TREE_READONLY (t) = TREE_READONLY (node);
4196 if (TREE_CODE_CLASS (code) == tcc_statement)
4197 TREE_SIDE_EFFECTS (t) = 1;
4198 else switch (code)
4200 case VA_ARG_EXPR:
4201 /* All of these have side-effects, no matter what their
4202 operands are. */
4203 TREE_SIDE_EFFECTS (t) = 1;
4204 TREE_READONLY (t) = 0;
4205 break;
4207 case INDIRECT_REF:
4208 /* Whether a dereference is readonly has nothing to do with whether
4209 its operand is readonly. */
4210 TREE_READONLY (t) = 0;
4211 break;
4213 case ADDR_EXPR:
4214 if (node)
4215 recompute_tree_invariant_for_addr_expr (t);
4216 break;
4218 default:
4219 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4220 && node && !TYPE_P (node)
4221 && TREE_CONSTANT (node))
4222 TREE_CONSTANT (t) = 1;
4223 if (TREE_CODE_CLASS (code) == tcc_reference
4224 && node && TREE_THIS_VOLATILE (node))
4225 TREE_THIS_VOLATILE (t) = 1;
4226 break;
4229 return t;
4232 #define PROCESS_ARG(N) \
4233 do { \
4234 TREE_OPERAND (t, N) = arg##N; \
4235 if (arg##N &&!TYPE_P (arg##N)) \
4237 if (TREE_SIDE_EFFECTS (arg##N)) \
4238 side_effects = 1; \
4239 if (!TREE_READONLY (arg##N) \
4240 && !CONSTANT_CLASS_P (arg##N)) \
4241 (void) (read_only = 0); \
4242 if (!TREE_CONSTANT (arg##N)) \
4243 (void) (constant = 0); \
4245 } while (0)
4247 tree
4248 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4250 bool constant, read_only, side_effects;
4251 tree t;
4253 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4255 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4256 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4257 /* When sizetype precision doesn't match that of pointers
4258 we need to be able to build explicit extensions or truncations
4259 of the offset argument. */
4260 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4261 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4262 && TREE_CODE (arg1) == INTEGER_CST);
4264 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4265 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4266 && ptrofftype_p (TREE_TYPE (arg1)));
4268 t = make_node_stat (code PASS_MEM_STAT);
4269 TREE_TYPE (t) = tt;
4271 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4272 result based on those same flags for the arguments. But if the
4273 arguments aren't really even `tree' expressions, we shouldn't be trying
4274 to do this. */
4276 /* Expressions without side effects may be constant if their
4277 arguments are as well. */
4278 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4279 || TREE_CODE_CLASS (code) == tcc_binary);
4280 read_only = 1;
4281 side_effects = TREE_SIDE_EFFECTS (t);
4283 PROCESS_ARG (0);
4284 PROCESS_ARG (1);
4286 TREE_READONLY (t) = read_only;
4287 TREE_CONSTANT (t) = constant;
4288 TREE_SIDE_EFFECTS (t) = side_effects;
4289 TREE_THIS_VOLATILE (t)
4290 = (TREE_CODE_CLASS (code) == tcc_reference
4291 && arg0 && TREE_THIS_VOLATILE (arg0));
4293 return t;
4297 tree
4298 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4299 tree arg2 MEM_STAT_DECL)
4301 bool constant, read_only, side_effects;
4302 tree t;
4304 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4305 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4307 t = make_node_stat (code PASS_MEM_STAT);
4308 TREE_TYPE (t) = tt;
4310 read_only = 1;
4312 /* As a special exception, if COND_EXPR has NULL branches, we
4313 assume that it is a gimple statement and always consider
4314 it to have side effects. */
4315 if (code == COND_EXPR
4316 && tt == void_type_node
4317 && arg1 == NULL_TREE
4318 && arg2 == NULL_TREE)
4319 side_effects = true;
4320 else
4321 side_effects = TREE_SIDE_EFFECTS (t);
4323 PROCESS_ARG (0);
4324 PROCESS_ARG (1);
4325 PROCESS_ARG (2);
4327 if (code == COND_EXPR)
4328 TREE_READONLY (t) = read_only;
4330 TREE_SIDE_EFFECTS (t) = side_effects;
4331 TREE_THIS_VOLATILE (t)
4332 = (TREE_CODE_CLASS (code) == tcc_reference
4333 && arg0 && TREE_THIS_VOLATILE (arg0));
4335 return t;
4338 tree
4339 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4340 tree arg2, tree arg3 MEM_STAT_DECL)
4342 bool constant, read_only, side_effects;
4343 tree t;
4345 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4347 t = make_node_stat (code PASS_MEM_STAT);
4348 TREE_TYPE (t) = tt;
4350 side_effects = TREE_SIDE_EFFECTS (t);
4352 PROCESS_ARG (0);
4353 PROCESS_ARG (1);
4354 PROCESS_ARG (2);
4355 PROCESS_ARG (3);
4357 TREE_SIDE_EFFECTS (t) = side_effects;
4358 TREE_THIS_VOLATILE (t)
4359 = (TREE_CODE_CLASS (code) == tcc_reference
4360 && arg0 && TREE_THIS_VOLATILE (arg0));
4362 return t;
4365 tree
4366 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4367 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4369 bool constant, read_only, side_effects;
4370 tree t;
4372 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4374 t = make_node_stat (code PASS_MEM_STAT);
4375 TREE_TYPE (t) = tt;
4377 side_effects = TREE_SIDE_EFFECTS (t);
4379 PROCESS_ARG (0);
4380 PROCESS_ARG (1);
4381 PROCESS_ARG (2);
4382 PROCESS_ARG (3);
4383 PROCESS_ARG (4);
4385 TREE_SIDE_EFFECTS (t) = side_effects;
4386 TREE_THIS_VOLATILE (t)
4387 = (TREE_CODE_CLASS (code) == tcc_reference
4388 && arg0 && TREE_THIS_VOLATILE (arg0));
4390 return t;
4393 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4394 on the pointer PTR. */
4396 tree
4397 build_simple_mem_ref_loc (location_t loc, tree ptr)
4399 HOST_WIDE_INT offset = 0;
4400 tree ptype = TREE_TYPE (ptr);
4401 tree tem;
4402 /* For convenience allow addresses that collapse to a simple base
4403 and offset. */
4404 if (TREE_CODE (ptr) == ADDR_EXPR
4405 && (handled_component_p (TREE_OPERAND (ptr, 0))
4406 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4408 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4409 gcc_assert (ptr);
4410 ptr = build_fold_addr_expr (ptr);
4411 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4413 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4414 ptr, build_int_cst (ptype, offset));
4415 SET_EXPR_LOCATION (tem, loc);
4416 return tem;
4419 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4421 offset_int
4422 mem_ref_offset (const_tree t)
4424 return offset_int::from (TREE_OPERAND (t, 1), SIGNED);
4427 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4428 offsetted by OFFSET units. */
4430 tree
4431 build_invariant_address (tree type, tree base, HOST_WIDE_INT offset)
4433 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4434 build_fold_addr_expr (base),
4435 build_int_cst (ptr_type_node, offset));
4436 tree addr = build1 (ADDR_EXPR, type, ref);
4437 recompute_tree_invariant_for_addr_expr (addr);
4438 return addr;
4441 /* Similar except don't specify the TREE_TYPE
4442 and leave the TREE_SIDE_EFFECTS as 0.
4443 It is permissible for arguments to be null,
4444 or even garbage if their values do not matter. */
4446 tree
4447 build_nt (enum tree_code code, ...)
4449 tree t;
4450 int length;
4451 int i;
4452 va_list p;
4454 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4456 va_start (p, code);
4458 t = make_node (code);
4459 length = TREE_CODE_LENGTH (code);
4461 for (i = 0; i < length; i++)
4462 TREE_OPERAND (t, i) = va_arg (p, tree);
4464 va_end (p);
4465 return t;
4468 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4469 tree vec. */
4471 tree
4472 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4474 tree ret, t;
4475 unsigned int ix;
4477 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4478 CALL_EXPR_FN (ret) = fn;
4479 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4480 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4481 CALL_EXPR_ARG (ret, ix) = t;
4482 return ret;
4485 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4486 We do NOT enter this node in any sort of symbol table.
4488 LOC is the location of the decl.
4490 layout_decl is used to set up the decl's storage layout.
4491 Other slots are initialized to 0 or null pointers. */
4493 tree
4494 build_decl_stat (location_t loc, enum tree_code code, tree name,
4495 tree type MEM_STAT_DECL)
4497 tree t;
4499 t = make_node_stat (code PASS_MEM_STAT);
4500 DECL_SOURCE_LOCATION (t) = loc;
4502 /* if (type == error_mark_node)
4503 type = integer_type_node; */
4504 /* That is not done, deliberately, so that having error_mark_node
4505 as the type can suppress useless errors in the use of this variable. */
4507 DECL_NAME (t) = name;
4508 TREE_TYPE (t) = type;
4510 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4511 layout_decl (t, 0);
4513 return t;
4516 /* Builds and returns function declaration with NAME and TYPE. */
4518 tree
4519 build_fn_decl (const char *name, tree type)
4521 tree id = get_identifier (name);
4522 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4524 DECL_EXTERNAL (decl) = 1;
4525 TREE_PUBLIC (decl) = 1;
4526 DECL_ARTIFICIAL (decl) = 1;
4527 TREE_NOTHROW (decl) = 1;
4529 return decl;
4532 vec<tree, va_gc> *all_translation_units;
4534 /* Builds a new translation-unit decl with name NAME, queues it in the
4535 global list of translation-unit decls and returns it. */
4537 tree
4538 build_translation_unit_decl (tree name)
4540 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4541 name, NULL_TREE);
4542 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4543 vec_safe_push (all_translation_units, tu);
4544 return tu;
4548 /* BLOCK nodes are used to represent the structure of binding contours
4549 and declarations, once those contours have been exited and their contents
4550 compiled. This information is used for outputting debugging info. */
4552 tree
4553 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
4555 tree block = make_node (BLOCK);
4557 BLOCK_VARS (block) = vars;
4558 BLOCK_SUBBLOCKS (block) = subblocks;
4559 BLOCK_SUPERCONTEXT (block) = supercontext;
4560 BLOCK_CHAIN (block) = chain;
4561 return block;
4565 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4567 LOC is the location to use in tree T. */
4569 void
4570 protected_set_expr_location (tree t, location_t loc)
4572 if (t && CAN_HAVE_LOCATION_P (t))
4573 SET_EXPR_LOCATION (t, loc);
4576 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4577 is ATTRIBUTE. */
4579 tree
4580 build_decl_attribute_variant (tree ddecl, tree attribute)
4582 DECL_ATTRIBUTES (ddecl) = attribute;
4583 return ddecl;
4586 /* Borrowed from hashtab.c iterative_hash implementation. */
4587 #define mix(a,b,c) \
4589 a -= b; a -= c; a ^= (c>>13); \
4590 b -= c; b -= a; b ^= (a<< 8); \
4591 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4592 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4593 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4594 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4595 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4596 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4597 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4601 /* Produce good hash value combining VAL and VAL2. */
4602 hashval_t
4603 iterative_hash_hashval_t (hashval_t val, hashval_t val2)
4605 /* the golden ratio; an arbitrary value. */
4606 hashval_t a = 0x9e3779b9;
4608 mix (a, val, val2);
4609 return val2;
4612 /* Produce good hash value combining VAL and VAL2. */
4613 hashval_t
4614 iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
4616 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
4617 return iterative_hash_hashval_t (val, val2);
4618 else
4620 hashval_t a = (hashval_t) val;
4621 /* Avoid warnings about shifting of more than the width of the type on
4622 hosts that won't execute this path. */
4623 int zero = 0;
4624 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
4625 mix (a, b, val2);
4626 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
4628 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
4629 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
4630 mix (a, b, val2);
4632 return val2;
4636 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4637 is ATTRIBUTE and its qualifiers are QUALS.
4639 Record such modified types already made so we don't make duplicates. */
4641 tree
4642 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
4644 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
4646 hashval_t hashcode = 0;
4647 tree ntype;
4648 int i;
4649 tree t;
4650 enum tree_code code = TREE_CODE (ttype);
4652 /* Building a distinct copy of a tagged type is inappropriate; it
4653 causes breakage in code that expects there to be a one-to-one
4654 relationship between a struct and its fields.
4655 build_duplicate_type is another solution (as used in
4656 handle_transparent_union_attribute), but that doesn't play well
4657 with the stronger C++ type identity model. */
4658 if (TREE_CODE (ttype) == RECORD_TYPE
4659 || TREE_CODE (ttype) == UNION_TYPE
4660 || TREE_CODE (ttype) == QUAL_UNION_TYPE
4661 || TREE_CODE (ttype) == ENUMERAL_TYPE)
4663 warning (OPT_Wattributes,
4664 "ignoring attributes applied to %qT after definition",
4665 TYPE_MAIN_VARIANT (ttype));
4666 return build_qualified_type (ttype, quals);
4669 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4670 ntype = build_distinct_type_copy (ttype);
4672 TYPE_ATTRIBUTES (ntype) = attribute;
4674 hashcode = iterative_hash_object (code, hashcode);
4675 if (TREE_TYPE (ntype))
4676 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
4677 hashcode);
4678 hashcode = attribute_hash_list (attribute, hashcode);
4680 switch (TREE_CODE (ntype))
4682 case FUNCTION_TYPE:
4683 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
4684 break;
4685 case ARRAY_TYPE:
4686 if (TYPE_DOMAIN (ntype))
4687 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
4688 hashcode);
4689 break;
4690 case INTEGER_TYPE:
4691 t = TYPE_MAX_VALUE (ntype);
4692 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
4693 hashcode = iterative_hash_object (TREE_INT_CST_ELT (t, i), hashcode);
4694 break;
4695 case REAL_TYPE:
4696 case FIXED_POINT_TYPE:
4698 unsigned int precision = TYPE_PRECISION (ntype);
4699 hashcode = iterative_hash_object (precision, hashcode);
4701 break;
4702 default:
4703 break;
4706 ntype = type_hash_canon (hashcode, ntype);
4708 /* If the target-dependent attributes make NTYPE different from
4709 its canonical type, we will need to use structural equality
4710 checks for this type. */
4711 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4712 || !comp_type_attributes (ntype, ttype))
4713 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
4714 else if (TYPE_CANONICAL (ntype) == ntype)
4715 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
4717 ttype = build_qualified_type (ntype, quals);
4719 else if (TYPE_QUALS (ttype) != quals)
4720 ttype = build_qualified_type (ttype, quals);
4722 return ttype;
4725 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
4726 the same. */
4728 static bool
4729 omp_declare_simd_clauses_equal (tree clauses1, tree clauses2)
4731 tree cl1, cl2;
4732 for (cl1 = clauses1, cl2 = clauses2;
4733 cl1 && cl2;
4734 cl1 = OMP_CLAUSE_CHAIN (cl1), cl2 = OMP_CLAUSE_CHAIN (cl2))
4736 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_CODE (cl2))
4737 return false;
4738 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_SIMDLEN)
4740 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1),
4741 OMP_CLAUSE_DECL (cl2)) != 1)
4742 return false;
4744 switch (OMP_CLAUSE_CODE (cl1))
4746 case OMP_CLAUSE_ALIGNED:
4747 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1),
4748 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2)) != 1)
4749 return false;
4750 break;
4751 case OMP_CLAUSE_LINEAR:
4752 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1),
4753 OMP_CLAUSE_LINEAR_STEP (cl2)) != 1)
4754 return false;
4755 break;
4756 case OMP_CLAUSE_SIMDLEN:
4757 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1),
4758 OMP_CLAUSE_SIMDLEN_EXPR (cl2)) != 1)
4759 return false;
4760 default:
4761 break;
4764 return true;
4767 /* Compare two constructor-element-type constants. Return 1 if the lists
4768 are known to be equal; otherwise return 0. */
4770 static bool
4771 simple_cst_list_equal (const_tree l1, const_tree l2)
4773 while (l1 != NULL_TREE && l2 != NULL_TREE)
4775 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
4776 return false;
4778 l1 = TREE_CHAIN (l1);
4779 l2 = TREE_CHAIN (l2);
4782 return l1 == l2;
4785 /* Compare two attributes for their value identity. Return true if the
4786 attribute values are known to be equal; otherwise return false.
4789 static bool
4790 attribute_value_equal (const_tree attr1, const_tree attr2)
4792 if (TREE_VALUE (attr1) == TREE_VALUE (attr2))
4793 return true;
4795 if (TREE_VALUE (attr1) != NULL_TREE
4796 && TREE_CODE (TREE_VALUE (attr1)) == TREE_LIST
4797 && TREE_VALUE (attr2) != NULL
4798 && TREE_CODE (TREE_VALUE (attr2)) == TREE_LIST)
4799 return (simple_cst_list_equal (TREE_VALUE (attr1),
4800 TREE_VALUE (attr2)) == 1);
4802 if ((flag_openmp || flag_openmp_simd)
4803 && TREE_VALUE (attr1) && TREE_VALUE (attr2)
4804 && TREE_CODE (TREE_VALUE (attr1)) == OMP_CLAUSE
4805 && TREE_CODE (TREE_VALUE (attr2)) == OMP_CLAUSE)
4806 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1),
4807 TREE_VALUE (attr2));
4809 return (simple_cst_equal (TREE_VALUE (attr1), TREE_VALUE (attr2)) == 1);
4812 /* Return 0 if the attributes for two types are incompatible, 1 if they
4813 are compatible, and 2 if they are nearly compatible (which causes a
4814 warning to be generated). */
4816 comp_type_attributes (const_tree type1, const_tree type2)
4818 const_tree a1 = TYPE_ATTRIBUTES (type1);
4819 const_tree a2 = TYPE_ATTRIBUTES (type2);
4820 const_tree a;
4822 if (a1 == a2)
4823 return 1;
4824 for (a = a1; a != NULL_TREE; a = TREE_CHAIN (a))
4826 const struct attribute_spec *as;
4827 const_tree attr;
4829 as = lookup_attribute_spec (get_attribute_name (a));
4830 if (!as || as->affects_type_identity == false)
4831 continue;
4833 attr = lookup_attribute (as->name, CONST_CAST_TREE (a2));
4834 if (!attr || !attribute_value_equal (a, attr))
4835 break;
4837 if (!a)
4839 for (a = a2; a != NULL_TREE; a = TREE_CHAIN (a))
4841 const struct attribute_spec *as;
4843 as = lookup_attribute_spec (get_attribute_name (a));
4844 if (!as || as->affects_type_identity == false)
4845 continue;
4847 if (!lookup_attribute (as->name, CONST_CAST_TREE (a1)))
4848 break;
4849 /* We don't need to compare trees again, as we did this
4850 already in first loop. */
4852 /* All types - affecting identity - are equal, so
4853 there is no need to call target hook for comparison. */
4854 if (!a)
4855 return 1;
4857 /* As some type combinations - like default calling-convention - might
4858 be compatible, we have to call the target hook to get the final result. */
4859 return targetm.comp_type_attributes (type1, type2);
4862 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4863 is ATTRIBUTE.
4865 Record such modified types already made so we don't make duplicates. */
4867 tree
4868 build_type_attribute_variant (tree ttype, tree attribute)
4870 return build_type_attribute_qual_variant (ttype, attribute,
4871 TYPE_QUALS (ttype));
4875 /* Reset the expression *EXPR_P, a size or position.
4877 ??? We could reset all non-constant sizes or positions. But it's cheap
4878 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4880 We need to reset self-referential sizes or positions because they cannot
4881 be gimplified and thus can contain a CALL_EXPR after the gimplification
4882 is finished, which will run afoul of LTO streaming. And they need to be
4883 reset to something essentially dummy but not constant, so as to preserve
4884 the properties of the object they are attached to. */
4886 static inline void
4887 free_lang_data_in_one_sizepos (tree *expr_p)
4889 tree expr = *expr_p;
4890 if (CONTAINS_PLACEHOLDER_P (expr))
4891 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
4895 /* Reset all the fields in a binfo node BINFO. We only keep
4896 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4898 static void
4899 free_lang_data_in_binfo (tree binfo)
4901 unsigned i;
4902 tree t;
4904 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
4906 BINFO_VIRTUALS (binfo) = NULL_TREE;
4907 BINFO_BASE_ACCESSES (binfo) = NULL;
4908 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4909 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
4911 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
4912 free_lang_data_in_binfo (t);
4916 /* Reset all language specific information still present in TYPE. */
4918 static void
4919 free_lang_data_in_type (tree type)
4921 gcc_assert (TYPE_P (type));
4923 /* Give the FE a chance to remove its own data first. */
4924 lang_hooks.free_lang_data (type);
4926 TREE_LANG_FLAG_0 (type) = 0;
4927 TREE_LANG_FLAG_1 (type) = 0;
4928 TREE_LANG_FLAG_2 (type) = 0;
4929 TREE_LANG_FLAG_3 (type) = 0;
4930 TREE_LANG_FLAG_4 (type) = 0;
4931 TREE_LANG_FLAG_5 (type) = 0;
4932 TREE_LANG_FLAG_6 (type) = 0;
4934 if (TREE_CODE (type) == FUNCTION_TYPE)
4936 /* Remove the const and volatile qualifiers from arguments. The
4937 C++ front end removes them, but the C front end does not,
4938 leading to false ODR violation errors when merging two
4939 instances of the same function signature compiled by
4940 different front ends. */
4941 tree p;
4943 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4945 tree arg_type = TREE_VALUE (p);
4947 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4949 int quals = TYPE_QUALS (arg_type)
4950 & ~TYPE_QUAL_CONST
4951 & ~TYPE_QUAL_VOLATILE;
4952 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4953 free_lang_data_in_type (TREE_VALUE (p));
4958 /* Remove members that are not actually FIELD_DECLs from the field
4959 list of an aggregate. These occur in C++. */
4960 if (RECORD_OR_UNION_TYPE_P (type))
4962 tree prev, member;
4964 /* Note that TYPE_FIELDS can be shared across distinct
4965 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4966 to be removed, we cannot set its TREE_CHAIN to NULL.
4967 Otherwise, we would not be able to find all the other fields
4968 in the other instances of this TREE_TYPE.
4970 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4971 prev = NULL_TREE;
4972 member = TYPE_FIELDS (type);
4973 while (member)
4975 if (TREE_CODE (member) == FIELD_DECL
4976 || TREE_CODE (member) == TYPE_DECL)
4978 if (prev)
4979 TREE_CHAIN (prev) = member;
4980 else
4981 TYPE_FIELDS (type) = member;
4982 prev = member;
4985 member = TREE_CHAIN (member);
4988 if (prev)
4989 TREE_CHAIN (prev) = NULL_TREE;
4990 else
4991 TYPE_FIELDS (type) = NULL_TREE;
4993 TYPE_METHODS (type) = NULL_TREE;
4994 if (TYPE_BINFO (type))
4995 free_lang_data_in_binfo (TYPE_BINFO (type));
4997 else
4999 /* For non-aggregate types, clear out the language slot (which
5000 overloads TYPE_BINFO). */
5001 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5003 if (INTEGRAL_TYPE_P (type)
5004 || SCALAR_FLOAT_TYPE_P (type)
5005 || FIXED_POINT_TYPE_P (type))
5007 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5008 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5012 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5013 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5015 if (TYPE_CONTEXT (type)
5016 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5018 tree ctx = TYPE_CONTEXT (type);
5021 ctx = BLOCK_SUPERCONTEXT (ctx);
5023 while (ctx && TREE_CODE (ctx) == BLOCK);
5024 TYPE_CONTEXT (type) = ctx;
5029 /* Return true if DECL may need an assembler name to be set. */
5031 static inline bool
5032 need_assembler_name_p (tree decl)
5034 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5035 if (TREE_CODE (decl) != FUNCTION_DECL
5036 && TREE_CODE (decl) != VAR_DECL)
5037 return false;
5039 /* If DECL already has its assembler name set, it does not need a
5040 new one. */
5041 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5042 || DECL_ASSEMBLER_NAME_SET_P (decl))
5043 return false;
5045 /* Abstract decls do not need an assembler name. */
5046 if (DECL_ABSTRACT (decl))
5047 return false;
5049 /* For VAR_DECLs, only static, public and external symbols need an
5050 assembler name. */
5051 if (TREE_CODE (decl) == VAR_DECL
5052 && !TREE_STATIC (decl)
5053 && !TREE_PUBLIC (decl)
5054 && !DECL_EXTERNAL (decl))
5055 return false;
5057 if (TREE_CODE (decl) == FUNCTION_DECL)
5059 /* Do not set assembler name on builtins. Allow RTL expansion to
5060 decide whether to expand inline or via a regular call. */
5061 if (DECL_BUILT_IN (decl)
5062 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5063 return false;
5065 /* Functions represented in the callgraph need an assembler name. */
5066 if (cgraph_get_node (decl) != NULL)
5067 return true;
5069 /* Unused and not public functions don't need an assembler name. */
5070 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5071 return false;
5074 return true;
5078 /* Reset all language specific information still present in symbol
5079 DECL. */
5081 static void
5082 free_lang_data_in_decl (tree decl)
5084 gcc_assert (DECL_P (decl));
5086 /* Give the FE a chance to remove its own data first. */
5087 lang_hooks.free_lang_data (decl);
5089 TREE_LANG_FLAG_0 (decl) = 0;
5090 TREE_LANG_FLAG_1 (decl) = 0;
5091 TREE_LANG_FLAG_2 (decl) = 0;
5092 TREE_LANG_FLAG_3 (decl) = 0;
5093 TREE_LANG_FLAG_4 (decl) = 0;
5094 TREE_LANG_FLAG_5 (decl) = 0;
5095 TREE_LANG_FLAG_6 (decl) = 0;
5097 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5098 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5099 if (TREE_CODE (decl) == FIELD_DECL)
5101 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5102 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5103 DECL_QUALIFIER (decl) = NULL_TREE;
5106 if (TREE_CODE (decl) == FUNCTION_DECL)
5108 struct cgraph_node *node;
5109 if (!(node = cgraph_get_node (decl))
5110 || (!node->definition && !node->clones))
5112 if (node)
5113 cgraph_release_function_body (node);
5114 else
5116 release_function_body (decl);
5117 DECL_ARGUMENTS (decl) = NULL;
5118 DECL_RESULT (decl) = NULL;
5119 DECL_INITIAL (decl) = error_mark_node;
5122 if (gimple_has_body_p (decl))
5124 tree t;
5126 /* If DECL has a gimple body, then the context for its
5127 arguments must be DECL. Otherwise, it doesn't really
5128 matter, as we will not be emitting any code for DECL. In
5129 general, there may be other instances of DECL created by
5130 the front end and since PARM_DECLs are generally shared,
5131 their DECL_CONTEXT changes as the replicas of DECL are
5132 created. The only time where DECL_CONTEXT is important
5133 is for the FUNCTION_DECLs that have a gimple body (since
5134 the PARM_DECL will be used in the function's body). */
5135 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5136 DECL_CONTEXT (t) = decl;
5139 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5140 At this point, it is not needed anymore. */
5141 DECL_SAVED_TREE (decl) = NULL_TREE;
5143 /* Clear the abstract origin if it refers to a method. Otherwise
5144 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
5145 origin will not be output correctly. */
5146 if (DECL_ABSTRACT_ORIGIN (decl)
5147 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5148 && RECORD_OR_UNION_TYPE_P
5149 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5150 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5152 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5153 DECL_VINDEX referring to itself into a vtable slot number as it
5154 should. Happens with functions that are copied and then forgotten
5155 about. Just clear it, it won't matter anymore. */
5156 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5157 DECL_VINDEX (decl) = NULL_TREE;
5159 else if (TREE_CODE (decl) == VAR_DECL)
5161 if ((DECL_EXTERNAL (decl)
5162 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5163 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5164 DECL_INITIAL (decl) = NULL_TREE;
5166 else if (TREE_CODE (decl) == TYPE_DECL
5167 || TREE_CODE (decl) == FIELD_DECL)
5168 DECL_INITIAL (decl) = NULL_TREE;
5169 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5170 && DECL_INITIAL (decl)
5171 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5173 /* Strip builtins from the translation-unit BLOCK. We still have targets
5174 without builtin_decl_explicit support and also builtins are shared
5175 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5176 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5177 while (*nextp)
5179 tree var = *nextp;
5180 if (TREE_CODE (var) == FUNCTION_DECL
5181 && DECL_BUILT_IN (var))
5182 *nextp = TREE_CHAIN (var);
5183 else
5184 nextp = &TREE_CHAIN (var);
5190 /* Data used when collecting DECLs and TYPEs for language data removal. */
5192 struct free_lang_data_d
5194 /* Worklist to avoid excessive recursion. */
5195 vec<tree> worklist;
5197 /* Set of traversed objects. Used to avoid duplicate visits. */
5198 struct pointer_set_t *pset;
5200 /* Array of symbols to process with free_lang_data_in_decl. */
5201 vec<tree> decls;
5203 /* Array of types to process with free_lang_data_in_type. */
5204 vec<tree> types;
5208 /* Save all language fields needed to generate proper debug information
5209 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5211 static void
5212 save_debug_info_for_decl (tree t)
5214 /*struct saved_debug_info_d *sdi;*/
5216 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
5218 /* FIXME. Partial implementation for saving debug info removed. */
5222 /* Save all language fields needed to generate proper debug information
5223 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5225 static void
5226 save_debug_info_for_type (tree t)
5228 /*struct saved_debug_info_d *sdi;*/
5230 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
5232 /* FIXME. Partial implementation for saving debug info removed. */
5236 /* Add type or decl T to one of the list of tree nodes that need their
5237 language data removed. The lists are held inside FLD. */
5239 static void
5240 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5242 if (DECL_P (t))
5244 fld->decls.safe_push (t);
5245 if (debug_info_level > DINFO_LEVEL_TERSE)
5246 save_debug_info_for_decl (t);
5248 else if (TYPE_P (t))
5250 fld->types.safe_push (t);
5251 if (debug_info_level > DINFO_LEVEL_TERSE)
5252 save_debug_info_for_type (t);
5254 else
5255 gcc_unreachable ();
5258 /* Push tree node T into FLD->WORKLIST. */
5260 static inline void
5261 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5263 if (t && !is_lang_specific (t) && !pointer_set_contains (fld->pset, t))
5264 fld->worklist.safe_push ((t));
5268 /* Operand callback helper for free_lang_data_in_node. *TP is the
5269 subtree operand being considered. */
5271 static tree
5272 find_decls_types_r (tree *tp, int *ws, void *data)
5274 tree t = *tp;
5275 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5277 if (TREE_CODE (t) == TREE_LIST)
5278 return NULL_TREE;
5280 /* Language specific nodes will be removed, so there is no need
5281 to gather anything under them. */
5282 if (is_lang_specific (t))
5284 *ws = 0;
5285 return NULL_TREE;
5288 if (DECL_P (t))
5290 /* Note that walk_tree does not traverse every possible field in
5291 decls, so we have to do our own traversals here. */
5292 add_tree_to_fld_list (t, fld);
5294 fld_worklist_push (DECL_NAME (t), fld);
5295 fld_worklist_push (DECL_CONTEXT (t), fld);
5296 fld_worklist_push (DECL_SIZE (t), fld);
5297 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5299 /* We are going to remove everything under DECL_INITIAL for
5300 TYPE_DECLs. No point walking them. */
5301 if (TREE_CODE (t) != TYPE_DECL)
5302 fld_worklist_push (DECL_INITIAL (t), fld);
5304 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5305 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5307 if (TREE_CODE (t) == FUNCTION_DECL)
5309 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5310 fld_worklist_push (DECL_RESULT (t), fld);
5312 else if (TREE_CODE (t) == TYPE_DECL)
5314 fld_worklist_push (DECL_ARGUMENT_FLD (t), fld);
5315 fld_worklist_push (DECL_VINDEX (t), fld);
5316 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5318 else if (TREE_CODE (t) == FIELD_DECL)
5320 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5321 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5322 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5323 fld_worklist_push (DECL_FCONTEXT (t), fld);
5326 if ((TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
5327 && DECL_HAS_VALUE_EXPR_P (t))
5328 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5330 if (TREE_CODE (t) != FIELD_DECL
5331 && TREE_CODE (t) != TYPE_DECL)
5332 fld_worklist_push (TREE_CHAIN (t), fld);
5333 *ws = 0;
5335 else if (TYPE_P (t))
5337 /* Note that walk_tree does not traverse every possible field in
5338 types, so we have to do our own traversals here. */
5339 add_tree_to_fld_list (t, fld);
5341 if (!RECORD_OR_UNION_TYPE_P (t))
5342 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5343 fld_worklist_push (TYPE_SIZE (t), fld);
5344 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5345 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5346 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5347 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5348 fld_worklist_push (TYPE_NAME (t), fld);
5349 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5350 them and thus do not and want not to reach unused pointer types
5351 this way. */
5352 if (!POINTER_TYPE_P (t))
5353 fld_worklist_push (TYPE_MINVAL (t), fld);
5354 if (!RECORD_OR_UNION_TYPE_P (t))
5355 fld_worklist_push (TYPE_MAXVAL (t), fld);
5356 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5357 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5358 do not and want not to reach unused variants this way. */
5359 if (TYPE_CONTEXT (t))
5361 tree ctx = TYPE_CONTEXT (t);
5362 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5363 So push that instead. */
5364 while (ctx && TREE_CODE (ctx) == BLOCK)
5365 ctx = BLOCK_SUPERCONTEXT (ctx);
5366 fld_worklist_push (ctx, fld);
5368 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5369 and want not to reach unused types this way. */
5371 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5373 unsigned i;
5374 tree tem;
5375 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5376 fld_worklist_push (TREE_TYPE (tem), fld);
5377 tem = BINFO_VIRTUALS (TYPE_BINFO (t));
5378 if (tem
5379 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
5380 && TREE_CODE (tem) == TREE_LIST)
5383 fld_worklist_push (TREE_VALUE (tem), fld);
5384 tem = TREE_CHAIN (tem);
5386 while (tem);
5388 if (RECORD_OR_UNION_TYPE_P (t))
5390 tree tem;
5391 /* Push all TYPE_FIELDS - there can be interleaving interesting
5392 and non-interesting things. */
5393 tem = TYPE_FIELDS (t);
5394 while (tem)
5396 if (TREE_CODE (tem) == FIELD_DECL
5397 || TREE_CODE (tem) == TYPE_DECL)
5398 fld_worklist_push (tem, fld);
5399 tem = TREE_CHAIN (tem);
5403 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5404 *ws = 0;
5406 else if (TREE_CODE (t) == BLOCK)
5408 tree tem;
5409 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5410 fld_worklist_push (tem, fld);
5411 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5412 fld_worklist_push (tem, fld);
5413 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5416 if (TREE_CODE (t) != IDENTIFIER_NODE
5417 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5418 fld_worklist_push (TREE_TYPE (t), fld);
5420 return NULL_TREE;
5424 /* Find decls and types in T. */
5426 static void
5427 find_decls_types (tree t, struct free_lang_data_d *fld)
5429 while (1)
5431 if (!pointer_set_contains (fld->pset, t))
5432 walk_tree (&t, find_decls_types_r, fld, fld->pset);
5433 if (fld->worklist.is_empty ())
5434 break;
5435 t = fld->worklist.pop ();
5439 /* Translate all the types in LIST with the corresponding runtime
5440 types. */
5442 static tree
5443 get_eh_types_for_runtime (tree list)
5445 tree head, prev;
5447 if (list == NULL_TREE)
5448 return NULL_TREE;
5450 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5451 prev = head;
5452 list = TREE_CHAIN (list);
5453 while (list)
5455 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5456 TREE_CHAIN (prev) = n;
5457 prev = TREE_CHAIN (prev);
5458 list = TREE_CHAIN (list);
5461 return head;
5465 /* Find decls and types referenced in EH region R and store them in
5466 FLD->DECLS and FLD->TYPES. */
5468 static void
5469 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5471 switch (r->type)
5473 case ERT_CLEANUP:
5474 break;
5476 case ERT_TRY:
5478 eh_catch c;
5480 /* The types referenced in each catch must first be changed to the
5481 EH types used at runtime. This removes references to FE types
5482 in the region. */
5483 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5485 c->type_list = get_eh_types_for_runtime (c->type_list);
5486 walk_tree (&c->type_list, find_decls_types_r, fld, fld->pset);
5489 break;
5491 case ERT_ALLOWED_EXCEPTIONS:
5492 r->u.allowed.type_list
5493 = get_eh_types_for_runtime (r->u.allowed.type_list);
5494 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, fld->pset);
5495 break;
5497 case ERT_MUST_NOT_THROW:
5498 walk_tree (&r->u.must_not_throw.failure_decl,
5499 find_decls_types_r, fld, fld->pset);
5500 break;
5505 /* Find decls and types referenced in cgraph node N and store them in
5506 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5507 look for *every* kind of DECL and TYPE node reachable from N,
5508 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5509 NAMESPACE_DECLs, etc). */
5511 static void
5512 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5514 basic_block bb;
5515 struct function *fn;
5516 unsigned ix;
5517 tree t;
5519 find_decls_types (n->decl, fld);
5521 if (!gimple_has_body_p (n->decl))
5522 return;
5524 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5526 fn = DECL_STRUCT_FUNCTION (n->decl);
5528 /* Traverse locals. */
5529 FOR_EACH_LOCAL_DECL (fn, ix, t)
5530 find_decls_types (t, fld);
5532 /* Traverse EH regions in FN. */
5534 eh_region r;
5535 FOR_ALL_EH_REGION_FN (r, fn)
5536 find_decls_types_in_eh_region (r, fld);
5539 /* Traverse every statement in FN. */
5540 FOR_EACH_BB_FN (bb, fn)
5542 gimple_stmt_iterator si;
5543 unsigned i;
5545 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
5547 gimple phi = gsi_stmt (si);
5549 for (i = 0; i < gimple_phi_num_args (phi); i++)
5551 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5552 find_decls_types (*arg_p, fld);
5556 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5558 gimple stmt = gsi_stmt (si);
5560 if (is_gimple_call (stmt))
5561 find_decls_types (gimple_call_fntype (stmt), fld);
5563 for (i = 0; i < gimple_num_ops (stmt); i++)
5565 tree arg = gimple_op (stmt, i);
5566 find_decls_types (arg, fld);
5573 /* Find decls and types referenced in varpool node N and store them in
5574 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5575 look for *every* kind of DECL and TYPE node reachable from N,
5576 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5577 NAMESPACE_DECLs, etc). */
5579 static void
5580 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5582 find_decls_types (v->decl, fld);
5585 /* If T needs an assembler name, have one created for it. */
5587 void
5588 assign_assembler_name_if_neeeded (tree t)
5590 if (need_assembler_name_p (t))
5592 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5593 diagnostics that use input_location to show locus
5594 information. The problem here is that, at this point,
5595 input_location is generally anchored to the end of the file
5596 (since the parser is long gone), so we don't have a good
5597 position to pin it to.
5599 To alleviate this problem, this uses the location of T's
5600 declaration. Examples of this are
5601 testsuite/g++.dg/template/cond2.C and
5602 testsuite/g++.dg/template/pr35240.C. */
5603 location_t saved_location = input_location;
5604 input_location = DECL_SOURCE_LOCATION (t);
5606 decl_assembler_name (t);
5608 input_location = saved_location;
5613 /* Free language specific information for every operand and expression
5614 in every node of the call graph. This process operates in three stages:
5616 1- Every callgraph node and varpool node is traversed looking for
5617 decls and types embedded in them. This is a more exhaustive
5618 search than that done by find_referenced_vars, because it will
5619 also collect individual fields, decls embedded in types, etc.
5621 2- All the decls found are sent to free_lang_data_in_decl.
5623 3- All the types found are sent to free_lang_data_in_type.
5625 The ordering between decls and types is important because
5626 free_lang_data_in_decl sets assembler names, which includes
5627 mangling. So types cannot be freed up until assembler names have
5628 been set up. */
5630 static void
5631 free_lang_data_in_cgraph (void)
5633 struct cgraph_node *n;
5634 varpool_node *v;
5635 struct free_lang_data_d fld;
5636 tree t;
5637 unsigned i;
5638 alias_pair *p;
5640 /* Initialize sets and arrays to store referenced decls and types. */
5641 fld.pset = pointer_set_create ();
5642 fld.worklist.create (0);
5643 fld.decls.create (100);
5644 fld.types.create (100);
5646 /* Find decls and types in the body of every function in the callgraph. */
5647 FOR_EACH_FUNCTION (n)
5648 find_decls_types_in_node (n, &fld);
5650 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5651 find_decls_types (p->decl, &fld);
5653 /* Find decls and types in every varpool symbol. */
5654 FOR_EACH_VARIABLE (v)
5655 find_decls_types_in_var (v, &fld);
5657 /* Set the assembler name on every decl found. We need to do this
5658 now because free_lang_data_in_decl will invalidate data needed
5659 for mangling. This breaks mangling on interdependent decls. */
5660 FOR_EACH_VEC_ELT (fld.decls, i, t)
5661 assign_assembler_name_if_neeeded (t);
5663 /* Traverse every decl found freeing its language data. */
5664 FOR_EACH_VEC_ELT (fld.decls, i, t)
5665 free_lang_data_in_decl (t);
5667 /* Traverse every type found freeing its language data. */
5668 FOR_EACH_VEC_ELT (fld.types, i, t)
5669 free_lang_data_in_type (t);
5671 pointer_set_destroy (fld.pset);
5672 fld.worklist.release ();
5673 fld.decls.release ();
5674 fld.types.release ();
5678 /* Free resources that are used by FE but are not needed once they are done. */
5680 static unsigned
5681 free_lang_data (void)
5683 unsigned i;
5685 /* If we are the LTO frontend we have freed lang-specific data already. */
5686 if (in_lto_p
5687 || !flag_generate_lto)
5688 return 0;
5690 /* Allocate and assign alias sets to the standard integer types
5691 while the slots are still in the way the frontends generated them. */
5692 for (i = 0; i < itk_none; ++i)
5693 if (integer_types[i])
5694 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5696 /* Traverse the IL resetting language specific information for
5697 operands, expressions, etc. */
5698 free_lang_data_in_cgraph ();
5700 /* Create gimple variants for common types. */
5701 ptrdiff_type_node = integer_type_node;
5702 fileptr_type_node = ptr_type_node;
5704 /* Reset some langhooks. Do not reset types_compatible_p, it may
5705 still be used indirectly via the get_alias_set langhook. */
5706 lang_hooks.dwarf_name = lhd_dwarf_name;
5707 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5708 /* We do not want the default decl_assembler_name implementation,
5709 rather if we have fixed everything we want a wrapper around it
5710 asserting that all non-local symbols already got their assembler
5711 name and only produce assembler names for local symbols. Or rather
5712 make sure we never call decl_assembler_name on local symbols and
5713 devise a separate, middle-end private scheme for it. */
5715 /* Reset diagnostic machinery. */
5716 tree_diagnostics_defaults (global_dc);
5718 return 0;
5722 namespace {
5724 const pass_data pass_data_ipa_free_lang_data =
5726 SIMPLE_IPA_PASS, /* type */
5727 "*free_lang_data", /* name */
5728 OPTGROUP_NONE, /* optinfo_flags */
5729 true, /* has_execute */
5730 TV_IPA_FREE_LANG_DATA, /* tv_id */
5731 0, /* properties_required */
5732 0, /* properties_provided */
5733 0, /* properties_destroyed */
5734 0, /* todo_flags_start */
5735 0, /* todo_flags_finish */
5738 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5740 public:
5741 pass_ipa_free_lang_data (gcc::context *ctxt)
5742 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5745 /* opt_pass methods: */
5746 virtual unsigned int execute (function *) { return free_lang_data (); }
5748 }; // class pass_ipa_free_lang_data
5750 } // anon namespace
5752 simple_ipa_opt_pass *
5753 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5755 return new pass_ipa_free_lang_data (ctxt);
5758 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5759 ATTR_NAME. Also used internally by remove_attribute(). */
5760 bool
5761 private_is_attribute_p (const char *attr_name, size_t attr_len, const_tree ident)
5763 size_t ident_len = IDENTIFIER_LENGTH (ident);
5765 if (ident_len == attr_len)
5767 if (strcmp (attr_name, IDENTIFIER_POINTER (ident)) == 0)
5768 return true;
5770 else if (ident_len == attr_len + 4)
5772 /* There is the possibility that ATTR is 'text' and IDENT is
5773 '__text__'. */
5774 const char *p = IDENTIFIER_POINTER (ident);
5775 if (p[0] == '_' && p[1] == '_'
5776 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5777 && strncmp (attr_name, p + 2, attr_len) == 0)
5778 return true;
5781 return false;
5784 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
5785 of ATTR_NAME, and LIST is not NULL_TREE. */
5786 tree
5787 private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
5789 while (list)
5791 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
5793 if (ident_len == attr_len)
5795 if (!strcmp (attr_name,
5796 IDENTIFIER_POINTER (get_attribute_name (list))))
5797 break;
5799 /* TODO: If we made sure that attributes were stored in the
5800 canonical form without '__...__' (ie, as in 'text' as opposed
5801 to '__text__') then we could avoid the following case. */
5802 else if (ident_len == attr_len + 4)
5804 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
5805 if (p[0] == '_' && p[1] == '_'
5806 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5807 && strncmp (attr_name, p + 2, attr_len) == 0)
5808 break;
5810 list = TREE_CHAIN (list);
5813 return list;
5816 /* Given an attribute name ATTR_NAME and a list of attributes LIST,
5817 return a pointer to the attribute's list first element if the attribute
5818 starts with ATTR_NAME. ATTR_NAME must be in the form 'text' (not
5819 '__text__'). */
5821 tree
5822 private_lookup_attribute_by_prefix (const char *attr_name, size_t attr_len,
5823 tree list)
5825 while (list)
5827 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
5829 if (attr_len > ident_len)
5831 list = TREE_CHAIN (list);
5832 continue;
5835 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
5837 if (strncmp (attr_name, p, attr_len) == 0)
5838 break;
5840 /* TODO: If we made sure that attributes were stored in the
5841 canonical form without '__...__' (ie, as in 'text' as opposed
5842 to '__text__') then we could avoid the following case. */
5843 if (p[0] == '_' && p[1] == '_' &&
5844 strncmp (attr_name, p + 2, attr_len) == 0)
5845 break;
5847 list = TREE_CHAIN (list);
5850 return list;
5854 /* A variant of lookup_attribute() that can be used with an identifier
5855 as the first argument, and where the identifier can be either
5856 'text' or '__text__'.
5858 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5859 return a pointer to the attribute's list element if the attribute
5860 is part of the list, or NULL_TREE if not found. If the attribute
5861 appears more than once, this only returns the first occurrence; the
5862 TREE_CHAIN of the return value should be passed back in if further
5863 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
5864 can be in the form 'text' or '__text__'. */
5865 static tree
5866 lookup_ident_attribute (tree attr_identifier, tree list)
5868 gcc_checking_assert (TREE_CODE (attr_identifier) == IDENTIFIER_NODE);
5870 while (list)
5872 gcc_checking_assert (TREE_CODE (get_attribute_name (list))
5873 == IDENTIFIER_NODE);
5875 /* Identifiers can be compared directly for equality. */
5876 if (attr_identifier == get_attribute_name (list))
5877 break;
5879 /* If they are not equal, they may still be one in the form
5880 'text' while the other one is in the form '__text__'. TODO:
5881 If we were storing attributes in normalized 'text' form, then
5882 this could all go away and we could take full advantage of
5883 the fact that we're comparing identifiers. :-) */
5885 size_t attr_len = IDENTIFIER_LENGTH (attr_identifier);
5886 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
5888 if (ident_len == attr_len + 4)
5890 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
5891 const char *q = IDENTIFIER_POINTER (attr_identifier);
5892 if (p[0] == '_' && p[1] == '_'
5893 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5894 && strncmp (q, p + 2, attr_len) == 0)
5895 break;
5897 else if (ident_len + 4 == attr_len)
5899 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
5900 const char *q = IDENTIFIER_POINTER (attr_identifier);
5901 if (q[0] == '_' && q[1] == '_'
5902 && q[attr_len - 2] == '_' && q[attr_len - 1] == '_'
5903 && strncmp (q + 2, p, ident_len) == 0)
5904 break;
5907 list = TREE_CHAIN (list);
5910 return list;
5913 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5914 modified list. */
5916 tree
5917 remove_attribute (const char *attr_name, tree list)
5919 tree *p;
5920 size_t attr_len = strlen (attr_name);
5922 gcc_checking_assert (attr_name[0] != '_');
5924 for (p = &list; *p; )
5926 tree l = *p;
5927 /* TODO: If we were storing attributes in normalized form, here
5928 we could use a simple strcmp(). */
5929 if (private_is_attribute_p (attr_name, attr_len, get_attribute_name (l)))
5930 *p = TREE_CHAIN (l);
5931 else
5932 p = &TREE_CHAIN (l);
5935 return list;
5938 /* Return an attribute list that is the union of a1 and a2. */
5940 tree
5941 merge_attributes (tree a1, tree a2)
5943 tree attributes;
5945 /* Either one unset? Take the set one. */
5947 if ((attributes = a1) == 0)
5948 attributes = a2;
5950 /* One that completely contains the other? Take it. */
5952 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
5954 if (attribute_list_contained (a2, a1))
5955 attributes = a2;
5956 else
5958 /* Pick the longest list, and hang on the other list. */
5960 if (list_length (a1) < list_length (a2))
5961 attributes = a2, a2 = a1;
5963 for (; a2 != 0; a2 = TREE_CHAIN (a2))
5965 tree a;
5966 for (a = lookup_ident_attribute (get_attribute_name (a2),
5967 attributes);
5968 a != NULL_TREE && !attribute_value_equal (a, a2);
5969 a = lookup_ident_attribute (get_attribute_name (a2),
5970 TREE_CHAIN (a)))
5972 if (a == NULL_TREE)
5974 a1 = copy_node (a2);
5975 TREE_CHAIN (a1) = attributes;
5976 attributes = a1;
5981 return attributes;
5984 /* Given types T1 and T2, merge their attributes and return
5985 the result. */
5987 tree
5988 merge_type_attributes (tree t1, tree t2)
5990 return merge_attributes (TYPE_ATTRIBUTES (t1),
5991 TYPE_ATTRIBUTES (t2));
5994 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5995 the result. */
5997 tree
5998 merge_decl_attributes (tree olddecl, tree newdecl)
6000 return merge_attributes (DECL_ATTRIBUTES (olddecl),
6001 DECL_ATTRIBUTES (newdecl));
6004 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
6006 /* Specialization of merge_decl_attributes for various Windows targets.
6008 This handles the following situation:
6010 __declspec (dllimport) int foo;
6011 int foo;
6013 The second instance of `foo' nullifies the dllimport. */
6015 tree
6016 merge_dllimport_decl_attributes (tree old, tree new_tree)
6018 tree a;
6019 int delete_dllimport_p = 1;
6021 /* What we need to do here is remove from `old' dllimport if it doesn't
6022 appear in `new'. dllimport behaves like extern: if a declaration is
6023 marked dllimport and a definition appears later, then the object
6024 is not dllimport'd. We also remove a `new' dllimport if the old list
6025 contains dllexport: dllexport always overrides dllimport, regardless
6026 of the order of declaration. */
6027 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
6028 delete_dllimport_p = 0;
6029 else if (DECL_DLLIMPORT_P (new_tree)
6030 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
6032 DECL_DLLIMPORT_P (new_tree) = 0;
6033 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
6034 "dllimport ignored", new_tree);
6036 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
6038 /* Warn about overriding a symbol that has already been used, e.g.:
6039 extern int __attribute__ ((dllimport)) foo;
6040 int* bar () {return &foo;}
6041 int foo;
6043 if (TREE_USED (old))
6045 warning (0, "%q+D redeclared without dllimport attribute "
6046 "after being referenced with dll linkage", new_tree);
6047 /* If we have used a variable's address with dllimport linkage,
6048 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
6049 decl may already have had TREE_CONSTANT computed.
6050 We still remove the attribute so that assembler code refers
6051 to '&foo rather than '_imp__foo'. */
6052 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
6053 DECL_DLLIMPORT_P (new_tree) = 1;
6056 /* Let an inline definition silently override the external reference,
6057 but otherwise warn about attribute inconsistency. */
6058 else if (TREE_CODE (new_tree) == VAR_DECL
6059 || !DECL_DECLARED_INLINE_P (new_tree))
6060 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
6061 "previous dllimport ignored", new_tree);
6063 else
6064 delete_dllimport_p = 0;
6066 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
6068 if (delete_dllimport_p)
6069 a = remove_attribute ("dllimport", a);
6071 return a;
6074 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
6075 struct attribute_spec.handler. */
6077 tree
6078 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
6079 bool *no_add_attrs)
6081 tree node = *pnode;
6082 bool is_dllimport;
6084 /* These attributes may apply to structure and union types being created,
6085 but otherwise should pass to the declaration involved. */
6086 if (!DECL_P (node))
6088 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
6089 | (int) ATTR_FLAG_ARRAY_NEXT))
6091 *no_add_attrs = true;
6092 return tree_cons (name, args, NULL_TREE);
6094 if (TREE_CODE (node) == RECORD_TYPE
6095 || TREE_CODE (node) == UNION_TYPE)
6097 node = TYPE_NAME (node);
6098 if (!node)
6099 return NULL_TREE;
6101 else
6103 warning (OPT_Wattributes, "%qE attribute ignored",
6104 name);
6105 *no_add_attrs = true;
6106 return NULL_TREE;
6110 if (TREE_CODE (node) != FUNCTION_DECL
6111 && TREE_CODE (node) != VAR_DECL
6112 && TREE_CODE (node) != TYPE_DECL)
6114 *no_add_attrs = true;
6115 warning (OPT_Wattributes, "%qE attribute ignored",
6116 name);
6117 return NULL_TREE;
6120 if (TREE_CODE (node) == TYPE_DECL
6121 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
6122 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
6124 *no_add_attrs = true;
6125 warning (OPT_Wattributes, "%qE attribute ignored",
6126 name);
6127 return NULL_TREE;
6130 is_dllimport = is_attribute_p ("dllimport", name);
6132 /* Report error on dllimport ambiguities seen now before they cause
6133 any damage. */
6134 if (is_dllimport)
6136 /* Honor any target-specific overrides. */
6137 if (!targetm.valid_dllimport_attribute_p (node))
6138 *no_add_attrs = true;
6140 else if (TREE_CODE (node) == FUNCTION_DECL
6141 && DECL_DECLARED_INLINE_P (node))
6143 warning (OPT_Wattributes, "inline function %q+D declared as "
6144 " dllimport: attribute ignored", node);
6145 *no_add_attrs = true;
6147 /* Like MS, treat definition of dllimported variables and
6148 non-inlined functions on declaration as syntax errors. */
6149 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
6151 error ("function %q+D definition is marked dllimport", node);
6152 *no_add_attrs = true;
6155 else if (TREE_CODE (node) == VAR_DECL)
6157 if (DECL_INITIAL (node))
6159 error ("variable %q+D definition is marked dllimport",
6160 node);
6161 *no_add_attrs = true;
6164 /* `extern' needn't be specified with dllimport.
6165 Specify `extern' now and hope for the best. Sigh. */
6166 DECL_EXTERNAL (node) = 1;
6167 /* Also, implicitly give dllimport'd variables declared within
6168 a function global scope, unless declared static. */
6169 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
6170 TREE_PUBLIC (node) = 1;
6173 if (*no_add_attrs == false)
6174 DECL_DLLIMPORT_P (node) = 1;
6176 else if (TREE_CODE (node) == FUNCTION_DECL
6177 && DECL_DECLARED_INLINE_P (node)
6178 && flag_keep_inline_dllexport)
6179 /* An exported function, even if inline, must be emitted. */
6180 DECL_EXTERNAL (node) = 0;
6182 /* Report error if symbol is not accessible at global scope. */
6183 if (!TREE_PUBLIC (node)
6184 && (TREE_CODE (node) == VAR_DECL
6185 || TREE_CODE (node) == FUNCTION_DECL))
6187 error ("external linkage required for symbol %q+D because of "
6188 "%qE attribute", node, name);
6189 *no_add_attrs = true;
6192 /* A dllexport'd entity must have default visibility so that other
6193 program units (shared libraries or the main executable) can see
6194 it. A dllimport'd entity must have default visibility so that
6195 the linker knows that undefined references within this program
6196 unit can be resolved by the dynamic linker. */
6197 if (!*no_add_attrs)
6199 if (DECL_VISIBILITY_SPECIFIED (node)
6200 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
6201 error ("%qE implies default visibility, but %qD has already "
6202 "been declared with a different visibility",
6203 name, node);
6204 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
6205 DECL_VISIBILITY_SPECIFIED (node) = 1;
6208 return NULL_TREE;
6211 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
6213 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6214 of the various TYPE_QUAL values. */
6216 static void
6217 set_type_quals (tree type, int type_quals)
6219 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6220 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6221 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6222 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6223 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6226 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6228 bool
6229 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6231 return (TYPE_QUALS (cand) == type_quals
6232 && TYPE_NAME (cand) == TYPE_NAME (base)
6233 /* Apparently this is needed for Objective-C. */
6234 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6235 /* Check alignment. */
6236 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
6237 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6238 TYPE_ATTRIBUTES (base)));
6241 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6243 static bool
6244 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6246 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6247 && TYPE_NAME (cand) == TYPE_NAME (base)
6248 /* Apparently this is needed for Objective-C. */
6249 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6250 /* Check alignment. */
6251 && TYPE_ALIGN (cand) == align
6252 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6253 TYPE_ATTRIBUTES (base)));
6256 /* This function checks to see if TYPE matches the size one of the built-in
6257 atomic types, and returns that core atomic type. */
6259 static tree
6260 find_atomic_core_type (tree type)
6262 tree base_atomic_type;
6264 /* Only handle complete types. */
6265 if (TYPE_SIZE (type) == NULL_TREE)
6266 return NULL_TREE;
6268 HOST_WIDE_INT type_size = tree_to_uhwi (TYPE_SIZE (type));
6269 switch (type_size)
6271 case 8:
6272 base_atomic_type = atomicQI_type_node;
6273 break;
6275 case 16:
6276 base_atomic_type = atomicHI_type_node;
6277 break;
6279 case 32:
6280 base_atomic_type = atomicSI_type_node;
6281 break;
6283 case 64:
6284 base_atomic_type = atomicDI_type_node;
6285 break;
6287 case 128:
6288 base_atomic_type = atomicTI_type_node;
6289 break;
6291 default:
6292 base_atomic_type = NULL_TREE;
6295 return base_atomic_type;
6298 /* Return a version of the TYPE, qualified as indicated by the
6299 TYPE_QUALS, if one exists. If no qualified version exists yet,
6300 return NULL_TREE. */
6302 tree
6303 get_qualified_type (tree type, int type_quals)
6305 tree t;
6307 if (TYPE_QUALS (type) == type_quals)
6308 return type;
6310 /* Search the chain of variants to see if there is already one there just
6311 like the one we need to have. If so, use that existing one. We must
6312 preserve the TYPE_NAME, since there is code that depends on this. */
6313 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6314 if (check_qualified_type (t, type, type_quals))
6315 return t;
6317 return NULL_TREE;
6320 /* Like get_qualified_type, but creates the type if it does not
6321 exist. This function never returns NULL_TREE. */
6323 tree
6324 build_qualified_type (tree type, int type_quals)
6326 tree t;
6328 /* See if we already have the appropriate qualified variant. */
6329 t = get_qualified_type (type, type_quals);
6331 /* If not, build it. */
6332 if (!t)
6334 t = build_variant_type_copy (type);
6335 set_type_quals (t, type_quals);
6337 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6339 /* See if this object can map to a basic atomic type. */
6340 tree atomic_type = find_atomic_core_type (type);
6341 if (atomic_type)
6343 /* Ensure the alignment of this type is compatible with
6344 the required alignment of the atomic type. */
6345 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6346 TYPE_ALIGN (t) = TYPE_ALIGN (atomic_type);
6350 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6351 /* Propagate structural equality. */
6352 SET_TYPE_STRUCTURAL_EQUALITY (t);
6353 else if (TYPE_CANONICAL (type) != type)
6354 /* Build the underlying canonical type, since it is different
6355 from TYPE. */
6357 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6358 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6360 else
6361 /* T is its own canonical type. */
6362 TYPE_CANONICAL (t) = t;
6366 return t;
6369 /* Create a variant of type T with alignment ALIGN. */
6371 tree
6372 build_aligned_type (tree type, unsigned int align)
6374 tree t;
6376 if (TYPE_PACKED (type)
6377 || TYPE_ALIGN (type) == align)
6378 return type;
6380 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6381 if (check_aligned_type (t, type, align))
6382 return t;
6384 t = build_variant_type_copy (type);
6385 TYPE_ALIGN (t) = align;
6387 return t;
6390 /* Create a new distinct copy of TYPE. The new type is made its own
6391 MAIN_VARIANT. If TYPE requires structural equality checks, the
6392 resulting type requires structural equality checks; otherwise, its
6393 TYPE_CANONICAL points to itself. */
6395 tree
6396 build_distinct_type_copy (tree type)
6398 tree t = copy_node (type);
6400 TYPE_POINTER_TO (t) = 0;
6401 TYPE_REFERENCE_TO (t) = 0;
6403 /* Set the canonical type either to a new equivalence class, or
6404 propagate the need for structural equality checks. */
6405 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6406 SET_TYPE_STRUCTURAL_EQUALITY (t);
6407 else
6408 TYPE_CANONICAL (t) = t;
6410 /* Make it its own variant. */
6411 TYPE_MAIN_VARIANT (t) = t;
6412 TYPE_NEXT_VARIANT (t) = 0;
6414 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6415 whose TREE_TYPE is not t. This can also happen in the Ada
6416 frontend when using subtypes. */
6418 return t;
6421 /* Create a new variant of TYPE, equivalent but distinct. This is so
6422 the caller can modify it. TYPE_CANONICAL for the return type will
6423 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6424 are considered equal by the language itself (or that both types
6425 require structural equality checks). */
6427 tree
6428 build_variant_type_copy (tree type)
6430 tree t, m = TYPE_MAIN_VARIANT (type);
6432 t = build_distinct_type_copy (type);
6434 /* Since we're building a variant, assume that it is a non-semantic
6435 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6436 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6438 /* Add the new type to the chain of variants of TYPE. */
6439 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6440 TYPE_NEXT_VARIANT (m) = t;
6441 TYPE_MAIN_VARIANT (t) = m;
6443 return t;
6446 /* Return true if the from tree in both tree maps are equal. */
6449 tree_map_base_eq (const void *va, const void *vb)
6451 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6452 *const b = (const struct tree_map_base *) vb;
6453 return (a->from == b->from);
6456 /* Hash a from tree in a tree_base_map. */
6458 unsigned int
6459 tree_map_base_hash (const void *item)
6461 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6464 /* Return true if this tree map structure is marked for garbage collection
6465 purposes. We simply return true if the from tree is marked, so that this
6466 structure goes away when the from tree goes away. */
6469 tree_map_base_marked_p (const void *p)
6471 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6474 /* Hash a from tree in a tree_map. */
6476 unsigned int
6477 tree_map_hash (const void *item)
6479 return (((const struct tree_map *) item)->hash);
6482 /* Hash a from tree in a tree_decl_map. */
6484 unsigned int
6485 tree_decl_map_hash (const void *item)
6487 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6490 /* Return the initialization priority for DECL. */
6492 priority_type
6493 decl_init_priority_lookup (tree decl)
6495 struct tree_priority_map *h;
6496 struct tree_map_base in;
6498 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
6499 in.from = decl;
6500 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
6501 return h ? h->init : DEFAULT_INIT_PRIORITY;
6504 /* Return the finalization priority for DECL. */
6506 priority_type
6507 decl_fini_priority_lookup (tree decl)
6509 struct tree_priority_map *h;
6510 struct tree_map_base in;
6512 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
6513 in.from = decl;
6514 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
6515 return h ? h->fini : DEFAULT_INIT_PRIORITY;
6518 /* Return the initialization and finalization priority information for
6519 DECL. If there is no previous priority information, a freshly
6520 allocated structure is returned. */
6522 static struct tree_priority_map *
6523 decl_priority_info (tree decl)
6525 struct tree_priority_map in;
6526 struct tree_priority_map *h;
6527 void **loc;
6529 in.base.from = decl;
6530 loc = htab_find_slot (init_priority_for_decl, &in, INSERT);
6531 h = (struct tree_priority_map *) *loc;
6532 if (!h)
6534 h = ggc_cleared_alloc<tree_priority_map> ();
6535 *loc = h;
6536 h->base.from = decl;
6537 h->init = DEFAULT_INIT_PRIORITY;
6538 h->fini = DEFAULT_INIT_PRIORITY;
6541 return h;
6544 /* Set the initialization priority for DECL to PRIORITY. */
6546 void
6547 decl_init_priority_insert (tree decl, priority_type priority)
6549 struct tree_priority_map *h;
6551 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
6552 if (priority == DEFAULT_INIT_PRIORITY)
6553 return;
6554 h = decl_priority_info (decl);
6555 h->init = priority;
6558 /* Set the finalization priority for DECL to PRIORITY. */
6560 void
6561 decl_fini_priority_insert (tree decl, priority_type priority)
6563 struct tree_priority_map *h;
6565 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
6566 if (priority == DEFAULT_INIT_PRIORITY)
6567 return;
6568 h = decl_priority_info (decl);
6569 h->fini = priority;
6572 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6574 static void
6575 print_debug_expr_statistics (void)
6577 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6578 (long) htab_size (debug_expr_for_decl),
6579 (long) htab_elements (debug_expr_for_decl),
6580 htab_collisions (debug_expr_for_decl));
6583 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6585 static void
6586 print_value_expr_statistics (void)
6588 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6589 (long) htab_size (value_expr_for_decl),
6590 (long) htab_elements (value_expr_for_decl),
6591 htab_collisions (value_expr_for_decl));
6594 /* Lookup a debug expression for FROM, and return it if we find one. */
6596 tree
6597 decl_debug_expr_lookup (tree from)
6599 struct tree_decl_map *h, in;
6600 in.base.from = from;
6602 h = (struct tree_decl_map *)
6603 htab_find_with_hash (debug_expr_for_decl, &in, DECL_UID (from));
6604 if (h)
6605 return h->to;
6606 return NULL_TREE;
6609 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6611 void
6612 decl_debug_expr_insert (tree from, tree to)
6614 struct tree_decl_map *h;
6615 void **loc;
6617 h = ggc_alloc<tree_decl_map> ();
6618 h->base.from = from;
6619 h->to = to;
6620 loc = htab_find_slot_with_hash (debug_expr_for_decl, h, DECL_UID (from),
6621 INSERT);
6622 *(struct tree_decl_map **) loc = h;
6625 /* Lookup a value expression for FROM, and return it if we find one. */
6627 tree
6628 decl_value_expr_lookup (tree from)
6630 struct tree_decl_map *h, in;
6631 in.base.from = from;
6633 h = (struct tree_decl_map *)
6634 htab_find_with_hash (value_expr_for_decl, &in, DECL_UID (from));
6635 if (h)
6636 return h->to;
6637 return NULL_TREE;
6640 /* Insert a mapping FROM->TO in the value expression hashtable. */
6642 void
6643 decl_value_expr_insert (tree from, tree to)
6645 struct tree_decl_map *h;
6646 void **loc;
6648 h = ggc_alloc<tree_decl_map> ();
6649 h->base.from = from;
6650 h->to = to;
6651 loc = htab_find_slot_with_hash (value_expr_for_decl, h, DECL_UID (from),
6652 INSERT);
6653 *(struct tree_decl_map **) loc = h;
6656 /* Lookup a vector of debug arguments for FROM, and return it if we
6657 find one. */
6659 vec<tree, va_gc> **
6660 decl_debug_args_lookup (tree from)
6662 struct tree_vec_map *h, in;
6664 if (!DECL_HAS_DEBUG_ARGS_P (from))
6665 return NULL;
6666 gcc_checking_assert (debug_args_for_decl != NULL);
6667 in.base.from = from;
6668 h = (struct tree_vec_map *)
6669 htab_find_with_hash (debug_args_for_decl, &in, DECL_UID (from));
6670 if (h)
6671 return &h->to;
6672 return NULL;
6675 /* Insert a mapping FROM->empty vector of debug arguments in the value
6676 expression hashtable. */
6678 vec<tree, va_gc> **
6679 decl_debug_args_insert (tree from)
6681 struct tree_vec_map *h;
6682 void **loc;
6684 if (DECL_HAS_DEBUG_ARGS_P (from))
6685 return decl_debug_args_lookup (from);
6686 if (debug_args_for_decl == NULL)
6687 debug_args_for_decl = htab_create_ggc (64, tree_vec_map_hash,
6688 tree_vec_map_eq, 0);
6689 h = ggc_alloc<tree_vec_map> ();
6690 h->base.from = from;
6691 h->to = NULL;
6692 loc = htab_find_slot_with_hash (debug_args_for_decl, h, DECL_UID (from),
6693 INSERT);
6694 *(struct tree_vec_map **) loc = h;
6695 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6696 return &h->to;
6699 /* Hashing of types so that we don't make duplicates.
6700 The entry point is `type_hash_canon'. */
6702 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6703 with types in the TREE_VALUE slots), by adding the hash codes
6704 of the individual types. */
6706 static unsigned int
6707 type_hash_list (const_tree list, hashval_t hashcode)
6709 const_tree tail;
6711 for (tail = list; tail; tail = TREE_CHAIN (tail))
6712 if (TREE_VALUE (tail) != error_mark_node)
6713 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
6714 hashcode);
6716 return hashcode;
6719 /* These are the Hashtable callback functions. */
6721 /* Returns true iff the types are equivalent. */
6723 static int
6724 type_hash_eq (const void *va, const void *vb)
6726 const struct type_hash *const a = (const struct type_hash *) va,
6727 *const b = (const struct type_hash *) vb;
6729 /* First test the things that are the same for all types. */
6730 if (a->hash != b->hash
6731 || TREE_CODE (a->type) != TREE_CODE (b->type)
6732 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6733 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6734 TYPE_ATTRIBUTES (b->type))
6735 || (TREE_CODE (a->type) != COMPLEX_TYPE
6736 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6737 return 0;
6739 /* Be careful about comparing arrays before and after the element type
6740 has been completed; don't compare TYPE_ALIGN unless both types are
6741 complete. */
6742 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6743 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6744 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6745 return 0;
6747 switch (TREE_CODE (a->type))
6749 case VOID_TYPE:
6750 case COMPLEX_TYPE:
6751 case POINTER_TYPE:
6752 case REFERENCE_TYPE:
6753 case NULLPTR_TYPE:
6754 return 1;
6756 case VECTOR_TYPE:
6757 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
6759 case ENUMERAL_TYPE:
6760 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6761 && !(TYPE_VALUES (a->type)
6762 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6763 && TYPE_VALUES (b->type)
6764 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6765 && type_list_equal (TYPE_VALUES (a->type),
6766 TYPE_VALUES (b->type))))
6767 return 0;
6769 /* ... fall through ... */
6771 case INTEGER_TYPE:
6772 case REAL_TYPE:
6773 case BOOLEAN_TYPE:
6774 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6775 return false;
6776 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6777 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6778 TYPE_MAX_VALUE (b->type)))
6779 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6780 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6781 TYPE_MIN_VALUE (b->type))));
6783 case FIXED_POINT_TYPE:
6784 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6786 case OFFSET_TYPE:
6787 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6789 case METHOD_TYPE:
6790 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6791 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6792 || (TYPE_ARG_TYPES (a->type)
6793 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6794 && TYPE_ARG_TYPES (b->type)
6795 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6796 && type_list_equal (TYPE_ARG_TYPES (a->type),
6797 TYPE_ARG_TYPES (b->type)))))
6798 break;
6799 return 0;
6800 case ARRAY_TYPE:
6801 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
6803 case RECORD_TYPE:
6804 case UNION_TYPE:
6805 case QUAL_UNION_TYPE:
6806 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6807 || (TYPE_FIELDS (a->type)
6808 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6809 && TYPE_FIELDS (b->type)
6810 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6811 && type_list_equal (TYPE_FIELDS (a->type),
6812 TYPE_FIELDS (b->type))));
6814 case FUNCTION_TYPE:
6815 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6816 || (TYPE_ARG_TYPES (a->type)
6817 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6818 && TYPE_ARG_TYPES (b->type)
6819 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6820 && type_list_equal (TYPE_ARG_TYPES (a->type),
6821 TYPE_ARG_TYPES (b->type))))
6822 break;
6823 return 0;
6825 default:
6826 return 0;
6829 if (lang_hooks.types.type_hash_eq != NULL)
6830 return lang_hooks.types.type_hash_eq (a->type, b->type);
6832 return 1;
6835 /* Return the cached hash value. */
6837 static hashval_t
6838 type_hash_hash (const void *item)
6840 return ((const struct type_hash *) item)->hash;
6843 /* Look in the type hash table for a type isomorphic to TYPE.
6844 If one is found, return it. Otherwise return 0. */
6846 static tree
6847 type_hash_lookup (hashval_t hashcode, tree type)
6849 struct type_hash *h, in;
6851 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6852 must call that routine before comparing TYPE_ALIGNs. */
6853 layout_type (type);
6855 in.hash = hashcode;
6856 in.type = type;
6858 h = (struct type_hash *) htab_find_with_hash (type_hash_table, &in,
6859 hashcode);
6860 if (h)
6861 return h->type;
6862 return NULL_TREE;
6865 /* Add an entry to the type-hash-table
6866 for a type TYPE whose hash code is HASHCODE. */
6868 static void
6869 type_hash_add (hashval_t hashcode, tree type)
6871 struct type_hash *h;
6872 void **loc;
6874 h = ggc_alloc<type_hash> ();
6875 h->hash = hashcode;
6876 h->type = type;
6877 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
6878 *loc = (void *)h;
6881 /* Given TYPE, and HASHCODE its hash code, return the canonical
6882 object for an identical type if one already exists.
6883 Otherwise, return TYPE, and record it as the canonical object.
6885 To use this function, first create a type of the sort you want.
6886 Then compute its hash code from the fields of the type that
6887 make it different from other similar types.
6888 Then call this function and use the value. */
6890 tree
6891 type_hash_canon (unsigned int hashcode, tree type)
6893 tree t1;
6895 /* The hash table only contains main variants, so ensure that's what we're
6896 being passed. */
6897 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6899 /* See if the type is in the hash table already. If so, return it.
6900 Otherwise, add the type. */
6901 t1 = type_hash_lookup (hashcode, type);
6902 if (t1 != 0)
6904 if (GATHER_STATISTICS)
6906 tree_code_counts[(int) TREE_CODE (type)]--;
6907 tree_node_counts[(int) t_kind]--;
6908 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type_non_common);
6910 return t1;
6912 else
6914 type_hash_add (hashcode, type);
6915 return type;
6919 /* See if the data pointed to by the type hash table is marked. We consider
6920 it marked if the type is marked or if a debug type number or symbol
6921 table entry has been made for the type. */
6923 static int
6924 type_hash_marked_p (const void *p)
6926 const_tree const type = ((const struct type_hash *) p)->type;
6928 return ggc_marked_p (type);
6931 static void
6932 print_type_hash_statistics (void)
6934 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6935 (long) htab_size (type_hash_table),
6936 (long) htab_elements (type_hash_table),
6937 htab_collisions (type_hash_table));
6940 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6941 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6942 by adding the hash codes of the individual attributes. */
6944 static unsigned int
6945 attribute_hash_list (const_tree list, hashval_t hashcode)
6947 const_tree tail;
6949 for (tail = list; tail; tail = TREE_CHAIN (tail))
6950 /* ??? Do we want to add in TREE_VALUE too? */
6951 hashcode = iterative_hash_object
6952 (IDENTIFIER_HASH_VALUE (get_attribute_name (tail)), hashcode);
6953 return hashcode;
6956 /* Given two lists of attributes, return true if list l2 is
6957 equivalent to l1. */
6960 attribute_list_equal (const_tree l1, const_tree l2)
6962 if (l1 == l2)
6963 return 1;
6965 return attribute_list_contained (l1, l2)
6966 && attribute_list_contained (l2, l1);
6969 /* Given two lists of attributes, return true if list L2 is
6970 completely contained within L1. */
6971 /* ??? This would be faster if attribute names were stored in a canonicalized
6972 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6973 must be used to show these elements are equivalent (which they are). */
6974 /* ??? It's not clear that attributes with arguments will always be handled
6975 correctly. */
6978 attribute_list_contained (const_tree l1, const_tree l2)
6980 const_tree t1, t2;
6982 /* First check the obvious, maybe the lists are identical. */
6983 if (l1 == l2)
6984 return 1;
6986 /* Maybe the lists are similar. */
6987 for (t1 = l1, t2 = l2;
6988 t1 != 0 && t2 != 0
6989 && get_attribute_name (t1) == get_attribute_name (t2)
6990 && TREE_VALUE (t1) == TREE_VALUE (t2);
6991 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6994 /* Maybe the lists are equal. */
6995 if (t1 == 0 && t2 == 0)
6996 return 1;
6998 for (; t2 != 0; t2 = TREE_CHAIN (t2))
7000 const_tree attr;
7001 /* This CONST_CAST is okay because lookup_attribute does not
7002 modify its argument and the return value is assigned to a
7003 const_tree. */
7004 for (attr = lookup_ident_attribute (get_attribute_name (t2),
7005 CONST_CAST_TREE (l1));
7006 attr != NULL_TREE && !attribute_value_equal (t2, attr);
7007 attr = lookup_ident_attribute (get_attribute_name (t2),
7008 TREE_CHAIN (attr)))
7011 if (attr == NULL_TREE)
7012 return 0;
7015 return 1;
7018 /* Given two lists of types
7019 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7020 return 1 if the lists contain the same types in the same order.
7021 Also, the TREE_PURPOSEs must match. */
7024 type_list_equal (const_tree l1, const_tree l2)
7026 const_tree t1, t2;
7028 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7029 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7030 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7031 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7032 && (TREE_TYPE (TREE_PURPOSE (t1))
7033 == TREE_TYPE (TREE_PURPOSE (t2))))))
7034 return 0;
7036 return t1 == t2;
7039 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7040 given by TYPE. If the argument list accepts variable arguments,
7041 then this function counts only the ordinary arguments. */
7044 type_num_arguments (const_tree type)
7046 int i = 0;
7047 tree t;
7049 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7050 /* If the function does not take a variable number of arguments,
7051 the last element in the list will have type `void'. */
7052 if (VOID_TYPE_P (TREE_VALUE (t)))
7053 break;
7054 else
7055 ++i;
7057 return i;
7060 /* Nonzero if integer constants T1 and T2
7061 represent the same constant value. */
7064 tree_int_cst_equal (const_tree t1, const_tree t2)
7066 if (t1 == t2)
7067 return 1;
7069 if (t1 == 0 || t2 == 0)
7070 return 0;
7072 if (TREE_CODE (t1) == INTEGER_CST
7073 && TREE_CODE (t2) == INTEGER_CST
7074 && wi::to_widest (t1) == wi::to_widest (t2))
7075 return 1;
7077 return 0;
7080 /* Return true if T is an INTEGER_CST whose numerical value (extended
7081 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7083 bool
7084 tree_fits_shwi_p (const_tree t)
7086 return (t != NULL_TREE
7087 && TREE_CODE (t) == INTEGER_CST
7088 && wi::fits_shwi_p (wi::to_widest (t)));
7091 /* Return true if T is an INTEGER_CST whose numerical value (extended
7092 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7094 bool
7095 tree_fits_uhwi_p (const_tree t)
7097 return (t != NULL_TREE
7098 && TREE_CODE (t) == INTEGER_CST
7099 && wi::fits_uhwi_p (wi::to_widest (t)));
7102 /* T is an INTEGER_CST whose numerical value (extended according to
7103 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7104 HOST_WIDE_INT. */
7106 HOST_WIDE_INT
7107 tree_to_shwi (const_tree t)
7109 gcc_assert (tree_fits_shwi_p (t));
7110 return TREE_INT_CST_LOW (t);
7113 /* T is an INTEGER_CST whose numerical value (extended according to
7114 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7115 HOST_WIDE_INT. */
7117 unsigned HOST_WIDE_INT
7118 tree_to_uhwi (const_tree t)
7120 gcc_assert (tree_fits_uhwi_p (t));
7121 return TREE_INT_CST_LOW (t);
7124 /* Return the most significant (sign) bit of T. */
7127 tree_int_cst_sign_bit (const_tree t)
7129 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7131 return wi::extract_uhwi (t, bitno, 1);
7134 /* Return an indication of the sign of the integer constant T.
7135 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7136 Note that -1 will never be returned if T's type is unsigned. */
7139 tree_int_cst_sgn (const_tree t)
7141 if (wi::eq_p (t, 0))
7142 return 0;
7143 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7144 return 1;
7145 else if (wi::neg_p (t))
7146 return -1;
7147 else
7148 return 1;
7151 /* Return the minimum number of bits needed to represent VALUE in a
7152 signed or unsigned type, UNSIGNEDP says which. */
7154 unsigned int
7155 tree_int_cst_min_precision (tree value, signop sgn)
7157 /* If the value is negative, compute its negative minus 1. The latter
7158 adjustment is because the absolute value of the largest negative value
7159 is one larger than the largest positive value. This is equivalent to
7160 a bit-wise negation, so use that operation instead. */
7162 if (tree_int_cst_sgn (value) < 0)
7163 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7165 /* Return the number of bits needed, taking into account the fact
7166 that we need one more bit for a signed than unsigned type.
7167 If value is 0 or -1, the minimum precision is 1 no matter
7168 whether unsignedp is true or false. */
7170 if (integer_zerop (value))
7171 return 1;
7172 else
7173 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7176 /* Return truthvalue of whether T1 is the same tree structure as T2.
7177 Return 1 if they are the same.
7178 Return 0 if they are understandably different.
7179 Return -1 if either contains tree structure not understood by
7180 this function. */
7183 simple_cst_equal (const_tree t1, const_tree t2)
7185 enum tree_code code1, code2;
7186 int cmp;
7187 int i;
7189 if (t1 == t2)
7190 return 1;
7191 if (t1 == 0 || t2 == 0)
7192 return 0;
7194 code1 = TREE_CODE (t1);
7195 code2 = TREE_CODE (t2);
7197 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7199 if (CONVERT_EXPR_CODE_P (code2)
7200 || code2 == NON_LVALUE_EXPR)
7201 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7202 else
7203 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7206 else if (CONVERT_EXPR_CODE_P (code2)
7207 || code2 == NON_LVALUE_EXPR)
7208 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7210 if (code1 != code2)
7211 return 0;
7213 switch (code1)
7215 case INTEGER_CST:
7216 return wi::to_widest (t1) == wi::to_widest (t2);
7218 case REAL_CST:
7219 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
7221 case FIXED_CST:
7222 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7224 case STRING_CST:
7225 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7226 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7227 TREE_STRING_LENGTH (t1)));
7229 case CONSTRUCTOR:
7231 unsigned HOST_WIDE_INT idx;
7232 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7233 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7235 if (vec_safe_length (v1) != vec_safe_length (v2))
7236 return false;
7238 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7239 /* ??? Should we handle also fields here? */
7240 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7241 return false;
7242 return true;
7245 case SAVE_EXPR:
7246 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7248 case CALL_EXPR:
7249 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7250 if (cmp <= 0)
7251 return cmp;
7252 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7253 return 0;
7255 const_tree arg1, arg2;
7256 const_call_expr_arg_iterator iter1, iter2;
7257 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7258 arg2 = first_const_call_expr_arg (t2, &iter2);
7259 arg1 && arg2;
7260 arg1 = next_const_call_expr_arg (&iter1),
7261 arg2 = next_const_call_expr_arg (&iter2))
7263 cmp = simple_cst_equal (arg1, arg2);
7264 if (cmp <= 0)
7265 return cmp;
7267 return arg1 == arg2;
7270 case TARGET_EXPR:
7271 /* Special case: if either target is an unallocated VAR_DECL,
7272 it means that it's going to be unified with whatever the
7273 TARGET_EXPR is really supposed to initialize, so treat it
7274 as being equivalent to anything. */
7275 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7276 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7277 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7278 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7279 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7280 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7281 cmp = 1;
7282 else
7283 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7285 if (cmp <= 0)
7286 return cmp;
7288 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7290 case WITH_CLEANUP_EXPR:
7291 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7292 if (cmp <= 0)
7293 return cmp;
7295 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7297 case COMPONENT_REF:
7298 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7299 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7301 return 0;
7303 case VAR_DECL:
7304 case PARM_DECL:
7305 case CONST_DECL:
7306 case FUNCTION_DECL:
7307 return 0;
7309 default:
7310 break;
7313 /* This general rule works for most tree codes. All exceptions should be
7314 handled above. If this is a language-specific tree code, we can't
7315 trust what might be in the operand, so say we don't know
7316 the situation. */
7317 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7318 return -1;
7320 switch (TREE_CODE_CLASS (code1))
7322 case tcc_unary:
7323 case tcc_binary:
7324 case tcc_comparison:
7325 case tcc_expression:
7326 case tcc_reference:
7327 case tcc_statement:
7328 cmp = 1;
7329 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7331 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7332 if (cmp <= 0)
7333 return cmp;
7336 return cmp;
7338 default:
7339 return -1;
7343 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7344 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7345 than U, respectively. */
7348 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7350 if (tree_int_cst_sgn (t) < 0)
7351 return -1;
7352 else if (!tree_fits_uhwi_p (t))
7353 return 1;
7354 else if (TREE_INT_CST_LOW (t) == u)
7355 return 0;
7356 else if (TREE_INT_CST_LOW (t) < u)
7357 return -1;
7358 else
7359 return 1;
7362 /* Return true if SIZE represents a constant size that is in bounds of
7363 what the middle-end and the backend accepts (covering not more than
7364 half of the address-space). */
7366 bool
7367 valid_constant_size_p (const_tree size)
7369 if (! tree_fits_uhwi_p (size)
7370 || TREE_OVERFLOW (size)
7371 || tree_int_cst_sign_bit (size) != 0)
7372 return false;
7373 return true;
7376 /* Return the precision of the type, or for a complex or vector type the
7377 precision of the type of its elements. */
7379 unsigned int
7380 element_precision (const_tree type)
7382 enum tree_code code = TREE_CODE (type);
7383 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7384 type = TREE_TYPE (type);
7386 return TYPE_PRECISION (type);
7389 /* Return true if CODE represents an associative tree code. Otherwise
7390 return false. */
7391 bool
7392 associative_tree_code (enum tree_code code)
7394 switch (code)
7396 case BIT_IOR_EXPR:
7397 case BIT_AND_EXPR:
7398 case BIT_XOR_EXPR:
7399 case PLUS_EXPR:
7400 case MULT_EXPR:
7401 case MIN_EXPR:
7402 case MAX_EXPR:
7403 return true;
7405 default:
7406 break;
7408 return false;
7411 /* Return true if CODE represents a commutative tree code. Otherwise
7412 return false. */
7413 bool
7414 commutative_tree_code (enum tree_code code)
7416 switch (code)
7418 case PLUS_EXPR:
7419 case MULT_EXPR:
7420 case MULT_HIGHPART_EXPR:
7421 case MIN_EXPR:
7422 case MAX_EXPR:
7423 case BIT_IOR_EXPR:
7424 case BIT_XOR_EXPR:
7425 case BIT_AND_EXPR:
7426 case NE_EXPR:
7427 case EQ_EXPR:
7428 case UNORDERED_EXPR:
7429 case ORDERED_EXPR:
7430 case UNEQ_EXPR:
7431 case LTGT_EXPR:
7432 case TRUTH_AND_EXPR:
7433 case TRUTH_XOR_EXPR:
7434 case TRUTH_OR_EXPR:
7435 case WIDEN_MULT_EXPR:
7436 case VEC_WIDEN_MULT_HI_EXPR:
7437 case VEC_WIDEN_MULT_LO_EXPR:
7438 case VEC_WIDEN_MULT_EVEN_EXPR:
7439 case VEC_WIDEN_MULT_ODD_EXPR:
7440 return true;
7442 default:
7443 break;
7445 return false;
7448 /* Return true if CODE represents a ternary tree code for which the
7449 first two operands are commutative. Otherwise return false. */
7450 bool
7451 commutative_ternary_tree_code (enum tree_code code)
7453 switch (code)
7455 case WIDEN_MULT_PLUS_EXPR:
7456 case WIDEN_MULT_MINUS_EXPR:
7457 return true;
7459 default:
7460 break;
7462 return false;
7465 /* Generate a hash value for an expression. This can be used iteratively
7466 by passing a previous result as the VAL argument.
7468 This function is intended to produce the same hash for expressions which
7469 would compare equal using operand_equal_p. */
7471 hashval_t
7472 iterative_hash_expr (const_tree t, hashval_t val)
7474 int i;
7475 enum tree_code code;
7476 enum tree_code_class tclass;
7478 if (t == NULL_TREE)
7479 return iterative_hash_hashval_t (0, val);
7481 code = TREE_CODE (t);
7483 switch (code)
7485 /* Alas, constants aren't shared, so we can't rely on pointer
7486 identity. */
7487 case VOID_CST:
7488 return iterative_hash_hashval_t (0, val);
7489 case INTEGER_CST:
7490 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
7491 val = iterative_hash_host_wide_int (TREE_INT_CST_ELT (t, i), val);
7492 return val;
7493 case REAL_CST:
7495 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
7497 return iterative_hash_hashval_t (val2, val);
7499 case FIXED_CST:
7501 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7503 return iterative_hash_hashval_t (val2, val);
7505 case STRING_CST:
7506 return iterative_hash (TREE_STRING_POINTER (t),
7507 TREE_STRING_LENGTH (t), val);
7508 case COMPLEX_CST:
7509 val = iterative_hash_expr (TREE_REALPART (t), val);
7510 return iterative_hash_expr (TREE_IMAGPART (t), val);
7511 case VECTOR_CST:
7513 unsigned i;
7514 for (i = 0; i < VECTOR_CST_NELTS (t); ++i)
7515 val = iterative_hash_expr (VECTOR_CST_ELT (t, i), val);
7516 return val;
7518 case SSA_NAME:
7519 /* We can just compare by pointer. */
7520 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t), val);
7521 case PLACEHOLDER_EXPR:
7522 /* The node itself doesn't matter. */
7523 return val;
7524 case TREE_LIST:
7525 /* A list of expressions, for a CALL_EXPR or as the elements of a
7526 VECTOR_CST. */
7527 for (; t; t = TREE_CHAIN (t))
7528 val = iterative_hash_expr (TREE_VALUE (t), val);
7529 return val;
7530 case CONSTRUCTOR:
7532 unsigned HOST_WIDE_INT idx;
7533 tree field, value;
7534 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7536 val = iterative_hash_expr (field, val);
7537 val = iterative_hash_expr (value, val);
7539 return val;
7541 case FUNCTION_DECL:
7542 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7543 Otherwise nodes that compare equal according to operand_equal_p might
7544 get different hash codes. However, don't do this for machine specific
7545 or front end builtins, since the function code is overloaded in those
7546 cases. */
7547 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7548 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7550 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7551 code = TREE_CODE (t);
7553 /* FALL THROUGH */
7554 default:
7555 tclass = TREE_CODE_CLASS (code);
7557 if (tclass == tcc_declaration)
7559 /* DECL's have a unique ID */
7560 val = iterative_hash_host_wide_int (DECL_UID (t), val);
7562 else
7564 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
7566 val = iterative_hash_object (code, val);
7568 /* Don't hash the type, that can lead to having nodes which
7569 compare equal according to operand_equal_p, but which
7570 have different hash codes. */
7571 if (CONVERT_EXPR_CODE_P (code)
7572 || code == NON_LVALUE_EXPR)
7574 /* Make sure to include signness in the hash computation. */
7575 val += TYPE_UNSIGNED (TREE_TYPE (t));
7576 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
7579 else if (commutative_tree_code (code))
7581 /* It's a commutative expression. We want to hash it the same
7582 however it appears. We do this by first hashing both operands
7583 and then rehashing based on the order of their independent
7584 hashes. */
7585 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
7586 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
7587 hashval_t t;
7589 if (one > two)
7590 t = one, one = two, two = t;
7592 val = iterative_hash_hashval_t (one, val);
7593 val = iterative_hash_hashval_t (two, val);
7595 else
7596 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7597 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
7599 return val;
7603 /* Constructors for pointer, array and function types.
7604 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7605 constructed by language-dependent code, not here.) */
7607 /* Construct, lay out and return the type of pointers to TO_TYPE with
7608 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7609 reference all of memory. If such a type has already been
7610 constructed, reuse it. */
7612 tree
7613 build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
7614 bool can_alias_all)
7616 tree t;
7618 if (to_type == error_mark_node)
7619 return error_mark_node;
7621 /* If the pointed-to type has the may_alias attribute set, force
7622 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7623 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7624 can_alias_all = true;
7626 /* In some cases, languages will have things that aren't a POINTER_TYPE
7627 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7628 In that case, return that type without regard to the rest of our
7629 operands.
7631 ??? This is a kludge, but consistent with the way this function has
7632 always operated and there doesn't seem to be a good way to avoid this
7633 at the moment. */
7634 if (TYPE_POINTER_TO (to_type) != 0
7635 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7636 return TYPE_POINTER_TO (to_type);
7638 /* First, if we already have a type for pointers to TO_TYPE and it's
7639 the proper mode, use it. */
7640 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7641 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7642 return t;
7644 t = make_node (POINTER_TYPE);
7646 TREE_TYPE (t) = to_type;
7647 SET_TYPE_MODE (t, mode);
7648 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7649 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7650 TYPE_POINTER_TO (to_type) = t;
7652 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7653 SET_TYPE_STRUCTURAL_EQUALITY (t);
7654 else if (TYPE_CANONICAL (to_type) != to_type)
7655 TYPE_CANONICAL (t)
7656 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7657 mode, can_alias_all);
7659 /* Lay out the type. This function has many callers that are concerned
7660 with expression-construction, and this simplifies them all. */
7661 layout_type (t);
7663 return t;
7666 /* By default build pointers in ptr_mode. */
7668 tree
7669 build_pointer_type (tree to_type)
7671 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7672 : TYPE_ADDR_SPACE (to_type);
7673 enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7674 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7677 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7679 tree
7680 build_reference_type_for_mode (tree to_type, enum machine_mode mode,
7681 bool can_alias_all)
7683 tree t;
7685 if (to_type == error_mark_node)
7686 return error_mark_node;
7688 /* If the pointed-to type has the may_alias attribute set, force
7689 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7690 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7691 can_alias_all = true;
7693 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7694 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7695 In that case, return that type without regard to the rest of our
7696 operands.
7698 ??? This is a kludge, but consistent with the way this function has
7699 always operated and there doesn't seem to be a good way to avoid this
7700 at the moment. */
7701 if (TYPE_REFERENCE_TO (to_type) != 0
7702 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7703 return TYPE_REFERENCE_TO (to_type);
7705 /* First, if we already have a type for pointers to TO_TYPE and it's
7706 the proper mode, use it. */
7707 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7708 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7709 return t;
7711 t = make_node (REFERENCE_TYPE);
7713 TREE_TYPE (t) = to_type;
7714 SET_TYPE_MODE (t, mode);
7715 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7716 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7717 TYPE_REFERENCE_TO (to_type) = t;
7719 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7720 SET_TYPE_STRUCTURAL_EQUALITY (t);
7721 else if (TYPE_CANONICAL (to_type) != to_type)
7722 TYPE_CANONICAL (t)
7723 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7724 mode, can_alias_all);
7726 layout_type (t);
7728 return t;
7732 /* Build the node for the type of references-to-TO_TYPE by default
7733 in ptr_mode. */
7735 tree
7736 build_reference_type (tree to_type)
7738 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7739 : TYPE_ADDR_SPACE (to_type);
7740 enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7741 return build_reference_type_for_mode (to_type, pointer_mode, false);
7744 #define MAX_INT_CACHED_PREC \
7745 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7746 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7748 /* Builds a signed or unsigned integer type of precision PRECISION.
7749 Used for C bitfields whose precision does not match that of
7750 built-in target types. */
7751 tree
7752 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7753 int unsignedp)
7755 tree itype, ret;
7757 if (unsignedp)
7758 unsignedp = MAX_INT_CACHED_PREC + 1;
7760 if (precision <= MAX_INT_CACHED_PREC)
7762 itype = nonstandard_integer_type_cache[precision + unsignedp];
7763 if (itype)
7764 return itype;
7767 itype = make_node (INTEGER_TYPE);
7768 TYPE_PRECISION (itype) = precision;
7770 if (unsignedp)
7771 fixup_unsigned_type (itype);
7772 else
7773 fixup_signed_type (itype);
7775 ret = itype;
7776 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (itype)))
7777 ret = type_hash_canon (tree_to_uhwi (TYPE_MAX_VALUE (itype)), itype);
7778 if (precision <= MAX_INT_CACHED_PREC)
7779 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7781 return ret;
7784 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7785 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7786 is true, reuse such a type that has already been constructed. */
7788 static tree
7789 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7791 tree itype = make_node (INTEGER_TYPE);
7792 hashval_t hashcode = 0;
7794 TREE_TYPE (itype) = type;
7796 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7797 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7799 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7800 SET_TYPE_MODE (itype, TYPE_MODE (type));
7801 TYPE_SIZE (itype) = TYPE_SIZE (type);
7802 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7803 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
7804 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7806 if (!shared)
7807 return itype;
7809 if ((TYPE_MIN_VALUE (itype)
7810 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7811 || (TYPE_MAX_VALUE (itype)
7812 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7814 /* Since we cannot reliably merge this type, we need to compare it using
7815 structural equality checks. */
7816 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7817 return itype;
7820 hashcode = iterative_hash_expr (TYPE_MIN_VALUE (itype), hashcode);
7821 hashcode = iterative_hash_expr (TYPE_MAX_VALUE (itype), hashcode);
7822 hashcode = iterative_hash_hashval_t (TYPE_HASH (type), hashcode);
7823 itype = type_hash_canon (hashcode, itype);
7825 return itype;
7828 /* Wrapper around build_range_type_1 with SHARED set to true. */
7830 tree
7831 build_range_type (tree type, tree lowval, tree highval)
7833 return build_range_type_1 (type, lowval, highval, true);
7836 /* Wrapper around build_range_type_1 with SHARED set to false. */
7838 tree
7839 build_nonshared_range_type (tree type, tree lowval, tree highval)
7841 return build_range_type_1 (type, lowval, highval, false);
7844 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7845 MAXVAL should be the maximum value in the domain
7846 (one less than the length of the array).
7848 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7849 We don't enforce this limit, that is up to caller (e.g. language front end).
7850 The limit exists because the result is a signed type and we don't handle
7851 sizes that use more than one HOST_WIDE_INT. */
7853 tree
7854 build_index_type (tree maxval)
7856 return build_range_type (sizetype, size_zero_node, maxval);
7859 /* Return true if the debug information for TYPE, a subtype, should be emitted
7860 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7861 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7862 debug info and doesn't reflect the source code. */
7864 bool
7865 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7867 tree base_type = TREE_TYPE (type), low, high;
7869 /* Subrange types have a base type which is an integral type. */
7870 if (!INTEGRAL_TYPE_P (base_type))
7871 return false;
7873 /* Get the real bounds of the subtype. */
7874 if (lang_hooks.types.get_subrange_bounds)
7875 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7876 else
7878 low = TYPE_MIN_VALUE (type);
7879 high = TYPE_MAX_VALUE (type);
7882 /* If the type and its base type have the same representation and the same
7883 name, then the type is not a subrange but a copy of the base type. */
7884 if ((TREE_CODE (base_type) == INTEGER_TYPE
7885 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7886 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7887 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7888 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
7889 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
7890 return false;
7892 if (lowval)
7893 *lowval = low;
7894 if (highval)
7895 *highval = high;
7896 return true;
7899 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7900 and number of elements specified by the range of values of INDEX_TYPE.
7901 If SHARED is true, reuse such a type that has already been constructed. */
7903 static tree
7904 build_array_type_1 (tree elt_type, tree index_type, bool shared)
7906 tree t;
7908 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7910 error ("arrays of functions are not meaningful");
7911 elt_type = integer_type_node;
7914 t = make_node (ARRAY_TYPE);
7915 TREE_TYPE (t) = elt_type;
7916 TYPE_DOMAIN (t) = index_type;
7917 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7918 layout_type (t);
7920 /* If the element type is incomplete at this point we get marked for
7921 structural equality. Do not record these types in the canonical
7922 type hashtable. */
7923 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7924 return t;
7926 if (shared)
7928 hashval_t hashcode = iterative_hash_object (TYPE_HASH (elt_type), 0);
7929 if (index_type)
7930 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
7931 t = type_hash_canon (hashcode, t);
7934 if (TYPE_CANONICAL (t) == t)
7936 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7937 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
7938 SET_TYPE_STRUCTURAL_EQUALITY (t);
7939 else if (TYPE_CANONICAL (elt_type) != elt_type
7940 || (index_type && TYPE_CANONICAL (index_type) != index_type))
7941 TYPE_CANONICAL (t)
7942 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7943 index_type
7944 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7945 shared);
7948 return t;
7951 /* Wrapper around build_array_type_1 with SHARED set to true. */
7953 tree
7954 build_array_type (tree elt_type, tree index_type)
7956 return build_array_type_1 (elt_type, index_type, true);
7959 /* Wrapper around build_array_type_1 with SHARED set to false. */
7961 tree
7962 build_nonshared_array_type (tree elt_type, tree index_type)
7964 return build_array_type_1 (elt_type, index_type, false);
7967 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7968 sizetype. */
7970 tree
7971 build_array_type_nelts (tree elt_type, unsigned HOST_WIDE_INT nelts)
7973 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7976 /* Recursively examines the array elements of TYPE, until a non-array
7977 element type is found. */
7979 tree
7980 strip_array_types (tree type)
7982 while (TREE_CODE (type) == ARRAY_TYPE)
7983 type = TREE_TYPE (type);
7985 return type;
7988 /* Computes the canonical argument types from the argument type list
7989 ARGTYPES.
7991 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7992 on entry to this function, or if any of the ARGTYPES are
7993 structural.
7995 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7996 true on entry to this function, or if any of the ARGTYPES are
7997 non-canonical.
7999 Returns a canonical argument list, which may be ARGTYPES when the
8000 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8001 true) or would not differ from ARGTYPES. */
8003 static tree
8004 maybe_canonicalize_argtypes (tree argtypes,
8005 bool *any_structural_p,
8006 bool *any_noncanonical_p)
8008 tree arg;
8009 bool any_noncanonical_argtypes_p = false;
8011 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8013 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8014 /* Fail gracefully by stating that the type is structural. */
8015 *any_structural_p = true;
8016 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8017 *any_structural_p = true;
8018 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8019 || TREE_PURPOSE (arg))
8020 /* If the argument has a default argument, we consider it
8021 non-canonical even though the type itself is canonical.
8022 That way, different variants of function and method types
8023 with default arguments will all point to the variant with
8024 no defaults as their canonical type. */
8025 any_noncanonical_argtypes_p = true;
8028 if (*any_structural_p)
8029 return argtypes;
8031 if (any_noncanonical_argtypes_p)
8033 /* Build the canonical list of argument types. */
8034 tree canon_argtypes = NULL_TREE;
8035 bool is_void = false;
8037 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8039 if (arg == void_list_node)
8040 is_void = true;
8041 else
8042 canon_argtypes = tree_cons (NULL_TREE,
8043 TYPE_CANONICAL (TREE_VALUE (arg)),
8044 canon_argtypes);
8047 canon_argtypes = nreverse (canon_argtypes);
8048 if (is_void)
8049 canon_argtypes = chainon (canon_argtypes, void_list_node);
8051 /* There is a non-canonical type. */
8052 *any_noncanonical_p = true;
8053 return canon_argtypes;
8056 /* The canonical argument types are the same as ARGTYPES. */
8057 return argtypes;
8060 /* Construct, lay out and return
8061 the type of functions returning type VALUE_TYPE
8062 given arguments of types ARG_TYPES.
8063 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8064 are data type nodes for the arguments of the function.
8065 If such a type has already been constructed, reuse it. */
8067 tree
8068 build_function_type (tree value_type, tree arg_types)
8070 tree t;
8071 hashval_t hashcode = 0;
8072 bool any_structural_p, any_noncanonical_p;
8073 tree canon_argtypes;
8075 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8077 error ("function return type cannot be function");
8078 value_type = integer_type_node;
8081 /* Make a node of the sort we want. */
8082 t = make_node (FUNCTION_TYPE);
8083 TREE_TYPE (t) = value_type;
8084 TYPE_ARG_TYPES (t) = arg_types;
8086 /* If we already have such a type, use the old one. */
8087 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
8088 hashcode = type_hash_list (arg_types, hashcode);
8089 t = type_hash_canon (hashcode, t);
8091 /* Set up the canonical type. */
8092 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8093 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8094 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8095 &any_structural_p,
8096 &any_noncanonical_p);
8097 if (any_structural_p)
8098 SET_TYPE_STRUCTURAL_EQUALITY (t);
8099 else if (any_noncanonical_p)
8100 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8101 canon_argtypes);
8103 if (!COMPLETE_TYPE_P (t))
8104 layout_type (t);
8105 return t;
8108 /* Build a function type. The RETURN_TYPE is the type returned by the
8109 function. If VAARGS is set, no void_type_node is appended to the
8110 the list. ARGP must be always be terminated be a NULL_TREE. */
8112 static tree
8113 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8115 tree t, args, last;
8117 t = va_arg (argp, tree);
8118 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8119 args = tree_cons (NULL_TREE, t, args);
8121 if (vaargs)
8123 last = args;
8124 if (args != NULL_TREE)
8125 args = nreverse (args);
8126 gcc_assert (last != void_list_node);
8128 else if (args == NULL_TREE)
8129 args = void_list_node;
8130 else
8132 last = args;
8133 args = nreverse (args);
8134 TREE_CHAIN (last) = void_list_node;
8136 args = build_function_type (return_type, args);
8138 return args;
8141 /* Build a function type. The RETURN_TYPE is the type returned by the
8142 function. If additional arguments are provided, they are
8143 additional argument types. The list of argument types must always
8144 be terminated by NULL_TREE. */
8146 tree
8147 build_function_type_list (tree return_type, ...)
8149 tree args;
8150 va_list p;
8152 va_start (p, return_type);
8153 args = build_function_type_list_1 (false, return_type, p);
8154 va_end (p);
8155 return args;
8158 /* Build a variable argument function type. The RETURN_TYPE is the
8159 type returned by the function. If additional arguments are provided,
8160 they are additional argument types. The list of argument types must
8161 always be terminated by NULL_TREE. */
8163 tree
8164 build_varargs_function_type_list (tree return_type, ...)
8166 tree args;
8167 va_list p;
8169 va_start (p, return_type);
8170 args = build_function_type_list_1 (true, return_type, p);
8171 va_end (p);
8173 return args;
8176 /* Build a function type. RETURN_TYPE is the type returned by the
8177 function; VAARGS indicates whether the function takes varargs. The
8178 function takes N named arguments, the types of which are provided in
8179 ARG_TYPES. */
8181 static tree
8182 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8183 tree *arg_types)
8185 int i;
8186 tree t = vaargs ? NULL_TREE : void_list_node;
8188 for (i = n - 1; i >= 0; i--)
8189 t = tree_cons (NULL_TREE, arg_types[i], t);
8191 return build_function_type (return_type, t);
8194 /* Build a function type. RETURN_TYPE is the type returned by the
8195 function. The function takes N named arguments, the types of which
8196 are provided in ARG_TYPES. */
8198 tree
8199 build_function_type_array (tree return_type, int n, tree *arg_types)
8201 return build_function_type_array_1 (false, return_type, n, arg_types);
8204 /* Build a variable argument function type. RETURN_TYPE is the type
8205 returned by the function. The function takes N named arguments, the
8206 types of which are provided in ARG_TYPES. */
8208 tree
8209 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8211 return build_function_type_array_1 (true, return_type, n, arg_types);
8214 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8215 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8216 for the method. An implicit additional parameter (of type
8217 pointer-to-BASETYPE) is added to the ARGTYPES. */
8219 tree
8220 build_method_type_directly (tree basetype,
8221 tree rettype,
8222 tree argtypes)
8224 tree t;
8225 tree ptype;
8226 int hashcode = 0;
8227 bool any_structural_p, any_noncanonical_p;
8228 tree canon_argtypes;
8230 /* Make a node of the sort we want. */
8231 t = make_node (METHOD_TYPE);
8233 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8234 TREE_TYPE (t) = rettype;
8235 ptype = build_pointer_type (basetype);
8237 /* The actual arglist for this function includes a "hidden" argument
8238 which is "this". Put it into the list of argument types. */
8239 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8240 TYPE_ARG_TYPES (t) = argtypes;
8242 /* If we already have such a type, use the old one. */
8243 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
8244 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
8245 hashcode = type_hash_list (argtypes, hashcode);
8246 t = type_hash_canon (hashcode, t);
8248 /* Set up the canonical type. */
8249 any_structural_p
8250 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8251 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8252 any_noncanonical_p
8253 = (TYPE_CANONICAL (basetype) != basetype
8254 || TYPE_CANONICAL (rettype) != rettype);
8255 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8256 &any_structural_p,
8257 &any_noncanonical_p);
8258 if (any_structural_p)
8259 SET_TYPE_STRUCTURAL_EQUALITY (t);
8260 else if (any_noncanonical_p)
8261 TYPE_CANONICAL (t)
8262 = build_method_type_directly (TYPE_CANONICAL (basetype),
8263 TYPE_CANONICAL (rettype),
8264 canon_argtypes);
8265 if (!COMPLETE_TYPE_P (t))
8266 layout_type (t);
8268 return t;
8271 /* Construct, lay out and return the type of methods belonging to class
8272 BASETYPE and whose arguments and values are described by TYPE.
8273 If that type exists already, reuse it.
8274 TYPE must be a FUNCTION_TYPE node. */
8276 tree
8277 build_method_type (tree basetype, tree type)
8279 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8281 return build_method_type_directly (basetype,
8282 TREE_TYPE (type),
8283 TYPE_ARG_TYPES (type));
8286 /* Construct, lay out and return the type of offsets to a value
8287 of type TYPE, within an object of type BASETYPE.
8288 If a suitable offset type exists already, reuse it. */
8290 tree
8291 build_offset_type (tree basetype, tree type)
8293 tree t;
8294 hashval_t hashcode = 0;
8296 /* Make a node of the sort we want. */
8297 t = make_node (OFFSET_TYPE);
8299 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8300 TREE_TYPE (t) = type;
8302 /* If we already have such a type, use the old one. */
8303 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
8304 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
8305 t = type_hash_canon (hashcode, t);
8307 if (!COMPLETE_TYPE_P (t))
8308 layout_type (t);
8310 if (TYPE_CANONICAL (t) == t)
8312 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8313 || TYPE_STRUCTURAL_EQUALITY_P (type))
8314 SET_TYPE_STRUCTURAL_EQUALITY (t);
8315 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8316 || TYPE_CANONICAL (type) != type)
8317 TYPE_CANONICAL (t)
8318 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8319 TYPE_CANONICAL (type));
8322 return t;
8325 /* Create a complex type whose components are COMPONENT_TYPE. */
8327 tree
8328 build_complex_type (tree component_type)
8330 tree t;
8331 hashval_t hashcode;
8333 gcc_assert (INTEGRAL_TYPE_P (component_type)
8334 || SCALAR_FLOAT_TYPE_P (component_type)
8335 || FIXED_POINT_TYPE_P (component_type));
8337 /* Make a node of the sort we want. */
8338 t = make_node (COMPLEX_TYPE);
8340 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
8342 /* If we already have such a type, use the old one. */
8343 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
8344 t = type_hash_canon (hashcode, t);
8346 if (!COMPLETE_TYPE_P (t))
8347 layout_type (t);
8349 if (TYPE_CANONICAL (t) == t)
8351 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
8352 SET_TYPE_STRUCTURAL_EQUALITY (t);
8353 else if (TYPE_CANONICAL (component_type) != component_type)
8354 TYPE_CANONICAL (t)
8355 = build_complex_type (TYPE_CANONICAL (component_type));
8358 /* We need to create a name, since complex is a fundamental type. */
8359 if (! TYPE_NAME (t))
8361 const char *name;
8362 if (component_type == char_type_node)
8363 name = "complex char";
8364 else if (component_type == signed_char_type_node)
8365 name = "complex signed char";
8366 else if (component_type == unsigned_char_type_node)
8367 name = "complex unsigned char";
8368 else if (component_type == short_integer_type_node)
8369 name = "complex short int";
8370 else if (component_type == short_unsigned_type_node)
8371 name = "complex short unsigned int";
8372 else if (component_type == integer_type_node)
8373 name = "complex int";
8374 else if (component_type == unsigned_type_node)
8375 name = "complex unsigned int";
8376 else if (component_type == long_integer_type_node)
8377 name = "complex long int";
8378 else if (component_type == long_unsigned_type_node)
8379 name = "complex long unsigned int";
8380 else if (component_type == long_long_integer_type_node)
8381 name = "complex long long int";
8382 else if (component_type == long_long_unsigned_type_node)
8383 name = "complex long long unsigned int";
8384 else
8385 name = 0;
8387 if (name != 0)
8388 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8389 get_identifier (name), t);
8392 return build_qualified_type (t, TYPE_QUALS (component_type));
8395 /* If TYPE is a real or complex floating-point type and the target
8396 does not directly support arithmetic on TYPE then return the wider
8397 type to be used for arithmetic on TYPE. Otherwise, return
8398 NULL_TREE. */
8400 tree
8401 excess_precision_type (tree type)
8403 if (flag_excess_precision != EXCESS_PRECISION_FAST)
8405 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
8406 switch (TREE_CODE (type))
8408 case REAL_TYPE:
8409 switch (flt_eval_method)
8411 case 1:
8412 if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
8413 return double_type_node;
8414 break;
8415 case 2:
8416 if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
8417 || TYPE_MODE (type) == TYPE_MODE (double_type_node))
8418 return long_double_type_node;
8419 break;
8420 default:
8421 gcc_unreachable ();
8423 break;
8424 case COMPLEX_TYPE:
8425 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8426 return NULL_TREE;
8427 switch (flt_eval_method)
8429 case 1:
8430 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
8431 return complex_double_type_node;
8432 break;
8433 case 2:
8434 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
8435 || (TYPE_MODE (TREE_TYPE (type))
8436 == TYPE_MODE (double_type_node)))
8437 return complex_long_double_type_node;
8438 break;
8439 default:
8440 gcc_unreachable ();
8442 break;
8443 default:
8444 break;
8447 return NULL_TREE;
8450 /* Return OP, stripped of any conversions to wider types as much as is safe.
8451 Converting the value back to OP's type makes a value equivalent to OP.
8453 If FOR_TYPE is nonzero, we return a value which, if converted to
8454 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8456 OP must have integer, real or enumeral type. Pointers are not allowed!
8458 There are some cases where the obvious value we could return
8459 would regenerate to OP if converted to OP's type,
8460 but would not extend like OP to wider types.
8461 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8462 For example, if OP is (unsigned short)(signed char)-1,
8463 we avoid returning (signed char)-1 if FOR_TYPE is int,
8464 even though extending that to an unsigned short would regenerate OP,
8465 since the result of extending (signed char)-1 to (int)
8466 is different from (int) OP. */
8468 tree
8469 get_unwidened (tree op, tree for_type)
8471 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8472 tree type = TREE_TYPE (op);
8473 unsigned final_prec
8474 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8475 int uns
8476 = (for_type != 0 && for_type != type
8477 && final_prec > TYPE_PRECISION (type)
8478 && TYPE_UNSIGNED (type));
8479 tree win = op;
8481 while (CONVERT_EXPR_P (op))
8483 int bitschange;
8485 /* TYPE_PRECISION on vector types has different meaning
8486 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8487 so avoid them here. */
8488 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8489 break;
8491 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8492 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8494 /* Truncations are many-one so cannot be removed.
8495 Unless we are later going to truncate down even farther. */
8496 if (bitschange < 0
8497 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8498 break;
8500 /* See what's inside this conversion. If we decide to strip it,
8501 we will set WIN. */
8502 op = TREE_OPERAND (op, 0);
8504 /* If we have not stripped any zero-extensions (uns is 0),
8505 we can strip any kind of extension.
8506 If we have previously stripped a zero-extension,
8507 only zero-extensions can safely be stripped.
8508 Any extension can be stripped if the bits it would produce
8509 are all going to be discarded later by truncating to FOR_TYPE. */
8511 if (bitschange > 0)
8513 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8514 win = op;
8515 /* TYPE_UNSIGNED says whether this is a zero-extension.
8516 Let's avoid computing it if it does not affect WIN
8517 and if UNS will not be needed again. */
8518 if ((uns
8519 || CONVERT_EXPR_P (op))
8520 && TYPE_UNSIGNED (TREE_TYPE (op)))
8522 uns = 1;
8523 win = op;
8528 /* If we finally reach a constant see if it fits in for_type and
8529 in that case convert it. */
8530 if (for_type
8531 && TREE_CODE (win) == INTEGER_CST
8532 && TREE_TYPE (win) != for_type
8533 && int_fits_type_p (win, for_type))
8534 win = fold_convert (for_type, win);
8536 return win;
8539 /* Return OP or a simpler expression for a narrower value
8540 which can be sign-extended or zero-extended to give back OP.
8541 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8542 or 0 if the value should be sign-extended. */
8544 tree
8545 get_narrower (tree op, int *unsignedp_ptr)
8547 int uns = 0;
8548 int first = 1;
8549 tree win = op;
8550 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8552 while (TREE_CODE (op) == NOP_EXPR)
8554 int bitschange
8555 = (TYPE_PRECISION (TREE_TYPE (op))
8556 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8558 /* Truncations are many-one so cannot be removed. */
8559 if (bitschange < 0)
8560 break;
8562 /* See what's inside this conversion. If we decide to strip it,
8563 we will set WIN. */
8565 if (bitschange > 0)
8567 op = TREE_OPERAND (op, 0);
8568 /* An extension: the outermost one can be stripped,
8569 but remember whether it is zero or sign extension. */
8570 if (first)
8571 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8572 /* Otherwise, if a sign extension has been stripped,
8573 only sign extensions can now be stripped;
8574 if a zero extension has been stripped, only zero-extensions. */
8575 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8576 break;
8577 first = 0;
8579 else /* bitschange == 0 */
8581 /* A change in nominal type can always be stripped, but we must
8582 preserve the unsignedness. */
8583 if (first)
8584 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8585 first = 0;
8586 op = TREE_OPERAND (op, 0);
8587 /* Keep trying to narrow, but don't assign op to win if it
8588 would turn an integral type into something else. */
8589 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8590 continue;
8593 win = op;
8596 if (TREE_CODE (op) == COMPONENT_REF
8597 /* Since type_for_size always gives an integer type. */
8598 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8599 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8600 /* Ensure field is laid out already. */
8601 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8602 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8604 unsigned HOST_WIDE_INT innerprec
8605 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8606 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8607 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8608 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8610 /* We can get this structure field in a narrower type that fits it,
8611 but the resulting extension to its nominal type (a fullword type)
8612 must satisfy the same conditions as for other extensions.
8614 Do this only for fields that are aligned (not bit-fields),
8615 because when bit-field insns will be used there is no
8616 advantage in doing this. */
8618 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8619 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8620 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8621 && type != 0)
8623 if (first)
8624 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8625 win = fold_convert (type, op);
8629 *unsignedp_ptr = uns;
8630 return win;
8633 /* Returns true if integer constant C has a value that is permissible
8634 for type TYPE (an INTEGER_TYPE). */
8636 bool
8637 int_fits_type_p (const_tree c, const_tree type)
8639 tree type_low_bound, type_high_bound;
8640 bool ok_for_low_bound, ok_for_high_bound;
8641 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8643 retry:
8644 type_low_bound = TYPE_MIN_VALUE (type);
8645 type_high_bound = TYPE_MAX_VALUE (type);
8647 /* If at least one bound of the type is a constant integer, we can check
8648 ourselves and maybe make a decision. If no such decision is possible, but
8649 this type is a subtype, try checking against that. Otherwise, use
8650 fits_to_tree_p, which checks against the precision.
8652 Compute the status for each possibly constant bound, and return if we see
8653 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8654 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8655 for "constant known to fit". */
8657 /* Check if c >= type_low_bound. */
8658 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8660 if (tree_int_cst_lt (c, type_low_bound))
8661 return false;
8662 ok_for_low_bound = true;
8664 else
8665 ok_for_low_bound = false;
8667 /* Check if c <= type_high_bound. */
8668 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8670 if (tree_int_cst_lt (type_high_bound, c))
8671 return false;
8672 ok_for_high_bound = true;
8674 else
8675 ok_for_high_bound = false;
8677 /* If the constant fits both bounds, the result is known. */
8678 if (ok_for_low_bound && ok_for_high_bound)
8679 return true;
8681 /* Perform some generic filtering which may allow making a decision
8682 even if the bounds are not constant. First, negative integers
8683 never fit in unsigned types, */
8684 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (c))
8685 return false;
8687 /* Second, narrower types always fit in wider ones. */
8688 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8689 return true;
8691 /* Third, unsigned integers with top bit set never fit signed types. */
8692 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8694 int prec = GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (c))) - 1;
8695 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8697 /* When a tree_cst is converted to a wide-int, the precision
8698 is taken from the type. However, if the precision of the
8699 mode underneath the type is smaller than that, it is
8700 possible that the value will not fit. The test below
8701 fails if any bit is set between the sign bit of the
8702 underlying mode and the top bit of the type. */
8703 if (wi::ne_p (wi::zext (c, prec - 1), c))
8704 return false;
8706 else if (wi::neg_p (c))
8707 return false;
8710 /* If we haven't been able to decide at this point, there nothing more we
8711 can check ourselves here. Look at the base type if we have one and it
8712 has the same precision. */
8713 if (TREE_CODE (type) == INTEGER_TYPE
8714 && TREE_TYPE (type) != 0
8715 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8717 type = TREE_TYPE (type);
8718 goto retry;
8721 /* Or to fits_to_tree_p, if nothing else. */
8722 return wi::fits_to_tree_p (c, type);
8725 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8726 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8727 represented (assuming two's-complement arithmetic) within the bit
8728 precision of the type are returned instead. */
8730 void
8731 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8733 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8734 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8735 wi::to_mpz (TYPE_MIN_VALUE (type), min, TYPE_SIGN (type));
8736 else
8738 if (TYPE_UNSIGNED (type))
8739 mpz_set_ui (min, 0);
8740 else
8742 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8743 wi::to_mpz (mn, min, SIGNED);
8747 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8748 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8749 wi::to_mpz (TYPE_MAX_VALUE (type), max, TYPE_SIGN (type));
8750 else
8752 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8753 wi::to_mpz (mn, max, TYPE_SIGN (type));
8757 /* Return true if VAR is an automatic variable defined in function FN. */
8759 bool
8760 auto_var_in_fn_p (const_tree var, const_tree fn)
8762 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8763 && ((((TREE_CODE (var) == VAR_DECL && ! DECL_EXTERNAL (var))
8764 || TREE_CODE (var) == PARM_DECL)
8765 && ! TREE_STATIC (var))
8766 || TREE_CODE (var) == LABEL_DECL
8767 || TREE_CODE (var) == RESULT_DECL));
8770 /* Subprogram of following function. Called by walk_tree.
8772 Return *TP if it is an automatic variable or parameter of the
8773 function passed in as DATA. */
8775 static tree
8776 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8778 tree fn = (tree) data;
8780 if (TYPE_P (*tp))
8781 *walk_subtrees = 0;
8783 else if (DECL_P (*tp)
8784 && auto_var_in_fn_p (*tp, fn))
8785 return *tp;
8787 return NULL_TREE;
8790 /* Returns true if T is, contains, or refers to a type with variable
8791 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8792 arguments, but not the return type. If FN is nonzero, only return
8793 true if a modifier of the type or position of FN is a variable or
8794 parameter inside FN.
8796 This concept is more general than that of C99 'variably modified types':
8797 in C99, a struct type is never variably modified because a VLA may not
8798 appear as a structure member. However, in GNU C code like:
8800 struct S { int i[f()]; };
8802 is valid, and other languages may define similar constructs. */
8804 bool
8805 variably_modified_type_p (tree type, tree fn)
8807 tree t;
8809 /* Test if T is either variable (if FN is zero) or an expression containing
8810 a variable in FN. If TYPE isn't gimplified, return true also if
8811 gimplify_one_sizepos would gimplify the expression into a local
8812 variable. */
8813 #define RETURN_TRUE_IF_VAR(T) \
8814 do { tree _t = (T); \
8815 if (_t != NULL_TREE \
8816 && _t != error_mark_node \
8817 && TREE_CODE (_t) != INTEGER_CST \
8818 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8819 && (!fn \
8820 || (!TYPE_SIZES_GIMPLIFIED (type) \
8821 && !is_gimple_sizepos (_t)) \
8822 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8823 return true; } while (0)
8825 if (type == error_mark_node)
8826 return false;
8828 /* If TYPE itself has variable size, it is variably modified. */
8829 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8830 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8832 switch (TREE_CODE (type))
8834 case POINTER_TYPE:
8835 case REFERENCE_TYPE:
8836 case VECTOR_TYPE:
8837 if (variably_modified_type_p (TREE_TYPE (type), fn))
8838 return true;
8839 break;
8841 case FUNCTION_TYPE:
8842 case METHOD_TYPE:
8843 /* If TYPE is a function type, it is variably modified if the
8844 return type is variably modified. */
8845 if (variably_modified_type_p (TREE_TYPE (type), fn))
8846 return true;
8847 break;
8849 case INTEGER_TYPE:
8850 case REAL_TYPE:
8851 case FIXED_POINT_TYPE:
8852 case ENUMERAL_TYPE:
8853 case BOOLEAN_TYPE:
8854 /* Scalar types are variably modified if their end points
8855 aren't constant. */
8856 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8857 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8858 break;
8860 case RECORD_TYPE:
8861 case UNION_TYPE:
8862 case QUAL_UNION_TYPE:
8863 /* We can't see if any of the fields are variably-modified by the
8864 definition we normally use, since that would produce infinite
8865 recursion via pointers. */
8866 /* This is variably modified if some field's type is. */
8867 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8868 if (TREE_CODE (t) == FIELD_DECL)
8870 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8871 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8872 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8874 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8875 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8877 break;
8879 case ARRAY_TYPE:
8880 /* Do not call ourselves to avoid infinite recursion. This is
8881 variably modified if the element type is. */
8882 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8883 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8884 break;
8886 default:
8887 break;
8890 /* The current language may have other cases to check, but in general,
8891 all other types are not variably modified. */
8892 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8894 #undef RETURN_TRUE_IF_VAR
8897 /* Given a DECL or TYPE, return the scope in which it was declared, or
8898 NULL_TREE if there is no containing scope. */
8900 tree
8901 get_containing_scope (const_tree t)
8903 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8906 /* Return the innermost context enclosing DECL that is
8907 a FUNCTION_DECL, or zero if none. */
8909 tree
8910 decl_function_context (const_tree decl)
8912 tree context;
8914 if (TREE_CODE (decl) == ERROR_MARK)
8915 return 0;
8917 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8918 where we look up the function at runtime. Such functions always take
8919 a first argument of type 'pointer to real context'.
8921 C++ should really be fixed to use DECL_CONTEXT for the real context,
8922 and use something else for the "virtual context". */
8923 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8924 context
8925 = TYPE_MAIN_VARIANT
8926 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8927 else
8928 context = DECL_CONTEXT (decl);
8930 while (context && TREE_CODE (context) != FUNCTION_DECL)
8932 if (TREE_CODE (context) == BLOCK)
8933 context = BLOCK_SUPERCONTEXT (context);
8934 else
8935 context = get_containing_scope (context);
8938 return context;
8941 /* Return the innermost context enclosing DECL that is
8942 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8943 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8945 tree
8946 decl_type_context (const_tree decl)
8948 tree context = DECL_CONTEXT (decl);
8950 while (context)
8951 switch (TREE_CODE (context))
8953 case NAMESPACE_DECL:
8954 case TRANSLATION_UNIT_DECL:
8955 return NULL_TREE;
8957 case RECORD_TYPE:
8958 case UNION_TYPE:
8959 case QUAL_UNION_TYPE:
8960 return context;
8962 case TYPE_DECL:
8963 case FUNCTION_DECL:
8964 context = DECL_CONTEXT (context);
8965 break;
8967 case BLOCK:
8968 context = BLOCK_SUPERCONTEXT (context);
8969 break;
8971 default:
8972 gcc_unreachable ();
8975 return NULL_TREE;
8978 /* CALL is a CALL_EXPR. Return the declaration for the function
8979 called, or NULL_TREE if the called function cannot be
8980 determined. */
8982 tree
8983 get_callee_fndecl (const_tree call)
8985 tree addr;
8987 if (call == error_mark_node)
8988 return error_mark_node;
8990 /* It's invalid to call this function with anything but a
8991 CALL_EXPR. */
8992 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8994 /* The first operand to the CALL is the address of the function
8995 called. */
8996 addr = CALL_EXPR_FN (call);
8998 STRIP_NOPS (addr);
9000 /* If this is a readonly function pointer, extract its initial value. */
9001 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9002 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9003 && DECL_INITIAL (addr))
9004 addr = DECL_INITIAL (addr);
9006 /* If the address is just `&f' for some function `f', then we know
9007 that `f' is being called. */
9008 if (TREE_CODE (addr) == ADDR_EXPR
9009 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9010 return TREE_OPERAND (addr, 0);
9012 /* We couldn't figure out what was being called. */
9013 return NULL_TREE;
9016 /* Print debugging information about tree nodes generated during the compile,
9017 and any language-specific information. */
9019 void
9020 dump_tree_statistics (void)
9022 if (GATHER_STATISTICS)
9024 int i;
9025 int total_nodes, total_bytes;
9026 fprintf (stderr, "Kind Nodes Bytes\n");
9027 fprintf (stderr, "---------------------------------------\n");
9028 total_nodes = total_bytes = 0;
9029 for (i = 0; i < (int) all_kinds; i++)
9031 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
9032 tree_node_counts[i], tree_node_sizes[i]);
9033 total_nodes += tree_node_counts[i];
9034 total_bytes += tree_node_sizes[i];
9036 fprintf (stderr, "---------------------------------------\n");
9037 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
9038 fprintf (stderr, "---------------------------------------\n");
9039 fprintf (stderr, "Code Nodes\n");
9040 fprintf (stderr, "----------------------------\n");
9041 for (i = 0; i < (int) MAX_TREE_CODES; i++)
9042 fprintf (stderr, "%-20s %7d\n", get_tree_code_name ((enum tree_code) i),
9043 tree_code_counts[i]);
9044 fprintf (stderr, "----------------------------\n");
9045 ssanames_print_statistics ();
9046 phinodes_print_statistics ();
9048 else
9049 fprintf (stderr, "(No per-node statistics)\n");
9051 print_type_hash_statistics ();
9052 print_debug_expr_statistics ();
9053 print_value_expr_statistics ();
9054 lang_hooks.print_statistics ();
9057 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9059 /* Generate a crc32 of a byte. */
9061 static unsigned
9062 crc32_unsigned_bits (unsigned chksum, unsigned value, unsigned bits)
9064 unsigned ix;
9066 for (ix = bits; ix--; value <<= 1)
9068 unsigned feedback;
9070 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
9071 chksum <<= 1;
9072 chksum ^= feedback;
9074 return chksum;
9077 /* Generate a crc32 of a 32-bit unsigned. */
9079 unsigned
9080 crc32_unsigned (unsigned chksum, unsigned value)
9082 return crc32_unsigned_bits (chksum, value, 32);
9085 /* Generate a crc32 of a byte. */
9087 unsigned
9088 crc32_byte (unsigned chksum, char byte)
9090 return crc32_unsigned_bits (chksum, (unsigned) byte << 24, 8);
9093 /* Generate a crc32 of a string. */
9095 unsigned
9096 crc32_string (unsigned chksum, const char *string)
9100 chksum = crc32_byte (chksum, *string);
9102 while (*string++);
9103 return chksum;
9106 /* P is a string that will be used in a symbol. Mask out any characters
9107 that are not valid in that context. */
9109 void
9110 clean_symbol_name (char *p)
9112 for (; *p; p++)
9113 if (! (ISALNUM (*p)
9114 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9115 || *p == '$'
9116 #endif
9117 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9118 || *p == '.'
9119 #endif
9121 *p = '_';
9124 /* Generate a name for a special-purpose function.
9125 The generated name may need to be unique across the whole link.
9126 Changes to this function may also require corresponding changes to
9127 xstrdup_mask_random.
9128 TYPE is some string to identify the purpose of this function to the
9129 linker or collect2; it must start with an uppercase letter,
9130 one of:
9131 I - for constructors
9132 D - for destructors
9133 N - for C++ anonymous namespaces
9134 F - for DWARF unwind frame information. */
9136 tree
9137 get_file_function_name (const char *type)
9139 char *buf;
9140 const char *p;
9141 char *q;
9143 /* If we already have a name we know to be unique, just use that. */
9144 if (first_global_object_name)
9145 p = q = ASTRDUP (first_global_object_name);
9146 /* If the target is handling the constructors/destructors, they
9147 will be local to this file and the name is only necessary for
9148 debugging purposes.
9149 We also assign sub_I and sub_D sufixes to constructors called from
9150 the global static constructors. These are always local. */
9151 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9152 || (strncmp (type, "sub_", 4) == 0
9153 && (type[4] == 'I' || type[4] == 'D')))
9155 const char *file = main_input_filename;
9156 if (! file)
9157 file = LOCATION_FILE (input_location);
9158 /* Just use the file's basename, because the full pathname
9159 might be quite long. */
9160 p = q = ASTRDUP (lbasename (file));
9162 else
9164 /* Otherwise, the name must be unique across the entire link.
9165 We don't have anything that we know to be unique to this translation
9166 unit, so use what we do have and throw in some randomness. */
9167 unsigned len;
9168 const char *name = weak_global_object_name;
9169 const char *file = main_input_filename;
9171 if (! name)
9172 name = "";
9173 if (! file)
9174 file = LOCATION_FILE (input_location);
9176 len = strlen (file);
9177 q = (char *) alloca (9 + 17 + len + 1);
9178 memcpy (q, file, len + 1);
9180 snprintf (q + len, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9181 crc32_string (0, name), get_random_seed (false));
9183 p = q;
9186 clean_symbol_name (q);
9187 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9188 + strlen (type));
9190 /* Set up the name of the file-level functions we may need.
9191 Use a global object (which is already required to be unique over
9192 the program) rather than the file name (which imposes extra
9193 constraints). */
9194 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9196 return get_identifier (buf);
9199 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9201 /* Complain that the tree code of NODE does not match the expected 0
9202 terminated list of trailing codes. The trailing code list can be
9203 empty, for a more vague error message. FILE, LINE, and FUNCTION
9204 are of the caller. */
9206 void
9207 tree_check_failed (const_tree node, const char *file,
9208 int line, const char *function, ...)
9210 va_list args;
9211 const char *buffer;
9212 unsigned length = 0;
9213 enum tree_code code;
9215 va_start (args, function);
9216 while ((code = (enum tree_code) va_arg (args, int)))
9217 length += 4 + strlen (get_tree_code_name (code));
9218 va_end (args);
9219 if (length)
9221 char *tmp;
9222 va_start (args, function);
9223 length += strlen ("expected ");
9224 buffer = tmp = (char *) alloca (length);
9225 length = 0;
9226 while ((code = (enum tree_code) va_arg (args, int)))
9228 const char *prefix = length ? " or " : "expected ";
9230 strcpy (tmp + length, prefix);
9231 length += strlen (prefix);
9232 strcpy (tmp + length, get_tree_code_name (code));
9233 length += strlen (get_tree_code_name (code));
9235 va_end (args);
9237 else
9238 buffer = "unexpected node";
9240 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9241 buffer, get_tree_code_name (TREE_CODE (node)),
9242 function, trim_filename (file), line);
9245 /* Complain that the tree code of NODE does match the expected 0
9246 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9247 the caller. */
9249 void
9250 tree_not_check_failed (const_tree node, const char *file,
9251 int line, const char *function, ...)
9253 va_list args;
9254 char *buffer;
9255 unsigned length = 0;
9256 enum tree_code code;
9258 va_start (args, function);
9259 while ((code = (enum tree_code) va_arg (args, int)))
9260 length += 4 + strlen (get_tree_code_name (code));
9261 va_end (args);
9262 va_start (args, function);
9263 buffer = (char *) alloca (length);
9264 length = 0;
9265 while ((code = (enum tree_code) va_arg (args, int)))
9267 if (length)
9269 strcpy (buffer + length, " or ");
9270 length += 4;
9272 strcpy (buffer + length, get_tree_code_name (code));
9273 length += strlen (get_tree_code_name (code));
9275 va_end (args);
9277 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9278 buffer, get_tree_code_name (TREE_CODE (node)),
9279 function, trim_filename (file), line);
9282 /* Similar to tree_check_failed, except that we check for a class of tree
9283 code, given in CL. */
9285 void
9286 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9287 const char *file, int line, const char *function)
9289 internal_error
9290 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9291 TREE_CODE_CLASS_STRING (cl),
9292 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9293 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9296 /* Similar to tree_check_failed, except that instead of specifying a
9297 dozen codes, use the knowledge that they're all sequential. */
9299 void
9300 tree_range_check_failed (const_tree node, const char *file, int line,
9301 const char *function, enum tree_code c1,
9302 enum tree_code c2)
9304 char *buffer;
9305 unsigned length = 0;
9306 unsigned int c;
9308 for (c = c1; c <= c2; ++c)
9309 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9311 length += strlen ("expected ");
9312 buffer = (char *) alloca (length);
9313 length = 0;
9315 for (c = c1; c <= c2; ++c)
9317 const char *prefix = length ? " or " : "expected ";
9319 strcpy (buffer + length, prefix);
9320 length += strlen (prefix);
9321 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9322 length += strlen (get_tree_code_name ((enum tree_code) c));
9325 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9326 buffer, get_tree_code_name (TREE_CODE (node)),
9327 function, trim_filename (file), line);
9331 /* Similar to tree_check_failed, except that we check that a tree does
9332 not have the specified code, given in CL. */
9334 void
9335 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9336 const char *file, int line, const char *function)
9338 internal_error
9339 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9340 TREE_CODE_CLASS_STRING (cl),
9341 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9342 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9346 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9348 void
9349 omp_clause_check_failed (const_tree node, const char *file, int line,
9350 const char *function, enum omp_clause_code code)
9352 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9353 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9354 function, trim_filename (file), line);
9358 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9360 void
9361 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9362 const char *function, enum omp_clause_code c1,
9363 enum omp_clause_code c2)
9365 char *buffer;
9366 unsigned length = 0;
9367 unsigned int c;
9369 for (c = c1; c <= c2; ++c)
9370 length += 4 + strlen (omp_clause_code_name[c]);
9372 length += strlen ("expected ");
9373 buffer = (char *) alloca (length);
9374 length = 0;
9376 for (c = c1; c <= c2; ++c)
9378 const char *prefix = length ? " or " : "expected ";
9380 strcpy (buffer + length, prefix);
9381 length += strlen (prefix);
9382 strcpy (buffer + length, omp_clause_code_name[c]);
9383 length += strlen (omp_clause_code_name[c]);
9386 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9387 buffer, omp_clause_code_name[TREE_CODE (node)],
9388 function, trim_filename (file), line);
9392 #undef DEFTREESTRUCT
9393 #define DEFTREESTRUCT(VAL, NAME) NAME,
9395 static const char *ts_enum_names[] = {
9396 #include "treestruct.def"
9398 #undef DEFTREESTRUCT
9400 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9402 /* Similar to tree_class_check_failed, except that we check for
9403 whether CODE contains the tree structure identified by EN. */
9405 void
9406 tree_contains_struct_check_failed (const_tree node,
9407 const enum tree_node_structure_enum en,
9408 const char *file, int line,
9409 const char *function)
9411 internal_error
9412 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9413 TS_ENUM_NAME (en),
9414 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9418 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9419 (dynamically sized) vector. */
9421 void
9422 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9423 const char *function)
9425 internal_error
9426 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9427 idx + 1, len, function, trim_filename (file), line);
9430 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9431 (dynamically sized) vector. */
9433 void
9434 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9435 const char *function)
9437 internal_error
9438 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9439 idx + 1, len, function, trim_filename (file), line);
9442 /* Similar to above, except that the check is for the bounds of the operand
9443 vector of an expression node EXP. */
9445 void
9446 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9447 int line, const char *function)
9449 enum tree_code code = TREE_CODE (exp);
9450 internal_error
9451 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9452 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9453 function, trim_filename (file), line);
9456 /* Similar to above, except that the check is for the number of
9457 operands of an OMP_CLAUSE node. */
9459 void
9460 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9461 int line, const char *function)
9463 internal_error
9464 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9465 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9466 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9467 trim_filename (file), line);
9469 #endif /* ENABLE_TREE_CHECKING */
9471 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9472 and mapped to the machine mode MODE. Initialize its fields and build
9473 the information necessary for debugging output. */
9475 static tree
9476 make_vector_type (tree innertype, int nunits, enum machine_mode mode)
9478 tree t;
9479 hashval_t hashcode = 0;
9481 t = make_node (VECTOR_TYPE);
9482 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
9483 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9484 SET_TYPE_MODE (t, mode);
9486 if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
9487 SET_TYPE_STRUCTURAL_EQUALITY (t);
9488 else if (TYPE_CANONICAL (innertype) != innertype
9489 || mode != VOIDmode)
9490 TYPE_CANONICAL (t)
9491 = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
9493 layout_type (t);
9495 hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode);
9496 hashcode = iterative_hash_host_wide_int (nunits, hashcode);
9497 hashcode = iterative_hash_host_wide_int (mode, hashcode);
9498 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (t)), hashcode);
9499 t = type_hash_canon (hashcode, t);
9501 /* We have built a main variant, based on the main variant of the
9502 inner type. Use it to build the variant we return. */
9503 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9504 && TREE_TYPE (t) != innertype)
9505 return build_type_attribute_qual_variant (t,
9506 TYPE_ATTRIBUTES (innertype),
9507 TYPE_QUALS (innertype));
9509 return t;
9512 static tree
9513 make_or_reuse_type (unsigned size, int unsignedp)
9515 if (size == INT_TYPE_SIZE)
9516 return unsignedp ? unsigned_type_node : integer_type_node;
9517 if (size == CHAR_TYPE_SIZE)
9518 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9519 if (size == SHORT_TYPE_SIZE)
9520 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9521 if (size == LONG_TYPE_SIZE)
9522 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9523 if (size == LONG_LONG_TYPE_SIZE)
9524 return (unsignedp ? long_long_unsigned_type_node
9525 : long_long_integer_type_node);
9526 if (size == 128 && int128_integer_type_node)
9527 return (unsignedp ? int128_unsigned_type_node
9528 : int128_integer_type_node);
9530 if (unsignedp)
9531 return make_unsigned_type (size);
9532 else
9533 return make_signed_type (size);
9536 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9538 static tree
9539 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9541 if (satp)
9543 if (size == SHORT_FRACT_TYPE_SIZE)
9544 return unsignedp ? sat_unsigned_short_fract_type_node
9545 : sat_short_fract_type_node;
9546 if (size == FRACT_TYPE_SIZE)
9547 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9548 if (size == LONG_FRACT_TYPE_SIZE)
9549 return unsignedp ? sat_unsigned_long_fract_type_node
9550 : sat_long_fract_type_node;
9551 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9552 return unsignedp ? sat_unsigned_long_long_fract_type_node
9553 : sat_long_long_fract_type_node;
9555 else
9557 if (size == SHORT_FRACT_TYPE_SIZE)
9558 return unsignedp ? unsigned_short_fract_type_node
9559 : short_fract_type_node;
9560 if (size == FRACT_TYPE_SIZE)
9561 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9562 if (size == LONG_FRACT_TYPE_SIZE)
9563 return unsignedp ? unsigned_long_fract_type_node
9564 : long_fract_type_node;
9565 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9566 return unsignedp ? unsigned_long_long_fract_type_node
9567 : long_long_fract_type_node;
9570 return make_fract_type (size, unsignedp, satp);
9573 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9575 static tree
9576 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9578 if (satp)
9580 if (size == SHORT_ACCUM_TYPE_SIZE)
9581 return unsignedp ? sat_unsigned_short_accum_type_node
9582 : sat_short_accum_type_node;
9583 if (size == ACCUM_TYPE_SIZE)
9584 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9585 if (size == LONG_ACCUM_TYPE_SIZE)
9586 return unsignedp ? sat_unsigned_long_accum_type_node
9587 : sat_long_accum_type_node;
9588 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9589 return unsignedp ? sat_unsigned_long_long_accum_type_node
9590 : sat_long_long_accum_type_node;
9592 else
9594 if (size == SHORT_ACCUM_TYPE_SIZE)
9595 return unsignedp ? unsigned_short_accum_type_node
9596 : short_accum_type_node;
9597 if (size == ACCUM_TYPE_SIZE)
9598 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9599 if (size == LONG_ACCUM_TYPE_SIZE)
9600 return unsignedp ? unsigned_long_accum_type_node
9601 : long_accum_type_node;
9602 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9603 return unsignedp ? unsigned_long_long_accum_type_node
9604 : long_long_accum_type_node;
9607 return make_accum_type (size, unsignedp, satp);
9611 /* Create an atomic variant node for TYPE. This routine is called
9612 during initialization of data types to create the 5 basic atomic
9613 types. The generic build_variant_type function requires these to
9614 already be set up in order to function properly, so cannot be
9615 called from there. If ALIGN is non-zero, then ensure alignment is
9616 overridden to this value. */
9618 static tree
9619 build_atomic_base (tree type, unsigned int align)
9621 tree t;
9623 /* Make sure its not already registered. */
9624 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9625 return t;
9627 t = build_variant_type_copy (type);
9628 set_type_quals (t, TYPE_QUAL_ATOMIC);
9630 if (align)
9631 TYPE_ALIGN (t) = align;
9633 return t;
9636 /* Create nodes for all integer types (and error_mark_node) using the sizes
9637 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9638 SHORT_DOUBLE specifies whether double should be of the same precision
9639 as float. */
9641 void
9642 build_common_tree_nodes (bool signed_char, bool short_double)
9644 error_mark_node = make_node (ERROR_MARK);
9645 TREE_TYPE (error_mark_node) = error_mark_node;
9647 initialize_sizetypes ();
9649 /* Define both `signed char' and `unsigned char'. */
9650 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9651 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9652 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9653 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9655 /* Define `char', which is like either `signed char' or `unsigned char'
9656 but not the same as either. */
9657 char_type_node
9658 = (signed_char
9659 ? make_signed_type (CHAR_TYPE_SIZE)
9660 : make_unsigned_type (CHAR_TYPE_SIZE));
9661 TYPE_STRING_FLAG (char_type_node) = 1;
9663 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9664 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9665 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9666 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9667 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9668 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9669 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9670 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9671 #if HOST_BITS_PER_WIDE_INT >= 64
9672 /* TODO: This isn't correct, but as logic depends at the moment on
9673 host's instead of target's wide-integer.
9674 If there is a target not supporting TImode, but has an 128-bit
9675 integer-scalar register, this target check needs to be adjusted. */
9676 if (targetm.scalar_mode_supported_p (TImode))
9678 int128_integer_type_node = make_signed_type (128);
9679 int128_unsigned_type_node = make_unsigned_type (128);
9681 #endif
9683 /* Define a boolean type. This type only represents boolean values but
9684 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9685 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9686 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9687 TYPE_PRECISION (boolean_type_node) = 1;
9688 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9690 /* Define what type to use for size_t. */
9691 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9692 size_type_node = unsigned_type_node;
9693 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9694 size_type_node = long_unsigned_type_node;
9695 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9696 size_type_node = long_long_unsigned_type_node;
9697 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9698 size_type_node = short_unsigned_type_node;
9699 else
9700 gcc_unreachable ();
9702 /* Fill in the rest of the sized types. Reuse existing type nodes
9703 when possible. */
9704 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9705 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9706 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9707 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9708 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9710 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9711 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9712 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9713 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9714 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9716 /* Don't call build_qualified type for atomics. That routine does
9717 special processing for atomics, and until they are initialized
9718 it's better not to make that call.
9720 Check to see if there is a target override for atomic types. */
9722 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9723 targetm.atomic_align_for_mode (QImode));
9724 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9725 targetm.atomic_align_for_mode (HImode));
9726 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9727 targetm.atomic_align_for_mode (SImode));
9728 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9729 targetm.atomic_align_for_mode (DImode));
9730 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9731 targetm.atomic_align_for_mode (TImode));
9733 access_public_node = get_identifier ("public");
9734 access_protected_node = get_identifier ("protected");
9735 access_private_node = get_identifier ("private");
9737 /* Define these next since types below may used them. */
9738 integer_zero_node = build_int_cst (integer_type_node, 0);
9739 integer_one_node = build_int_cst (integer_type_node, 1);
9740 integer_three_node = build_int_cst (integer_type_node, 3);
9741 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9743 size_zero_node = size_int (0);
9744 size_one_node = size_int (1);
9745 bitsize_zero_node = bitsize_int (0);
9746 bitsize_one_node = bitsize_int (1);
9747 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9749 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9750 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9752 void_type_node = make_node (VOID_TYPE);
9753 layout_type (void_type_node);
9755 /* We are not going to have real types in C with less than byte alignment,
9756 so we might as well not have any types that claim to have it. */
9757 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
9758 TYPE_USER_ALIGN (void_type_node) = 0;
9760 void_node = make_node (VOID_CST);
9761 TREE_TYPE (void_node) = void_type_node;
9763 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9764 layout_type (TREE_TYPE (null_pointer_node));
9766 ptr_type_node = build_pointer_type (void_type_node);
9767 const_ptr_type_node
9768 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9769 fileptr_type_node = ptr_type_node;
9771 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9773 float_type_node = make_node (REAL_TYPE);
9774 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9775 layout_type (float_type_node);
9777 double_type_node = make_node (REAL_TYPE);
9778 if (short_double)
9779 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
9780 else
9781 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9782 layout_type (double_type_node);
9784 long_double_type_node = make_node (REAL_TYPE);
9785 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9786 layout_type (long_double_type_node);
9788 float_ptr_type_node = build_pointer_type (float_type_node);
9789 double_ptr_type_node = build_pointer_type (double_type_node);
9790 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9791 integer_ptr_type_node = build_pointer_type (integer_type_node);
9793 /* Fixed size integer types. */
9794 uint16_type_node = build_nonstandard_integer_type (16, true);
9795 uint32_type_node = build_nonstandard_integer_type (32, true);
9796 uint64_type_node = build_nonstandard_integer_type (64, true);
9798 /* Decimal float types. */
9799 dfloat32_type_node = make_node (REAL_TYPE);
9800 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9801 layout_type (dfloat32_type_node);
9802 SET_TYPE_MODE (dfloat32_type_node, SDmode);
9803 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9805 dfloat64_type_node = make_node (REAL_TYPE);
9806 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9807 layout_type (dfloat64_type_node);
9808 SET_TYPE_MODE (dfloat64_type_node, DDmode);
9809 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9811 dfloat128_type_node = make_node (REAL_TYPE);
9812 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9813 layout_type (dfloat128_type_node);
9814 SET_TYPE_MODE (dfloat128_type_node, TDmode);
9815 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
9817 complex_integer_type_node = build_complex_type (integer_type_node);
9818 complex_float_type_node = build_complex_type (float_type_node);
9819 complex_double_type_node = build_complex_type (double_type_node);
9820 complex_long_double_type_node = build_complex_type (long_double_type_node);
9822 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9823 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9824 sat_ ## KIND ## _type_node = \
9825 make_sat_signed_ ## KIND ## _type (SIZE); \
9826 sat_unsigned_ ## KIND ## _type_node = \
9827 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9828 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9829 unsigned_ ## KIND ## _type_node = \
9830 make_unsigned_ ## KIND ## _type (SIZE);
9832 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9833 sat_ ## WIDTH ## KIND ## _type_node = \
9834 make_sat_signed_ ## KIND ## _type (SIZE); \
9835 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9836 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9837 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9838 unsigned_ ## WIDTH ## KIND ## _type_node = \
9839 make_unsigned_ ## KIND ## _type (SIZE);
9841 /* Make fixed-point type nodes based on four different widths. */
9842 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9843 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9844 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9845 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9846 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9848 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9849 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9850 NAME ## _type_node = \
9851 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9852 u ## NAME ## _type_node = \
9853 make_or_reuse_unsigned_ ## KIND ## _type \
9854 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9855 sat_ ## NAME ## _type_node = \
9856 make_or_reuse_sat_signed_ ## KIND ## _type \
9857 (GET_MODE_BITSIZE (MODE ## mode)); \
9858 sat_u ## NAME ## _type_node = \
9859 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9860 (GET_MODE_BITSIZE (U ## MODE ## mode));
9862 /* Fixed-point type and mode nodes. */
9863 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
9864 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
9865 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
9866 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
9867 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
9868 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
9869 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
9870 MAKE_FIXED_MODE_NODE (accum, ha, HA)
9871 MAKE_FIXED_MODE_NODE (accum, sa, SA)
9872 MAKE_FIXED_MODE_NODE (accum, da, DA)
9873 MAKE_FIXED_MODE_NODE (accum, ta, TA)
9876 tree t = targetm.build_builtin_va_list ();
9878 /* Many back-ends define record types without setting TYPE_NAME.
9879 If we copied the record type here, we'd keep the original
9880 record type without a name. This breaks name mangling. So,
9881 don't copy record types and let c_common_nodes_and_builtins()
9882 declare the type to be __builtin_va_list. */
9883 if (TREE_CODE (t) != RECORD_TYPE)
9884 t = build_variant_type_copy (t);
9886 va_list_type_node = t;
9890 /* Modify DECL for given flags.
9891 TM_PURE attribute is set only on types, so the function will modify
9892 DECL's type when ECF_TM_PURE is used. */
9894 void
9895 set_call_expr_flags (tree decl, int flags)
9897 if (flags & ECF_NOTHROW)
9898 TREE_NOTHROW (decl) = 1;
9899 if (flags & ECF_CONST)
9900 TREE_READONLY (decl) = 1;
9901 if (flags & ECF_PURE)
9902 DECL_PURE_P (decl) = 1;
9903 if (flags & ECF_LOOPING_CONST_OR_PURE)
9904 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
9905 if (flags & ECF_NOVOPS)
9906 DECL_IS_NOVOPS (decl) = 1;
9907 if (flags & ECF_NORETURN)
9908 TREE_THIS_VOLATILE (decl) = 1;
9909 if (flags & ECF_MALLOC)
9910 DECL_IS_MALLOC (decl) = 1;
9911 if (flags & ECF_RETURNS_TWICE)
9912 DECL_IS_RETURNS_TWICE (decl) = 1;
9913 if (flags & ECF_LEAF)
9914 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
9915 NULL, DECL_ATTRIBUTES (decl));
9916 if ((flags & ECF_TM_PURE) && flag_tm)
9917 apply_tm_attr (decl, get_identifier ("transaction_pure"));
9918 /* Looping const or pure is implied by noreturn.
9919 There is currently no way to declare looping const or looping pure alone. */
9920 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
9921 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
9925 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9927 static void
9928 local_define_builtin (const char *name, tree type, enum built_in_function code,
9929 const char *library_name, int ecf_flags)
9931 tree decl;
9933 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
9934 library_name, NULL_TREE);
9935 set_call_expr_flags (decl, ecf_flags);
9937 set_builtin_decl (code, decl, true);
9940 /* Call this function after instantiating all builtins that the language
9941 front end cares about. This will build the rest of the builtins that
9942 are relied upon by the tree optimizers and the middle-end. */
9944 void
9945 build_common_builtin_nodes (void)
9947 tree tmp, ftype;
9948 int ecf_flags;
9950 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
9952 ftype = build_function_type (void_type_node, void_list_node);
9953 local_define_builtin ("__builtin_unreachable", ftype, BUILT_IN_UNREACHABLE,
9954 "__builtin_unreachable",
9955 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
9956 | ECF_CONST | ECF_LEAF);
9959 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
9960 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9962 ftype = build_function_type_list (ptr_type_node,
9963 ptr_type_node, const_ptr_type_node,
9964 size_type_node, NULL_TREE);
9966 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
9967 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
9968 "memcpy", ECF_NOTHROW | ECF_LEAF);
9969 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9970 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
9971 "memmove", ECF_NOTHROW | ECF_LEAF);
9974 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
9976 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
9977 const_ptr_type_node, size_type_node,
9978 NULL_TREE);
9979 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
9980 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
9983 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
9985 ftype = build_function_type_list (ptr_type_node,
9986 ptr_type_node, integer_type_node,
9987 size_type_node, NULL_TREE);
9988 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
9989 "memset", ECF_NOTHROW | ECF_LEAF);
9992 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
9994 ftype = build_function_type_list (ptr_type_node,
9995 size_type_node, NULL_TREE);
9996 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
9997 "alloca", ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
10000 ftype = build_function_type_list (ptr_type_node, size_type_node,
10001 size_type_node, NULL_TREE);
10002 local_define_builtin ("__builtin_alloca_with_align", ftype,
10003 BUILT_IN_ALLOCA_WITH_ALIGN, "alloca",
10004 ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
10006 /* If we're checking the stack, `alloca' can throw. */
10007 if (flag_stack_check)
10009 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA)) = 0;
10010 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN)) = 0;
10013 ftype = build_function_type_list (void_type_node,
10014 ptr_type_node, ptr_type_node,
10015 ptr_type_node, NULL_TREE);
10016 local_define_builtin ("__builtin_init_trampoline", ftype,
10017 BUILT_IN_INIT_TRAMPOLINE,
10018 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10019 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10020 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10021 "__builtin_init_heap_trampoline",
10022 ECF_NOTHROW | ECF_LEAF);
10024 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10025 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10026 BUILT_IN_ADJUST_TRAMPOLINE,
10027 "__builtin_adjust_trampoline",
10028 ECF_CONST | ECF_NOTHROW);
10030 ftype = build_function_type_list (void_type_node,
10031 ptr_type_node, ptr_type_node, NULL_TREE);
10032 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10033 BUILT_IN_NONLOCAL_GOTO,
10034 "__builtin_nonlocal_goto",
10035 ECF_NORETURN | ECF_NOTHROW);
10037 ftype = build_function_type_list (void_type_node,
10038 ptr_type_node, ptr_type_node, NULL_TREE);
10039 local_define_builtin ("__builtin_setjmp_setup", ftype,
10040 BUILT_IN_SETJMP_SETUP,
10041 "__builtin_setjmp_setup", ECF_NOTHROW);
10043 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10044 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10045 BUILT_IN_SETJMP_RECEIVER,
10046 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10048 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10049 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10050 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10052 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10053 local_define_builtin ("__builtin_stack_restore", ftype,
10054 BUILT_IN_STACK_RESTORE,
10055 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10057 /* If there's a possibility that we might use the ARM EABI, build the
10058 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
10059 if (targetm.arm_eabi_unwinder)
10061 ftype = build_function_type_list (void_type_node, NULL_TREE);
10062 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10063 BUILT_IN_CXA_END_CLEANUP,
10064 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10067 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10068 local_define_builtin ("__builtin_unwind_resume", ftype,
10069 BUILT_IN_UNWIND_RESUME,
10070 ((targetm_common.except_unwind_info (&global_options)
10071 == UI_SJLJ)
10072 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10073 ECF_NORETURN);
10075 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10077 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10078 NULL_TREE);
10079 local_define_builtin ("__builtin_return_address", ftype,
10080 BUILT_IN_RETURN_ADDRESS,
10081 "__builtin_return_address",
10082 ECF_NOTHROW);
10085 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10086 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10088 ftype = build_function_type_list (void_type_node, ptr_type_node,
10089 ptr_type_node, NULL_TREE);
10090 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10091 local_define_builtin ("__cyg_profile_func_enter", ftype,
10092 BUILT_IN_PROFILE_FUNC_ENTER,
10093 "__cyg_profile_func_enter", 0);
10094 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10095 local_define_builtin ("__cyg_profile_func_exit", ftype,
10096 BUILT_IN_PROFILE_FUNC_EXIT,
10097 "__cyg_profile_func_exit", 0);
10100 /* The exception object and filter values from the runtime. The argument
10101 must be zero before exception lowering, i.e. from the front end. After
10102 exception lowering, it will be the region number for the exception
10103 landing pad. These functions are PURE instead of CONST to prevent
10104 them from being hoisted past the exception edge that will initialize
10105 its value in the landing pad. */
10106 ftype = build_function_type_list (ptr_type_node,
10107 integer_type_node, NULL_TREE);
10108 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10109 /* Only use TM_PURE if we we have TM language support. */
10110 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10111 ecf_flags |= ECF_TM_PURE;
10112 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10113 "__builtin_eh_pointer", ecf_flags);
10115 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10116 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10117 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10118 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10120 ftype = build_function_type_list (void_type_node,
10121 integer_type_node, integer_type_node,
10122 NULL_TREE);
10123 local_define_builtin ("__builtin_eh_copy_values", ftype,
10124 BUILT_IN_EH_COPY_VALUES,
10125 "__builtin_eh_copy_values", ECF_NOTHROW);
10127 /* Complex multiplication and division. These are handled as builtins
10128 rather than optabs because emit_library_call_value doesn't support
10129 complex. Further, we can do slightly better with folding these
10130 beasties if the real and complex parts of the arguments are separate. */
10132 int mode;
10134 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10136 char mode_name_buf[4], *q;
10137 const char *p;
10138 enum built_in_function mcode, dcode;
10139 tree type, inner_type;
10140 const char *prefix = "__";
10142 if (targetm.libfunc_gnu_prefix)
10143 prefix = "__gnu_";
10145 type = lang_hooks.types.type_for_mode ((enum machine_mode) mode, 0);
10146 if (type == NULL)
10147 continue;
10148 inner_type = TREE_TYPE (type);
10150 ftype = build_function_type_list (type, inner_type, inner_type,
10151 inner_type, inner_type, NULL_TREE);
10153 mcode = ((enum built_in_function)
10154 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10155 dcode = ((enum built_in_function)
10156 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10158 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10159 *q = TOLOWER (*p);
10160 *q = '\0';
10162 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10163 NULL);
10164 local_define_builtin (built_in_names[mcode], ftype, mcode,
10165 built_in_names[mcode],
10166 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10168 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10169 NULL);
10170 local_define_builtin (built_in_names[dcode], ftype, dcode,
10171 built_in_names[dcode],
10172 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10177 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10178 better way.
10180 If we requested a pointer to a vector, build up the pointers that
10181 we stripped off while looking for the inner type. Similarly for
10182 return values from functions.
10184 The argument TYPE is the top of the chain, and BOTTOM is the
10185 new type which we will point to. */
10187 tree
10188 reconstruct_complex_type (tree type, tree bottom)
10190 tree inner, outer;
10192 if (TREE_CODE (type) == POINTER_TYPE)
10194 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10195 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10196 TYPE_REF_CAN_ALIAS_ALL (type));
10198 else if (TREE_CODE (type) == REFERENCE_TYPE)
10200 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10201 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10202 TYPE_REF_CAN_ALIAS_ALL (type));
10204 else if (TREE_CODE (type) == ARRAY_TYPE)
10206 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10207 outer = build_array_type (inner, TYPE_DOMAIN (type));
10209 else if (TREE_CODE (type) == FUNCTION_TYPE)
10211 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10212 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10214 else if (TREE_CODE (type) == METHOD_TYPE)
10216 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10217 /* The build_method_type_directly() routine prepends 'this' to argument list,
10218 so we must compensate by getting rid of it. */
10219 outer
10220 = build_method_type_directly
10221 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10222 inner,
10223 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10225 else if (TREE_CODE (type) == OFFSET_TYPE)
10227 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10228 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10230 else
10231 return bottom;
10233 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10234 TYPE_QUALS (type));
10237 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10238 the inner type. */
10239 tree
10240 build_vector_type_for_mode (tree innertype, enum machine_mode mode)
10242 int nunits;
10244 switch (GET_MODE_CLASS (mode))
10246 case MODE_VECTOR_INT:
10247 case MODE_VECTOR_FLOAT:
10248 case MODE_VECTOR_FRACT:
10249 case MODE_VECTOR_UFRACT:
10250 case MODE_VECTOR_ACCUM:
10251 case MODE_VECTOR_UACCUM:
10252 nunits = GET_MODE_NUNITS (mode);
10253 break;
10255 case MODE_INT:
10256 /* Check that there are no leftover bits. */
10257 gcc_assert (GET_MODE_BITSIZE (mode)
10258 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10260 nunits = GET_MODE_BITSIZE (mode)
10261 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10262 break;
10264 default:
10265 gcc_unreachable ();
10268 return make_vector_type (innertype, nunits, mode);
10271 /* Similarly, but takes the inner type and number of units, which must be
10272 a power of two. */
10274 tree
10275 build_vector_type (tree innertype, int nunits)
10277 return make_vector_type (innertype, nunits, VOIDmode);
10280 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10282 tree
10283 build_opaque_vector_type (tree innertype, int nunits)
10285 tree t = make_vector_type (innertype, nunits, VOIDmode);
10286 tree cand;
10287 /* We always build the non-opaque variant before the opaque one,
10288 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10289 cand = TYPE_NEXT_VARIANT (t);
10290 if (cand
10291 && TYPE_VECTOR_OPAQUE (cand)
10292 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10293 return cand;
10294 /* Othewise build a variant type and make sure to queue it after
10295 the non-opaque type. */
10296 cand = build_distinct_type_copy (t);
10297 TYPE_VECTOR_OPAQUE (cand) = true;
10298 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10299 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10300 TYPE_NEXT_VARIANT (t) = cand;
10301 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10302 return cand;
10306 /* Given an initializer INIT, return TRUE if INIT is zero or some
10307 aggregate of zeros. Otherwise return FALSE. */
10308 bool
10309 initializer_zerop (const_tree init)
10311 tree elt;
10313 STRIP_NOPS (init);
10315 switch (TREE_CODE (init))
10317 case INTEGER_CST:
10318 return integer_zerop (init);
10320 case REAL_CST:
10321 /* ??? Note that this is not correct for C4X float formats. There,
10322 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10323 negative exponent. */
10324 return real_zerop (init)
10325 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10327 case FIXED_CST:
10328 return fixed_zerop (init);
10330 case COMPLEX_CST:
10331 return integer_zerop (init)
10332 || (real_zerop (init)
10333 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10334 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10336 case VECTOR_CST:
10338 unsigned i;
10339 for (i = 0; i < VECTOR_CST_NELTS (init); ++i)
10340 if (!initializer_zerop (VECTOR_CST_ELT (init, i)))
10341 return false;
10342 return true;
10345 case CONSTRUCTOR:
10347 unsigned HOST_WIDE_INT idx;
10349 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10350 if (!initializer_zerop (elt))
10351 return false;
10352 return true;
10355 case STRING_CST:
10357 int i;
10359 /* We need to loop through all elements to handle cases like
10360 "\0" and "\0foobar". */
10361 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10362 if (TREE_STRING_POINTER (init)[i] != '\0')
10363 return false;
10365 return true;
10368 default:
10369 return false;
10373 /* Check if vector VEC consists of all the equal elements and
10374 that the number of elements corresponds to the type of VEC.
10375 The function returns first element of the vector
10376 or NULL_TREE if the vector is not uniform. */
10377 tree
10378 uniform_vector_p (const_tree vec)
10380 tree first, t;
10381 unsigned i;
10383 if (vec == NULL_TREE)
10384 return NULL_TREE;
10386 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10388 if (TREE_CODE (vec) == VECTOR_CST)
10390 first = VECTOR_CST_ELT (vec, 0);
10391 for (i = 1; i < VECTOR_CST_NELTS (vec); ++i)
10392 if (!operand_equal_p (first, VECTOR_CST_ELT (vec, i), 0))
10393 return NULL_TREE;
10395 return first;
10398 else if (TREE_CODE (vec) == CONSTRUCTOR)
10400 first = error_mark_node;
10402 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10404 if (i == 0)
10406 first = t;
10407 continue;
10409 if (!operand_equal_p (first, t, 0))
10410 return NULL_TREE;
10412 if (i != TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)))
10413 return NULL_TREE;
10415 return first;
10418 return NULL_TREE;
10421 /* Build an empty statement at location LOC. */
10423 tree
10424 build_empty_stmt (location_t loc)
10426 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10427 SET_EXPR_LOCATION (t, loc);
10428 return t;
10432 /* Build an OpenMP clause with code CODE. LOC is the location of the
10433 clause. */
10435 tree
10436 build_omp_clause (location_t loc, enum omp_clause_code code)
10438 tree t;
10439 int size, length;
10441 length = omp_clause_num_ops[code];
10442 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10444 record_node_allocation_statistics (OMP_CLAUSE, size);
10446 t = (tree) ggc_internal_alloc (size);
10447 memset (t, 0, size);
10448 TREE_SET_CODE (t, OMP_CLAUSE);
10449 OMP_CLAUSE_SET_CODE (t, code);
10450 OMP_CLAUSE_LOCATION (t) = loc;
10452 return t;
10455 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10456 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10457 Except for the CODE and operand count field, other storage for the
10458 object is initialized to zeros. */
10460 tree
10461 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
10463 tree t;
10464 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10466 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10467 gcc_assert (len >= 1);
10469 record_node_allocation_statistics (code, length);
10471 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10473 TREE_SET_CODE (t, code);
10475 /* Can't use TREE_OPERAND to store the length because if checking is
10476 enabled, it will try to check the length before we store it. :-P */
10477 t->exp.operands[0] = build_int_cst (sizetype, len);
10479 return t;
10482 /* Helper function for build_call_* functions; build a CALL_EXPR with
10483 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10484 the argument slots. */
10486 static tree
10487 build_call_1 (tree return_type, tree fn, int nargs)
10489 tree t;
10491 t = build_vl_exp (CALL_EXPR, nargs + 3);
10492 TREE_TYPE (t) = return_type;
10493 CALL_EXPR_FN (t) = fn;
10494 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10496 return t;
10499 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10500 FN and a null static chain slot. NARGS is the number of call arguments
10501 which are specified as "..." arguments. */
10503 tree
10504 build_call_nary (tree return_type, tree fn, int nargs, ...)
10506 tree ret;
10507 va_list args;
10508 va_start (args, nargs);
10509 ret = build_call_valist (return_type, fn, nargs, args);
10510 va_end (args);
10511 return ret;
10514 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10515 FN and a null static chain slot. NARGS is the number of call arguments
10516 which are specified as a va_list ARGS. */
10518 tree
10519 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10521 tree t;
10522 int i;
10524 t = build_call_1 (return_type, fn, nargs);
10525 for (i = 0; i < nargs; i++)
10526 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10527 process_call_operands (t);
10528 return t;
10531 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10532 FN and a null static chain slot. NARGS is the number of call arguments
10533 which are specified as a tree array ARGS. */
10535 tree
10536 build_call_array_loc (location_t loc, tree return_type, tree fn,
10537 int nargs, const tree *args)
10539 tree t;
10540 int i;
10542 t = build_call_1 (return_type, fn, nargs);
10543 for (i = 0; i < nargs; i++)
10544 CALL_EXPR_ARG (t, i) = args[i];
10545 process_call_operands (t);
10546 SET_EXPR_LOCATION (t, loc);
10547 return t;
10550 /* Like build_call_array, but takes a vec. */
10552 tree
10553 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10555 tree ret, t;
10556 unsigned int ix;
10558 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10559 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10560 CALL_EXPR_ARG (ret, ix) = t;
10561 process_call_operands (ret);
10562 return ret;
10565 /* Conveniently construct a function call expression. FNDECL names the
10566 function to be called and N arguments are passed in the array
10567 ARGARRAY. */
10569 tree
10570 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10572 tree fntype = TREE_TYPE (fndecl);
10573 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10575 return fold_builtin_call_array (loc, TREE_TYPE (fntype), fn, n, argarray);
10578 /* Conveniently construct a function call expression. FNDECL names the
10579 function to be called and the arguments are passed in the vector
10580 VEC. */
10582 tree
10583 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10585 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10586 vec_safe_address (vec));
10590 /* Conveniently construct a function call expression. FNDECL names the
10591 function to be called, N is the number of arguments, and the "..."
10592 parameters are the argument expressions. */
10594 tree
10595 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10597 va_list ap;
10598 tree *argarray = XALLOCAVEC (tree, n);
10599 int i;
10601 va_start (ap, n);
10602 for (i = 0; i < n; i++)
10603 argarray[i] = va_arg (ap, tree);
10604 va_end (ap);
10605 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10608 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10609 varargs macros aren't supported by all bootstrap compilers. */
10611 tree
10612 build_call_expr (tree fndecl, int n, ...)
10614 va_list ap;
10615 tree *argarray = XALLOCAVEC (tree, n);
10616 int i;
10618 va_start (ap, n);
10619 for (i = 0; i < n; i++)
10620 argarray[i] = va_arg (ap, tree);
10621 va_end (ap);
10622 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10625 /* Create a new constant string literal and return a char* pointer to it.
10626 The STRING_CST value is the LEN characters at STR. */
10627 tree
10628 build_string_literal (int len, const char *str)
10630 tree t, elem, index, type;
10632 t = build_string (len, str);
10633 elem = build_type_variant (char_type_node, 1, 0);
10634 index = build_index_type (size_int (len - 1));
10635 type = build_array_type (elem, index);
10636 TREE_TYPE (t) = type;
10637 TREE_CONSTANT (t) = 1;
10638 TREE_READONLY (t) = 1;
10639 TREE_STATIC (t) = 1;
10641 type = build_pointer_type (elem);
10642 t = build1 (ADDR_EXPR, type,
10643 build4 (ARRAY_REF, elem,
10644 t, integer_zero_node, NULL_TREE, NULL_TREE));
10645 return t;
10650 /* Return true if T (assumed to be a DECL) must be assigned a memory
10651 location. */
10653 bool
10654 needs_to_live_in_memory (const_tree t)
10656 return (TREE_ADDRESSABLE (t)
10657 || is_global_var (t)
10658 || (TREE_CODE (t) == RESULT_DECL
10659 && !DECL_BY_REFERENCE (t)
10660 && aggregate_value_p (t, current_function_decl)));
10663 /* Return value of a constant X and sign-extend it. */
10665 HOST_WIDE_INT
10666 int_cst_value (const_tree x)
10668 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
10669 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
10671 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10672 gcc_assert (cst_and_fits_in_hwi (x));
10674 if (bits < HOST_BITS_PER_WIDE_INT)
10676 bool negative = ((val >> (bits - 1)) & 1) != 0;
10677 if (negative)
10678 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
10679 else
10680 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
10683 return val;
10686 /* If TYPE is an integral or pointer type, return an integer type with
10687 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10688 if TYPE is already an integer type of signedness UNSIGNEDP. */
10690 tree
10691 signed_or_unsigned_type_for (int unsignedp, tree type)
10693 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
10694 return type;
10696 if (TREE_CODE (type) == VECTOR_TYPE)
10698 tree inner = TREE_TYPE (type);
10699 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
10700 if (!inner2)
10701 return NULL_TREE;
10702 if (inner == inner2)
10703 return type;
10704 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
10707 if (!INTEGRAL_TYPE_P (type)
10708 && !POINTER_TYPE_P (type)
10709 && TREE_CODE (type) != OFFSET_TYPE)
10710 return NULL_TREE;
10712 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
10715 /* If TYPE is an integral or pointer type, return an integer type with
10716 the same precision which is unsigned, or itself if TYPE is already an
10717 unsigned integer type. */
10719 tree
10720 unsigned_type_for (tree type)
10722 return signed_or_unsigned_type_for (1, type);
10725 /* If TYPE is an integral or pointer type, return an integer type with
10726 the same precision which is signed, or itself if TYPE is already a
10727 signed integer type. */
10729 tree
10730 signed_type_for (tree type)
10732 return signed_or_unsigned_type_for (0, type);
10735 /* If TYPE is a vector type, return a signed integer vector type with the
10736 same width and number of subparts. Otherwise return boolean_type_node. */
10738 tree
10739 truth_type_for (tree type)
10741 if (TREE_CODE (type) == VECTOR_TYPE)
10743 tree elem = lang_hooks.types.type_for_size
10744 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))), 0);
10745 return build_opaque_vector_type (elem, TYPE_VECTOR_SUBPARTS (type));
10747 else
10748 return boolean_type_node;
10751 /* Returns the largest value obtainable by casting something in INNER type to
10752 OUTER type. */
10754 tree
10755 upper_bound_in_type (tree outer, tree inner)
10757 unsigned int det = 0;
10758 unsigned oprec = TYPE_PRECISION (outer);
10759 unsigned iprec = TYPE_PRECISION (inner);
10760 unsigned prec;
10762 /* Compute a unique number for every combination. */
10763 det |= (oprec > iprec) ? 4 : 0;
10764 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
10765 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
10767 /* Determine the exponent to use. */
10768 switch (det)
10770 case 0:
10771 case 1:
10772 /* oprec <= iprec, outer: signed, inner: don't care. */
10773 prec = oprec - 1;
10774 break;
10775 case 2:
10776 case 3:
10777 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10778 prec = oprec;
10779 break;
10780 case 4:
10781 /* oprec > iprec, outer: signed, inner: signed. */
10782 prec = iprec - 1;
10783 break;
10784 case 5:
10785 /* oprec > iprec, outer: signed, inner: unsigned. */
10786 prec = iprec;
10787 break;
10788 case 6:
10789 /* oprec > iprec, outer: unsigned, inner: signed. */
10790 prec = oprec;
10791 break;
10792 case 7:
10793 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10794 prec = iprec;
10795 break;
10796 default:
10797 gcc_unreachable ();
10800 return wide_int_to_tree (outer,
10801 wi::mask (prec, false, TYPE_PRECISION (outer)));
10804 /* Returns the smallest value obtainable by casting something in INNER type to
10805 OUTER type. */
10807 tree
10808 lower_bound_in_type (tree outer, tree inner)
10810 unsigned oprec = TYPE_PRECISION (outer);
10811 unsigned iprec = TYPE_PRECISION (inner);
10813 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10814 and obtain 0. */
10815 if (TYPE_UNSIGNED (outer)
10816 /* If we are widening something of an unsigned type, OUTER type
10817 contains all values of INNER type. In particular, both INNER
10818 and OUTER types have zero in common. */
10819 || (oprec > iprec && TYPE_UNSIGNED (inner)))
10820 return build_int_cst (outer, 0);
10821 else
10823 /* If we are widening a signed type to another signed type, we
10824 want to obtain -2^^(iprec-1). If we are keeping the
10825 precision or narrowing to a signed type, we want to obtain
10826 -2^(oprec-1). */
10827 unsigned prec = oprec > iprec ? iprec : oprec;
10828 return wide_int_to_tree (outer,
10829 wi::mask (prec - 1, true,
10830 TYPE_PRECISION (outer)));
10834 /* Return nonzero if two operands that are suitable for PHI nodes are
10835 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10836 SSA_NAME or invariant. Note that this is strictly an optimization.
10837 That is, callers of this function can directly call operand_equal_p
10838 and get the same result, only slower. */
10841 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
10843 if (arg0 == arg1)
10844 return 1;
10845 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
10846 return 0;
10847 return operand_equal_p (arg0, arg1, 0);
10850 /* Returns number of zeros at the end of binary representation of X. */
10852 tree
10853 num_ending_zeros (const_tree x)
10855 return build_int_cst (TREE_TYPE (x), wi::ctz (x));
10859 #define WALK_SUBTREE(NODE) \
10860 do \
10862 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10863 if (result) \
10864 return result; \
10866 while (0)
10868 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10869 be walked whenever a type is seen in the tree. Rest of operands and return
10870 value are as for walk_tree. */
10872 static tree
10873 walk_type_fields (tree type, walk_tree_fn func, void *data,
10874 struct pointer_set_t *pset, walk_tree_lh lh)
10876 tree result = NULL_TREE;
10878 switch (TREE_CODE (type))
10880 case POINTER_TYPE:
10881 case REFERENCE_TYPE:
10882 case VECTOR_TYPE:
10883 /* We have to worry about mutually recursive pointers. These can't
10884 be written in C. They can in Ada. It's pathological, but
10885 there's an ACATS test (c38102a) that checks it. Deal with this
10886 by checking if we're pointing to another pointer, that one
10887 points to another pointer, that one does too, and we have no htab.
10888 If so, get a hash table. We check three levels deep to avoid
10889 the cost of the hash table if we don't need one. */
10890 if (POINTER_TYPE_P (TREE_TYPE (type))
10891 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
10892 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
10893 && !pset)
10895 result = walk_tree_without_duplicates (&TREE_TYPE (type),
10896 func, data);
10897 if (result)
10898 return result;
10900 break;
10903 /* ... fall through ... */
10905 case COMPLEX_TYPE:
10906 WALK_SUBTREE (TREE_TYPE (type));
10907 break;
10909 case METHOD_TYPE:
10910 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
10912 /* Fall through. */
10914 case FUNCTION_TYPE:
10915 WALK_SUBTREE (TREE_TYPE (type));
10917 tree arg;
10919 /* We never want to walk into default arguments. */
10920 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
10921 WALK_SUBTREE (TREE_VALUE (arg));
10923 break;
10925 case ARRAY_TYPE:
10926 /* Don't follow this nodes's type if a pointer for fear that
10927 we'll have infinite recursion. If we have a PSET, then we
10928 need not fear. */
10929 if (pset
10930 || (!POINTER_TYPE_P (TREE_TYPE (type))
10931 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
10932 WALK_SUBTREE (TREE_TYPE (type));
10933 WALK_SUBTREE (TYPE_DOMAIN (type));
10934 break;
10936 case OFFSET_TYPE:
10937 WALK_SUBTREE (TREE_TYPE (type));
10938 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
10939 break;
10941 default:
10942 break;
10945 return NULL_TREE;
10948 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10949 called with the DATA and the address of each sub-tree. If FUNC returns a
10950 non-NULL value, the traversal is stopped, and the value returned by FUNC
10951 is returned. If PSET is non-NULL it is used to record the nodes visited,
10952 and to avoid visiting a node more than once. */
10954 tree
10955 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
10956 struct pointer_set_t *pset, walk_tree_lh lh)
10958 enum tree_code code;
10959 int walk_subtrees;
10960 tree result;
10962 #define WALK_SUBTREE_TAIL(NODE) \
10963 do \
10965 tp = & (NODE); \
10966 goto tail_recurse; \
10968 while (0)
10970 tail_recurse:
10971 /* Skip empty subtrees. */
10972 if (!*tp)
10973 return NULL_TREE;
10975 /* Don't walk the same tree twice, if the user has requested
10976 that we avoid doing so. */
10977 if (pset && pointer_set_insert (pset, *tp))
10978 return NULL_TREE;
10980 /* Call the function. */
10981 walk_subtrees = 1;
10982 result = (*func) (tp, &walk_subtrees, data);
10984 /* If we found something, return it. */
10985 if (result)
10986 return result;
10988 code = TREE_CODE (*tp);
10990 /* Even if we didn't, FUNC may have decided that there was nothing
10991 interesting below this point in the tree. */
10992 if (!walk_subtrees)
10994 /* But we still need to check our siblings. */
10995 if (code == TREE_LIST)
10996 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
10997 else if (code == OMP_CLAUSE)
10998 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10999 else
11000 return NULL_TREE;
11003 if (lh)
11005 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11006 if (result || !walk_subtrees)
11007 return result;
11010 switch (code)
11012 case ERROR_MARK:
11013 case IDENTIFIER_NODE:
11014 case INTEGER_CST:
11015 case REAL_CST:
11016 case FIXED_CST:
11017 case VECTOR_CST:
11018 case STRING_CST:
11019 case BLOCK:
11020 case PLACEHOLDER_EXPR:
11021 case SSA_NAME:
11022 case FIELD_DECL:
11023 case RESULT_DECL:
11024 /* None of these have subtrees other than those already walked
11025 above. */
11026 break;
11028 case TREE_LIST:
11029 WALK_SUBTREE (TREE_VALUE (*tp));
11030 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11031 break;
11033 case TREE_VEC:
11035 int len = TREE_VEC_LENGTH (*tp);
11037 if (len == 0)
11038 break;
11040 /* Walk all elements but the first. */
11041 while (--len)
11042 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11044 /* Now walk the first one as a tail call. */
11045 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11048 case COMPLEX_CST:
11049 WALK_SUBTREE (TREE_REALPART (*tp));
11050 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11052 case CONSTRUCTOR:
11054 unsigned HOST_WIDE_INT idx;
11055 constructor_elt *ce;
11057 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11058 idx++)
11059 WALK_SUBTREE (ce->value);
11061 break;
11063 case SAVE_EXPR:
11064 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11066 case BIND_EXPR:
11068 tree decl;
11069 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11071 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11072 into declarations that are just mentioned, rather than
11073 declared; they don't really belong to this part of the tree.
11074 And, we can see cycles: the initializer for a declaration
11075 can refer to the declaration itself. */
11076 WALK_SUBTREE (DECL_INITIAL (decl));
11077 WALK_SUBTREE (DECL_SIZE (decl));
11078 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11080 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11083 case STATEMENT_LIST:
11085 tree_stmt_iterator i;
11086 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11087 WALK_SUBTREE (*tsi_stmt_ptr (i));
11089 break;
11091 case OMP_CLAUSE:
11092 switch (OMP_CLAUSE_CODE (*tp))
11094 case OMP_CLAUSE_PRIVATE:
11095 case OMP_CLAUSE_SHARED:
11096 case OMP_CLAUSE_FIRSTPRIVATE:
11097 case OMP_CLAUSE_COPYIN:
11098 case OMP_CLAUSE_COPYPRIVATE:
11099 case OMP_CLAUSE_FINAL:
11100 case OMP_CLAUSE_IF:
11101 case OMP_CLAUSE_NUM_THREADS:
11102 case OMP_CLAUSE_SCHEDULE:
11103 case OMP_CLAUSE_UNIFORM:
11104 case OMP_CLAUSE_DEPEND:
11105 case OMP_CLAUSE_NUM_TEAMS:
11106 case OMP_CLAUSE_THREAD_LIMIT:
11107 case OMP_CLAUSE_DEVICE:
11108 case OMP_CLAUSE_DIST_SCHEDULE:
11109 case OMP_CLAUSE_SAFELEN:
11110 case OMP_CLAUSE_SIMDLEN:
11111 case OMP_CLAUSE__LOOPTEMP_:
11112 case OMP_CLAUSE__SIMDUID_:
11113 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11114 /* FALLTHRU */
11116 case OMP_CLAUSE_NOWAIT:
11117 case OMP_CLAUSE_ORDERED:
11118 case OMP_CLAUSE_DEFAULT:
11119 case OMP_CLAUSE_UNTIED:
11120 case OMP_CLAUSE_MERGEABLE:
11121 case OMP_CLAUSE_PROC_BIND:
11122 case OMP_CLAUSE_INBRANCH:
11123 case OMP_CLAUSE_NOTINBRANCH:
11124 case OMP_CLAUSE_FOR:
11125 case OMP_CLAUSE_PARALLEL:
11126 case OMP_CLAUSE_SECTIONS:
11127 case OMP_CLAUSE_TASKGROUP:
11128 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11130 case OMP_CLAUSE_LASTPRIVATE:
11131 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11132 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11133 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11135 case OMP_CLAUSE_COLLAPSE:
11137 int i;
11138 for (i = 0; i < 3; i++)
11139 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11140 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11143 case OMP_CLAUSE_LINEAR:
11144 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11145 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11146 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11147 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11149 case OMP_CLAUSE_ALIGNED:
11150 case OMP_CLAUSE_FROM:
11151 case OMP_CLAUSE_TO:
11152 case OMP_CLAUSE_MAP:
11153 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11154 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11155 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11157 case OMP_CLAUSE_REDUCTION:
11159 int i;
11160 for (i = 0; i < 4; i++)
11161 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11162 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11165 default:
11166 gcc_unreachable ();
11168 break;
11170 case TARGET_EXPR:
11172 int i, len;
11174 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11175 But, we only want to walk once. */
11176 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11177 for (i = 0; i < len; ++i)
11178 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11179 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11182 case DECL_EXPR:
11183 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11184 defining. We only want to walk into these fields of a type in this
11185 case and not in the general case of a mere reference to the type.
11187 The criterion is as follows: if the field can be an expression, it
11188 must be walked only here. This should be in keeping with the fields
11189 that are directly gimplified in gimplify_type_sizes in order for the
11190 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11191 variable-sized types.
11193 Note that DECLs get walked as part of processing the BIND_EXPR. */
11194 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11196 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11197 if (TREE_CODE (*type_p) == ERROR_MARK)
11198 return NULL_TREE;
11200 /* Call the function for the type. See if it returns anything or
11201 doesn't want us to continue. If we are to continue, walk both
11202 the normal fields and those for the declaration case. */
11203 result = (*func) (type_p, &walk_subtrees, data);
11204 if (result || !walk_subtrees)
11205 return result;
11207 /* But do not walk a pointed-to type since it may itself need to
11208 be walked in the declaration case if it isn't anonymous. */
11209 if (!POINTER_TYPE_P (*type_p))
11211 result = walk_type_fields (*type_p, func, data, pset, lh);
11212 if (result)
11213 return result;
11216 /* If this is a record type, also walk the fields. */
11217 if (RECORD_OR_UNION_TYPE_P (*type_p))
11219 tree field;
11221 for (field = TYPE_FIELDS (*type_p); field;
11222 field = DECL_CHAIN (field))
11224 /* We'd like to look at the type of the field, but we can
11225 easily get infinite recursion. So assume it's pointed
11226 to elsewhere in the tree. Also, ignore things that
11227 aren't fields. */
11228 if (TREE_CODE (field) != FIELD_DECL)
11229 continue;
11231 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11232 WALK_SUBTREE (DECL_SIZE (field));
11233 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11234 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11235 WALK_SUBTREE (DECL_QUALIFIER (field));
11239 /* Same for scalar types. */
11240 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11241 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11242 || TREE_CODE (*type_p) == INTEGER_TYPE
11243 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11244 || TREE_CODE (*type_p) == REAL_TYPE)
11246 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11247 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11250 WALK_SUBTREE (TYPE_SIZE (*type_p));
11251 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11253 /* FALLTHRU */
11255 default:
11256 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11258 int i, len;
11260 /* Walk over all the sub-trees of this operand. */
11261 len = TREE_OPERAND_LENGTH (*tp);
11263 /* Go through the subtrees. We need to do this in forward order so
11264 that the scope of a FOR_EXPR is handled properly. */
11265 if (len)
11267 for (i = 0; i < len - 1; ++i)
11268 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11269 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11272 /* If this is a type, walk the needed fields in the type. */
11273 else if (TYPE_P (*tp))
11274 return walk_type_fields (*tp, func, data, pset, lh);
11275 break;
11278 /* We didn't find what we were looking for. */
11279 return NULL_TREE;
11281 #undef WALK_SUBTREE_TAIL
11283 #undef WALK_SUBTREE
11285 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11287 tree
11288 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11289 walk_tree_lh lh)
11291 tree result;
11292 struct pointer_set_t *pset;
11294 pset = pointer_set_create ();
11295 result = walk_tree_1 (tp, func, data, pset, lh);
11296 pointer_set_destroy (pset);
11297 return result;
11301 tree
11302 tree_block (tree t)
11304 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11306 if (IS_EXPR_CODE_CLASS (c))
11307 return LOCATION_BLOCK (t->exp.locus);
11308 gcc_unreachable ();
11309 return NULL;
11312 void
11313 tree_set_block (tree t, tree b)
11315 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11317 if (IS_EXPR_CODE_CLASS (c))
11319 if (b)
11320 t->exp.locus = COMBINE_LOCATION_DATA (line_table, t->exp.locus, b);
11321 else
11322 t->exp.locus = LOCATION_LOCUS (t->exp.locus);
11324 else
11325 gcc_unreachable ();
11328 /* Create a nameless artificial label and put it in the current
11329 function context. The label has a location of LOC. Returns the
11330 newly created label. */
11332 tree
11333 create_artificial_label (location_t loc)
11335 tree lab = build_decl (loc,
11336 LABEL_DECL, NULL_TREE, void_type_node);
11338 DECL_ARTIFICIAL (lab) = 1;
11339 DECL_IGNORED_P (lab) = 1;
11340 DECL_CONTEXT (lab) = current_function_decl;
11341 return lab;
11344 /* Given a tree, try to return a useful variable name that we can use
11345 to prefix a temporary that is being assigned the value of the tree.
11346 I.E. given <temp> = &A, return A. */
11348 const char *
11349 get_name (tree t)
11351 tree stripped_decl;
11353 stripped_decl = t;
11354 STRIP_NOPS (stripped_decl);
11355 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11356 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11357 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11359 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11360 if (!name)
11361 return NULL;
11362 return IDENTIFIER_POINTER (name);
11364 else
11366 switch (TREE_CODE (stripped_decl))
11368 case ADDR_EXPR:
11369 return get_name (TREE_OPERAND (stripped_decl, 0));
11370 default:
11371 return NULL;
11376 /* Return true if TYPE has a variable argument list. */
11378 bool
11379 stdarg_p (const_tree fntype)
11381 function_args_iterator args_iter;
11382 tree n = NULL_TREE, t;
11384 if (!fntype)
11385 return false;
11387 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11389 n = t;
11392 return n != NULL_TREE && n != void_type_node;
11395 /* Return true if TYPE has a prototype. */
11397 bool
11398 prototype_p (tree fntype)
11400 tree t;
11402 gcc_assert (fntype != NULL_TREE);
11404 t = TYPE_ARG_TYPES (fntype);
11405 return (t != NULL_TREE);
11408 /* If BLOCK is inlined from an __attribute__((__artificial__))
11409 routine, return pointer to location from where it has been
11410 called. */
11411 location_t *
11412 block_nonartificial_location (tree block)
11414 location_t *ret = NULL;
11416 while (block && TREE_CODE (block) == BLOCK
11417 && BLOCK_ABSTRACT_ORIGIN (block))
11419 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11421 while (TREE_CODE (ao) == BLOCK
11422 && BLOCK_ABSTRACT_ORIGIN (ao)
11423 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11424 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11426 if (TREE_CODE (ao) == FUNCTION_DECL)
11428 /* If AO is an artificial inline, point RET to the
11429 call site locus at which it has been inlined and continue
11430 the loop, in case AO's caller is also an artificial
11431 inline. */
11432 if (DECL_DECLARED_INLINE_P (ao)
11433 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11434 ret = &BLOCK_SOURCE_LOCATION (block);
11435 else
11436 break;
11438 else if (TREE_CODE (ao) != BLOCK)
11439 break;
11441 block = BLOCK_SUPERCONTEXT (block);
11443 return ret;
11447 /* If EXP is inlined from an __attribute__((__artificial__))
11448 function, return the location of the original call expression. */
11450 location_t
11451 tree_nonartificial_location (tree exp)
11453 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11455 if (loc)
11456 return *loc;
11457 else
11458 return EXPR_LOCATION (exp);
11462 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11463 nodes. */
11465 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11467 static hashval_t
11468 cl_option_hash_hash (const void *x)
11470 const_tree const t = (const_tree) x;
11471 const char *p;
11472 size_t i;
11473 size_t len = 0;
11474 hashval_t hash = 0;
11476 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11478 p = (const char *)TREE_OPTIMIZATION (t);
11479 len = sizeof (struct cl_optimization);
11482 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11484 p = (const char *)TREE_TARGET_OPTION (t);
11485 len = sizeof (struct cl_target_option);
11488 else
11489 gcc_unreachable ();
11491 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11492 something else. */
11493 for (i = 0; i < len; i++)
11494 if (p[i])
11495 hash = (hash << 4) ^ ((i << 2) | p[i]);
11497 return hash;
11500 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11501 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11502 same. */
11504 static int
11505 cl_option_hash_eq (const void *x, const void *y)
11507 const_tree const xt = (const_tree) x;
11508 const_tree const yt = (const_tree) y;
11509 const char *xp;
11510 const char *yp;
11511 size_t len;
11513 if (TREE_CODE (xt) != TREE_CODE (yt))
11514 return 0;
11516 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11518 xp = (const char *)TREE_OPTIMIZATION (xt);
11519 yp = (const char *)TREE_OPTIMIZATION (yt);
11520 len = sizeof (struct cl_optimization);
11523 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11525 xp = (const char *)TREE_TARGET_OPTION (xt);
11526 yp = (const char *)TREE_TARGET_OPTION (yt);
11527 len = sizeof (struct cl_target_option);
11530 else
11531 gcc_unreachable ();
11533 return (memcmp (xp, yp, len) == 0);
11536 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11538 tree
11539 build_optimization_node (struct gcc_options *opts)
11541 tree t;
11542 void **slot;
11544 /* Use the cache of optimization nodes. */
11546 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
11547 opts);
11549 slot = htab_find_slot (cl_option_hash_table, cl_optimization_node, INSERT);
11550 t = (tree) *slot;
11551 if (!t)
11553 /* Insert this one into the hash table. */
11554 t = cl_optimization_node;
11555 *slot = t;
11557 /* Make a new node for next time round. */
11558 cl_optimization_node = make_node (OPTIMIZATION_NODE);
11561 return t;
11564 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11566 tree
11567 build_target_option_node (struct gcc_options *opts)
11569 tree t;
11570 void **slot;
11572 /* Use the cache of optimization nodes. */
11574 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
11575 opts);
11577 slot = htab_find_slot (cl_option_hash_table, cl_target_option_node, INSERT);
11578 t = (tree) *slot;
11579 if (!t)
11581 /* Insert this one into the hash table. */
11582 t = cl_target_option_node;
11583 *slot = t;
11585 /* Make a new node for next time round. */
11586 cl_target_option_node = make_node (TARGET_OPTION_NODE);
11589 return t;
11592 /* Reset TREE_TARGET_GLOBALS cache for TARGET_OPTION_NODE.
11593 Called through htab_traverse. */
11595 static int
11596 prepare_target_option_node_for_pch (void **slot, void *)
11598 tree node = (tree) *slot;
11599 if (TREE_CODE (node) == TARGET_OPTION_NODE)
11600 TREE_TARGET_GLOBALS (node) = NULL;
11601 return 1;
11604 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11605 so that they aren't saved during PCH writing. */
11607 void
11608 prepare_target_option_nodes_for_pch (void)
11610 htab_traverse (cl_option_hash_table, prepare_target_option_node_for_pch,
11611 NULL);
11614 /* Determine the "ultimate origin" of a block. The block may be an inlined
11615 instance of an inlined instance of a block which is local to an inline
11616 function, so we have to trace all of the way back through the origin chain
11617 to find out what sort of node actually served as the original seed for the
11618 given block. */
11620 tree
11621 block_ultimate_origin (const_tree block)
11623 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
11625 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11626 nodes in the function to point to themselves; ignore that if
11627 we're trying to output the abstract instance of this function. */
11628 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
11629 return NULL_TREE;
11631 if (immediate_origin == NULL_TREE)
11632 return NULL_TREE;
11633 else
11635 tree ret_val;
11636 tree lookahead = immediate_origin;
11640 ret_val = lookahead;
11641 lookahead = (TREE_CODE (ret_val) == BLOCK
11642 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
11644 while (lookahead != NULL && lookahead != ret_val);
11646 /* The block's abstract origin chain may not be the *ultimate* origin of
11647 the block. It could lead to a DECL that has an abstract origin set.
11648 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11649 will give us if it has one). Note that DECL's abstract origins are
11650 supposed to be the most distant ancestor (or so decl_ultimate_origin
11651 claims), so we don't need to loop following the DECL origins. */
11652 if (DECL_P (ret_val))
11653 return DECL_ORIGIN (ret_val);
11655 return ret_val;
11659 /* Return true iff conversion in EXP generates no instruction. Mark
11660 it inline so that we fully inline into the stripping functions even
11661 though we have two uses of this function. */
11663 static inline bool
11664 tree_nop_conversion (const_tree exp)
11666 tree outer_type, inner_type;
11668 if (!CONVERT_EXPR_P (exp)
11669 && TREE_CODE (exp) != NON_LVALUE_EXPR)
11670 return false;
11671 if (TREE_OPERAND (exp, 0) == error_mark_node)
11672 return false;
11674 outer_type = TREE_TYPE (exp);
11675 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11677 if (!inner_type)
11678 return false;
11680 /* Use precision rather then machine mode when we can, which gives
11681 the correct answer even for submode (bit-field) types. */
11682 if ((INTEGRAL_TYPE_P (outer_type)
11683 || POINTER_TYPE_P (outer_type)
11684 || TREE_CODE (outer_type) == OFFSET_TYPE)
11685 && (INTEGRAL_TYPE_P (inner_type)
11686 || POINTER_TYPE_P (inner_type)
11687 || TREE_CODE (inner_type) == OFFSET_TYPE))
11688 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
11690 /* Otherwise fall back on comparing machine modes (e.g. for
11691 aggregate types, floats). */
11692 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
11695 /* Return true iff conversion in EXP generates no instruction. Don't
11696 consider conversions changing the signedness. */
11698 static bool
11699 tree_sign_nop_conversion (const_tree exp)
11701 tree outer_type, inner_type;
11703 if (!tree_nop_conversion (exp))
11704 return false;
11706 outer_type = TREE_TYPE (exp);
11707 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11709 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
11710 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
11713 /* Strip conversions from EXP according to tree_nop_conversion and
11714 return the resulting expression. */
11716 tree
11717 tree_strip_nop_conversions (tree exp)
11719 while (tree_nop_conversion (exp))
11720 exp = TREE_OPERAND (exp, 0);
11721 return exp;
11724 /* Strip conversions from EXP according to tree_sign_nop_conversion
11725 and return the resulting expression. */
11727 tree
11728 tree_strip_sign_nop_conversions (tree exp)
11730 while (tree_sign_nop_conversion (exp))
11731 exp = TREE_OPERAND (exp, 0);
11732 return exp;
11735 /* Avoid any floating point extensions from EXP. */
11736 tree
11737 strip_float_extensions (tree exp)
11739 tree sub, expt, subt;
11741 /* For floating point constant look up the narrowest type that can hold
11742 it properly and handle it like (type)(narrowest_type)constant.
11743 This way we can optimize for instance a=a*2.0 where "a" is float
11744 but 2.0 is double constant. */
11745 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
11747 REAL_VALUE_TYPE orig;
11748 tree type = NULL;
11750 orig = TREE_REAL_CST (exp);
11751 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
11752 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
11753 type = float_type_node;
11754 else if (TYPE_PRECISION (TREE_TYPE (exp))
11755 > TYPE_PRECISION (double_type_node)
11756 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
11757 type = double_type_node;
11758 if (type)
11759 return build_real (type, real_value_truncate (TYPE_MODE (type), orig));
11762 if (!CONVERT_EXPR_P (exp))
11763 return exp;
11765 sub = TREE_OPERAND (exp, 0);
11766 subt = TREE_TYPE (sub);
11767 expt = TREE_TYPE (exp);
11769 if (!FLOAT_TYPE_P (subt))
11770 return exp;
11772 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
11773 return exp;
11775 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
11776 return exp;
11778 return strip_float_extensions (sub);
11781 /* Strip out all handled components that produce invariant
11782 offsets. */
11784 const_tree
11785 strip_invariant_refs (const_tree op)
11787 while (handled_component_p (op))
11789 switch (TREE_CODE (op))
11791 case ARRAY_REF:
11792 case ARRAY_RANGE_REF:
11793 if (!is_gimple_constant (TREE_OPERAND (op, 1))
11794 || TREE_OPERAND (op, 2) != NULL_TREE
11795 || TREE_OPERAND (op, 3) != NULL_TREE)
11796 return NULL;
11797 break;
11799 case COMPONENT_REF:
11800 if (TREE_OPERAND (op, 2) != NULL_TREE)
11801 return NULL;
11802 break;
11804 default:;
11806 op = TREE_OPERAND (op, 0);
11809 return op;
11812 static GTY(()) tree gcc_eh_personality_decl;
11814 /* Return the GCC personality function decl. */
11816 tree
11817 lhd_gcc_personality (void)
11819 if (!gcc_eh_personality_decl)
11820 gcc_eh_personality_decl = build_personality_function ("gcc");
11821 return gcc_eh_personality_decl;
11824 /* For languages with One Definition Rule, work out if
11825 trees are actually the same even if the tree representation
11826 differs. This handles only decls appearing in TYPE_NAME
11827 and TYPE_CONTEXT. That is NAMESPACE_DECL, TYPE_DECL,
11828 RECORD_TYPE and IDENTIFIER_NODE. */
11830 static bool
11831 same_for_odr (tree t1, tree t2)
11833 if (t1 == t2)
11834 return true;
11835 if (!t1 || !t2)
11836 return false;
11837 /* C and C++ FEs differ by using IDENTIFIER_NODE and TYPE_DECL. */
11838 if (TREE_CODE (t1) == IDENTIFIER_NODE
11839 && TREE_CODE (t2) == TYPE_DECL
11840 && DECL_FILE_SCOPE_P (t1))
11842 t2 = DECL_NAME (t2);
11843 gcc_assert (TREE_CODE (t2) == IDENTIFIER_NODE);
11845 if (TREE_CODE (t2) == IDENTIFIER_NODE
11846 && TREE_CODE (t1) == TYPE_DECL
11847 && DECL_FILE_SCOPE_P (t2))
11849 t1 = DECL_NAME (t1);
11850 gcc_assert (TREE_CODE (t1) == IDENTIFIER_NODE);
11852 if (TREE_CODE (t1) != TREE_CODE (t2))
11853 return false;
11854 if (TYPE_P (t1))
11855 return types_same_for_odr (t1, t2);
11856 if (DECL_P (t1))
11857 return decls_same_for_odr (t1, t2);
11858 return false;
11861 /* For languages with One Definition Rule, work out if
11862 decls are actually the same even if the tree representation
11863 differs. This handles only decls appearing in TYPE_NAME
11864 and TYPE_CONTEXT. That is NAMESPACE_DECL, TYPE_DECL,
11865 RECORD_TYPE and IDENTIFIER_NODE. */
11867 static bool
11868 decls_same_for_odr (tree decl1, tree decl2)
11870 if (decl1 && TREE_CODE (decl1) == TYPE_DECL
11871 && DECL_ORIGINAL_TYPE (decl1))
11872 decl1 = DECL_ORIGINAL_TYPE (decl1);
11873 if (decl2 && TREE_CODE (decl2) == TYPE_DECL
11874 && DECL_ORIGINAL_TYPE (decl2))
11875 decl2 = DECL_ORIGINAL_TYPE (decl2);
11876 if (decl1 == decl2)
11877 return true;
11878 if (!decl1 || !decl2)
11879 return false;
11880 gcc_checking_assert (DECL_P (decl1) && DECL_P (decl2));
11881 if (TREE_CODE (decl1) != TREE_CODE (decl2))
11882 return false;
11883 if (TREE_CODE (decl1) == TRANSLATION_UNIT_DECL)
11884 return true;
11885 if (TREE_CODE (decl1) != NAMESPACE_DECL
11886 && TREE_CODE (decl1) != TYPE_DECL)
11887 return false;
11888 if (!DECL_NAME (decl1))
11889 return false;
11890 gcc_checking_assert (TREE_CODE (DECL_NAME (decl1)) == IDENTIFIER_NODE);
11891 gcc_checking_assert (!DECL_NAME (decl2)
11892 || TREE_CODE (DECL_NAME (decl2)) == IDENTIFIER_NODE);
11893 if (DECL_NAME (decl1) != DECL_NAME (decl2))
11894 return false;
11895 return same_for_odr (DECL_CONTEXT (decl1),
11896 DECL_CONTEXT (decl2));
11899 /* For languages with One Definition Rule, work out if
11900 types are same even if the tree representation differs.
11901 This is non-trivial for LTO where minnor differences in
11902 the type representation may have prevented type merging
11903 to merge two copies of otherwise equivalent type. */
11905 bool
11906 types_same_for_odr (tree type1, tree type2)
11908 gcc_checking_assert (TYPE_P (type1) && TYPE_P (type2));
11909 type1 = TYPE_MAIN_VARIANT (type1);
11910 type2 = TYPE_MAIN_VARIANT (type2);
11911 if (type1 == type2)
11912 return true;
11914 #ifndef ENABLE_CHECKING
11915 if (!in_lto_p)
11916 return false;
11917 #endif
11919 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
11920 on the corresponding TYPE_STUB_DECL. */
11921 if (type_in_anonymous_namespace_p (type1)
11922 || type_in_anonymous_namespace_p (type2))
11923 return false;
11924 /* When assembler name of virtual table is available, it is
11925 easy to compare types for equivalence. */
11926 if (TYPE_BINFO (type1) && TYPE_BINFO (type2)
11927 && BINFO_VTABLE (TYPE_BINFO (type1))
11928 && BINFO_VTABLE (TYPE_BINFO (type2)))
11930 tree v1 = BINFO_VTABLE (TYPE_BINFO (type1));
11931 tree v2 = BINFO_VTABLE (TYPE_BINFO (type2));
11933 if (TREE_CODE (v1) == POINTER_PLUS_EXPR)
11935 if (TREE_CODE (v2) != POINTER_PLUS_EXPR
11936 || !operand_equal_p (TREE_OPERAND (v1, 1),
11937 TREE_OPERAND (v2, 1), 0))
11938 return false;
11939 v1 = TREE_OPERAND (TREE_OPERAND (v1, 0), 0);
11940 v2 = TREE_OPERAND (TREE_OPERAND (v2, 0), 0);
11942 v1 = DECL_ASSEMBLER_NAME (v1);
11943 v2 = DECL_ASSEMBLER_NAME (v2);
11944 return (v1 == v2);
11947 /* FIXME: the code comparing type names consider all instantiations of the
11948 same template to have same name. This is because we have no access
11949 to template parameters. For types with no virtual method tables
11950 we thus can return false positives. At the moment we do not need
11951 to compare types in other scenarios than devirtualization. */
11953 /* If types are not structuraly same, do not bother to contnue.
11954 Match in the remainder of code would mean ODR violation. */
11955 if (!types_compatible_p (type1, type2))
11956 return false;
11957 if (!TYPE_NAME (type1))
11958 return false;
11959 if (!decls_same_for_odr (TYPE_NAME (type1), TYPE_NAME (type2)))
11960 return false;
11961 if (!same_for_odr (TYPE_CONTEXT (type1), TYPE_CONTEXT (type2)))
11962 return false;
11963 /* When not in LTO the MAIN_VARIANT check should be the same. */
11964 gcc_assert (in_lto_p);
11966 return true;
11969 /* TARGET is a call target of GIMPLE call statement
11970 (obtained by gimple_call_fn). Return true if it is
11971 OBJ_TYPE_REF representing an virtual call of C++ method.
11972 (As opposed to OBJ_TYPE_REF representing objc calls
11973 through a cast where middle-end devirtualization machinery
11974 can't apply.) */
11976 bool
11977 virtual_method_call_p (tree target)
11979 if (TREE_CODE (target) != OBJ_TYPE_REF)
11980 return false;
11981 target = TREE_TYPE (target);
11982 gcc_checking_assert (TREE_CODE (target) == POINTER_TYPE);
11983 target = TREE_TYPE (target);
11984 if (TREE_CODE (target) == FUNCTION_TYPE)
11985 return false;
11986 gcc_checking_assert (TREE_CODE (target) == METHOD_TYPE);
11987 return true;
11990 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
11992 tree
11993 obj_type_ref_class (tree ref)
11995 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
11996 ref = TREE_TYPE (ref);
11997 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
11998 ref = TREE_TYPE (ref);
11999 /* We look for type THIS points to. ObjC also builds
12000 OBJ_TYPE_REF with non-method calls, Their first parameter
12001 ID however also corresponds to class type. */
12002 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12003 || TREE_CODE (ref) == FUNCTION_TYPE);
12004 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12005 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12006 return TREE_TYPE (ref);
12009 /* Return true if T is in anonymous namespace. */
12011 bool
12012 type_in_anonymous_namespace_p (tree t)
12014 return (TYPE_STUB_DECL (t) && !TREE_PUBLIC (TYPE_STUB_DECL (t)));
12017 /* Try to find a base info of BINFO that would have its field decl at offset
12018 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12019 found, return, otherwise return NULL_TREE. */
12021 tree
12022 get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
12024 tree type = BINFO_TYPE (binfo);
12026 while (true)
12028 HOST_WIDE_INT pos, size;
12029 tree fld;
12030 int i;
12032 if (types_same_for_odr (type, expected_type))
12033 return binfo;
12034 if (offset < 0)
12035 return NULL_TREE;
12037 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12039 if (TREE_CODE (fld) != FIELD_DECL)
12040 continue;
12042 pos = int_bit_position (fld);
12043 size = tree_to_uhwi (DECL_SIZE (fld));
12044 if (pos <= offset && (pos + size) > offset)
12045 break;
12047 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12048 return NULL_TREE;
12050 if (!DECL_ARTIFICIAL (fld))
12052 binfo = TYPE_BINFO (TREE_TYPE (fld));
12053 if (!binfo)
12054 return NULL_TREE;
12056 /* Offset 0 indicates the primary base, whose vtable contents are
12057 represented in the binfo for the derived class. */
12058 else if (offset != 0)
12060 tree base_binfo, binfo2 = binfo;
12062 /* Find BINFO corresponding to FLD. This is bit harder
12063 by a fact that in virtual inheritance we may need to walk down
12064 the non-virtual inheritance chain. */
12065 while (true)
12067 tree containing_binfo = NULL, found_binfo = NULL;
12068 for (i = 0; BINFO_BASE_ITERATE (binfo2, i, base_binfo); i++)
12069 if (types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12071 found_binfo = base_binfo;
12072 break;
12074 else
12075 if ((tree_to_shwi (BINFO_OFFSET (base_binfo))
12076 - tree_to_shwi (BINFO_OFFSET (binfo)))
12077 * BITS_PER_UNIT < pos
12078 /* Rule out types with no virtual methods or we can get confused
12079 here by zero sized bases. */
12080 && BINFO_VTABLE (TYPE_BINFO (BINFO_TYPE (base_binfo)))
12081 && (!containing_binfo
12082 || (tree_to_shwi (BINFO_OFFSET (containing_binfo))
12083 < tree_to_shwi (BINFO_OFFSET (base_binfo)))))
12084 containing_binfo = base_binfo;
12085 if (found_binfo)
12087 binfo = found_binfo;
12088 break;
12090 if (!containing_binfo)
12091 return NULL_TREE;
12092 binfo2 = containing_binfo;
12096 type = TREE_TYPE (fld);
12097 offset -= pos;
12101 /* Returns true if X is a typedef decl. */
12103 bool
12104 is_typedef_decl (tree x)
12106 return (x && TREE_CODE (x) == TYPE_DECL
12107 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12110 /* Returns true iff TYPE is a type variant created for a typedef. */
12112 bool
12113 typedef_variant_p (tree type)
12115 return is_typedef_decl (TYPE_NAME (type));
12118 /* Warn about a use of an identifier which was marked deprecated. */
12119 void
12120 warn_deprecated_use (tree node, tree attr)
12122 const char *msg;
12124 if (node == 0 || !warn_deprecated_decl)
12125 return;
12127 if (!attr)
12129 if (DECL_P (node))
12130 attr = DECL_ATTRIBUTES (node);
12131 else if (TYPE_P (node))
12133 tree decl = TYPE_STUB_DECL (node);
12134 if (decl)
12135 attr = lookup_attribute ("deprecated",
12136 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12140 if (attr)
12141 attr = lookup_attribute ("deprecated", attr);
12143 if (attr)
12144 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12145 else
12146 msg = NULL;
12148 if (DECL_P (node))
12150 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
12151 if (msg)
12152 warning (OPT_Wdeprecated_declarations,
12153 "%qD is deprecated (declared at %r%s:%d%R): %s",
12154 node, "locus", xloc.file, xloc.line, msg);
12155 else
12156 warning (OPT_Wdeprecated_declarations,
12157 "%qD is deprecated (declared at %r%s:%d%R)",
12158 node, "locus", xloc.file, xloc.line);
12160 else if (TYPE_P (node))
12162 tree what = NULL_TREE;
12163 tree decl = TYPE_STUB_DECL (node);
12165 if (TYPE_NAME (node))
12167 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12168 what = TYPE_NAME (node);
12169 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12170 && DECL_NAME (TYPE_NAME (node)))
12171 what = DECL_NAME (TYPE_NAME (node));
12174 if (decl)
12176 expanded_location xloc
12177 = expand_location (DECL_SOURCE_LOCATION (decl));
12178 if (what)
12180 if (msg)
12181 warning (OPT_Wdeprecated_declarations,
12182 "%qE is deprecated (declared at %r%s:%d%R): %s",
12183 what, "locus", xloc.file, xloc.line, msg);
12184 else
12185 warning (OPT_Wdeprecated_declarations,
12186 "%qE is deprecated (declared at %r%s:%d%R)",
12187 what, "locus", xloc.file, xloc.line);
12189 else
12191 if (msg)
12192 warning (OPT_Wdeprecated_declarations,
12193 "type is deprecated (declared at %r%s:%d%R): %s",
12194 "locus", xloc.file, xloc.line, msg);
12195 else
12196 warning (OPT_Wdeprecated_declarations,
12197 "type is deprecated (declared at %r%s:%d%R)",
12198 "locus", xloc.file, xloc.line);
12201 else
12203 if (what)
12205 if (msg)
12206 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
12207 what, msg);
12208 else
12209 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
12211 else
12213 if (msg)
12214 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
12215 msg);
12216 else
12217 warning (OPT_Wdeprecated_declarations, "type is deprecated");
12223 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12224 somewhere in it. */
12226 bool
12227 contains_bitfld_component_ref_p (const_tree ref)
12229 while (handled_component_p (ref))
12231 if (TREE_CODE (ref) == COMPONENT_REF
12232 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12233 return true;
12234 ref = TREE_OPERAND (ref, 0);
12237 return false;
12240 /* Try to determine whether a TRY_CATCH expression can fall through.
12241 This is a subroutine of block_may_fallthru. */
12243 static bool
12244 try_catch_may_fallthru (const_tree stmt)
12246 tree_stmt_iterator i;
12248 /* If the TRY block can fall through, the whole TRY_CATCH can
12249 fall through. */
12250 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12251 return true;
12253 i = tsi_start (TREE_OPERAND (stmt, 1));
12254 switch (TREE_CODE (tsi_stmt (i)))
12256 case CATCH_EXPR:
12257 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12258 catch expression and a body. The whole TRY_CATCH may fall
12259 through iff any of the catch bodies falls through. */
12260 for (; !tsi_end_p (i); tsi_next (&i))
12262 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12263 return true;
12265 return false;
12267 case EH_FILTER_EXPR:
12268 /* The exception filter expression only matters if there is an
12269 exception. If the exception does not match EH_FILTER_TYPES,
12270 we will execute EH_FILTER_FAILURE, and we will fall through
12271 if that falls through. If the exception does match
12272 EH_FILTER_TYPES, the stack unwinder will continue up the
12273 stack, so we will not fall through. We don't know whether we
12274 will throw an exception which matches EH_FILTER_TYPES or not,
12275 so we just ignore EH_FILTER_TYPES and assume that we might
12276 throw an exception which doesn't match. */
12277 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12279 default:
12280 /* This case represents statements to be executed when an
12281 exception occurs. Those statements are implicitly followed
12282 by a RESX statement to resume execution after the exception.
12283 So in this case the TRY_CATCH never falls through. */
12284 return false;
12288 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12289 need not be 100% accurate; simply be conservative and return true if we
12290 don't know. This is used only to avoid stupidly generating extra code.
12291 If we're wrong, we'll just delete the extra code later. */
12293 bool
12294 block_may_fallthru (const_tree block)
12296 /* This CONST_CAST is okay because expr_last returns its argument
12297 unmodified and we assign it to a const_tree. */
12298 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12300 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12302 case GOTO_EXPR:
12303 case RETURN_EXPR:
12304 /* Easy cases. If the last statement of the block implies
12305 control transfer, then we can't fall through. */
12306 return false;
12308 case SWITCH_EXPR:
12309 /* If SWITCH_LABELS is set, this is lowered, and represents a
12310 branch to a selected label and hence can not fall through.
12311 Otherwise SWITCH_BODY is set, and the switch can fall
12312 through. */
12313 return SWITCH_LABELS (stmt) == NULL_TREE;
12315 case COND_EXPR:
12316 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12317 return true;
12318 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12320 case BIND_EXPR:
12321 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12323 case TRY_CATCH_EXPR:
12324 return try_catch_may_fallthru (stmt);
12326 case TRY_FINALLY_EXPR:
12327 /* The finally clause is always executed after the try clause,
12328 so if it does not fall through, then the try-finally will not
12329 fall through. Otherwise, if the try clause does not fall
12330 through, then when the finally clause falls through it will
12331 resume execution wherever the try clause was going. So the
12332 whole try-finally will only fall through if both the try
12333 clause and the finally clause fall through. */
12334 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12335 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12337 case MODIFY_EXPR:
12338 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12339 stmt = TREE_OPERAND (stmt, 1);
12340 else
12341 return true;
12342 /* FALLTHRU */
12344 case CALL_EXPR:
12345 /* Functions that do not return do not fall through. */
12346 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12348 case CLEANUP_POINT_EXPR:
12349 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12351 case TARGET_EXPR:
12352 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12354 case ERROR_MARK:
12355 return true;
12357 default:
12358 return lang_hooks.block_may_fallthru (stmt);
12362 /* True if we are using EH to handle cleanups. */
12363 static bool using_eh_for_cleanups_flag = false;
12365 /* This routine is called from front ends to indicate eh should be used for
12366 cleanups. */
12367 void
12368 using_eh_for_cleanups (void)
12370 using_eh_for_cleanups_flag = true;
12373 /* Query whether EH is used for cleanups. */
12374 bool
12375 using_eh_for_cleanups_p (void)
12377 return using_eh_for_cleanups_flag;
12380 /* Wrapper for tree_code_name to ensure that tree code is valid */
12381 const char *
12382 get_tree_code_name (enum tree_code code)
12384 const char *invalid = "<invalid tree code>";
12386 if (code >= MAX_TREE_CODES)
12387 return invalid;
12389 return tree_code_name[code];
12392 /* Drops the TREE_OVERFLOW flag from T. */
12394 tree
12395 drop_tree_overflow (tree t)
12397 gcc_checking_assert (TREE_OVERFLOW (t));
12399 /* For tree codes with a sharing machinery re-build the result. */
12400 if (TREE_CODE (t) == INTEGER_CST)
12401 return wide_int_to_tree (TREE_TYPE (t), t);
12403 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12404 and drop the flag. */
12405 t = copy_node (t);
12406 TREE_OVERFLOW (t) = 0;
12407 return t;
12410 /* Given a memory reference expression T, return its base address.
12411 The base address of a memory reference expression is the main
12412 object being referenced. For instance, the base address for
12413 'array[i].fld[j]' is 'array'. You can think of this as stripping
12414 away the offset part from a memory address.
12416 This function calls handled_component_p to strip away all the inner
12417 parts of the memory reference until it reaches the base object. */
12419 tree
12420 get_base_address (tree t)
12422 while (handled_component_p (t))
12423 t = TREE_OPERAND (t, 0);
12425 if ((TREE_CODE (t) == MEM_REF
12426 || TREE_CODE (t) == TARGET_MEM_REF)
12427 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12428 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12430 /* ??? Either the alias oracle or all callers need to properly deal
12431 with WITH_SIZE_EXPRs before we can look through those. */
12432 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12433 return NULL_TREE;
12435 return t;
12438 #include "gt-tree.h"