* tree.c (warn_deprecated_use): Return bool. Simplify logic.
[official-gcc.git] / gcc / tree.c
blob68165f4deed50bd72cddf477c1000369c16fcb9a
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2018 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 can occasionally
28 calls language-dependent routines. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "target.h"
35 #include "tree.h"
36 #include "gimple.h"
37 #include "tree-pass.h"
38 #include "ssa.h"
39 #include "cgraph.h"
40 #include "diagnostic.h"
41 #include "flags.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "attribs.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "output.h"
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
55 #include "gimplify.h"
56 #include "tree-dfa.h"
57 #include "params.h"
58 #include "langhooks-def.h"
59 #include "tree-diagnostic.h"
60 #include "except.h"
61 #include "builtins.h"
62 #include "print-tree.h"
63 #include "ipa-utils.h"
64 #include "selftest.h"
65 #include "stringpool.h"
66 #include "attribs.h"
67 #include "rtl.h"
68 #include "regs.h"
69 #include "tree-vector-builder.h"
71 /* Tree code classes. */
73 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
74 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76 const enum tree_code_class tree_code_type[] = {
77 #include "all-tree.def"
80 #undef DEFTREECODE
81 #undef END_OF_BASE_TREE_CODES
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
88 #define END_OF_BASE_TREE_CODES 0,
90 const unsigned char tree_code_length[] = {
91 #include "all-tree.def"
94 #undef DEFTREECODE
95 #undef END_OF_BASE_TREE_CODES
97 /* Names of tree components.
98 Used for printing out the tree and error messages. */
99 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 #define END_OF_BASE_TREE_CODES "@dummy",
102 static const char *const tree_code_name[] = {
103 #include "all-tree.def"
106 #undef DEFTREECODE
107 #undef END_OF_BASE_TREE_CODES
109 /* Each tree code class has an associated string representation.
110 These must correspond to the tree_code_class entries. */
112 const char *const tree_code_class_strings[] =
114 "exceptional",
115 "constant",
116 "type",
117 "declaration",
118 "reference",
119 "comparison",
120 "unary",
121 "binary",
122 "statement",
123 "vl_exp",
124 "expression"
127 /* obstack.[ch] explicitly declined to prototype this. */
128 extern int _obstack_allocated_p (struct obstack *h, void *obj);
130 /* Statistics-gathering stuff. */
132 static uint64_t tree_code_counts[MAX_TREE_CODES];
133 uint64_t tree_node_counts[(int) all_kinds];
134 uint64_t tree_node_sizes[(int) all_kinds];
136 /* Keep in sync with tree.h:enum tree_node_kind. */
137 static const char * const tree_node_kind_names[] = {
138 "decls",
139 "types",
140 "blocks",
141 "stmts",
142 "refs",
143 "exprs",
144 "constants",
145 "identifiers",
146 "vecs",
147 "binfos",
148 "ssa names",
149 "constructors",
150 "random kinds",
151 "lang_decl kinds",
152 "lang_type kinds",
153 "omp clauses",
156 /* Unique id for next decl created. */
157 static GTY(()) int next_decl_uid;
158 /* Unique id for next type created. */
159 static GTY(()) unsigned next_type_uid = 1;
160 /* Unique id for next debug decl created. Use negative numbers,
161 to catch erroneous uses. */
162 static GTY(()) int next_debug_decl_uid;
164 /* Since we cannot rehash a type after it is in the table, we have to
165 keep the hash code. */
167 struct GTY((for_user)) type_hash {
168 unsigned long hash;
169 tree type;
172 /* Initial size of the hash table (rounded to next prime). */
173 #define TYPE_HASH_INITIAL_SIZE 1000
175 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
177 static hashval_t hash (type_hash *t) { return t->hash; }
178 static bool equal (type_hash *a, type_hash *b);
180 static int
181 keep_cache_entry (type_hash *&t)
183 return ggc_marked_p (t->type);
187 /* Now here is the hash table. When recording a type, it is added to
188 the slot whose index is the hash code. Note that the hash table is
189 used for several kinds of types (function types, array types and
190 array index range types, for now). While all these live in the
191 same table, they are completely independent, and the hash code is
192 computed differently for each of these. */
194 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
196 /* Hash table and temporary node for larger integer const values. */
197 static GTY (()) tree int_cst_node;
199 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
201 static hashval_t hash (tree t);
202 static bool equal (tree x, tree y);
205 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
207 /* Class and variable for making sure that there is a single POLY_INT_CST
208 for a given value. */
209 struct poly_int_cst_hasher : ggc_cache_ptr_hash<tree_node>
211 typedef std::pair<tree, const poly_wide_int *> compare_type;
212 static hashval_t hash (tree t);
213 static bool equal (tree x, const compare_type &y);
216 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
218 /* Hash table for optimization flags and target option flags. Use the same
219 hash table for both sets of options. Nodes for building the current
220 optimization and target option nodes. The assumption is most of the time
221 the options created will already be in the hash table, so we avoid
222 allocating and freeing up a node repeatably. */
223 static GTY (()) tree cl_optimization_node;
224 static GTY (()) tree cl_target_option_node;
226 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
228 static hashval_t hash (tree t);
229 static bool equal (tree x, tree y);
232 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
234 /* General tree->tree mapping structure for use in hash tables. */
237 static GTY ((cache))
238 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
240 static GTY ((cache))
241 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
243 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
245 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
247 static bool
248 equal (tree_vec_map *a, tree_vec_map *b)
250 return a->base.from == b->base.from;
253 static int
254 keep_cache_entry (tree_vec_map *&m)
256 return ggc_marked_p (m->base.from);
260 static GTY ((cache))
261 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
263 static void set_type_quals (tree, int);
264 static void print_type_hash_statistics (void);
265 static void print_debug_expr_statistics (void);
266 static void print_value_expr_statistics (void);
268 tree global_trees[TI_MAX];
269 tree integer_types[itk_none];
271 bool int_n_enabled_p[NUM_INT_N_ENTS];
272 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
274 bool tree_contains_struct[MAX_TREE_CODES][64];
276 /* Number of operands for each OpenMP clause. */
277 unsigned const char omp_clause_num_ops[] =
279 0, /* OMP_CLAUSE_ERROR */
280 1, /* OMP_CLAUSE_PRIVATE */
281 1, /* OMP_CLAUSE_SHARED */
282 1, /* OMP_CLAUSE_FIRSTPRIVATE */
283 2, /* OMP_CLAUSE_LASTPRIVATE */
284 5, /* OMP_CLAUSE_REDUCTION */
285 1, /* OMP_CLAUSE_COPYIN */
286 1, /* OMP_CLAUSE_COPYPRIVATE */
287 3, /* OMP_CLAUSE_LINEAR */
288 2, /* OMP_CLAUSE_ALIGNED */
289 1, /* OMP_CLAUSE_DEPEND */
290 1, /* OMP_CLAUSE_UNIFORM */
291 1, /* OMP_CLAUSE_TO_DECLARE */
292 1, /* OMP_CLAUSE_LINK */
293 2, /* OMP_CLAUSE_FROM */
294 2, /* OMP_CLAUSE_TO */
295 2, /* OMP_CLAUSE_MAP */
296 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
297 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
298 2, /* OMP_CLAUSE__CACHE_ */
299 2, /* OMP_CLAUSE_GANG */
300 1, /* OMP_CLAUSE_ASYNC */
301 1, /* OMP_CLAUSE_WAIT */
302 0, /* OMP_CLAUSE_AUTO */
303 0, /* OMP_CLAUSE_SEQ */
304 1, /* OMP_CLAUSE__LOOPTEMP_ */
305 1, /* OMP_CLAUSE_IF */
306 1, /* OMP_CLAUSE_NUM_THREADS */
307 1, /* OMP_CLAUSE_SCHEDULE */
308 0, /* OMP_CLAUSE_NOWAIT */
309 1, /* OMP_CLAUSE_ORDERED */
310 0, /* OMP_CLAUSE_DEFAULT */
311 3, /* OMP_CLAUSE_COLLAPSE */
312 0, /* OMP_CLAUSE_UNTIED */
313 1, /* OMP_CLAUSE_FINAL */
314 0, /* OMP_CLAUSE_MERGEABLE */
315 1, /* OMP_CLAUSE_DEVICE */
316 1, /* OMP_CLAUSE_DIST_SCHEDULE */
317 0, /* OMP_CLAUSE_INBRANCH */
318 0, /* OMP_CLAUSE_NOTINBRANCH */
319 1, /* OMP_CLAUSE_NUM_TEAMS */
320 1, /* OMP_CLAUSE_THREAD_LIMIT */
321 0, /* OMP_CLAUSE_PROC_BIND */
322 1, /* OMP_CLAUSE_SAFELEN */
323 1, /* OMP_CLAUSE_SIMDLEN */
324 0, /* OMP_CLAUSE_FOR */
325 0, /* OMP_CLAUSE_PARALLEL */
326 0, /* OMP_CLAUSE_SECTIONS */
327 0, /* OMP_CLAUSE_TASKGROUP */
328 1, /* OMP_CLAUSE_PRIORITY */
329 1, /* OMP_CLAUSE_GRAINSIZE */
330 1, /* OMP_CLAUSE_NUM_TASKS */
331 0, /* OMP_CLAUSE_NOGROUP */
332 0, /* OMP_CLAUSE_THREADS */
333 0, /* OMP_CLAUSE_SIMD */
334 1, /* OMP_CLAUSE_HINT */
335 0, /* OMP_CLAUSE_DEFALTMAP */
336 1, /* OMP_CLAUSE__SIMDUID_ */
337 0, /* OMP_CLAUSE__SIMT_ */
338 0, /* OMP_CLAUSE_INDEPENDENT */
339 1, /* OMP_CLAUSE_WORKER */
340 1, /* OMP_CLAUSE_VECTOR */
341 1, /* OMP_CLAUSE_NUM_GANGS */
342 1, /* OMP_CLAUSE_NUM_WORKERS */
343 1, /* OMP_CLAUSE_VECTOR_LENGTH */
344 3, /* OMP_CLAUSE_TILE */
345 2, /* OMP_CLAUSE__GRIDDIM_ */
348 const char * const omp_clause_code_name[] =
350 "error_clause",
351 "private",
352 "shared",
353 "firstprivate",
354 "lastprivate",
355 "reduction",
356 "copyin",
357 "copyprivate",
358 "linear",
359 "aligned",
360 "depend",
361 "uniform",
362 "to",
363 "link",
364 "from",
365 "to",
366 "map",
367 "use_device_ptr",
368 "is_device_ptr",
369 "_cache_",
370 "gang",
371 "async",
372 "wait",
373 "auto",
374 "seq",
375 "_looptemp_",
376 "if",
377 "num_threads",
378 "schedule",
379 "nowait",
380 "ordered",
381 "default",
382 "collapse",
383 "untied",
384 "final",
385 "mergeable",
386 "device",
387 "dist_schedule",
388 "inbranch",
389 "notinbranch",
390 "num_teams",
391 "thread_limit",
392 "proc_bind",
393 "safelen",
394 "simdlen",
395 "for",
396 "parallel",
397 "sections",
398 "taskgroup",
399 "priority",
400 "grainsize",
401 "num_tasks",
402 "nogroup",
403 "threads",
404 "simd",
405 "hint",
406 "defaultmap",
407 "_simduid_",
408 "_simt_",
409 "independent",
410 "worker",
411 "vector",
412 "num_gangs",
413 "num_workers",
414 "vector_length",
415 "tile",
416 "_griddim_"
420 /* Return the tree node structure used by tree code CODE. */
422 static inline enum tree_node_structure_enum
423 tree_node_structure_for_code (enum tree_code code)
425 switch (TREE_CODE_CLASS (code))
427 case tcc_declaration:
429 switch (code)
431 case FIELD_DECL:
432 return TS_FIELD_DECL;
433 case PARM_DECL:
434 return TS_PARM_DECL;
435 case VAR_DECL:
436 return TS_VAR_DECL;
437 case LABEL_DECL:
438 return TS_LABEL_DECL;
439 case RESULT_DECL:
440 return TS_RESULT_DECL;
441 case DEBUG_EXPR_DECL:
442 return TS_DECL_WRTL;
443 case CONST_DECL:
444 return TS_CONST_DECL;
445 case TYPE_DECL:
446 return TS_TYPE_DECL;
447 case FUNCTION_DECL:
448 return TS_FUNCTION_DECL;
449 case TRANSLATION_UNIT_DECL:
450 return TS_TRANSLATION_UNIT_DECL;
451 default:
452 return TS_DECL_NON_COMMON;
455 case tcc_type:
456 return TS_TYPE_NON_COMMON;
457 case tcc_reference:
458 case tcc_comparison:
459 case tcc_unary:
460 case tcc_binary:
461 case tcc_expression:
462 case tcc_statement:
463 case tcc_vl_exp:
464 return TS_EXP;
465 default: /* tcc_constant and tcc_exceptional */
466 break;
468 switch (code)
470 /* tcc_constant cases. */
471 case VOID_CST: return TS_TYPED;
472 case INTEGER_CST: return TS_INT_CST;
473 case POLY_INT_CST: return TS_POLY_INT_CST;
474 case REAL_CST: return TS_REAL_CST;
475 case FIXED_CST: return TS_FIXED_CST;
476 case COMPLEX_CST: return TS_COMPLEX;
477 case VECTOR_CST: return TS_VECTOR;
478 case STRING_CST: return TS_STRING;
479 /* tcc_exceptional cases. */
480 case ERROR_MARK: return TS_COMMON;
481 case IDENTIFIER_NODE: return TS_IDENTIFIER;
482 case TREE_LIST: return TS_LIST;
483 case TREE_VEC: return TS_VEC;
484 case SSA_NAME: return TS_SSA_NAME;
485 case PLACEHOLDER_EXPR: return TS_COMMON;
486 case STATEMENT_LIST: return TS_STATEMENT_LIST;
487 case BLOCK: return TS_BLOCK;
488 case CONSTRUCTOR: return TS_CONSTRUCTOR;
489 case TREE_BINFO: return TS_BINFO;
490 case OMP_CLAUSE: return TS_OMP_CLAUSE;
491 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
492 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
494 default:
495 gcc_unreachable ();
500 /* Initialize tree_contains_struct to describe the hierarchy of tree
501 nodes. */
503 static void
504 initialize_tree_contains_struct (void)
506 unsigned i;
508 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
510 enum tree_code code;
511 enum tree_node_structure_enum ts_code;
513 code = (enum tree_code) i;
514 ts_code = tree_node_structure_for_code (code);
516 /* Mark the TS structure itself. */
517 tree_contains_struct[code][ts_code] = 1;
519 /* Mark all the structures that TS is derived from. */
520 switch (ts_code)
522 case TS_TYPED:
523 case TS_BLOCK:
524 case TS_OPTIMIZATION:
525 case TS_TARGET_OPTION:
526 MARK_TS_BASE (code);
527 break;
529 case TS_COMMON:
530 case TS_INT_CST:
531 case TS_POLY_INT_CST:
532 case TS_REAL_CST:
533 case TS_FIXED_CST:
534 case TS_VECTOR:
535 case TS_STRING:
536 case TS_COMPLEX:
537 case TS_SSA_NAME:
538 case TS_CONSTRUCTOR:
539 case TS_EXP:
540 case TS_STATEMENT_LIST:
541 MARK_TS_TYPED (code);
542 break;
544 case TS_IDENTIFIER:
545 case TS_DECL_MINIMAL:
546 case TS_TYPE_COMMON:
547 case TS_LIST:
548 case TS_VEC:
549 case TS_BINFO:
550 case TS_OMP_CLAUSE:
551 MARK_TS_COMMON (code);
552 break;
554 case TS_TYPE_WITH_LANG_SPECIFIC:
555 MARK_TS_TYPE_COMMON (code);
556 break;
558 case TS_TYPE_NON_COMMON:
559 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
560 break;
562 case TS_DECL_COMMON:
563 MARK_TS_DECL_MINIMAL (code);
564 break;
566 case TS_DECL_WRTL:
567 case TS_CONST_DECL:
568 MARK_TS_DECL_COMMON (code);
569 break;
571 case TS_DECL_NON_COMMON:
572 MARK_TS_DECL_WITH_VIS (code);
573 break;
575 case TS_DECL_WITH_VIS:
576 case TS_PARM_DECL:
577 case TS_LABEL_DECL:
578 case TS_RESULT_DECL:
579 MARK_TS_DECL_WRTL (code);
580 break;
582 case TS_FIELD_DECL:
583 MARK_TS_DECL_COMMON (code);
584 break;
586 case TS_VAR_DECL:
587 MARK_TS_DECL_WITH_VIS (code);
588 break;
590 case TS_TYPE_DECL:
591 case TS_FUNCTION_DECL:
592 MARK_TS_DECL_NON_COMMON (code);
593 break;
595 case TS_TRANSLATION_UNIT_DECL:
596 MARK_TS_DECL_COMMON (code);
597 break;
599 default:
600 gcc_unreachable ();
604 /* Basic consistency checks for attributes used in fold. */
605 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
606 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
607 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
608 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
609 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
610 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
611 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
612 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
613 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
614 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
615 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
616 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
617 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
618 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
619 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
620 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
621 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
622 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
623 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
624 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
625 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
626 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
627 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
628 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
629 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
630 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
631 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
632 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
633 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
634 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
635 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
636 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
637 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
638 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
639 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
640 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
641 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
642 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
643 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
644 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
648 /* Init tree.c. */
650 void
651 init_ttree (void)
653 /* Initialize the hash table of types. */
654 type_hash_table
655 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
657 debug_expr_for_decl
658 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
660 value_expr_for_decl
661 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
663 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
665 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
667 int_cst_node = make_int_cst (1, 1);
669 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
671 cl_optimization_node = make_node (OPTIMIZATION_NODE);
672 cl_target_option_node = make_node (TARGET_OPTION_NODE);
674 /* Initialize the tree_contains_struct array. */
675 initialize_tree_contains_struct ();
676 lang_hooks.init_ts ();
680 /* The name of the object as the assembler will see it (but before any
681 translations made by ASM_OUTPUT_LABELREF). Often this is the same
682 as DECL_NAME. It is an IDENTIFIER_NODE. */
683 tree
684 decl_assembler_name (tree decl)
686 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
687 lang_hooks.set_decl_assembler_name (decl);
688 return DECL_ASSEMBLER_NAME_RAW (decl);
691 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
692 (either of which may be NULL). Inform the FE, if this changes the
693 name. */
695 void
696 overwrite_decl_assembler_name (tree decl, tree name)
698 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
699 lang_hooks.overwrite_decl_assembler_name (decl, name);
702 /* When the target supports COMDAT groups, this indicates which group the
703 DECL is associated with. This can be either an IDENTIFIER_NODE or a
704 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
705 tree
706 decl_comdat_group (const_tree node)
708 struct symtab_node *snode = symtab_node::get (node);
709 if (!snode)
710 return NULL;
711 return snode->get_comdat_group ();
714 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
715 tree
716 decl_comdat_group_id (const_tree node)
718 struct symtab_node *snode = symtab_node::get (node);
719 if (!snode)
720 return NULL;
721 return snode->get_comdat_group_id ();
724 /* When the target supports named section, return its name as IDENTIFIER_NODE
725 or NULL if it is in no section. */
726 const char *
727 decl_section_name (const_tree node)
729 struct symtab_node *snode = symtab_node::get (node);
730 if (!snode)
731 return NULL;
732 return snode->get_section ();
735 /* Set section name of NODE to VALUE (that is expected to be
736 identifier node) */
737 void
738 set_decl_section_name (tree node, const char *value)
740 struct symtab_node *snode;
742 if (value == NULL)
744 snode = symtab_node::get (node);
745 if (!snode)
746 return;
748 else if (VAR_P (node))
749 snode = varpool_node::get_create (node);
750 else
751 snode = cgraph_node::get_create (node);
752 snode->set_section (value);
755 /* Return TLS model of a variable NODE. */
756 enum tls_model
757 decl_tls_model (const_tree node)
759 struct varpool_node *snode = varpool_node::get (node);
760 if (!snode)
761 return TLS_MODEL_NONE;
762 return snode->tls_model;
765 /* Set TLS model of variable NODE to MODEL. */
766 void
767 set_decl_tls_model (tree node, enum tls_model model)
769 struct varpool_node *vnode;
771 if (model == TLS_MODEL_NONE)
773 vnode = varpool_node::get (node);
774 if (!vnode)
775 return;
777 else
778 vnode = varpool_node::get_create (node);
779 vnode->tls_model = model;
782 /* Compute the number of bytes occupied by a tree with code CODE.
783 This function cannot be used for nodes that have variable sizes,
784 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
785 size_t
786 tree_code_size (enum tree_code code)
788 switch (TREE_CODE_CLASS (code))
790 case tcc_declaration: /* A decl node */
791 switch (code)
793 case FIELD_DECL: return sizeof (tree_field_decl);
794 case PARM_DECL: return sizeof (tree_parm_decl);
795 case VAR_DECL: return sizeof (tree_var_decl);
796 case LABEL_DECL: return sizeof (tree_label_decl);
797 case RESULT_DECL: return sizeof (tree_result_decl);
798 case CONST_DECL: return sizeof (tree_const_decl);
799 case TYPE_DECL: return sizeof (tree_type_decl);
800 case FUNCTION_DECL: return sizeof (tree_function_decl);
801 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
802 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
803 case NAMESPACE_DECL:
804 case IMPORTED_DECL:
805 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
806 default:
807 gcc_checking_assert (code >= NUM_TREE_CODES);
808 return lang_hooks.tree_size (code);
811 case tcc_type: /* a type node */
812 switch (code)
814 case OFFSET_TYPE:
815 case ENUMERAL_TYPE:
816 case BOOLEAN_TYPE:
817 case INTEGER_TYPE:
818 case REAL_TYPE:
819 case POINTER_TYPE:
820 case REFERENCE_TYPE:
821 case NULLPTR_TYPE:
822 case FIXED_POINT_TYPE:
823 case COMPLEX_TYPE:
824 case VECTOR_TYPE:
825 case ARRAY_TYPE:
826 case RECORD_TYPE:
827 case UNION_TYPE:
828 case QUAL_UNION_TYPE:
829 case VOID_TYPE:
830 case POINTER_BOUNDS_TYPE:
831 case FUNCTION_TYPE:
832 case METHOD_TYPE:
833 case LANG_TYPE: return sizeof (tree_type_non_common);
834 default:
835 gcc_checking_assert (code >= NUM_TREE_CODES);
836 return lang_hooks.tree_size (code);
839 case tcc_reference: /* a reference */
840 case tcc_expression: /* an expression */
841 case tcc_statement: /* an expression with side effects */
842 case tcc_comparison: /* a comparison expression */
843 case tcc_unary: /* a unary arithmetic expression */
844 case tcc_binary: /* a binary arithmetic expression */
845 return (sizeof (struct tree_exp)
846 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
848 case tcc_constant: /* a constant */
849 switch (code)
851 case VOID_CST: return sizeof (tree_typed);
852 case INTEGER_CST: gcc_unreachable ();
853 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
854 case REAL_CST: return sizeof (tree_real_cst);
855 case FIXED_CST: return sizeof (tree_fixed_cst);
856 case COMPLEX_CST: return sizeof (tree_complex);
857 case VECTOR_CST: gcc_unreachable ();
858 case STRING_CST: gcc_unreachable ();
859 default:
860 gcc_checking_assert (code >= NUM_TREE_CODES);
861 return lang_hooks.tree_size (code);
864 case tcc_exceptional: /* something random, like an identifier. */
865 switch (code)
867 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
868 case TREE_LIST: return sizeof (tree_list);
870 case ERROR_MARK:
871 case PLACEHOLDER_EXPR: return sizeof (tree_common);
873 case TREE_VEC: gcc_unreachable ();
874 case OMP_CLAUSE: gcc_unreachable ();
876 case SSA_NAME: return sizeof (tree_ssa_name);
878 case STATEMENT_LIST: return sizeof (tree_statement_list);
879 case BLOCK: return sizeof (struct tree_block);
880 case CONSTRUCTOR: return sizeof (tree_constructor);
881 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
882 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
884 default:
885 gcc_checking_assert (code >= NUM_TREE_CODES);
886 return lang_hooks.tree_size (code);
889 default:
890 gcc_unreachable ();
894 /* Compute the number of bytes occupied by NODE. This routine only
895 looks at TREE_CODE, except for those nodes that have variable sizes. */
896 size_t
897 tree_size (const_tree node)
899 const enum tree_code code = TREE_CODE (node);
900 switch (code)
902 case INTEGER_CST:
903 return (sizeof (struct tree_int_cst)
904 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
906 case TREE_BINFO:
907 return (offsetof (struct tree_binfo, base_binfos)
908 + vec<tree, va_gc>
909 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
911 case TREE_VEC:
912 return (sizeof (struct tree_vec)
913 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
915 case VECTOR_CST:
916 return (sizeof (struct tree_vector)
917 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
919 case STRING_CST:
920 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
922 case OMP_CLAUSE:
923 return (sizeof (struct tree_omp_clause)
924 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
925 * sizeof (tree));
927 default:
928 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
929 return (sizeof (struct tree_exp)
930 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
931 else
932 return tree_code_size (code);
936 /* Return tree node kind based on tree CODE. */
938 static tree_node_kind
939 get_stats_node_kind (enum tree_code code)
941 enum tree_code_class type = TREE_CODE_CLASS (code);
943 switch (type)
945 case tcc_declaration: /* A decl node */
946 return d_kind;
947 case tcc_type: /* a type node */
948 return t_kind;
949 case tcc_statement: /* an expression with side effects */
950 return s_kind;
951 case tcc_reference: /* a reference */
952 return r_kind;
953 case tcc_expression: /* an expression */
954 case tcc_comparison: /* a comparison expression */
955 case tcc_unary: /* a unary arithmetic expression */
956 case tcc_binary: /* a binary arithmetic expression */
957 return e_kind;
958 case tcc_constant: /* a constant */
959 return c_kind;
960 case tcc_exceptional: /* something random, like an identifier. */
961 switch (code)
963 case IDENTIFIER_NODE:
964 return id_kind;
965 case TREE_VEC:
966 return vec_kind;
967 case TREE_BINFO:
968 return binfo_kind;
969 case SSA_NAME:
970 return ssa_name_kind;
971 case BLOCK:
972 return b_kind;
973 case CONSTRUCTOR:
974 return constr_kind;
975 case OMP_CLAUSE:
976 return omp_clause_kind;
977 default:
978 return x_kind;
980 break;
981 case tcc_vl_exp:
982 return e_kind;
983 default:
984 gcc_unreachable ();
988 /* Record interesting allocation statistics for a tree node with CODE
989 and LENGTH. */
991 static void
992 record_node_allocation_statistics (enum tree_code code, size_t length)
994 if (!GATHER_STATISTICS)
995 return;
997 tree_node_kind kind = get_stats_node_kind (code);
999 tree_code_counts[(int) code]++;
1000 tree_node_counts[(int) kind]++;
1001 tree_node_sizes[(int) kind] += length;
1004 /* Allocate and return a new UID from the DECL_UID namespace. */
1007 allocate_decl_uid (void)
1009 return next_decl_uid++;
1012 /* Return a newly allocated node of code CODE. For decl and type
1013 nodes, some other fields are initialized. The rest of the node is
1014 initialized to zero. This function cannot be used for TREE_VEC,
1015 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1016 tree_code_size.
1018 Achoo! I got a code in the node. */
1020 tree
1021 make_node (enum tree_code code MEM_STAT_DECL)
1023 tree t;
1024 enum tree_code_class type = TREE_CODE_CLASS (code);
1025 size_t length = tree_code_size (code);
1027 record_node_allocation_statistics (code, length);
1029 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1030 TREE_SET_CODE (t, code);
1032 switch (type)
1034 case tcc_statement:
1035 if (code != DEBUG_BEGIN_STMT)
1036 TREE_SIDE_EFFECTS (t) = 1;
1037 break;
1039 case tcc_declaration:
1040 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1042 if (code == FUNCTION_DECL)
1044 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1045 SET_DECL_MODE (t, FUNCTION_MODE);
1047 else
1048 SET_DECL_ALIGN (t, 1);
1050 DECL_SOURCE_LOCATION (t) = input_location;
1051 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1052 DECL_UID (t) = --next_debug_decl_uid;
1053 else
1055 DECL_UID (t) = allocate_decl_uid ();
1056 SET_DECL_PT_UID (t, -1);
1058 if (TREE_CODE (t) == LABEL_DECL)
1059 LABEL_DECL_UID (t) = -1;
1061 break;
1063 case tcc_type:
1064 TYPE_UID (t) = next_type_uid++;
1065 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1066 TYPE_USER_ALIGN (t) = 0;
1067 TYPE_MAIN_VARIANT (t) = t;
1068 TYPE_CANONICAL (t) = t;
1070 /* Default to no attributes for type, but let target change that. */
1071 TYPE_ATTRIBUTES (t) = NULL_TREE;
1072 targetm.set_default_type_attributes (t);
1074 /* We have not yet computed the alias set for this type. */
1075 TYPE_ALIAS_SET (t) = -1;
1076 break;
1078 case tcc_constant:
1079 TREE_CONSTANT (t) = 1;
1080 break;
1082 case tcc_expression:
1083 switch (code)
1085 case INIT_EXPR:
1086 case MODIFY_EXPR:
1087 case VA_ARG_EXPR:
1088 case PREDECREMENT_EXPR:
1089 case PREINCREMENT_EXPR:
1090 case POSTDECREMENT_EXPR:
1091 case POSTINCREMENT_EXPR:
1092 /* All of these have side-effects, no matter what their
1093 operands are. */
1094 TREE_SIDE_EFFECTS (t) = 1;
1095 break;
1097 default:
1098 break;
1100 break;
1102 case tcc_exceptional:
1103 switch (code)
1105 case TARGET_OPTION_NODE:
1106 TREE_TARGET_OPTION(t)
1107 = ggc_cleared_alloc<struct cl_target_option> ();
1108 break;
1110 case OPTIMIZATION_NODE:
1111 TREE_OPTIMIZATION (t)
1112 = ggc_cleared_alloc<struct cl_optimization> ();
1113 break;
1115 default:
1116 break;
1118 break;
1120 default:
1121 /* Other classes need no special treatment. */
1122 break;
1125 return t;
1128 /* Free tree node. */
1130 void
1131 free_node (tree node)
1133 enum tree_code code = TREE_CODE (node);
1134 if (GATHER_STATISTICS)
1136 enum tree_node_kind kind = get_stats_node_kind (code);
1138 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1139 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1140 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1142 tree_code_counts[(int) TREE_CODE (node)]--;
1143 tree_node_counts[(int) kind]--;
1144 tree_node_sizes[(int) kind] -= tree_size (node);
1146 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1147 vec_free (CONSTRUCTOR_ELTS (node));
1148 else if (code == BLOCK)
1149 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1150 else if (code == TREE_BINFO)
1151 vec_free (BINFO_BASE_ACCESSES (node));
1152 ggc_free (node);
1155 /* Return a new node with the same contents as NODE except that its
1156 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1158 tree
1159 copy_node (tree node MEM_STAT_DECL)
1161 tree t;
1162 enum tree_code code = TREE_CODE (node);
1163 size_t length;
1165 gcc_assert (code != STATEMENT_LIST);
1167 length = tree_size (node);
1168 record_node_allocation_statistics (code, length);
1169 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1170 memcpy (t, node, length);
1172 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1173 TREE_CHAIN (t) = 0;
1174 TREE_ASM_WRITTEN (t) = 0;
1175 TREE_VISITED (t) = 0;
1177 if (TREE_CODE_CLASS (code) == tcc_declaration)
1179 if (code == DEBUG_EXPR_DECL)
1180 DECL_UID (t) = --next_debug_decl_uid;
1181 else
1183 DECL_UID (t) = allocate_decl_uid ();
1184 if (DECL_PT_UID_SET_P (node))
1185 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1187 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1188 && DECL_HAS_VALUE_EXPR_P (node))
1190 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1191 DECL_HAS_VALUE_EXPR_P (t) = 1;
1193 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1194 if (VAR_P (node))
1196 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1197 t->decl_with_vis.symtab_node = NULL;
1199 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1201 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1202 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1204 if (TREE_CODE (node) == FUNCTION_DECL)
1206 DECL_STRUCT_FUNCTION (t) = NULL;
1207 t->decl_with_vis.symtab_node = NULL;
1210 else if (TREE_CODE_CLASS (code) == tcc_type)
1212 TYPE_UID (t) = next_type_uid++;
1213 /* The following is so that the debug code for
1214 the copy is different from the original type.
1215 The two statements usually duplicate each other
1216 (because they clear fields of the same union),
1217 but the optimizer should catch that. */
1218 TYPE_SYMTAB_ADDRESS (t) = 0;
1219 TYPE_SYMTAB_DIE (t) = 0;
1221 /* Do not copy the values cache. */
1222 if (TYPE_CACHED_VALUES_P (t))
1224 TYPE_CACHED_VALUES_P (t) = 0;
1225 TYPE_CACHED_VALUES (t) = NULL_TREE;
1228 else if (code == TARGET_OPTION_NODE)
1230 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1231 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1232 sizeof (struct cl_target_option));
1234 else if (code == OPTIMIZATION_NODE)
1236 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1237 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1238 sizeof (struct cl_optimization));
1241 return t;
1244 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1245 For example, this can copy a list made of TREE_LIST nodes. */
1247 tree
1248 copy_list (tree list)
1250 tree head;
1251 tree prev, next;
1253 if (list == 0)
1254 return 0;
1256 head = prev = copy_node (list);
1257 next = TREE_CHAIN (list);
1258 while (next)
1260 TREE_CHAIN (prev) = copy_node (next);
1261 prev = TREE_CHAIN (prev);
1262 next = TREE_CHAIN (next);
1264 return head;
1268 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1269 INTEGER_CST with value CST and type TYPE. */
1271 static unsigned int
1272 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1274 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1275 /* We need extra HWIs if CST is an unsigned integer with its
1276 upper bit set. */
1277 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1278 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1279 return cst.get_len ();
1282 /* Return a new INTEGER_CST with value CST and type TYPE. */
1284 static tree
1285 build_new_int_cst (tree type, const wide_int &cst)
1287 unsigned int len = cst.get_len ();
1288 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1289 tree nt = make_int_cst (len, ext_len);
1291 if (len < ext_len)
1293 --ext_len;
1294 TREE_INT_CST_ELT (nt, ext_len)
1295 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1296 for (unsigned int i = len; i < ext_len; ++i)
1297 TREE_INT_CST_ELT (nt, i) = -1;
1299 else if (TYPE_UNSIGNED (type)
1300 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1302 len--;
1303 TREE_INT_CST_ELT (nt, len)
1304 = zext_hwi (cst.elt (len),
1305 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1308 for (unsigned int i = 0; i < len; i++)
1309 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1310 TREE_TYPE (nt) = type;
1311 return nt;
1314 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1316 static tree
1317 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1318 CXX_MEM_STAT_INFO)
1320 size_t length = sizeof (struct tree_poly_int_cst);
1321 record_node_allocation_statistics (POLY_INT_CST, length);
1323 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1325 TREE_SET_CODE (t, POLY_INT_CST);
1326 TREE_CONSTANT (t) = 1;
1327 TREE_TYPE (t) = type;
1328 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1329 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1330 return t;
1333 /* Create a constant tree that contains CST sign-extended to TYPE. */
1335 tree
1336 build_int_cst (tree type, poly_int64 cst)
1338 /* Support legacy code. */
1339 if (!type)
1340 type = integer_type_node;
1342 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1345 /* Create a constant tree that contains CST zero-extended to TYPE. */
1347 tree
1348 build_int_cstu (tree type, poly_uint64 cst)
1350 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1353 /* Create a constant tree that contains CST sign-extended to TYPE. */
1355 tree
1356 build_int_cst_type (tree type, poly_int64 cst)
1358 gcc_assert (type);
1359 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1362 /* Constructs tree in type TYPE from with value given by CST. Signedness
1363 of CST is assumed to be the same as the signedness of TYPE. */
1365 tree
1366 double_int_to_tree (tree type, double_int cst)
1368 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1371 /* We force the wide_int CST to the range of the type TYPE by sign or
1372 zero extending it. OVERFLOWABLE indicates if we are interested in
1373 overflow of the value, when >0 we are only interested in signed
1374 overflow, for <0 we are interested in any overflow. OVERFLOWED
1375 indicates whether overflow has already occurred. CONST_OVERFLOWED
1376 indicates whether constant overflow has already occurred. We force
1377 T's value to be within range of T's type (by setting to 0 or 1 all
1378 the bits outside the type's range). We set TREE_OVERFLOWED if,
1379 OVERFLOWED is nonzero,
1380 or OVERFLOWABLE is >0 and signed overflow occurs
1381 or OVERFLOWABLE is <0 and any overflow occurs
1382 We return a new tree node for the extended wide_int. The node
1383 is shared if no overflow flags are set. */
1386 tree
1387 force_fit_type (tree type, const poly_wide_int_ref &cst,
1388 int overflowable, bool overflowed)
1390 signop sign = TYPE_SIGN (type);
1392 /* If we need to set overflow flags, return a new unshared node. */
1393 if (overflowed || !wi::fits_to_tree_p (cst, type))
1395 if (overflowed
1396 || overflowable < 0
1397 || (overflowable > 0 && sign == SIGNED))
1399 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1400 sign);
1401 tree t;
1402 if (tmp.is_constant ())
1403 t = build_new_int_cst (type, tmp.coeffs[0]);
1404 else
1406 tree coeffs[NUM_POLY_INT_COEFFS];
1407 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1409 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1410 TREE_OVERFLOW (coeffs[i]) = 1;
1412 t = build_new_poly_int_cst (type, coeffs);
1414 TREE_OVERFLOW (t) = 1;
1415 return t;
1419 /* Else build a shared node. */
1420 return wide_int_to_tree (type, cst);
1423 /* These are the hash table functions for the hash table of INTEGER_CST
1424 nodes of a sizetype. */
1426 /* Return the hash code X, an INTEGER_CST. */
1428 hashval_t
1429 int_cst_hasher::hash (tree x)
1431 const_tree const t = x;
1432 hashval_t code = TYPE_UID (TREE_TYPE (t));
1433 int i;
1435 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1436 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1438 return code;
1441 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1442 is the same as that given by *Y, which is the same. */
1444 bool
1445 int_cst_hasher::equal (tree x, tree y)
1447 const_tree const xt = x;
1448 const_tree const yt = y;
1450 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1451 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1452 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1453 return false;
1455 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1456 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1457 return false;
1459 return true;
1462 /* Create an INT_CST node of TYPE and value CST.
1463 The returned node is always shared. For small integers we use a
1464 per-type vector cache, for larger ones we use a single hash table.
1465 The value is extended from its precision according to the sign of
1466 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1467 the upper bits and ensures that hashing and value equality based
1468 upon the underlying HOST_WIDE_INTs works without masking. */
1470 static tree
1471 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1473 tree t;
1474 int ix = -1;
1475 int limit = 0;
1477 gcc_assert (type);
1478 unsigned int prec = TYPE_PRECISION (type);
1479 signop sgn = TYPE_SIGN (type);
1481 /* Verify that everything is canonical. */
1482 int l = pcst.get_len ();
1483 if (l > 1)
1485 if (pcst.elt (l - 1) == 0)
1486 gcc_checking_assert (pcst.elt (l - 2) < 0);
1487 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1488 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1491 wide_int cst = wide_int::from (pcst, prec, sgn);
1492 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1494 if (ext_len == 1)
1496 /* We just need to store a single HOST_WIDE_INT. */
1497 HOST_WIDE_INT hwi;
1498 if (TYPE_UNSIGNED (type))
1499 hwi = cst.to_uhwi ();
1500 else
1501 hwi = cst.to_shwi ();
1503 switch (TREE_CODE (type))
1505 case NULLPTR_TYPE:
1506 gcc_assert (hwi == 0);
1507 /* Fallthru. */
1509 case POINTER_TYPE:
1510 case REFERENCE_TYPE:
1511 case POINTER_BOUNDS_TYPE:
1512 /* Cache NULL pointer and zero bounds. */
1513 if (hwi == 0)
1515 limit = 1;
1516 ix = 0;
1518 break;
1520 case BOOLEAN_TYPE:
1521 /* Cache false or true. */
1522 limit = 2;
1523 if (IN_RANGE (hwi, 0, 1))
1524 ix = hwi;
1525 break;
1527 case INTEGER_TYPE:
1528 case OFFSET_TYPE:
1529 if (TYPE_SIGN (type) == UNSIGNED)
1531 /* Cache [0, N). */
1532 limit = INTEGER_SHARE_LIMIT;
1533 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1534 ix = hwi;
1536 else
1538 /* Cache [-1, N). */
1539 limit = INTEGER_SHARE_LIMIT + 1;
1540 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1541 ix = hwi + 1;
1543 break;
1545 case ENUMERAL_TYPE:
1546 break;
1548 default:
1549 gcc_unreachable ();
1552 if (ix >= 0)
1554 /* Look for it in the type's vector of small shared ints. */
1555 if (!TYPE_CACHED_VALUES_P (type))
1557 TYPE_CACHED_VALUES_P (type) = 1;
1558 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1561 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1562 if (t)
1563 /* Make sure no one is clobbering the shared constant. */
1564 gcc_checking_assert (TREE_TYPE (t) == type
1565 && TREE_INT_CST_NUNITS (t) == 1
1566 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1567 && TREE_INT_CST_EXT_NUNITS (t) == 1
1568 && TREE_INT_CST_ELT (t, 0) == hwi);
1569 else
1571 /* Create a new shared int. */
1572 t = build_new_int_cst (type, cst);
1573 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1576 else
1578 /* Use the cache of larger shared ints, using int_cst_node as
1579 a temporary. */
1581 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1582 TREE_TYPE (int_cst_node) = type;
1584 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1585 t = *slot;
1586 if (!t)
1588 /* Insert this one into the hash table. */
1589 t = int_cst_node;
1590 *slot = t;
1591 /* Make a new node for next time round. */
1592 int_cst_node = make_int_cst (1, 1);
1596 else
1598 /* The value either hashes properly or we drop it on the floor
1599 for the gc to take care of. There will not be enough of them
1600 to worry about. */
1602 tree nt = build_new_int_cst (type, cst);
1603 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1604 t = *slot;
1605 if (!t)
1607 /* Insert this one into the hash table. */
1608 t = nt;
1609 *slot = t;
1611 else
1612 ggc_free (nt);
1615 return t;
1618 hashval_t
1619 poly_int_cst_hasher::hash (tree t)
1621 inchash::hash hstate;
1623 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1624 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1625 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1627 return hstate.end ();
1630 bool
1631 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1633 if (TREE_TYPE (x) != y.first)
1634 return false;
1635 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1636 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1637 return false;
1638 return true;
1641 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1642 The elements must also have type TYPE. */
1644 tree
1645 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1647 unsigned int prec = TYPE_PRECISION (type);
1648 gcc_assert (prec <= values.coeffs[0].get_precision ());
1649 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1651 inchash::hash h;
1652 h.add_int (TYPE_UID (type));
1653 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1654 h.add_wide_int (c.coeffs[i]);
1655 poly_int_cst_hasher::compare_type comp (type, &c);
1656 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1657 INSERT);
1658 if (*slot == NULL_TREE)
1660 tree coeffs[NUM_POLY_INT_COEFFS];
1661 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1662 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1663 *slot = build_new_poly_int_cst (type, coeffs);
1665 return *slot;
1668 /* Create a constant tree with value VALUE in type TYPE. */
1670 tree
1671 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1673 if (value.is_constant ())
1674 return wide_int_to_tree_1 (type, value.coeffs[0]);
1675 return build_poly_int_cst (type, value);
1678 void
1679 cache_integer_cst (tree t)
1681 tree type = TREE_TYPE (t);
1682 int ix = -1;
1683 int limit = 0;
1684 int prec = TYPE_PRECISION (type);
1686 gcc_assert (!TREE_OVERFLOW (t));
1688 switch (TREE_CODE (type))
1690 case NULLPTR_TYPE:
1691 gcc_assert (integer_zerop (t));
1692 /* Fallthru. */
1694 case POINTER_TYPE:
1695 case REFERENCE_TYPE:
1696 /* Cache NULL pointer. */
1697 if (integer_zerop (t))
1699 limit = 1;
1700 ix = 0;
1702 break;
1704 case BOOLEAN_TYPE:
1705 /* Cache false or true. */
1706 limit = 2;
1707 if (wi::ltu_p (wi::to_wide (t), 2))
1708 ix = TREE_INT_CST_ELT (t, 0);
1709 break;
1711 case INTEGER_TYPE:
1712 case OFFSET_TYPE:
1713 if (TYPE_UNSIGNED (type))
1715 /* Cache 0..N */
1716 limit = INTEGER_SHARE_LIMIT;
1718 /* This is a little hokie, but if the prec is smaller than
1719 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1720 obvious test will not get the correct answer. */
1721 if (prec < HOST_BITS_PER_WIDE_INT)
1723 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1724 ix = tree_to_uhwi (t);
1726 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1727 ix = tree_to_uhwi (t);
1729 else
1731 /* Cache -1..N */
1732 limit = INTEGER_SHARE_LIMIT + 1;
1734 if (integer_minus_onep (t))
1735 ix = 0;
1736 else if (!wi::neg_p (wi::to_wide (t)))
1738 if (prec < HOST_BITS_PER_WIDE_INT)
1740 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1741 ix = tree_to_shwi (t) + 1;
1743 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1744 ix = tree_to_shwi (t) + 1;
1747 break;
1749 case ENUMERAL_TYPE:
1750 break;
1752 default:
1753 gcc_unreachable ();
1756 if (ix >= 0)
1758 /* Look for it in the type's vector of small shared ints. */
1759 if (!TYPE_CACHED_VALUES_P (type))
1761 TYPE_CACHED_VALUES_P (type) = 1;
1762 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1765 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1766 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1768 else
1770 /* Use the cache of larger shared ints. */
1771 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1772 /* If there is already an entry for the number verify it's the
1773 same. */
1774 if (*slot)
1775 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1776 else
1777 /* Otherwise insert this one into the hash table. */
1778 *slot = t;
1783 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1784 and the rest are zeros. */
1786 tree
1787 build_low_bits_mask (tree type, unsigned bits)
1789 gcc_assert (bits <= TYPE_PRECISION (type));
1791 return wide_int_to_tree (type, wi::mask (bits, false,
1792 TYPE_PRECISION (type)));
1795 /* Checks that X is integer constant that can be expressed in (unsigned)
1796 HOST_WIDE_INT without loss of precision. */
1798 bool
1799 cst_and_fits_in_hwi (const_tree x)
1801 return (TREE_CODE (x) == INTEGER_CST
1802 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1805 /* Build a newly constructed VECTOR_CST with the given values of
1806 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1808 tree
1809 make_vector (unsigned log2_npatterns,
1810 unsigned int nelts_per_pattern MEM_STAT_DECL)
1812 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1813 tree t;
1814 unsigned npatterns = 1 << log2_npatterns;
1815 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1816 unsigned length = (sizeof (struct tree_vector)
1817 + (encoded_nelts - 1) * sizeof (tree));
1819 record_node_allocation_statistics (VECTOR_CST, length);
1821 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1823 TREE_SET_CODE (t, VECTOR_CST);
1824 TREE_CONSTANT (t) = 1;
1825 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1826 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1828 return t;
1831 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1832 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1834 tree
1835 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1837 unsigned HOST_WIDE_INT idx, nelts;
1838 tree value;
1840 /* We can't construct a VECTOR_CST for a variable number of elements. */
1841 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1842 tree_vector_builder vec (type, nelts, 1);
1843 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1845 if (TREE_CODE (value) == VECTOR_CST)
1847 /* If NELTS is constant then this must be too. */
1848 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1849 for (unsigned i = 0; i < sub_nelts; ++i)
1850 vec.quick_push (VECTOR_CST_ELT (value, i));
1852 else
1853 vec.quick_push (value);
1855 while (vec.length () < nelts)
1856 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1858 return vec.build ();
1861 /* Build a vector of type VECTYPE where all the elements are SCs. */
1862 tree
1863 build_vector_from_val (tree vectype, tree sc)
1865 unsigned HOST_WIDE_INT i, nunits;
1867 if (sc == error_mark_node)
1868 return sc;
1870 /* Verify that the vector type is suitable for SC. Note that there
1871 is some inconsistency in the type-system with respect to restrict
1872 qualifications of pointers. Vector types always have a main-variant
1873 element type and the qualification is applied to the vector-type.
1874 So TREE_TYPE (vector-type) does not return a properly qualified
1875 vector element-type. */
1876 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1877 TREE_TYPE (vectype)));
1879 if (CONSTANT_CLASS_P (sc))
1881 tree_vector_builder v (vectype, 1, 1);
1882 v.quick_push (sc);
1883 return v.build ();
1885 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1886 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1887 else
1889 vec<constructor_elt, va_gc> *v;
1890 vec_alloc (v, nunits);
1891 for (i = 0; i < nunits; ++i)
1892 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1893 return build_constructor (vectype, v);
1897 /* Build a vector series of type TYPE in which element I has the value
1898 BASE + I * STEP. The result is a constant if BASE and STEP are constant
1899 and a VEC_SERIES_EXPR otherwise. */
1901 tree
1902 build_vec_series (tree type, tree base, tree step)
1904 if (integer_zerop (step))
1905 return build_vector_from_val (type, base);
1906 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
1908 tree_vector_builder builder (type, 1, 3);
1909 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
1910 wi::to_wide (base) + wi::to_wide (step));
1911 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
1912 wi::to_wide (elt1) + wi::to_wide (step));
1913 builder.quick_push (base);
1914 builder.quick_push (elt1);
1915 builder.quick_push (elt2);
1916 return builder.build ();
1918 return build2 (VEC_SERIES_EXPR, type, base, step);
1921 /* Return a vector with the same number of units and number of bits
1922 as VEC_TYPE, but in which the elements are a linear series of unsigned
1923 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
1925 tree
1926 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
1928 tree index_vec_type = vec_type;
1929 tree index_elt_type = TREE_TYPE (vec_type);
1930 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
1931 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
1933 index_elt_type = build_nonstandard_integer_type
1934 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
1935 index_vec_type = build_vector_type (index_elt_type, nunits);
1938 tree_vector_builder v (index_vec_type, 1, 3);
1939 for (unsigned int i = 0; i < 3; ++i)
1940 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
1941 return v.build ();
1944 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1945 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1947 void
1948 recompute_constructor_flags (tree c)
1950 unsigned int i;
1951 tree val;
1952 bool constant_p = true;
1953 bool side_effects_p = false;
1954 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1956 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1958 /* Mostly ctors will have elts that don't have side-effects, so
1959 the usual case is to scan all the elements. Hence a single
1960 loop for both const and side effects, rather than one loop
1961 each (with early outs). */
1962 if (!TREE_CONSTANT (val))
1963 constant_p = false;
1964 if (TREE_SIDE_EFFECTS (val))
1965 side_effects_p = true;
1968 TREE_SIDE_EFFECTS (c) = side_effects_p;
1969 TREE_CONSTANT (c) = constant_p;
1972 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1973 CONSTRUCTOR C. */
1975 void
1976 verify_constructor_flags (tree c)
1978 unsigned int i;
1979 tree val;
1980 bool constant_p = TREE_CONSTANT (c);
1981 bool side_effects_p = TREE_SIDE_EFFECTS (c);
1982 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1984 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1986 if (constant_p && !TREE_CONSTANT (val))
1987 internal_error ("non-constant element in constant CONSTRUCTOR");
1988 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
1989 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1993 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1994 are in the vec pointed to by VALS. */
1995 tree
1996 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1998 tree c = make_node (CONSTRUCTOR);
2000 TREE_TYPE (c) = type;
2001 CONSTRUCTOR_ELTS (c) = vals;
2003 recompute_constructor_flags (c);
2005 return c;
2008 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2009 INDEX and VALUE. */
2010 tree
2011 build_constructor_single (tree type, tree index, tree value)
2013 vec<constructor_elt, va_gc> *v;
2014 constructor_elt elt = {index, value};
2016 vec_alloc (v, 1);
2017 v->quick_push (elt);
2019 return build_constructor (type, v);
2023 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2024 are in a list pointed to by VALS. */
2025 tree
2026 build_constructor_from_list (tree type, tree vals)
2028 tree t;
2029 vec<constructor_elt, va_gc> *v = NULL;
2031 if (vals)
2033 vec_alloc (v, list_length (vals));
2034 for (t = vals; t; t = TREE_CHAIN (t))
2035 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2038 return build_constructor (type, v);
2041 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2042 of elements, provided as index/value pairs. */
2044 tree
2045 build_constructor_va (tree type, int nelts, ...)
2047 vec<constructor_elt, va_gc> *v = NULL;
2048 va_list p;
2050 va_start (p, nelts);
2051 vec_alloc (v, nelts);
2052 while (nelts--)
2054 tree index = va_arg (p, tree);
2055 tree value = va_arg (p, tree);
2056 CONSTRUCTOR_APPEND_ELT (v, index, value);
2058 va_end (p);
2059 return build_constructor (type, v);
2062 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2064 tree
2065 build_clobber (tree type)
2067 tree clobber = build_constructor (type, NULL);
2068 TREE_THIS_VOLATILE (clobber) = true;
2069 return clobber;
2072 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2074 tree
2075 build_fixed (tree type, FIXED_VALUE_TYPE f)
2077 tree v;
2078 FIXED_VALUE_TYPE *fp;
2080 v = make_node (FIXED_CST);
2081 fp = ggc_alloc<fixed_value> ();
2082 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2084 TREE_TYPE (v) = type;
2085 TREE_FIXED_CST_PTR (v) = fp;
2086 return v;
2089 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2091 tree
2092 build_real (tree type, REAL_VALUE_TYPE d)
2094 tree v;
2095 REAL_VALUE_TYPE *dp;
2096 int overflow = 0;
2098 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2099 Consider doing it via real_convert now. */
2101 v = make_node (REAL_CST);
2102 dp = ggc_alloc<real_value> ();
2103 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2105 TREE_TYPE (v) = type;
2106 TREE_REAL_CST_PTR (v) = dp;
2107 TREE_OVERFLOW (v) = overflow;
2108 return v;
2111 /* Like build_real, but first truncate D to the type. */
2113 tree
2114 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2116 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2119 /* Return a new REAL_CST node whose type is TYPE
2120 and whose value is the integer value of the INTEGER_CST node I. */
2122 REAL_VALUE_TYPE
2123 real_value_from_int_cst (const_tree type, const_tree i)
2125 REAL_VALUE_TYPE d;
2127 /* Clear all bits of the real value type so that we can later do
2128 bitwise comparisons to see if two values are the same. */
2129 memset (&d, 0, sizeof d);
2131 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2132 TYPE_SIGN (TREE_TYPE (i)));
2133 return d;
2136 /* Given a tree representing an integer constant I, return a tree
2137 representing the same value as a floating-point constant of type TYPE. */
2139 tree
2140 build_real_from_int_cst (tree type, const_tree i)
2142 tree v;
2143 int overflow = TREE_OVERFLOW (i);
2145 v = build_real (type, real_value_from_int_cst (type, i));
2147 TREE_OVERFLOW (v) |= overflow;
2148 return v;
2151 /* Return a newly constructed STRING_CST node whose value is
2152 the LEN characters at STR.
2153 Note that for a C string literal, LEN should include the trailing NUL.
2154 The TREE_TYPE is not initialized. */
2156 tree
2157 build_string (int len, const char *str)
2159 tree s;
2160 size_t length;
2162 /* Do not waste bytes provided by padding of struct tree_string. */
2163 length = len + offsetof (struct tree_string, str) + 1;
2165 record_node_allocation_statistics (STRING_CST, length);
2167 s = (tree) ggc_internal_alloc (length);
2169 memset (s, 0, sizeof (struct tree_typed));
2170 TREE_SET_CODE (s, STRING_CST);
2171 TREE_CONSTANT (s) = 1;
2172 TREE_STRING_LENGTH (s) = len;
2173 memcpy (s->string.str, str, len);
2174 s->string.str[len] = '\0';
2176 return s;
2179 /* Return a newly constructed COMPLEX_CST node whose value is
2180 specified by the real and imaginary parts REAL and IMAG.
2181 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2182 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2184 tree
2185 build_complex (tree type, tree real, tree imag)
2187 tree t = make_node (COMPLEX_CST);
2189 TREE_REALPART (t) = real;
2190 TREE_IMAGPART (t) = imag;
2191 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2192 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2193 return t;
2196 /* Build a complex (inf +- 0i), such as for the result of cproj.
2197 TYPE is the complex tree type of the result. If NEG is true, the
2198 imaginary zero is negative. */
2200 tree
2201 build_complex_inf (tree type, bool neg)
2203 REAL_VALUE_TYPE rinf, rzero = dconst0;
2205 real_inf (&rinf);
2206 rzero.sign = neg;
2207 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2208 build_real (TREE_TYPE (type), rzero));
2211 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2212 element is set to 1. In particular, this is 1 + i for complex types. */
2214 tree
2215 build_each_one_cst (tree type)
2217 if (TREE_CODE (type) == COMPLEX_TYPE)
2219 tree scalar = build_one_cst (TREE_TYPE (type));
2220 return build_complex (type, scalar, scalar);
2222 else
2223 return build_one_cst (type);
2226 /* Return a constant of arithmetic type TYPE which is the
2227 multiplicative identity of the set TYPE. */
2229 tree
2230 build_one_cst (tree type)
2232 switch (TREE_CODE (type))
2234 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2235 case POINTER_TYPE: case REFERENCE_TYPE:
2236 case OFFSET_TYPE:
2237 return build_int_cst (type, 1);
2239 case REAL_TYPE:
2240 return build_real (type, dconst1);
2242 case FIXED_POINT_TYPE:
2243 /* We can only generate 1 for accum types. */
2244 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2245 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2247 case VECTOR_TYPE:
2249 tree scalar = build_one_cst (TREE_TYPE (type));
2251 return build_vector_from_val (type, scalar);
2254 case COMPLEX_TYPE:
2255 return build_complex (type,
2256 build_one_cst (TREE_TYPE (type)),
2257 build_zero_cst (TREE_TYPE (type)));
2259 default:
2260 gcc_unreachable ();
2264 /* Return an integer of type TYPE containing all 1's in as much precision as
2265 it contains, or a complex or vector whose subparts are such integers. */
2267 tree
2268 build_all_ones_cst (tree type)
2270 if (TREE_CODE (type) == COMPLEX_TYPE)
2272 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2273 return build_complex (type, scalar, scalar);
2275 else
2276 return build_minus_one_cst (type);
2279 /* Return a constant of arithmetic type TYPE which is the
2280 opposite of the multiplicative identity of the set TYPE. */
2282 tree
2283 build_minus_one_cst (tree type)
2285 switch (TREE_CODE (type))
2287 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2288 case POINTER_TYPE: case REFERENCE_TYPE:
2289 case OFFSET_TYPE:
2290 return build_int_cst (type, -1);
2292 case REAL_TYPE:
2293 return build_real (type, dconstm1);
2295 case FIXED_POINT_TYPE:
2296 /* We can only generate 1 for accum types. */
2297 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2298 return build_fixed (type,
2299 fixed_from_double_int (double_int_minus_one,
2300 SCALAR_TYPE_MODE (type)));
2302 case VECTOR_TYPE:
2304 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2306 return build_vector_from_val (type, scalar);
2309 case COMPLEX_TYPE:
2310 return build_complex (type,
2311 build_minus_one_cst (TREE_TYPE (type)),
2312 build_zero_cst (TREE_TYPE (type)));
2314 default:
2315 gcc_unreachable ();
2319 /* Build 0 constant of type TYPE. This is used by constructor folding
2320 and thus the constant should be represented in memory by
2321 zero(es). */
2323 tree
2324 build_zero_cst (tree type)
2326 switch (TREE_CODE (type))
2328 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2329 case POINTER_TYPE: case REFERENCE_TYPE:
2330 case OFFSET_TYPE: case NULLPTR_TYPE:
2331 return build_int_cst (type, 0);
2333 case REAL_TYPE:
2334 return build_real (type, dconst0);
2336 case FIXED_POINT_TYPE:
2337 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2339 case VECTOR_TYPE:
2341 tree scalar = build_zero_cst (TREE_TYPE (type));
2343 return build_vector_from_val (type, scalar);
2346 case COMPLEX_TYPE:
2348 tree zero = build_zero_cst (TREE_TYPE (type));
2350 return build_complex (type, zero, zero);
2353 default:
2354 if (!AGGREGATE_TYPE_P (type))
2355 return fold_convert (type, integer_zero_node);
2356 return build_constructor (type, NULL);
2361 /* Build a BINFO with LEN language slots. */
2363 tree
2364 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2366 tree t;
2367 size_t length = (offsetof (struct tree_binfo, base_binfos)
2368 + vec<tree, va_gc>::embedded_size (base_binfos));
2370 record_node_allocation_statistics (TREE_BINFO, length);
2372 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2374 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2376 TREE_SET_CODE (t, TREE_BINFO);
2378 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2380 return t;
2383 /* Create a CASE_LABEL_EXPR tree node and return it. */
2385 tree
2386 build_case_label (tree low_value, tree high_value, tree label_decl)
2388 tree t = make_node (CASE_LABEL_EXPR);
2390 TREE_TYPE (t) = void_type_node;
2391 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2393 CASE_LOW (t) = low_value;
2394 CASE_HIGH (t) = high_value;
2395 CASE_LABEL (t) = label_decl;
2396 CASE_CHAIN (t) = NULL_TREE;
2398 return t;
2401 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2402 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2403 The latter determines the length of the HOST_WIDE_INT vector. */
2405 tree
2406 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2408 tree t;
2409 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2410 + sizeof (struct tree_int_cst));
2412 gcc_assert (len);
2413 record_node_allocation_statistics (INTEGER_CST, length);
2415 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2417 TREE_SET_CODE (t, INTEGER_CST);
2418 TREE_INT_CST_NUNITS (t) = len;
2419 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2420 /* to_offset can only be applied to trees that are offset_int-sized
2421 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2422 must be exactly the precision of offset_int and so LEN is correct. */
2423 if (ext_len <= OFFSET_INT_ELTS)
2424 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2425 else
2426 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2428 TREE_CONSTANT (t) = 1;
2430 return t;
2433 /* Build a newly constructed TREE_VEC node of length LEN. */
2435 tree
2436 make_tree_vec (int len MEM_STAT_DECL)
2438 tree t;
2439 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2441 record_node_allocation_statistics (TREE_VEC, length);
2443 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2445 TREE_SET_CODE (t, TREE_VEC);
2446 TREE_VEC_LENGTH (t) = len;
2448 return t;
2451 /* Grow a TREE_VEC node to new length LEN. */
2453 tree
2454 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2456 gcc_assert (TREE_CODE (v) == TREE_VEC);
2458 int oldlen = TREE_VEC_LENGTH (v);
2459 gcc_assert (len > oldlen);
2461 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2462 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2464 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2466 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2468 TREE_VEC_LENGTH (v) = len;
2470 return v;
2473 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2474 fixed, and scalar, complex or vector. */
2477 zerop (const_tree expr)
2479 return (integer_zerop (expr)
2480 || real_zerop (expr)
2481 || fixed_zerop (expr));
2484 /* Return 1 if EXPR is the integer constant zero or a complex constant
2485 of zero. */
2488 integer_zerop (const_tree expr)
2490 switch (TREE_CODE (expr))
2492 case INTEGER_CST:
2493 return wi::to_wide (expr) == 0;
2494 case COMPLEX_CST:
2495 return (integer_zerop (TREE_REALPART (expr))
2496 && integer_zerop (TREE_IMAGPART (expr)));
2497 case VECTOR_CST:
2498 return (VECTOR_CST_NPATTERNS (expr) == 1
2499 && VECTOR_CST_DUPLICATE_P (expr)
2500 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2501 default:
2502 return false;
2506 /* Return 1 if EXPR is the integer constant one or the corresponding
2507 complex constant. */
2510 integer_onep (const_tree expr)
2512 switch (TREE_CODE (expr))
2514 case INTEGER_CST:
2515 return wi::eq_p (wi::to_widest (expr), 1);
2516 case COMPLEX_CST:
2517 return (integer_onep (TREE_REALPART (expr))
2518 && integer_zerop (TREE_IMAGPART (expr)));
2519 case VECTOR_CST:
2520 return (VECTOR_CST_NPATTERNS (expr) == 1
2521 && VECTOR_CST_DUPLICATE_P (expr)
2522 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2523 default:
2524 return false;
2528 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2529 return 1 if every piece is the integer constant one. */
2532 integer_each_onep (const_tree expr)
2534 if (TREE_CODE (expr) == COMPLEX_CST)
2535 return (integer_onep (TREE_REALPART (expr))
2536 && integer_onep (TREE_IMAGPART (expr)));
2537 else
2538 return integer_onep (expr);
2541 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2542 it contains, or a complex or vector whose subparts are such integers. */
2545 integer_all_onesp (const_tree expr)
2547 if (TREE_CODE (expr) == COMPLEX_CST
2548 && integer_all_onesp (TREE_REALPART (expr))
2549 && integer_all_onesp (TREE_IMAGPART (expr)))
2550 return 1;
2552 else if (TREE_CODE (expr) == VECTOR_CST)
2553 return (VECTOR_CST_NPATTERNS (expr) == 1
2554 && VECTOR_CST_DUPLICATE_P (expr)
2555 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2557 else if (TREE_CODE (expr) != INTEGER_CST)
2558 return 0;
2560 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2561 == wi::to_wide (expr));
2564 /* Return 1 if EXPR is the integer constant minus one. */
2567 integer_minus_onep (const_tree expr)
2569 if (TREE_CODE (expr) == COMPLEX_CST)
2570 return (integer_all_onesp (TREE_REALPART (expr))
2571 && integer_zerop (TREE_IMAGPART (expr)));
2572 else
2573 return integer_all_onesp (expr);
2576 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2577 one bit on). */
2580 integer_pow2p (const_tree expr)
2582 if (TREE_CODE (expr) == COMPLEX_CST
2583 && integer_pow2p (TREE_REALPART (expr))
2584 && integer_zerop (TREE_IMAGPART (expr)))
2585 return 1;
2587 if (TREE_CODE (expr) != INTEGER_CST)
2588 return 0;
2590 return wi::popcount (wi::to_wide (expr)) == 1;
2593 /* Return 1 if EXPR is an integer constant other than zero or a
2594 complex constant other than zero. */
2597 integer_nonzerop (const_tree expr)
2599 return ((TREE_CODE (expr) == INTEGER_CST
2600 && wi::to_wide (expr) != 0)
2601 || (TREE_CODE (expr) == COMPLEX_CST
2602 && (integer_nonzerop (TREE_REALPART (expr))
2603 || integer_nonzerop (TREE_IMAGPART (expr)))));
2606 /* Return 1 if EXPR is the integer constant one. For vector,
2607 return 1 if every piece is the integer constant minus one
2608 (representing the value TRUE). */
2611 integer_truep (const_tree expr)
2613 if (TREE_CODE (expr) == VECTOR_CST)
2614 return integer_all_onesp (expr);
2615 return integer_onep (expr);
2618 /* Return 1 if EXPR is the fixed-point constant zero. */
2621 fixed_zerop (const_tree expr)
2623 return (TREE_CODE (expr) == FIXED_CST
2624 && TREE_FIXED_CST (expr).data.is_zero ());
2627 /* Return the power of two represented by a tree node known to be a
2628 power of two. */
2631 tree_log2 (const_tree expr)
2633 if (TREE_CODE (expr) == COMPLEX_CST)
2634 return tree_log2 (TREE_REALPART (expr));
2636 return wi::exact_log2 (wi::to_wide (expr));
2639 /* Similar, but return the largest integer Y such that 2 ** Y is less
2640 than or equal to EXPR. */
2643 tree_floor_log2 (const_tree expr)
2645 if (TREE_CODE (expr) == COMPLEX_CST)
2646 return tree_log2 (TREE_REALPART (expr));
2648 return wi::floor_log2 (wi::to_wide (expr));
2651 /* Return number of known trailing zero bits in EXPR, or, if the value of
2652 EXPR is known to be zero, the precision of it's type. */
2654 unsigned int
2655 tree_ctz (const_tree expr)
2657 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2658 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2659 return 0;
2661 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2662 switch (TREE_CODE (expr))
2664 case INTEGER_CST:
2665 ret1 = wi::ctz (wi::to_wide (expr));
2666 return MIN (ret1, prec);
2667 case SSA_NAME:
2668 ret1 = wi::ctz (get_nonzero_bits (expr));
2669 return MIN (ret1, prec);
2670 case PLUS_EXPR:
2671 case MINUS_EXPR:
2672 case BIT_IOR_EXPR:
2673 case BIT_XOR_EXPR:
2674 case MIN_EXPR:
2675 case MAX_EXPR:
2676 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2677 if (ret1 == 0)
2678 return ret1;
2679 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2680 return MIN (ret1, ret2);
2681 case POINTER_PLUS_EXPR:
2682 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2683 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2684 /* Second operand is sizetype, which could be in theory
2685 wider than pointer's precision. Make sure we never
2686 return more than prec. */
2687 ret2 = MIN (ret2, prec);
2688 return MIN (ret1, ret2);
2689 case BIT_AND_EXPR:
2690 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2691 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2692 return MAX (ret1, ret2);
2693 case MULT_EXPR:
2694 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2695 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2696 return MIN (ret1 + ret2, prec);
2697 case LSHIFT_EXPR:
2698 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2699 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2700 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2702 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2703 return MIN (ret1 + ret2, prec);
2705 return ret1;
2706 case RSHIFT_EXPR:
2707 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2708 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2710 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2711 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2712 if (ret1 > ret2)
2713 return ret1 - ret2;
2715 return 0;
2716 case TRUNC_DIV_EXPR:
2717 case CEIL_DIV_EXPR:
2718 case FLOOR_DIV_EXPR:
2719 case ROUND_DIV_EXPR:
2720 case EXACT_DIV_EXPR:
2721 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2722 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2724 int l = tree_log2 (TREE_OPERAND (expr, 1));
2725 if (l >= 0)
2727 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2728 ret2 = l;
2729 if (ret1 > ret2)
2730 return ret1 - ret2;
2733 return 0;
2734 CASE_CONVERT:
2735 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2736 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2737 ret1 = prec;
2738 return MIN (ret1, prec);
2739 case SAVE_EXPR:
2740 return tree_ctz (TREE_OPERAND (expr, 0));
2741 case COND_EXPR:
2742 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2743 if (ret1 == 0)
2744 return 0;
2745 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2746 return MIN (ret1, ret2);
2747 case COMPOUND_EXPR:
2748 return tree_ctz (TREE_OPERAND (expr, 1));
2749 case ADDR_EXPR:
2750 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2751 if (ret1 > BITS_PER_UNIT)
2753 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2754 return MIN (ret1, prec);
2756 return 0;
2757 default:
2758 return 0;
2762 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2763 decimal float constants, so don't return 1 for them. */
2766 real_zerop (const_tree expr)
2768 switch (TREE_CODE (expr))
2770 case REAL_CST:
2771 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2772 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2773 case COMPLEX_CST:
2774 return real_zerop (TREE_REALPART (expr))
2775 && real_zerop (TREE_IMAGPART (expr));
2776 case VECTOR_CST:
2778 /* Don't simply check for a duplicate because the predicate
2779 accepts both +0.0 and -0.0. */
2780 unsigned count = vector_cst_encoded_nelts (expr);
2781 for (unsigned int i = 0; i < count; ++i)
2782 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2783 return false;
2784 return true;
2786 default:
2787 return false;
2791 /* Return 1 if EXPR is the real constant one in real or complex form.
2792 Trailing zeroes matter for decimal float constants, so don't return
2793 1 for them. */
2796 real_onep (const_tree expr)
2798 switch (TREE_CODE (expr))
2800 case REAL_CST:
2801 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2802 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2803 case COMPLEX_CST:
2804 return real_onep (TREE_REALPART (expr))
2805 && real_zerop (TREE_IMAGPART (expr));
2806 case VECTOR_CST:
2807 return (VECTOR_CST_NPATTERNS (expr) == 1
2808 && VECTOR_CST_DUPLICATE_P (expr)
2809 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2810 default:
2811 return false;
2815 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2816 matter for decimal float constants, so don't return 1 for them. */
2819 real_minus_onep (const_tree expr)
2821 switch (TREE_CODE (expr))
2823 case REAL_CST:
2824 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2825 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2826 case COMPLEX_CST:
2827 return real_minus_onep (TREE_REALPART (expr))
2828 && real_zerop (TREE_IMAGPART (expr));
2829 case VECTOR_CST:
2830 return (VECTOR_CST_NPATTERNS (expr) == 1
2831 && VECTOR_CST_DUPLICATE_P (expr)
2832 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2833 default:
2834 return false;
2838 /* Nonzero if EXP is a constant or a cast of a constant. */
2841 really_constant_p (const_tree exp)
2843 /* This is not quite the same as STRIP_NOPS. It does more. */
2844 while (CONVERT_EXPR_P (exp)
2845 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2846 exp = TREE_OPERAND (exp, 0);
2847 return TREE_CONSTANT (exp);
2850 /* Return true if T holds a polynomial pointer difference, storing it in
2851 *VALUE if so. A true return means that T's precision is no greater
2852 than 64 bits, which is the largest address space we support, so *VALUE
2853 never loses precision. However, the signedness of the result does
2854 not necessarily match the signedness of T: sometimes an unsigned type
2855 like sizetype is used to encode a value that is actually negative. */
2857 bool
2858 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
2860 if (!t)
2861 return false;
2862 if (TREE_CODE (t) == INTEGER_CST)
2864 if (!cst_and_fits_in_hwi (t))
2865 return false;
2866 *value = int_cst_value (t);
2867 return true;
2869 if (POLY_INT_CST_P (t))
2871 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2872 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
2873 return false;
2874 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2875 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
2876 return true;
2878 return false;
2881 poly_int64
2882 tree_to_poly_int64 (const_tree t)
2884 gcc_assert (tree_fits_poly_int64_p (t));
2885 if (POLY_INT_CST_P (t))
2886 return poly_int_cst_value (t).force_shwi ();
2887 return TREE_INT_CST_LOW (t);
2890 poly_uint64
2891 tree_to_poly_uint64 (const_tree t)
2893 gcc_assert (tree_fits_poly_uint64_p (t));
2894 if (POLY_INT_CST_P (t))
2895 return poly_int_cst_value (t).force_uhwi ();
2896 return TREE_INT_CST_LOW (t);
2899 /* Return first list element whose TREE_VALUE is ELEM.
2900 Return 0 if ELEM is not in LIST. */
2902 tree
2903 value_member (tree elem, tree list)
2905 while (list)
2907 if (elem == TREE_VALUE (list))
2908 return list;
2909 list = TREE_CHAIN (list);
2911 return NULL_TREE;
2914 /* Return first list element whose TREE_PURPOSE is ELEM.
2915 Return 0 if ELEM is not in LIST. */
2917 tree
2918 purpose_member (const_tree elem, tree list)
2920 while (list)
2922 if (elem == TREE_PURPOSE (list))
2923 return list;
2924 list = TREE_CHAIN (list);
2926 return NULL_TREE;
2929 /* Return true if ELEM is in V. */
2931 bool
2932 vec_member (const_tree elem, vec<tree, va_gc> *v)
2934 unsigned ix;
2935 tree t;
2936 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2937 if (elem == t)
2938 return true;
2939 return false;
2942 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2943 NULL_TREE. */
2945 tree
2946 chain_index (int idx, tree chain)
2948 for (; chain && idx > 0; --idx)
2949 chain = TREE_CHAIN (chain);
2950 return chain;
2953 /* Return nonzero if ELEM is part of the chain CHAIN. */
2956 chain_member (const_tree elem, const_tree chain)
2958 while (chain)
2960 if (elem == chain)
2961 return 1;
2962 chain = DECL_CHAIN (chain);
2965 return 0;
2968 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2969 We expect a null pointer to mark the end of the chain.
2970 This is the Lisp primitive `length'. */
2973 list_length (const_tree t)
2975 const_tree p = t;
2976 #ifdef ENABLE_TREE_CHECKING
2977 const_tree q = t;
2978 #endif
2979 int len = 0;
2981 while (p)
2983 p = TREE_CHAIN (p);
2984 #ifdef ENABLE_TREE_CHECKING
2985 if (len % 2)
2986 q = TREE_CHAIN (q);
2987 gcc_assert (p != q);
2988 #endif
2989 len++;
2992 return len;
2995 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2996 UNION_TYPE TYPE, or NULL_TREE if none. */
2998 tree
2999 first_field (const_tree type)
3001 tree t = TYPE_FIELDS (type);
3002 while (t && TREE_CODE (t) != FIELD_DECL)
3003 t = TREE_CHAIN (t);
3004 return t;
3007 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3008 by modifying the last node in chain 1 to point to chain 2.
3009 This is the Lisp primitive `nconc'. */
3011 tree
3012 chainon (tree op1, tree op2)
3014 tree t1;
3016 if (!op1)
3017 return op2;
3018 if (!op2)
3019 return op1;
3021 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3022 continue;
3023 TREE_CHAIN (t1) = op2;
3025 #ifdef ENABLE_TREE_CHECKING
3027 tree t2;
3028 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3029 gcc_assert (t2 != t1);
3031 #endif
3033 return op1;
3036 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3038 tree
3039 tree_last (tree chain)
3041 tree next;
3042 if (chain)
3043 while ((next = TREE_CHAIN (chain)))
3044 chain = next;
3045 return chain;
3048 /* Reverse the order of elements in the chain T,
3049 and return the new head of the chain (old last element). */
3051 tree
3052 nreverse (tree t)
3054 tree prev = 0, decl, next;
3055 for (decl = t; decl; decl = next)
3057 /* We shouldn't be using this function to reverse BLOCK chains; we
3058 have blocks_nreverse for that. */
3059 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3060 next = TREE_CHAIN (decl);
3061 TREE_CHAIN (decl) = prev;
3062 prev = decl;
3064 return prev;
3067 /* Return a newly created TREE_LIST node whose
3068 purpose and value fields are PARM and VALUE. */
3070 tree
3071 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3073 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3074 TREE_PURPOSE (t) = parm;
3075 TREE_VALUE (t) = value;
3076 return t;
3079 /* Build a chain of TREE_LIST nodes from a vector. */
3081 tree
3082 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3084 tree ret = NULL_TREE;
3085 tree *pp = &ret;
3086 unsigned int i;
3087 tree t;
3088 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3090 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3091 pp = &TREE_CHAIN (*pp);
3093 return ret;
3096 /* Return a newly created TREE_LIST node whose
3097 purpose and value fields are PURPOSE and VALUE
3098 and whose TREE_CHAIN is CHAIN. */
3100 tree
3101 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3103 tree node;
3105 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3106 memset (node, 0, sizeof (struct tree_common));
3108 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3110 TREE_SET_CODE (node, TREE_LIST);
3111 TREE_CHAIN (node) = chain;
3112 TREE_PURPOSE (node) = purpose;
3113 TREE_VALUE (node) = value;
3114 return node;
3117 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3118 trees. */
3120 vec<tree, va_gc> *
3121 ctor_to_vec (tree ctor)
3123 vec<tree, va_gc> *vec;
3124 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3125 unsigned int ix;
3126 tree val;
3128 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3129 vec->quick_push (val);
3131 return vec;
3134 /* Return the size nominally occupied by an object of type TYPE
3135 when it resides in memory. The value is measured in units of bytes,
3136 and its data type is that normally used for type sizes
3137 (which is the first type created by make_signed_type or
3138 make_unsigned_type). */
3140 tree
3141 size_in_bytes_loc (location_t loc, const_tree type)
3143 tree t;
3145 if (type == error_mark_node)
3146 return integer_zero_node;
3148 type = TYPE_MAIN_VARIANT (type);
3149 t = TYPE_SIZE_UNIT (type);
3151 if (t == 0)
3153 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3154 return size_zero_node;
3157 return t;
3160 /* Return the size of TYPE (in bytes) as a wide integer
3161 or return -1 if the size can vary or is larger than an integer. */
3163 HOST_WIDE_INT
3164 int_size_in_bytes (const_tree type)
3166 tree t;
3168 if (type == error_mark_node)
3169 return 0;
3171 type = TYPE_MAIN_VARIANT (type);
3172 t = TYPE_SIZE_UNIT (type);
3174 if (t && tree_fits_uhwi_p (t))
3175 return TREE_INT_CST_LOW (t);
3176 else
3177 return -1;
3180 /* Return the maximum size of TYPE (in bytes) as a wide integer
3181 or return -1 if the size can vary or is larger than an integer. */
3183 HOST_WIDE_INT
3184 max_int_size_in_bytes (const_tree type)
3186 HOST_WIDE_INT size = -1;
3187 tree size_tree;
3189 /* If this is an array type, check for a possible MAX_SIZE attached. */
3191 if (TREE_CODE (type) == ARRAY_TYPE)
3193 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3195 if (size_tree && tree_fits_uhwi_p (size_tree))
3196 size = tree_to_uhwi (size_tree);
3199 /* If we still haven't been able to get a size, see if the language
3200 can compute a maximum size. */
3202 if (size == -1)
3204 size_tree = lang_hooks.types.max_size (type);
3206 if (size_tree && tree_fits_uhwi_p (size_tree))
3207 size = tree_to_uhwi (size_tree);
3210 return size;
3213 /* Return the bit position of FIELD, in bits from the start of the record.
3214 This is a tree of type bitsizetype. */
3216 tree
3217 bit_position (const_tree field)
3219 return bit_from_pos (DECL_FIELD_OFFSET (field),
3220 DECL_FIELD_BIT_OFFSET (field));
3223 /* Return the byte position of FIELD, in bytes from the start of the record.
3224 This is a tree of type sizetype. */
3226 tree
3227 byte_position (const_tree field)
3229 return byte_from_pos (DECL_FIELD_OFFSET (field),
3230 DECL_FIELD_BIT_OFFSET (field));
3233 /* Likewise, but return as an integer. It must be representable in
3234 that way (since it could be a signed value, we don't have the
3235 option of returning -1 like int_size_in_byte can. */
3237 HOST_WIDE_INT
3238 int_byte_position (const_tree field)
3240 return tree_to_shwi (byte_position (field));
3243 /* Return the strictest alignment, in bits, that T is known to have. */
3245 unsigned int
3246 expr_align (const_tree t)
3248 unsigned int align0, align1;
3250 switch (TREE_CODE (t))
3252 CASE_CONVERT: case NON_LVALUE_EXPR:
3253 /* If we have conversions, we know that the alignment of the
3254 object must meet each of the alignments of the types. */
3255 align0 = expr_align (TREE_OPERAND (t, 0));
3256 align1 = TYPE_ALIGN (TREE_TYPE (t));
3257 return MAX (align0, align1);
3259 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3260 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3261 case CLEANUP_POINT_EXPR:
3262 /* These don't change the alignment of an object. */
3263 return expr_align (TREE_OPERAND (t, 0));
3265 case COND_EXPR:
3266 /* The best we can do is say that the alignment is the least aligned
3267 of the two arms. */
3268 align0 = expr_align (TREE_OPERAND (t, 1));
3269 align1 = expr_align (TREE_OPERAND (t, 2));
3270 return MIN (align0, align1);
3272 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3273 meaningfully, it's always 1. */
3274 case LABEL_DECL: case CONST_DECL:
3275 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3276 case FUNCTION_DECL:
3277 gcc_assert (DECL_ALIGN (t) != 0);
3278 return DECL_ALIGN (t);
3280 default:
3281 break;
3284 /* Otherwise take the alignment from that of the type. */
3285 return TYPE_ALIGN (TREE_TYPE (t));
3288 /* Return, as a tree node, the number of elements for TYPE (which is an
3289 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3291 tree
3292 array_type_nelts (const_tree type)
3294 tree index_type, min, max;
3296 /* If they did it with unspecified bounds, then we should have already
3297 given an error about it before we got here. */
3298 if (! TYPE_DOMAIN (type))
3299 return error_mark_node;
3301 index_type = TYPE_DOMAIN (type);
3302 min = TYPE_MIN_VALUE (index_type);
3303 max = TYPE_MAX_VALUE (index_type);
3305 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3306 if (!max)
3307 return error_mark_node;
3309 return (integer_zerop (min)
3310 ? max
3311 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3314 /* If arg is static -- a reference to an object in static storage -- then
3315 return the object. This is not the same as the C meaning of `static'.
3316 If arg isn't static, return NULL. */
3318 tree
3319 staticp (tree arg)
3321 switch (TREE_CODE (arg))
3323 case FUNCTION_DECL:
3324 /* Nested functions are static, even though taking their address will
3325 involve a trampoline as we unnest the nested function and create
3326 the trampoline on the tree level. */
3327 return arg;
3329 case VAR_DECL:
3330 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3331 && ! DECL_THREAD_LOCAL_P (arg)
3332 && ! DECL_DLLIMPORT_P (arg)
3333 ? arg : NULL);
3335 case CONST_DECL:
3336 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3337 ? arg : NULL);
3339 case CONSTRUCTOR:
3340 return TREE_STATIC (arg) ? arg : NULL;
3342 case LABEL_DECL:
3343 case STRING_CST:
3344 return arg;
3346 case COMPONENT_REF:
3347 /* If the thing being referenced is not a field, then it is
3348 something language specific. */
3349 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3351 /* If we are referencing a bitfield, we can't evaluate an
3352 ADDR_EXPR at compile time and so it isn't a constant. */
3353 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3354 return NULL;
3356 return staticp (TREE_OPERAND (arg, 0));
3358 case BIT_FIELD_REF:
3359 return NULL;
3361 case INDIRECT_REF:
3362 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3364 case ARRAY_REF:
3365 case ARRAY_RANGE_REF:
3366 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3367 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3368 return staticp (TREE_OPERAND (arg, 0));
3369 else
3370 return NULL;
3372 case COMPOUND_LITERAL_EXPR:
3373 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3375 default:
3376 return NULL;
3383 /* Return whether OP is a DECL whose address is function-invariant. */
3385 bool
3386 decl_address_invariant_p (const_tree op)
3388 /* The conditions below are slightly less strict than the one in
3389 staticp. */
3391 switch (TREE_CODE (op))
3393 case PARM_DECL:
3394 case RESULT_DECL:
3395 case LABEL_DECL:
3396 case FUNCTION_DECL:
3397 return true;
3399 case VAR_DECL:
3400 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3401 || DECL_THREAD_LOCAL_P (op)
3402 || DECL_CONTEXT (op) == current_function_decl
3403 || decl_function_context (op) == current_function_decl)
3404 return true;
3405 break;
3407 case CONST_DECL:
3408 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3409 || decl_function_context (op) == current_function_decl)
3410 return true;
3411 break;
3413 default:
3414 break;
3417 return false;
3420 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3422 bool
3423 decl_address_ip_invariant_p (const_tree op)
3425 /* The conditions below are slightly less strict than the one in
3426 staticp. */
3428 switch (TREE_CODE (op))
3430 case LABEL_DECL:
3431 case FUNCTION_DECL:
3432 case STRING_CST:
3433 return true;
3435 case VAR_DECL:
3436 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3437 && !DECL_DLLIMPORT_P (op))
3438 || DECL_THREAD_LOCAL_P (op))
3439 return true;
3440 break;
3442 case CONST_DECL:
3443 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3444 return true;
3445 break;
3447 default:
3448 break;
3451 return false;
3455 /* Return true if T is function-invariant (internal function, does
3456 not handle arithmetic; that's handled in skip_simple_arithmetic and
3457 tree_invariant_p). */
3459 static bool
3460 tree_invariant_p_1 (tree t)
3462 tree op;
3464 if (TREE_CONSTANT (t)
3465 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3466 return true;
3468 switch (TREE_CODE (t))
3470 case SAVE_EXPR:
3471 return true;
3473 case ADDR_EXPR:
3474 op = TREE_OPERAND (t, 0);
3475 while (handled_component_p (op))
3477 switch (TREE_CODE (op))
3479 case ARRAY_REF:
3480 case ARRAY_RANGE_REF:
3481 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3482 || TREE_OPERAND (op, 2) != NULL_TREE
3483 || TREE_OPERAND (op, 3) != NULL_TREE)
3484 return false;
3485 break;
3487 case COMPONENT_REF:
3488 if (TREE_OPERAND (op, 2) != NULL_TREE)
3489 return false;
3490 break;
3492 default:;
3494 op = TREE_OPERAND (op, 0);
3497 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3499 default:
3500 break;
3503 return false;
3506 /* Return true if T is function-invariant. */
3508 bool
3509 tree_invariant_p (tree t)
3511 tree inner = skip_simple_arithmetic (t);
3512 return tree_invariant_p_1 (inner);
3515 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3516 Do this to any expression which may be used in more than one place,
3517 but must be evaluated only once.
3519 Normally, expand_expr would reevaluate the expression each time.
3520 Calling save_expr produces something that is evaluated and recorded
3521 the first time expand_expr is called on it. Subsequent calls to
3522 expand_expr just reuse the recorded value.
3524 The call to expand_expr that generates code that actually computes
3525 the value is the first call *at compile time*. Subsequent calls
3526 *at compile time* generate code to use the saved value.
3527 This produces correct result provided that *at run time* control
3528 always flows through the insns made by the first expand_expr
3529 before reaching the other places where the save_expr was evaluated.
3530 You, the caller of save_expr, must make sure this is so.
3532 Constants, and certain read-only nodes, are returned with no
3533 SAVE_EXPR because that is safe. Expressions containing placeholders
3534 are not touched; see tree.def for an explanation of what these
3535 are used for. */
3537 tree
3538 save_expr (tree expr)
3540 tree inner;
3542 /* If the tree evaluates to a constant, then we don't want to hide that
3543 fact (i.e. this allows further folding, and direct checks for constants).
3544 However, a read-only object that has side effects cannot be bypassed.
3545 Since it is no problem to reevaluate literals, we just return the
3546 literal node. */
3547 inner = skip_simple_arithmetic (expr);
3548 if (TREE_CODE (inner) == ERROR_MARK)
3549 return inner;
3551 if (tree_invariant_p_1 (inner))
3552 return expr;
3554 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3555 it means that the size or offset of some field of an object depends on
3556 the value within another field.
3558 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3559 and some variable since it would then need to be both evaluated once and
3560 evaluated more than once. Front-ends must assure this case cannot
3561 happen by surrounding any such subexpressions in their own SAVE_EXPR
3562 and forcing evaluation at the proper time. */
3563 if (contains_placeholder_p (inner))
3564 return expr;
3566 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3568 /* This expression might be placed ahead of a jump to ensure that the
3569 value was computed on both sides of the jump. So make sure it isn't
3570 eliminated as dead. */
3571 TREE_SIDE_EFFECTS (expr) = 1;
3572 return expr;
3575 /* Look inside EXPR into any simple arithmetic operations. Return the
3576 outermost non-arithmetic or non-invariant node. */
3578 tree
3579 skip_simple_arithmetic (tree expr)
3581 /* We don't care about whether this can be used as an lvalue in this
3582 context. */
3583 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3584 expr = TREE_OPERAND (expr, 0);
3586 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3587 a constant, it will be more efficient to not make another SAVE_EXPR since
3588 it will allow better simplification and GCSE will be able to merge the
3589 computations if they actually occur. */
3590 while (true)
3592 if (UNARY_CLASS_P (expr))
3593 expr = TREE_OPERAND (expr, 0);
3594 else if (BINARY_CLASS_P (expr))
3596 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3597 expr = TREE_OPERAND (expr, 0);
3598 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3599 expr = TREE_OPERAND (expr, 1);
3600 else
3601 break;
3603 else
3604 break;
3607 return expr;
3610 /* Look inside EXPR into simple arithmetic operations involving constants.
3611 Return the outermost non-arithmetic or non-constant node. */
3613 tree
3614 skip_simple_constant_arithmetic (tree expr)
3616 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3617 expr = TREE_OPERAND (expr, 0);
3619 while (true)
3621 if (UNARY_CLASS_P (expr))
3622 expr = TREE_OPERAND (expr, 0);
3623 else if (BINARY_CLASS_P (expr))
3625 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3626 expr = TREE_OPERAND (expr, 0);
3627 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3628 expr = TREE_OPERAND (expr, 1);
3629 else
3630 break;
3632 else
3633 break;
3636 return expr;
3639 /* Return which tree structure is used by T. */
3641 enum tree_node_structure_enum
3642 tree_node_structure (const_tree t)
3644 const enum tree_code code = TREE_CODE (t);
3645 return tree_node_structure_for_code (code);
3648 /* Set various status flags when building a CALL_EXPR object T. */
3650 static void
3651 process_call_operands (tree t)
3653 bool side_effects = TREE_SIDE_EFFECTS (t);
3654 bool read_only = false;
3655 int i = call_expr_flags (t);
3657 /* Calls have side-effects, except those to const or pure functions. */
3658 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3659 side_effects = true;
3660 /* Propagate TREE_READONLY of arguments for const functions. */
3661 if (i & ECF_CONST)
3662 read_only = true;
3664 if (!side_effects || read_only)
3665 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3667 tree op = TREE_OPERAND (t, i);
3668 if (op && TREE_SIDE_EFFECTS (op))
3669 side_effects = true;
3670 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3671 read_only = false;
3674 TREE_SIDE_EFFECTS (t) = side_effects;
3675 TREE_READONLY (t) = read_only;
3678 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3679 size or offset that depends on a field within a record. */
3681 bool
3682 contains_placeholder_p (const_tree exp)
3684 enum tree_code code;
3686 if (!exp)
3687 return 0;
3689 code = TREE_CODE (exp);
3690 if (code == PLACEHOLDER_EXPR)
3691 return 1;
3693 switch (TREE_CODE_CLASS (code))
3695 case tcc_reference:
3696 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3697 position computations since they will be converted into a
3698 WITH_RECORD_EXPR involving the reference, which will assume
3699 here will be valid. */
3700 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3702 case tcc_exceptional:
3703 if (code == TREE_LIST)
3704 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3705 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3706 break;
3708 case tcc_unary:
3709 case tcc_binary:
3710 case tcc_comparison:
3711 case tcc_expression:
3712 switch (code)
3714 case COMPOUND_EXPR:
3715 /* Ignoring the first operand isn't quite right, but works best. */
3716 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3718 case COND_EXPR:
3719 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3720 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3721 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3723 case SAVE_EXPR:
3724 /* The save_expr function never wraps anything containing
3725 a PLACEHOLDER_EXPR. */
3726 return 0;
3728 default:
3729 break;
3732 switch (TREE_CODE_LENGTH (code))
3734 case 1:
3735 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3736 case 2:
3737 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3738 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3739 default:
3740 return 0;
3743 case tcc_vl_exp:
3744 switch (code)
3746 case CALL_EXPR:
3748 const_tree arg;
3749 const_call_expr_arg_iterator iter;
3750 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3751 if (CONTAINS_PLACEHOLDER_P (arg))
3752 return 1;
3753 return 0;
3755 default:
3756 return 0;
3759 default:
3760 return 0;
3762 return 0;
3765 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3766 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3767 field positions. */
3769 static bool
3770 type_contains_placeholder_1 (const_tree type)
3772 /* If the size contains a placeholder or the parent type (component type in
3773 the case of arrays) type involves a placeholder, this type does. */
3774 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3775 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3776 || (!POINTER_TYPE_P (type)
3777 && TREE_TYPE (type)
3778 && type_contains_placeholder_p (TREE_TYPE (type))))
3779 return true;
3781 /* Now do type-specific checks. Note that the last part of the check above
3782 greatly limits what we have to do below. */
3783 switch (TREE_CODE (type))
3785 case VOID_TYPE:
3786 case POINTER_BOUNDS_TYPE:
3787 case COMPLEX_TYPE:
3788 case ENUMERAL_TYPE:
3789 case BOOLEAN_TYPE:
3790 case POINTER_TYPE:
3791 case OFFSET_TYPE:
3792 case REFERENCE_TYPE:
3793 case METHOD_TYPE:
3794 case FUNCTION_TYPE:
3795 case VECTOR_TYPE:
3796 case NULLPTR_TYPE:
3797 return false;
3799 case INTEGER_TYPE:
3800 case REAL_TYPE:
3801 case FIXED_POINT_TYPE:
3802 /* Here we just check the bounds. */
3803 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3804 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3806 case ARRAY_TYPE:
3807 /* We have already checked the component type above, so just check
3808 the domain type. Flexible array members have a null domain. */
3809 return TYPE_DOMAIN (type) ?
3810 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3812 case RECORD_TYPE:
3813 case UNION_TYPE:
3814 case QUAL_UNION_TYPE:
3816 tree field;
3818 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3819 if (TREE_CODE (field) == FIELD_DECL
3820 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3821 || (TREE_CODE (type) == QUAL_UNION_TYPE
3822 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3823 || type_contains_placeholder_p (TREE_TYPE (field))))
3824 return true;
3826 return false;
3829 default:
3830 gcc_unreachable ();
3834 /* Wrapper around above function used to cache its result. */
3836 bool
3837 type_contains_placeholder_p (tree type)
3839 bool result;
3841 /* If the contains_placeholder_bits field has been initialized,
3842 then we know the answer. */
3843 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3844 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3846 /* Indicate that we've seen this type node, and the answer is false.
3847 This is what we want to return if we run into recursion via fields. */
3848 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3850 /* Compute the real value. */
3851 result = type_contains_placeholder_1 (type);
3853 /* Store the real value. */
3854 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3856 return result;
3859 /* Push tree EXP onto vector QUEUE if it is not already present. */
3861 static void
3862 push_without_duplicates (tree exp, vec<tree> *queue)
3864 unsigned int i;
3865 tree iter;
3867 FOR_EACH_VEC_ELT (*queue, i, iter)
3868 if (simple_cst_equal (iter, exp) == 1)
3869 break;
3871 if (!iter)
3872 queue->safe_push (exp);
3875 /* Given a tree EXP, find all occurrences of references to fields
3876 in a PLACEHOLDER_EXPR and place them in vector REFS without
3877 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3878 we assume here that EXP contains only arithmetic expressions
3879 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3880 argument list. */
3882 void
3883 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3885 enum tree_code code = TREE_CODE (exp);
3886 tree inner;
3887 int i;
3889 /* We handle TREE_LIST and COMPONENT_REF separately. */
3890 if (code == TREE_LIST)
3892 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3893 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3895 else if (code == COMPONENT_REF)
3897 for (inner = TREE_OPERAND (exp, 0);
3898 REFERENCE_CLASS_P (inner);
3899 inner = TREE_OPERAND (inner, 0))
3902 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3903 push_without_duplicates (exp, refs);
3904 else
3905 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3907 else
3908 switch (TREE_CODE_CLASS (code))
3910 case tcc_constant:
3911 break;
3913 case tcc_declaration:
3914 /* Variables allocated to static storage can stay. */
3915 if (!TREE_STATIC (exp))
3916 push_without_duplicates (exp, refs);
3917 break;
3919 case tcc_expression:
3920 /* This is the pattern built in ada/make_aligning_type. */
3921 if (code == ADDR_EXPR
3922 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3924 push_without_duplicates (exp, refs);
3925 break;
3928 /* Fall through. */
3930 case tcc_exceptional:
3931 case tcc_unary:
3932 case tcc_binary:
3933 case tcc_comparison:
3934 case tcc_reference:
3935 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3936 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3937 break;
3939 case tcc_vl_exp:
3940 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3941 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3942 break;
3944 default:
3945 gcc_unreachable ();
3949 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3950 return a tree with all occurrences of references to F in a
3951 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3952 CONST_DECLs. Note that we assume here that EXP contains only
3953 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3954 occurring only in their argument list. */
3956 tree
3957 substitute_in_expr (tree exp, tree f, tree r)
3959 enum tree_code code = TREE_CODE (exp);
3960 tree op0, op1, op2, op3;
3961 tree new_tree;
3963 /* We handle TREE_LIST and COMPONENT_REF separately. */
3964 if (code == TREE_LIST)
3966 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3967 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3968 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3969 return exp;
3971 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3973 else if (code == COMPONENT_REF)
3975 tree inner;
3977 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3978 and it is the right field, replace it with R. */
3979 for (inner = TREE_OPERAND (exp, 0);
3980 REFERENCE_CLASS_P (inner);
3981 inner = TREE_OPERAND (inner, 0))
3984 /* The field. */
3985 op1 = TREE_OPERAND (exp, 1);
3987 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3988 return r;
3990 /* If this expression hasn't been completed let, leave it alone. */
3991 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3992 return exp;
3994 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3995 if (op0 == TREE_OPERAND (exp, 0))
3996 return exp;
3998 new_tree
3999 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4001 else
4002 switch (TREE_CODE_CLASS (code))
4004 case tcc_constant:
4005 return exp;
4007 case tcc_declaration:
4008 if (exp == f)
4009 return r;
4010 else
4011 return exp;
4013 case tcc_expression:
4014 if (exp == f)
4015 return r;
4017 /* Fall through. */
4019 case tcc_exceptional:
4020 case tcc_unary:
4021 case tcc_binary:
4022 case tcc_comparison:
4023 case tcc_reference:
4024 switch (TREE_CODE_LENGTH (code))
4026 case 0:
4027 return exp;
4029 case 1:
4030 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4031 if (op0 == TREE_OPERAND (exp, 0))
4032 return exp;
4034 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4035 break;
4037 case 2:
4038 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4039 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4041 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4042 return exp;
4044 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4045 break;
4047 case 3:
4048 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4049 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4050 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4052 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4053 && op2 == TREE_OPERAND (exp, 2))
4054 return exp;
4056 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4057 break;
4059 case 4:
4060 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4061 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4062 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4063 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4065 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4066 && op2 == TREE_OPERAND (exp, 2)
4067 && op3 == TREE_OPERAND (exp, 3))
4068 return exp;
4070 new_tree
4071 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4072 break;
4074 default:
4075 gcc_unreachable ();
4077 break;
4079 case tcc_vl_exp:
4081 int i;
4083 new_tree = NULL_TREE;
4085 /* If we are trying to replace F with a constant or with another
4086 instance of one of the arguments of the call, inline back
4087 functions which do nothing else than computing a value from
4088 the arguments they are passed. This makes it possible to
4089 fold partially or entirely the replacement expression. */
4090 if (code == CALL_EXPR)
4092 bool maybe_inline = false;
4093 if (CONSTANT_CLASS_P (r))
4094 maybe_inline = true;
4095 else
4096 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4097 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4099 maybe_inline = true;
4100 break;
4102 if (maybe_inline)
4104 tree t = maybe_inline_call_in_expr (exp);
4105 if (t)
4106 return SUBSTITUTE_IN_EXPR (t, f, r);
4110 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4112 tree op = TREE_OPERAND (exp, i);
4113 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4114 if (new_op != op)
4116 if (!new_tree)
4117 new_tree = copy_node (exp);
4118 TREE_OPERAND (new_tree, i) = new_op;
4122 if (new_tree)
4124 new_tree = fold (new_tree);
4125 if (TREE_CODE (new_tree) == CALL_EXPR)
4126 process_call_operands (new_tree);
4128 else
4129 return exp;
4131 break;
4133 default:
4134 gcc_unreachable ();
4137 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4139 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4140 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4142 return new_tree;
4145 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4146 for it within OBJ, a tree that is an object or a chain of references. */
4148 tree
4149 substitute_placeholder_in_expr (tree exp, tree obj)
4151 enum tree_code code = TREE_CODE (exp);
4152 tree op0, op1, op2, op3;
4153 tree new_tree;
4155 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4156 in the chain of OBJ. */
4157 if (code == PLACEHOLDER_EXPR)
4159 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4160 tree elt;
4162 for (elt = obj; elt != 0;
4163 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4164 || TREE_CODE (elt) == COND_EXPR)
4165 ? TREE_OPERAND (elt, 1)
4166 : (REFERENCE_CLASS_P (elt)
4167 || UNARY_CLASS_P (elt)
4168 || BINARY_CLASS_P (elt)
4169 || VL_EXP_CLASS_P (elt)
4170 || EXPRESSION_CLASS_P (elt))
4171 ? TREE_OPERAND (elt, 0) : 0))
4172 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4173 return elt;
4175 for (elt = obj; elt != 0;
4176 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4177 || TREE_CODE (elt) == COND_EXPR)
4178 ? TREE_OPERAND (elt, 1)
4179 : (REFERENCE_CLASS_P (elt)
4180 || UNARY_CLASS_P (elt)
4181 || BINARY_CLASS_P (elt)
4182 || VL_EXP_CLASS_P (elt)
4183 || EXPRESSION_CLASS_P (elt))
4184 ? TREE_OPERAND (elt, 0) : 0))
4185 if (POINTER_TYPE_P (TREE_TYPE (elt))
4186 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4187 == need_type))
4188 return fold_build1 (INDIRECT_REF, need_type, elt);
4190 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4191 survives until RTL generation, there will be an error. */
4192 return exp;
4195 /* TREE_LIST is special because we need to look at TREE_VALUE
4196 and TREE_CHAIN, not TREE_OPERANDS. */
4197 else if (code == TREE_LIST)
4199 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4200 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4201 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4202 return exp;
4204 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4206 else
4207 switch (TREE_CODE_CLASS (code))
4209 case tcc_constant:
4210 case tcc_declaration:
4211 return exp;
4213 case tcc_exceptional:
4214 case tcc_unary:
4215 case tcc_binary:
4216 case tcc_comparison:
4217 case tcc_expression:
4218 case tcc_reference:
4219 case tcc_statement:
4220 switch (TREE_CODE_LENGTH (code))
4222 case 0:
4223 return exp;
4225 case 1:
4226 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4227 if (op0 == TREE_OPERAND (exp, 0))
4228 return exp;
4230 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4231 break;
4233 case 2:
4234 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4235 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4237 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4238 return exp;
4240 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4241 break;
4243 case 3:
4244 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4245 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4246 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4248 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4249 && op2 == TREE_OPERAND (exp, 2))
4250 return exp;
4252 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4253 break;
4255 case 4:
4256 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4257 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4258 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4259 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4261 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4262 && op2 == TREE_OPERAND (exp, 2)
4263 && op3 == TREE_OPERAND (exp, 3))
4264 return exp;
4266 new_tree
4267 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4268 break;
4270 default:
4271 gcc_unreachable ();
4273 break;
4275 case tcc_vl_exp:
4277 int i;
4279 new_tree = NULL_TREE;
4281 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4283 tree op = TREE_OPERAND (exp, i);
4284 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4285 if (new_op != op)
4287 if (!new_tree)
4288 new_tree = copy_node (exp);
4289 TREE_OPERAND (new_tree, i) = new_op;
4293 if (new_tree)
4295 new_tree = fold (new_tree);
4296 if (TREE_CODE (new_tree) == CALL_EXPR)
4297 process_call_operands (new_tree);
4299 else
4300 return exp;
4302 break;
4304 default:
4305 gcc_unreachable ();
4308 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4310 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4311 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4313 return new_tree;
4317 /* Subroutine of stabilize_reference; this is called for subtrees of
4318 references. Any expression with side-effects must be put in a SAVE_EXPR
4319 to ensure that it is only evaluated once.
4321 We don't put SAVE_EXPR nodes around everything, because assigning very
4322 simple expressions to temporaries causes us to miss good opportunities
4323 for optimizations. Among other things, the opportunity to fold in the
4324 addition of a constant into an addressing mode often gets lost, e.g.
4325 "y[i+1] += x;". In general, we take the approach that we should not make
4326 an assignment unless we are forced into it - i.e., that any non-side effect
4327 operator should be allowed, and that cse should take care of coalescing
4328 multiple utterances of the same expression should that prove fruitful. */
4330 static tree
4331 stabilize_reference_1 (tree e)
4333 tree result;
4334 enum tree_code code = TREE_CODE (e);
4336 /* We cannot ignore const expressions because it might be a reference
4337 to a const array but whose index contains side-effects. But we can
4338 ignore things that are actual constant or that already have been
4339 handled by this function. */
4341 if (tree_invariant_p (e))
4342 return e;
4344 switch (TREE_CODE_CLASS (code))
4346 case tcc_exceptional:
4347 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4348 have side-effects. */
4349 if (code == STATEMENT_LIST)
4350 return save_expr (e);
4351 /* FALLTHRU */
4352 case tcc_type:
4353 case tcc_declaration:
4354 case tcc_comparison:
4355 case tcc_statement:
4356 case tcc_expression:
4357 case tcc_reference:
4358 case tcc_vl_exp:
4359 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4360 so that it will only be evaluated once. */
4361 /* The reference (r) and comparison (<) classes could be handled as
4362 below, but it is generally faster to only evaluate them once. */
4363 if (TREE_SIDE_EFFECTS (e))
4364 return save_expr (e);
4365 return e;
4367 case tcc_constant:
4368 /* Constants need no processing. In fact, we should never reach
4369 here. */
4370 return e;
4372 case tcc_binary:
4373 /* Division is slow and tends to be compiled with jumps,
4374 especially the division by powers of 2 that is often
4375 found inside of an array reference. So do it just once. */
4376 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4377 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4378 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4379 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4380 return save_expr (e);
4381 /* Recursively stabilize each operand. */
4382 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4383 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4384 break;
4386 case tcc_unary:
4387 /* Recursively stabilize each operand. */
4388 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4389 break;
4391 default:
4392 gcc_unreachable ();
4395 TREE_TYPE (result) = TREE_TYPE (e);
4396 TREE_READONLY (result) = TREE_READONLY (e);
4397 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4398 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4400 return result;
4403 /* Stabilize a reference so that we can use it any number of times
4404 without causing its operands to be evaluated more than once.
4405 Returns the stabilized reference. This works by means of save_expr,
4406 so see the caveats in the comments about save_expr.
4408 Also allows conversion expressions whose operands are references.
4409 Any other kind of expression is returned unchanged. */
4411 tree
4412 stabilize_reference (tree ref)
4414 tree result;
4415 enum tree_code code = TREE_CODE (ref);
4417 switch (code)
4419 case VAR_DECL:
4420 case PARM_DECL:
4421 case RESULT_DECL:
4422 /* No action is needed in this case. */
4423 return ref;
4425 CASE_CONVERT:
4426 case FLOAT_EXPR:
4427 case FIX_TRUNC_EXPR:
4428 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4429 break;
4431 case INDIRECT_REF:
4432 result = build_nt (INDIRECT_REF,
4433 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4434 break;
4436 case COMPONENT_REF:
4437 result = build_nt (COMPONENT_REF,
4438 stabilize_reference (TREE_OPERAND (ref, 0)),
4439 TREE_OPERAND (ref, 1), NULL_TREE);
4440 break;
4442 case BIT_FIELD_REF:
4443 result = build_nt (BIT_FIELD_REF,
4444 stabilize_reference (TREE_OPERAND (ref, 0)),
4445 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4446 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4447 break;
4449 case ARRAY_REF:
4450 result = build_nt (ARRAY_REF,
4451 stabilize_reference (TREE_OPERAND (ref, 0)),
4452 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4453 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4454 break;
4456 case ARRAY_RANGE_REF:
4457 result = build_nt (ARRAY_RANGE_REF,
4458 stabilize_reference (TREE_OPERAND (ref, 0)),
4459 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4460 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4461 break;
4463 case COMPOUND_EXPR:
4464 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4465 it wouldn't be ignored. This matters when dealing with
4466 volatiles. */
4467 return stabilize_reference_1 (ref);
4469 /* If arg isn't a kind of lvalue we recognize, make no change.
4470 Caller should recognize the error for an invalid lvalue. */
4471 default:
4472 return ref;
4474 case ERROR_MARK:
4475 return error_mark_node;
4478 TREE_TYPE (result) = TREE_TYPE (ref);
4479 TREE_READONLY (result) = TREE_READONLY (ref);
4480 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4481 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4483 return result;
4486 /* Low-level constructors for expressions. */
4488 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4489 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4491 void
4492 recompute_tree_invariant_for_addr_expr (tree t)
4494 tree node;
4495 bool tc = true, se = false;
4497 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4499 /* We started out assuming this address is both invariant and constant, but
4500 does not have side effects. Now go down any handled components and see if
4501 any of them involve offsets that are either non-constant or non-invariant.
4502 Also check for side-effects.
4504 ??? Note that this code makes no attempt to deal with the case where
4505 taking the address of something causes a copy due to misalignment. */
4507 #define UPDATE_FLAGS(NODE) \
4508 do { tree _node = (NODE); \
4509 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4510 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4512 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4513 node = TREE_OPERAND (node, 0))
4515 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4516 array reference (probably made temporarily by the G++ front end),
4517 so ignore all the operands. */
4518 if ((TREE_CODE (node) == ARRAY_REF
4519 || TREE_CODE (node) == ARRAY_RANGE_REF)
4520 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4522 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4523 if (TREE_OPERAND (node, 2))
4524 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4525 if (TREE_OPERAND (node, 3))
4526 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4528 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4529 FIELD_DECL, apparently. The G++ front end can put something else
4530 there, at least temporarily. */
4531 else if (TREE_CODE (node) == COMPONENT_REF
4532 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4534 if (TREE_OPERAND (node, 2))
4535 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4539 node = lang_hooks.expr_to_decl (node, &tc, &se);
4541 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4542 the address, since &(*a)->b is a form of addition. If it's a constant, the
4543 address is constant too. If it's a decl, its address is constant if the
4544 decl is static. Everything else is not constant and, furthermore,
4545 taking the address of a volatile variable is not volatile. */
4546 if (TREE_CODE (node) == INDIRECT_REF
4547 || TREE_CODE (node) == MEM_REF)
4548 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4549 else if (CONSTANT_CLASS_P (node))
4551 else if (DECL_P (node))
4552 tc &= (staticp (node) != NULL_TREE);
4553 else
4555 tc = false;
4556 se |= TREE_SIDE_EFFECTS (node);
4560 TREE_CONSTANT (t) = tc;
4561 TREE_SIDE_EFFECTS (t) = se;
4562 #undef UPDATE_FLAGS
4565 /* Build an expression of code CODE, data type TYPE, and operands as
4566 specified. Expressions and reference nodes can be created this way.
4567 Constants, decls, types and misc nodes cannot be.
4569 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4570 enough for all extant tree codes. */
4572 tree
4573 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4575 tree t;
4577 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4579 t = make_node (code PASS_MEM_STAT);
4580 TREE_TYPE (t) = tt;
4582 return t;
4585 tree
4586 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4588 int length = sizeof (struct tree_exp);
4589 tree t;
4591 record_node_allocation_statistics (code, length);
4593 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4595 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4597 memset (t, 0, sizeof (struct tree_common));
4599 TREE_SET_CODE (t, code);
4601 TREE_TYPE (t) = type;
4602 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4603 TREE_OPERAND (t, 0) = node;
4604 if (node && !TYPE_P (node))
4606 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4607 TREE_READONLY (t) = TREE_READONLY (node);
4610 if (TREE_CODE_CLASS (code) == tcc_statement)
4612 if (code != DEBUG_BEGIN_STMT)
4613 TREE_SIDE_EFFECTS (t) = 1;
4615 else switch (code)
4617 case VA_ARG_EXPR:
4618 /* All of these have side-effects, no matter what their
4619 operands are. */
4620 TREE_SIDE_EFFECTS (t) = 1;
4621 TREE_READONLY (t) = 0;
4622 break;
4624 case INDIRECT_REF:
4625 /* Whether a dereference is readonly has nothing to do with whether
4626 its operand is readonly. */
4627 TREE_READONLY (t) = 0;
4628 break;
4630 case ADDR_EXPR:
4631 if (node)
4632 recompute_tree_invariant_for_addr_expr (t);
4633 break;
4635 default:
4636 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4637 && node && !TYPE_P (node)
4638 && TREE_CONSTANT (node))
4639 TREE_CONSTANT (t) = 1;
4640 if (TREE_CODE_CLASS (code) == tcc_reference
4641 && node && TREE_THIS_VOLATILE (node))
4642 TREE_THIS_VOLATILE (t) = 1;
4643 break;
4646 return t;
4649 #define PROCESS_ARG(N) \
4650 do { \
4651 TREE_OPERAND (t, N) = arg##N; \
4652 if (arg##N &&!TYPE_P (arg##N)) \
4654 if (TREE_SIDE_EFFECTS (arg##N)) \
4655 side_effects = 1; \
4656 if (!TREE_READONLY (arg##N) \
4657 && !CONSTANT_CLASS_P (arg##N)) \
4658 (void) (read_only = 0); \
4659 if (!TREE_CONSTANT (arg##N)) \
4660 (void) (constant = 0); \
4662 } while (0)
4664 tree
4665 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4667 bool constant, read_only, side_effects, div_by_zero;
4668 tree t;
4670 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4672 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4673 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4674 /* When sizetype precision doesn't match that of pointers
4675 we need to be able to build explicit extensions or truncations
4676 of the offset argument. */
4677 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4678 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4679 && TREE_CODE (arg1) == INTEGER_CST);
4681 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4682 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4683 && ptrofftype_p (TREE_TYPE (arg1)));
4685 t = make_node (code PASS_MEM_STAT);
4686 TREE_TYPE (t) = tt;
4688 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4689 result based on those same flags for the arguments. But if the
4690 arguments aren't really even `tree' expressions, we shouldn't be trying
4691 to do this. */
4693 /* Expressions without side effects may be constant if their
4694 arguments are as well. */
4695 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4696 || TREE_CODE_CLASS (code) == tcc_binary);
4697 read_only = 1;
4698 side_effects = TREE_SIDE_EFFECTS (t);
4700 switch (code)
4702 case TRUNC_DIV_EXPR:
4703 case CEIL_DIV_EXPR:
4704 case FLOOR_DIV_EXPR:
4705 case ROUND_DIV_EXPR:
4706 case EXACT_DIV_EXPR:
4707 case CEIL_MOD_EXPR:
4708 case FLOOR_MOD_EXPR:
4709 case ROUND_MOD_EXPR:
4710 case TRUNC_MOD_EXPR:
4711 div_by_zero = integer_zerop (arg1);
4712 break;
4713 default:
4714 div_by_zero = false;
4717 PROCESS_ARG (0);
4718 PROCESS_ARG (1);
4720 TREE_SIDE_EFFECTS (t) = side_effects;
4721 if (code == MEM_REF)
4723 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4725 tree o = TREE_OPERAND (arg0, 0);
4726 TREE_READONLY (t) = TREE_READONLY (o);
4727 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4730 else
4732 TREE_READONLY (t) = read_only;
4733 /* Don't mark X / 0 as constant. */
4734 TREE_CONSTANT (t) = constant && !div_by_zero;
4735 TREE_THIS_VOLATILE (t)
4736 = (TREE_CODE_CLASS (code) == tcc_reference
4737 && arg0 && TREE_THIS_VOLATILE (arg0));
4740 return t;
4744 tree
4745 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4746 tree arg2 MEM_STAT_DECL)
4748 bool constant, read_only, side_effects;
4749 tree t;
4751 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4752 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4754 t = make_node (code PASS_MEM_STAT);
4755 TREE_TYPE (t) = tt;
4757 read_only = 1;
4759 /* As a special exception, if COND_EXPR has NULL branches, we
4760 assume that it is a gimple statement and always consider
4761 it to have side effects. */
4762 if (code == COND_EXPR
4763 && tt == void_type_node
4764 && arg1 == NULL_TREE
4765 && arg2 == NULL_TREE)
4766 side_effects = true;
4767 else
4768 side_effects = TREE_SIDE_EFFECTS (t);
4770 PROCESS_ARG (0);
4771 PROCESS_ARG (1);
4772 PROCESS_ARG (2);
4774 if (code == COND_EXPR)
4775 TREE_READONLY (t) = read_only;
4777 TREE_SIDE_EFFECTS (t) = side_effects;
4778 TREE_THIS_VOLATILE (t)
4779 = (TREE_CODE_CLASS (code) == tcc_reference
4780 && arg0 && TREE_THIS_VOLATILE (arg0));
4782 return t;
4785 tree
4786 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4787 tree arg2, tree arg3 MEM_STAT_DECL)
4789 bool constant, read_only, side_effects;
4790 tree t;
4792 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4794 t = make_node (code PASS_MEM_STAT);
4795 TREE_TYPE (t) = tt;
4797 side_effects = TREE_SIDE_EFFECTS (t);
4799 PROCESS_ARG (0);
4800 PROCESS_ARG (1);
4801 PROCESS_ARG (2);
4802 PROCESS_ARG (3);
4804 TREE_SIDE_EFFECTS (t) = side_effects;
4805 TREE_THIS_VOLATILE (t)
4806 = (TREE_CODE_CLASS (code) == tcc_reference
4807 && arg0 && TREE_THIS_VOLATILE (arg0));
4809 return t;
4812 tree
4813 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4814 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4816 bool constant, read_only, side_effects;
4817 tree t;
4819 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4821 t = make_node (code PASS_MEM_STAT);
4822 TREE_TYPE (t) = tt;
4824 side_effects = TREE_SIDE_EFFECTS (t);
4826 PROCESS_ARG (0);
4827 PROCESS_ARG (1);
4828 PROCESS_ARG (2);
4829 PROCESS_ARG (3);
4830 PROCESS_ARG (4);
4832 TREE_SIDE_EFFECTS (t) = side_effects;
4833 if (code == TARGET_MEM_REF)
4835 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4837 tree o = TREE_OPERAND (arg0, 0);
4838 TREE_READONLY (t) = TREE_READONLY (o);
4839 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4842 else
4843 TREE_THIS_VOLATILE (t)
4844 = (TREE_CODE_CLASS (code) == tcc_reference
4845 && arg0 && TREE_THIS_VOLATILE (arg0));
4847 return t;
4850 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4851 on the pointer PTR. */
4853 tree
4854 build_simple_mem_ref_loc (location_t loc, tree ptr)
4856 poly_int64 offset = 0;
4857 tree ptype = TREE_TYPE (ptr);
4858 tree tem;
4859 /* For convenience allow addresses that collapse to a simple base
4860 and offset. */
4861 if (TREE_CODE (ptr) == ADDR_EXPR
4862 && (handled_component_p (TREE_OPERAND (ptr, 0))
4863 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4865 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4866 gcc_assert (ptr);
4867 if (TREE_CODE (ptr) == MEM_REF)
4869 offset += mem_ref_offset (ptr).force_shwi ();
4870 ptr = TREE_OPERAND (ptr, 0);
4872 else
4873 ptr = build_fold_addr_expr (ptr);
4874 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4876 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4877 ptr, build_int_cst (ptype, offset));
4878 SET_EXPR_LOCATION (tem, loc);
4879 return tem;
4882 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4884 poly_offset_int
4885 mem_ref_offset (const_tree t)
4887 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
4888 SIGNED);
4891 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4892 offsetted by OFFSET units. */
4894 tree
4895 build_invariant_address (tree type, tree base, poly_int64 offset)
4897 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4898 build_fold_addr_expr (base),
4899 build_int_cst (ptr_type_node, offset));
4900 tree addr = build1 (ADDR_EXPR, type, ref);
4901 recompute_tree_invariant_for_addr_expr (addr);
4902 return addr;
4905 /* Similar except don't specify the TREE_TYPE
4906 and leave the TREE_SIDE_EFFECTS as 0.
4907 It is permissible for arguments to be null,
4908 or even garbage if their values do not matter. */
4910 tree
4911 build_nt (enum tree_code code, ...)
4913 tree t;
4914 int length;
4915 int i;
4916 va_list p;
4918 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4920 va_start (p, code);
4922 t = make_node (code);
4923 length = TREE_CODE_LENGTH (code);
4925 for (i = 0; i < length; i++)
4926 TREE_OPERAND (t, i) = va_arg (p, tree);
4928 va_end (p);
4929 return t;
4932 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4933 tree vec. */
4935 tree
4936 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4938 tree ret, t;
4939 unsigned int ix;
4941 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4942 CALL_EXPR_FN (ret) = fn;
4943 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4944 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4945 CALL_EXPR_ARG (ret, ix) = t;
4946 return ret;
4949 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4950 We do NOT enter this node in any sort of symbol table.
4952 LOC is the location of the decl.
4954 layout_decl is used to set up the decl's storage layout.
4955 Other slots are initialized to 0 or null pointers. */
4957 tree
4958 build_decl (location_t loc, enum tree_code code, tree name,
4959 tree type MEM_STAT_DECL)
4961 tree t;
4963 t = make_node (code PASS_MEM_STAT);
4964 DECL_SOURCE_LOCATION (t) = loc;
4966 /* if (type == error_mark_node)
4967 type = integer_type_node; */
4968 /* That is not done, deliberately, so that having error_mark_node
4969 as the type can suppress useless errors in the use of this variable. */
4971 DECL_NAME (t) = name;
4972 TREE_TYPE (t) = type;
4974 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4975 layout_decl (t, 0);
4977 return t;
4980 /* Builds and returns function declaration with NAME and TYPE. */
4982 tree
4983 build_fn_decl (const char *name, tree type)
4985 tree id = get_identifier (name);
4986 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4988 DECL_EXTERNAL (decl) = 1;
4989 TREE_PUBLIC (decl) = 1;
4990 DECL_ARTIFICIAL (decl) = 1;
4991 TREE_NOTHROW (decl) = 1;
4993 return decl;
4996 vec<tree, va_gc> *all_translation_units;
4998 /* Builds a new translation-unit decl with name NAME, queues it in the
4999 global list of translation-unit decls and returns it. */
5001 tree
5002 build_translation_unit_decl (tree name)
5004 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5005 name, NULL_TREE);
5006 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5007 vec_safe_push (all_translation_units, tu);
5008 return tu;
5012 /* BLOCK nodes are used to represent the structure of binding contours
5013 and declarations, once those contours have been exited and their contents
5014 compiled. This information is used for outputting debugging info. */
5016 tree
5017 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5019 tree block = make_node (BLOCK);
5021 BLOCK_VARS (block) = vars;
5022 BLOCK_SUBBLOCKS (block) = subblocks;
5023 BLOCK_SUPERCONTEXT (block) = supercontext;
5024 BLOCK_CHAIN (block) = chain;
5025 return block;
5029 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5031 LOC is the location to use in tree T. */
5033 void
5034 protected_set_expr_location (tree t, location_t loc)
5036 if (CAN_HAVE_LOCATION_P (t))
5037 SET_EXPR_LOCATION (t, loc);
5040 /* Reset the expression *EXPR_P, a size or position.
5042 ??? We could reset all non-constant sizes or positions. But it's cheap
5043 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5045 We need to reset self-referential sizes or positions because they cannot
5046 be gimplified and thus can contain a CALL_EXPR after the gimplification
5047 is finished, which will run afoul of LTO streaming. And they need to be
5048 reset to something essentially dummy but not constant, so as to preserve
5049 the properties of the object they are attached to. */
5051 static inline void
5052 free_lang_data_in_one_sizepos (tree *expr_p)
5054 tree expr = *expr_p;
5055 if (CONTAINS_PLACEHOLDER_P (expr))
5056 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5060 /* Reset all the fields in a binfo node BINFO. We only keep
5061 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5063 static void
5064 free_lang_data_in_binfo (tree binfo)
5066 unsigned i;
5067 tree t;
5069 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5071 BINFO_VIRTUALS (binfo) = NULL_TREE;
5072 BINFO_BASE_ACCESSES (binfo) = NULL;
5073 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5074 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5076 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5077 free_lang_data_in_binfo (t);
5081 /* Reset all language specific information still present in TYPE. */
5083 static void
5084 free_lang_data_in_type (tree type)
5086 gcc_assert (TYPE_P (type));
5088 /* Give the FE a chance to remove its own data first. */
5089 lang_hooks.free_lang_data (type);
5091 TREE_LANG_FLAG_0 (type) = 0;
5092 TREE_LANG_FLAG_1 (type) = 0;
5093 TREE_LANG_FLAG_2 (type) = 0;
5094 TREE_LANG_FLAG_3 (type) = 0;
5095 TREE_LANG_FLAG_4 (type) = 0;
5096 TREE_LANG_FLAG_5 (type) = 0;
5097 TREE_LANG_FLAG_6 (type) = 0;
5099 if (TREE_CODE (type) == FUNCTION_TYPE)
5101 /* Remove the const and volatile qualifiers from arguments. The
5102 C++ front end removes them, but the C front end does not,
5103 leading to false ODR violation errors when merging two
5104 instances of the same function signature compiled by
5105 different front ends. */
5106 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5108 tree arg_type = TREE_VALUE (p);
5110 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5112 int quals = TYPE_QUALS (arg_type)
5113 & ~TYPE_QUAL_CONST
5114 & ~TYPE_QUAL_VOLATILE;
5115 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5116 free_lang_data_in_type (TREE_VALUE (p));
5118 /* C++ FE uses TREE_PURPOSE to store initial values. */
5119 TREE_PURPOSE (p) = NULL;
5122 else if (TREE_CODE (type) == METHOD_TYPE)
5123 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5124 /* C++ FE uses TREE_PURPOSE to store initial values. */
5125 TREE_PURPOSE (p) = NULL;
5126 else if (RECORD_OR_UNION_TYPE_P (type))
5128 /* Remove members that are not FIELD_DECLs from the field list
5129 of an aggregate. These occur in C++. */
5130 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5131 if (TREE_CODE (member) == FIELD_DECL)
5132 prev = &DECL_CHAIN (member);
5133 else
5134 *prev = DECL_CHAIN (member);
5136 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
5137 and danagle the pointer from time to time. */
5138 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
5139 TYPE_VFIELD (type) = NULL_TREE;
5141 if (TYPE_BINFO (type))
5143 free_lang_data_in_binfo (TYPE_BINFO (type));
5144 /* We need to preserve link to bases and virtual table for all
5145 polymorphic types to make devirtualization machinery working. */
5146 if (!BINFO_VTABLE (TYPE_BINFO (type))
5147 || !flag_devirtualize)
5148 TYPE_BINFO (type) = NULL;
5151 else if (INTEGRAL_TYPE_P (type)
5152 || SCALAR_FLOAT_TYPE_P (type)
5153 || FIXED_POINT_TYPE_P (type))
5155 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5156 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5159 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5161 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5162 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5164 if (TYPE_CONTEXT (type)
5165 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5167 tree ctx = TYPE_CONTEXT (type);
5170 ctx = BLOCK_SUPERCONTEXT (ctx);
5172 while (ctx && TREE_CODE (ctx) == BLOCK);
5173 TYPE_CONTEXT (type) = ctx;
5176 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5177 TYPE_DECL if the type doesn't have linkage. */
5178 if (! type_with_linkage_p (type))
5179 TYPE_NAME (type) = TYPE_IDENTIFIER (type);
5183 /* Return true if DECL may need an assembler name to be set. */
5185 static inline bool
5186 need_assembler_name_p (tree decl)
5188 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5189 Rule merging. This makes type_odr_p to return true on those types during
5190 LTO and by comparing the mangled name, we can say what types are intended
5191 to be equivalent across compilation unit.
5193 We do not store names of type_in_anonymous_namespace_p.
5195 Record, union and enumeration type have linkage that allows use
5196 to check type_in_anonymous_namespace_p. We do not mangle compound types
5197 that always can be compared structurally.
5199 Similarly for builtin types, we compare properties of their main variant.
5200 A special case are integer types where mangling do make differences
5201 between char/signed char/unsigned char etc. Storing name for these makes
5202 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5203 See cp/mangle.c:write_builtin_type for details. */
5205 if (flag_lto_odr_type_mering
5206 && TREE_CODE (decl) == TYPE_DECL
5207 && DECL_NAME (decl)
5208 && decl == TYPE_NAME (TREE_TYPE (decl))
5209 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5210 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5211 && (type_with_linkage_p (TREE_TYPE (decl))
5212 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5213 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5214 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5215 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5216 if (!VAR_OR_FUNCTION_DECL_P (decl))
5217 return false;
5219 /* If DECL already has its assembler name set, it does not need a
5220 new one. */
5221 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5222 || DECL_ASSEMBLER_NAME_SET_P (decl))
5223 return false;
5225 /* Abstract decls do not need an assembler name. */
5226 if (DECL_ABSTRACT_P (decl))
5227 return false;
5229 /* For VAR_DECLs, only static, public and external symbols need an
5230 assembler name. */
5231 if (VAR_P (decl)
5232 && !TREE_STATIC (decl)
5233 && !TREE_PUBLIC (decl)
5234 && !DECL_EXTERNAL (decl))
5235 return false;
5237 if (TREE_CODE (decl) == FUNCTION_DECL)
5239 /* Do not set assembler name on builtins. Allow RTL expansion to
5240 decide whether to expand inline or via a regular call. */
5241 if (DECL_BUILT_IN (decl)
5242 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5243 return false;
5245 /* Functions represented in the callgraph need an assembler name. */
5246 if (cgraph_node::get (decl) != NULL)
5247 return true;
5249 /* Unused and not public functions don't need an assembler name. */
5250 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5251 return false;
5254 return true;
5258 /* Reset all language specific information still present in symbol
5259 DECL. */
5261 static void
5262 free_lang_data_in_decl (tree decl)
5264 gcc_assert (DECL_P (decl));
5266 /* Give the FE a chance to remove its own data first. */
5267 lang_hooks.free_lang_data (decl);
5269 TREE_LANG_FLAG_0 (decl) = 0;
5270 TREE_LANG_FLAG_1 (decl) = 0;
5271 TREE_LANG_FLAG_2 (decl) = 0;
5272 TREE_LANG_FLAG_3 (decl) = 0;
5273 TREE_LANG_FLAG_4 (decl) = 0;
5274 TREE_LANG_FLAG_5 (decl) = 0;
5275 TREE_LANG_FLAG_6 (decl) = 0;
5277 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5278 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5279 if (TREE_CODE (decl) == FIELD_DECL)
5281 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5282 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5283 DECL_QUALIFIER (decl) = NULL_TREE;
5286 if (TREE_CODE (decl) == FUNCTION_DECL)
5288 struct cgraph_node *node;
5289 if (!(node = cgraph_node::get (decl))
5290 || (!node->definition && !node->clones))
5292 if (node)
5293 node->release_body ();
5294 else
5296 release_function_body (decl);
5297 DECL_ARGUMENTS (decl) = NULL;
5298 DECL_RESULT (decl) = NULL;
5299 DECL_INITIAL (decl) = error_mark_node;
5302 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5304 tree t;
5306 /* If DECL has a gimple body, then the context for its
5307 arguments must be DECL. Otherwise, it doesn't really
5308 matter, as we will not be emitting any code for DECL. In
5309 general, there may be other instances of DECL created by
5310 the front end and since PARM_DECLs are generally shared,
5311 their DECL_CONTEXT changes as the replicas of DECL are
5312 created. The only time where DECL_CONTEXT is important
5313 is for the FUNCTION_DECLs that have a gimple body (since
5314 the PARM_DECL will be used in the function's body). */
5315 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5316 DECL_CONTEXT (t) = decl;
5317 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5318 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5319 = target_option_default_node;
5320 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5321 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5322 = optimization_default_node;
5325 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5326 At this point, it is not needed anymore. */
5327 DECL_SAVED_TREE (decl) = NULL_TREE;
5329 /* Clear the abstract origin if it refers to a method.
5330 Otherwise dwarf2out.c will ICE as we splice functions out of
5331 TYPE_FIELDS and thus the origin will not be output
5332 correctly. */
5333 if (DECL_ABSTRACT_ORIGIN (decl)
5334 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5335 && RECORD_OR_UNION_TYPE_P
5336 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5337 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5339 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5340 DECL_VINDEX referring to itself into a vtable slot number as it
5341 should. Happens with functions that are copied and then forgotten
5342 about. Just clear it, it won't matter anymore. */
5343 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5344 DECL_VINDEX (decl) = NULL_TREE;
5346 else if (VAR_P (decl))
5348 if ((DECL_EXTERNAL (decl)
5349 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5350 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5351 DECL_INITIAL (decl) = NULL_TREE;
5353 else if (TREE_CODE (decl) == TYPE_DECL)
5355 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5356 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5357 DECL_INITIAL (decl) = NULL_TREE;
5359 else if (TREE_CODE (decl) == FIELD_DECL)
5360 DECL_INITIAL (decl) = NULL_TREE;
5361 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5362 && DECL_INITIAL (decl)
5363 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5365 /* Strip builtins from the translation-unit BLOCK. We still have targets
5366 without builtin_decl_explicit support and also builtins are shared
5367 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5368 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5369 while (*nextp)
5371 tree var = *nextp;
5372 if (TREE_CODE (var) == FUNCTION_DECL
5373 && DECL_BUILT_IN (var))
5374 *nextp = TREE_CHAIN (var);
5375 else
5376 nextp = &TREE_CHAIN (var);
5382 /* Data used when collecting DECLs and TYPEs for language data removal. */
5384 struct free_lang_data_d
5386 free_lang_data_d () : decls (100), types (100) {}
5388 /* Worklist to avoid excessive recursion. */
5389 auto_vec<tree> worklist;
5391 /* Set of traversed objects. Used to avoid duplicate visits. */
5392 hash_set<tree> pset;
5394 /* Array of symbols to process with free_lang_data_in_decl. */
5395 auto_vec<tree> decls;
5397 /* Array of types to process with free_lang_data_in_type. */
5398 auto_vec<tree> types;
5402 /* Add type or decl T to one of the list of tree nodes that need their
5403 language data removed. The lists are held inside FLD. */
5405 static void
5406 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5408 if (DECL_P (t))
5409 fld->decls.safe_push (t);
5410 else if (TYPE_P (t))
5411 fld->types.safe_push (t);
5412 else
5413 gcc_unreachable ();
5416 /* Push tree node T into FLD->WORKLIST. */
5418 static inline void
5419 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5421 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5422 fld->worklist.safe_push ((t));
5426 /* Operand callback helper for free_lang_data_in_node. *TP is the
5427 subtree operand being considered. */
5429 static tree
5430 find_decls_types_r (tree *tp, int *ws, void *data)
5432 tree t = *tp;
5433 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5435 if (TREE_CODE (t) == TREE_LIST)
5436 return NULL_TREE;
5438 /* Language specific nodes will be removed, so there is no need
5439 to gather anything under them. */
5440 if (is_lang_specific (t))
5442 *ws = 0;
5443 return NULL_TREE;
5446 if (DECL_P (t))
5448 /* Note that walk_tree does not traverse every possible field in
5449 decls, so we have to do our own traversals here. */
5450 add_tree_to_fld_list (t, fld);
5452 fld_worklist_push (DECL_NAME (t), fld);
5453 fld_worklist_push (DECL_CONTEXT (t), fld);
5454 fld_worklist_push (DECL_SIZE (t), fld);
5455 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5457 /* We are going to remove everything under DECL_INITIAL for
5458 TYPE_DECLs. No point walking them. */
5459 if (TREE_CODE (t) != TYPE_DECL)
5460 fld_worklist_push (DECL_INITIAL (t), fld);
5462 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5463 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5465 if (TREE_CODE (t) == FUNCTION_DECL)
5467 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5468 fld_worklist_push (DECL_RESULT (t), fld);
5470 else if (TREE_CODE (t) == TYPE_DECL)
5472 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5474 else if (TREE_CODE (t) == FIELD_DECL)
5476 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5477 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5478 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5479 fld_worklist_push (DECL_FCONTEXT (t), fld);
5482 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5483 && DECL_HAS_VALUE_EXPR_P (t))
5484 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5486 if (TREE_CODE (t) != FIELD_DECL
5487 && TREE_CODE (t) != TYPE_DECL)
5488 fld_worklist_push (TREE_CHAIN (t), fld);
5489 *ws = 0;
5491 else if (TYPE_P (t))
5493 /* Note that walk_tree does not traverse every possible field in
5494 types, so we have to do our own traversals here. */
5495 add_tree_to_fld_list (t, fld);
5497 if (!RECORD_OR_UNION_TYPE_P (t))
5498 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5499 fld_worklist_push (TYPE_SIZE (t), fld);
5500 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5501 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5502 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5503 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5504 fld_worklist_push (TYPE_NAME (t), fld);
5505 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5506 them and thus do not and want not to reach unused pointer types
5507 this way. */
5508 if (!POINTER_TYPE_P (t))
5509 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5510 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5511 if (!RECORD_OR_UNION_TYPE_P (t))
5512 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5513 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5514 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5515 do not and want not to reach unused variants this way. */
5516 if (TYPE_CONTEXT (t))
5518 tree ctx = TYPE_CONTEXT (t);
5519 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5520 So push that instead. */
5521 while (ctx && TREE_CODE (ctx) == BLOCK)
5522 ctx = BLOCK_SUPERCONTEXT (ctx);
5523 fld_worklist_push (ctx, fld);
5525 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5526 and want not to reach unused types this way. */
5528 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5530 unsigned i;
5531 tree tem;
5532 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5533 fld_worklist_push (TREE_TYPE (tem), fld);
5534 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
5535 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
5537 if (RECORD_OR_UNION_TYPE_P (t))
5539 tree tem;
5540 /* Push all TYPE_FIELDS - there can be interleaving interesting
5541 and non-interesting things. */
5542 tem = TYPE_FIELDS (t);
5543 while (tem)
5545 if (TREE_CODE (tem) == FIELD_DECL
5546 || (TREE_CODE (tem) == TYPE_DECL
5547 && !DECL_IGNORED_P (tem)
5548 && debug_info_level > DINFO_LEVEL_TERSE
5549 && !is_redundant_typedef (tem)))
5550 fld_worklist_push (tem, fld);
5551 tem = TREE_CHAIN (tem);
5554 if (FUNC_OR_METHOD_TYPE_P (t))
5555 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
5557 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5558 *ws = 0;
5560 else if (TREE_CODE (t) == BLOCK)
5562 tree tem;
5563 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5564 fld_worklist_push (tem, fld);
5565 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5566 fld_worklist_push (tem, fld);
5567 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5570 if (TREE_CODE (t) != IDENTIFIER_NODE
5571 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5572 fld_worklist_push (TREE_TYPE (t), fld);
5574 return NULL_TREE;
5578 /* Find decls and types in T. */
5580 static void
5581 find_decls_types (tree t, struct free_lang_data_d *fld)
5583 while (1)
5585 if (!fld->pset.contains (t))
5586 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5587 if (fld->worklist.is_empty ())
5588 break;
5589 t = fld->worklist.pop ();
5593 /* Translate all the types in LIST with the corresponding runtime
5594 types. */
5596 static tree
5597 get_eh_types_for_runtime (tree list)
5599 tree head, prev;
5601 if (list == NULL_TREE)
5602 return NULL_TREE;
5604 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5605 prev = head;
5606 list = TREE_CHAIN (list);
5607 while (list)
5609 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5610 TREE_CHAIN (prev) = n;
5611 prev = TREE_CHAIN (prev);
5612 list = TREE_CHAIN (list);
5615 return head;
5619 /* Find decls and types referenced in EH region R and store them in
5620 FLD->DECLS and FLD->TYPES. */
5622 static void
5623 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5625 switch (r->type)
5627 case ERT_CLEANUP:
5628 break;
5630 case ERT_TRY:
5632 eh_catch c;
5634 /* The types referenced in each catch must first be changed to the
5635 EH types used at runtime. This removes references to FE types
5636 in the region. */
5637 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5639 c->type_list = get_eh_types_for_runtime (c->type_list);
5640 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
5643 break;
5645 case ERT_ALLOWED_EXCEPTIONS:
5646 r->u.allowed.type_list
5647 = get_eh_types_for_runtime (r->u.allowed.type_list);
5648 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
5649 break;
5651 case ERT_MUST_NOT_THROW:
5652 walk_tree (&r->u.must_not_throw.failure_decl,
5653 find_decls_types_r, fld, &fld->pset);
5654 break;
5659 /* Find decls and types referenced in cgraph node N and store them in
5660 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5661 look for *every* kind of DECL and TYPE node reachable from N,
5662 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5663 NAMESPACE_DECLs, etc). */
5665 static void
5666 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5668 basic_block bb;
5669 struct function *fn;
5670 unsigned ix;
5671 tree t;
5673 find_decls_types (n->decl, fld);
5675 if (!gimple_has_body_p (n->decl))
5676 return;
5678 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5680 fn = DECL_STRUCT_FUNCTION (n->decl);
5682 /* Traverse locals. */
5683 FOR_EACH_LOCAL_DECL (fn, ix, t)
5684 find_decls_types (t, fld);
5686 /* Traverse EH regions in FN. */
5688 eh_region r;
5689 FOR_ALL_EH_REGION_FN (r, fn)
5690 find_decls_types_in_eh_region (r, fld);
5693 /* Traverse every statement in FN. */
5694 FOR_EACH_BB_FN (bb, fn)
5696 gphi_iterator psi;
5697 gimple_stmt_iterator si;
5698 unsigned i;
5700 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5702 gphi *phi = psi.phi ();
5704 for (i = 0; i < gimple_phi_num_args (phi); i++)
5706 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5707 find_decls_types (*arg_p, fld);
5711 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5713 gimple *stmt = gsi_stmt (si);
5715 if (is_gimple_call (stmt))
5716 find_decls_types (gimple_call_fntype (stmt), fld);
5718 for (i = 0; i < gimple_num_ops (stmt); i++)
5720 tree arg = gimple_op (stmt, i);
5721 find_decls_types (arg, fld);
5728 /* Find decls and types referenced in varpool node N and store them in
5729 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5730 look for *every* kind of DECL and TYPE node reachable from N,
5731 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5732 NAMESPACE_DECLs, etc). */
5734 static void
5735 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5737 find_decls_types (v->decl, fld);
5740 /* If T needs an assembler name, have one created for it. */
5742 void
5743 assign_assembler_name_if_needed (tree t)
5745 if (need_assembler_name_p (t))
5747 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5748 diagnostics that use input_location to show locus
5749 information. The problem here is that, at this point,
5750 input_location is generally anchored to the end of the file
5751 (since the parser is long gone), so we don't have a good
5752 position to pin it to.
5754 To alleviate this problem, this uses the location of T's
5755 declaration. Examples of this are
5756 testsuite/g++.dg/template/cond2.C and
5757 testsuite/g++.dg/template/pr35240.C. */
5758 location_t saved_location = input_location;
5759 input_location = DECL_SOURCE_LOCATION (t);
5761 decl_assembler_name (t);
5763 input_location = saved_location;
5768 /* Free language specific information for every operand and expression
5769 in every node of the call graph. This process operates in three stages:
5771 1- Every callgraph node and varpool node is traversed looking for
5772 decls and types embedded in them. This is a more exhaustive
5773 search than that done by find_referenced_vars, because it will
5774 also collect individual fields, decls embedded in types, etc.
5776 2- All the decls found are sent to free_lang_data_in_decl.
5778 3- All the types found are sent to free_lang_data_in_type.
5780 The ordering between decls and types is important because
5781 free_lang_data_in_decl sets assembler names, which includes
5782 mangling. So types cannot be freed up until assembler names have
5783 been set up. */
5785 static void
5786 free_lang_data_in_cgraph (void)
5788 struct cgraph_node *n;
5789 varpool_node *v;
5790 struct free_lang_data_d fld;
5791 tree t;
5792 unsigned i;
5793 alias_pair *p;
5795 /* Find decls and types in the body of every function in the callgraph. */
5796 FOR_EACH_FUNCTION (n)
5797 find_decls_types_in_node (n, &fld);
5799 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5800 find_decls_types (p->decl, &fld);
5802 /* Find decls and types in every varpool symbol. */
5803 FOR_EACH_VARIABLE (v)
5804 find_decls_types_in_var (v, &fld);
5806 /* Set the assembler name on every decl found. We need to do this
5807 now because free_lang_data_in_decl will invalidate data needed
5808 for mangling. This breaks mangling on interdependent decls. */
5809 FOR_EACH_VEC_ELT (fld.decls, i, t)
5810 assign_assembler_name_if_needed (t);
5812 /* Traverse every decl found freeing its language data. */
5813 FOR_EACH_VEC_ELT (fld.decls, i, t)
5814 free_lang_data_in_decl (t);
5816 /* Traverse every type found freeing its language data. */
5817 FOR_EACH_VEC_ELT (fld.types, i, t)
5818 free_lang_data_in_type (t);
5819 if (flag_checking)
5821 FOR_EACH_VEC_ELT (fld.types, i, t)
5822 verify_type (t);
5827 /* Free resources that are used by FE but are not needed once they are done. */
5829 static unsigned
5830 free_lang_data (void)
5832 unsigned i;
5834 /* If we are the LTO frontend we have freed lang-specific data already. */
5835 if (in_lto_p
5836 || (!flag_generate_lto && !flag_generate_offload))
5837 return 0;
5839 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
5840 if (vec_safe_is_empty (all_translation_units))
5841 build_translation_unit_decl (NULL_TREE);
5843 /* Allocate and assign alias sets to the standard integer types
5844 while the slots are still in the way the frontends generated them. */
5845 for (i = 0; i < itk_none; ++i)
5846 if (integer_types[i])
5847 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5849 /* Traverse the IL resetting language specific information for
5850 operands, expressions, etc. */
5851 free_lang_data_in_cgraph ();
5853 /* Create gimple variants for common types. */
5854 for (unsigned i = 0;
5855 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
5856 ++i)
5857 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
5859 /* Reset some langhooks. Do not reset types_compatible_p, it may
5860 still be used indirectly via the get_alias_set langhook. */
5861 lang_hooks.dwarf_name = lhd_dwarf_name;
5862 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5863 lang_hooks.gimplify_expr = lhd_gimplify_expr;
5865 /* We do not want the default decl_assembler_name implementation,
5866 rather if we have fixed everything we want a wrapper around it
5867 asserting that all non-local symbols already got their assembler
5868 name and only produce assembler names for local symbols. Or rather
5869 make sure we never call decl_assembler_name on local symbols and
5870 devise a separate, middle-end private scheme for it. */
5872 /* Reset diagnostic machinery. */
5873 tree_diagnostics_defaults (global_dc);
5875 rebuild_type_inheritance_graph ();
5877 return 0;
5881 namespace {
5883 const pass_data pass_data_ipa_free_lang_data =
5885 SIMPLE_IPA_PASS, /* type */
5886 "*free_lang_data", /* name */
5887 OPTGROUP_NONE, /* optinfo_flags */
5888 TV_IPA_FREE_LANG_DATA, /* tv_id */
5889 0, /* properties_required */
5890 0, /* properties_provided */
5891 0, /* properties_destroyed */
5892 0, /* todo_flags_start */
5893 0, /* todo_flags_finish */
5896 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5898 public:
5899 pass_ipa_free_lang_data (gcc::context *ctxt)
5900 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5903 /* opt_pass methods: */
5904 virtual unsigned int execute (function *) { return free_lang_data (); }
5906 }; // class pass_ipa_free_lang_data
5908 } // anon namespace
5910 simple_ipa_opt_pass *
5911 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5913 return new pass_ipa_free_lang_data (ctxt);
5916 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5917 of the various TYPE_QUAL values. */
5919 static void
5920 set_type_quals (tree type, int type_quals)
5922 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5923 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5924 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5925 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
5926 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
5929 /* Returns true iff CAND and BASE have equivalent language-specific
5930 qualifiers. */
5932 bool
5933 check_lang_type (const_tree cand, const_tree base)
5935 if (lang_hooks.types.type_hash_eq == NULL)
5936 return true;
5937 /* type_hash_eq currently only applies to these types. */
5938 if (TREE_CODE (cand) != FUNCTION_TYPE
5939 && TREE_CODE (cand) != METHOD_TYPE)
5940 return true;
5941 return lang_hooks.types.type_hash_eq (cand, base);
5944 /* Returns true iff unqualified CAND and BASE are equivalent. */
5946 bool
5947 check_base_type (const_tree cand, const_tree base)
5949 return (TYPE_NAME (cand) == TYPE_NAME (base)
5950 /* Apparently this is needed for Objective-C. */
5951 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5952 /* Check alignment. */
5953 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5954 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5955 TYPE_ATTRIBUTES (base)));
5958 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5960 bool
5961 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5963 return (TYPE_QUALS (cand) == type_quals
5964 && check_base_type (cand, base)
5965 && check_lang_type (cand, base));
5968 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5970 static bool
5971 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5973 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5974 && TYPE_NAME (cand) == TYPE_NAME (base)
5975 /* Apparently this is needed for Objective-C. */
5976 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5977 /* Check alignment. */
5978 && TYPE_ALIGN (cand) == align
5979 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5980 TYPE_ATTRIBUTES (base))
5981 && check_lang_type (cand, base));
5984 /* This function checks to see if TYPE matches the size one of the built-in
5985 atomic types, and returns that core atomic type. */
5987 static tree
5988 find_atomic_core_type (tree type)
5990 tree base_atomic_type;
5992 /* Only handle complete types. */
5993 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
5994 return NULL_TREE;
5996 switch (tree_to_uhwi (TYPE_SIZE (type)))
5998 case 8:
5999 base_atomic_type = atomicQI_type_node;
6000 break;
6002 case 16:
6003 base_atomic_type = atomicHI_type_node;
6004 break;
6006 case 32:
6007 base_atomic_type = atomicSI_type_node;
6008 break;
6010 case 64:
6011 base_atomic_type = atomicDI_type_node;
6012 break;
6014 case 128:
6015 base_atomic_type = atomicTI_type_node;
6016 break;
6018 default:
6019 base_atomic_type = NULL_TREE;
6022 return base_atomic_type;
6025 /* Return a version of the TYPE, qualified as indicated by the
6026 TYPE_QUALS, if one exists. If no qualified version exists yet,
6027 return NULL_TREE. */
6029 tree
6030 get_qualified_type (tree type, int type_quals)
6032 tree t;
6034 if (TYPE_QUALS (type) == type_quals)
6035 return type;
6037 /* Search the chain of variants to see if there is already one there just
6038 like the one we need to have. If so, use that existing one. We must
6039 preserve the TYPE_NAME, since there is code that depends on this. */
6040 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6041 if (check_qualified_type (t, type, type_quals))
6042 return t;
6044 return NULL_TREE;
6047 /* Like get_qualified_type, but creates the type if it does not
6048 exist. This function never returns NULL_TREE. */
6050 tree
6051 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6053 tree t;
6055 /* See if we already have the appropriate qualified variant. */
6056 t = get_qualified_type (type, type_quals);
6058 /* If not, build it. */
6059 if (!t)
6061 t = build_variant_type_copy (type PASS_MEM_STAT);
6062 set_type_quals (t, type_quals);
6064 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6066 /* See if this object can map to a basic atomic type. */
6067 tree atomic_type = find_atomic_core_type (type);
6068 if (atomic_type)
6070 /* Ensure the alignment of this type is compatible with
6071 the required alignment of the atomic type. */
6072 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6073 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6077 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6078 /* Propagate structural equality. */
6079 SET_TYPE_STRUCTURAL_EQUALITY (t);
6080 else if (TYPE_CANONICAL (type) != type)
6081 /* Build the underlying canonical type, since it is different
6082 from TYPE. */
6084 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6085 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6087 else
6088 /* T is its own canonical type. */
6089 TYPE_CANONICAL (t) = t;
6093 return t;
6096 /* Create a variant of type T with alignment ALIGN. */
6098 tree
6099 build_aligned_type (tree type, unsigned int align)
6101 tree t;
6103 if (TYPE_PACKED (type)
6104 || TYPE_ALIGN (type) == align)
6105 return type;
6107 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6108 if (check_aligned_type (t, type, align))
6109 return t;
6111 t = build_variant_type_copy (type);
6112 SET_TYPE_ALIGN (t, align);
6113 TYPE_USER_ALIGN (t) = 1;
6115 return t;
6118 /* Create a new distinct copy of TYPE. The new type is made its own
6119 MAIN_VARIANT. If TYPE requires structural equality checks, the
6120 resulting type requires structural equality checks; otherwise, its
6121 TYPE_CANONICAL points to itself. */
6123 tree
6124 build_distinct_type_copy (tree type MEM_STAT_DECL)
6126 tree t = copy_node (type PASS_MEM_STAT);
6128 TYPE_POINTER_TO (t) = 0;
6129 TYPE_REFERENCE_TO (t) = 0;
6131 /* Set the canonical type either to a new equivalence class, or
6132 propagate the need for structural equality checks. */
6133 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6134 SET_TYPE_STRUCTURAL_EQUALITY (t);
6135 else
6136 TYPE_CANONICAL (t) = t;
6138 /* Make it its own variant. */
6139 TYPE_MAIN_VARIANT (t) = t;
6140 TYPE_NEXT_VARIANT (t) = 0;
6142 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6143 whose TREE_TYPE is not t. This can also happen in the Ada
6144 frontend when using subtypes. */
6146 return t;
6149 /* Create a new variant of TYPE, equivalent but distinct. This is so
6150 the caller can modify it. TYPE_CANONICAL for the return type will
6151 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6152 are considered equal by the language itself (or that both types
6153 require structural equality checks). */
6155 tree
6156 build_variant_type_copy (tree type MEM_STAT_DECL)
6158 tree t, m = TYPE_MAIN_VARIANT (type);
6160 t = build_distinct_type_copy (type PASS_MEM_STAT);
6162 /* Since we're building a variant, assume that it is a non-semantic
6163 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6164 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6165 /* Type variants have no alias set defined. */
6166 TYPE_ALIAS_SET (t) = -1;
6168 /* Add the new type to the chain of variants of TYPE. */
6169 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6170 TYPE_NEXT_VARIANT (m) = t;
6171 TYPE_MAIN_VARIANT (t) = m;
6173 return t;
6176 /* Return true if the from tree in both tree maps are equal. */
6179 tree_map_base_eq (const void *va, const void *vb)
6181 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6182 *const b = (const struct tree_map_base *) vb;
6183 return (a->from == b->from);
6186 /* Hash a from tree in a tree_base_map. */
6188 unsigned int
6189 tree_map_base_hash (const void *item)
6191 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6194 /* Return true if this tree map structure is marked for garbage collection
6195 purposes. We simply return true if the from tree is marked, so that this
6196 structure goes away when the from tree goes away. */
6199 tree_map_base_marked_p (const void *p)
6201 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6204 /* Hash a from tree in a tree_map. */
6206 unsigned int
6207 tree_map_hash (const void *item)
6209 return (((const struct tree_map *) item)->hash);
6212 /* Hash a from tree in a tree_decl_map. */
6214 unsigned int
6215 tree_decl_map_hash (const void *item)
6217 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6220 /* Return the initialization priority for DECL. */
6222 priority_type
6223 decl_init_priority_lookup (tree decl)
6225 symtab_node *snode = symtab_node::get (decl);
6227 if (!snode)
6228 return DEFAULT_INIT_PRIORITY;
6229 return
6230 snode->get_init_priority ();
6233 /* Return the finalization priority for DECL. */
6235 priority_type
6236 decl_fini_priority_lookup (tree decl)
6238 cgraph_node *node = cgraph_node::get (decl);
6240 if (!node)
6241 return DEFAULT_INIT_PRIORITY;
6242 return
6243 node->get_fini_priority ();
6246 /* Set the initialization priority for DECL to PRIORITY. */
6248 void
6249 decl_init_priority_insert (tree decl, priority_type priority)
6251 struct symtab_node *snode;
6253 if (priority == DEFAULT_INIT_PRIORITY)
6255 snode = symtab_node::get (decl);
6256 if (!snode)
6257 return;
6259 else if (VAR_P (decl))
6260 snode = varpool_node::get_create (decl);
6261 else
6262 snode = cgraph_node::get_create (decl);
6263 snode->set_init_priority (priority);
6266 /* Set the finalization priority for DECL to PRIORITY. */
6268 void
6269 decl_fini_priority_insert (tree decl, priority_type priority)
6271 struct cgraph_node *node;
6273 if (priority == DEFAULT_INIT_PRIORITY)
6275 node = cgraph_node::get (decl);
6276 if (!node)
6277 return;
6279 else
6280 node = cgraph_node::get_create (decl);
6281 node->set_fini_priority (priority);
6284 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6286 static void
6287 print_debug_expr_statistics (void)
6289 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6290 (long) debug_expr_for_decl->size (),
6291 (long) debug_expr_for_decl->elements (),
6292 debug_expr_for_decl->collisions ());
6295 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6297 static void
6298 print_value_expr_statistics (void)
6300 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6301 (long) value_expr_for_decl->size (),
6302 (long) value_expr_for_decl->elements (),
6303 value_expr_for_decl->collisions ());
6306 /* Lookup a debug expression for FROM, and return it if we find one. */
6308 tree
6309 decl_debug_expr_lookup (tree from)
6311 struct tree_decl_map *h, in;
6312 in.base.from = from;
6314 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6315 if (h)
6316 return h->to;
6317 return NULL_TREE;
6320 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6322 void
6323 decl_debug_expr_insert (tree from, tree to)
6325 struct tree_decl_map *h;
6327 h = ggc_alloc<tree_decl_map> ();
6328 h->base.from = from;
6329 h->to = to;
6330 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6333 /* Lookup a value expression for FROM, and return it if we find one. */
6335 tree
6336 decl_value_expr_lookup (tree from)
6338 struct tree_decl_map *h, in;
6339 in.base.from = from;
6341 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6342 if (h)
6343 return h->to;
6344 return NULL_TREE;
6347 /* Insert a mapping FROM->TO in the value expression hashtable. */
6349 void
6350 decl_value_expr_insert (tree from, tree to)
6352 struct tree_decl_map *h;
6354 h = ggc_alloc<tree_decl_map> ();
6355 h->base.from = from;
6356 h->to = to;
6357 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6360 /* Lookup a vector of debug arguments for FROM, and return it if we
6361 find one. */
6363 vec<tree, va_gc> **
6364 decl_debug_args_lookup (tree from)
6366 struct tree_vec_map *h, in;
6368 if (!DECL_HAS_DEBUG_ARGS_P (from))
6369 return NULL;
6370 gcc_checking_assert (debug_args_for_decl != NULL);
6371 in.base.from = from;
6372 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6373 if (h)
6374 return &h->to;
6375 return NULL;
6378 /* Insert a mapping FROM->empty vector of debug arguments in the value
6379 expression hashtable. */
6381 vec<tree, va_gc> **
6382 decl_debug_args_insert (tree from)
6384 struct tree_vec_map *h;
6385 tree_vec_map **loc;
6387 if (DECL_HAS_DEBUG_ARGS_P (from))
6388 return decl_debug_args_lookup (from);
6389 if (debug_args_for_decl == NULL)
6390 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6391 h = ggc_alloc<tree_vec_map> ();
6392 h->base.from = from;
6393 h->to = NULL;
6394 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6395 *loc = h;
6396 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6397 return &h->to;
6400 /* Hashing of types so that we don't make duplicates.
6401 The entry point is `type_hash_canon'. */
6403 /* Generate the default hash code for TYPE. This is designed for
6404 speed, rather than maximum entropy. */
6406 hashval_t
6407 type_hash_canon_hash (tree type)
6409 inchash::hash hstate;
6411 hstate.add_int (TREE_CODE (type));
6413 if (TREE_TYPE (type))
6414 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6416 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6417 /* Just the identifier is adequate to distinguish. */
6418 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6420 switch (TREE_CODE (type))
6422 case METHOD_TYPE:
6423 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6424 /* FALLTHROUGH. */
6425 case FUNCTION_TYPE:
6426 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6427 if (TREE_VALUE (t) != error_mark_node)
6428 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6429 break;
6431 case OFFSET_TYPE:
6432 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6433 break;
6435 case ARRAY_TYPE:
6437 if (TYPE_DOMAIN (type))
6438 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6439 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6441 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6442 hstate.add_object (typeless);
6445 break;
6447 case INTEGER_TYPE:
6449 tree t = TYPE_MAX_VALUE (type);
6450 if (!t)
6451 t = TYPE_MIN_VALUE (type);
6452 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6453 hstate.add_object (TREE_INT_CST_ELT (t, i));
6454 break;
6457 case REAL_TYPE:
6458 case FIXED_POINT_TYPE:
6460 unsigned prec = TYPE_PRECISION (type);
6461 hstate.add_object (prec);
6462 break;
6465 case VECTOR_TYPE:
6466 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
6467 break;
6469 default:
6470 break;
6473 return hstate.end ();
6476 /* These are the Hashtable callback functions. */
6478 /* Returns true iff the types are equivalent. */
6480 bool
6481 type_cache_hasher::equal (type_hash *a, type_hash *b)
6483 /* First test the things that are the same for all types. */
6484 if (a->hash != b->hash
6485 || TREE_CODE (a->type) != TREE_CODE (b->type)
6486 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6487 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6488 TYPE_ATTRIBUTES (b->type))
6489 || (TREE_CODE (a->type) != COMPLEX_TYPE
6490 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6491 return 0;
6493 /* Be careful about comparing arrays before and after the element type
6494 has been completed; don't compare TYPE_ALIGN unless both types are
6495 complete. */
6496 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6497 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6498 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6499 return 0;
6501 switch (TREE_CODE (a->type))
6503 case VOID_TYPE:
6504 case COMPLEX_TYPE:
6505 case POINTER_TYPE:
6506 case REFERENCE_TYPE:
6507 case NULLPTR_TYPE:
6508 return 1;
6510 case VECTOR_TYPE:
6511 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
6512 TYPE_VECTOR_SUBPARTS (b->type));
6514 case ENUMERAL_TYPE:
6515 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6516 && !(TYPE_VALUES (a->type)
6517 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6518 && TYPE_VALUES (b->type)
6519 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6520 && type_list_equal (TYPE_VALUES (a->type),
6521 TYPE_VALUES (b->type))))
6522 return 0;
6524 /* fall through */
6526 case INTEGER_TYPE:
6527 case REAL_TYPE:
6528 case BOOLEAN_TYPE:
6529 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6530 return false;
6531 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6532 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6533 TYPE_MAX_VALUE (b->type)))
6534 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6535 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6536 TYPE_MIN_VALUE (b->type))));
6538 case FIXED_POINT_TYPE:
6539 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6541 case OFFSET_TYPE:
6542 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6544 case METHOD_TYPE:
6545 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6546 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6547 || (TYPE_ARG_TYPES (a->type)
6548 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6549 && TYPE_ARG_TYPES (b->type)
6550 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6551 && type_list_equal (TYPE_ARG_TYPES (a->type),
6552 TYPE_ARG_TYPES (b->type)))))
6553 break;
6554 return 0;
6555 case ARRAY_TYPE:
6556 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6557 where the flag should be inherited from the element type
6558 and can change after ARRAY_TYPEs are created; on non-aggregates
6559 compare it and hash it, scalars will never have that flag set
6560 and we need to differentiate between arrays created by different
6561 front-ends or middle-end created arrays. */
6562 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6563 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6564 || (TYPE_TYPELESS_STORAGE (a->type)
6565 == TYPE_TYPELESS_STORAGE (b->type))));
6567 case RECORD_TYPE:
6568 case UNION_TYPE:
6569 case QUAL_UNION_TYPE:
6570 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6571 || (TYPE_FIELDS (a->type)
6572 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6573 && TYPE_FIELDS (b->type)
6574 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6575 && type_list_equal (TYPE_FIELDS (a->type),
6576 TYPE_FIELDS (b->type))));
6578 case FUNCTION_TYPE:
6579 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6580 || (TYPE_ARG_TYPES (a->type)
6581 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6582 && TYPE_ARG_TYPES (b->type)
6583 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6584 && type_list_equal (TYPE_ARG_TYPES (a->type),
6585 TYPE_ARG_TYPES (b->type))))
6586 break;
6587 return 0;
6589 default:
6590 return 0;
6593 if (lang_hooks.types.type_hash_eq != NULL)
6594 return lang_hooks.types.type_hash_eq (a->type, b->type);
6596 return 1;
6599 /* Given TYPE, and HASHCODE its hash code, return the canonical
6600 object for an identical type if one already exists.
6601 Otherwise, return TYPE, and record it as the canonical object.
6603 To use this function, first create a type of the sort you want.
6604 Then compute its hash code from the fields of the type that
6605 make it different from other similar types.
6606 Then call this function and use the value. */
6608 tree
6609 type_hash_canon (unsigned int hashcode, tree type)
6611 type_hash in;
6612 type_hash **loc;
6614 /* The hash table only contains main variants, so ensure that's what we're
6615 being passed. */
6616 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6618 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6619 must call that routine before comparing TYPE_ALIGNs. */
6620 layout_type (type);
6622 in.hash = hashcode;
6623 in.type = type;
6625 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
6626 if (*loc)
6628 tree t1 = ((type_hash *) *loc)->type;
6629 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1);
6630 if (TYPE_UID (type) + 1 == next_type_uid)
6631 --next_type_uid;
6632 /* Free also min/max values and the cache for integer
6633 types. This can't be done in free_node, as LTO frees
6634 those on its own. */
6635 if (TREE_CODE (type) == INTEGER_TYPE)
6637 if (TYPE_MIN_VALUE (type)
6638 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
6640 /* Zero is always in TYPE_CACHED_VALUES. */
6641 if (! TYPE_UNSIGNED (type))
6642 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
6643 ggc_free (TYPE_MIN_VALUE (type));
6645 if (TYPE_MAX_VALUE (type)
6646 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
6648 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
6649 ggc_free (TYPE_MAX_VALUE (type));
6651 if (TYPE_CACHED_VALUES_P (type))
6652 ggc_free (TYPE_CACHED_VALUES (type));
6654 free_node (type);
6655 return t1;
6657 else
6659 struct type_hash *h;
6661 h = ggc_alloc<type_hash> ();
6662 h->hash = hashcode;
6663 h->type = type;
6664 *loc = h;
6666 return type;
6670 static void
6671 print_type_hash_statistics (void)
6673 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6674 (long) type_hash_table->size (),
6675 (long) type_hash_table->elements (),
6676 type_hash_table->collisions ());
6679 /* Given two lists of types
6680 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6681 return 1 if the lists contain the same types in the same order.
6682 Also, the TREE_PURPOSEs must match. */
6685 type_list_equal (const_tree l1, const_tree l2)
6687 const_tree t1, t2;
6689 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6690 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6691 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6692 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6693 && (TREE_TYPE (TREE_PURPOSE (t1))
6694 == TREE_TYPE (TREE_PURPOSE (t2))))))
6695 return 0;
6697 return t1 == t2;
6700 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6701 given by TYPE. If the argument list accepts variable arguments,
6702 then this function counts only the ordinary arguments. */
6705 type_num_arguments (const_tree type)
6707 int i = 0;
6708 tree t;
6710 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6711 /* If the function does not take a variable number of arguments,
6712 the last element in the list will have type `void'. */
6713 if (VOID_TYPE_P (TREE_VALUE (t)))
6714 break;
6715 else
6716 ++i;
6718 return i;
6721 /* Nonzero if integer constants T1 and T2
6722 represent the same constant value. */
6725 tree_int_cst_equal (const_tree t1, const_tree t2)
6727 if (t1 == t2)
6728 return 1;
6730 if (t1 == 0 || t2 == 0)
6731 return 0;
6733 if (TREE_CODE (t1) == INTEGER_CST
6734 && TREE_CODE (t2) == INTEGER_CST
6735 && wi::to_widest (t1) == wi::to_widest (t2))
6736 return 1;
6738 return 0;
6741 /* Return true if T is an INTEGER_CST whose numerical value (extended
6742 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6744 bool
6745 tree_fits_shwi_p (const_tree t)
6747 return (t != NULL_TREE
6748 && TREE_CODE (t) == INTEGER_CST
6749 && wi::fits_shwi_p (wi::to_widest (t)));
6752 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
6753 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
6755 bool
6756 tree_fits_poly_int64_p (const_tree t)
6758 if (t == NULL_TREE)
6759 return false;
6760 if (POLY_INT_CST_P (t))
6762 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
6763 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
6764 return false;
6765 return true;
6767 return (TREE_CODE (t) == INTEGER_CST
6768 && wi::fits_shwi_p (wi::to_widest (t)));
6771 /* Return true if T is an INTEGER_CST whose numerical value (extended
6772 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6774 bool
6775 tree_fits_uhwi_p (const_tree t)
6777 return (t != NULL_TREE
6778 && TREE_CODE (t) == INTEGER_CST
6779 && wi::fits_uhwi_p (wi::to_widest (t)));
6782 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
6783 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
6785 bool
6786 tree_fits_poly_uint64_p (const_tree t)
6788 if (t == NULL_TREE)
6789 return false;
6790 if (POLY_INT_CST_P (t))
6792 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
6793 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
6794 return false;
6795 return true;
6797 return (TREE_CODE (t) == INTEGER_CST
6798 && wi::fits_uhwi_p (wi::to_widest (t)));
6801 /* T is an INTEGER_CST whose numerical value (extended according to
6802 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
6803 HOST_WIDE_INT. */
6805 HOST_WIDE_INT
6806 tree_to_shwi (const_tree t)
6808 gcc_assert (tree_fits_shwi_p (t));
6809 return TREE_INT_CST_LOW (t);
6812 /* T is an INTEGER_CST whose numerical value (extended according to
6813 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
6814 HOST_WIDE_INT. */
6816 unsigned HOST_WIDE_INT
6817 tree_to_uhwi (const_tree t)
6819 gcc_assert (tree_fits_uhwi_p (t));
6820 return TREE_INT_CST_LOW (t);
6823 /* Return the most significant (sign) bit of T. */
6826 tree_int_cst_sign_bit (const_tree t)
6828 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
6830 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
6833 /* Return an indication of the sign of the integer constant T.
6834 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6835 Note that -1 will never be returned if T's type is unsigned. */
6838 tree_int_cst_sgn (const_tree t)
6840 if (wi::to_wide (t) == 0)
6841 return 0;
6842 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6843 return 1;
6844 else if (wi::neg_p (wi::to_wide (t)))
6845 return -1;
6846 else
6847 return 1;
6850 /* Return the minimum number of bits needed to represent VALUE in a
6851 signed or unsigned type, UNSIGNEDP says which. */
6853 unsigned int
6854 tree_int_cst_min_precision (tree value, signop sgn)
6856 /* If the value is negative, compute its negative minus 1. The latter
6857 adjustment is because the absolute value of the largest negative value
6858 is one larger than the largest positive value. This is equivalent to
6859 a bit-wise negation, so use that operation instead. */
6861 if (tree_int_cst_sgn (value) < 0)
6862 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6864 /* Return the number of bits needed, taking into account the fact
6865 that we need one more bit for a signed than unsigned type.
6866 If value is 0 or -1, the minimum precision is 1 no matter
6867 whether unsignedp is true or false. */
6869 if (integer_zerop (value))
6870 return 1;
6871 else
6872 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
6875 /* Return truthvalue of whether T1 is the same tree structure as T2.
6876 Return 1 if they are the same.
6877 Return 0 if they are understandably different.
6878 Return -1 if either contains tree structure not understood by
6879 this function. */
6882 simple_cst_equal (const_tree t1, const_tree t2)
6884 enum tree_code code1, code2;
6885 int cmp;
6886 int i;
6888 if (t1 == t2)
6889 return 1;
6890 if (t1 == 0 || t2 == 0)
6891 return 0;
6893 code1 = TREE_CODE (t1);
6894 code2 = TREE_CODE (t2);
6896 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6898 if (CONVERT_EXPR_CODE_P (code2)
6899 || code2 == NON_LVALUE_EXPR)
6900 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6901 else
6902 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6905 else if (CONVERT_EXPR_CODE_P (code2)
6906 || code2 == NON_LVALUE_EXPR)
6907 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6909 if (code1 != code2)
6910 return 0;
6912 switch (code1)
6914 case INTEGER_CST:
6915 return wi::to_widest (t1) == wi::to_widest (t2);
6917 case REAL_CST:
6918 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
6920 case FIXED_CST:
6921 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6923 case STRING_CST:
6924 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6925 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6926 TREE_STRING_LENGTH (t1)));
6928 case CONSTRUCTOR:
6930 unsigned HOST_WIDE_INT idx;
6931 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
6932 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
6934 if (vec_safe_length (v1) != vec_safe_length (v2))
6935 return false;
6937 for (idx = 0; idx < vec_safe_length (v1); ++idx)
6938 /* ??? Should we handle also fields here? */
6939 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
6940 return false;
6941 return true;
6944 case SAVE_EXPR:
6945 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6947 case CALL_EXPR:
6948 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6949 if (cmp <= 0)
6950 return cmp;
6951 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6952 return 0;
6954 const_tree arg1, arg2;
6955 const_call_expr_arg_iterator iter1, iter2;
6956 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6957 arg2 = first_const_call_expr_arg (t2, &iter2);
6958 arg1 && arg2;
6959 arg1 = next_const_call_expr_arg (&iter1),
6960 arg2 = next_const_call_expr_arg (&iter2))
6962 cmp = simple_cst_equal (arg1, arg2);
6963 if (cmp <= 0)
6964 return cmp;
6966 return arg1 == arg2;
6969 case TARGET_EXPR:
6970 /* Special case: if either target is an unallocated VAR_DECL,
6971 it means that it's going to be unified with whatever the
6972 TARGET_EXPR is really supposed to initialize, so treat it
6973 as being equivalent to anything. */
6974 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6975 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6976 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6977 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6978 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6979 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6980 cmp = 1;
6981 else
6982 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6984 if (cmp <= 0)
6985 return cmp;
6987 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6989 case WITH_CLEANUP_EXPR:
6990 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6991 if (cmp <= 0)
6992 return cmp;
6994 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6996 case COMPONENT_REF:
6997 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6998 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7000 return 0;
7002 case VAR_DECL:
7003 case PARM_DECL:
7004 case CONST_DECL:
7005 case FUNCTION_DECL:
7006 return 0;
7008 default:
7009 if (POLY_INT_CST_P (t1))
7010 /* A false return means maybe_ne rather than known_ne. */
7011 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7012 TYPE_SIGN (TREE_TYPE (t1))),
7013 poly_widest_int::from (poly_int_cst_value (t2),
7014 TYPE_SIGN (TREE_TYPE (t2))));
7015 break;
7018 /* This general rule works for most tree codes. All exceptions should be
7019 handled above. If this is a language-specific tree code, we can't
7020 trust what might be in the operand, so say we don't know
7021 the situation. */
7022 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7023 return -1;
7025 switch (TREE_CODE_CLASS (code1))
7027 case tcc_unary:
7028 case tcc_binary:
7029 case tcc_comparison:
7030 case tcc_expression:
7031 case tcc_reference:
7032 case tcc_statement:
7033 cmp = 1;
7034 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7036 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7037 if (cmp <= 0)
7038 return cmp;
7041 return cmp;
7043 default:
7044 return -1;
7048 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7049 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7050 than U, respectively. */
7053 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7055 if (tree_int_cst_sgn (t) < 0)
7056 return -1;
7057 else if (!tree_fits_uhwi_p (t))
7058 return 1;
7059 else if (TREE_INT_CST_LOW (t) == u)
7060 return 0;
7061 else if (TREE_INT_CST_LOW (t) < u)
7062 return -1;
7063 else
7064 return 1;
7067 /* Return true if SIZE represents a constant size that is in bounds of
7068 what the middle-end and the backend accepts (covering not more than
7069 half of the address-space). */
7071 bool
7072 valid_constant_size_p (const_tree size)
7074 if (POLY_INT_CST_P (size))
7076 if (TREE_OVERFLOW (size))
7077 return false;
7078 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7079 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7080 return false;
7081 return true;
7083 if (! tree_fits_uhwi_p (size)
7084 || TREE_OVERFLOW (size)
7085 || tree_int_cst_sign_bit (size) != 0)
7086 return false;
7087 return true;
7090 /* Return the precision of the type, or for a complex or vector type the
7091 precision of the type of its elements. */
7093 unsigned int
7094 element_precision (const_tree type)
7096 if (!TYPE_P (type))
7097 type = TREE_TYPE (type);
7098 enum tree_code code = TREE_CODE (type);
7099 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7100 type = TREE_TYPE (type);
7102 return TYPE_PRECISION (type);
7105 /* Return true if CODE represents an associative tree code. Otherwise
7106 return false. */
7107 bool
7108 associative_tree_code (enum tree_code code)
7110 switch (code)
7112 case BIT_IOR_EXPR:
7113 case BIT_AND_EXPR:
7114 case BIT_XOR_EXPR:
7115 case PLUS_EXPR:
7116 case MULT_EXPR:
7117 case MIN_EXPR:
7118 case MAX_EXPR:
7119 return true;
7121 default:
7122 break;
7124 return false;
7127 /* Return true if CODE represents a commutative tree code. Otherwise
7128 return false. */
7129 bool
7130 commutative_tree_code (enum tree_code code)
7132 switch (code)
7134 case PLUS_EXPR:
7135 case MULT_EXPR:
7136 case MULT_HIGHPART_EXPR:
7137 case MIN_EXPR:
7138 case MAX_EXPR:
7139 case BIT_IOR_EXPR:
7140 case BIT_XOR_EXPR:
7141 case BIT_AND_EXPR:
7142 case NE_EXPR:
7143 case EQ_EXPR:
7144 case UNORDERED_EXPR:
7145 case ORDERED_EXPR:
7146 case UNEQ_EXPR:
7147 case LTGT_EXPR:
7148 case TRUTH_AND_EXPR:
7149 case TRUTH_XOR_EXPR:
7150 case TRUTH_OR_EXPR:
7151 case WIDEN_MULT_EXPR:
7152 case VEC_WIDEN_MULT_HI_EXPR:
7153 case VEC_WIDEN_MULT_LO_EXPR:
7154 case VEC_WIDEN_MULT_EVEN_EXPR:
7155 case VEC_WIDEN_MULT_ODD_EXPR:
7156 return true;
7158 default:
7159 break;
7161 return false;
7164 /* Return true if CODE represents a ternary tree code for which the
7165 first two operands are commutative. Otherwise return false. */
7166 bool
7167 commutative_ternary_tree_code (enum tree_code code)
7169 switch (code)
7171 case WIDEN_MULT_PLUS_EXPR:
7172 case WIDEN_MULT_MINUS_EXPR:
7173 case DOT_PROD_EXPR:
7174 case FMA_EXPR:
7175 return true;
7177 default:
7178 break;
7180 return false;
7183 /* Returns true if CODE can overflow. */
7185 bool
7186 operation_can_overflow (enum tree_code code)
7188 switch (code)
7190 case PLUS_EXPR:
7191 case MINUS_EXPR:
7192 case MULT_EXPR:
7193 case LSHIFT_EXPR:
7194 /* Can overflow in various ways. */
7195 return true;
7196 case TRUNC_DIV_EXPR:
7197 case EXACT_DIV_EXPR:
7198 case FLOOR_DIV_EXPR:
7199 case CEIL_DIV_EXPR:
7200 /* For INT_MIN / -1. */
7201 return true;
7202 case NEGATE_EXPR:
7203 case ABS_EXPR:
7204 /* For -INT_MIN. */
7205 return true;
7206 default:
7207 /* These operators cannot overflow. */
7208 return false;
7212 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7213 ftrapv doesn't generate trapping insns for CODE. */
7215 bool
7216 operation_no_trapping_overflow (tree type, enum tree_code code)
7218 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7220 /* We don't generate instructions that trap on overflow for complex or vector
7221 types. */
7222 if (!INTEGRAL_TYPE_P (type))
7223 return true;
7225 if (!TYPE_OVERFLOW_TRAPS (type))
7226 return true;
7228 switch (code)
7230 case PLUS_EXPR:
7231 case MINUS_EXPR:
7232 case MULT_EXPR:
7233 case NEGATE_EXPR:
7234 case ABS_EXPR:
7235 /* These operators can overflow, and -ftrapv generates trapping code for
7236 these. */
7237 return false;
7238 case TRUNC_DIV_EXPR:
7239 case EXACT_DIV_EXPR:
7240 case FLOOR_DIV_EXPR:
7241 case CEIL_DIV_EXPR:
7242 case LSHIFT_EXPR:
7243 /* These operators can overflow, but -ftrapv does not generate trapping
7244 code for these. */
7245 return true;
7246 default:
7247 /* These operators cannot overflow. */
7248 return true;
7252 namespace inchash
7255 /* Generate a hash value for an expression. This can be used iteratively
7256 by passing a previous result as the HSTATE argument.
7258 This function is intended to produce the same hash for expressions which
7259 would compare equal using operand_equal_p. */
7260 void
7261 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7263 int i;
7264 enum tree_code code;
7265 enum tree_code_class tclass;
7267 if (t == NULL_TREE || t == error_mark_node)
7269 hstate.merge_hash (0);
7270 return;
7273 if (!(flags & OEP_ADDRESS_OF))
7274 STRIP_NOPS (t);
7276 code = TREE_CODE (t);
7278 switch (code)
7280 /* Alas, constants aren't shared, so we can't rely on pointer
7281 identity. */
7282 case VOID_CST:
7283 hstate.merge_hash (0);
7284 return;
7285 case INTEGER_CST:
7286 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7287 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7288 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7289 return;
7290 case REAL_CST:
7292 unsigned int val2;
7293 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7294 val2 = rvc_zero;
7295 else
7296 val2 = real_hash (TREE_REAL_CST_PTR (t));
7297 hstate.merge_hash (val2);
7298 return;
7300 case FIXED_CST:
7302 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7303 hstate.merge_hash (val2);
7304 return;
7306 case STRING_CST:
7307 hstate.add ((const void *) TREE_STRING_POINTER (t),
7308 TREE_STRING_LENGTH (t));
7309 return;
7310 case COMPLEX_CST:
7311 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7312 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7313 return;
7314 case VECTOR_CST:
7316 hstate.add_int (VECTOR_CST_NPATTERNS (t));
7317 hstate.add_int (VECTOR_CST_NELTS_PER_PATTERN (t));
7318 unsigned int count = vector_cst_encoded_nelts (t);
7319 for (unsigned int i = 0; i < count; ++i)
7320 inchash::add_expr (VECTOR_CST_ENCODED_ELT (t, i), hstate, flags);
7321 return;
7323 case SSA_NAME:
7324 /* We can just compare by pointer. */
7325 hstate.add_hwi (SSA_NAME_VERSION (t));
7326 return;
7327 case PLACEHOLDER_EXPR:
7328 /* The node itself doesn't matter. */
7329 return;
7330 case BLOCK:
7331 case OMP_CLAUSE:
7332 /* Ignore. */
7333 return;
7334 case TREE_LIST:
7335 /* A list of expressions, for a CALL_EXPR or as the elements of a
7336 VECTOR_CST. */
7337 for (; t; t = TREE_CHAIN (t))
7338 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7339 return;
7340 case CONSTRUCTOR:
7342 unsigned HOST_WIDE_INT idx;
7343 tree field, value;
7344 flags &= ~OEP_ADDRESS_OF;
7345 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7347 inchash::add_expr (field, hstate, flags);
7348 inchash::add_expr (value, hstate, flags);
7350 return;
7352 case STATEMENT_LIST:
7354 tree_stmt_iterator i;
7355 for (i = tsi_start (CONST_CAST_TREE (t));
7356 !tsi_end_p (i); tsi_next (&i))
7357 inchash::add_expr (tsi_stmt (i), hstate, flags);
7358 return;
7360 case TREE_VEC:
7361 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7362 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7363 return;
7364 case FUNCTION_DECL:
7365 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7366 Otherwise nodes that compare equal according to operand_equal_p might
7367 get different hash codes. However, don't do this for machine specific
7368 or front end builtins, since the function code is overloaded in those
7369 cases. */
7370 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7371 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7373 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7374 code = TREE_CODE (t);
7376 /* FALL THROUGH */
7377 default:
7378 if (POLY_INT_CST_P (t))
7380 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7381 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
7382 return;
7384 tclass = TREE_CODE_CLASS (code);
7386 if (tclass == tcc_declaration)
7388 /* DECL's have a unique ID */
7389 hstate.add_hwi (DECL_UID (t));
7391 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7393 /* For comparisons that can be swapped, use the lower
7394 tree code. */
7395 enum tree_code ccode = swap_tree_comparison (code);
7396 if (code < ccode)
7397 ccode = code;
7398 hstate.add_object (ccode);
7399 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7400 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7402 else if (CONVERT_EXPR_CODE_P (code))
7404 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7405 operand_equal_p. */
7406 enum tree_code ccode = NOP_EXPR;
7407 hstate.add_object (ccode);
7409 /* Don't hash the type, that can lead to having nodes which
7410 compare equal according to operand_equal_p, but which
7411 have different hash codes. Make sure to include signedness
7412 in the hash computation. */
7413 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7414 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7416 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7417 else if (code == MEM_REF
7418 && (flags & OEP_ADDRESS_OF) != 0
7419 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7420 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7421 && integer_zerop (TREE_OPERAND (t, 1)))
7422 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7423 hstate, flags);
7424 /* Don't ICE on FE specific trees, or their arguments etc.
7425 during operand_equal_p hash verification. */
7426 else if (!IS_EXPR_CODE_CLASS (tclass))
7427 gcc_assert (flags & OEP_HASH_CHECK);
7428 else
7430 unsigned int sflags = flags;
7432 hstate.add_object (code);
7434 switch (code)
7436 case ADDR_EXPR:
7437 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7438 flags |= OEP_ADDRESS_OF;
7439 sflags = flags;
7440 break;
7442 case INDIRECT_REF:
7443 case MEM_REF:
7444 case TARGET_MEM_REF:
7445 flags &= ~OEP_ADDRESS_OF;
7446 sflags = flags;
7447 break;
7449 case ARRAY_REF:
7450 case ARRAY_RANGE_REF:
7451 case COMPONENT_REF:
7452 case BIT_FIELD_REF:
7453 sflags &= ~OEP_ADDRESS_OF;
7454 break;
7456 case COND_EXPR:
7457 flags &= ~OEP_ADDRESS_OF;
7458 break;
7460 case FMA_EXPR:
7461 case WIDEN_MULT_PLUS_EXPR:
7462 case WIDEN_MULT_MINUS_EXPR:
7464 /* The multiplication operands are commutative. */
7465 inchash::hash one, two;
7466 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7467 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7468 hstate.add_commutative (one, two);
7469 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7470 return;
7473 case CALL_EXPR:
7474 if (CALL_EXPR_FN (t) == NULL_TREE)
7475 hstate.add_int (CALL_EXPR_IFN (t));
7476 break;
7478 case TARGET_EXPR:
7479 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7480 Usually different TARGET_EXPRs just should use
7481 different temporaries in their slots. */
7482 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7483 return;
7485 default:
7486 break;
7489 /* Don't hash the type, that can lead to having nodes which
7490 compare equal according to operand_equal_p, but which
7491 have different hash codes. */
7492 if (code == NON_LVALUE_EXPR)
7494 /* Make sure to include signness in the hash computation. */
7495 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7496 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7499 else if (commutative_tree_code (code))
7501 /* It's a commutative expression. We want to hash it the same
7502 however it appears. We do this by first hashing both operands
7503 and then rehashing based on the order of their independent
7504 hashes. */
7505 inchash::hash one, two;
7506 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7507 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7508 hstate.add_commutative (one, two);
7510 else
7511 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7512 inchash::add_expr (TREE_OPERAND (t, i), hstate,
7513 i == 0 ? flags : sflags);
7515 return;
7521 /* Constructors for pointer, array and function types.
7522 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7523 constructed by language-dependent code, not here.) */
7525 /* Construct, lay out and return the type of pointers to TO_TYPE with
7526 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7527 reference all of memory. If such a type has already been
7528 constructed, reuse it. */
7530 tree
7531 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7532 bool can_alias_all)
7534 tree t;
7535 bool could_alias = can_alias_all;
7537 if (to_type == error_mark_node)
7538 return error_mark_node;
7540 /* If the pointed-to type has the may_alias attribute set, force
7541 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7542 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7543 can_alias_all = true;
7545 /* In some cases, languages will have things that aren't a POINTER_TYPE
7546 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7547 In that case, return that type without regard to the rest of our
7548 operands.
7550 ??? This is a kludge, but consistent with the way this function has
7551 always operated and there doesn't seem to be a good way to avoid this
7552 at the moment. */
7553 if (TYPE_POINTER_TO (to_type) != 0
7554 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7555 return TYPE_POINTER_TO (to_type);
7557 /* First, if we already have a type for pointers to TO_TYPE and it's
7558 the proper mode, use it. */
7559 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7560 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7561 return t;
7563 t = make_node (POINTER_TYPE);
7565 TREE_TYPE (t) = to_type;
7566 SET_TYPE_MODE (t, mode);
7567 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7568 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7569 TYPE_POINTER_TO (to_type) = t;
7571 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7572 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7573 SET_TYPE_STRUCTURAL_EQUALITY (t);
7574 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7575 TYPE_CANONICAL (t)
7576 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7577 mode, false);
7579 /* Lay out the type. This function has many callers that are concerned
7580 with expression-construction, and this simplifies them all. */
7581 layout_type (t);
7583 return t;
7586 /* By default build pointers in ptr_mode. */
7588 tree
7589 build_pointer_type (tree to_type)
7591 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7592 : TYPE_ADDR_SPACE (to_type);
7593 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7594 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7597 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7599 tree
7600 build_reference_type_for_mode (tree to_type, machine_mode mode,
7601 bool can_alias_all)
7603 tree t;
7604 bool could_alias = can_alias_all;
7606 if (to_type == error_mark_node)
7607 return error_mark_node;
7609 /* If the pointed-to type has the may_alias attribute set, force
7610 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7611 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7612 can_alias_all = true;
7614 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7615 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7616 In that case, return that type without regard to the rest of our
7617 operands.
7619 ??? This is a kludge, but consistent with the way this function has
7620 always operated and there doesn't seem to be a good way to avoid this
7621 at the moment. */
7622 if (TYPE_REFERENCE_TO (to_type) != 0
7623 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7624 return TYPE_REFERENCE_TO (to_type);
7626 /* First, if we already have a type for pointers to TO_TYPE and it's
7627 the proper mode, use it. */
7628 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7629 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7630 return t;
7632 t = make_node (REFERENCE_TYPE);
7634 TREE_TYPE (t) = to_type;
7635 SET_TYPE_MODE (t, mode);
7636 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7637 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7638 TYPE_REFERENCE_TO (to_type) = t;
7640 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7641 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7642 SET_TYPE_STRUCTURAL_EQUALITY (t);
7643 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7644 TYPE_CANONICAL (t)
7645 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7646 mode, false);
7648 layout_type (t);
7650 return t;
7654 /* Build the node for the type of references-to-TO_TYPE by default
7655 in ptr_mode. */
7657 tree
7658 build_reference_type (tree to_type)
7660 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7661 : TYPE_ADDR_SPACE (to_type);
7662 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7663 return build_reference_type_for_mode (to_type, pointer_mode, false);
7666 #define MAX_INT_CACHED_PREC \
7667 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7668 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7670 /* Builds a signed or unsigned integer type of precision PRECISION.
7671 Used for C bitfields whose precision does not match that of
7672 built-in target types. */
7673 tree
7674 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7675 int unsignedp)
7677 tree itype, ret;
7679 if (unsignedp)
7680 unsignedp = MAX_INT_CACHED_PREC + 1;
7682 if (precision <= MAX_INT_CACHED_PREC)
7684 itype = nonstandard_integer_type_cache[precision + unsignedp];
7685 if (itype)
7686 return itype;
7689 itype = make_node (INTEGER_TYPE);
7690 TYPE_PRECISION (itype) = precision;
7692 if (unsignedp)
7693 fixup_unsigned_type (itype);
7694 else
7695 fixup_signed_type (itype);
7697 ret = itype;
7699 inchash::hash hstate;
7700 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
7701 ret = type_hash_canon (hstate.end (), itype);
7702 if (precision <= MAX_INT_CACHED_PREC)
7703 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7705 return ret;
7708 #define MAX_BOOL_CACHED_PREC \
7709 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7710 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
7712 /* Builds a boolean type of precision PRECISION.
7713 Used for boolean vectors to choose proper vector element size. */
7714 tree
7715 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
7717 tree type;
7719 if (precision <= MAX_BOOL_CACHED_PREC)
7721 type = nonstandard_boolean_type_cache[precision];
7722 if (type)
7723 return type;
7726 type = make_node (BOOLEAN_TYPE);
7727 TYPE_PRECISION (type) = precision;
7728 fixup_signed_type (type);
7730 if (precision <= MAX_INT_CACHED_PREC)
7731 nonstandard_boolean_type_cache[precision] = type;
7733 return type;
7736 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7737 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7738 is true, reuse such a type that has already been constructed. */
7740 static tree
7741 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7743 tree itype = make_node (INTEGER_TYPE);
7745 TREE_TYPE (itype) = type;
7747 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7748 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7750 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7751 SET_TYPE_MODE (itype, TYPE_MODE (type));
7752 TYPE_SIZE (itype) = TYPE_SIZE (type);
7753 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7754 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
7755 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7756 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
7758 if (!shared)
7759 return itype;
7761 if ((TYPE_MIN_VALUE (itype)
7762 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7763 || (TYPE_MAX_VALUE (itype)
7764 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7766 /* Since we cannot reliably merge this type, we need to compare it using
7767 structural equality checks. */
7768 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7769 return itype;
7772 hashval_t hash = type_hash_canon_hash (itype);
7773 itype = type_hash_canon (hash, itype);
7775 return itype;
7778 /* Wrapper around build_range_type_1 with SHARED set to true. */
7780 tree
7781 build_range_type (tree type, tree lowval, tree highval)
7783 return build_range_type_1 (type, lowval, highval, true);
7786 /* Wrapper around build_range_type_1 with SHARED set to false. */
7788 tree
7789 build_nonshared_range_type (tree type, tree lowval, tree highval)
7791 return build_range_type_1 (type, lowval, highval, false);
7794 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7795 MAXVAL should be the maximum value in the domain
7796 (one less than the length of the array).
7798 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7799 We don't enforce this limit, that is up to caller (e.g. language front end).
7800 The limit exists because the result is a signed type and we don't handle
7801 sizes that use more than one HOST_WIDE_INT. */
7803 tree
7804 build_index_type (tree maxval)
7806 return build_range_type (sizetype, size_zero_node, maxval);
7809 /* Return true if the debug information for TYPE, a subtype, should be emitted
7810 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7811 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7812 debug info and doesn't reflect the source code. */
7814 bool
7815 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7817 tree base_type = TREE_TYPE (type), low, high;
7819 /* Subrange types have a base type which is an integral type. */
7820 if (!INTEGRAL_TYPE_P (base_type))
7821 return false;
7823 /* Get the real bounds of the subtype. */
7824 if (lang_hooks.types.get_subrange_bounds)
7825 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7826 else
7828 low = TYPE_MIN_VALUE (type);
7829 high = TYPE_MAX_VALUE (type);
7832 /* If the type and its base type have the same representation and the same
7833 name, then the type is not a subrange but a copy of the base type. */
7834 if ((TREE_CODE (base_type) == INTEGER_TYPE
7835 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7836 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7837 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7838 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
7839 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
7840 return false;
7842 if (lowval)
7843 *lowval = low;
7844 if (highval)
7845 *highval = high;
7846 return true;
7849 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7850 and number of elements specified by the range of values of INDEX_TYPE.
7851 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
7852 If SHARED is true, reuse such a type that has already been constructed. */
7854 static tree
7855 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
7856 bool shared)
7858 tree t;
7860 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7862 error ("arrays of functions are not meaningful");
7863 elt_type = integer_type_node;
7866 t = make_node (ARRAY_TYPE);
7867 TREE_TYPE (t) = elt_type;
7868 TYPE_DOMAIN (t) = index_type;
7869 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7870 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
7871 layout_type (t);
7873 /* If the element type is incomplete at this point we get marked for
7874 structural equality. Do not record these types in the canonical
7875 type hashtable. */
7876 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7877 return t;
7879 if (shared)
7881 hashval_t hash = type_hash_canon_hash (t);
7882 t = type_hash_canon (hash, t);
7885 if (TYPE_CANONICAL (t) == t)
7887 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7888 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
7889 || in_lto_p)
7890 SET_TYPE_STRUCTURAL_EQUALITY (t);
7891 else if (TYPE_CANONICAL (elt_type) != elt_type
7892 || (index_type && TYPE_CANONICAL (index_type) != index_type))
7893 TYPE_CANONICAL (t)
7894 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7895 index_type
7896 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7897 typeless_storage, shared);
7900 return t;
7903 /* Wrapper around build_array_type_1 with SHARED set to true. */
7905 tree
7906 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
7908 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
7911 /* Wrapper around build_array_type_1 with SHARED set to false. */
7913 tree
7914 build_nonshared_array_type (tree elt_type, tree index_type)
7916 return build_array_type_1 (elt_type, index_type, false, false);
7919 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7920 sizetype. */
7922 tree
7923 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
7925 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7928 /* Recursively examines the array elements of TYPE, until a non-array
7929 element type is found. */
7931 tree
7932 strip_array_types (tree type)
7934 while (TREE_CODE (type) == ARRAY_TYPE)
7935 type = TREE_TYPE (type);
7937 return type;
7940 /* Computes the canonical argument types from the argument type list
7941 ARGTYPES.
7943 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7944 on entry to this function, or if any of the ARGTYPES are
7945 structural.
7947 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7948 true on entry to this function, or if any of the ARGTYPES are
7949 non-canonical.
7951 Returns a canonical argument list, which may be ARGTYPES when the
7952 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7953 true) or would not differ from ARGTYPES. */
7955 static tree
7956 maybe_canonicalize_argtypes (tree argtypes,
7957 bool *any_structural_p,
7958 bool *any_noncanonical_p)
7960 tree arg;
7961 bool any_noncanonical_argtypes_p = false;
7963 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7965 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7966 /* Fail gracefully by stating that the type is structural. */
7967 *any_structural_p = true;
7968 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7969 *any_structural_p = true;
7970 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7971 || TREE_PURPOSE (arg))
7972 /* If the argument has a default argument, we consider it
7973 non-canonical even though the type itself is canonical.
7974 That way, different variants of function and method types
7975 with default arguments will all point to the variant with
7976 no defaults as their canonical type. */
7977 any_noncanonical_argtypes_p = true;
7980 if (*any_structural_p)
7981 return argtypes;
7983 if (any_noncanonical_argtypes_p)
7985 /* Build the canonical list of argument types. */
7986 tree canon_argtypes = NULL_TREE;
7987 bool is_void = false;
7989 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7991 if (arg == void_list_node)
7992 is_void = true;
7993 else
7994 canon_argtypes = tree_cons (NULL_TREE,
7995 TYPE_CANONICAL (TREE_VALUE (arg)),
7996 canon_argtypes);
7999 canon_argtypes = nreverse (canon_argtypes);
8000 if (is_void)
8001 canon_argtypes = chainon (canon_argtypes, void_list_node);
8003 /* There is a non-canonical type. */
8004 *any_noncanonical_p = true;
8005 return canon_argtypes;
8008 /* The canonical argument types are the same as ARGTYPES. */
8009 return argtypes;
8012 /* Construct, lay out and return
8013 the type of functions returning type VALUE_TYPE
8014 given arguments of types ARG_TYPES.
8015 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8016 are data type nodes for the arguments of the function.
8017 If such a type has already been constructed, reuse it. */
8019 tree
8020 build_function_type (tree value_type, tree arg_types)
8022 tree t;
8023 inchash::hash hstate;
8024 bool any_structural_p, any_noncanonical_p;
8025 tree canon_argtypes;
8027 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8029 error ("function return type cannot be function");
8030 value_type = integer_type_node;
8033 /* Make a node of the sort we want. */
8034 t = make_node (FUNCTION_TYPE);
8035 TREE_TYPE (t) = value_type;
8036 TYPE_ARG_TYPES (t) = arg_types;
8038 /* If we already have such a type, use the old one. */
8039 hashval_t hash = type_hash_canon_hash (t);
8040 t = type_hash_canon (hash, t);
8042 /* Set up the canonical type. */
8043 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8044 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8045 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8046 &any_structural_p,
8047 &any_noncanonical_p);
8048 if (any_structural_p)
8049 SET_TYPE_STRUCTURAL_EQUALITY (t);
8050 else if (any_noncanonical_p)
8051 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8052 canon_argtypes);
8054 if (!COMPLETE_TYPE_P (t))
8055 layout_type (t);
8056 return t;
8059 /* Build a function type. The RETURN_TYPE is the type returned by the
8060 function. If VAARGS is set, no void_type_node is appended to the
8061 list. ARGP must be always be terminated be a NULL_TREE. */
8063 static tree
8064 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8066 tree t, args, last;
8068 t = va_arg (argp, tree);
8069 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8070 args = tree_cons (NULL_TREE, t, args);
8072 if (vaargs)
8074 last = args;
8075 if (args != NULL_TREE)
8076 args = nreverse (args);
8077 gcc_assert (last != void_list_node);
8079 else if (args == NULL_TREE)
8080 args = void_list_node;
8081 else
8083 last = args;
8084 args = nreverse (args);
8085 TREE_CHAIN (last) = void_list_node;
8087 args = build_function_type (return_type, args);
8089 return args;
8092 /* Build a function type. The RETURN_TYPE is the type returned by the
8093 function. If additional arguments are provided, they are
8094 additional argument types. The list of argument types must always
8095 be terminated by NULL_TREE. */
8097 tree
8098 build_function_type_list (tree return_type, ...)
8100 tree args;
8101 va_list p;
8103 va_start (p, return_type);
8104 args = build_function_type_list_1 (false, return_type, p);
8105 va_end (p);
8106 return args;
8109 /* Build a variable argument function type. The RETURN_TYPE is the
8110 type returned by the function. If additional arguments are provided,
8111 they are additional argument types. The list of argument types must
8112 always be terminated by NULL_TREE. */
8114 tree
8115 build_varargs_function_type_list (tree return_type, ...)
8117 tree args;
8118 va_list p;
8120 va_start (p, return_type);
8121 args = build_function_type_list_1 (true, return_type, p);
8122 va_end (p);
8124 return args;
8127 /* Build a function type. RETURN_TYPE is the type returned by the
8128 function; VAARGS indicates whether the function takes varargs. The
8129 function takes N named arguments, the types of which are provided in
8130 ARG_TYPES. */
8132 static tree
8133 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8134 tree *arg_types)
8136 int i;
8137 tree t = vaargs ? NULL_TREE : void_list_node;
8139 for (i = n - 1; i >= 0; i--)
8140 t = tree_cons (NULL_TREE, arg_types[i], t);
8142 return build_function_type (return_type, t);
8145 /* Build a function type. RETURN_TYPE is the type returned by the
8146 function. The function takes N named arguments, the types of which
8147 are provided in ARG_TYPES. */
8149 tree
8150 build_function_type_array (tree return_type, int n, tree *arg_types)
8152 return build_function_type_array_1 (false, return_type, n, arg_types);
8155 /* Build a variable argument function type. RETURN_TYPE is the type
8156 returned by the function. The function takes N named arguments, the
8157 types of which are provided in ARG_TYPES. */
8159 tree
8160 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8162 return build_function_type_array_1 (true, return_type, n, arg_types);
8165 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8166 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8167 for the method. An implicit additional parameter (of type
8168 pointer-to-BASETYPE) is added to the ARGTYPES. */
8170 tree
8171 build_method_type_directly (tree basetype,
8172 tree rettype,
8173 tree argtypes)
8175 tree t;
8176 tree ptype;
8177 bool any_structural_p, any_noncanonical_p;
8178 tree canon_argtypes;
8180 /* Make a node of the sort we want. */
8181 t = make_node (METHOD_TYPE);
8183 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8184 TREE_TYPE (t) = rettype;
8185 ptype = build_pointer_type (basetype);
8187 /* The actual arglist for this function includes a "hidden" argument
8188 which is "this". Put it into the list of argument types. */
8189 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8190 TYPE_ARG_TYPES (t) = argtypes;
8192 /* If we already have such a type, use the old one. */
8193 hashval_t hash = type_hash_canon_hash (t);
8194 t = type_hash_canon (hash, t);
8196 /* Set up the canonical type. */
8197 any_structural_p
8198 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8199 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8200 any_noncanonical_p
8201 = (TYPE_CANONICAL (basetype) != basetype
8202 || TYPE_CANONICAL (rettype) != rettype);
8203 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8204 &any_structural_p,
8205 &any_noncanonical_p);
8206 if (any_structural_p)
8207 SET_TYPE_STRUCTURAL_EQUALITY (t);
8208 else if (any_noncanonical_p)
8209 TYPE_CANONICAL (t)
8210 = build_method_type_directly (TYPE_CANONICAL (basetype),
8211 TYPE_CANONICAL (rettype),
8212 canon_argtypes);
8213 if (!COMPLETE_TYPE_P (t))
8214 layout_type (t);
8216 return t;
8219 /* Construct, lay out and return the type of methods belonging to class
8220 BASETYPE and whose arguments and values are described by TYPE.
8221 If that type exists already, reuse it.
8222 TYPE must be a FUNCTION_TYPE node. */
8224 tree
8225 build_method_type (tree basetype, tree type)
8227 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8229 return build_method_type_directly (basetype,
8230 TREE_TYPE (type),
8231 TYPE_ARG_TYPES (type));
8234 /* Construct, lay out and return the type of offsets to a value
8235 of type TYPE, within an object of type BASETYPE.
8236 If a suitable offset type exists already, reuse it. */
8238 tree
8239 build_offset_type (tree basetype, tree type)
8241 tree t;
8243 /* Make a node of the sort we want. */
8244 t = make_node (OFFSET_TYPE);
8246 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8247 TREE_TYPE (t) = type;
8249 /* If we already have such a type, use the old one. */
8250 hashval_t hash = type_hash_canon_hash (t);
8251 t = type_hash_canon (hash, t);
8253 if (!COMPLETE_TYPE_P (t))
8254 layout_type (t);
8256 if (TYPE_CANONICAL (t) == t)
8258 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8259 || TYPE_STRUCTURAL_EQUALITY_P (type))
8260 SET_TYPE_STRUCTURAL_EQUALITY (t);
8261 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8262 || TYPE_CANONICAL (type) != type)
8263 TYPE_CANONICAL (t)
8264 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8265 TYPE_CANONICAL (type));
8268 return t;
8271 /* Create a complex type whose components are COMPONENT_TYPE.
8273 If NAMED is true, the type is given a TYPE_NAME. We do not always
8274 do so because this creates a DECL node and thus make the DECL_UIDs
8275 dependent on the type canonicalization hashtable, which is GC-ed,
8276 so the DECL_UIDs would not be stable wrt garbage collection. */
8278 tree
8279 build_complex_type (tree component_type, bool named)
8281 gcc_assert (INTEGRAL_TYPE_P (component_type)
8282 || SCALAR_FLOAT_TYPE_P (component_type)
8283 || FIXED_POINT_TYPE_P (component_type));
8285 /* Make a node of the sort we want. */
8286 tree probe = make_node (COMPLEX_TYPE);
8288 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8290 /* If we already have such a type, use the old one. */
8291 hashval_t hash = type_hash_canon_hash (probe);
8292 tree t = type_hash_canon (hash, probe);
8294 if (t == probe)
8296 /* We created a new type. The hash insertion will have laid
8297 out the type. We need to check the canonicalization and
8298 maybe set the name. */
8299 gcc_checking_assert (COMPLETE_TYPE_P (t)
8300 && !TYPE_NAME (t)
8301 && TYPE_CANONICAL (t) == t);
8303 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8304 SET_TYPE_STRUCTURAL_EQUALITY (t);
8305 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8306 TYPE_CANONICAL (t)
8307 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8309 /* We need to create a name, since complex is a fundamental type. */
8310 if (named)
8312 const char *name = NULL;
8314 if (TREE_TYPE (t) == char_type_node)
8315 name = "complex char";
8316 else if (TREE_TYPE (t) == signed_char_type_node)
8317 name = "complex signed char";
8318 else if (TREE_TYPE (t) == unsigned_char_type_node)
8319 name = "complex unsigned char";
8320 else if (TREE_TYPE (t) == short_integer_type_node)
8321 name = "complex short int";
8322 else if (TREE_TYPE (t) == short_unsigned_type_node)
8323 name = "complex short unsigned int";
8324 else if (TREE_TYPE (t) == integer_type_node)
8325 name = "complex int";
8326 else if (TREE_TYPE (t) == unsigned_type_node)
8327 name = "complex unsigned int";
8328 else if (TREE_TYPE (t) == long_integer_type_node)
8329 name = "complex long int";
8330 else if (TREE_TYPE (t) == long_unsigned_type_node)
8331 name = "complex long unsigned int";
8332 else if (TREE_TYPE (t) == long_long_integer_type_node)
8333 name = "complex long long int";
8334 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8335 name = "complex long long unsigned int";
8337 if (name != NULL)
8338 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8339 get_identifier (name), t);
8343 return build_qualified_type (t, TYPE_QUALS (component_type));
8346 /* If TYPE is a real or complex floating-point type and the target
8347 does not directly support arithmetic on TYPE then return the wider
8348 type to be used for arithmetic on TYPE. Otherwise, return
8349 NULL_TREE. */
8351 tree
8352 excess_precision_type (tree type)
8354 /* The target can give two different responses to the question of
8355 which excess precision mode it would like depending on whether we
8356 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8358 enum excess_precision_type requested_type
8359 = (flag_excess_precision == EXCESS_PRECISION_FAST
8360 ? EXCESS_PRECISION_TYPE_FAST
8361 : EXCESS_PRECISION_TYPE_STANDARD);
8363 enum flt_eval_method target_flt_eval_method
8364 = targetm.c.excess_precision (requested_type);
8366 /* The target should not ask for unpredictable float evaluation (though
8367 it might advertise that implicitly the evaluation is unpredictable,
8368 but we don't care about that here, it will have been reported
8369 elsewhere). If it does ask for unpredictable evaluation, we have
8370 nothing to do here. */
8371 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8373 /* Nothing to do. The target has asked for all types we know about
8374 to be computed with their native precision and range. */
8375 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8376 return NULL_TREE;
8378 /* The target will promote this type in a target-dependent way, so excess
8379 precision ought to leave it alone. */
8380 if (targetm.promoted_type (type) != NULL_TREE)
8381 return NULL_TREE;
8383 machine_mode float16_type_mode = (float16_type_node
8384 ? TYPE_MODE (float16_type_node)
8385 : VOIDmode);
8386 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8387 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8389 switch (TREE_CODE (type))
8391 case REAL_TYPE:
8393 machine_mode type_mode = TYPE_MODE (type);
8394 switch (target_flt_eval_method)
8396 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8397 if (type_mode == float16_type_mode)
8398 return float_type_node;
8399 break;
8400 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8401 if (type_mode == float16_type_mode
8402 || type_mode == float_type_mode)
8403 return double_type_node;
8404 break;
8405 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8406 if (type_mode == float16_type_mode
8407 || type_mode == float_type_mode
8408 || type_mode == double_type_mode)
8409 return long_double_type_node;
8410 break;
8411 default:
8412 gcc_unreachable ();
8414 break;
8416 case COMPLEX_TYPE:
8418 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8419 return NULL_TREE;
8420 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8421 switch (target_flt_eval_method)
8423 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8424 if (type_mode == float16_type_mode)
8425 return complex_float_type_node;
8426 break;
8427 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8428 if (type_mode == float16_type_mode
8429 || type_mode == float_type_mode)
8430 return complex_double_type_node;
8431 break;
8432 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8433 if (type_mode == float16_type_mode
8434 || type_mode == float_type_mode
8435 || type_mode == double_type_mode)
8436 return complex_long_double_type_node;
8437 break;
8438 default:
8439 gcc_unreachable ();
8441 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 sth smaller and
8529 in that case convert it. */
8530 if (TREE_CODE (win) == INTEGER_CST)
8532 tree wtype = TREE_TYPE (win);
8533 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8534 if (for_type)
8535 prec = MAX (prec, final_prec);
8536 if (prec < TYPE_PRECISION (wtype))
8538 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8539 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8540 win = fold_convert (t, win);
8544 return win;
8547 /* Return OP or a simpler expression for a narrower value
8548 which can be sign-extended or zero-extended to give back OP.
8549 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8550 or 0 if the value should be sign-extended. */
8552 tree
8553 get_narrower (tree op, int *unsignedp_ptr)
8555 int uns = 0;
8556 int first = 1;
8557 tree win = op;
8558 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8560 while (TREE_CODE (op) == NOP_EXPR)
8562 int bitschange
8563 = (TYPE_PRECISION (TREE_TYPE (op))
8564 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8566 /* Truncations are many-one so cannot be removed. */
8567 if (bitschange < 0)
8568 break;
8570 /* See what's inside this conversion. If we decide to strip it,
8571 we will set WIN. */
8573 if (bitschange > 0)
8575 op = TREE_OPERAND (op, 0);
8576 /* An extension: the outermost one can be stripped,
8577 but remember whether it is zero or sign extension. */
8578 if (first)
8579 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8580 /* Otherwise, if a sign extension has been stripped,
8581 only sign extensions can now be stripped;
8582 if a zero extension has been stripped, only zero-extensions. */
8583 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8584 break;
8585 first = 0;
8587 else /* bitschange == 0 */
8589 /* A change in nominal type can always be stripped, but we must
8590 preserve the unsignedness. */
8591 if (first)
8592 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8593 first = 0;
8594 op = TREE_OPERAND (op, 0);
8595 /* Keep trying to narrow, but don't assign op to win if it
8596 would turn an integral type into something else. */
8597 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8598 continue;
8601 win = op;
8604 if (TREE_CODE (op) == COMPONENT_REF
8605 /* Since type_for_size always gives an integer type. */
8606 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8607 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8608 /* Ensure field is laid out already. */
8609 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8610 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8612 unsigned HOST_WIDE_INT innerprec
8613 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8614 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8615 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8616 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8618 /* We can get this structure field in a narrower type that fits it,
8619 but the resulting extension to its nominal type (a fullword type)
8620 must satisfy the same conditions as for other extensions.
8622 Do this only for fields that are aligned (not bit-fields),
8623 because when bit-field insns will be used there is no
8624 advantage in doing this. */
8626 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8627 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8628 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8629 && type != 0)
8631 if (first)
8632 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8633 win = fold_convert (type, op);
8637 *unsignedp_ptr = uns;
8638 return win;
8641 /* Return true if integer constant C has a value that is permissible
8642 for TYPE, an integral type. */
8644 bool
8645 int_fits_type_p (const_tree c, const_tree type)
8647 tree type_low_bound, type_high_bound;
8648 bool ok_for_low_bound, ok_for_high_bound;
8649 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8651 /* Non-standard boolean types can have arbitrary precision but various
8652 transformations assume that they can only take values 0 and +/-1. */
8653 if (TREE_CODE (type) == BOOLEAN_TYPE)
8654 return wi::fits_to_boolean_p (wi::to_wide (c), type);
8656 retry:
8657 type_low_bound = TYPE_MIN_VALUE (type);
8658 type_high_bound = TYPE_MAX_VALUE (type);
8660 /* If at least one bound of the type is a constant integer, we can check
8661 ourselves and maybe make a decision. If no such decision is possible, but
8662 this type is a subtype, try checking against that. Otherwise, use
8663 fits_to_tree_p, which checks against the precision.
8665 Compute the status for each possibly constant bound, and return if we see
8666 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8667 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8668 for "constant known to fit". */
8670 /* Check if c >= type_low_bound. */
8671 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8673 if (tree_int_cst_lt (c, type_low_bound))
8674 return false;
8675 ok_for_low_bound = true;
8677 else
8678 ok_for_low_bound = false;
8680 /* Check if c <= type_high_bound. */
8681 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8683 if (tree_int_cst_lt (type_high_bound, c))
8684 return false;
8685 ok_for_high_bound = true;
8687 else
8688 ok_for_high_bound = false;
8690 /* If the constant fits both bounds, the result is known. */
8691 if (ok_for_low_bound && ok_for_high_bound)
8692 return true;
8694 /* Perform some generic filtering which may allow making a decision
8695 even if the bounds are not constant. First, negative integers
8696 never fit in unsigned types, */
8697 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
8698 return false;
8700 /* Second, narrower types always fit in wider ones. */
8701 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8702 return true;
8704 /* Third, unsigned integers with top bit set never fit signed types. */
8705 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8707 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
8708 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8710 /* When a tree_cst is converted to a wide-int, the precision
8711 is taken from the type. However, if the precision of the
8712 mode underneath the type is smaller than that, it is
8713 possible that the value will not fit. The test below
8714 fails if any bit is set between the sign bit of the
8715 underlying mode and the top bit of the type. */
8716 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
8717 return false;
8719 else if (wi::neg_p (wi::to_wide (c)))
8720 return false;
8723 /* If we haven't been able to decide at this point, there nothing more we
8724 can check ourselves here. Look at the base type if we have one and it
8725 has the same precision. */
8726 if (TREE_CODE (type) == INTEGER_TYPE
8727 && TREE_TYPE (type) != 0
8728 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8730 type = TREE_TYPE (type);
8731 goto retry;
8734 /* Or to fits_to_tree_p, if nothing else. */
8735 return wi::fits_to_tree_p (wi::to_wide (c), type);
8738 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8739 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8740 represented (assuming two's-complement arithmetic) within the bit
8741 precision of the type are returned instead. */
8743 void
8744 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8746 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8747 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8748 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
8749 else
8751 if (TYPE_UNSIGNED (type))
8752 mpz_set_ui (min, 0);
8753 else
8755 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8756 wi::to_mpz (mn, min, SIGNED);
8760 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8761 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8762 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
8763 else
8765 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8766 wi::to_mpz (mn, max, TYPE_SIGN (type));
8770 /* Return true if VAR is an automatic variable defined in function FN. */
8772 bool
8773 auto_var_in_fn_p (const_tree var, const_tree fn)
8775 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8776 && ((((VAR_P (var) && ! DECL_EXTERNAL (var))
8777 || TREE_CODE (var) == PARM_DECL)
8778 && ! TREE_STATIC (var))
8779 || TREE_CODE (var) == LABEL_DECL
8780 || TREE_CODE (var) == RESULT_DECL));
8783 /* Subprogram of following function. Called by walk_tree.
8785 Return *TP if it is an automatic variable or parameter of the
8786 function passed in as DATA. */
8788 static tree
8789 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8791 tree fn = (tree) data;
8793 if (TYPE_P (*tp))
8794 *walk_subtrees = 0;
8796 else if (DECL_P (*tp)
8797 && auto_var_in_fn_p (*tp, fn))
8798 return *tp;
8800 return NULL_TREE;
8803 /* Returns true if T is, contains, or refers to a type with variable
8804 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8805 arguments, but not the return type. If FN is nonzero, only return
8806 true if a modifier of the type or position of FN is a variable or
8807 parameter inside FN.
8809 This concept is more general than that of C99 'variably modified types':
8810 in C99, a struct type is never variably modified because a VLA may not
8811 appear as a structure member. However, in GNU C code like:
8813 struct S { int i[f()]; };
8815 is valid, and other languages may define similar constructs. */
8817 bool
8818 variably_modified_type_p (tree type, tree fn)
8820 tree t;
8822 /* Test if T is either variable (if FN is zero) or an expression containing
8823 a variable in FN. If TYPE isn't gimplified, return true also if
8824 gimplify_one_sizepos would gimplify the expression into a local
8825 variable. */
8826 #define RETURN_TRUE_IF_VAR(T) \
8827 do { tree _t = (T); \
8828 if (_t != NULL_TREE \
8829 && _t != error_mark_node \
8830 && !CONSTANT_CLASS_P (_t) \
8831 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8832 && (!fn \
8833 || (!TYPE_SIZES_GIMPLIFIED (type) \
8834 && (TREE_CODE (_t) != VAR_DECL \
8835 && !CONTAINS_PLACEHOLDER_P (_t))) \
8836 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8837 return true; } while (0)
8839 if (type == error_mark_node)
8840 return false;
8842 /* If TYPE itself has variable size, it is variably modified. */
8843 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8844 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8846 switch (TREE_CODE (type))
8848 case POINTER_TYPE:
8849 case REFERENCE_TYPE:
8850 case VECTOR_TYPE:
8851 /* Ada can have pointer types refering to themselves indirectly. */
8852 if (TREE_VISITED (type))
8853 return false;
8854 TREE_VISITED (type) = true;
8855 if (variably_modified_type_p (TREE_TYPE (type), fn))
8857 TREE_VISITED (type) = false;
8858 return true;
8860 TREE_VISITED (type) = false;
8861 break;
8863 case FUNCTION_TYPE:
8864 case METHOD_TYPE:
8865 /* If TYPE is a function type, it is variably modified if the
8866 return type is variably modified. */
8867 if (variably_modified_type_p (TREE_TYPE (type), fn))
8868 return true;
8869 break;
8871 case INTEGER_TYPE:
8872 case REAL_TYPE:
8873 case FIXED_POINT_TYPE:
8874 case ENUMERAL_TYPE:
8875 case BOOLEAN_TYPE:
8876 /* Scalar types are variably modified if their end points
8877 aren't constant. */
8878 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8879 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8880 break;
8882 case RECORD_TYPE:
8883 case UNION_TYPE:
8884 case QUAL_UNION_TYPE:
8885 /* We can't see if any of the fields are variably-modified by the
8886 definition we normally use, since that would produce infinite
8887 recursion via pointers. */
8888 /* This is variably modified if some field's type is. */
8889 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8890 if (TREE_CODE (t) == FIELD_DECL)
8892 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8893 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8894 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8896 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8897 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8899 break;
8901 case ARRAY_TYPE:
8902 /* Do not call ourselves to avoid infinite recursion. This is
8903 variably modified if the element type is. */
8904 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8905 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8906 break;
8908 default:
8909 break;
8912 /* The current language may have other cases to check, but in general,
8913 all other types are not variably modified. */
8914 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8916 #undef RETURN_TRUE_IF_VAR
8919 /* Given a DECL or TYPE, return the scope in which it was declared, or
8920 NULL_TREE if there is no containing scope. */
8922 tree
8923 get_containing_scope (const_tree t)
8925 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8928 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
8930 const_tree
8931 get_ultimate_context (const_tree decl)
8933 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
8935 if (TREE_CODE (decl) == BLOCK)
8936 decl = BLOCK_SUPERCONTEXT (decl);
8937 else
8938 decl = get_containing_scope (decl);
8940 return decl;
8943 /* Return the innermost context enclosing DECL that is
8944 a FUNCTION_DECL, or zero if none. */
8946 tree
8947 decl_function_context (const_tree decl)
8949 tree context;
8951 if (TREE_CODE (decl) == ERROR_MARK)
8952 return 0;
8954 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8955 where we look up the function at runtime. Such functions always take
8956 a first argument of type 'pointer to real context'.
8958 C++ should really be fixed to use DECL_CONTEXT for the real context,
8959 and use something else for the "virtual context". */
8960 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8961 context
8962 = TYPE_MAIN_VARIANT
8963 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8964 else
8965 context = DECL_CONTEXT (decl);
8967 while (context && TREE_CODE (context) != FUNCTION_DECL)
8969 if (TREE_CODE (context) == BLOCK)
8970 context = BLOCK_SUPERCONTEXT (context);
8971 else
8972 context = get_containing_scope (context);
8975 return context;
8978 /* Return the innermost context enclosing DECL that is
8979 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8980 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8982 tree
8983 decl_type_context (const_tree decl)
8985 tree context = DECL_CONTEXT (decl);
8987 while (context)
8988 switch (TREE_CODE (context))
8990 case NAMESPACE_DECL:
8991 case TRANSLATION_UNIT_DECL:
8992 return NULL_TREE;
8994 case RECORD_TYPE:
8995 case UNION_TYPE:
8996 case QUAL_UNION_TYPE:
8997 return context;
8999 case TYPE_DECL:
9000 case FUNCTION_DECL:
9001 context = DECL_CONTEXT (context);
9002 break;
9004 case BLOCK:
9005 context = BLOCK_SUPERCONTEXT (context);
9006 break;
9008 default:
9009 gcc_unreachable ();
9012 return NULL_TREE;
9015 /* CALL is a CALL_EXPR. Return the declaration for the function
9016 called, or NULL_TREE if the called function cannot be
9017 determined. */
9019 tree
9020 get_callee_fndecl (const_tree call)
9022 tree addr;
9024 if (call == error_mark_node)
9025 return error_mark_node;
9027 /* It's invalid to call this function with anything but a
9028 CALL_EXPR. */
9029 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9031 /* The first operand to the CALL is the address of the function
9032 called. */
9033 addr = CALL_EXPR_FN (call);
9035 /* If there is no function, return early. */
9036 if (addr == NULL_TREE)
9037 return NULL_TREE;
9039 STRIP_NOPS (addr);
9041 /* If this is a readonly function pointer, extract its initial value. */
9042 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9043 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9044 && DECL_INITIAL (addr))
9045 addr = DECL_INITIAL (addr);
9047 /* If the address is just `&f' for some function `f', then we know
9048 that `f' is being called. */
9049 if (TREE_CODE (addr) == ADDR_EXPR
9050 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9051 return TREE_OPERAND (addr, 0);
9053 /* We couldn't figure out what was being called. */
9054 return NULL_TREE;
9057 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9058 return the associated function code, otherwise return CFN_LAST. */
9060 combined_fn
9061 get_call_combined_fn (const_tree call)
9063 /* It's invalid to call this function with anything but a CALL_EXPR. */
9064 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9066 if (!CALL_EXPR_FN (call))
9067 return as_combined_fn (CALL_EXPR_IFN (call));
9069 tree fndecl = get_callee_fndecl (call);
9070 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
9071 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9073 return CFN_LAST;
9076 #define TREE_MEM_USAGE_SPACES 40
9078 /* Print debugging information about tree nodes generated during the compile,
9079 and any language-specific information. */
9081 void
9082 dump_tree_statistics (void)
9084 if (GATHER_STATISTICS)
9086 int i;
9087 uint64_t total_nodes, total_bytes;
9088 fprintf (stderr, "\nKind Nodes Bytes\n");
9089 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9090 total_nodes = total_bytes = 0;
9091 for (i = 0; i < (int) all_kinds; i++)
9093 fprintf (stderr, "%-20s %7" PRIu64 " %10" PRIu64 "\n",
9094 tree_node_kind_names[i], tree_node_counts[i],
9095 tree_node_sizes[i]);
9096 total_nodes += tree_node_counts[i];
9097 total_bytes += tree_node_sizes[i];
9099 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9100 fprintf (stderr, "%-20s %7" PRIu64 " %10" PRIu64 "\n", "Total",
9101 total_nodes, total_bytes);
9102 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9103 fprintf (stderr, "Code Nodes\n");
9104 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9105 for (i = 0; i < (int) MAX_TREE_CODES; i++)
9106 fprintf (stderr, "%-32s %7" PRIu64 "\n",
9107 get_tree_code_name ((enum tree_code) i), tree_code_counts[i]);
9108 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9109 fprintf (stderr, "\n");
9110 ssanames_print_statistics ();
9111 fprintf (stderr, "\n");
9112 phinodes_print_statistics ();
9113 fprintf (stderr, "\n");
9115 else
9116 fprintf (stderr, "(No per-node statistics)\n");
9118 print_type_hash_statistics ();
9119 print_debug_expr_statistics ();
9120 print_value_expr_statistics ();
9121 lang_hooks.print_statistics ();
9124 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9126 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9128 unsigned
9129 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9131 /* This relies on the raw feedback's top 4 bits being zero. */
9132 #define FEEDBACK(X) ((X) * 0x04c11db7)
9133 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9134 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9135 static const unsigned syndromes[16] =
9137 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9138 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9139 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9140 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9142 #undef FEEDBACK
9143 #undef SYNDROME
9145 value <<= (32 - bytes * 8);
9146 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9148 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9150 chksum = (chksum << 4) ^ feedback;
9153 return chksum;
9156 /* Generate a crc32 of a string. */
9158 unsigned
9159 crc32_string (unsigned chksum, const char *string)
9162 chksum = crc32_byte (chksum, *string);
9163 while (*string++);
9164 return chksum;
9167 /* P is a string that will be used in a symbol. Mask out any characters
9168 that are not valid in that context. */
9170 void
9171 clean_symbol_name (char *p)
9173 for (; *p; p++)
9174 if (! (ISALNUM (*p)
9175 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9176 || *p == '$'
9177 #endif
9178 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9179 || *p == '.'
9180 #endif
9182 *p = '_';
9185 /* For anonymous aggregate types, we need some sort of name to
9186 hold on to. In practice, this should not appear, but it should
9187 not be harmful if it does. */
9188 bool
9189 anon_aggrname_p(const_tree id_node)
9191 #ifndef NO_DOT_IN_LABEL
9192 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9193 && IDENTIFIER_POINTER (id_node)[1] == '_');
9194 #else /* NO_DOT_IN_LABEL */
9195 #ifndef NO_DOLLAR_IN_LABEL
9196 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9197 && IDENTIFIER_POINTER (id_node)[1] == '_');
9198 #else /* NO_DOLLAR_IN_LABEL */
9199 #define ANON_AGGRNAME_PREFIX "__anon_"
9200 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9201 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9202 #endif /* NO_DOLLAR_IN_LABEL */
9203 #endif /* NO_DOT_IN_LABEL */
9206 /* Return a format for an anonymous aggregate name. */
9207 const char *
9208 anon_aggrname_format()
9210 #ifndef NO_DOT_IN_LABEL
9211 return "._%d";
9212 #else /* NO_DOT_IN_LABEL */
9213 #ifndef NO_DOLLAR_IN_LABEL
9214 return "$_%d";
9215 #else /* NO_DOLLAR_IN_LABEL */
9216 return "__anon_%d";
9217 #endif /* NO_DOLLAR_IN_LABEL */
9218 #endif /* NO_DOT_IN_LABEL */
9221 /* Generate a name for a special-purpose function.
9222 The generated name may need to be unique across the whole link.
9223 Changes to this function may also require corresponding changes to
9224 xstrdup_mask_random.
9225 TYPE is some string to identify the purpose of this function to the
9226 linker or collect2; it must start with an uppercase letter,
9227 one of:
9228 I - for constructors
9229 D - for destructors
9230 N - for C++ anonymous namespaces
9231 F - for DWARF unwind frame information. */
9233 tree
9234 get_file_function_name (const char *type)
9236 char *buf;
9237 const char *p;
9238 char *q;
9240 /* If we already have a name we know to be unique, just use that. */
9241 if (first_global_object_name)
9242 p = q = ASTRDUP (first_global_object_name);
9243 /* If the target is handling the constructors/destructors, they
9244 will be local to this file and the name is only necessary for
9245 debugging purposes.
9246 We also assign sub_I and sub_D sufixes to constructors called from
9247 the global static constructors. These are always local. */
9248 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9249 || (strncmp (type, "sub_", 4) == 0
9250 && (type[4] == 'I' || type[4] == 'D')))
9252 const char *file = main_input_filename;
9253 if (! file)
9254 file = LOCATION_FILE (input_location);
9255 /* Just use the file's basename, because the full pathname
9256 might be quite long. */
9257 p = q = ASTRDUP (lbasename (file));
9259 else
9261 /* Otherwise, the name must be unique across the entire link.
9262 We don't have anything that we know to be unique to this translation
9263 unit, so use what we do have and throw in some randomness. */
9264 unsigned len;
9265 const char *name = weak_global_object_name;
9266 const char *file = main_input_filename;
9268 if (! name)
9269 name = "";
9270 if (! file)
9271 file = LOCATION_FILE (input_location);
9273 len = strlen (file);
9274 q = (char *) alloca (9 + 19 + len + 1);
9275 memcpy (q, file, len + 1);
9277 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9278 crc32_string (0, name), get_random_seed (false));
9280 p = q;
9283 clean_symbol_name (q);
9284 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9285 + strlen (type));
9287 /* Set up the name of the file-level functions we may need.
9288 Use a global object (which is already required to be unique over
9289 the program) rather than the file name (which imposes extra
9290 constraints). */
9291 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9293 return get_identifier (buf);
9296 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9298 /* Complain that the tree code of NODE does not match the expected 0
9299 terminated list of trailing codes. The trailing code list can be
9300 empty, for a more vague error message. FILE, LINE, and FUNCTION
9301 are of the caller. */
9303 void
9304 tree_check_failed (const_tree node, const char *file,
9305 int line, const char *function, ...)
9307 va_list args;
9308 const char *buffer;
9309 unsigned length = 0;
9310 enum tree_code code;
9312 va_start (args, function);
9313 while ((code = (enum tree_code) va_arg (args, int)))
9314 length += 4 + strlen (get_tree_code_name (code));
9315 va_end (args);
9316 if (length)
9318 char *tmp;
9319 va_start (args, function);
9320 length += strlen ("expected ");
9321 buffer = tmp = (char *) alloca (length);
9322 length = 0;
9323 while ((code = (enum tree_code) va_arg (args, int)))
9325 const char *prefix = length ? " or " : "expected ";
9327 strcpy (tmp + length, prefix);
9328 length += strlen (prefix);
9329 strcpy (tmp + length, get_tree_code_name (code));
9330 length += strlen (get_tree_code_name (code));
9332 va_end (args);
9334 else
9335 buffer = "unexpected node";
9337 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9338 buffer, get_tree_code_name (TREE_CODE (node)),
9339 function, trim_filename (file), line);
9342 /* Complain that the tree code of NODE does match the expected 0
9343 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9344 the caller. */
9346 void
9347 tree_not_check_failed (const_tree node, const char *file,
9348 int line, const char *function, ...)
9350 va_list args;
9351 char *buffer;
9352 unsigned length = 0;
9353 enum tree_code code;
9355 va_start (args, function);
9356 while ((code = (enum tree_code) va_arg (args, int)))
9357 length += 4 + strlen (get_tree_code_name (code));
9358 va_end (args);
9359 va_start (args, function);
9360 buffer = (char *) alloca (length);
9361 length = 0;
9362 while ((code = (enum tree_code) va_arg (args, int)))
9364 if (length)
9366 strcpy (buffer + length, " or ");
9367 length += 4;
9369 strcpy (buffer + length, get_tree_code_name (code));
9370 length += strlen (get_tree_code_name (code));
9372 va_end (args);
9374 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9375 buffer, get_tree_code_name (TREE_CODE (node)),
9376 function, trim_filename (file), line);
9379 /* Similar to tree_check_failed, except that we check for a class of tree
9380 code, given in CL. */
9382 void
9383 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9384 const char *file, int line, const char *function)
9386 internal_error
9387 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9388 TREE_CODE_CLASS_STRING (cl),
9389 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9390 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9393 /* Similar to tree_check_failed, except that instead of specifying a
9394 dozen codes, use the knowledge that they're all sequential. */
9396 void
9397 tree_range_check_failed (const_tree node, const char *file, int line,
9398 const char *function, enum tree_code c1,
9399 enum tree_code c2)
9401 char *buffer;
9402 unsigned length = 0;
9403 unsigned int c;
9405 for (c = c1; c <= c2; ++c)
9406 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9408 length += strlen ("expected ");
9409 buffer = (char *) alloca (length);
9410 length = 0;
9412 for (c = c1; c <= c2; ++c)
9414 const char *prefix = length ? " or " : "expected ";
9416 strcpy (buffer + length, prefix);
9417 length += strlen (prefix);
9418 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9419 length += strlen (get_tree_code_name ((enum tree_code) c));
9422 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9423 buffer, get_tree_code_name (TREE_CODE (node)),
9424 function, trim_filename (file), line);
9428 /* Similar to tree_check_failed, except that we check that a tree does
9429 not have the specified code, given in CL. */
9431 void
9432 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9433 const char *file, int line, const char *function)
9435 internal_error
9436 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9437 TREE_CODE_CLASS_STRING (cl),
9438 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9439 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9443 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9445 void
9446 omp_clause_check_failed (const_tree node, const char *file, int line,
9447 const char *function, enum omp_clause_code code)
9449 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9450 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9451 function, trim_filename (file), line);
9455 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9457 void
9458 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9459 const char *function, enum omp_clause_code c1,
9460 enum omp_clause_code c2)
9462 char *buffer;
9463 unsigned length = 0;
9464 unsigned int c;
9466 for (c = c1; c <= c2; ++c)
9467 length += 4 + strlen (omp_clause_code_name[c]);
9469 length += strlen ("expected ");
9470 buffer = (char *) alloca (length);
9471 length = 0;
9473 for (c = c1; c <= c2; ++c)
9475 const char *prefix = length ? " or " : "expected ";
9477 strcpy (buffer + length, prefix);
9478 length += strlen (prefix);
9479 strcpy (buffer + length, omp_clause_code_name[c]);
9480 length += strlen (omp_clause_code_name[c]);
9483 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9484 buffer, omp_clause_code_name[TREE_CODE (node)],
9485 function, trim_filename (file), line);
9489 #undef DEFTREESTRUCT
9490 #define DEFTREESTRUCT(VAL, NAME) NAME,
9492 static const char *ts_enum_names[] = {
9493 #include "treestruct.def"
9495 #undef DEFTREESTRUCT
9497 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9499 /* Similar to tree_class_check_failed, except that we check for
9500 whether CODE contains the tree structure identified by EN. */
9502 void
9503 tree_contains_struct_check_failed (const_tree node,
9504 const enum tree_node_structure_enum en,
9505 const char *file, int line,
9506 const char *function)
9508 internal_error
9509 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9510 TS_ENUM_NAME (en),
9511 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9515 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9516 (dynamically sized) vector. */
9518 void
9519 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9520 const char *function)
9522 internal_error
9523 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9524 idx + 1, len, function, trim_filename (file), line);
9527 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9528 (dynamically sized) vector. */
9530 void
9531 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9532 const char *function)
9534 internal_error
9535 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9536 idx + 1, len, function, trim_filename (file), line);
9539 /* Similar to above, except that the check is for the bounds of the operand
9540 vector of an expression node EXP. */
9542 void
9543 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9544 int line, const char *function)
9546 enum tree_code code = TREE_CODE (exp);
9547 internal_error
9548 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9549 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9550 function, trim_filename (file), line);
9553 /* Similar to above, except that the check is for the number of
9554 operands of an OMP_CLAUSE node. */
9556 void
9557 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9558 int line, const char *function)
9560 internal_error
9561 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9562 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9563 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9564 trim_filename (file), line);
9566 #endif /* ENABLE_TREE_CHECKING */
9568 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
9569 and mapped to the machine mode MODE. Initialize its fields and build
9570 the information necessary for debugging output. */
9572 static tree
9573 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
9575 tree t;
9576 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9578 t = make_node (VECTOR_TYPE);
9579 TREE_TYPE (t) = mv_innertype;
9580 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9581 SET_TYPE_MODE (t, mode);
9583 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9584 SET_TYPE_STRUCTURAL_EQUALITY (t);
9585 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9586 || mode != VOIDmode)
9587 && !VECTOR_BOOLEAN_TYPE_P (t))
9588 TYPE_CANONICAL (t)
9589 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9591 layout_type (t);
9593 hashval_t hash = type_hash_canon_hash (t);
9594 t = type_hash_canon (hash, t);
9596 /* We have built a main variant, based on the main variant of the
9597 inner type. Use it to build the variant we return. */
9598 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9599 && TREE_TYPE (t) != innertype)
9600 return build_type_attribute_qual_variant (t,
9601 TYPE_ATTRIBUTES (innertype),
9602 TYPE_QUALS (innertype));
9604 return t;
9607 static tree
9608 make_or_reuse_type (unsigned size, int unsignedp)
9610 int i;
9612 if (size == INT_TYPE_SIZE)
9613 return unsignedp ? unsigned_type_node : integer_type_node;
9614 if (size == CHAR_TYPE_SIZE)
9615 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9616 if (size == SHORT_TYPE_SIZE)
9617 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9618 if (size == LONG_TYPE_SIZE)
9619 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9620 if (size == LONG_LONG_TYPE_SIZE)
9621 return (unsignedp ? long_long_unsigned_type_node
9622 : long_long_integer_type_node);
9624 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9625 if (size == int_n_data[i].bitsize
9626 && int_n_enabled_p[i])
9627 return (unsignedp ? int_n_trees[i].unsigned_type
9628 : int_n_trees[i].signed_type);
9630 if (unsignedp)
9631 return make_unsigned_type (size);
9632 else
9633 return make_signed_type (size);
9636 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9638 static tree
9639 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9641 if (satp)
9643 if (size == SHORT_FRACT_TYPE_SIZE)
9644 return unsignedp ? sat_unsigned_short_fract_type_node
9645 : sat_short_fract_type_node;
9646 if (size == FRACT_TYPE_SIZE)
9647 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9648 if (size == LONG_FRACT_TYPE_SIZE)
9649 return unsignedp ? sat_unsigned_long_fract_type_node
9650 : sat_long_fract_type_node;
9651 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9652 return unsignedp ? sat_unsigned_long_long_fract_type_node
9653 : sat_long_long_fract_type_node;
9655 else
9657 if (size == SHORT_FRACT_TYPE_SIZE)
9658 return unsignedp ? unsigned_short_fract_type_node
9659 : short_fract_type_node;
9660 if (size == FRACT_TYPE_SIZE)
9661 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9662 if (size == LONG_FRACT_TYPE_SIZE)
9663 return unsignedp ? unsigned_long_fract_type_node
9664 : long_fract_type_node;
9665 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9666 return unsignedp ? unsigned_long_long_fract_type_node
9667 : long_long_fract_type_node;
9670 return make_fract_type (size, unsignedp, satp);
9673 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9675 static tree
9676 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9678 if (satp)
9680 if (size == SHORT_ACCUM_TYPE_SIZE)
9681 return unsignedp ? sat_unsigned_short_accum_type_node
9682 : sat_short_accum_type_node;
9683 if (size == ACCUM_TYPE_SIZE)
9684 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9685 if (size == LONG_ACCUM_TYPE_SIZE)
9686 return unsignedp ? sat_unsigned_long_accum_type_node
9687 : sat_long_accum_type_node;
9688 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9689 return unsignedp ? sat_unsigned_long_long_accum_type_node
9690 : sat_long_long_accum_type_node;
9692 else
9694 if (size == SHORT_ACCUM_TYPE_SIZE)
9695 return unsignedp ? unsigned_short_accum_type_node
9696 : short_accum_type_node;
9697 if (size == ACCUM_TYPE_SIZE)
9698 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9699 if (size == LONG_ACCUM_TYPE_SIZE)
9700 return unsignedp ? unsigned_long_accum_type_node
9701 : long_accum_type_node;
9702 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9703 return unsignedp ? unsigned_long_long_accum_type_node
9704 : long_long_accum_type_node;
9707 return make_accum_type (size, unsignedp, satp);
9711 /* Create an atomic variant node for TYPE. This routine is called
9712 during initialization of data types to create the 5 basic atomic
9713 types. The generic build_variant_type function requires these to
9714 already be set up in order to function properly, so cannot be
9715 called from there. If ALIGN is non-zero, then ensure alignment is
9716 overridden to this value. */
9718 static tree
9719 build_atomic_base (tree type, unsigned int align)
9721 tree t;
9723 /* Make sure its not already registered. */
9724 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9725 return t;
9727 t = build_variant_type_copy (type);
9728 set_type_quals (t, TYPE_QUAL_ATOMIC);
9730 if (align)
9731 SET_TYPE_ALIGN (t, align);
9733 return t;
9736 /* Information about the _FloatN and _FloatNx types. This must be in
9737 the same order as the corresponding TI_* enum values. */
9738 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
9740 { 16, false },
9741 { 32, false },
9742 { 64, false },
9743 { 128, false },
9744 { 32, true },
9745 { 64, true },
9746 { 128, true },
9750 /* Create nodes for all integer types (and error_mark_node) using the sizes
9751 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
9753 void
9754 build_common_tree_nodes (bool signed_char)
9756 int i;
9758 error_mark_node = make_node (ERROR_MARK);
9759 TREE_TYPE (error_mark_node) = error_mark_node;
9761 initialize_sizetypes ();
9763 /* Define both `signed char' and `unsigned char'. */
9764 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9765 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9766 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9767 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9769 /* Define `char', which is like either `signed char' or `unsigned char'
9770 but not the same as either. */
9771 char_type_node
9772 = (signed_char
9773 ? make_signed_type (CHAR_TYPE_SIZE)
9774 : make_unsigned_type (CHAR_TYPE_SIZE));
9775 TYPE_STRING_FLAG (char_type_node) = 1;
9777 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9778 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9779 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9780 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9781 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9782 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9783 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9784 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9786 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9788 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
9789 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
9790 TYPE_SIZE (int_n_trees[i].signed_type) = bitsize_int (int_n_data[i].bitsize);
9791 TYPE_SIZE (int_n_trees[i].unsigned_type) = bitsize_int (int_n_data[i].bitsize);
9793 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
9794 && int_n_enabled_p[i])
9796 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
9797 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
9801 /* Define a boolean type. This type only represents boolean values but
9802 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9803 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9804 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9805 TYPE_PRECISION (boolean_type_node) = 1;
9806 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9808 /* Define what type to use for size_t. */
9809 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9810 size_type_node = unsigned_type_node;
9811 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9812 size_type_node = long_unsigned_type_node;
9813 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9814 size_type_node = long_long_unsigned_type_node;
9815 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9816 size_type_node = short_unsigned_type_node;
9817 else
9819 int i;
9821 size_type_node = NULL_TREE;
9822 for (i = 0; i < NUM_INT_N_ENTS; i++)
9823 if (int_n_enabled_p[i])
9825 char name[50];
9826 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
9828 if (strcmp (name, SIZE_TYPE) == 0)
9830 size_type_node = int_n_trees[i].unsigned_type;
9833 if (size_type_node == NULL_TREE)
9834 gcc_unreachable ();
9837 /* Define what type to use for ptrdiff_t. */
9838 if (strcmp (PTRDIFF_TYPE, "int") == 0)
9839 ptrdiff_type_node = integer_type_node;
9840 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
9841 ptrdiff_type_node = long_integer_type_node;
9842 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
9843 ptrdiff_type_node = long_long_integer_type_node;
9844 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
9845 ptrdiff_type_node = short_integer_type_node;
9846 else
9848 ptrdiff_type_node = NULL_TREE;
9849 for (int i = 0; i < NUM_INT_N_ENTS; i++)
9850 if (int_n_enabled_p[i])
9852 char name[50];
9853 sprintf (name, "__int%d", int_n_data[i].bitsize);
9854 if (strcmp (name, PTRDIFF_TYPE) == 0)
9855 ptrdiff_type_node = int_n_trees[i].signed_type;
9857 if (ptrdiff_type_node == NULL_TREE)
9858 gcc_unreachable ();
9861 /* Fill in the rest of the sized types. Reuse existing type nodes
9862 when possible. */
9863 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9864 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9865 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9866 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9867 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9869 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9870 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9871 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9872 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9873 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9875 /* Don't call build_qualified type for atomics. That routine does
9876 special processing for atomics, and until they are initialized
9877 it's better not to make that call.
9879 Check to see if there is a target override for atomic types. */
9881 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9882 targetm.atomic_align_for_mode (QImode));
9883 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9884 targetm.atomic_align_for_mode (HImode));
9885 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9886 targetm.atomic_align_for_mode (SImode));
9887 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9888 targetm.atomic_align_for_mode (DImode));
9889 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9890 targetm.atomic_align_for_mode (TImode));
9892 access_public_node = get_identifier ("public");
9893 access_protected_node = get_identifier ("protected");
9894 access_private_node = get_identifier ("private");
9896 /* Define these next since types below may used them. */
9897 integer_zero_node = build_int_cst (integer_type_node, 0);
9898 integer_one_node = build_int_cst (integer_type_node, 1);
9899 integer_three_node = build_int_cst (integer_type_node, 3);
9900 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9902 size_zero_node = size_int (0);
9903 size_one_node = size_int (1);
9904 bitsize_zero_node = bitsize_int (0);
9905 bitsize_one_node = bitsize_int (1);
9906 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9908 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9909 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9911 void_type_node = make_node (VOID_TYPE);
9912 layout_type (void_type_node);
9914 pointer_bounds_type_node = targetm.chkp_bound_type ();
9916 /* We are not going to have real types in C with less than byte alignment,
9917 so we might as well not have any types that claim to have it. */
9918 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
9919 TYPE_USER_ALIGN (void_type_node) = 0;
9921 void_node = make_node (VOID_CST);
9922 TREE_TYPE (void_node) = void_type_node;
9924 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9925 layout_type (TREE_TYPE (null_pointer_node));
9927 ptr_type_node = build_pointer_type (void_type_node);
9928 const_ptr_type_node
9929 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9930 for (unsigned i = 0;
9931 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
9932 ++i)
9933 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
9935 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9937 float_type_node = make_node (REAL_TYPE);
9938 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9939 layout_type (float_type_node);
9941 double_type_node = make_node (REAL_TYPE);
9942 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9943 layout_type (double_type_node);
9945 long_double_type_node = make_node (REAL_TYPE);
9946 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9947 layout_type (long_double_type_node);
9949 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9951 int n = floatn_nx_types[i].n;
9952 bool extended = floatn_nx_types[i].extended;
9953 scalar_float_mode mode;
9954 if (!targetm.floatn_mode (n, extended).exists (&mode))
9955 continue;
9956 int precision = GET_MODE_PRECISION (mode);
9957 /* Work around the rs6000 KFmode having precision 113 not
9958 128. */
9959 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
9960 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
9961 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
9962 if (!extended)
9963 gcc_assert (min_precision == n);
9964 if (precision < min_precision)
9965 precision = min_precision;
9966 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
9967 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
9968 layout_type (FLOATN_NX_TYPE_NODE (i));
9969 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
9972 float_ptr_type_node = build_pointer_type (float_type_node);
9973 double_ptr_type_node = build_pointer_type (double_type_node);
9974 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9975 integer_ptr_type_node = build_pointer_type (integer_type_node);
9977 /* Fixed size integer types. */
9978 uint16_type_node = make_or_reuse_type (16, 1);
9979 uint32_type_node = make_or_reuse_type (32, 1);
9980 uint64_type_node = make_or_reuse_type (64, 1);
9982 /* Decimal float types. */
9983 dfloat32_type_node = make_node (REAL_TYPE);
9984 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9985 SET_TYPE_MODE (dfloat32_type_node, SDmode);
9986 layout_type (dfloat32_type_node);
9987 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9989 dfloat64_type_node = make_node (REAL_TYPE);
9990 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9991 SET_TYPE_MODE (dfloat64_type_node, DDmode);
9992 layout_type (dfloat64_type_node);
9993 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9995 dfloat128_type_node = make_node (REAL_TYPE);
9996 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9997 SET_TYPE_MODE (dfloat128_type_node, TDmode);
9998 layout_type (dfloat128_type_node);
9999 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
10001 complex_integer_type_node = build_complex_type (integer_type_node, true);
10002 complex_float_type_node = build_complex_type (float_type_node, true);
10003 complex_double_type_node = build_complex_type (double_type_node, true);
10004 complex_long_double_type_node = build_complex_type (long_double_type_node,
10005 true);
10007 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10009 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10010 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10011 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10014 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10015 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10016 sat_ ## KIND ## _type_node = \
10017 make_sat_signed_ ## KIND ## _type (SIZE); \
10018 sat_unsigned_ ## KIND ## _type_node = \
10019 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10020 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10021 unsigned_ ## KIND ## _type_node = \
10022 make_unsigned_ ## KIND ## _type (SIZE);
10024 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10025 sat_ ## WIDTH ## KIND ## _type_node = \
10026 make_sat_signed_ ## KIND ## _type (SIZE); \
10027 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10028 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10029 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10030 unsigned_ ## WIDTH ## KIND ## _type_node = \
10031 make_unsigned_ ## KIND ## _type (SIZE);
10033 /* Make fixed-point type nodes based on four different widths. */
10034 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10035 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10036 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10037 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10038 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10040 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10041 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10042 NAME ## _type_node = \
10043 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10044 u ## NAME ## _type_node = \
10045 make_or_reuse_unsigned_ ## KIND ## _type \
10046 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10047 sat_ ## NAME ## _type_node = \
10048 make_or_reuse_sat_signed_ ## KIND ## _type \
10049 (GET_MODE_BITSIZE (MODE ## mode)); \
10050 sat_u ## NAME ## _type_node = \
10051 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10052 (GET_MODE_BITSIZE (U ## MODE ## mode));
10054 /* Fixed-point type and mode nodes. */
10055 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10056 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10057 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10058 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10059 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10060 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10061 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10062 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10063 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10064 MAKE_FIXED_MODE_NODE (accum, da, DA)
10065 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10068 tree t = targetm.build_builtin_va_list ();
10070 /* Many back-ends define record types without setting TYPE_NAME.
10071 If we copied the record type here, we'd keep the original
10072 record type without a name. This breaks name mangling. So,
10073 don't copy record types and let c_common_nodes_and_builtins()
10074 declare the type to be __builtin_va_list. */
10075 if (TREE_CODE (t) != RECORD_TYPE)
10076 t = build_variant_type_copy (t);
10078 va_list_type_node = t;
10082 /* Modify DECL for given flags.
10083 TM_PURE attribute is set only on types, so the function will modify
10084 DECL's type when ECF_TM_PURE is used. */
10086 void
10087 set_call_expr_flags (tree decl, int flags)
10089 if (flags & ECF_NOTHROW)
10090 TREE_NOTHROW (decl) = 1;
10091 if (flags & ECF_CONST)
10092 TREE_READONLY (decl) = 1;
10093 if (flags & ECF_PURE)
10094 DECL_PURE_P (decl) = 1;
10095 if (flags & ECF_LOOPING_CONST_OR_PURE)
10096 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10097 if (flags & ECF_NOVOPS)
10098 DECL_IS_NOVOPS (decl) = 1;
10099 if (flags & ECF_NORETURN)
10100 TREE_THIS_VOLATILE (decl) = 1;
10101 if (flags & ECF_MALLOC)
10102 DECL_IS_MALLOC (decl) = 1;
10103 if (flags & ECF_RETURNS_TWICE)
10104 DECL_IS_RETURNS_TWICE (decl) = 1;
10105 if (flags & ECF_LEAF)
10106 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10107 NULL, DECL_ATTRIBUTES (decl));
10108 if (flags & ECF_COLD)
10109 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10110 NULL, DECL_ATTRIBUTES (decl));
10111 if (flags & ECF_RET1)
10112 DECL_ATTRIBUTES (decl)
10113 = tree_cons (get_identifier ("fn spec"),
10114 build_tree_list (NULL_TREE, build_string (1, "1")),
10115 DECL_ATTRIBUTES (decl));
10116 if ((flags & ECF_TM_PURE) && flag_tm)
10117 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10118 /* Looping const or pure is implied by noreturn.
10119 There is currently no way to declare looping const or looping pure alone. */
10120 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10121 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10125 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10127 static void
10128 local_define_builtin (const char *name, tree type, enum built_in_function code,
10129 const char *library_name, int ecf_flags)
10131 tree decl;
10133 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10134 library_name, NULL_TREE);
10135 set_call_expr_flags (decl, ecf_flags);
10137 set_builtin_decl (code, decl, true);
10140 /* Call this function after instantiating all builtins that the language
10141 front end cares about. This will build the rest of the builtins
10142 and internal functions that are relied upon by the tree optimizers and
10143 the middle-end. */
10145 void
10146 build_common_builtin_nodes (void)
10148 tree tmp, ftype;
10149 int ecf_flags;
10151 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10152 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10154 ftype = build_function_type (void_type_node, void_list_node);
10155 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10156 local_define_builtin ("__builtin_unreachable", ftype,
10157 BUILT_IN_UNREACHABLE,
10158 "__builtin_unreachable",
10159 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10160 | ECF_CONST | ECF_COLD);
10161 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10162 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10163 "abort",
10164 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10167 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10168 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10170 ftype = build_function_type_list (ptr_type_node,
10171 ptr_type_node, const_ptr_type_node,
10172 size_type_node, NULL_TREE);
10174 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10175 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10176 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10177 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10178 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10179 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10182 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10184 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10185 const_ptr_type_node, size_type_node,
10186 NULL_TREE);
10187 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10188 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10191 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10193 ftype = build_function_type_list (ptr_type_node,
10194 ptr_type_node, integer_type_node,
10195 size_type_node, NULL_TREE);
10196 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10197 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10200 /* If we're checking the stack, `alloca' can throw. */
10201 const int alloca_flags
10202 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10204 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10206 ftype = build_function_type_list (ptr_type_node,
10207 size_type_node, NULL_TREE);
10208 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10209 "alloca", alloca_flags);
10212 ftype = build_function_type_list (ptr_type_node, size_type_node,
10213 size_type_node, NULL_TREE);
10214 local_define_builtin ("__builtin_alloca_with_align", ftype,
10215 BUILT_IN_ALLOCA_WITH_ALIGN,
10216 "__builtin_alloca_with_align",
10217 alloca_flags);
10219 ftype = build_function_type_list (ptr_type_node, size_type_node,
10220 size_type_node, size_type_node, NULL_TREE);
10221 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10222 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10223 "__builtin_alloca_with_align_and_max",
10224 alloca_flags);
10226 ftype = build_function_type_list (void_type_node,
10227 ptr_type_node, ptr_type_node,
10228 ptr_type_node, NULL_TREE);
10229 local_define_builtin ("__builtin_init_trampoline", ftype,
10230 BUILT_IN_INIT_TRAMPOLINE,
10231 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10232 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10233 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10234 "__builtin_init_heap_trampoline",
10235 ECF_NOTHROW | ECF_LEAF);
10236 local_define_builtin ("__builtin_init_descriptor", ftype,
10237 BUILT_IN_INIT_DESCRIPTOR,
10238 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10240 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10241 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10242 BUILT_IN_ADJUST_TRAMPOLINE,
10243 "__builtin_adjust_trampoline",
10244 ECF_CONST | ECF_NOTHROW);
10245 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10246 BUILT_IN_ADJUST_DESCRIPTOR,
10247 "__builtin_adjust_descriptor",
10248 ECF_CONST | ECF_NOTHROW);
10250 ftype = build_function_type_list (void_type_node,
10251 ptr_type_node, ptr_type_node, NULL_TREE);
10252 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10253 BUILT_IN_NONLOCAL_GOTO,
10254 "__builtin_nonlocal_goto",
10255 ECF_NORETURN | ECF_NOTHROW);
10257 ftype = build_function_type_list (void_type_node,
10258 ptr_type_node, ptr_type_node, NULL_TREE);
10259 local_define_builtin ("__builtin_setjmp_setup", ftype,
10260 BUILT_IN_SETJMP_SETUP,
10261 "__builtin_setjmp_setup", ECF_NOTHROW);
10263 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10264 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10265 BUILT_IN_SETJMP_RECEIVER,
10266 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10268 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10269 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10270 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10272 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10273 local_define_builtin ("__builtin_stack_restore", ftype,
10274 BUILT_IN_STACK_RESTORE,
10275 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10277 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10278 const_ptr_type_node, size_type_node,
10279 NULL_TREE);
10280 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10281 "__builtin_memcmp_eq",
10282 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10284 /* If there's a possibility that we might use the ARM EABI, build the
10285 alternate __cxa_end_cleanup node used to resume from C++. */
10286 if (targetm.arm_eabi_unwinder)
10288 ftype = build_function_type_list (void_type_node, NULL_TREE);
10289 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10290 BUILT_IN_CXA_END_CLEANUP,
10291 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10294 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10295 local_define_builtin ("__builtin_unwind_resume", ftype,
10296 BUILT_IN_UNWIND_RESUME,
10297 ((targetm_common.except_unwind_info (&global_options)
10298 == UI_SJLJ)
10299 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10300 ECF_NORETURN);
10302 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10304 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10305 NULL_TREE);
10306 local_define_builtin ("__builtin_return_address", ftype,
10307 BUILT_IN_RETURN_ADDRESS,
10308 "__builtin_return_address",
10309 ECF_NOTHROW);
10312 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10313 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10315 ftype = build_function_type_list (void_type_node, ptr_type_node,
10316 ptr_type_node, NULL_TREE);
10317 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10318 local_define_builtin ("__cyg_profile_func_enter", ftype,
10319 BUILT_IN_PROFILE_FUNC_ENTER,
10320 "__cyg_profile_func_enter", 0);
10321 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10322 local_define_builtin ("__cyg_profile_func_exit", ftype,
10323 BUILT_IN_PROFILE_FUNC_EXIT,
10324 "__cyg_profile_func_exit", 0);
10327 /* The exception object and filter values from the runtime. The argument
10328 must be zero before exception lowering, i.e. from the front end. After
10329 exception lowering, it will be the region number for the exception
10330 landing pad. These functions are PURE instead of CONST to prevent
10331 them from being hoisted past the exception edge that will initialize
10332 its value in the landing pad. */
10333 ftype = build_function_type_list (ptr_type_node,
10334 integer_type_node, NULL_TREE);
10335 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10336 /* Only use TM_PURE if we have TM language support. */
10337 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10338 ecf_flags |= ECF_TM_PURE;
10339 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10340 "__builtin_eh_pointer", ecf_flags);
10342 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10343 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10344 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10345 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10347 ftype = build_function_type_list (void_type_node,
10348 integer_type_node, integer_type_node,
10349 NULL_TREE);
10350 local_define_builtin ("__builtin_eh_copy_values", ftype,
10351 BUILT_IN_EH_COPY_VALUES,
10352 "__builtin_eh_copy_values", ECF_NOTHROW);
10354 /* Complex multiplication and division. These are handled as builtins
10355 rather than optabs because emit_library_call_value doesn't support
10356 complex. Further, we can do slightly better with folding these
10357 beasties if the real and complex parts of the arguments are separate. */
10359 int mode;
10361 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10363 char mode_name_buf[4], *q;
10364 const char *p;
10365 enum built_in_function mcode, dcode;
10366 tree type, inner_type;
10367 const char *prefix = "__";
10369 if (targetm.libfunc_gnu_prefix)
10370 prefix = "__gnu_";
10372 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10373 if (type == NULL)
10374 continue;
10375 inner_type = TREE_TYPE (type);
10377 ftype = build_function_type_list (type, inner_type, inner_type,
10378 inner_type, inner_type, NULL_TREE);
10380 mcode = ((enum built_in_function)
10381 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10382 dcode = ((enum built_in_function)
10383 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10385 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10386 *q = TOLOWER (*p);
10387 *q = '\0';
10389 /* For -ftrapping-math these should throw from a former
10390 -fnon-call-exception stmt. */
10391 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10392 NULL);
10393 local_define_builtin (built_in_names[mcode], ftype, mcode,
10394 built_in_names[mcode],
10395 ECF_CONST | ECF_LEAF);
10397 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10398 NULL);
10399 local_define_builtin (built_in_names[dcode], ftype, dcode,
10400 built_in_names[dcode],
10401 ECF_CONST | ECF_LEAF);
10405 init_internal_fns ();
10408 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10409 better way.
10411 If we requested a pointer to a vector, build up the pointers that
10412 we stripped off while looking for the inner type. Similarly for
10413 return values from functions.
10415 The argument TYPE is the top of the chain, and BOTTOM is the
10416 new type which we will point to. */
10418 tree
10419 reconstruct_complex_type (tree type, tree bottom)
10421 tree inner, outer;
10423 if (TREE_CODE (type) == POINTER_TYPE)
10425 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10426 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10427 TYPE_REF_CAN_ALIAS_ALL (type));
10429 else if (TREE_CODE (type) == REFERENCE_TYPE)
10431 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10432 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10433 TYPE_REF_CAN_ALIAS_ALL (type));
10435 else if (TREE_CODE (type) == ARRAY_TYPE)
10437 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10438 outer = build_array_type (inner, TYPE_DOMAIN (type));
10440 else if (TREE_CODE (type) == FUNCTION_TYPE)
10442 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10443 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10445 else if (TREE_CODE (type) == METHOD_TYPE)
10447 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10448 /* The build_method_type_directly() routine prepends 'this' to argument list,
10449 so we must compensate by getting rid of it. */
10450 outer
10451 = build_method_type_directly
10452 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10453 inner,
10454 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10456 else if (TREE_CODE (type) == OFFSET_TYPE)
10458 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10459 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10461 else
10462 return bottom;
10464 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10465 TYPE_QUALS (type));
10468 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10469 the inner type. */
10470 tree
10471 build_vector_type_for_mode (tree innertype, machine_mode mode)
10473 poly_int64 nunits;
10474 unsigned int bitsize;
10476 switch (GET_MODE_CLASS (mode))
10478 case MODE_VECTOR_BOOL:
10479 case MODE_VECTOR_INT:
10480 case MODE_VECTOR_FLOAT:
10481 case MODE_VECTOR_FRACT:
10482 case MODE_VECTOR_UFRACT:
10483 case MODE_VECTOR_ACCUM:
10484 case MODE_VECTOR_UACCUM:
10485 nunits = GET_MODE_NUNITS (mode);
10486 break;
10488 case MODE_INT:
10489 /* Check that there are no leftover bits. */
10490 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10491 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10492 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10493 break;
10495 default:
10496 gcc_unreachable ();
10499 return make_vector_type (innertype, nunits, mode);
10502 /* Similarly, but takes the inner type and number of units, which must be
10503 a power of two. */
10505 tree
10506 build_vector_type (tree innertype, poly_int64 nunits)
10508 return make_vector_type (innertype, nunits, VOIDmode);
10511 /* Build truth vector with specified length and number of units. */
10513 tree
10514 build_truth_vector_type (poly_uint64 nunits, poly_uint64 vector_size)
10516 machine_mode mask_mode
10517 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
10519 poly_uint64 vsize;
10520 if (mask_mode == BLKmode)
10521 vsize = vector_size * BITS_PER_UNIT;
10522 else
10523 vsize = GET_MODE_BITSIZE (mask_mode);
10525 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
10527 tree bool_type = build_nonstandard_boolean_type (esize);
10529 return make_vector_type (bool_type, nunits, mask_mode);
10532 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10534 tree
10535 build_same_sized_truth_vector_type (tree vectype)
10537 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10538 return vectype;
10540 poly_uint64 size = GET_MODE_SIZE (TYPE_MODE (vectype));
10542 if (known_eq (size, 0U))
10543 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10545 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10548 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10550 tree
10551 build_opaque_vector_type (tree innertype, poly_int64 nunits)
10553 tree t = make_vector_type (innertype, nunits, VOIDmode);
10554 tree cand;
10555 /* We always build the non-opaque variant before the opaque one,
10556 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10557 cand = TYPE_NEXT_VARIANT (t);
10558 if (cand
10559 && TYPE_VECTOR_OPAQUE (cand)
10560 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10561 return cand;
10562 /* Othewise build a variant type and make sure to queue it after
10563 the non-opaque type. */
10564 cand = build_distinct_type_copy (t);
10565 TYPE_VECTOR_OPAQUE (cand) = true;
10566 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10567 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10568 TYPE_NEXT_VARIANT (t) = cand;
10569 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10570 return cand;
10573 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10575 wide_int
10576 vector_cst_int_elt (const_tree t, unsigned int i)
10578 /* First handle elements that are directly encoded. */
10579 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10580 if (i < encoded_nelts)
10581 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
10583 /* Identify the pattern that contains element I and work out the index of
10584 the last encoded element for that pattern. */
10585 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10586 unsigned int pattern = i % npatterns;
10587 unsigned int count = i / npatterns;
10588 unsigned int final_i = encoded_nelts - npatterns + pattern;
10590 /* If there are no steps, the final encoded value is the right one. */
10591 if (!VECTOR_CST_STEPPED_P (t))
10592 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
10594 /* Otherwise work out the value from the last two encoded elements. */
10595 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
10596 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
10597 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
10598 return wi::to_wide (v2) + (count - 2) * diff;
10601 /* Return the value of element I of VECTOR_CST T. */
10603 tree
10604 vector_cst_elt (const_tree t, unsigned int i)
10606 /* First handle elements that are directly encoded. */
10607 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10608 if (i < encoded_nelts)
10609 return VECTOR_CST_ENCODED_ELT (t, i);
10611 /* If there are no steps, the final encoded value is the right one. */
10612 if (!VECTOR_CST_STEPPED_P (t))
10614 /* Identify the pattern that contains element I and work out the index of
10615 the last encoded element for that pattern. */
10616 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10617 unsigned int pattern = i % npatterns;
10618 unsigned int final_i = encoded_nelts - npatterns + pattern;
10619 return VECTOR_CST_ENCODED_ELT (t, final_i);
10622 /* Otherwise work out the value from the last two encoded elements. */
10623 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
10624 vector_cst_int_elt (t, i));
10627 /* Given an initializer INIT, return TRUE if INIT is zero or some
10628 aggregate of zeros. Otherwise return FALSE. */
10629 bool
10630 initializer_zerop (const_tree init)
10632 tree elt;
10634 STRIP_NOPS (init);
10636 switch (TREE_CODE (init))
10638 case INTEGER_CST:
10639 return integer_zerop (init);
10641 case REAL_CST:
10642 /* ??? Note that this is not correct for C4X float formats. There,
10643 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10644 negative exponent. */
10645 return real_zerop (init)
10646 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10648 case FIXED_CST:
10649 return fixed_zerop (init);
10651 case COMPLEX_CST:
10652 return integer_zerop (init)
10653 || (real_zerop (init)
10654 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10655 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10657 case VECTOR_CST:
10658 return (VECTOR_CST_NPATTERNS (init) == 1
10659 && VECTOR_CST_DUPLICATE_P (init)
10660 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)));
10662 case CONSTRUCTOR:
10664 unsigned HOST_WIDE_INT idx;
10666 if (TREE_CLOBBER_P (init))
10667 return false;
10668 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10669 if (!initializer_zerop (elt))
10670 return false;
10671 return true;
10674 case STRING_CST:
10676 int i;
10678 /* We need to loop through all elements to handle cases like
10679 "\0" and "\0foobar". */
10680 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10681 if (TREE_STRING_POINTER (init)[i] != '\0')
10682 return false;
10684 return true;
10687 default:
10688 return false;
10692 /* Check if vector VEC consists of all the equal elements and
10693 that the number of elements corresponds to the type of VEC.
10694 The function returns first element of the vector
10695 or NULL_TREE if the vector is not uniform. */
10696 tree
10697 uniform_vector_p (const_tree vec)
10699 tree first, t;
10700 unsigned HOST_WIDE_INT i, nelts;
10702 if (vec == NULL_TREE)
10703 return NULL_TREE;
10705 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10707 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
10708 return TREE_OPERAND (vec, 0);
10710 else if (TREE_CODE (vec) == VECTOR_CST)
10712 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
10713 return VECTOR_CST_ENCODED_ELT (vec, 0);
10714 return NULL_TREE;
10717 else if (TREE_CODE (vec) == CONSTRUCTOR
10718 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
10720 first = error_mark_node;
10722 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10724 if (i == 0)
10726 first = t;
10727 continue;
10729 if (!operand_equal_p (first, t, 0))
10730 return NULL_TREE;
10732 if (i != nelts)
10733 return NULL_TREE;
10735 return first;
10738 return NULL_TREE;
10741 /* Build an empty statement at location LOC. */
10743 tree
10744 build_empty_stmt (location_t loc)
10746 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10747 SET_EXPR_LOCATION (t, loc);
10748 return t;
10752 /* Build an OpenMP clause with code CODE. LOC is the location of the
10753 clause. */
10755 tree
10756 build_omp_clause (location_t loc, enum omp_clause_code code)
10758 tree t;
10759 int size, length;
10761 length = omp_clause_num_ops[code];
10762 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10764 record_node_allocation_statistics (OMP_CLAUSE, size);
10766 t = (tree) ggc_internal_alloc (size);
10767 memset (t, 0, size);
10768 TREE_SET_CODE (t, OMP_CLAUSE);
10769 OMP_CLAUSE_SET_CODE (t, code);
10770 OMP_CLAUSE_LOCATION (t) = loc;
10772 return t;
10775 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10776 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10777 Except for the CODE and operand count field, other storage for the
10778 object is initialized to zeros. */
10780 tree
10781 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
10783 tree t;
10784 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10786 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10787 gcc_assert (len >= 1);
10789 record_node_allocation_statistics (code, length);
10791 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10793 TREE_SET_CODE (t, code);
10795 /* Can't use TREE_OPERAND to store the length because if checking is
10796 enabled, it will try to check the length before we store it. :-P */
10797 t->exp.operands[0] = build_int_cst (sizetype, len);
10799 return t;
10802 /* Helper function for build_call_* functions; build a CALL_EXPR with
10803 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10804 the argument slots. */
10806 static tree
10807 build_call_1 (tree return_type, tree fn, int nargs)
10809 tree t;
10811 t = build_vl_exp (CALL_EXPR, nargs + 3);
10812 TREE_TYPE (t) = return_type;
10813 CALL_EXPR_FN (t) = fn;
10814 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10816 return t;
10819 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10820 FN and a null static chain slot. NARGS is the number of call arguments
10821 which are specified as "..." arguments. */
10823 tree
10824 build_call_nary (tree return_type, tree fn, int nargs, ...)
10826 tree ret;
10827 va_list args;
10828 va_start (args, nargs);
10829 ret = build_call_valist (return_type, fn, nargs, args);
10830 va_end (args);
10831 return ret;
10834 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10835 FN and a null static chain slot. NARGS is the number of call arguments
10836 which are specified as a va_list ARGS. */
10838 tree
10839 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10841 tree t;
10842 int i;
10844 t = build_call_1 (return_type, fn, nargs);
10845 for (i = 0; i < nargs; i++)
10846 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10847 process_call_operands (t);
10848 return t;
10851 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10852 FN and a null static chain slot. NARGS is the number of call arguments
10853 which are specified as a tree array ARGS. */
10855 tree
10856 build_call_array_loc (location_t loc, tree return_type, tree fn,
10857 int nargs, const tree *args)
10859 tree t;
10860 int i;
10862 t = build_call_1 (return_type, fn, nargs);
10863 for (i = 0; i < nargs; i++)
10864 CALL_EXPR_ARG (t, i) = args[i];
10865 process_call_operands (t);
10866 SET_EXPR_LOCATION (t, loc);
10867 return t;
10870 /* Like build_call_array, but takes a vec. */
10872 tree
10873 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10875 tree ret, t;
10876 unsigned int ix;
10878 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10879 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10880 CALL_EXPR_ARG (ret, ix) = t;
10881 process_call_operands (ret);
10882 return ret;
10885 /* Conveniently construct a function call expression. FNDECL names the
10886 function to be called and N arguments are passed in the array
10887 ARGARRAY. */
10889 tree
10890 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10892 tree fntype = TREE_TYPE (fndecl);
10893 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10895 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
10898 /* Conveniently construct a function call expression. FNDECL names the
10899 function to be called and the arguments are passed in the vector
10900 VEC. */
10902 tree
10903 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10905 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10906 vec_safe_address (vec));
10910 /* Conveniently construct a function call expression. FNDECL names the
10911 function to be called, N is the number of arguments, and the "..."
10912 parameters are the argument expressions. */
10914 tree
10915 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10917 va_list ap;
10918 tree *argarray = XALLOCAVEC (tree, n);
10919 int i;
10921 va_start (ap, n);
10922 for (i = 0; i < n; i++)
10923 argarray[i] = va_arg (ap, tree);
10924 va_end (ap);
10925 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10928 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10929 varargs macros aren't supported by all bootstrap compilers. */
10931 tree
10932 build_call_expr (tree fndecl, int n, ...)
10934 va_list ap;
10935 tree *argarray = XALLOCAVEC (tree, n);
10936 int i;
10938 va_start (ap, n);
10939 for (i = 0; i < n; i++)
10940 argarray[i] = va_arg (ap, tree);
10941 va_end (ap);
10942 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10945 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
10946 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
10947 It will get gimplified later into an ordinary internal function. */
10949 tree
10950 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
10951 tree type, int n, const tree *args)
10953 tree t = build_call_1 (type, NULL_TREE, n);
10954 for (int i = 0; i < n; ++i)
10955 CALL_EXPR_ARG (t, i) = args[i];
10956 SET_EXPR_LOCATION (t, loc);
10957 CALL_EXPR_IFN (t) = ifn;
10958 return t;
10961 /* Build internal call expression. This is just like CALL_EXPR, except
10962 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10963 internal function. */
10965 tree
10966 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
10967 tree type, int n, ...)
10969 va_list ap;
10970 tree *argarray = XALLOCAVEC (tree, n);
10971 int i;
10973 va_start (ap, n);
10974 for (i = 0; i < n; i++)
10975 argarray[i] = va_arg (ap, tree);
10976 va_end (ap);
10977 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
10980 /* Return a function call to FN, if the target is guaranteed to support it,
10981 or null otherwise.
10983 N is the number of arguments, passed in the "...", and TYPE is the
10984 type of the return value. */
10986 tree
10987 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
10988 int n, ...)
10990 va_list ap;
10991 tree *argarray = XALLOCAVEC (tree, n);
10992 int i;
10994 va_start (ap, n);
10995 for (i = 0; i < n; i++)
10996 argarray[i] = va_arg (ap, tree);
10997 va_end (ap);
10998 if (internal_fn_p (fn))
11000 internal_fn ifn = as_internal_fn (fn);
11001 if (direct_internal_fn_p (ifn))
11003 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11004 if (!direct_internal_fn_supported_p (ifn, types,
11005 OPTIMIZE_FOR_BOTH))
11006 return NULL_TREE;
11008 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11010 else
11012 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11013 if (!fndecl)
11014 return NULL_TREE;
11015 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11019 /* Return a function call to the appropriate builtin alloca variant.
11021 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11022 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11023 bound for SIZE in case it is not a fixed value. */
11025 tree
11026 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11028 if (max_size >= 0)
11030 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11031 return
11032 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11034 else if (align > 0)
11036 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11037 return build_call_expr (t, 2, size, size_int (align));
11039 else
11041 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11042 return build_call_expr (t, 1, size);
11046 /* Create a new constant string literal and return a char* pointer to it.
11047 The STRING_CST value is the LEN characters at STR. */
11048 tree
11049 build_string_literal (int len, const char *str)
11051 tree t, elem, index, type;
11053 t = build_string (len, str);
11054 elem = build_type_variant (char_type_node, 1, 0);
11055 index = build_index_type (size_int (len - 1));
11056 type = build_array_type (elem, index);
11057 TREE_TYPE (t) = type;
11058 TREE_CONSTANT (t) = 1;
11059 TREE_READONLY (t) = 1;
11060 TREE_STATIC (t) = 1;
11062 type = build_pointer_type (elem);
11063 t = build1 (ADDR_EXPR, type,
11064 build4 (ARRAY_REF, elem,
11065 t, integer_zero_node, NULL_TREE, NULL_TREE));
11066 return t;
11071 /* Return true if T (assumed to be a DECL) must be assigned a memory
11072 location. */
11074 bool
11075 needs_to_live_in_memory (const_tree t)
11077 return (TREE_ADDRESSABLE (t)
11078 || is_global_var (t)
11079 || (TREE_CODE (t) == RESULT_DECL
11080 && !DECL_BY_REFERENCE (t)
11081 && aggregate_value_p (t, current_function_decl)));
11084 /* Return value of a constant X and sign-extend it. */
11086 HOST_WIDE_INT
11087 int_cst_value (const_tree x)
11089 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11090 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11092 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11093 gcc_assert (cst_and_fits_in_hwi (x));
11095 if (bits < HOST_BITS_PER_WIDE_INT)
11097 bool negative = ((val >> (bits - 1)) & 1) != 0;
11098 if (negative)
11099 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11100 else
11101 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11104 return val;
11107 /* If TYPE is an integral or pointer type, return an integer type with
11108 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11109 if TYPE is already an integer type of signedness UNSIGNEDP. */
11111 tree
11112 signed_or_unsigned_type_for (int unsignedp, tree type)
11114 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
11115 return type;
11117 if (TREE_CODE (type) == VECTOR_TYPE)
11119 tree inner = TREE_TYPE (type);
11120 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11121 if (!inner2)
11122 return NULL_TREE;
11123 if (inner == inner2)
11124 return type;
11125 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11128 if (!INTEGRAL_TYPE_P (type)
11129 && !POINTER_TYPE_P (type)
11130 && TREE_CODE (type) != OFFSET_TYPE)
11131 return NULL_TREE;
11133 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
11136 /* If TYPE is an integral or pointer type, return an integer type with
11137 the same precision which is unsigned, or itself if TYPE is already an
11138 unsigned integer type. */
11140 tree
11141 unsigned_type_for (tree type)
11143 return signed_or_unsigned_type_for (1, type);
11146 /* If TYPE is an integral or pointer type, return an integer type with
11147 the same precision which is signed, or itself if TYPE is already a
11148 signed integer type. */
11150 tree
11151 signed_type_for (tree type)
11153 return signed_or_unsigned_type_for (0, type);
11156 /* If TYPE is a vector type, return a signed integer vector type with the
11157 same width and number of subparts. Otherwise return boolean_type_node. */
11159 tree
11160 truth_type_for (tree type)
11162 if (TREE_CODE (type) == VECTOR_TYPE)
11164 if (VECTOR_BOOLEAN_TYPE_P (type))
11165 return type;
11166 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
11167 GET_MODE_SIZE (TYPE_MODE (type)));
11169 else
11170 return boolean_type_node;
11173 /* Returns the largest value obtainable by casting something in INNER type to
11174 OUTER type. */
11176 tree
11177 upper_bound_in_type (tree outer, tree inner)
11179 unsigned int det = 0;
11180 unsigned oprec = TYPE_PRECISION (outer);
11181 unsigned iprec = TYPE_PRECISION (inner);
11182 unsigned prec;
11184 /* Compute a unique number for every combination. */
11185 det |= (oprec > iprec) ? 4 : 0;
11186 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11187 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11189 /* Determine the exponent to use. */
11190 switch (det)
11192 case 0:
11193 case 1:
11194 /* oprec <= iprec, outer: signed, inner: don't care. */
11195 prec = oprec - 1;
11196 break;
11197 case 2:
11198 case 3:
11199 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11200 prec = oprec;
11201 break;
11202 case 4:
11203 /* oprec > iprec, outer: signed, inner: signed. */
11204 prec = iprec - 1;
11205 break;
11206 case 5:
11207 /* oprec > iprec, outer: signed, inner: unsigned. */
11208 prec = iprec;
11209 break;
11210 case 6:
11211 /* oprec > iprec, outer: unsigned, inner: signed. */
11212 prec = oprec;
11213 break;
11214 case 7:
11215 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11216 prec = iprec;
11217 break;
11218 default:
11219 gcc_unreachable ();
11222 return wide_int_to_tree (outer,
11223 wi::mask (prec, false, TYPE_PRECISION (outer)));
11226 /* Returns the smallest value obtainable by casting something in INNER type to
11227 OUTER type. */
11229 tree
11230 lower_bound_in_type (tree outer, tree inner)
11232 unsigned oprec = TYPE_PRECISION (outer);
11233 unsigned iprec = TYPE_PRECISION (inner);
11235 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11236 and obtain 0. */
11237 if (TYPE_UNSIGNED (outer)
11238 /* If we are widening something of an unsigned type, OUTER type
11239 contains all values of INNER type. In particular, both INNER
11240 and OUTER types have zero in common. */
11241 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11242 return build_int_cst (outer, 0);
11243 else
11245 /* If we are widening a signed type to another signed type, we
11246 want to obtain -2^^(iprec-1). If we are keeping the
11247 precision or narrowing to a signed type, we want to obtain
11248 -2^(oprec-1). */
11249 unsigned prec = oprec > iprec ? iprec : oprec;
11250 return wide_int_to_tree (outer,
11251 wi::mask (prec - 1, true,
11252 TYPE_PRECISION (outer)));
11256 /* Return nonzero if two operands that are suitable for PHI nodes are
11257 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11258 SSA_NAME or invariant. Note that this is strictly an optimization.
11259 That is, callers of this function can directly call operand_equal_p
11260 and get the same result, only slower. */
11263 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11265 if (arg0 == arg1)
11266 return 1;
11267 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11268 return 0;
11269 return operand_equal_p (arg0, arg1, 0);
11272 /* Returns number of zeros at the end of binary representation of X. */
11274 tree
11275 num_ending_zeros (const_tree x)
11277 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11281 #define WALK_SUBTREE(NODE) \
11282 do \
11284 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11285 if (result) \
11286 return result; \
11288 while (0)
11290 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11291 be walked whenever a type is seen in the tree. Rest of operands and return
11292 value are as for walk_tree. */
11294 static tree
11295 walk_type_fields (tree type, walk_tree_fn func, void *data,
11296 hash_set<tree> *pset, walk_tree_lh lh)
11298 tree result = NULL_TREE;
11300 switch (TREE_CODE (type))
11302 case POINTER_TYPE:
11303 case REFERENCE_TYPE:
11304 case VECTOR_TYPE:
11305 /* We have to worry about mutually recursive pointers. These can't
11306 be written in C. They can in Ada. It's pathological, but
11307 there's an ACATS test (c38102a) that checks it. Deal with this
11308 by checking if we're pointing to another pointer, that one
11309 points to another pointer, that one does too, and we have no htab.
11310 If so, get a hash table. We check three levels deep to avoid
11311 the cost of the hash table if we don't need one. */
11312 if (POINTER_TYPE_P (TREE_TYPE (type))
11313 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11314 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11315 && !pset)
11317 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11318 func, data);
11319 if (result)
11320 return result;
11322 break;
11325 /* fall through */
11327 case COMPLEX_TYPE:
11328 WALK_SUBTREE (TREE_TYPE (type));
11329 break;
11331 case METHOD_TYPE:
11332 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11334 /* Fall through. */
11336 case FUNCTION_TYPE:
11337 WALK_SUBTREE (TREE_TYPE (type));
11339 tree arg;
11341 /* We never want to walk into default arguments. */
11342 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11343 WALK_SUBTREE (TREE_VALUE (arg));
11345 break;
11347 case ARRAY_TYPE:
11348 /* Don't follow this nodes's type if a pointer for fear that
11349 we'll have infinite recursion. If we have a PSET, then we
11350 need not fear. */
11351 if (pset
11352 || (!POINTER_TYPE_P (TREE_TYPE (type))
11353 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11354 WALK_SUBTREE (TREE_TYPE (type));
11355 WALK_SUBTREE (TYPE_DOMAIN (type));
11356 break;
11358 case OFFSET_TYPE:
11359 WALK_SUBTREE (TREE_TYPE (type));
11360 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11361 break;
11363 default:
11364 break;
11367 return NULL_TREE;
11370 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11371 called with the DATA and the address of each sub-tree. If FUNC returns a
11372 non-NULL value, the traversal is stopped, and the value returned by FUNC
11373 is returned. If PSET is non-NULL it is used to record the nodes visited,
11374 and to avoid visiting a node more than once. */
11376 tree
11377 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11378 hash_set<tree> *pset, walk_tree_lh lh)
11380 enum tree_code code;
11381 int walk_subtrees;
11382 tree result;
11384 #define WALK_SUBTREE_TAIL(NODE) \
11385 do \
11387 tp = & (NODE); \
11388 goto tail_recurse; \
11390 while (0)
11392 tail_recurse:
11393 /* Skip empty subtrees. */
11394 if (!*tp)
11395 return NULL_TREE;
11397 /* Don't walk the same tree twice, if the user has requested
11398 that we avoid doing so. */
11399 if (pset && pset->add (*tp))
11400 return NULL_TREE;
11402 /* Call the function. */
11403 walk_subtrees = 1;
11404 result = (*func) (tp, &walk_subtrees, data);
11406 /* If we found something, return it. */
11407 if (result)
11408 return result;
11410 code = TREE_CODE (*tp);
11412 /* Even if we didn't, FUNC may have decided that there was nothing
11413 interesting below this point in the tree. */
11414 if (!walk_subtrees)
11416 /* But we still need to check our siblings. */
11417 if (code == TREE_LIST)
11418 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11419 else if (code == OMP_CLAUSE)
11420 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11421 else
11422 return NULL_TREE;
11425 if (lh)
11427 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11428 if (result || !walk_subtrees)
11429 return result;
11432 switch (code)
11434 case ERROR_MARK:
11435 case IDENTIFIER_NODE:
11436 case INTEGER_CST:
11437 case REAL_CST:
11438 case FIXED_CST:
11439 case VECTOR_CST:
11440 case STRING_CST:
11441 case BLOCK:
11442 case PLACEHOLDER_EXPR:
11443 case SSA_NAME:
11444 case FIELD_DECL:
11445 case RESULT_DECL:
11446 /* None of these have subtrees other than those already walked
11447 above. */
11448 break;
11450 case TREE_LIST:
11451 WALK_SUBTREE (TREE_VALUE (*tp));
11452 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11453 break;
11455 case TREE_VEC:
11457 int len = TREE_VEC_LENGTH (*tp);
11459 if (len == 0)
11460 break;
11462 /* Walk all elements but the first. */
11463 while (--len)
11464 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11466 /* Now walk the first one as a tail call. */
11467 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11470 case COMPLEX_CST:
11471 WALK_SUBTREE (TREE_REALPART (*tp));
11472 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11474 case CONSTRUCTOR:
11476 unsigned HOST_WIDE_INT idx;
11477 constructor_elt *ce;
11479 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11480 idx++)
11481 WALK_SUBTREE (ce->value);
11483 break;
11485 case SAVE_EXPR:
11486 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11488 case BIND_EXPR:
11490 tree decl;
11491 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11493 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11494 into declarations that are just mentioned, rather than
11495 declared; they don't really belong to this part of the tree.
11496 And, we can see cycles: the initializer for a declaration
11497 can refer to the declaration itself. */
11498 WALK_SUBTREE (DECL_INITIAL (decl));
11499 WALK_SUBTREE (DECL_SIZE (decl));
11500 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11502 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11505 case STATEMENT_LIST:
11507 tree_stmt_iterator i;
11508 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11509 WALK_SUBTREE (*tsi_stmt_ptr (i));
11511 break;
11513 case OMP_CLAUSE:
11514 switch (OMP_CLAUSE_CODE (*tp))
11516 case OMP_CLAUSE_GANG:
11517 case OMP_CLAUSE__GRIDDIM_:
11518 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11519 /* FALLTHRU */
11521 case OMP_CLAUSE_ASYNC:
11522 case OMP_CLAUSE_WAIT:
11523 case OMP_CLAUSE_WORKER:
11524 case OMP_CLAUSE_VECTOR:
11525 case OMP_CLAUSE_NUM_GANGS:
11526 case OMP_CLAUSE_NUM_WORKERS:
11527 case OMP_CLAUSE_VECTOR_LENGTH:
11528 case OMP_CLAUSE_PRIVATE:
11529 case OMP_CLAUSE_SHARED:
11530 case OMP_CLAUSE_FIRSTPRIVATE:
11531 case OMP_CLAUSE_COPYIN:
11532 case OMP_CLAUSE_COPYPRIVATE:
11533 case OMP_CLAUSE_FINAL:
11534 case OMP_CLAUSE_IF:
11535 case OMP_CLAUSE_NUM_THREADS:
11536 case OMP_CLAUSE_SCHEDULE:
11537 case OMP_CLAUSE_UNIFORM:
11538 case OMP_CLAUSE_DEPEND:
11539 case OMP_CLAUSE_NUM_TEAMS:
11540 case OMP_CLAUSE_THREAD_LIMIT:
11541 case OMP_CLAUSE_DEVICE:
11542 case OMP_CLAUSE_DIST_SCHEDULE:
11543 case OMP_CLAUSE_SAFELEN:
11544 case OMP_CLAUSE_SIMDLEN:
11545 case OMP_CLAUSE_ORDERED:
11546 case OMP_CLAUSE_PRIORITY:
11547 case OMP_CLAUSE_GRAINSIZE:
11548 case OMP_CLAUSE_NUM_TASKS:
11549 case OMP_CLAUSE_HINT:
11550 case OMP_CLAUSE_TO_DECLARE:
11551 case OMP_CLAUSE_LINK:
11552 case OMP_CLAUSE_USE_DEVICE_PTR:
11553 case OMP_CLAUSE_IS_DEVICE_PTR:
11554 case OMP_CLAUSE__LOOPTEMP_:
11555 case OMP_CLAUSE__SIMDUID_:
11556 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11557 /* FALLTHRU */
11559 case OMP_CLAUSE_INDEPENDENT:
11560 case OMP_CLAUSE_NOWAIT:
11561 case OMP_CLAUSE_DEFAULT:
11562 case OMP_CLAUSE_UNTIED:
11563 case OMP_CLAUSE_MERGEABLE:
11564 case OMP_CLAUSE_PROC_BIND:
11565 case OMP_CLAUSE_INBRANCH:
11566 case OMP_CLAUSE_NOTINBRANCH:
11567 case OMP_CLAUSE_FOR:
11568 case OMP_CLAUSE_PARALLEL:
11569 case OMP_CLAUSE_SECTIONS:
11570 case OMP_CLAUSE_TASKGROUP:
11571 case OMP_CLAUSE_NOGROUP:
11572 case OMP_CLAUSE_THREADS:
11573 case OMP_CLAUSE_SIMD:
11574 case OMP_CLAUSE_DEFAULTMAP:
11575 case OMP_CLAUSE_AUTO:
11576 case OMP_CLAUSE_SEQ:
11577 case OMP_CLAUSE_TILE:
11578 case OMP_CLAUSE__SIMT_:
11579 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11581 case OMP_CLAUSE_LASTPRIVATE:
11582 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11583 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11584 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11586 case OMP_CLAUSE_COLLAPSE:
11588 int i;
11589 for (i = 0; i < 3; i++)
11590 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11591 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11594 case OMP_CLAUSE_LINEAR:
11595 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11596 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11597 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11598 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11600 case OMP_CLAUSE_ALIGNED:
11601 case OMP_CLAUSE_FROM:
11602 case OMP_CLAUSE_TO:
11603 case OMP_CLAUSE_MAP:
11604 case OMP_CLAUSE__CACHE_:
11605 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11606 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11607 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11609 case OMP_CLAUSE_REDUCTION:
11611 int i;
11612 for (i = 0; i < 5; i++)
11613 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11614 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11617 default:
11618 gcc_unreachable ();
11620 break;
11622 case TARGET_EXPR:
11624 int i, len;
11626 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11627 But, we only want to walk once. */
11628 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11629 for (i = 0; i < len; ++i)
11630 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11631 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11634 case DECL_EXPR:
11635 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11636 defining. We only want to walk into these fields of a type in this
11637 case and not in the general case of a mere reference to the type.
11639 The criterion is as follows: if the field can be an expression, it
11640 must be walked only here. This should be in keeping with the fields
11641 that are directly gimplified in gimplify_type_sizes in order for the
11642 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11643 variable-sized types.
11645 Note that DECLs get walked as part of processing the BIND_EXPR. */
11646 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11648 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11649 if (TREE_CODE (*type_p) == ERROR_MARK)
11650 return NULL_TREE;
11652 /* Call the function for the type. See if it returns anything or
11653 doesn't want us to continue. If we are to continue, walk both
11654 the normal fields and those for the declaration case. */
11655 result = (*func) (type_p, &walk_subtrees, data);
11656 if (result || !walk_subtrees)
11657 return result;
11659 /* But do not walk a pointed-to type since it may itself need to
11660 be walked in the declaration case if it isn't anonymous. */
11661 if (!POINTER_TYPE_P (*type_p))
11663 result = walk_type_fields (*type_p, func, data, pset, lh);
11664 if (result)
11665 return result;
11668 /* If this is a record type, also walk the fields. */
11669 if (RECORD_OR_UNION_TYPE_P (*type_p))
11671 tree field;
11673 for (field = TYPE_FIELDS (*type_p); field;
11674 field = DECL_CHAIN (field))
11676 /* We'd like to look at the type of the field, but we can
11677 easily get infinite recursion. So assume it's pointed
11678 to elsewhere in the tree. Also, ignore things that
11679 aren't fields. */
11680 if (TREE_CODE (field) != FIELD_DECL)
11681 continue;
11683 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11684 WALK_SUBTREE (DECL_SIZE (field));
11685 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11686 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11687 WALK_SUBTREE (DECL_QUALIFIER (field));
11691 /* Same for scalar types. */
11692 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11693 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11694 || TREE_CODE (*type_p) == INTEGER_TYPE
11695 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11696 || TREE_CODE (*type_p) == REAL_TYPE)
11698 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11699 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11702 WALK_SUBTREE (TYPE_SIZE (*type_p));
11703 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11705 /* FALLTHRU */
11707 default:
11708 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11710 int i, len;
11712 /* Walk over all the sub-trees of this operand. */
11713 len = TREE_OPERAND_LENGTH (*tp);
11715 /* Go through the subtrees. We need to do this in forward order so
11716 that the scope of a FOR_EXPR is handled properly. */
11717 if (len)
11719 for (i = 0; i < len - 1; ++i)
11720 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11721 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11724 /* If this is a type, walk the needed fields in the type. */
11725 else if (TYPE_P (*tp))
11726 return walk_type_fields (*tp, func, data, pset, lh);
11727 break;
11730 /* We didn't find what we were looking for. */
11731 return NULL_TREE;
11733 #undef WALK_SUBTREE_TAIL
11735 #undef WALK_SUBTREE
11737 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11739 tree
11740 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11741 walk_tree_lh lh)
11743 tree result;
11745 hash_set<tree> pset;
11746 result = walk_tree_1 (tp, func, data, &pset, lh);
11747 return result;
11751 tree
11752 tree_block (tree t)
11754 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11756 if (IS_EXPR_CODE_CLASS (c))
11757 return LOCATION_BLOCK (t->exp.locus);
11758 gcc_unreachable ();
11759 return NULL;
11762 void
11763 tree_set_block (tree t, tree b)
11765 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11767 if (IS_EXPR_CODE_CLASS (c))
11769 t->exp.locus = set_block (t->exp.locus, b);
11771 else
11772 gcc_unreachable ();
11775 /* Create a nameless artificial label and put it in the current
11776 function context. The label has a location of LOC. Returns the
11777 newly created label. */
11779 tree
11780 create_artificial_label (location_t loc)
11782 tree lab = build_decl (loc,
11783 LABEL_DECL, NULL_TREE, void_type_node);
11785 DECL_ARTIFICIAL (lab) = 1;
11786 DECL_IGNORED_P (lab) = 1;
11787 DECL_CONTEXT (lab) = current_function_decl;
11788 return lab;
11791 /* Given a tree, try to return a useful variable name that we can use
11792 to prefix a temporary that is being assigned the value of the tree.
11793 I.E. given <temp> = &A, return A. */
11795 const char *
11796 get_name (tree t)
11798 tree stripped_decl;
11800 stripped_decl = t;
11801 STRIP_NOPS (stripped_decl);
11802 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11803 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11804 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11806 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11807 if (!name)
11808 return NULL;
11809 return IDENTIFIER_POINTER (name);
11811 else
11813 switch (TREE_CODE (stripped_decl))
11815 case ADDR_EXPR:
11816 return get_name (TREE_OPERAND (stripped_decl, 0));
11817 default:
11818 return NULL;
11823 /* Return true if TYPE has a variable argument list. */
11825 bool
11826 stdarg_p (const_tree fntype)
11828 function_args_iterator args_iter;
11829 tree n = NULL_TREE, t;
11831 if (!fntype)
11832 return false;
11834 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11836 n = t;
11839 return n != NULL_TREE && n != void_type_node;
11842 /* Return true if TYPE has a prototype. */
11844 bool
11845 prototype_p (const_tree fntype)
11847 tree t;
11849 gcc_assert (fntype != NULL_TREE);
11851 t = TYPE_ARG_TYPES (fntype);
11852 return (t != NULL_TREE);
11855 /* If BLOCK is inlined from an __attribute__((__artificial__))
11856 routine, return pointer to location from where it has been
11857 called. */
11858 location_t *
11859 block_nonartificial_location (tree block)
11861 location_t *ret = NULL;
11863 while (block && TREE_CODE (block) == BLOCK
11864 && BLOCK_ABSTRACT_ORIGIN (block))
11866 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11868 while (TREE_CODE (ao) == BLOCK
11869 && BLOCK_ABSTRACT_ORIGIN (ao)
11870 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11871 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11873 if (TREE_CODE (ao) == FUNCTION_DECL)
11875 /* If AO is an artificial inline, point RET to the
11876 call site locus at which it has been inlined and continue
11877 the loop, in case AO's caller is also an artificial
11878 inline. */
11879 if (DECL_DECLARED_INLINE_P (ao)
11880 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11881 ret = &BLOCK_SOURCE_LOCATION (block);
11882 else
11883 break;
11885 else if (TREE_CODE (ao) != BLOCK)
11886 break;
11888 block = BLOCK_SUPERCONTEXT (block);
11890 return ret;
11894 /* If EXP is inlined from an __attribute__((__artificial__))
11895 function, return the location of the original call expression. */
11897 location_t
11898 tree_nonartificial_location (tree exp)
11900 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11902 if (loc)
11903 return *loc;
11904 else
11905 return EXPR_LOCATION (exp);
11909 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11910 nodes. */
11912 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11914 hashval_t
11915 cl_option_hasher::hash (tree x)
11917 const_tree const t = x;
11918 const char *p;
11919 size_t i;
11920 size_t len = 0;
11921 hashval_t hash = 0;
11923 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11925 p = (const char *)TREE_OPTIMIZATION (t);
11926 len = sizeof (struct cl_optimization);
11929 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11930 return cl_target_option_hash (TREE_TARGET_OPTION (t));
11932 else
11933 gcc_unreachable ();
11935 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11936 something else. */
11937 for (i = 0; i < len; i++)
11938 if (p[i])
11939 hash = (hash << 4) ^ ((i << 2) | p[i]);
11941 return hash;
11944 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11945 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11946 same. */
11948 bool
11949 cl_option_hasher::equal (tree x, tree y)
11951 const_tree const xt = x;
11952 const_tree const yt = y;
11953 const char *xp;
11954 const char *yp;
11955 size_t len;
11957 if (TREE_CODE (xt) != TREE_CODE (yt))
11958 return 0;
11960 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11962 xp = (const char *)TREE_OPTIMIZATION (xt);
11963 yp = (const char *)TREE_OPTIMIZATION (yt);
11964 len = sizeof (struct cl_optimization);
11967 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11969 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
11970 TREE_TARGET_OPTION (yt));
11973 else
11974 gcc_unreachable ();
11976 return (memcmp (xp, yp, len) == 0);
11979 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11981 tree
11982 build_optimization_node (struct gcc_options *opts)
11984 tree t;
11986 /* Use the cache of optimization nodes. */
11988 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
11989 opts);
11991 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
11992 t = *slot;
11993 if (!t)
11995 /* Insert this one into the hash table. */
11996 t = cl_optimization_node;
11997 *slot = t;
11999 /* Make a new node for next time round. */
12000 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12003 return t;
12006 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
12008 tree
12009 build_target_option_node (struct gcc_options *opts)
12011 tree t;
12013 /* Use the cache of optimization nodes. */
12015 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12016 opts);
12018 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12019 t = *slot;
12020 if (!t)
12022 /* Insert this one into the hash table. */
12023 t = cl_target_option_node;
12024 *slot = t;
12026 /* Make a new node for next time round. */
12027 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12030 return t;
12033 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12034 so that they aren't saved during PCH writing. */
12036 void
12037 prepare_target_option_nodes_for_pch (void)
12039 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12040 for (; iter != cl_option_hash_table->end (); ++iter)
12041 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12042 TREE_TARGET_GLOBALS (*iter) = NULL;
12045 /* Determine the "ultimate origin" of a block. The block may be an inlined
12046 instance of an inlined instance of a block which is local to an inline
12047 function, so we have to trace all of the way back through the origin chain
12048 to find out what sort of node actually served as the original seed for the
12049 given block. */
12051 tree
12052 block_ultimate_origin (const_tree block)
12054 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
12056 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
12057 we're trying to output the abstract instance of this function. */
12058 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
12059 return NULL_TREE;
12061 if (immediate_origin == NULL_TREE)
12062 return NULL_TREE;
12063 else
12065 tree ret_val;
12066 tree lookahead = immediate_origin;
12070 ret_val = lookahead;
12071 lookahead = (TREE_CODE (ret_val) == BLOCK
12072 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
12074 while (lookahead != NULL && lookahead != ret_val);
12076 /* The block's abstract origin chain may not be the *ultimate* origin of
12077 the block. It could lead to a DECL that has an abstract origin set.
12078 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
12079 will give us if it has one). Note that DECL's abstract origins are
12080 supposed to be the most distant ancestor (or so decl_ultimate_origin
12081 claims), so we don't need to loop following the DECL origins. */
12082 if (DECL_P (ret_val))
12083 return DECL_ORIGIN (ret_val);
12085 return ret_val;
12089 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12090 no instruction. */
12092 bool
12093 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12095 /* Do not strip casts into or out of differing address spaces. */
12096 if (POINTER_TYPE_P (outer_type)
12097 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12099 if (!POINTER_TYPE_P (inner_type)
12100 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12101 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12102 return false;
12104 else if (POINTER_TYPE_P (inner_type)
12105 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12107 /* We already know that outer_type is not a pointer with
12108 a non-generic address space. */
12109 return false;
12112 /* Use precision rather then machine mode when we can, which gives
12113 the correct answer even for submode (bit-field) types. */
12114 if ((INTEGRAL_TYPE_P (outer_type)
12115 || POINTER_TYPE_P (outer_type)
12116 || TREE_CODE (outer_type) == OFFSET_TYPE)
12117 && (INTEGRAL_TYPE_P (inner_type)
12118 || POINTER_TYPE_P (inner_type)
12119 || TREE_CODE (inner_type) == OFFSET_TYPE))
12120 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12122 /* Otherwise fall back on comparing machine modes (e.g. for
12123 aggregate types, floats). */
12124 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12127 /* Return true iff conversion in EXP generates no instruction. Mark
12128 it inline so that we fully inline into the stripping functions even
12129 though we have two uses of this function. */
12131 static inline bool
12132 tree_nop_conversion (const_tree exp)
12134 tree outer_type, inner_type;
12136 if (location_wrapper_p (exp))
12137 return true;
12138 if (!CONVERT_EXPR_P (exp)
12139 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12140 return false;
12141 if (TREE_OPERAND (exp, 0) == error_mark_node)
12142 return false;
12144 outer_type = TREE_TYPE (exp);
12145 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12147 if (!inner_type)
12148 return false;
12150 return tree_nop_conversion_p (outer_type, inner_type);
12153 /* Return true iff conversion in EXP generates no instruction. Don't
12154 consider conversions changing the signedness. */
12156 static bool
12157 tree_sign_nop_conversion (const_tree exp)
12159 tree outer_type, inner_type;
12161 if (!tree_nop_conversion (exp))
12162 return false;
12164 outer_type = TREE_TYPE (exp);
12165 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12167 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12168 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12171 /* Strip conversions from EXP according to tree_nop_conversion and
12172 return the resulting expression. */
12174 tree
12175 tree_strip_nop_conversions (tree exp)
12177 while (tree_nop_conversion (exp))
12178 exp = TREE_OPERAND (exp, 0);
12179 return exp;
12182 /* Strip conversions from EXP according to tree_sign_nop_conversion
12183 and return the resulting expression. */
12185 tree
12186 tree_strip_sign_nop_conversions (tree exp)
12188 while (tree_sign_nop_conversion (exp))
12189 exp = TREE_OPERAND (exp, 0);
12190 return exp;
12193 /* Avoid any floating point extensions from EXP. */
12194 tree
12195 strip_float_extensions (tree exp)
12197 tree sub, expt, subt;
12199 /* For floating point constant look up the narrowest type that can hold
12200 it properly and handle it like (type)(narrowest_type)constant.
12201 This way we can optimize for instance a=a*2.0 where "a" is float
12202 but 2.0 is double constant. */
12203 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12205 REAL_VALUE_TYPE orig;
12206 tree type = NULL;
12208 orig = TREE_REAL_CST (exp);
12209 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12210 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12211 type = float_type_node;
12212 else if (TYPE_PRECISION (TREE_TYPE (exp))
12213 > TYPE_PRECISION (double_type_node)
12214 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12215 type = double_type_node;
12216 if (type)
12217 return build_real_truncate (type, orig);
12220 if (!CONVERT_EXPR_P (exp))
12221 return exp;
12223 sub = TREE_OPERAND (exp, 0);
12224 subt = TREE_TYPE (sub);
12225 expt = TREE_TYPE (exp);
12227 if (!FLOAT_TYPE_P (subt))
12228 return exp;
12230 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12231 return exp;
12233 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12234 return exp;
12236 return strip_float_extensions (sub);
12239 /* Strip out all handled components that produce invariant
12240 offsets. */
12242 const_tree
12243 strip_invariant_refs (const_tree op)
12245 while (handled_component_p (op))
12247 switch (TREE_CODE (op))
12249 case ARRAY_REF:
12250 case ARRAY_RANGE_REF:
12251 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12252 || TREE_OPERAND (op, 2) != NULL_TREE
12253 || TREE_OPERAND (op, 3) != NULL_TREE)
12254 return NULL;
12255 break;
12257 case COMPONENT_REF:
12258 if (TREE_OPERAND (op, 2) != NULL_TREE)
12259 return NULL;
12260 break;
12262 default:;
12264 op = TREE_OPERAND (op, 0);
12267 return op;
12270 static GTY(()) tree gcc_eh_personality_decl;
12272 /* Return the GCC personality function decl. */
12274 tree
12275 lhd_gcc_personality (void)
12277 if (!gcc_eh_personality_decl)
12278 gcc_eh_personality_decl = build_personality_function ("gcc");
12279 return gcc_eh_personality_decl;
12282 /* TARGET is a call target of GIMPLE call statement
12283 (obtained by gimple_call_fn). Return true if it is
12284 OBJ_TYPE_REF representing an virtual call of C++ method.
12285 (As opposed to OBJ_TYPE_REF representing objc calls
12286 through a cast where middle-end devirtualization machinery
12287 can't apply.) */
12289 bool
12290 virtual_method_call_p (const_tree target)
12292 if (TREE_CODE (target) != OBJ_TYPE_REF)
12293 return false;
12294 tree t = TREE_TYPE (target);
12295 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12296 t = TREE_TYPE (t);
12297 if (TREE_CODE (t) == FUNCTION_TYPE)
12298 return false;
12299 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12300 /* If we do not have BINFO associated, it means that type was built
12301 without devirtualization enabled. Do not consider this a virtual
12302 call. */
12303 if (!TYPE_BINFO (obj_type_ref_class (target)))
12304 return false;
12305 return true;
12308 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12310 tree
12311 obj_type_ref_class (const_tree ref)
12313 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12314 ref = TREE_TYPE (ref);
12315 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12316 ref = TREE_TYPE (ref);
12317 /* We look for type THIS points to. ObjC also builds
12318 OBJ_TYPE_REF with non-method calls, Their first parameter
12319 ID however also corresponds to class type. */
12320 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12321 || TREE_CODE (ref) == FUNCTION_TYPE);
12322 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12323 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12324 return TREE_TYPE (ref);
12327 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12329 static tree
12330 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12332 unsigned int i;
12333 tree base_binfo, b;
12335 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12336 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12337 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12338 return base_binfo;
12339 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12340 return b;
12341 return NULL;
12344 /* Try to find a base info of BINFO that would have its field decl at offset
12345 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12346 found, return, otherwise return NULL_TREE. */
12348 tree
12349 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
12351 tree type = BINFO_TYPE (binfo);
12353 while (true)
12355 HOST_WIDE_INT pos, size;
12356 tree fld;
12357 int i;
12359 if (types_same_for_odr (type, expected_type))
12360 return binfo;
12361 if (maybe_lt (offset, 0))
12362 return NULL_TREE;
12364 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12366 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12367 continue;
12369 pos = int_bit_position (fld);
12370 size = tree_to_uhwi (DECL_SIZE (fld));
12371 if (known_in_range_p (offset, pos, size))
12372 break;
12374 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12375 return NULL_TREE;
12377 /* Offset 0 indicates the primary base, whose vtable contents are
12378 represented in the binfo for the derived class. */
12379 else if (maybe_ne (offset, 0))
12381 tree found_binfo = NULL, base_binfo;
12382 /* Offsets in BINFO are in bytes relative to the whole structure
12383 while POS is in bits relative to the containing field. */
12384 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12385 / BITS_PER_UNIT);
12387 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12388 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12389 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12391 found_binfo = base_binfo;
12392 break;
12394 if (found_binfo)
12395 binfo = found_binfo;
12396 else
12397 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12398 binfo_offset);
12401 type = TREE_TYPE (fld);
12402 offset -= pos;
12406 /* Returns true if X is a typedef decl. */
12408 bool
12409 is_typedef_decl (const_tree x)
12411 return (x && TREE_CODE (x) == TYPE_DECL
12412 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12415 /* Returns true iff TYPE is a type variant created for a typedef. */
12417 bool
12418 typedef_variant_p (const_tree type)
12420 return is_typedef_decl (TYPE_NAME (type));
12423 /* Warn about a use of an identifier which was marked deprecated. Returns
12424 whether a warning was given. */
12426 bool
12427 warn_deprecated_use (tree node, tree attr)
12429 const char *msg;
12431 if (node == 0 || !warn_deprecated_decl)
12432 return false;
12434 if (!attr)
12436 if (DECL_P (node))
12437 attr = DECL_ATTRIBUTES (node);
12438 else if (TYPE_P (node))
12440 tree decl = TYPE_STUB_DECL (node);
12441 if (decl)
12442 attr = lookup_attribute ("deprecated",
12443 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12447 if (attr)
12448 attr = lookup_attribute ("deprecated", attr);
12450 if (attr)
12451 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12452 else
12453 msg = NULL;
12455 bool w = false;
12456 if (DECL_P (node))
12458 if (msg)
12459 w = warning (OPT_Wdeprecated_declarations,
12460 "%qD is deprecated: %s", node, msg);
12461 else
12462 w = warning (OPT_Wdeprecated_declarations,
12463 "%qD is deprecated", node);
12464 if (w)
12465 inform (DECL_SOURCE_LOCATION (node), "declared here");
12467 else if (TYPE_P (node))
12469 tree what = NULL_TREE;
12470 tree decl = TYPE_STUB_DECL (node);
12472 if (TYPE_NAME (node))
12474 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12475 what = TYPE_NAME (node);
12476 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12477 && DECL_NAME (TYPE_NAME (node)))
12478 what = DECL_NAME (TYPE_NAME (node));
12481 if (what)
12483 if (msg)
12484 w = warning (OPT_Wdeprecated_declarations,
12485 "%qE is deprecated: %s", what, msg);
12486 else
12487 w = warning (OPT_Wdeprecated_declarations,
12488 "%qE is deprecated", what);
12490 else
12492 if (msg)
12493 w = warning (OPT_Wdeprecated_declarations,
12494 "type is deprecated: %s", msg);
12495 else
12496 w = warning (OPT_Wdeprecated_declarations,
12497 "type is deprecated");
12499 if (w && decl)
12500 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12503 return w;
12506 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12507 somewhere in it. */
12509 bool
12510 contains_bitfld_component_ref_p (const_tree ref)
12512 while (handled_component_p (ref))
12514 if (TREE_CODE (ref) == COMPONENT_REF
12515 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12516 return true;
12517 ref = TREE_OPERAND (ref, 0);
12520 return false;
12523 /* Try to determine whether a TRY_CATCH expression can fall through.
12524 This is a subroutine of block_may_fallthru. */
12526 static bool
12527 try_catch_may_fallthru (const_tree stmt)
12529 tree_stmt_iterator i;
12531 /* If the TRY block can fall through, the whole TRY_CATCH can
12532 fall through. */
12533 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12534 return true;
12536 i = tsi_start (TREE_OPERAND (stmt, 1));
12537 switch (TREE_CODE (tsi_stmt (i)))
12539 case CATCH_EXPR:
12540 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12541 catch expression and a body. The whole TRY_CATCH may fall
12542 through iff any of the catch bodies falls through. */
12543 for (; !tsi_end_p (i); tsi_next (&i))
12545 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12546 return true;
12548 return false;
12550 case EH_FILTER_EXPR:
12551 /* The exception filter expression only matters if there is an
12552 exception. If the exception does not match EH_FILTER_TYPES,
12553 we will execute EH_FILTER_FAILURE, and we will fall through
12554 if that falls through. If the exception does match
12555 EH_FILTER_TYPES, the stack unwinder will continue up the
12556 stack, so we will not fall through. We don't know whether we
12557 will throw an exception which matches EH_FILTER_TYPES or not,
12558 so we just ignore EH_FILTER_TYPES and assume that we might
12559 throw an exception which doesn't match. */
12560 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12562 default:
12563 /* This case represents statements to be executed when an
12564 exception occurs. Those statements are implicitly followed
12565 by a RESX statement to resume execution after the exception.
12566 So in this case the TRY_CATCH never falls through. */
12567 return false;
12571 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12572 need not be 100% accurate; simply be conservative and return true if we
12573 don't know. This is used only to avoid stupidly generating extra code.
12574 If we're wrong, we'll just delete the extra code later. */
12576 bool
12577 block_may_fallthru (const_tree block)
12579 /* This CONST_CAST is okay because expr_last returns its argument
12580 unmodified and we assign it to a const_tree. */
12581 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12583 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12585 case GOTO_EXPR:
12586 case RETURN_EXPR:
12587 /* Easy cases. If the last statement of the block implies
12588 control transfer, then we can't fall through. */
12589 return false;
12591 case SWITCH_EXPR:
12592 /* If there is a default: label or case labels cover all possible
12593 SWITCH_COND values, then the SWITCH_EXPR will transfer control
12594 to some case label in all cases and all we care is whether the
12595 SWITCH_BODY falls through. */
12596 if (SWITCH_ALL_CASES_P (stmt))
12597 return block_may_fallthru (SWITCH_BODY (stmt));
12598 return true;
12600 case COND_EXPR:
12601 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12602 return true;
12603 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12605 case BIND_EXPR:
12606 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12608 case TRY_CATCH_EXPR:
12609 return try_catch_may_fallthru (stmt);
12611 case TRY_FINALLY_EXPR:
12612 /* The finally clause is always executed after the try clause,
12613 so if it does not fall through, then the try-finally will not
12614 fall through. Otherwise, if the try clause does not fall
12615 through, then when the finally clause falls through it will
12616 resume execution wherever the try clause was going. So the
12617 whole try-finally will only fall through if both the try
12618 clause and the finally clause fall through. */
12619 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12620 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12622 case MODIFY_EXPR:
12623 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12624 stmt = TREE_OPERAND (stmt, 1);
12625 else
12626 return true;
12627 /* FALLTHRU */
12629 case CALL_EXPR:
12630 /* Functions that do not return do not fall through. */
12631 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12633 case CLEANUP_POINT_EXPR:
12634 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12636 case TARGET_EXPR:
12637 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12639 case ERROR_MARK:
12640 return true;
12642 default:
12643 return lang_hooks.block_may_fallthru (stmt);
12647 /* True if we are using EH to handle cleanups. */
12648 static bool using_eh_for_cleanups_flag = false;
12650 /* This routine is called from front ends to indicate eh should be used for
12651 cleanups. */
12652 void
12653 using_eh_for_cleanups (void)
12655 using_eh_for_cleanups_flag = true;
12658 /* Query whether EH is used for cleanups. */
12659 bool
12660 using_eh_for_cleanups_p (void)
12662 return using_eh_for_cleanups_flag;
12665 /* Wrapper for tree_code_name to ensure that tree code is valid */
12666 const char *
12667 get_tree_code_name (enum tree_code code)
12669 const char *invalid = "<invalid tree code>";
12671 if (code >= MAX_TREE_CODES)
12672 return invalid;
12674 return tree_code_name[code];
12677 /* Drops the TREE_OVERFLOW flag from T. */
12679 tree
12680 drop_tree_overflow (tree t)
12682 gcc_checking_assert (TREE_OVERFLOW (t));
12684 /* For tree codes with a sharing machinery re-build the result. */
12685 if (poly_int_tree_p (t))
12686 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
12688 /* For VECTOR_CST, remove the overflow bits from the encoded elements
12689 and canonicalize the result. */
12690 if (TREE_CODE (t) == VECTOR_CST)
12692 tree_vector_builder builder;
12693 builder.new_unary_operation (TREE_TYPE (t), t, true);
12694 unsigned int count = builder.encoded_nelts ();
12695 for (unsigned int i = 0; i < count; ++i)
12697 tree elt = VECTOR_CST_ELT (t, i);
12698 if (TREE_OVERFLOW (elt))
12699 elt = drop_tree_overflow (elt);
12700 builder.quick_push (elt);
12702 return builder.build ();
12705 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12706 and drop the flag. */
12707 t = copy_node (t);
12708 TREE_OVERFLOW (t) = 0;
12710 /* For constants that contain nested constants, drop the flag
12711 from those as well. */
12712 if (TREE_CODE (t) == COMPLEX_CST)
12714 if (TREE_OVERFLOW (TREE_REALPART (t)))
12715 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
12716 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
12717 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
12720 return t;
12723 /* Given a memory reference expression T, return its base address.
12724 The base address of a memory reference expression is the main
12725 object being referenced. For instance, the base address for
12726 'array[i].fld[j]' is 'array'. You can think of this as stripping
12727 away the offset part from a memory address.
12729 This function calls handled_component_p to strip away all the inner
12730 parts of the memory reference until it reaches the base object. */
12732 tree
12733 get_base_address (tree t)
12735 while (handled_component_p (t))
12736 t = TREE_OPERAND (t, 0);
12738 if ((TREE_CODE (t) == MEM_REF
12739 || TREE_CODE (t) == TARGET_MEM_REF)
12740 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12741 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12743 /* ??? Either the alias oracle or all callers need to properly deal
12744 with WITH_SIZE_EXPRs before we can look through those. */
12745 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12746 return NULL_TREE;
12748 return t;
12751 /* Return a tree of sizetype representing the size, in bytes, of the element
12752 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12754 tree
12755 array_ref_element_size (tree exp)
12757 tree aligned_size = TREE_OPERAND (exp, 3);
12758 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12759 location_t loc = EXPR_LOCATION (exp);
12761 /* If a size was specified in the ARRAY_REF, it's the size measured
12762 in alignment units of the element type. So multiply by that value. */
12763 if (aligned_size)
12765 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12766 sizetype from another type of the same width and signedness. */
12767 if (TREE_TYPE (aligned_size) != sizetype)
12768 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12769 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12770 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12773 /* Otherwise, take the size from that of the element type. Substitute
12774 any PLACEHOLDER_EXPR that we have. */
12775 else
12776 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12779 /* Return a tree representing the lower bound of the array mentioned in
12780 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12782 tree
12783 array_ref_low_bound (tree exp)
12785 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12787 /* If a lower bound is specified in EXP, use it. */
12788 if (TREE_OPERAND (exp, 2))
12789 return TREE_OPERAND (exp, 2);
12791 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12792 substituting for a PLACEHOLDER_EXPR as needed. */
12793 if (domain_type && TYPE_MIN_VALUE (domain_type))
12794 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12796 /* Otherwise, return a zero of the appropriate type. */
12797 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12800 /* Return a tree representing the upper bound of the array mentioned in
12801 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12803 tree
12804 array_ref_up_bound (tree exp)
12806 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12808 /* If there is a domain type and it has an upper bound, use it, substituting
12809 for a PLACEHOLDER_EXPR as needed. */
12810 if (domain_type && TYPE_MAX_VALUE (domain_type))
12811 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12813 /* Otherwise fail. */
12814 return NULL_TREE;
12817 /* Returns true if REF is an array reference or a component reference
12818 to an array at the end of a structure.
12819 If this is the case, the array may be allocated larger
12820 than its upper bound implies. */
12822 bool
12823 array_at_struct_end_p (tree ref)
12825 tree atype;
12827 if (TREE_CODE (ref) == ARRAY_REF
12828 || TREE_CODE (ref) == ARRAY_RANGE_REF)
12830 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
12831 ref = TREE_OPERAND (ref, 0);
12833 else if (TREE_CODE (ref) == COMPONENT_REF
12834 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
12835 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
12836 else
12837 return false;
12839 if (TREE_CODE (ref) == STRING_CST)
12840 return false;
12842 tree ref_to_array = ref;
12843 while (handled_component_p (ref))
12845 /* If the reference chain contains a component reference to a
12846 non-union type and there follows another field the reference
12847 is not at the end of a structure. */
12848 if (TREE_CODE (ref) == COMPONENT_REF)
12850 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12852 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12853 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12854 nextf = DECL_CHAIN (nextf);
12855 if (nextf)
12856 return false;
12859 /* If we have a multi-dimensional array we do not consider
12860 a non-innermost dimension as flex array if the whole
12861 multi-dimensional array is at struct end.
12862 Same for an array of aggregates with a trailing array
12863 member. */
12864 else if (TREE_CODE (ref) == ARRAY_REF)
12865 return false;
12866 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
12868 /* If we view an underlying object as sth else then what we
12869 gathered up to now is what we have to rely on. */
12870 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
12871 break;
12872 else
12873 gcc_unreachable ();
12875 ref = TREE_OPERAND (ref, 0);
12878 /* The array now is at struct end. Treat flexible arrays as
12879 always subject to extend, even into just padding constrained by
12880 an underlying decl. */
12881 if (! TYPE_SIZE (atype)
12882 || ! TYPE_DOMAIN (atype)
12883 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
12884 return true;
12886 if (TREE_CODE (ref) == MEM_REF
12887 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
12888 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
12890 /* If the reference is based on a declared entity, the size of the array
12891 is constrained by its given domain. (Do not trust commons PR/69368). */
12892 if (DECL_P (ref)
12893 && !(flag_unconstrained_commons
12894 && VAR_P (ref) && DECL_COMMON (ref))
12895 && DECL_SIZE_UNIT (ref)
12896 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
12898 /* Check whether the array domain covers all of the available
12899 padding. */
12900 poly_int64 offset;
12901 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
12902 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
12903 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
12904 return true;
12905 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
12906 return true;
12908 /* If at least one extra element fits it is a flexarray. */
12909 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
12910 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
12911 + 2)
12912 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
12913 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
12914 return true;
12916 return false;
12919 return true;
12922 /* Return a tree representing the offset, in bytes, of the field referenced
12923 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12925 tree
12926 component_ref_field_offset (tree exp)
12928 tree aligned_offset = TREE_OPERAND (exp, 2);
12929 tree field = TREE_OPERAND (exp, 1);
12930 location_t loc = EXPR_LOCATION (exp);
12932 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12933 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12934 value. */
12935 if (aligned_offset)
12937 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12938 sizetype from another type of the same width and signedness. */
12939 if (TREE_TYPE (aligned_offset) != sizetype)
12940 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
12941 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
12942 size_int (DECL_OFFSET_ALIGN (field)
12943 / BITS_PER_UNIT));
12946 /* Otherwise, take the offset from that of the field. Substitute
12947 any PLACEHOLDER_EXPR that we have. */
12948 else
12949 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
12952 /* Return the machine mode of T. For vectors, returns the mode of the
12953 inner type. The main use case is to feed the result to HONOR_NANS,
12954 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12956 machine_mode
12957 element_mode (const_tree t)
12959 if (!TYPE_P (t))
12960 t = TREE_TYPE (t);
12961 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
12962 t = TREE_TYPE (t);
12963 return TYPE_MODE (t);
12966 /* Vector types need to re-check the target flags each time we report
12967 the machine mode. We need to do this because attribute target can
12968 change the result of vector_mode_supported_p and have_regs_of_mode
12969 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
12970 change on a per-function basis. */
12971 /* ??? Possibly a better solution is to run through all the types
12972 referenced by a function and re-compute the TYPE_MODE once, rather
12973 than make the TYPE_MODE macro call a function. */
12975 machine_mode
12976 vector_type_mode (const_tree t)
12978 machine_mode mode;
12980 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
12982 mode = t->type_common.mode;
12983 if (VECTOR_MODE_P (mode)
12984 && (!targetm.vector_mode_supported_p (mode)
12985 || !have_regs_of_mode[mode]))
12987 scalar_int_mode innermode;
12989 /* For integers, try mapping it to a same-sized scalar mode. */
12990 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
12992 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
12993 * GET_MODE_BITSIZE (innermode));
12994 scalar_int_mode mode;
12995 if (int_mode_for_size (size, 0).exists (&mode)
12996 && have_regs_of_mode[mode])
12997 return mode;
13000 return BLKmode;
13003 return mode;
13006 /* Verify that basic properties of T match TV and thus T can be a variant of
13007 TV. TV should be the more specified variant (i.e. the main variant). */
13009 static bool
13010 verify_type_variant (const_tree t, tree tv)
13012 /* Type variant can differ by:
13014 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13015 ENCODE_QUAL_ADDR_SPACE.
13016 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13017 in this case some values may not be set in the variant types
13018 (see TYPE_COMPLETE_P checks).
13019 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13020 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13021 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13022 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13023 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13024 this is necessary to make it possible to merge types form different TUs
13025 - arrays, pointers and references may have TREE_TYPE that is a variant
13026 of TREE_TYPE of their main variants.
13027 - aggregates may have new TYPE_FIELDS list that list variants of
13028 the main variant TYPE_FIELDS.
13029 - vector types may differ by TYPE_VECTOR_OPAQUE
13032 /* Convenience macro for matching individual fields. */
13033 #define verify_variant_match(flag) \
13034 do { \
13035 if (flag (tv) != flag (t)) \
13037 error ("type variant differs by %s", #flag); \
13038 debug_tree (tv); \
13039 return false; \
13041 } while (false)
13043 /* tree_base checks. */
13045 verify_variant_match (TREE_CODE);
13046 /* FIXME: Ada builds non-artificial variants of artificial types. */
13047 if (TYPE_ARTIFICIAL (tv) && 0)
13048 verify_variant_match (TYPE_ARTIFICIAL);
13049 if (POINTER_TYPE_P (tv))
13050 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13051 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13052 verify_variant_match (TYPE_UNSIGNED);
13053 verify_variant_match (TYPE_PACKED);
13054 if (TREE_CODE (t) == REFERENCE_TYPE)
13055 verify_variant_match (TYPE_REF_IS_RVALUE);
13056 if (AGGREGATE_TYPE_P (t))
13057 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13058 else
13059 verify_variant_match (TYPE_SATURATING);
13060 /* FIXME: This check trigger during libstdc++ build. */
13061 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13062 verify_variant_match (TYPE_FINAL_P);
13064 /* tree_type_common checks. */
13066 if (COMPLETE_TYPE_P (t))
13068 verify_variant_match (TYPE_MODE);
13069 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
13070 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
13071 verify_variant_match (TYPE_SIZE);
13072 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
13073 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
13074 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
13076 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
13077 TYPE_SIZE_UNIT (tv), 0));
13078 error ("type variant has different TYPE_SIZE_UNIT");
13079 debug_tree (tv);
13080 error ("type variant's TYPE_SIZE_UNIT");
13081 debug_tree (TYPE_SIZE_UNIT (tv));
13082 error ("type's TYPE_SIZE_UNIT");
13083 debug_tree (TYPE_SIZE_UNIT (t));
13084 return false;
13087 verify_variant_match (TYPE_PRECISION);
13088 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
13089 if (RECORD_OR_UNION_TYPE_P (t))
13090 verify_variant_match (TYPE_TRANSPARENT_AGGR);
13091 else if (TREE_CODE (t) == ARRAY_TYPE)
13092 verify_variant_match (TYPE_NONALIASED_COMPONENT);
13093 /* During LTO we merge variant lists from diferent translation units
13094 that may differ BY TYPE_CONTEXT that in turn may point
13095 to TRANSLATION_UNIT_DECL.
13096 Ada also builds variants of types with different TYPE_CONTEXT. */
13097 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
13098 verify_variant_match (TYPE_CONTEXT);
13099 verify_variant_match (TYPE_STRING_FLAG);
13100 if (TYPE_ALIAS_SET_KNOWN_P (t))
13102 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
13103 debug_tree (tv);
13104 return false;
13107 /* tree_type_non_common checks. */
13109 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13110 and dangle the pointer from time to time. */
13111 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
13112 && (in_lto_p || !TYPE_VFIELD (tv)
13113 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
13115 error ("type variant has different TYPE_VFIELD");
13116 debug_tree (tv);
13117 return false;
13119 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
13120 || TREE_CODE (t) == INTEGER_TYPE
13121 || TREE_CODE (t) == BOOLEAN_TYPE
13122 || TREE_CODE (t) == REAL_TYPE
13123 || TREE_CODE (t) == FIXED_POINT_TYPE)
13125 verify_variant_match (TYPE_MAX_VALUE);
13126 verify_variant_match (TYPE_MIN_VALUE);
13128 if (TREE_CODE (t) == METHOD_TYPE)
13129 verify_variant_match (TYPE_METHOD_BASETYPE);
13130 if (TREE_CODE (t) == OFFSET_TYPE)
13131 verify_variant_match (TYPE_OFFSET_BASETYPE);
13132 if (TREE_CODE (t) == ARRAY_TYPE)
13133 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
13134 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
13135 or even type's main variant. This is needed to make bootstrap pass
13136 and the bug seems new in GCC 5.
13137 C++ FE should be updated to make this consistent and we should check
13138 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
13139 is a match with main variant.
13141 Also disable the check for Java for now because of parser hack that builds
13142 first an dummy BINFO and then sometimes replace it by real BINFO in some
13143 of the copies. */
13144 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
13145 && TYPE_BINFO (t) != TYPE_BINFO (tv)
13146 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
13147 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
13148 at LTO time only. */
13149 && (in_lto_p && odr_type_p (t)))
13151 error ("type variant has different TYPE_BINFO");
13152 debug_tree (tv);
13153 error ("type variant's TYPE_BINFO");
13154 debug_tree (TYPE_BINFO (tv));
13155 error ("type's TYPE_BINFO");
13156 debug_tree (TYPE_BINFO (t));
13157 return false;
13160 /* Check various uses of TYPE_VALUES_RAW. */
13161 if (TREE_CODE (t) == ENUMERAL_TYPE)
13162 verify_variant_match (TYPE_VALUES);
13163 else if (TREE_CODE (t) == ARRAY_TYPE)
13164 verify_variant_match (TYPE_DOMAIN);
13165 /* Permit incomplete variants of complete type. While FEs may complete
13166 all variants, this does not happen for C++ templates in all cases. */
13167 else if (RECORD_OR_UNION_TYPE_P (t)
13168 && COMPLETE_TYPE_P (t)
13169 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
13171 tree f1, f2;
13173 /* Fortran builds qualified variants as new records with items of
13174 qualified type. Verify that they looks same. */
13175 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
13176 f1 && f2;
13177 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13178 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
13179 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
13180 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
13181 /* FIXME: gfc_nonrestricted_type builds all types as variants
13182 with exception of pointer types. It deeply copies the type
13183 which means that we may end up with a variant type
13184 referring non-variant pointer. We may change it to
13185 produce types as variants, too, like
13186 objc_get_protocol_qualified_type does. */
13187 && !POINTER_TYPE_P (TREE_TYPE (f1)))
13188 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
13189 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
13190 break;
13191 if (f1 || f2)
13193 error ("type variant has different TYPE_FIELDS");
13194 debug_tree (tv);
13195 error ("first mismatch is field");
13196 debug_tree (f1);
13197 error ("and field");
13198 debug_tree (f2);
13199 return false;
13202 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
13203 verify_variant_match (TYPE_ARG_TYPES);
13204 /* For C++ the qualified variant of array type is really an array type
13205 of qualified TREE_TYPE.
13206 objc builds variants of pointer where pointer to type is a variant, too
13207 in objc_get_protocol_qualified_type. */
13208 if (TREE_TYPE (t) != TREE_TYPE (tv)
13209 && ((TREE_CODE (t) != ARRAY_TYPE
13210 && !POINTER_TYPE_P (t))
13211 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
13212 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13214 error ("type variant has different TREE_TYPE");
13215 debug_tree (tv);
13216 error ("type variant's TREE_TYPE");
13217 debug_tree (TREE_TYPE (tv));
13218 error ("type's TREE_TYPE");
13219 debug_tree (TREE_TYPE (t));
13220 return false;
13222 if (type_with_alias_set_p (t)
13223 && !gimple_canonical_types_compatible_p (t, tv, false))
13225 error ("type is not compatible with its variant");
13226 debug_tree (tv);
13227 error ("type variant's TREE_TYPE");
13228 debug_tree (TREE_TYPE (tv));
13229 error ("type's TREE_TYPE");
13230 debug_tree (TREE_TYPE (t));
13231 return false;
13233 return true;
13234 #undef verify_variant_match
13238 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13239 the middle-end types_compatible_p function. It needs to avoid
13240 claiming types are different for types that should be treated
13241 the same with respect to TBAA. Canonical types are also used
13242 for IL consistency checks via the useless_type_conversion_p
13243 predicate which does not handle all type kinds itself but falls
13244 back to pointer-comparison of TYPE_CANONICAL for aggregates
13245 for example. */
13247 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13248 type calculation because we need to allow inter-operability between signed
13249 and unsigned variants. */
13251 bool
13252 type_with_interoperable_signedness (const_tree type)
13254 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13255 signed char and unsigned char. Similarly fortran FE builds
13256 C_SIZE_T as signed type, while C defines it unsigned. */
13258 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13259 == INTEGER_TYPE
13260 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13261 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13264 /* Return true iff T1 and T2 are structurally identical for what
13265 TBAA is concerned.
13266 This function is used both by lto.c canonical type merging and by the
13267 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13268 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13269 only for LTO because only in these cases TYPE_CANONICAL equivalence
13270 correspond to one defined by gimple_canonical_types_compatible_p. */
13272 bool
13273 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13274 bool trust_type_canonical)
13276 /* Type variants should be same as the main variant. When not doing sanity
13277 checking to verify this fact, go to main variants and save some work. */
13278 if (trust_type_canonical)
13280 t1 = TYPE_MAIN_VARIANT (t1);
13281 t2 = TYPE_MAIN_VARIANT (t2);
13284 /* Check first for the obvious case of pointer identity. */
13285 if (t1 == t2)
13286 return true;
13288 /* Check that we have two types to compare. */
13289 if (t1 == NULL_TREE || t2 == NULL_TREE)
13290 return false;
13292 /* We consider complete types always compatible with incomplete type.
13293 This does not make sense for canonical type calculation and thus we
13294 need to ensure that we are never called on it.
13296 FIXME: For more correctness the function probably should have three modes
13297 1) mode assuming that types are complete mathcing their structure
13298 2) mode allowing incomplete types but producing equivalence classes
13299 and thus ignoring all info from complete types
13300 3) mode allowing incomplete types to match complete but checking
13301 compatibility between complete types.
13303 1 and 2 can be used for canonical type calculation. 3 is the real
13304 definition of type compatibility that can be used i.e. for warnings during
13305 declaration merging. */
13307 gcc_assert (!trust_type_canonical
13308 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13309 /* If the types have been previously registered and found equal
13310 they still are. */
13312 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13313 && trust_type_canonical)
13315 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13316 they are always NULL, but they are set to non-NULL for types
13317 constructed by build_pointer_type and variants. In this case the
13318 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13319 all pointers are considered equal. Be sure to not return false
13320 negatives. */
13321 gcc_checking_assert (canonical_type_used_p (t1)
13322 && canonical_type_used_p (t2));
13323 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13326 /* Can't be the same type if the types don't have the same code. */
13327 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13328 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13329 return false;
13331 /* Qualifiers do not matter for canonical type comparison purposes. */
13333 /* Void types and nullptr types are always the same. */
13334 if (TREE_CODE (t1) == VOID_TYPE
13335 || TREE_CODE (t1) == NULLPTR_TYPE)
13336 return true;
13338 /* Can't be the same type if they have different mode. */
13339 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13340 return false;
13342 /* Non-aggregate types can be handled cheaply. */
13343 if (INTEGRAL_TYPE_P (t1)
13344 || SCALAR_FLOAT_TYPE_P (t1)
13345 || FIXED_POINT_TYPE_P (t1)
13346 || TREE_CODE (t1) == VECTOR_TYPE
13347 || TREE_CODE (t1) == COMPLEX_TYPE
13348 || TREE_CODE (t1) == OFFSET_TYPE
13349 || POINTER_TYPE_P (t1))
13351 /* Can't be the same type if they have different recision. */
13352 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13353 return false;
13355 /* In some cases the signed and unsigned types are required to be
13356 inter-operable. */
13357 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13358 && !type_with_interoperable_signedness (t1))
13359 return false;
13361 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13362 interoperable with "signed char". Unless all frontends are revisited
13363 to agree on these types, we must ignore the flag completely. */
13365 /* Fortran standard define C_PTR type that is compatible with every
13366 C pointer. For this reason we need to glob all pointers into one.
13367 Still pointers in different address spaces are not compatible. */
13368 if (POINTER_TYPE_P (t1))
13370 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13371 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13372 return false;
13375 /* Tail-recurse to components. */
13376 if (TREE_CODE (t1) == VECTOR_TYPE
13377 || TREE_CODE (t1) == COMPLEX_TYPE)
13378 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13379 TREE_TYPE (t2),
13380 trust_type_canonical);
13382 return true;
13385 /* Do type-specific comparisons. */
13386 switch (TREE_CODE (t1))
13388 case ARRAY_TYPE:
13389 /* Array types are the same if the element types are the same and
13390 the number of elements are the same. */
13391 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13392 trust_type_canonical)
13393 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13394 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13395 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13396 return false;
13397 else
13399 tree i1 = TYPE_DOMAIN (t1);
13400 tree i2 = TYPE_DOMAIN (t2);
13402 /* For an incomplete external array, the type domain can be
13403 NULL_TREE. Check this condition also. */
13404 if (i1 == NULL_TREE && i2 == NULL_TREE)
13405 return true;
13406 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13407 return false;
13408 else
13410 tree min1 = TYPE_MIN_VALUE (i1);
13411 tree min2 = TYPE_MIN_VALUE (i2);
13412 tree max1 = TYPE_MAX_VALUE (i1);
13413 tree max2 = TYPE_MAX_VALUE (i2);
13415 /* The minimum/maximum values have to be the same. */
13416 if ((min1 == min2
13417 || (min1 && min2
13418 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13419 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13420 || operand_equal_p (min1, min2, 0))))
13421 && (max1 == max2
13422 || (max1 && max2
13423 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13424 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13425 || operand_equal_p (max1, max2, 0)))))
13426 return true;
13427 else
13428 return false;
13432 case METHOD_TYPE:
13433 case FUNCTION_TYPE:
13434 /* Function types are the same if the return type and arguments types
13435 are the same. */
13436 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13437 trust_type_canonical))
13438 return false;
13440 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13441 return true;
13442 else
13444 tree parms1, parms2;
13446 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13447 parms1 && parms2;
13448 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13450 if (!gimple_canonical_types_compatible_p
13451 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13452 trust_type_canonical))
13453 return false;
13456 if (parms1 || parms2)
13457 return false;
13459 return true;
13462 case RECORD_TYPE:
13463 case UNION_TYPE:
13464 case QUAL_UNION_TYPE:
13466 tree f1, f2;
13468 /* Don't try to compare variants of an incomplete type, before
13469 TYPE_FIELDS has been copied around. */
13470 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
13471 return true;
13474 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
13475 return false;
13477 /* For aggregate types, all the fields must be the same. */
13478 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13479 f1 || f2;
13480 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13482 /* Skip non-fields and zero-sized fields. */
13483 while (f1 && (TREE_CODE (f1) != FIELD_DECL
13484 || (DECL_SIZE (f1)
13485 && integer_zerop (DECL_SIZE (f1)))))
13486 f1 = TREE_CHAIN (f1);
13487 while (f2 && (TREE_CODE (f2) != FIELD_DECL
13488 || (DECL_SIZE (f2)
13489 && integer_zerop (DECL_SIZE (f2)))))
13490 f2 = TREE_CHAIN (f2);
13491 if (!f1 || !f2)
13492 break;
13493 /* The fields must have the same name, offset and type. */
13494 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13495 || !gimple_compare_field_offset (f1, f2)
13496 || !gimple_canonical_types_compatible_p
13497 (TREE_TYPE (f1), TREE_TYPE (f2),
13498 trust_type_canonical))
13499 return false;
13502 /* If one aggregate has more fields than the other, they
13503 are not the same. */
13504 if (f1 || f2)
13505 return false;
13507 return true;
13510 default:
13511 /* Consider all types with language specific trees in them mutually
13512 compatible. This is executed only from verify_type and false
13513 positives can be tolerated. */
13514 gcc_assert (!in_lto_p);
13515 return true;
13519 /* Verify type T. */
13521 void
13522 verify_type (const_tree t)
13524 bool error_found = false;
13525 tree mv = TYPE_MAIN_VARIANT (t);
13526 if (!mv)
13528 error ("Main variant is not defined");
13529 error_found = true;
13531 else if (mv != TYPE_MAIN_VARIANT (mv))
13533 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13534 debug_tree (mv);
13535 error_found = true;
13537 else if (t != mv && !verify_type_variant (t, mv))
13538 error_found = true;
13540 tree ct = TYPE_CANONICAL (t);
13541 if (!ct)
13543 else if (TYPE_CANONICAL (t) != ct)
13545 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13546 debug_tree (ct);
13547 error_found = true;
13549 /* Method and function types can not be used to address memory and thus
13550 TYPE_CANONICAL really matters only for determining useless conversions.
13552 FIXME: C++ FE produce declarations of builtin functions that are not
13553 compatible with main variants. */
13554 else if (TREE_CODE (t) == FUNCTION_TYPE)
13556 else if (t != ct
13557 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13558 with variably sized arrays because their sizes possibly
13559 gimplified to different variables. */
13560 && !variably_modified_type_p (ct, NULL)
13561 && !gimple_canonical_types_compatible_p (t, ct, false))
13563 error ("TYPE_CANONICAL is not compatible");
13564 debug_tree (ct);
13565 error_found = true;
13568 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
13569 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
13571 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13572 debug_tree (ct);
13573 error_found = true;
13575 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
13577 error ("TYPE_CANONICAL of main variant is not main variant");
13578 debug_tree (ct);
13579 debug_tree (TYPE_MAIN_VARIANT (ct));
13580 error_found = true;
13584 /* Check various uses of TYPE_MIN_VALUE_RAW. */
13585 if (RECORD_OR_UNION_TYPE_P (t))
13587 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13588 and danagle the pointer from time to time. */
13589 if (TYPE_VFIELD (t)
13590 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13591 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13593 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13594 debug_tree (TYPE_VFIELD (t));
13595 error_found = true;
13598 else if (TREE_CODE (t) == POINTER_TYPE)
13600 if (TYPE_NEXT_PTR_TO (t)
13601 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13603 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13604 debug_tree (TYPE_NEXT_PTR_TO (t));
13605 error_found = true;
13608 else if (TREE_CODE (t) == REFERENCE_TYPE)
13610 if (TYPE_NEXT_REF_TO (t)
13611 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13613 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13614 debug_tree (TYPE_NEXT_REF_TO (t));
13615 error_found = true;
13618 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13619 || TREE_CODE (t) == FIXED_POINT_TYPE)
13621 /* FIXME: The following check should pass:
13622 useless_type_conversion_p (const_cast <tree> (t),
13623 TREE_TYPE (TYPE_MIN_VALUE (t))
13624 but does not for C sizetypes in LTO. */
13627 /* Check various uses of TYPE_MAXVAL_RAW. */
13628 if (RECORD_OR_UNION_TYPE_P (t))
13630 if (!TYPE_BINFO (t))
13632 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13634 error ("TYPE_BINFO is not TREE_BINFO");
13635 debug_tree (TYPE_BINFO (t));
13636 error_found = true;
13638 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
13640 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13641 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13642 error_found = true;
13645 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13647 if (TYPE_METHOD_BASETYPE (t)
13648 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13649 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13651 error ("TYPE_METHOD_BASETYPE is not record nor union");
13652 debug_tree (TYPE_METHOD_BASETYPE (t));
13653 error_found = true;
13656 else if (TREE_CODE (t) == OFFSET_TYPE)
13658 if (TYPE_OFFSET_BASETYPE (t)
13659 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13660 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13662 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13663 debug_tree (TYPE_OFFSET_BASETYPE (t));
13664 error_found = true;
13667 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13668 || TREE_CODE (t) == FIXED_POINT_TYPE)
13670 /* FIXME: The following check should pass:
13671 useless_type_conversion_p (const_cast <tree> (t),
13672 TREE_TYPE (TYPE_MAX_VALUE (t))
13673 but does not for C sizetypes in LTO. */
13675 else if (TREE_CODE (t) == ARRAY_TYPE)
13677 if (TYPE_ARRAY_MAX_SIZE (t)
13678 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13680 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13681 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13682 error_found = true;
13685 else if (TYPE_MAX_VALUE_RAW (t))
13687 error ("TYPE_MAX_VALUE_RAW non-NULL");
13688 debug_tree (TYPE_MAX_VALUE_RAW (t));
13689 error_found = true;
13692 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13694 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13695 debug_tree (TYPE_LANG_SLOT_1 (t));
13696 error_found = true;
13699 /* Check various uses of TYPE_VALUES_RAW. */
13700 if (TREE_CODE (t) == ENUMERAL_TYPE)
13701 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13703 tree value = TREE_VALUE (l);
13704 tree name = TREE_PURPOSE (l);
13706 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13707 CONST_DECL of ENUMERAL TYPE. */
13708 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13710 error ("Enum value is not CONST_DECL or INTEGER_CST");
13711 debug_tree (value);
13712 debug_tree (name);
13713 error_found = true;
13715 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13716 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13718 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13719 debug_tree (value);
13720 debug_tree (name);
13721 error_found = true;
13723 if (TREE_CODE (name) != IDENTIFIER_NODE)
13725 error ("Enum value name is not IDENTIFIER_NODE");
13726 debug_tree (value);
13727 debug_tree (name);
13728 error_found = true;
13731 else if (TREE_CODE (t) == ARRAY_TYPE)
13733 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13735 error ("Array TYPE_DOMAIN is not integer type");
13736 debug_tree (TYPE_DOMAIN (t));
13737 error_found = true;
13740 else if (RECORD_OR_UNION_TYPE_P (t))
13742 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
13744 error ("TYPE_FIELDS defined in incomplete type");
13745 error_found = true;
13747 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13749 /* TODO: verify properties of decls. */
13750 if (TREE_CODE (fld) == FIELD_DECL)
13752 else if (TREE_CODE (fld) == TYPE_DECL)
13754 else if (TREE_CODE (fld) == CONST_DECL)
13756 else if (VAR_P (fld))
13758 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13760 else if (TREE_CODE (fld) == USING_DECL)
13762 else if (TREE_CODE (fld) == FUNCTION_DECL)
13764 else
13766 error ("Wrong tree in TYPE_FIELDS list");
13767 debug_tree (fld);
13768 error_found = true;
13772 else if (TREE_CODE (t) == INTEGER_TYPE
13773 || TREE_CODE (t) == BOOLEAN_TYPE
13774 || TREE_CODE (t) == OFFSET_TYPE
13775 || TREE_CODE (t) == REFERENCE_TYPE
13776 || TREE_CODE (t) == NULLPTR_TYPE
13777 || TREE_CODE (t) == POINTER_TYPE)
13779 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13781 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13782 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13783 error_found = true;
13785 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13787 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13788 debug_tree (TYPE_CACHED_VALUES (t));
13789 error_found = true;
13791 /* Verify just enough of cache to ensure that no one copied it to new type.
13792 All copying should go by copy_node that should clear it. */
13793 else if (TYPE_CACHED_VALUES_P (t))
13795 int i;
13796 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13797 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13798 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13800 error ("wrong TYPE_CACHED_VALUES entry");
13801 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13802 error_found = true;
13803 break;
13807 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13808 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13810 /* C++ FE uses TREE_PURPOSE to store initial values. */
13811 if (TREE_PURPOSE (l) && in_lto_p)
13813 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13814 debug_tree (l);
13815 error_found = true;
13817 if (!TYPE_P (TREE_VALUE (l)))
13819 error ("Wrong entry in TYPE_ARG_TYPES list");
13820 debug_tree (l);
13821 error_found = true;
13824 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13826 error ("TYPE_VALUES_RAW field is non-NULL");
13827 debug_tree (TYPE_VALUES_RAW (t));
13828 error_found = true;
13830 if (TREE_CODE (t) != INTEGER_TYPE
13831 && TREE_CODE (t) != BOOLEAN_TYPE
13832 && TREE_CODE (t) != OFFSET_TYPE
13833 && TREE_CODE (t) != REFERENCE_TYPE
13834 && TREE_CODE (t) != NULLPTR_TYPE
13835 && TREE_CODE (t) != POINTER_TYPE
13836 && TYPE_CACHED_VALUES_P (t))
13838 error ("TYPE_CACHED_VALUES_P is set while it should not");
13839 error_found = true;
13841 if (TYPE_STRING_FLAG (t)
13842 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13844 error ("TYPE_STRING_FLAG is set on wrong type code");
13845 error_found = true;
13848 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13849 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13850 of a type. */
13851 if (TREE_CODE (t) == METHOD_TYPE
13852 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13854 error ("TYPE_METHOD_BASETYPE is not main variant");
13855 error_found = true;
13858 if (error_found)
13860 debug_tree (const_cast <tree> (t));
13861 internal_error ("verify_type failed");
13866 /* Return 1 if ARG interpreted as signed in its precision is known to be
13867 always positive or 2 if ARG is known to be always negative, or 3 if
13868 ARG may be positive or negative. */
13871 get_range_pos_neg (tree arg)
13873 if (arg == error_mark_node)
13874 return 3;
13876 int prec = TYPE_PRECISION (TREE_TYPE (arg));
13877 int cnt = 0;
13878 if (TREE_CODE (arg) == INTEGER_CST)
13880 wide_int w = wi::sext (wi::to_wide (arg), prec);
13881 if (wi::neg_p (w))
13882 return 2;
13883 else
13884 return 1;
13886 while (CONVERT_EXPR_P (arg)
13887 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
13888 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
13890 arg = TREE_OPERAND (arg, 0);
13891 /* Narrower value zero extended into wider type
13892 will always result in positive values. */
13893 if (TYPE_UNSIGNED (TREE_TYPE (arg))
13894 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
13895 return 1;
13896 prec = TYPE_PRECISION (TREE_TYPE (arg));
13897 if (++cnt > 30)
13898 return 3;
13901 if (TREE_CODE (arg) != SSA_NAME)
13902 return 3;
13903 wide_int arg_min, arg_max;
13904 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
13906 gimple *g = SSA_NAME_DEF_STMT (arg);
13907 if (is_gimple_assign (g)
13908 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
13910 tree t = gimple_assign_rhs1 (g);
13911 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
13912 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
13914 if (TYPE_UNSIGNED (TREE_TYPE (t))
13915 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
13916 return 1;
13917 prec = TYPE_PRECISION (TREE_TYPE (t));
13918 arg = t;
13919 if (++cnt > 30)
13920 return 3;
13921 continue;
13924 return 3;
13926 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
13928 /* For unsigned values, the "positive" range comes
13929 below the "negative" range. */
13930 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13931 return 1;
13932 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13933 return 2;
13935 else
13937 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13938 return 1;
13939 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13940 return 2;
13942 return 3;
13948 /* Return true if ARG is marked with the nonnull attribute in the
13949 current function signature. */
13951 bool
13952 nonnull_arg_p (const_tree arg)
13954 tree t, attrs, fntype;
13955 unsigned HOST_WIDE_INT arg_num;
13957 gcc_assert (TREE_CODE (arg) == PARM_DECL
13958 && (POINTER_TYPE_P (TREE_TYPE (arg))
13959 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
13961 /* The static chain decl is always non null. */
13962 if (arg == cfun->static_chain_decl)
13963 return true;
13965 /* THIS argument of method is always non-NULL. */
13966 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
13967 && arg == DECL_ARGUMENTS (cfun->decl)
13968 && flag_delete_null_pointer_checks)
13969 return true;
13971 /* Values passed by reference are always non-NULL. */
13972 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
13973 && flag_delete_null_pointer_checks)
13974 return true;
13976 fntype = TREE_TYPE (cfun->decl);
13977 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
13979 attrs = lookup_attribute ("nonnull", attrs);
13981 /* If "nonnull" wasn't specified, we know nothing about the argument. */
13982 if (attrs == NULL_TREE)
13983 return false;
13985 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
13986 if (TREE_VALUE (attrs) == NULL_TREE)
13987 return true;
13989 /* Get the position number for ARG in the function signature. */
13990 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
13992 t = DECL_CHAIN (t), arg_num++)
13994 if (t == arg)
13995 break;
13998 gcc_assert (t == arg);
14000 /* Now see if ARG_NUM is mentioned in the nonnull list. */
14001 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
14003 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
14004 return true;
14008 return false;
14011 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14012 information. */
14014 location_t
14015 set_block (location_t loc, tree block)
14017 location_t pure_loc = get_pure_location (loc);
14018 source_range src_range = get_range_from_loc (line_table, loc);
14019 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14022 location_t
14023 set_source_range (tree expr, location_t start, location_t finish)
14025 source_range src_range;
14026 src_range.m_start = start;
14027 src_range.m_finish = finish;
14028 return set_source_range (expr, src_range);
14031 location_t
14032 set_source_range (tree expr, source_range src_range)
14034 if (!EXPR_P (expr))
14035 return UNKNOWN_LOCATION;
14037 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14038 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14039 pure_loc,
14040 src_range,
14041 NULL);
14042 SET_EXPR_LOCATION (expr, adhoc);
14043 return adhoc;
14046 /* Return EXPR, potentially wrapped with a node expression LOC,
14047 if !CAN_HAVE_LOCATION_P (expr).
14049 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
14050 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
14052 Wrapper nodes can be identified using location_wrapper_p. */
14054 tree
14055 maybe_wrap_with_location (tree expr, location_t loc)
14057 if (expr == NULL)
14058 return NULL;
14059 if (loc == UNKNOWN_LOCATION)
14060 return expr;
14061 if (CAN_HAVE_LOCATION_P (expr))
14062 return expr;
14063 /* We should only be adding wrappers for constants and for decls,
14064 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
14065 gcc_assert (CONSTANT_CLASS_P (expr)
14066 || DECL_P (expr)
14067 || EXCEPTIONAL_CLASS_P (expr));
14069 /* For now, don't add wrappers to exceptional tree nodes, to minimize
14070 any impact of the wrapper nodes. */
14071 if (EXCEPTIONAL_CLASS_P (expr))
14072 return expr;
14074 tree_code code
14075 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
14076 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
14077 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
14078 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
14079 /* Mark this node as being a wrapper. */
14080 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
14081 return wrapper;
14084 /* Return the name of combined function FN, for debugging purposes. */
14086 const char *
14087 combined_fn_name (combined_fn fn)
14089 if (builtin_fn_p (fn))
14091 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
14092 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
14094 else
14095 return internal_fn_name (as_internal_fn (fn));
14098 /* Return a bitmap with a bit set corresponding to each argument in
14099 a function call type FNTYPE declared with attribute nonnull,
14100 or null if none of the function's argument are nonnull. The caller
14101 must free the bitmap. */
14103 bitmap
14104 get_nonnull_args (const_tree fntype)
14106 if (fntype == NULL_TREE)
14107 return NULL;
14109 tree attrs = TYPE_ATTRIBUTES (fntype);
14110 if (!attrs)
14111 return NULL;
14113 bitmap argmap = NULL;
14115 /* A function declaration can specify multiple attribute nonnull,
14116 each with zero or more arguments. The loop below creates a bitmap
14117 representing a union of all the arguments. An empty (but non-null)
14118 bitmap means that all arguments have been declaraed nonnull. */
14119 for ( ; attrs; attrs = TREE_CHAIN (attrs))
14121 attrs = lookup_attribute ("nonnull", attrs);
14122 if (!attrs)
14123 break;
14125 if (!argmap)
14126 argmap = BITMAP_ALLOC (NULL);
14128 if (!TREE_VALUE (attrs))
14130 /* Clear the bitmap in case a previous attribute nonnull
14131 set it and this one overrides it for all arguments. */
14132 bitmap_clear (argmap);
14133 return argmap;
14136 /* Iterate over the indices of the format arguments declared nonnull
14137 and set a bit for each. */
14138 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
14140 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
14141 bitmap_set_bit (argmap, val);
14145 return argmap;
14148 /* Returns true if TYPE is a type where it and all of its subobjects
14149 (recursively) are of structure, union, or array type. */
14151 static bool
14152 default_is_empty_type (tree type)
14154 if (RECORD_OR_UNION_TYPE_P (type))
14156 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
14157 if (TREE_CODE (field) == FIELD_DECL
14158 && !DECL_PADDING_P (field)
14159 && !default_is_empty_type (TREE_TYPE (field)))
14160 return false;
14161 return true;
14163 else if (TREE_CODE (type) == ARRAY_TYPE)
14164 return (integer_minus_onep (array_type_nelts (type))
14165 || TYPE_DOMAIN (type) == NULL_TREE
14166 || default_is_empty_type (TREE_TYPE (type)));
14167 return false;
14170 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
14171 that shouldn't be passed via stack. */
14173 bool
14174 default_is_empty_record (const_tree type)
14176 if (!abi_version_at_least (12))
14177 return false;
14179 if (type == error_mark_node)
14180 return false;
14182 if (TREE_ADDRESSABLE (type))
14183 return false;
14185 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
14188 /* Like int_size_in_bytes, but handle empty records specially. */
14190 HOST_WIDE_INT
14191 arg_int_size_in_bytes (const_tree type)
14193 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
14196 /* Like size_in_bytes, but handle empty records specially. */
14198 tree
14199 arg_size_in_bytes (const_tree type)
14201 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
14204 /* Return true if an expression with CODE has to have the same result type as
14205 its first operand. */
14207 bool
14208 expr_type_first_operand_type_p (tree_code code)
14210 switch (code)
14212 case NEGATE_EXPR:
14213 case ABS_EXPR:
14214 case BIT_NOT_EXPR:
14215 case PAREN_EXPR:
14216 case CONJ_EXPR:
14218 case PLUS_EXPR:
14219 case MINUS_EXPR:
14220 case MULT_EXPR:
14221 case TRUNC_DIV_EXPR:
14222 case CEIL_DIV_EXPR:
14223 case FLOOR_DIV_EXPR:
14224 case ROUND_DIV_EXPR:
14225 case TRUNC_MOD_EXPR:
14226 case CEIL_MOD_EXPR:
14227 case FLOOR_MOD_EXPR:
14228 case ROUND_MOD_EXPR:
14229 case RDIV_EXPR:
14230 case EXACT_DIV_EXPR:
14231 case MIN_EXPR:
14232 case MAX_EXPR:
14233 case BIT_IOR_EXPR:
14234 case BIT_XOR_EXPR:
14235 case BIT_AND_EXPR:
14237 case LSHIFT_EXPR:
14238 case RSHIFT_EXPR:
14239 case LROTATE_EXPR:
14240 case RROTATE_EXPR:
14241 return true;
14243 default:
14244 return false;
14248 /* List of pointer types used to declare builtins before we have seen their
14249 real declaration.
14251 Keep the size up to date in tree.h ! */
14252 const builtin_structptr_type builtin_structptr_types[6] =
14254 { fileptr_type_node, ptr_type_node, "FILE" },
14255 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
14256 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
14257 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
14258 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
14259 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
14262 #if CHECKING_P
14264 namespace selftest {
14266 /* Selftests for tree. */
14268 /* Verify that integer constants are sane. */
14270 static void
14271 test_integer_constants ()
14273 ASSERT_TRUE (integer_type_node != NULL);
14274 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
14276 tree type = integer_type_node;
14278 tree zero = build_zero_cst (type);
14279 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
14280 ASSERT_EQ (type, TREE_TYPE (zero));
14282 tree one = build_int_cst (type, 1);
14283 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
14284 ASSERT_EQ (type, TREE_TYPE (zero));
14287 /* Verify identifiers. */
14289 static void
14290 test_identifiers ()
14292 tree identifier = get_identifier ("foo");
14293 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
14294 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
14297 /* Verify LABEL_DECL. */
14299 static void
14300 test_labels ()
14302 tree identifier = get_identifier ("err");
14303 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
14304 identifier, void_type_node);
14305 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
14306 ASSERT_FALSE (FORCED_LABEL (label_decl));
14309 /* Return a new VECTOR_CST node whose type is TYPE and whose values
14310 are given by VALS. */
14312 static tree
14313 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
14315 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
14316 tree_vector_builder builder (type, vals.length (), 1);
14317 builder.splice (vals);
14318 return builder.build ();
14321 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
14323 static void
14324 check_vector_cst (vec<tree> expected, tree actual)
14326 ASSERT_KNOWN_EQ (expected.length (),
14327 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
14328 for (unsigned int i = 0; i < expected.length (); ++i)
14329 ASSERT_EQ (wi::to_wide (expected[i]),
14330 wi::to_wide (vector_cst_elt (actual, i)));
14333 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
14334 and that its elements match EXPECTED. */
14336 static void
14337 check_vector_cst_duplicate (vec<tree> expected, tree actual,
14338 unsigned int npatterns)
14340 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14341 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
14342 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
14343 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
14344 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14345 check_vector_cst (expected, actual);
14348 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
14349 and NPATTERNS background elements, and that its elements match
14350 EXPECTED. */
14352 static void
14353 check_vector_cst_fill (vec<tree> expected, tree actual,
14354 unsigned int npatterns)
14356 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14357 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
14358 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
14359 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14360 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14361 check_vector_cst (expected, actual);
14364 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
14365 and that its elements match EXPECTED. */
14367 static void
14368 check_vector_cst_stepped (vec<tree> expected, tree actual,
14369 unsigned int npatterns)
14371 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14372 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
14373 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
14374 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14375 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
14376 check_vector_cst (expected, actual);
14379 /* Test the creation of VECTOR_CSTs. */
14381 static void
14382 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
14384 auto_vec<tree, 8> elements (8);
14385 elements.quick_grow (8);
14386 tree element_type = build_nonstandard_integer_type (16, true);
14387 tree vector_type = build_vector_type (element_type, 8);
14389 /* Test a simple linear series with a base of 0 and a step of 1:
14390 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
14391 for (unsigned int i = 0; i < 8; ++i)
14392 elements[i] = build_int_cst (element_type, i);
14393 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
14394 check_vector_cst_stepped (elements, vector, 1);
14396 /* Try the same with the first element replaced by 100:
14397 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
14398 elements[0] = build_int_cst (element_type, 100);
14399 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14400 check_vector_cst_stepped (elements, vector, 1);
14402 /* Try a series that wraps around.
14403 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
14404 for (unsigned int i = 1; i < 8; ++i)
14405 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
14406 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14407 check_vector_cst_stepped (elements, vector, 1);
14409 /* Try a downward series:
14410 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
14411 for (unsigned int i = 1; i < 8; ++i)
14412 elements[i] = build_int_cst (element_type, 80 - i);
14413 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14414 check_vector_cst_stepped (elements, vector, 1);
14416 /* Try two interleaved series with different bases and steps:
14417 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
14418 elements[1] = build_int_cst (element_type, 53);
14419 for (unsigned int i = 2; i < 8; i += 2)
14421 elements[i] = build_int_cst (element_type, 70 - i * 2);
14422 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
14424 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14425 check_vector_cst_stepped (elements, vector, 2);
14427 /* Try a duplicated value:
14428 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
14429 for (unsigned int i = 1; i < 8; ++i)
14430 elements[i] = elements[0];
14431 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14432 check_vector_cst_duplicate (elements, vector, 1);
14434 /* Try an interleaved duplicated value:
14435 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
14436 elements[1] = build_int_cst (element_type, 55);
14437 for (unsigned int i = 2; i < 8; ++i)
14438 elements[i] = elements[i - 2];
14439 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14440 check_vector_cst_duplicate (elements, vector, 2);
14442 /* Try a duplicated value with 2 exceptions
14443 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
14444 elements[0] = build_int_cst (element_type, 41);
14445 elements[1] = build_int_cst (element_type, 97);
14446 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14447 check_vector_cst_fill (elements, vector, 2);
14449 /* Try with and without a step
14450 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
14451 for (unsigned int i = 3; i < 8; i += 2)
14452 elements[i] = build_int_cst (element_type, i * 7);
14453 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14454 check_vector_cst_stepped (elements, vector, 2);
14456 /* Try a fully-general constant:
14457 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
14458 elements[5] = build_int_cst (element_type, 9990);
14459 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14460 check_vector_cst_fill (elements, vector, 4);
14463 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
14464 Helper function for test_location_wrappers, to deal with STRIP_NOPS
14465 modifying its argument in-place. */
14467 static void
14468 check_strip_nops (tree node, tree expected)
14470 STRIP_NOPS (node);
14471 ASSERT_EQ (expected, node);
14474 /* Verify location wrappers. */
14476 static void
14477 test_location_wrappers ()
14479 location_t loc = BUILTINS_LOCATION;
14481 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
14483 /* Wrapping a constant. */
14484 tree int_cst = build_int_cst (integer_type_node, 42);
14485 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
14486 ASSERT_FALSE (location_wrapper_p (int_cst));
14488 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
14489 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
14490 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
14491 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
14493 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
14494 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
14496 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
14497 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
14498 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
14499 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
14501 /* Wrapping a STRING_CST. */
14502 tree string_cst = build_string (4, "foo");
14503 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
14504 ASSERT_FALSE (location_wrapper_p (string_cst));
14506 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
14507 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
14508 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
14509 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
14510 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
14513 /* Wrapping a variable. */
14514 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
14515 get_identifier ("some_int_var"),
14516 integer_type_node);
14517 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
14518 ASSERT_FALSE (location_wrapper_p (int_var));
14520 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
14521 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
14522 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
14523 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
14525 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
14526 wrapper. */
14527 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
14528 ASSERT_FALSE (location_wrapper_p (r_cast));
14529 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
14531 /* Verify that STRIP_NOPS removes wrappers. */
14532 check_strip_nops (wrapped_int_cst, int_cst);
14533 check_strip_nops (wrapped_string_cst, string_cst);
14534 check_strip_nops (wrapped_int_var, int_var);
14537 /* Run all of the selftests within this file. */
14539 void
14540 tree_c_tests ()
14542 test_integer_constants ();
14543 test_identifiers ();
14544 test_labels ();
14545 test_vector_cst_patterns ();
14546 test_location_wrappers ();
14549 } // namespace selftest
14551 #endif /* CHECKING_P */
14553 #include "gt-tree.h"