fix __builtin___clear_cache overrider fallout
[official-gcc.git] / gcc / tree.c
blob72311005f57b2f0ec8b0233c178456114eac339f
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2020 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 "langhooks-def.h"
58 #include "tree-diagnostic.h"
59 #include "except.h"
60 #include "builtins.h"
61 #include "print-tree.h"
62 #include "ipa-utils.h"
63 #include "selftest.h"
64 #include "stringpool.h"
65 #include "attribs.h"
66 #include "rtl.h"
67 #include "regs.h"
68 #include "tree-vector-builder.h"
69 #include "gimple-fold.h"
70 #include "escaped_string.h"
72 /* Tree code classes. */
74 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
75 #define END_OF_BASE_TREE_CODES tcc_exceptional,
77 const enum tree_code_class tree_code_type[] = {
78 #include "all-tree.def"
81 #undef DEFTREECODE
82 #undef END_OF_BASE_TREE_CODES
84 /* Table indexed by tree code giving number of expression
85 operands beyond the fixed part of the node structure.
86 Not used for types or decls. */
88 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
89 #define END_OF_BASE_TREE_CODES 0,
91 const unsigned char tree_code_length[] = {
92 #include "all-tree.def"
95 #undef DEFTREECODE
96 #undef END_OF_BASE_TREE_CODES
98 /* Names of tree components.
99 Used for printing out the tree and error messages. */
100 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
101 #define END_OF_BASE_TREE_CODES "@dummy",
103 static const char *const tree_code_name[] = {
104 #include "all-tree.def"
107 #undef DEFTREECODE
108 #undef END_OF_BASE_TREE_CODES
110 /* Each tree code class has an associated string representation.
111 These must correspond to the tree_code_class entries. */
113 const char *const tree_code_class_strings[] =
115 "exceptional",
116 "constant",
117 "type",
118 "declaration",
119 "reference",
120 "comparison",
121 "unary",
122 "binary",
123 "statement",
124 "vl_exp",
125 "expression"
128 /* obstack.[ch] explicitly declined to prototype this. */
129 extern int _obstack_allocated_p (struct obstack *h, void *obj);
131 /* Statistics-gathering stuff. */
133 static uint64_t tree_code_counts[MAX_TREE_CODES];
134 uint64_t tree_node_counts[(int) all_kinds];
135 uint64_t tree_node_sizes[(int) all_kinds];
137 /* Keep in sync with tree.h:enum tree_node_kind. */
138 static const char * const tree_node_kind_names[] = {
139 "decls",
140 "types",
141 "blocks",
142 "stmts",
143 "refs",
144 "exprs",
145 "constants",
146 "identifiers",
147 "vecs",
148 "binfos",
149 "ssa names",
150 "constructors",
151 "random kinds",
152 "lang_decl kinds",
153 "lang_type kinds",
154 "omp clauses",
157 /* Unique id for next decl created. */
158 static GTY(()) int next_decl_uid;
159 /* Unique id for next type created. */
160 static GTY(()) unsigned next_type_uid = 1;
161 /* Unique id for next debug decl created. Use negative numbers,
162 to catch erroneous uses. */
163 static GTY(()) int next_debug_decl_uid;
165 /* Since we cannot rehash a type after it is in the table, we have to
166 keep the hash code. */
168 struct GTY((for_user)) type_hash {
169 unsigned long hash;
170 tree type;
173 /* Initial size of the hash table (rounded to next prime). */
174 #define TYPE_HASH_INITIAL_SIZE 1000
176 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
178 static hashval_t hash (type_hash *t) { return t->hash; }
179 static bool equal (type_hash *a, type_hash *b);
181 static int
182 keep_cache_entry (type_hash *&t)
184 return ggc_marked_p (t->type);
188 /* Now here is the hash table. When recording a type, it is added to
189 the slot whose index is the hash code. Note that the hash table is
190 used for several kinds of types (function types, array types and
191 array index range types, for now). While all these live in the
192 same table, they are completely independent, and the hash code is
193 computed differently for each of these. */
195 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
197 /* Hash table and temporary node for larger integer const values. */
198 static GTY (()) tree int_cst_node;
200 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
202 static hashval_t hash (tree t);
203 static bool equal (tree x, tree y);
206 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
208 /* Class and variable for making sure that there is a single POLY_INT_CST
209 for a given value. */
210 struct poly_int_cst_hasher : ggc_cache_ptr_hash<tree_node>
212 typedef std::pair<tree, const poly_wide_int *> compare_type;
213 static hashval_t hash (tree t);
214 static bool equal (tree x, const compare_type &y);
217 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
219 /* Hash table for optimization flags and target option flags. Use the same
220 hash table for both sets of options. Nodes for building the current
221 optimization and target option nodes. The assumption is most of the time
222 the options created will already be in the hash table, so we avoid
223 allocating and freeing up a node repeatably. */
224 static GTY (()) tree cl_optimization_node;
225 static GTY (()) tree cl_target_option_node;
227 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
229 static hashval_t hash (tree t);
230 static bool equal (tree x, tree y);
233 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
235 /* General tree->tree mapping structure for use in hash tables. */
238 static GTY ((cache))
239 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
241 static GTY ((cache))
242 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
244 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
246 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
248 static bool
249 equal (tree_vec_map *a, tree_vec_map *b)
251 return a->base.from == b->base.from;
254 static int
255 keep_cache_entry (tree_vec_map *&m)
257 return ggc_marked_p (m->base.from);
261 static GTY ((cache))
262 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
264 static void set_type_quals (tree, int);
265 static void print_type_hash_statistics (void);
266 static void print_debug_expr_statistics (void);
267 static void print_value_expr_statistics (void);
269 static tree build_array_type_1 (tree, tree, bool, bool, bool);
271 tree global_trees[TI_MAX];
272 tree integer_types[itk_none];
274 bool int_n_enabled_p[NUM_INT_N_ENTS];
275 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
277 bool tree_contains_struct[MAX_TREE_CODES][64];
279 /* Number of operands for each OpenMP clause. */
280 unsigned const char omp_clause_num_ops[] =
282 0, /* OMP_CLAUSE_ERROR */
283 1, /* OMP_CLAUSE_PRIVATE */
284 1, /* OMP_CLAUSE_SHARED */
285 1, /* OMP_CLAUSE_FIRSTPRIVATE */
286 2, /* OMP_CLAUSE_LASTPRIVATE */
287 5, /* OMP_CLAUSE_REDUCTION */
288 5, /* OMP_CLAUSE_TASK_REDUCTION */
289 5, /* OMP_CLAUSE_IN_REDUCTION */
290 1, /* OMP_CLAUSE_COPYIN */
291 1, /* OMP_CLAUSE_COPYPRIVATE */
292 3, /* OMP_CLAUSE_LINEAR */
293 2, /* OMP_CLAUSE_ALIGNED */
294 2, /* OMP_CLAUSE_ALLOCATE */
295 1, /* OMP_CLAUSE_DEPEND */
296 1, /* OMP_CLAUSE_NONTEMPORAL */
297 1, /* OMP_CLAUSE_UNIFORM */
298 1, /* OMP_CLAUSE_TO_DECLARE */
299 1, /* OMP_CLAUSE_LINK */
300 2, /* OMP_CLAUSE_FROM */
301 2, /* OMP_CLAUSE_TO */
302 2, /* OMP_CLAUSE_MAP */
303 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
304 1, /* OMP_CLAUSE_USE_DEVICE_ADDR */
305 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
306 1, /* OMP_CLAUSE_INCLUSIVE */
307 1, /* OMP_CLAUSE_EXCLUSIVE */
308 2, /* OMP_CLAUSE__CACHE_ */
309 2, /* OMP_CLAUSE_GANG */
310 1, /* OMP_CLAUSE_ASYNC */
311 1, /* OMP_CLAUSE_WAIT */
312 0, /* OMP_CLAUSE_AUTO */
313 0, /* OMP_CLAUSE_SEQ */
314 1, /* OMP_CLAUSE__LOOPTEMP_ */
315 1, /* OMP_CLAUSE__REDUCTEMP_ */
316 1, /* OMP_CLAUSE__CONDTEMP_ */
317 1, /* OMP_CLAUSE__SCANTEMP_ */
318 1, /* OMP_CLAUSE_IF */
319 1, /* OMP_CLAUSE_NUM_THREADS */
320 1, /* OMP_CLAUSE_SCHEDULE */
321 0, /* OMP_CLAUSE_NOWAIT */
322 1, /* OMP_CLAUSE_ORDERED */
323 0, /* OMP_CLAUSE_DEFAULT */
324 3, /* OMP_CLAUSE_COLLAPSE */
325 0, /* OMP_CLAUSE_UNTIED */
326 1, /* OMP_CLAUSE_FINAL */
327 0, /* OMP_CLAUSE_MERGEABLE */
328 1, /* OMP_CLAUSE_DEVICE */
329 1, /* OMP_CLAUSE_DIST_SCHEDULE */
330 0, /* OMP_CLAUSE_INBRANCH */
331 0, /* OMP_CLAUSE_NOTINBRANCH */
332 1, /* OMP_CLAUSE_NUM_TEAMS */
333 1, /* OMP_CLAUSE_THREAD_LIMIT */
334 0, /* OMP_CLAUSE_PROC_BIND */
335 1, /* OMP_CLAUSE_SAFELEN */
336 1, /* OMP_CLAUSE_SIMDLEN */
337 0, /* OMP_CLAUSE_DEVICE_TYPE */
338 0, /* OMP_CLAUSE_FOR */
339 0, /* OMP_CLAUSE_PARALLEL */
340 0, /* OMP_CLAUSE_SECTIONS */
341 0, /* OMP_CLAUSE_TASKGROUP */
342 1, /* OMP_CLAUSE_PRIORITY */
343 1, /* OMP_CLAUSE_GRAINSIZE */
344 1, /* OMP_CLAUSE_NUM_TASKS */
345 0, /* OMP_CLAUSE_NOGROUP */
346 0, /* OMP_CLAUSE_THREADS */
347 0, /* OMP_CLAUSE_SIMD */
348 1, /* OMP_CLAUSE_HINT */
349 0, /* OMP_CLAUSE_DEFAULTMAP */
350 0, /* OMP_CLAUSE_ORDER */
351 0, /* OMP_CLAUSE_BIND */
352 1, /* OMP_CLAUSE__SIMDUID_ */
353 0, /* OMP_CLAUSE__SIMT_ */
354 0, /* OMP_CLAUSE_INDEPENDENT */
355 1, /* OMP_CLAUSE_WORKER */
356 1, /* OMP_CLAUSE_VECTOR */
357 1, /* OMP_CLAUSE_NUM_GANGS */
358 1, /* OMP_CLAUSE_NUM_WORKERS */
359 1, /* OMP_CLAUSE_VECTOR_LENGTH */
360 3, /* OMP_CLAUSE_TILE */
361 0, /* OMP_CLAUSE_IF_PRESENT */
362 0, /* OMP_CLAUSE_FINALIZE */
365 const char * const omp_clause_code_name[] =
367 "error_clause",
368 "private",
369 "shared",
370 "firstprivate",
371 "lastprivate",
372 "reduction",
373 "task_reduction",
374 "in_reduction",
375 "copyin",
376 "copyprivate",
377 "linear",
378 "aligned",
379 "allocate",
380 "depend",
381 "nontemporal",
382 "uniform",
383 "to",
384 "link",
385 "from",
386 "to",
387 "map",
388 "use_device_ptr",
389 "use_device_addr",
390 "is_device_ptr",
391 "inclusive",
392 "exclusive",
393 "_cache_",
394 "gang",
395 "async",
396 "wait",
397 "auto",
398 "seq",
399 "_looptemp_",
400 "_reductemp_",
401 "_condtemp_",
402 "_scantemp_",
403 "if",
404 "num_threads",
405 "schedule",
406 "nowait",
407 "ordered",
408 "default",
409 "collapse",
410 "untied",
411 "final",
412 "mergeable",
413 "device",
414 "dist_schedule",
415 "inbranch",
416 "notinbranch",
417 "num_teams",
418 "thread_limit",
419 "proc_bind",
420 "safelen",
421 "simdlen",
422 "device_type",
423 "for",
424 "parallel",
425 "sections",
426 "taskgroup",
427 "priority",
428 "grainsize",
429 "num_tasks",
430 "nogroup",
431 "threads",
432 "simd",
433 "hint",
434 "defaultmap",
435 "order",
436 "bind",
437 "_simduid_",
438 "_simt_",
439 "independent",
440 "worker",
441 "vector",
442 "num_gangs",
443 "num_workers",
444 "vector_length",
445 "tile",
446 "if_present",
447 "finalize",
451 /* Return the tree node structure used by tree code CODE. */
453 static inline enum tree_node_structure_enum
454 tree_node_structure_for_code (enum tree_code code)
456 switch (TREE_CODE_CLASS (code))
458 case tcc_declaration:
459 switch (code)
461 case CONST_DECL: return TS_CONST_DECL;
462 case DEBUG_EXPR_DECL: return TS_DECL_WRTL;
463 case FIELD_DECL: return TS_FIELD_DECL;
464 case FUNCTION_DECL: return TS_FUNCTION_DECL;
465 case LABEL_DECL: return TS_LABEL_DECL;
466 case PARM_DECL: return TS_PARM_DECL;
467 case RESULT_DECL: return TS_RESULT_DECL;
468 case TRANSLATION_UNIT_DECL: return TS_TRANSLATION_UNIT_DECL;
469 case TYPE_DECL: return TS_TYPE_DECL;
470 case VAR_DECL: return TS_VAR_DECL;
471 default: return TS_DECL_NON_COMMON;
474 case tcc_type: return TS_TYPE_NON_COMMON;
476 case tcc_binary:
477 case tcc_comparison:
478 case tcc_expression:
479 case tcc_reference:
480 case tcc_statement:
481 case tcc_unary:
482 case tcc_vl_exp: return TS_EXP;
484 default: /* tcc_constant and tcc_exceptional */
485 break;
488 switch (code)
490 /* tcc_constant cases. */
491 case COMPLEX_CST: return TS_COMPLEX;
492 case FIXED_CST: return TS_FIXED_CST;
493 case INTEGER_CST: return TS_INT_CST;
494 case POLY_INT_CST: return TS_POLY_INT_CST;
495 case REAL_CST: return TS_REAL_CST;
496 case STRING_CST: return TS_STRING;
497 case VECTOR_CST: return TS_VECTOR;
498 case VOID_CST: return TS_TYPED;
500 /* tcc_exceptional cases. */
501 case BLOCK: return TS_BLOCK;
502 case CONSTRUCTOR: return TS_CONSTRUCTOR;
503 case ERROR_MARK: return TS_COMMON;
504 case IDENTIFIER_NODE: return TS_IDENTIFIER;
505 case OMP_CLAUSE: return TS_OMP_CLAUSE;
506 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
507 case PLACEHOLDER_EXPR: return TS_COMMON;
508 case SSA_NAME: return TS_SSA_NAME;
509 case STATEMENT_LIST: return TS_STATEMENT_LIST;
510 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
511 case TREE_BINFO: return TS_BINFO;
512 case TREE_LIST: return TS_LIST;
513 case TREE_VEC: return TS_VEC;
515 default:
516 gcc_unreachable ();
521 /* Initialize tree_contains_struct to describe the hierarchy of tree
522 nodes. */
524 static void
525 initialize_tree_contains_struct (void)
527 unsigned i;
529 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
531 enum tree_code code;
532 enum tree_node_structure_enum ts_code;
534 code = (enum tree_code) i;
535 ts_code = tree_node_structure_for_code (code);
537 /* Mark the TS structure itself. */
538 tree_contains_struct[code][ts_code] = 1;
540 /* Mark all the structures that TS is derived from. */
541 switch (ts_code)
543 case TS_TYPED:
544 case TS_BLOCK:
545 case TS_OPTIMIZATION:
546 case TS_TARGET_OPTION:
547 MARK_TS_BASE (code);
548 break;
550 case TS_COMMON:
551 case TS_INT_CST:
552 case TS_POLY_INT_CST:
553 case TS_REAL_CST:
554 case TS_FIXED_CST:
555 case TS_VECTOR:
556 case TS_STRING:
557 case TS_COMPLEX:
558 case TS_SSA_NAME:
559 case TS_CONSTRUCTOR:
560 case TS_EXP:
561 case TS_STATEMENT_LIST:
562 MARK_TS_TYPED (code);
563 break;
565 case TS_IDENTIFIER:
566 case TS_DECL_MINIMAL:
567 case TS_TYPE_COMMON:
568 case TS_LIST:
569 case TS_VEC:
570 case TS_BINFO:
571 case TS_OMP_CLAUSE:
572 MARK_TS_COMMON (code);
573 break;
575 case TS_TYPE_WITH_LANG_SPECIFIC:
576 MARK_TS_TYPE_COMMON (code);
577 break;
579 case TS_TYPE_NON_COMMON:
580 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
581 break;
583 case TS_DECL_COMMON:
584 MARK_TS_DECL_MINIMAL (code);
585 break;
587 case TS_DECL_WRTL:
588 case TS_CONST_DECL:
589 MARK_TS_DECL_COMMON (code);
590 break;
592 case TS_DECL_NON_COMMON:
593 MARK_TS_DECL_WITH_VIS (code);
594 break;
596 case TS_DECL_WITH_VIS:
597 case TS_PARM_DECL:
598 case TS_LABEL_DECL:
599 case TS_RESULT_DECL:
600 MARK_TS_DECL_WRTL (code);
601 break;
603 case TS_FIELD_DECL:
604 MARK_TS_DECL_COMMON (code);
605 break;
607 case TS_VAR_DECL:
608 MARK_TS_DECL_WITH_VIS (code);
609 break;
611 case TS_TYPE_DECL:
612 case TS_FUNCTION_DECL:
613 MARK_TS_DECL_NON_COMMON (code);
614 break;
616 case TS_TRANSLATION_UNIT_DECL:
617 MARK_TS_DECL_COMMON (code);
618 break;
620 default:
621 gcc_unreachable ();
625 /* Basic consistency checks for attributes used in fold. */
626 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
627 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
628 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
629 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
630 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
631 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
632 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
633 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
634 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
635 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
636 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
637 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
638 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
639 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
640 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
641 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
642 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
643 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
644 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
645 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
646 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
647 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
648 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
649 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
650 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
651 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
652 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
653 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
654 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
655 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
656 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
657 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
658 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
659 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
660 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
661 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
662 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
663 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
664 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
665 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
669 /* Init tree.c. */
671 void
672 init_ttree (void)
674 /* Initialize the hash table of types. */
675 type_hash_table
676 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
678 debug_expr_for_decl
679 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
681 value_expr_for_decl
682 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
684 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
686 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
688 int_cst_node = make_int_cst (1, 1);
690 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
692 cl_optimization_node = make_node (OPTIMIZATION_NODE);
693 cl_target_option_node = make_node (TARGET_OPTION_NODE);
695 /* Initialize the tree_contains_struct array. */
696 initialize_tree_contains_struct ();
697 lang_hooks.init_ts ();
701 /* The name of the object as the assembler will see it (but before any
702 translations made by ASM_OUTPUT_LABELREF). Often this is the same
703 as DECL_NAME. It is an IDENTIFIER_NODE. */
704 tree
705 decl_assembler_name (tree decl)
707 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
708 lang_hooks.set_decl_assembler_name (decl);
709 return DECL_ASSEMBLER_NAME_RAW (decl);
712 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
713 (either of which may be NULL). Inform the FE, if this changes the
714 name. */
716 void
717 overwrite_decl_assembler_name (tree decl, tree name)
719 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
720 lang_hooks.overwrite_decl_assembler_name (decl, name);
723 /* When the target supports COMDAT groups, this indicates which group the
724 DECL is associated with. This can be either an IDENTIFIER_NODE or a
725 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
726 tree
727 decl_comdat_group (const_tree node)
729 struct symtab_node *snode = symtab_node::get (node);
730 if (!snode)
731 return NULL;
732 return snode->get_comdat_group ();
735 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
736 tree
737 decl_comdat_group_id (const_tree node)
739 struct symtab_node *snode = symtab_node::get (node);
740 if (!snode)
741 return NULL;
742 return snode->get_comdat_group_id ();
745 /* When the target supports named section, return its name as IDENTIFIER_NODE
746 or NULL if it is in no section. */
747 const char *
748 decl_section_name (const_tree node)
750 struct symtab_node *snode = symtab_node::get (node);
751 if (!snode)
752 return NULL;
753 return snode->get_section ();
756 /* Set section name of NODE to VALUE (that is expected to be
757 identifier node) */
758 void
759 set_decl_section_name (tree node, const char *value)
761 struct symtab_node *snode;
763 if (value == NULL)
765 snode = symtab_node::get (node);
766 if (!snode)
767 return;
769 else if (VAR_P (node))
770 snode = varpool_node::get_create (node);
771 else
772 snode = cgraph_node::get_create (node);
773 snode->set_section (value);
776 /* Set section name of NODE to match the section name of OTHER.
778 set_decl_section_name (decl, other) is equivalent to
779 set_decl_section_name (decl, DECL_SECTION_NAME (other)), but possibly more
780 efficient. */
781 void
782 set_decl_section_name (tree decl, const_tree other)
784 struct symtab_node *other_node = symtab_node::get (other);
785 if (other_node)
787 struct symtab_node *decl_node;
788 if (VAR_P (decl))
789 decl_node = varpool_node::get_create (decl);
790 else
791 decl_node = cgraph_node::get_create (decl);
792 decl_node->set_section (*other_node);
794 else
796 struct symtab_node *decl_node = symtab_node::get (decl);
797 if (!decl_node)
798 return;
799 decl_node->set_section (NULL);
803 /* Return TLS model of a variable NODE. */
804 enum tls_model
805 decl_tls_model (const_tree node)
807 struct varpool_node *snode = varpool_node::get (node);
808 if (!snode)
809 return TLS_MODEL_NONE;
810 return snode->tls_model;
813 /* Set TLS model of variable NODE to MODEL. */
814 void
815 set_decl_tls_model (tree node, enum tls_model model)
817 struct varpool_node *vnode;
819 if (model == TLS_MODEL_NONE)
821 vnode = varpool_node::get (node);
822 if (!vnode)
823 return;
825 else
826 vnode = varpool_node::get_create (node);
827 vnode->tls_model = model;
830 /* Compute the number of bytes occupied by a tree with code CODE.
831 This function cannot be used for nodes that have variable sizes,
832 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
833 size_t
834 tree_code_size (enum tree_code code)
836 switch (TREE_CODE_CLASS (code))
838 case tcc_declaration: /* A decl node */
839 switch (code)
841 case FIELD_DECL: return sizeof (tree_field_decl);
842 case PARM_DECL: return sizeof (tree_parm_decl);
843 case VAR_DECL: return sizeof (tree_var_decl);
844 case LABEL_DECL: return sizeof (tree_label_decl);
845 case RESULT_DECL: return sizeof (tree_result_decl);
846 case CONST_DECL: return sizeof (tree_const_decl);
847 case TYPE_DECL: return sizeof (tree_type_decl);
848 case FUNCTION_DECL: return sizeof (tree_function_decl);
849 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
850 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
851 case NAMESPACE_DECL:
852 case IMPORTED_DECL:
853 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
854 default:
855 gcc_checking_assert (code >= NUM_TREE_CODES);
856 return lang_hooks.tree_size (code);
859 case tcc_type: /* a type node */
860 switch (code)
862 case OFFSET_TYPE:
863 case ENUMERAL_TYPE:
864 case BOOLEAN_TYPE:
865 case INTEGER_TYPE:
866 case REAL_TYPE:
867 case OPAQUE_TYPE:
868 case POINTER_TYPE:
869 case REFERENCE_TYPE:
870 case NULLPTR_TYPE:
871 case FIXED_POINT_TYPE:
872 case COMPLEX_TYPE:
873 case VECTOR_TYPE:
874 case ARRAY_TYPE:
875 case RECORD_TYPE:
876 case UNION_TYPE:
877 case QUAL_UNION_TYPE:
878 case VOID_TYPE:
879 case FUNCTION_TYPE:
880 case METHOD_TYPE:
881 case LANG_TYPE: return sizeof (tree_type_non_common);
882 default:
883 gcc_checking_assert (code >= NUM_TREE_CODES);
884 return lang_hooks.tree_size (code);
887 case tcc_reference: /* a reference */
888 case tcc_expression: /* an expression */
889 case tcc_statement: /* an expression with side effects */
890 case tcc_comparison: /* a comparison expression */
891 case tcc_unary: /* a unary arithmetic expression */
892 case tcc_binary: /* a binary arithmetic expression */
893 return (sizeof (struct tree_exp)
894 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
896 case tcc_constant: /* a constant */
897 switch (code)
899 case VOID_CST: return sizeof (tree_typed);
900 case INTEGER_CST: gcc_unreachable ();
901 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
902 case REAL_CST: return sizeof (tree_real_cst);
903 case FIXED_CST: return sizeof (tree_fixed_cst);
904 case COMPLEX_CST: return sizeof (tree_complex);
905 case VECTOR_CST: gcc_unreachable ();
906 case STRING_CST: gcc_unreachable ();
907 default:
908 gcc_checking_assert (code >= NUM_TREE_CODES);
909 return lang_hooks.tree_size (code);
912 case tcc_exceptional: /* something random, like an identifier. */
913 switch (code)
915 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
916 case TREE_LIST: return sizeof (tree_list);
918 case ERROR_MARK:
919 case PLACEHOLDER_EXPR: return sizeof (tree_common);
921 case TREE_VEC: gcc_unreachable ();
922 case OMP_CLAUSE: gcc_unreachable ();
924 case SSA_NAME: return sizeof (tree_ssa_name);
926 case STATEMENT_LIST: return sizeof (tree_statement_list);
927 case BLOCK: return sizeof (struct tree_block);
928 case CONSTRUCTOR: return sizeof (tree_constructor);
929 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
930 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
932 default:
933 gcc_checking_assert (code >= NUM_TREE_CODES);
934 return lang_hooks.tree_size (code);
937 default:
938 gcc_unreachable ();
942 /* Compute the number of bytes occupied by NODE. This routine only
943 looks at TREE_CODE, except for those nodes that have variable sizes. */
944 size_t
945 tree_size (const_tree node)
947 const enum tree_code code = TREE_CODE (node);
948 switch (code)
950 case INTEGER_CST:
951 return (sizeof (struct tree_int_cst)
952 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
954 case TREE_BINFO:
955 return (offsetof (struct tree_binfo, base_binfos)
956 + vec<tree, va_gc>
957 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
959 case TREE_VEC:
960 return (sizeof (struct tree_vec)
961 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
963 case VECTOR_CST:
964 return (sizeof (struct tree_vector)
965 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
967 case STRING_CST:
968 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
970 case OMP_CLAUSE:
971 return (sizeof (struct tree_omp_clause)
972 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
973 * sizeof (tree));
975 default:
976 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
977 return (sizeof (struct tree_exp)
978 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
979 else
980 return tree_code_size (code);
984 /* Return tree node kind based on tree CODE. */
986 static tree_node_kind
987 get_stats_node_kind (enum tree_code code)
989 enum tree_code_class type = TREE_CODE_CLASS (code);
991 switch (type)
993 case tcc_declaration: /* A decl node */
994 return d_kind;
995 case tcc_type: /* a type node */
996 return t_kind;
997 case tcc_statement: /* an expression with side effects */
998 return s_kind;
999 case tcc_reference: /* a reference */
1000 return r_kind;
1001 case tcc_expression: /* an expression */
1002 case tcc_comparison: /* a comparison expression */
1003 case tcc_unary: /* a unary arithmetic expression */
1004 case tcc_binary: /* a binary arithmetic expression */
1005 return e_kind;
1006 case tcc_constant: /* a constant */
1007 return c_kind;
1008 case tcc_exceptional: /* something random, like an identifier. */
1009 switch (code)
1011 case IDENTIFIER_NODE:
1012 return id_kind;
1013 case TREE_VEC:
1014 return vec_kind;
1015 case TREE_BINFO:
1016 return binfo_kind;
1017 case SSA_NAME:
1018 return ssa_name_kind;
1019 case BLOCK:
1020 return b_kind;
1021 case CONSTRUCTOR:
1022 return constr_kind;
1023 case OMP_CLAUSE:
1024 return omp_clause_kind;
1025 default:
1026 return x_kind;
1028 break;
1029 case tcc_vl_exp:
1030 return e_kind;
1031 default:
1032 gcc_unreachable ();
1036 /* Record interesting allocation statistics for a tree node with CODE
1037 and LENGTH. */
1039 static void
1040 record_node_allocation_statistics (enum tree_code code, size_t length)
1042 if (!GATHER_STATISTICS)
1043 return;
1045 tree_node_kind kind = get_stats_node_kind (code);
1047 tree_code_counts[(int) code]++;
1048 tree_node_counts[(int) kind]++;
1049 tree_node_sizes[(int) kind] += length;
1052 /* Allocate and return a new UID from the DECL_UID namespace. */
1055 allocate_decl_uid (void)
1057 return next_decl_uid++;
1060 /* Return a newly allocated node of code CODE. For decl and type
1061 nodes, some other fields are initialized. The rest of the node is
1062 initialized to zero. This function cannot be used for TREE_VEC,
1063 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1064 tree_code_size.
1066 Achoo! I got a code in the node. */
1068 tree
1069 make_node (enum tree_code code MEM_STAT_DECL)
1071 tree t;
1072 enum tree_code_class type = TREE_CODE_CLASS (code);
1073 size_t length = tree_code_size (code);
1075 record_node_allocation_statistics (code, length);
1077 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1078 TREE_SET_CODE (t, code);
1080 switch (type)
1082 case tcc_statement:
1083 if (code != DEBUG_BEGIN_STMT)
1084 TREE_SIDE_EFFECTS (t) = 1;
1085 break;
1087 case tcc_declaration:
1088 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1090 if (code == FUNCTION_DECL)
1092 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1093 SET_DECL_MODE (t, FUNCTION_MODE);
1095 else
1096 SET_DECL_ALIGN (t, 1);
1098 DECL_SOURCE_LOCATION (t) = input_location;
1099 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1100 DECL_UID (t) = --next_debug_decl_uid;
1101 else
1103 DECL_UID (t) = allocate_decl_uid ();
1104 SET_DECL_PT_UID (t, -1);
1106 if (TREE_CODE (t) == LABEL_DECL)
1107 LABEL_DECL_UID (t) = -1;
1109 break;
1111 case tcc_type:
1112 TYPE_UID (t) = next_type_uid++;
1113 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1114 TYPE_USER_ALIGN (t) = 0;
1115 TYPE_MAIN_VARIANT (t) = t;
1116 TYPE_CANONICAL (t) = t;
1118 /* Default to no attributes for type, but let target change that. */
1119 TYPE_ATTRIBUTES (t) = NULL_TREE;
1120 targetm.set_default_type_attributes (t);
1122 /* We have not yet computed the alias set for this type. */
1123 TYPE_ALIAS_SET (t) = -1;
1124 break;
1126 case tcc_constant:
1127 TREE_CONSTANT (t) = 1;
1128 break;
1130 case tcc_expression:
1131 switch (code)
1133 case INIT_EXPR:
1134 case MODIFY_EXPR:
1135 case VA_ARG_EXPR:
1136 case PREDECREMENT_EXPR:
1137 case PREINCREMENT_EXPR:
1138 case POSTDECREMENT_EXPR:
1139 case POSTINCREMENT_EXPR:
1140 /* All of these have side-effects, no matter what their
1141 operands are. */
1142 TREE_SIDE_EFFECTS (t) = 1;
1143 break;
1145 default:
1146 break;
1148 break;
1150 case tcc_exceptional:
1151 switch (code)
1153 case TARGET_OPTION_NODE:
1154 TREE_TARGET_OPTION(t)
1155 = ggc_cleared_alloc<struct cl_target_option> ();
1156 break;
1158 case OPTIMIZATION_NODE:
1159 TREE_OPTIMIZATION (t)
1160 = ggc_cleared_alloc<struct cl_optimization> ();
1161 break;
1163 default:
1164 break;
1166 break;
1168 default:
1169 /* Other classes need no special treatment. */
1170 break;
1173 return t;
1176 /* Free tree node. */
1178 void
1179 free_node (tree node)
1181 enum tree_code code = TREE_CODE (node);
1182 if (GATHER_STATISTICS)
1184 enum tree_node_kind kind = get_stats_node_kind (code);
1186 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1187 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1188 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1190 tree_code_counts[(int) TREE_CODE (node)]--;
1191 tree_node_counts[(int) kind]--;
1192 tree_node_sizes[(int) kind] -= tree_size (node);
1194 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1195 vec_free (CONSTRUCTOR_ELTS (node));
1196 else if (code == BLOCK)
1197 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1198 else if (code == TREE_BINFO)
1199 vec_free (BINFO_BASE_ACCESSES (node));
1200 else if (code == OPTIMIZATION_NODE)
1201 cl_optimization_option_free (TREE_OPTIMIZATION (node));
1202 else if (code == TARGET_OPTION_NODE)
1203 cl_target_option_free (TREE_TARGET_OPTION (node));
1204 ggc_free (node);
1207 /* Return a new node with the same contents as NODE except that its
1208 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1210 tree
1211 copy_node (tree node MEM_STAT_DECL)
1213 tree t;
1214 enum tree_code code = TREE_CODE (node);
1215 size_t length;
1217 gcc_assert (code != STATEMENT_LIST);
1219 length = tree_size (node);
1220 record_node_allocation_statistics (code, length);
1221 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1222 memcpy (t, node, length);
1224 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1225 TREE_CHAIN (t) = 0;
1226 TREE_ASM_WRITTEN (t) = 0;
1227 TREE_VISITED (t) = 0;
1229 if (TREE_CODE_CLASS (code) == tcc_declaration)
1231 if (code == DEBUG_EXPR_DECL)
1232 DECL_UID (t) = --next_debug_decl_uid;
1233 else
1235 DECL_UID (t) = allocate_decl_uid ();
1236 if (DECL_PT_UID_SET_P (node))
1237 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1239 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1240 && DECL_HAS_VALUE_EXPR_P (node))
1242 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1243 DECL_HAS_VALUE_EXPR_P (t) = 1;
1245 /* DECL_DEBUG_EXPR is copied explicitly by callers. */
1246 if (VAR_P (node))
1248 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1249 t->decl_with_vis.symtab_node = NULL;
1251 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1253 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1254 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1256 if (TREE_CODE (node) == FUNCTION_DECL)
1258 DECL_STRUCT_FUNCTION (t) = NULL;
1259 t->decl_with_vis.symtab_node = NULL;
1262 else if (TREE_CODE_CLASS (code) == tcc_type)
1264 TYPE_UID (t) = next_type_uid++;
1265 /* The following is so that the debug code for
1266 the copy is different from the original type.
1267 The two statements usually duplicate each other
1268 (because they clear fields of the same union),
1269 but the optimizer should catch that. */
1270 TYPE_SYMTAB_ADDRESS (t) = 0;
1271 TYPE_SYMTAB_DIE (t) = 0;
1273 /* Do not copy the values cache. */
1274 if (TYPE_CACHED_VALUES_P (t))
1276 TYPE_CACHED_VALUES_P (t) = 0;
1277 TYPE_CACHED_VALUES (t) = NULL_TREE;
1280 else if (code == TARGET_OPTION_NODE)
1282 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1283 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1284 sizeof (struct cl_target_option));
1286 else if (code == OPTIMIZATION_NODE)
1288 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1289 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1290 sizeof (struct cl_optimization));
1293 return t;
1296 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1297 For example, this can copy a list made of TREE_LIST nodes. */
1299 tree
1300 copy_list (tree list)
1302 tree head;
1303 tree prev, next;
1305 if (list == 0)
1306 return 0;
1308 head = prev = copy_node (list);
1309 next = TREE_CHAIN (list);
1310 while (next)
1312 TREE_CHAIN (prev) = copy_node (next);
1313 prev = TREE_CHAIN (prev);
1314 next = TREE_CHAIN (next);
1316 return head;
1320 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1321 INTEGER_CST with value CST and type TYPE. */
1323 static unsigned int
1324 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1326 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1327 /* We need extra HWIs if CST is an unsigned integer with its
1328 upper bit set. */
1329 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1330 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1331 return cst.get_len ();
1334 /* Return a new INTEGER_CST with value CST and type TYPE. */
1336 static tree
1337 build_new_int_cst (tree type, const wide_int &cst)
1339 unsigned int len = cst.get_len ();
1340 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1341 tree nt = make_int_cst (len, ext_len);
1343 if (len < ext_len)
1345 --ext_len;
1346 TREE_INT_CST_ELT (nt, ext_len)
1347 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1348 for (unsigned int i = len; i < ext_len; ++i)
1349 TREE_INT_CST_ELT (nt, i) = -1;
1351 else if (TYPE_UNSIGNED (type)
1352 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1354 len--;
1355 TREE_INT_CST_ELT (nt, len)
1356 = zext_hwi (cst.elt (len),
1357 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1360 for (unsigned int i = 0; i < len; i++)
1361 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1362 TREE_TYPE (nt) = type;
1363 return nt;
1366 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1368 static tree
1369 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1370 CXX_MEM_STAT_INFO)
1372 size_t length = sizeof (struct tree_poly_int_cst);
1373 record_node_allocation_statistics (POLY_INT_CST, length);
1375 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1377 TREE_SET_CODE (t, POLY_INT_CST);
1378 TREE_CONSTANT (t) = 1;
1379 TREE_TYPE (t) = type;
1380 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1381 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1382 return t;
1385 /* Create a constant tree that contains CST sign-extended to TYPE. */
1387 tree
1388 build_int_cst (tree type, poly_int64 cst)
1390 /* Support legacy code. */
1391 if (!type)
1392 type = integer_type_node;
1394 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1397 /* Create a constant tree that contains CST zero-extended to TYPE. */
1399 tree
1400 build_int_cstu (tree type, poly_uint64 cst)
1402 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1405 /* Create a constant tree that contains CST sign-extended to TYPE. */
1407 tree
1408 build_int_cst_type (tree type, poly_int64 cst)
1410 gcc_assert (type);
1411 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1414 /* Constructs tree in type TYPE from with value given by CST. Signedness
1415 of CST is assumed to be the same as the signedness of TYPE. */
1417 tree
1418 double_int_to_tree (tree type, double_int cst)
1420 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1423 /* We force the wide_int CST to the range of the type TYPE by sign or
1424 zero extending it. OVERFLOWABLE indicates if we are interested in
1425 overflow of the value, when >0 we are only interested in signed
1426 overflow, for <0 we are interested in any overflow. OVERFLOWED
1427 indicates whether overflow has already occurred. CONST_OVERFLOWED
1428 indicates whether constant overflow has already occurred. We force
1429 T's value to be within range of T's type (by setting to 0 or 1 all
1430 the bits outside the type's range). We set TREE_OVERFLOWED if,
1431 OVERFLOWED is nonzero,
1432 or OVERFLOWABLE is >0 and signed overflow occurs
1433 or OVERFLOWABLE is <0 and any overflow occurs
1434 We return a new tree node for the extended wide_int. The node
1435 is shared if no overflow flags are set. */
1438 tree
1439 force_fit_type (tree type, const poly_wide_int_ref &cst,
1440 int overflowable, bool overflowed)
1442 signop sign = TYPE_SIGN (type);
1444 /* If we need to set overflow flags, return a new unshared node. */
1445 if (overflowed || !wi::fits_to_tree_p (cst, type))
1447 if (overflowed
1448 || overflowable < 0
1449 || (overflowable > 0 && sign == SIGNED))
1451 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1452 sign);
1453 tree t;
1454 if (tmp.is_constant ())
1455 t = build_new_int_cst (type, tmp.coeffs[0]);
1456 else
1458 tree coeffs[NUM_POLY_INT_COEFFS];
1459 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1461 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1462 TREE_OVERFLOW (coeffs[i]) = 1;
1464 t = build_new_poly_int_cst (type, coeffs);
1466 TREE_OVERFLOW (t) = 1;
1467 return t;
1471 /* Else build a shared node. */
1472 return wide_int_to_tree (type, cst);
1475 /* These are the hash table functions for the hash table of INTEGER_CST
1476 nodes of a sizetype. */
1478 /* Return the hash code X, an INTEGER_CST. */
1480 hashval_t
1481 int_cst_hasher::hash (tree x)
1483 const_tree const t = x;
1484 hashval_t code = TYPE_UID (TREE_TYPE (t));
1485 int i;
1487 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1488 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1490 return code;
1493 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1494 is the same as that given by *Y, which is the same. */
1496 bool
1497 int_cst_hasher::equal (tree x, tree y)
1499 const_tree const xt = x;
1500 const_tree const yt = y;
1502 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1503 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1504 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1505 return false;
1507 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1508 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1509 return false;
1511 return true;
1514 /* Cache wide_int CST into the TYPE_CACHED_VALUES cache for TYPE.
1515 SLOT is the slot entry to store it in, and MAX_SLOTS is the maximum
1516 number of slots that can be cached for the type. */
1518 static inline tree
1519 cache_wide_int_in_type_cache (tree type, const wide_int &cst,
1520 int slot, int max_slots)
1522 gcc_checking_assert (slot >= 0);
1523 /* Initialize cache. */
1524 if (!TYPE_CACHED_VALUES_P (type))
1526 TYPE_CACHED_VALUES_P (type) = 1;
1527 TYPE_CACHED_VALUES (type) = make_tree_vec (max_slots);
1529 tree t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), slot);
1530 if (!t)
1532 /* Create a new shared int. */
1533 t = build_new_int_cst (type, cst);
1534 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), slot) = t;
1536 return t;
1539 /* Create an INT_CST node of TYPE and value CST.
1540 The returned node is always shared. For small integers we use a
1541 per-type vector cache, for larger ones we use a single hash table.
1542 The value is extended from its precision according to the sign of
1543 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1544 the upper bits and ensures that hashing and value equality based
1545 upon the underlying HOST_WIDE_INTs works without masking. */
1547 static tree
1548 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1550 tree t;
1551 int ix = -1;
1552 int limit = 0;
1554 gcc_assert (type);
1555 unsigned int prec = TYPE_PRECISION (type);
1556 signop sgn = TYPE_SIGN (type);
1558 /* Verify that everything is canonical. */
1559 int l = pcst.get_len ();
1560 if (l > 1)
1562 if (pcst.elt (l - 1) == 0)
1563 gcc_checking_assert (pcst.elt (l - 2) < 0);
1564 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1565 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1568 wide_int cst = wide_int::from (pcst, prec, sgn);
1569 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1571 enum tree_code code = TREE_CODE (type);
1572 if (code == POINTER_TYPE || code == REFERENCE_TYPE)
1574 /* Cache NULL pointer and zero bounds. */
1575 if (cst == 0)
1576 ix = 0;
1577 /* Cache upper bounds of pointers. */
1578 else if (cst == wi::max_value (prec, sgn))
1579 ix = 1;
1580 /* Cache 1 which is used for a non-zero range. */
1581 else if (cst == 1)
1582 ix = 2;
1584 if (ix >= 0)
1586 t = cache_wide_int_in_type_cache (type, cst, ix, 3);
1587 /* Make sure no one is clobbering the shared constant. */
1588 gcc_checking_assert (TREE_TYPE (t) == type
1589 && cst == wi::to_wide (t));
1590 return t;
1593 if (ext_len == 1)
1595 /* We just need to store a single HOST_WIDE_INT. */
1596 HOST_WIDE_INT hwi;
1597 if (TYPE_UNSIGNED (type))
1598 hwi = cst.to_uhwi ();
1599 else
1600 hwi = cst.to_shwi ();
1602 switch (code)
1604 case NULLPTR_TYPE:
1605 gcc_assert (hwi == 0);
1606 /* Fallthru. */
1608 case POINTER_TYPE:
1609 case REFERENCE_TYPE:
1610 /* Ignore pointers, as they were already handled above. */
1611 break;
1613 case BOOLEAN_TYPE:
1614 /* Cache false or true. */
1615 limit = 2;
1616 if (IN_RANGE (hwi, 0, 1))
1617 ix = hwi;
1618 break;
1620 case INTEGER_TYPE:
1621 case OFFSET_TYPE:
1622 if (TYPE_SIGN (type) == UNSIGNED)
1624 /* Cache [0, N). */
1625 limit = param_integer_share_limit;
1626 if (IN_RANGE (hwi, 0, param_integer_share_limit - 1))
1627 ix = hwi;
1629 else
1631 /* Cache [-1, N). */
1632 limit = param_integer_share_limit + 1;
1633 if (IN_RANGE (hwi, -1, param_integer_share_limit - 1))
1634 ix = hwi + 1;
1636 break;
1638 case ENUMERAL_TYPE:
1639 break;
1641 default:
1642 gcc_unreachable ();
1645 if (ix >= 0)
1647 t = cache_wide_int_in_type_cache (type, cst, ix, limit);
1648 /* Make sure no one is clobbering the shared constant. */
1649 gcc_checking_assert (TREE_TYPE (t) == type
1650 && TREE_INT_CST_NUNITS (t) == 1
1651 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1652 && TREE_INT_CST_EXT_NUNITS (t) == 1
1653 && TREE_INT_CST_ELT (t, 0) == hwi);
1654 return t;
1656 else
1658 /* Use the cache of larger shared ints, using int_cst_node as
1659 a temporary. */
1661 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1662 TREE_TYPE (int_cst_node) = type;
1664 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1665 t = *slot;
1666 if (!t)
1668 /* Insert this one into the hash table. */
1669 t = int_cst_node;
1670 *slot = t;
1671 /* Make a new node for next time round. */
1672 int_cst_node = make_int_cst (1, 1);
1676 else
1678 /* The value either hashes properly or we drop it on the floor
1679 for the gc to take care of. There will not be enough of them
1680 to worry about. */
1682 tree nt = build_new_int_cst (type, cst);
1683 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1684 t = *slot;
1685 if (!t)
1687 /* Insert this one into the hash table. */
1688 t = nt;
1689 *slot = t;
1691 else
1692 ggc_free (nt);
1695 return t;
1698 hashval_t
1699 poly_int_cst_hasher::hash (tree t)
1701 inchash::hash hstate;
1703 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1704 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1705 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1707 return hstate.end ();
1710 bool
1711 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1713 if (TREE_TYPE (x) != y.first)
1714 return false;
1715 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1716 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1717 return false;
1718 return true;
1721 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1722 The elements must also have type TYPE. */
1724 tree
1725 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1727 unsigned int prec = TYPE_PRECISION (type);
1728 gcc_assert (prec <= values.coeffs[0].get_precision ());
1729 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1731 inchash::hash h;
1732 h.add_int (TYPE_UID (type));
1733 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1734 h.add_wide_int (c.coeffs[i]);
1735 poly_int_cst_hasher::compare_type comp (type, &c);
1736 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1737 INSERT);
1738 if (*slot == NULL_TREE)
1740 tree coeffs[NUM_POLY_INT_COEFFS];
1741 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1742 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1743 *slot = build_new_poly_int_cst (type, coeffs);
1745 return *slot;
1748 /* Create a constant tree with value VALUE in type TYPE. */
1750 tree
1751 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1753 if (value.is_constant ())
1754 return wide_int_to_tree_1 (type, value.coeffs[0]);
1755 return build_poly_int_cst (type, value);
1758 /* Insert INTEGER_CST T into a cache of integer constants. And return
1759 the cached constant (which may or may not be T). If MIGHT_DUPLICATE
1760 is false, and T falls into the type's 'smaller values' range, there
1761 cannot be an existing entry. Otherwise, if MIGHT_DUPLICATE is true,
1762 or the value is large, should an existing entry exist, it is
1763 returned (rather than inserting T). */
1765 tree
1766 cache_integer_cst (tree t, bool might_duplicate ATTRIBUTE_UNUSED)
1768 tree type = TREE_TYPE (t);
1769 int ix = -1;
1770 int limit = 0;
1771 int prec = TYPE_PRECISION (type);
1773 gcc_assert (!TREE_OVERFLOW (t));
1775 /* The caching indices here must match those in
1776 wide_int_to_type_1. */
1777 switch (TREE_CODE (type))
1779 case NULLPTR_TYPE:
1780 gcc_checking_assert (integer_zerop (t));
1781 /* Fallthru. */
1783 case POINTER_TYPE:
1784 case REFERENCE_TYPE:
1786 if (integer_zerop (t))
1787 ix = 0;
1788 else if (integer_onep (t))
1789 ix = 2;
1791 if (ix >= 0)
1792 limit = 3;
1794 break;
1796 case BOOLEAN_TYPE:
1797 /* Cache false or true. */
1798 limit = 2;
1799 if (wi::ltu_p (wi::to_wide (t), 2))
1800 ix = TREE_INT_CST_ELT (t, 0);
1801 break;
1803 case INTEGER_TYPE:
1804 case OFFSET_TYPE:
1805 if (TYPE_UNSIGNED (type))
1807 /* Cache 0..N */
1808 limit = param_integer_share_limit;
1810 /* This is a little hokie, but if the prec is smaller than
1811 what is necessary to hold param_integer_share_limit, then the
1812 obvious test will not get the correct answer. */
1813 if (prec < HOST_BITS_PER_WIDE_INT)
1815 if (tree_to_uhwi (t)
1816 < (unsigned HOST_WIDE_INT) param_integer_share_limit)
1817 ix = tree_to_uhwi (t);
1819 else if (wi::ltu_p (wi::to_wide (t), param_integer_share_limit))
1820 ix = tree_to_uhwi (t);
1822 else
1824 /* Cache -1..N */
1825 limit = param_integer_share_limit + 1;
1827 if (integer_minus_onep (t))
1828 ix = 0;
1829 else if (!wi::neg_p (wi::to_wide (t)))
1831 if (prec < HOST_BITS_PER_WIDE_INT)
1833 if (tree_to_shwi (t) < param_integer_share_limit)
1834 ix = tree_to_shwi (t) + 1;
1836 else if (wi::ltu_p (wi::to_wide (t), param_integer_share_limit))
1837 ix = tree_to_shwi (t) + 1;
1840 break;
1842 case ENUMERAL_TYPE:
1843 /* The slot used by TYPE_CACHED_VALUES is used for the enum
1844 members. */
1845 break;
1847 default:
1848 gcc_unreachable ();
1851 if (ix >= 0)
1853 /* Look for it in the type's vector of small shared ints. */
1854 if (!TYPE_CACHED_VALUES_P (type))
1856 TYPE_CACHED_VALUES_P (type) = 1;
1857 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1860 if (tree r = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix))
1862 gcc_checking_assert (might_duplicate);
1863 t = r;
1865 else
1866 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1868 else
1870 /* Use the cache of larger shared ints. */
1871 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1872 if (tree r = *slot)
1874 /* If there is already an entry for the number verify it's the
1875 same value. */
1876 gcc_checking_assert (wi::to_wide (tree (r)) == wi::to_wide (t));
1877 /* And return the cached value. */
1878 t = r;
1880 else
1881 /* Otherwise insert this one into the hash table. */
1882 *slot = t;
1885 return t;
1889 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1890 and the rest are zeros. */
1892 tree
1893 build_low_bits_mask (tree type, unsigned bits)
1895 gcc_assert (bits <= TYPE_PRECISION (type));
1897 return wide_int_to_tree (type, wi::mask (bits, false,
1898 TYPE_PRECISION (type)));
1901 /* Checks that X is integer constant that can be expressed in (unsigned)
1902 HOST_WIDE_INT without loss of precision. */
1904 bool
1905 cst_and_fits_in_hwi (const_tree x)
1907 return (TREE_CODE (x) == INTEGER_CST
1908 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1911 /* Build a newly constructed VECTOR_CST with the given values of
1912 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1914 tree
1915 make_vector (unsigned log2_npatterns,
1916 unsigned int nelts_per_pattern MEM_STAT_DECL)
1918 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1919 tree t;
1920 unsigned npatterns = 1 << log2_npatterns;
1921 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1922 unsigned length = (sizeof (struct tree_vector)
1923 + (encoded_nelts - 1) * sizeof (tree));
1925 record_node_allocation_statistics (VECTOR_CST, length);
1927 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1929 TREE_SET_CODE (t, VECTOR_CST);
1930 TREE_CONSTANT (t) = 1;
1931 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1932 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1934 return t;
1937 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1938 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1940 tree
1941 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1943 if (vec_safe_length (v) == 0)
1944 return build_zero_cst (type);
1946 unsigned HOST_WIDE_INT idx, nelts;
1947 tree value;
1949 /* We can't construct a VECTOR_CST for a variable number of elements. */
1950 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1951 tree_vector_builder vec (type, nelts, 1);
1952 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1954 if (TREE_CODE (value) == VECTOR_CST)
1956 /* If NELTS is constant then this must be too. */
1957 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1958 for (unsigned i = 0; i < sub_nelts; ++i)
1959 vec.quick_push (VECTOR_CST_ELT (value, i));
1961 else
1962 vec.quick_push (value);
1964 while (vec.length () < nelts)
1965 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1967 return vec.build ();
1970 /* Build a vector of type VECTYPE where all the elements are SCs. */
1971 tree
1972 build_vector_from_val (tree vectype, tree sc)
1974 unsigned HOST_WIDE_INT i, nunits;
1976 if (sc == error_mark_node)
1977 return sc;
1979 /* Verify that the vector type is suitable for SC. Note that there
1980 is some inconsistency in the type-system with respect to restrict
1981 qualifications of pointers. Vector types always have a main-variant
1982 element type and the qualification is applied to the vector-type.
1983 So TREE_TYPE (vector-type) does not return a properly qualified
1984 vector element-type. */
1985 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1986 TREE_TYPE (vectype)));
1988 if (CONSTANT_CLASS_P (sc))
1990 tree_vector_builder v (vectype, 1, 1);
1991 v.quick_push (sc);
1992 return v.build ();
1994 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1995 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1996 else
1998 vec<constructor_elt, va_gc> *v;
1999 vec_alloc (v, nunits);
2000 for (i = 0; i < nunits; ++i)
2001 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
2002 return build_constructor (vectype, v);
2006 /* If TYPE is not a vector type, just return SC, otherwise return
2007 build_vector_from_val (TYPE, SC). */
2009 tree
2010 build_uniform_cst (tree type, tree sc)
2012 if (!VECTOR_TYPE_P (type))
2013 return sc;
2015 return build_vector_from_val (type, sc);
2018 /* Build a vector series of type TYPE in which element I has the value
2019 BASE + I * STEP. The result is a constant if BASE and STEP are constant
2020 and a VEC_SERIES_EXPR otherwise. */
2022 tree
2023 build_vec_series (tree type, tree base, tree step)
2025 if (integer_zerop (step))
2026 return build_vector_from_val (type, base);
2027 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
2029 tree_vector_builder builder (type, 1, 3);
2030 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
2031 wi::to_wide (base) + wi::to_wide (step));
2032 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
2033 wi::to_wide (elt1) + wi::to_wide (step));
2034 builder.quick_push (base);
2035 builder.quick_push (elt1);
2036 builder.quick_push (elt2);
2037 return builder.build ();
2039 return build2 (VEC_SERIES_EXPR, type, base, step);
2042 /* Return a vector with the same number of units and number of bits
2043 as VEC_TYPE, but in which the elements are a linear series of unsigned
2044 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
2046 tree
2047 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
2049 tree index_vec_type = vec_type;
2050 tree index_elt_type = TREE_TYPE (vec_type);
2051 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
2052 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
2054 index_elt_type = build_nonstandard_integer_type
2055 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
2056 index_vec_type = build_vector_type (index_elt_type, nunits);
2059 tree_vector_builder v (index_vec_type, 1, 3);
2060 for (unsigned int i = 0; i < 3; ++i)
2061 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
2062 return v.build ();
2065 /* Return a VECTOR_CST of type VEC_TYPE in which the first NUM_A
2066 elements are A and the rest are B. */
2068 tree
2069 build_vector_a_then_b (tree vec_type, unsigned int num_a, tree a, tree b)
2071 gcc_assert (known_le (num_a, TYPE_VECTOR_SUBPARTS (vec_type)));
2072 unsigned int count = constant_lower_bound (TYPE_VECTOR_SUBPARTS (vec_type));
2073 /* Optimize the constant case. */
2074 if ((count & 1) == 0 && TYPE_VECTOR_SUBPARTS (vec_type).is_constant ())
2075 count /= 2;
2076 tree_vector_builder builder (vec_type, count, 2);
2077 for (unsigned int i = 0; i < count * 2; ++i)
2078 builder.quick_push (i < num_a ? a : b);
2079 return builder.build ();
2082 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
2083 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
2085 void
2086 recompute_constructor_flags (tree c)
2088 unsigned int i;
2089 tree val;
2090 bool constant_p = true;
2091 bool side_effects_p = false;
2092 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2094 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2096 /* Mostly ctors will have elts that don't have side-effects, so
2097 the usual case is to scan all the elements. Hence a single
2098 loop for both const and side effects, rather than one loop
2099 each (with early outs). */
2100 if (!TREE_CONSTANT (val))
2101 constant_p = false;
2102 if (TREE_SIDE_EFFECTS (val))
2103 side_effects_p = true;
2106 TREE_SIDE_EFFECTS (c) = side_effects_p;
2107 TREE_CONSTANT (c) = constant_p;
2110 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
2111 CONSTRUCTOR C. */
2113 void
2114 verify_constructor_flags (tree c)
2116 unsigned int i;
2117 tree val;
2118 bool constant_p = TREE_CONSTANT (c);
2119 bool side_effects_p = TREE_SIDE_EFFECTS (c);
2120 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2122 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2124 if (constant_p && !TREE_CONSTANT (val))
2125 internal_error ("non-constant element in constant CONSTRUCTOR");
2126 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
2127 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
2131 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2132 are in the vec pointed to by VALS. */
2133 tree
2134 build_constructor (tree type, vec<constructor_elt, va_gc> *vals MEM_STAT_DECL)
2136 tree c = make_node (CONSTRUCTOR PASS_MEM_STAT);
2138 TREE_TYPE (c) = type;
2139 CONSTRUCTOR_ELTS (c) = vals;
2141 recompute_constructor_flags (c);
2143 return c;
2146 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2147 INDEX and VALUE. */
2148 tree
2149 build_constructor_single (tree type, tree index, tree value)
2151 vec<constructor_elt, va_gc> *v;
2152 constructor_elt elt = {index, value};
2154 vec_alloc (v, 1);
2155 v->quick_push (elt);
2157 return build_constructor (type, v);
2161 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2162 are in a list pointed to by VALS. */
2163 tree
2164 build_constructor_from_list (tree type, tree vals)
2166 tree t;
2167 vec<constructor_elt, va_gc> *v = NULL;
2169 if (vals)
2171 vec_alloc (v, list_length (vals));
2172 for (t = vals; t; t = TREE_CHAIN (t))
2173 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2176 return build_constructor (type, v);
2179 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2180 are in a vector pointed to by VALS. Note that the TREE_PURPOSE
2181 fields in the constructor remain null. */
2183 tree
2184 build_constructor_from_vec (tree type, const vec<tree, va_gc> *vals)
2186 vec<constructor_elt, va_gc> *v = NULL;
2188 for (tree t : *vals)
2189 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, t);
2191 return build_constructor (type, v);
2194 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2195 of elements, provided as index/value pairs. */
2197 tree
2198 build_constructor_va (tree type, int nelts, ...)
2200 vec<constructor_elt, va_gc> *v = NULL;
2201 va_list p;
2203 va_start (p, nelts);
2204 vec_alloc (v, nelts);
2205 while (nelts--)
2207 tree index = va_arg (p, tree);
2208 tree value = va_arg (p, tree);
2209 CONSTRUCTOR_APPEND_ELT (v, index, value);
2211 va_end (p);
2212 return build_constructor (type, v);
2215 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2217 tree
2218 build_clobber (tree type)
2220 tree clobber = build_constructor (type, NULL);
2221 TREE_THIS_VOLATILE (clobber) = true;
2222 return clobber;
2225 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2227 tree
2228 build_fixed (tree type, FIXED_VALUE_TYPE f)
2230 tree v;
2231 FIXED_VALUE_TYPE *fp;
2233 v = make_node (FIXED_CST);
2234 fp = ggc_alloc<fixed_value> ();
2235 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2237 TREE_TYPE (v) = type;
2238 TREE_FIXED_CST_PTR (v) = fp;
2239 return v;
2242 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2244 tree
2245 build_real (tree type, REAL_VALUE_TYPE d)
2247 tree v;
2248 REAL_VALUE_TYPE *dp;
2249 int overflow = 0;
2251 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2252 Consider doing it via real_convert now. */
2254 v = make_node (REAL_CST);
2255 dp = ggc_alloc<real_value> ();
2256 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2258 TREE_TYPE (v) = type;
2259 TREE_REAL_CST_PTR (v) = dp;
2260 TREE_OVERFLOW (v) = overflow;
2261 return v;
2264 /* Like build_real, but first truncate D to the type. */
2266 tree
2267 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2269 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2272 /* Return a new REAL_CST node whose type is TYPE
2273 and whose value is the integer value of the INTEGER_CST node I. */
2275 REAL_VALUE_TYPE
2276 real_value_from_int_cst (const_tree type, const_tree i)
2278 REAL_VALUE_TYPE d;
2280 /* Clear all bits of the real value type so that we can later do
2281 bitwise comparisons to see if two values are the same. */
2282 memset (&d, 0, sizeof d);
2284 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2285 TYPE_SIGN (TREE_TYPE (i)));
2286 return d;
2289 /* Given a tree representing an integer constant I, return a tree
2290 representing the same value as a floating-point constant of type TYPE. */
2292 tree
2293 build_real_from_int_cst (tree type, const_tree i)
2295 tree v;
2296 int overflow = TREE_OVERFLOW (i);
2298 v = build_real (type, real_value_from_int_cst (type, i));
2300 TREE_OVERFLOW (v) |= overflow;
2301 return v;
2304 /* Return a new REAL_CST node whose type is TYPE
2305 and whose value is the integer value I which has sign SGN. */
2307 tree
2308 build_real_from_wide (tree type, const wide_int_ref &i, signop sgn)
2310 REAL_VALUE_TYPE d;
2312 /* Clear all bits of the real value type so that we can later do
2313 bitwise comparisons to see if two values are the same. */
2314 memset (&d, 0, sizeof d);
2316 real_from_integer (&d, TYPE_MODE (type), i, sgn);
2317 return build_real (type, d);
2320 /* Return a newly constructed STRING_CST node whose value is the LEN
2321 characters at STR when STR is nonnull, or all zeros otherwise.
2322 Note that for a C string literal, LEN should include the trailing NUL.
2323 The TREE_TYPE is not initialized. */
2325 tree
2326 build_string (unsigned len, const char *str /*= NULL */)
2328 /* Do not waste bytes provided by padding of struct tree_string. */
2329 unsigned size = len + offsetof (struct tree_string, str) + 1;
2331 record_node_allocation_statistics (STRING_CST, size);
2333 tree s = (tree) ggc_internal_alloc (size);
2335 memset (s, 0, sizeof (struct tree_typed));
2336 TREE_SET_CODE (s, STRING_CST);
2337 TREE_CONSTANT (s) = 1;
2338 TREE_STRING_LENGTH (s) = len;
2339 if (str)
2340 memcpy (s->string.str, str, len);
2341 else
2342 memset (s->string.str, 0, len);
2343 s->string.str[len] = '\0';
2345 return s;
2348 /* Return a newly constructed COMPLEX_CST node whose value is
2349 specified by the real and imaginary parts REAL and IMAG.
2350 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2351 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2353 tree
2354 build_complex (tree type, tree real, tree imag)
2356 gcc_assert (CONSTANT_CLASS_P (real));
2357 gcc_assert (CONSTANT_CLASS_P (imag));
2359 tree t = make_node (COMPLEX_CST);
2361 TREE_REALPART (t) = real;
2362 TREE_IMAGPART (t) = imag;
2363 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2364 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2365 return t;
2368 /* Build a complex (inf +- 0i), such as for the result of cproj.
2369 TYPE is the complex tree type of the result. If NEG is true, the
2370 imaginary zero is negative. */
2372 tree
2373 build_complex_inf (tree type, bool neg)
2375 REAL_VALUE_TYPE rinf, rzero = dconst0;
2377 real_inf (&rinf);
2378 rzero.sign = neg;
2379 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2380 build_real (TREE_TYPE (type), rzero));
2383 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2384 element is set to 1. In particular, this is 1 + i for complex types. */
2386 tree
2387 build_each_one_cst (tree type)
2389 if (TREE_CODE (type) == COMPLEX_TYPE)
2391 tree scalar = build_one_cst (TREE_TYPE (type));
2392 return build_complex (type, scalar, scalar);
2394 else
2395 return build_one_cst (type);
2398 /* Return a constant of arithmetic type TYPE which is the
2399 multiplicative identity of the set TYPE. */
2401 tree
2402 build_one_cst (tree type)
2404 switch (TREE_CODE (type))
2406 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2407 case POINTER_TYPE: case REFERENCE_TYPE:
2408 case OFFSET_TYPE:
2409 return build_int_cst (type, 1);
2411 case REAL_TYPE:
2412 return build_real (type, dconst1);
2414 case FIXED_POINT_TYPE:
2415 /* We can only generate 1 for accum types. */
2416 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2417 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2419 case VECTOR_TYPE:
2421 tree scalar = build_one_cst (TREE_TYPE (type));
2423 return build_vector_from_val (type, scalar);
2426 case COMPLEX_TYPE:
2427 return build_complex (type,
2428 build_one_cst (TREE_TYPE (type)),
2429 build_zero_cst (TREE_TYPE (type)));
2431 default:
2432 gcc_unreachable ();
2436 /* Return an integer of type TYPE containing all 1's in as much precision as
2437 it contains, or a complex or vector whose subparts are such integers. */
2439 tree
2440 build_all_ones_cst (tree type)
2442 if (TREE_CODE (type) == COMPLEX_TYPE)
2444 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2445 return build_complex (type, scalar, scalar);
2447 else
2448 return build_minus_one_cst (type);
2451 /* Return a constant of arithmetic type TYPE which is the
2452 opposite of the multiplicative identity of the set TYPE. */
2454 tree
2455 build_minus_one_cst (tree type)
2457 switch (TREE_CODE (type))
2459 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2460 case POINTER_TYPE: case REFERENCE_TYPE:
2461 case OFFSET_TYPE:
2462 return build_int_cst (type, -1);
2464 case REAL_TYPE:
2465 return build_real (type, dconstm1);
2467 case FIXED_POINT_TYPE:
2468 /* We can only generate 1 for accum types. */
2469 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2470 return build_fixed (type,
2471 fixed_from_double_int (double_int_minus_one,
2472 SCALAR_TYPE_MODE (type)));
2474 case VECTOR_TYPE:
2476 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2478 return build_vector_from_val (type, scalar);
2481 case COMPLEX_TYPE:
2482 return build_complex (type,
2483 build_minus_one_cst (TREE_TYPE (type)),
2484 build_zero_cst (TREE_TYPE (type)));
2486 default:
2487 gcc_unreachable ();
2491 /* Build 0 constant of type TYPE. This is used by constructor folding
2492 and thus the constant should be represented in memory by
2493 zero(es). */
2495 tree
2496 build_zero_cst (tree type)
2498 switch (TREE_CODE (type))
2500 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2501 case POINTER_TYPE: case REFERENCE_TYPE:
2502 case OFFSET_TYPE: case NULLPTR_TYPE:
2503 return build_int_cst (type, 0);
2505 case REAL_TYPE:
2506 return build_real (type, dconst0);
2508 case FIXED_POINT_TYPE:
2509 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2511 case VECTOR_TYPE:
2513 tree scalar = build_zero_cst (TREE_TYPE (type));
2515 return build_vector_from_val (type, scalar);
2518 case COMPLEX_TYPE:
2520 tree zero = build_zero_cst (TREE_TYPE (type));
2522 return build_complex (type, zero, zero);
2525 default:
2526 if (!AGGREGATE_TYPE_P (type))
2527 return fold_convert (type, integer_zero_node);
2528 return build_constructor (type, NULL);
2533 /* Build a BINFO with LEN language slots. */
2535 tree
2536 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2538 tree t;
2539 size_t length = (offsetof (struct tree_binfo, base_binfos)
2540 + vec<tree, va_gc>::embedded_size (base_binfos));
2542 record_node_allocation_statistics (TREE_BINFO, length);
2544 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2546 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2548 TREE_SET_CODE (t, TREE_BINFO);
2550 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2552 return t;
2555 /* Create a CASE_LABEL_EXPR tree node and return it. */
2557 tree
2558 build_case_label (tree low_value, tree high_value, tree label_decl)
2560 tree t = make_node (CASE_LABEL_EXPR);
2562 TREE_TYPE (t) = void_type_node;
2563 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2565 CASE_LOW (t) = low_value;
2566 CASE_HIGH (t) = high_value;
2567 CASE_LABEL (t) = label_decl;
2568 CASE_CHAIN (t) = NULL_TREE;
2570 return t;
2573 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2574 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2575 The latter determines the length of the HOST_WIDE_INT vector. */
2577 tree
2578 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2580 tree t;
2581 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2582 + sizeof (struct tree_int_cst));
2584 gcc_assert (len);
2585 record_node_allocation_statistics (INTEGER_CST, length);
2587 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2589 TREE_SET_CODE (t, INTEGER_CST);
2590 TREE_INT_CST_NUNITS (t) = len;
2591 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2592 /* to_offset can only be applied to trees that are offset_int-sized
2593 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2594 must be exactly the precision of offset_int and so LEN is correct. */
2595 if (ext_len <= OFFSET_INT_ELTS)
2596 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2597 else
2598 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2600 TREE_CONSTANT (t) = 1;
2602 return t;
2605 /* Build a newly constructed TREE_VEC node of length LEN. */
2607 tree
2608 make_tree_vec (int len MEM_STAT_DECL)
2610 tree t;
2611 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2613 record_node_allocation_statistics (TREE_VEC, length);
2615 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2617 TREE_SET_CODE (t, TREE_VEC);
2618 TREE_VEC_LENGTH (t) = len;
2620 return t;
2623 /* Grow a TREE_VEC node to new length LEN. */
2625 tree
2626 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2628 gcc_assert (TREE_CODE (v) == TREE_VEC);
2630 int oldlen = TREE_VEC_LENGTH (v);
2631 gcc_assert (len > oldlen);
2633 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2634 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2636 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2638 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2640 TREE_VEC_LENGTH (v) = len;
2642 return v;
2645 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2646 fixed, and scalar, complex or vector. */
2648 bool
2649 zerop (const_tree expr)
2651 return (integer_zerop (expr)
2652 || real_zerop (expr)
2653 || fixed_zerop (expr));
2656 /* Return 1 if EXPR is the integer constant zero or a complex constant
2657 of zero, or a location wrapper for such a constant. */
2659 bool
2660 integer_zerop (const_tree expr)
2662 STRIP_ANY_LOCATION_WRAPPER (expr);
2664 switch (TREE_CODE (expr))
2666 case INTEGER_CST:
2667 return wi::to_wide (expr) == 0;
2668 case COMPLEX_CST:
2669 return (integer_zerop (TREE_REALPART (expr))
2670 && integer_zerop (TREE_IMAGPART (expr)));
2671 case VECTOR_CST:
2672 return (VECTOR_CST_NPATTERNS (expr) == 1
2673 && VECTOR_CST_DUPLICATE_P (expr)
2674 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2675 default:
2676 return false;
2680 /* Return 1 if EXPR is the integer constant one or the corresponding
2681 complex constant, or a location wrapper for such a constant. */
2683 bool
2684 integer_onep (const_tree expr)
2686 STRIP_ANY_LOCATION_WRAPPER (expr);
2688 switch (TREE_CODE (expr))
2690 case INTEGER_CST:
2691 return wi::eq_p (wi::to_widest (expr), 1);
2692 case COMPLEX_CST:
2693 return (integer_onep (TREE_REALPART (expr))
2694 && integer_zerop (TREE_IMAGPART (expr)));
2695 case VECTOR_CST:
2696 return (VECTOR_CST_NPATTERNS (expr) == 1
2697 && VECTOR_CST_DUPLICATE_P (expr)
2698 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2699 default:
2700 return false;
2704 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2705 return 1 if every piece is the integer constant one.
2706 Also return 1 for location wrappers for such a constant. */
2708 bool
2709 integer_each_onep (const_tree expr)
2711 STRIP_ANY_LOCATION_WRAPPER (expr);
2713 if (TREE_CODE (expr) == COMPLEX_CST)
2714 return (integer_onep (TREE_REALPART (expr))
2715 && integer_onep (TREE_IMAGPART (expr)));
2716 else
2717 return integer_onep (expr);
2720 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2721 it contains, or a complex or vector whose subparts are such integers,
2722 or a location wrapper for such a constant. */
2724 bool
2725 integer_all_onesp (const_tree expr)
2727 STRIP_ANY_LOCATION_WRAPPER (expr);
2729 if (TREE_CODE (expr) == COMPLEX_CST
2730 && integer_all_onesp (TREE_REALPART (expr))
2731 && integer_all_onesp (TREE_IMAGPART (expr)))
2732 return true;
2734 else if (TREE_CODE (expr) == VECTOR_CST)
2735 return (VECTOR_CST_NPATTERNS (expr) == 1
2736 && VECTOR_CST_DUPLICATE_P (expr)
2737 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2739 else if (TREE_CODE (expr) != INTEGER_CST)
2740 return false;
2742 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2743 == wi::to_wide (expr));
2746 /* Return 1 if EXPR is the integer constant minus one, or a location wrapper
2747 for such a constant. */
2749 bool
2750 integer_minus_onep (const_tree expr)
2752 STRIP_ANY_LOCATION_WRAPPER (expr);
2754 if (TREE_CODE (expr) == COMPLEX_CST)
2755 return (integer_all_onesp (TREE_REALPART (expr))
2756 && integer_zerop (TREE_IMAGPART (expr)));
2757 else
2758 return integer_all_onesp (expr);
2761 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2762 one bit on), or a location wrapper for such a constant. */
2764 bool
2765 integer_pow2p (const_tree expr)
2767 STRIP_ANY_LOCATION_WRAPPER (expr);
2769 if (TREE_CODE (expr) == COMPLEX_CST
2770 && integer_pow2p (TREE_REALPART (expr))
2771 && integer_zerop (TREE_IMAGPART (expr)))
2772 return true;
2774 if (TREE_CODE (expr) != INTEGER_CST)
2775 return false;
2777 return wi::popcount (wi::to_wide (expr)) == 1;
2780 /* Return 1 if EXPR is an integer constant other than zero or a
2781 complex constant other than zero, or a location wrapper for such a
2782 constant. */
2784 bool
2785 integer_nonzerop (const_tree expr)
2787 STRIP_ANY_LOCATION_WRAPPER (expr);
2789 return ((TREE_CODE (expr) == INTEGER_CST
2790 && wi::to_wide (expr) != 0)
2791 || (TREE_CODE (expr) == COMPLEX_CST
2792 && (integer_nonzerop (TREE_REALPART (expr))
2793 || integer_nonzerop (TREE_IMAGPART (expr)))));
2796 /* Return 1 if EXPR is the integer constant one. For vector,
2797 return 1 if every piece is the integer constant minus one
2798 (representing the value TRUE).
2799 Also return 1 for location wrappers for such a constant. */
2801 bool
2802 integer_truep (const_tree expr)
2804 STRIP_ANY_LOCATION_WRAPPER (expr);
2806 if (TREE_CODE (expr) == VECTOR_CST)
2807 return integer_all_onesp (expr);
2808 return integer_onep (expr);
2811 /* Return 1 if EXPR is the fixed-point constant zero, or a location wrapper
2812 for such a constant. */
2814 bool
2815 fixed_zerop (const_tree expr)
2817 STRIP_ANY_LOCATION_WRAPPER (expr);
2819 return (TREE_CODE (expr) == FIXED_CST
2820 && TREE_FIXED_CST (expr).data.is_zero ());
2823 /* Return the power of two represented by a tree node known to be a
2824 power of two. */
2827 tree_log2 (const_tree expr)
2829 if (TREE_CODE (expr) == COMPLEX_CST)
2830 return tree_log2 (TREE_REALPART (expr));
2832 return wi::exact_log2 (wi::to_wide (expr));
2835 /* Similar, but return the largest integer Y such that 2 ** Y is less
2836 than or equal to EXPR. */
2839 tree_floor_log2 (const_tree expr)
2841 if (TREE_CODE (expr) == COMPLEX_CST)
2842 return tree_log2 (TREE_REALPART (expr));
2844 return wi::floor_log2 (wi::to_wide (expr));
2847 /* Return number of known trailing zero bits in EXPR, or, if the value of
2848 EXPR is known to be zero, the precision of it's type. */
2850 unsigned int
2851 tree_ctz (const_tree expr)
2853 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2854 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2855 return 0;
2857 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2858 switch (TREE_CODE (expr))
2860 case INTEGER_CST:
2861 ret1 = wi::ctz (wi::to_wide (expr));
2862 return MIN (ret1, prec);
2863 case SSA_NAME:
2864 ret1 = wi::ctz (get_nonzero_bits (expr));
2865 return MIN (ret1, prec);
2866 case PLUS_EXPR:
2867 case MINUS_EXPR:
2868 case BIT_IOR_EXPR:
2869 case BIT_XOR_EXPR:
2870 case MIN_EXPR:
2871 case MAX_EXPR:
2872 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2873 if (ret1 == 0)
2874 return ret1;
2875 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2876 return MIN (ret1, ret2);
2877 case POINTER_PLUS_EXPR:
2878 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2879 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2880 /* Second operand is sizetype, which could be in theory
2881 wider than pointer's precision. Make sure we never
2882 return more than prec. */
2883 ret2 = MIN (ret2, prec);
2884 return MIN (ret1, ret2);
2885 case BIT_AND_EXPR:
2886 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2887 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2888 return MAX (ret1, ret2);
2889 case MULT_EXPR:
2890 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2891 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2892 return MIN (ret1 + ret2, prec);
2893 case LSHIFT_EXPR:
2894 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2895 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2896 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2898 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2899 return MIN (ret1 + ret2, prec);
2901 return ret1;
2902 case RSHIFT_EXPR:
2903 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2904 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2906 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2907 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2908 if (ret1 > ret2)
2909 return ret1 - ret2;
2911 return 0;
2912 case TRUNC_DIV_EXPR:
2913 case CEIL_DIV_EXPR:
2914 case FLOOR_DIV_EXPR:
2915 case ROUND_DIV_EXPR:
2916 case EXACT_DIV_EXPR:
2917 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2918 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2920 int l = tree_log2 (TREE_OPERAND (expr, 1));
2921 if (l >= 0)
2923 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2924 ret2 = l;
2925 if (ret1 > ret2)
2926 return ret1 - ret2;
2929 return 0;
2930 CASE_CONVERT:
2931 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2932 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2933 ret1 = prec;
2934 return MIN (ret1, prec);
2935 case SAVE_EXPR:
2936 return tree_ctz (TREE_OPERAND (expr, 0));
2937 case COND_EXPR:
2938 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2939 if (ret1 == 0)
2940 return 0;
2941 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2942 return MIN (ret1, ret2);
2943 case COMPOUND_EXPR:
2944 return tree_ctz (TREE_OPERAND (expr, 1));
2945 case ADDR_EXPR:
2946 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2947 if (ret1 > BITS_PER_UNIT)
2949 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2950 return MIN (ret1, prec);
2952 return 0;
2953 default:
2954 return 0;
2958 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2959 decimal float constants, so don't return 1 for them.
2960 Also return 1 for location wrappers around such a constant. */
2962 bool
2963 real_zerop (const_tree expr)
2965 STRIP_ANY_LOCATION_WRAPPER (expr);
2967 switch (TREE_CODE (expr))
2969 case REAL_CST:
2970 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2971 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2972 case COMPLEX_CST:
2973 return real_zerop (TREE_REALPART (expr))
2974 && real_zerop (TREE_IMAGPART (expr));
2975 case VECTOR_CST:
2977 /* Don't simply check for a duplicate because the predicate
2978 accepts both +0.0 and -0.0. */
2979 unsigned count = vector_cst_encoded_nelts (expr);
2980 for (unsigned int i = 0; i < count; ++i)
2981 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2982 return false;
2983 return true;
2985 default:
2986 return false;
2990 /* Return 1 if EXPR is the real constant one in real or complex form.
2991 Trailing zeroes matter for decimal float constants, so don't return
2992 1 for them.
2993 Also return 1 for location wrappers around such a constant. */
2995 bool
2996 real_onep (const_tree expr)
2998 STRIP_ANY_LOCATION_WRAPPER (expr);
3000 switch (TREE_CODE (expr))
3002 case REAL_CST:
3003 return real_equal (&TREE_REAL_CST (expr), &dconst1)
3004 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
3005 case COMPLEX_CST:
3006 return real_onep (TREE_REALPART (expr))
3007 && real_zerop (TREE_IMAGPART (expr));
3008 case VECTOR_CST:
3009 return (VECTOR_CST_NPATTERNS (expr) == 1
3010 && VECTOR_CST_DUPLICATE_P (expr)
3011 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
3012 default:
3013 return false;
3017 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
3018 matter for decimal float constants, so don't return 1 for them.
3019 Also return 1 for location wrappers around such a constant. */
3021 bool
3022 real_minus_onep (const_tree expr)
3024 STRIP_ANY_LOCATION_WRAPPER (expr);
3026 switch (TREE_CODE (expr))
3028 case REAL_CST:
3029 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
3030 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
3031 case COMPLEX_CST:
3032 return real_minus_onep (TREE_REALPART (expr))
3033 && real_zerop (TREE_IMAGPART (expr));
3034 case VECTOR_CST:
3035 return (VECTOR_CST_NPATTERNS (expr) == 1
3036 && VECTOR_CST_DUPLICATE_P (expr)
3037 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
3038 default:
3039 return false;
3043 /* Nonzero if EXP is a constant or a cast of a constant. */
3045 bool
3046 really_constant_p (const_tree exp)
3048 /* This is not quite the same as STRIP_NOPS. It does more. */
3049 while (CONVERT_EXPR_P (exp)
3050 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3051 exp = TREE_OPERAND (exp, 0);
3052 return TREE_CONSTANT (exp);
3055 /* Return true if T holds a polynomial pointer difference, storing it in
3056 *VALUE if so. A true return means that T's precision is no greater
3057 than 64 bits, which is the largest address space we support, so *VALUE
3058 never loses precision. However, the signedness of the result does
3059 not necessarily match the signedness of T: sometimes an unsigned type
3060 like sizetype is used to encode a value that is actually negative. */
3062 bool
3063 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
3065 if (!t)
3066 return false;
3067 if (TREE_CODE (t) == INTEGER_CST)
3069 if (!cst_and_fits_in_hwi (t))
3070 return false;
3071 *value = int_cst_value (t);
3072 return true;
3074 if (POLY_INT_CST_P (t))
3076 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
3077 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
3078 return false;
3079 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
3080 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
3081 return true;
3083 return false;
3086 poly_int64
3087 tree_to_poly_int64 (const_tree t)
3089 gcc_assert (tree_fits_poly_int64_p (t));
3090 if (POLY_INT_CST_P (t))
3091 return poly_int_cst_value (t).force_shwi ();
3092 return TREE_INT_CST_LOW (t);
3095 poly_uint64
3096 tree_to_poly_uint64 (const_tree t)
3098 gcc_assert (tree_fits_poly_uint64_p (t));
3099 if (POLY_INT_CST_P (t))
3100 return poly_int_cst_value (t).force_uhwi ();
3101 return TREE_INT_CST_LOW (t);
3104 /* Return first list element whose TREE_VALUE is ELEM.
3105 Return 0 if ELEM is not in LIST. */
3107 tree
3108 value_member (tree elem, tree list)
3110 while (list)
3112 if (elem == TREE_VALUE (list))
3113 return list;
3114 list = TREE_CHAIN (list);
3116 return NULL_TREE;
3119 /* Return first list element whose TREE_PURPOSE is ELEM.
3120 Return 0 if ELEM is not in LIST. */
3122 tree
3123 purpose_member (const_tree elem, tree list)
3125 while (list)
3127 if (elem == TREE_PURPOSE (list))
3128 return list;
3129 list = TREE_CHAIN (list);
3131 return NULL_TREE;
3134 /* Return true if ELEM is in V. */
3136 bool
3137 vec_member (const_tree elem, vec<tree, va_gc> *v)
3139 unsigned ix;
3140 tree t;
3141 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
3142 if (elem == t)
3143 return true;
3144 return false;
3147 /* Returns element number IDX (zero-origin) of chain CHAIN, or
3148 NULL_TREE. */
3150 tree
3151 chain_index (int idx, tree chain)
3153 for (; chain && idx > 0; --idx)
3154 chain = TREE_CHAIN (chain);
3155 return chain;
3158 /* Return nonzero if ELEM is part of the chain CHAIN. */
3160 bool
3161 chain_member (const_tree elem, const_tree chain)
3163 while (chain)
3165 if (elem == chain)
3166 return true;
3167 chain = DECL_CHAIN (chain);
3170 return false;
3173 /* Return the length of a chain of nodes chained through TREE_CHAIN.
3174 We expect a null pointer to mark the end of the chain.
3175 This is the Lisp primitive `length'. */
3178 list_length (const_tree t)
3180 const_tree p = t;
3181 #ifdef ENABLE_TREE_CHECKING
3182 const_tree q = t;
3183 #endif
3184 int len = 0;
3186 while (p)
3188 p = TREE_CHAIN (p);
3189 #ifdef ENABLE_TREE_CHECKING
3190 if (len % 2)
3191 q = TREE_CHAIN (q);
3192 gcc_assert (p != q);
3193 #endif
3194 len++;
3197 return len;
3200 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3201 UNION_TYPE TYPE, or NULL_TREE if none. */
3203 tree
3204 first_field (const_tree type)
3206 tree t = TYPE_FIELDS (type);
3207 while (t && TREE_CODE (t) != FIELD_DECL)
3208 t = TREE_CHAIN (t);
3209 return t;
3212 /* Returns the last FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3213 UNION_TYPE TYPE, or NULL_TREE if none. */
3215 tree
3216 last_field (const_tree type)
3218 tree last = NULL_TREE;
3220 for (tree fld = TYPE_FIELDS (type); fld; fld = TREE_CHAIN (fld))
3222 if (TREE_CODE (fld) != FIELD_DECL)
3223 continue;
3225 last = fld;
3228 return last;
3231 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3232 by modifying the last node in chain 1 to point to chain 2.
3233 This is the Lisp primitive `nconc'. */
3235 tree
3236 chainon (tree op1, tree op2)
3238 tree t1;
3240 if (!op1)
3241 return op2;
3242 if (!op2)
3243 return op1;
3245 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3246 continue;
3247 TREE_CHAIN (t1) = op2;
3249 #ifdef ENABLE_TREE_CHECKING
3251 tree t2;
3252 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3253 gcc_assert (t2 != t1);
3255 #endif
3257 return op1;
3260 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3262 tree
3263 tree_last (tree chain)
3265 tree next;
3266 if (chain)
3267 while ((next = TREE_CHAIN (chain)))
3268 chain = next;
3269 return chain;
3272 /* Reverse the order of elements in the chain T,
3273 and return the new head of the chain (old last element). */
3275 tree
3276 nreverse (tree t)
3278 tree prev = 0, decl, next;
3279 for (decl = t; decl; decl = next)
3281 /* We shouldn't be using this function to reverse BLOCK chains; we
3282 have blocks_nreverse for that. */
3283 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3284 next = TREE_CHAIN (decl);
3285 TREE_CHAIN (decl) = prev;
3286 prev = decl;
3288 return prev;
3291 /* Return a newly created TREE_LIST node whose
3292 purpose and value fields are PARM and VALUE. */
3294 tree
3295 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3297 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3298 TREE_PURPOSE (t) = parm;
3299 TREE_VALUE (t) = value;
3300 return t;
3303 /* Build a chain of TREE_LIST nodes from a vector. */
3305 tree
3306 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3308 tree ret = NULL_TREE;
3309 tree *pp = &ret;
3310 unsigned int i;
3311 tree t;
3312 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3314 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3315 pp = &TREE_CHAIN (*pp);
3317 return ret;
3320 /* Return a newly created TREE_LIST node whose
3321 purpose and value fields are PURPOSE and VALUE
3322 and whose TREE_CHAIN is CHAIN. */
3324 tree
3325 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3327 tree node;
3329 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3330 memset (node, 0, sizeof (struct tree_common));
3332 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3334 TREE_SET_CODE (node, TREE_LIST);
3335 TREE_CHAIN (node) = chain;
3336 TREE_PURPOSE (node) = purpose;
3337 TREE_VALUE (node) = value;
3338 return node;
3341 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3342 trees. */
3344 vec<tree, va_gc> *
3345 ctor_to_vec (tree ctor)
3347 vec<tree, va_gc> *vec;
3348 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3349 unsigned int ix;
3350 tree val;
3352 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3353 vec->quick_push (val);
3355 return vec;
3358 /* Return the size nominally occupied by an object of type TYPE
3359 when it resides in memory. The value is measured in units of bytes,
3360 and its data type is that normally used for type sizes
3361 (which is the first type created by make_signed_type or
3362 make_unsigned_type). */
3364 tree
3365 size_in_bytes_loc (location_t loc, const_tree type)
3367 tree t;
3369 if (type == error_mark_node)
3370 return integer_zero_node;
3372 type = TYPE_MAIN_VARIANT (type);
3373 t = TYPE_SIZE_UNIT (type);
3375 if (t == 0)
3377 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3378 return size_zero_node;
3381 return t;
3384 /* Return the size of TYPE (in bytes) as a wide integer
3385 or return -1 if the size can vary or is larger than an integer. */
3387 HOST_WIDE_INT
3388 int_size_in_bytes (const_tree type)
3390 tree t;
3392 if (type == error_mark_node)
3393 return 0;
3395 type = TYPE_MAIN_VARIANT (type);
3396 t = TYPE_SIZE_UNIT (type);
3398 if (t && tree_fits_uhwi_p (t))
3399 return TREE_INT_CST_LOW (t);
3400 else
3401 return -1;
3404 /* Return the maximum size of TYPE (in bytes) as a wide integer
3405 or return -1 if the size can vary or is larger than an integer. */
3407 HOST_WIDE_INT
3408 max_int_size_in_bytes (const_tree type)
3410 HOST_WIDE_INT size = -1;
3411 tree size_tree;
3413 /* If this is an array type, check for a possible MAX_SIZE attached. */
3415 if (TREE_CODE (type) == ARRAY_TYPE)
3417 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3419 if (size_tree && tree_fits_uhwi_p (size_tree))
3420 size = tree_to_uhwi (size_tree);
3423 /* If we still haven't been able to get a size, see if the language
3424 can compute a maximum size. */
3426 if (size == -1)
3428 size_tree = lang_hooks.types.max_size (type);
3430 if (size_tree && tree_fits_uhwi_p (size_tree))
3431 size = tree_to_uhwi (size_tree);
3434 return size;
3437 /* Return the bit position of FIELD, in bits from the start of the record.
3438 This is a tree of type bitsizetype. */
3440 tree
3441 bit_position (const_tree field)
3443 return bit_from_pos (DECL_FIELD_OFFSET (field),
3444 DECL_FIELD_BIT_OFFSET (field));
3447 /* Return the byte position of FIELD, in bytes from the start of the record.
3448 This is a tree of type sizetype. */
3450 tree
3451 byte_position (const_tree field)
3453 return byte_from_pos (DECL_FIELD_OFFSET (field),
3454 DECL_FIELD_BIT_OFFSET (field));
3457 /* Likewise, but return as an integer. It must be representable in
3458 that way (since it could be a signed value, we don't have the
3459 option of returning -1 like int_size_in_byte can. */
3461 HOST_WIDE_INT
3462 int_byte_position (const_tree field)
3464 return tree_to_shwi (byte_position (field));
3467 /* Return, as a tree node, the number of elements for TYPE (which is an
3468 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3470 tree
3471 array_type_nelts (const_tree type)
3473 tree index_type, min, max;
3475 /* If they did it with unspecified bounds, then we should have already
3476 given an error about it before we got here. */
3477 if (! TYPE_DOMAIN (type))
3478 return error_mark_node;
3480 index_type = TYPE_DOMAIN (type);
3481 min = TYPE_MIN_VALUE (index_type);
3482 max = TYPE_MAX_VALUE (index_type);
3484 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3485 if (!max)
3487 /* zero sized arrays are represented from C FE as complete types with
3488 NULL TYPE_MAX_VALUE and zero TYPE_SIZE, while C++ FE represents
3489 them as min 0, max -1. */
3490 if (COMPLETE_TYPE_P (type)
3491 && integer_zerop (TYPE_SIZE (type))
3492 && integer_zerop (min))
3493 return build_int_cst (TREE_TYPE (min), -1);
3495 return error_mark_node;
3498 return (integer_zerop (min)
3499 ? max
3500 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3503 /* If arg is static -- a reference to an object in static storage -- then
3504 return the object. This is not the same as the C meaning of `static'.
3505 If arg isn't static, return NULL. */
3507 tree
3508 staticp (tree arg)
3510 switch (TREE_CODE (arg))
3512 case FUNCTION_DECL:
3513 /* Nested functions are static, even though taking their address will
3514 involve a trampoline as we unnest the nested function and create
3515 the trampoline on the tree level. */
3516 return arg;
3518 case VAR_DECL:
3519 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3520 && ! DECL_THREAD_LOCAL_P (arg)
3521 && ! DECL_DLLIMPORT_P (arg)
3522 ? arg : NULL);
3524 case CONST_DECL:
3525 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3526 ? arg : NULL);
3528 case CONSTRUCTOR:
3529 return TREE_STATIC (arg) ? arg : NULL;
3531 case LABEL_DECL:
3532 case STRING_CST:
3533 return arg;
3535 case COMPONENT_REF:
3536 /* If the thing being referenced is not a field, then it is
3537 something language specific. */
3538 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3540 /* If we are referencing a bitfield, we can't evaluate an
3541 ADDR_EXPR at compile time and so it isn't a constant. */
3542 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3543 return NULL;
3545 return staticp (TREE_OPERAND (arg, 0));
3547 case BIT_FIELD_REF:
3548 return NULL;
3550 case INDIRECT_REF:
3551 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3553 case ARRAY_REF:
3554 case ARRAY_RANGE_REF:
3555 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3556 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3557 return staticp (TREE_OPERAND (arg, 0));
3558 else
3559 return NULL;
3561 case COMPOUND_LITERAL_EXPR:
3562 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3564 default:
3565 return NULL;
3572 /* Return whether OP is a DECL whose address is function-invariant. */
3574 bool
3575 decl_address_invariant_p (const_tree op)
3577 /* The conditions below are slightly less strict than the one in
3578 staticp. */
3580 switch (TREE_CODE (op))
3582 case PARM_DECL:
3583 case RESULT_DECL:
3584 case LABEL_DECL:
3585 case FUNCTION_DECL:
3586 return true;
3588 case VAR_DECL:
3589 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3590 || DECL_THREAD_LOCAL_P (op)
3591 || DECL_CONTEXT (op) == current_function_decl
3592 || decl_function_context (op) == current_function_decl)
3593 return true;
3594 break;
3596 case CONST_DECL:
3597 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3598 || decl_function_context (op) == current_function_decl)
3599 return true;
3600 break;
3602 default:
3603 break;
3606 return false;
3609 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3611 bool
3612 decl_address_ip_invariant_p (const_tree op)
3614 /* The conditions below are slightly less strict than the one in
3615 staticp. */
3617 switch (TREE_CODE (op))
3619 case LABEL_DECL:
3620 case FUNCTION_DECL:
3621 case STRING_CST:
3622 return true;
3624 case VAR_DECL:
3625 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3626 && !DECL_DLLIMPORT_P (op))
3627 || DECL_THREAD_LOCAL_P (op))
3628 return true;
3629 break;
3631 case CONST_DECL:
3632 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3633 return true;
3634 break;
3636 default:
3637 break;
3640 return false;
3644 /* Return true if T is function-invariant (internal function, does
3645 not handle arithmetic; that's handled in skip_simple_arithmetic and
3646 tree_invariant_p). */
3648 static bool
3649 tree_invariant_p_1 (tree t)
3651 tree op;
3653 if (TREE_CONSTANT (t)
3654 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3655 return true;
3657 switch (TREE_CODE (t))
3659 case SAVE_EXPR:
3660 return true;
3662 case ADDR_EXPR:
3663 op = TREE_OPERAND (t, 0);
3664 while (handled_component_p (op))
3666 switch (TREE_CODE (op))
3668 case ARRAY_REF:
3669 case ARRAY_RANGE_REF:
3670 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3671 || TREE_OPERAND (op, 2) != NULL_TREE
3672 || TREE_OPERAND (op, 3) != NULL_TREE)
3673 return false;
3674 break;
3676 case COMPONENT_REF:
3677 if (TREE_OPERAND (op, 2) != NULL_TREE)
3678 return false;
3679 break;
3681 default:;
3683 op = TREE_OPERAND (op, 0);
3686 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3688 default:
3689 break;
3692 return false;
3695 /* Return true if T is function-invariant. */
3697 bool
3698 tree_invariant_p (tree t)
3700 tree inner = skip_simple_arithmetic (t);
3701 return tree_invariant_p_1 (inner);
3704 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3705 Do this to any expression which may be used in more than one place,
3706 but must be evaluated only once.
3708 Normally, expand_expr would reevaluate the expression each time.
3709 Calling save_expr produces something that is evaluated and recorded
3710 the first time expand_expr is called on it. Subsequent calls to
3711 expand_expr just reuse the recorded value.
3713 The call to expand_expr that generates code that actually computes
3714 the value is the first call *at compile time*. Subsequent calls
3715 *at compile time* generate code to use the saved value.
3716 This produces correct result provided that *at run time* control
3717 always flows through the insns made by the first expand_expr
3718 before reaching the other places where the save_expr was evaluated.
3719 You, the caller of save_expr, must make sure this is so.
3721 Constants, and certain read-only nodes, are returned with no
3722 SAVE_EXPR because that is safe. Expressions containing placeholders
3723 are not touched; see tree.def for an explanation of what these
3724 are used for. */
3726 tree
3727 save_expr (tree expr)
3729 tree inner;
3731 /* If the tree evaluates to a constant, then we don't want to hide that
3732 fact (i.e. this allows further folding, and direct checks for constants).
3733 However, a read-only object that has side effects cannot be bypassed.
3734 Since it is no problem to reevaluate literals, we just return the
3735 literal node. */
3736 inner = skip_simple_arithmetic (expr);
3737 if (TREE_CODE (inner) == ERROR_MARK)
3738 return inner;
3740 if (tree_invariant_p_1 (inner))
3741 return expr;
3743 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3744 it means that the size or offset of some field of an object depends on
3745 the value within another field.
3747 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3748 and some variable since it would then need to be both evaluated once and
3749 evaluated more than once. Front-ends must assure this case cannot
3750 happen by surrounding any such subexpressions in their own SAVE_EXPR
3751 and forcing evaluation at the proper time. */
3752 if (contains_placeholder_p (inner))
3753 return expr;
3755 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3757 /* This expression might be placed ahead of a jump to ensure that the
3758 value was computed on both sides of the jump. So make sure it isn't
3759 eliminated as dead. */
3760 TREE_SIDE_EFFECTS (expr) = 1;
3761 return expr;
3764 /* Look inside EXPR into any simple arithmetic operations. Return the
3765 outermost non-arithmetic or non-invariant node. */
3767 tree
3768 skip_simple_arithmetic (tree expr)
3770 /* We don't care about whether this can be used as an lvalue in this
3771 context. */
3772 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3773 expr = TREE_OPERAND (expr, 0);
3775 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3776 a constant, it will be more efficient to not make another SAVE_EXPR since
3777 it will allow better simplification and GCSE will be able to merge the
3778 computations if they actually occur. */
3779 while (true)
3781 if (UNARY_CLASS_P (expr))
3782 expr = TREE_OPERAND (expr, 0);
3783 else if (BINARY_CLASS_P (expr))
3785 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3786 expr = TREE_OPERAND (expr, 0);
3787 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3788 expr = TREE_OPERAND (expr, 1);
3789 else
3790 break;
3792 else
3793 break;
3796 return expr;
3799 /* Look inside EXPR into simple arithmetic operations involving constants.
3800 Return the outermost non-arithmetic or non-constant node. */
3802 tree
3803 skip_simple_constant_arithmetic (tree expr)
3805 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3806 expr = TREE_OPERAND (expr, 0);
3808 while (true)
3810 if (UNARY_CLASS_P (expr))
3811 expr = TREE_OPERAND (expr, 0);
3812 else if (BINARY_CLASS_P (expr))
3814 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3815 expr = TREE_OPERAND (expr, 0);
3816 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3817 expr = TREE_OPERAND (expr, 1);
3818 else
3819 break;
3821 else
3822 break;
3825 return expr;
3828 /* Return which tree structure is used by T. */
3830 enum tree_node_structure_enum
3831 tree_node_structure (const_tree t)
3833 const enum tree_code code = TREE_CODE (t);
3834 return tree_node_structure_for_code (code);
3837 /* Set various status flags when building a CALL_EXPR object T. */
3839 static void
3840 process_call_operands (tree t)
3842 bool side_effects = TREE_SIDE_EFFECTS (t);
3843 bool read_only = false;
3844 int i = call_expr_flags (t);
3846 /* Calls have side-effects, except those to const or pure functions. */
3847 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3848 side_effects = true;
3849 /* Propagate TREE_READONLY of arguments for const functions. */
3850 if (i & ECF_CONST)
3851 read_only = true;
3853 if (!side_effects || read_only)
3854 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3856 tree op = TREE_OPERAND (t, i);
3857 if (op && TREE_SIDE_EFFECTS (op))
3858 side_effects = true;
3859 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3860 read_only = false;
3863 TREE_SIDE_EFFECTS (t) = side_effects;
3864 TREE_READONLY (t) = read_only;
3867 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3868 size or offset that depends on a field within a record. */
3870 bool
3871 contains_placeholder_p (const_tree exp)
3873 enum tree_code code;
3875 if (!exp)
3876 return 0;
3878 code = TREE_CODE (exp);
3879 if (code == PLACEHOLDER_EXPR)
3880 return 1;
3882 switch (TREE_CODE_CLASS (code))
3884 case tcc_reference:
3885 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3886 position computations since they will be converted into a
3887 WITH_RECORD_EXPR involving the reference, which will assume
3888 here will be valid. */
3889 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3891 case tcc_exceptional:
3892 if (code == TREE_LIST)
3893 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3894 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3895 break;
3897 case tcc_unary:
3898 case tcc_binary:
3899 case tcc_comparison:
3900 case tcc_expression:
3901 switch (code)
3903 case COMPOUND_EXPR:
3904 /* Ignoring the first operand isn't quite right, but works best. */
3905 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3907 case COND_EXPR:
3908 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3909 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3910 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3912 case SAVE_EXPR:
3913 /* The save_expr function never wraps anything containing
3914 a PLACEHOLDER_EXPR. */
3915 return 0;
3917 default:
3918 break;
3921 switch (TREE_CODE_LENGTH (code))
3923 case 1:
3924 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3925 case 2:
3926 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3927 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3928 default:
3929 return 0;
3932 case tcc_vl_exp:
3933 switch (code)
3935 case CALL_EXPR:
3937 const_tree arg;
3938 const_call_expr_arg_iterator iter;
3939 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3940 if (CONTAINS_PLACEHOLDER_P (arg))
3941 return 1;
3942 return 0;
3944 default:
3945 return 0;
3948 default:
3949 return 0;
3951 return 0;
3954 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3955 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3956 field positions. */
3958 static bool
3959 type_contains_placeholder_1 (const_tree type)
3961 /* If the size contains a placeholder or the parent type (component type in
3962 the case of arrays) type involves a placeholder, this type does. */
3963 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3964 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3965 || (!POINTER_TYPE_P (type)
3966 && TREE_TYPE (type)
3967 && type_contains_placeholder_p (TREE_TYPE (type))))
3968 return true;
3970 /* Now do type-specific checks. Note that the last part of the check above
3971 greatly limits what we have to do below. */
3972 switch (TREE_CODE (type))
3974 case VOID_TYPE:
3975 case OPAQUE_TYPE:
3976 case COMPLEX_TYPE:
3977 case ENUMERAL_TYPE:
3978 case BOOLEAN_TYPE:
3979 case POINTER_TYPE:
3980 case OFFSET_TYPE:
3981 case REFERENCE_TYPE:
3982 case METHOD_TYPE:
3983 case FUNCTION_TYPE:
3984 case VECTOR_TYPE:
3985 case NULLPTR_TYPE:
3986 return false;
3988 case INTEGER_TYPE:
3989 case REAL_TYPE:
3990 case FIXED_POINT_TYPE:
3991 /* Here we just check the bounds. */
3992 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3993 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3995 case ARRAY_TYPE:
3996 /* We have already checked the component type above, so just check
3997 the domain type. Flexible array members have a null domain. */
3998 return TYPE_DOMAIN (type) ?
3999 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
4001 case RECORD_TYPE:
4002 case UNION_TYPE:
4003 case QUAL_UNION_TYPE:
4005 tree field;
4007 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
4008 if (TREE_CODE (field) == FIELD_DECL
4009 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
4010 || (TREE_CODE (type) == QUAL_UNION_TYPE
4011 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
4012 || type_contains_placeholder_p (TREE_TYPE (field))))
4013 return true;
4015 return false;
4018 default:
4019 gcc_unreachable ();
4023 /* Wrapper around above function used to cache its result. */
4025 bool
4026 type_contains_placeholder_p (tree type)
4028 bool result;
4030 /* If the contains_placeholder_bits field has been initialized,
4031 then we know the answer. */
4032 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
4033 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
4035 /* Indicate that we've seen this type node, and the answer is false.
4036 This is what we want to return if we run into recursion via fields. */
4037 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
4039 /* Compute the real value. */
4040 result = type_contains_placeholder_1 (type);
4042 /* Store the real value. */
4043 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
4045 return result;
4048 /* Push tree EXP onto vector QUEUE if it is not already present. */
4050 static void
4051 push_without_duplicates (tree exp, vec<tree> *queue)
4053 unsigned int i;
4054 tree iter;
4056 FOR_EACH_VEC_ELT (*queue, i, iter)
4057 if (simple_cst_equal (iter, exp) == 1)
4058 break;
4060 if (!iter)
4061 queue->safe_push (exp);
4064 /* Given a tree EXP, find all occurrences of references to fields
4065 in a PLACEHOLDER_EXPR and place them in vector REFS without
4066 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
4067 we assume here that EXP contains only arithmetic expressions
4068 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
4069 argument list. */
4071 void
4072 find_placeholder_in_expr (tree exp, vec<tree> *refs)
4074 enum tree_code code = TREE_CODE (exp);
4075 tree inner;
4076 int i;
4078 /* We handle TREE_LIST and COMPONENT_REF separately. */
4079 if (code == TREE_LIST)
4081 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
4082 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
4084 else if (code == COMPONENT_REF)
4086 for (inner = TREE_OPERAND (exp, 0);
4087 REFERENCE_CLASS_P (inner);
4088 inner = TREE_OPERAND (inner, 0))
4091 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
4092 push_without_duplicates (exp, refs);
4093 else
4094 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
4096 else
4097 switch (TREE_CODE_CLASS (code))
4099 case tcc_constant:
4100 break;
4102 case tcc_declaration:
4103 /* Variables allocated to static storage can stay. */
4104 if (!TREE_STATIC (exp))
4105 push_without_duplicates (exp, refs);
4106 break;
4108 case tcc_expression:
4109 /* This is the pattern built in ada/make_aligning_type. */
4110 if (code == ADDR_EXPR
4111 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
4113 push_without_duplicates (exp, refs);
4114 break;
4117 /* Fall through. */
4119 case tcc_exceptional:
4120 case tcc_unary:
4121 case tcc_binary:
4122 case tcc_comparison:
4123 case tcc_reference:
4124 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
4125 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4126 break;
4128 case tcc_vl_exp:
4129 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4130 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4131 break;
4133 default:
4134 gcc_unreachable ();
4138 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
4139 return a tree with all occurrences of references to F in a
4140 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
4141 CONST_DECLs. Note that we assume here that EXP contains only
4142 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
4143 occurring only in their argument list. */
4145 tree
4146 substitute_in_expr (tree exp, tree f, tree r)
4148 enum tree_code code = TREE_CODE (exp);
4149 tree op0, op1, op2, op3;
4150 tree new_tree;
4152 /* We handle TREE_LIST and COMPONENT_REF separately. */
4153 if (code == TREE_LIST)
4155 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
4156 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
4157 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4158 return exp;
4160 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4162 else if (code == COMPONENT_REF)
4164 tree inner;
4166 /* If this expression is getting a value from a PLACEHOLDER_EXPR
4167 and it is the right field, replace it with R. */
4168 for (inner = TREE_OPERAND (exp, 0);
4169 REFERENCE_CLASS_P (inner);
4170 inner = TREE_OPERAND (inner, 0))
4173 /* The field. */
4174 op1 = TREE_OPERAND (exp, 1);
4176 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
4177 return r;
4179 /* If this expression hasn't been completed let, leave it alone. */
4180 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
4181 return exp;
4183 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4184 if (op0 == TREE_OPERAND (exp, 0))
4185 return exp;
4187 new_tree
4188 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4190 else
4191 switch (TREE_CODE_CLASS (code))
4193 case tcc_constant:
4194 return exp;
4196 case tcc_declaration:
4197 if (exp == f)
4198 return r;
4199 else
4200 return exp;
4202 case tcc_expression:
4203 if (exp == f)
4204 return r;
4206 /* Fall through. */
4208 case tcc_exceptional:
4209 case tcc_unary:
4210 case tcc_binary:
4211 case tcc_comparison:
4212 case tcc_reference:
4213 switch (TREE_CODE_LENGTH (code))
4215 case 0:
4216 return exp;
4218 case 1:
4219 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4220 if (op0 == TREE_OPERAND (exp, 0))
4221 return exp;
4223 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4224 break;
4226 case 2:
4227 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4228 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4230 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4231 return exp;
4233 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4234 break;
4236 case 3:
4237 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4238 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4239 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4241 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4242 && op2 == TREE_OPERAND (exp, 2))
4243 return exp;
4245 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4246 break;
4248 case 4:
4249 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4250 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4251 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4252 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4254 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4255 && op2 == TREE_OPERAND (exp, 2)
4256 && op3 == TREE_OPERAND (exp, 3))
4257 return exp;
4259 new_tree
4260 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4261 break;
4263 default:
4264 gcc_unreachable ();
4266 break;
4268 case tcc_vl_exp:
4270 int i;
4272 new_tree = NULL_TREE;
4274 /* If we are trying to replace F with a constant or with another
4275 instance of one of the arguments of the call, inline back
4276 functions which do nothing else than computing a value from
4277 the arguments they are passed. This makes it possible to
4278 fold partially or entirely the replacement expression. */
4279 if (code == CALL_EXPR)
4281 bool maybe_inline = false;
4282 if (CONSTANT_CLASS_P (r))
4283 maybe_inline = true;
4284 else
4285 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4286 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4288 maybe_inline = true;
4289 break;
4291 if (maybe_inline)
4293 tree t = maybe_inline_call_in_expr (exp);
4294 if (t)
4295 return SUBSTITUTE_IN_EXPR (t, f, r);
4299 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4301 tree op = TREE_OPERAND (exp, i);
4302 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4303 if (new_op != op)
4305 if (!new_tree)
4306 new_tree = copy_node (exp);
4307 TREE_OPERAND (new_tree, i) = new_op;
4311 if (new_tree)
4313 new_tree = fold (new_tree);
4314 if (TREE_CODE (new_tree) == CALL_EXPR)
4315 process_call_operands (new_tree);
4317 else
4318 return exp;
4320 break;
4322 default:
4323 gcc_unreachable ();
4326 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4328 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4329 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4331 return new_tree;
4334 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4335 for it within OBJ, a tree that is an object or a chain of references. */
4337 tree
4338 substitute_placeholder_in_expr (tree exp, tree obj)
4340 enum tree_code code = TREE_CODE (exp);
4341 tree op0, op1, op2, op3;
4342 tree new_tree;
4344 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4345 in the chain of OBJ. */
4346 if (code == PLACEHOLDER_EXPR)
4348 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4349 tree elt;
4351 for (elt = obj; elt != 0;
4352 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4353 || TREE_CODE (elt) == COND_EXPR)
4354 ? TREE_OPERAND (elt, 1)
4355 : (REFERENCE_CLASS_P (elt)
4356 || UNARY_CLASS_P (elt)
4357 || BINARY_CLASS_P (elt)
4358 || VL_EXP_CLASS_P (elt)
4359 || EXPRESSION_CLASS_P (elt))
4360 ? TREE_OPERAND (elt, 0) : 0))
4361 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4362 return elt;
4364 for (elt = obj; elt != 0;
4365 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4366 || TREE_CODE (elt) == COND_EXPR)
4367 ? TREE_OPERAND (elt, 1)
4368 : (REFERENCE_CLASS_P (elt)
4369 || UNARY_CLASS_P (elt)
4370 || BINARY_CLASS_P (elt)
4371 || VL_EXP_CLASS_P (elt)
4372 || EXPRESSION_CLASS_P (elt))
4373 ? TREE_OPERAND (elt, 0) : 0))
4374 if (POINTER_TYPE_P (TREE_TYPE (elt))
4375 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4376 == need_type))
4377 return fold_build1 (INDIRECT_REF, need_type, elt);
4379 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4380 survives until RTL generation, there will be an error. */
4381 return exp;
4384 /* TREE_LIST is special because we need to look at TREE_VALUE
4385 and TREE_CHAIN, not TREE_OPERANDS. */
4386 else if (code == TREE_LIST)
4388 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4389 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4390 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4391 return exp;
4393 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4395 else
4396 switch (TREE_CODE_CLASS (code))
4398 case tcc_constant:
4399 case tcc_declaration:
4400 return exp;
4402 case tcc_exceptional:
4403 case tcc_unary:
4404 case tcc_binary:
4405 case tcc_comparison:
4406 case tcc_expression:
4407 case tcc_reference:
4408 case tcc_statement:
4409 switch (TREE_CODE_LENGTH (code))
4411 case 0:
4412 return exp;
4414 case 1:
4415 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4416 if (op0 == TREE_OPERAND (exp, 0))
4417 return exp;
4419 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4420 break;
4422 case 2:
4423 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4424 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4426 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4427 return exp;
4429 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4430 break;
4432 case 3:
4433 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4434 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4435 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4437 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4438 && op2 == TREE_OPERAND (exp, 2))
4439 return exp;
4441 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4442 break;
4444 case 4:
4445 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4446 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4447 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4448 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4450 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4451 && op2 == TREE_OPERAND (exp, 2)
4452 && op3 == TREE_OPERAND (exp, 3))
4453 return exp;
4455 new_tree
4456 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4457 break;
4459 default:
4460 gcc_unreachable ();
4462 break;
4464 case tcc_vl_exp:
4466 int i;
4468 new_tree = NULL_TREE;
4470 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4472 tree op = TREE_OPERAND (exp, i);
4473 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4474 if (new_op != op)
4476 if (!new_tree)
4477 new_tree = copy_node (exp);
4478 TREE_OPERAND (new_tree, i) = new_op;
4482 if (new_tree)
4484 new_tree = fold (new_tree);
4485 if (TREE_CODE (new_tree) == CALL_EXPR)
4486 process_call_operands (new_tree);
4488 else
4489 return exp;
4491 break;
4493 default:
4494 gcc_unreachable ();
4497 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4499 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4500 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4502 return new_tree;
4506 /* Subroutine of stabilize_reference; this is called for subtrees of
4507 references. Any expression with side-effects must be put in a SAVE_EXPR
4508 to ensure that it is only evaluated once.
4510 We don't put SAVE_EXPR nodes around everything, because assigning very
4511 simple expressions to temporaries causes us to miss good opportunities
4512 for optimizations. Among other things, the opportunity to fold in the
4513 addition of a constant into an addressing mode often gets lost, e.g.
4514 "y[i+1] += x;". In general, we take the approach that we should not make
4515 an assignment unless we are forced into it - i.e., that any non-side effect
4516 operator should be allowed, and that cse should take care of coalescing
4517 multiple utterances of the same expression should that prove fruitful. */
4519 static tree
4520 stabilize_reference_1 (tree e)
4522 tree result;
4523 enum tree_code code = TREE_CODE (e);
4525 /* We cannot ignore const expressions because it might be a reference
4526 to a const array but whose index contains side-effects. But we can
4527 ignore things that are actual constant or that already have been
4528 handled by this function. */
4530 if (tree_invariant_p (e))
4531 return e;
4533 switch (TREE_CODE_CLASS (code))
4535 case tcc_exceptional:
4536 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4537 have side-effects. */
4538 if (code == STATEMENT_LIST)
4539 return save_expr (e);
4540 /* FALLTHRU */
4541 case tcc_type:
4542 case tcc_declaration:
4543 case tcc_comparison:
4544 case tcc_statement:
4545 case tcc_expression:
4546 case tcc_reference:
4547 case tcc_vl_exp:
4548 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4549 so that it will only be evaluated once. */
4550 /* The reference (r) and comparison (<) classes could be handled as
4551 below, but it is generally faster to only evaluate them once. */
4552 if (TREE_SIDE_EFFECTS (e))
4553 return save_expr (e);
4554 return e;
4556 case tcc_constant:
4557 /* Constants need no processing. In fact, we should never reach
4558 here. */
4559 return e;
4561 case tcc_binary:
4562 /* Division is slow and tends to be compiled with jumps,
4563 especially the division by powers of 2 that is often
4564 found inside of an array reference. So do it just once. */
4565 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4566 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4567 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4568 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4569 return save_expr (e);
4570 /* Recursively stabilize each operand. */
4571 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4572 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4573 break;
4575 case tcc_unary:
4576 /* Recursively stabilize each operand. */
4577 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4578 break;
4580 default:
4581 gcc_unreachable ();
4584 TREE_TYPE (result) = TREE_TYPE (e);
4585 TREE_READONLY (result) = TREE_READONLY (e);
4586 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4587 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4589 return result;
4592 /* Stabilize a reference so that we can use it any number of times
4593 without causing its operands to be evaluated more than once.
4594 Returns the stabilized reference. This works by means of save_expr,
4595 so see the caveats in the comments about save_expr.
4597 Also allows conversion expressions whose operands are references.
4598 Any other kind of expression is returned unchanged. */
4600 tree
4601 stabilize_reference (tree ref)
4603 tree result;
4604 enum tree_code code = TREE_CODE (ref);
4606 switch (code)
4608 case VAR_DECL:
4609 case PARM_DECL:
4610 case RESULT_DECL:
4611 /* No action is needed in this case. */
4612 return ref;
4614 CASE_CONVERT:
4615 case FLOAT_EXPR:
4616 case FIX_TRUNC_EXPR:
4617 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4618 break;
4620 case INDIRECT_REF:
4621 result = build_nt (INDIRECT_REF,
4622 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4623 break;
4625 case COMPONENT_REF:
4626 result = build_nt (COMPONENT_REF,
4627 stabilize_reference (TREE_OPERAND (ref, 0)),
4628 TREE_OPERAND (ref, 1), NULL_TREE);
4629 break;
4631 case BIT_FIELD_REF:
4632 result = build_nt (BIT_FIELD_REF,
4633 stabilize_reference (TREE_OPERAND (ref, 0)),
4634 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4635 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4636 break;
4638 case ARRAY_REF:
4639 result = build_nt (ARRAY_REF,
4640 stabilize_reference (TREE_OPERAND (ref, 0)),
4641 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4642 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4643 break;
4645 case ARRAY_RANGE_REF:
4646 result = build_nt (ARRAY_RANGE_REF,
4647 stabilize_reference (TREE_OPERAND (ref, 0)),
4648 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4649 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4650 break;
4652 case COMPOUND_EXPR:
4653 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4654 it wouldn't be ignored. This matters when dealing with
4655 volatiles. */
4656 return stabilize_reference_1 (ref);
4658 /* If arg isn't a kind of lvalue we recognize, make no change.
4659 Caller should recognize the error for an invalid lvalue. */
4660 default:
4661 return ref;
4663 case ERROR_MARK:
4664 return error_mark_node;
4667 TREE_TYPE (result) = TREE_TYPE (ref);
4668 TREE_READONLY (result) = TREE_READONLY (ref);
4669 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4670 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4672 return result;
4675 /* Low-level constructors for expressions. */
4677 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4678 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4680 void
4681 recompute_tree_invariant_for_addr_expr (tree t)
4683 tree node;
4684 bool tc = true, se = false;
4686 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4688 /* We started out assuming this address is both invariant and constant, but
4689 does not have side effects. Now go down any handled components and see if
4690 any of them involve offsets that are either non-constant or non-invariant.
4691 Also check for side-effects.
4693 ??? Note that this code makes no attempt to deal with the case where
4694 taking the address of something causes a copy due to misalignment. */
4696 #define UPDATE_FLAGS(NODE) \
4697 do { tree _node = (NODE); \
4698 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4699 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4701 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4702 node = TREE_OPERAND (node, 0))
4704 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4705 array reference (probably made temporarily by the G++ front end),
4706 so ignore all the operands. */
4707 if ((TREE_CODE (node) == ARRAY_REF
4708 || TREE_CODE (node) == ARRAY_RANGE_REF)
4709 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4711 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4712 if (TREE_OPERAND (node, 2))
4713 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4714 if (TREE_OPERAND (node, 3))
4715 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4717 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4718 FIELD_DECL, apparently. The G++ front end can put something else
4719 there, at least temporarily. */
4720 else if (TREE_CODE (node) == COMPONENT_REF
4721 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4723 if (TREE_OPERAND (node, 2))
4724 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4728 node = lang_hooks.expr_to_decl (node, &tc, &se);
4730 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4731 the address, since &(*a)->b is a form of addition. If it's a constant, the
4732 address is constant too. If it's a decl, its address is constant if the
4733 decl is static. Everything else is not constant and, furthermore,
4734 taking the address of a volatile variable is not volatile. */
4735 if (TREE_CODE (node) == INDIRECT_REF
4736 || TREE_CODE (node) == MEM_REF)
4737 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4738 else if (CONSTANT_CLASS_P (node))
4740 else if (DECL_P (node))
4741 tc &= (staticp (node) != NULL_TREE);
4742 else
4744 tc = false;
4745 se |= TREE_SIDE_EFFECTS (node);
4749 TREE_CONSTANT (t) = tc;
4750 TREE_SIDE_EFFECTS (t) = se;
4751 #undef UPDATE_FLAGS
4754 /* Build an expression of code CODE, data type TYPE, and operands as
4755 specified. Expressions and reference nodes can be created this way.
4756 Constants, decls, types and misc nodes cannot be.
4758 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4759 enough for all extant tree codes. */
4761 tree
4762 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4764 tree t;
4766 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4768 t = make_node (code PASS_MEM_STAT);
4769 TREE_TYPE (t) = tt;
4771 return t;
4774 tree
4775 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4777 int length = sizeof (struct tree_exp);
4778 tree t;
4780 record_node_allocation_statistics (code, length);
4782 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4784 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4786 memset (t, 0, sizeof (struct tree_common));
4788 TREE_SET_CODE (t, code);
4790 TREE_TYPE (t) = type;
4791 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4792 TREE_OPERAND (t, 0) = node;
4793 if (node && !TYPE_P (node))
4795 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4796 TREE_READONLY (t) = TREE_READONLY (node);
4799 if (TREE_CODE_CLASS (code) == tcc_statement)
4801 if (code != DEBUG_BEGIN_STMT)
4802 TREE_SIDE_EFFECTS (t) = 1;
4804 else switch (code)
4806 case VA_ARG_EXPR:
4807 /* All of these have side-effects, no matter what their
4808 operands are. */
4809 TREE_SIDE_EFFECTS (t) = 1;
4810 TREE_READONLY (t) = 0;
4811 break;
4813 case INDIRECT_REF:
4814 /* Whether a dereference is readonly has nothing to do with whether
4815 its operand is readonly. */
4816 TREE_READONLY (t) = 0;
4817 break;
4819 case ADDR_EXPR:
4820 if (node)
4821 recompute_tree_invariant_for_addr_expr (t);
4822 break;
4824 default:
4825 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4826 && node && !TYPE_P (node)
4827 && TREE_CONSTANT (node))
4828 TREE_CONSTANT (t) = 1;
4829 if (TREE_CODE_CLASS (code) == tcc_reference
4830 && node && TREE_THIS_VOLATILE (node))
4831 TREE_THIS_VOLATILE (t) = 1;
4832 break;
4835 return t;
4838 #define PROCESS_ARG(N) \
4839 do { \
4840 TREE_OPERAND (t, N) = arg##N; \
4841 if (arg##N &&!TYPE_P (arg##N)) \
4843 if (TREE_SIDE_EFFECTS (arg##N)) \
4844 side_effects = 1; \
4845 if (!TREE_READONLY (arg##N) \
4846 && !CONSTANT_CLASS_P (arg##N)) \
4847 (void) (read_only = 0); \
4848 if (!TREE_CONSTANT (arg##N)) \
4849 (void) (constant = 0); \
4851 } while (0)
4853 tree
4854 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4856 bool constant, read_only, side_effects, div_by_zero;
4857 tree t;
4859 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4861 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4862 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4863 /* When sizetype precision doesn't match that of pointers
4864 we need to be able to build explicit extensions or truncations
4865 of the offset argument. */
4866 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4867 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4868 && TREE_CODE (arg1) == INTEGER_CST);
4870 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4871 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4872 && ptrofftype_p (TREE_TYPE (arg1)));
4874 t = make_node (code PASS_MEM_STAT);
4875 TREE_TYPE (t) = tt;
4877 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4878 result based on those same flags for the arguments. But if the
4879 arguments aren't really even `tree' expressions, we shouldn't be trying
4880 to do this. */
4882 /* Expressions without side effects may be constant if their
4883 arguments are as well. */
4884 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4885 || TREE_CODE_CLASS (code) == tcc_binary);
4886 read_only = 1;
4887 side_effects = TREE_SIDE_EFFECTS (t);
4889 switch (code)
4891 case TRUNC_DIV_EXPR:
4892 case CEIL_DIV_EXPR:
4893 case FLOOR_DIV_EXPR:
4894 case ROUND_DIV_EXPR:
4895 case EXACT_DIV_EXPR:
4896 case CEIL_MOD_EXPR:
4897 case FLOOR_MOD_EXPR:
4898 case ROUND_MOD_EXPR:
4899 case TRUNC_MOD_EXPR:
4900 div_by_zero = integer_zerop (arg1);
4901 break;
4902 default:
4903 div_by_zero = false;
4906 PROCESS_ARG (0);
4907 PROCESS_ARG (1);
4909 TREE_SIDE_EFFECTS (t) = side_effects;
4910 if (code == MEM_REF)
4912 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4914 tree o = TREE_OPERAND (arg0, 0);
4915 TREE_READONLY (t) = TREE_READONLY (o);
4916 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4919 else
4921 TREE_READONLY (t) = read_only;
4922 /* Don't mark X / 0 as constant. */
4923 TREE_CONSTANT (t) = constant && !div_by_zero;
4924 TREE_THIS_VOLATILE (t)
4925 = (TREE_CODE_CLASS (code) == tcc_reference
4926 && arg0 && TREE_THIS_VOLATILE (arg0));
4929 return t;
4933 tree
4934 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4935 tree arg2 MEM_STAT_DECL)
4937 bool constant, read_only, side_effects;
4938 tree t;
4940 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4941 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4943 t = make_node (code PASS_MEM_STAT);
4944 TREE_TYPE (t) = tt;
4946 read_only = 1;
4948 /* As a special exception, if COND_EXPR has NULL branches, we
4949 assume that it is a gimple statement and always consider
4950 it to have side effects. */
4951 if (code == COND_EXPR
4952 && tt == void_type_node
4953 && arg1 == NULL_TREE
4954 && arg2 == NULL_TREE)
4955 side_effects = true;
4956 else
4957 side_effects = TREE_SIDE_EFFECTS (t);
4959 PROCESS_ARG (0);
4960 PROCESS_ARG (1);
4961 PROCESS_ARG (2);
4963 if (code == COND_EXPR)
4964 TREE_READONLY (t) = read_only;
4966 TREE_SIDE_EFFECTS (t) = side_effects;
4967 TREE_THIS_VOLATILE (t)
4968 = (TREE_CODE_CLASS (code) == tcc_reference
4969 && arg0 && TREE_THIS_VOLATILE (arg0));
4971 return t;
4974 tree
4975 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4976 tree arg2, tree arg3 MEM_STAT_DECL)
4978 bool constant, read_only, side_effects;
4979 tree t;
4981 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4983 t = make_node (code PASS_MEM_STAT);
4984 TREE_TYPE (t) = tt;
4986 side_effects = TREE_SIDE_EFFECTS (t);
4988 PROCESS_ARG (0);
4989 PROCESS_ARG (1);
4990 PROCESS_ARG (2);
4991 PROCESS_ARG (3);
4993 TREE_SIDE_EFFECTS (t) = side_effects;
4994 TREE_THIS_VOLATILE (t)
4995 = (TREE_CODE_CLASS (code) == tcc_reference
4996 && arg0 && TREE_THIS_VOLATILE (arg0));
4998 return t;
5001 tree
5002 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
5003 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
5005 bool constant, read_only, side_effects;
5006 tree t;
5008 gcc_assert (TREE_CODE_LENGTH (code) == 5);
5010 t = make_node (code PASS_MEM_STAT);
5011 TREE_TYPE (t) = tt;
5013 side_effects = TREE_SIDE_EFFECTS (t);
5015 PROCESS_ARG (0);
5016 PROCESS_ARG (1);
5017 PROCESS_ARG (2);
5018 PROCESS_ARG (3);
5019 PROCESS_ARG (4);
5021 TREE_SIDE_EFFECTS (t) = side_effects;
5022 if (code == TARGET_MEM_REF)
5024 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
5026 tree o = TREE_OPERAND (arg0, 0);
5027 TREE_READONLY (t) = TREE_READONLY (o);
5028 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
5031 else
5032 TREE_THIS_VOLATILE (t)
5033 = (TREE_CODE_CLASS (code) == tcc_reference
5034 && arg0 && TREE_THIS_VOLATILE (arg0));
5036 return t;
5039 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
5040 on the pointer PTR. */
5042 tree
5043 build_simple_mem_ref_loc (location_t loc, tree ptr)
5045 poly_int64 offset = 0;
5046 tree ptype = TREE_TYPE (ptr);
5047 tree tem;
5048 /* For convenience allow addresses that collapse to a simple base
5049 and offset. */
5050 if (TREE_CODE (ptr) == ADDR_EXPR
5051 && (handled_component_p (TREE_OPERAND (ptr, 0))
5052 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
5054 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
5055 gcc_assert (ptr);
5056 if (TREE_CODE (ptr) == MEM_REF)
5058 offset += mem_ref_offset (ptr).force_shwi ();
5059 ptr = TREE_OPERAND (ptr, 0);
5061 else
5062 ptr = build_fold_addr_expr (ptr);
5063 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
5065 tem = build2 (MEM_REF, TREE_TYPE (ptype),
5066 ptr, build_int_cst (ptype, offset));
5067 SET_EXPR_LOCATION (tem, loc);
5068 return tem;
5071 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
5073 poly_offset_int
5074 mem_ref_offset (const_tree t)
5076 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
5077 SIGNED);
5080 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
5081 offsetted by OFFSET units. */
5083 tree
5084 build_invariant_address (tree type, tree base, poly_int64 offset)
5086 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
5087 build_fold_addr_expr (base),
5088 build_int_cst (ptr_type_node, offset));
5089 tree addr = build1 (ADDR_EXPR, type, ref);
5090 recompute_tree_invariant_for_addr_expr (addr);
5091 return addr;
5094 /* Similar except don't specify the TREE_TYPE
5095 and leave the TREE_SIDE_EFFECTS as 0.
5096 It is permissible for arguments to be null,
5097 or even garbage if their values do not matter. */
5099 tree
5100 build_nt (enum tree_code code, ...)
5102 tree t;
5103 int length;
5104 int i;
5105 va_list p;
5107 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
5109 va_start (p, code);
5111 t = make_node (code);
5112 length = TREE_CODE_LENGTH (code);
5114 for (i = 0; i < length; i++)
5115 TREE_OPERAND (t, i) = va_arg (p, tree);
5117 va_end (p);
5118 return t;
5121 /* Similar to build_nt, but for creating a CALL_EXPR object with a
5122 tree vec. */
5124 tree
5125 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
5127 tree ret, t;
5128 unsigned int ix;
5130 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
5131 CALL_EXPR_FN (ret) = fn;
5132 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
5133 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
5134 CALL_EXPR_ARG (ret, ix) = t;
5135 return ret;
5138 /* Create a DECL_... node of code CODE, name NAME (if non-null)
5139 and data type TYPE.
5140 We do NOT enter this node in any sort of symbol table.
5142 LOC is the location of the decl.
5144 layout_decl is used to set up the decl's storage layout.
5145 Other slots are initialized to 0 or null pointers. */
5147 tree
5148 build_decl (location_t loc, enum tree_code code, tree name,
5149 tree type MEM_STAT_DECL)
5151 tree t;
5153 t = make_node (code PASS_MEM_STAT);
5154 DECL_SOURCE_LOCATION (t) = loc;
5156 /* if (type == error_mark_node)
5157 type = integer_type_node; */
5158 /* That is not done, deliberately, so that having error_mark_node
5159 as the type can suppress useless errors in the use of this variable. */
5161 DECL_NAME (t) = name;
5162 TREE_TYPE (t) = type;
5164 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
5165 layout_decl (t, 0);
5167 return t;
5170 /* Builds and returns function declaration with NAME and TYPE. */
5172 tree
5173 build_fn_decl (const char *name, tree type)
5175 tree id = get_identifier (name);
5176 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
5178 DECL_EXTERNAL (decl) = 1;
5179 TREE_PUBLIC (decl) = 1;
5180 DECL_ARTIFICIAL (decl) = 1;
5181 TREE_NOTHROW (decl) = 1;
5183 return decl;
5186 vec<tree, va_gc> *all_translation_units;
5188 /* Builds a new translation-unit decl with name NAME, queues it in the
5189 global list of translation-unit decls and returns it. */
5191 tree
5192 build_translation_unit_decl (tree name)
5194 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5195 name, NULL_TREE);
5196 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5197 vec_safe_push (all_translation_units, tu);
5198 return tu;
5202 /* BLOCK nodes are used to represent the structure of binding contours
5203 and declarations, once those contours have been exited and their contents
5204 compiled. This information is used for outputting debugging info. */
5206 tree
5207 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5209 tree block = make_node (BLOCK);
5211 BLOCK_VARS (block) = vars;
5212 BLOCK_SUBBLOCKS (block) = subblocks;
5213 BLOCK_SUPERCONTEXT (block) = supercontext;
5214 BLOCK_CHAIN (block) = chain;
5215 return block;
5219 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5221 LOC is the location to use in tree T. */
5223 void
5224 protected_set_expr_location (tree t, location_t loc)
5226 if (CAN_HAVE_LOCATION_P (t))
5227 SET_EXPR_LOCATION (t, loc);
5228 else if (t && TREE_CODE (t) == STATEMENT_LIST)
5230 t = expr_single (t);
5231 if (t && CAN_HAVE_LOCATION_P (t))
5232 SET_EXPR_LOCATION (t, loc);
5236 /* Like PROTECTED_SET_EXPR_LOCATION, but only do that if T has
5237 UNKNOWN_LOCATION. */
5239 void
5240 protected_set_expr_location_if_unset (tree t, location_t loc)
5242 t = expr_single (t);
5243 if (t && !EXPR_HAS_LOCATION (t))
5244 protected_set_expr_location (t, loc);
5247 /* Data used when collecting DECLs and TYPEs for language data removal. */
5249 class free_lang_data_d
5251 public:
5252 free_lang_data_d () : decls (100), types (100) {}
5254 /* Worklist to avoid excessive recursion. */
5255 auto_vec<tree> worklist;
5257 /* Set of traversed objects. Used to avoid duplicate visits. */
5258 hash_set<tree> pset;
5260 /* Array of symbols to process with free_lang_data_in_decl. */
5261 auto_vec<tree> decls;
5263 /* Array of types to process with free_lang_data_in_type. */
5264 auto_vec<tree> types;
5268 /* Add type or decl T to one of the list of tree nodes that need their
5269 language data removed. The lists are held inside FLD. */
5271 static void
5272 add_tree_to_fld_list (tree t, class free_lang_data_d *fld)
5274 if (DECL_P (t))
5275 fld->decls.safe_push (t);
5276 else if (TYPE_P (t))
5277 fld->types.safe_push (t);
5278 else
5279 gcc_unreachable ();
5282 /* Push tree node T into FLD->WORKLIST. */
5284 static inline void
5285 fld_worklist_push (tree t, class free_lang_data_d *fld)
5287 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5288 fld->worklist.safe_push ((t));
5293 /* Return simplified TYPE_NAME of TYPE. */
5295 static tree
5296 fld_simplified_type_name (tree type)
5298 if (!TYPE_NAME (type) || TREE_CODE (TYPE_NAME (type)) != TYPE_DECL)
5299 return TYPE_NAME (type);
5300 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5301 TYPE_DECL if the type doesn't have linkage.
5302 this must match fld_ */
5303 if (type != TYPE_MAIN_VARIANT (type)
5304 || (!DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type))
5305 && (TREE_CODE (type) != RECORD_TYPE
5306 || !TYPE_BINFO (type)
5307 || !BINFO_VTABLE (TYPE_BINFO (type)))))
5308 return DECL_NAME (TYPE_NAME (type));
5309 return TYPE_NAME (type);
5312 /* Do same comparsion as check_qualified_type skipping lang part of type
5313 and be more permissive about type names: we only care that names are
5314 same (for diagnostics) and that ODR names are the same.
5315 If INNER_TYPE is non-NULL, be sure that TREE_TYPE match it. */
5317 static bool
5318 fld_type_variant_equal_p (tree t, tree v, tree inner_type)
5320 if (TYPE_QUALS (t) != TYPE_QUALS (v)
5321 /* We want to match incomplete variants with complete types.
5322 In this case we need to ignore alignment. */
5323 || ((!RECORD_OR_UNION_TYPE_P (t) || COMPLETE_TYPE_P (v))
5324 && (TYPE_ALIGN (t) != TYPE_ALIGN (v)
5325 || TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (v)))
5326 || fld_simplified_type_name (t) != fld_simplified_type_name (v)
5327 || !attribute_list_equal (TYPE_ATTRIBUTES (t),
5328 TYPE_ATTRIBUTES (v))
5329 || (inner_type && TREE_TYPE (v) != inner_type))
5330 return false;
5332 return true;
5335 /* Find variant of FIRST that match T and create new one if necessary.
5336 Set TREE_TYPE to INNER_TYPE if non-NULL. */
5338 static tree
5339 fld_type_variant (tree first, tree t, class free_lang_data_d *fld,
5340 tree inner_type = NULL)
5342 if (first == TYPE_MAIN_VARIANT (t))
5343 return t;
5344 for (tree v = first; v; v = TYPE_NEXT_VARIANT (v))
5345 if (fld_type_variant_equal_p (t, v, inner_type))
5346 return v;
5347 tree v = build_variant_type_copy (first);
5348 TYPE_READONLY (v) = TYPE_READONLY (t);
5349 TYPE_VOLATILE (v) = TYPE_VOLATILE (t);
5350 TYPE_ATOMIC (v) = TYPE_ATOMIC (t);
5351 TYPE_RESTRICT (v) = TYPE_RESTRICT (t);
5352 TYPE_ADDR_SPACE (v) = TYPE_ADDR_SPACE (t);
5353 TYPE_NAME (v) = TYPE_NAME (t);
5354 TYPE_ATTRIBUTES (v) = TYPE_ATTRIBUTES (t);
5355 TYPE_CANONICAL (v) = TYPE_CANONICAL (t);
5356 /* Variants of incomplete types should have alignment
5357 set to BITS_PER_UNIT. Do not copy the actual alignment. */
5358 if (!RECORD_OR_UNION_TYPE_P (v) || COMPLETE_TYPE_P (v))
5360 SET_TYPE_ALIGN (v, TYPE_ALIGN (t));
5361 TYPE_USER_ALIGN (v) = TYPE_USER_ALIGN (t);
5363 if (inner_type)
5364 TREE_TYPE (v) = inner_type;
5365 gcc_checking_assert (fld_type_variant_equal_p (t,v, inner_type));
5366 if (!fld->pset.add (v))
5367 add_tree_to_fld_list (v, fld);
5368 return v;
5371 /* Map complete types to incomplete types. */
5373 static hash_map<tree, tree> *fld_incomplete_types;
5375 /* Map types to simplified types. */
5377 static hash_map<tree, tree> *fld_simplified_types;
5379 /* Produce variant of T whose TREE_TYPE is T2. If it is main variant,
5380 use MAP to prevent duplicates. */
5382 static tree
5383 fld_process_array_type (tree t, tree t2, hash_map<tree, tree> *map,
5384 class free_lang_data_d *fld)
5386 if (TREE_TYPE (t) == t2)
5387 return t;
5389 if (TYPE_MAIN_VARIANT (t) != t)
5391 return fld_type_variant
5392 (fld_process_array_type (TYPE_MAIN_VARIANT (t),
5393 TYPE_MAIN_VARIANT (t2), map, fld),
5394 t, fld, t2);
5397 bool existed;
5398 tree &array
5399 = map->get_or_insert (t, &existed);
5400 if (!existed)
5402 array
5403 = build_array_type_1 (t2, TYPE_DOMAIN (t), TYPE_TYPELESS_STORAGE (t),
5404 false, false);
5405 TYPE_CANONICAL (array) = TYPE_CANONICAL (t);
5406 if (!fld->pset.add (array))
5407 add_tree_to_fld_list (array, fld);
5409 return array;
5412 /* Return CTX after removal of contexts that are not relevant */
5414 static tree
5415 fld_decl_context (tree ctx)
5417 /* Variably modified types are needed for tree_is_indexable to decide
5418 whether the type needs to go to local or global section.
5419 This code is semi-broken but for now it is easiest to keep contexts
5420 as expected. */
5421 if (ctx && TYPE_P (ctx)
5422 && !variably_modified_type_p (ctx, NULL_TREE))
5424 while (ctx && TYPE_P (ctx))
5425 ctx = TYPE_CONTEXT (ctx);
5427 return ctx;
5430 /* For T being aggregate type try to turn it into a incomplete variant.
5431 Return T if no simplification is possible. */
5433 static tree
5434 fld_incomplete_type_of (tree t, class free_lang_data_d *fld)
5436 if (!t)
5437 return NULL;
5438 if (POINTER_TYPE_P (t))
5440 tree t2 = fld_incomplete_type_of (TREE_TYPE (t), fld);
5441 if (t2 != TREE_TYPE (t))
5443 tree first;
5444 if (TREE_CODE (t) == POINTER_TYPE)
5445 first = build_pointer_type_for_mode (t2, TYPE_MODE (t),
5446 TYPE_REF_CAN_ALIAS_ALL (t));
5447 else
5448 first = build_reference_type_for_mode (t2, TYPE_MODE (t),
5449 TYPE_REF_CAN_ALIAS_ALL (t));
5450 gcc_assert (TYPE_CANONICAL (t2) != t2
5451 && TYPE_CANONICAL (t2) == TYPE_CANONICAL (TREE_TYPE (t)));
5452 if (!fld->pset.add (first))
5453 add_tree_to_fld_list (first, fld);
5454 return fld_type_variant (first, t, fld);
5456 return t;
5458 if (TREE_CODE (t) == ARRAY_TYPE)
5459 return fld_process_array_type (t,
5460 fld_incomplete_type_of (TREE_TYPE (t), fld),
5461 fld_incomplete_types, fld);
5462 if ((!RECORD_OR_UNION_TYPE_P (t) && TREE_CODE (t) != ENUMERAL_TYPE)
5463 || !COMPLETE_TYPE_P (t))
5464 return t;
5465 if (TYPE_MAIN_VARIANT (t) == t)
5467 bool existed;
5468 tree &copy
5469 = fld_incomplete_types->get_or_insert (t, &existed);
5471 if (!existed)
5473 copy = build_distinct_type_copy (t);
5475 /* It is possible that type was not seen by free_lang_data yet. */
5476 if (!fld->pset.add (copy))
5477 add_tree_to_fld_list (copy, fld);
5478 TYPE_SIZE (copy) = NULL;
5479 TYPE_USER_ALIGN (copy) = 0;
5480 TYPE_SIZE_UNIT (copy) = NULL;
5481 TYPE_CANONICAL (copy) = TYPE_CANONICAL (t);
5482 TREE_ADDRESSABLE (copy) = 0;
5483 if (AGGREGATE_TYPE_P (t))
5485 SET_TYPE_MODE (copy, VOIDmode);
5486 SET_TYPE_ALIGN (copy, BITS_PER_UNIT);
5487 TYPE_TYPELESS_STORAGE (copy) = 0;
5488 TYPE_FIELDS (copy) = NULL;
5489 TYPE_BINFO (copy) = NULL;
5490 TYPE_FINAL_P (copy) = 0;
5491 TYPE_EMPTY_P (copy) = 0;
5493 else
5495 TYPE_VALUES (copy) = NULL;
5496 ENUM_IS_OPAQUE (copy) = 0;
5497 ENUM_IS_SCOPED (copy) = 0;
5500 /* Build copy of TYPE_DECL in TYPE_NAME if necessary.
5501 This is needed for ODR violation warnings to come out right (we
5502 want duplicate TYPE_DECLs whenever the type is duplicated because
5503 of ODR violation. Because lang data in the TYPE_DECL may not
5504 have been freed yet, rebuild it from scratch and copy relevant
5505 fields. */
5506 TYPE_NAME (copy) = fld_simplified_type_name (copy);
5507 tree name = TYPE_NAME (copy);
5509 if (name && TREE_CODE (name) == TYPE_DECL)
5511 gcc_checking_assert (TREE_TYPE (name) == t);
5512 tree name2 = build_decl (DECL_SOURCE_LOCATION (name), TYPE_DECL,
5513 DECL_NAME (name), copy);
5514 if (DECL_ASSEMBLER_NAME_SET_P (name))
5515 SET_DECL_ASSEMBLER_NAME (name2, DECL_ASSEMBLER_NAME (name));
5516 SET_DECL_ALIGN (name2, 0);
5517 DECL_CONTEXT (name2) = fld_decl_context
5518 (DECL_CONTEXT (name));
5519 TYPE_NAME (copy) = name2;
5522 return copy;
5524 return (fld_type_variant
5525 (fld_incomplete_type_of (TYPE_MAIN_VARIANT (t), fld), t, fld));
5528 /* Simplify type T for scenarios where we do not need complete pointer
5529 types. */
5531 static tree
5532 fld_simplified_type (tree t, class free_lang_data_d *fld)
5534 if (!t)
5535 return t;
5536 if (POINTER_TYPE_P (t))
5537 return fld_incomplete_type_of (t, fld);
5538 /* FIXME: This triggers verification error, see PR88140. */
5539 if (TREE_CODE (t) == ARRAY_TYPE && 0)
5540 return fld_process_array_type (t, fld_simplified_type (TREE_TYPE (t), fld),
5541 fld_simplified_types, fld);
5542 return t;
5545 /* Reset the expression *EXPR_P, a size or position.
5547 ??? We could reset all non-constant sizes or positions. But it's cheap
5548 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5550 We need to reset self-referential sizes or positions because they cannot
5551 be gimplified and thus can contain a CALL_EXPR after the gimplification
5552 is finished, which will run afoul of LTO streaming. And they need to be
5553 reset to something essentially dummy but not constant, so as to preserve
5554 the properties of the object they are attached to. */
5556 static inline void
5557 free_lang_data_in_one_sizepos (tree *expr_p)
5559 tree expr = *expr_p;
5560 if (CONTAINS_PLACEHOLDER_P (expr))
5561 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5565 /* Reset all the fields in a binfo node BINFO. We only keep
5566 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5568 static void
5569 free_lang_data_in_binfo (tree binfo)
5571 unsigned i;
5572 tree t;
5574 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5576 BINFO_VIRTUALS (binfo) = NULL_TREE;
5577 BINFO_BASE_ACCESSES (binfo) = NULL;
5578 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5579 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5580 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
5581 TREE_PUBLIC (binfo) = 0;
5583 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5584 free_lang_data_in_binfo (t);
5588 /* Reset all language specific information still present in TYPE. */
5590 static void
5591 free_lang_data_in_type (tree type, class free_lang_data_d *fld)
5593 gcc_assert (TYPE_P (type));
5595 /* Give the FE a chance to remove its own data first. */
5596 lang_hooks.free_lang_data (type);
5598 TREE_LANG_FLAG_0 (type) = 0;
5599 TREE_LANG_FLAG_1 (type) = 0;
5600 TREE_LANG_FLAG_2 (type) = 0;
5601 TREE_LANG_FLAG_3 (type) = 0;
5602 TREE_LANG_FLAG_4 (type) = 0;
5603 TREE_LANG_FLAG_5 (type) = 0;
5604 TREE_LANG_FLAG_6 (type) = 0;
5606 TYPE_NEEDS_CONSTRUCTING (type) = 0;
5608 /* Purge non-marked variants from the variants chain, so that they
5609 don't reappear in the IL after free_lang_data. */
5610 while (TYPE_NEXT_VARIANT (type)
5611 && !fld->pset.contains (TYPE_NEXT_VARIANT (type)))
5613 tree t = TYPE_NEXT_VARIANT (type);
5614 TYPE_NEXT_VARIANT (type) = TYPE_NEXT_VARIANT (t);
5615 /* Turn the removed types into distinct types. */
5616 TYPE_MAIN_VARIANT (t) = t;
5617 TYPE_NEXT_VARIANT (t) = NULL_TREE;
5620 if (TREE_CODE (type) == FUNCTION_TYPE)
5622 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5623 /* Remove the const and volatile qualifiers from arguments. The
5624 C++ front end removes them, but the C front end does not,
5625 leading to false ODR violation errors when merging two
5626 instances of the same function signature compiled by
5627 different front ends. */
5628 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5630 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5631 tree arg_type = TREE_VALUE (p);
5633 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5635 int quals = TYPE_QUALS (arg_type)
5636 & ~TYPE_QUAL_CONST
5637 & ~TYPE_QUAL_VOLATILE;
5638 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5639 if (!fld->pset.add (TREE_VALUE (p)))
5640 free_lang_data_in_type (TREE_VALUE (p), fld);
5642 /* C++ FE uses TREE_PURPOSE to store initial values. */
5643 TREE_PURPOSE (p) = NULL;
5646 else if (TREE_CODE (type) == METHOD_TYPE)
5648 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5649 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5651 /* C++ FE uses TREE_PURPOSE to store initial values. */
5652 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5653 TREE_PURPOSE (p) = NULL;
5656 else if (RECORD_OR_UNION_TYPE_P (type))
5658 /* Remove members that are not FIELD_DECLs from the field list
5659 of an aggregate. These occur in C++. */
5660 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5661 if (TREE_CODE (member) == FIELD_DECL)
5662 prev = &DECL_CHAIN (member);
5663 else
5664 *prev = DECL_CHAIN (member);
5666 TYPE_VFIELD (type) = NULL_TREE;
5668 if (TYPE_BINFO (type))
5670 free_lang_data_in_binfo (TYPE_BINFO (type));
5671 /* We need to preserve link to bases and virtual table for all
5672 polymorphic types to make devirtualization machinery working. */
5673 if (!BINFO_VTABLE (TYPE_BINFO (type)))
5674 TYPE_BINFO (type) = NULL;
5677 else if (INTEGRAL_TYPE_P (type)
5678 || SCALAR_FLOAT_TYPE_P (type)
5679 || FIXED_POINT_TYPE_P (type))
5681 if (TREE_CODE (type) == ENUMERAL_TYPE)
5683 ENUM_IS_OPAQUE (type) = 0;
5684 ENUM_IS_SCOPED (type) = 0;
5685 /* Type values are used only for C++ ODR checking. Drop them
5686 for all type variants and non-ODR types.
5687 For ODR types the data is freed in free_odr_warning_data. */
5688 if (!TYPE_VALUES (type))
5690 else if (TYPE_MAIN_VARIANT (type) != type
5691 || !type_with_linkage_p (type)
5692 || type_in_anonymous_namespace_p (type))
5693 TYPE_VALUES (type) = NULL;
5694 else
5695 register_odr_enum (type);
5697 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5698 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5701 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5703 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5704 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5706 if (TYPE_CONTEXT (type)
5707 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5709 tree ctx = TYPE_CONTEXT (type);
5712 ctx = BLOCK_SUPERCONTEXT (ctx);
5714 while (ctx && TREE_CODE (ctx) == BLOCK);
5715 TYPE_CONTEXT (type) = ctx;
5718 TYPE_STUB_DECL (type) = NULL;
5719 TYPE_NAME (type) = fld_simplified_type_name (type);
5723 /* Return true if DECL may need an assembler name to be set. */
5725 static inline bool
5726 need_assembler_name_p (tree decl)
5728 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5729 Rule merging. This makes type_odr_p to return true on those types during
5730 LTO and by comparing the mangled name, we can say what types are intended
5731 to be equivalent across compilation unit.
5733 We do not store names of type_in_anonymous_namespace_p.
5735 Record, union and enumeration type have linkage that allows use
5736 to check type_in_anonymous_namespace_p. We do not mangle compound types
5737 that always can be compared structurally.
5739 Similarly for builtin types, we compare properties of their main variant.
5740 A special case are integer types where mangling do make differences
5741 between char/signed char/unsigned char etc. Storing name for these makes
5742 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5743 See cp/mangle.c:write_builtin_type for details. */
5745 if (TREE_CODE (decl) == TYPE_DECL)
5747 if (DECL_NAME (decl)
5748 && decl == TYPE_NAME (TREE_TYPE (decl))
5749 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5750 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5751 && ((TREE_CODE (TREE_TYPE (decl)) != RECORD_TYPE
5752 && TREE_CODE (TREE_TYPE (decl)) != UNION_TYPE)
5753 || TYPE_CXX_ODR_P (TREE_TYPE (decl)))
5754 && (type_with_linkage_p (TREE_TYPE (decl))
5755 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5756 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5757 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5758 return false;
5760 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5761 if (!VAR_OR_FUNCTION_DECL_P (decl))
5762 return false;
5764 /* If DECL already has its assembler name set, it does not need a
5765 new one. */
5766 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5767 || DECL_ASSEMBLER_NAME_SET_P (decl))
5768 return false;
5770 /* Abstract decls do not need an assembler name. */
5771 if (DECL_ABSTRACT_P (decl))
5772 return false;
5774 /* For VAR_DECLs, only static, public and external symbols need an
5775 assembler name. */
5776 if (VAR_P (decl)
5777 && !TREE_STATIC (decl)
5778 && !TREE_PUBLIC (decl)
5779 && !DECL_EXTERNAL (decl))
5780 return false;
5782 if (TREE_CODE (decl) == FUNCTION_DECL)
5784 /* Do not set assembler name on builtins. Allow RTL expansion to
5785 decide whether to expand inline or via a regular call. */
5786 if (fndecl_built_in_p (decl)
5787 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5788 return false;
5790 /* Functions represented in the callgraph need an assembler name. */
5791 if (cgraph_node::get (decl) != NULL)
5792 return true;
5794 /* Unused and not public functions don't need an assembler name. */
5795 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5796 return false;
5799 return true;
5803 /* Reset all language specific information still present in symbol
5804 DECL. */
5806 static void
5807 free_lang_data_in_decl (tree decl, class free_lang_data_d *fld)
5809 gcc_assert (DECL_P (decl));
5811 /* Give the FE a chance to remove its own data first. */
5812 lang_hooks.free_lang_data (decl);
5814 TREE_LANG_FLAG_0 (decl) = 0;
5815 TREE_LANG_FLAG_1 (decl) = 0;
5816 TREE_LANG_FLAG_2 (decl) = 0;
5817 TREE_LANG_FLAG_3 (decl) = 0;
5818 TREE_LANG_FLAG_4 (decl) = 0;
5819 TREE_LANG_FLAG_5 (decl) = 0;
5820 TREE_LANG_FLAG_6 (decl) = 0;
5822 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5823 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5824 if (TREE_CODE (decl) == FIELD_DECL)
5826 DECL_FCONTEXT (decl) = NULL;
5827 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5828 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5829 DECL_QUALIFIER (decl) = NULL_TREE;
5832 if (TREE_CODE (decl) == FUNCTION_DECL)
5834 struct cgraph_node *node;
5835 /* Frontends do not set TREE_ADDRESSABLE on public variables even though
5836 the address may be taken in other unit, so this flag has no practical
5837 use for middle-end.
5839 It would make more sense if frontends set TREE_ADDRESSABLE to 0 only
5840 for public objects that indeed cannot be adressed, but it is not
5841 the case. Set the flag to true so we do not get merge failures for
5842 i.e. virtual tables between units that take address of it and
5843 units that don't. */
5844 if (TREE_PUBLIC (decl))
5845 TREE_ADDRESSABLE (decl) = true;
5846 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5847 if (!(node = cgraph_node::get (decl))
5848 || (!node->definition && !node->clones))
5850 if (node)
5851 node->release_body ();
5852 else
5854 release_function_body (decl);
5855 DECL_ARGUMENTS (decl) = NULL;
5856 DECL_RESULT (decl) = NULL;
5857 DECL_INITIAL (decl) = error_mark_node;
5860 if (gimple_has_body_p (decl) || (node && node->thunk))
5862 tree t;
5864 /* If DECL has a gimple body, then the context for its
5865 arguments must be DECL. Otherwise, it doesn't really
5866 matter, as we will not be emitting any code for DECL. In
5867 general, there may be other instances of DECL created by
5868 the front end and since PARM_DECLs are generally shared,
5869 their DECL_CONTEXT changes as the replicas of DECL are
5870 created. The only time where DECL_CONTEXT is important
5871 is for the FUNCTION_DECLs that have a gimple body (since
5872 the PARM_DECL will be used in the function's body). */
5873 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5874 DECL_CONTEXT (t) = decl;
5875 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5876 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5877 = target_option_default_node;
5878 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5879 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5880 = optimization_default_node;
5883 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5884 At this point, it is not needed anymore. */
5885 DECL_SAVED_TREE (decl) = NULL_TREE;
5887 /* Clear the abstract origin if it refers to a method.
5888 Otherwise dwarf2out.c will ICE as we splice functions out of
5889 TYPE_FIELDS and thus the origin will not be output
5890 correctly. */
5891 if (DECL_ABSTRACT_ORIGIN (decl)
5892 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5893 && RECORD_OR_UNION_TYPE_P
5894 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5895 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5897 DECL_VINDEX (decl) = NULL_TREE;
5899 else if (VAR_P (decl))
5901 /* See comment above why we set the flag for functions. */
5902 if (TREE_PUBLIC (decl))
5903 TREE_ADDRESSABLE (decl) = true;
5904 if ((DECL_EXTERNAL (decl)
5905 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5906 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5907 DECL_INITIAL (decl) = NULL_TREE;
5909 else if (TREE_CODE (decl) == TYPE_DECL)
5911 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5912 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5913 TREE_PUBLIC (decl) = 0;
5914 TREE_PRIVATE (decl) = 0;
5915 DECL_ARTIFICIAL (decl) = 0;
5916 TYPE_DECL_SUPPRESS_DEBUG (decl) = 0;
5917 DECL_INITIAL (decl) = NULL_TREE;
5918 DECL_ORIGINAL_TYPE (decl) = NULL_TREE;
5919 DECL_MODE (decl) = VOIDmode;
5920 SET_DECL_ALIGN (decl, 0);
5921 /* TREE_TYPE is cleared at WPA time in free_odr_warning_data. */
5923 else if (TREE_CODE (decl) == FIELD_DECL)
5925 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5926 DECL_INITIAL (decl) = NULL_TREE;
5928 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5929 && DECL_INITIAL (decl)
5930 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5932 /* Strip builtins from the translation-unit BLOCK. We still have targets
5933 without builtin_decl_explicit support and also builtins are shared
5934 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5935 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5936 while (*nextp)
5938 tree var = *nextp;
5939 if (TREE_CODE (var) == FUNCTION_DECL
5940 && fndecl_built_in_p (var))
5941 *nextp = TREE_CHAIN (var);
5942 else
5943 nextp = &TREE_CHAIN (var);
5946 /* We need to keep field decls associated with their trees. Otherwise tree
5947 merging may merge some fileds and keep others disjoint wich in turn will
5948 not do well with TREE_CHAIN pointers linking them.
5950 Also do not drop containing types for virtual methods and tables because
5951 these are needed by devirtualization.
5952 C++ destructors are special because C++ frontends sometimes produces
5953 virtual destructor as an alias of non-virtual destructor. In
5954 devirutalization code we always walk through aliases and we need
5955 context to be preserved too. See PR89335 */
5956 if (TREE_CODE (decl) != FIELD_DECL
5957 && ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
5958 || (!DECL_VIRTUAL_P (decl)
5959 && (TREE_CODE (decl) != FUNCTION_DECL
5960 || !DECL_CXX_DESTRUCTOR_P (decl)))))
5961 DECL_CONTEXT (decl) = fld_decl_context (DECL_CONTEXT (decl));
5965 /* Operand callback helper for free_lang_data_in_node. *TP is the
5966 subtree operand being considered. */
5968 static tree
5969 find_decls_types_r (tree *tp, int *ws, void *data)
5971 tree t = *tp;
5972 class free_lang_data_d *fld = (class free_lang_data_d *) data;
5974 if (TREE_CODE (t) == TREE_LIST)
5975 return NULL_TREE;
5977 /* Language specific nodes will be removed, so there is no need
5978 to gather anything under them. */
5979 if (is_lang_specific (t))
5981 *ws = 0;
5982 return NULL_TREE;
5985 if (DECL_P (t))
5987 /* Note that walk_tree does not traverse every possible field in
5988 decls, so we have to do our own traversals here. */
5989 add_tree_to_fld_list (t, fld);
5991 fld_worklist_push (DECL_NAME (t), fld);
5992 fld_worklist_push (DECL_CONTEXT (t), fld);
5993 fld_worklist_push (DECL_SIZE (t), fld);
5994 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5996 /* We are going to remove everything under DECL_INITIAL for
5997 TYPE_DECLs. No point walking them. */
5998 if (TREE_CODE (t) != TYPE_DECL)
5999 fld_worklist_push (DECL_INITIAL (t), fld);
6001 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
6002 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
6004 if (TREE_CODE (t) == FUNCTION_DECL)
6006 fld_worklist_push (DECL_ARGUMENTS (t), fld);
6007 fld_worklist_push (DECL_RESULT (t), fld);
6009 else if (TREE_CODE (t) == FIELD_DECL)
6011 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
6012 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
6013 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
6014 fld_worklist_push (DECL_FCONTEXT (t), fld);
6017 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
6018 && DECL_HAS_VALUE_EXPR_P (t))
6019 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
6021 if (TREE_CODE (t) != FIELD_DECL
6022 && TREE_CODE (t) != TYPE_DECL)
6023 fld_worklist_push (TREE_CHAIN (t), fld);
6024 *ws = 0;
6026 else if (TYPE_P (t))
6028 /* Note that walk_tree does not traverse every possible field in
6029 types, so we have to do our own traversals here. */
6030 add_tree_to_fld_list (t, fld);
6032 if (!RECORD_OR_UNION_TYPE_P (t))
6033 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
6034 fld_worklist_push (TYPE_SIZE (t), fld);
6035 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
6036 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
6037 fld_worklist_push (TYPE_POINTER_TO (t), fld);
6038 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
6039 fld_worklist_push (TYPE_NAME (t), fld);
6040 /* While we do not stream TYPE_POINTER_TO and TYPE_REFERENCE_TO
6041 lists, we may look types up in these lists and use them while
6042 optimizing the function body. Thus we need to free lang data
6043 in them. */
6044 if (TREE_CODE (t) == POINTER_TYPE)
6045 fld_worklist_push (TYPE_NEXT_PTR_TO (t), fld);
6046 if (TREE_CODE (t) == REFERENCE_TYPE)
6047 fld_worklist_push (TYPE_NEXT_REF_TO (t), fld);
6048 if (!POINTER_TYPE_P (t))
6049 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
6050 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
6051 if (!RECORD_OR_UNION_TYPE_P (t))
6052 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
6053 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
6054 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
6055 do not and want not to reach unused variants this way. */
6056 if (TYPE_CONTEXT (t))
6058 tree ctx = TYPE_CONTEXT (t);
6059 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
6060 So push that instead. */
6061 while (ctx && TREE_CODE (ctx) == BLOCK)
6062 ctx = BLOCK_SUPERCONTEXT (ctx);
6063 fld_worklist_push (ctx, fld);
6065 fld_worklist_push (TYPE_CANONICAL (t), fld);
6067 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
6069 unsigned i;
6070 tree tem;
6071 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
6072 fld_worklist_push (TREE_TYPE (tem), fld);
6073 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
6074 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
6076 if (RECORD_OR_UNION_TYPE_P (t))
6078 tree tem;
6079 /* Push all TYPE_FIELDS - there can be interleaving interesting
6080 and non-interesting things. */
6081 tem = TYPE_FIELDS (t);
6082 while (tem)
6084 if (TREE_CODE (tem) == FIELD_DECL)
6085 fld_worklist_push (tem, fld);
6086 tem = TREE_CHAIN (tem);
6089 if (FUNC_OR_METHOD_TYPE_P (t))
6090 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
6092 fld_worklist_push (TYPE_STUB_DECL (t), fld);
6093 *ws = 0;
6095 else if (TREE_CODE (t) == BLOCK)
6097 for (tree *tem = &BLOCK_VARS (t); *tem; )
6099 if (TREE_CODE (*tem) != LABEL_DECL
6100 && (TREE_CODE (*tem) != VAR_DECL
6101 || !auto_var_in_fn_p (*tem, DECL_CONTEXT (*tem))))
6103 gcc_assert (TREE_CODE (*tem) != RESULT_DECL
6104 && TREE_CODE (*tem) != PARM_DECL);
6105 *tem = TREE_CHAIN (*tem);
6107 else
6109 fld_worklist_push (*tem, fld);
6110 tem = &TREE_CHAIN (*tem);
6113 for (tree tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
6114 fld_worklist_push (tem, fld);
6115 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
6118 if (TREE_CODE (t) != IDENTIFIER_NODE
6119 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
6120 fld_worklist_push (TREE_TYPE (t), fld);
6122 return NULL_TREE;
6126 /* Find decls and types in T. */
6128 static void
6129 find_decls_types (tree t, class free_lang_data_d *fld)
6131 while (1)
6133 if (!fld->pset.contains (t))
6134 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
6135 if (fld->worklist.is_empty ())
6136 break;
6137 t = fld->worklist.pop ();
6141 /* Translate all the types in LIST with the corresponding runtime
6142 types. */
6144 static tree
6145 get_eh_types_for_runtime (tree list)
6147 tree head, prev;
6149 if (list == NULL_TREE)
6150 return NULL_TREE;
6152 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
6153 prev = head;
6154 list = TREE_CHAIN (list);
6155 while (list)
6157 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
6158 TREE_CHAIN (prev) = n;
6159 prev = TREE_CHAIN (prev);
6160 list = TREE_CHAIN (list);
6163 return head;
6167 /* Find decls and types referenced in EH region R and store them in
6168 FLD->DECLS and FLD->TYPES. */
6170 static void
6171 find_decls_types_in_eh_region (eh_region r, class free_lang_data_d *fld)
6173 switch (r->type)
6175 case ERT_CLEANUP:
6176 break;
6178 case ERT_TRY:
6180 eh_catch c;
6182 /* The types referenced in each catch must first be changed to the
6183 EH types used at runtime. This removes references to FE types
6184 in the region. */
6185 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
6187 c->type_list = get_eh_types_for_runtime (c->type_list);
6188 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
6191 break;
6193 case ERT_ALLOWED_EXCEPTIONS:
6194 r->u.allowed.type_list
6195 = get_eh_types_for_runtime (r->u.allowed.type_list);
6196 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
6197 break;
6199 case ERT_MUST_NOT_THROW:
6200 walk_tree (&r->u.must_not_throw.failure_decl,
6201 find_decls_types_r, fld, &fld->pset);
6202 break;
6207 /* Find decls and types referenced in cgraph node N and store them in
6208 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6209 look for *every* kind of DECL and TYPE node reachable from N,
6210 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6211 NAMESPACE_DECLs, etc). */
6213 static void
6214 find_decls_types_in_node (struct cgraph_node *n, class free_lang_data_d *fld)
6216 basic_block bb;
6217 struct function *fn;
6218 unsigned ix;
6219 tree t;
6221 find_decls_types (n->decl, fld);
6223 if (!gimple_has_body_p (n->decl))
6224 return;
6226 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
6228 fn = DECL_STRUCT_FUNCTION (n->decl);
6230 /* Traverse locals. */
6231 FOR_EACH_LOCAL_DECL (fn, ix, t)
6232 find_decls_types (t, fld);
6234 /* Traverse EH regions in FN. */
6236 eh_region r;
6237 FOR_ALL_EH_REGION_FN (r, fn)
6238 find_decls_types_in_eh_region (r, fld);
6241 /* Traverse every statement in FN. */
6242 FOR_EACH_BB_FN (bb, fn)
6244 gphi_iterator psi;
6245 gimple_stmt_iterator si;
6246 unsigned i;
6248 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
6250 gphi *phi = psi.phi ();
6252 for (i = 0; i < gimple_phi_num_args (phi); i++)
6254 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
6255 find_decls_types (*arg_p, fld);
6259 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6261 gimple *stmt = gsi_stmt (si);
6263 if (is_gimple_call (stmt))
6264 find_decls_types (gimple_call_fntype (stmt), fld);
6266 for (i = 0; i < gimple_num_ops (stmt); i++)
6268 tree arg = gimple_op (stmt, i);
6269 find_decls_types (arg, fld);
6270 /* find_decls_types doesn't walk TREE_PURPOSE of TREE_LISTs,
6271 which we need for asm stmts. */
6272 if (arg
6273 && TREE_CODE (arg) == TREE_LIST
6274 && TREE_PURPOSE (arg)
6275 && gimple_code (stmt) == GIMPLE_ASM)
6276 find_decls_types (TREE_PURPOSE (arg), fld);
6283 /* Find decls and types referenced in varpool node N and store them in
6284 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6285 look for *every* kind of DECL and TYPE node reachable from N,
6286 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6287 NAMESPACE_DECLs, etc). */
6289 static void
6290 find_decls_types_in_var (varpool_node *v, class free_lang_data_d *fld)
6292 find_decls_types (v->decl, fld);
6295 /* If T needs an assembler name, have one created for it. */
6297 void
6298 assign_assembler_name_if_needed (tree t)
6300 if (need_assembler_name_p (t))
6302 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
6303 diagnostics that use input_location to show locus
6304 information. The problem here is that, at this point,
6305 input_location is generally anchored to the end of the file
6306 (since the parser is long gone), so we don't have a good
6307 position to pin it to.
6309 To alleviate this problem, this uses the location of T's
6310 declaration. Examples of this are
6311 testsuite/g++.dg/template/cond2.C and
6312 testsuite/g++.dg/template/pr35240.C. */
6313 location_t saved_location = input_location;
6314 input_location = DECL_SOURCE_LOCATION (t);
6316 decl_assembler_name (t);
6318 input_location = saved_location;
6323 /* Free language specific information for every operand and expression
6324 in every node of the call graph. This process operates in three stages:
6326 1- Every callgraph node and varpool node is traversed looking for
6327 decls and types embedded in them. This is a more exhaustive
6328 search than that done by find_referenced_vars, because it will
6329 also collect individual fields, decls embedded in types, etc.
6331 2- All the decls found are sent to free_lang_data_in_decl.
6333 3- All the types found are sent to free_lang_data_in_type.
6335 The ordering between decls and types is important because
6336 free_lang_data_in_decl sets assembler names, which includes
6337 mangling. So types cannot be freed up until assembler names have
6338 been set up. */
6340 static void
6341 free_lang_data_in_cgraph (class free_lang_data_d *fld)
6343 struct cgraph_node *n;
6344 varpool_node *v;
6345 tree t;
6346 unsigned i;
6347 alias_pair *p;
6349 /* Find decls and types in the body of every function in the callgraph. */
6350 FOR_EACH_FUNCTION (n)
6351 find_decls_types_in_node (n, fld);
6353 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
6354 find_decls_types (p->decl, fld);
6356 /* Find decls and types in every varpool symbol. */
6357 FOR_EACH_VARIABLE (v)
6358 find_decls_types_in_var (v, fld);
6360 /* Set the assembler name on every decl found. We need to do this
6361 now because free_lang_data_in_decl will invalidate data needed
6362 for mangling. This breaks mangling on interdependent decls. */
6363 FOR_EACH_VEC_ELT (fld->decls, i, t)
6364 assign_assembler_name_if_needed (t);
6366 /* Traverse every decl found freeing its language data. */
6367 FOR_EACH_VEC_ELT (fld->decls, i, t)
6368 free_lang_data_in_decl (t, fld);
6370 /* Traverse every type found freeing its language data. */
6371 FOR_EACH_VEC_ELT (fld->types, i, t)
6372 free_lang_data_in_type (t, fld);
6376 /* Free resources that are used by FE but are not needed once they are done. */
6378 static unsigned
6379 free_lang_data (void)
6381 unsigned i;
6382 class free_lang_data_d fld;
6384 /* If we are the LTO frontend we have freed lang-specific data already. */
6385 if (in_lto_p
6386 || (!flag_generate_lto && !flag_generate_offload))
6388 /* Rebuild type inheritance graph even when not doing LTO to get
6389 consistent profile data. */
6390 rebuild_type_inheritance_graph ();
6391 return 0;
6394 fld_incomplete_types = new hash_map<tree, tree>;
6395 fld_simplified_types = new hash_map<tree, tree>;
6397 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
6398 if (vec_safe_is_empty (all_translation_units))
6399 build_translation_unit_decl (NULL_TREE);
6401 /* Allocate and assign alias sets to the standard integer types
6402 while the slots are still in the way the frontends generated them. */
6403 for (i = 0; i < itk_none; ++i)
6404 if (integer_types[i])
6405 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
6407 /* Traverse the IL resetting language specific information for
6408 operands, expressions, etc. */
6409 free_lang_data_in_cgraph (&fld);
6411 /* Create gimple variants for common types. */
6412 for (unsigned i = 0;
6413 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
6414 ++i)
6415 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
6417 /* Reset some langhooks. Do not reset types_compatible_p, it may
6418 still be used indirectly via the get_alias_set langhook. */
6419 lang_hooks.dwarf_name = lhd_dwarf_name;
6420 lang_hooks.decl_printable_name = gimple_decl_printable_name;
6421 lang_hooks.gimplify_expr = lhd_gimplify_expr;
6422 lang_hooks.overwrite_decl_assembler_name = lhd_overwrite_decl_assembler_name;
6423 lang_hooks.print_xnode = lhd_print_tree_nothing;
6424 lang_hooks.print_decl = lhd_print_tree_nothing;
6425 lang_hooks.print_type = lhd_print_tree_nothing;
6426 lang_hooks.print_identifier = lhd_print_tree_nothing;
6428 lang_hooks.tree_inlining.var_mod_type_p = hook_bool_tree_tree_false;
6430 if (flag_checking)
6432 int i;
6433 tree t;
6435 FOR_EACH_VEC_ELT (fld.types, i, t)
6436 verify_type (t);
6439 /* We do not want the default decl_assembler_name implementation,
6440 rather if we have fixed everything we want a wrapper around it
6441 asserting that all non-local symbols already got their assembler
6442 name and only produce assembler names for local symbols. Or rather
6443 make sure we never call decl_assembler_name on local symbols and
6444 devise a separate, middle-end private scheme for it. */
6446 /* Reset diagnostic machinery. */
6447 tree_diagnostics_defaults (global_dc);
6449 rebuild_type_inheritance_graph ();
6451 delete fld_incomplete_types;
6452 delete fld_simplified_types;
6454 return 0;
6458 namespace {
6460 const pass_data pass_data_ipa_free_lang_data =
6462 SIMPLE_IPA_PASS, /* type */
6463 "*free_lang_data", /* name */
6464 OPTGROUP_NONE, /* optinfo_flags */
6465 TV_IPA_FREE_LANG_DATA, /* tv_id */
6466 0, /* properties_required */
6467 0, /* properties_provided */
6468 0, /* properties_destroyed */
6469 0, /* todo_flags_start */
6470 0, /* todo_flags_finish */
6473 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
6475 public:
6476 pass_ipa_free_lang_data (gcc::context *ctxt)
6477 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
6480 /* opt_pass methods: */
6481 virtual unsigned int execute (function *) { return free_lang_data (); }
6483 }; // class pass_ipa_free_lang_data
6485 } // anon namespace
6487 simple_ipa_opt_pass *
6488 make_pass_ipa_free_lang_data (gcc::context *ctxt)
6490 return new pass_ipa_free_lang_data (ctxt);
6493 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6494 of the various TYPE_QUAL values. */
6496 static void
6497 set_type_quals (tree type, int type_quals)
6499 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6500 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6501 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6502 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6503 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6506 /* Returns true iff CAND and BASE have equivalent language-specific
6507 qualifiers. */
6509 bool
6510 check_lang_type (const_tree cand, const_tree base)
6512 if (lang_hooks.types.type_hash_eq == NULL)
6513 return true;
6514 /* type_hash_eq currently only applies to these types. */
6515 if (TREE_CODE (cand) != FUNCTION_TYPE
6516 && TREE_CODE (cand) != METHOD_TYPE)
6517 return true;
6518 return lang_hooks.types.type_hash_eq (cand, base);
6521 /* This function checks to see if TYPE matches the size one of the built-in
6522 atomic types, and returns that core atomic type. */
6524 static tree
6525 find_atomic_core_type (const_tree type)
6527 tree base_atomic_type;
6529 /* Only handle complete types. */
6530 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
6531 return NULL_TREE;
6533 switch (tree_to_uhwi (TYPE_SIZE (type)))
6535 case 8:
6536 base_atomic_type = atomicQI_type_node;
6537 break;
6539 case 16:
6540 base_atomic_type = atomicHI_type_node;
6541 break;
6543 case 32:
6544 base_atomic_type = atomicSI_type_node;
6545 break;
6547 case 64:
6548 base_atomic_type = atomicDI_type_node;
6549 break;
6551 case 128:
6552 base_atomic_type = atomicTI_type_node;
6553 break;
6555 default:
6556 base_atomic_type = NULL_TREE;
6559 return base_atomic_type;
6562 /* Returns true iff unqualified CAND and BASE are equivalent. */
6564 bool
6565 check_base_type (const_tree cand, const_tree base)
6567 if (TYPE_NAME (cand) != TYPE_NAME (base)
6568 /* Apparently this is needed for Objective-C. */
6569 || TYPE_CONTEXT (cand) != TYPE_CONTEXT (base)
6570 || !attribute_list_equal (TYPE_ATTRIBUTES (cand),
6571 TYPE_ATTRIBUTES (base)))
6572 return false;
6573 /* Check alignment. */
6574 if (TYPE_ALIGN (cand) == TYPE_ALIGN (base))
6575 return true;
6576 /* Atomic types increase minimal alignment. We must to do so as well
6577 or we get duplicated canonical types. See PR88686. */
6578 if ((TYPE_QUALS (cand) & TYPE_QUAL_ATOMIC))
6580 /* See if this object can map to a basic atomic type. */
6581 tree atomic_type = find_atomic_core_type (cand);
6582 if (atomic_type && TYPE_ALIGN (atomic_type) == TYPE_ALIGN (cand))
6583 return true;
6585 return false;
6588 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6590 bool
6591 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6593 return (TYPE_QUALS (cand) == type_quals
6594 && check_base_type (cand, base)
6595 && check_lang_type (cand, base));
6598 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6600 static bool
6601 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6603 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6604 && TYPE_NAME (cand) == TYPE_NAME (base)
6605 /* Apparently this is needed for Objective-C. */
6606 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6607 /* Check alignment. */
6608 && TYPE_ALIGN (cand) == align
6609 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6610 TYPE_ATTRIBUTES (base))
6611 && check_lang_type (cand, base));
6614 /* Return a version of the TYPE, qualified as indicated by the
6615 TYPE_QUALS, if one exists. If no qualified version exists yet,
6616 return NULL_TREE. */
6618 tree
6619 get_qualified_type (tree type, int type_quals)
6621 if (TYPE_QUALS (type) == type_quals)
6622 return type;
6624 tree mv = TYPE_MAIN_VARIANT (type);
6625 if (check_qualified_type (mv, type, type_quals))
6626 return mv;
6628 /* Search the chain of variants to see if there is already one there just
6629 like the one we need to have. If so, use that existing one. We must
6630 preserve the TYPE_NAME, since there is code that depends on this. */
6631 for (tree *tp = &TYPE_NEXT_VARIANT (mv); *tp; tp = &TYPE_NEXT_VARIANT (*tp))
6632 if (check_qualified_type (*tp, type, type_quals))
6634 /* Put the found variant at the head of the variant list so
6635 frequently searched variants get found faster. The C++ FE
6636 benefits greatly from this. */
6637 tree t = *tp;
6638 *tp = TYPE_NEXT_VARIANT (t);
6639 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
6640 TYPE_NEXT_VARIANT (mv) = t;
6641 return t;
6644 return NULL_TREE;
6647 /* Like get_qualified_type, but creates the type if it does not
6648 exist. This function never returns NULL_TREE. */
6650 tree
6651 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6653 tree t;
6655 /* See if we already have the appropriate qualified variant. */
6656 t = get_qualified_type (type, type_quals);
6658 /* If not, build it. */
6659 if (!t)
6661 t = build_variant_type_copy (type PASS_MEM_STAT);
6662 set_type_quals (t, type_quals);
6664 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6666 /* See if this object can map to a basic atomic type. */
6667 tree atomic_type = find_atomic_core_type (type);
6668 if (atomic_type)
6670 /* Ensure the alignment of this type is compatible with
6671 the required alignment of the atomic type. */
6672 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6673 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6677 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6678 /* Propagate structural equality. */
6679 SET_TYPE_STRUCTURAL_EQUALITY (t);
6680 else if (TYPE_CANONICAL (type) != type)
6681 /* Build the underlying canonical type, since it is different
6682 from TYPE. */
6684 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6685 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6687 else
6688 /* T is its own canonical type. */
6689 TYPE_CANONICAL (t) = t;
6693 return t;
6696 /* Create a variant of type T with alignment ALIGN. */
6698 tree
6699 build_aligned_type (tree type, unsigned int align)
6701 tree t;
6703 if (TYPE_PACKED (type)
6704 || TYPE_ALIGN (type) == align)
6705 return type;
6707 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6708 if (check_aligned_type (t, type, align))
6709 return t;
6711 t = build_variant_type_copy (type);
6712 SET_TYPE_ALIGN (t, align);
6713 TYPE_USER_ALIGN (t) = 1;
6715 return t;
6718 /* Create a new distinct copy of TYPE. The new type is made its own
6719 MAIN_VARIANT. If TYPE requires structural equality checks, the
6720 resulting type requires structural equality checks; otherwise, its
6721 TYPE_CANONICAL points to itself. */
6723 tree
6724 build_distinct_type_copy (tree type MEM_STAT_DECL)
6726 tree t = copy_node (type PASS_MEM_STAT);
6728 TYPE_POINTER_TO (t) = 0;
6729 TYPE_REFERENCE_TO (t) = 0;
6731 /* Set the canonical type either to a new equivalence class, or
6732 propagate the need for structural equality checks. */
6733 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6734 SET_TYPE_STRUCTURAL_EQUALITY (t);
6735 else
6736 TYPE_CANONICAL (t) = t;
6738 /* Make it its own variant. */
6739 TYPE_MAIN_VARIANT (t) = t;
6740 TYPE_NEXT_VARIANT (t) = 0;
6742 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6743 whose TREE_TYPE is not t. This can also happen in the Ada
6744 frontend when using subtypes. */
6746 return t;
6749 /* Create a new variant of TYPE, equivalent but distinct. This is so
6750 the caller can modify it. TYPE_CANONICAL for the return type will
6751 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6752 are considered equal by the language itself (or that both types
6753 require structural equality checks). */
6755 tree
6756 build_variant_type_copy (tree type MEM_STAT_DECL)
6758 tree t, m = TYPE_MAIN_VARIANT (type);
6760 t = build_distinct_type_copy (type PASS_MEM_STAT);
6762 /* Since we're building a variant, assume that it is a non-semantic
6763 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6764 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6765 /* Type variants have no alias set defined. */
6766 TYPE_ALIAS_SET (t) = -1;
6768 /* Add the new type to the chain of variants of TYPE. */
6769 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6770 TYPE_NEXT_VARIANT (m) = t;
6771 TYPE_MAIN_VARIANT (t) = m;
6773 return t;
6776 /* Return true if the from tree in both tree maps are equal. */
6779 tree_map_base_eq (const void *va, const void *vb)
6781 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6782 *const b = (const struct tree_map_base *) vb;
6783 return (a->from == b->from);
6786 /* Hash a from tree in a tree_base_map. */
6788 unsigned int
6789 tree_map_base_hash (const void *item)
6791 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6794 /* Return true if this tree map structure is marked for garbage collection
6795 purposes. We simply return true if the from tree is marked, so that this
6796 structure goes away when the from tree goes away. */
6799 tree_map_base_marked_p (const void *p)
6801 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6804 /* Hash a from tree in a tree_map. */
6806 unsigned int
6807 tree_map_hash (const void *item)
6809 return (((const struct tree_map *) item)->hash);
6812 /* Hash a from tree in a tree_decl_map. */
6814 unsigned int
6815 tree_decl_map_hash (const void *item)
6817 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6820 /* Return the initialization priority for DECL. */
6822 priority_type
6823 decl_init_priority_lookup (tree decl)
6825 symtab_node *snode = symtab_node::get (decl);
6827 if (!snode)
6828 return DEFAULT_INIT_PRIORITY;
6829 return
6830 snode->get_init_priority ();
6833 /* Return the finalization priority for DECL. */
6835 priority_type
6836 decl_fini_priority_lookup (tree decl)
6838 cgraph_node *node = cgraph_node::get (decl);
6840 if (!node)
6841 return DEFAULT_INIT_PRIORITY;
6842 return
6843 node->get_fini_priority ();
6846 /* Set the initialization priority for DECL to PRIORITY. */
6848 void
6849 decl_init_priority_insert (tree decl, priority_type priority)
6851 struct symtab_node *snode;
6853 if (priority == DEFAULT_INIT_PRIORITY)
6855 snode = symtab_node::get (decl);
6856 if (!snode)
6857 return;
6859 else if (VAR_P (decl))
6860 snode = varpool_node::get_create (decl);
6861 else
6862 snode = cgraph_node::get_create (decl);
6863 snode->set_init_priority (priority);
6866 /* Set the finalization priority for DECL to PRIORITY. */
6868 void
6869 decl_fini_priority_insert (tree decl, priority_type priority)
6871 struct cgraph_node *node;
6873 if (priority == DEFAULT_INIT_PRIORITY)
6875 node = cgraph_node::get (decl);
6876 if (!node)
6877 return;
6879 else
6880 node = cgraph_node::get_create (decl);
6881 node->set_fini_priority (priority);
6884 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6886 static void
6887 print_debug_expr_statistics (void)
6889 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6890 (long) debug_expr_for_decl->size (),
6891 (long) debug_expr_for_decl->elements (),
6892 debug_expr_for_decl->collisions ());
6895 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6897 static void
6898 print_value_expr_statistics (void)
6900 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6901 (long) value_expr_for_decl->size (),
6902 (long) value_expr_for_decl->elements (),
6903 value_expr_for_decl->collisions ());
6906 /* Lookup a debug expression for FROM, and return it if we find one. */
6908 tree
6909 decl_debug_expr_lookup (tree from)
6911 struct tree_decl_map *h, in;
6912 in.base.from = from;
6914 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6915 if (h)
6916 return h->to;
6917 return NULL_TREE;
6920 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6922 void
6923 decl_debug_expr_insert (tree from, tree to)
6925 struct tree_decl_map *h;
6927 h = ggc_alloc<tree_decl_map> ();
6928 h->base.from = from;
6929 h->to = to;
6930 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6933 /* Lookup a value expression for FROM, and return it if we find one. */
6935 tree
6936 decl_value_expr_lookup (tree from)
6938 struct tree_decl_map *h, in;
6939 in.base.from = from;
6941 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6942 if (h)
6943 return h->to;
6944 return NULL_TREE;
6947 /* Insert a mapping FROM->TO in the value expression hashtable. */
6949 void
6950 decl_value_expr_insert (tree from, tree to)
6952 struct tree_decl_map *h;
6954 h = ggc_alloc<tree_decl_map> ();
6955 h->base.from = from;
6956 h->to = to;
6957 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6960 /* Lookup a vector of debug arguments for FROM, and return it if we
6961 find one. */
6963 vec<tree, va_gc> **
6964 decl_debug_args_lookup (tree from)
6966 struct tree_vec_map *h, in;
6968 if (!DECL_HAS_DEBUG_ARGS_P (from))
6969 return NULL;
6970 gcc_checking_assert (debug_args_for_decl != NULL);
6971 in.base.from = from;
6972 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6973 if (h)
6974 return &h->to;
6975 return NULL;
6978 /* Insert a mapping FROM->empty vector of debug arguments in the value
6979 expression hashtable. */
6981 vec<tree, va_gc> **
6982 decl_debug_args_insert (tree from)
6984 struct tree_vec_map *h;
6985 tree_vec_map **loc;
6987 if (DECL_HAS_DEBUG_ARGS_P (from))
6988 return decl_debug_args_lookup (from);
6989 if (debug_args_for_decl == NULL)
6990 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6991 h = ggc_alloc<tree_vec_map> ();
6992 h->base.from = from;
6993 h->to = NULL;
6994 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6995 *loc = h;
6996 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6997 return &h->to;
7000 /* Hashing of types so that we don't make duplicates.
7001 The entry point is `type_hash_canon'. */
7003 /* Generate the default hash code for TYPE. This is designed for
7004 speed, rather than maximum entropy. */
7006 hashval_t
7007 type_hash_canon_hash (tree type)
7009 inchash::hash hstate;
7011 hstate.add_int (TREE_CODE (type));
7013 if (TREE_TYPE (type))
7014 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
7016 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
7017 /* Just the identifier is adequate to distinguish. */
7018 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
7020 switch (TREE_CODE (type))
7022 case METHOD_TYPE:
7023 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
7024 /* FALLTHROUGH. */
7025 case FUNCTION_TYPE:
7026 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7027 if (TREE_VALUE (t) != error_mark_node)
7028 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
7029 break;
7031 case OFFSET_TYPE:
7032 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
7033 break;
7035 case ARRAY_TYPE:
7037 if (TYPE_DOMAIN (type))
7038 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
7039 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
7041 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
7042 hstate.add_object (typeless);
7045 break;
7047 case INTEGER_TYPE:
7049 tree t = TYPE_MAX_VALUE (type);
7050 if (!t)
7051 t = TYPE_MIN_VALUE (type);
7052 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
7053 hstate.add_object (TREE_INT_CST_ELT (t, i));
7054 break;
7057 case REAL_TYPE:
7058 case FIXED_POINT_TYPE:
7060 unsigned prec = TYPE_PRECISION (type);
7061 hstate.add_object (prec);
7062 break;
7065 case VECTOR_TYPE:
7066 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
7067 break;
7069 default:
7070 break;
7073 return hstate.end ();
7076 /* These are the Hashtable callback functions. */
7078 /* Returns true iff the types are equivalent. */
7080 bool
7081 type_cache_hasher::equal (type_hash *a, type_hash *b)
7083 /* First test the things that are the same for all types. */
7084 if (a->hash != b->hash
7085 || TREE_CODE (a->type) != TREE_CODE (b->type)
7086 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
7087 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
7088 TYPE_ATTRIBUTES (b->type))
7089 || (TREE_CODE (a->type) != COMPLEX_TYPE
7090 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
7091 return 0;
7093 /* Be careful about comparing arrays before and after the element type
7094 has been completed; don't compare TYPE_ALIGN unless both types are
7095 complete. */
7096 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
7097 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
7098 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
7099 return 0;
7101 switch (TREE_CODE (a->type))
7103 case VOID_TYPE:
7104 case OPAQUE_TYPE:
7105 case COMPLEX_TYPE:
7106 case POINTER_TYPE:
7107 case REFERENCE_TYPE:
7108 case NULLPTR_TYPE:
7109 return 1;
7111 case VECTOR_TYPE:
7112 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
7113 TYPE_VECTOR_SUBPARTS (b->type));
7115 case ENUMERAL_TYPE:
7116 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
7117 && !(TYPE_VALUES (a->type)
7118 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
7119 && TYPE_VALUES (b->type)
7120 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
7121 && type_list_equal (TYPE_VALUES (a->type),
7122 TYPE_VALUES (b->type))))
7123 return 0;
7125 /* fall through */
7127 case INTEGER_TYPE:
7128 case REAL_TYPE:
7129 case BOOLEAN_TYPE:
7130 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
7131 return false;
7132 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
7133 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
7134 TYPE_MAX_VALUE (b->type)))
7135 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
7136 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
7137 TYPE_MIN_VALUE (b->type))));
7139 case FIXED_POINT_TYPE:
7140 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
7142 case OFFSET_TYPE:
7143 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
7145 case METHOD_TYPE:
7146 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
7147 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7148 || (TYPE_ARG_TYPES (a->type)
7149 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7150 && TYPE_ARG_TYPES (b->type)
7151 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7152 && type_list_equal (TYPE_ARG_TYPES (a->type),
7153 TYPE_ARG_TYPES (b->type)))))
7154 break;
7155 return 0;
7156 case ARRAY_TYPE:
7157 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
7158 where the flag should be inherited from the element type
7159 and can change after ARRAY_TYPEs are created; on non-aggregates
7160 compare it and hash it, scalars will never have that flag set
7161 and we need to differentiate between arrays created by different
7162 front-ends or middle-end created arrays. */
7163 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
7164 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
7165 || (TYPE_TYPELESS_STORAGE (a->type)
7166 == TYPE_TYPELESS_STORAGE (b->type))));
7168 case RECORD_TYPE:
7169 case UNION_TYPE:
7170 case QUAL_UNION_TYPE:
7171 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
7172 || (TYPE_FIELDS (a->type)
7173 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
7174 && TYPE_FIELDS (b->type)
7175 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
7176 && type_list_equal (TYPE_FIELDS (a->type),
7177 TYPE_FIELDS (b->type))));
7179 case FUNCTION_TYPE:
7180 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7181 || (TYPE_ARG_TYPES (a->type)
7182 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7183 && TYPE_ARG_TYPES (b->type)
7184 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7185 && type_list_equal (TYPE_ARG_TYPES (a->type),
7186 TYPE_ARG_TYPES (b->type))))
7187 break;
7188 return 0;
7190 default:
7191 return 0;
7194 if (lang_hooks.types.type_hash_eq != NULL)
7195 return lang_hooks.types.type_hash_eq (a->type, b->type);
7197 return 1;
7200 /* Given TYPE, and HASHCODE its hash code, return the canonical
7201 object for an identical type if one already exists.
7202 Otherwise, return TYPE, and record it as the canonical object.
7204 To use this function, first create a type of the sort you want.
7205 Then compute its hash code from the fields of the type that
7206 make it different from other similar types.
7207 Then call this function and use the value. */
7209 tree
7210 type_hash_canon (unsigned int hashcode, tree type)
7212 type_hash in;
7213 type_hash **loc;
7215 /* The hash table only contains main variants, so ensure that's what we're
7216 being passed. */
7217 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7219 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7220 must call that routine before comparing TYPE_ALIGNs. */
7221 layout_type (type);
7223 in.hash = hashcode;
7224 in.type = type;
7226 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7227 if (*loc)
7229 tree t1 = ((type_hash *) *loc)->type;
7230 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
7231 && t1 != type);
7232 if (TYPE_UID (type) + 1 == next_type_uid)
7233 --next_type_uid;
7234 /* Free also min/max values and the cache for integer
7235 types. This can't be done in free_node, as LTO frees
7236 those on its own. */
7237 if (TREE_CODE (type) == INTEGER_TYPE)
7239 if (TYPE_MIN_VALUE (type)
7240 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
7242 /* Zero is always in TYPE_CACHED_VALUES. */
7243 if (! TYPE_UNSIGNED (type))
7244 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
7245 ggc_free (TYPE_MIN_VALUE (type));
7247 if (TYPE_MAX_VALUE (type)
7248 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
7250 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
7251 ggc_free (TYPE_MAX_VALUE (type));
7253 if (TYPE_CACHED_VALUES_P (type))
7254 ggc_free (TYPE_CACHED_VALUES (type));
7256 free_node (type);
7257 return t1;
7259 else
7261 struct type_hash *h;
7263 h = ggc_alloc<type_hash> ();
7264 h->hash = hashcode;
7265 h->type = type;
7266 *loc = h;
7268 return type;
7272 static void
7273 print_type_hash_statistics (void)
7275 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7276 (long) type_hash_table->size (),
7277 (long) type_hash_table->elements (),
7278 type_hash_table->collisions ());
7281 /* Given two lists of types
7282 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7283 return 1 if the lists contain the same types in the same order.
7284 Also, the TREE_PURPOSEs must match. */
7286 bool
7287 type_list_equal (const_tree l1, const_tree l2)
7289 const_tree t1, t2;
7291 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7292 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7293 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7294 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7295 && (TREE_TYPE (TREE_PURPOSE (t1))
7296 == TREE_TYPE (TREE_PURPOSE (t2))))))
7297 return false;
7299 return t1 == t2;
7302 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7303 given by TYPE. If the argument list accepts variable arguments,
7304 then this function counts only the ordinary arguments. */
7307 type_num_arguments (const_tree fntype)
7309 int i = 0;
7311 for (tree t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
7312 /* If the function does not take a variable number of arguments,
7313 the last element in the list will have type `void'. */
7314 if (VOID_TYPE_P (TREE_VALUE (t)))
7315 break;
7316 else
7317 ++i;
7319 return i;
7322 /* Return the type of the function TYPE's argument ARGNO if known.
7323 For vararg function's where ARGNO refers to one of the variadic
7324 arguments return null. Otherwise, return a void_type_node for
7325 out-of-bounds ARGNO. */
7327 tree
7328 type_argument_type (const_tree fntype, unsigned argno)
7330 /* Treat zero the same as an out-of-bounds argument number. */
7331 if (!argno)
7332 return void_type_node;
7334 function_args_iterator iter;
7336 tree argtype;
7337 unsigned i = 1;
7338 FOREACH_FUNCTION_ARGS (fntype, argtype, iter)
7340 /* A vararg function's argument list ends in a null. Otherwise,
7341 an ordinary function's argument list ends with void. Return
7342 null if ARGNO refers to a vararg argument, void_type_node if
7343 it's out of bounds, and the formal argument type otherwise. */
7344 if (!argtype)
7345 break;
7347 if (i == argno || VOID_TYPE_P (argtype))
7348 return argtype;
7350 ++i;
7353 return NULL_TREE;
7356 /* Nonzero if integer constants T1 and T2
7357 represent the same constant value. */
7360 tree_int_cst_equal (const_tree t1, const_tree t2)
7362 if (t1 == t2)
7363 return 1;
7365 if (t1 == 0 || t2 == 0)
7366 return 0;
7368 STRIP_ANY_LOCATION_WRAPPER (t1);
7369 STRIP_ANY_LOCATION_WRAPPER (t2);
7371 if (TREE_CODE (t1) == INTEGER_CST
7372 && TREE_CODE (t2) == INTEGER_CST
7373 && wi::to_widest (t1) == wi::to_widest (t2))
7374 return 1;
7376 return 0;
7379 /* Return true if T is an INTEGER_CST whose numerical value (extended
7380 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7382 bool
7383 tree_fits_shwi_p (const_tree t)
7385 return (t != NULL_TREE
7386 && TREE_CODE (t) == INTEGER_CST
7387 && wi::fits_shwi_p (wi::to_widest (t)));
7390 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7391 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
7393 bool
7394 tree_fits_poly_int64_p (const_tree t)
7396 if (t == NULL_TREE)
7397 return false;
7398 if (POLY_INT_CST_P (t))
7400 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7401 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
7402 return false;
7403 return true;
7405 return (TREE_CODE (t) == INTEGER_CST
7406 && wi::fits_shwi_p (wi::to_widest (t)));
7409 /* Return true if T is an INTEGER_CST whose numerical value (extended
7410 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7412 bool
7413 tree_fits_uhwi_p (const_tree t)
7415 return (t != NULL_TREE
7416 && TREE_CODE (t) == INTEGER_CST
7417 && wi::fits_uhwi_p (wi::to_widest (t)));
7420 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7421 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
7423 bool
7424 tree_fits_poly_uint64_p (const_tree t)
7426 if (t == NULL_TREE)
7427 return false;
7428 if (POLY_INT_CST_P (t))
7430 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7431 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
7432 return false;
7433 return true;
7435 return (TREE_CODE (t) == INTEGER_CST
7436 && wi::fits_uhwi_p (wi::to_widest (t)));
7439 /* T is an INTEGER_CST whose numerical value (extended according to
7440 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7441 HOST_WIDE_INT. */
7443 HOST_WIDE_INT
7444 tree_to_shwi (const_tree t)
7446 gcc_assert (tree_fits_shwi_p (t));
7447 return TREE_INT_CST_LOW (t);
7450 /* T is an INTEGER_CST whose numerical value (extended according to
7451 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7452 HOST_WIDE_INT. */
7454 unsigned HOST_WIDE_INT
7455 tree_to_uhwi (const_tree t)
7457 gcc_assert (tree_fits_uhwi_p (t));
7458 return TREE_INT_CST_LOW (t);
7461 /* Return the most significant (sign) bit of T. */
7464 tree_int_cst_sign_bit (const_tree t)
7466 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7468 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
7471 /* Return an indication of the sign of the integer constant T.
7472 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7473 Note that -1 will never be returned if T's type is unsigned. */
7476 tree_int_cst_sgn (const_tree t)
7478 if (wi::to_wide (t) == 0)
7479 return 0;
7480 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7481 return 1;
7482 else if (wi::neg_p (wi::to_wide (t)))
7483 return -1;
7484 else
7485 return 1;
7488 /* Return the minimum number of bits needed to represent VALUE in a
7489 signed or unsigned type, UNSIGNEDP says which. */
7491 unsigned int
7492 tree_int_cst_min_precision (tree value, signop sgn)
7494 /* If the value is negative, compute its negative minus 1. The latter
7495 adjustment is because the absolute value of the largest negative value
7496 is one larger than the largest positive value. This is equivalent to
7497 a bit-wise negation, so use that operation instead. */
7499 if (tree_int_cst_sgn (value) < 0)
7500 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7502 /* Return the number of bits needed, taking into account the fact
7503 that we need one more bit for a signed than unsigned type.
7504 If value is 0 or -1, the minimum precision is 1 no matter
7505 whether unsignedp is true or false. */
7507 if (integer_zerop (value))
7508 return 1;
7509 else
7510 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7513 /* Return truthvalue of whether T1 is the same tree structure as T2.
7514 Return 1 if they are the same.
7515 Return 0 if they are understandably different.
7516 Return -1 if either contains tree structure not understood by
7517 this function. */
7520 simple_cst_equal (const_tree t1, const_tree t2)
7522 enum tree_code code1, code2;
7523 int cmp;
7524 int i;
7526 if (t1 == t2)
7527 return 1;
7528 if (t1 == 0 || t2 == 0)
7529 return 0;
7531 /* For location wrappers to be the same, they must be at the same
7532 source location (and wrap the same thing). */
7533 if (location_wrapper_p (t1) && location_wrapper_p (t2))
7535 if (EXPR_LOCATION (t1) != EXPR_LOCATION (t2))
7536 return 0;
7537 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7540 code1 = TREE_CODE (t1);
7541 code2 = TREE_CODE (t2);
7543 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7545 if (CONVERT_EXPR_CODE_P (code2)
7546 || code2 == NON_LVALUE_EXPR)
7547 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7548 else
7549 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7552 else if (CONVERT_EXPR_CODE_P (code2)
7553 || code2 == NON_LVALUE_EXPR)
7554 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7556 if (code1 != code2)
7557 return 0;
7559 switch (code1)
7561 case INTEGER_CST:
7562 return wi::to_widest (t1) == wi::to_widest (t2);
7564 case REAL_CST:
7565 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7567 case FIXED_CST:
7568 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7570 case STRING_CST:
7571 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7572 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7573 TREE_STRING_LENGTH (t1)));
7575 case CONSTRUCTOR:
7577 unsigned HOST_WIDE_INT idx;
7578 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7579 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7581 if (vec_safe_length (v1) != vec_safe_length (v2))
7582 return false;
7584 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7585 /* ??? Should we handle also fields here? */
7586 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7587 return false;
7588 return true;
7591 case SAVE_EXPR:
7592 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7594 case CALL_EXPR:
7595 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7596 if (cmp <= 0)
7597 return cmp;
7598 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7599 return 0;
7601 const_tree arg1, arg2;
7602 const_call_expr_arg_iterator iter1, iter2;
7603 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7604 arg2 = first_const_call_expr_arg (t2, &iter2);
7605 arg1 && arg2;
7606 arg1 = next_const_call_expr_arg (&iter1),
7607 arg2 = next_const_call_expr_arg (&iter2))
7609 cmp = simple_cst_equal (arg1, arg2);
7610 if (cmp <= 0)
7611 return cmp;
7613 return arg1 == arg2;
7616 case TARGET_EXPR:
7617 /* Special case: if either target is an unallocated VAR_DECL,
7618 it means that it's going to be unified with whatever the
7619 TARGET_EXPR is really supposed to initialize, so treat it
7620 as being equivalent to anything. */
7621 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7622 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7623 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7624 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7625 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7626 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7627 cmp = 1;
7628 else
7629 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7631 if (cmp <= 0)
7632 return cmp;
7634 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7636 case WITH_CLEANUP_EXPR:
7637 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7638 if (cmp <= 0)
7639 return cmp;
7641 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7643 case COMPONENT_REF:
7644 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7645 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7647 return 0;
7649 case VAR_DECL:
7650 case PARM_DECL:
7651 case CONST_DECL:
7652 case FUNCTION_DECL:
7653 return 0;
7655 default:
7656 if (POLY_INT_CST_P (t1))
7657 /* A false return means maybe_ne rather than known_ne. */
7658 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7659 TYPE_SIGN (TREE_TYPE (t1))),
7660 poly_widest_int::from (poly_int_cst_value (t2),
7661 TYPE_SIGN (TREE_TYPE (t2))));
7662 break;
7665 /* This general rule works for most tree codes. All exceptions should be
7666 handled above. If this is a language-specific tree code, we can't
7667 trust what might be in the operand, so say we don't know
7668 the situation. */
7669 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7670 return -1;
7672 switch (TREE_CODE_CLASS (code1))
7674 case tcc_unary:
7675 case tcc_binary:
7676 case tcc_comparison:
7677 case tcc_expression:
7678 case tcc_reference:
7679 case tcc_statement:
7680 cmp = 1;
7681 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7683 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7684 if (cmp <= 0)
7685 return cmp;
7688 return cmp;
7690 default:
7691 return -1;
7695 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7696 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7697 than U, respectively. */
7700 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7702 if (tree_int_cst_sgn (t) < 0)
7703 return -1;
7704 else if (!tree_fits_uhwi_p (t))
7705 return 1;
7706 else if (TREE_INT_CST_LOW (t) == u)
7707 return 0;
7708 else if (TREE_INT_CST_LOW (t) < u)
7709 return -1;
7710 else
7711 return 1;
7714 /* Return true if SIZE represents a constant size that is in bounds of
7715 what the middle-end and the backend accepts (covering not more than
7716 half of the address-space).
7717 When PERR is non-null, set *PERR on failure to the description of
7718 why SIZE is not valid. */
7720 bool
7721 valid_constant_size_p (const_tree size, cst_size_error *perr /* = NULL */)
7723 if (POLY_INT_CST_P (size))
7725 if (TREE_OVERFLOW (size))
7726 return false;
7727 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7728 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7729 return false;
7730 return true;
7733 cst_size_error error;
7734 if (!perr)
7735 perr = &error;
7737 if (TREE_CODE (size) != INTEGER_CST)
7739 *perr = cst_size_not_constant;
7740 return false;
7743 if (TREE_OVERFLOW_P (size))
7745 *perr = cst_size_overflow;
7746 return false;
7749 if (tree_int_cst_sgn (size) < 0)
7751 *perr = cst_size_negative;
7752 return false;
7754 if (!tree_fits_uhwi_p (size)
7755 || (wi::to_widest (TYPE_MAX_VALUE (sizetype))
7756 < wi::to_widest (size) * 2))
7758 *perr = cst_size_too_big;
7759 return false;
7762 return true;
7765 /* Return the precision of the type, or for a complex or vector type the
7766 precision of the type of its elements. */
7768 unsigned int
7769 element_precision (const_tree type)
7771 if (!TYPE_P (type))
7772 type = TREE_TYPE (type);
7773 enum tree_code code = TREE_CODE (type);
7774 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7775 type = TREE_TYPE (type);
7777 return TYPE_PRECISION (type);
7780 /* Return true if CODE represents an associative tree code. Otherwise
7781 return false. */
7782 bool
7783 associative_tree_code (enum tree_code code)
7785 switch (code)
7787 case BIT_IOR_EXPR:
7788 case BIT_AND_EXPR:
7789 case BIT_XOR_EXPR:
7790 case PLUS_EXPR:
7791 case MULT_EXPR:
7792 case MIN_EXPR:
7793 case MAX_EXPR:
7794 return true;
7796 default:
7797 break;
7799 return false;
7802 /* Return true if CODE represents a commutative tree code. Otherwise
7803 return false. */
7804 bool
7805 commutative_tree_code (enum tree_code code)
7807 switch (code)
7809 case PLUS_EXPR:
7810 case MULT_EXPR:
7811 case MULT_HIGHPART_EXPR:
7812 case MIN_EXPR:
7813 case MAX_EXPR:
7814 case BIT_IOR_EXPR:
7815 case BIT_XOR_EXPR:
7816 case BIT_AND_EXPR:
7817 case NE_EXPR:
7818 case EQ_EXPR:
7819 case UNORDERED_EXPR:
7820 case ORDERED_EXPR:
7821 case UNEQ_EXPR:
7822 case LTGT_EXPR:
7823 case TRUTH_AND_EXPR:
7824 case TRUTH_XOR_EXPR:
7825 case TRUTH_OR_EXPR:
7826 case WIDEN_MULT_EXPR:
7827 case VEC_WIDEN_MULT_HI_EXPR:
7828 case VEC_WIDEN_MULT_LO_EXPR:
7829 case VEC_WIDEN_MULT_EVEN_EXPR:
7830 case VEC_WIDEN_MULT_ODD_EXPR:
7831 return true;
7833 default:
7834 break;
7836 return false;
7839 /* Return true if CODE represents a ternary tree code for which the
7840 first two operands are commutative. Otherwise return false. */
7841 bool
7842 commutative_ternary_tree_code (enum tree_code code)
7844 switch (code)
7846 case WIDEN_MULT_PLUS_EXPR:
7847 case WIDEN_MULT_MINUS_EXPR:
7848 case DOT_PROD_EXPR:
7849 return true;
7851 default:
7852 break;
7854 return false;
7857 /* Returns true if CODE can overflow. */
7859 bool
7860 operation_can_overflow (enum tree_code code)
7862 switch (code)
7864 case PLUS_EXPR:
7865 case MINUS_EXPR:
7866 case MULT_EXPR:
7867 case LSHIFT_EXPR:
7868 /* Can overflow in various ways. */
7869 return true;
7870 case TRUNC_DIV_EXPR:
7871 case EXACT_DIV_EXPR:
7872 case FLOOR_DIV_EXPR:
7873 case CEIL_DIV_EXPR:
7874 /* For INT_MIN / -1. */
7875 return true;
7876 case NEGATE_EXPR:
7877 case ABS_EXPR:
7878 /* For -INT_MIN. */
7879 return true;
7880 default:
7881 /* These operators cannot overflow. */
7882 return false;
7886 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7887 ftrapv doesn't generate trapping insns for CODE. */
7889 bool
7890 operation_no_trapping_overflow (tree type, enum tree_code code)
7892 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7894 /* We don't generate instructions that trap on overflow for complex or vector
7895 types. */
7896 if (!INTEGRAL_TYPE_P (type))
7897 return true;
7899 if (!TYPE_OVERFLOW_TRAPS (type))
7900 return true;
7902 switch (code)
7904 case PLUS_EXPR:
7905 case MINUS_EXPR:
7906 case MULT_EXPR:
7907 case NEGATE_EXPR:
7908 case ABS_EXPR:
7909 /* These operators can overflow, and -ftrapv generates trapping code for
7910 these. */
7911 return false;
7912 case TRUNC_DIV_EXPR:
7913 case EXACT_DIV_EXPR:
7914 case FLOOR_DIV_EXPR:
7915 case CEIL_DIV_EXPR:
7916 case LSHIFT_EXPR:
7917 /* These operators can overflow, but -ftrapv does not generate trapping
7918 code for these. */
7919 return true;
7920 default:
7921 /* These operators cannot overflow. */
7922 return true;
7926 /* Constructors for pointer, array and function types.
7927 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7928 constructed by language-dependent code, not here.) */
7930 /* Construct, lay out and return the type of pointers to TO_TYPE with
7931 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7932 reference all of memory. If such a type has already been
7933 constructed, reuse it. */
7935 tree
7936 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7937 bool can_alias_all)
7939 tree t;
7940 bool could_alias = can_alias_all;
7942 if (to_type == error_mark_node)
7943 return error_mark_node;
7945 /* If the pointed-to type has the may_alias attribute set, force
7946 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7947 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7948 can_alias_all = true;
7950 /* In some cases, languages will have things that aren't a POINTER_TYPE
7951 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7952 In that case, return that type without regard to the rest of our
7953 operands.
7955 ??? This is a kludge, but consistent with the way this function has
7956 always operated and there doesn't seem to be a good way to avoid this
7957 at the moment. */
7958 if (TYPE_POINTER_TO (to_type) != 0
7959 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7960 return TYPE_POINTER_TO (to_type);
7962 /* First, if we already have a type for pointers to TO_TYPE and it's
7963 the proper mode, use it. */
7964 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7965 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7966 return t;
7968 t = make_node (POINTER_TYPE);
7970 TREE_TYPE (t) = to_type;
7971 SET_TYPE_MODE (t, mode);
7972 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7973 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7974 TYPE_POINTER_TO (to_type) = t;
7976 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7977 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7978 SET_TYPE_STRUCTURAL_EQUALITY (t);
7979 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7980 TYPE_CANONICAL (t)
7981 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7982 mode, false);
7984 /* Lay out the type. This function has many callers that are concerned
7985 with expression-construction, and this simplifies them all. */
7986 layout_type (t);
7988 return t;
7991 /* By default build pointers in ptr_mode. */
7993 tree
7994 build_pointer_type (tree to_type)
7996 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7997 : TYPE_ADDR_SPACE (to_type);
7998 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7999 return build_pointer_type_for_mode (to_type, pointer_mode, false);
8002 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
8004 tree
8005 build_reference_type_for_mode (tree to_type, machine_mode mode,
8006 bool can_alias_all)
8008 tree t;
8009 bool could_alias = can_alias_all;
8011 if (to_type == error_mark_node)
8012 return error_mark_node;
8014 /* If the pointed-to type has the may_alias attribute set, force
8015 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
8016 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
8017 can_alias_all = true;
8019 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
8020 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
8021 In that case, return that type without regard to the rest of our
8022 operands.
8024 ??? This is a kludge, but consistent with the way this function has
8025 always operated and there doesn't seem to be a good way to avoid this
8026 at the moment. */
8027 if (TYPE_REFERENCE_TO (to_type) != 0
8028 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
8029 return TYPE_REFERENCE_TO (to_type);
8031 /* First, if we already have a type for pointers to TO_TYPE and it's
8032 the proper mode, use it. */
8033 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
8034 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8035 return t;
8037 t = make_node (REFERENCE_TYPE);
8039 TREE_TYPE (t) = to_type;
8040 SET_TYPE_MODE (t, mode);
8041 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8042 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
8043 TYPE_REFERENCE_TO (to_type) = t;
8045 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8046 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8047 SET_TYPE_STRUCTURAL_EQUALITY (t);
8048 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8049 TYPE_CANONICAL (t)
8050 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
8051 mode, false);
8053 layout_type (t);
8055 return t;
8059 /* Build the node for the type of references-to-TO_TYPE by default
8060 in ptr_mode. */
8062 tree
8063 build_reference_type (tree to_type)
8065 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8066 : TYPE_ADDR_SPACE (to_type);
8067 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8068 return build_reference_type_for_mode (to_type, pointer_mode, false);
8071 #define MAX_INT_CACHED_PREC \
8072 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8073 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
8075 /* Builds a signed or unsigned integer type of precision PRECISION.
8076 Used for C bitfields whose precision does not match that of
8077 built-in target types. */
8078 tree
8079 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8080 int unsignedp)
8082 tree itype, ret;
8084 if (unsignedp)
8085 unsignedp = MAX_INT_CACHED_PREC + 1;
8087 if (precision <= MAX_INT_CACHED_PREC)
8089 itype = nonstandard_integer_type_cache[precision + unsignedp];
8090 if (itype)
8091 return itype;
8094 itype = make_node (INTEGER_TYPE);
8095 TYPE_PRECISION (itype) = precision;
8097 if (unsignedp)
8098 fixup_unsigned_type (itype);
8099 else
8100 fixup_signed_type (itype);
8102 inchash::hash hstate;
8103 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8104 ret = type_hash_canon (hstate.end (), itype);
8105 if (precision <= MAX_INT_CACHED_PREC)
8106 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8108 return ret;
8111 #define MAX_BOOL_CACHED_PREC \
8112 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8113 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8115 /* Builds a boolean type of precision PRECISION.
8116 Used for boolean vectors to choose proper vector element size. */
8117 tree
8118 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8120 tree type;
8122 if (precision <= MAX_BOOL_CACHED_PREC)
8124 type = nonstandard_boolean_type_cache[precision];
8125 if (type)
8126 return type;
8129 type = make_node (BOOLEAN_TYPE);
8130 TYPE_PRECISION (type) = precision;
8131 fixup_signed_type (type);
8133 if (precision <= MAX_INT_CACHED_PREC)
8134 nonstandard_boolean_type_cache[precision] = type;
8136 return type;
8139 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8140 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8141 is true, reuse such a type that has already been constructed. */
8143 static tree
8144 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8146 tree itype = make_node (INTEGER_TYPE);
8148 TREE_TYPE (itype) = type;
8150 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8151 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8153 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8154 SET_TYPE_MODE (itype, TYPE_MODE (type));
8155 TYPE_SIZE (itype) = TYPE_SIZE (type);
8156 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8157 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
8158 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8159 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
8161 if (!shared)
8162 return itype;
8164 if ((TYPE_MIN_VALUE (itype)
8165 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8166 || (TYPE_MAX_VALUE (itype)
8167 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8169 /* Since we cannot reliably merge this type, we need to compare it using
8170 structural equality checks. */
8171 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8172 return itype;
8175 hashval_t hash = type_hash_canon_hash (itype);
8176 itype = type_hash_canon (hash, itype);
8178 return itype;
8181 /* Wrapper around build_range_type_1 with SHARED set to true. */
8183 tree
8184 build_range_type (tree type, tree lowval, tree highval)
8186 return build_range_type_1 (type, lowval, highval, true);
8189 /* Wrapper around build_range_type_1 with SHARED set to false. */
8191 tree
8192 build_nonshared_range_type (tree type, tree lowval, tree highval)
8194 return build_range_type_1 (type, lowval, highval, false);
8197 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8198 MAXVAL should be the maximum value in the domain
8199 (one less than the length of the array).
8201 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8202 We don't enforce this limit, that is up to caller (e.g. language front end).
8203 The limit exists because the result is a signed type and we don't handle
8204 sizes that use more than one HOST_WIDE_INT. */
8206 tree
8207 build_index_type (tree maxval)
8209 return build_range_type (sizetype, size_zero_node, maxval);
8212 /* Return true if the debug information for TYPE, a subtype, should be emitted
8213 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8214 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8215 debug info and doesn't reflect the source code. */
8217 bool
8218 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8220 tree base_type = TREE_TYPE (type), low, high;
8222 /* Subrange types have a base type which is an integral type. */
8223 if (!INTEGRAL_TYPE_P (base_type))
8224 return false;
8226 /* Get the real bounds of the subtype. */
8227 if (lang_hooks.types.get_subrange_bounds)
8228 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8229 else
8231 low = TYPE_MIN_VALUE (type);
8232 high = TYPE_MAX_VALUE (type);
8235 /* If the type and its base type have the same representation and the same
8236 name, then the type is not a subrange but a copy of the base type. */
8237 if ((TREE_CODE (base_type) == INTEGER_TYPE
8238 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8239 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8240 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8241 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8242 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8243 return false;
8245 if (lowval)
8246 *lowval = low;
8247 if (highval)
8248 *highval = high;
8249 return true;
8252 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8253 and number of elements specified by the range of values of INDEX_TYPE.
8254 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
8255 If SHARED is true, reuse such a type that has already been constructed.
8256 If SET_CANONICAL is true, compute TYPE_CANONICAL from the element type. */
8258 static tree
8259 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
8260 bool shared, bool set_canonical)
8262 tree t;
8264 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8266 error ("arrays of functions are not meaningful");
8267 elt_type = integer_type_node;
8270 t = make_node (ARRAY_TYPE);
8271 TREE_TYPE (t) = elt_type;
8272 TYPE_DOMAIN (t) = index_type;
8273 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8274 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
8275 layout_type (t);
8277 if (shared)
8279 hashval_t hash = type_hash_canon_hash (t);
8280 t = type_hash_canon (hash, t);
8283 if (TYPE_CANONICAL (t) == t && set_canonical)
8285 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8286 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8287 || in_lto_p)
8288 SET_TYPE_STRUCTURAL_EQUALITY (t);
8289 else if (TYPE_CANONICAL (elt_type) != elt_type
8290 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8291 TYPE_CANONICAL (t)
8292 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8293 index_type
8294 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8295 typeless_storage, shared, set_canonical);
8298 return t;
8301 /* Wrapper around build_array_type_1 with SHARED set to true. */
8303 tree
8304 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
8306 return
8307 build_array_type_1 (elt_type, index_type, typeless_storage, true, true);
8310 /* Wrapper around build_array_type_1 with SHARED set to false. */
8312 tree
8313 build_nonshared_array_type (tree elt_type, tree index_type)
8315 return build_array_type_1 (elt_type, index_type, false, false, true);
8318 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8319 sizetype. */
8321 tree
8322 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
8324 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8327 /* Recursively examines the array elements of TYPE, until a non-array
8328 element type is found. */
8330 tree
8331 strip_array_types (tree type)
8333 while (TREE_CODE (type) == ARRAY_TYPE)
8334 type = TREE_TYPE (type);
8336 return type;
8339 /* Computes the canonical argument types from the argument type list
8340 ARGTYPES.
8342 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8343 on entry to this function, or if any of the ARGTYPES are
8344 structural.
8346 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8347 true on entry to this function, or if any of the ARGTYPES are
8348 non-canonical.
8350 Returns a canonical argument list, which may be ARGTYPES when the
8351 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8352 true) or would not differ from ARGTYPES. */
8354 static tree
8355 maybe_canonicalize_argtypes (tree argtypes,
8356 bool *any_structural_p,
8357 bool *any_noncanonical_p)
8359 tree arg;
8360 bool any_noncanonical_argtypes_p = false;
8362 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8364 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8365 /* Fail gracefully by stating that the type is structural. */
8366 *any_structural_p = true;
8367 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8368 *any_structural_p = true;
8369 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8370 || TREE_PURPOSE (arg))
8371 /* If the argument has a default argument, we consider it
8372 non-canonical even though the type itself is canonical.
8373 That way, different variants of function and method types
8374 with default arguments will all point to the variant with
8375 no defaults as their canonical type. */
8376 any_noncanonical_argtypes_p = true;
8379 if (*any_structural_p)
8380 return argtypes;
8382 if (any_noncanonical_argtypes_p)
8384 /* Build the canonical list of argument types. */
8385 tree canon_argtypes = NULL_TREE;
8386 bool is_void = false;
8388 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8390 if (arg == void_list_node)
8391 is_void = true;
8392 else
8393 canon_argtypes = tree_cons (NULL_TREE,
8394 TYPE_CANONICAL (TREE_VALUE (arg)),
8395 canon_argtypes);
8398 canon_argtypes = nreverse (canon_argtypes);
8399 if (is_void)
8400 canon_argtypes = chainon (canon_argtypes, void_list_node);
8402 /* There is a non-canonical type. */
8403 *any_noncanonical_p = true;
8404 return canon_argtypes;
8407 /* The canonical argument types are the same as ARGTYPES. */
8408 return argtypes;
8411 /* Construct, lay out and return
8412 the type of functions returning type VALUE_TYPE
8413 given arguments of types ARG_TYPES.
8414 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8415 are data type nodes for the arguments of the function.
8416 If such a type has already been constructed, reuse it. */
8418 tree
8419 build_function_type (tree value_type, tree arg_types)
8421 tree t;
8422 inchash::hash hstate;
8423 bool any_structural_p, any_noncanonical_p;
8424 tree canon_argtypes;
8426 gcc_assert (arg_types != error_mark_node);
8428 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8430 error ("function return type cannot be function");
8431 value_type = integer_type_node;
8434 /* Make a node of the sort we want. */
8435 t = make_node (FUNCTION_TYPE);
8436 TREE_TYPE (t) = value_type;
8437 TYPE_ARG_TYPES (t) = arg_types;
8439 /* If we already have such a type, use the old one. */
8440 hashval_t hash = type_hash_canon_hash (t);
8441 t = type_hash_canon (hash, t);
8443 /* Set up the canonical type. */
8444 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8445 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8446 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8447 &any_structural_p,
8448 &any_noncanonical_p);
8449 if (any_structural_p)
8450 SET_TYPE_STRUCTURAL_EQUALITY (t);
8451 else if (any_noncanonical_p)
8452 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8453 canon_argtypes);
8455 if (!COMPLETE_TYPE_P (t))
8456 layout_type (t);
8457 return t;
8460 /* Build a function type. The RETURN_TYPE is the type returned by the
8461 function. If VAARGS is set, no void_type_node is appended to the
8462 list. ARGP must be always be terminated be a NULL_TREE. */
8464 static tree
8465 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8467 tree t, args, last;
8469 t = va_arg (argp, tree);
8470 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8471 args = tree_cons (NULL_TREE, t, args);
8473 if (vaargs)
8475 last = args;
8476 if (args != NULL_TREE)
8477 args = nreverse (args);
8478 gcc_assert (last != void_list_node);
8480 else if (args == NULL_TREE)
8481 args = void_list_node;
8482 else
8484 last = args;
8485 args = nreverse (args);
8486 TREE_CHAIN (last) = void_list_node;
8488 args = build_function_type (return_type, args);
8490 return args;
8493 /* Build a function type. The RETURN_TYPE is the type returned by the
8494 function. If additional arguments are provided, they are
8495 additional argument types. The list of argument types must always
8496 be terminated by NULL_TREE. */
8498 tree
8499 build_function_type_list (tree return_type, ...)
8501 tree args;
8502 va_list p;
8504 va_start (p, return_type);
8505 args = build_function_type_list_1 (false, return_type, p);
8506 va_end (p);
8507 return args;
8510 /* Build a variable argument function type. The RETURN_TYPE is the
8511 type returned by the function. If additional arguments are provided,
8512 they are additional argument types. The list of argument types must
8513 always be terminated by NULL_TREE. */
8515 tree
8516 build_varargs_function_type_list (tree return_type, ...)
8518 tree args;
8519 va_list p;
8521 va_start (p, return_type);
8522 args = build_function_type_list_1 (true, return_type, p);
8523 va_end (p);
8525 return args;
8528 /* Build a function type. RETURN_TYPE is the type returned by the
8529 function; VAARGS indicates whether the function takes varargs. The
8530 function takes N named arguments, the types of which are provided in
8531 ARG_TYPES. */
8533 static tree
8534 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8535 tree *arg_types)
8537 int i;
8538 tree t = vaargs ? NULL_TREE : void_list_node;
8540 for (i = n - 1; i >= 0; i--)
8541 t = tree_cons (NULL_TREE, arg_types[i], t);
8543 return build_function_type (return_type, t);
8546 /* Build a function type. RETURN_TYPE is the type returned by the
8547 function. The function takes N named arguments, the types of which
8548 are provided in ARG_TYPES. */
8550 tree
8551 build_function_type_array (tree return_type, int n, tree *arg_types)
8553 return build_function_type_array_1 (false, return_type, n, arg_types);
8556 /* Build a variable argument function type. RETURN_TYPE is the type
8557 returned by the function. The function takes N named arguments, the
8558 types of which are provided in ARG_TYPES. */
8560 tree
8561 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8563 return build_function_type_array_1 (true, return_type, n, arg_types);
8566 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8567 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8568 for the method. An implicit additional parameter (of type
8569 pointer-to-BASETYPE) is added to the ARGTYPES. */
8571 tree
8572 build_method_type_directly (tree basetype,
8573 tree rettype,
8574 tree argtypes)
8576 tree t;
8577 tree ptype;
8578 bool any_structural_p, any_noncanonical_p;
8579 tree canon_argtypes;
8581 /* Make a node of the sort we want. */
8582 t = make_node (METHOD_TYPE);
8584 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8585 TREE_TYPE (t) = rettype;
8586 ptype = build_pointer_type (basetype);
8588 /* The actual arglist for this function includes a "hidden" argument
8589 which is "this". Put it into the list of argument types. */
8590 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8591 TYPE_ARG_TYPES (t) = argtypes;
8593 /* If we already have such a type, use the old one. */
8594 hashval_t hash = type_hash_canon_hash (t);
8595 t = type_hash_canon (hash, t);
8597 /* Set up the canonical type. */
8598 any_structural_p
8599 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8600 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8601 any_noncanonical_p
8602 = (TYPE_CANONICAL (basetype) != basetype
8603 || TYPE_CANONICAL (rettype) != rettype);
8604 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8605 &any_structural_p,
8606 &any_noncanonical_p);
8607 if (any_structural_p)
8608 SET_TYPE_STRUCTURAL_EQUALITY (t);
8609 else if (any_noncanonical_p)
8610 TYPE_CANONICAL (t)
8611 = build_method_type_directly (TYPE_CANONICAL (basetype),
8612 TYPE_CANONICAL (rettype),
8613 canon_argtypes);
8614 if (!COMPLETE_TYPE_P (t))
8615 layout_type (t);
8617 return t;
8620 /* Construct, lay out and return the type of methods belonging to class
8621 BASETYPE and whose arguments and values are described by TYPE.
8622 If that type exists already, reuse it.
8623 TYPE must be a FUNCTION_TYPE node. */
8625 tree
8626 build_method_type (tree basetype, tree type)
8628 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8630 return build_method_type_directly (basetype,
8631 TREE_TYPE (type),
8632 TYPE_ARG_TYPES (type));
8635 /* Construct, lay out and return the type of offsets to a value
8636 of type TYPE, within an object of type BASETYPE.
8637 If a suitable offset type exists already, reuse it. */
8639 tree
8640 build_offset_type (tree basetype, tree type)
8642 tree t;
8644 /* Make a node of the sort we want. */
8645 t = make_node (OFFSET_TYPE);
8647 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8648 TREE_TYPE (t) = type;
8650 /* If we already have such a type, use the old one. */
8651 hashval_t hash = type_hash_canon_hash (t);
8652 t = type_hash_canon (hash, t);
8654 if (!COMPLETE_TYPE_P (t))
8655 layout_type (t);
8657 if (TYPE_CANONICAL (t) == t)
8659 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8660 || TYPE_STRUCTURAL_EQUALITY_P (type))
8661 SET_TYPE_STRUCTURAL_EQUALITY (t);
8662 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8663 || TYPE_CANONICAL (type) != type)
8664 TYPE_CANONICAL (t)
8665 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8666 TYPE_CANONICAL (type));
8669 return t;
8672 /* Create a complex type whose components are COMPONENT_TYPE.
8674 If NAMED is true, the type is given a TYPE_NAME. We do not always
8675 do so because this creates a DECL node and thus make the DECL_UIDs
8676 dependent on the type canonicalization hashtable, which is GC-ed,
8677 so the DECL_UIDs would not be stable wrt garbage collection. */
8679 tree
8680 build_complex_type (tree component_type, bool named)
8682 gcc_assert (INTEGRAL_TYPE_P (component_type)
8683 || SCALAR_FLOAT_TYPE_P (component_type)
8684 || FIXED_POINT_TYPE_P (component_type));
8686 /* Make a node of the sort we want. */
8687 tree probe = make_node (COMPLEX_TYPE);
8689 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8691 /* If we already have such a type, use the old one. */
8692 hashval_t hash = type_hash_canon_hash (probe);
8693 tree t = type_hash_canon (hash, probe);
8695 if (t == probe)
8697 /* We created a new type. The hash insertion will have laid
8698 out the type. We need to check the canonicalization and
8699 maybe set the name. */
8700 gcc_checking_assert (COMPLETE_TYPE_P (t)
8701 && !TYPE_NAME (t)
8702 && TYPE_CANONICAL (t) == t);
8704 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8705 SET_TYPE_STRUCTURAL_EQUALITY (t);
8706 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8707 TYPE_CANONICAL (t)
8708 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8710 /* We need to create a name, since complex is a fundamental type. */
8711 if (named)
8713 const char *name = NULL;
8715 if (TREE_TYPE (t) == char_type_node)
8716 name = "complex char";
8717 else if (TREE_TYPE (t) == signed_char_type_node)
8718 name = "complex signed char";
8719 else if (TREE_TYPE (t) == unsigned_char_type_node)
8720 name = "complex unsigned char";
8721 else if (TREE_TYPE (t) == short_integer_type_node)
8722 name = "complex short int";
8723 else if (TREE_TYPE (t) == short_unsigned_type_node)
8724 name = "complex short unsigned int";
8725 else if (TREE_TYPE (t) == integer_type_node)
8726 name = "complex int";
8727 else if (TREE_TYPE (t) == unsigned_type_node)
8728 name = "complex unsigned int";
8729 else if (TREE_TYPE (t) == long_integer_type_node)
8730 name = "complex long int";
8731 else if (TREE_TYPE (t) == long_unsigned_type_node)
8732 name = "complex long unsigned int";
8733 else if (TREE_TYPE (t) == long_long_integer_type_node)
8734 name = "complex long long int";
8735 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8736 name = "complex long long unsigned int";
8738 if (name != NULL)
8739 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8740 get_identifier (name), t);
8744 return build_qualified_type (t, TYPE_QUALS (component_type));
8747 /* If TYPE is a real or complex floating-point type and the target
8748 does not directly support arithmetic on TYPE then return the wider
8749 type to be used for arithmetic on TYPE. Otherwise, return
8750 NULL_TREE. */
8752 tree
8753 excess_precision_type (tree type)
8755 /* The target can give two different responses to the question of
8756 which excess precision mode it would like depending on whether we
8757 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8759 enum excess_precision_type requested_type
8760 = (flag_excess_precision == EXCESS_PRECISION_FAST
8761 ? EXCESS_PRECISION_TYPE_FAST
8762 : EXCESS_PRECISION_TYPE_STANDARD);
8764 enum flt_eval_method target_flt_eval_method
8765 = targetm.c.excess_precision (requested_type);
8767 /* The target should not ask for unpredictable float evaluation (though
8768 it might advertise that implicitly the evaluation is unpredictable,
8769 but we don't care about that here, it will have been reported
8770 elsewhere). If it does ask for unpredictable evaluation, we have
8771 nothing to do here. */
8772 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8774 /* Nothing to do. The target has asked for all types we know about
8775 to be computed with their native precision and range. */
8776 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8777 return NULL_TREE;
8779 /* The target will promote this type in a target-dependent way, so excess
8780 precision ought to leave it alone. */
8781 if (targetm.promoted_type (type) != NULL_TREE)
8782 return NULL_TREE;
8784 machine_mode float16_type_mode = (float16_type_node
8785 ? TYPE_MODE (float16_type_node)
8786 : VOIDmode);
8787 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8788 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8790 switch (TREE_CODE (type))
8792 case REAL_TYPE:
8794 machine_mode type_mode = TYPE_MODE (type);
8795 switch (target_flt_eval_method)
8797 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8798 if (type_mode == float16_type_mode)
8799 return float_type_node;
8800 break;
8801 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8802 if (type_mode == float16_type_mode
8803 || type_mode == float_type_mode)
8804 return double_type_node;
8805 break;
8806 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8807 if (type_mode == float16_type_mode
8808 || type_mode == float_type_mode
8809 || type_mode == double_type_mode)
8810 return long_double_type_node;
8811 break;
8812 default:
8813 gcc_unreachable ();
8815 break;
8817 case COMPLEX_TYPE:
8819 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8820 return NULL_TREE;
8821 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8822 switch (target_flt_eval_method)
8824 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8825 if (type_mode == float16_type_mode)
8826 return complex_float_type_node;
8827 break;
8828 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8829 if (type_mode == float16_type_mode
8830 || type_mode == float_type_mode)
8831 return complex_double_type_node;
8832 break;
8833 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8834 if (type_mode == float16_type_mode
8835 || type_mode == float_type_mode
8836 || type_mode == double_type_mode)
8837 return complex_long_double_type_node;
8838 break;
8839 default:
8840 gcc_unreachable ();
8842 break;
8844 default:
8845 break;
8848 return NULL_TREE;
8851 /* Return OP, stripped of any conversions to wider types as much as is safe.
8852 Converting the value back to OP's type makes a value equivalent to OP.
8854 If FOR_TYPE is nonzero, we return a value which, if converted to
8855 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8857 OP must have integer, real or enumeral type. Pointers are not allowed!
8859 There are some cases where the obvious value we could return
8860 would regenerate to OP if converted to OP's type,
8861 but would not extend like OP to wider types.
8862 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8863 For example, if OP is (unsigned short)(signed char)-1,
8864 we avoid returning (signed char)-1 if FOR_TYPE is int,
8865 even though extending that to an unsigned short would regenerate OP,
8866 since the result of extending (signed char)-1 to (int)
8867 is different from (int) OP. */
8869 tree
8870 get_unwidened (tree op, tree for_type)
8872 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8873 tree type = TREE_TYPE (op);
8874 unsigned final_prec
8875 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8876 int uns
8877 = (for_type != 0 && for_type != type
8878 && final_prec > TYPE_PRECISION (type)
8879 && TYPE_UNSIGNED (type));
8880 tree win = op;
8882 while (CONVERT_EXPR_P (op))
8884 int bitschange;
8886 /* TYPE_PRECISION on vector types has different meaning
8887 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8888 so avoid them here. */
8889 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8890 break;
8892 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8893 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8895 /* Truncations are many-one so cannot be removed.
8896 Unless we are later going to truncate down even farther. */
8897 if (bitschange < 0
8898 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8899 break;
8901 /* See what's inside this conversion. If we decide to strip it,
8902 we will set WIN. */
8903 op = TREE_OPERAND (op, 0);
8905 /* If we have not stripped any zero-extensions (uns is 0),
8906 we can strip any kind of extension.
8907 If we have previously stripped a zero-extension,
8908 only zero-extensions can safely be stripped.
8909 Any extension can be stripped if the bits it would produce
8910 are all going to be discarded later by truncating to FOR_TYPE. */
8912 if (bitschange > 0)
8914 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8915 win = op;
8916 /* TYPE_UNSIGNED says whether this is a zero-extension.
8917 Let's avoid computing it if it does not affect WIN
8918 and if UNS will not be needed again. */
8919 if ((uns
8920 || CONVERT_EXPR_P (op))
8921 && TYPE_UNSIGNED (TREE_TYPE (op)))
8923 uns = 1;
8924 win = op;
8929 /* If we finally reach a constant see if it fits in sth smaller and
8930 in that case convert it. */
8931 if (TREE_CODE (win) == INTEGER_CST)
8933 tree wtype = TREE_TYPE (win);
8934 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8935 if (for_type)
8936 prec = MAX (prec, final_prec);
8937 if (prec < TYPE_PRECISION (wtype))
8939 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8940 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8941 win = fold_convert (t, win);
8945 return win;
8948 /* Return OP or a simpler expression for a narrower value
8949 which can be sign-extended or zero-extended to give back OP.
8950 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8951 or 0 if the value should be sign-extended. */
8953 tree
8954 get_narrower (tree op, int *unsignedp_ptr)
8956 int uns = 0;
8957 int first = 1;
8958 tree win = op;
8959 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8961 if (TREE_CODE (op) == COMPOUND_EXPR)
8964 op = TREE_OPERAND (op, 1);
8965 while (TREE_CODE (op) == COMPOUND_EXPR);
8966 tree ret = get_narrower (op, unsignedp_ptr);
8967 if (ret == op)
8968 return win;
8969 auto_vec <tree, 16> v;
8970 unsigned int i;
8971 for (op = win; TREE_CODE (op) == COMPOUND_EXPR;
8972 op = TREE_OPERAND (op, 1))
8973 v.safe_push (op);
8974 FOR_EACH_VEC_ELT_REVERSE (v, i, op)
8975 ret = build2_loc (EXPR_LOCATION (op), COMPOUND_EXPR,
8976 TREE_TYPE (ret), TREE_OPERAND (op, 0),
8977 ret);
8978 return ret;
8980 while (TREE_CODE (op) == NOP_EXPR)
8982 int bitschange
8983 = (TYPE_PRECISION (TREE_TYPE (op))
8984 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8986 /* Truncations are many-one so cannot be removed. */
8987 if (bitschange < 0)
8988 break;
8990 /* See what's inside this conversion. If we decide to strip it,
8991 we will set WIN. */
8993 if (bitschange > 0)
8995 op = TREE_OPERAND (op, 0);
8996 /* An extension: the outermost one can be stripped,
8997 but remember whether it is zero or sign extension. */
8998 if (first)
8999 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9000 /* Otherwise, if a sign extension has been stripped,
9001 only sign extensions can now be stripped;
9002 if a zero extension has been stripped, only zero-extensions. */
9003 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
9004 break;
9005 first = 0;
9007 else /* bitschange == 0 */
9009 /* A change in nominal type can always be stripped, but we must
9010 preserve the unsignedness. */
9011 if (first)
9012 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9013 first = 0;
9014 op = TREE_OPERAND (op, 0);
9015 /* Keep trying to narrow, but don't assign op to win if it
9016 would turn an integral type into something else. */
9017 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
9018 continue;
9021 win = op;
9024 if (TREE_CODE (op) == COMPONENT_REF
9025 /* Since type_for_size always gives an integer type. */
9026 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
9027 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
9028 /* Ensure field is laid out already. */
9029 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
9030 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
9032 unsigned HOST_WIDE_INT innerprec
9033 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
9034 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
9035 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
9036 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
9038 /* We can get this structure field in a narrower type that fits it,
9039 but the resulting extension to its nominal type (a fullword type)
9040 must satisfy the same conditions as for other extensions.
9042 Do this only for fields that are aligned (not bit-fields),
9043 because when bit-field insns will be used there is no
9044 advantage in doing this. */
9046 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
9047 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
9048 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
9049 && type != 0)
9051 if (first)
9052 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
9053 win = fold_convert (type, op);
9057 *unsignedp_ptr = uns;
9058 return win;
9061 /* Return true if integer constant C has a value that is permissible
9062 for TYPE, an integral type. */
9064 bool
9065 int_fits_type_p (const_tree c, const_tree type)
9067 tree type_low_bound, type_high_bound;
9068 bool ok_for_low_bound, ok_for_high_bound;
9069 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
9071 /* Non-standard boolean types can have arbitrary precision but various
9072 transformations assume that they can only take values 0 and +/-1. */
9073 if (TREE_CODE (type) == BOOLEAN_TYPE)
9074 return wi::fits_to_boolean_p (wi::to_wide (c), type);
9076 retry:
9077 type_low_bound = TYPE_MIN_VALUE (type);
9078 type_high_bound = TYPE_MAX_VALUE (type);
9080 /* If at least one bound of the type is a constant integer, we can check
9081 ourselves and maybe make a decision. If no such decision is possible, but
9082 this type is a subtype, try checking against that. Otherwise, use
9083 fits_to_tree_p, which checks against the precision.
9085 Compute the status for each possibly constant bound, and return if we see
9086 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9087 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9088 for "constant known to fit". */
9090 /* Check if c >= type_low_bound. */
9091 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9093 if (tree_int_cst_lt (c, type_low_bound))
9094 return false;
9095 ok_for_low_bound = true;
9097 else
9098 ok_for_low_bound = false;
9100 /* Check if c <= type_high_bound. */
9101 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9103 if (tree_int_cst_lt (type_high_bound, c))
9104 return false;
9105 ok_for_high_bound = true;
9107 else
9108 ok_for_high_bound = false;
9110 /* If the constant fits both bounds, the result is known. */
9111 if (ok_for_low_bound && ok_for_high_bound)
9112 return true;
9114 /* Perform some generic filtering which may allow making a decision
9115 even if the bounds are not constant. First, negative integers
9116 never fit in unsigned types, */
9117 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
9118 return false;
9120 /* Second, narrower types always fit in wider ones. */
9121 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9122 return true;
9124 /* Third, unsigned integers with top bit set never fit signed types. */
9125 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9127 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
9128 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9130 /* When a tree_cst is converted to a wide-int, the precision
9131 is taken from the type. However, if the precision of the
9132 mode underneath the type is smaller than that, it is
9133 possible that the value will not fit. The test below
9134 fails if any bit is set between the sign bit of the
9135 underlying mode and the top bit of the type. */
9136 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
9137 return false;
9139 else if (wi::neg_p (wi::to_wide (c)))
9140 return false;
9143 /* If we haven't been able to decide at this point, there nothing more we
9144 can check ourselves here. Look at the base type if we have one and it
9145 has the same precision. */
9146 if (TREE_CODE (type) == INTEGER_TYPE
9147 && TREE_TYPE (type) != 0
9148 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9150 type = TREE_TYPE (type);
9151 goto retry;
9154 /* Or to fits_to_tree_p, if nothing else. */
9155 return wi::fits_to_tree_p (wi::to_wide (c), type);
9158 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9159 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9160 represented (assuming two's-complement arithmetic) within the bit
9161 precision of the type are returned instead. */
9163 void
9164 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9166 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9167 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9168 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
9169 else
9171 if (TYPE_UNSIGNED (type))
9172 mpz_set_ui (min, 0);
9173 else
9175 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9176 wi::to_mpz (mn, min, SIGNED);
9180 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9181 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9182 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
9183 else
9185 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9186 wi::to_mpz (mn, max, TYPE_SIGN (type));
9190 /* Return true if VAR is an automatic variable. */
9192 bool
9193 auto_var_p (const_tree var)
9195 return ((((VAR_P (var) && ! DECL_EXTERNAL (var))
9196 || TREE_CODE (var) == PARM_DECL)
9197 && ! TREE_STATIC (var))
9198 || TREE_CODE (var) == RESULT_DECL);
9201 /* Return true if VAR is an automatic variable defined in function FN. */
9203 bool
9204 auto_var_in_fn_p (const_tree var, const_tree fn)
9206 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9207 && (auto_var_p (var)
9208 || TREE_CODE (var) == LABEL_DECL));
9211 /* Subprogram of following function. Called by walk_tree.
9213 Return *TP if it is an automatic variable or parameter of the
9214 function passed in as DATA. */
9216 static tree
9217 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9219 tree fn = (tree) data;
9221 if (TYPE_P (*tp))
9222 *walk_subtrees = 0;
9224 else if (DECL_P (*tp)
9225 && auto_var_in_fn_p (*tp, fn))
9226 return *tp;
9228 return NULL_TREE;
9231 /* Returns true if T is, contains, or refers to a type with variable
9232 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9233 arguments, but not the return type. If FN is nonzero, only return
9234 true if a modifier of the type or position of FN is a variable or
9235 parameter inside FN.
9237 This concept is more general than that of C99 'variably modified types':
9238 in C99, a struct type is never variably modified because a VLA may not
9239 appear as a structure member. However, in GNU C code like:
9241 struct S { int i[f()]; };
9243 is valid, and other languages may define similar constructs. */
9245 bool
9246 variably_modified_type_p (tree type, tree fn)
9248 tree t;
9250 /* Test if T is either variable (if FN is zero) or an expression containing
9251 a variable in FN. If TYPE isn't gimplified, return true also if
9252 gimplify_one_sizepos would gimplify the expression into a local
9253 variable. */
9254 #define RETURN_TRUE_IF_VAR(T) \
9255 do { tree _t = (T); \
9256 if (_t != NULL_TREE \
9257 && _t != error_mark_node \
9258 && !CONSTANT_CLASS_P (_t) \
9259 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9260 && (!fn \
9261 || (!TYPE_SIZES_GIMPLIFIED (type) \
9262 && (TREE_CODE (_t) != VAR_DECL \
9263 && !CONTAINS_PLACEHOLDER_P (_t))) \
9264 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9265 return true; } while (0)
9267 if (type == error_mark_node)
9268 return false;
9270 /* If TYPE itself has variable size, it is variably modified. */
9271 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9272 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9274 switch (TREE_CODE (type))
9276 case POINTER_TYPE:
9277 case REFERENCE_TYPE:
9278 case VECTOR_TYPE:
9279 /* Ada can have pointer types refering to themselves indirectly. */
9280 if (TREE_VISITED (type))
9281 return false;
9282 TREE_VISITED (type) = true;
9283 if (variably_modified_type_p (TREE_TYPE (type), fn))
9285 TREE_VISITED (type) = false;
9286 return true;
9288 TREE_VISITED (type) = false;
9289 break;
9291 case FUNCTION_TYPE:
9292 case METHOD_TYPE:
9293 /* If TYPE is a function type, it is variably modified if the
9294 return type is variably modified. */
9295 if (variably_modified_type_p (TREE_TYPE (type), fn))
9296 return true;
9297 break;
9299 case INTEGER_TYPE:
9300 case REAL_TYPE:
9301 case FIXED_POINT_TYPE:
9302 case ENUMERAL_TYPE:
9303 case BOOLEAN_TYPE:
9304 /* Scalar types are variably modified if their end points
9305 aren't constant. */
9306 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9307 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9308 break;
9310 case RECORD_TYPE:
9311 case UNION_TYPE:
9312 case QUAL_UNION_TYPE:
9313 /* We can't see if any of the fields are variably-modified by the
9314 definition we normally use, since that would produce infinite
9315 recursion via pointers. */
9316 /* This is variably modified if some field's type is. */
9317 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9318 if (TREE_CODE (t) == FIELD_DECL)
9320 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9321 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9322 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9324 /* If the type is a qualified union, then the DECL_QUALIFIER
9325 of fields can also be an expression containing a variable. */
9326 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9327 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9329 /* If the field is a qualified union, then it's only a container
9330 for what's inside so we look into it. That's necessary in LTO
9331 mode because the sizes of the field tested above have been set
9332 to PLACEHOLDER_EXPRs by free_lang_data. */
9333 if (TREE_CODE (TREE_TYPE (t)) == QUAL_UNION_TYPE
9334 && variably_modified_type_p (TREE_TYPE (t), fn))
9335 return true;
9337 break;
9339 case ARRAY_TYPE:
9340 /* Do not call ourselves to avoid infinite recursion. This is
9341 variably modified if the element type is. */
9342 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9343 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9344 break;
9346 default:
9347 break;
9350 /* The current language may have other cases to check, but in general,
9351 all other types are not variably modified. */
9352 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9354 #undef RETURN_TRUE_IF_VAR
9357 /* Given a DECL or TYPE, return the scope in which it was declared, or
9358 NULL_TREE if there is no containing scope. */
9360 tree
9361 get_containing_scope (const_tree t)
9363 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9366 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
9368 const_tree
9369 get_ultimate_context (const_tree decl)
9371 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
9373 if (TREE_CODE (decl) == BLOCK)
9374 decl = BLOCK_SUPERCONTEXT (decl);
9375 else
9376 decl = get_containing_scope (decl);
9378 return decl;
9381 /* Return the innermost context enclosing DECL that is
9382 a FUNCTION_DECL, or zero if none. */
9384 tree
9385 decl_function_context (const_tree decl)
9387 tree context;
9389 if (TREE_CODE (decl) == ERROR_MARK)
9390 return 0;
9392 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9393 where we look up the function at runtime. Such functions always take
9394 a first argument of type 'pointer to real context'.
9396 C++ should really be fixed to use DECL_CONTEXT for the real context,
9397 and use something else for the "virtual context". */
9398 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
9399 context
9400 = TYPE_MAIN_VARIANT
9401 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9402 else
9403 context = DECL_CONTEXT (decl);
9405 while (context && TREE_CODE (context) != FUNCTION_DECL)
9407 if (TREE_CODE (context) == BLOCK)
9408 context = BLOCK_SUPERCONTEXT (context);
9409 else
9410 context = get_containing_scope (context);
9413 return context;
9416 /* Return the innermost context enclosing DECL that is
9417 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9418 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9420 tree
9421 decl_type_context (const_tree decl)
9423 tree context = DECL_CONTEXT (decl);
9425 while (context)
9426 switch (TREE_CODE (context))
9428 case NAMESPACE_DECL:
9429 case TRANSLATION_UNIT_DECL:
9430 return NULL_TREE;
9432 case RECORD_TYPE:
9433 case UNION_TYPE:
9434 case QUAL_UNION_TYPE:
9435 return context;
9437 case TYPE_DECL:
9438 case FUNCTION_DECL:
9439 context = DECL_CONTEXT (context);
9440 break;
9442 case BLOCK:
9443 context = BLOCK_SUPERCONTEXT (context);
9444 break;
9446 default:
9447 gcc_unreachable ();
9450 return NULL_TREE;
9453 /* CALL is a CALL_EXPR. Return the declaration for the function
9454 called, or NULL_TREE if the called function cannot be
9455 determined. */
9457 tree
9458 get_callee_fndecl (const_tree call)
9460 tree addr;
9462 if (call == error_mark_node)
9463 return error_mark_node;
9465 /* It's invalid to call this function with anything but a
9466 CALL_EXPR. */
9467 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9469 /* The first operand to the CALL is the address of the function
9470 called. */
9471 addr = CALL_EXPR_FN (call);
9473 /* If there is no function, return early. */
9474 if (addr == NULL_TREE)
9475 return NULL_TREE;
9477 STRIP_NOPS (addr);
9479 /* If this is a readonly function pointer, extract its initial value. */
9480 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9481 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9482 && DECL_INITIAL (addr))
9483 addr = DECL_INITIAL (addr);
9485 /* If the address is just `&f' for some function `f', then we know
9486 that `f' is being called. */
9487 if (TREE_CODE (addr) == ADDR_EXPR
9488 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9489 return TREE_OPERAND (addr, 0);
9491 /* We couldn't figure out what was being called. */
9492 return NULL_TREE;
9495 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9496 return the associated function code, otherwise return CFN_LAST. */
9498 combined_fn
9499 get_call_combined_fn (const_tree call)
9501 /* It's invalid to call this function with anything but a CALL_EXPR. */
9502 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9504 if (!CALL_EXPR_FN (call))
9505 return as_combined_fn (CALL_EXPR_IFN (call));
9507 tree fndecl = get_callee_fndecl (call);
9508 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
9509 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9511 return CFN_LAST;
9514 /* Comparator of indices based on tree_node_counts. */
9516 static int
9517 tree_nodes_cmp (const void *p1, const void *p2)
9519 const unsigned *n1 = (const unsigned *)p1;
9520 const unsigned *n2 = (const unsigned *)p2;
9522 return tree_node_counts[*n1] - tree_node_counts[*n2];
9525 /* Comparator of indices based on tree_code_counts. */
9527 static int
9528 tree_codes_cmp (const void *p1, const void *p2)
9530 const unsigned *n1 = (const unsigned *)p1;
9531 const unsigned *n2 = (const unsigned *)p2;
9533 return tree_code_counts[*n1] - tree_code_counts[*n2];
9536 #define TREE_MEM_USAGE_SPACES 40
9538 /* Print debugging information about tree nodes generated during the compile,
9539 and any language-specific information. */
9541 void
9542 dump_tree_statistics (void)
9544 if (GATHER_STATISTICS)
9546 uint64_t total_nodes, total_bytes;
9547 fprintf (stderr, "\nKind Nodes Bytes\n");
9548 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9549 total_nodes = total_bytes = 0;
9552 auto_vec<unsigned> indices (all_kinds);
9553 for (unsigned i = 0; i < all_kinds; i++)
9554 indices.quick_push (i);
9555 indices.qsort (tree_nodes_cmp);
9557 for (unsigned i = 0; i < (int) all_kinds; i++)
9559 unsigned j = indices[i];
9560 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n",
9561 tree_node_kind_names[j], SIZE_AMOUNT (tree_node_counts[j]),
9562 SIZE_AMOUNT (tree_node_sizes[j]));
9563 total_nodes += tree_node_counts[j];
9564 total_bytes += tree_node_sizes[j];
9566 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9567 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", "Total",
9568 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
9569 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9573 fprintf (stderr, "Code Nodes\n");
9574 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9576 auto_vec<unsigned> indices (MAX_TREE_CODES);
9577 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9578 indices.quick_push (i);
9579 indices.qsort (tree_codes_cmp);
9581 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9583 unsigned j = indices[i];
9584 fprintf (stderr, "%-32s %6" PRIu64 "%c\n",
9585 get_tree_code_name ((enum tree_code) j),
9586 SIZE_AMOUNT (tree_code_counts[j]));
9588 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9589 fprintf (stderr, "\n");
9590 ssanames_print_statistics ();
9591 fprintf (stderr, "\n");
9592 phinodes_print_statistics ();
9593 fprintf (stderr, "\n");
9596 else
9597 fprintf (stderr, "(No per-node statistics)\n");
9599 print_type_hash_statistics ();
9600 print_debug_expr_statistics ();
9601 print_value_expr_statistics ();
9602 lang_hooks.print_statistics ();
9605 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9607 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9609 unsigned
9610 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9612 /* This relies on the raw feedback's top 4 bits being zero. */
9613 #define FEEDBACK(X) ((X) * 0x04c11db7)
9614 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9615 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9616 static const unsigned syndromes[16] =
9618 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9619 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9620 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9621 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9623 #undef FEEDBACK
9624 #undef SYNDROME
9626 value <<= (32 - bytes * 8);
9627 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9629 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9631 chksum = (chksum << 4) ^ feedback;
9634 return chksum;
9637 /* Generate a crc32 of a string. */
9639 unsigned
9640 crc32_string (unsigned chksum, const char *string)
9643 chksum = crc32_byte (chksum, *string);
9644 while (*string++);
9645 return chksum;
9648 /* P is a string that will be used in a symbol. Mask out any characters
9649 that are not valid in that context. */
9651 void
9652 clean_symbol_name (char *p)
9654 for (; *p; p++)
9655 if (! (ISALNUM (*p)
9656 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9657 || *p == '$'
9658 #endif
9659 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9660 || *p == '.'
9661 #endif
9663 *p = '_';
9666 static GTY(()) unsigned anon_cnt = 0; /* Saved for PCH. */
9668 /* Create a unique anonymous identifier. The identifier is still a
9669 valid assembly label. */
9671 tree
9672 make_anon_name ()
9674 const char *fmt =
9675 #if !defined (NO_DOT_IN_LABEL)
9677 #elif !defined (NO_DOLLAR_IN_LABEL)
9679 #else
9681 #endif
9682 "_anon_%d";
9684 char buf[24];
9685 int len = snprintf (buf, sizeof (buf), fmt, anon_cnt++);
9686 gcc_checking_assert (len < int (sizeof (buf)));
9688 tree id = get_identifier_with_length (buf, len);
9689 IDENTIFIER_ANON_P (id) = true;
9691 return id;
9694 /* Generate a name for a special-purpose function.
9695 The generated name may need to be unique across the whole link.
9696 Changes to this function may also require corresponding changes to
9697 xstrdup_mask_random.
9698 TYPE is some string to identify the purpose of this function to the
9699 linker or collect2; it must start with an uppercase letter,
9700 one of:
9701 I - for constructors
9702 D - for destructors
9703 N - for C++ anonymous namespaces
9704 F - for DWARF unwind frame information. */
9706 tree
9707 get_file_function_name (const char *type)
9709 char *buf;
9710 const char *p;
9711 char *q;
9713 /* If we already have a name we know to be unique, just use that. */
9714 if (first_global_object_name)
9715 p = q = ASTRDUP (first_global_object_name);
9716 /* If the target is handling the constructors/destructors, they
9717 will be local to this file and the name is only necessary for
9718 debugging purposes.
9719 We also assign sub_I and sub_D sufixes to constructors called from
9720 the global static constructors. These are always local. */
9721 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9722 || (strncmp (type, "sub_", 4) == 0
9723 && (type[4] == 'I' || type[4] == 'D')))
9725 const char *file = main_input_filename;
9726 if (! file)
9727 file = LOCATION_FILE (input_location);
9728 /* Just use the file's basename, because the full pathname
9729 might be quite long. */
9730 p = q = ASTRDUP (lbasename (file));
9732 else
9734 /* Otherwise, the name must be unique across the entire link.
9735 We don't have anything that we know to be unique to this translation
9736 unit, so use what we do have and throw in some randomness. */
9737 unsigned len;
9738 const char *name = weak_global_object_name;
9739 const char *file = main_input_filename;
9741 if (! name)
9742 name = "";
9743 if (! file)
9744 file = LOCATION_FILE (input_location);
9746 len = strlen (file);
9747 q = (char *) alloca (9 + 19 + len + 1);
9748 memcpy (q, file, len + 1);
9750 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9751 crc32_string (0, name), get_random_seed (false));
9753 p = q;
9756 clean_symbol_name (q);
9757 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9758 + strlen (type));
9760 /* Set up the name of the file-level functions we may need.
9761 Use a global object (which is already required to be unique over
9762 the program) rather than the file name (which imposes extra
9763 constraints). */
9764 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9766 return get_identifier (buf);
9769 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9771 /* Complain that the tree code of NODE does not match the expected 0
9772 terminated list of trailing codes. The trailing code list can be
9773 empty, for a more vague error message. FILE, LINE, and FUNCTION
9774 are of the caller. */
9776 void
9777 tree_check_failed (const_tree node, const char *file,
9778 int line, const char *function, ...)
9780 va_list args;
9781 const char *buffer;
9782 unsigned length = 0;
9783 enum tree_code code;
9785 va_start (args, function);
9786 while ((code = (enum tree_code) va_arg (args, int)))
9787 length += 4 + strlen (get_tree_code_name (code));
9788 va_end (args);
9789 if (length)
9791 char *tmp;
9792 va_start (args, function);
9793 length += strlen ("expected ");
9794 buffer = tmp = (char *) alloca (length);
9795 length = 0;
9796 while ((code = (enum tree_code) va_arg (args, int)))
9798 const char *prefix = length ? " or " : "expected ";
9800 strcpy (tmp + length, prefix);
9801 length += strlen (prefix);
9802 strcpy (tmp + length, get_tree_code_name (code));
9803 length += strlen (get_tree_code_name (code));
9805 va_end (args);
9807 else
9808 buffer = "unexpected node";
9810 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9811 buffer, get_tree_code_name (TREE_CODE (node)),
9812 function, trim_filename (file), line);
9815 /* Complain that the tree code of NODE does match the expected 0
9816 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9817 the caller. */
9819 void
9820 tree_not_check_failed (const_tree node, const char *file,
9821 int line, const char *function, ...)
9823 va_list args;
9824 char *buffer;
9825 unsigned length = 0;
9826 enum tree_code code;
9828 va_start (args, function);
9829 while ((code = (enum tree_code) va_arg (args, int)))
9830 length += 4 + strlen (get_tree_code_name (code));
9831 va_end (args);
9832 va_start (args, function);
9833 buffer = (char *) alloca (length);
9834 length = 0;
9835 while ((code = (enum tree_code) va_arg (args, int)))
9837 if (length)
9839 strcpy (buffer + length, " or ");
9840 length += 4;
9842 strcpy (buffer + length, get_tree_code_name (code));
9843 length += strlen (get_tree_code_name (code));
9845 va_end (args);
9847 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9848 buffer, get_tree_code_name (TREE_CODE (node)),
9849 function, trim_filename (file), line);
9852 /* Similar to tree_check_failed, except that we check for a class of tree
9853 code, given in CL. */
9855 void
9856 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9857 const char *file, int line, const char *function)
9859 internal_error
9860 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9861 TREE_CODE_CLASS_STRING (cl),
9862 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9863 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9866 /* Similar to tree_check_failed, except that instead of specifying a
9867 dozen codes, use the knowledge that they're all sequential. */
9869 void
9870 tree_range_check_failed (const_tree node, const char *file, int line,
9871 const char *function, enum tree_code c1,
9872 enum tree_code c2)
9874 char *buffer;
9875 unsigned length = 0;
9876 unsigned int c;
9878 for (c = c1; c <= c2; ++c)
9879 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9881 length += strlen ("expected ");
9882 buffer = (char *) alloca (length);
9883 length = 0;
9885 for (c = c1; c <= c2; ++c)
9887 const char *prefix = length ? " or " : "expected ";
9889 strcpy (buffer + length, prefix);
9890 length += strlen (prefix);
9891 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9892 length += strlen (get_tree_code_name ((enum tree_code) c));
9895 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9896 buffer, get_tree_code_name (TREE_CODE (node)),
9897 function, trim_filename (file), line);
9901 /* Similar to tree_check_failed, except that we check that a tree does
9902 not have the specified code, given in CL. */
9904 void
9905 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9906 const char *file, int line, const char *function)
9908 internal_error
9909 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9910 TREE_CODE_CLASS_STRING (cl),
9911 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9912 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9916 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9918 void
9919 omp_clause_check_failed (const_tree node, const char *file, int line,
9920 const char *function, enum omp_clause_code code)
9922 internal_error ("tree check: expected %<omp_clause %s%>, have %qs "
9923 "in %s, at %s:%d",
9924 omp_clause_code_name[code],
9925 get_tree_code_name (TREE_CODE (node)),
9926 function, trim_filename (file), line);
9930 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9932 void
9933 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9934 const char *function, enum omp_clause_code c1,
9935 enum omp_clause_code c2)
9937 char *buffer;
9938 unsigned length = 0;
9939 unsigned int c;
9941 for (c = c1; c <= c2; ++c)
9942 length += 4 + strlen (omp_clause_code_name[c]);
9944 length += strlen ("expected ");
9945 buffer = (char *) alloca (length);
9946 length = 0;
9948 for (c = c1; c <= c2; ++c)
9950 const char *prefix = length ? " or " : "expected ";
9952 strcpy (buffer + length, prefix);
9953 length += strlen (prefix);
9954 strcpy (buffer + length, omp_clause_code_name[c]);
9955 length += strlen (omp_clause_code_name[c]);
9958 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9959 buffer, omp_clause_code_name[TREE_CODE (node)],
9960 function, trim_filename (file), line);
9964 #undef DEFTREESTRUCT
9965 #define DEFTREESTRUCT(VAL, NAME) NAME,
9967 static const char *ts_enum_names[] = {
9968 #include "treestruct.def"
9970 #undef DEFTREESTRUCT
9972 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9974 /* Similar to tree_class_check_failed, except that we check for
9975 whether CODE contains the tree structure identified by EN. */
9977 void
9978 tree_contains_struct_check_failed (const_tree node,
9979 const enum tree_node_structure_enum en,
9980 const char *file, int line,
9981 const char *function)
9983 internal_error
9984 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9985 TS_ENUM_NAME (en),
9986 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9990 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9991 (dynamically sized) vector. */
9993 void
9994 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9995 const char *function)
9997 internal_error
9998 ("tree check: accessed elt %d of %<tree_int_cst%> with %d elts in %s, "
9999 "at %s:%d",
10000 idx + 1, len, function, trim_filename (file), line);
10003 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
10004 (dynamically sized) vector. */
10006 void
10007 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
10008 const char *function)
10010 internal_error
10011 ("tree check: accessed elt %d of %<tree_vec%> with %d elts in %s, at %s:%d",
10012 idx + 1, len, function, trim_filename (file), line);
10015 /* Similar to above, except that the check is for the bounds of the operand
10016 vector of an expression node EXP. */
10018 void
10019 tree_operand_check_failed (int idx, const_tree exp, const char *file,
10020 int line, const char *function)
10022 enum tree_code code = TREE_CODE (exp);
10023 internal_error
10024 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
10025 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
10026 function, trim_filename (file), line);
10029 /* Similar to above, except that the check is for the number of
10030 operands of an OMP_CLAUSE node. */
10032 void
10033 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
10034 int line, const char *function)
10036 internal_error
10037 ("tree check: accessed operand %d of %<omp_clause %s%> with %d operands "
10038 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
10039 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
10040 trim_filename (file), line);
10042 #endif /* ENABLE_TREE_CHECKING */
10044 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
10045 and mapped to the machine mode MODE. Initialize its fields and build
10046 the information necessary for debugging output. */
10048 static tree
10049 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
10051 tree t;
10052 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
10054 t = make_node (VECTOR_TYPE);
10055 TREE_TYPE (t) = mv_innertype;
10056 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
10057 SET_TYPE_MODE (t, mode);
10059 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
10060 SET_TYPE_STRUCTURAL_EQUALITY (t);
10061 else if ((TYPE_CANONICAL (mv_innertype) != innertype
10062 || mode != VOIDmode)
10063 && !VECTOR_BOOLEAN_TYPE_P (t))
10064 TYPE_CANONICAL (t)
10065 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
10067 layout_type (t);
10069 hashval_t hash = type_hash_canon_hash (t);
10070 t = type_hash_canon (hash, t);
10072 /* We have built a main variant, based on the main variant of the
10073 inner type. Use it to build the variant we return. */
10074 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
10075 && TREE_TYPE (t) != innertype)
10076 return build_type_attribute_qual_variant (t,
10077 TYPE_ATTRIBUTES (innertype),
10078 TYPE_QUALS (innertype));
10080 return t;
10083 static tree
10084 make_or_reuse_type (unsigned size, int unsignedp)
10086 int i;
10088 if (size == INT_TYPE_SIZE)
10089 return unsignedp ? unsigned_type_node : integer_type_node;
10090 if (size == CHAR_TYPE_SIZE)
10091 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
10092 if (size == SHORT_TYPE_SIZE)
10093 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
10094 if (size == LONG_TYPE_SIZE)
10095 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
10096 if (size == LONG_LONG_TYPE_SIZE)
10097 return (unsignedp ? long_long_unsigned_type_node
10098 : long_long_integer_type_node);
10100 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10101 if (size == int_n_data[i].bitsize
10102 && int_n_enabled_p[i])
10103 return (unsignedp ? int_n_trees[i].unsigned_type
10104 : int_n_trees[i].signed_type);
10106 if (unsignedp)
10107 return make_unsigned_type (size);
10108 else
10109 return make_signed_type (size);
10112 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
10114 static tree
10115 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
10117 if (satp)
10119 if (size == SHORT_FRACT_TYPE_SIZE)
10120 return unsignedp ? sat_unsigned_short_fract_type_node
10121 : sat_short_fract_type_node;
10122 if (size == FRACT_TYPE_SIZE)
10123 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
10124 if (size == LONG_FRACT_TYPE_SIZE)
10125 return unsignedp ? sat_unsigned_long_fract_type_node
10126 : sat_long_fract_type_node;
10127 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10128 return unsignedp ? sat_unsigned_long_long_fract_type_node
10129 : sat_long_long_fract_type_node;
10131 else
10133 if (size == SHORT_FRACT_TYPE_SIZE)
10134 return unsignedp ? unsigned_short_fract_type_node
10135 : short_fract_type_node;
10136 if (size == FRACT_TYPE_SIZE)
10137 return unsignedp ? unsigned_fract_type_node : fract_type_node;
10138 if (size == LONG_FRACT_TYPE_SIZE)
10139 return unsignedp ? unsigned_long_fract_type_node
10140 : long_fract_type_node;
10141 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10142 return unsignedp ? unsigned_long_long_fract_type_node
10143 : long_long_fract_type_node;
10146 return make_fract_type (size, unsignedp, satp);
10149 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
10151 static tree
10152 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
10154 if (satp)
10156 if (size == SHORT_ACCUM_TYPE_SIZE)
10157 return unsignedp ? sat_unsigned_short_accum_type_node
10158 : sat_short_accum_type_node;
10159 if (size == ACCUM_TYPE_SIZE)
10160 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10161 if (size == LONG_ACCUM_TYPE_SIZE)
10162 return unsignedp ? sat_unsigned_long_accum_type_node
10163 : sat_long_accum_type_node;
10164 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10165 return unsignedp ? sat_unsigned_long_long_accum_type_node
10166 : sat_long_long_accum_type_node;
10168 else
10170 if (size == SHORT_ACCUM_TYPE_SIZE)
10171 return unsignedp ? unsigned_short_accum_type_node
10172 : short_accum_type_node;
10173 if (size == ACCUM_TYPE_SIZE)
10174 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10175 if (size == LONG_ACCUM_TYPE_SIZE)
10176 return unsignedp ? unsigned_long_accum_type_node
10177 : long_accum_type_node;
10178 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10179 return unsignedp ? unsigned_long_long_accum_type_node
10180 : long_long_accum_type_node;
10183 return make_accum_type (size, unsignedp, satp);
10187 /* Create an atomic variant node for TYPE. This routine is called
10188 during initialization of data types to create the 5 basic atomic
10189 types. The generic build_variant_type function requires these to
10190 already be set up in order to function properly, so cannot be
10191 called from there. If ALIGN is non-zero, then ensure alignment is
10192 overridden to this value. */
10194 static tree
10195 build_atomic_base (tree type, unsigned int align)
10197 tree t;
10199 /* Make sure its not already registered. */
10200 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10201 return t;
10203 t = build_variant_type_copy (type);
10204 set_type_quals (t, TYPE_QUAL_ATOMIC);
10206 if (align)
10207 SET_TYPE_ALIGN (t, align);
10209 return t;
10212 /* Information about the _FloatN and _FloatNx types. This must be in
10213 the same order as the corresponding TI_* enum values. */
10214 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
10216 { 16, false },
10217 { 32, false },
10218 { 64, false },
10219 { 128, false },
10220 { 32, true },
10221 { 64, true },
10222 { 128, true },
10226 /* Create nodes for all integer types (and error_mark_node) using the sizes
10227 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10229 void
10230 build_common_tree_nodes (bool signed_char)
10232 int i;
10234 error_mark_node = make_node (ERROR_MARK);
10235 TREE_TYPE (error_mark_node) = error_mark_node;
10237 initialize_sizetypes ();
10239 /* Define both `signed char' and `unsigned char'. */
10240 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10241 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10242 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10243 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10245 /* Define `char', which is like either `signed char' or `unsigned char'
10246 but not the same as either. */
10247 char_type_node
10248 = (signed_char
10249 ? make_signed_type (CHAR_TYPE_SIZE)
10250 : make_unsigned_type (CHAR_TYPE_SIZE));
10251 TYPE_STRING_FLAG (char_type_node) = 1;
10253 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10254 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10255 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10256 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10257 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10258 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10259 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10260 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10262 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10264 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10265 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10267 if (int_n_enabled_p[i])
10269 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10270 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10274 /* Define a boolean type. This type only represents boolean values but
10275 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10276 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10277 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10278 TYPE_PRECISION (boolean_type_node) = 1;
10279 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10281 /* Define what type to use for size_t. */
10282 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10283 size_type_node = unsigned_type_node;
10284 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10285 size_type_node = long_unsigned_type_node;
10286 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10287 size_type_node = long_long_unsigned_type_node;
10288 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10289 size_type_node = short_unsigned_type_node;
10290 else
10292 int i;
10294 size_type_node = NULL_TREE;
10295 for (i = 0; i < NUM_INT_N_ENTS; i++)
10296 if (int_n_enabled_p[i])
10298 char name[50], altname[50];
10299 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10300 sprintf (altname, "__int%d__ unsigned", int_n_data[i].bitsize);
10302 if (strcmp (name, SIZE_TYPE) == 0
10303 || strcmp (altname, SIZE_TYPE) == 0)
10305 size_type_node = int_n_trees[i].unsigned_type;
10308 if (size_type_node == NULL_TREE)
10309 gcc_unreachable ();
10312 /* Define what type to use for ptrdiff_t. */
10313 if (strcmp (PTRDIFF_TYPE, "int") == 0)
10314 ptrdiff_type_node = integer_type_node;
10315 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
10316 ptrdiff_type_node = long_integer_type_node;
10317 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
10318 ptrdiff_type_node = long_long_integer_type_node;
10319 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
10320 ptrdiff_type_node = short_integer_type_node;
10321 else
10323 ptrdiff_type_node = NULL_TREE;
10324 for (int i = 0; i < NUM_INT_N_ENTS; i++)
10325 if (int_n_enabled_p[i])
10327 char name[50], altname[50];
10328 sprintf (name, "__int%d", int_n_data[i].bitsize);
10329 sprintf (altname, "__int%d__", int_n_data[i].bitsize);
10331 if (strcmp (name, PTRDIFF_TYPE) == 0
10332 || strcmp (altname, PTRDIFF_TYPE) == 0)
10333 ptrdiff_type_node = int_n_trees[i].signed_type;
10335 if (ptrdiff_type_node == NULL_TREE)
10336 gcc_unreachable ();
10339 /* Fill in the rest of the sized types. Reuse existing type nodes
10340 when possible. */
10341 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10342 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10343 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10344 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10345 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10347 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10348 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10349 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10350 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10351 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10353 /* Don't call build_qualified type for atomics. That routine does
10354 special processing for atomics, and until they are initialized
10355 it's better not to make that call.
10357 Check to see if there is a target override for atomic types. */
10359 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10360 targetm.atomic_align_for_mode (QImode));
10361 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10362 targetm.atomic_align_for_mode (HImode));
10363 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10364 targetm.atomic_align_for_mode (SImode));
10365 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10366 targetm.atomic_align_for_mode (DImode));
10367 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10368 targetm.atomic_align_for_mode (TImode));
10370 access_public_node = get_identifier ("public");
10371 access_protected_node = get_identifier ("protected");
10372 access_private_node = get_identifier ("private");
10374 /* Define these next since types below may used them. */
10375 integer_zero_node = build_int_cst (integer_type_node, 0);
10376 integer_one_node = build_int_cst (integer_type_node, 1);
10377 integer_three_node = build_int_cst (integer_type_node, 3);
10378 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10380 size_zero_node = size_int (0);
10381 size_one_node = size_int (1);
10382 bitsize_zero_node = bitsize_int (0);
10383 bitsize_one_node = bitsize_int (1);
10384 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10386 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10387 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10389 void_type_node = make_node (VOID_TYPE);
10390 layout_type (void_type_node);
10392 /* We are not going to have real types in C with less than byte alignment,
10393 so we might as well not have any types that claim to have it. */
10394 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
10395 TYPE_USER_ALIGN (void_type_node) = 0;
10397 void_node = make_node (VOID_CST);
10398 TREE_TYPE (void_node) = void_type_node;
10400 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10401 layout_type (TREE_TYPE (null_pointer_node));
10403 ptr_type_node = build_pointer_type (void_type_node);
10404 const_ptr_type_node
10405 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10406 for (unsigned i = 0;
10407 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
10408 ++i)
10409 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
10411 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10413 float_type_node = make_node (REAL_TYPE);
10414 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10415 layout_type (float_type_node);
10417 double_type_node = make_node (REAL_TYPE);
10418 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10419 layout_type (double_type_node);
10421 long_double_type_node = make_node (REAL_TYPE);
10422 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10423 layout_type (long_double_type_node);
10425 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10427 int n = floatn_nx_types[i].n;
10428 bool extended = floatn_nx_types[i].extended;
10429 scalar_float_mode mode;
10430 if (!targetm.floatn_mode (n, extended).exists (&mode))
10431 continue;
10432 int precision = GET_MODE_PRECISION (mode);
10433 /* Work around the rs6000 KFmode having precision 113 not
10434 128. */
10435 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
10436 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
10437 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
10438 if (!extended)
10439 gcc_assert (min_precision == n);
10440 if (precision < min_precision)
10441 precision = min_precision;
10442 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
10443 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
10444 layout_type (FLOATN_NX_TYPE_NODE (i));
10445 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
10448 float_ptr_type_node = build_pointer_type (float_type_node);
10449 double_ptr_type_node = build_pointer_type (double_type_node);
10450 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10451 integer_ptr_type_node = build_pointer_type (integer_type_node);
10453 /* Fixed size integer types. */
10454 uint16_type_node = make_or_reuse_type (16, 1);
10455 uint32_type_node = make_or_reuse_type (32, 1);
10456 uint64_type_node = make_or_reuse_type (64, 1);
10457 if (targetm.scalar_mode_supported_p (TImode))
10458 uint128_type_node = make_or_reuse_type (128, 1);
10460 /* Decimal float types. */
10461 if (targetm.decimal_float_supported_p ())
10463 dfloat32_type_node = make_node (REAL_TYPE);
10464 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10465 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10466 layout_type (dfloat32_type_node);
10468 dfloat64_type_node = make_node (REAL_TYPE);
10469 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10470 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10471 layout_type (dfloat64_type_node);
10473 dfloat128_type_node = make_node (REAL_TYPE);
10474 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10475 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10476 layout_type (dfloat128_type_node);
10479 complex_integer_type_node = build_complex_type (integer_type_node, true);
10480 complex_float_type_node = build_complex_type (float_type_node, true);
10481 complex_double_type_node = build_complex_type (double_type_node, true);
10482 complex_long_double_type_node = build_complex_type (long_double_type_node,
10483 true);
10485 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10487 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10488 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10489 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10492 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10493 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10494 sat_ ## KIND ## _type_node = \
10495 make_sat_signed_ ## KIND ## _type (SIZE); \
10496 sat_unsigned_ ## KIND ## _type_node = \
10497 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10498 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10499 unsigned_ ## KIND ## _type_node = \
10500 make_unsigned_ ## KIND ## _type (SIZE);
10502 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10503 sat_ ## WIDTH ## KIND ## _type_node = \
10504 make_sat_signed_ ## KIND ## _type (SIZE); \
10505 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10506 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10507 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10508 unsigned_ ## WIDTH ## KIND ## _type_node = \
10509 make_unsigned_ ## KIND ## _type (SIZE);
10511 /* Make fixed-point type nodes based on four different widths. */
10512 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10513 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10514 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10515 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10516 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10518 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10519 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10520 NAME ## _type_node = \
10521 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10522 u ## NAME ## _type_node = \
10523 make_or_reuse_unsigned_ ## KIND ## _type \
10524 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10525 sat_ ## NAME ## _type_node = \
10526 make_or_reuse_sat_signed_ ## KIND ## _type \
10527 (GET_MODE_BITSIZE (MODE ## mode)); \
10528 sat_u ## NAME ## _type_node = \
10529 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10530 (GET_MODE_BITSIZE (U ## MODE ## mode));
10532 /* Fixed-point type and mode nodes. */
10533 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10534 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10535 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10536 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10537 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10538 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10539 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10540 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10541 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10542 MAKE_FIXED_MODE_NODE (accum, da, DA)
10543 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10546 tree t = targetm.build_builtin_va_list ();
10548 /* Many back-ends define record types without setting TYPE_NAME.
10549 If we copied the record type here, we'd keep the original
10550 record type without a name. This breaks name mangling. So,
10551 don't copy record types and let c_common_nodes_and_builtins()
10552 declare the type to be __builtin_va_list. */
10553 if (TREE_CODE (t) != RECORD_TYPE)
10554 t = build_variant_type_copy (t);
10556 va_list_type_node = t;
10559 /* SCEV analyzer global shared trees. */
10560 chrec_dont_know = make_node (SCEV_NOT_KNOWN);
10561 TREE_TYPE (chrec_dont_know) = void_type_node;
10562 chrec_known = make_node (SCEV_KNOWN);
10563 TREE_TYPE (chrec_known) = void_type_node;
10566 /* Modify DECL for given flags.
10567 TM_PURE attribute is set only on types, so the function will modify
10568 DECL's type when ECF_TM_PURE is used. */
10570 void
10571 set_call_expr_flags (tree decl, int flags)
10573 if (flags & ECF_NOTHROW)
10574 TREE_NOTHROW (decl) = 1;
10575 if (flags & ECF_CONST)
10576 TREE_READONLY (decl) = 1;
10577 if (flags & ECF_PURE)
10578 DECL_PURE_P (decl) = 1;
10579 if (flags & ECF_LOOPING_CONST_OR_PURE)
10580 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10581 if (flags & ECF_NOVOPS)
10582 DECL_IS_NOVOPS (decl) = 1;
10583 if (flags & ECF_NORETURN)
10584 TREE_THIS_VOLATILE (decl) = 1;
10585 if (flags & ECF_MALLOC)
10586 DECL_IS_MALLOC (decl) = 1;
10587 if (flags & ECF_RETURNS_TWICE)
10588 DECL_IS_RETURNS_TWICE (decl) = 1;
10589 if (flags & ECF_LEAF)
10590 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10591 NULL, DECL_ATTRIBUTES (decl));
10592 if (flags & ECF_COLD)
10593 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10594 NULL, DECL_ATTRIBUTES (decl));
10595 if (flags & ECF_RET1)
10596 DECL_ATTRIBUTES (decl)
10597 = tree_cons (get_identifier ("fn spec"),
10598 build_tree_list (NULL_TREE, build_string (2, "1 ")),
10599 DECL_ATTRIBUTES (decl));
10600 if ((flags & ECF_TM_PURE) && flag_tm)
10601 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10602 /* Looping const or pure is implied by noreturn.
10603 There is currently no way to declare looping const or looping pure alone. */
10604 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10605 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10609 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10611 static void
10612 local_define_builtin (const char *name, tree type, enum built_in_function code,
10613 const char *library_name, int ecf_flags)
10615 tree decl;
10617 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10618 library_name, NULL_TREE);
10619 set_call_expr_flags (decl, ecf_flags);
10621 set_builtin_decl (code, decl, true);
10624 /* Call this function after instantiating all builtins that the language
10625 front end cares about. This will build the rest of the builtins
10626 and internal functions that are relied upon by the tree optimizers and
10627 the middle-end. */
10629 void
10630 build_common_builtin_nodes (void)
10632 tree tmp, ftype;
10633 int ecf_flags;
10635 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10636 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10638 ftype = build_function_type (void_type_node, void_list_node);
10639 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10640 local_define_builtin ("__builtin_unreachable", ftype,
10641 BUILT_IN_UNREACHABLE,
10642 "__builtin_unreachable",
10643 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10644 | ECF_CONST | ECF_COLD);
10645 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10646 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10647 "abort",
10648 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10651 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10652 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10654 ftype = build_function_type_list (ptr_type_node,
10655 ptr_type_node, const_ptr_type_node,
10656 size_type_node, NULL_TREE);
10658 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10659 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10660 "memcpy", ECF_NOTHROW | ECF_LEAF);
10661 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10662 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10663 "memmove", ECF_NOTHROW | ECF_LEAF);
10666 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10668 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10669 const_ptr_type_node, size_type_node,
10670 NULL_TREE);
10671 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10672 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10675 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10677 ftype = build_function_type_list (ptr_type_node,
10678 ptr_type_node, integer_type_node,
10679 size_type_node, NULL_TREE);
10680 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10681 "memset", ECF_NOTHROW | ECF_LEAF);
10684 /* If we're checking the stack, `alloca' can throw. */
10685 const int alloca_flags
10686 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10688 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10690 ftype = build_function_type_list (ptr_type_node,
10691 size_type_node, NULL_TREE);
10692 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10693 "alloca", alloca_flags);
10696 ftype = build_function_type_list (ptr_type_node, size_type_node,
10697 size_type_node, NULL_TREE);
10698 local_define_builtin ("__builtin_alloca_with_align", ftype,
10699 BUILT_IN_ALLOCA_WITH_ALIGN,
10700 "__builtin_alloca_with_align",
10701 alloca_flags);
10703 ftype = build_function_type_list (ptr_type_node, size_type_node,
10704 size_type_node, size_type_node, NULL_TREE);
10705 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10706 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10707 "__builtin_alloca_with_align_and_max",
10708 alloca_flags);
10710 ftype = build_function_type_list (void_type_node,
10711 ptr_type_node, ptr_type_node,
10712 ptr_type_node, NULL_TREE);
10713 local_define_builtin ("__builtin_init_trampoline", ftype,
10714 BUILT_IN_INIT_TRAMPOLINE,
10715 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10716 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10717 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10718 "__builtin_init_heap_trampoline",
10719 ECF_NOTHROW | ECF_LEAF);
10720 local_define_builtin ("__builtin_init_descriptor", ftype,
10721 BUILT_IN_INIT_DESCRIPTOR,
10722 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10724 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10725 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10726 BUILT_IN_ADJUST_TRAMPOLINE,
10727 "__builtin_adjust_trampoline",
10728 ECF_CONST | ECF_NOTHROW);
10729 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10730 BUILT_IN_ADJUST_DESCRIPTOR,
10731 "__builtin_adjust_descriptor",
10732 ECF_CONST | ECF_NOTHROW);
10734 ftype = build_function_type_list (void_type_node,
10735 ptr_type_node, ptr_type_node, NULL_TREE);
10736 if (!builtin_decl_explicit_p (BUILT_IN_CLEAR_CACHE))
10737 local_define_builtin ("__builtin___clear_cache", ftype,
10738 BUILT_IN_CLEAR_CACHE,
10739 "__builtin___clear_cache",
10740 ECF_NOTHROW);
10742 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10743 BUILT_IN_NONLOCAL_GOTO,
10744 "__builtin_nonlocal_goto",
10745 ECF_NORETURN | ECF_NOTHROW);
10747 ftype = build_function_type_list (void_type_node,
10748 ptr_type_node, ptr_type_node, NULL_TREE);
10749 local_define_builtin ("__builtin_setjmp_setup", ftype,
10750 BUILT_IN_SETJMP_SETUP,
10751 "__builtin_setjmp_setup", ECF_NOTHROW);
10753 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10754 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10755 BUILT_IN_SETJMP_RECEIVER,
10756 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10758 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10759 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10760 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10762 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10763 local_define_builtin ("__builtin_stack_restore", ftype,
10764 BUILT_IN_STACK_RESTORE,
10765 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10767 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10768 const_ptr_type_node, size_type_node,
10769 NULL_TREE);
10770 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10771 "__builtin_memcmp_eq",
10772 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10774 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10775 "__builtin_strncmp_eq",
10776 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10778 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10779 "__builtin_strcmp_eq",
10780 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10782 /* If there's a possibility that we might use the ARM EABI, build the
10783 alternate __cxa_end_cleanup node used to resume from C++. */
10784 if (targetm.arm_eabi_unwinder)
10786 ftype = build_function_type_list (void_type_node, NULL_TREE);
10787 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10788 BUILT_IN_CXA_END_CLEANUP,
10789 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10792 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10793 local_define_builtin ("__builtin_unwind_resume", ftype,
10794 BUILT_IN_UNWIND_RESUME,
10795 ((targetm_common.except_unwind_info (&global_options)
10796 == UI_SJLJ)
10797 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10798 ECF_NORETURN);
10800 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10802 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10803 NULL_TREE);
10804 local_define_builtin ("__builtin_return_address", ftype,
10805 BUILT_IN_RETURN_ADDRESS,
10806 "__builtin_return_address",
10807 ECF_NOTHROW);
10810 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10811 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10813 ftype = build_function_type_list (void_type_node, ptr_type_node,
10814 ptr_type_node, NULL_TREE);
10815 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10816 local_define_builtin ("__cyg_profile_func_enter", ftype,
10817 BUILT_IN_PROFILE_FUNC_ENTER,
10818 "__cyg_profile_func_enter", 0);
10819 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10820 local_define_builtin ("__cyg_profile_func_exit", ftype,
10821 BUILT_IN_PROFILE_FUNC_EXIT,
10822 "__cyg_profile_func_exit", 0);
10825 /* The exception object and filter values from the runtime. The argument
10826 must be zero before exception lowering, i.e. from the front end. After
10827 exception lowering, it will be the region number for the exception
10828 landing pad. These functions are PURE instead of CONST to prevent
10829 them from being hoisted past the exception edge that will initialize
10830 its value in the landing pad. */
10831 ftype = build_function_type_list (ptr_type_node,
10832 integer_type_node, NULL_TREE);
10833 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10834 /* Only use TM_PURE if we have TM language support. */
10835 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10836 ecf_flags |= ECF_TM_PURE;
10837 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10838 "__builtin_eh_pointer", ecf_flags);
10840 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10841 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10842 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10843 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10845 ftype = build_function_type_list (void_type_node,
10846 integer_type_node, integer_type_node,
10847 NULL_TREE);
10848 local_define_builtin ("__builtin_eh_copy_values", ftype,
10849 BUILT_IN_EH_COPY_VALUES,
10850 "__builtin_eh_copy_values", ECF_NOTHROW);
10852 /* Complex multiplication and division. These are handled as builtins
10853 rather than optabs because emit_library_call_value doesn't support
10854 complex. Further, we can do slightly better with folding these
10855 beasties if the real and complex parts of the arguments are separate. */
10857 int mode;
10859 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10861 char mode_name_buf[4], *q;
10862 const char *p;
10863 enum built_in_function mcode, dcode;
10864 tree type, inner_type;
10865 const char *prefix = "__";
10867 if (targetm.libfunc_gnu_prefix)
10868 prefix = "__gnu_";
10870 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10871 if (type == NULL)
10872 continue;
10873 inner_type = TREE_TYPE (type);
10875 ftype = build_function_type_list (type, inner_type, inner_type,
10876 inner_type, inner_type, NULL_TREE);
10878 mcode = ((enum built_in_function)
10879 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10880 dcode = ((enum built_in_function)
10881 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10883 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10884 *q = TOLOWER (*p);
10885 *q = '\0';
10887 /* For -ftrapping-math these should throw from a former
10888 -fnon-call-exception stmt. */
10889 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10890 NULL);
10891 local_define_builtin (built_in_names[mcode], ftype, mcode,
10892 built_in_names[mcode],
10893 ECF_CONST | ECF_LEAF);
10895 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10896 NULL);
10897 local_define_builtin (built_in_names[dcode], ftype, dcode,
10898 built_in_names[dcode],
10899 ECF_CONST | ECF_LEAF);
10903 init_internal_fns ();
10906 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10907 better way.
10909 If we requested a pointer to a vector, build up the pointers that
10910 we stripped off while looking for the inner type. Similarly for
10911 return values from functions.
10913 The argument TYPE is the top of the chain, and BOTTOM is the
10914 new type which we will point to. */
10916 tree
10917 reconstruct_complex_type (tree type, tree bottom)
10919 tree inner, outer;
10921 if (TREE_CODE (type) == POINTER_TYPE)
10923 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10924 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10925 TYPE_REF_CAN_ALIAS_ALL (type));
10927 else if (TREE_CODE (type) == REFERENCE_TYPE)
10929 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10930 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10931 TYPE_REF_CAN_ALIAS_ALL (type));
10933 else if (TREE_CODE (type) == ARRAY_TYPE)
10935 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10936 outer = build_array_type (inner, TYPE_DOMAIN (type));
10938 else if (TREE_CODE (type) == FUNCTION_TYPE)
10940 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10941 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10943 else if (TREE_CODE (type) == METHOD_TYPE)
10945 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10946 /* The build_method_type_directly() routine prepends 'this' to argument list,
10947 so we must compensate by getting rid of it. */
10948 outer
10949 = build_method_type_directly
10950 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10951 inner,
10952 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10954 else if (TREE_CODE (type) == OFFSET_TYPE)
10956 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10957 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10959 else
10960 return bottom;
10962 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10963 TYPE_QUALS (type));
10966 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10967 the inner type. */
10968 tree
10969 build_vector_type_for_mode (tree innertype, machine_mode mode)
10971 poly_int64 nunits;
10972 unsigned int bitsize;
10974 switch (GET_MODE_CLASS (mode))
10976 case MODE_VECTOR_BOOL:
10977 case MODE_VECTOR_INT:
10978 case MODE_VECTOR_FLOAT:
10979 case MODE_VECTOR_FRACT:
10980 case MODE_VECTOR_UFRACT:
10981 case MODE_VECTOR_ACCUM:
10982 case MODE_VECTOR_UACCUM:
10983 nunits = GET_MODE_NUNITS (mode);
10984 break;
10986 case MODE_INT:
10987 /* Check that there are no leftover bits. */
10988 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10989 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10990 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10991 break;
10993 default:
10994 gcc_unreachable ();
10997 return make_vector_type (innertype, nunits, mode);
11000 /* Similarly, but takes the inner type and number of units, which must be
11001 a power of two. */
11003 tree
11004 build_vector_type (tree innertype, poly_int64 nunits)
11006 return make_vector_type (innertype, nunits, VOIDmode);
11009 /* Build a truth vector with NUNITS units, giving it mode MASK_MODE. */
11011 tree
11012 build_truth_vector_type_for_mode (poly_uint64 nunits, machine_mode mask_mode)
11014 gcc_assert (mask_mode != BLKmode);
11016 unsigned HOST_WIDE_INT esize;
11017 if (VECTOR_MODE_P (mask_mode))
11019 poly_uint64 vsize = GET_MODE_BITSIZE (mask_mode);
11020 esize = vector_element_size (vsize, nunits);
11022 else
11023 esize = 1;
11025 tree bool_type = build_nonstandard_boolean_type (esize);
11027 return make_vector_type (bool_type, nunits, mask_mode);
11030 /* Build a vector type that holds one boolean result for each element of
11031 vector type VECTYPE. The public interface for this operation is
11032 truth_type_for. */
11034 static tree
11035 build_truth_vector_type_for (tree vectype)
11037 machine_mode vector_mode = TYPE_MODE (vectype);
11038 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype);
11040 machine_mode mask_mode;
11041 if (VECTOR_MODE_P (vector_mode)
11042 && targetm.vectorize.get_mask_mode (vector_mode).exists (&mask_mode))
11043 return build_truth_vector_type_for_mode (nunits, mask_mode);
11045 poly_uint64 vsize = tree_to_poly_uint64 (TYPE_SIZE (vectype));
11046 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
11047 tree bool_type = build_nonstandard_boolean_type (esize);
11049 return make_vector_type (bool_type, nunits, VOIDmode);
11052 /* Like build_vector_type, but builds a variant type with TYPE_VECTOR_OPAQUE
11053 set. */
11055 tree
11056 build_opaque_vector_type (tree innertype, poly_int64 nunits)
11058 tree t = make_vector_type (innertype, nunits, VOIDmode);
11059 tree cand;
11060 /* We always build the non-opaque variant before the opaque one,
11061 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
11062 cand = TYPE_NEXT_VARIANT (t);
11063 if (cand
11064 && TYPE_VECTOR_OPAQUE (cand)
11065 && check_qualified_type (cand, t, TYPE_QUALS (t)))
11066 return cand;
11067 /* Othewise build a variant type and make sure to queue it after
11068 the non-opaque type. */
11069 cand = build_distinct_type_copy (t);
11070 TYPE_VECTOR_OPAQUE (cand) = true;
11071 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
11072 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
11073 TYPE_NEXT_VARIANT (t) = cand;
11074 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
11075 return cand;
11078 /* Return the value of element I of VECTOR_CST T as a wide_int. */
11080 wide_int
11081 vector_cst_int_elt (const_tree t, unsigned int i)
11083 /* First handle elements that are directly encoded. */
11084 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11085 if (i < encoded_nelts)
11086 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
11088 /* Identify the pattern that contains element I and work out the index of
11089 the last encoded element for that pattern. */
11090 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11091 unsigned int pattern = i % npatterns;
11092 unsigned int count = i / npatterns;
11093 unsigned int final_i = encoded_nelts - npatterns + pattern;
11095 /* If there are no steps, the final encoded value is the right one. */
11096 if (!VECTOR_CST_STEPPED_P (t))
11097 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
11099 /* Otherwise work out the value from the last two encoded elements. */
11100 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
11101 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
11102 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
11103 return wi::to_wide (v2) + (count - 2) * diff;
11106 /* Return the value of element I of VECTOR_CST T. */
11108 tree
11109 vector_cst_elt (const_tree t, unsigned int i)
11111 /* First handle elements that are directly encoded. */
11112 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11113 if (i < encoded_nelts)
11114 return VECTOR_CST_ENCODED_ELT (t, i);
11116 /* If there are no steps, the final encoded value is the right one. */
11117 if (!VECTOR_CST_STEPPED_P (t))
11119 /* Identify the pattern that contains element I and work out the index of
11120 the last encoded element for that pattern. */
11121 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11122 unsigned int pattern = i % npatterns;
11123 unsigned int final_i = encoded_nelts - npatterns + pattern;
11124 return VECTOR_CST_ENCODED_ELT (t, final_i);
11127 /* Otherwise work out the value from the last two encoded elements. */
11128 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
11129 vector_cst_int_elt (t, i));
11132 /* Given an initializer INIT, return TRUE if INIT is zero or some
11133 aggregate of zeros. Otherwise return FALSE. If NONZERO is not
11134 null, set *NONZERO if and only if INIT is known not to be all
11135 zeros. The combination of return value of false and *NONZERO
11136 false implies that INIT may but need not be all zeros. Other
11137 combinations indicate definitive answers. */
11139 bool
11140 initializer_zerop (const_tree init, bool *nonzero /* = NULL */)
11142 bool dummy;
11143 if (!nonzero)
11144 nonzero = &dummy;
11146 /* Conservatively clear NONZERO and set it only if INIT is definitely
11147 not all zero. */
11148 *nonzero = false;
11150 STRIP_NOPS (init);
11152 unsigned HOST_WIDE_INT off = 0;
11154 switch (TREE_CODE (init))
11156 case INTEGER_CST:
11157 if (integer_zerop (init))
11158 return true;
11160 *nonzero = true;
11161 return false;
11163 case REAL_CST:
11164 /* ??? Note that this is not correct for C4X float formats. There,
11165 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
11166 negative exponent. */
11167 if (real_zerop (init)
11168 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init)))
11169 return true;
11171 *nonzero = true;
11172 return false;
11174 case FIXED_CST:
11175 if (fixed_zerop (init))
11176 return true;
11178 *nonzero = true;
11179 return false;
11181 case COMPLEX_CST:
11182 if (integer_zerop (init)
11183 || (real_zerop (init)
11184 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
11185 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init)))))
11186 return true;
11188 *nonzero = true;
11189 return false;
11191 case VECTOR_CST:
11192 if (VECTOR_CST_NPATTERNS (init) == 1
11193 && VECTOR_CST_DUPLICATE_P (init)
11194 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)))
11195 return true;
11197 *nonzero = true;
11198 return false;
11200 case CONSTRUCTOR:
11202 if (TREE_CLOBBER_P (init))
11203 return false;
11205 unsigned HOST_WIDE_INT idx;
11206 tree elt;
11208 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
11209 if (!initializer_zerop (elt, nonzero))
11210 return false;
11212 return true;
11215 case MEM_REF:
11217 tree arg = TREE_OPERAND (init, 0);
11218 if (TREE_CODE (arg) != ADDR_EXPR)
11219 return false;
11220 tree offset = TREE_OPERAND (init, 1);
11221 if (TREE_CODE (offset) != INTEGER_CST
11222 || !tree_fits_uhwi_p (offset))
11223 return false;
11224 off = tree_to_uhwi (offset);
11225 if (INT_MAX < off)
11226 return false;
11227 arg = TREE_OPERAND (arg, 0);
11228 if (TREE_CODE (arg) != STRING_CST)
11229 return false;
11230 init = arg;
11232 /* Fall through. */
11234 case STRING_CST:
11236 gcc_assert (off <= INT_MAX);
11238 int i = off;
11239 int n = TREE_STRING_LENGTH (init);
11240 if (n <= i)
11241 return false;
11243 /* We need to loop through all elements to handle cases like
11244 "\0" and "\0foobar". */
11245 for (i = 0; i < n; ++i)
11246 if (TREE_STRING_POINTER (init)[i] != '\0')
11248 *nonzero = true;
11249 return false;
11252 return true;
11255 default:
11256 return false;
11260 /* Return true if EXPR is an initializer expression in which every element
11261 is a constant that is numerically equal to 0 or 1. The elements do not
11262 need to be equal to each other. */
11264 bool
11265 initializer_each_zero_or_onep (const_tree expr)
11267 STRIP_ANY_LOCATION_WRAPPER (expr);
11269 switch (TREE_CODE (expr))
11271 case INTEGER_CST:
11272 return integer_zerop (expr) || integer_onep (expr);
11274 case REAL_CST:
11275 return real_zerop (expr) || real_onep (expr);
11277 case VECTOR_CST:
11279 unsigned HOST_WIDE_INT nelts = vector_cst_encoded_nelts (expr);
11280 if (VECTOR_CST_STEPPED_P (expr)
11281 && !TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr)).is_constant (&nelts))
11282 return false;
11284 for (unsigned int i = 0; i < nelts; ++i)
11286 tree elt = vector_cst_elt (expr, i);
11287 if (!initializer_each_zero_or_onep (elt))
11288 return false;
11291 return true;
11294 default:
11295 return false;
11299 /* Check if vector VEC consists of all the equal elements and
11300 that the number of elements corresponds to the type of VEC.
11301 The function returns first element of the vector
11302 or NULL_TREE if the vector is not uniform. */
11303 tree
11304 uniform_vector_p (const_tree vec)
11306 tree first, t;
11307 unsigned HOST_WIDE_INT i, nelts;
11309 if (vec == NULL_TREE)
11310 return NULL_TREE;
11312 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
11314 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
11315 return TREE_OPERAND (vec, 0);
11317 else if (TREE_CODE (vec) == VECTOR_CST)
11319 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
11320 return VECTOR_CST_ENCODED_ELT (vec, 0);
11321 return NULL_TREE;
11324 else if (TREE_CODE (vec) == CONSTRUCTOR
11325 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
11327 first = error_mark_node;
11329 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
11331 if (i == 0)
11333 first = t;
11334 continue;
11336 if (!operand_equal_p (first, t, 0))
11337 return NULL_TREE;
11339 if (i != nelts)
11340 return NULL_TREE;
11342 return first;
11345 return NULL_TREE;
11348 /* If the argument is INTEGER_CST, return it. If the argument is vector
11349 with all elements the same INTEGER_CST, return that INTEGER_CST. Otherwise
11350 return NULL_TREE.
11351 Look through location wrappers. */
11353 tree
11354 uniform_integer_cst_p (tree t)
11356 STRIP_ANY_LOCATION_WRAPPER (t);
11358 if (TREE_CODE (t) == INTEGER_CST)
11359 return t;
11361 if (VECTOR_TYPE_P (TREE_TYPE (t)))
11363 t = uniform_vector_p (t);
11364 if (t && TREE_CODE (t) == INTEGER_CST)
11365 return t;
11368 return NULL_TREE;
11371 /* If VECTOR_CST T has a single nonzero element, return the index of that
11372 element, otherwise return -1. */
11375 single_nonzero_element (const_tree t)
11377 unsigned HOST_WIDE_INT nelts;
11378 unsigned int repeat_nelts;
11379 if (VECTOR_CST_NELTS (t).is_constant (&nelts))
11380 repeat_nelts = nelts;
11381 else if (VECTOR_CST_NELTS_PER_PATTERN (t) == 2)
11383 nelts = vector_cst_encoded_nelts (t);
11384 repeat_nelts = VECTOR_CST_NPATTERNS (t);
11386 else
11387 return -1;
11389 int res = -1;
11390 for (unsigned int i = 0; i < nelts; ++i)
11392 tree elt = vector_cst_elt (t, i);
11393 if (!integer_zerop (elt) && !real_zerop (elt))
11395 if (res >= 0 || i >= repeat_nelts)
11396 return -1;
11397 res = i;
11400 return res;
11403 /* Build an empty statement at location LOC. */
11405 tree
11406 build_empty_stmt (location_t loc)
11408 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
11409 SET_EXPR_LOCATION (t, loc);
11410 return t;
11414 /* Build an OpenMP clause with code CODE. LOC is the location of the
11415 clause. */
11417 tree
11418 build_omp_clause (location_t loc, enum omp_clause_code code)
11420 tree t;
11421 int size, length;
11423 length = omp_clause_num_ops[code];
11424 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
11426 record_node_allocation_statistics (OMP_CLAUSE, size);
11428 t = (tree) ggc_internal_alloc (size);
11429 memset (t, 0, size);
11430 TREE_SET_CODE (t, OMP_CLAUSE);
11431 OMP_CLAUSE_SET_CODE (t, code);
11432 OMP_CLAUSE_LOCATION (t) = loc;
11434 return t;
11437 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
11438 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
11439 Except for the CODE and operand count field, other storage for the
11440 object is initialized to zeros. */
11442 tree
11443 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
11445 tree t;
11446 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
11448 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
11449 gcc_assert (len >= 1);
11451 record_node_allocation_statistics (code, length);
11453 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
11455 TREE_SET_CODE (t, code);
11457 /* Can't use TREE_OPERAND to store the length because if checking is
11458 enabled, it will try to check the length before we store it. :-P */
11459 t->exp.operands[0] = build_int_cst (sizetype, len);
11461 return t;
11464 /* Helper function for build_call_* functions; build a CALL_EXPR with
11465 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
11466 the argument slots. */
11468 static tree
11469 build_call_1 (tree return_type, tree fn, int nargs)
11471 tree t;
11473 t = build_vl_exp (CALL_EXPR, nargs + 3);
11474 TREE_TYPE (t) = return_type;
11475 CALL_EXPR_FN (t) = fn;
11476 CALL_EXPR_STATIC_CHAIN (t) = NULL;
11478 return t;
11481 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11482 FN and a null static chain slot. NARGS is the number of call arguments
11483 which are specified as "..." arguments. */
11485 tree
11486 build_call_nary (tree return_type, tree fn, int nargs, ...)
11488 tree ret;
11489 va_list args;
11490 va_start (args, nargs);
11491 ret = build_call_valist (return_type, fn, nargs, args);
11492 va_end (args);
11493 return ret;
11496 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11497 FN and a null static chain slot. NARGS is the number of call arguments
11498 which are specified as a va_list ARGS. */
11500 tree
11501 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11503 tree t;
11504 int i;
11506 t = build_call_1 (return_type, fn, nargs);
11507 for (i = 0; i < nargs; i++)
11508 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11509 process_call_operands (t);
11510 return t;
11513 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11514 FN and a null static chain slot. NARGS is the number of call arguments
11515 which are specified as a tree array ARGS. */
11517 tree
11518 build_call_array_loc (location_t loc, tree return_type, tree fn,
11519 int nargs, const tree *args)
11521 tree t;
11522 int i;
11524 t = build_call_1 (return_type, fn, nargs);
11525 for (i = 0; i < nargs; i++)
11526 CALL_EXPR_ARG (t, i) = args[i];
11527 process_call_operands (t);
11528 SET_EXPR_LOCATION (t, loc);
11529 return t;
11532 /* Like build_call_array, but takes a vec. */
11534 tree
11535 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11537 tree ret, t;
11538 unsigned int ix;
11540 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11541 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11542 CALL_EXPR_ARG (ret, ix) = t;
11543 process_call_operands (ret);
11544 return ret;
11547 /* Conveniently construct a function call expression. FNDECL names the
11548 function to be called and N arguments are passed in the array
11549 ARGARRAY. */
11551 tree
11552 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11554 tree fntype = TREE_TYPE (fndecl);
11555 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11557 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11560 /* Conveniently construct a function call expression. FNDECL names the
11561 function to be called and the arguments are passed in the vector
11562 VEC. */
11564 tree
11565 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11567 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11568 vec_safe_address (vec));
11572 /* Conveniently construct a function call expression. FNDECL names the
11573 function to be called, N is the number of arguments, and the "..."
11574 parameters are the argument expressions. */
11576 tree
11577 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11579 va_list ap;
11580 tree *argarray = XALLOCAVEC (tree, n);
11581 int i;
11583 va_start (ap, n);
11584 for (i = 0; i < n; i++)
11585 argarray[i] = va_arg (ap, tree);
11586 va_end (ap);
11587 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11590 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11591 varargs macros aren't supported by all bootstrap compilers. */
11593 tree
11594 build_call_expr (tree fndecl, int n, ...)
11596 va_list ap;
11597 tree *argarray = XALLOCAVEC (tree, n);
11598 int i;
11600 va_start (ap, n);
11601 for (i = 0; i < n; i++)
11602 argarray[i] = va_arg (ap, tree);
11603 va_end (ap);
11604 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11607 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11608 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11609 It will get gimplified later into an ordinary internal function. */
11611 tree
11612 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11613 tree type, int n, const tree *args)
11615 tree t = build_call_1 (type, NULL_TREE, n);
11616 for (int i = 0; i < n; ++i)
11617 CALL_EXPR_ARG (t, i) = args[i];
11618 SET_EXPR_LOCATION (t, loc);
11619 CALL_EXPR_IFN (t) = ifn;
11620 process_call_operands (t);
11621 return t;
11624 /* Build internal call expression. This is just like CALL_EXPR, except
11625 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11626 internal function. */
11628 tree
11629 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11630 tree type, int n, ...)
11632 va_list ap;
11633 tree *argarray = XALLOCAVEC (tree, n);
11634 int i;
11636 va_start (ap, n);
11637 for (i = 0; i < n; i++)
11638 argarray[i] = va_arg (ap, tree);
11639 va_end (ap);
11640 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11643 /* Return a function call to FN, if the target is guaranteed to support it,
11644 or null otherwise.
11646 N is the number of arguments, passed in the "...", and TYPE is the
11647 type of the return value. */
11649 tree
11650 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11651 int n, ...)
11653 va_list ap;
11654 tree *argarray = XALLOCAVEC (tree, n);
11655 int i;
11657 va_start (ap, n);
11658 for (i = 0; i < n; i++)
11659 argarray[i] = va_arg (ap, tree);
11660 va_end (ap);
11661 if (internal_fn_p (fn))
11663 internal_fn ifn = as_internal_fn (fn);
11664 if (direct_internal_fn_p (ifn))
11666 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11667 if (!direct_internal_fn_supported_p (ifn, types,
11668 OPTIMIZE_FOR_BOTH))
11669 return NULL_TREE;
11671 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11673 else
11675 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11676 if (!fndecl)
11677 return NULL_TREE;
11678 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11682 /* Return a function call to the appropriate builtin alloca variant.
11684 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11685 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11686 bound for SIZE in case it is not a fixed value. */
11688 tree
11689 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11691 if (max_size >= 0)
11693 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11694 return
11695 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11697 else if (align > 0)
11699 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11700 return build_call_expr (t, 2, size, size_int (align));
11702 else
11704 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11705 return build_call_expr (t, 1, size);
11709 /* Create a new constant string literal of type ELTYPE[SIZE] (or LEN
11710 if SIZE == -1) and return a tree node representing char* pointer to
11711 it as an ADDR_EXPR (ARRAY_REF (ELTYPE, ...)). When STR is nonnull
11712 the STRING_CST value is the LEN bytes at STR (the representation
11713 of the string, which may be wide). Otherwise it's all zeros. */
11715 tree
11716 build_string_literal (unsigned len, const char *str /* = NULL */,
11717 tree eltype /* = char_type_node */,
11718 unsigned HOST_WIDE_INT size /* = -1 */)
11720 tree t = build_string (len, str);
11721 /* Set the maximum valid index based on the string length or SIZE. */
11722 unsigned HOST_WIDE_INT maxidx
11723 = (size == HOST_WIDE_INT_M1U ? len : size) - 1;
11725 tree index = build_index_type (size_int (maxidx));
11726 eltype = build_type_variant (eltype, 1, 0);
11727 tree type = build_array_type (eltype, index);
11728 TREE_TYPE (t) = type;
11729 TREE_CONSTANT (t) = 1;
11730 TREE_READONLY (t) = 1;
11731 TREE_STATIC (t) = 1;
11733 type = build_pointer_type (eltype);
11734 t = build1 (ADDR_EXPR, type,
11735 build4 (ARRAY_REF, eltype,
11736 t, integer_zero_node, NULL_TREE, NULL_TREE));
11737 return t;
11742 /* Return true if T (assumed to be a DECL) must be assigned a memory
11743 location. */
11745 bool
11746 needs_to_live_in_memory (const_tree t)
11748 return (TREE_ADDRESSABLE (t)
11749 || is_global_var (t)
11750 || (TREE_CODE (t) == RESULT_DECL
11751 && !DECL_BY_REFERENCE (t)
11752 && aggregate_value_p (t, current_function_decl)));
11755 /* Return value of a constant X and sign-extend it. */
11757 HOST_WIDE_INT
11758 int_cst_value (const_tree x)
11760 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11761 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11763 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11764 gcc_assert (cst_and_fits_in_hwi (x));
11766 if (bits < HOST_BITS_PER_WIDE_INT)
11768 bool negative = ((val >> (bits - 1)) & 1) != 0;
11769 if (negative)
11770 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11771 else
11772 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11775 return val;
11778 /* If TYPE is an integral or pointer type, return an integer type with
11779 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11780 if TYPE is already an integer type of signedness UNSIGNEDP.
11781 If TYPE is a floating-point type, return an integer type with the same
11782 bitsize and with the signedness given by UNSIGNEDP; this is useful
11783 when doing bit-level operations on a floating-point value. */
11785 tree
11786 signed_or_unsigned_type_for (int unsignedp, tree type)
11788 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_UNSIGNED (type) == unsignedp)
11789 return type;
11791 if (TREE_CODE (type) == VECTOR_TYPE)
11793 tree inner = TREE_TYPE (type);
11794 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11795 if (!inner2)
11796 return NULL_TREE;
11797 if (inner == inner2)
11798 return type;
11799 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11802 if (TREE_CODE (type) == COMPLEX_TYPE)
11804 tree inner = TREE_TYPE (type);
11805 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11806 if (!inner2)
11807 return NULL_TREE;
11808 if (inner == inner2)
11809 return type;
11810 return build_complex_type (inner2);
11813 unsigned int bits;
11814 if (INTEGRAL_TYPE_P (type)
11815 || POINTER_TYPE_P (type)
11816 || TREE_CODE (type) == OFFSET_TYPE)
11817 bits = TYPE_PRECISION (type);
11818 else if (TREE_CODE (type) == REAL_TYPE)
11819 bits = GET_MODE_BITSIZE (SCALAR_TYPE_MODE (type));
11820 else
11821 return NULL_TREE;
11823 return build_nonstandard_integer_type (bits, unsignedp);
11826 /* If TYPE is an integral or pointer type, return an integer type with
11827 the same precision which is unsigned, or itself if TYPE is already an
11828 unsigned integer type. If TYPE is a floating-point type, return an
11829 unsigned integer type with the same bitsize as TYPE. */
11831 tree
11832 unsigned_type_for (tree type)
11834 return signed_or_unsigned_type_for (1, type);
11837 /* If TYPE is an integral or pointer type, return an integer type with
11838 the same precision which is signed, or itself if TYPE is already a
11839 signed integer type. If TYPE is a floating-point type, return a
11840 signed integer type with the same bitsize as TYPE. */
11842 tree
11843 signed_type_for (tree type)
11845 return signed_or_unsigned_type_for (0, type);
11848 /* If TYPE is a vector type, return a signed integer vector type with the
11849 same width and number of subparts. Otherwise return boolean_type_node. */
11851 tree
11852 truth_type_for (tree type)
11854 if (TREE_CODE (type) == VECTOR_TYPE)
11856 if (VECTOR_BOOLEAN_TYPE_P (type))
11857 return type;
11858 return build_truth_vector_type_for (type);
11860 else
11861 return boolean_type_node;
11864 /* Returns the largest value obtainable by casting something in INNER type to
11865 OUTER type. */
11867 tree
11868 upper_bound_in_type (tree outer, tree inner)
11870 unsigned int det = 0;
11871 unsigned oprec = TYPE_PRECISION (outer);
11872 unsigned iprec = TYPE_PRECISION (inner);
11873 unsigned prec;
11875 /* Compute a unique number for every combination. */
11876 det |= (oprec > iprec) ? 4 : 0;
11877 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11878 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11880 /* Determine the exponent to use. */
11881 switch (det)
11883 case 0:
11884 case 1:
11885 /* oprec <= iprec, outer: signed, inner: don't care. */
11886 prec = oprec - 1;
11887 break;
11888 case 2:
11889 case 3:
11890 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11891 prec = oprec;
11892 break;
11893 case 4:
11894 /* oprec > iprec, outer: signed, inner: signed. */
11895 prec = iprec - 1;
11896 break;
11897 case 5:
11898 /* oprec > iprec, outer: signed, inner: unsigned. */
11899 prec = iprec;
11900 break;
11901 case 6:
11902 /* oprec > iprec, outer: unsigned, inner: signed. */
11903 prec = oprec;
11904 break;
11905 case 7:
11906 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11907 prec = iprec;
11908 break;
11909 default:
11910 gcc_unreachable ();
11913 return wide_int_to_tree (outer,
11914 wi::mask (prec, false, TYPE_PRECISION (outer)));
11917 /* Returns the smallest value obtainable by casting something in INNER type to
11918 OUTER type. */
11920 tree
11921 lower_bound_in_type (tree outer, tree inner)
11923 unsigned oprec = TYPE_PRECISION (outer);
11924 unsigned iprec = TYPE_PRECISION (inner);
11926 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11927 and obtain 0. */
11928 if (TYPE_UNSIGNED (outer)
11929 /* If we are widening something of an unsigned type, OUTER type
11930 contains all values of INNER type. In particular, both INNER
11931 and OUTER types have zero in common. */
11932 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11933 return build_int_cst (outer, 0);
11934 else
11936 /* If we are widening a signed type to another signed type, we
11937 want to obtain -2^^(iprec-1). If we are keeping the
11938 precision or narrowing to a signed type, we want to obtain
11939 -2^(oprec-1). */
11940 unsigned prec = oprec > iprec ? iprec : oprec;
11941 return wide_int_to_tree (outer,
11942 wi::mask (prec - 1, true,
11943 TYPE_PRECISION (outer)));
11947 /* Return nonzero if two operands that are suitable for PHI nodes are
11948 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11949 SSA_NAME or invariant. Note that this is strictly an optimization.
11950 That is, callers of this function can directly call operand_equal_p
11951 and get the same result, only slower. */
11954 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11956 if (arg0 == arg1)
11957 return 1;
11958 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11959 return 0;
11960 return operand_equal_p (arg0, arg1, 0);
11963 /* Returns number of zeros at the end of binary representation of X. */
11965 tree
11966 num_ending_zeros (const_tree x)
11968 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11972 #define WALK_SUBTREE(NODE) \
11973 do \
11975 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11976 if (result) \
11977 return result; \
11979 while (0)
11981 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11982 be walked whenever a type is seen in the tree. Rest of operands and return
11983 value are as for walk_tree. */
11985 static tree
11986 walk_type_fields (tree type, walk_tree_fn func, void *data,
11987 hash_set<tree> *pset, walk_tree_lh lh)
11989 tree result = NULL_TREE;
11991 switch (TREE_CODE (type))
11993 case POINTER_TYPE:
11994 case REFERENCE_TYPE:
11995 case VECTOR_TYPE:
11996 /* We have to worry about mutually recursive pointers. These can't
11997 be written in C. They can in Ada. It's pathological, but
11998 there's an ACATS test (c38102a) that checks it. Deal with this
11999 by checking if we're pointing to another pointer, that one
12000 points to another pointer, that one does too, and we have no htab.
12001 If so, get a hash table. We check three levels deep to avoid
12002 the cost of the hash table if we don't need one. */
12003 if (POINTER_TYPE_P (TREE_TYPE (type))
12004 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
12005 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
12006 && !pset)
12008 result = walk_tree_without_duplicates (&TREE_TYPE (type),
12009 func, data);
12010 if (result)
12011 return result;
12013 break;
12016 /* fall through */
12018 case COMPLEX_TYPE:
12019 WALK_SUBTREE (TREE_TYPE (type));
12020 break;
12022 case METHOD_TYPE:
12023 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
12025 /* Fall through. */
12027 case FUNCTION_TYPE:
12028 WALK_SUBTREE (TREE_TYPE (type));
12030 tree arg;
12032 /* We never want to walk into default arguments. */
12033 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
12034 WALK_SUBTREE (TREE_VALUE (arg));
12036 break;
12038 case ARRAY_TYPE:
12039 /* Don't follow this nodes's type if a pointer for fear that
12040 we'll have infinite recursion. If we have a PSET, then we
12041 need not fear. */
12042 if (pset
12043 || (!POINTER_TYPE_P (TREE_TYPE (type))
12044 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
12045 WALK_SUBTREE (TREE_TYPE (type));
12046 WALK_SUBTREE (TYPE_DOMAIN (type));
12047 break;
12049 case OFFSET_TYPE:
12050 WALK_SUBTREE (TREE_TYPE (type));
12051 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
12052 break;
12054 default:
12055 break;
12058 return NULL_TREE;
12061 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
12062 called with the DATA and the address of each sub-tree. If FUNC returns a
12063 non-NULL value, the traversal is stopped, and the value returned by FUNC
12064 is returned. If PSET is non-NULL it is used to record the nodes visited,
12065 and to avoid visiting a node more than once. */
12067 tree
12068 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
12069 hash_set<tree> *pset, walk_tree_lh lh)
12071 enum tree_code code;
12072 int walk_subtrees;
12073 tree result;
12075 #define WALK_SUBTREE_TAIL(NODE) \
12076 do \
12078 tp = & (NODE); \
12079 goto tail_recurse; \
12081 while (0)
12083 tail_recurse:
12084 /* Skip empty subtrees. */
12085 if (!*tp)
12086 return NULL_TREE;
12088 /* Don't walk the same tree twice, if the user has requested
12089 that we avoid doing so. */
12090 if (pset && pset->add (*tp))
12091 return NULL_TREE;
12093 /* Call the function. */
12094 walk_subtrees = 1;
12095 result = (*func) (tp, &walk_subtrees, data);
12097 /* If we found something, return it. */
12098 if (result)
12099 return result;
12101 code = TREE_CODE (*tp);
12103 /* Even if we didn't, FUNC may have decided that there was nothing
12104 interesting below this point in the tree. */
12105 if (!walk_subtrees)
12107 /* But we still need to check our siblings. */
12108 if (code == TREE_LIST)
12109 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12110 else if (code == OMP_CLAUSE)
12111 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12112 else
12113 return NULL_TREE;
12116 if (lh)
12118 result = (*lh) (tp, &walk_subtrees, func, data, pset);
12119 if (result || !walk_subtrees)
12120 return result;
12123 switch (code)
12125 case ERROR_MARK:
12126 case IDENTIFIER_NODE:
12127 case INTEGER_CST:
12128 case REAL_CST:
12129 case FIXED_CST:
12130 case VECTOR_CST:
12131 case STRING_CST:
12132 case BLOCK:
12133 case PLACEHOLDER_EXPR:
12134 case SSA_NAME:
12135 case FIELD_DECL:
12136 case RESULT_DECL:
12137 /* None of these have subtrees other than those already walked
12138 above. */
12139 break;
12141 case TREE_LIST:
12142 WALK_SUBTREE (TREE_VALUE (*tp));
12143 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12144 break;
12146 case TREE_VEC:
12148 int len = TREE_VEC_LENGTH (*tp);
12150 if (len == 0)
12151 break;
12153 /* Walk all elements but the first. */
12154 while (--len)
12155 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
12157 /* Now walk the first one as a tail call. */
12158 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
12161 case COMPLEX_CST:
12162 WALK_SUBTREE (TREE_REALPART (*tp));
12163 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
12165 case CONSTRUCTOR:
12167 unsigned HOST_WIDE_INT idx;
12168 constructor_elt *ce;
12170 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
12171 idx++)
12172 WALK_SUBTREE (ce->value);
12174 break;
12176 case SAVE_EXPR:
12177 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
12179 case BIND_EXPR:
12181 tree decl;
12182 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
12184 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
12185 into declarations that are just mentioned, rather than
12186 declared; they don't really belong to this part of the tree.
12187 And, we can see cycles: the initializer for a declaration
12188 can refer to the declaration itself. */
12189 WALK_SUBTREE (DECL_INITIAL (decl));
12190 WALK_SUBTREE (DECL_SIZE (decl));
12191 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
12193 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
12196 case STATEMENT_LIST:
12198 tree_stmt_iterator i;
12199 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
12200 WALK_SUBTREE (*tsi_stmt_ptr (i));
12202 break;
12204 case OMP_CLAUSE:
12205 switch (OMP_CLAUSE_CODE (*tp))
12207 case OMP_CLAUSE_GANG:
12208 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12209 /* FALLTHRU */
12211 case OMP_CLAUSE_ASYNC:
12212 case OMP_CLAUSE_WAIT:
12213 case OMP_CLAUSE_WORKER:
12214 case OMP_CLAUSE_VECTOR:
12215 case OMP_CLAUSE_NUM_GANGS:
12216 case OMP_CLAUSE_NUM_WORKERS:
12217 case OMP_CLAUSE_VECTOR_LENGTH:
12218 case OMP_CLAUSE_PRIVATE:
12219 case OMP_CLAUSE_SHARED:
12220 case OMP_CLAUSE_FIRSTPRIVATE:
12221 case OMP_CLAUSE_COPYIN:
12222 case OMP_CLAUSE_COPYPRIVATE:
12223 case OMP_CLAUSE_FINAL:
12224 case OMP_CLAUSE_IF:
12225 case OMP_CLAUSE_NUM_THREADS:
12226 case OMP_CLAUSE_SCHEDULE:
12227 case OMP_CLAUSE_UNIFORM:
12228 case OMP_CLAUSE_DEPEND:
12229 case OMP_CLAUSE_NONTEMPORAL:
12230 case OMP_CLAUSE_NUM_TEAMS:
12231 case OMP_CLAUSE_THREAD_LIMIT:
12232 case OMP_CLAUSE_DEVICE:
12233 case OMP_CLAUSE_DIST_SCHEDULE:
12234 case OMP_CLAUSE_SAFELEN:
12235 case OMP_CLAUSE_SIMDLEN:
12236 case OMP_CLAUSE_ORDERED:
12237 case OMP_CLAUSE_PRIORITY:
12238 case OMP_CLAUSE_GRAINSIZE:
12239 case OMP_CLAUSE_NUM_TASKS:
12240 case OMP_CLAUSE_HINT:
12241 case OMP_CLAUSE_TO_DECLARE:
12242 case OMP_CLAUSE_LINK:
12243 case OMP_CLAUSE_USE_DEVICE_PTR:
12244 case OMP_CLAUSE_USE_DEVICE_ADDR:
12245 case OMP_CLAUSE_IS_DEVICE_PTR:
12246 case OMP_CLAUSE_INCLUSIVE:
12247 case OMP_CLAUSE_EXCLUSIVE:
12248 case OMP_CLAUSE__LOOPTEMP_:
12249 case OMP_CLAUSE__REDUCTEMP_:
12250 case OMP_CLAUSE__CONDTEMP_:
12251 case OMP_CLAUSE__SCANTEMP_:
12252 case OMP_CLAUSE__SIMDUID_:
12253 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
12254 /* FALLTHRU */
12256 case OMP_CLAUSE_INDEPENDENT:
12257 case OMP_CLAUSE_NOWAIT:
12258 case OMP_CLAUSE_DEFAULT:
12259 case OMP_CLAUSE_UNTIED:
12260 case OMP_CLAUSE_MERGEABLE:
12261 case OMP_CLAUSE_PROC_BIND:
12262 case OMP_CLAUSE_DEVICE_TYPE:
12263 case OMP_CLAUSE_INBRANCH:
12264 case OMP_CLAUSE_NOTINBRANCH:
12265 case OMP_CLAUSE_FOR:
12266 case OMP_CLAUSE_PARALLEL:
12267 case OMP_CLAUSE_SECTIONS:
12268 case OMP_CLAUSE_TASKGROUP:
12269 case OMP_CLAUSE_NOGROUP:
12270 case OMP_CLAUSE_THREADS:
12271 case OMP_CLAUSE_SIMD:
12272 case OMP_CLAUSE_DEFAULTMAP:
12273 case OMP_CLAUSE_ORDER:
12274 case OMP_CLAUSE_BIND:
12275 case OMP_CLAUSE_AUTO:
12276 case OMP_CLAUSE_SEQ:
12277 case OMP_CLAUSE_TILE:
12278 case OMP_CLAUSE__SIMT_:
12279 case OMP_CLAUSE_IF_PRESENT:
12280 case OMP_CLAUSE_FINALIZE:
12281 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12283 case OMP_CLAUSE_LASTPRIVATE:
12284 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12285 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
12286 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12288 case OMP_CLAUSE_COLLAPSE:
12290 int i;
12291 for (i = 0; i < 3; i++)
12292 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12293 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12296 case OMP_CLAUSE_LINEAR:
12297 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12298 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
12299 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
12300 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12302 case OMP_CLAUSE_ALIGNED:
12303 case OMP_CLAUSE_ALLOCATE:
12304 case OMP_CLAUSE_FROM:
12305 case OMP_CLAUSE_TO:
12306 case OMP_CLAUSE_MAP:
12307 case OMP_CLAUSE__CACHE_:
12308 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12309 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12310 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12312 case OMP_CLAUSE_REDUCTION:
12313 case OMP_CLAUSE_TASK_REDUCTION:
12314 case OMP_CLAUSE_IN_REDUCTION:
12316 int i;
12317 for (i = 0; i < 5; i++)
12318 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12319 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12322 default:
12323 gcc_unreachable ();
12325 break;
12327 case TARGET_EXPR:
12329 int i, len;
12331 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
12332 But, we only want to walk once. */
12333 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
12334 for (i = 0; i < len; ++i)
12335 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12336 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
12339 case DECL_EXPR:
12340 /* If this is a TYPE_DECL, walk into the fields of the type that it's
12341 defining. We only want to walk into these fields of a type in this
12342 case and not in the general case of a mere reference to the type.
12344 The criterion is as follows: if the field can be an expression, it
12345 must be walked only here. This should be in keeping with the fields
12346 that are directly gimplified in gimplify_type_sizes in order for the
12347 mark/copy-if-shared/unmark machinery of the gimplifier to work with
12348 variable-sized types.
12350 Note that DECLs get walked as part of processing the BIND_EXPR. */
12351 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
12353 /* Call the function for the decl so e.g. copy_tree_body_r can
12354 replace it with the remapped one. */
12355 result = (*func) (&DECL_EXPR_DECL (*tp), &walk_subtrees, data);
12356 if (result || !walk_subtrees)
12357 return result;
12359 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
12360 if (TREE_CODE (*type_p) == ERROR_MARK)
12361 return NULL_TREE;
12363 /* Call the function for the type. See if it returns anything or
12364 doesn't want us to continue. If we are to continue, walk both
12365 the normal fields and those for the declaration case. */
12366 result = (*func) (type_p, &walk_subtrees, data);
12367 if (result || !walk_subtrees)
12368 return result;
12370 /* But do not walk a pointed-to type since it may itself need to
12371 be walked in the declaration case if it isn't anonymous. */
12372 if (!POINTER_TYPE_P (*type_p))
12374 result = walk_type_fields (*type_p, func, data, pset, lh);
12375 if (result)
12376 return result;
12379 /* If this is a record type, also walk the fields. */
12380 if (RECORD_OR_UNION_TYPE_P (*type_p))
12382 tree field;
12384 for (field = TYPE_FIELDS (*type_p); field;
12385 field = DECL_CHAIN (field))
12387 /* We'd like to look at the type of the field, but we can
12388 easily get infinite recursion. So assume it's pointed
12389 to elsewhere in the tree. Also, ignore things that
12390 aren't fields. */
12391 if (TREE_CODE (field) != FIELD_DECL)
12392 continue;
12394 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
12395 WALK_SUBTREE (DECL_SIZE (field));
12396 WALK_SUBTREE (DECL_SIZE_UNIT (field));
12397 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
12398 WALK_SUBTREE (DECL_QUALIFIER (field));
12402 /* Same for scalar types. */
12403 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
12404 || TREE_CODE (*type_p) == ENUMERAL_TYPE
12405 || TREE_CODE (*type_p) == INTEGER_TYPE
12406 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
12407 || TREE_CODE (*type_p) == REAL_TYPE)
12409 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
12410 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
12413 WALK_SUBTREE (TYPE_SIZE (*type_p));
12414 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
12416 /* FALLTHRU */
12418 default:
12419 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
12421 int i, len;
12423 /* Walk over all the sub-trees of this operand. */
12424 len = TREE_OPERAND_LENGTH (*tp);
12426 /* Go through the subtrees. We need to do this in forward order so
12427 that the scope of a FOR_EXPR is handled properly. */
12428 if (len)
12430 for (i = 0; i < len - 1; ++i)
12431 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12432 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
12435 /* If this is a type, walk the needed fields in the type. */
12436 else if (TYPE_P (*tp))
12437 return walk_type_fields (*tp, func, data, pset, lh);
12438 break;
12441 /* We didn't find what we were looking for. */
12442 return NULL_TREE;
12444 #undef WALK_SUBTREE_TAIL
12446 #undef WALK_SUBTREE
12448 /* Like walk_tree, but does not walk duplicate nodes more than once. */
12450 tree
12451 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
12452 walk_tree_lh lh)
12454 tree result;
12456 hash_set<tree> pset;
12457 result = walk_tree_1 (tp, func, data, &pset, lh);
12458 return result;
12462 tree
12463 tree_block (tree t)
12465 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12467 if (IS_EXPR_CODE_CLASS (c))
12468 return LOCATION_BLOCK (t->exp.locus);
12469 gcc_unreachable ();
12470 return NULL;
12473 void
12474 tree_set_block (tree t, tree b)
12476 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12478 if (IS_EXPR_CODE_CLASS (c))
12480 t->exp.locus = set_block (t->exp.locus, b);
12482 else
12483 gcc_unreachable ();
12486 /* Create a nameless artificial label and put it in the current
12487 function context. The label has a location of LOC. Returns the
12488 newly created label. */
12490 tree
12491 create_artificial_label (location_t loc)
12493 tree lab = build_decl (loc,
12494 LABEL_DECL, NULL_TREE, void_type_node);
12496 DECL_ARTIFICIAL (lab) = 1;
12497 DECL_IGNORED_P (lab) = 1;
12498 DECL_CONTEXT (lab) = current_function_decl;
12499 return lab;
12502 /* Given a tree, try to return a useful variable name that we can use
12503 to prefix a temporary that is being assigned the value of the tree.
12504 I.E. given <temp> = &A, return A. */
12506 const char *
12507 get_name (tree t)
12509 tree stripped_decl;
12511 stripped_decl = t;
12512 STRIP_NOPS (stripped_decl);
12513 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
12514 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
12515 else if (TREE_CODE (stripped_decl) == SSA_NAME)
12517 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
12518 if (!name)
12519 return NULL;
12520 return IDENTIFIER_POINTER (name);
12522 else
12524 switch (TREE_CODE (stripped_decl))
12526 case ADDR_EXPR:
12527 return get_name (TREE_OPERAND (stripped_decl, 0));
12528 default:
12529 return NULL;
12534 /* Return true if TYPE has a variable argument list. */
12536 bool
12537 stdarg_p (const_tree fntype)
12539 function_args_iterator args_iter;
12540 tree n = NULL_TREE, t;
12542 if (!fntype)
12543 return false;
12545 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
12547 n = t;
12550 return n != NULL_TREE && n != void_type_node;
12553 /* Return true if TYPE has a prototype. */
12555 bool
12556 prototype_p (const_tree fntype)
12558 tree t;
12560 gcc_assert (fntype != NULL_TREE);
12562 t = TYPE_ARG_TYPES (fntype);
12563 return (t != NULL_TREE);
12566 /* If BLOCK is inlined from an __attribute__((__artificial__))
12567 routine, return pointer to location from where it has been
12568 called. */
12569 location_t *
12570 block_nonartificial_location (tree block)
12572 location_t *ret = NULL;
12574 while (block && TREE_CODE (block) == BLOCK
12575 && BLOCK_ABSTRACT_ORIGIN (block))
12577 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12578 if (TREE_CODE (ao) == FUNCTION_DECL)
12580 /* If AO is an artificial inline, point RET to the
12581 call site locus at which it has been inlined and continue
12582 the loop, in case AO's caller is also an artificial
12583 inline. */
12584 if (DECL_DECLARED_INLINE_P (ao)
12585 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12586 ret = &BLOCK_SOURCE_LOCATION (block);
12587 else
12588 break;
12590 else if (TREE_CODE (ao) != BLOCK)
12591 break;
12593 block = BLOCK_SUPERCONTEXT (block);
12595 return ret;
12599 /* If EXP is inlined from an __attribute__((__artificial__))
12600 function, return the location of the original call expression. */
12602 location_t
12603 tree_nonartificial_location (tree exp)
12605 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12607 if (loc)
12608 return *loc;
12609 else
12610 return EXPR_LOCATION (exp);
12614 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
12615 nodes. */
12617 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12619 hashval_t
12620 cl_option_hasher::hash (tree x)
12622 const_tree const t = x;
12623 const char *p;
12624 size_t i;
12625 size_t len = 0;
12626 hashval_t hash = 0;
12628 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12630 p = (const char *)TREE_OPTIMIZATION (t);
12631 len = sizeof (struct cl_optimization);
12634 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12635 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12637 else
12638 gcc_unreachable ();
12640 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12641 something else. */
12642 for (i = 0; i < len; i++)
12643 if (p[i])
12644 hash = (hash << 4) ^ ((i << 2) | p[i]);
12646 return hash;
12649 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12650 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12651 same. */
12653 bool
12654 cl_option_hasher::equal (tree x, tree y)
12656 const_tree const xt = x;
12657 const_tree const yt = y;
12659 if (TREE_CODE (xt) != TREE_CODE (yt))
12660 return 0;
12662 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12663 return cl_optimization_option_eq (TREE_OPTIMIZATION (xt),
12664 TREE_OPTIMIZATION (yt));
12665 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12666 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12667 TREE_TARGET_OPTION (yt));
12668 else
12669 gcc_unreachable ();
12672 /* Build an OPTIMIZATION_NODE based on the options in OPTS and OPTS_SET. */
12674 tree
12675 build_optimization_node (struct gcc_options *opts,
12676 struct gcc_options *opts_set)
12678 tree t;
12680 /* Use the cache of optimization nodes. */
12682 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12683 opts, opts_set);
12685 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12686 t = *slot;
12687 if (!t)
12689 /* Insert this one into the hash table. */
12690 t = cl_optimization_node;
12691 *slot = t;
12693 /* Make a new node for next time round. */
12694 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12697 return t;
12700 /* Build a TARGET_OPTION_NODE based on the options in OPTS and OPTS_SET. */
12702 tree
12703 build_target_option_node (struct gcc_options *opts,
12704 struct gcc_options *opts_set)
12706 tree t;
12708 /* Use the cache of optimization nodes. */
12710 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12711 opts, opts_set);
12713 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12714 t = *slot;
12715 if (!t)
12717 /* Insert this one into the hash table. */
12718 t = cl_target_option_node;
12719 *slot = t;
12721 /* Make a new node for next time round. */
12722 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12725 return t;
12728 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12729 so that they aren't saved during PCH writing. */
12731 void
12732 prepare_target_option_nodes_for_pch (void)
12734 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12735 for (; iter != cl_option_hash_table->end (); ++iter)
12736 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12737 TREE_TARGET_GLOBALS (*iter) = NULL;
12740 /* Determine the "ultimate origin" of a block. */
12742 tree
12743 block_ultimate_origin (const_tree block)
12745 tree origin = BLOCK_ABSTRACT_ORIGIN (block);
12747 if (origin == NULL_TREE)
12748 return NULL_TREE;
12749 else
12751 gcc_checking_assert ((DECL_P (origin)
12752 && DECL_ORIGIN (origin) == origin)
12753 || BLOCK_ORIGIN (origin) == origin);
12754 return origin;
12758 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12759 no instruction. */
12761 bool
12762 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12764 /* Do not strip casts into or out of differing address spaces. */
12765 if (POINTER_TYPE_P (outer_type)
12766 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12768 if (!POINTER_TYPE_P (inner_type)
12769 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12770 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12771 return false;
12773 else if (POINTER_TYPE_P (inner_type)
12774 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12776 /* We already know that outer_type is not a pointer with
12777 a non-generic address space. */
12778 return false;
12781 /* Use precision rather then machine mode when we can, which gives
12782 the correct answer even for submode (bit-field) types. */
12783 if ((INTEGRAL_TYPE_P (outer_type)
12784 || POINTER_TYPE_P (outer_type)
12785 || TREE_CODE (outer_type) == OFFSET_TYPE)
12786 && (INTEGRAL_TYPE_P (inner_type)
12787 || POINTER_TYPE_P (inner_type)
12788 || TREE_CODE (inner_type) == OFFSET_TYPE))
12789 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12791 /* Otherwise fall back on comparing machine modes (e.g. for
12792 aggregate types, floats). */
12793 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12796 /* Return true iff conversion in EXP generates no instruction. Mark
12797 it inline so that we fully inline into the stripping functions even
12798 though we have two uses of this function. */
12800 static inline bool
12801 tree_nop_conversion (const_tree exp)
12803 tree outer_type, inner_type;
12805 if (location_wrapper_p (exp))
12806 return true;
12807 if (!CONVERT_EXPR_P (exp)
12808 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12809 return false;
12811 outer_type = TREE_TYPE (exp);
12812 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12813 if (!inner_type || inner_type == error_mark_node)
12814 return false;
12816 return tree_nop_conversion_p (outer_type, inner_type);
12819 /* Return true iff conversion in EXP generates no instruction. Don't
12820 consider conversions changing the signedness. */
12822 static bool
12823 tree_sign_nop_conversion (const_tree exp)
12825 tree outer_type, inner_type;
12827 if (!tree_nop_conversion (exp))
12828 return false;
12830 outer_type = TREE_TYPE (exp);
12831 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12833 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12834 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12837 /* Strip conversions from EXP according to tree_nop_conversion and
12838 return the resulting expression. */
12840 tree
12841 tree_strip_nop_conversions (tree exp)
12843 while (tree_nop_conversion (exp))
12844 exp = TREE_OPERAND (exp, 0);
12845 return exp;
12848 /* Strip conversions from EXP according to tree_sign_nop_conversion
12849 and return the resulting expression. */
12851 tree
12852 tree_strip_sign_nop_conversions (tree exp)
12854 while (tree_sign_nop_conversion (exp))
12855 exp = TREE_OPERAND (exp, 0);
12856 return exp;
12859 /* Avoid any floating point extensions from EXP. */
12860 tree
12861 strip_float_extensions (tree exp)
12863 tree sub, expt, subt;
12865 /* For floating point constant look up the narrowest type that can hold
12866 it properly and handle it like (type)(narrowest_type)constant.
12867 This way we can optimize for instance a=a*2.0 where "a" is float
12868 but 2.0 is double constant. */
12869 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12871 REAL_VALUE_TYPE orig;
12872 tree type = NULL;
12874 orig = TREE_REAL_CST (exp);
12875 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12876 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12877 type = float_type_node;
12878 else if (TYPE_PRECISION (TREE_TYPE (exp))
12879 > TYPE_PRECISION (double_type_node)
12880 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12881 type = double_type_node;
12882 if (type)
12883 return build_real_truncate (type, orig);
12886 if (!CONVERT_EXPR_P (exp))
12887 return exp;
12889 sub = TREE_OPERAND (exp, 0);
12890 subt = TREE_TYPE (sub);
12891 expt = TREE_TYPE (exp);
12893 if (!FLOAT_TYPE_P (subt))
12894 return exp;
12896 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12897 return exp;
12899 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12900 return exp;
12902 return strip_float_extensions (sub);
12905 /* Strip out all handled components that produce invariant
12906 offsets. */
12908 const_tree
12909 strip_invariant_refs (const_tree op)
12911 while (handled_component_p (op))
12913 switch (TREE_CODE (op))
12915 case ARRAY_REF:
12916 case ARRAY_RANGE_REF:
12917 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12918 || TREE_OPERAND (op, 2) != NULL_TREE
12919 || TREE_OPERAND (op, 3) != NULL_TREE)
12920 return NULL;
12921 break;
12923 case COMPONENT_REF:
12924 if (TREE_OPERAND (op, 2) != NULL_TREE)
12925 return NULL;
12926 break;
12928 default:;
12930 op = TREE_OPERAND (op, 0);
12933 return op;
12936 static GTY(()) tree gcc_eh_personality_decl;
12938 /* Return the GCC personality function decl. */
12940 tree
12941 lhd_gcc_personality (void)
12943 if (!gcc_eh_personality_decl)
12944 gcc_eh_personality_decl = build_personality_function ("gcc");
12945 return gcc_eh_personality_decl;
12948 /* TARGET is a call target of GIMPLE call statement
12949 (obtained by gimple_call_fn). Return true if it is
12950 OBJ_TYPE_REF representing an virtual call of C++ method.
12951 (As opposed to OBJ_TYPE_REF representing objc calls
12952 through a cast where middle-end devirtualization machinery
12953 can't apply.) FOR_DUMP_P is true when being called from
12954 the dump routines. */
12956 bool
12957 virtual_method_call_p (const_tree target, bool for_dump_p)
12959 if (TREE_CODE (target) != OBJ_TYPE_REF)
12960 return false;
12961 tree t = TREE_TYPE (target);
12962 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12963 t = TREE_TYPE (t);
12964 if (TREE_CODE (t) == FUNCTION_TYPE)
12965 return false;
12966 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12967 /* If we do not have BINFO associated, it means that type was built
12968 without devirtualization enabled. Do not consider this a virtual
12969 call. */
12970 if (!TYPE_BINFO (obj_type_ref_class (target, for_dump_p)))
12971 return false;
12972 return true;
12975 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12977 static tree
12978 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12980 unsigned int i;
12981 tree base_binfo, b;
12983 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12984 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12985 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12986 return base_binfo;
12987 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12988 return b;
12989 return NULL;
12992 /* Try to find a base info of BINFO that would have its field decl at offset
12993 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12994 found, return, otherwise return NULL_TREE. */
12996 tree
12997 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
12999 tree type = BINFO_TYPE (binfo);
13001 while (true)
13003 HOST_WIDE_INT pos, size;
13004 tree fld;
13005 int i;
13007 if (types_same_for_odr (type, expected_type))
13008 return binfo;
13009 if (maybe_lt (offset, 0))
13010 return NULL_TREE;
13012 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
13014 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
13015 continue;
13017 pos = int_bit_position (fld);
13018 size = tree_to_uhwi (DECL_SIZE (fld));
13019 if (known_in_range_p (offset, pos, size))
13020 break;
13022 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
13023 return NULL_TREE;
13025 /* Offset 0 indicates the primary base, whose vtable contents are
13026 represented in the binfo for the derived class. */
13027 else if (maybe_ne (offset, 0))
13029 tree found_binfo = NULL, base_binfo;
13030 /* Offsets in BINFO are in bytes relative to the whole structure
13031 while POS is in bits relative to the containing field. */
13032 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
13033 / BITS_PER_UNIT);
13035 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13036 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
13037 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
13039 found_binfo = base_binfo;
13040 break;
13042 if (found_binfo)
13043 binfo = found_binfo;
13044 else
13045 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
13046 binfo_offset);
13049 type = TREE_TYPE (fld);
13050 offset -= pos;
13054 /* Returns true if X is a typedef decl. */
13056 bool
13057 is_typedef_decl (const_tree x)
13059 return (x && TREE_CODE (x) == TYPE_DECL
13060 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
13063 /* Returns true iff TYPE is a type variant created for a typedef. */
13065 bool
13066 typedef_variant_p (const_tree type)
13068 return is_typedef_decl (TYPE_NAME (type));
13071 /* PR 84195: Replace control characters in "unescaped" with their
13072 escaped equivalents. Allow newlines if -fmessage-length has
13073 been set to a non-zero value. This is done here, rather than
13074 where the attribute is recorded as the message length can
13075 change between these two locations. */
13077 void
13078 escaped_string::escape (const char *unescaped)
13080 char *escaped;
13081 size_t i, new_i, len;
13083 if (m_owned)
13084 free (m_str);
13086 m_str = const_cast<char *> (unescaped);
13087 m_owned = false;
13089 if (unescaped == NULL || *unescaped == 0)
13090 return;
13092 len = strlen (unescaped);
13093 escaped = NULL;
13094 new_i = 0;
13096 for (i = 0; i < len; i++)
13098 char c = unescaped[i];
13100 if (!ISCNTRL (c))
13102 if (escaped)
13103 escaped[new_i++] = c;
13104 continue;
13107 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
13109 if (escaped == NULL)
13111 /* We only allocate space for a new string if we
13112 actually encounter a control character that
13113 needs replacing. */
13114 escaped = (char *) xmalloc (len * 2 + 1);
13115 strncpy (escaped, unescaped, i);
13116 new_i = i;
13119 escaped[new_i++] = '\\';
13121 switch (c)
13123 case '\a': escaped[new_i++] = 'a'; break;
13124 case '\b': escaped[new_i++] = 'b'; break;
13125 case '\f': escaped[new_i++] = 'f'; break;
13126 case '\n': escaped[new_i++] = 'n'; break;
13127 case '\r': escaped[new_i++] = 'r'; break;
13128 case '\t': escaped[new_i++] = 't'; break;
13129 case '\v': escaped[new_i++] = 'v'; break;
13130 default: escaped[new_i++] = '?'; break;
13133 else if (escaped)
13134 escaped[new_i++] = c;
13137 if (escaped)
13139 escaped[new_i] = 0;
13140 m_str = escaped;
13141 m_owned = true;
13145 /* Warn about a use of an identifier which was marked deprecated. Returns
13146 whether a warning was given. */
13148 bool
13149 warn_deprecated_use (tree node, tree attr)
13151 escaped_string msg;
13153 if (node == 0 || !warn_deprecated_decl)
13154 return false;
13156 if (!attr)
13158 if (DECL_P (node))
13159 attr = DECL_ATTRIBUTES (node);
13160 else if (TYPE_P (node))
13162 tree decl = TYPE_STUB_DECL (node);
13163 if (decl)
13164 attr = lookup_attribute ("deprecated",
13165 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
13169 if (attr)
13170 attr = lookup_attribute ("deprecated", attr);
13172 if (attr)
13173 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
13175 bool w = false;
13176 if (DECL_P (node))
13178 auto_diagnostic_group d;
13179 if (msg)
13180 w = warning (OPT_Wdeprecated_declarations,
13181 "%qD is deprecated: %s", node, (const char *) msg);
13182 else
13183 w = warning (OPT_Wdeprecated_declarations,
13184 "%qD is deprecated", node);
13185 if (w)
13186 inform (DECL_SOURCE_LOCATION (node), "declared here");
13188 else if (TYPE_P (node))
13190 tree what = NULL_TREE;
13191 tree decl = TYPE_STUB_DECL (node);
13193 if (TYPE_NAME (node))
13195 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
13196 what = TYPE_NAME (node);
13197 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
13198 && DECL_NAME (TYPE_NAME (node)))
13199 what = DECL_NAME (TYPE_NAME (node));
13202 auto_diagnostic_group d;
13203 if (what)
13205 if (msg)
13206 w = warning (OPT_Wdeprecated_declarations,
13207 "%qE is deprecated: %s", what, (const char *) msg);
13208 else
13209 w = warning (OPT_Wdeprecated_declarations,
13210 "%qE is deprecated", what);
13212 else
13214 if (msg)
13215 w = warning (OPT_Wdeprecated_declarations,
13216 "type is deprecated: %s", (const char *) msg);
13217 else
13218 w = warning (OPT_Wdeprecated_declarations,
13219 "type is deprecated");
13222 if (w && decl)
13223 inform (DECL_SOURCE_LOCATION (decl), "declared here");
13226 return w;
13229 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
13230 somewhere in it. */
13232 bool
13233 contains_bitfld_component_ref_p (const_tree ref)
13235 while (handled_component_p (ref))
13237 if (TREE_CODE (ref) == COMPONENT_REF
13238 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
13239 return true;
13240 ref = TREE_OPERAND (ref, 0);
13243 return false;
13246 /* Try to determine whether a TRY_CATCH expression can fall through.
13247 This is a subroutine of block_may_fallthru. */
13249 static bool
13250 try_catch_may_fallthru (const_tree stmt)
13252 tree_stmt_iterator i;
13254 /* If the TRY block can fall through, the whole TRY_CATCH can
13255 fall through. */
13256 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
13257 return true;
13259 i = tsi_start (TREE_OPERAND (stmt, 1));
13260 switch (TREE_CODE (tsi_stmt (i)))
13262 case CATCH_EXPR:
13263 /* We expect to see a sequence of CATCH_EXPR trees, each with a
13264 catch expression and a body. The whole TRY_CATCH may fall
13265 through iff any of the catch bodies falls through. */
13266 for (; !tsi_end_p (i); tsi_next (&i))
13268 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
13269 return true;
13271 return false;
13273 case EH_FILTER_EXPR:
13274 /* The exception filter expression only matters if there is an
13275 exception. If the exception does not match EH_FILTER_TYPES,
13276 we will execute EH_FILTER_FAILURE, and we will fall through
13277 if that falls through. If the exception does match
13278 EH_FILTER_TYPES, the stack unwinder will continue up the
13279 stack, so we will not fall through. We don't know whether we
13280 will throw an exception which matches EH_FILTER_TYPES or not,
13281 so we just ignore EH_FILTER_TYPES and assume that we might
13282 throw an exception which doesn't match. */
13283 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
13285 default:
13286 /* This case represents statements to be executed when an
13287 exception occurs. Those statements are implicitly followed
13288 by a RESX statement to resume execution after the exception.
13289 So in this case the TRY_CATCH never falls through. */
13290 return false;
13294 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
13295 need not be 100% accurate; simply be conservative and return true if we
13296 don't know. This is used only to avoid stupidly generating extra code.
13297 If we're wrong, we'll just delete the extra code later. */
13299 bool
13300 block_may_fallthru (const_tree block)
13302 /* This CONST_CAST is okay because expr_last returns its argument
13303 unmodified and we assign it to a const_tree. */
13304 const_tree stmt = expr_last (CONST_CAST_TREE (block));
13306 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
13308 case GOTO_EXPR:
13309 case RETURN_EXPR:
13310 /* Easy cases. If the last statement of the block implies
13311 control transfer, then we can't fall through. */
13312 return false;
13314 case SWITCH_EXPR:
13315 /* If there is a default: label or case labels cover all possible
13316 SWITCH_COND values, then the SWITCH_EXPR will transfer control
13317 to some case label in all cases and all we care is whether the
13318 SWITCH_BODY falls through. */
13319 if (SWITCH_ALL_CASES_P (stmt))
13320 return block_may_fallthru (SWITCH_BODY (stmt));
13321 return true;
13323 case COND_EXPR:
13324 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
13325 return true;
13326 return block_may_fallthru (COND_EXPR_ELSE (stmt));
13328 case BIND_EXPR:
13329 return block_may_fallthru (BIND_EXPR_BODY (stmt));
13331 case TRY_CATCH_EXPR:
13332 return try_catch_may_fallthru (stmt);
13334 case TRY_FINALLY_EXPR:
13335 /* The finally clause is always executed after the try clause,
13336 so if it does not fall through, then the try-finally will not
13337 fall through. Otherwise, if the try clause does not fall
13338 through, then when the finally clause falls through it will
13339 resume execution wherever the try clause was going. So the
13340 whole try-finally will only fall through if both the try
13341 clause and the finally clause fall through. */
13342 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
13343 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
13345 case EH_ELSE_EXPR:
13346 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13348 case MODIFY_EXPR:
13349 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
13350 stmt = TREE_OPERAND (stmt, 1);
13351 else
13352 return true;
13353 /* FALLTHRU */
13355 case CALL_EXPR:
13356 /* Functions that do not return do not fall through. */
13357 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
13359 case CLEANUP_POINT_EXPR:
13360 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13362 case TARGET_EXPR:
13363 return block_may_fallthru (TREE_OPERAND (stmt, 1));
13365 case ERROR_MARK:
13366 return true;
13368 default:
13369 return lang_hooks.block_may_fallthru (stmt);
13373 /* True if we are using EH to handle cleanups. */
13374 static bool using_eh_for_cleanups_flag = false;
13376 /* This routine is called from front ends to indicate eh should be used for
13377 cleanups. */
13378 void
13379 using_eh_for_cleanups (void)
13381 using_eh_for_cleanups_flag = true;
13384 /* Query whether EH is used for cleanups. */
13385 bool
13386 using_eh_for_cleanups_p (void)
13388 return using_eh_for_cleanups_flag;
13391 /* Wrapper for tree_code_name to ensure that tree code is valid */
13392 const char *
13393 get_tree_code_name (enum tree_code code)
13395 const char *invalid = "<invalid tree code>";
13397 /* The tree_code enum promotes to signed, but we could be getting
13398 invalid values, so force an unsigned comparison. */
13399 if (unsigned (code) >= MAX_TREE_CODES)
13401 if (code == 0xa5a5)
13402 return "ggc_freed";
13403 return invalid;
13406 return tree_code_name[code];
13409 /* Drops the TREE_OVERFLOW flag from T. */
13411 tree
13412 drop_tree_overflow (tree t)
13414 gcc_checking_assert (TREE_OVERFLOW (t));
13416 /* For tree codes with a sharing machinery re-build the result. */
13417 if (poly_int_tree_p (t))
13418 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
13420 /* For VECTOR_CST, remove the overflow bits from the encoded elements
13421 and canonicalize the result. */
13422 if (TREE_CODE (t) == VECTOR_CST)
13424 tree_vector_builder builder;
13425 builder.new_unary_operation (TREE_TYPE (t), t, true);
13426 unsigned int count = builder.encoded_nelts ();
13427 for (unsigned int i = 0; i < count; ++i)
13429 tree elt = VECTOR_CST_ELT (t, i);
13430 if (TREE_OVERFLOW (elt))
13431 elt = drop_tree_overflow (elt);
13432 builder.quick_push (elt);
13434 return builder.build ();
13437 /* Otherwise, as all tcc_constants are possibly shared, copy the node
13438 and drop the flag. */
13439 t = copy_node (t);
13440 TREE_OVERFLOW (t) = 0;
13442 /* For constants that contain nested constants, drop the flag
13443 from those as well. */
13444 if (TREE_CODE (t) == COMPLEX_CST)
13446 if (TREE_OVERFLOW (TREE_REALPART (t)))
13447 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
13448 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
13449 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
13452 return t;
13455 /* Given a memory reference expression T, return its base address.
13456 The base address of a memory reference expression is the main
13457 object being referenced. For instance, the base address for
13458 'array[i].fld[j]' is 'array'. You can think of this as stripping
13459 away the offset part from a memory address.
13461 This function calls handled_component_p to strip away all the inner
13462 parts of the memory reference until it reaches the base object. */
13464 tree
13465 get_base_address (tree t)
13467 while (handled_component_p (t))
13468 t = TREE_OPERAND (t, 0);
13470 if ((TREE_CODE (t) == MEM_REF
13471 || TREE_CODE (t) == TARGET_MEM_REF)
13472 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
13473 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
13475 /* ??? Either the alias oracle or all callers need to properly deal
13476 with WITH_SIZE_EXPRs before we can look through those. */
13477 if (TREE_CODE (t) == WITH_SIZE_EXPR)
13478 return NULL_TREE;
13480 return t;
13483 /* Return a tree of sizetype representing the size, in bytes, of the element
13484 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13486 tree
13487 array_ref_element_size (tree exp)
13489 tree aligned_size = TREE_OPERAND (exp, 3);
13490 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
13491 location_t loc = EXPR_LOCATION (exp);
13493 /* If a size was specified in the ARRAY_REF, it's the size measured
13494 in alignment units of the element type. So multiply by that value. */
13495 if (aligned_size)
13497 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13498 sizetype from another type of the same width and signedness. */
13499 if (TREE_TYPE (aligned_size) != sizetype)
13500 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
13501 return size_binop_loc (loc, MULT_EXPR, aligned_size,
13502 size_int (TYPE_ALIGN_UNIT (elmt_type)));
13505 /* Otherwise, take the size from that of the element type. Substitute
13506 any PLACEHOLDER_EXPR that we have. */
13507 else
13508 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
13511 /* Return a tree representing the lower bound of the array mentioned in
13512 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13514 tree
13515 array_ref_low_bound (tree exp)
13517 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13519 /* If a lower bound is specified in EXP, use it. */
13520 if (TREE_OPERAND (exp, 2))
13521 return TREE_OPERAND (exp, 2);
13523 /* Otherwise, if there is a domain type and it has a lower bound, use it,
13524 substituting for a PLACEHOLDER_EXPR as needed. */
13525 if (domain_type && TYPE_MIN_VALUE (domain_type))
13526 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
13528 /* Otherwise, return a zero of the appropriate type. */
13529 tree idxtype = TREE_TYPE (TREE_OPERAND (exp, 1));
13530 return (idxtype == error_mark_node
13531 ? integer_zero_node : build_int_cst (idxtype, 0));
13534 /* Return a tree representing the upper bound of the array mentioned in
13535 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13537 tree
13538 array_ref_up_bound (tree exp)
13540 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13542 /* If there is a domain type and it has an upper bound, use it, substituting
13543 for a PLACEHOLDER_EXPR as needed. */
13544 if (domain_type && TYPE_MAX_VALUE (domain_type))
13545 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
13547 /* Otherwise fail. */
13548 return NULL_TREE;
13551 /* Returns true if REF is an array reference, component reference,
13552 or memory reference to an array at the end of a structure.
13553 If this is the case, the array may be allocated larger
13554 than its upper bound implies. */
13556 bool
13557 array_at_struct_end_p (tree ref)
13559 tree atype;
13561 if (TREE_CODE (ref) == ARRAY_REF
13562 || TREE_CODE (ref) == ARRAY_RANGE_REF)
13564 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
13565 ref = TREE_OPERAND (ref, 0);
13567 else if (TREE_CODE (ref) == COMPONENT_REF
13568 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
13569 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
13570 else if (TREE_CODE (ref) == MEM_REF)
13572 tree arg = TREE_OPERAND (ref, 0);
13573 if (TREE_CODE (arg) == ADDR_EXPR)
13574 arg = TREE_OPERAND (arg, 0);
13575 tree argtype = TREE_TYPE (arg);
13576 if (TREE_CODE (argtype) == RECORD_TYPE)
13578 if (tree fld = last_field (argtype))
13580 atype = TREE_TYPE (fld);
13581 if (TREE_CODE (atype) != ARRAY_TYPE)
13582 return false;
13583 if (VAR_P (arg) && DECL_SIZE (fld))
13584 return false;
13586 else
13587 return false;
13589 else
13590 return false;
13592 else
13593 return false;
13595 if (TREE_CODE (ref) == STRING_CST)
13596 return false;
13598 tree ref_to_array = ref;
13599 while (handled_component_p (ref))
13601 /* If the reference chain contains a component reference to a
13602 non-union type and there follows another field the reference
13603 is not at the end of a structure. */
13604 if (TREE_CODE (ref) == COMPONENT_REF)
13606 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
13608 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
13609 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
13610 nextf = DECL_CHAIN (nextf);
13611 if (nextf)
13612 return false;
13615 /* If we have a multi-dimensional array we do not consider
13616 a non-innermost dimension as flex array if the whole
13617 multi-dimensional array is at struct end.
13618 Same for an array of aggregates with a trailing array
13619 member. */
13620 else if (TREE_CODE (ref) == ARRAY_REF)
13621 return false;
13622 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
13624 /* If we view an underlying object as sth else then what we
13625 gathered up to now is what we have to rely on. */
13626 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
13627 break;
13628 else
13629 gcc_unreachable ();
13631 ref = TREE_OPERAND (ref, 0);
13634 /* The array now is at struct end. Treat flexible arrays as
13635 always subject to extend, even into just padding constrained by
13636 an underlying decl. */
13637 if (! TYPE_SIZE (atype)
13638 || ! TYPE_DOMAIN (atype)
13639 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13640 return true;
13642 if (TREE_CODE (ref) == MEM_REF
13643 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13644 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13646 /* If the reference is based on a declared entity, the size of the array
13647 is constrained by its given domain. (Do not trust commons PR/69368). */
13648 if (DECL_P (ref)
13649 && !(flag_unconstrained_commons
13650 && VAR_P (ref) && DECL_COMMON (ref))
13651 && DECL_SIZE_UNIT (ref)
13652 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13654 /* Check whether the array domain covers all of the available
13655 padding. */
13656 poly_int64 offset;
13657 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13658 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13659 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13660 return true;
13661 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13662 return true;
13664 /* If at least one extra element fits it is a flexarray. */
13665 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13666 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13667 + 2)
13668 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13669 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13670 return true;
13672 return false;
13675 return true;
13678 /* Return a tree representing the offset, in bytes, of the field referenced
13679 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13681 tree
13682 component_ref_field_offset (tree exp)
13684 tree aligned_offset = TREE_OPERAND (exp, 2);
13685 tree field = TREE_OPERAND (exp, 1);
13686 location_t loc = EXPR_LOCATION (exp);
13688 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13689 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13690 value. */
13691 if (aligned_offset)
13693 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13694 sizetype from another type of the same width and signedness. */
13695 if (TREE_TYPE (aligned_offset) != sizetype)
13696 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13697 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13698 size_int (DECL_OFFSET_ALIGN (field)
13699 / BITS_PER_UNIT));
13702 /* Otherwise, take the offset from that of the field. Substitute
13703 any PLACEHOLDER_EXPR that we have. */
13704 else
13705 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13708 /* Given the initializer INIT, return the initializer for the field
13709 DECL if it exists, otherwise null. Used to obtain the initializer
13710 for a flexible array member and determine its size. */
13712 static tree
13713 get_initializer_for (tree init, tree decl)
13715 STRIP_NOPS (init);
13717 tree fld, fld_init;
13718 unsigned HOST_WIDE_INT i;
13719 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), i, fld, fld_init)
13721 if (decl == fld)
13722 return fld_init;
13724 if (TREE_CODE (fld) == CONSTRUCTOR)
13726 fld_init = get_initializer_for (fld_init, decl);
13727 if (fld_init)
13728 return fld_init;
13732 return NULL_TREE;
13735 /* Determines the size of the member referenced by the COMPONENT_REF
13736 REF, using its initializer expression if necessary in order to
13737 determine the size of an initialized flexible array member.
13738 If non-null, set *ARK when REF refers to an interior zero-length
13739 array or a trailing one-element array.
13740 Returns the size as sizetype (which might be zero for an object
13741 with an uninitialized flexible array member) or null if the size
13742 cannot be determined. */
13744 tree
13745 component_ref_size (tree ref, special_array_member *sam /* = NULL */)
13747 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
13749 special_array_member sambuf;
13750 if (!sam)
13751 sam = &sambuf;
13752 *sam = special_array_member::none;
13754 /* The object/argument referenced by the COMPONENT_REF and its type. */
13755 tree arg = TREE_OPERAND (ref, 0);
13756 tree argtype = TREE_TYPE (arg);
13757 /* The referenced member. */
13758 tree member = TREE_OPERAND (ref, 1);
13760 tree memsize = DECL_SIZE_UNIT (member);
13761 if (memsize)
13763 tree memtype = TREE_TYPE (member);
13764 if (TREE_CODE (memtype) != ARRAY_TYPE)
13765 /* DECL_SIZE may be less than TYPE_SIZE in C++ when referring
13766 to the type of a class with a virtual base which doesn't
13767 reflect the size of the virtual's members (see pr97595).
13768 If that's the case fail for now and implement something
13769 more robust in the future. */
13770 return (tree_int_cst_equal (memsize, TYPE_SIZE_UNIT (memtype))
13771 ? memsize : NULL_TREE);
13773 bool trailing = array_at_struct_end_p (ref);
13774 bool zero_length = integer_zerop (memsize);
13775 if (!trailing && !zero_length)
13776 /* MEMBER is either an interior array or is an array with
13777 more than one element. */
13778 return memsize;
13780 if (zero_length)
13782 if (trailing)
13783 *sam = special_array_member::trail_0;
13784 else
13786 *sam = special_array_member::int_0;
13787 memsize = NULL_TREE;
13791 if (!zero_length)
13792 if (tree dom = TYPE_DOMAIN (memtype))
13793 if (tree min = TYPE_MIN_VALUE (dom))
13794 if (tree max = TYPE_MAX_VALUE (dom))
13795 if (TREE_CODE (min) == INTEGER_CST
13796 && TREE_CODE (max) == INTEGER_CST)
13798 offset_int minidx = wi::to_offset (min);
13799 offset_int maxidx = wi::to_offset (max);
13800 offset_int neltsm1 = maxidx - minidx;
13801 if (neltsm1 > 0)
13802 /* MEMBER is an array with more than one element. */
13803 return memsize;
13805 if (neltsm1 == 0)
13806 *sam = special_array_member::trail_1;
13809 /* For a refernce to a zero- or one-element array member of a union
13810 use the size of the union instead of the size of the member. */
13811 if (TREE_CODE (argtype) == UNION_TYPE)
13812 memsize = TYPE_SIZE_UNIT (argtype);
13815 /* MEMBER is either a bona fide flexible array member, or a zero-length
13816 array member, or an array of length one treated as such. */
13818 /* If the reference is to a declared object and the member a true
13819 flexible array, try to determine its size from its initializer. */
13820 poly_int64 baseoff = 0;
13821 tree base = get_addr_base_and_unit_offset (ref, &baseoff);
13822 if (!base || !VAR_P (base))
13824 if (*sam != special_array_member::int_0)
13825 return NULL_TREE;
13827 if (TREE_CODE (arg) != COMPONENT_REF)
13828 return NULL_TREE;
13830 base = arg;
13831 while (TREE_CODE (base) == COMPONENT_REF)
13832 base = TREE_OPERAND (base, 0);
13833 baseoff = tree_to_poly_int64 (byte_position (TREE_OPERAND (ref, 1)));
13836 /* BASE is the declared object of which MEMBER is either a member
13837 or that is cast to ARGTYPE (e.g., a char buffer used to store
13838 an ARGTYPE object). */
13839 tree basetype = TREE_TYPE (base);
13841 /* Determine the base type of the referenced object. If it's
13842 the same as ARGTYPE and MEMBER has a known size, return it. */
13843 tree bt = basetype;
13844 if (*sam != special_array_member::int_0)
13845 while (TREE_CODE (bt) == ARRAY_TYPE)
13846 bt = TREE_TYPE (bt);
13847 bool typematch = useless_type_conversion_p (argtype, bt);
13848 if (memsize && typematch)
13849 return memsize;
13851 memsize = NULL_TREE;
13853 if (typematch)
13854 /* MEMBER is a true flexible array member. Compute its size from
13855 the initializer of the BASE object if it has one. */
13856 if (tree init = DECL_P (base) ? DECL_INITIAL (base) : NULL_TREE)
13857 if (init != error_mark_node)
13859 init = get_initializer_for (init, member);
13860 if (init)
13862 memsize = TYPE_SIZE_UNIT (TREE_TYPE (init));
13863 if (tree refsize = TYPE_SIZE_UNIT (argtype))
13865 /* Use the larger of the initializer size and the tail
13866 padding in the enclosing struct. */
13867 poly_int64 rsz = tree_to_poly_int64 (refsize);
13868 rsz -= baseoff;
13869 if (known_lt (tree_to_poly_int64 (memsize), rsz))
13870 memsize = wide_int_to_tree (TREE_TYPE (memsize), rsz);
13873 baseoff = 0;
13877 if (!memsize)
13879 if (typematch)
13881 if (DECL_P (base)
13882 && DECL_EXTERNAL (base)
13883 && bt == basetype
13884 && *sam != special_array_member::int_0)
13885 /* The size of a flexible array member of an extern struct
13886 with no initializer cannot be determined (it's defined
13887 in another translation unit and can have an initializer
13888 with an arbitrary number of elements). */
13889 return NULL_TREE;
13891 /* Use the size of the base struct or, for interior zero-length
13892 arrays, the size of the enclosing type. */
13893 memsize = TYPE_SIZE_UNIT (bt);
13895 else if (DECL_P (base))
13896 /* Use the size of the BASE object (possibly an array of some
13897 other type such as char used to store the struct). */
13898 memsize = DECL_SIZE_UNIT (base);
13899 else
13900 return NULL_TREE;
13903 /* If the flexible array member has a known size use the greater
13904 of it and the tail padding in the enclosing struct.
13905 Otherwise, when the size of the flexible array member is unknown
13906 and the referenced object is not a struct, use the size of its
13907 type when known. This detects sizes of array buffers when cast
13908 to struct types with flexible array members. */
13909 if (memsize)
13911 poly_int64 memsz64 = memsize ? tree_to_poly_int64 (memsize) : 0;
13912 if (known_lt (baseoff, memsz64))
13914 memsz64 -= baseoff;
13915 return wide_int_to_tree (TREE_TYPE (memsize), memsz64);
13917 return size_zero_node;
13920 /* Return "don't know" for an external non-array object since its
13921 flexible array member can be initialized to have any number of
13922 elements. Otherwise, return zero because the flexible array
13923 member has no elements. */
13924 return (DECL_P (base)
13925 && DECL_EXTERNAL (base)
13926 && (!typematch
13927 || TREE_CODE (basetype) != ARRAY_TYPE)
13928 ? NULL_TREE : size_zero_node);
13931 /* Return the machine mode of T. For vectors, returns the mode of the
13932 inner type. The main use case is to feed the result to HONOR_NANS,
13933 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13935 machine_mode
13936 element_mode (const_tree t)
13938 if (!TYPE_P (t))
13939 t = TREE_TYPE (t);
13940 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13941 t = TREE_TYPE (t);
13942 return TYPE_MODE (t);
13945 /* Vector types need to re-check the target flags each time we report
13946 the machine mode. We need to do this because attribute target can
13947 change the result of vector_mode_supported_p and have_regs_of_mode
13948 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
13949 change on a per-function basis. */
13950 /* ??? Possibly a better solution is to run through all the types
13951 referenced by a function and re-compute the TYPE_MODE once, rather
13952 than make the TYPE_MODE macro call a function. */
13954 machine_mode
13955 vector_type_mode (const_tree t)
13957 machine_mode mode;
13959 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
13961 mode = t->type_common.mode;
13962 if (VECTOR_MODE_P (mode)
13963 && (!targetm.vector_mode_supported_p (mode)
13964 || !have_regs_of_mode[mode]))
13966 scalar_int_mode innermode;
13968 /* For integers, try mapping it to a same-sized scalar mode. */
13969 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
13971 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
13972 * GET_MODE_BITSIZE (innermode));
13973 scalar_int_mode mode;
13974 if (int_mode_for_size (size, 0).exists (&mode)
13975 && have_regs_of_mode[mode])
13976 return mode;
13979 return BLKmode;
13982 return mode;
13985 /* Return the size in bits of each element of vector type TYPE. */
13987 unsigned int
13988 vector_element_bits (const_tree type)
13990 gcc_checking_assert (VECTOR_TYPE_P (type));
13991 if (VECTOR_BOOLEAN_TYPE_P (type))
13992 return vector_element_size (tree_to_poly_uint64 (TYPE_SIZE (type)),
13993 TYPE_VECTOR_SUBPARTS (type));
13994 return tree_to_uhwi (TYPE_SIZE (TREE_TYPE (type)));
13997 /* Calculate the size in bits of each element of vector type TYPE
13998 and return the result as a tree of type bitsizetype. */
14000 tree
14001 vector_element_bits_tree (const_tree type)
14003 gcc_checking_assert (VECTOR_TYPE_P (type));
14004 if (VECTOR_BOOLEAN_TYPE_P (type))
14005 return bitsize_int (vector_element_bits (type));
14006 return TYPE_SIZE (TREE_TYPE (type));
14009 /* Verify that basic properties of T match TV and thus T can be a variant of
14010 TV. TV should be the more specified variant (i.e. the main variant). */
14012 static bool
14013 verify_type_variant (const_tree t, tree tv)
14015 /* Type variant can differ by:
14017 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
14018 ENCODE_QUAL_ADDR_SPACE.
14019 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
14020 in this case some values may not be set in the variant types
14021 (see TYPE_COMPLETE_P checks).
14022 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
14023 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
14024 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
14025 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
14026 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
14027 this is necessary to make it possible to merge types form different TUs
14028 - arrays, pointers and references may have TREE_TYPE that is a variant
14029 of TREE_TYPE of their main variants.
14030 - aggregates may have new TYPE_FIELDS list that list variants of
14031 the main variant TYPE_FIELDS.
14032 - vector types may differ by TYPE_VECTOR_OPAQUE
14035 /* Convenience macro for matching individual fields. */
14036 #define verify_variant_match(flag) \
14037 do { \
14038 if (flag (tv) != flag (t)) \
14040 error ("type variant differs by %s", #flag); \
14041 debug_tree (tv); \
14042 return false; \
14044 } while (false)
14046 /* tree_base checks. */
14048 verify_variant_match (TREE_CODE);
14049 /* FIXME: Ada builds non-artificial variants of artificial types. */
14050 if (TYPE_ARTIFICIAL (tv) && 0)
14051 verify_variant_match (TYPE_ARTIFICIAL);
14052 if (POINTER_TYPE_P (tv))
14053 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
14054 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
14055 verify_variant_match (TYPE_UNSIGNED);
14056 verify_variant_match (TYPE_PACKED);
14057 if (TREE_CODE (t) == REFERENCE_TYPE)
14058 verify_variant_match (TYPE_REF_IS_RVALUE);
14059 if (AGGREGATE_TYPE_P (t))
14060 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
14061 else
14062 verify_variant_match (TYPE_SATURATING);
14063 /* FIXME: This check trigger during libstdc++ build. */
14064 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
14065 verify_variant_match (TYPE_FINAL_P);
14067 /* tree_type_common checks. */
14069 if (COMPLETE_TYPE_P (t))
14071 verify_variant_match (TYPE_MODE);
14072 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
14073 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
14074 verify_variant_match (TYPE_SIZE);
14075 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
14076 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
14077 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
14079 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
14080 TYPE_SIZE_UNIT (tv), 0));
14081 error ("type variant has different %<TYPE_SIZE_UNIT%>");
14082 debug_tree (tv);
14083 error ("type variant%'s %<TYPE_SIZE_UNIT%>");
14084 debug_tree (TYPE_SIZE_UNIT (tv));
14085 error ("type%'s %<TYPE_SIZE_UNIT%>");
14086 debug_tree (TYPE_SIZE_UNIT (t));
14087 return false;
14089 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
14091 verify_variant_match (TYPE_PRECISION);
14092 if (RECORD_OR_UNION_TYPE_P (t))
14093 verify_variant_match (TYPE_TRANSPARENT_AGGR);
14094 else if (TREE_CODE (t) == ARRAY_TYPE)
14095 verify_variant_match (TYPE_NONALIASED_COMPONENT);
14096 /* During LTO we merge variant lists from diferent translation units
14097 that may differ BY TYPE_CONTEXT that in turn may point
14098 to TRANSLATION_UNIT_DECL.
14099 Ada also builds variants of types with different TYPE_CONTEXT. */
14100 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
14101 verify_variant_match (TYPE_CONTEXT);
14102 if (TREE_CODE (t) == ARRAY_TYPE || TREE_CODE (t) == INTEGER_TYPE)
14103 verify_variant_match (TYPE_STRING_FLAG);
14104 if (TREE_CODE (t) == RECORD_TYPE || TREE_CODE (t) == UNION_TYPE)
14105 verify_variant_match (TYPE_CXX_ODR_P);
14106 if (TYPE_ALIAS_SET_KNOWN_P (t))
14108 error ("type variant with %<TYPE_ALIAS_SET_KNOWN_P%>");
14109 debug_tree (tv);
14110 return false;
14113 /* tree_type_non_common checks. */
14115 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14116 and dangle the pointer from time to time. */
14117 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
14118 && (in_lto_p || !TYPE_VFIELD (tv)
14119 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
14121 error ("type variant has different %<TYPE_VFIELD%>");
14122 debug_tree (tv);
14123 return false;
14125 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
14126 || TREE_CODE (t) == INTEGER_TYPE
14127 || TREE_CODE (t) == BOOLEAN_TYPE
14128 || TREE_CODE (t) == REAL_TYPE
14129 || TREE_CODE (t) == FIXED_POINT_TYPE)
14131 verify_variant_match (TYPE_MAX_VALUE);
14132 verify_variant_match (TYPE_MIN_VALUE);
14134 if (TREE_CODE (t) == METHOD_TYPE)
14135 verify_variant_match (TYPE_METHOD_BASETYPE);
14136 if (TREE_CODE (t) == OFFSET_TYPE)
14137 verify_variant_match (TYPE_OFFSET_BASETYPE);
14138 if (TREE_CODE (t) == ARRAY_TYPE)
14139 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
14140 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
14141 or even type's main variant. This is needed to make bootstrap pass
14142 and the bug seems new in GCC 5.
14143 C++ FE should be updated to make this consistent and we should check
14144 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
14145 is a match with main variant.
14147 Also disable the check for Java for now because of parser hack that builds
14148 first an dummy BINFO and then sometimes replace it by real BINFO in some
14149 of the copies. */
14150 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
14151 && TYPE_BINFO (t) != TYPE_BINFO (tv)
14152 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
14153 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
14154 at LTO time only. */
14155 && (in_lto_p && odr_type_p (t)))
14157 error ("type variant has different %<TYPE_BINFO%>");
14158 debug_tree (tv);
14159 error ("type variant%'s %<TYPE_BINFO%>");
14160 debug_tree (TYPE_BINFO (tv));
14161 error ("type%'s %<TYPE_BINFO%>");
14162 debug_tree (TYPE_BINFO (t));
14163 return false;
14166 /* Check various uses of TYPE_VALUES_RAW. */
14167 if (TREE_CODE (t) == ENUMERAL_TYPE
14168 && TYPE_VALUES (t))
14169 verify_variant_match (TYPE_VALUES);
14170 else if (TREE_CODE (t) == ARRAY_TYPE)
14171 verify_variant_match (TYPE_DOMAIN);
14172 /* Permit incomplete variants of complete type. While FEs may complete
14173 all variants, this does not happen for C++ templates in all cases. */
14174 else if (RECORD_OR_UNION_TYPE_P (t)
14175 && COMPLETE_TYPE_P (t)
14176 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
14178 tree f1, f2;
14180 /* Fortran builds qualified variants as new records with items of
14181 qualified type. Verify that they looks same. */
14182 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
14183 f1 && f2;
14184 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14185 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
14186 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
14187 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
14188 /* FIXME: gfc_nonrestricted_type builds all types as variants
14189 with exception of pointer types. It deeply copies the type
14190 which means that we may end up with a variant type
14191 referring non-variant pointer. We may change it to
14192 produce types as variants, too, like
14193 objc_get_protocol_qualified_type does. */
14194 && !POINTER_TYPE_P (TREE_TYPE (f1)))
14195 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
14196 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
14197 break;
14198 if (f1 || f2)
14200 error ("type variant has different %<TYPE_FIELDS%>");
14201 debug_tree (tv);
14202 error ("first mismatch is field");
14203 debug_tree (f1);
14204 error ("and field");
14205 debug_tree (f2);
14206 return false;
14209 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
14210 verify_variant_match (TYPE_ARG_TYPES);
14211 /* For C++ the qualified variant of array type is really an array type
14212 of qualified TREE_TYPE.
14213 objc builds variants of pointer where pointer to type is a variant, too
14214 in objc_get_protocol_qualified_type. */
14215 if (TREE_TYPE (t) != TREE_TYPE (tv)
14216 && ((TREE_CODE (t) != ARRAY_TYPE
14217 && !POINTER_TYPE_P (t))
14218 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
14219 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
14221 error ("type variant has different %<TREE_TYPE%>");
14222 debug_tree (tv);
14223 error ("type variant%'s %<TREE_TYPE%>");
14224 debug_tree (TREE_TYPE (tv));
14225 error ("type%'s %<TREE_TYPE%>");
14226 debug_tree (TREE_TYPE (t));
14227 return false;
14229 if (type_with_alias_set_p (t)
14230 && !gimple_canonical_types_compatible_p (t, tv, false))
14232 error ("type is not compatible with its variant");
14233 debug_tree (tv);
14234 error ("type variant%'s %<TREE_TYPE%>");
14235 debug_tree (TREE_TYPE (tv));
14236 error ("type%'s %<TREE_TYPE%>");
14237 debug_tree (TREE_TYPE (t));
14238 return false;
14240 return true;
14241 #undef verify_variant_match
14245 /* The TYPE_CANONICAL merging machinery. It should closely resemble
14246 the middle-end types_compatible_p function. It needs to avoid
14247 claiming types are different for types that should be treated
14248 the same with respect to TBAA. Canonical types are also used
14249 for IL consistency checks via the useless_type_conversion_p
14250 predicate which does not handle all type kinds itself but falls
14251 back to pointer-comparison of TYPE_CANONICAL for aggregates
14252 for example. */
14254 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
14255 type calculation because we need to allow inter-operability between signed
14256 and unsigned variants. */
14258 bool
14259 type_with_interoperable_signedness (const_tree type)
14261 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
14262 signed char and unsigned char. Similarly fortran FE builds
14263 C_SIZE_T as signed type, while C defines it unsigned. */
14265 return tree_code_for_canonical_type_merging (TREE_CODE (type))
14266 == INTEGER_TYPE
14267 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
14268 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
14271 /* Return true iff T1 and T2 are structurally identical for what
14272 TBAA is concerned.
14273 This function is used both by lto.c canonical type merging and by the
14274 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
14275 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
14276 only for LTO because only in these cases TYPE_CANONICAL equivalence
14277 correspond to one defined by gimple_canonical_types_compatible_p. */
14279 bool
14280 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
14281 bool trust_type_canonical)
14283 /* Type variants should be same as the main variant. When not doing sanity
14284 checking to verify this fact, go to main variants and save some work. */
14285 if (trust_type_canonical)
14287 t1 = TYPE_MAIN_VARIANT (t1);
14288 t2 = TYPE_MAIN_VARIANT (t2);
14291 /* Check first for the obvious case of pointer identity. */
14292 if (t1 == t2)
14293 return true;
14295 /* Check that we have two types to compare. */
14296 if (t1 == NULL_TREE || t2 == NULL_TREE)
14297 return false;
14299 /* We consider complete types always compatible with incomplete type.
14300 This does not make sense for canonical type calculation and thus we
14301 need to ensure that we are never called on it.
14303 FIXME: For more correctness the function probably should have three modes
14304 1) mode assuming that types are complete mathcing their structure
14305 2) mode allowing incomplete types but producing equivalence classes
14306 and thus ignoring all info from complete types
14307 3) mode allowing incomplete types to match complete but checking
14308 compatibility between complete types.
14310 1 and 2 can be used for canonical type calculation. 3 is the real
14311 definition of type compatibility that can be used i.e. for warnings during
14312 declaration merging. */
14314 gcc_assert (!trust_type_canonical
14315 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
14317 /* If the types have been previously registered and found equal
14318 they still are. */
14320 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
14321 && trust_type_canonical)
14323 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
14324 they are always NULL, but they are set to non-NULL for types
14325 constructed by build_pointer_type and variants. In this case the
14326 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
14327 all pointers are considered equal. Be sure to not return false
14328 negatives. */
14329 gcc_checking_assert (canonical_type_used_p (t1)
14330 && canonical_type_used_p (t2));
14331 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
14334 /* For types where we do ODR based TBAA the canonical type is always
14335 set correctly, so we know that types are different if their
14336 canonical types does not match. */
14337 if (trust_type_canonical
14338 && (odr_type_p (t1) && odr_based_tbaa_p (t1))
14339 != (odr_type_p (t2) && odr_based_tbaa_p (t2)))
14340 return false;
14342 /* Can't be the same type if the types don't have the same code. */
14343 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
14344 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
14345 return false;
14347 /* Qualifiers do not matter for canonical type comparison purposes. */
14349 /* Void types and nullptr types are always the same. */
14350 if (TREE_CODE (t1) == VOID_TYPE
14351 || TREE_CODE (t1) == NULLPTR_TYPE)
14352 return true;
14354 /* Can't be the same type if they have different mode. */
14355 if (TYPE_MODE (t1) != TYPE_MODE (t2))
14356 return false;
14358 /* Non-aggregate types can be handled cheaply. */
14359 if (INTEGRAL_TYPE_P (t1)
14360 || SCALAR_FLOAT_TYPE_P (t1)
14361 || FIXED_POINT_TYPE_P (t1)
14362 || TREE_CODE (t1) == VECTOR_TYPE
14363 || TREE_CODE (t1) == COMPLEX_TYPE
14364 || TREE_CODE (t1) == OFFSET_TYPE
14365 || POINTER_TYPE_P (t1))
14367 /* Can't be the same type if they have different recision. */
14368 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
14369 return false;
14371 /* In some cases the signed and unsigned types are required to be
14372 inter-operable. */
14373 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
14374 && !type_with_interoperable_signedness (t1))
14375 return false;
14377 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
14378 interoperable with "signed char". Unless all frontends are revisited
14379 to agree on these types, we must ignore the flag completely. */
14381 /* Fortran standard define C_PTR type that is compatible with every
14382 C pointer. For this reason we need to glob all pointers into one.
14383 Still pointers in different address spaces are not compatible. */
14384 if (POINTER_TYPE_P (t1))
14386 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
14387 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
14388 return false;
14391 /* Tail-recurse to components. */
14392 if (TREE_CODE (t1) == VECTOR_TYPE
14393 || TREE_CODE (t1) == COMPLEX_TYPE)
14394 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
14395 TREE_TYPE (t2),
14396 trust_type_canonical);
14398 return true;
14401 /* Do type-specific comparisons. */
14402 switch (TREE_CODE (t1))
14404 case ARRAY_TYPE:
14405 /* Array types are the same if the element types are the same and
14406 the number of elements are the same. */
14407 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14408 trust_type_canonical)
14409 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
14410 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
14411 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
14412 return false;
14413 else
14415 tree i1 = TYPE_DOMAIN (t1);
14416 tree i2 = TYPE_DOMAIN (t2);
14418 /* For an incomplete external array, the type domain can be
14419 NULL_TREE. Check this condition also. */
14420 if (i1 == NULL_TREE && i2 == NULL_TREE)
14421 return true;
14422 else if (i1 == NULL_TREE || i2 == NULL_TREE)
14423 return false;
14424 else
14426 tree min1 = TYPE_MIN_VALUE (i1);
14427 tree min2 = TYPE_MIN_VALUE (i2);
14428 tree max1 = TYPE_MAX_VALUE (i1);
14429 tree max2 = TYPE_MAX_VALUE (i2);
14431 /* The minimum/maximum values have to be the same. */
14432 if ((min1 == min2
14433 || (min1 && min2
14434 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
14435 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
14436 || operand_equal_p (min1, min2, 0))))
14437 && (max1 == max2
14438 || (max1 && max2
14439 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
14440 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
14441 || operand_equal_p (max1, max2, 0)))))
14442 return true;
14443 else
14444 return false;
14448 case METHOD_TYPE:
14449 case FUNCTION_TYPE:
14450 /* Function types are the same if the return type and arguments types
14451 are the same. */
14452 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14453 trust_type_canonical))
14454 return false;
14456 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
14457 return true;
14458 else
14460 tree parms1, parms2;
14462 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
14463 parms1 && parms2;
14464 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
14466 if (!gimple_canonical_types_compatible_p
14467 (TREE_VALUE (parms1), TREE_VALUE (parms2),
14468 trust_type_canonical))
14469 return false;
14472 if (parms1 || parms2)
14473 return false;
14475 return true;
14478 case RECORD_TYPE:
14479 case UNION_TYPE:
14480 case QUAL_UNION_TYPE:
14482 tree f1, f2;
14484 /* Don't try to compare variants of an incomplete type, before
14485 TYPE_FIELDS has been copied around. */
14486 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
14487 return true;
14490 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
14491 return false;
14493 /* For aggregate types, all the fields must be the same. */
14494 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
14495 f1 || f2;
14496 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14498 /* Skip non-fields and zero-sized fields. */
14499 while (f1 && (TREE_CODE (f1) != FIELD_DECL
14500 || (DECL_SIZE (f1)
14501 && integer_zerop (DECL_SIZE (f1)))))
14502 f1 = TREE_CHAIN (f1);
14503 while (f2 && (TREE_CODE (f2) != FIELD_DECL
14504 || (DECL_SIZE (f2)
14505 && integer_zerop (DECL_SIZE (f2)))))
14506 f2 = TREE_CHAIN (f2);
14507 if (!f1 || !f2)
14508 break;
14509 /* The fields must have the same name, offset and type. */
14510 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
14511 || !gimple_compare_field_offset (f1, f2)
14512 || !gimple_canonical_types_compatible_p
14513 (TREE_TYPE (f1), TREE_TYPE (f2),
14514 trust_type_canonical))
14515 return false;
14518 /* If one aggregate has more fields than the other, they
14519 are not the same. */
14520 if (f1 || f2)
14521 return false;
14523 return true;
14526 default:
14527 /* Consider all types with language specific trees in them mutually
14528 compatible. This is executed only from verify_type and false
14529 positives can be tolerated. */
14530 gcc_assert (!in_lto_p);
14531 return true;
14535 /* Verify type T. */
14537 void
14538 verify_type (const_tree t)
14540 bool error_found = false;
14541 tree mv = TYPE_MAIN_VARIANT (t);
14542 if (!mv)
14544 error ("main variant is not defined");
14545 error_found = true;
14547 else if (mv != TYPE_MAIN_VARIANT (mv))
14549 error ("%<TYPE_MAIN_VARIANT%> has different %<TYPE_MAIN_VARIANT%>");
14550 debug_tree (mv);
14551 error_found = true;
14553 else if (t != mv && !verify_type_variant (t, mv))
14554 error_found = true;
14556 tree ct = TYPE_CANONICAL (t);
14557 if (!ct)
14559 else if (TYPE_CANONICAL (t) != ct)
14561 error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
14562 debug_tree (ct);
14563 error_found = true;
14565 /* Method and function types cannot be used to address memory and thus
14566 TYPE_CANONICAL really matters only for determining useless conversions.
14568 FIXME: C++ FE produce declarations of builtin functions that are not
14569 compatible with main variants. */
14570 else if (TREE_CODE (t) == FUNCTION_TYPE)
14572 else if (t != ct
14573 /* FIXME: gimple_canonical_types_compatible_p cannot compare types
14574 with variably sized arrays because their sizes possibly
14575 gimplified to different variables. */
14576 && !variably_modified_type_p (ct, NULL)
14577 && !gimple_canonical_types_compatible_p (t, ct, false)
14578 && COMPLETE_TYPE_P (t))
14580 error ("%<TYPE_CANONICAL%> is not compatible");
14581 debug_tree (ct);
14582 error_found = true;
14585 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
14586 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
14588 error ("%<TYPE_MODE%> of %<TYPE_CANONICAL%> is not compatible");
14589 debug_tree (ct);
14590 error_found = true;
14592 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
14594 error ("%<TYPE_CANONICAL%> of main variant is not main variant");
14595 debug_tree (ct);
14596 debug_tree (TYPE_MAIN_VARIANT (ct));
14597 error_found = true;
14601 /* Check various uses of TYPE_MIN_VALUE_RAW. */
14602 if (RECORD_OR_UNION_TYPE_P (t))
14604 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14605 and danagle the pointer from time to time. */
14606 if (TYPE_VFIELD (t)
14607 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
14608 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
14610 error ("%<TYPE_VFIELD%> is not %<FIELD_DECL%> nor %<TREE_LIST%>");
14611 debug_tree (TYPE_VFIELD (t));
14612 error_found = true;
14615 else if (TREE_CODE (t) == POINTER_TYPE)
14617 if (TYPE_NEXT_PTR_TO (t)
14618 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
14620 error ("%<TYPE_NEXT_PTR_TO%> is not %<POINTER_TYPE%>");
14621 debug_tree (TYPE_NEXT_PTR_TO (t));
14622 error_found = true;
14625 else if (TREE_CODE (t) == REFERENCE_TYPE)
14627 if (TYPE_NEXT_REF_TO (t)
14628 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
14630 error ("%<TYPE_NEXT_REF_TO%> is not %<REFERENCE_TYPE%>");
14631 debug_tree (TYPE_NEXT_REF_TO (t));
14632 error_found = true;
14635 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14636 || TREE_CODE (t) == FIXED_POINT_TYPE)
14638 /* FIXME: The following check should pass:
14639 useless_type_conversion_p (const_cast <tree> (t),
14640 TREE_TYPE (TYPE_MIN_VALUE (t))
14641 but does not for C sizetypes in LTO. */
14644 /* Check various uses of TYPE_MAXVAL_RAW. */
14645 if (RECORD_OR_UNION_TYPE_P (t))
14647 if (!TYPE_BINFO (t))
14649 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
14651 error ("%<TYPE_BINFO%> is not %<TREE_BINFO%>");
14652 debug_tree (TYPE_BINFO (t));
14653 error_found = true;
14655 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
14657 error ("%<TYPE_BINFO%> type is not %<TYPE_MAIN_VARIANT%>");
14658 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
14659 error_found = true;
14662 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14664 if (TYPE_METHOD_BASETYPE (t)
14665 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
14666 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
14668 error ("%<TYPE_METHOD_BASETYPE%> is not record nor union");
14669 debug_tree (TYPE_METHOD_BASETYPE (t));
14670 error_found = true;
14673 else if (TREE_CODE (t) == OFFSET_TYPE)
14675 if (TYPE_OFFSET_BASETYPE (t)
14676 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
14677 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
14679 error ("%<TYPE_OFFSET_BASETYPE%> is not record nor union");
14680 debug_tree (TYPE_OFFSET_BASETYPE (t));
14681 error_found = true;
14684 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14685 || TREE_CODE (t) == FIXED_POINT_TYPE)
14687 /* FIXME: The following check should pass:
14688 useless_type_conversion_p (const_cast <tree> (t),
14689 TREE_TYPE (TYPE_MAX_VALUE (t))
14690 but does not for C sizetypes in LTO. */
14692 else if (TREE_CODE (t) == ARRAY_TYPE)
14694 if (TYPE_ARRAY_MAX_SIZE (t)
14695 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
14697 error ("%<TYPE_ARRAY_MAX_SIZE%> not %<INTEGER_CST%>");
14698 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
14699 error_found = true;
14702 else if (TYPE_MAX_VALUE_RAW (t))
14704 error ("%<TYPE_MAX_VALUE_RAW%> non-NULL");
14705 debug_tree (TYPE_MAX_VALUE_RAW (t));
14706 error_found = true;
14709 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
14711 error ("%<TYPE_LANG_SLOT_1 (binfo)%> field is non-NULL");
14712 debug_tree (TYPE_LANG_SLOT_1 (t));
14713 error_found = true;
14716 /* Check various uses of TYPE_VALUES_RAW. */
14717 if (TREE_CODE (t) == ENUMERAL_TYPE)
14718 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
14720 tree value = TREE_VALUE (l);
14721 tree name = TREE_PURPOSE (l);
14723 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
14724 CONST_DECL of ENUMERAL TYPE. */
14725 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
14727 error ("enum value is not %<CONST_DECL%> or %<INTEGER_CST%>");
14728 debug_tree (value);
14729 debug_tree (name);
14730 error_found = true;
14732 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
14733 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
14735 error ("enum value type is not %<INTEGER_TYPE%> nor convertible "
14736 "to the enum");
14737 debug_tree (value);
14738 debug_tree (name);
14739 error_found = true;
14741 if (TREE_CODE (name) != IDENTIFIER_NODE)
14743 error ("enum value name is not %<IDENTIFIER_NODE%>");
14744 debug_tree (value);
14745 debug_tree (name);
14746 error_found = true;
14749 else if (TREE_CODE (t) == ARRAY_TYPE)
14751 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
14753 error ("array %<TYPE_DOMAIN%> is not integer type");
14754 debug_tree (TYPE_DOMAIN (t));
14755 error_found = true;
14758 else if (RECORD_OR_UNION_TYPE_P (t))
14760 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
14762 error ("%<TYPE_FIELDS%> defined in incomplete type");
14763 error_found = true;
14765 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
14767 /* TODO: verify properties of decls. */
14768 if (TREE_CODE (fld) == FIELD_DECL)
14770 else if (TREE_CODE (fld) == TYPE_DECL)
14772 else if (TREE_CODE (fld) == CONST_DECL)
14774 else if (VAR_P (fld))
14776 else if (TREE_CODE (fld) == TEMPLATE_DECL)
14778 else if (TREE_CODE (fld) == USING_DECL)
14780 else if (TREE_CODE (fld) == FUNCTION_DECL)
14782 else
14784 error ("wrong tree in %<TYPE_FIELDS%> list");
14785 debug_tree (fld);
14786 error_found = true;
14790 else if (TREE_CODE (t) == INTEGER_TYPE
14791 || TREE_CODE (t) == BOOLEAN_TYPE
14792 || TREE_CODE (t) == OFFSET_TYPE
14793 || TREE_CODE (t) == REFERENCE_TYPE
14794 || TREE_CODE (t) == NULLPTR_TYPE
14795 || TREE_CODE (t) == POINTER_TYPE)
14797 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
14799 error ("%<TYPE_CACHED_VALUES_P%> is %i while %<TYPE_CACHED_VALUES%> "
14800 "is %p",
14801 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
14802 error_found = true;
14804 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
14806 error ("%<TYPE_CACHED_VALUES%> is not %<TREE_VEC%>");
14807 debug_tree (TYPE_CACHED_VALUES (t));
14808 error_found = true;
14810 /* Verify just enough of cache to ensure that no one copied it to new type.
14811 All copying should go by copy_node that should clear it. */
14812 else if (TYPE_CACHED_VALUES_P (t))
14814 int i;
14815 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
14816 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
14817 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
14819 error ("wrong %<TYPE_CACHED_VALUES%> entry");
14820 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
14821 error_found = true;
14822 break;
14826 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14827 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
14829 /* C++ FE uses TREE_PURPOSE to store initial values. */
14830 if (TREE_PURPOSE (l) && in_lto_p)
14832 error ("%<TREE_PURPOSE%> is non-NULL in %<TYPE_ARG_TYPES%> list");
14833 debug_tree (l);
14834 error_found = true;
14836 if (!TYPE_P (TREE_VALUE (l)))
14838 error ("wrong entry in %<TYPE_ARG_TYPES%> list");
14839 debug_tree (l);
14840 error_found = true;
14843 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
14845 error ("%<TYPE_VALUES_RAW%> field is non-NULL");
14846 debug_tree (TYPE_VALUES_RAW (t));
14847 error_found = true;
14849 if (TREE_CODE (t) != INTEGER_TYPE
14850 && TREE_CODE (t) != BOOLEAN_TYPE
14851 && TREE_CODE (t) != OFFSET_TYPE
14852 && TREE_CODE (t) != REFERENCE_TYPE
14853 && TREE_CODE (t) != NULLPTR_TYPE
14854 && TREE_CODE (t) != POINTER_TYPE
14855 && TYPE_CACHED_VALUES_P (t))
14857 error ("%<TYPE_CACHED_VALUES_P%> is set while it should not be");
14858 error_found = true;
14861 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
14862 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
14863 of a type. */
14864 if (TREE_CODE (t) == METHOD_TYPE
14865 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
14867 error ("%<TYPE_METHOD_BASETYPE%> is not main variant");
14868 error_found = true;
14871 if (error_found)
14873 debug_tree (const_cast <tree> (t));
14874 internal_error ("%qs failed", __func__);
14879 /* Return 1 if ARG interpreted as signed in its precision is known to be
14880 always positive or 2 if ARG is known to be always negative, or 3 if
14881 ARG may be positive or negative. */
14884 get_range_pos_neg (tree arg)
14886 if (arg == error_mark_node)
14887 return 3;
14889 int prec = TYPE_PRECISION (TREE_TYPE (arg));
14890 int cnt = 0;
14891 if (TREE_CODE (arg) == INTEGER_CST)
14893 wide_int w = wi::sext (wi::to_wide (arg), prec);
14894 if (wi::neg_p (w))
14895 return 2;
14896 else
14897 return 1;
14899 while (CONVERT_EXPR_P (arg)
14900 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14901 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14903 arg = TREE_OPERAND (arg, 0);
14904 /* Narrower value zero extended into wider type
14905 will always result in positive values. */
14906 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14907 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14908 return 1;
14909 prec = TYPE_PRECISION (TREE_TYPE (arg));
14910 if (++cnt > 30)
14911 return 3;
14914 if (TREE_CODE (arg) != SSA_NAME)
14915 return 3;
14916 wide_int arg_min, arg_max;
14917 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14919 gimple *g = SSA_NAME_DEF_STMT (arg);
14920 if (is_gimple_assign (g)
14921 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14923 tree t = gimple_assign_rhs1 (g);
14924 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14925 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14927 if (TYPE_UNSIGNED (TREE_TYPE (t))
14928 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14929 return 1;
14930 prec = TYPE_PRECISION (TREE_TYPE (t));
14931 arg = t;
14932 if (++cnt > 30)
14933 return 3;
14934 continue;
14937 return 3;
14939 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14941 /* For unsigned values, the "positive" range comes
14942 below the "negative" range. */
14943 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14944 return 1;
14945 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14946 return 2;
14948 else
14950 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14951 return 1;
14952 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14953 return 2;
14955 return 3;
14961 /* Return true if ARG is marked with the nonnull attribute in the
14962 current function signature. */
14964 bool
14965 nonnull_arg_p (const_tree arg)
14967 tree t, attrs, fntype;
14968 unsigned HOST_WIDE_INT arg_num;
14970 gcc_assert (TREE_CODE (arg) == PARM_DECL
14971 && (POINTER_TYPE_P (TREE_TYPE (arg))
14972 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
14974 /* The static chain decl is always non null. */
14975 if (arg == cfun->static_chain_decl)
14976 return true;
14978 /* THIS argument of method is always non-NULL. */
14979 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
14980 && arg == DECL_ARGUMENTS (cfun->decl)
14981 && flag_delete_null_pointer_checks)
14982 return true;
14984 /* Values passed by reference are always non-NULL. */
14985 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
14986 && flag_delete_null_pointer_checks)
14987 return true;
14989 fntype = TREE_TYPE (cfun->decl);
14990 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
14992 attrs = lookup_attribute ("nonnull", attrs);
14994 /* If "nonnull" wasn't specified, we know nothing about the argument. */
14995 if (attrs == NULL_TREE)
14996 return false;
14998 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
14999 if (TREE_VALUE (attrs) == NULL_TREE)
15000 return true;
15002 /* Get the position number for ARG in the function signature. */
15003 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
15005 t = DECL_CHAIN (t), arg_num++)
15007 if (t == arg)
15008 break;
15011 gcc_assert (t == arg);
15013 /* Now see if ARG_NUM is mentioned in the nonnull list. */
15014 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
15016 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
15017 return true;
15021 return false;
15024 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
15025 information. */
15027 location_t
15028 set_block (location_t loc, tree block)
15030 location_t pure_loc = get_pure_location (loc);
15031 source_range src_range = get_range_from_loc (line_table, loc);
15032 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
15035 location_t
15036 set_source_range (tree expr, location_t start, location_t finish)
15038 source_range src_range;
15039 src_range.m_start = start;
15040 src_range.m_finish = finish;
15041 return set_source_range (expr, src_range);
15044 location_t
15045 set_source_range (tree expr, source_range src_range)
15047 if (!EXPR_P (expr))
15048 return UNKNOWN_LOCATION;
15050 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
15051 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
15052 pure_loc,
15053 src_range,
15054 NULL);
15055 SET_EXPR_LOCATION (expr, adhoc);
15056 return adhoc;
15059 /* Return EXPR, potentially wrapped with a node expression LOC,
15060 if !CAN_HAVE_LOCATION_P (expr).
15062 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
15063 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
15065 Wrapper nodes can be identified using location_wrapper_p. */
15067 tree
15068 maybe_wrap_with_location (tree expr, location_t loc)
15070 if (expr == NULL)
15071 return NULL;
15072 if (loc == UNKNOWN_LOCATION)
15073 return expr;
15074 if (CAN_HAVE_LOCATION_P (expr))
15075 return expr;
15076 /* We should only be adding wrappers for constants and for decls,
15077 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
15078 gcc_assert (CONSTANT_CLASS_P (expr)
15079 || DECL_P (expr)
15080 || EXCEPTIONAL_CLASS_P (expr));
15082 /* For now, don't add wrappers to exceptional tree nodes, to minimize
15083 any impact of the wrapper nodes. */
15084 if (EXCEPTIONAL_CLASS_P (expr))
15085 return expr;
15087 /* Compiler-generated temporary variables don't need a wrapper. */
15088 if (DECL_P (expr) && DECL_ARTIFICIAL (expr) && DECL_IGNORED_P (expr))
15089 return expr;
15091 /* If any auto_suppress_location_wrappers are active, don't create
15092 wrappers. */
15093 if (suppress_location_wrappers > 0)
15094 return expr;
15096 tree_code code
15097 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
15098 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
15099 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
15100 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
15101 /* Mark this node as being a wrapper. */
15102 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
15103 return wrapper;
15106 int suppress_location_wrappers;
15108 /* Return the name of combined function FN, for debugging purposes. */
15110 const char *
15111 combined_fn_name (combined_fn fn)
15113 if (builtin_fn_p (fn))
15115 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
15116 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
15118 else
15119 return internal_fn_name (as_internal_fn (fn));
15122 /* Return a bitmap with a bit set corresponding to each argument in
15123 a function call type FNTYPE declared with attribute nonnull,
15124 or null if none of the function's argument are nonnull. The caller
15125 must free the bitmap. */
15127 bitmap
15128 get_nonnull_args (const_tree fntype)
15130 if (fntype == NULL_TREE)
15131 return NULL;
15133 bitmap argmap = NULL;
15134 if (TREE_CODE (fntype) == METHOD_TYPE)
15136 /* The this pointer in C++ non-static member functions is
15137 implicitly nonnull whether or not it's declared as such. */
15138 argmap = BITMAP_ALLOC (NULL);
15139 bitmap_set_bit (argmap, 0);
15142 tree attrs = TYPE_ATTRIBUTES (fntype);
15143 if (!attrs)
15144 return argmap;
15146 /* A function declaration can specify multiple attribute nonnull,
15147 each with zero or more arguments. The loop below creates a bitmap
15148 representing a union of all the arguments. An empty (but non-null)
15149 bitmap means that all arguments have been declaraed nonnull. */
15150 for ( ; attrs; attrs = TREE_CHAIN (attrs))
15152 attrs = lookup_attribute ("nonnull", attrs);
15153 if (!attrs)
15154 break;
15156 if (!argmap)
15157 argmap = BITMAP_ALLOC (NULL);
15159 if (!TREE_VALUE (attrs))
15161 /* Clear the bitmap in case a previous attribute nonnull
15162 set it and this one overrides it for all arguments. */
15163 bitmap_clear (argmap);
15164 return argmap;
15167 /* Iterate over the indices of the format arguments declared nonnull
15168 and set a bit for each. */
15169 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
15171 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
15172 bitmap_set_bit (argmap, val);
15176 return argmap;
15179 /* Returns true if TYPE is a type where it and all of its subobjects
15180 (recursively) are of structure, union, or array type. */
15182 bool
15183 is_empty_type (const_tree type)
15185 if (RECORD_OR_UNION_TYPE_P (type))
15187 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
15188 if (TREE_CODE (field) == FIELD_DECL
15189 && !DECL_PADDING_P (field)
15190 && !is_empty_type (TREE_TYPE (field)))
15191 return false;
15192 return true;
15194 else if (TREE_CODE (type) == ARRAY_TYPE)
15195 return (integer_minus_onep (array_type_nelts (type))
15196 || TYPE_DOMAIN (type) == NULL_TREE
15197 || is_empty_type (TREE_TYPE (type)));
15198 return false;
15201 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
15202 that shouldn't be passed via stack. */
15204 bool
15205 default_is_empty_record (const_tree type)
15207 if (!abi_version_at_least (12))
15208 return false;
15210 if (type == error_mark_node)
15211 return false;
15213 if (TREE_ADDRESSABLE (type))
15214 return false;
15216 return is_empty_type (TYPE_MAIN_VARIANT (type));
15219 /* Determine whether TYPE is a structure with a flexible array member,
15220 or a union containing such a structure (possibly recursively). */
15222 bool
15223 flexible_array_type_p (const_tree type)
15225 tree x, last;
15226 switch (TREE_CODE (type))
15228 case RECORD_TYPE:
15229 last = NULL_TREE;
15230 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15231 if (TREE_CODE (x) == FIELD_DECL)
15232 last = x;
15233 if (last == NULL_TREE)
15234 return false;
15235 if (TREE_CODE (TREE_TYPE (last)) == ARRAY_TYPE
15236 && TYPE_SIZE (TREE_TYPE (last)) == NULL_TREE
15237 && TYPE_DOMAIN (TREE_TYPE (last)) != NULL_TREE
15238 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (last))) == NULL_TREE)
15239 return true;
15240 return false;
15241 case UNION_TYPE:
15242 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15244 if (TREE_CODE (x) == FIELD_DECL
15245 && flexible_array_type_p (TREE_TYPE (x)))
15246 return true;
15248 return false;
15249 default:
15250 return false;
15254 /* Like int_size_in_bytes, but handle empty records specially. */
15256 HOST_WIDE_INT
15257 arg_int_size_in_bytes (const_tree type)
15259 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
15262 /* Like size_in_bytes, but handle empty records specially. */
15264 tree
15265 arg_size_in_bytes (const_tree type)
15267 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
15270 /* Return true if an expression with CODE has to have the same result type as
15271 its first operand. */
15273 bool
15274 expr_type_first_operand_type_p (tree_code code)
15276 switch (code)
15278 case NEGATE_EXPR:
15279 case ABS_EXPR:
15280 case BIT_NOT_EXPR:
15281 case PAREN_EXPR:
15282 case CONJ_EXPR:
15284 case PLUS_EXPR:
15285 case MINUS_EXPR:
15286 case MULT_EXPR:
15287 case TRUNC_DIV_EXPR:
15288 case CEIL_DIV_EXPR:
15289 case FLOOR_DIV_EXPR:
15290 case ROUND_DIV_EXPR:
15291 case TRUNC_MOD_EXPR:
15292 case CEIL_MOD_EXPR:
15293 case FLOOR_MOD_EXPR:
15294 case ROUND_MOD_EXPR:
15295 case RDIV_EXPR:
15296 case EXACT_DIV_EXPR:
15297 case MIN_EXPR:
15298 case MAX_EXPR:
15299 case BIT_IOR_EXPR:
15300 case BIT_XOR_EXPR:
15301 case BIT_AND_EXPR:
15303 case LSHIFT_EXPR:
15304 case RSHIFT_EXPR:
15305 case LROTATE_EXPR:
15306 case RROTATE_EXPR:
15307 return true;
15309 default:
15310 return false;
15314 /* Return a typenode for the "standard" C type with a given name. */
15315 tree
15316 get_typenode_from_name (const char *name)
15318 if (name == NULL || *name == '\0')
15319 return NULL_TREE;
15321 if (strcmp (name, "char") == 0)
15322 return char_type_node;
15323 if (strcmp (name, "unsigned char") == 0)
15324 return unsigned_char_type_node;
15325 if (strcmp (name, "signed char") == 0)
15326 return signed_char_type_node;
15328 if (strcmp (name, "short int") == 0)
15329 return short_integer_type_node;
15330 if (strcmp (name, "short unsigned int") == 0)
15331 return short_unsigned_type_node;
15333 if (strcmp (name, "int") == 0)
15334 return integer_type_node;
15335 if (strcmp (name, "unsigned int") == 0)
15336 return unsigned_type_node;
15338 if (strcmp (name, "long int") == 0)
15339 return long_integer_type_node;
15340 if (strcmp (name, "long unsigned int") == 0)
15341 return long_unsigned_type_node;
15343 if (strcmp (name, "long long int") == 0)
15344 return long_long_integer_type_node;
15345 if (strcmp (name, "long long unsigned int") == 0)
15346 return long_long_unsigned_type_node;
15348 gcc_unreachable ();
15351 /* List of pointer types used to declare builtins before we have seen their
15352 real declaration.
15354 Keep the size up to date in tree.h ! */
15355 const builtin_structptr_type builtin_structptr_types[6] =
15357 { fileptr_type_node, ptr_type_node, "FILE" },
15358 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
15359 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
15360 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
15361 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
15362 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
15365 /* Return the maximum object size. */
15367 tree
15368 max_object_size (void)
15370 /* To do: Make this a configurable parameter. */
15371 return TYPE_MAX_VALUE (ptrdiff_type_node);
15374 /* A wrapper around TARGET_VERIFY_TYPE_CONTEXT that makes the silent_p
15375 parameter default to false and that weeds out error_mark_node. */
15377 bool
15378 verify_type_context (location_t loc, type_context_kind context,
15379 const_tree type, bool silent_p)
15381 if (type == error_mark_node)
15382 return true;
15384 gcc_assert (TYPE_P (type));
15385 return (!targetm.verify_type_context
15386 || targetm.verify_type_context (loc, context, type, silent_p));
15389 #if CHECKING_P
15391 namespace selftest {
15393 /* Selftests for tree. */
15395 /* Verify that integer constants are sane. */
15397 static void
15398 test_integer_constants ()
15400 ASSERT_TRUE (integer_type_node != NULL);
15401 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
15403 tree type = integer_type_node;
15405 tree zero = build_zero_cst (type);
15406 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
15407 ASSERT_EQ (type, TREE_TYPE (zero));
15409 tree one = build_int_cst (type, 1);
15410 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
15411 ASSERT_EQ (type, TREE_TYPE (zero));
15414 /* Verify identifiers. */
15416 static void
15417 test_identifiers ()
15419 tree identifier = get_identifier ("foo");
15420 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
15421 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
15424 /* Verify LABEL_DECL. */
15426 static void
15427 test_labels ()
15429 tree identifier = get_identifier ("err");
15430 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
15431 identifier, void_type_node);
15432 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
15433 ASSERT_FALSE (FORCED_LABEL (label_decl));
15436 /* Return a new VECTOR_CST node whose type is TYPE and whose values
15437 are given by VALS. */
15439 static tree
15440 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
15442 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
15443 tree_vector_builder builder (type, vals.length (), 1);
15444 builder.splice (vals);
15445 return builder.build ();
15448 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
15450 static void
15451 check_vector_cst (vec<tree> expected, tree actual)
15453 ASSERT_KNOWN_EQ (expected.length (),
15454 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
15455 for (unsigned int i = 0; i < expected.length (); ++i)
15456 ASSERT_EQ (wi::to_wide (expected[i]),
15457 wi::to_wide (vector_cst_elt (actual, i)));
15460 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
15461 and that its elements match EXPECTED. */
15463 static void
15464 check_vector_cst_duplicate (vec<tree> expected, tree actual,
15465 unsigned int npatterns)
15467 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15468 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
15469 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
15470 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
15471 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15472 check_vector_cst (expected, actual);
15475 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
15476 and NPATTERNS background elements, and that its elements match
15477 EXPECTED. */
15479 static void
15480 check_vector_cst_fill (vec<tree> expected, tree actual,
15481 unsigned int npatterns)
15483 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15484 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
15485 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
15486 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15487 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15488 check_vector_cst (expected, actual);
15491 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
15492 and that its elements match EXPECTED. */
15494 static void
15495 check_vector_cst_stepped (vec<tree> expected, tree actual,
15496 unsigned int npatterns)
15498 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15499 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
15500 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
15501 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15502 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
15503 check_vector_cst (expected, actual);
15506 /* Test the creation of VECTOR_CSTs. */
15508 static void
15509 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
15511 auto_vec<tree, 8> elements (8);
15512 elements.quick_grow (8);
15513 tree element_type = build_nonstandard_integer_type (16, true);
15514 tree vector_type = build_vector_type (element_type, 8);
15516 /* Test a simple linear series with a base of 0 and a step of 1:
15517 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
15518 for (unsigned int i = 0; i < 8; ++i)
15519 elements[i] = build_int_cst (element_type, i);
15520 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
15521 check_vector_cst_stepped (elements, vector, 1);
15523 /* Try the same with the first element replaced by 100:
15524 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
15525 elements[0] = build_int_cst (element_type, 100);
15526 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15527 check_vector_cst_stepped (elements, vector, 1);
15529 /* Try a series that wraps around.
15530 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
15531 for (unsigned int i = 1; i < 8; ++i)
15532 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
15533 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15534 check_vector_cst_stepped (elements, vector, 1);
15536 /* Try a downward series:
15537 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
15538 for (unsigned int i = 1; i < 8; ++i)
15539 elements[i] = build_int_cst (element_type, 80 - i);
15540 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15541 check_vector_cst_stepped (elements, vector, 1);
15543 /* Try two interleaved series with different bases and steps:
15544 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
15545 elements[1] = build_int_cst (element_type, 53);
15546 for (unsigned int i = 2; i < 8; i += 2)
15548 elements[i] = build_int_cst (element_type, 70 - i * 2);
15549 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
15551 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15552 check_vector_cst_stepped (elements, vector, 2);
15554 /* Try a duplicated value:
15555 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
15556 for (unsigned int i = 1; i < 8; ++i)
15557 elements[i] = elements[0];
15558 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15559 check_vector_cst_duplicate (elements, vector, 1);
15561 /* Try an interleaved duplicated value:
15562 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
15563 elements[1] = build_int_cst (element_type, 55);
15564 for (unsigned int i = 2; i < 8; ++i)
15565 elements[i] = elements[i - 2];
15566 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15567 check_vector_cst_duplicate (elements, vector, 2);
15569 /* Try a duplicated value with 2 exceptions
15570 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
15571 elements[0] = build_int_cst (element_type, 41);
15572 elements[1] = build_int_cst (element_type, 97);
15573 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15574 check_vector_cst_fill (elements, vector, 2);
15576 /* Try with and without a step
15577 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
15578 for (unsigned int i = 3; i < 8; i += 2)
15579 elements[i] = build_int_cst (element_type, i * 7);
15580 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15581 check_vector_cst_stepped (elements, vector, 2);
15583 /* Try a fully-general constant:
15584 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
15585 elements[5] = build_int_cst (element_type, 9990);
15586 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15587 check_vector_cst_fill (elements, vector, 4);
15590 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
15591 Helper function for test_location_wrappers, to deal with STRIP_NOPS
15592 modifying its argument in-place. */
15594 static void
15595 check_strip_nops (tree node, tree expected)
15597 STRIP_NOPS (node);
15598 ASSERT_EQ (expected, node);
15601 /* Verify location wrappers. */
15603 static void
15604 test_location_wrappers ()
15606 location_t loc = BUILTINS_LOCATION;
15608 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
15610 /* Wrapping a constant. */
15611 tree int_cst = build_int_cst (integer_type_node, 42);
15612 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
15613 ASSERT_FALSE (location_wrapper_p (int_cst));
15615 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
15616 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
15617 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
15618 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
15620 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
15621 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
15623 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
15624 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
15625 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
15626 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
15628 /* Wrapping a STRING_CST. */
15629 tree string_cst = build_string (4, "foo");
15630 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
15631 ASSERT_FALSE (location_wrapper_p (string_cst));
15633 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
15634 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
15635 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
15636 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
15637 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
15640 /* Wrapping a variable. */
15641 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
15642 get_identifier ("some_int_var"),
15643 integer_type_node);
15644 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
15645 ASSERT_FALSE (location_wrapper_p (int_var));
15647 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
15648 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
15649 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
15650 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
15652 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
15653 wrapper. */
15654 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
15655 ASSERT_FALSE (location_wrapper_p (r_cast));
15656 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
15658 /* Verify that STRIP_NOPS removes wrappers. */
15659 check_strip_nops (wrapped_int_cst, int_cst);
15660 check_strip_nops (wrapped_string_cst, string_cst);
15661 check_strip_nops (wrapped_int_var, int_var);
15664 /* Test various tree predicates. Verify that location wrappers don't
15665 affect the results. */
15667 static void
15668 test_predicates ()
15670 /* Build various constants and wrappers around them. */
15672 location_t loc = BUILTINS_LOCATION;
15674 tree i_0 = build_int_cst (integer_type_node, 0);
15675 tree wr_i_0 = maybe_wrap_with_location (i_0, loc);
15677 tree i_1 = build_int_cst (integer_type_node, 1);
15678 tree wr_i_1 = maybe_wrap_with_location (i_1, loc);
15680 tree i_m1 = build_int_cst (integer_type_node, -1);
15681 tree wr_i_m1 = maybe_wrap_with_location (i_m1, loc);
15683 tree f_0 = build_real_from_int_cst (float_type_node, i_0);
15684 tree wr_f_0 = maybe_wrap_with_location (f_0, loc);
15685 tree f_1 = build_real_from_int_cst (float_type_node, i_1);
15686 tree wr_f_1 = maybe_wrap_with_location (f_1, loc);
15687 tree f_m1 = build_real_from_int_cst (float_type_node, i_m1);
15688 tree wr_f_m1 = maybe_wrap_with_location (f_m1, loc);
15690 tree c_i_0 = build_complex (NULL_TREE, i_0, i_0);
15691 tree c_i_1 = build_complex (NULL_TREE, i_1, i_0);
15692 tree c_i_m1 = build_complex (NULL_TREE, i_m1, i_0);
15694 tree c_f_0 = build_complex (NULL_TREE, f_0, f_0);
15695 tree c_f_1 = build_complex (NULL_TREE, f_1, f_0);
15696 tree c_f_m1 = build_complex (NULL_TREE, f_m1, f_0);
15698 /* TODO: vector constants. */
15700 /* Test integer_onep. */
15701 ASSERT_FALSE (integer_onep (i_0));
15702 ASSERT_FALSE (integer_onep (wr_i_0));
15703 ASSERT_TRUE (integer_onep (i_1));
15704 ASSERT_TRUE (integer_onep (wr_i_1));
15705 ASSERT_FALSE (integer_onep (i_m1));
15706 ASSERT_FALSE (integer_onep (wr_i_m1));
15707 ASSERT_FALSE (integer_onep (f_0));
15708 ASSERT_FALSE (integer_onep (wr_f_0));
15709 ASSERT_FALSE (integer_onep (f_1));
15710 ASSERT_FALSE (integer_onep (wr_f_1));
15711 ASSERT_FALSE (integer_onep (f_m1));
15712 ASSERT_FALSE (integer_onep (wr_f_m1));
15713 ASSERT_FALSE (integer_onep (c_i_0));
15714 ASSERT_TRUE (integer_onep (c_i_1));
15715 ASSERT_FALSE (integer_onep (c_i_m1));
15716 ASSERT_FALSE (integer_onep (c_f_0));
15717 ASSERT_FALSE (integer_onep (c_f_1));
15718 ASSERT_FALSE (integer_onep (c_f_m1));
15720 /* Test integer_zerop. */
15721 ASSERT_TRUE (integer_zerop (i_0));
15722 ASSERT_TRUE (integer_zerop (wr_i_0));
15723 ASSERT_FALSE (integer_zerop (i_1));
15724 ASSERT_FALSE (integer_zerop (wr_i_1));
15725 ASSERT_FALSE (integer_zerop (i_m1));
15726 ASSERT_FALSE (integer_zerop (wr_i_m1));
15727 ASSERT_FALSE (integer_zerop (f_0));
15728 ASSERT_FALSE (integer_zerop (wr_f_0));
15729 ASSERT_FALSE (integer_zerop (f_1));
15730 ASSERT_FALSE (integer_zerop (wr_f_1));
15731 ASSERT_FALSE (integer_zerop (f_m1));
15732 ASSERT_FALSE (integer_zerop (wr_f_m1));
15733 ASSERT_TRUE (integer_zerop (c_i_0));
15734 ASSERT_FALSE (integer_zerop (c_i_1));
15735 ASSERT_FALSE (integer_zerop (c_i_m1));
15736 ASSERT_FALSE (integer_zerop (c_f_0));
15737 ASSERT_FALSE (integer_zerop (c_f_1));
15738 ASSERT_FALSE (integer_zerop (c_f_m1));
15740 /* Test integer_all_onesp. */
15741 ASSERT_FALSE (integer_all_onesp (i_0));
15742 ASSERT_FALSE (integer_all_onesp (wr_i_0));
15743 ASSERT_FALSE (integer_all_onesp (i_1));
15744 ASSERT_FALSE (integer_all_onesp (wr_i_1));
15745 ASSERT_TRUE (integer_all_onesp (i_m1));
15746 ASSERT_TRUE (integer_all_onesp (wr_i_m1));
15747 ASSERT_FALSE (integer_all_onesp (f_0));
15748 ASSERT_FALSE (integer_all_onesp (wr_f_0));
15749 ASSERT_FALSE (integer_all_onesp (f_1));
15750 ASSERT_FALSE (integer_all_onesp (wr_f_1));
15751 ASSERT_FALSE (integer_all_onesp (f_m1));
15752 ASSERT_FALSE (integer_all_onesp (wr_f_m1));
15753 ASSERT_FALSE (integer_all_onesp (c_i_0));
15754 ASSERT_FALSE (integer_all_onesp (c_i_1));
15755 ASSERT_FALSE (integer_all_onesp (c_i_m1));
15756 ASSERT_FALSE (integer_all_onesp (c_f_0));
15757 ASSERT_FALSE (integer_all_onesp (c_f_1));
15758 ASSERT_FALSE (integer_all_onesp (c_f_m1));
15760 /* Test integer_minus_onep. */
15761 ASSERT_FALSE (integer_minus_onep (i_0));
15762 ASSERT_FALSE (integer_minus_onep (wr_i_0));
15763 ASSERT_FALSE (integer_minus_onep (i_1));
15764 ASSERT_FALSE (integer_minus_onep (wr_i_1));
15765 ASSERT_TRUE (integer_minus_onep (i_m1));
15766 ASSERT_TRUE (integer_minus_onep (wr_i_m1));
15767 ASSERT_FALSE (integer_minus_onep (f_0));
15768 ASSERT_FALSE (integer_minus_onep (wr_f_0));
15769 ASSERT_FALSE (integer_minus_onep (f_1));
15770 ASSERT_FALSE (integer_minus_onep (wr_f_1));
15771 ASSERT_FALSE (integer_minus_onep (f_m1));
15772 ASSERT_FALSE (integer_minus_onep (wr_f_m1));
15773 ASSERT_FALSE (integer_minus_onep (c_i_0));
15774 ASSERT_FALSE (integer_minus_onep (c_i_1));
15775 ASSERT_TRUE (integer_minus_onep (c_i_m1));
15776 ASSERT_FALSE (integer_minus_onep (c_f_0));
15777 ASSERT_FALSE (integer_minus_onep (c_f_1));
15778 ASSERT_FALSE (integer_minus_onep (c_f_m1));
15780 /* Test integer_each_onep. */
15781 ASSERT_FALSE (integer_each_onep (i_0));
15782 ASSERT_FALSE (integer_each_onep (wr_i_0));
15783 ASSERT_TRUE (integer_each_onep (i_1));
15784 ASSERT_TRUE (integer_each_onep (wr_i_1));
15785 ASSERT_FALSE (integer_each_onep (i_m1));
15786 ASSERT_FALSE (integer_each_onep (wr_i_m1));
15787 ASSERT_FALSE (integer_each_onep (f_0));
15788 ASSERT_FALSE (integer_each_onep (wr_f_0));
15789 ASSERT_FALSE (integer_each_onep (f_1));
15790 ASSERT_FALSE (integer_each_onep (wr_f_1));
15791 ASSERT_FALSE (integer_each_onep (f_m1));
15792 ASSERT_FALSE (integer_each_onep (wr_f_m1));
15793 ASSERT_FALSE (integer_each_onep (c_i_0));
15794 ASSERT_FALSE (integer_each_onep (c_i_1));
15795 ASSERT_FALSE (integer_each_onep (c_i_m1));
15796 ASSERT_FALSE (integer_each_onep (c_f_0));
15797 ASSERT_FALSE (integer_each_onep (c_f_1));
15798 ASSERT_FALSE (integer_each_onep (c_f_m1));
15800 /* Test integer_truep. */
15801 ASSERT_FALSE (integer_truep (i_0));
15802 ASSERT_FALSE (integer_truep (wr_i_0));
15803 ASSERT_TRUE (integer_truep (i_1));
15804 ASSERT_TRUE (integer_truep (wr_i_1));
15805 ASSERT_FALSE (integer_truep (i_m1));
15806 ASSERT_FALSE (integer_truep (wr_i_m1));
15807 ASSERT_FALSE (integer_truep (f_0));
15808 ASSERT_FALSE (integer_truep (wr_f_0));
15809 ASSERT_FALSE (integer_truep (f_1));
15810 ASSERT_FALSE (integer_truep (wr_f_1));
15811 ASSERT_FALSE (integer_truep (f_m1));
15812 ASSERT_FALSE (integer_truep (wr_f_m1));
15813 ASSERT_FALSE (integer_truep (c_i_0));
15814 ASSERT_TRUE (integer_truep (c_i_1));
15815 ASSERT_FALSE (integer_truep (c_i_m1));
15816 ASSERT_FALSE (integer_truep (c_f_0));
15817 ASSERT_FALSE (integer_truep (c_f_1));
15818 ASSERT_FALSE (integer_truep (c_f_m1));
15820 /* Test integer_nonzerop. */
15821 ASSERT_FALSE (integer_nonzerop (i_0));
15822 ASSERT_FALSE (integer_nonzerop (wr_i_0));
15823 ASSERT_TRUE (integer_nonzerop (i_1));
15824 ASSERT_TRUE (integer_nonzerop (wr_i_1));
15825 ASSERT_TRUE (integer_nonzerop (i_m1));
15826 ASSERT_TRUE (integer_nonzerop (wr_i_m1));
15827 ASSERT_FALSE (integer_nonzerop (f_0));
15828 ASSERT_FALSE (integer_nonzerop (wr_f_0));
15829 ASSERT_FALSE (integer_nonzerop (f_1));
15830 ASSERT_FALSE (integer_nonzerop (wr_f_1));
15831 ASSERT_FALSE (integer_nonzerop (f_m1));
15832 ASSERT_FALSE (integer_nonzerop (wr_f_m1));
15833 ASSERT_FALSE (integer_nonzerop (c_i_0));
15834 ASSERT_TRUE (integer_nonzerop (c_i_1));
15835 ASSERT_TRUE (integer_nonzerop (c_i_m1));
15836 ASSERT_FALSE (integer_nonzerop (c_f_0));
15837 ASSERT_FALSE (integer_nonzerop (c_f_1));
15838 ASSERT_FALSE (integer_nonzerop (c_f_m1));
15840 /* Test real_zerop. */
15841 ASSERT_FALSE (real_zerop (i_0));
15842 ASSERT_FALSE (real_zerop (wr_i_0));
15843 ASSERT_FALSE (real_zerop (i_1));
15844 ASSERT_FALSE (real_zerop (wr_i_1));
15845 ASSERT_FALSE (real_zerop (i_m1));
15846 ASSERT_FALSE (real_zerop (wr_i_m1));
15847 ASSERT_TRUE (real_zerop (f_0));
15848 ASSERT_TRUE (real_zerop (wr_f_0));
15849 ASSERT_FALSE (real_zerop (f_1));
15850 ASSERT_FALSE (real_zerop (wr_f_1));
15851 ASSERT_FALSE (real_zerop (f_m1));
15852 ASSERT_FALSE (real_zerop (wr_f_m1));
15853 ASSERT_FALSE (real_zerop (c_i_0));
15854 ASSERT_FALSE (real_zerop (c_i_1));
15855 ASSERT_FALSE (real_zerop (c_i_m1));
15856 ASSERT_TRUE (real_zerop (c_f_0));
15857 ASSERT_FALSE (real_zerop (c_f_1));
15858 ASSERT_FALSE (real_zerop (c_f_m1));
15860 /* Test real_onep. */
15861 ASSERT_FALSE (real_onep (i_0));
15862 ASSERT_FALSE (real_onep (wr_i_0));
15863 ASSERT_FALSE (real_onep (i_1));
15864 ASSERT_FALSE (real_onep (wr_i_1));
15865 ASSERT_FALSE (real_onep (i_m1));
15866 ASSERT_FALSE (real_onep (wr_i_m1));
15867 ASSERT_FALSE (real_onep (f_0));
15868 ASSERT_FALSE (real_onep (wr_f_0));
15869 ASSERT_TRUE (real_onep (f_1));
15870 ASSERT_TRUE (real_onep (wr_f_1));
15871 ASSERT_FALSE (real_onep (f_m1));
15872 ASSERT_FALSE (real_onep (wr_f_m1));
15873 ASSERT_FALSE (real_onep (c_i_0));
15874 ASSERT_FALSE (real_onep (c_i_1));
15875 ASSERT_FALSE (real_onep (c_i_m1));
15876 ASSERT_FALSE (real_onep (c_f_0));
15877 ASSERT_TRUE (real_onep (c_f_1));
15878 ASSERT_FALSE (real_onep (c_f_m1));
15880 /* Test real_minus_onep. */
15881 ASSERT_FALSE (real_minus_onep (i_0));
15882 ASSERT_FALSE (real_minus_onep (wr_i_0));
15883 ASSERT_FALSE (real_minus_onep (i_1));
15884 ASSERT_FALSE (real_minus_onep (wr_i_1));
15885 ASSERT_FALSE (real_minus_onep (i_m1));
15886 ASSERT_FALSE (real_minus_onep (wr_i_m1));
15887 ASSERT_FALSE (real_minus_onep (f_0));
15888 ASSERT_FALSE (real_minus_onep (wr_f_0));
15889 ASSERT_FALSE (real_minus_onep (f_1));
15890 ASSERT_FALSE (real_minus_onep (wr_f_1));
15891 ASSERT_TRUE (real_minus_onep (f_m1));
15892 ASSERT_TRUE (real_minus_onep (wr_f_m1));
15893 ASSERT_FALSE (real_minus_onep (c_i_0));
15894 ASSERT_FALSE (real_minus_onep (c_i_1));
15895 ASSERT_FALSE (real_minus_onep (c_i_m1));
15896 ASSERT_FALSE (real_minus_onep (c_f_0));
15897 ASSERT_FALSE (real_minus_onep (c_f_1));
15898 ASSERT_TRUE (real_minus_onep (c_f_m1));
15900 /* Test zerop. */
15901 ASSERT_TRUE (zerop (i_0));
15902 ASSERT_TRUE (zerop (wr_i_0));
15903 ASSERT_FALSE (zerop (i_1));
15904 ASSERT_FALSE (zerop (wr_i_1));
15905 ASSERT_FALSE (zerop (i_m1));
15906 ASSERT_FALSE (zerop (wr_i_m1));
15907 ASSERT_TRUE (zerop (f_0));
15908 ASSERT_TRUE (zerop (wr_f_0));
15909 ASSERT_FALSE (zerop (f_1));
15910 ASSERT_FALSE (zerop (wr_f_1));
15911 ASSERT_FALSE (zerop (f_m1));
15912 ASSERT_FALSE (zerop (wr_f_m1));
15913 ASSERT_TRUE (zerop (c_i_0));
15914 ASSERT_FALSE (zerop (c_i_1));
15915 ASSERT_FALSE (zerop (c_i_m1));
15916 ASSERT_TRUE (zerop (c_f_0));
15917 ASSERT_FALSE (zerop (c_f_1));
15918 ASSERT_FALSE (zerop (c_f_m1));
15920 /* Test tree_expr_nonnegative_p. */
15921 ASSERT_TRUE (tree_expr_nonnegative_p (i_0));
15922 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_0));
15923 ASSERT_TRUE (tree_expr_nonnegative_p (i_1));
15924 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_1));
15925 ASSERT_FALSE (tree_expr_nonnegative_p (i_m1));
15926 ASSERT_FALSE (tree_expr_nonnegative_p (wr_i_m1));
15927 ASSERT_TRUE (tree_expr_nonnegative_p (f_0));
15928 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_0));
15929 ASSERT_TRUE (tree_expr_nonnegative_p (f_1));
15930 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_1));
15931 ASSERT_FALSE (tree_expr_nonnegative_p (f_m1));
15932 ASSERT_FALSE (tree_expr_nonnegative_p (wr_f_m1));
15933 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_0));
15934 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_1));
15935 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_m1));
15936 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_0));
15937 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_1));
15938 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_m1));
15940 /* Test tree_expr_nonzero_p. */
15941 ASSERT_FALSE (tree_expr_nonzero_p (i_0));
15942 ASSERT_FALSE (tree_expr_nonzero_p (wr_i_0));
15943 ASSERT_TRUE (tree_expr_nonzero_p (i_1));
15944 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_1));
15945 ASSERT_TRUE (tree_expr_nonzero_p (i_m1));
15946 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_m1));
15948 /* Test integer_valued_real_p. */
15949 ASSERT_FALSE (integer_valued_real_p (i_0));
15950 ASSERT_TRUE (integer_valued_real_p (f_0));
15951 ASSERT_TRUE (integer_valued_real_p (wr_f_0));
15952 ASSERT_TRUE (integer_valued_real_p (f_1));
15953 ASSERT_TRUE (integer_valued_real_p (wr_f_1));
15955 /* Test integer_pow2p. */
15956 ASSERT_FALSE (integer_pow2p (i_0));
15957 ASSERT_TRUE (integer_pow2p (i_1));
15958 ASSERT_TRUE (integer_pow2p (wr_i_1));
15960 /* Test uniform_integer_cst_p. */
15961 ASSERT_TRUE (uniform_integer_cst_p (i_0));
15962 ASSERT_TRUE (uniform_integer_cst_p (wr_i_0));
15963 ASSERT_TRUE (uniform_integer_cst_p (i_1));
15964 ASSERT_TRUE (uniform_integer_cst_p (wr_i_1));
15965 ASSERT_TRUE (uniform_integer_cst_p (i_m1));
15966 ASSERT_TRUE (uniform_integer_cst_p (wr_i_m1));
15967 ASSERT_FALSE (uniform_integer_cst_p (f_0));
15968 ASSERT_FALSE (uniform_integer_cst_p (wr_f_0));
15969 ASSERT_FALSE (uniform_integer_cst_p (f_1));
15970 ASSERT_FALSE (uniform_integer_cst_p (wr_f_1));
15971 ASSERT_FALSE (uniform_integer_cst_p (f_m1));
15972 ASSERT_FALSE (uniform_integer_cst_p (wr_f_m1));
15973 ASSERT_FALSE (uniform_integer_cst_p (c_i_0));
15974 ASSERT_FALSE (uniform_integer_cst_p (c_i_1));
15975 ASSERT_FALSE (uniform_integer_cst_p (c_i_m1));
15976 ASSERT_FALSE (uniform_integer_cst_p (c_f_0));
15977 ASSERT_FALSE (uniform_integer_cst_p (c_f_1));
15978 ASSERT_FALSE (uniform_integer_cst_p (c_f_m1));
15981 /* Check that string escaping works correctly. */
15983 static void
15984 test_escaped_strings (void)
15986 int saved_cutoff;
15987 escaped_string msg;
15989 msg.escape (NULL);
15990 /* ASSERT_STREQ does not accept NULL as a valid test
15991 result, so we have to use ASSERT_EQ instead. */
15992 ASSERT_EQ (NULL, (const char *) msg);
15994 msg.escape ("");
15995 ASSERT_STREQ ("", (const char *) msg);
15997 msg.escape ("foobar");
15998 ASSERT_STREQ ("foobar", (const char *) msg);
16000 /* Ensure that we have -fmessage-length set to 0. */
16001 saved_cutoff = pp_line_cutoff (global_dc->printer);
16002 pp_line_cutoff (global_dc->printer) = 0;
16004 msg.escape ("foo\nbar");
16005 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
16007 msg.escape ("\a\b\f\n\r\t\v");
16008 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
16010 /* Now repeat the tests with -fmessage-length set to 5. */
16011 pp_line_cutoff (global_dc->printer) = 5;
16013 /* Note that the newline is not translated into an escape. */
16014 msg.escape ("foo\nbar");
16015 ASSERT_STREQ ("foo\nbar", (const char *) msg);
16017 msg.escape ("\a\b\f\n\r\t\v");
16018 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
16020 /* Restore the original message length setting. */
16021 pp_line_cutoff (global_dc->printer) = saved_cutoff;
16024 /* Run all of the selftests within this file. */
16026 void
16027 tree_c_tests ()
16029 test_integer_constants ();
16030 test_identifiers ();
16031 test_labels ();
16032 test_vector_cst_patterns ();
16033 test_location_wrappers ();
16034 test_predicates ();
16035 test_escaped_strings ();
16038 } // namespace selftest
16040 #endif /* CHECKING_P */
16042 #include "gt-tree.h"