[i386] Fold __builtin_ia32_shufpd to VEC_PERM_EXPR
[official-gcc.git] / gcc / tree.c
blobcc8b4b8e709e3f00772c580a9b14796042b30046
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2019 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
25 nodes of that code.
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "target.h"
35 #include "tree.h"
36 #include "gimple.h"
37 #include "tree-pass.h"
38 #include "ssa.h"
39 #include "cgraph.h"
40 #include "diagnostic.h"
41 #include "flags.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "attribs.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "output.h"
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
55 #include "gimplify.h"
56 #include "tree-dfa.h"
57 #include "params.h"
58 #include "langhooks-def.h"
59 #include "tree-diagnostic.h"
60 #include "except.h"
61 #include "builtins.h"
62 #include "print-tree.h"
63 #include "ipa-utils.h"
64 #include "selftest.h"
65 #include "stringpool.h"
66 #include "attribs.h"
67 #include "rtl.h"
68 #include "regs.h"
69 #include "tree-vector-builder.h"
71 /* Tree code classes. */
73 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
74 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76 const enum tree_code_class tree_code_type[] = {
77 #include "all-tree.def"
80 #undef DEFTREECODE
81 #undef END_OF_BASE_TREE_CODES
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
88 #define END_OF_BASE_TREE_CODES 0,
90 const unsigned char tree_code_length[] = {
91 #include "all-tree.def"
94 #undef DEFTREECODE
95 #undef END_OF_BASE_TREE_CODES
97 /* Names of tree components.
98 Used for printing out the tree and error messages. */
99 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 #define END_OF_BASE_TREE_CODES "@dummy",
102 static const char *const tree_code_name[] = {
103 #include "all-tree.def"
106 #undef DEFTREECODE
107 #undef END_OF_BASE_TREE_CODES
109 /* Each tree code class has an associated string representation.
110 These must correspond to the tree_code_class entries. */
112 const char *const tree_code_class_strings[] =
114 "exceptional",
115 "constant",
116 "type",
117 "declaration",
118 "reference",
119 "comparison",
120 "unary",
121 "binary",
122 "statement",
123 "vl_exp",
124 "expression"
127 /* obstack.[ch] explicitly declined to prototype this. */
128 extern int _obstack_allocated_p (struct obstack *h, void *obj);
130 /* Statistics-gathering stuff. */
132 static uint64_t tree_code_counts[MAX_TREE_CODES];
133 uint64_t tree_node_counts[(int) all_kinds];
134 uint64_t tree_node_sizes[(int) all_kinds];
136 /* Keep in sync with tree.h:enum tree_node_kind. */
137 static const char * const tree_node_kind_names[] = {
138 "decls",
139 "types",
140 "blocks",
141 "stmts",
142 "refs",
143 "exprs",
144 "constants",
145 "identifiers",
146 "vecs",
147 "binfos",
148 "ssa names",
149 "constructors",
150 "random kinds",
151 "lang_decl kinds",
152 "lang_type kinds",
153 "omp clauses",
156 /* Unique id for next decl created. */
157 static GTY(()) int next_decl_uid;
158 /* Unique id for next type created. */
159 static GTY(()) unsigned next_type_uid = 1;
160 /* Unique id for next debug decl created. Use negative numbers,
161 to catch erroneous uses. */
162 static GTY(()) int next_debug_decl_uid;
164 /* Since we cannot rehash a type after it is in the table, we have to
165 keep the hash code. */
167 struct GTY((for_user)) type_hash {
168 unsigned long hash;
169 tree type;
172 /* Initial size of the hash table (rounded to next prime). */
173 #define TYPE_HASH_INITIAL_SIZE 1000
175 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
177 static hashval_t hash (type_hash *t) { return t->hash; }
178 static bool equal (type_hash *a, type_hash *b);
180 static int
181 keep_cache_entry (type_hash *&t)
183 return ggc_marked_p (t->type);
187 /* Now here is the hash table. When recording a type, it is added to
188 the slot whose index is the hash code. Note that the hash table is
189 used for several kinds of types (function types, array types and
190 array index range types, for now). While all these live in the
191 same table, they are completely independent, and the hash code is
192 computed differently for each of these. */
194 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
196 /* Hash table and temporary node for larger integer const values. */
197 static GTY (()) tree int_cst_node;
199 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
201 static hashval_t hash (tree t);
202 static bool equal (tree x, tree y);
205 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
207 /* Class and variable for making sure that there is a single POLY_INT_CST
208 for a given value. */
209 struct poly_int_cst_hasher : ggc_cache_ptr_hash<tree_node>
211 typedef std::pair<tree, const poly_wide_int *> compare_type;
212 static hashval_t hash (tree t);
213 static bool equal (tree x, const compare_type &y);
216 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
218 /* Hash table for optimization flags and target option flags. Use the same
219 hash table for both sets of options. Nodes for building the current
220 optimization and target option nodes. The assumption is most of the time
221 the options created will already be in the hash table, so we avoid
222 allocating and freeing up a node repeatably. */
223 static GTY (()) tree cl_optimization_node;
224 static GTY (()) tree cl_target_option_node;
226 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
228 static hashval_t hash (tree t);
229 static bool equal (tree x, tree y);
232 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
234 /* General tree->tree mapping structure for use in hash tables. */
237 static GTY ((cache))
238 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
240 static GTY ((cache))
241 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
243 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
245 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
247 static bool
248 equal (tree_vec_map *a, tree_vec_map *b)
250 return a->base.from == b->base.from;
253 static int
254 keep_cache_entry (tree_vec_map *&m)
256 return ggc_marked_p (m->base.from);
260 static GTY ((cache))
261 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
263 static void set_type_quals (tree, int);
264 static void print_type_hash_statistics (void);
265 static void print_debug_expr_statistics (void);
266 static void print_value_expr_statistics (void);
268 static tree build_array_type_1 (tree, tree, bool, bool);
270 tree global_trees[TI_MAX];
271 tree integer_types[itk_none];
273 bool int_n_enabled_p[NUM_INT_N_ENTS];
274 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
276 bool tree_contains_struct[MAX_TREE_CODES][64];
278 /* Number of operands for each OpenMP clause. */
279 unsigned const char omp_clause_num_ops[] =
281 0, /* OMP_CLAUSE_ERROR */
282 1, /* OMP_CLAUSE_PRIVATE */
283 1, /* OMP_CLAUSE_SHARED */
284 1, /* OMP_CLAUSE_FIRSTPRIVATE */
285 2, /* OMP_CLAUSE_LASTPRIVATE */
286 5, /* OMP_CLAUSE_REDUCTION */
287 5, /* OMP_CLAUSE_TASK_REDUCTION */
288 5, /* OMP_CLAUSE_IN_REDUCTION */
289 1, /* OMP_CLAUSE_COPYIN */
290 1, /* OMP_CLAUSE_COPYPRIVATE */
291 3, /* OMP_CLAUSE_LINEAR */
292 2, /* OMP_CLAUSE_ALIGNED */
293 1, /* OMP_CLAUSE_DEPEND */
294 1, /* OMP_CLAUSE_NONTEMPORAL */
295 1, /* OMP_CLAUSE_UNIFORM */
296 1, /* OMP_CLAUSE_TO_DECLARE */
297 1, /* OMP_CLAUSE_LINK */
298 2, /* OMP_CLAUSE_FROM */
299 2, /* OMP_CLAUSE_TO */
300 2, /* OMP_CLAUSE_MAP */
301 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
302 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
303 2, /* OMP_CLAUSE__CACHE_ */
304 2, /* OMP_CLAUSE_GANG */
305 1, /* OMP_CLAUSE_ASYNC */
306 1, /* OMP_CLAUSE_WAIT */
307 0, /* OMP_CLAUSE_AUTO */
308 0, /* OMP_CLAUSE_SEQ */
309 1, /* OMP_CLAUSE__LOOPTEMP_ */
310 1, /* OMP_CLAUSE__REDUCTEMP_ */
311 1, /* OMP_CLAUSE_IF */
312 1, /* OMP_CLAUSE_NUM_THREADS */
313 1, /* OMP_CLAUSE_SCHEDULE */
314 0, /* OMP_CLAUSE_NOWAIT */
315 1, /* OMP_CLAUSE_ORDERED */
316 0, /* OMP_CLAUSE_DEFAULT */
317 3, /* OMP_CLAUSE_COLLAPSE */
318 0, /* OMP_CLAUSE_UNTIED */
319 1, /* OMP_CLAUSE_FINAL */
320 0, /* OMP_CLAUSE_MERGEABLE */
321 1, /* OMP_CLAUSE_DEVICE */
322 1, /* OMP_CLAUSE_DIST_SCHEDULE */
323 0, /* OMP_CLAUSE_INBRANCH */
324 0, /* OMP_CLAUSE_NOTINBRANCH */
325 1, /* OMP_CLAUSE_NUM_TEAMS */
326 1, /* OMP_CLAUSE_THREAD_LIMIT */
327 0, /* OMP_CLAUSE_PROC_BIND */
328 1, /* OMP_CLAUSE_SAFELEN */
329 1, /* OMP_CLAUSE_SIMDLEN */
330 0, /* OMP_CLAUSE_FOR */
331 0, /* OMP_CLAUSE_PARALLEL */
332 0, /* OMP_CLAUSE_SECTIONS */
333 0, /* OMP_CLAUSE_TASKGROUP */
334 1, /* OMP_CLAUSE_PRIORITY */
335 1, /* OMP_CLAUSE_GRAINSIZE */
336 1, /* OMP_CLAUSE_NUM_TASKS */
337 0, /* OMP_CLAUSE_NOGROUP */
338 0, /* OMP_CLAUSE_THREADS */
339 0, /* OMP_CLAUSE_SIMD */
340 1, /* OMP_CLAUSE_HINT */
341 0, /* OMP_CLAUSE_DEFALTMAP */
342 1, /* OMP_CLAUSE__SIMDUID_ */
343 0, /* OMP_CLAUSE__SIMT_ */
344 0, /* OMP_CLAUSE_INDEPENDENT */
345 1, /* OMP_CLAUSE_WORKER */
346 1, /* OMP_CLAUSE_VECTOR */
347 1, /* OMP_CLAUSE_NUM_GANGS */
348 1, /* OMP_CLAUSE_NUM_WORKERS */
349 1, /* OMP_CLAUSE_VECTOR_LENGTH */
350 3, /* OMP_CLAUSE_TILE */
351 2, /* OMP_CLAUSE__GRIDDIM_ */
352 0, /* OMP_CLAUSE_IF_PRESENT */
353 0, /* OMP_CLAUSE_FINALIZE */
356 const char * const omp_clause_code_name[] =
358 "error_clause",
359 "private",
360 "shared",
361 "firstprivate",
362 "lastprivate",
363 "reduction",
364 "task_reduction",
365 "in_reduction",
366 "copyin",
367 "copyprivate",
368 "linear",
369 "aligned",
370 "depend",
371 "nontemporal",
372 "uniform",
373 "to",
374 "link",
375 "from",
376 "to",
377 "map",
378 "use_device_ptr",
379 "is_device_ptr",
380 "_cache_",
381 "gang",
382 "async",
383 "wait",
384 "auto",
385 "seq",
386 "_looptemp_",
387 "_reductemp_",
388 "if",
389 "num_threads",
390 "schedule",
391 "nowait",
392 "ordered",
393 "default",
394 "collapse",
395 "untied",
396 "final",
397 "mergeable",
398 "device",
399 "dist_schedule",
400 "inbranch",
401 "notinbranch",
402 "num_teams",
403 "thread_limit",
404 "proc_bind",
405 "safelen",
406 "simdlen",
407 "for",
408 "parallel",
409 "sections",
410 "taskgroup",
411 "priority",
412 "grainsize",
413 "num_tasks",
414 "nogroup",
415 "threads",
416 "simd",
417 "hint",
418 "defaultmap",
419 "_simduid_",
420 "_simt_",
421 "independent",
422 "worker",
423 "vector",
424 "num_gangs",
425 "num_workers",
426 "vector_length",
427 "tile",
428 "_griddim_",
429 "if_present",
430 "finalize",
434 /* Return the tree node structure used by tree code CODE. */
436 static inline enum tree_node_structure_enum
437 tree_node_structure_for_code (enum tree_code code)
439 switch (TREE_CODE_CLASS (code))
441 case tcc_declaration:
443 switch (code)
445 case FIELD_DECL:
446 return TS_FIELD_DECL;
447 case PARM_DECL:
448 return TS_PARM_DECL;
449 case VAR_DECL:
450 return TS_VAR_DECL;
451 case LABEL_DECL:
452 return TS_LABEL_DECL;
453 case RESULT_DECL:
454 return TS_RESULT_DECL;
455 case DEBUG_EXPR_DECL:
456 return TS_DECL_WRTL;
457 case CONST_DECL:
458 return TS_CONST_DECL;
459 case TYPE_DECL:
460 return TS_TYPE_DECL;
461 case FUNCTION_DECL:
462 return TS_FUNCTION_DECL;
463 case TRANSLATION_UNIT_DECL:
464 return TS_TRANSLATION_UNIT_DECL;
465 default:
466 return TS_DECL_NON_COMMON;
469 case tcc_type:
470 return TS_TYPE_NON_COMMON;
471 case tcc_reference:
472 case tcc_comparison:
473 case tcc_unary:
474 case tcc_binary:
475 case tcc_expression:
476 case tcc_statement:
477 case tcc_vl_exp:
478 return TS_EXP;
479 default: /* tcc_constant and tcc_exceptional */
480 break;
482 switch (code)
484 /* tcc_constant cases. */
485 case VOID_CST: return TS_TYPED;
486 case INTEGER_CST: return TS_INT_CST;
487 case POLY_INT_CST: return TS_POLY_INT_CST;
488 case REAL_CST: return TS_REAL_CST;
489 case FIXED_CST: return TS_FIXED_CST;
490 case COMPLEX_CST: return TS_COMPLEX;
491 case VECTOR_CST: return TS_VECTOR;
492 case STRING_CST: return TS_STRING;
493 /* tcc_exceptional cases. */
494 case ERROR_MARK: return TS_COMMON;
495 case IDENTIFIER_NODE: return TS_IDENTIFIER;
496 case TREE_LIST: return TS_LIST;
497 case TREE_VEC: return TS_VEC;
498 case SSA_NAME: return TS_SSA_NAME;
499 case PLACEHOLDER_EXPR: return TS_COMMON;
500 case STATEMENT_LIST: return TS_STATEMENT_LIST;
501 case BLOCK: return TS_BLOCK;
502 case CONSTRUCTOR: return TS_CONSTRUCTOR;
503 case TREE_BINFO: return TS_BINFO;
504 case OMP_CLAUSE: return TS_OMP_CLAUSE;
505 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
506 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
508 default:
509 gcc_unreachable ();
514 /* Initialize tree_contains_struct to describe the hierarchy of tree
515 nodes. */
517 static void
518 initialize_tree_contains_struct (void)
520 unsigned i;
522 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
524 enum tree_code code;
525 enum tree_node_structure_enum ts_code;
527 code = (enum tree_code) i;
528 ts_code = tree_node_structure_for_code (code);
530 /* Mark the TS structure itself. */
531 tree_contains_struct[code][ts_code] = 1;
533 /* Mark all the structures that TS is derived from. */
534 switch (ts_code)
536 case TS_TYPED:
537 case TS_BLOCK:
538 case TS_OPTIMIZATION:
539 case TS_TARGET_OPTION:
540 MARK_TS_BASE (code);
541 break;
543 case TS_COMMON:
544 case TS_INT_CST:
545 case TS_POLY_INT_CST:
546 case TS_REAL_CST:
547 case TS_FIXED_CST:
548 case TS_VECTOR:
549 case TS_STRING:
550 case TS_COMPLEX:
551 case TS_SSA_NAME:
552 case TS_CONSTRUCTOR:
553 case TS_EXP:
554 case TS_STATEMENT_LIST:
555 MARK_TS_TYPED (code);
556 break;
558 case TS_IDENTIFIER:
559 case TS_DECL_MINIMAL:
560 case TS_TYPE_COMMON:
561 case TS_LIST:
562 case TS_VEC:
563 case TS_BINFO:
564 case TS_OMP_CLAUSE:
565 MARK_TS_COMMON (code);
566 break;
568 case TS_TYPE_WITH_LANG_SPECIFIC:
569 MARK_TS_TYPE_COMMON (code);
570 break;
572 case TS_TYPE_NON_COMMON:
573 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
574 break;
576 case TS_DECL_COMMON:
577 MARK_TS_DECL_MINIMAL (code);
578 break;
580 case TS_DECL_WRTL:
581 case TS_CONST_DECL:
582 MARK_TS_DECL_COMMON (code);
583 break;
585 case TS_DECL_NON_COMMON:
586 MARK_TS_DECL_WITH_VIS (code);
587 break;
589 case TS_DECL_WITH_VIS:
590 case TS_PARM_DECL:
591 case TS_LABEL_DECL:
592 case TS_RESULT_DECL:
593 MARK_TS_DECL_WRTL (code);
594 break;
596 case TS_FIELD_DECL:
597 MARK_TS_DECL_COMMON (code);
598 break;
600 case TS_VAR_DECL:
601 MARK_TS_DECL_WITH_VIS (code);
602 break;
604 case TS_TYPE_DECL:
605 case TS_FUNCTION_DECL:
606 MARK_TS_DECL_NON_COMMON (code);
607 break;
609 case TS_TRANSLATION_UNIT_DECL:
610 MARK_TS_DECL_COMMON (code);
611 break;
613 default:
614 gcc_unreachable ();
618 /* Basic consistency checks for attributes used in fold. */
619 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
620 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
621 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
622 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
623 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
624 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
625 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
626 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
627 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
628 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
629 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
630 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
631 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
632 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
633 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
634 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
635 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
636 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
637 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
638 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
639 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
640 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
641 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
642 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
643 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
644 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
645 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
646 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
647 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
648 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
649 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
650 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
651 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
652 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
653 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
654 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
655 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
656 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
657 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
658 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
662 /* Init tree.c. */
664 void
665 init_ttree (void)
667 /* Initialize the hash table of types. */
668 type_hash_table
669 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
671 debug_expr_for_decl
672 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
674 value_expr_for_decl
675 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
677 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
679 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
681 int_cst_node = make_int_cst (1, 1);
683 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
685 cl_optimization_node = make_node (OPTIMIZATION_NODE);
686 cl_target_option_node = make_node (TARGET_OPTION_NODE);
688 /* Initialize the tree_contains_struct array. */
689 initialize_tree_contains_struct ();
690 lang_hooks.init_ts ();
694 /* The name of the object as the assembler will see it (but before any
695 translations made by ASM_OUTPUT_LABELREF). Often this is the same
696 as DECL_NAME. It is an IDENTIFIER_NODE. */
697 tree
698 decl_assembler_name (tree decl)
700 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
701 lang_hooks.set_decl_assembler_name (decl);
702 return DECL_ASSEMBLER_NAME_RAW (decl);
705 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
706 (either of which may be NULL). Inform the FE, if this changes the
707 name. */
709 void
710 overwrite_decl_assembler_name (tree decl, tree name)
712 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
713 lang_hooks.overwrite_decl_assembler_name (decl, name);
716 /* When the target supports COMDAT groups, this indicates which group the
717 DECL is associated with. This can be either an IDENTIFIER_NODE or a
718 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
719 tree
720 decl_comdat_group (const_tree node)
722 struct symtab_node *snode = symtab_node::get (node);
723 if (!snode)
724 return NULL;
725 return snode->get_comdat_group ();
728 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
729 tree
730 decl_comdat_group_id (const_tree node)
732 struct symtab_node *snode = symtab_node::get (node);
733 if (!snode)
734 return NULL;
735 return snode->get_comdat_group_id ();
738 /* When the target supports named section, return its name as IDENTIFIER_NODE
739 or NULL if it is in no section. */
740 const char *
741 decl_section_name (const_tree node)
743 struct symtab_node *snode = symtab_node::get (node);
744 if (!snode)
745 return NULL;
746 return snode->get_section ();
749 /* Set section name of NODE to VALUE (that is expected to be
750 identifier node) */
751 void
752 set_decl_section_name (tree node, const char *value)
754 struct symtab_node *snode;
756 if (value == NULL)
758 snode = symtab_node::get (node);
759 if (!snode)
760 return;
762 else if (VAR_P (node))
763 snode = varpool_node::get_create (node);
764 else
765 snode = cgraph_node::get_create (node);
766 snode->set_section (value);
769 /* Return TLS model of a variable NODE. */
770 enum tls_model
771 decl_tls_model (const_tree node)
773 struct varpool_node *snode = varpool_node::get (node);
774 if (!snode)
775 return TLS_MODEL_NONE;
776 return snode->tls_model;
779 /* Set TLS model of variable NODE to MODEL. */
780 void
781 set_decl_tls_model (tree node, enum tls_model model)
783 struct varpool_node *vnode;
785 if (model == TLS_MODEL_NONE)
787 vnode = varpool_node::get (node);
788 if (!vnode)
789 return;
791 else
792 vnode = varpool_node::get_create (node);
793 vnode->tls_model = model;
796 /* Compute the number of bytes occupied by a tree with code CODE.
797 This function cannot be used for nodes that have variable sizes,
798 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
799 size_t
800 tree_code_size (enum tree_code code)
802 switch (TREE_CODE_CLASS (code))
804 case tcc_declaration: /* A decl node */
805 switch (code)
807 case FIELD_DECL: return sizeof (tree_field_decl);
808 case PARM_DECL: return sizeof (tree_parm_decl);
809 case VAR_DECL: return sizeof (tree_var_decl);
810 case LABEL_DECL: return sizeof (tree_label_decl);
811 case RESULT_DECL: return sizeof (tree_result_decl);
812 case CONST_DECL: return sizeof (tree_const_decl);
813 case TYPE_DECL: return sizeof (tree_type_decl);
814 case FUNCTION_DECL: return sizeof (tree_function_decl);
815 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
816 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
817 case NAMESPACE_DECL:
818 case IMPORTED_DECL:
819 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
820 default:
821 gcc_checking_assert (code >= NUM_TREE_CODES);
822 return lang_hooks.tree_size (code);
825 case tcc_type: /* a type node */
826 switch (code)
828 case OFFSET_TYPE:
829 case ENUMERAL_TYPE:
830 case BOOLEAN_TYPE:
831 case INTEGER_TYPE:
832 case REAL_TYPE:
833 case POINTER_TYPE:
834 case REFERENCE_TYPE:
835 case NULLPTR_TYPE:
836 case FIXED_POINT_TYPE:
837 case COMPLEX_TYPE:
838 case VECTOR_TYPE:
839 case ARRAY_TYPE:
840 case RECORD_TYPE:
841 case UNION_TYPE:
842 case QUAL_UNION_TYPE:
843 case VOID_TYPE:
844 case FUNCTION_TYPE:
845 case METHOD_TYPE:
846 case LANG_TYPE: return sizeof (tree_type_non_common);
847 default:
848 gcc_checking_assert (code >= NUM_TREE_CODES);
849 return lang_hooks.tree_size (code);
852 case tcc_reference: /* a reference */
853 case tcc_expression: /* an expression */
854 case tcc_statement: /* an expression with side effects */
855 case tcc_comparison: /* a comparison expression */
856 case tcc_unary: /* a unary arithmetic expression */
857 case tcc_binary: /* a binary arithmetic expression */
858 return (sizeof (struct tree_exp)
859 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
861 case tcc_constant: /* a constant */
862 switch (code)
864 case VOID_CST: return sizeof (tree_typed);
865 case INTEGER_CST: gcc_unreachable ();
866 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
867 case REAL_CST: return sizeof (tree_real_cst);
868 case FIXED_CST: return sizeof (tree_fixed_cst);
869 case COMPLEX_CST: return sizeof (tree_complex);
870 case VECTOR_CST: gcc_unreachable ();
871 case STRING_CST: gcc_unreachable ();
872 default:
873 gcc_checking_assert (code >= NUM_TREE_CODES);
874 return lang_hooks.tree_size (code);
877 case tcc_exceptional: /* something random, like an identifier. */
878 switch (code)
880 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
881 case TREE_LIST: return sizeof (tree_list);
883 case ERROR_MARK:
884 case PLACEHOLDER_EXPR: return sizeof (tree_common);
886 case TREE_VEC: gcc_unreachable ();
887 case OMP_CLAUSE: gcc_unreachable ();
889 case SSA_NAME: return sizeof (tree_ssa_name);
891 case STATEMENT_LIST: return sizeof (tree_statement_list);
892 case BLOCK: return sizeof (struct tree_block);
893 case CONSTRUCTOR: return sizeof (tree_constructor);
894 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
895 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
897 default:
898 gcc_checking_assert (code >= NUM_TREE_CODES);
899 return lang_hooks.tree_size (code);
902 default:
903 gcc_unreachable ();
907 /* Compute the number of bytes occupied by NODE. This routine only
908 looks at TREE_CODE, except for those nodes that have variable sizes. */
909 size_t
910 tree_size (const_tree node)
912 const enum tree_code code = TREE_CODE (node);
913 switch (code)
915 case INTEGER_CST:
916 return (sizeof (struct tree_int_cst)
917 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
919 case TREE_BINFO:
920 return (offsetof (struct tree_binfo, base_binfos)
921 + vec<tree, va_gc>
922 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
924 case TREE_VEC:
925 return (sizeof (struct tree_vec)
926 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
928 case VECTOR_CST:
929 return (sizeof (struct tree_vector)
930 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
932 case STRING_CST:
933 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
935 case OMP_CLAUSE:
936 return (sizeof (struct tree_omp_clause)
937 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
938 * sizeof (tree));
940 default:
941 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
942 return (sizeof (struct tree_exp)
943 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
944 else
945 return tree_code_size (code);
949 /* Return tree node kind based on tree CODE. */
951 static tree_node_kind
952 get_stats_node_kind (enum tree_code code)
954 enum tree_code_class type = TREE_CODE_CLASS (code);
956 switch (type)
958 case tcc_declaration: /* A decl node */
959 return d_kind;
960 case tcc_type: /* a type node */
961 return t_kind;
962 case tcc_statement: /* an expression with side effects */
963 return s_kind;
964 case tcc_reference: /* a reference */
965 return r_kind;
966 case tcc_expression: /* an expression */
967 case tcc_comparison: /* a comparison expression */
968 case tcc_unary: /* a unary arithmetic expression */
969 case tcc_binary: /* a binary arithmetic expression */
970 return e_kind;
971 case tcc_constant: /* a constant */
972 return c_kind;
973 case tcc_exceptional: /* something random, like an identifier. */
974 switch (code)
976 case IDENTIFIER_NODE:
977 return id_kind;
978 case TREE_VEC:
979 return vec_kind;
980 case TREE_BINFO:
981 return binfo_kind;
982 case SSA_NAME:
983 return ssa_name_kind;
984 case BLOCK:
985 return b_kind;
986 case CONSTRUCTOR:
987 return constr_kind;
988 case OMP_CLAUSE:
989 return omp_clause_kind;
990 default:
991 return x_kind;
993 break;
994 case tcc_vl_exp:
995 return e_kind;
996 default:
997 gcc_unreachable ();
1001 /* Record interesting allocation statistics for a tree node with CODE
1002 and LENGTH. */
1004 static void
1005 record_node_allocation_statistics (enum tree_code code, size_t length)
1007 if (!GATHER_STATISTICS)
1008 return;
1010 tree_node_kind kind = get_stats_node_kind (code);
1012 tree_code_counts[(int) code]++;
1013 tree_node_counts[(int) kind]++;
1014 tree_node_sizes[(int) kind] += length;
1017 /* Allocate and return a new UID from the DECL_UID namespace. */
1020 allocate_decl_uid (void)
1022 return next_decl_uid++;
1025 /* Return a newly allocated node of code CODE. For decl and type
1026 nodes, some other fields are initialized. The rest of the node is
1027 initialized to zero. This function cannot be used for TREE_VEC,
1028 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1029 tree_code_size.
1031 Achoo! I got a code in the node. */
1033 tree
1034 make_node (enum tree_code code MEM_STAT_DECL)
1036 tree t;
1037 enum tree_code_class type = TREE_CODE_CLASS (code);
1038 size_t length = tree_code_size (code);
1040 record_node_allocation_statistics (code, length);
1042 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1043 TREE_SET_CODE (t, code);
1045 switch (type)
1047 case tcc_statement:
1048 if (code != DEBUG_BEGIN_STMT)
1049 TREE_SIDE_EFFECTS (t) = 1;
1050 break;
1052 case tcc_declaration:
1053 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1055 if (code == FUNCTION_DECL)
1057 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1058 SET_DECL_MODE (t, FUNCTION_MODE);
1060 else
1061 SET_DECL_ALIGN (t, 1);
1063 DECL_SOURCE_LOCATION (t) = input_location;
1064 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1065 DECL_UID (t) = --next_debug_decl_uid;
1066 else
1068 DECL_UID (t) = allocate_decl_uid ();
1069 SET_DECL_PT_UID (t, -1);
1071 if (TREE_CODE (t) == LABEL_DECL)
1072 LABEL_DECL_UID (t) = -1;
1074 break;
1076 case tcc_type:
1077 TYPE_UID (t) = next_type_uid++;
1078 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1079 TYPE_USER_ALIGN (t) = 0;
1080 TYPE_MAIN_VARIANT (t) = t;
1081 TYPE_CANONICAL (t) = t;
1083 /* Default to no attributes for type, but let target change that. */
1084 TYPE_ATTRIBUTES (t) = NULL_TREE;
1085 targetm.set_default_type_attributes (t);
1087 /* We have not yet computed the alias set for this type. */
1088 TYPE_ALIAS_SET (t) = -1;
1089 break;
1091 case tcc_constant:
1092 TREE_CONSTANT (t) = 1;
1093 break;
1095 case tcc_expression:
1096 switch (code)
1098 case INIT_EXPR:
1099 case MODIFY_EXPR:
1100 case VA_ARG_EXPR:
1101 case PREDECREMENT_EXPR:
1102 case PREINCREMENT_EXPR:
1103 case POSTDECREMENT_EXPR:
1104 case POSTINCREMENT_EXPR:
1105 /* All of these have side-effects, no matter what their
1106 operands are. */
1107 TREE_SIDE_EFFECTS (t) = 1;
1108 break;
1110 default:
1111 break;
1113 break;
1115 case tcc_exceptional:
1116 switch (code)
1118 case TARGET_OPTION_NODE:
1119 TREE_TARGET_OPTION(t)
1120 = ggc_cleared_alloc<struct cl_target_option> ();
1121 break;
1123 case OPTIMIZATION_NODE:
1124 TREE_OPTIMIZATION (t)
1125 = ggc_cleared_alloc<struct cl_optimization> ();
1126 break;
1128 default:
1129 break;
1131 break;
1133 default:
1134 /* Other classes need no special treatment. */
1135 break;
1138 return t;
1141 /* Free tree node. */
1143 void
1144 free_node (tree node)
1146 enum tree_code code = TREE_CODE (node);
1147 if (GATHER_STATISTICS)
1149 enum tree_node_kind kind = get_stats_node_kind (code);
1151 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1152 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1153 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1155 tree_code_counts[(int) TREE_CODE (node)]--;
1156 tree_node_counts[(int) kind]--;
1157 tree_node_sizes[(int) kind] -= tree_size (node);
1159 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1160 vec_free (CONSTRUCTOR_ELTS (node));
1161 else if (code == BLOCK)
1162 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1163 else if (code == TREE_BINFO)
1164 vec_free (BINFO_BASE_ACCESSES (node));
1165 ggc_free (node);
1168 /* Return a new node with the same contents as NODE except that its
1169 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1171 tree
1172 copy_node (tree node MEM_STAT_DECL)
1174 tree t;
1175 enum tree_code code = TREE_CODE (node);
1176 size_t length;
1178 gcc_assert (code != STATEMENT_LIST);
1180 length = tree_size (node);
1181 record_node_allocation_statistics (code, length);
1182 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1183 memcpy (t, node, length);
1185 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1186 TREE_CHAIN (t) = 0;
1187 TREE_ASM_WRITTEN (t) = 0;
1188 TREE_VISITED (t) = 0;
1190 if (TREE_CODE_CLASS (code) == tcc_declaration)
1192 if (code == DEBUG_EXPR_DECL)
1193 DECL_UID (t) = --next_debug_decl_uid;
1194 else
1196 DECL_UID (t) = allocate_decl_uid ();
1197 if (DECL_PT_UID_SET_P (node))
1198 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1200 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1201 && DECL_HAS_VALUE_EXPR_P (node))
1203 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1204 DECL_HAS_VALUE_EXPR_P (t) = 1;
1206 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1207 if (VAR_P (node))
1209 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1210 t->decl_with_vis.symtab_node = NULL;
1212 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1214 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1215 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1217 if (TREE_CODE (node) == FUNCTION_DECL)
1219 DECL_STRUCT_FUNCTION (t) = NULL;
1220 t->decl_with_vis.symtab_node = NULL;
1223 else if (TREE_CODE_CLASS (code) == tcc_type)
1225 TYPE_UID (t) = next_type_uid++;
1226 /* The following is so that the debug code for
1227 the copy is different from the original type.
1228 The two statements usually duplicate each other
1229 (because they clear fields of the same union),
1230 but the optimizer should catch that. */
1231 TYPE_SYMTAB_ADDRESS (t) = 0;
1232 TYPE_SYMTAB_DIE (t) = 0;
1234 /* Do not copy the values cache. */
1235 if (TYPE_CACHED_VALUES_P (t))
1237 TYPE_CACHED_VALUES_P (t) = 0;
1238 TYPE_CACHED_VALUES (t) = NULL_TREE;
1241 else if (code == TARGET_OPTION_NODE)
1243 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1244 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1245 sizeof (struct cl_target_option));
1247 else if (code == OPTIMIZATION_NODE)
1249 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1250 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1251 sizeof (struct cl_optimization));
1254 return t;
1257 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1258 For example, this can copy a list made of TREE_LIST nodes. */
1260 tree
1261 copy_list (tree list)
1263 tree head;
1264 tree prev, next;
1266 if (list == 0)
1267 return 0;
1269 head = prev = copy_node (list);
1270 next = TREE_CHAIN (list);
1271 while (next)
1273 TREE_CHAIN (prev) = copy_node (next);
1274 prev = TREE_CHAIN (prev);
1275 next = TREE_CHAIN (next);
1277 return head;
1281 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1282 INTEGER_CST with value CST and type TYPE. */
1284 static unsigned int
1285 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1287 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1288 /* We need extra HWIs if CST is an unsigned integer with its
1289 upper bit set. */
1290 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1291 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1292 return cst.get_len ();
1295 /* Return a new INTEGER_CST with value CST and type TYPE. */
1297 static tree
1298 build_new_int_cst (tree type, const wide_int &cst)
1300 unsigned int len = cst.get_len ();
1301 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1302 tree nt = make_int_cst (len, ext_len);
1304 if (len < ext_len)
1306 --ext_len;
1307 TREE_INT_CST_ELT (nt, ext_len)
1308 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1309 for (unsigned int i = len; i < ext_len; ++i)
1310 TREE_INT_CST_ELT (nt, i) = -1;
1312 else if (TYPE_UNSIGNED (type)
1313 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1315 len--;
1316 TREE_INT_CST_ELT (nt, len)
1317 = zext_hwi (cst.elt (len),
1318 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1321 for (unsigned int i = 0; i < len; i++)
1322 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1323 TREE_TYPE (nt) = type;
1324 return nt;
1327 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1329 static tree
1330 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1331 CXX_MEM_STAT_INFO)
1333 size_t length = sizeof (struct tree_poly_int_cst);
1334 record_node_allocation_statistics (POLY_INT_CST, length);
1336 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1338 TREE_SET_CODE (t, POLY_INT_CST);
1339 TREE_CONSTANT (t) = 1;
1340 TREE_TYPE (t) = type;
1341 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1342 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1343 return t;
1346 /* Create a constant tree that contains CST sign-extended to TYPE. */
1348 tree
1349 build_int_cst (tree type, poly_int64 cst)
1351 /* Support legacy code. */
1352 if (!type)
1353 type = integer_type_node;
1355 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1358 /* Create a constant tree that contains CST zero-extended to TYPE. */
1360 tree
1361 build_int_cstu (tree type, poly_uint64 cst)
1363 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1366 /* Create a constant tree that contains CST sign-extended to TYPE. */
1368 tree
1369 build_int_cst_type (tree type, poly_int64 cst)
1371 gcc_assert (type);
1372 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1375 /* Constructs tree in type TYPE from with value given by CST. Signedness
1376 of CST is assumed to be the same as the signedness of TYPE. */
1378 tree
1379 double_int_to_tree (tree type, double_int cst)
1381 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1384 /* We force the wide_int CST to the range of the type TYPE by sign or
1385 zero extending it. OVERFLOWABLE indicates if we are interested in
1386 overflow of the value, when >0 we are only interested in signed
1387 overflow, for <0 we are interested in any overflow. OVERFLOWED
1388 indicates whether overflow has already occurred. CONST_OVERFLOWED
1389 indicates whether constant overflow has already occurred. We force
1390 T's value to be within range of T's type (by setting to 0 or 1 all
1391 the bits outside the type's range). We set TREE_OVERFLOWED if,
1392 OVERFLOWED is nonzero,
1393 or OVERFLOWABLE is >0 and signed overflow occurs
1394 or OVERFLOWABLE is <0 and any overflow occurs
1395 We return a new tree node for the extended wide_int. The node
1396 is shared if no overflow flags are set. */
1399 tree
1400 force_fit_type (tree type, const poly_wide_int_ref &cst,
1401 int overflowable, bool overflowed)
1403 signop sign = TYPE_SIGN (type);
1405 /* If we need to set overflow flags, return a new unshared node. */
1406 if (overflowed || !wi::fits_to_tree_p (cst, type))
1408 if (overflowed
1409 || overflowable < 0
1410 || (overflowable > 0 && sign == SIGNED))
1412 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1413 sign);
1414 tree t;
1415 if (tmp.is_constant ())
1416 t = build_new_int_cst (type, tmp.coeffs[0]);
1417 else
1419 tree coeffs[NUM_POLY_INT_COEFFS];
1420 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1422 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1423 TREE_OVERFLOW (coeffs[i]) = 1;
1425 t = build_new_poly_int_cst (type, coeffs);
1427 TREE_OVERFLOW (t) = 1;
1428 return t;
1432 /* Else build a shared node. */
1433 return wide_int_to_tree (type, cst);
1436 /* These are the hash table functions for the hash table of INTEGER_CST
1437 nodes of a sizetype. */
1439 /* Return the hash code X, an INTEGER_CST. */
1441 hashval_t
1442 int_cst_hasher::hash (tree x)
1444 const_tree const t = x;
1445 hashval_t code = TYPE_UID (TREE_TYPE (t));
1446 int i;
1448 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1449 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1451 return code;
1454 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1455 is the same as that given by *Y, which is the same. */
1457 bool
1458 int_cst_hasher::equal (tree x, tree y)
1460 const_tree const xt = x;
1461 const_tree const yt = y;
1463 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1464 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1465 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1466 return false;
1468 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1469 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1470 return false;
1472 return true;
1475 /* Create an INT_CST node of TYPE and value CST.
1476 The returned node is always shared. For small integers we use a
1477 per-type vector cache, for larger ones we use a single hash table.
1478 The value is extended from its precision according to the sign of
1479 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1480 the upper bits and ensures that hashing and value equality based
1481 upon the underlying HOST_WIDE_INTs works without masking. */
1483 static tree
1484 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1486 tree t;
1487 int ix = -1;
1488 int limit = 0;
1490 gcc_assert (type);
1491 unsigned int prec = TYPE_PRECISION (type);
1492 signop sgn = TYPE_SIGN (type);
1494 /* Verify that everything is canonical. */
1495 int l = pcst.get_len ();
1496 if (l > 1)
1498 if (pcst.elt (l - 1) == 0)
1499 gcc_checking_assert (pcst.elt (l - 2) < 0);
1500 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1501 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1504 wide_int cst = wide_int::from (pcst, prec, sgn);
1505 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1507 if (ext_len == 1)
1509 /* We just need to store a single HOST_WIDE_INT. */
1510 HOST_WIDE_INT hwi;
1511 if (TYPE_UNSIGNED (type))
1512 hwi = cst.to_uhwi ();
1513 else
1514 hwi = cst.to_shwi ();
1516 switch (TREE_CODE (type))
1518 case NULLPTR_TYPE:
1519 gcc_assert (hwi == 0);
1520 /* Fallthru. */
1522 case POINTER_TYPE:
1523 case REFERENCE_TYPE:
1524 /* Cache NULL pointer and zero bounds. */
1525 if (hwi == 0)
1527 limit = 1;
1528 ix = 0;
1530 break;
1532 case BOOLEAN_TYPE:
1533 /* Cache false or true. */
1534 limit = 2;
1535 if (IN_RANGE (hwi, 0, 1))
1536 ix = hwi;
1537 break;
1539 case INTEGER_TYPE:
1540 case OFFSET_TYPE:
1541 if (TYPE_SIGN (type) == UNSIGNED)
1543 /* Cache [0, N). */
1544 limit = INTEGER_SHARE_LIMIT;
1545 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1546 ix = hwi;
1548 else
1550 /* Cache [-1, N). */
1551 limit = INTEGER_SHARE_LIMIT + 1;
1552 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1553 ix = hwi + 1;
1555 break;
1557 case ENUMERAL_TYPE:
1558 break;
1560 default:
1561 gcc_unreachable ();
1564 if (ix >= 0)
1566 /* Look for it in the type's vector of small shared ints. */
1567 if (!TYPE_CACHED_VALUES_P (type))
1569 TYPE_CACHED_VALUES_P (type) = 1;
1570 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1573 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1574 if (t)
1575 /* Make sure no one is clobbering the shared constant. */
1576 gcc_checking_assert (TREE_TYPE (t) == type
1577 && TREE_INT_CST_NUNITS (t) == 1
1578 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1579 && TREE_INT_CST_EXT_NUNITS (t) == 1
1580 && TREE_INT_CST_ELT (t, 0) == hwi);
1581 else
1583 /* Create a new shared int. */
1584 t = build_new_int_cst (type, cst);
1585 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1588 else
1590 /* Use the cache of larger shared ints, using int_cst_node as
1591 a temporary. */
1593 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1594 TREE_TYPE (int_cst_node) = type;
1596 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1597 t = *slot;
1598 if (!t)
1600 /* Insert this one into the hash table. */
1601 t = int_cst_node;
1602 *slot = t;
1603 /* Make a new node for next time round. */
1604 int_cst_node = make_int_cst (1, 1);
1608 else
1610 /* The value either hashes properly or we drop it on the floor
1611 for the gc to take care of. There will not be enough of them
1612 to worry about. */
1614 tree nt = build_new_int_cst (type, cst);
1615 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1616 t = *slot;
1617 if (!t)
1619 /* Insert this one into the hash table. */
1620 t = nt;
1621 *slot = t;
1623 else
1624 ggc_free (nt);
1627 return t;
1630 hashval_t
1631 poly_int_cst_hasher::hash (tree t)
1633 inchash::hash hstate;
1635 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1636 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1637 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1639 return hstate.end ();
1642 bool
1643 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1645 if (TREE_TYPE (x) != y.first)
1646 return false;
1647 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1648 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1649 return false;
1650 return true;
1653 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1654 The elements must also have type TYPE. */
1656 tree
1657 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1659 unsigned int prec = TYPE_PRECISION (type);
1660 gcc_assert (prec <= values.coeffs[0].get_precision ());
1661 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1663 inchash::hash h;
1664 h.add_int (TYPE_UID (type));
1665 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1666 h.add_wide_int (c.coeffs[i]);
1667 poly_int_cst_hasher::compare_type comp (type, &c);
1668 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1669 INSERT);
1670 if (*slot == NULL_TREE)
1672 tree coeffs[NUM_POLY_INT_COEFFS];
1673 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1674 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1675 *slot = build_new_poly_int_cst (type, coeffs);
1677 return *slot;
1680 /* Create a constant tree with value VALUE in type TYPE. */
1682 tree
1683 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1685 if (value.is_constant ())
1686 return wide_int_to_tree_1 (type, value.coeffs[0]);
1687 return build_poly_int_cst (type, value);
1690 void
1691 cache_integer_cst (tree t)
1693 tree type = TREE_TYPE (t);
1694 int ix = -1;
1695 int limit = 0;
1696 int prec = TYPE_PRECISION (type);
1698 gcc_assert (!TREE_OVERFLOW (t));
1700 switch (TREE_CODE (type))
1702 case NULLPTR_TYPE:
1703 gcc_assert (integer_zerop (t));
1704 /* Fallthru. */
1706 case POINTER_TYPE:
1707 case REFERENCE_TYPE:
1708 /* Cache NULL pointer. */
1709 if (integer_zerop (t))
1711 limit = 1;
1712 ix = 0;
1714 break;
1716 case BOOLEAN_TYPE:
1717 /* Cache false or true. */
1718 limit = 2;
1719 if (wi::ltu_p (wi::to_wide (t), 2))
1720 ix = TREE_INT_CST_ELT (t, 0);
1721 break;
1723 case INTEGER_TYPE:
1724 case OFFSET_TYPE:
1725 if (TYPE_UNSIGNED (type))
1727 /* Cache 0..N */
1728 limit = INTEGER_SHARE_LIMIT;
1730 /* This is a little hokie, but if the prec is smaller than
1731 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1732 obvious test will not get the correct answer. */
1733 if (prec < HOST_BITS_PER_WIDE_INT)
1735 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1736 ix = tree_to_uhwi (t);
1738 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1739 ix = tree_to_uhwi (t);
1741 else
1743 /* Cache -1..N */
1744 limit = INTEGER_SHARE_LIMIT + 1;
1746 if (integer_minus_onep (t))
1747 ix = 0;
1748 else if (!wi::neg_p (wi::to_wide (t)))
1750 if (prec < HOST_BITS_PER_WIDE_INT)
1752 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1753 ix = tree_to_shwi (t) + 1;
1755 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1756 ix = tree_to_shwi (t) + 1;
1759 break;
1761 case ENUMERAL_TYPE:
1762 break;
1764 default:
1765 gcc_unreachable ();
1768 if (ix >= 0)
1770 /* Look for it in the type's vector of small shared ints. */
1771 if (!TYPE_CACHED_VALUES_P (type))
1773 TYPE_CACHED_VALUES_P (type) = 1;
1774 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1777 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1778 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1780 else
1782 /* Use the cache of larger shared ints. */
1783 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1784 /* If there is already an entry for the number verify it's the
1785 same. */
1786 if (*slot)
1787 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1788 else
1789 /* Otherwise insert this one into the hash table. */
1790 *slot = t;
1795 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1796 and the rest are zeros. */
1798 tree
1799 build_low_bits_mask (tree type, unsigned bits)
1801 gcc_assert (bits <= TYPE_PRECISION (type));
1803 return wide_int_to_tree (type, wi::mask (bits, false,
1804 TYPE_PRECISION (type)));
1807 /* Checks that X is integer constant that can be expressed in (unsigned)
1808 HOST_WIDE_INT without loss of precision. */
1810 bool
1811 cst_and_fits_in_hwi (const_tree x)
1813 return (TREE_CODE (x) == INTEGER_CST
1814 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1817 /* Build a newly constructed VECTOR_CST with the given values of
1818 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1820 tree
1821 make_vector (unsigned log2_npatterns,
1822 unsigned int nelts_per_pattern MEM_STAT_DECL)
1824 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1825 tree t;
1826 unsigned npatterns = 1 << log2_npatterns;
1827 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1828 unsigned length = (sizeof (struct tree_vector)
1829 + (encoded_nelts - 1) * sizeof (tree));
1831 record_node_allocation_statistics (VECTOR_CST, length);
1833 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1835 TREE_SET_CODE (t, VECTOR_CST);
1836 TREE_CONSTANT (t) = 1;
1837 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1838 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1840 return t;
1843 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1844 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1846 tree
1847 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1849 unsigned HOST_WIDE_INT idx, nelts;
1850 tree value;
1852 /* We can't construct a VECTOR_CST for a variable number of elements. */
1853 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1854 tree_vector_builder vec (type, nelts, 1);
1855 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1857 if (TREE_CODE (value) == VECTOR_CST)
1859 /* If NELTS is constant then this must be too. */
1860 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1861 for (unsigned i = 0; i < sub_nelts; ++i)
1862 vec.quick_push (VECTOR_CST_ELT (value, i));
1864 else
1865 vec.quick_push (value);
1867 while (vec.length () < nelts)
1868 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1870 return vec.build ();
1873 /* Build a vector of type VECTYPE where all the elements are SCs. */
1874 tree
1875 build_vector_from_val (tree vectype, tree sc)
1877 unsigned HOST_WIDE_INT i, nunits;
1879 if (sc == error_mark_node)
1880 return sc;
1882 /* Verify that the vector type is suitable for SC. Note that there
1883 is some inconsistency in the type-system with respect to restrict
1884 qualifications of pointers. Vector types always have a main-variant
1885 element type and the qualification is applied to the vector-type.
1886 So TREE_TYPE (vector-type) does not return a properly qualified
1887 vector element-type. */
1888 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1889 TREE_TYPE (vectype)));
1891 if (CONSTANT_CLASS_P (sc))
1893 tree_vector_builder v (vectype, 1, 1);
1894 v.quick_push (sc);
1895 return v.build ();
1897 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1898 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1899 else
1901 vec<constructor_elt, va_gc> *v;
1902 vec_alloc (v, nunits);
1903 for (i = 0; i < nunits; ++i)
1904 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1905 return build_constructor (vectype, v);
1909 /* If TYPE is not a vector type, just return SC, otherwise return
1910 build_vector_from_val (TYPE, SC). */
1912 tree
1913 build_uniform_cst (tree type, tree sc)
1915 if (!VECTOR_TYPE_P (type))
1916 return sc;
1918 return build_vector_from_val (type, sc);
1921 /* Build a vector series of type TYPE in which element I has the value
1922 BASE + I * STEP. The result is a constant if BASE and STEP are constant
1923 and a VEC_SERIES_EXPR otherwise. */
1925 tree
1926 build_vec_series (tree type, tree base, tree step)
1928 if (integer_zerop (step))
1929 return build_vector_from_val (type, base);
1930 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
1932 tree_vector_builder builder (type, 1, 3);
1933 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
1934 wi::to_wide (base) + wi::to_wide (step));
1935 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
1936 wi::to_wide (elt1) + wi::to_wide (step));
1937 builder.quick_push (base);
1938 builder.quick_push (elt1);
1939 builder.quick_push (elt2);
1940 return builder.build ();
1942 return build2 (VEC_SERIES_EXPR, type, base, step);
1945 /* Return a vector with the same number of units and number of bits
1946 as VEC_TYPE, but in which the elements are a linear series of unsigned
1947 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
1949 tree
1950 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
1952 tree index_vec_type = vec_type;
1953 tree index_elt_type = TREE_TYPE (vec_type);
1954 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
1955 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
1957 index_elt_type = build_nonstandard_integer_type
1958 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
1959 index_vec_type = build_vector_type (index_elt_type, nunits);
1962 tree_vector_builder v (index_vec_type, 1, 3);
1963 for (unsigned int i = 0; i < 3; ++i)
1964 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
1965 return v.build ();
1968 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1969 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1971 void
1972 recompute_constructor_flags (tree c)
1974 unsigned int i;
1975 tree val;
1976 bool constant_p = true;
1977 bool side_effects_p = false;
1978 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1980 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1982 /* Mostly ctors will have elts that don't have side-effects, so
1983 the usual case is to scan all the elements. Hence a single
1984 loop for both const and side effects, rather than one loop
1985 each (with early outs). */
1986 if (!TREE_CONSTANT (val))
1987 constant_p = false;
1988 if (TREE_SIDE_EFFECTS (val))
1989 side_effects_p = true;
1992 TREE_SIDE_EFFECTS (c) = side_effects_p;
1993 TREE_CONSTANT (c) = constant_p;
1996 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1997 CONSTRUCTOR C. */
1999 void
2000 verify_constructor_flags (tree c)
2002 unsigned int i;
2003 tree val;
2004 bool constant_p = TREE_CONSTANT (c);
2005 bool side_effects_p = TREE_SIDE_EFFECTS (c);
2006 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2008 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2010 if (constant_p && !TREE_CONSTANT (val))
2011 internal_error ("non-constant element in constant CONSTRUCTOR");
2012 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
2013 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
2017 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2018 are in the vec pointed to by VALS. */
2019 tree
2020 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
2022 tree c = make_node (CONSTRUCTOR);
2024 TREE_TYPE (c) = type;
2025 CONSTRUCTOR_ELTS (c) = vals;
2027 recompute_constructor_flags (c);
2029 return c;
2032 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2033 INDEX and VALUE. */
2034 tree
2035 build_constructor_single (tree type, tree index, tree value)
2037 vec<constructor_elt, va_gc> *v;
2038 constructor_elt elt = {index, value};
2040 vec_alloc (v, 1);
2041 v->quick_push (elt);
2043 return build_constructor (type, v);
2047 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2048 are in a list pointed to by VALS. */
2049 tree
2050 build_constructor_from_list (tree type, tree vals)
2052 tree t;
2053 vec<constructor_elt, va_gc> *v = NULL;
2055 if (vals)
2057 vec_alloc (v, list_length (vals));
2058 for (t = vals; t; t = TREE_CHAIN (t))
2059 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2062 return build_constructor (type, v);
2065 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2066 of elements, provided as index/value pairs. */
2068 tree
2069 build_constructor_va (tree type, int nelts, ...)
2071 vec<constructor_elt, va_gc> *v = NULL;
2072 va_list p;
2074 va_start (p, nelts);
2075 vec_alloc (v, nelts);
2076 while (nelts--)
2078 tree index = va_arg (p, tree);
2079 tree value = va_arg (p, tree);
2080 CONSTRUCTOR_APPEND_ELT (v, index, value);
2082 va_end (p);
2083 return build_constructor (type, v);
2086 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2088 tree
2089 build_clobber (tree type)
2091 tree clobber = build_constructor (type, NULL);
2092 TREE_THIS_VOLATILE (clobber) = true;
2093 return clobber;
2096 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2098 tree
2099 build_fixed (tree type, FIXED_VALUE_TYPE f)
2101 tree v;
2102 FIXED_VALUE_TYPE *fp;
2104 v = make_node (FIXED_CST);
2105 fp = ggc_alloc<fixed_value> ();
2106 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2108 TREE_TYPE (v) = type;
2109 TREE_FIXED_CST_PTR (v) = fp;
2110 return v;
2113 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2115 tree
2116 build_real (tree type, REAL_VALUE_TYPE d)
2118 tree v;
2119 REAL_VALUE_TYPE *dp;
2120 int overflow = 0;
2122 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2123 Consider doing it via real_convert now. */
2125 v = make_node (REAL_CST);
2126 dp = ggc_alloc<real_value> ();
2127 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2129 TREE_TYPE (v) = type;
2130 TREE_REAL_CST_PTR (v) = dp;
2131 TREE_OVERFLOW (v) = overflow;
2132 return v;
2135 /* Like build_real, but first truncate D to the type. */
2137 tree
2138 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2140 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2143 /* Return a new REAL_CST node whose type is TYPE
2144 and whose value is the integer value of the INTEGER_CST node I. */
2146 REAL_VALUE_TYPE
2147 real_value_from_int_cst (const_tree type, const_tree i)
2149 REAL_VALUE_TYPE d;
2151 /* Clear all bits of the real value type so that we can later do
2152 bitwise comparisons to see if two values are the same. */
2153 memset (&d, 0, sizeof d);
2155 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2156 TYPE_SIGN (TREE_TYPE (i)));
2157 return d;
2160 /* Given a tree representing an integer constant I, return a tree
2161 representing the same value as a floating-point constant of type TYPE. */
2163 tree
2164 build_real_from_int_cst (tree type, const_tree i)
2166 tree v;
2167 int overflow = TREE_OVERFLOW (i);
2169 v = build_real (type, real_value_from_int_cst (type, i));
2171 TREE_OVERFLOW (v) |= overflow;
2172 return v;
2175 /* Return a newly constructed STRING_CST node whose value is
2176 the LEN characters at STR.
2177 Note that for a C string literal, LEN should include the trailing NUL.
2178 The TREE_TYPE is not initialized. */
2180 tree
2181 build_string (int len, const char *str)
2183 tree s;
2184 size_t length;
2186 /* Do not waste bytes provided by padding of struct tree_string. */
2187 length = len + offsetof (struct tree_string, str) + 1;
2189 record_node_allocation_statistics (STRING_CST, length);
2191 s = (tree) ggc_internal_alloc (length);
2193 memset (s, 0, sizeof (struct tree_typed));
2194 TREE_SET_CODE (s, STRING_CST);
2195 TREE_CONSTANT (s) = 1;
2196 TREE_STRING_LENGTH (s) = len;
2197 memcpy (s->string.str, str, len);
2198 s->string.str[len] = '\0';
2200 return s;
2203 /* Return a newly constructed COMPLEX_CST node whose value is
2204 specified by the real and imaginary parts REAL and IMAG.
2205 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2206 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2208 tree
2209 build_complex (tree type, tree real, tree imag)
2211 gcc_assert (CONSTANT_CLASS_P (real));
2212 gcc_assert (CONSTANT_CLASS_P (imag));
2214 tree t = make_node (COMPLEX_CST);
2216 TREE_REALPART (t) = real;
2217 TREE_IMAGPART (t) = imag;
2218 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2219 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2220 return t;
2223 /* Build a complex (inf +- 0i), such as for the result of cproj.
2224 TYPE is the complex tree type of the result. If NEG is true, the
2225 imaginary zero is negative. */
2227 tree
2228 build_complex_inf (tree type, bool neg)
2230 REAL_VALUE_TYPE rinf, rzero = dconst0;
2232 real_inf (&rinf);
2233 rzero.sign = neg;
2234 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2235 build_real (TREE_TYPE (type), rzero));
2238 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2239 element is set to 1. In particular, this is 1 + i for complex types. */
2241 tree
2242 build_each_one_cst (tree type)
2244 if (TREE_CODE (type) == COMPLEX_TYPE)
2246 tree scalar = build_one_cst (TREE_TYPE (type));
2247 return build_complex (type, scalar, scalar);
2249 else
2250 return build_one_cst (type);
2253 /* Return a constant of arithmetic type TYPE which is the
2254 multiplicative identity of the set TYPE. */
2256 tree
2257 build_one_cst (tree type)
2259 switch (TREE_CODE (type))
2261 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2262 case POINTER_TYPE: case REFERENCE_TYPE:
2263 case OFFSET_TYPE:
2264 return build_int_cst (type, 1);
2266 case REAL_TYPE:
2267 return build_real (type, dconst1);
2269 case FIXED_POINT_TYPE:
2270 /* We can only generate 1 for accum types. */
2271 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2272 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2274 case VECTOR_TYPE:
2276 tree scalar = build_one_cst (TREE_TYPE (type));
2278 return build_vector_from_val (type, scalar);
2281 case COMPLEX_TYPE:
2282 return build_complex (type,
2283 build_one_cst (TREE_TYPE (type)),
2284 build_zero_cst (TREE_TYPE (type)));
2286 default:
2287 gcc_unreachable ();
2291 /* Return an integer of type TYPE containing all 1's in as much precision as
2292 it contains, or a complex or vector whose subparts are such integers. */
2294 tree
2295 build_all_ones_cst (tree type)
2297 if (TREE_CODE (type) == COMPLEX_TYPE)
2299 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2300 return build_complex (type, scalar, scalar);
2302 else
2303 return build_minus_one_cst (type);
2306 /* Return a constant of arithmetic type TYPE which is the
2307 opposite of the multiplicative identity of the set TYPE. */
2309 tree
2310 build_minus_one_cst (tree type)
2312 switch (TREE_CODE (type))
2314 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2315 case POINTER_TYPE: case REFERENCE_TYPE:
2316 case OFFSET_TYPE:
2317 return build_int_cst (type, -1);
2319 case REAL_TYPE:
2320 return build_real (type, dconstm1);
2322 case FIXED_POINT_TYPE:
2323 /* We can only generate 1 for accum types. */
2324 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2325 return build_fixed (type,
2326 fixed_from_double_int (double_int_minus_one,
2327 SCALAR_TYPE_MODE (type)));
2329 case VECTOR_TYPE:
2331 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2333 return build_vector_from_val (type, scalar);
2336 case COMPLEX_TYPE:
2337 return build_complex (type,
2338 build_minus_one_cst (TREE_TYPE (type)),
2339 build_zero_cst (TREE_TYPE (type)));
2341 default:
2342 gcc_unreachable ();
2346 /* Build 0 constant of type TYPE. This is used by constructor folding
2347 and thus the constant should be represented in memory by
2348 zero(es). */
2350 tree
2351 build_zero_cst (tree type)
2353 switch (TREE_CODE (type))
2355 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2356 case POINTER_TYPE: case REFERENCE_TYPE:
2357 case OFFSET_TYPE: case NULLPTR_TYPE:
2358 return build_int_cst (type, 0);
2360 case REAL_TYPE:
2361 return build_real (type, dconst0);
2363 case FIXED_POINT_TYPE:
2364 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2366 case VECTOR_TYPE:
2368 tree scalar = build_zero_cst (TREE_TYPE (type));
2370 return build_vector_from_val (type, scalar);
2373 case COMPLEX_TYPE:
2375 tree zero = build_zero_cst (TREE_TYPE (type));
2377 return build_complex (type, zero, zero);
2380 default:
2381 if (!AGGREGATE_TYPE_P (type))
2382 return fold_convert (type, integer_zero_node);
2383 return build_constructor (type, NULL);
2388 /* Build a BINFO with LEN language slots. */
2390 tree
2391 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2393 tree t;
2394 size_t length = (offsetof (struct tree_binfo, base_binfos)
2395 + vec<tree, va_gc>::embedded_size (base_binfos));
2397 record_node_allocation_statistics (TREE_BINFO, length);
2399 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2401 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2403 TREE_SET_CODE (t, TREE_BINFO);
2405 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2407 return t;
2410 /* Create a CASE_LABEL_EXPR tree node and return it. */
2412 tree
2413 build_case_label (tree low_value, tree high_value, tree label_decl)
2415 tree t = make_node (CASE_LABEL_EXPR);
2417 TREE_TYPE (t) = void_type_node;
2418 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2420 CASE_LOW (t) = low_value;
2421 CASE_HIGH (t) = high_value;
2422 CASE_LABEL (t) = label_decl;
2423 CASE_CHAIN (t) = NULL_TREE;
2425 return t;
2428 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2429 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2430 The latter determines the length of the HOST_WIDE_INT vector. */
2432 tree
2433 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2435 tree t;
2436 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2437 + sizeof (struct tree_int_cst));
2439 gcc_assert (len);
2440 record_node_allocation_statistics (INTEGER_CST, length);
2442 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2444 TREE_SET_CODE (t, INTEGER_CST);
2445 TREE_INT_CST_NUNITS (t) = len;
2446 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2447 /* to_offset can only be applied to trees that are offset_int-sized
2448 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2449 must be exactly the precision of offset_int and so LEN is correct. */
2450 if (ext_len <= OFFSET_INT_ELTS)
2451 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2452 else
2453 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2455 TREE_CONSTANT (t) = 1;
2457 return t;
2460 /* Build a newly constructed TREE_VEC node of length LEN. */
2462 tree
2463 make_tree_vec (int len MEM_STAT_DECL)
2465 tree t;
2466 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2468 record_node_allocation_statistics (TREE_VEC, length);
2470 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2472 TREE_SET_CODE (t, TREE_VEC);
2473 TREE_VEC_LENGTH (t) = len;
2475 return t;
2478 /* Grow a TREE_VEC node to new length LEN. */
2480 tree
2481 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2483 gcc_assert (TREE_CODE (v) == TREE_VEC);
2485 int oldlen = TREE_VEC_LENGTH (v);
2486 gcc_assert (len > oldlen);
2488 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2489 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2491 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2493 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2495 TREE_VEC_LENGTH (v) = len;
2497 return v;
2500 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2501 fixed, and scalar, complex or vector. */
2503 bool
2504 zerop (const_tree expr)
2506 return (integer_zerop (expr)
2507 || real_zerop (expr)
2508 || fixed_zerop (expr));
2511 /* Return 1 if EXPR is the integer constant zero or a complex constant
2512 of zero, or a location wrapper for such a constant. */
2514 bool
2515 integer_zerop (const_tree expr)
2517 STRIP_ANY_LOCATION_WRAPPER (expr);
2519 switch (TREE_CODE (expr))
2521 case INTEGER_CST:
2522 return wi::to_wide (expr) == 0;
2523 case COMPLEX_CST:
2524 return (integer_zerop (TREE_REALPART (expr))
2525 && integer_zerop (TREE_IMAGPART (expr)));
2526 case VECTOR_CST:
2527 return (VECTOR_CST_NPATTERNS (expr) == 1
2528 && VECTOR_CST_DUPLICATE_P (expr)
2529 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2530 default:
2531 return false;
2535 /* Return 1 if EXPR is the integer constant one or the corresponding
2536 complex constant, or a location wrapper for such a constant. */
2538 bool
2539 integer_onep (const_tree expr)
2541 STRIP_ANY_LOCATION_WRAPPER (expr);
2543 switch (TREE_CODE (expr))
2545 case INTEGER_CST:
2546 return wi::eq_p (wi::to_widest (expr), 1);
2547 case COMPLEX_CST:
2548 return (integer_onep (TREE_REALPART (expr))
2549 && integer_zerop (TREE_IMAGPART (expr)));
2550 case VECTOR_CST:
2551 return (VECTOR_CST_NPATTERNS (expr) == 1
2552 && VECTOR_CST_DUPLICATE_P (expr)
2553 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2554 default:
2555 return false;
2559 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2560 return 1 if every piece is the integer constant one.
2561 Also return 1 for location wrappers for such a constant. */
2563 bool
2564 integer_each_onep (const_tree expr)
2566 STRIP_ANY_LOCATION_WRAPPER (expr);
2568 if (TREE_CODE (expr) == COMPLEX_CST)
2569 return (integer_onep (TREE_REALPART (expr))
2570 && integer_onep (TREE_IMAGPART (expr)));
2571 else
2572 return integer_onep (expr);
2575 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2576 it contains, or a complex or vector whose subparts are such integers,
2577 or a location wrapper for such a constant. */
2579 bool
2580 integer_all_onesp (const_tree expr)
2582 STRIP_ANY_LOCATION_WRAPPER (expr);
2584 if (TREE_CODE (expr) == COMPLEX_CST
2585 && integer_all_onesp (TREE_REALPART (expr))
2586 && integer_all_onesp (TREE_IMAGPART (expr)))
2587 return true;
2589 else if (TREE_CODE (expr) == VECTOR_CST)
2590 return (VECTOR_CST_NPATTERNS (expr) == 1
2591 && VECTOR_CST_DUPLICATE_P (expr)
2592 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2594 else if (TREE_CODE (expr) != INTEGER_CST)
2595 return false;
2597 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2598 == wi::to_wide (expr));
2601 /* Return 1 if EXPR is the integer constant minus one, or a location wrapper
2602 for such a constant. */
2604 bool
2605 integer_minus_onep (const_tree expr)
2607 STRIP_ANY_LOCATION_WRAPPER (expr);
2609 if (TREE_CODE (expr) == COMPLEX_CST)
2610 return (integer_all_onesp (TREE_REALPART (expr))
2611 && integer_zerop (TREE_IMAGPART (expr)));
2612 else
2613 return integer_all_onesp (expr);
2616 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2617 one bit on), or a location wrapper for such a constant. */
2619 bool
2620 integer_pow2p (const_tree expr)
2622 STRIP_ANY_LOCATION_WRAPPER (expr);
2624 if (TREE_CODE (expr) == COMPLEX_CST
2625 && integer_pow2p (TREE_REALPART (expr))
2626 && integer_zerop (TREE_IMAGPART (expr)))
2627 return true;
2629 if (TREE_CODE (expr) != INTEGER_CST)
2630 return false;
2632 return wi::popcount (wi::to_wide (expr)) == 1;
2635 /* Return 1 if EXPR is an integer constant other than zero or a
2636 complex constant other than zero, or a location wrapper for such a
2637 constant. */
2639 bool
2640 integer_nonzerop (const_tree expr)
2642 STRIP_ANY_LOCATION_WRAPPER (expr);
2644 return ((TREE_CODE (expr) == INTEGER_CST
2645 && wi::to_wide (expr) != 0)
2646 || (TREE_CODE (expr) == COMPLEX_CST
2647 && (integer_nonzerop (TREE_REALPART (expr))
2648 || integer_nonzerop (TREE_IMAGPART (expr)))));
2651 /* Return 1 if EXPR is the integer constant one. For vector,
2652 return 1 if every piece is the integer constant minus one
2653 (representing the value TRUE).
2654 Also return 1 for location wrappers for such a constant. */
2656 bool
2657 integer_truep (const_tree expr)
2659 STRIP_ANY_LOCATION_WRAPPER (expr);
2661 if (TREE_CODE (expr) == VECTOR_CST)
2662 return integer_all_onesp (expr);
2663 return integer_onep (expr);
2666 /* Return 1 if EXPR is the fixed-point constant zero, or a location wrapper
2667 for such a constant. */
2669 bool
2670 fixed_zerop (const_tree expr)
2672 STRIP_ANY_LOCATION_WRAPPER (expr);
2674 return (TREE_CODE (expr) == FIXED_CST
2675 && TREE_FIXED_CST (expr).data.is_zero ());
2678 /* Return the power of two represented by a tree node known to be a
2679 power of two. */
2682 tree_log2 (const_tree expr)
2684 if (TREE_CODE (expr) == COMPLEX_CST)
2685 return tree_log2 (TREE_REALPART (expr));
2687 return wi::exact_log2 (wi::to_wide (expr));
2690 /* Similar, but return the largest integer Y such that 2 ** Y is less
2691 than or equal to EXPR. */
2694 tree_floor_log2 (const_tree expr)
2696 if (TREE_CODE (expr) == COMPLEX_CST)
2697 return tree_log2 (TREE_REALPART (expr));
2699 return wi::floor_log2 (wi::to_wide (expr));
2702 /* Return number of known trailing zero bits in EXPR, or, if the value of
2703 EXPR is known to be zero, the precision of it's type. */
2705 unsigned int
2706 tree_ctz (const_tree expr)
2708 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2709 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2710 return 0;
2712 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2713 switch (TREE_CODE (expr))
2715 case INTEGER_CST:
2716 ret1 = wi::ctz (wi::to_wide (expr));
2717 return MIN (ret1, prec);
2718 case SSA_NAME:
2719 ret1 = wi::ctz (get_nonzero_bits (expr));
2720 return MIN (ret1, prec);
2721 case PLUS_EXPR:
2722 case MINUS_EXPR:
2723 case BIT_IOR_EXPR:
2724 case BIT_XOR_EXPR:
2725 case MIN_EXPR:
2726 case MAX_EXPR:
2727 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2728 if (ret1 == 0)
2729 return ret1;
2730 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2731 return MIN (ret1, ret2);
2732 case POINTER_PLUS_EXPR:
2733 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2734 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2735 /* Second operand is sizetype, which could be in theory
2736 wider than pointer's precision. Make sure we never
2737 return more than prec. */
2738 ret2 = MIN (ret2, prec);
2739 return MIN (ret1, ret2);
2740 case BIT_AND_EXPR:
2741 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2742 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2743 return MAX (ret1, ret2);
2744 case MULT_EXPR:
2745 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2746 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2747 return MIN (ret1 + ret2, prec);
2748 case LSHIFT_EXPR:
2749 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2750 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2751 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2753 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2754 return MIN (ret1 + ret2, prec);
2756 return ret1;
2757 case RSHIFT_EXPR:
2758 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2759 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2761 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2762 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2763 if (ret1 > ret2)
2764 return ret1 - ret2;
2766 return 0;
2767 case TRUNC_DIV_EXPR:
2768 case CEIL_DIV_EXPR:
2769 case FLOOR_DIV_EXPR:
2770 case ROUND_DIV_EXPR:
2771 case EXACT_DIV_EXPR:
2772 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2773 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2775 int l = tree_log2 (TREE_OPERAND (expr, 1));
2776 if (l >= 0)
2778 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2779 ret2 = l;
2780 if (ret1 > ret2)
2781 return ret1 - ret2;
2784 return 0;
2785 CASE_CONVERT:
2786 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2787 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2788 ret1 = prec;
2789 return MIN (ret1, prec);
2790 case SAVE_EXPR:
2791 return tree_ctz (TREE_OPERAND (expr, 0));
2792 case COND_EXPR:
2793 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2794 if (ret1 == 0)
2795 return 0;
2796 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2797 return MIN (ret1, ret2);
2798 case COMPOUND_EXPR:
2799 return tree_ctz (TREE_OPERAND (expr, 1));
2800 case ADDR_EXPR:
2801 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2802 if (ret1 > BITS_PER_UNIT)
2804 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2805 return MIN (ret1, prec);
2807 return 0;
2808 default:
2809 return 0;
2813 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2814 decimal float constants, so don't return 1 for them.
2815 Also return 1 for location wrappers around such a constant. */
2817 bool
2818 real_zerop (const_tree expr)
2820 STRIP_ANY_LOCATION_WRAPPER (expr);
2822 switch (TREE_CODE (expr))
2824 case REAL_CST:
2825 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2826 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2827 case COMPLEX_CST:
2828 return real_zerop (TREE_REALPART (expr))
2829 && real_zerop (TREE_IMAGPART (expr));
2830 case VECTOR_CST:
2832 /* Don't simply check for a duplicate because the predicate
2833 accepts both +0.0 and -0.0. */
2834 unsigned count = vector_cst_encoded_nelts (expr);
2835 for (unsigned int i = 0; i < count; ++i)
2836 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2837 return false;
2838 return true;
2840 default:
2841 return false;
2845 /* Return 1 if EXPR is the real constant one in real or complex form.
2846 Trailing zeroes matter for decimal float constants, so don't return
2847 1 for them.
2848 Also return 1 for location wrappers around such a constant. */
2850 bool
2851 real_onep (const_tree expr)
2853 STRIP_ANY_LOCATION_WRAPPER (expr);
2855 switch (TREE_CODE (expr))
2857 case REAL_CST:
2858 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2859 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2860 case COMPLEX_CST:
2861 return real_onep (TREE_REALPART (expr))
2862 && real_zerop (TREE_IMAGPART (expr));
2863 case VECTOR_CST:
2864 return (VECTOR_CST_NPATTERNS (expr) == 1
2865 && VECTOR_CST_DUPLICATE_P (expr)
2866 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2867 default:
2868 return false;
2872 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2873 matter for decimal float constants, so don't return 1 for them.
2874 Also return 1 for location wrappers around such a constant. */
2876 bool
2877 real_minus_onep (const_tree expr)
2879 STRIP_ANY_LOCATION_WRAPPER (expr);
2881 switch (TREE_CODE (expr))
2883 case REAL_CST:
2884 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2885 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2886 case COMPLEX_CST:
2887 return real_minus_onep (TREE_REALPART (expr))
2888 && real_zerop (TREE_IMAGPART (expr));
2889 case VECTOR_CST:
2890 return (VECTOR_CST_NPATTERNS (expr) == 1
2891 && VECTOR_CST_DUPLICATE_P (expr)
2892 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2893 default:
2894 return false;
2898 /* Nonzero if EXP is a constant or a cast of a constant. */
2900 bool
2901 really_constant_p (const_tree exp)
2903 /* This is not quite the same as STRIP_NOPS. It does more. */
2904 while (CONVERT_EXPR_P (exp)
2905 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2906 exp = TREE_OPERAND (exp, 0);
2907 return TREE_CONSTANT (exp);
2910 /* Return true if T holds a polynomial pointer difference, storing it in
2911 *VALUE if so. A true return means that T's precision is no greater
2912 than 64 bits, which is the largest address space we support, so *VALUE
2913 never loses precision. However, the signedness of the result does
2914 not necessarily match the signedness of T: sometimes an unsigned type
2915 like sizetype is used to encode a value that is actually negative. */
2917 bool
2918 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
2920 if (!t)
2921 return false;
2922 if (TREE_CODE (t) == INTEGER_CST)
2924 if (!cst_and_fits_in_hwi (t))
2925 return false;
2926 *value = int_cst_value (t);
2927 return true;
2929 if (POLY_INT_CST_P (t))
2931 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2932 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
2933 return false;
2934 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2935 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
2936 return true;
2938 return false;
2941 poly_int64
2942 tree_to_poly_int64 (const_tree t)
2944 gcc_assert (tree_fits_poly_int64_p (t));
2945 if (POLY_INT_CST_P (t))
2946 return poly_int_cst_value (t).force_shwi ();
2947 return TREE_INT_CST_LOW (t);
2950 poly_uint64
2951 tree_to_poly_uint64 (const_tree t)
2953 gcc_assert (tree_fits_poly_uint64_p (t));
2954 if (POLY_INT_CST_P (t))
2955 return poly_int_cst_value (t).force_uhwi ();
2956 return TREE_INT_CST_LOW (t);
2959 /* Return first list element whose TREE_VALUE is ELEM.
2960 Return 0 if ELEM is not in LIST. */
2962 tree
2963 value_member (tree elem, tree list)
2965 while (list)
2967 if (elem == TREE_VALUE (list))
2968 return list;
2969 list = TREE_CHAIN (list);
2971 return NULL_TREE;
2974 /* Return first list element whose TREE_PURPOSE is ELEM.
2975 Return 0 if ELEM is not in LIST. */
2977 tree
2978 purpose_member (const_tree elem, tree list)
2980 while (list)
2982 if (elem == TREE_PURPOSE (list))
2983 return list;
2984 list = TREE_CHAIN (list);
2986 return NULL_TREE;
2989 /* Return true if ELEM is in V. */
2991 bool
2992 vec_member (const_tree elem, vec<tree, va_gc> *v)
2994 unsigned ix;
2995 tree t;
2996 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2997 if (elem == t)
2998 return true;
2999 return false;
3002 /* Returns element number IDX (zero-origin) of chain CHAIN, or
3003 NULL_TREE. */
3005 tree
3006 chain_index (int idx, tree chain)
3008 for (; chain && idx > 0; --idx)
3009 chain = TREE_CHAIN (chain);
3010 return chain;
3013 /* Return nonzero if ELEM is part of the chain CHAIN. */
3015 bool
3016 chain_member (const_tree elem, const_tree chain)
3018 while (chain)
3020 if (elem == chain)
3021 return true;
3022 chain = DECL_CHAIN (chain);
3025 return false;
3028 /* Return the length of a chain of nodes chained through TREE_CHAIN.
3029 We expect a null pointer to mark the end of the chain.
3030 This is the Lisp primitive `length'. */
3033 list_length (const_tree t)
3035 const_tree p = t;
3036 #ifdef ENABLE_TREE_CHECKING
3037 const_tree q = t;
3038 #endif
3039 int len = 0;
3041 while (p)
3043 p = TREE_CHAIN (p);
3044 #ifdef ENABLE_TREE_CHECKING
3045 if (len % 2)
3046 q = TREE_CHAIN (q);
3047 gcc_assert (p != q);
3048 #endif
3049 len++;
3052 return len;
3055 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3056 UNION_TYPE TYPE, or NULL_TREE if none. */
3058 tree
3059 first_field (const_tree type)
3061 tree t = TYPE_FIELDS (type);
3062 while (t && TREE_CODE (t) != FIELD_DECL)
3063 t = TREE_CHAIN (t);
3064 return t;
3067 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3068 by modifying the last node in chain 1 to point to chain 2.
3069 This is the Lisp primitive `nconc'. */
3071 tree
3072 chainon (tree op1, tree op2)
3074 tree t1;
3076 if (!op1)
3077 return op2;
3078 if (!op2)
3079 return op1;
3081 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3082 continue;
3083 TREE_CHAIN (t1) = op2;
3085 #ifdef ENABLE_TREE_CHECKING
3087 tree t2;
3088 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3089 gcc_assert (t2 != t1);
3091 #endif
3093 return op1;
3096 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3098 tree
3099 tree_last (tree chain)
3101 tree next;
3102 if (chain)
3103 while ((next = TREE_CHAIN (chain)))
3104 chain = next;
3105 return chain;
3108 /* Reverse the order of elements in the chain T,
3109 and return the new head of the chain (old last element). */
3111 tree
3112 nreverse (tree t)
3114 tree prev = 0, decl, next;
3115 for (decl = t; decl; decl = next)
3117 /* We shouldn't be using this function to reverse BLOCK chains; we
3118 have blocks_nreverse for that. */
3119 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3120 next = TREE_CHAIN (decl);
3121 TREE_CHAIN (decl) = prev;
3122 prev = decl;
3124 return prev;
3127 /* Return a newly created TREE_LIST node whose
3128 purpose and value fields are PARM and VALUE. */
3130 tree
3131 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3133 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3134 TREE_PURPOSE (t) = parm;
3135 TREE_VALUE (t) = value;
3136 return t;
3139 /* Build a chain of TREE_LIST nodes from a vector. */
3141 tree
3142 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3144 tree ret = NULL_TREE;
3145 tree *pp = &ret;
3146 unsigned int i;
3147 tree t;
3148 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3150 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3151 pp = &TREE_CHAIN (*pp);
3153 return ret;
3156 /* Return a newly created TREE_LIST node whose
3157 purpose and value fields are PURPOSE and VALUE
3158 and whose TREE_CHAIN is CHAIN. */
3160 tree
3161 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3163 tree node;
3165 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3166 memset (node, 0, sizeof (struct tree_common));
3168 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3170 TREE_SET_CODE (node, TREE_LIST);
3171 TREE_CHAIN (node) = chain;
3172 TREE_PURPOSE (node) = purpose;
3173 TREE_VALUE (node) = value;
3174 return node;
3177 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3178 trees. */
3180 vec<tree, va_gc> *
3181 ctor_to_vec (tree ctor)
3183 vec<tree, va_gc> *vec;
3184 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3185 unsigned int ix;
3186 tree val;
3188 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3189 vec->quick_push (val);
3191 return vec;
3194 /* Return the size nominally occupied by an object of type TYPE
3195 when it resides in memory. The value is measured in units of bytes,
3196 and its data type is that normally used for type sizes
3197 (which is the first type created by make_signed_type or
3198 make_unsigned_type). */
3200 tree
3201 size_in_bytes_loc (location_t loc, const_tree type)
3203 tree t;
3205 if (type == error_mark_node)
3206 return integer_zero_node;
3208 type = TYPE_MAIN_VARIANT (type);
3209 t = TYPE_SIZE_UNIT (type);
3211 if (t == 0)
3213 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3214 return size_zero_node;
3217 return t;
3220 /* Return the size of TYPE (in bytes) as a wide integer
3221 or return -1 if the size can vary or is larger than an integer. */
3223 HOST_WIDE_INT
3224 int_size_in_bytes (const_tree type)
3226 tree t;
3228 if (type == error_mark_node)
3229 return 0;
3231 type = TYPE_MAIN_VARIANT (type);
3232 t = TYPE_SIZE_UNIT (type);
3234 if (t && tree_fits_uhwi_p (t))
3235 return TREE_INT_CST_LOW (t);
3236 else
3237 return -1;
3240 /* Return the maximum size of TYPE (in bytes) as a wide integer
3241 or return -1 if the size can vary or is larger than an integer. */
3243 HOST_WIDE_INT
3244 max_int_size_in_bytes (const_tree type)
3246 HOST_WIDE_INT size = -1;
3247 tree size_tree;
3249 /* If this is an array type, check for a possible MAX_SIZE attached. */
3251 if (TREE_CODE (type) == ARRAY_TYPE)
3253 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3255 if (size_tree && tree_fits_uhwi_p (size_tree))
3256 size = tree_to_uhwi (size_tree);
3259 /* If we still haven't been able to get a size, see if the language
3260 can compute a maximum size. */
3262 if (size == -1)
3264 size_tree = lang_hooks.types.max_size (type);
3266 if (size_tree && tree_fits_uhwi_p (size_tree))
3267 size = tree_to_uhwi (size_tree);
3270 return size;
3273 /* Return the bit position of FIELD, in bits from the start of the record.
3274 This is a tree of type bitsizetype. */
3276 tree
3277 bit_position (const_tree field)
3279 return bit_from_pos (DECL_FIELD_OFFSET (field),
3280 DECL_FIELD_BIT_OFFSET (field));
3283 /* Return the byte position of FIELD, in bytes from the start of the record.
3284 This is a tree of type sizetype. */
3286 tree
3287 byte_position (const_tree field)
3289 return byte_from_pos (DECL_FIELD_OFFSET (field),
3290 DECL_FIELD_BIT_OFFSET (field));
3293 /* Likewise, but return as an integer. It must be representable in
3294 that way (since it could be a signed value, we don't have the
3295 option of returning -1 like int_size_in_byte can. */
3297 HOST_WIDE_INT
3298 int_byte_position (const_tree field)
3300 return tree_to_shwi (byte_position (field));
3303 /* Return the strictest alignment, in bits, that T is known to have. */
3305 unsigned int
3306 expr_align (const_tree t)
3308 unsigned int align0, align1;
3310 switch (TREE_CODE (t))
3312 CASE_CONVERT: case NON_LVALUE_EXPR:
3313 /* If we have conversions, we know that the alignment of the
3314 object must meet each of the alignments of the types. */
3315 align0 = expr_align (TREE_OPERAND (t, 0));
3316 align1 = TYPE_ALIGN (TREE_TYPE (t));
3317 return MAX (align0, align1);
3319 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3320 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3321 case CLEANUP_POINT_EXPR:
3322 /* These don't change the alignment of an object. */
3323 return expr_align (TREE_OPERAND (t, 0));
3325 case COND_EXPR:
3326 /* The best we can do is say that the alignment is the least aligned
3327 of the two arms. */
3328 align0 = expr_align (TREE_OPERAND (t, 1));
3329 align1 = expr_align (TREE_OPERAND (t, 2));
3330 return MIN (align0, align1);
3332 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3333 meaningfully, it's always 1. */
3334 case LABEL_DECL: case CONST_DECL:
3335 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3336 case FUNCTION_DECL:
3337 gcc_assert (DECL_ALIGN (t) != 0);
3338 return DECL_ALIGN (t);
3340 default:
3341 break;
3344 /* Otherwise take the alignment from that of the type. */
3345 return TYPE_ALIGN (TREE_TYPE (t));
3348 /* Return, as a tree node, the number of elements for TYPE (which is an
3349 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3351 tree
3352 array_type_nelts (const_tree type)
3354 tree index_type, min, max;
3356 /* If they did it with unspecified bounds, then we should have already
3357 given an error about it before we got here. */
3358 if (! TYPE_DOMAIN (type))
3359 return error_mark_node;
3361 index_type = TYPE_DOMAIN (type);
3362 min = TYPE_MIN_VALUE (index_type);
3363 max = TYPE_MAX_VALUE (index_type);
3365 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3366 if (!max)
3367 return error_mark_node;
3369 return (integer_zerop (min)
3370 ? max
3371 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3374 /* If arg is static -- a reference to an object in static storage -- then
3375 return the object. This is not the same as the C meaning of `static'.
3376 If arg isn't static, return NULL. */
3378 tree
3379 staticp (tree arg)
3381 switch (TREE_CODE (arg))
3383 case FUNCTION_DECL:
3384 /* Nested functions are static, even though taking their address will
3385 involve a trampoline as we unnest the nested function and create
3386 the trampoline on the tree level. */
3387 return arg;
3389 case VAR_DECL:
3390 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3391 && ! DECL_THREAD_LOCAL_P (arg)
3392 && ! DECL_DLLIMPORT_P (arg)
3393 ? arg : NULL);
3395 case CONST_DECL:
3396 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3397 ? arg : NULL);
3399 case CONSTRUCTOR:
3400 return TREE_STATIC (arg) ? arg : NULL;
3402 case LABEL_DECL:
3403 case STRING_CST:
3404 return arg;
3406 case COMPONENT_REF:
3407 /* If the thing being referenced is not a field, then it is
3408 something language specific. */
3409 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3411 /* If we are referencing a bitfield, we can't evaluate an
3412 ADDR_EXPR at compile time and so it isn't a constant. */
3413 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3414 return NULL;
3416 return staticp (TREE_OPERAND (arg, 0));
3418 case BIT_FIELD_REF:
3419 return NULL;
3421 case INDIRECT_REF:
3422 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3424 case ARRAY_REF:
3425 case ARRAY_RANGE_REF:
3426 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3427 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3428 return staticp (TREE_OPERAND (arg, 0));
3429 else
3430 return NULL;
3432 case COMPOUND_LITERAL_EXPR:
3433 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3435 default:
3436 return NULL;
3443 /* Return whether OP is a DECL whose address is function-invariant. */
3445 bool
3446 decl_address_invariant_p (const_tree op)
3448 /* The conditions below are slightly less strict than the one in
3449 staticp. */
3451 switch (TREE_CODE (op))
3453 case PARM_DECL:
3454 case RESULT_DECL:
3455 case LABEL_DECL:
3456 case FUNCTION_DECL:
3457 return true;
3459 case VAR_DECL:
3460 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3461 || DECL_THREAD_LOCAL_P (op)
3462 || DECL_CONTEXT (op) == current_function_decl
3463 || decl_function_context (op) == current_function_decl)
3464 return true;
3465 break;
3467 case CONST_DECL:
3468 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3469 || decl_function_context (op) == current_function_decl)
3470 return true;
3471 break;
3473 default:
3474 break;
3477 return false;
3480 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3482 bool
3483 decl_address_ip_invariant_p (const_tree op)
3485 /* The conditions below are slightly less strict than the one in
3486 staticp. */
3488 switch (TREE_CODE (op))
3490 case LABEL_DECL:
3491 case FUNCTION_DECL:
3492 case STRING_CST:
3493 return true;
3495 case VAR_DECL:
3496 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3497 && !DECL_DLLIMPORT_P (op))
3498 || DECL_THREAD_LOCAL_P (op))
3499 return true;
3500 break;
3502 case CONST_DECL:
3503 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3504 return true;
3505 break;
3507 default:
3508 break;
3511 return false;
3515 /* Return true if T is function-invariant (internal function, does
3516 not handle arithmetic; that's handled in skip_simple_arithmetic and
3517 tree_invariant_p). */
3519 static bool
3520 tree_invariant_p_1 (tree t)
3522 tree op;
3524 if (TREE_CONSTANT (t)
3525 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3526 return true;
3528 switch (TREE_CODE (t))
3530 case SAVE_EXPR:
3531 return true;
3533 case ADDR_EXPR:
3534 op = TREE_OPERAND (t, 0);
3535 while (handled_component_p (op))
3537 switch (TREE_CODE (op))
3539 case ARRAY_REF:
3540 case ARRAY_RANGE_REF:
3541 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3542 || TREE_OPERAND (op, 2) != NULL_TREE
3543 || TREE_OPERAND (op, 3) != NULL_TREE)
3544 return false;
3545 break;
3547 case COMPONENT_REF:
3548 if (TREE_OPERAND (op, 2) != NULL_TREE)
3549 return false;
3550 break;
3552 default:;
3554 op = TREE_OPERAND (op, 0);
3557 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3559 default:
3560 break;
3563 return false;
3566 /* Return true if T is function-invariant. */
3568 bool
3569 tree_invariant_p (tree t)
3571 tree inner = skip_simple_arithmetic (t);
3572 return tree_invariant_p_1 (inner);
3575 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3576 Do this to any expression which may be used in more than one place,
3577 but must be evaluated only once.
3579 Normally, expand_expr would reevaluate the expression each time.
3580 Calling save_expr produces something that is evaluated and recorded
3581 the first time expand_expr is called on it. Subsequent calls to
3582 expand_expr just reuse the recorded value.
3584 The call to expand_expr that generates code that actually computes
3585 the value is the first call *at compile time*. Subsequent calls
3586 *at compile time* generate code to use the saved value.
3587 This produces correct result provided that *at run time* control
3588 always flows through the insns made by the first expand_expr
3589 before reaching the other places where the save_expr was evaluated.
3590 You, the caller of save_expr, must make sure this is so.
3592 Constants, and certain read-only nodes, are returned with no
3593 SAVE_EXPR because that is safe. Expressions containing placeholders
3594 are not touched; see tree.def for an explanation of what these
3595 are used for. */
3597 tree
3598 save_expr (tree expr)
3600 tree inner;
3602 /* If the tree evaluates to a constant, then we don't want to hide that
3603 fact (i.e. this allows further folding, and direct checks for constants).
3604 However, a read-only object that has side effects cannot be bypassed.
3605 Since it is no problem to reevaluate literals, we just return the
3606 literal node. */
3607 inner = skip_simple_arithmetic (expr);
3608 if (TREE_CODE (inner) == ERROR_MARK)
3609 return inner;
3611 if (tree_invariant_p_1 (inner))
3612 return expr;
3614 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3615 it means that the size or offset of some field of an object depends on
3616 the value within another field.
3618 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3619 and some variable since it would then need to be both evaluated once and
3620 evaluated more than once. Front-ends must assure this case cannot
3621 happen by surrounding any such subexpressions in their own SAVE_EXPR
3622 and forcing evaluation at the proper time. */
3623 if (contains_placeholder_p (inner))
3624 return expr;
3626 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3628 /* This expression might be placed ahead of a jump to ensure that the
3629 value was computed on both sides of the jump. So make sure it isn't
3630 eliminated as dead. */
3631 TREE_SIDE_EFFECTS (expr) = 1;
3632 return expr;
3635 /* Look inside EXPR into any simple arithmetic operations. Return the
3636 outermost non-arithmetic or non-invariant node. */
3638 tree
3639 skip_simple_arithmetic (tree expr)
3641 /* We don't care about whether this can be used as an lvalue in this
3642 context. */
3643 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3644 expr = TREE_OPERAND (expr, 0);
3646 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3647 a constant, it will be more efficient to not make another SAVE_EXPR since
3648 it will allow better simplification and GCSE will be able to merge the
3649 computations if they actually occur. */
3650 while (true)
3652 if (UNARY_CLASS_P (expr))
3653 expr = TREE_OPERAND (expr, 0);
3654 else if (BINARY_CLASS_P (expr))
3656 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3657 expr = TREE_OPERAND (expr, 0);
3658 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3659 expr = TREE_OPERAND (expr, 1);
3660 else
3661 break;
3663 else
3664 break;
3667 return expr;
3670 /* Look inside EXPR into simple arithmetic operations involving constants.
3671 Return the outermost non-arithmetic or non-constant node. */
3673 tree
3674 skip_simple_constant_arithmetic (tree expr)
3676 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3677 expr = TREE_OPERAND (expr, 0);
3679 while (true)
3681 if (UNARY_CLASS_P (expr))
3682 expr = TREE_OPERAND (expr, 0);
3683 else if (BINARY_CLASS_P (expr))
3685 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3686 expr = TREE_OPERAND (expr, 0);
3687 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3688 expr = TREE_OPERAND (expr, 1);
3689 else
3690 break;
3692 else
3693 break;
3696 return expr;
3699 /* Return which tree structure is used by T. */
3701 enum tree_node_structure_enum
3702 tree_node_structure (const_tree t)
3704 const enum tree_code code = TREE_CODE (t);
3705 return tree_node_structure_for_code (code);
3708 /* Set various status flags when building a CALL_EXPR object T. */
3710 static void
3711 process_call_operands (tree t)
3713 bool side_effects = TREE_SIDE_EFFECTS (t);
3714 bool read_only = false;
3715 int i = call_expr_flags (t);
3717 /* Calls have side-effects, except those to const or pure functions. */
3718 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3719 side_effects = true;
3720 /* Propagate TREE_READONLY of arguments for const functions. */
3721 if (i & ECF_CONST)
3722 read_only = true;
3724 if (!side_effects || read_only)
3725 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3727 tree op = TREE_OPERAND (t, i);
3728 if (op && TREE_SIDE_EFFECTS (op))
3729 side_effects = true;
3730 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3731 read_only = false;
3734 TREE_SIDE_EFFECTS (t) = side_effects;
3735 TREE_READONLY (t) = read_only;
3738 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3739 size or offset that depends on a field within a record. */
3741 bool
3742 contains_placeholder_p (const_tree exp)
3744 enum tree_code code;
3746 if (!exp)
3747 return 0;
3749 code = TREE_CODE (exp);
3750 if (code == PLACEHOLDER_EXPR)
3751 return 1;
3753 switch (TREE_CODE_CLASS (code))
3755 case tcc_reference:
3756 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3757 position computations since they will be converted into a
3758 WITH_RECORD_EXPR involving the reference, which will assume
3759 here will be valid. */
3760 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3762 case tcc_exceptional:
3763 if (code == TREE_LIST)
3764 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3765 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3766 break;
3768 case tcc_unary:
3769 case tcc_binary:
3770 case tcc_comparison:
3771 case tcc_expression:
3772 switch (code)
3774 case COMPOUND_EXPR:
3775 /* Ignoring the first operand isn't quite right, but works best. */
3776 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3778 case COND_EXPR:
3779 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3780 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3781 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3783 case SAVE_EXPR:
3784 /* The save_expr function never wraps anything containing
3785 a PLACEHOLDER_EXPR. */
3786 return 0;
3788 default:
3789 break;
3792 switch (TREE_CODE_LENGTH (code))
3794 case 1:
3795 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3796 case 2:
3797 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3798 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3799 default:
3800 return 0;
3803 case tcc_vl_exp:
3804 switch (code)
3806 case CALL_EXPR:
3808 const_tree arg;
3809 const_call_expr_arg_iterator iter;
3810 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3811 if (CONTAINS_PLACEHOLDER_P (arg))
3812 return 1;
3813 return 0;
3815 default:
3816 return 0;
3819 default:
3820 return 0;
3822 return 0;
3825 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3826 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3827 field positions. */
3829 static bool
3830 type_contains_placeholder_1 (const_tree type)
3832 /* If the size contains a placeholder or the parent type (component type in
3833 the case of arrays) type involves a placeholder, this type does. */
3834 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3835 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3836 || (!POINTER_TYPE_P (type)
3837 && TREE_TYPE (type)
3838 && type_contains_placeholder_p (TREE_TYPE (type))))
3839 return true;
3841 /* Now do type-specific checks. Note that the last part of the check above
3842 greatly limits what we have to do below. */
3843 switch (TREE_CODE (type))
3845 case VOID_TYPE:
3846 case COMPLEX_TYPE:
3847 case ENUMERAL_TYPE:
3848 case BOOLEAN_TYPE:
3849 case POINTER_TYPE:
3850 case OFFSET_TYPE:
3851 case REFERENCE_TYPE:
3852 case METHOD_TYPE:
3853 case FUNCTION_TYPE:
3854 case VECTOR_TYPE:
3855 case NULLPTR_TYPE:
3856 return false;
3858 case INTEGER_TYPE:
3859 case REAL_TYPE:
3860 case FIXED_POINT_TYPE:
3861 /* Here we just check the bounds. */
3862 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3863 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3865 case ARRAY_TYPE:
3866 /* We have already checked the component type above, so just check
3867 the domain type. Flexible array members have a null domain. */
3868 return TYPE_DOMAIN (type) ?
3869 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3871 case RECORD_TYPE:
3872 case UNION_TYPE:
3873 case QUAL_UNION_TYPE:
3875 tree field;
3877 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3878 if (TREE_CODE (field) == FIELD_DECL
3879 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3880 || (TREE_CODE (type) == QUAL_UNION_TYPE
3881 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3882 || type_contains_placeholder_p (TREE_TYPE (field))))
3883 return true;
3885 return false;
3888 default:
3889 gcc_unreachable ();
3893 /* Wrapper around above function used to cache its result. */
3895 bool
3896 type_contains_placeholder_p (tree type)
3898 bool result;
3900 /* If the contains_placeholder_bits field has been initialized,
3901 then we know the answer. */
3902 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3903 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3905 /* Indicate that we've seen this type node, and the answer is false.
3906 This is what we want to return if we run into recursion via fields. */
3907 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3909 /* Compute the real value. */
3910 result = type_contains_placeholder_1 (type);
3912 /* Store the real value. */
3913 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3915 return result;
3918 /* Push tree EXP onto vector QUEUE if it is not already present. */
3920 static void
3921 push_without_duplicates (tree exp, vec<tree> *queue)
3923 unsigned int i;
3924 tree iter;
3926 FOR_EACH_VEC_ELT (*queue, i, iter)
3927 if (simple_cst_equal (iter, exp) == 1)
3928 break;
3930 if (!iter)
3931 queue->safe_push (exp);
3934 /* Given a tree EXP, find all occurrences of references to fields
3935 in a PLACEHOLDER_EXPR and place them in vector REFS without
3936 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3937 we assume here that EXP contains only arithmetic expressions
3938 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3939 argument list. */
3941 void
3942 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3944 enum tree_code code = TREE_CODE (exp);
3945 tree inner;
3946 int i;
3948 /* We handle TREE_LIST and COMPONENT_REF separately. */
3949 if (code == TREE_LIST)
3951 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3952 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3954 else if (code == COMPONENT_REF)
3956 for (inner = TREE_OPERAND (exp, 0);
3957 REFERENCE_CLASS_P (inner);
3958 inner = TREE_OPERAND (inner, 0))
3961 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3962 push_without_duplicates (exp, refs);
3963 else
3964 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3966 else
3967 switch (TREE_CODE_CLASS (code))
3969 case tcc_constant:
3970 break;
3972 case tcc_declaration:
3973 /* Variables allocated to static storage can stay. */
3974 if (!TREE_STATIC (exp))
3975 push_without_duplicates (exp, refs);
3976 break;
3978 case tcc_expression:
3979 /* This is the pattern built in ada/make_aligning_type. */
3980 if (code == ADDR_EXPR
3981 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3983 push_without_duplicates (exp, refs);
3984 break;
3987 /* Fall through. */
3989 case tcc_exceptional:
3990 case tcc_unary:
3991 case tcc_binary:
3992 case tcc_comparison:
3993 case tcc_reference:
3994 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3995 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3996 break;
3998 case tcc_vl_exp:
3999 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4000 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4001 break;
4003 default:
4004 gcc_unreachable ();
4008 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
4009 return a tree with all occurrences of references to F in a
4010 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
4011 CONST_DECLs. Note that we assume here that EXP contains only
4012 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
4013 occurring only in their argument list. */
4015 tree
4016 substitute_in_expr (tree exp, tree f, tree r)
4018 enum tree_code code = TREE_CODE (exp);
4019 tree op0, op1, op2, op3;
4020 tree new_tree;
4022 /* We handle TREE_LIST and COMPONENT_REF separately. */
4023 if (code == TREE_LIST)
4025 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
4026 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
4027 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4028 return exp;
4030 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4032 else if (code == COMPONENT_REF)
4034 tree inner;
4036 /* If this expression is getting a value from a PLACEHOLDER_EXPR
4037 and it is the right field, replace it with R. */
4038 for (inner = TREE_OPERAND (exp, 0);
4039 REFERENCE_CLASS_P (inner);
4040 inner = TREE_OPERAND (inner, 0))
4043 /* The field. */
4044 op1 = TREE_OPERAND (exp, 1);
4046 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
4047 return r;
4049 /* If this expression hasn't been completed let, leave it alone. */
4050 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
4051 return exp;
4053 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4054 if (op0 == TREE_OPERAND (exp, 0))
4055 return exp;
4057 new_tree
4058 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4060 else
4061 switch (TREE_CODE_CLASS (code))
4063 case tcc_constant:
4064 return exp;
4066 case tcc_declaration:
4067 if (exp == f)
4068 return r;
4069 else
4070 return exp;
4072 case tcc_expression:
4073 if (exp == f)
4074 return r;
4076 /* Fall through. */
4078 case tcc_exceptional:
4079 case tcc_unary:
4080 case tcc_binary:
4081 case tcc_comparison:
4082 case tcc_reference:
4083 switch (TREE_CODE_LENGTH (code))
4085 case 0:
4086 return exp;
4088 case 1:
4089 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4090 if (op0 == TREE_OPERAND (exp, 0))
4091 return exp;
4093 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4094 break;
4096 case 2:
4097 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4098 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4100 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4101 return exp;
4103 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4104 break;
4106 case 3:
4107 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4108 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4109 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4111 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4112 && op2 == TREE_OPERAND (exp, 2))
4113 return exp;
4115 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4116 break;
4118 case 4:
4119 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4120 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4121 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4122 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4124 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4125 && op2 == TREE_OPERAND (exp, 2)
4126 && op3 == TREE_OPERAND (exp, 3))
4127 return exp;
4129 new_tree
4130 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4131 break;
4133 default:
4134 gcc_unreachable ();
4136 break;
4138 case tcc_vl_exp:
4140 int i;
4142 new_tree = NULL_TREE;
4144 /* If we are trying to replace F with a constant or with another
4145 instance of one of the arguments of the call, inline back
4146 functions which do nothing else than computing a value from
4147 the arguments they are passed. This makes it possible to
4148 fold partially or entirely the replacement expression. */
4149 if (code == CALL_EXPR)
4151 bool maybe_inline = false;
4152 if (CONSTANT_CLASS_P (r))
4153 maybe_inline = true;
4154 else
4155 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4156 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4158 maybe_inline = true;
4159 break;
4161 if (maybe_inline)
4163 tree t = maybe_inline_call_in_expr (exp);
4164 if (t)
4165 return SUBSTITUTE_IN_EXPR (t, f, r);
4169 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4171 tree op = TREE_OPERAND (exp, i);
4172 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4173 if (new_op != op)
4175 if (!new_tree)
4176 new_tree = copy_node (exp);
4177 TREE_OPERAND (new_tree, i) = new_op;
4181 if (new_tree)
4183 new_tree = fold (new_tree);
4184 if (TREE_CODE (new_tree) == CALL_EXPR)
4185 process_call_operands (new_tree);
4187 else
4188 return exp;
4190 break;
4192 default:
4193 gcc_unreachable ();
4196 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4198 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4199 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4201 return new_tree;
4204 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4205 for it within OBJ, a tree that is an object or a chain of references. */
4207 tree
4208 substitute_placeholder_in_expr (tree exp, tree obj)
4210 enum tree_code code = TREE_CODE (exp);
4211 tree op0, op1, op2, op3;
4212 tree new_tree;
4214 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4215 in the chain of OBJ. */
4216 if (code == PLACEHOLDER_EXPR)
4218 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4219 tree elt;
4221 for (elt = obj; elt != 0;
4222 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4223 || TREE_CODE (elt) == COND_EXPR)
4224 ? TREE_OPERAND (elt, 1)
4225 : (REFERENCE_CLASS_P (elt)
4226 || UNARY_CLASS_P (elt)
4227 || BINARY_CLASS_P (elt)
4228 || VL_EXP_CLASS_P (elt)
4229 || EXPRESSION_CLASS_P (elt))
4230 ? TREE_OPERAND (elt, 0) : 0))
4231 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4232 return elt;
4234 for (elt = obj; elt != 0;
4235 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4236 || TREE_CODE (elt) == COND_EXPR)
4237 ? TREE_OPERAND (elt, 1)
4238 : (REFERENCE_CLASS_P (elt)
4239 || UNARY_CLASS_P (elt)
4240 || BINARY_CLASS_P (elt)
4241 || VL_EXP_CLASS_P (elt)
4242 || EXPRESSION_CLASS_P (elt))
4243 ? TREE_OPERAND (elt, 0) : 0))
4244 if (POINTER_TYPE_P (TREE_TYPE (elt))
4245 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4246 == need_type))
4247 return fold_build1 (INDIRECT_REF, need_type, elt);
4249 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4250 survives until RTL generation, there will be an error. */
4251 return exp;
4254 /* TREE_LIST is special because we need to look at TREE_VALUE
4255 and TREE_CHAIN, not TREE_OPERANDS. */
4256 else if (code == TREE_LIST)
4258 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4259 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4260 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4261 return exp;
4263 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4265 else
4266 switch (TREE_CODE_CLASS (code))
4268 case tcc_constant:
4269 case tcc_declaration:
4270 return exp;
4272 case tcc_exceptional:
4273 case tcc_unary:
4274 case tcc_binary:
4275 case tcc_comparison:
4276 case tcc_expression:
4277 case tcc_reference:
4278 case tcc_statement:
4279 switch (TREE_CODE_LENGTH (code))
4281 case 0:
4282 return exp;
4284 case 1:
4285 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4286 if (op0 == TREE_OPERAND (exp, 0))
4287 return exp;
4289 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4290 break;
4292 case 2:
4293 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4294 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4296 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4297 return exp;
4299 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4300 break;
4302 case 3:
4303 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4304 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4305 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4307 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4308 && op2 == TREE_OPERAND (exp, 2))
4309 return exp;
4311 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4312 break;
4314 case 4:
4315 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4316 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4317 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4318 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4320 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4321 && op2 == TREE_OPERAND (exp, 2)
4322 && op3 == TREE_OPERAND (exp, 3))
4323 return exp;
4325 new_tree
4326 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4327 break;
4329 default:
4330 gcc_unreachable ();
4332 break;
4334 case tcc_vl_exp:
4336 int i;
4338 new_tree = NULL_TREE;
4340 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4342 tree op = TREE_OPERAND (exp, i);
4343 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4344 if (new_op != op)
4346 if (!new_tree)
4347 new_tree = copy_node (exp);
4348 TREE_OPERAND (new_tree, i) = new_op;
4352 if (new_tree)
4354 new_tree = fold (new_tree);
4355 if (TREE_CODE (new_tree) == CALL_EXPR)
4356 process_call_operands (new_tree);
4358 else
4359 return exp;
4361 break;
4363 default:
4364 gcc_unreachable ();
4367 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4369 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4370 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4372 return new_tree;
4376 /* Subroutine of stabilize_reference; this is called for subtrees of
4377 references. Any expression with side-effects must be put in a SAVE_EXPR
4378 to ensure that it is only evaluated once.
4380 We don't put SAVE_EXPR nodes around everything, because assigning very
4381 simple expressions to temporaries causes us to miss good opportunities
4382 for optimizations. Among other things, the opportunity to fold in the
4383 addition of a constant into an addressing mode often gets lost, e.g.
4384 "y[i+1] += x;". In general, we take the approach that we should not make
4385 an assignment unless we are forced into it - i.e., that any non-side effect
4386 operator should be allowed, and that cse should take care of coalescing
4387 multiple utterances of the same expression should that prove fruitful. */
4389 static tree
4390 stabilize_reference_1 (tree e)
4392 tree result;
4393 enum tree_code code = TREE_CODE (e);
4395 /* We cannot ignore const expressions because it might be a reference
4396 to a const array but whose index contains side-effects. But we can
4397 ignore things that are actual constant or that already have been
4398 handled by this function. */
4400 if (tree_invariant_p (e))
4401 return e;
4403 switch (TREE_CODE_CLASS (code))
4405 case tcc_exceptional:
4406 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4407 have side-effects. */
4408 if (code == STATEMENT_LIST)
4409 return save_expr (e);
4410 /* FALLTHRU */
4411 case tcc_type:
4412 case tcc_declaration:
4413 case tcc_comparison:
4414 case tcc_statement:
4415 case tcc_expression:
4416 case tcc_reference:
4417 case tcc_vl_exp:
4418 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4419 so that it will only be evaluated once. */
4420 /* The reference (r) and comparison (<) classes could be handled as
4421 below, but it is generally faster to only evaluate them once. */
4422 if (TREE_SIDE_EFFECTS (e))
4423 return save_expr (e);
4424 return e;
4426 case tcc_constant:
4427 /* Constants need no processing. In fact, we should never reach
4428 here. */
4429 return e;
4431 case tcc_binary:
4432 /* Division is slow and tends to be compiled with jumps,
4433 especially the division by powers of 2 that is often
4434 found inside of an array reference. So do it just once. */
4435 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4436 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4437 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4438 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4439 return save_expr (e);
4440 /* Recursively stabilize each operand. */
4441 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4442 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4443 break;
4445 case tcc_unary:
4446 /* Recursively stabilize each operand. */
4447 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4448 break;
4450 default:
4451 gcc_unreachable ();
4454 TREE_TYPE (result) = TREE_TYPE (e);
4455 TREE_READONLY (result) = TREE_READONLY (e);
4456 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4457 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4459 return result;
4462 /* Stabilize a reference so that we can use it any number of times
4463 without causing its operands to be evaluated more than once.
4464 Returns the stabilized reference. This works by means of save_expr,
4465 so see the caveats in the comments about save_expr.
4467 Also allows conversion expressions whose operands are references.
4468 Any other kind of expression is returned unchanged. */
4470 tree
4471 stabilize_reference (tree ref)
4473 tree result;
4474 enum tree_code code = TREE_CODE (ref);
4476 switch (code)
4478 case VAR_DECL:
4479 case PARM_DECL:
4480 case RESULT_DECL:
4481 /* No action is needed in this case. */
4482 return ref;
4484 CASE_CONVERT:
4485 case FLOAT_EXPR:
4486 case FIX_TRUNC_EXPR:
4487 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4488 break;
4490 case INDIRECT_REF:
4491 result = build_nt (INDIRECT_REF,
4492 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4493 break;
4495 case COMPONENT_REF:
4496 result = build_nt (COMPONENT_REF,
4497 stabilize_reference (TREE_OPERAND (ref, 0)),
4498 TREE_OPERAND (ref, 1), NULL_TREE);
4499 break;
4501 case BIT_FIELD_REF:
4502 result = build_nt (BIT_FIELD_REF,
4503 stabilize_reference (TREE_OPERAND (ref, 0)),
4504 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4505 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4506 break;
4508 case ARRAY_REF:
4509 result = build_nt (ARRAY_REF,
4510 stabilize_reference (TREE_OPERAND (ref, 0)),
4511 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4512 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4513 break;
4515 case ARRAY_RANGE_REF:
4516 result = build_nt (ARRAY_RANGE_REF,
4517 stabilize_reference (TREE_OPERAND (ref, 0)),
4518 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4519 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4520 break;
4522 case COMPOUND_EXPR:
4523 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4524 it wouldn't be ignored. This matters when dealing with
4525 volatiles. */
4526 return stabilize_reference_1 (ref);
4528 /* If arg isn't a kind of lvalue we recognize, make no change.
4529 Caller should recognize the error for an invalid lvalue. */
4530 default:
4531 return ref;
4533 case ERROR_MARK:
4534 return error_mark_node;
4537 TREE_TYPE (result) = TREE_TYPE (ref);
4538 TREE_READONLY (result) = TREE_READONLY (ref);
4539 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4540 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4542 return result;
4545 /* Low-level constructors for expressions. */
4547 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4548 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4550 void
4551 recompute_tree_invariant_for_addr_expr (tree t)
4553 tree node;
4554 bool tc = true, se = false;
4556 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4558 /* We started out assuming this address is both invariant and constant, but
4559 does not have side effects. Now go down any handled components and see if
4560 any of them involve offsets that are either non-constant or non-invariant.
4561 Also check for side-effects.
4563 ??? Note that this code makes no attempt to deal with the case where
4564 taking the address of something causes a copy due to misalignment. */
4566 #define UPDATE_FLAGS(NODE) \
4567 do { tree _node = (NODE); \
4568 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4569 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4571 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4572 node = TREE_OPERAND (node, 0))
4574 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4575 array reference (probably made temporarily by the G++ front end),
4576 so ignore all the operands. */
4577 if ((TREE_CODE (node) == ARRAY_REF
4578 || TREE_CODE (node) == ARRAY_RANGE_REF)
4579 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4581 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4582 if (TREE_OPERAND (node, 2))
4583 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4584 if (TREE_OPERAND (node, 3))
4585 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4587 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4588 FIELD_DECL, apparently. The G++ front end can put something else
4589 there, at least temporarily. */
4590 else if (TREE_CODE (node) == COMPONENT_REF
4591 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4593 if (TREE_OPERAND (node, 2))
4594 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4598 node = lang_hooks.expr_to_decl (node, &tc, &se);
4600 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4601 the address, since &(*a)->b is a form of addition. If it's a constant, the
4602 address is constant too. If it's a decl, its address is constant if the
4603 decl is static. Everything else is not constant and, furthermore,
4604 taking the address of a volatile variable is not volatile. */
4605 if (TREE_CODE (node) == INDIRECT_REF
4606 || TREE_CODE (node) == MEM_REF)
4607 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4608 else if (CONSTANT_CLASS_P (node))
4610 else if (DECL_P (node))
4611 tc &= (staticp (node) != NULL_TREE);
4612 else
4614 tc = false;
4615 se |= TREE_SIDE_EFFECTS (node);
4619 TREE_CONSTANT (t) = tc;
4620 TREE_SIDE_EFFECTS (t) = se;
4621 #undef UPDATE_FLAGS
4624 /* Build an expression of code CODE, data type TYPE, and operands as
4625 specified. Expressions and reference nodes can be created this way.
4626 Constants, decls, types and misc nodes cannot be.
4628 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4629 enough for all extant tree codes. */
4631 tree
4632 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4634 tree t;
4636 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4638 t = make_node (code PASS_MEM_STAT);
4639 TREE_TYPE (t) = tt;
4641 return t;
4644 tree
4645 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4647 int length = sizeof (struct tree_exp);
4648 tree t;
4650 record_node_allocation_statistics (code, length);
4652 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4654 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4656 memset (t, 0, sizeof (struct tree_common));
4658 TREE_SET_CODE (t, code);
4660 TREE_TYPE (t) = type;
4661 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4662 TREE_OPERAND (t, 0) = node;
4663 if (node && !TYPE_P (node))
4665 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4666 TREE_READONLY (t) = TREE_READONLY (node);
4669 if (TREE_CODE_CLASS (code) == tcc_statement)
4671 if (code != DEBUG_BEGIN_STMT)
4672 TREE_SIDE_EFFECTS (t) = 1;
4674 else switch (code)
4676 case VA_ARG_EXPR:
4677 /* All of these have side-effects, no matter what their
4678 operands are. */
4679 TREE_SIDE_EFFECTS (t) = 1;
4680 TREE_READONLY (t) = 0;
4681 break;
4683 case INDIRECT_REF:
4684 /* Whether a dereference is readonly has nothing to do with whether
4685 its operand is readonly. */
4686 TREE_READONLY (t) = 0;
4687 break;
4689 case ADDR_EXPR:
4690 if (node)
4691 recompute_tree_invariant_for_addr_expr (t);
4692 break;
4694 default:
4695 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4696 && node && !TYPE_P (node)
4697 && TREE_CONSTANT (node))
4698 TREE_CONSTANT (t) = 1;
4699 if (TREE_CODE_CLASS (code) == tcc_reference
4700 && node && TREE_THIS_VOLATILE (node))
4701 TREE_THIS_VOLATILE (t) = 1;
4702 break;
4705 return t;
4708 #define PROCESS_ARG(N) \
4709 do { \
4710 TREE_OPERAND (t, N) = arg##N; \
4711 if (arg##N &&!TYPE_P (arg##N)) \
4713 if (TREE_SIDE_EFFECTS (arg##N)) \
4714 side_effects = 1; \
4715 if (!TREE_READONLY (arg##N) \
4716 && !CONSTANT_CLASS_P (arg##N)) \
4717 (void) (read_only = 0); \
4718 if (!TREE_CONSTANT (arg##N)) \
4719 (void) (constant = 0); \
4721 } while (0)
4723 tree
4724 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4726 bool constant, read_only, side_effects, div_by_zero;
4727 tree t;
4729 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4731 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4732 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4733 /* When sizetype precision doesn't match that of pointers
4734 we need to be able to build explicit extensions or truncations
4735 of the offset argument. */
4736 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4737 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4738 && TREE_CODE (arg1) == INTEGER_CST);
4740 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4741 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4742 && ptrofftype_p (TREE_TYPE (arg1)));
4744 t = make_node (code PASS_MEM_STAT);
4745 TREE_TYPE (t) = tt;
4747 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4748 result based on those same flags for the arguments. But if the
4749 arguments aren't really even `tree' expressions, we shouldn't be trying
4750 to do this. */
4752 /* Expressions without side effects may be constant if their
4753 arguments are as well. */
4754 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4755 || TREE_CODE_CLASS (code) == tcc_binary);
4756 read_only = 1;
4757 side_effects = TREE_SIDE_EFFECTS (t);
4759 switch (code)
4761 case TRUNC_DIV_EXPR:
4762 case CEIL_DIV_EXPR:
4763 case FLOOR_DIV_EXPR:
4764 case ROUND_DIV_EXPR:
4765 case EXACT_DIV_EXPR:
4766 case CEIL_MOD_EXPR:
4767 case FLOOR_MOD_EXPR:
4768 case ROUND_MOD_EXPR:
4769 case TRUNC_MOD_EXPR:
4770 div_by_zero = integer_zerop (arg1);
4771 break;
4772 default:
4773 div_by_zero = false;
4776 PROCESS_ARG (0);
4777 PROCESS_ARG (1);
4779 TREE_SIDE_EFFECTS (t) = side_effects;
4780 if (code == MEM_REF)
4782 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4784 tree o = TREE_OPERAND (arg0, 0);
4785 TREE_READONLY (t) = TREE_READONLY (o);
4786 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4789 else
4791 TREE_READONLY (t) = read_only;
4792 /* Don't mark X / 0 as constant. */
4793 TREE_CONSTANT (t) = constant && !div_by_zero;
4794 TREE_THIS_VOLATILE (t)
4795 = (TREE_CODE_CLASS (code) == tcc_reference
4796 && arg0 && TREE_THIS_VOLATILE (arg0));
4799 return t;
4803 tree
4804 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4805 tree arg2 MEM_STAT_DECL)
4807 bool constant, read_only, side_effects;
4808 tree t;
4810 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4811 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4813 t = make_node (code PASS_MEM_STAT);
4814 TREE_TYPE (t) = tt;
4816 read_only = 1;
4818 /* As a special exception, if COND_EXPR has NULL branches, we
4819 assume that it is a gimple statement and always consider
4820 it to have side effects. */
4821 if (code == COND_EXPR
4822 && tt == void_type_node
4823 && arg1 == NULL_TREE
4824 && arg2 == NULL_TREE)
4825 side_effects = true;
4826 else
4827 side_effects = TREE_SIDE_EFFECTS (t);
4829 PROCESS_ARG (0);
4830 PROCESS_ARG (1);
4831 PROCESS_ARG (2);
4833 if (code == COND_EXPR)
4834 TREE_READONLY (t) = read_only;
4836 TREE_SIDE_EFFECTS (t) = side_effects;
4837 TREE_THIS_VOLATILE (t)
4838 = (TREE_CODE_CLASS (code) == tcc_reference
4839 && arg0 && TREE_THIS_VOLATILE (arg0));
4841 return t;
4844 tree
4845 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4846 tree arg2, tree arg3 MEM_STAT_DECL)
4848 bool constant, read_only, side_effects;
4849 tree t;
4851 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4853 t = make_node (code PASS_MEM_STAT);
4854 TREE_TYPE (t) = tt;
4856 side_effects = TREE_SIDE_EFFECTS (t);
4858 PROCESS_ARG (0);
4859 PROCESS_ARG (1);
4860 PROCESS_ARG (2);
4861 PROCESS_ARG (3);
4863 TREE_SIDE_EFFECTS (t) = side_effects;
4864 TREE_THIS_VOLATILE (t)
4865 = (TREE_CODE_CLASS (code) == tcc_reference
4866 && arg0 && TREE_THIS_VOLATILE (arg0));
4868 return t;
4871 tree
4872 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4873 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4875 bool constant, read_only, side_effects;
4876 tree t;
4878 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4880 t = make_node (code PASS_MEM_STAT);
4881 TREE_TYPE (t) = tt;
4883 side_effects = TREE_SIDE_EFFECTS (t);
4885 PROCESS_ARG (0);
4886 PROCESS_ARG (1);
4887 PROCESS_ARG (2);
4888 PROCESS_ARG (3);
4889 PROCESS_ARG (4);
4891 TREE_SIDE_EFFECTS (t) = side_effects;
4892 if (code == TARGET_MEM_REF)
4894 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4896 tree o = TREE_OPERAND (arg0, 0);
4897 TREE_READONLY (t) = TREE_READONLY (o);
4898 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4901 else
4902 TREE_THIS_VOLATILE (t)
4903 = (TREE_CODE_CLASS (code) == tcc_reference
4904 && arg0 && TREE_THIS_VOLATILE (arg0));
4906 return t;
4909 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4910 on the pointer PTR. */
4912 tree
4913 build_simple_mem_ref_loc (location_t loc, tree ptr)
4915 poly_int64 offset = 0;
4916 tree ptype = TREE_TYPE (ptr);
4917 tree tem;
4918 /* For convenience allow addresses that collapse to a simple base
4919 and offset. */
4920 if (TREE_CODE (ptr) == ADDR_EXPR
4921 && (handled_component_p (TREE_OPERAND (ptr, 0))
4922 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4924 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4925 gcc_assert (ptr);
4926 if (TREE_CODE (ptr) == MEM_REF)
4928 offset += mem_ref_offset (ptr).force_shwi ();
4929 ptr = TREE_OPERAND (ptr, 0);
4931 else
4932 ptr = build_fold_addr_expr (ptr);
4933 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4935 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4936 ptr, build_int_cst (ptype, offset));
4937 SET_EXPR_LOCATION (tem, loc);
4938 return tem;
4941 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4943 poly_offset_int
4944 mem_ref_offset (const_tree t)
4946 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
4947 SIGNED);
4950 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4951 offsetted by OFFSET units. */
4953 tree
4954 build_invariant_address (tree type, tree base, poly_int64 offset)
4956 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4957 build_fold_addr_expr (base),
4958 build_int_cst (ptr_type_node, offset));
4959 tree addr = build1 (ADDR_EXPR, type, ref);
4960 recompute_tree_invariant_for_addr_expr (addr);
4961 return addr;
4964 /* Similar except don't specify the TREE_TYPE
4965 and leave the TREE_SIDE_EFFECTS as 0.
4966 It is permissible for arguments to be null,
4967 or even garbage if their values do not matter. */
4969 tree
4970 build_nt (enum tree_code code, ...)
4972 tree t;
4973 int length;
4974 int i;
4975 va_list p;
4977 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4979 va_start (p, code);
4981 t = make_node (code);
4982 length = TREE_CODE_LENGTH (code);
4984 for (i = 0; i < length; i++)
4985 TREE_OPERAND (t, i) = va_arg (p, tree);
4987 va_end (p);
4988 return t;
4991 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4992 tree vec. */
4994 tree
4995 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4997 tree ret, t;
4998 unsigned int ix;
5000 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
5001 CALL_EXPR_FN (ret) = fn;
5002 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
5003 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
5004 CALL_EXPR_ARG (ret, ix) = t;
5005 return ret;
5008 /* Create a DECL_... node of code CODE, name NAME (if non-null)
5009 and data type TYPE.
5010 We do NOT enter this node in any sort of symbol table.
5012 LOC is the location of the decl.
5014 layout_decl is used to set up the decl's storage layout.
5015 Other slots are initialized to 0 or null pointers. */
5017 tree
5018 build_decl (location_t loc, enum tree_code code, tree name,
5019 tree type MEM_STAT_DECL)
5021 tree t;
5023 t = make_node (code PASS_MEM_STAT);
5024 DECL_SOURCE_LOCATION (t) = loc;
5026 /* if (type == error_mark_node)
5027 type = integer_type_node; */
5028 /* That is not done, deliberately, so that having error_mark_node
5029 as the type can suppress useless errors in the use of this variable. */
5031 DECL_NAME (t) = name;
5032 TREE_TYPE (t) = type;
5034 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
5035 layout_decl (t, 0);
5037 return t;
5040 /* Builds and returns function declaration with NAME and TYPE. */
5042 tree
5043 build_fn_decl (const char *name, tree type)
5045 tree id = get_identifier (name);
5046 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
5048 DECL_EXTERNAL (decl) = 1;
5049 TREE_PUBLIC (decl) = 1;
5050 DECL_ARTIFICIAL (decl) = 1;
5051 TREE_NOTHROW (decl) = 1;
5053 return decl;
5056 vec<tree, va_gc> *all_translation_units;
5058 /* Builds a new translation-unit decl with name NAME, queues it in the
5059 global list of translation-unit decls and returns it. */
5061 tree
5062 build_translation_unit_decl (tree name)
5064 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5065 name, NULL_TREE);
5066 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5067 vec_safe_push (all_translation_units, tu);
5068 return tu;
5072 /* BLOCK nodes are used to represent the structure of binding contours
5073 and declarations, once those contours have been exited and their contents
5074 compiled. This information is used for outputting debugging info. */
5076 tree
5077 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5079 tree block = make_node (BLOCK);
5081 BLOCK_VARS (block) = vars;
5082 BLOCK_SUBBLOCKS (block) = subblocks;
5083 BLOCK_SUPERCONTEXT (block) = supercontext;
5084 BLOCK_CHAIN (block) = chain;
5085 return block;
5089 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5091 LOC is the location to use in tree T. */
5093 void
5094 protected_set_expr_location (tree t, location_t loc)
5096 if (CAN_HAVE_LOCATION_P (t))
5097 SET_EXPR_LOCATION (t, loc);
5100 /* Data used when collecting DECLs and TYPEs for language data removal. */
5102 struct free_lang_data_d
5104 free_lang_data_d () : decls (100), types (100) {}
5106 /* Worklist to avoid excessive recursion. */
5107 auto_vec<tree> worklist;
5109 /* Set of traversed objects. Used to avoid duplicate visits. */
5110 hash_set<tree> pset;
5112 /* Array of symbols to process with free_lang_data_in_decl. */
5113 auto_vec<tree> decls;
5115 /* Array of types to process with free_lang_data_in_type. */
5116 auto_vec<tree> types;
5120 /* Add type or decl T to one of the list of tree nodes that need their
5121 language data removed. The lists are held inside FLD. */
5123 static void
5124 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5126 if (DECL_P (t))
5127 fld->decls.safe_push (t);
5128 else if (TYPE_P (t))
5129 fld->types.safe_push (t);
5130 else
5131 gcc_unreachable ();
5134 /* Push tree node T into FLD->WORKLIST. */
5136 static inline void
5137 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5139 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5140 fld->worklist.safe_push ((t));
5145 /* Return simplified TYPE_NAME of TYPE. */
5147 static tree
5148 fld_simplified_type_name (tree type)
5150 if (!TYPE_NAME (type) || TREE_CODE (TYPE_NAME (type)) != TYPE_DECL)
5151 return TYPE_NAME (type);
5152 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5153 TYPE_DECL if the type doesn't have linkage.
5154 this must match fld_ */
5155 if (type != TYPE_MAIN_VARIANT (type)
5156 || (!DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type))
5157 && (TREE_CODE (type) != RECORD_TYPE
5158 || !TYPE_BINFO (type)
5159 || !BINFO_VTABLE (TYPE_BINFO (type)))))
5160 return DECL_NAME (TYPE_NAME (type));
5161 return TYPE_NAME (type);
5164 /* Do same comparsion as check_qualified_type skipping lang part of type
5165 and be more permissive about type names: we only care that names are
5166 same (for diagnostics) and that ODR names are the same.
5167 If INNER_TYPE is non-NULL, be sure that TREE_TYPE match it. */
5169 static bool
5170 fld_type_variant_equal_p (tree t, tree v, tree inner_type)
5172 if (TYPE_QUALS (t) != TYPE_QUALS (v)
5173 /* We want to match incomplete variants with complete types.
5174 In this case we need to ignore alignment. */
5175 || ((!RECORD_OR_UNION_TYPE_P (t) || COMPLETE_TYPE_P (v))
5176 && (TYPE_ALIGN (t) != TYPE_ALIGN (v)
5177 || TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (v)))
5178 || fld_simplified_type_name (t) != fld_simplified_type_name (v)
5179 || !attribute_list_equal (TYPE_ATTRIBUTES (t),
5180 TYPE_ATTRIBUTES (v))
5181 || (inner_type && TREE_TYPE (v) != inner_type))
5182 return false;
5184 return true;
5187 /* Find variant of FIRST that match T and create new one if necessary.
5188 Set TREE_TYPE to INNER_TYPE if non-NULL. */
5190 static tree
5191 fld_type_variant (tree first, tree t, struct free_lang_data_d *fld,
5192 tree inner_type = NULL)
5194 if (first == TYPE_MAIN_VARIANT (t))
5195 return t;
5196 for (tree v = first; v; v = TYPE_NEXT_VARIANT (v))
5197 if (fld_type_variant_equal_p (t, v, inner_type))
5198 return v;
5199 tree v = build_variant_type_copy (first);
5200 TYPE_READONLY (v) = TYPE_READONLY (t);
5201 TYPE_VOLATILE (v) = TYPE_VOLATILE (t);
5202 TYPE_ATOMIC (v) = TYPE_ATOMIC (t);
5203 TYPE_RESTRICT (v) = TYPE_RESTRICT (t);
5204 TYPE_ADDR_SPACE (v) = TYPE_ADDR_SPACE (t);
5205 TYPE_NAME (v) = TYPE_NAME (t);
5206 TYPE_ATTRIBUTES (v) = TYPE_ATTRIBUTES (t);
5207 TYPE_CANONICAL (v) = TYPE_CANONICAL (t);
5208 /* Variants of incomplete types should have alignment
5209 set to BITS_PER_UNIT. Do not copy the actual alignment. */
5210 if (!RECORD_OR_UNION_TYPE_P (v) || COMPLETE_TYPE_P (v))
5212 SET_TYPE_ALIGN (v, TYPE_ALIGN (t));
5213 TYPE_USER_ALIGN (v) = TYPE_USER_ALIGN (t);
5215 if (inner_type)
5216 TREE_TYPE (v) = inner_type;
5217 gcc_checking_assert (fld_type_variant_equal_p (t,v, inner_type));
5218 if (!fld->pset.add (v))
5219 add_tree_to_fld_list (v, fld);
5220 return v;
5223 /* Map complete types to incomplete types. */
5225 static hash_map<tree, tree> *fld_incomplete_types;
5227 /* Map types to simplified types. */
5229 static hash_map<tree, tree> *fld_simplified_types;
5231 /* Produce variant of T whose TREE_TYPE is T2. If it is main variant,
5232 use MAP to prevent duplicates. */
5234 static tree
5235 fld_process_array_type (tree t, tree t2, hash_map<tree, tree> *map,
5236 struct free_lang_data_d *fld)
5238 if (TREE_TYPE (t) == t2)
5239 return t;
5241 if (TYPE_MAIN_VARIANT (t) != t)
5243 return fld_type_variant
5244 (fld_process_array_type (TYPE_MAIN_VARIANT (t),
5245 TYPE_MAIN_VARIANT (t2), map, fld),
5246 t, fld, t2);
5249 bool existed;
5250 tree &array
5251 = map->get_or_insert (t, &existed);
5252 if (!existed)
5254 array = build_array_type_1 (t2, TYPE_DOMAIN (t),
5255 TYPE_TYPELESS_STORAGE (t), false);
5256 TYPE_CANONICAL (array) = TYPE_CANONICAL (t);
5257 if (!fld->pset.add (array))
5258 add_tree_to_fld_list (array, fld);
5260 return array;
5263 /* Return CTX after removal of contexts that are not relevant */
5265 static tree
5266 fld_decl_context (tree ctx)
5268 /* Variably modified types are needed for tree_is_indexable to decide
5269 whether the type needs to go to local or global section.
5270 This code is semi-broken but for now it is easiest to keep contexts
5271 as expected. */
5272 if (ctx && TYPE_P (ctx)
5273 && !variably_modified_type_p (ctx, NULL_TREE))
5275 while (ctx && TYPE_P (ctx))
5276 ctx = TYPE_CONTEXT (ctx);
5278 return ctx;
5281 /* For T being aggregate type try to turn it into a incomplete variant.
5282 Return T if no simplification is possible. */
5284 static tree
5285 fld_incomplete_type_of (tree t, struct free_lang_data_d *fld)
5287 if (!t)
5288 return NULL;
5289 if (POINTER_TYPE_P (t))
5291 tree t2 = fld_incomplete_type_of (TREE_TYPE (t), fld);
5292 if (t2 != TREE_TYPE (t))
5294 tree first;
5295 if (TREE_CODE (t) == POINTER_TYPE)
5296 first = build_pointer_type_for_mode (t2, TYPE_MODE (t),
5297 TYPE_REF_CAN_ALIAS_ALL (t));
5298 else
5299 first = build_reference_type_for_mode (t2, TYPE_MODE (t),
5300 TYPE_REF_CAN_ALIAS_ALL (t));
5301 gcc_assert (TYPE_CANONICAL (t2) != t2
5302 && TYPE_CANONICAL (t2) == TYPE_CANONICAL (TREE_TYPE (t)));
5303 if (!fld->pset.add (first))
5304 add_tree_to_fld_list (first, fld);
5305 return fld_type_variant (first, t, fld);
5307 return t;
5309 if (TREE_CODE (t) == ARRAY_TYPE)
5310 return fld_process_array_type (t,
5311 fld_incomplete_type_of (TREE_TYPE (t), fld),
5312 fld_incomplete_types, fld);
5313 if ((!RECORD_OR_UNION_TYPE_P (t) && TREE_CODE (t) != ENUMERAL_TYPE)
5314 || !COMPLETE_TYPE_P (t))
5315 return t;
5316 if (TYPE_MAIN_VARIANT (t) == t)
5318 bool existed;
5319 tree &copy
5320 = fld_incomplete_types->get_or_insert (t, &existed);
5322 if (!existed)
5324 copy = build_distinct_type_copy (t);
5326 /* It is possible that type was not seen by free_lang_data yet. */
5327 if (!fld->pset.add (copy))
5328 add_tree_to_fld_list (copy, fld);
5329 TYPE_SIZE (copy) = NULL;
5330 TYPE_USER_ALIGN (copy) = 0;
5331 TYPE_SIZE_UNIT (copy) = NULL;
5332 TYPE_CANONICAL (copy) = TYPE_CANONICAL (t);
5333 TREE_ADDRESSABLE (copy) = 0;
5334 if (AGGREGATE_TYPE_P (t))
5336 SET_TYPE_MODE (copy, VOIDmode);
5337 SET_TYPE_ALIGN (copy, BITS_PER_UNIT);
5338 TYPE_TYPELESS_STORAGE (copy) = 0;
5339 TYPE_FIELDS (copy) = NULL;
5340 TYPE_BINFO (copy) = NULL;
5342 else
5343 TYPE_VALUES (copy) = NULL;
5345 /* Build copy of TYPE_DECL in TYPE_NAME if necessary.
5346 This is needed for ODR violation warnings to come out right (we
5347 want duplicate TYPE_DECLs whenever the type is duplicated because
5348 of ODR violation. Because lang data in the TYPE_DECL may not
5349 have been freed yet, rebuild it from scratch and copy relevant
5350 fields. */
5351 TYPE_NAME (copy) = fld_simplified_type_name (copy);
5352 tree name = TYPE_NAME (copy);
5354 if (name && TREE_CODE (name) == TYPE_DECL)
5356 gcc_checking_assert (TREE_TYPE (name) == t);
5357 tree name2 = build_decl (DECL_SOURCE_LOCATION (name), TYPE_DECL,
5358 DECL_NAME (name), copy);
5359 if (DECL_ASSEMBLER_NAME_SET_P (name))
5360 SET_DECL_ASSEMBLER_NAME (name2, DECL_ASSEMBLER_NAME (name));
5361 SET_DECL_ALIGN (name2, 0);
5362 DECL_CONTEXT (name2) = fld_decl_context
5363 (DECL_CONTEXT (name));
5364 TYPE_NAME (copy) = name2;
5367 return copy;
5369 return (fld_type_variant
5370 (fld_incomplete_type_of (TYPE_MAIN_VARIANT (t), fld), t, fld));
5373 /* Simplify type T for scenarios where we do not need complete pointer
5374 types. */
5376 static tree
5377 fld_simplified_type (tree t, struct free_lang_data_d *fld)
5379 if (!t)
5380 return t;
5381 if (POINTER_TYPE_P (t))
5382 return fld_incomplete_type_of (t, fld);
5383 /* FIXME: This triggers verification error, see PR88140. */
5384 if (TREE_CODE (t) == ARRAY_TYPE && 0)
5385 return fld_process_array_type (t, fld_simplified_type (TREE_TYPE (t), fld),
5386 fld_simplified_types, fld);
5387 return t;
5390 /* Reset the expression *EXPR_P, a size or position.
5392 ??? We could reset all non-constant sizes or positions. But it's cheap
5393 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5395 We need to reset self-referential sizes or positions because they cannot
5396 be gimplified and thus can contain a CALL_EXPR after the gimplification
5397 is finished, which will run afoul of LTO streaming. And they need to be
5398 reset to something essentially dummy but not constant, so as to preserve
5399 the properties of the object they are attached to. */
5401 static inline void
5402 free_lang_data_in_one_sizepos (tree *expr_p)
5404 tree expr = *expr_p;
5405 if (CONTAINS_PLACEHOLDER_P (expr))
5406 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5410 /* Reset all the fields in a binfo node BINFO. We only keep
5411 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5413 static void
5414 free_lang_data_in_binfo (tree binfo)
5416 unsigned i;
5417 tree t;
5419 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5421 BINFO_VIRTUALS (binfo) = NULL_TREE;
5422 BINFO_BASE_ACCESSES (binfo) = NULL;
5423 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5424 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5425 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
5427 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5428 free_lang_data_in_binfo (t);
5432 /* Reset all language specific information still present in TYPE. */
5434 static void
5435 free_lang_data_in_type (tree type, struct free_lang_data_d *fld)
5437 gcc_assert (TYPE_P (type));
5439 /* Give the FE a chance to remove its own data first. */
5440 lang_hooks.free_lang_data (type);
5442 TREE_LANG_FLAG_0 (type) = 0;
5443 TREE_LANG_FLAG_1 (type) = 0;
5444 TREE_LANG_FLAG_2 (type) = 0;
5445 TREE_LANG_FLAG_3 (type) = 0;
5446 TREE_LANG_FLAG_4 (type) = 0;
5447 TREE_LANG_FLAG_5 (type) = 0;
5448 TREE_LANG_FLAG_6 (type) = 0;
5450 TYPE_NEEDS_CONSTRUCTING (type) = 0;
5452 /* Purge non-marked variants from the variants chain, so that they
5453 don't reappear in the IL after free_lang_data. */
5454 while (TYPE_NEXT_VARIANT (type)
5455 && !fld->pset.contains (TYPE_NEXT_VARIANT (type)))
5457 tree t = TYPE_NEXT_VARIANT (type);
5458 TYPE_NEXT_VARIANT (type) = TYPE_NEXT_VARIANT (t);
5459 /* Turn the removed types into distinct types. */
5460 TYPE_MAIN_VARIANT (t) = t;
5461 TYPE_NEXT_VARIANT (t) = NULL_TREE;
5464 if (TREE_CODE (type) == FUNCTION_TYPE)
5466 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5467 /* Remove the const and volatile qualifiers from arguments. The
5468 C++ front end removes them, but the C front end does not,
5469 leading to false ODR violation errors when merging two
5470 instances of the same function signature compiled by
5471 different front ends. */
5472 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5474 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5475 tree arg_type = TREE_VALUE (p);
5477 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5479 int quals = TYPE_QUALS (arg_type)
5480 & ~TYPE_QUAL_CONST
5481 & ~TYPE_QUAL_VOLATILE;
5482 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5483 if (!fld->pset.add (TREE_VALUE (p)))
5484 free_lang_data_in_type (TREE_VALUE (p), fld);
5486 /* C++ FE uses TREE_PURPOSE to store initial values. */
5487 TREE_PURPOSE (p) = NULL;
5490 else if (TREE_CODE (type) == METHOD_TYPE)
5492 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5493 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5495 /* C++ FE uses TREE_PURPOSE to store initial values. */
5496 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5497 TREE_PURPOSE (p) = NULL;
5500 else if (RECORD_OR_UNION_TYPE_P (type))
5502 /* Remove members that are not FIELD_DECLs from the field list
5503 of an aggregate. These occur in C++. */
5504 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5505 if (TREE_CODE (member) == FIELD_DECL)
5506 prev = &DECL_CHAIN (member);
5507 else
5508 *prev = DECL_CHAIN (member);
5510 TYPE_VFIELD (type) = NULL_TREE;
5512 if (TYPE_BINFO (type))
5514 free_lang_data_in_binfo (TYPE_BINFO (type));
5515 /* We need to preserve link to bases and virtual table for all
5516 polymorphic types to make devirtualization machinery working. */
5517 if (!BINFO_VTABLE (TYPE_BINFO (type))
5518 || !flag_devirtualize)
5519 TYPE_BINFO (type) = NULL;
5522 else if (INTEGRAL_TYPE_P (type)
5523 || SCALAR_FLOAT_TYPE_P (type)
5524 || FIXED_POINT_TYPE_P (type))
5526 if (TREE_CODE (type) == ENUMERAL_TYPE)
5528 /* Type values are used only for C++ ODR checking. Drop them
5529 for all type variants and non-ODR types.
5530 For ODR types the data is freed in free_odr_warning_data. */
5531 if (TYPE_MAIN_VARIANT (type) != type
5532 || !type_with_linkage_p (type))
5533 TYPE_VALUES (type) = NULL;
5534 else
5535 /* Simplify representation by recording only values rather
5536 than const decls. */
5537 for (tree e = TYPE_VALUES (type); e; e = TREE_CHAIN (e))
5538 if (TREE_CODE (TREE_VALUE (e)) == CONST_DECL)
5539 TREE_VALUE (e) = DECL_INITIAL (TREE_VALUE (e));
5541 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5542 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5545 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5547 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5548 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5550 if (TYPE_CONTEXT (type)
5551 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5553 tree ctx = TYPE_CONTEXT (type);
5556 ctx = BLOCK_SUPERCONTEXT (ctx);
5558 while (ctx && TREE_CODE (ctx) == BLOCK);
5559 TYPE_CONTEXT (type) = ctx;
5562 TYPE_STUB_DECL (type) = NULL;
5563 TYPE_NAME (type) = fld_simplified_type_name (type);
5567 /* Return true if DECL may need an assembler name to be set. */
5569 static inline bool
5570 need_assembler_name_p (tree decl)
5572 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5573 Rule merging. This makes type_odr_p to return true on those types during
5574 LTO and by comparing the mangled name, we can say what types are intended
5575 to be equivalent across compilation unit.
5577 We do not store names of type_in_anonymous_namespace_p.
5579 Record, union and enumeration type have linkage that allows use
5580 to check type_in_anonymous_namespace_p. We do not mangle compound types
5581 that always can be compared structurally.
5583 Similarly for builtin types, we compare properties of their main variant.
5584 A special case are integer types where mangling do make differences
5585 between char/signed char/unsigned char etc. Storing name for these makes
5586 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5587 See cp/mangle.c:write_builtin_type for details. */
5589 if (TREE_CODE (decl) == TYPE_DECL)
5591 if (flag_lto_odr_type_mering
5592 && DECL_NAME (decl)
5593 && decl == TYPE_NAME (TREE_TYPE (decl))
5594 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5595 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5596 && (type_with_linkage_p (TREE_TYPE (decl))
5597 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5598 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5599 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5600 return false;
5602 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5603 if (!VAR_OR_FUNCTION_DECL_P (decl))
5604 return false;
5606 /* If DECL already has its assembler name set, it does not need a
5607 new one. */
5608 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5609 || DECL_ASSEMBLER_NAME_SET_P (decl))
5610 return false;
5612 /* Abstract decls do not need an assembler name. */
5613 if (DECL_ABSTRACT_P (decl))
5614 return false;
5616 /* For VAR_DECLs, only static, public and external symbols need an
5617 assembler name. */
5618 if (VAR_P (decl)
5619 && !TREE_STATIC (decl)
5620 && !TREE_PUBLIC (decl)
5621 && !DECL_EXTERNAL (decl))
5622 return false;
5624 if (TREE_CODE (decl) == FUNCTION_DECL)
5626 /* Do not set assembler name on builtins. Allow RTL expansion to
5627 decide whether to expand inline or via a regular call. */
5628 if (fndecl_built_in_p (decl)
5629 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5630 return false;
5632 /* Functions represented in the callgraph need an assembler name. */
5633 if (cgraph_node::get (decl) != NULL)
5634 return true;
5636 /* Unused and not public functions don't need an assembler name. */
5637 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5638 return false;
5641 return true;
5645 /* Reset all language specific information still present in symbol
5646 DECL. */
5648 static void
5649 free_lang_data_in_decl (tree decl, struct free_lang_data_d *fld)
5651 gcc_assert (DECL_P (decl));
5653 /* Give the FE a chance to remove its own data first. */
5654 lang_hooks.free_lang_data (decl);
5656 TREE_LANG_FLAG_0 (decl) = 0;
5657 TREE_LANG_FLAG_1 (decl) = 0;
5658 TREE_LANG_FLAG_2 (decl) = 0;
5659 TREE_LANG_FLAG_3 (decl) = 0;
5660 TREE_LANG_FLAG_4 (decl) = 0;
5661 TREE_LANG_FLAG_5 (decl) = 0;
5662 TREE_LANG_FLAG_6 (decl) = 0;
5664 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5665 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5666 if (TREE_CODE (decl) == FIELD_DECL)
5668 DECL_FCONTEXT (decl) = NULL;
5669 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5670 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5671 DECL_QUALIFIER (decl) = NULL_TREE;
5674 if (TREE_CODE (decl) == FUNCTION_DECL)
5676 struct cgraph_node *node;
5677 /* Frontends do not set TREE_ADDRESSABLE on public variables even though
5678 the address may be taken in other unit, so this flag has no practical
5679 use for middle-end.
5681 It would make more sense if frontends set TREE_ADDRESSABLE to 0 only
5682 for public objects that indeed cannot be adressed, but it is not
5683 the case. Set the flag to true so we do not get merge failures for
5684 i.e. virtual tables between units that take address of it and
5685 units that don't. */
5686 if (TREE_PUBLIC (decl))
5687 TREE_ADDRESSABLE (decl) = true;
5688 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5689 if (!(node = cgraph_node::get (decl))
5690 || (!node->definition && !node->clones))
5692 if (node)
5693 node->release_body ();
5694 else
5696 release_function_body (decl);
5697 DECL_ARGUMENTS (decl) = NULL;
5698 DECL_RESULT (decl) = NULL;
5699 DECL_INITIAL (decl) = error_mark_node;
5702 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5704 tree t;
5706 /* If DECL has a gimple body, then the context for its
5707 arguments must be DECL. Otherwise, it doesn't really
5708 matter, as we will not be emitting any code for DECL. In
5709 general, there may be other instances of DECL created by
5710 the front end and since PARM_DECLs are generally shared,
5711 their DECL_CONTEXT changes as the replicas of DECL are
5712 created. The only time where DECL_CONTEXT is important
5713 is for the FUNCTION_DECLs that have a gimple body (since
5714 the PARM_DECL will be used in the function's body). */
5715 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5716 DECL_CONTEXT (t) = decl;
5717 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5718 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5719 = target_option_default_node;
5720 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5721 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5722 = optimization_default_node;
5725 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5726 At this point, it is not needed anymore. */
5727 DECL_SAVED_TREE (decl) = NULL_TREE;
5729 /* Clear the abstract origin if it refers to a method.
5730 Otherwise dwarf2out.c will ICE as we splice functions out of
5731 TYPE_FIELDS and thus the origin will not be output
5732 correctly. */
5733 if (DECL_ABSTRACT_ORIGIN (decl)
5734 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5735 && RECORD_OR_UNION_TYPE_P
5736 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5737 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5739 DECL_VINDEX (decl) = NULL_TREE;
5741 else if (VAR_P (decl))
5743 /* See comment above why we set the flag for functoins. */
5744 if (TREE_PUBLIC (decl))
5745 TREE_ADDRESSABLE (decl) = true;
5746 if ((DECL_EXTERNAL (decl)
5747 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5748 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5749 DECL_INITIAL (decl) = NULL_TREE;
5751 else if (TREE_CODE (decl) == TYPE_DECL)
5753 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5754 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5755 TREE_PUBLIC (decl) = 0;
5756 TREE_PRIVATE (decl) = 0;
5757 DECL_ARTIFICIAL (decl) = 0;
5758 TYPE_DECL_SUPPRESS_DEBUG (decl) = 0;
5759 DECL_INITIAL (decl) = NULL_TREE;
5760 DECL_ORIGINAL_TYPE (decl) = NULL_TREE;
5761 DECL_MODE (decl) = VOIDmode;
5762 SET_DECL_ALIGN (decl, 0);
5763 /* TREE_TYPE is cleared at WPA time in free_odr_warning_data. */
5765 else if (TREE_CODE (decl) == FIELD_DECL)
5767 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5768 DECL_INITIAL (decl) = NULL_TREE;
5770 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5771 && DECL_INITIAL (decl)
5772 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5774 /* Strip builtins from the translation-unit BLOCK. We still have targets
5775 without builtin_decl_explicit support and also builtins are shared
5776 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5777 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5778 while (*nextp)
5780 tree var = *nextp;
5781 if (fndecl_built_in_p (var))
5782 *nextp = TREE_CHAIN (var);
5783 else
5784 nextp = &TREE_CHAIN (var);
5787 /* We need to keep field decls associated with their trees. Otherwise tree
5788 merging may merge some fileds and keep others disjoint wich in turn will
5789 not do well with TREE_CHAIN pointers linking them.
5791 Also do not drop containing types for virtual methods and tables because
5792 these are needed by devirtualization.
5793 C++ destructors are special because C++ frontends sometimes produces
5794 virtual destructor as an alias of non-virtual destructor. In
5795 devirutalization code we always walk through aliases and we need
5796 context to be preserved too. See PR89335 */
5797 if (TREE_CODE (decl) != FIELD_DECL
5798 && ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
5799 || (!DECL_VIRTUAL_P (decl)
5800 && (TREE_CODE (decl) != FUNCTION_DECL
5801 || !DECL_CXX_DESTRUCTOR_P (decl)))))
5802 DECL_CONTEXT (decl) = fld_decl_context (DECL_CONTEXT (decl));
5806 /* Operand callback helper for free_lang_data_in_node. *TP is the
5807 subtree operand being considered. */
5809 static tree
5810 find_decls_types_r (tree *tp, int *ws, void *data)
5812 tree t = *tp;
5813 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5815 if (TREE_CODE (t) == TREE_LIST)
5816 return NULL_TREE;
5818 /* Language specific nodes will be removed, so there is no need
5819 to gather anything under them. */
5820 if (is_lang_specific (t))
5822 *ws = 0;
5823 return NULL_TREE;
5826 if (DECL_P (t))
5828 /* Note that walk_tree does not traverse every possible field in
5829 decls, so we have to do our own traversals here. */
5830 add_tree_to_fld_list (t, fld);
5832 fld_worklist_push (DECL_NAME (t), fld);
5833 fld_worklist_push (DECL_CONTEXT (t), fld);
5834 fld_worklist_push (DECL_SIZE (t), fld);
5835 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5837 /* We are going to remove everything under DECL_INITIAL for
5838 TYPE_DECLs. No point walking them. */
5839 if (TREE_CODE (t) != TYPE_DECL)
5840 fld_worklist_push (DECL_INITIAL (t), fld);
5842 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5843 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5845 if (TREE_CODE (t) == FUNCTION_DECL)
5847 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5848 fld_worklist_push (DECL_RESULT (t), fld);
5850 else if (TREE_CODE (t) == FIELD_DECL)
5852 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5853 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5854 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5855 fld_worklist_push (DECL_FCONTEXT (t), fld);
5858 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5859 && DECL_HAS_VALUE_EXPR_P (t))
5860 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5862 if (TREE_CODE (t) != FIELD_DECL
5863 && TREE_CODE (t) != TYPE_DECL)
5864 fld_worklist_push (TREE_CHAIN (t), fld);
5865 *ws = 0;
5867 else if (TYPE_P (t))
5869 /* Note that walk_tree does not traverse every possible field in
5870 types, so we have to do our own traversals here. */
5871 add_tree_to_fld_list (t, fld);
5873 if (!RECORD_OR_UNION_TYPE_P (t))
5874 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5875 fld_worklist_push (TYPE_SIZE (t), fld);
5876 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5877 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5878 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5879 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5880 fld_worklist_push (TYPE_NAME (t), fld);
5881 /* While we do not stream TYPE_POINTER_TO and TYPE_REFERENCE_TO
5882 lists, we may look types up in these lists and use them while
5883 optimizing the function body. Thus we need to free lang data
5884 in them. */
5885 if (TREE_CODE (t) == POINTER_TYPE)
5886 fld_worklist_push (TYPE_NEXT_PTR_TO (t), fld);
5887 if (TREE_CODE (t) == REFERENCE_TYPE)
5888 fld_worklist_push (TYPE_NEXT_REF_TO (t), fld);
5889 if (!POINTER_TYPE_P (t))
5890 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5891 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5892 if (!RECORD_OR_UNION_TYPE_P (t))
5893 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5894 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5895 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5896 do not and want not to reach unused variants this way. */
5897 if (TYPE_CONTEXT (t))
5899 tree ctx = TYPE_CONTEXT (t);
5900 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5901 So push that instead. */
5902 while (ctx && TREE_CODE (ctx) == BLOCK)
5903 ctx = BLOCK_SUPERCONTEXT (ctx);
5904 fld_worklist_push (ctx, fld);
5906 fld_worklist_push (TYPE_CANONICAL (t), fld);
5908 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5910 unsigned i;
5911 tree tem;
5912 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5913 fld_worklist_push (TREE_TYPE (tem), fld);
5914 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
5915 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
5917 if (RECORD_OR_UNION_TYPE_P (t))
5919 tree tem;
5920 /* Push all TYPE_FIELDS - there can be interleaving interesting
5921 and non-interesting things. */
5922 tem = TYPE_FIELDS (t);
5923 while (tem)
5925 if (TREE_CODE (tem) == FIELD_DECL)
5926 fld_worklist_push (tem, fld);
5927 tem = TREE_CHAIN (tem);
5930 if (FUNC_OR_METHOD_TYPE_P (t))
5931 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
5933 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5934 *ws = 0;
5936 else if (TREE_CODE (t) == BLOCK)
5938 for (tree *tem = &BLOCK_VARS (t); *tem; )
5940 if (TREE_CODE (*tem) != VAR_DECL
5941 || !auto_var_in_fn_p (*tem, DECL_CONTEXT (*tem)))
5943 gcc_assert (TREE_CODE (*tem) != RESULT_DECL
5944 && TREE_CODE (*tem) != PARM_DECL);
5945 *tem = TREE_CHAIN (*tem);
5947 else
5949 fld_worklist_push (*tem, fld);
5950 tem = &TREE_CHAIN (*tem);
5953 for (tree tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5954 fld_worklist_push (tem, fld);
5955 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5958 if (TREE_CODE (t) != IDENTIFIER_NODE
5959 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5960 fld_worklist_push (TREE_TYPE (t), fld);
5962 return NULL_TREE;
5966 /* Find decls and types in T. */
5968 static void
5969 find_decls_types (tree t, struct free_lang_data_d *fld)
5971 while (1)
5973 if (!fld->pset.contains (t))
5974 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5975 if (fld->worklist.is_empty ())
5976 break;
5977 t = fld->worklist.pop ();
5981 /* Translate all the types in LIST with the corresponding runtime
5982 types. */
5984 static tree
5985 get_eh_types_for_runtime (tree list)
5987 tree head, prev;
5989 if (list == NULL_TREE)
5990 return NULL_TREE;
5992 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5993 prev = head;
5994 list = TREE_CHAIN (list);
5995 while (list)
5997 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5998 TREE_CHAIN (prev) = n;
5999 prev = TREE_CHAIN (prev);
6000 list = TREE_CHAIN (list);
6003 return head;
6007 /* Find decls and types referenced in EH region R and store them in
6008 FLD->DECLS and FLD->TYPES. */
6010 static void
6011 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
6013 switch (r->type)
6015 case ERT_CLEANUP:
6016 break;
6018 case ERT_TRY:
6020 eh_catch c;
6022 /* The types referenced in each catch must first be changed to the
6023 EH types used at runtime. This removes references to FE types
6024 in the region. */
6025 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
6027 c->type_list = get_eh_types_for_runtime (c->type_list);
6028 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
6031 break;
6033 case ERT_ALLOWED_EXCEPTIONS:
6034 r->u.allowed.type_list
6035 = get_eh_types_for_runtime (r->u.allowed.type_list);
6036 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
6037 break;
6039 case ERT_MUST_NOT_THROW:
6040 walk_tree (&r->u.must_not_throw.failure_decl,
6041 find_decls_types_r, fld, &fld->pset);
6042 break;
6047 /* Find decls and types referenced in cgraph node N and store them in
6048 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6049 look for *every* kind of DECL and TYPE node reachable from N,
6050 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6051 NAMESPACE_DECLs, etc). */
6053 static void
6054 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
6056 basic_block bb;
6057 struct function *fn;
6058 unsigned ix;
6059 tree t;
6061 find_decls_types (n->decl, fld);
6063 if (!gimple_has_body_p (n->decl))
6064 return;
6066 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
6068 fn = DECL_STRUCT_FUNCTION (n->decl);
6070 /* Traverse locals. */
6071 FOR_EACH_LOCAL_DECL (fn, ix, t)
6072 find_decls_types (t, fld);
6074 /* Traverse EH regions in FN. */
6076 eh_region r;
6077 FOR_ALL_EH_REGION_FN (r, fn)
6078 find_decls_types_in_eh_region (r, fld);
6081 /* Traverse every statement in FN. */
6082 FOR_EACH_BB_FN (bb, fn)
6084 gphi_iterator psi;
6085 gimple_stmt_iterator si;
6086 unsigned i;
6088 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
6090 gphi *phi = psi.phi ();
6092 for (i = 0; i < gimple_phi_num_args (phi); i++)
6094 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
6095 find_decls_types (*arg_p, fld);
6099 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6101 gimple *stmt = gsi_stmt (si);
6103 if (is_gimple_call (stmt))
6104 find_decls_types (gimple_call_fntype (stmt), fld);
6106 for (i = 0; i < gimple_num_ops (stmt); i++)
6108 tree arg = gimple_op (stmt, i);
6109 find_decls_types (arg, fld);
6116 /* Find decls and types referenced in varpool node N and store them in
6117 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6118 look for *every* kind of DECL and TYPE node reachable from N,
6119 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6120 NAMESPACE_DECLs, etc). */
6122 static void
6123 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
6125 find_decls_types (v->decl, fld);
6128 /* If T needs an assembler name, have one created for it. */
6130 void
6131 assign_assembler_name_if_needed (tree t)
6133 if (need_assembler_name_p (t))
6135 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
6136 diagnostics that use input_location to show locus
6137 information. The problem here is that, at this point,
6138 input_location is generally anchored to the end of the file
6139 (since the parser is long gone), so we don't have a good
6140 position to pin it to.
6142 To alleviate this problem, this uses the location of T's
6143 declaration. Examples of this are
6144 testsuite/g++.dg/template/cond2.C and
6145 testsuite/g++.dg/template/pr35240.C. */
6146 location_t saved_location = input_location;
6147 input_location = DECL_SOURCE_LOCATION (t);
6149 decl_assembler_name (t);
6151 input_location = saved_location;
6156 /* Free language specific information for every operand and expression
6157 in every node of the call graph. This process operates in three stages:
6159 1- Every callgraph node and varpool node is traversed looking for
6160 decls and types embedded in them. This is a more exhaustive
6161 search than that done by find_referenced_vars, because it will
6162 also collect individual fields, decls embedded in types, etc.
6164 2- All the decls found are sent to free_lang_data_in_decl.
6166 3- All the types found are sent to free_lang_data_in_type.
6168 The ordering between decls and types is important because
6169 free_lang_data_in_decl sets assembler names, which includes
6170 mangling. So types cannot be freed up until assembler names have
6171 been set up. */
6173 static void
6174 free_lang_data_in_cgraph (struct free_lang_data_d *fld)
6176 struct cgraph_node *n;
6177 varpool_node *v;
6178 tree t;
6179 unsigned i;
6180 alias_pair *p;
6182 /* Find decls and types in the body of every function in the callgraph. */
6183 FOR_EACH_FUNCTION (n)
6184 find_decls_types_in_node (n, fld);
6186 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
6187 find_decls_types (p->decl, fld);
6189 /* Find decls and types in every varpool symbol. */
6190 FOR_EACH_VARIABLE (v)
6191 find_decls_types_in_var (v, fld);
6193 /* Set the assembler name on every decl found. We need to do this
6194 now because free_lang_data_in_decl will invalidate data needed
6195 for mangling. This breaks mangling on interdependent decls. */
6196 FOR_EACH_VEC_ELT (fld->decls, i, t)
6197 assign_assembler_name_if_needed (t);
6199 /* Traverse every decl found freeing its language data. */
6200 FOR_EACH_VEC_ELT (fld->decls, i, t)
6201 free_lang_data_in_decl (t, fld);
6203 /* Traverse every type found freeing its language data. */
6204 FOR_EACH_VEC_ELT (fld->types, i, t)
6205 free_lang_data_in_type (t, fld);
6209 /* Free resources that are used by FE but are not needed once they are done. */
6211 static unsigned
6212 free_lang_data (void)
6214 unsigned i;
6215 struct free_lang_data_d fld;
6217 /* If we are the LTO frontend we have freed lang-specific data already. */
6218 if (in_lto_p
6219 || (!flag_generate_lto && !flag_generate_offload))
6221 /* Rebuild type inheritance graph even when not doing LTO to get
6222 consistent profile data. */
6223 rebuild_type_inheritance_graph ();
6224 return 0;
6227 fld_incomplete_types = new hash_map<tree, tree>;
6228 fld_simplified_types = new hash_map<tree, tree>;
6230 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
6231 if (vec_safe_is_empty (all_translation_units))
6232 build_translation_unit_decl (NULL_TREE);
6234 /* Allocate and assign alias sets to the standard integer types
6235 while the slots are still in the way the frontends generated them. */
6236 for (i = 0; i < itk_none; ++i)
6237 if (integer_types[i])
6238 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
6240 /* Traverse the IL resetting language specific information for
6241 operands, expressions, etc. */
6242 free_lang_data_in_cgraph (&fld);
6244 /* Create gimple variants for common types. */
6245 for (unsigned i = 0;
6246 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
6247 ++i)
6248 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
6250 /* Reset some langhooks. Do not reset types_compatible_p, it may
6251 still be used indirectly via the get_alias_set langhook. */
6252 lang_hooks.dwarf_name = lhd_dwarf_name;
6253 lang_hooks.decl_printable_name = gimple_decl_printable_name;
6254 lang_hooks.gimplify_expr = lhd_gimplify_expr;
6255 lang_hooks.overwrite_decl_assembler_name = lhd_overwrite_decl_assembler_name;
6256 lang_hooks.print_xnode = lhd_print_tree_nothing;
6257 lang_hooks.print_decl = lhd_print_tree_nothing;
6258 lang_hooks.print_type = lhd_print_tree_nothing;
6259 lang_hooks.print_identifier = lhd_print_tree_nothing;
6261 lang_hooks.tree_inlining.var_mod_type_p = hook_bool_tree_tree_false;
6263 if (flag_checking)
6265 int i;
6266 tree t;
6268 FOR_EACH_VEC_ELT (fld.types, i, t)
6269 verify_type (t);
6272 /* We do not want the default decl_assembler_name implementation,
6273 rather if we have fixed everything we want a wrapper around it
6274 asserting that all non-local symbols already got their assembler
6275 name and only produce assembler names for local symbols. Or rather
6276 make sure we never call decl_assembler_name on local symbols and
6277 devise a separate, middle-end private scheme for it. */
6279 /* Reset diagnostic machinery. */
6280 tree_diagnostics_defaults (global_dc);
6282 rebuild_type_inheritance_graph ();
6284 delete fld_incomplete_types;
6285 delete fld_simplified_types;
6287 return 0;
6291 namespace {
6293 const pass_data pass_data_ipa_free_lang_data =
6295 SIMPLE_IPA_PASS, /* type */
6296 "*free_lang_data", /* name */
6297 OPTGROUP_NONE, /* optinfo_flags */
6298 TV_IPA_FREE_LANG_DATA, /* tv_id */
6299 0, /* properties_required */
6300 0, /* properties_provided */
6301 0, /* properties_destroyed */
6302 0, /* todo_flags_start */
6303 0, /* todo_flags_finish */
6306 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
6308 public:
6309 pass_ipa_free_lang_data (gcc::context *ctxt)
6310 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
6313 /* opt_pass methods: */
6314 virtual unsigned int execute (function *) { return free_lang_data (); }
6316 }; // class pass_ipa_free_lang_data
6318 } // anon namespace
6320 simple_ipa_opt_pass *
6321 make_pass_ipa_free_lang_data (gcc::context *ctxt)
6323 return new pass_ipa_free_lang_data (ctxt);
6326 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6327 of the various TYPE_QUAL values. */
6329 static void
6330 set_type_quals (tree type, int type_quals)
6332 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6333 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6334 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6335 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6336 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6339 /* Returns true iff CAND and BASE have equivalent language-specific
6340 qualifiers. */
6342 bool
6343 check_lang_type (const_tree cand, const_tree base)
6345 if (lang_hooks.types.type_hash_eq == NULL)
6346 return true;
6347 /* type_hash_eq currently only applies to these types. */
6348 if (TREE_CODE (cand) != FUNCTION_TYPE
6349 && TREE_CODE (cand) != METHOD_TYPE)
6350 return true;
6351 return lang_hooks.types.type_hash_eq (cand, base);
6354 /* This function checks to see if TYPE matches the size one of the built-in
6355 atomic types, and returns that core atomic type. */
6357 static tree
6358 find_atomic_core_type (const_tree type)
6360 tree base_atomic_type;
6362 /* Only handle complete types. */
6363 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
6364 return NULL_TREE;
6366 switch (tree_to_uhwi (TYPE_SIZE (type)))
6368 case 8:
6369 base_atomic_type = atomicQI_type_node;
6370 break;
6372 case 16:
6373 base_atomic_type = atomicHI_type_node;
6374 break;
6376 case 32:
6377 base_atomic_type = atomicSI_type_node;
6378 break;
6380 case 64:
6381 base_atomic_type = atomicDI_type_node;
6382 break;
6384 case 128:
6385 base_atomic_type = atomicTI_type_node;
6386 break;
6388 default:
6389 base_atomic_type = NULL_TREE;
6392 return base_atomic_type;
6395 /* Returns true iff unqualified CAND and BASE are equivalent. */
6397 bool
6398 check_base_type (const_tree cand, const_tree base)
6400 if (TYPE_NAME (cand) != TYPE_NAME (base)
6401 /* Apparently this is needed for Objective-C. */
6402 || TYPE_CONTEXT (cand) != TYPE_CONTEXT (base)
6403 || !attribute_list_equal (TYPE_ATTRIBUTES (cand),
6404 TYPE_ATTRIBUTES (base)))
6405 return false;
6406 /* Check alignment. */
6407 if (TYPE_ALIGN (cand) == TYPE_ALIGN (base))
6408 return true;
6409 /* Atomic types increase minimal alignment. We must to do so as well
6410 or we get duplicated canonical types. See PR88686. */
6411 if ((TYPE_QUALS (cand) & TYPE_QUAL_ATOMIC))
6413 /* See if this object can map to a basic atomic type. */
6414 tree atomic_type = find_atomic_core_type (cand);
6415 if (atomic_type && TYPE_ALIGN (atomic_type) == TYPE_ALIGN (cand))
6416 return true;
6418 return false;
6421 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6423 bool
6424 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6426 return (TYPE_QUALS (cand) == type_quals
6427 && check_base_type (cand, base)
6428 && check_lang_type (cand, base));
6431 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6433 static bool
6434 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6436 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6437 && TYPE_NAME (cand) == TYPE_NAME (base)
6438 /* Apparently this is needed for Objective-C. */
6439 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6440 /* Check alignment. */
6441 && TYPE_ALIGN (cand) == align
6442 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6443 TYPE_ATTRIBUTES (base))
6444 && check_lang_type (cand, base));
6447 /* Return a version of the TYPE, qualified as indicated by the
6448 TYPE_QUALS, if one exists. If no qualified version exists yet,
6449 return NULL_TREE. */
6451 tree
6452 get_qualified_type (tree type, int type_quals)
6454 if (TYPE_QUALS (type) == type_quals)
6455 return type;
6457 tree mv = TYPE_MAIN_VARIANT (type);
6458 if (check_qualified_type (mv, type, type_quals))
6459 return mv;
6461 /* Search the chain of variants to see if there is already one there just
6462 like the one we need to have. If so, use that existing one. We must
6463 preserve the TYPE_NAME, since there is code that depends on this. */
6464 for (tree *tp = &TYPE_NEXT_VARIANT (mv); *tp; tp = &TYPE_NEXT_VARIANT (*tp))
6465 if (check_qualified_type (*tp, type, type_quals))
6467 /* Put the found variant at the head of the variant list so
6468 frequently searched variants get found faster. The C++ FE
6469 benefits greatly from this. */
6470 tree t = *tp;
6471 *tp = TYPE_NEXT_VARIANT (t);
6472 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
6473 TYPE_NEXT_VARIANT (mv) = t;
6474 return t;
6477 return NULL_TREE;
6480 /* Like get_qualified_type, but creates the type if it does not
6481 exist. This function never returns NULL_TREE. */
6483 tree
6484 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6486 tree t;
6488 /* See if we already have the appropriate qualified variant. */
6489 t = get_qualified_type (type, type_quals);
6491 /* If not, build it. */
6492 if (!t)
6494 t = build_variant_type_copy (type PASS_MEM_STAT);
6495 set_type_quals (t, type_quals);
6497 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6499 /* See if this object can map to a basic atomic type. */
6500 tree atomic_type = find_atomic_core_type (type);
6501 if (atomic_type)
6503 /* Ensure the alignment of this type is compatible with
6504 the required alignment of the atomic type. */
6505 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6506 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6510 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6511 /* Propagate structural equality. */
6512 SET_TYPE_STRUCTURAL_EQUALITY (t);
6513 else if (TYPE_CANONICAL (type) != type)
6514 /* Build the underlying canonical type, since it is different
6515 from TYPE. */
6517 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6518 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6520 else
6521 /* T is its own canonical type. */
6522 TYPE_CANONICAL (t) = t;
6526 return t;
6529 /* Create a variant of type T with alignment ALIGN. */
6531 tree
6532 build_aligned_type (tree type, unsigned int align)
6534 tree t;
6536 if (TYPE_PACKED (type)
6537 || TYPE_ALIGN (type) == align)
6538 return type;
6540 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6541 if (check_aligned_type (t, type, align))
6542 return t;
6544 t = build_variant_type_copy (type);
6545 SET_TYPE_ALIGN (t, align);
6546 TYPE_USER_ALIGN (t) = 1;
6548 return t;
6551 /* Create a new distinct copy of TYPE. The new type is made its own
6552 MAIN_VARIANT. If TYPE requires structural equality checks, the
6553 resulting type requires structural equality checks; otherwise, its
6554 TYPE_CANONICAL points to itself. */
6556 tree
6557 build_distinct_type_copy (tree type MEM_STAT_DECL)
6559 tree t = copy_node (type PASS_MEM_STAT);
6561 TYPE_POINTER_TO (t) = 0;
6562 TYPE_REFERENCE_TO (t) = 0;
6564 /* Set the canonical type either to a new equivalence class, or
6565 propagate the need for structural equality checks. */
6566 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6567 SET_TYPE_STRUCTURAL_EQUALITY (t);
6568 else
6569 TYPE_CANONICAL (t) = t;
6571 /* Make it its own variant. */
6572 TYPE_MAIN_VARIANT (t) = t;
6573 TYPE_NEXT_VARIANT (t) = 0;
6575 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6576 whose TREE_TYPE is not t. This can also happen in the Ada
6577 frontend when using subtypes. */
6579 return t;
6582 /* Create a new variant of TYPE, equivalent but distinct. This is so
6583 the caller can modify it. TYPE_CANONICAL for the return type will
6584 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6585 are considered equal by the language itself (or that both types
6586 require structural equality checks). */
6588 tree
6589 build_variant_type_copy (tree type MEM_STAT_DECL)
6591 tree t, m = TYPE_MAIN_VARIANT (type);
6593 t = build_distinct_type_copy (type PASS_MEM_STAT);
6595 /* Since we're building a variant, assume that it is a non-semantic
6596 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6597 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6598 /* Type variants have no alias set defined. */
6599 TYPE_ALIAS_SET (t) = -1;
6601 /* Add the new type to the chain of variants of TYPE. */
6602 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6603 TYPE_NEXT_VARIANT (m) = t;
6604 TYPE_MAIN_VARIANT (t) = m;
6606 return t;
6609 /* Return true if the from tree in both tree maps are equal. */
6612 tree_map_base_eq (const void *va, const void *vb)
6614 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6615 *const b = (const struct tree_map_base *) vb;
6616 return (a->from == b->from);
6619 /* Hash a from tree in a tree_base_map. */
6621 unsigned int
6622 tree_map_base_hash (const void *item)
6624 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6627 /* Return true if this tree map structure is marked for garbage collection
6628 purposes. We simply return true if the from tree is marked, so that this
6629 structure goes away when the from tree goes away. */
6632 tree_map_base_marked_p (const void *p)
6634 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6637 /* Hash a from tree in a tree_map. */
6639 unsigned int
6640 tree_map_hash (const void *item)
6642 return (((const struct tree_map *) item)->hash);
6645 /* Hash a from tree in a tree_decl_map. */
6647 unsigned int
6648 tree_decl_map_hash (const void *item)
6650 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6653 /* Return the initialization priority for DECL. */
6655 priority_type
6656 decl_init_priority_lookup (tree decl)
6658 symtab_node *snode = symtab_node::get (decl);
6660 if (!snode)
6661 return DEFAULT_INIT_PRIORITY;
6662 return
6663 snode->get_init_priority ();
6666 /* Return the finalization priority for DECL. */
6668 priority_type
6669 decl_fini_priority_lookup (tree decl)
6671 cgraph_node *node = cgraph_node::get (decl);
6673 if (!node)
6674 return DEFAULT_INIT_PRIORITY;
6675 return
6676 node->get_fini_priority ();
6679 /* Set the initialization priority for DECL to PRIORITY. */
6681 void
6682 decl_init_priority_insert (tree decl, priority_type priority)
6684 struct symtab_node *snode;
6686 if (priority == DEFAULT_INIT_PRIORITY)
6688 snode = symtab_node::get (decl);
6689 if (!snode)
6690 return;
6692 else if (VAR_P (decl))
6693 snode = varpool_node::get_create (decl);
6694 else
6695 snode = cgraph_node::get_create (decl);
6696 snode->set_init_priority (priority);
6699 /* Set the finalization priority for DECL to PRIORITY. */
6701 void
6702 decl_fini_priority_insert (tree decl, priority_type priority)
6704 struct cgraph_node *node;
6706 if (priority == DEFAULT_INIT_PRIORITY)
6708 node = cgraph_node::get (decl);
6709 if (!node)
6710 return;
6712 else
6713 node = cgraph_node::get_create (decl);
6714 node->set_fini_priority (priority);
6717 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6719 static void
6720 print_debug_expr_statistics (void)
6722 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6723 (long) debug_expr_for_decl->size (),
6724 (long) debug_expr_for_decl->elements (),
6725 debug_expr_for_decl->collisions ());
6728 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6730 static void
6731 print_value_expr_statistics (void)
6733 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6734 (long) value_expr_for_decl->size (),
6735 (long) value_expr_for_decl->elements (),
6736 value_expr_for_decl->collisions ());
6739 /* Lookup a debug expression for FROM, and return it if we find one. */
6741 tree
6742 decl_debug_expr_lookup (tree from)
6744 struct tree_decl_map *h, in;
6745 in.base.from = from;
6747 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6748 if (h)
6749 return h->to;
6750 return NULL_TREE;
6753 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6755 void
6756 decl_debug_expr_insert (tree from, tree to)
6758 struct tree_decl_map *h;
6760 h = ggc_alloc<tree_decl_map> ();
6761 h->base.from = from;
6762 h->to = to;
6763 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6766 /* Lookup a value expression for FROM, and return it if we find one. */
6768 tree
6769 decl_value_expr_lookup (tree from)
6771 struct tree_decl_map *h, in;
6772 in.base.from = from;
6774 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6775 if (h)
6776 return h->to;
6777 return NULL_TREE;
6780 /* Insert a mapping FROM->TO in the value expression hashtable. */
6782 void
6783 decl_value_expr_insert (tree from, tree to)
6785 struct tree_decl_map *h;
6787 h = ggc_alloc<tree_decl_map> ();
6788 h->base.from = from;
6789 h->to = to;
6790 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6793 /* Lookup a vector of debug arguments for FROM, and return it if we
6794 find one. */
6796 vec<tree, va_gc> **
6797 decl_debug_args_lookup (tree from)
6799 struct tree_vec_map *h, in;
6801 if (!DECL_HAS_DEBUG_ARGS_P (from))
6802 return NULL;
6803 gcc_checking_assert (debug_args_for_decl != NULL);
6804 in.base.from = from;
6805 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6806 if (h)
6807 return &h->to;
6808 return NULL;
6811 /* Insert a mapping FROM->empty vector of debug arguments in the value
6812 expression hashtable. */
6814 vec<tree, va_gc> **
6815 decl_debug_args_insert (tree from)
6817 struct tree_vec_map *h;
6818 tree_vec_map **loc;
6820 if (DECL_HAS_DEBUG_ARGS_P (from))
6821 return decl_debug_args_lookup (from);
6822 if (debug_args_for_decl == NULL)
6823 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6824 h = ggc_alloc<tree_vec_map> ();
6825 h->base.from = from;
6826 h->to = NULL;
6827 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6828 *loc = h;
6829 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6830 return &h->to;
6833 /* Hashing of types so that we don't make duplicates.
6834 The entry point is `type_hash_canon'. */
6836 /* Generate the default hash code for TYPE. This is designed for
6837 speed, rather than maximum entropy. */
6839 hashval_t
6840 type_hash_canon_hash (tree type)
6842 inchash::hash hstate;
6844 hstate.add_int (TREE_CODE (type));
6846 if (TREE_TYPE (type))
6847 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6849 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6850 /* Just the identifier is adequate to distinguish. */
6851 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6853 switch (TREE_CODE (type))
6855 case METHOD_TYPE:
6856 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6857 /* FALLTHROUGH. */
6858 case FUNCTION_TYPE:
6859 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6860 if (TREE_VALUE (t) != error_mark_node)
6861 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6862 break;
6864 case OFFSET_TYPE:
6865 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6866 break;
6868 case ARRAY_TYPE:
6870 if (TYPE_DOMAIN (type))
6871 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6872 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6874 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6875 hstate.add_object (typeless);
6878 break;
6880 case INTEGER_TYPE:
6882 tree t = TYPE_MAX_VALUE (type);
6883 if (!t)
6884 t = TYPE_MIN_VALUE (type);
6885 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6886 hstate.add_object (TREE_INT_CST_ELT (t, i));
6887 break;
6890 case REAL_TYPE:
6891 case FIXED_POINT_TYPE:
6893 unsigned prec = TYPE_PRECISION (type);
6894 hstate.add_object (prec);
6895 break;
6898 case VECTOR_TYPE:
6899 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
6900 break;
6902 default:
6903 break;
6906 return hstate.end ();
6909 /* These are the Hashtable callback functions. */
6911 /* Returns true iff the types are equivalent. */
6913 bool
6914 type_cache_hasher::equal (type_hash *a, type_hash *b)
6916 /* First test the things that are the same for all types. */
6917 if (a->hash != b->hash
6918 || TREE_CODE (a->type) != TREE_CODE (b->type)
6919 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6920 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6921 TYPE_ATTRIBUTES (b->type))
6922 || (TREE_CODE (a->type) != COMPLEX_TYPE
6923 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6924 return 0;
6926 /* Be careful about comparing arrays before and after the element type
6927 has been completed; don't compare TYPE_ALIGN unless both types are
6928 complete. */
6929 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6930 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6931 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6932 return 0;
6934 switch (TREE_CODE (a->type))
6936 case VOID_TYPE:
6937 case COMPLEX_TYPE:
6938 case POINTER_TYPE:
6939 case REFERENCE_TYPE:
6940 case NULLPTR_TYPE:
6941 return 1;
6943 case VECTOR_TYPE:
6944 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
6945 TYPE_VECTOR_SUBPARTS (b->type));
6947 case ENUMERAL_TYPE:
6948 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6949 && !(TYPE_VALUES (a->type)
6950 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6951 && TYPE_VALUES (b->type)
6952 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6953 && type_list_equal (TYPE_VALUES (a->type),
6954 TYPE_VALUES (b->type))))
6955 return 0;
6957 /* fall through */
6959 case INTEGER_TYPE:
6960 case REAL_TYPE:
6961 case BOOLEAN_TYPE:
6962 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6963 return false;
6964 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6965 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6966 TYPE_MAX_VALUE (b->type)))
6967 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6968 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6969 TYPE_MIN_VALUE (b->type))));
6971 case FIXED_POINT_TYPE:
6972 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6974 case OFFSET_TYPE:
6975 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6977 case METHOD_TYPE:
6978 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6979 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6980 || (TYPE_ARG_TYPES (a->type)
6981 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6982 && TYPE_ARG_TYPES (b->type)
6983 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6984 && type_list_equal (TYPE_ARG_TYPES (a->type),
6985 TYPE_ARG_TYPES (b->type)))))
6986 break;
6987 return 0;
6988 case ARRAY_TYPE:
6989 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6990 where the flag should be inherited from the element type
6991 and can change after ARRAY_TYPEs are created; on non-aggregates
6992 compare it and hash it, scalars will never have that flag set
6993 and we need to differentiate between arrays created by different
6994 front-ends or middle-end created arrays. */
6995 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6996 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6997 || (TYPE_TYPELESS_STORAGE (a->type)
6998 == TYPE_TYPELESS_STORAGE (b->type))));
7000 case RECORD_TYPE:
7001 case UNION_TYPE:
7002 case QUAL_UNION_TYPE:
7003 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
7004 || (TYPE_FIELDS (a->type)
7005 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
7006 && TYPE_FIELDS (b->type)
7007 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
7008 && type_list_equal (TYPE_FIELDS (a->type),
7009 TYPE_FIELDS (b->type))));
7011 case FUNCTION_TYPE:
7012 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7013 || (TYPE_ARG_TYPES (a->type)
7014 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7015 && TYPE_ARG_TYPES (b->type)
7016 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7017 && type_list_equal (TYPE_ARG_TYPES (a->type),
7018 TYPE_ARG_TYPES (b->type))))
7019 break;
7020 return 0;
7022 default:
7023 return 0;
7026 if (lang_hooks.types.type_hash_eq != NULL)
7027 return lang_hooks.types.type_hash_eq (a->type, b->type);
7029 return 1;
7032 /* Given TYPE, and HASHCODE its hash code, return the canonical
7033 object for an identical type if one already exists.
7034 Otherwise, return TYPE, and record it as the canonical object.
7036 To use this function, first create a type of the sort you want.
7037 Then compute its hash code from the fields of the type that
7038 make it different from other similar types.
7039 Then call this function and use the value. */
7041 tree
7042 type_hash_canon (unsigned int hashcode, tree type)
7044 type_hash in;
7045 type_hash **loc;
7047 /* The hash table only contains main variants, so ensure that's what we're
7048 being passed. */
7049 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7051 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7052 must call that routine before comparing TYPE_ALIGNs. */
7053 layout_type (type);
7055 in.hash = hashcode;
7056 in.type = type;
7058 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7059 if (*loc)
7061 tree t1 = ((type_hash *) *loc)->type;
7062 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
7063 && t1 != type);
7064 if (TYPE_UID (type) + 1 == next_type_uid)
7065 --next_type_uid;
7066 /* Free also min/max values and the cache for integer
7067 types. This can't be done in free_node, as LTO frees
7068 those on its own. */
7069 if (TREE_CODE (type) == INTEGER_TYPE)
7071 if (TYPE_MIN_VALUE (type)
7072 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
7074 /* Zero is always in TYPE_CACHED_VALUES. */
7075 if (! TYPE_UNSIGNED (type))
7076 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
7077 ggc_free (TYPE_MIN_VALUE (type));
7079 if (TYPE_MAX_VALUE (type)
7080 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
7082 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
7083 ggc_free (TYPE_MAX_VALUE (type));
7085 if (TYPE_CACHED_VALUES_P (type))
7086 ggc_free (TYPE_CACHED_VALUES (type));
7088 free_node (type);
7089 return t1;
7091 else
7093 struct type_hash *h;
7095 h = ggc_alloc<type_hash> ();
7096 h->hash = hashcode;
7097 h->type = type;
7098 *loc = h;
7100 return type;
7104 static void
7105 print_type_hash_statistics (void)
7107 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7108 (long) type_hash_table->size (),
7109 (long) type_hash_table->elements (),
7110 type_hash_table->collisions ());
7113 /* Given two lists of types
7114 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7115 return 1 if the lists contain the same types in the same order.
7116 Also, the TREE_PURPOSEs must match. */
7118 bool
7119 type_list_equal (const_tree l1, const_tree l2)
7121 const_tree t1, t2;
7123 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7124 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7125 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7126 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7127 && (TREE_TYPE (TREE_PURPOSE (t1))
7128 == TREE_TYPE (TREE_PURPOSE (t2))))))
7129 return false;
7131 return t1 == t2;
7134 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7135 given by TYPE. If the argument list accepts variable arguments,
7136 then this function counts only the ordinary arguments. */
7139 type_num_arguments (const_tree fntype)
7141 int i = 0;
7143 for (tree t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
7144 /* If the function does not take a variable number of arguments,
7145 the last element in the list will have type `void'. */
7146 if (VOID_TYPE_P (TREE_VALUE (t)))
7147 break;
7148 else
7149 ++i;
7151 return i;
7154 /* Return the type of the function TYPE's argument ARGNO if known.
7155 For vararg function's where ARGNO refers to one of the variadic
7156 arguments return null. Otherwise, return a void_type_node for
7157 out-of-bounds ARGNO. */
7159 tree
7160 type_argument_type (const_tree fntype, unsigned argno)
7162 /* Treat zero the same as an out-of-bounds argument number. */
7163 if (!argno)
7164 return void_type_node;
7166 function_args_iterator iter;
7168 tree argtype;
7169 unsigned i = 1;
7170 FOREACH_FUNCTION_ARGS (fntype, argtype, iter)
7172 /* A vararg function's argument list ends in a null. Otherwise,
7173 an ordinary function's argument list ends with void. Return
7174 null if ARGNO refers to a vararg argument, void_type_node if
7175 it's out of bounds, and the formal argument type otherwise. */
7176 if (!argtype)
7177 break;
7179 if (i == argno || VOID_TYPE_P (argtype))
7180 return argtype;
7182 ++i;
7185 return NULL_TREE;
7188 /* Nonzero if integer constants T1 and T2
7189 represent the same constant value. */
7192 tree_int_cst_equal (const_tree t1, const_tree t2)
7194 if (t1 == t2)
7195 return 1;
7197 if (t1 == 0 || t2 == 0)
7198 return 0;
7200 STRIP_ANY_LOCATION_WRAPPER (t1);
7201 STRIP_ANY_LOCATION_WRAPPER (t2);
7203 if (TREE_CODE (t1) == INTEGER_CST
7204 && TREE_CODE (t2) == INTEGER_CST
7205 && wi::to_widest (t1) == wi::to_widest (t2))
7206 return 1;
7208 return 0;
7211 /* Return true if T is an INTEGER_CST whose numerical value (extended
7212 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7214 bool
7215 tree_fits_shwi_p (const_tree t)
7217 return (t != NULL_TREE
7218 && TREE_CODE (t) == INTEGER_CST
7219 && wi::fits_shwi_p (wi::to_widest (t)));
7222 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7223 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
7225 bool
7226 tree_fits_poly_int64_p (const_tree t)
7228 if (t == NULL_TREE)
7229 return false;
7230 if (POLY_INT_CST_P (t))
7232 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7233 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
7234 return false;
7235 return true;
7237 return (TREE_CODE (t) == INTEGER_CST
7238 && wi::fits_shwi_p (wi::to_widest (t)));
7241 /* Return true if T is an INTEGER_CST whose numerical value (extended
7242 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7244 bool
7245 tree_fits_uhwi_p (const_tree t)
7247 return (t != NULL_TREE
7248 && TREE_CODE (t) == INTEGER_CST
7249 && wi::fits_uhwi_p (wi::to_widest (t)));
7252 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7253 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
7255 bool
7256 tree_fits_poly_uint64_p (const_tree t)
7258 if (t == NULL_TREE)
7259 return false;
7260 if (POLY_INT_CST_P (t))
7262 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7263 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
7264 return false;
7265 return true;
7267 return (TREE_CODE (t) == INTEGER_CST
7268 && wi::fits_uhwi_p (wi::to_widest (t)));
7271 /* T is an INTEGER_CST whose numerical value (extended according to
7272 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7273 HOST_WIDE_INT. */
7275 HOST_WIDE_INT
7276 tree_to_shwi (const_tree t)
7278 gcc_assert (tree_fits_shwi_p (t));
7279 return TREE_INT_CST_LOW (t);
7282 /* T is an INTEGER_CST whose numerical value (extended according to
7283 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7284 HOST_WIDE_INT. */
7286 unsigned HOST_WIDE_INT
7287 tree_to_uhwi (const_tree t)
7289 gcc_assert (tree_fits_uhwi_p (t));
7290 return TREE_INT_CST_LOW (t);
7293 /* Return the most significant (sign) bit of T. */
7296 tree_int_cst_sign_bit (const_tree t)
7298 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7300 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
7303 /* Return an indication of the sign of the integer constant T.
7304 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7305 Note that -1 will never be returned if T's type is unsigned. */
7308 tree_int_cst_sgn (const_tree t)
7310 if (wi::to_wide (t) == 0)
7311 return 0;
7312 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7313 return 1;
7314 else if (wi::neg_p (wi::to_wide (t)))
7315 return -1;
7316 else
7317 return 1;
7320 /* Return the minimum number of bits needed to represent VALUE in a
7321 signed or unsigned type, UNSIGNEDP says which. */
7323 unsigned int
7324 tree_int_cst_min_precision (tree value, signop sgn)
7326 /* If the value is negative, compute its negative minus 1. The latter
7327 adjustment is because the absolute value of the largest negative value
7328 is one larger than the largest positive value. This is equivalent to
7329 a bit-wise negation, so use that operation instead. */
7331 if (tree_int_cst_sgn (value) < 0)
7332 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7334 /* Return the number of bits needed, taking into account the fact
7335 that we need one more bit for a signed than unsigned type.
7336 If value is 0 or -1, the minimum precision is 1 no matter
7337 whether unsignedp is true or false. */
7339 if (integer_zerop (value))
7340 return 1;
7341 else
7342 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7345 /* Return truthvalue of whether T1 is the same tree structure as T2.
7346 Return 1 if they are the same.
7347 Return 0 if they are understandably different.
7348 Return -1 if either contains tree structure not understood by
7349 this function. */
7352 simple_cst_equal (const_tree t1, const_tree t2)
7354 enum tree_code code1, code2;
7355 int cmp;
7356 int i;
7358 if (t1 == t2)
7359 return 1;
7360 if (t1 == 0 || t2 == 0)
7361 return 0;
7363 /* For location wrappers to be the same, they must be at the same
7364 source location (and wrap the same thing). */
7365 if (location_wrapper_p (t1) && location_wrapper_p (t2))
7367 if (EXPR_LOCATION (t1) != EXPR_LOCATION (t2))
7368 return 0;
7369 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7372 code1 = TREE_CODE (t1);
7373 code2 = TREE_CODE (t2);
7375 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7377 if (CONVERT_EXPR_CODE_P (code2)
7378 || code2 == NON_LVALUE_EXPR)
7379 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7380 else
7381 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7384 else if (CONVERT_EXPR_CODE_P (code2)
7385 || code2 == NON_LVALUE_EXPR)
7386 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7388 if (code1 != code2)
7389 return 0;
7391 switch (code1)
7393 case INTEGER_CST:
7394 return wi::to_widest (t1) == wi::to_widest (t2);
7396 case REAL_CST:
7397 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7399 case FIXED_CST:
7400 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7402 case STRING_CST:
7403 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7404 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7405 TREE_STRING_LENGTH (t1)));
7407 case CONSTRUCTOR:
7409 unsigned HOST_WIDE_INT idx;
7410 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7411 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7413 if (vec_safe_length (v1) != vec_safe_length (v2))
7414 return false;
7416 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7417 /* ??? Should we handle also fields here? */
7418 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7419 return false;
7420 return true;
7423 case SAVE_EXPR:
7424 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7426 case CALL_EXPR:
7427 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7428 if (cmp <= 0)
7429 return cmp;
7430 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7431 return 0;
7433 const_tree arg1, arg2;
7434 const_call_expr_arg_iterator iter1, iter2;
7435 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7436 arg2 = first_const_call_expr_arg (t2, &iter2);
7437 arg1 && arg2;
7438 arg1 = next_const_call_expr_arg (&iter1),
7439 arg2 = next_const_call_expr_arg (&iter2))
7441 cmp = simple_cst_equal (arg1, arg2);
7442 if (cmp <= 0)
7443 return cmp;
7445 return arg1 == arg2;
7448 case TARGET_EXPR:
7449 /* Special case: if either target is an unallocated VAR_DECL,
7450 it means that it's going to be unified with whatever the
7451 TARGET_EXPR is really supposed to initialize, so treat it
7452 as being equivalent to anything. */
7453 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7454 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7455 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7456 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7457 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7458 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7459 cmp = 1;
7460 else
7461 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7463 if (cmp <= 0)
7464 return cmp;
7466 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7468 case WITH_CLEANUP_EXPR:
7469 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7470 if (cmp <= 0)
7471 return cmp;
7473 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7475 case COMPONENT_REF:
7476 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7477 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7479 return 0;
7481 case VAR_DECL:
7482 case PARM_DECL:
7483 case CONST_DECL:
7484 case FUNCTION_DECL:
7485 return 0;
7487 default:
7488 if (POLY_INT_CST_P (t1))
7489 /* A false return means maybe_ne rather than known_ne. */
7490 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7491 TYPE_SIGN (TREE_TYPE (t1))),
7492 poly_widest_int::from (poly_int_cst_value (t2),
7493 TYPE_SIGN (TREE_TYPE (t2))));
7494 break;
7497 /* This general rule works for most tree codes. All exceptions should be
7498 handled above. If this is a language-specific tree code, we can't
7499 trust what might be in the operand, so say we don't know
7500 the situation. */
7501 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7502 return -1;
7504 switch (TREE_CODE_CLASS (code1))
7506 case tcc_unary:
7507 case tcc_binary:
7508 case tcc_comparison:
7509 case tcc_expression:
7510 case tcc_reference:
7511 case tcc_statement:
7512 cmp = 1;
7513 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7515 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7516 if (cmp <= 0)
7517 return cmp;
7520 return cmp;
7522 default:
7523 return -1;
7527 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7528 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7529 than U, respectively. */
7532 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7534 if (tree_int_cst_sgn (t) < 0)
7535 return -1;
7536 else if (!tree_fits_uhwi_p (t))
7537 return 1;
7538 else if (TREE_INT_CST_LOW (t) == u)
7539 return 0;
7540 else if (TREE_INT_CST_LOW (t) < u)
7541 return -1;
7542 else
7543 return 1;
7546 /* Return true if SIZE represents a constant size that is in bounds of
7547 what the middle-end and the backend accepts (covering not more than
7548 half of the address-space).
7549 When PERR is non-null, set *PERR on failure to the description of
7550 why SIZE is not valid. */
7552 bool
7553 valid_constant_size_p (const_tree size, cst_size_error *perr /* = NULL */)
7555 if (POLY_INT_CST_P (size))
7557 if (TREE_OVERFLOW (size))
7558 return false;
7559 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7560 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7561 return false;
7562 return true;
7565 cst_size_error error;
7566 if (!perr)
7567 perr = &error;
7569 if (TREE_CODE (size) != INTEGER_CST)
7571 *perr = cst_size_not_constant;
7572 return false;
7575 if (TREE_OVERFLOW_P (size))
7577 *perr = cst_size_overflow;
7578 return false;
7581 if (tree_int_cst_sgn (size) < 0)
7583 *perr = cst_size_negative;
7584 return false;
7586 if (!tree_fits_uhwi_p (size)
7587 || (wi::to_widest (TYPE_MAX_VALUE (sizetype))
7588 < wi::to_widest (size) * 2))
7590 *perr = cst_size_too_big;
7591 return false;
7594 return true;
7597 /* Return the precision of the type, or for a complex or vector type the
7598 precision of the type of its elements. */
7600 unsigned int
7601 element_precision (const_tree type)
7603 if (!TYPE_P (type))
7604 type = TREE_TYPE (type);
7605 enum tree_code code = TREE_CODE (type);
7606 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7607 type = TREE_TYPE (type);
7609 return TYPE_PRECISION (type);
7612 /* Return true if CODE represents an associative tree code. Otherwise
7613 return false. */
7614 bool
7615 associative_tree_code (enum tree_code code)
7617 switch (code)
7619 case BIT_IOR_EXPR:
7620 case BIT_AND_EXPR:
7621 case BIT_XOR_EXPR:
7622 case PLUS_EXPR:
7623 case MULT_EXPR:
7624 case MIN_EXPR:
7625 case MAX_EXPR:
7626 return true;
7628 default:
7629 break;
7631 return false;
7634 /* Return true if CODE represents a commutative tree code. Otherwise
7635 return false. */
7636 bool
7637 commutative_tree_code (enum tree_code code)
7639 switch (code)
7641 case PLUS_EXPR:
7642 case MULT_EXPR:
7643 case MULT_HIGHPART_EXPR:
7644 case MIN_EXPR:
7645 case MAX_EXPR:
7646 case BIT_IOR_EXPR:
7647 case BIT_XOR_EXPR:
7648 case BIT_AND_EXPR:
7649 case NE_EXPR:
7650 case EQ_EXPR:
7651 case UNORDERED_EXPR:
7652 case ORDERED_EXPR:
7653 case UNEQ_EXPR:
7654 case LTGT_EXPR:
7655 case TRUTH_AND_EXPR:
7656 case TRUTH_XOR_EXPR:
7657 case TRUTH_OR_EXPR:
7658 case WIDEN_MULT_EXPR:
7659 case VEC_WIDEN_MULT_HI_EXPR:
7660 case VEC_WIDEN_MULT_LO_EXPR:
7661 case VEC_WIDEN_MULT_EVEN_EXPR:
7662 case VEC_WIDEN_MULT_ODD_EXPR:
7663 return true;
7665 default:
7666 break;
7668 return false;
7671 /* Return true if CODE represents a ternary tree code for which the
7672 first two operands are commutative. Otherwise return false. */
7673 bool
7674 commutative_ternary_tree_code (enum tree_code code)
7676 switch (code)
7678 case WIDEN_MULT_PLUS_EXPR:
7679 case WIDEN_MULT_MINUS_EXPR:
7680 case DOT_PROD_EXPR:
7681 return true;
7683 default:
7684 break;
7686 return false;
7689 /* Returns true if CODE can overflow. */
7691 bool
7692 operation_can_overflow (enum tree_code code)
7694 switch (code)
7696 case PLUS_EXPR:
7697 case MINUS_EXPR:
7698 case MULT_EXPR:
7699 case LSHIFT_EXPR:
7700 /* Can overflow in various ways. */
7701 return true;
7702 case TRUNC_DIV_EXPR:
7703 case EXACT_DIV_EXPR:
7704 case FLOOR_DIV_EXPR:
7705 case CEIL_DIV_EXPR:
7706 /* For INT_MIN / -1. */
7707 return true;
7708 case NEGATE_EXPR:
7709 case ABS_EXPR:
7710 /* For -INT_MIN. */
7711 return true;
7712 default:
7713 /* These operators cannot overflow. */
7714 return false;
7718 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7719 ftrapv doesn't generate trapping insns for CODE. */
7721 bool
7722 operation_no_trapping_overflow (tree type, enum tree_code code)
7724 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7726 /* We don't generate instructions that trap on overflow for complex or vector
7727 types. */
7728 if (!INTEGRAL_TYPE_P (type))
7729 return true;
7731 if (!TYPE_OVERFLOW_TRAPS (type))
7732 return true;
7734 switch (code)
7736 case PLUS_EXPR:
7737 case MINUS_EXPR:
7738 case MULT_EXPR:
7739 case NEGATE_EXPR:
7740 case ABS_EXPR:
7741 /* These operators can overflow, and -ftrapv generates trapping code for
7742 these. */
7743 return false;
7744 case TRUNC_DIV_EXPR:
7745 case EXACT_DIV_EXPR:
7746 case FLOOR_DIV_EXPR:
7747 case CEIL_DIV_EXPR:
7748 case LSHIFT_EXPR:
7749 /* These operators can overflow, but -ftrapv does not generate trapping
7750 code for these. */
7751 return true;
7752 default:
7753 /* These operators cannot overflow. */
7754 return true;
7758 namespace inchash
7761 /* Generate a hash value for an expression. This can be used iteratively
7762 by passing a previous result as the HSTATE argument.
7764 This function is intended to produce the same hash for expressions which
7765 would compare equal using operand_equal_p. */
7766 void
7767 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7769 int i;
7770 enum tree_code code;
7771 enum tree_code_class tclass;
7773 if (t == NULL_TREE || t == error_mark_node)
7775 hstate.merge_hash (0);
7776 return;
7779 STRIP_ANY_LOCATION_WRAPPER (t);
7781 if (!(flags & OEP_ADDRESS_OF))
7782 STRIP_NOPS (t);
7784 code = TREE_CODE (t);
7786 switch (code)
7788 /* Alas, constants aren't shared, so we can't rely on pointer
7789 identity. */
7790 case VOID_CST:
7791 hstate.merge_hash (0);
7792 return;
7793 case INTEGER_CST:
7794 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7795 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7796 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7797 return;
7798 case REAL_CST:
7800 unsigned int val2;
7801 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7802 val2 = rvc_zero;
7803 else
7804 val2 = real_hash (TREE_REAL_CST_PTR (t));
7805 hstate.merge_hash (val2);
7806 return;
7808 case FIXED_CST:
7810 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7811 hstate.merge_hash (val2);
7812 return;
7814 case STRING_CST:
7815 hstate.add ((const void *) TREE_STRING_POINTER (t),
7816 TREE_STRING_LENGTH (t));
7817 return;
7818 case COMPLEX_CST:
7819 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7820 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7821 return;
7822 case VECTOR_CST:
7824 hstate.add_int (VECTOR_CST_NPATTERNS (t));
7825 hstate.add_int (VECTOR_CST_NELTS_PER_PATTERN (t));
7826 unsigned int count = vector_cst_encoded_nelts (t);
7827 for (unsigned int i = 0; i < count; ++i)
7828 inchash::add_expr (VECTOR_CST_ENCODED_ELT (t, i), hstate, flags);
7829 return;
7831 case SSA_NAME:
7832 /* We can just compare by pointer. */
7833 hstate.add_hwi (SSA_NAME_VERSION (t));
7834 return;
7835 case PLACEHOLDER_EXPR:
7836 /* The node itself doesn't matter. */
7837 return;
7838 case BLOCK:
7839 case OMP_CLAUSE:
7840 /* Ignore. */
7841 return;
7842 case TREE_LIST:
7843 /* A list of expressions, for a CALL_EXPR or as the elements of a
7844 VECTOR_CST. */
7845 for (; t; t = TREE_CHAIN (t))
7846 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7847 return;
7848 case CONSTRUCTOR:
7850 unsigned HOST_WIDE_INT idx;
7851 tree field, value;
7852 flags &= ~OEP_ADDRESS_OF;
7853 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7855 inchash::add_expr (field, hstate, flags);
7856 inchash::add_expr (value, hstate, flags);
7858 return;
7860 case STATEMENT_LIST:
7862 tree_stmt_iterator i;
7863 for (i = tsi_start (CONST_CAST_TREE (t));
7864 !tsi_end_p (i); tsi_next (&i))
7865 inchash::add_expr (tsi_stmt (i), hstate, flags);
7866 return;
7868 case TREE_VEC:
7869 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7870 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7871 return;
7872 case IDENTIFIER_NODE:
7873 hstate.add_object (IDENTIFIER_HASH_VALUE (t));
7874 return;
7875 case FUNCTION_DECL:
7876 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7877 Otherwise nodes that compare equal according to operand_equal_p might
7878 get different hash codes. However, don't do this for machine specific
7879 or front end builtins, since the function code is overloaded in those
7880 cases. */
7881 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7882 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7884 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7885 code = TREE_CODE (t);
7887 /* FALL THROUGH */
7888 default:
7889 if (POLY_INT_CST_P (t))
7891 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7892 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
7893 return;
7895 tclass = TREE_CODE_CLASS (code);
7897 if (tclass == tcc_declaration)
7899 /* DECL's have a unique ID */
7900 hstate.add_hwi (DECL_UID (t));
7902 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7904 /* For comparisons that can be swapped, use the lower
7905 tree code. */
7906 enum tree_code ccode = swap_tree_comparison (code);
7907 if (code < ccode)
7908 ccode = code;
7909 hstate.add_object (ccode);
7910 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7911 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7913 else if (CONVERT_EXPR_CODE_P (code))
7915 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7916 operand_equal_p. */
7917 enum tree_code ccode = NOP_EXPR;
7918 hstate.add_object (ccode);
7920 /* Don't hash the type, that can lead to having nodes which
7921 compare equal according to operand_equal_p, but which
7922 have different hash codes. Make sure to include signedness
7923 in the hash computation. */
7924 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7925 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7927 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7928 else if (code == MEM_REF
7929 && (flags & OEP_ADDRESS_OF) != 0
7930 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7931 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7932 && integer_zerop (TREE_OPERAND (t, 1)))
7933 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7934 hstate, flags);
7935 /* Don't ICE on FE specific trees, or their arguments etc.
7936 during operand_equal_p hash verification. */
7937 else if (!IS_EXPR_CODE_CLASS (tclass))
7938 gcc_assert (flags & OEP_HASH_CHECK);
7939 else
7941 unsigned int sflags = flags;
7943 hstate.add_object (code);
7945 switch (code)
7947 case ADDR_EXPR:
7948 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7949 flags |= OEP_ADDRESS_OF;
7950 sflags = flags;
7951 break;
7953 case INDIRECT_REF:
7954 case MEM_REF:
7955 case TARGET_MEM_REF:
7956 flags &= ~OEP_ADDRESS_OF;
7957 sflags = flags;
7958 break;
7960 case ARRAY_REF:
7961 case ARRAY_RANGE_REF:
7962 case COMPONENT_REF:
7963 case BIT_FIELD_REF:
7964 sflags &= ~OEP_ADDRESS_OF;
7965 break;
7967 case COND_EXPR:
7968 flags &= ~OEP_ADDRESS_OF;
7969 break;
7971 case WIDEN_MULT_PLUS_EXPR:
7972 case WIDEN_MULT_MINUS_EXPR:
7974 /* The multiplication operands are commutative. */
7975 inchash::hash one, two;
7976 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7977 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7978 hstate.add_commutative (one, two);
7979 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7980 return;
7983 case CALL_EXPR:
7984 if (CALL_EXPR_FN (t) == NULL_TREE)
7985 hstate.add_int (CALL_EXPR_IFN (t));
7986 break;
7988 case TARGET_EXPR:
7989 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7990 Usually different TARGET_EXPRs just should use
7991 different temporaries in their slots. */
7992 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7993 return;
7995 default:
7996 break;
7999 /* Don't hash the type, that can lead to having nodes which
8000 compare equal according to operand_equal_p, but which
8001 have different hash codes. */
8002 if (code == NON_LVALUE_EXPR)
8004 /* Make sure to include signness in the hash computation. */
8005 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
8006 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
8009 else if (commutative_tree_code (code))
8011 /* It's a commutative expression. We want to hash it the same
8012 however it appears. We do this by first hashing both operands
8013 and then rehashing based on the order of their independent
8014 hashes. */
8015 inchash::hash one, two;
8016 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
8017 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
8018 hstate.add_commutative (one, two);
8020 else
8021 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
8022 inchash::add_expr (TREE_OPERAND (t, i), hstate,
8023 i == 0 ? flags : sflags);
8025 return;
8031 /* Constructors for pointer, array and function types.
8032 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
8033 constructed by language-dependent code, not here.) */
8035 /* Construct, lay out and return the type of pointers to TO_TYPE with
8036 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
8037 reference all of memory. If such a type has already been
8038 constructed, reuse it. */
8040 tree
8041 build_pointer_type_for_mode (tree to_type, machine_mode mode,
8042 bool can_alias_all)
8044 tree t;
8045 bool could_alias = can_alias_all;
8047 if (to_type == error_mark_node)
8048 return error_mark_node;
8050 /* If the pointed-to type has the may_alias attribute set, force
8051 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
8052 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
8053 can_alias_all = true;
8055 /* In some cases, languages will have things that aren't a POINTER_TYPE
8056 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
8057 In that case, return that type without regard to the rest of our
8058 operands.
8060 ??? This is a kludge, but consistent with the way this function has
8061 always operated and there doesn't seem to be a good way to avoid this
8062 at the moment. */
8063 if (TYPE_POINTER_TO (to_type) != 0
8064 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
8065 return TYPE_POINTER_TO (to_type);
8067 /* First, if we already have a type for pointers to TO_TYPE and it's
8068 the proper mode, use it. */
8069 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
8070 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8071 return t;
8073 t = make_node (POINTER_TYPE);
8075 TREE_TYPE (t) = to_type;
8076 SET_TYPE_MODE (t, mode);
8077 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8078 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
8079 TYPE_POINTER_TO (to_type) = t;
8081 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8082 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8083 SET_TYPE_STRUCTURAL_EQUALITY (t);
8084 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8085 TYPE_CANONICAL (t)
8086 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
8087 mode, false);
8089 /* Lay out the type. This function has many callers that are concerned
8090 with expression-construction, and this simplifies them all. */
8091 layout_type (t);
8093 return t;
8096 /* By default build pointers in ptr_mode. */
8098 tree
8099 build_pointer_type (tree to_type)
8101 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8102 : TYPE_ADDR_SPACE (to_type);
8103 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8104 return build_pointer_type_for_mode (to_type, pointer_mode, false);
8107 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
8109 tree
8110 build_reference_type_for_mode (tree to_type, machine_mode mode,
8111 bool can_alias_all)
8113 tree t;
8114 bool could_alias = can_alias_all;
8116 if (to_type == error_mark_node)
8117 return error_mark_node;
8119 /* If the pointed-to type has the may_alias attribute set, force
8120 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
8121 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
8122 can_alias_all = true;
8124 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
8125 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
8126 In that case, return that type without regard to the rest of our
8127 operands.
8129 ??? This is a kludge, but consistent with the way this function has
8130 always operated and there doesn't seem to be a good way to avoid this
8131 at the moment. */
8132 if (TYPE_REFERENCE_TO (to_type) != 0
8133 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
8134 return TYPE_REFERENCE_TO (to_type);
8136 /* First, if we already have a type for pointers to TO_TYPE and it's
8137 the proper mode, use it. */
8138 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
8139 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8140 return t;
8142 t = make_node (REFERENCE_TYPE);
8144 TREE_TYPE (t) = to_type;
8145 SET_TYPE_MODE (t, mode);
8146 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8147 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
8148 TYPE_REFERENCE_TO (to_type) = t;
8150 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8151 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8152 SET_TYPE_STRUCTURAL_EQUALITY (t);
8153 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8154 TYPE_CANONICAL (t)
8155 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
8156 mode, false);
8158 layout_type (t);
8160 return t;
8164 /* Build the node for the type of references-to-TO_TYPE by default
8165 in ptr_mode. */
8167 tree
8168 build_reference_type (tree to_type)
8170 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8171 : TYPE_ADDR_SPACE (to_type);
8172 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8173 return build_reference_type_for_mode (to_type, pointer_mode, false);
8176 #define MAX_INT_CACHED_PREC \
8177 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8178 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
8180 /* Builds a signed or unsigned integer type of precision PRECISION.
8181 Used for C bitfields whose precision does not match that of
8182 built-in target types. */
8183 tree
8184 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8185 int unsignedp)
8187 tree itype, ret;
8189 if (unsignedp)
8190 unsignedp = MAX_INT_CACHED_PREC + 1;
8192 if (precision <= MAX_INT_CACHED_PREC)
8194 itype = nonstandard_integer_type_cache[precision + unsignedp];
8195 if (itype)
8196 return itype;
8199 itype = make_node (INTEGER_TYPE);
8200 TYPE_PRECISION (itype) = precision;
8202 if (unsignedp)
8203 fixup_unsigned_type (itype);
8204 else
8205 fixup_signed_type (itype);
8207 ret = itype;
8209 inchash::hash hstate;
8210 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8211 ret = type_hash_canon (hstate.end (), itype);
8212 if (precision <= MAX_INT_CACHED_PREC)
8213 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8215 return ret;
8218 #define MAX_BOOL_CACHED_PREC \
8219 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8220 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8222 /* Builds a boolean type of precision PRECISION.
8223 Used for boolean vectors to choose proper vector element size. */
8224 tree
8225 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8227 tree type;
8229 if (precision <= MAX_BOOL_CACHED_PREC)
8231 type = nonstandard_boolean_type_cache[precision];
8232 if (type)
8233 return type;
8236 type = make_node (BOOLEAN_TYPE);
8237 TYPE_PRECISION (type) = precision;
8238 fixup_signed_type (type);
8240 if (precision <= MAX_INT_CACHED_PREC)
8241 nonstandard_boolean_type_cache[precision] = type;
8243 return type;
8246 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8247 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8248 is true, reuse such a type that has already been constructed. */
8250 static tree
8251 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8253 tree itype = make_node (INTEGER_TYPE);
8255 TREE_TYPE (itype) = type;
8257 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8258 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8260 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8261 SET_TYPE_MODE (itype, TYPE_MODE (type));
8262 TYPE_SIZE (itype) = TYPE_SIZE (type);
8263 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8264 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
8265 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8266 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
8268 if (!shared)
8269 return itype;
8271 if ((TYPE_MIN_VALUE (itype)
8272 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8273 || (TYPE_MAX_VALUE (itype)
8274 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8276 /* Since we cannot reliably merge this type, we need to compare it using
8277 structural equality checks. */
8278 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8279 return itype;
8282 hashval_t hash = type_hash_canon_hash (itype);
8283 itype = type_hash_canon (hash, itype);
8285 return itype;
8288 /* Wrapper around build_range_type_1 with SHARED set to true. */
8290 tree
8291 build_range_type (tree type, tree lowval, tree highval)
8293 return build_range_type_1 (type, lowval, highval, true);
8296 /* Wrapper around build_range_type_1 with SHARED set to false. */
8298 tree
8299 build_nonshared_range_type (tree type, tree lowval, tree highval)
8301 return build_range_type_1 (type, lowval, highval, false);
8304 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8305 MAXVAL should be the maximum value in the domain
8306 (one less than the length of the array).
8308 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8309 We don't enforce this limit, that is up to caller (e.g. language front end).
8310 The limit exists because the result is a signed type and we don't handle
8311 sizes that use more than one HOST_WIDE_INT. */
8313 tree
8314 build_index_type (tree maxval)
8316 return build_range_type (sizetype, size_zero_node, maxval);
8319 /* Return true if the debug information for TYPE, a subtype, should be emitted
8320 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8321 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8322 debug info and doesn't reflect the source code. */
8324 bool
8325 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8327 tree base_type = TREE_TYPE (type), low, high;
8329 /* Subrange types have a base type which is an integral type. */
8330 if (!INTEGRAL_TYPE_P (base_type))
8331 return false;
8333 /* Get the real bounds of the subtype. */
8334 if (lang_hooks.types.get_subrange_bounds)
8335 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8336 else
8338 low = TYPE_MIN_VALUE (type);
8339 high = TYPE_MAX_VALUE (type);
8342 /* If the type and its base type have the same representation and the same
8343 name, then the type is not a subrange but a copy of the base type. */
8344 if ((TREE_CODE (base_type) == INTEGER_TYPE
8345 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8346 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8347 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8348 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8349 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8350 return false;
8352 if (lowval)
8353 *lowval = low;
8354 if (highval)
8355 *highval = high;
8356 return true;
8359 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8360 and number of elements specified by the range of values of INDEX_TYPE.
8361 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
8362 If SHARED is true, reuse such a type that has already been constructed. */
8364 static tree
8365 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
8366 bool shared)
8368 tree t;
8370 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8372 error ("arrays of functions are not meaningful");
8373 elt_type = integer_type_node;
8376 t = make_node (ARRAY_TYPE);
8377 TREE_TYPE (t) = elt_type;
8378 TYPE_DOMAIN (t) = index_type;
8379 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8380 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
8381 layout_type (t);
8383 /* If the element type is incomplete at this point we get marked for
8384 structural equality. Do not record these types in the canonical
8385 type hashtable. */
8386 if (TYPE_STRUCTURAL_EQUALITY_P (t))
8387 return t;
8389 if (shared)
8391 hashval_t hash = type_hash_canon_hash (t);
8392 t = type_hash_canon (hash, t);
8395 if (TYPE_CANONICAL (t) == t)
8397 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8398 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8399 || in_lto_p)
8400 SET_TYPE_STRUCTURAL_EQUALITY (t);
8401 else if (TYPE_CANONICAL (elt_type) != elt_type
8402 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8403 TYPE_CANONICAL (t)
8404 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8405 index_type
8406 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8407 typeless_storage, shared);
8410 return t;
8413 /* Wrapper around build_array_type_1 with SHARED set to true. */
8415 tree
8416 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
8418 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
8421 /* Wrapper around build_array_type_1 with SHARED set to false. */
8423 tree
8424 build_nonshared_array_type (tree elt_type, tree index_type)
8426 return build_array_type_1 (elt_type, index_type, false, false);
8429 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8430 sizetype. */
8432 tree
8433 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
8435 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8438 /* Recursively examines the array elements of TYPE, until a non-array
8439 element type is found. */
8441 tree
8442 strip_array_types (tree type)
8444 while (TREE_CODE (type) == ARRAY_TYPE)
8445 type = TREE_TYPE (type);
8447 return type;
8450 /* Computes the canonical argument types from the argument type list
8451 ARGTYPES.
8453 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8454 on entry to this function, or if any of the ARGTYPES are
8455 structural.
8457 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8458 true on entry to this function, or if any of the ARGTYPES are
8459 non-canonical.
8461 Returns a canonical argument list, which may be ARGTYPES when the
8462 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8463 true) or would not differ from ARGTYPES. */
8465 static tree
8466 maybe_canonicalize_argtypes (tree argtypes,
8467 bool *any_structural_p,
8468 bool *any_noncanonical_p)
8470 tree arg;
8471 bool any_noncanonical_argtypes_p = false;
8473 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8475 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8476 /* Fail gracefully by stating that the type is structural. */
8477 *any_structural_p = true;
8478 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8479 *any_structural_p = true;
8480 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8481 || TREE_PURPOSE (arg))
8482 /* If the argument has a default argument, we consider it
8483 non-canonical even though the type itself is canonical.
8484 That way, different variants of function and method types
8485 with default arguments will all point to the variant with
8486 no defaults as their canonical type. */
8487 any_noncanonical_argtypes_p = true;
8490 if (*any_structural_p)
8491 return argtypes;
8493 if (any_noncanonical_argtypes_p)
8495 /* Build the canonical list of argument types. */
8496 tree canon_argtypes = NULL_TREE;
8497 bool is_void = false;
8499 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8501 if (arg == void_list_node)
8502 is_void = true;
8503 else
8504 canon_argtypes = tree_cons (NULL_TREE,
8505 TYPE_CANONICAL (TREE_VALUE (arg)),
8506 canon_argtypes);
8509 canon_argtypes = nreverse (canon_argtypes);
8510 if (is_void)
8511 canon_argtypes = chainon (canon_argtypes, void_list_node);
8513 /* There is a non-canonical type. */
8514 *any_noncanonical_p = true;
8515 return canon_argtypes;
8518 /* The canonical argument types are the same as ARGTYPES. */
8519 return argtypes;
8522 /* Construct, lay out and return
8523 the type of functions returning type VALUE_TYPE
8524 given arguments of types ARG_TYPES.
8525 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8526 are data type nodes for the arguments of the function.
8527 If such a type has already been constructed, reuse it. */
8529 tree
8530 build_function_type (tree value_type, tree arg_types)
8532 tree t;
8533 inchash::hash hstate;
8534 bool any_structural_p, any_noncanonical_p;
8535 tree canon_argtypes;
8537 gcc_assert (arg_types != error_mark_node);
8539 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8541 error ("function return type cannot be function");
8542 value_type = integer_type_node;
8545 /* Make a node of the sort we want. */
8546 t = make_node (FUNCTION_TYPE);
8547 TREE_TYPE (t) = value_type;
8548 TYPE_ARG_TYPES (t) = arg_types;
8550 /* If we already have such a type, use the old one. */
8551 hashval_t hash = type_hash_canon_hash (t);
8552 t = type_hash_canon (hash, t);
8554 /* Set up the canonical type. */
8555 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8556 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8557 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8558 &any_structural_p,
8559 &any_noncanonical_p);
8560 if (any_structural_p)
8561 SET_TYPE_STRUCTURAL_EQUALITY (t);
8562 else if (any_noncanonical_p)
8563 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8564 canon_argtypes);
8566 if (!COMPLETE_TYPE_P (t))
8567 layout_type (t);
8568 return t;
8571 /* Build a function type. The RETURN_TYPE is the type returned by the
8572 function. If VAARGS is set, no void_type_node is appended to the
8573 list. ARGP must be always be terminated be a NULL_TREE. */
8575 static tree
8576 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8578 tree t, args, last;
8580 t = va_arg (argp, tree);
8581 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8582 args = tree_cons (NULL_TREE, t, args);
8584 if (vaargs)
8586 last = args;
8587 if (args != NULL_TREE)
8588 args = nreverse (args);
8589 gcc_assert (last != void_list_node);
8591 else if (args == NULL_TREE)
8592 args = void_list_node;
8593 else
8595 last = args;
8596 args = nreverse (args);
8597 TREE_CHAIN (last) = void_list_node;
8599 args = build_function_type (return_type, args);
8601 return args;
8604 /* Build a function type. The RETURN_TYPE is the type returned by the
8605 function. If additional arguments are provided, they are
8606 additional argument types. The list of argument types must always
8607 be terminated by NULL_TREE. */
8609 tree
8610 build_function_type_list (tree return_type, ...)
8612 tree args;
8613 va_list p;
8615 va_start (p, return_type);
8616 args = build_function_type_list_1 (false, return_type, p);
8617 va_end (p);
8618 return args;
8621 /* Build a variable argument function type. The RETURN_TYPE is the
8622 type returned by the function. If additional arguments are provided,
8623 they are additional argument types. The list of argument types must
8624 always be terminated by NULL_TREE. */
8626 tree
8627 build_varargs_function_type_list (tree return_type, ...)
8629 tree args;
8630 va_list p;
8632 va_start (p, return_type);
8633 args = build_function_type_list_1 (true, return_type, p);
8634 va_end (p);
8636 return args;
8639 /* Build a function type. RETURN_TYPE is the type returned by the
8640 function; VAARGS indicates whether the function takes varargs. The
8641 function takes N named arguments, the types of which are provided in
8642 ARG_TYPES. */
8644 static tree
8645 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8646 tree *arg_types)
8648 int i;
8649 tree t = vaargs ? NULL_TREE : void_list_node;
8651 for (i = n - 1; i >= 0; i--)
8652 t = tree_cons (NULL_TREE, arg_types[i], t);
8654 return build_function_type (return_type, t);
8657 /* Build a function type. RETURN_TYPE is the type returned by the
8658 function. The function takes N named arguments, the types of which
8659 are provided in ARG_TYPES. */
8661 tree
8662 build_function_type_array (tree return_type, int n, tree *arg_types)
8664 return build_function_type_array_1 (false, return_type, n, arg_types);
8667 /* Build a variable argument function type. RETURN_TYPE is the type
8668 returned by the function. The function takes N named arguments, the
8669 types of which are provided in ARG_TYPES. */
8671 tree
8672 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8674 return build_function_type_array_1 (true, return_type, n, arg_types);
8677 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8678 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8679 for the method. An implicit additional parameter (of type
8680 pointer-to-BASETYPE) is added to the ARGTYPES. */
8682 tree
8683 build_method_type_directly (tree basetype,
8684 tree rettype,
8685 tree argtypes)
8687 tree t;
8688 tree ptype;
8689 bool any_structural_p, any_noncanonical_p;
8690 tree canon_argtypes;
8692 /* Make a node of the sort we want. */
8693 t = make_node (METHOD_TYPE);
8695 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8696 TREE_TYPE (t) = rettype;
8697 ptype = build_pointer_type (basetype);
8699 /* The actual arglist for this function includes a "hidden" argument
8700 which is "this". Put it into the list of argument types. */
8701 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8702 TYPE_ARG_TYPES (t) = argtypes;
8704 /* If we already have such a type, use the old one. */
8705 hashval_t hash = type_hash_canon_hash (t);
8706 t = type_hash_canon (hash, t);
8708 /* Set up the canonical type. */
8709 any_structural_p
8710 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8711 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8712 any_noncanonical_p
8713 = (TYPE_CANONICAL (basetype) != basetype
8714 || TYPE_CANONICAL (rettype) != rettype);
8715 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8716 &any_structural_p,
8717 &any_noncanonical_p);
8718 if (any_structural_p)
8719 SET_TYPE_STRUCTURAL_EQUALITY (t);
8720 else if (any_noncanonical_p)
8721 TYPE_CANONICAL (t)
8722 = build_method_type_directly (TYPE_CANONICAL (basetype),
8723 TYPE_CANONICAL (rettype),
8724 canon_argtypes);
8725 if (!COMPLETE_TYPE_P (t))
8726 layout_type (t);
8728 return t;
8731 /* Construct, lay out and return the type of methods belonging to class
8732 BASETYPE and whose arguments and values are described by TYPE.
8733 If that type exists already, reuse it.
8734 TYPE must be a FUNCTION_TYPE node. */
8736 tree
8737 build_method_type (tree basetype, tree type)
8739 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8741 return build_method_type_directly (basetype,
8742 TREE_TYPE (type),
8743 TYPE_ARG_TYPES (type));
8746 /* Construct, lay out and return the type of offsets to a value
8747 of type TYPE, within an object of type BASETYPE.
8748 If a suitable offset type exists already, reuse it. */
8750 tree
8751 build_offset_type (tree basetype, tree type)
8753 tree t;
8755 /* Make a node of the sort we want. */
8756 t = make_node (OFFSET_TYPE);
8758 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8759 TREE_TYPE (t) = type;
8761 /* If we already have such a type, use the old one. */
8762 hashval_t hash = type_hash_canon_hash (t);
8763 t = type_hash_canon (hash, t);
8765 if (!COMPLETE_TYPE_P (t))
8766 layout_type (t);
8768 if (TYPE_CANONICAL (t) == t)
8770 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8771 || TYPE_STRUCTURAL_EQUALITY_P (type))
8772 SET_TYPE_STRUCTURAL_EQUALITY (t);
8773 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8774 || TYPE_CANONICAL (type) != type)
8775 TYPE_CANONICAL (t)
8776 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8777 TYPE_CANONICAL (type));
8780 return t;
8783 /* Create a complex type whose components are COMPONENT_TYPE.
8785 If NAMED is true, the type is given a TYPE_NAME. We do not always
8786 do so because this creates a DECL node and thus make the DECL_UIDs
8787 dependent on the type canonicalization hashtable, which is GC-ed,
8788 so the DECL_UIDs would not be stable wrt garbage collection. */
8790 tree
8791 build_complex_type (tree component_type, bool named)
8793 gcc_assert (INTEGRAL_TYPE_P (component_type)
8794 || SCALAR_FLOAT_TYPE_P (component_type)
8795 || FIXED_POINT_TYPE_P (component_type));
8797 /* Make a node of the sort we want. */
8798 tree probe = make_node (COMPLEX_TYPE);
8800 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8802 /* If we already have such a type, use the old one. */
8803 hashval_t hash = type_hash_canon_hash (probe);
8804 tree t = type_hash_canon (hash, probe);
8806 if (t == probe)
8808 /* We created a new type. The hash insertion will have laid
8809 out the type. We need to check the canonicalization and
8810 maybe set the name. */
8811 gcc_checking_assert (COMPLETE_TYPE_P (t)
8812 && !TYPE_NAME (t)
8813 && TYPE_CANONICAL (t) == t);
8815 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8816 SET_TYPE_STRUCTURAL_EQUALITY (t);
8817 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8818 TYPE_CANONICAL (t)
8819 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8821 /* We need to create a name, since complex is a fundamental type. */
8822 if (named)
8824 const char *name = NULL;
8826 if (TREE_TYPE (t) == char_type_node)
8827 name = "complex char";
8828 else if (TREE_TYPE (t) == signed_char_type_node)
8829 name = "complex signed char";
8830 else if (TREE_TYPE (t) == unsigned_char_type_node)
8831 name = "complex unsigned char";
8832 else if (TREE_TYPE (t) == short_integer_type_node)
8833 name = "complex short int";
8834 else if (TREE_TYPE (t) == short_unsigned_type_node)
8835 name = "complex short unsigned int";
8836 else if (TREE_TYPE (t) == integer_type_node)
8837 name = "complex int";
8838 else if (TREE_TYPE (t) == unsigned_type_node)
8839 name = "complex unsigned int";
8840 else if (TREE_TYPE (t) == long_integer_type_node)
8841 name = "complex long int";
8842 else if (TREE_TYPE (t) == long_unsigned_type_node)
8843 name = "complex long unsigned int";
8844 else if (TREE_TYPE (t) == long_long_integer_type_node)
8845 name = "complex long long int";
8846 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8847 name = "complex long long unsigned int";
8849 if (name != NULL)
8850 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8851 get_identifier (name), t);
8855 return build_qualified_type (t, TYPE_QUALS (component_type));
8858 /* If TYPE is a real or complex floating-point type and the target
8859 does not directly support arithmetic on TYPE then return the wider
8860 type to be used for arithmetic on TYPE. Otherwise, return
8861 NULL_TREE. */
8863 tree
8864 excess_precision_type (tree type)
8866 /* The target can give two different responses to the question of
8867 which excess precision mode it would like depending on whether we
8868 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8870 enum excess_precision_type requested_type
8871 = (flag_excess_precision == EXCESS_PRECISION_FAST
8872 ? EXCESS_PRECISION_TYPE_FAST
8873 : EXCESS_PRECISION_TYPE_STANDARD);
8875 enum flt_eval_method target_flt_eval_method
8876 = targetm.c.excess_precision (requested_type);
8878 /* The target should not ask for unpredictable float evaluation (though
8879 it might advertise that implicitly the evaluation is unpredictable,
8880 but we don't care about that here, it will have been reported
8881 elsewhere). If it does ask for unpredictable evaluation, we have
8882 nothing to do here. */
8883 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8885 /* Nothing to do. The target has asked for all types we know about
8886 to be computed with their native precision and range. */
8887 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8888 return NULL_TREE;
8890 /* The target will promote this type in a target-dependent way, so excess
8891 precision ought to leave it alone. */
8892 if (targetm.promoted_type (type) != NULL_TREE)
8893 return NULL_TREE;
8895 machine_mode float16_type_mode = (float16_type_node
8896 ? TYPE_MODE (float16_type_node)
8897 : VOIDmode);
8898 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8899 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8901 switch (TREE_CODE (type))
8903 case REAL_TYPE:
8905 machine_mode type_mode = TYPE_MODE (type);
8906 switch (target_flt_eval_method)
8908 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8909 if (type_mode == float16_type_mode)
8910 return float_type_node;
8911 break;
8912 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8913 if (type_mode == float16_type_mode
8914 || type_mode == float_type_mode)
8915 return double_type_node;
8916 break;
8917 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8918 if (type_mode == float16_type_mode
8919 || type_mode == float_type_mode
8920 || type_mode == double_type_mode)
8921 return long_double_type_node;
8922 break;
8923 default:
8924 gcc_unreachable ();
8926 break;
8928 case COMPLEX_TYPE:
8930 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8931 return NULL_TREE;
8932 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8933 switch (target_flt_eval_method)
8935 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8936 if (type_mode == float16_type_mode)
8937 return complex_float_type_node;
8938 break;
8939 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8940 if (type_mode == float16_type_mode
8941 || type_mode == float_type_mode)
8942 return complex_double_type_node;
8943 break;
8944 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8945 if (type_mode == float16_type_mode
8946 || type_mode == float_type_mode
8947 || type_mode == double_type_mode)
8948 return complex_long_double_type_node;
8949 break;
8950 default:
8951 gcc_unreachable ();
8953 break;
8955 default:
8956 break;
8959 return NULL_TREE;
8962 /* Return OP, stripped of any conversions to wider types as much as is safe.
8963 Converting the value back to OP's type makes a value equivalent to OP.
8965 If FOR_TYPE is nonzero, we return a value which, if converted to
8966 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8968 OP must have integer, real or enumeral type. Pointers are not allowed!
8970 There are some cases where the obvious value we could return
8971 would regenerate to OP if converted to OP's type,
8972 but would not extend like OP to wider types.
8973 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8974 For example, if OP is (unsigned short)(signed char)-1,
8975 we avoid returning (signed char)-1 if FOR_TYPE is int,
8976 even though extending that to an unsigned short would regenerate OP,
8977 since the result of extending (signed char)-1 to (int)
8978 is different from (int) OP. */
8980 tree
8981 get_unwidened (tree op, tree for_type)
8983 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8984 tree type = TREE_TYPE (op);
8985 unsigned final_prec
8986 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8987 int uns
8988 = (for_type != 0 && for_type != type
8989 && final_prec > TYPE_PRECISION (type)
8990 && TYPE_UNSIGNED (type));
8991 tree win = op;
8993 while (CONVERT_EXPR_P (op))
8995 int bitschange;
8997 /* TYPE_PRECISION on vector types has different meaning
8998 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8999 so avoid them here. */
9000 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
9001 break;
9003 bitschange = TYPE_PRECISION (TREE_TYPE (op))
9004 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
9006 /* Truncations are many-one so cannot be removed.
9007 Unless we are later going to truncate down even farther. */
9008 if (bitschange < 0
9009 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
9010 break;
9012 /* See what's inside this conversion. If we decide to strip it,
9013 we will set WIN. */
9014 op = TREE_OPERAND (op, 0);
9016 /* If we have not stripped any zero-extensions (uns is 0),
9017 we can strip any kind of extension.
9018 If we have previously stripped a zero-extension,
9019 only zero-extensions can safely be stripped.
9020 Any extension can be stripped if the bits it would produce
9021 are all going to be discarded later by truncating to FOR_TYPE. */
9023 if (bitschange > 0)
9025 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
9026 win = op;
9027 /* TYPE_UNSIGNED says whether this is a zero-extension.
9028 Let's avoid computing it if it does not affect WIN
9029 and if UNS will not be needed again. */
9030 if ((uns
9031 || CONVERT_EXPR_P (op))
9032 && TYPE_UNSIGNED (TREE_TYPE (op)))
9034 uns = 1;
9035 win = op;
9040 /* If we finally reach a constant see if it fits in sth smaller and
9041 in that case convert it. */
9042 if (TREE_CODE (win) == INTEGER_CST)
9044 tree wtype = TREE_TYPE (win);
9045 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
9046 if (for_type)
9047 prec = MAX (prec, final_prec);
9048 if (prec < TYPE_PRECISION (wtype))
9050 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
9051 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
9052 win = fold_convert (t, win);
9056 return win;
9059 /* Return OP or a simpler expression for a narrower value
9060 which can be sign-extended or zero-extended to give back OP.
9061 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
9062 or 0 if the value should be sign-extended. */
9064 tree
9065 get_narrower (tree op, int *unsignedp_ptr)
9067 int uns = 0;
9068 int first = 1;
9069 tree win = op;
9070 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
9072 while (TREE_CODE (op) == NOP_EXPR)
9074 int bitschange
9075 = (TYPE_PRECISION (TREE_TYPE (op))
9076 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
9078 /* Truncations are many-one so cannot be removed. */
9079 if (bitschange < 0)
9080 break;
9082 /* See what's inside this conversion. If we decide to strip it,
9083 we will set WIN. */
9085 if (bitschange > 0)
9087 op = TREE_OPERAND (op, 0);
9088 /* An extension: the outermost one can be stripped,
9089 but remember whether it is zero or sign extension. */
9090 if (first)
9091 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9092 /* Otherwise, if a sign extension has been stripped,
9093 only sign extensions can now be stripped;
9094 if a zero extension has been stripped, only zero-extensions. */
9095 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
9096 break;
9097 first = 0;
9099 else /* bitschange == 0 */
9101 /* A change in nominal type can always be stripped, but we must
9102 preserve the unsignedness. */
9103 if (first)
9104 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9105 first = 0;
9106 op = TREE_OPERAND (op, 0);
9107 /* Keep trying to narrow, but don't assign op to win if it
9108 would turn an integral type into something else. */
9109 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
9110 continue;
9113 win = op;
9116 if (TREE_CODE (op) == COMPONENT_REF
9117 /* Since type_for_size always gives an integer type. */
9118 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
9119 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
9120 /* Ensure field is laid out already. */
9121 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
9122 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
9124 unsigned HOST_WIDE_INT innerprec
9125 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
9126 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
9127 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
9128 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
9130 /* We can get this structure field in a narrower type that fits it,
9131 but the resulting extension to its nominal type (a fullword type)
9132 must satisfy the same conditions as for other extensions.
9134 Do this only for fields that are aligned (not bit-fields),
9135 because when bit-field insns will be used there is no
9136 advantage in doing this. */
9138 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
9139 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
9140 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
9141 && type != 0)
9143 if (first)
9144 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
9145 win = fold_convert (type, op);
9149 *unsignedp_ptr = uns;
9150 return win;
9153 /* Return true if integer constant C has a value that is permissible
9154 for TYPE, an integral type. */
9156 bool
9157 int_fits_type_p (const_tree c, const_tree type)
9159 tree type_low_bound, type_high_bound;
9160 bool ok_for_low_bound, ok_for_high_bound;
9161 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
9163 /* Non-standard boolean types can have arbitrary precision but various
9164 transformations assume that they can only take values 0 and +/-1. */
9165 if (TREE_CODE (type) == BOOLEAN_TYPE)
9166 return wi::fits_to_boolean_p (wi::to_wide (c), type);
9168 retry:
9169 type_low_bound = TYPE_MIN_VALUE (type);
9170 type_high_bound = TYPE_MAX_VALUE (type);
9172 /* If at least one bound of the type is a constant integer, we can check
9173 ourselves and maybe make a decision. If no such decision is possible, but
9174 this type is a subtype, try checking against that. Otherwise, use
9175 fits_to_tree_p, which checks against the precision.
9177 Compute the status for each possibly constant bound, and return if we see
9178 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9179 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9180 for "constant known to fit". */
9182 /* Check if c >= type_low_bound. */
9183 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9185 if (tree_int_cst_lt (c, type_low_bound))
9186 return false;
9187 ok_for_low_bound = true;
9189 else
9190 ok_for_low_bound = false;
9192 /* Check if c <= type_high_bound. */
9193 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9195 if (tree_int_cst_lt (type_high_bound, c))
9196 return false;
9197 ok_for_high_bound = true;
9199 else
9200 ok_for_high_bound = false;
9202 /* If the constant fits both bounds, the result is known. */
9203 if (ok_for_low_bound && ok_for_high_bound)
9204 return true;
9206 /* Perform some generic filtering which may allow making a decision
9207 even if the bounds are not constant. First, negative integers
9208 never fit in unsigned types, */
9209 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
9210 return false;
9212 /* Second, narrower types always fit in wider ones. */
9213 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9214 return true;
9216 /* Third, unsigned integers with top bit set never fit signed types. */
9217 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9219 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
9220 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9222 /* When a tree_cst is converted to a wide-int, the precision
9223 is taken from the type. However, if the precision of the
9224 mode underneath the type is smaller than that, it is
9225 possible that the value will not fit. The test below
9226 fails if any bit is set between the sign bit of the
9227 underlying mode and the top bit of the type. */
9228 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
9229 return false;
9231 else if (wi::neg_p (wi::to_wide (c)))
9232 return false;
9235 /* If we haven't been able to decide at this point, there nothing more we
9236 can check ourselves here. Look at the base type if we have one and it
9237 has the same precision. */
9238 if (TREE_CODE (type) == INTEGER_TYPE
9239 && TREE_TYPE (type) != 0
9240 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9242 type = TREE_TYPE (type);
9243 goto retry;
9246 /* Or to fits_to_tree_p, if nothing else. */
9247 return wi::fits_to_tree_p (wi::to_wide (c), type);
9250 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9251 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9252 represented (assuming two's-complement arithmetic) within the bit
9253 precision of the type are returned instead. */
9255 void
9256 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9258 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9259 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9260 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
9261 else
9263 if (TYPE_UNSIGNED (type))
9264 mpz_set_ui (min, 0);
9265 else
9267 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9268 wi::to_mpz (mn, min, SIGNED);
9272 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9273 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9274 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
9275 else
9277 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9278 wi::to_mpz (mn, max, TYPE_SIGN (type));
9282 /* Return true if VAR is an automatic variable. */
9284 bool
9285 auto_var_p (const_tree var)
9287 return ((((VAR_P (var) && ! DECL_EXTERNAL (var))
9288 || TREE_CODE (var) == PARM_DECL)
9289 && ! TREE_STATIC (var))
9290 || TREE_CODE (var) == RESULT_DECL);
9293 /* Return true if VAR is an automatic variable defined in function FN. */
9295 bool
9296 auto_var_in_fn_p (const_tree var, const_tree fn)
9298 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9299 && (auto_var_p (var)
9300 || TREE_CODE (var) == LABEL_DECL));
9303 /* Subprogram of following function. Called by walk_tree.
9305 Return *TP if it is an automatic variable or parameter of the
9306 function passed in as DATA. */
9308 static tree
9309 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9311 tree fn = (tree) data;
9313 if (TYPE_P (*tp))
9314 *walk_subtrees = 0;
9316 else if (DECL_P (*tp)
9317 && auto_var_in_fn_p (*tp, fn))
9318 return *tp;
9320 return NULL_TREE;
9323 /* Returns true if T is, contains, or refers to a type with variable
9324 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9325 arguments, but not the return type. If FN is nonzero, only return
9326 true if a modifier of the type or position of FN is a variable or
9327 parameter inside FN.
9329 This concept is more general than that of C99 'variably modified types':
9330 in C99, a struct type is never variably modified because a VLA may not
9331 appear as a structure member. However, in GNU C code like:
9333 struct S { int i[f()]; };
9335 is valid, and other languages may define similar constructs. */
9337 bool
9338 variably_modified_type_p (tree type, tree fn)
9340 tree t;
9342 /* Test if T is either variable (if FN is zero) or an expression containing
9343 a variable in FN. If TYPE isn't gimplified, return true also if
9344 gimplify_one_sizepos would gimplify the expression into a local
9345 variable. */
9346 #define RETURN_TRUE_IF_VAR(T) \
9347 do { tree _t = (T); \
9348 if (_t != NULL_TREE \
9349 && _t != error_mark_node \
9350 && !CONSTANT_CLASS_P (_t) \
9351 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9352 && (!fn \
9353 || (!TYPE_SIZES_GIMPLIFIED (type) \
9354 && (TREE_CODE (_t) != VAR_DECL \
9355 && !CONTAINS_PLACEHOLDER_P (_t))) \
9356 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9357 return true; } while (0)
9359 if (type == error_mark_node)
9360 return false;
9362 /* If TYPE itself has variable size, it is variably modified. */
9363 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9364 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9366 switch (TREE_CODE (type))
9368 case POINTER_TYPE:
9369 case REFERENCE_TYPE:
9370 case VECTOR_TYPE:
9371 /* Ada can have pointer types refering to themselves indirectly. */
9372 if (TREE_VISITED (type))
9373 return false;
9374 TREE_VISITED (type) = true;
9375 if (variably_modified_type_p (TREE_TYPE (type), fn))
9377 TREE_VISITED (type) = false;
9378 return true;
9380 TREE_VISITED (type) = false;
9381 break;
9383 case FUNCTION_TYPE:
9384 case METHOD_TYPE:
9385 /* If TYPE is a function type, it is variably modified if the
9386 return type is variably modified. */
9387 if (variably_modified_type_p (TREE_TYPE (type), fn))
9388 return true;
9389 break;
9391 case INTEGER_TYPE:
9392 case REAL_TYPE:
9393 case FIXED_POINT_TYPE:
9394 case ENUMERAL_TYPE:
9395 case BOOLEAN_TYPE:
9396 /* Scalar types are variably modified if their end points
9397 aren't constant. */
9398 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9399 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9400 break;
9402 case RECORD_TYPE:
9403 case UNION_TYPE:
9404 case QUAL_UNION_TYPE:
9405 /* We can't see if any of the fields are variably-modified by the
9406 definition we normally use, since that would produce infinite
9407 recursion via pointers. */
9408 /* This is variably modified if some field's type is. */
9409 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9410 if (TREE_CODE (t) == FIELD_DECL)
9412 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9413 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9414 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9416 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9417 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9419 break;
9421 case ARRAY_TYPE:
9422 /* Do not call ourselves to avoid infinite recursion. This is
9423 variably modified if the element type is. */
9424 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9425 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9426 break;
9428 default:
9429 break;
9432 /* The current language may have other cases to check, but in general,
9433 all other types are not variably modified. */
9434 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9436 #undef RETURN_TRUE_IF_VAR
9439 /* Given a DECL or TYPE, return the scope in which it was declared, or
9440 NULL_TREE if there is no containing scope. */
9442 tree
9443 get_containing_scope (const_tree t)
9445 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9448 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
9450 const_tree
9451 get_ultimate_context (const_tree decl)
9453 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
9455 if (TREE_CODE (decl) == BLOCK)
9456 decl = BLOCK_SUPERCONTEXT (decl);
9457 else
9458 decl = get_containing_scope (decl);
9460 return decl;
9463 /* Return the innermost context enclosing DECL that is
9464 a FUNCTION_DECL, or zero if none. */
9466 tree
9467 decl_function_context (const_tree decl)
9469 tree context;
9471 if (TREE_CODE (decl) == ERROR_MARK)
9472 return 0;
9474 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9475 where we look up the function at runtime. Such functions always take
9476 a first argument of type 'pointer to real context'.
9478 C++ should really be fixed to use DECL_CONTEXT for the real context,
9479 and use something else for the "virtual context". */
9480 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
9481 context
9482 = TYPE_MAIN_VARIANT
9483 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9484 else
9485 context = DECL_CONTEXT (decl);
9487 while (context && TREE_CODE (context) != FUNCTION_DECL)
9489 if (TREE_CODE (context) == BLOCK)
9490 context = BLOCK_SUPERCONTEXT (context);
9491 else
9492 context = get_containing_scope (context);
9495 return context;
9498 /* Return the innermost context enclosing DECL that is
9499 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9500 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9502 tree
9503 decl_type_context (const_tree decl)
9505 tree context = DECL_CONTEXT (decl);
9507 while (context)
9508 switch (TREE_CODE (context))
9510 case NAMESPACE_DECL:
9511 case TRANSLATION_UNIT_DECL:
9512 return NULL_TREE;
9514 case RECORD_TYPE:
9515 case UNION_TYPE:
9516 case QUAL_UNION_TYPE:
9517 return context;
9519 case TYPE_DECL:
9520 case FUNCTION_DECL:
9521 context = DECL_CONTEXT (context);
9522 break;
9524 case BLOCK:
9525 context = BLOCK_SUPERCONTEXT (context);
9526 break;
9528 default:
9529 gcc_unreachable ();
9532 return NULL_TREE;
9535 /* CALL is a CALL_EXPR. Return the declaration for the function
9536 called, or NULL_TREE if the called function cannot be
9537 determined. */
9539 tree
9540 get_callee_fndecl (const_tree call)
9542 tree addr;
9544 if (call == error_mark_node)
9545 return error_mark_node;
9547 /* It's invalid to call this function with anything but a
9548 CALL_EXPR. */
9549 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9551 /* The first operand to the CALL is the address of the function
9552 called. */
9553 addr = CALL_EXPR_FN (call);
9555 /* If there is no function, return early. */
9556 if (addr == NULL_TREE)
9557 return NULL_TREE;
9559 STRIP_NOPS (addr);
9561 /* If this is a readonly function pointer, extract its initial value. */
9562 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9563 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9564 && DECL_INITIAL (addr))
9565 addr = DECL_INITIAL (addr);
9567 /* If the address is just `&f' for some function `f', then we know
9568 that `f' is being called. */
9569 if (TREE_CODE (addr) == ADDR_EXPR
9570 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9571 return TREE_OPERAND (addr, 0);
9573 /* We couldn't figure out what was being called. */
9574 return NULL_TREE;
9577 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9578 return the associated function code, otherwise return CFN_LAST. */
9580 combined_fn
9581 get_call_combined_fn (const_tree call)
9583 /* It's invalid to call this function with anything but a CALL_EXPR. */
9584 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9586 if (!CALL_EXPR_FN (call))
9587 return as_combined_fn (CALL_EXPR_IFN (call));
9589 tree fndecl = get_callee_fndecl (call);
9590 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
9591 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9593 return CFN_LAST;
9596 /* Comparator of indices based on tree_node_counts. */
9598 static int
9599 tree_nodes_cmp (const void *p1, const void *p2)
9601 const unsigned *n1 = (const unsigned *)p1;
9602 const unsigned *n2 = (const unsigned *)p2;
9604 return tree_node_counts[*n1] - tree_node_counts[*n2];
9607 /* Comparator of indices based on tree_code_counts. */
9609 static int
9610 tree_codes_cmp (const void *p1, const void *p2)
9612 const unsigned *n1 = (const unsigned *)p1;
9613 const unsigned *n2 = (const unsigned *)p2;
9615 return tree_code_counts[*n1] - tree_code_counts[*n2];
9618 #define TREE_MEM_USAGE_SPACES 40
9620 /* Print debugging information about tree nodes generated during the compile,
9621 and any language-specific information. */
9623 void
9624 dump_tree_statistics (void)
9626 if (GATHER_STATISTICS)
9628 uint64_t total_nodes, total_bytes;
9629 fprintf (stderr, "\nKind Nodes Bytes\n");
9630 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9631 total_nodes = total_bytes = 0;
9634 auto_vec<unsigned> indices (all_kinds);
9635 for (unsigned i = 0; i < all_kinds; i++)
9636 indices.quick_push (i);
9637 indices.qsort (tree_nodes_cmp);
9639 for (unsigned i = 0; i < (int) all_kinds; i++)
9641 unsigned j = indices[i];
9642 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n",
9643 tree_node_kind_names[i], SIZE_AMOUNT (tree_node_counts[j]),
9644 SIZE_AMOUNT (tree_node_sizes[j]));
9645 total_nodes += tree_node_counts[j];
9646 total_bytes += tree_node_sizes[j];
9648 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9649 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", "Total",
9650 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
9651 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9655 fprintf (stderr, "Code Nodes\n");
9656 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9658 auto_vec<unsigned> indices (MAX_TREE_CODES);
9659 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9660 indices.quick_push (i);
9661 indices.qsort (tree_codes_cmp);
9663 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9665 unsigned j = indices[i];
9666 fprintf (stderr, "%-32s %6" PRIu64 "%c\n",
9667 get_tree_code_name ((enum tree_code) j),
9668 SIZE_AMOUNT (tree_code_counts[j]));
9670 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9671 fprintf (stderr, "\n");
9672 ssanames_print_statistics ();
9673 fprintf (stderr, "\n");
9674 phinodes_print_statistics ();
9675 fprintf (stderr, "\n");
9678 else
9679 fprintf (stderr, "(No per-node statistics)\n");
9681 print_type_hash_statistics ();
9682 print_debug_expr_statistics ();
9683 print_value_expr_statistics ();
9684 lang_hooks.print_statistics ();
9687 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9689 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9691 unsigned
9692 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9694 /* This relies on the raw feedback's top 4 bits being zero. */
9695 #define FEEDBACK(X) ((X) * 0x04c11db7)
9696 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9697 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9698 static const unsigned syndromes[16] =
9700 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9701 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9702 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9703 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9705 #undef FEEDBACK
9706 #undef SYNDROME
9708 value <<= (32 - bytes * 8);
9709 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9711 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9713 chksum = (chksum << 4) ^ feedback;
9716 return chksum;
9719 /* Generate a crc32 of a string. */
9721 unsigned
9722 crc32_string (unsigned chksum, const char *string)
9725 chksum = crc32_byte (chksum, *string);
9726 while (*string++);
9727 return chksum;
9730 /* P is a string that will be used in a symbol. Mask out any characters
9731 that are not valid in that context. */
9733 void
9734 clean_symbol_name (char *p)
9736 for (; *p; p++)
9737 if (! (ISALNUM (*p)
9738 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9739 || *p == '$'
9740 #endif
9741 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9742 || *p == '.'
9743 #endif
9745 *p = '_';
9748 /* For anonymous aggregate types, we need some sort of name to
9749 hold on to. In practice, this should not appear, but it should
9750 not be harmful if it does. */
9751 bool
9752 anon_aggrname_p(const_tree id_node)
9754 #ifndef NO_DOT_IN_LABEL
9755 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9756 && IDENTIFIER_POINTER (id_node)[1] == '_');
9757 #else /* NO_DOT_IN_LABEL */
9758 #ifndef NO_DOLLAR_IN_LABEL
9759 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9760 && IDENTIFIER_POINTER (id_node)[1] == '_');
9761 #else /* NO_DOLLAR_IN_LABEL */
9762 #define ANON_AGGRNAME_PREFIX "__anon_"
9763 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9764 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9765 #endif /* NO_DOLLAR_IN_LABEL */
9766 #endif /* NO_DOT_IN_LABEL */
9769 /* Return a format for an anonymous aggregate name. */
9770 const char *
9771 anon_aggrname_format()
9773 #ifndef NO_DOT_IN_LABEL
9774 return "._%d";
9775 #else /* NO_DOT_IN_LABEL */
9776 #ifndef NO_DOLLAR_IN_LABEL
9777 return "$_%d";
9778 #else /* NO_DOLLAR_IN_LABEL */
9779 return "__anon_%d";
9780 #endif /* NO_DOLLAR_IN_LABEL */
9781 #endif /* NO_DOT_IN_LABEL */
9784 /* Generate a name for a special-purpose function.
9785 The generated name may need to be unique across the whole link.
9786 Changes to this function may also require corresponding changes to
9787 xstrdup_mask_random.
9788 TYPE is some string to identify the purpose of this function to the
9789 linker or collect2; it must start with an uppercase letter,
9790 one of:
9791 I - for constructors
9792 D - for destructors
9793 N - for C++ anonymous namespaces
9794 F - for DWARF unwind frame information. */
9796 tree
9797 get_file_function_name (const char *type)
9799 char *buf;
9800 const char *p;
9801 char *q;
9803 /* If we already have a name we know to be unique, just use that. */
9804 if (first_global_object_name)
9805 p = q = ASTRDUP (first_global_object_name);
9806 /* If the target is handling the constructors/destructors, they
9807 will be local to this file and the name is only necessary for
9808 debugging purposes.
9809 We also assign sub_I and sub_D sufixes to constructors called from
9810 the global static constructors. These are always local. */
9811 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9812 || (strncmp (type, "sub_", 4) == 0
9813 && (type[4] == 'I' || type[4] == 'D')))
9815 const char *file = main_input_filename;
9816 if (! file)
9817 file = LOCATION_FILE (input_location);
9818 /* Just use the file's basename, because the full pathname
9819 might be quite long. */
9820 p = q = ASTRDUP (lbasename (file));
9822 else
9824 /* Otherwise, the name must be unique across the entire link.
9825 We don't have anything that we know to be unique to this translation
9826 unit, so use what we do have and throw in some randomness. */
9827 unsigned len;
9828 const char *name = weak_global_object_name;
9829 const char *file = main_input_filename;
9831 if (! name)
9832 name = "";
9833 if (! file)
9834 file = LOCATION_FILE (input_location);
9836 len = strlen (file);
9837 q = (char *) alloca (9 + 19 + len + 1);
9838 memcpy (q, file, len + 1);
9840 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9841 crc32_string (0, name), get_random_seed (false));
9843 p = q;
9846 clean_symbol_name (q);
9847 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9848 + strlen (type));
9850 /* Set up the name of the file-level functions we may need.
9851 Use a global object (which is already required to be unique over
9852 the program) rather than the file name (which imposes extra
9853 constraints). */
9854 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9856 return get_identifier (buf);
9859 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9861 /* Complain that the tree code of NODE does not match the expected 0
9862 terminated list of trailing codes. The trailing code list can be
9863 empty, for a more vague error message. FILE, LINE, and FUNCTION
9864 are of the caller. */
9866 void
9867 tree_check_failed (const_tree node, const char *file,
9868 int line, const char *function, ...)
9870 va_list args;
9871 const char *buffer;
9872 unsigned length = 0;
9873 enum tree_code code;
9875 va_start (args, function);
9876 while ((code = (enum tree_code) va_arg (args, int)))
9877 length += 4 + strlen (get_tree_code_name (code));
9878 va_end (args);
9879 if (length)
9881 char *tmp;
9882 va_start (args, function);
9883 length += strlen ("expected ");
9884 buffer = tmp = (char *) alloca (length);
9885 length = 0;
9886 while ((code = (enum tree_code) va_arg (args, int)))
9888 const char *prefix = length ? " or " : "expected ";
9890 strcpy (tmp + length, prefix);
9891 length += strlen (prefix);
9892 strcpy (tmp + length, get_tree_code_name (code));
9893 length += strlen (get_tree_code_name (code));
9895 va_end (args);
9897 else
9898 buffer = "unexpected node";
9900 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9901 buffer, get_tree_code_name (TREE_CODE (node)),
9902 function, trim_filename (file), line);
9905 /* Complain that the tree code of NODE does match the expected 0
9906 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9907 the caller. */
9909 void
9910 tree_not_check_failed (const_tree node, const char *file,
9911 int line, const char *function, ...)
9913 va_list args;
9914 char *buffer;
9915 unsigned length = 0;
9916 enum tree_code code;
9918 va_start (args, function);
9919 while ((code = (enum tree_code) va_arg (args, int)))
9920 length += 4 + strlen (get_tree_code_name (code));
9921 va_end (args);
9922 va_start (args, function);
9923 buffer = (char *) alloca (length);
9924 length = 0;
9925 while ((code = (enum tree_code) va_arg (args, int)))
9927 if (length)
9929 strcpy (buffer + length, " or ");
9930 length += 4;
9932 strcpy (buffer + length, get_tree_code_name (code));
9933 length += strlen (get_tree_code_name (code));
9935 va_end (args);
9937 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9938 buffer, get_tree_code_name (TREE_CODE (node)),
9939 function, trim_filename (file), line);
9942 /* Similar to tree_check_failed, except that we check for a class of tree
9943 code, given in CL. */
9945 void
9946 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9947 const char *file, int line, const char *function)
9949 internal_error
9950 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9951 TREE_CODE_CLASS_STRING (cl),
9952 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9953 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9956 /* Similar to tree_check_failed, except that instead of specifying a
9957 dozen codes, use the knowledge that they're all sequential. */
9959 void
9960 tree_range_check_failed (const_tree node, const char *file, int line,
9961 const char *function, enum tree_code c1,
9962 enum tree_code c2)
9964 char *buffer;
9965 unsigned length = 0;
9966 unsigned int c;
9968 for (c = c1; c <= c2; ++c)
9969 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9971 length += strlen ("expected ");
9972 buffer = (char *) alloca (length);
9973 length = 0;
9975 for (c = c1; c <= c2; ++c)
9977 const char *prefix = length ? " or " : "expected ";
9979 strcpy (buffer + length, prefix);
9980 length += strlen (prefix);
9981 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9982 length += strlen (get_tree_code_name ((enum tree_code) c));
9985 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9986 buffer, get_tree_code_name (TREE_CODE (node)),
9987 function, trim_filename (file), line);
9991 /* Similar to tree_check_failed, except that we check that a tree does
9992 not have the specified code, given in CL. */
9994 void
9995 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9996 const char *file, int line, const char *function)
9998 internal_error
9999 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
10000 TREE_CODE_CLASS_STRING (cl),
10001 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
10002 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
10006 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
10008 void
10009 omp_clause_check_failed (const_tree node, const char *file, int line,
10010 const char *function, enum omp_clause_code code)
10012 internal_error ("tree check: expected %<omp_clause %s%>, have %qs "
10013 "in %s, at %s:%d",
10014 omp_clause_code_name[code],
10015 get_tree_code_name (TREE_CODE (node)),
10016 function, trim_filename (file), line);
10020 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
10022 void
10023 omp_clause_range_check_failed (const_tree node, const char *file, int line,
10024 const char *function, enum omp_clause_code c1,
10025 enum omp_clause_code c2)
10027 char *buffer;
10028 unsigned length = 0;
10029 unsigned int c;
10031 for (c = c1; c <= c2; ++c)
10032 length += 4 + strlen (omp_clause_code_name[c]);
10034 length += strlen ("expected ");
10035 buffer = (char *) alloca (length);
10036 length = 0;
10038 for (c = c1; c <= c2; ++c)
10040 const char *prefix = length ? " or " : "expected ";
10042 strcpy (buffer + length, prefix);
10043 length += strlen (prefix);
10044 strcpy (buffer + length, omp_clause_code_name[c]);
10045 length += strlen (omp_clause_code_name[c]);
10048 internal_error ("tree check: %s, have %s in %s, at %s:%d",
10049 buffer, omp_clause_code_name[TREE_CODE (node)],
10050 function, trim_filename (file), line);
10054 #undef DEFTREESTRUCT
10055 #define DEFTREESTRUCT(VAL, NAME) NAME,
10057 static const char *ts_enum_names[] = {
10058 #include "treestruct.def"
10060 #undef DEFTREESTRUCT
10062 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
10064 /* Similar to tree_class_check_failed, except that we check for
10065 whether CODE contains the tree structure identified by EN. */
10067 void
10068 tree_contains_struct_check_failed (const_tree node,
10069 const enum tree_node_structure_enum en,
10070 const char *file, int line,
10071 const char *function)
10073 internal_error
10074 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
10075 TS_ENUM_NAME (en),
10076 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
10080 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
10081 (dynamically sized) vector. */
10083 void
10084 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
10085 const char *function)
10087 internal_error
10088 ("tree check: accessed elt %d of %<tree_int_cst%> with %d elts in %s, "
10089 "at %s:%d",
10090 idx + 1, len, function, trim_filename (file), line);
10093 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
10094 (dynamically sized) vector. */
10096 void
10097 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
10098 const char *function)
10100 internal_error
10101 ("tree check: accessed elt %d of %<tree_vec%> with %d elts in %s, at %s:%d",
10102 idx + 1, len, function, trim_filename (file), line);
10105 /* Similar to above, except that the check is for the bounds of the operand
10106 vector of an expression node EXP. */
10108 void
10109 tree_operand_check_failed (int idx, const_tree exp, const char *file,
10110 int line, const char *function)
10112 enum tree_code code = TREE_CODE (exp);
10113 internal_error
10114 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
10115 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
10116 function, trim_filename (file), line);
10119 /* Similar to above, except that the check is for the number of
10120 operands of an OMP_CLAUSE node. */
10122 void
10123 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
10124 int line, const char *function)
10126 internal_error
10127 ("tree check: accessed operand %d of %<omp_clause %s%> with %d operands "
10128 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
10129 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
10130 trim_filename (file), line);
10132 #endif /* ENABLE_TREE_CHECKING */
10134 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
10135 and mapped to the machine mode MODE. Initialize its fields and build
10136 the information necessary for debugging output. */
10138 static tree
10139 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
10141 tree t;
10142 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
10144 t = make_node (VECTOR_TYPE);
10145 TREE_TYPE (t) = mv_innertype;
10146 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
10147 SET_TYPE_MODE (t, mode);
10149 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
10150 SET_TYPE_STRUCTURAL_EQUALITY (t);
10151 else if ((TYPE_CANONICAL (mv_innertype) != innertype
10152 || mode != VOIDmode)
10153 && !VECTOR_BOOLEAN_TYPE_P (t))
10154 TYPE_CANONICAL (t)
10155 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
10157 layout_type (t);
10159 hashval_t hash = type_hash_canon_hash (t);
10160 t = type_hash_canon (hash, t);
10162 /* We have built a main variant, based on the main variant of the
10163 inner type. Use it to build the variant we return. */
10164 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
10165 && TREE_TYPE (t) != innertype)
10166 return build_type_attribute_qual_variant (t,
10167 TYPE_ATTRIBUTES (innertype),
10168 TYPE_QUALS (innertype));
10170 return t;
10173 static tree
10174 make_or_reuse_type (unsigned size, int unsignedp)
10176 int i;
10178 if (size == INT_TYPE_SIZE)
10179 return unsignedp ? unsigned_type_node : integer_type_node;
10180 if (size == CHAR_TYPE_SIZE)
10181 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
10182 if (size == SHORT_TYPE_SIZE)
10183 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
10184 if (size == LONG_TYPE_SIZE)
10185 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
10186 if (size == LONG_LONG_TYPE_SIZE)
10187 return (unsignedp ? long_long_unsigned_type_node
10188 : long_long_integer_type_node);
10190 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10191 if (size == int_n_data[i].bitsize
10192 && int_n_enabled_p[i])
10193 return (unsignedp ? int_n_trees[i].unsigned_type
10194 : int_n_trees[i].signed_type);
10196 if (unsignedp)
10197 return make_unsigned_type (size);
10198 else
10199 return make_signed_type (size);
10202 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
10204 static tree
10205 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
10207 if (satp)
10209 if (size == SHORT_FRACT_TYPE_SIZE)
10210 return unsignedp ? sat_unsigned_short_fract_type_node
10211 : sat_short_fract_type_node;
10212 if (size == FRACT_TYPE_SIZE)
10213 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
10214 if (size == LONG_FRACT_TYPE_SIZE)
10215 return unsignedp ? sat_unsigned_long_fract_type_node
10216 : sat_long_fract_type_node;
10217 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10218 return unsignedp ? sat_unsigned_long_long_fract_type_node
10219 : sat_long_long_fract_type_node;
10221 else
10223 if (size == SHORT_FRACT_TYPE_SIZE)
10224 return unsignedp ? unsigned_short_fract_type_node
10225 : short_fract_type_node;
10226 if (size == FRACT_TYPE_SIZE)
10227 return unsignedp ? unsigned_fract_type_node : fract_type_node;
10228 if (size == LONG_FRACT_TYPE_SIZE)
10229 return unsignedp ? unsigned_long_fract_type_node
10230 : long_fract_type_node;
10231 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10232 return unsignedp ? unsigned_long_long_fract_type_node
10233 : long_long_fract_type_node;
10236 return make_fract_type (size, unsignedp, satp);
10239 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
10241 static tree
10242 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
10244 if (satp)
10246 if (size == SHORT_ACCUM_TYPE_SIZE)
10247 return unsignedp ? sat_unsigned_short_accum_type_node
10248 : sat_short_accum_type_node;
10249 if (size == ACCUM_TYPE_SIZE)
10250 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10251 if (size == LONG_ACCUM_TYPE_SIZE)
10252 return unsignedp ? sat_unsigned_long_accum_type_node
10253 : sat_long_accum_type_node;
10254 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10255 return unsignedp ? sat_unsigned_long_long_accum_type_node
10256 : sat_long_long_accum_type_node;
10258 else
10260 if (size == SHORT_ACCUM_TYPE_SIZE)
10261 return unsignedp ? unsigned_short_accum_type_node
10262 : short_accum_type_node;
10263 if (size == ACCUM_TYPE_SIZE)
10264 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10265 if (size == LONG_ACCUM_TYPE_SIZE)
10266 return unsignedp ? unsigned_long_accum_type_node
10267 : long_accum_type_node;
10268 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10269 return unsignedp ? unsigned_long_long_accum_type_node
10270 : long_long_accum_type_node;
10273 return make_accum_type (size, unsignedp, satp);
10277 /* Create an atomic variant node for TYPE. This routine is called
10278 during initialization of data types to create the 5 basic atomic
10279 types. The generic build_variant_type function requires these to
10280 already be set up in order to function properly, so cannot be
10281 called from there. If ALIGN is non-zero, then ensure alignment is
10282 overridden to this value. */
10284 static tree
10285 build_atomic_base (tree type, unsigned int align)
10287 tree t;
10289 /* Make sure its not already registered. */
10290 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10291 return t;
10293 t = build_variant_type_copy (type);
10294 set_type_quals (t, TYPE_QUAL_ATOMIC);
10296 if (align)
10297 SET_TYPE_ALIGN (t, align);
10299 return t;
10302 /* Information about the _FloatN and _FloatNx types. This must be in
10303 the same order as the corresponding TI_* enum values. */
10304 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
10306 { 16, false },
10307 { 32, false },
10308 { 64, false },
10309 { 128, false },
10310 { 32, true },
10311 { 64, true },
10312 { 128, true },
10316 /* Create nodes for all integer types (and error_mark_node) using the sizes
10317 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10319 void
10320 build_common_tree_nodes (bool signed_char)
10322 int i;
10324 error_mark_node = make_node (ERROR_MARK);
10325 TREE_TYPE (error_mark_node) = error_mark_node;
10327 initialize_sizetypes ();
10329 /* Define both `signed char' and `unsigned char'. */
10330 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10331 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10332 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10333 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10335 /* Define `char', which is like either `signed char' or `unsigned char'
10336 but not the same as either. */
10337 char_type_node
10338 = (signed_char
10339 ? make_signed_type (CHAR_TYPE_SIZE)
10340 : make_unsigned_type (CHAR_TYPE_SIZE));
10341 TYPE_STRING_FLAG (char_type_node) = 1;
10343 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10344 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10345 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10346 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10347 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10348 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10349 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10350 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10352 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10354 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10355 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10357 if (int_n_enabled_p[i])
10359 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10360 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10364 /* Define a boolean type. This type only represents boolean values but
10365 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10366 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10367 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10368 TYPE_PRECISION (boolean_type_node) = 1;
10369 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10371 /* Define what type to use for size_t. */
10372 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10373 size_type_node = unsigned_type_node;
10374 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10375 size_type_node = long_unsigned_type_node;
10376 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10377 size_type_node = long_long_unsigned_type_node;
10378 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10379 size_type_node = short_unsigned_type_node;
10380 else
10382 int i;
10384 size_type_node = NULL_TREE;
10385 for (i = 0; i < NUM_INT_N_ENTS; i++)
10386 if (int_n_enabled_p[i])
10388 char name[50];
10389 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10391 if (strcmp (name, SIZE_TYPE) == 0)
10393 size_type_node = int_n_trees[i].unsigned_type;
10396 if (size_type_node == NULL_TREE)
10397 gcc_unreachable ();
10400 /* Define what type to use for ptrdiff_t. */
10401 if (strcmp (PTRDIFF_TYPE, "int") == 0)
10402 ptrdiff_type_node = integer_type_node;
10403 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
10404 ptrdiff_type_node = long_integer_type_node;
10405 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
10406 ptrdiff_type_node = long_long_integer_type_node;
10407 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
10408 ptrdiff_type_node = short_integer_type_node;
10409 else
10411 ptrdiff_type_node = NULL_TREE;
10412 for (int i = 0; i < NUM_INT_N_ENTS; i++)
10413 if (int_n_enabled_p[i])
10415 char name[50];
10416 sprintf (name, "__int%d", int_n_data[i].bitsize);
10417 if (strcmp (name, PTRDIFF_TYPE) == 0)
10418 ptrdiff_type_node = int_n_trees[i].signed_type;
10420 if (ptrdiff_type_node == NULL_TREE)
10421 gcc_unreachable ();
10424 /* Fill in the rest of the sized types. Reuse existing type nodes
10425 when possible. */
10426 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10427 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10428 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10429 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10430 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10432 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10433 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10434 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10435 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10436 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10438 /* Don't call build_qualified type for atomics. That routine does
10439 special processing for atomics, and until they are initialized
10440 it's better not to make that call.
10442 Check to see if there is a target override for atomic types. */
10444 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10445 targetm.atomic_align_for_mode (QImode));
10446 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10447 targetm.atomic_align_for_mode (HImode));
10448 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10449 targetm.atomic_align_for_mode (SImode));
10450 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10451 targetm.atomic_align_for_mode (DImode));
10452 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10453 targetm.atomic_align_for_mode (TImode));
10455 access_public_node = get_identifier ("public");
10456 access_protected_node = get_identifier ("protected");
10457 access_private_node = get_identifier ("private");
10459 /* Define these next since types below may used them. */
10460 integer_zero_node = build_int_cst (integer_type_node, 0);
10461 integer_one_node = build_int_cst (integer_type_node, 1);
10462 integer_three_node = build_int_cst (integer_type_node, 3);
10463 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10465 size_zero_node = size_int (0);
10466 size_one_node = size_int (1);
10467 bitsize_zero_node = bitsize_int (0);
10468 bitsize_one_node = bitsize_int (1);
10469 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10471 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10472 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10474 void_type_node = make_node (VOID_TYPE);
10475 layout_type (void_type_node);
10477 /* We are not going to have real types in C with less than byte alignment,
10478 so we might as well not have any types that claim to have it. */
10479 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
10480 TYPE_USER_ALIGN (void_type_node) = 0;
10482 void_node = make_node (VOID_CST);
10483 TREE_TYPE (void_node) = void_type_node;
10485 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10486 layout_type (TREE_TYPE (null_pointer_node));
10488 ptr_type_node = build_pointer_type (void_type_node);
10489 const_ptr_type_node
10490 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10491 for (unsigned i = 0;
10492 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
10493 ++i)
10494 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
10496 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10498 float_type_node = make_node (REAL_TYPE);
10499 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10500 layout_type (float_type_node);
10502 double_type_node = make_node (REAL_TYPE);
10503 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10504 layout_type (double_type_node);
10506 long_double_type_node = make_node (REAL_TYPE);
10507 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10508 layout_type (long_double_type_node);
10510 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10512 int n = floatn_nx_types[i].n;
10513 bool extended = floatn_nx_types[i].extended;
10514 scalar_float_mode mode;
10515 if (!targetm.floatn_mode (n, extended).exists (&mode))
10516 continue;
10517 int precision = GET_MODE_PRECISION (mode);
10518 /* Work around the rs6000 KFmode having precision 113 not
10519 128. */
10520 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
10521 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
10522 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
10523 if (!extended)
10524 gcc_assert (min_precision == n);
10525 if (precision < min_precision)
10526 precision = min_precision;
10527 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
10528 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
10529 layout_type (FLOATN_NX_TYPE_NODE (i));
10530 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
10533 float_ptr_type_node = build_pointer_type (float_type_node);
10534 double_ptr_type_node = build_pointer_type (double_type_node);
10535 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10536 integer_ptr_type_node = build_pointer_type (integer_type_node);
10538 /* Fixed size integer types. */
10539 uint16_type_node = make_or_reuse_type (16, 1);
10540 uint32_type_node = make_or_reuse_type (32, 1);
10541 uint64_type_node = make_or_reuse_type (64, 1);
10543 /* Decimal float types. */
10544 dfloat32_type_node = make_node (REAL_TYPE);
10545 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10546 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10547 layout_type (dfloat32_type_node);
10548 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
10550 dfloat64_type_node = make_node (REAL_TYPE);
10551 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10552 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10553 layout_type (dfloat64_type_node);
10554 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
10556 dfloat128_type_node = make_node (REAL_TYPE);
10557 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10558 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10559 layout_type (dfloat128_type_node);
10560 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
10562 complex_integer_type_node = build_complex_type (integer_type_node, true);
10563 complex_float_type_node = build_complex_type (float_type_node, true);
10564 complex_double_type_node = build_complex_type (double_type_node, true);
10565 complex_long_double_type_node = build_complex_type (long_double_type_node,
10566 true);
10568 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10570 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10571 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10572 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10575 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10576 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10577 sat_ ## KIND ## _type_node = \
10578 make_sat_signed_ ## KIND ## _type (SIZE); \
10579 sat_unsigned_ ## KIND ## _type_node = \
10580 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10581 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10582 unsigned_ ## KIND ## _type_node = \
10583 make_unsigned_ ## KIND ## _type (SIZE);
10585 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10586 sat_ ## WIDTH ## KIND ## _type_node = \
10587 make_sat_signed_ ## KIND ## _type (SIZE); \
10588 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10589 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10590 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10591 unsigned_ ## WIDTH ## KIND ## _type_node = \
10592 make_unsigned_ ## KIND ## _type (SIZE);
10594 /* Make fixed-point type nodes based on four different widths. */
10595 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10596 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10597 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10598 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10599 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10601 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10602 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10603 NAME ## _type_node = \
10604 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10605 u ## NAME ## _type_node = \
10606 make_or_reuse_unsigned_ ## KIND ## _type \
10607 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10608 sat_ ## NAME ## _type_node = \
10609 make_or_reuse_sat_signed_ ## KIND ## _type \
10610 (GET_MODE_BITSIZE (MODE ## mode)); \
10611 sat_u ## NAME ## _type_node = \
10612 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10613 (GET_MODE_BITSIZE (U ## MODE ## mode));
10615 /* Fixed-point type and mode nodes. */
10616 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10617 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10618 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10619 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10620 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10621 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10622 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10623 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10624 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10625 MAKE_FIXED_MODE_NODE (accum, da, DA)
10626 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10629 tree t = targetm.build_builtin_va_list ();
10631 /* Many back-ends define record types without setting TYPE_NAME.
10632 If we copied the record type here, we'd keep the original
10633 record type without a name. This breaks name mangling. So,
10634 don't copy record types and let c_common_nodes_and_builtins()
10635 declare the type to be __builtin_va_list. */
10636 if (TREE_CODE (t) != RECORD_TYPE)
10637 t = build_variant_type_copy (t);
10639 va_list_type_node = t;
10643 /* Modify DECL for given flags.
10644 TM_PURE attribute is set only on types, so the function will modify
10645 DECL's type when ECF_TM_PURE is used. */
10647 void
10648 set_call_expr_flags (tree decl, int flags)
10650 if (flags & ECF_NOTHROW)
10651 TREE_NOTHROW (decl) = 1;
10652 if (flags & ECF_CONST)
10653 TREE_READONLY (decl) = 1;
10654 if (flags & ECF_PURE)
10655 DECL_PURE_P (decl) = 1;
10656 if (flags & ECF_LOOPING_CONST_OR_PURE)
10657 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10658 if (flags & ECF_NOVOPS)
10659 DECL_IS_NOVOPS (decl) = 1;
10660 if (flags & ECF_NORETURN)
10661 TREE_THIS_VOLATILE (decl) = 1;
10662 if (flags & ECF_MALLOC)
10663 DECL_IS_MALLOC (decl) = 1;
10664 if (flags & ECF_RETURNS_TWICE)
10665 DECL_IS_RETURNS_TWICE (decl) = 1;
10666 if (flags & ECF_LEAF)
10667 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10668 NULL, DECL_ATTRIBUTES (decl));
10669 if (flags & ECF_COLD)
10670 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10671 NULL, DECL_ATTRIBUTES (decl));
10672 if (flags & ECF_RET1)
10673 DECL_ATTRIBUTES (decl)
10674 = tree_cons (get_identifier ("fn spec"),
10675 build_tree_list (NULL_TREE, build_string (1, "1")),
10676 DECL_ATTRIBUTES (decl));
10677 if ((flags & ECF_TM_PURE) && flag_tm)
10678 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10679 /* Looping const or pure is implied by noreturn.
10680 There is currently no way to declare looping const or looping pure alone. */
10681 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10682 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10686 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10688 static void
10689 local_define_builtin (const char *name, tree type, enum built_in_function code,
10690 const char *library_name, int ecf_flags)
10692 tree decl;
10694 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10695 library_name, NULL_TREE);
10696 set_call_expr_flags (decl, ecf_flags);
10698 set_builtin_decl (code, decl, true);
10701 /* Call this function after instantiating all builtins that the language
10702 front end cares about. This will build the rest of the builtins
10703 and internal functions that are relied upon by the tree optimizers and
10704 the middle-end. */
10706 void
10707 build_common_builtin_nodes (void)
10709 tree tmp, ftype;
10710 int ecf_flags;
10712 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10713 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10715 ftype = build_function_type (void_type_node, void_list_node);
10716 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10717 local_define_builtin ("__builtin_unreachable", ftype,
10718 BUILT_IN_UNREACHABLE,
10719 "__builtin_unreachable",
10720 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10721 | ECF_CONST | ECF_COLD);
10722 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10723 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10724 "abort",
10725 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10728 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10729 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10731 ftype = build_function_type_list (ptr_type_node,
10732 ptr_type_node, const_ptr_type_node,
10733 size_type_node, NULL_TREE);
10735 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10736 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10737 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10738 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10739 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10740 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10743 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10745 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10746 const_ptr_type_node, size_type_node,
10747 NULL_TREE);
10748 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10749 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10752 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10754 ftype = build_function_type_list (ptr_type_node,
10755 ptr_type_node, integer_type_node,
10756 size_type_node, NULL_TREE);
10757 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10758 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10761 /* If we're checking the stack, `alloca' can throw. */
10762 const int alloca_flags
10763 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10765 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10767 ftype = build_function_type_list (ptr_type_node,
10768 size_type_node, NULL_TREE);
10769 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10770 "alloca", alloca_flags);
10773 ftype = build_function_type_list (ptr_type_node, size_type_node,
10774 size_type_node, NULL_TREE);
10775 local_define_builtin ("__builtin_alloca_with_align", ftype,
10776 BUILT_IN_ALLOCA_WITH_ALIGN,
10777 "__builtin_alloca_with_align",
10778 alloca_flags);
10780 ftype = build_function_type_list (ptr_type_node, size_type_node,
10781 size_type_node, size_type_node, NULL_TREE);
10782 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10783 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10784 "__builtin_alloca_with_align_and_max",
10785 alloca_flags);
10787 ftype = build_function_type_list (void_type_node,
10788 ptr_type_node, ptr_type_node,
10789 ptr_type_node, NULL_TREE);
10790 local_define_builtin ("__builtin_init_trampoline", ftype,
10791 BUILT_IN_INIT_TRAMPOLINE,
10792 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10793 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10794 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10795 "__builtin_init_heap_trampoline",
10796 ECF_NOTHROW | ECF_LEAF);
10797 local_define_builtin ("__builtin_init_descriptor", ftype,
10798 BUILT_IN_INIT_DESCRIPTOR,
10799 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10801 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10802 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10803 BUILT_IN_ADJUST_TRAMPOLINE,
10804 "__builtin_adjust_trampoline",
10805 ECF_CONST | ECF_NOTHROW);
10806 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10807 BUILT_IN_ADJUST_DESCRIPTOR,
10808 "__builtin_adjust_descriptor",
10809 ECF_CONST | ECF_NOTHROW);
10811 ftype = build_function_type_list (void_type_node,
10812 ptr_type_node, ptr_type_node, NULL_TREE);
10813 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10814 BUILT_IN_NONLOCAL_GOTO,
10815 "__builtin_nonlocal_goto",
10816 ECF_NORETURN | ECF_NOTHROW);
10818 ftype = build_function_type_list (void_type_node,
10819 ptr_type_node, ptr_type_node, NULL_TREE);
10820 local_define_builtin ("__builtin_setjmp_setup", ftype,
10821 BUILT_IN_SETJMP_SETUP,
10822 "__builtin_setjmp_setup", ECF_NOTHROW);
10824 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10825 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10826 BUILT_IN_SETJMP_RECEIVER,
10827 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10829 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10830 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10831 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10833 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10834 local_define_builtin ("__builtin_stack_restore", ftype,
10835 BUILT_IN_STACK_RESTORE,
10836 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10838 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10839 const_ptr_type_node, size_type_node,
10840 NULL_TREE);
10841 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10842 "__builtin_memcmp_eq",
10843 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10845 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10846 "__builtin_strncmp_eq",
10847 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10849 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10850 "__builtin_strcmp_eq",
10851 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10853 /* If there's a possibility that we might use the ARM EABI, build the
10854 alternate __cxa_end_cleanup node used to resume from C++. */
10855 if (targetm.arm_eabi_unwinder)
10857 ftype = build_function_type_list (void_type_node, NULL_TREE);
10858 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10859 BUILT_IN_CXA_END_CLEANUP,
10860 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10863 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10864 local_define_builtin ("__builtin_unwind_resume", ftype,
10865 BUILT_IN_UNWIND_RESUME,
10866 ((targetm_common.except_unwind_info (&global_options)
10867 == UI_SJLJ)
10868 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10869 ECF_NORETURN);
10871 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10873 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10874 NULL_TREE);
10875 local_define_builtin ("__builtin_return_address", ftype,
10876 BUILT_IN_RETURN_ADDRESS,
10877 "__builtin_return_address",
10878 ECF_NOTHROW);
10881 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10882 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10884 ftype = build_function_type_list (void_type_node, ptr_type_node,
10885 ptr_type_node, NULL_TREE);
10886 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10887 local_define_builtin ("__cyg_profile_func_enter", ftype,
10888 BUILT_IN_PROFILE_FUNC_ENTER,
10889 "__cyg_profile_func_enter", 0);
10890 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10891 local_define_builtin ("__cyg_profile_func_exit", ftype,
10892 BUILT_IN_PROFILE_FUNC_EXIT,
10893 "__cyg_profile_func_exit", 0);
10896 /* The exception object and filter values from the runtime. The argument
10897 must be zero before exception lowering, i.e. from the front end. After
10898 exception lowering, it will be the region number for the exception
10899 landing pad. These functions are PURE instead of CONST to prevent
10900 them from being hoisted past the exception edge that will initialize
10901 its value in the landing pad. */
10902 ftype = build_function_type_list (ptr_type_node,
10903 integer_type_node, NULL_TREE);
10904 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10905 /* Only use TM_PURE if we have TM language support. */
10906 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10907 ecf_flags |= ECF_TM_PURE;
10908 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10909 "__builtin_eh_pointer", ecf_flags);
10911 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10912 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10913 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10914 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10916 ftype = build_function_type_list (void_type_node,
10917 integer_type_node, integer_type_node,
10918 NULL_TREE);
10919 local_define_builtin ("__builtin_eh_copy_values", ftype,
10920 BUILT_IN_EH_COPY_VALUES,
10921 "__builtin_eh_copy_values", ECF_NOTHROW);
10923 /* Complex multiplication and division. These are handled as builtins
10924 rather than optabs because emit_library_call_value doesn't support
10925 complex. Further, we can do slightly better with folding these
10926 beasties if the real and complex parts of the arguments are separate. */
10928 int mode;
10930 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10932 char mode_name_buf[4], *q;
10933 const char *p;
10934 enum built_in_function mcode, dcode;
10935 tree type, inner_type;
10936 const char *prefix = "__";
10938 if (targetm.libfunc_gnu_prefix)
10939 prefix = "__gnu_";
10941 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10942 if (type == NULL)
10943 continue;
10944 inner_type = TREE_TYPE (type);
10946 ftype = build_function_type_list (type, inner_type, inner_type,
10947 inner_type, inner_type, NULL_TREE);
10949 mcode = ((enum built_in_function)
10950 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10951 dcode = ((enum built_in_function)
10952 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10954 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10955 *q = TOLOWER (*p);
10956 *q = '\0';
10958 /* For -ftrapping-math these should throw from a former
10959 -fnon-call-exception stmt. */
10960 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10961 NULL);
10962 local_define_builtin (built_in_names[mcode], ftype, mcode,
10963 built_in_names[mcode],
10964 ECF_CONST | ECF_LEAF);
10966 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10967 NULL);
10968 local_define_builtin (built_in_names[dcode], ftype, dcode,
10969 built_in_names[dcode],
10970 ECF_CONST | ECF_LEAF);
10974 init_internal_fns ();
10977 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10978 better way.
10980 If we requested a pointer to a vector, build up the pointers that
10981 we stripped off while looking for the inner type. Similarly for
10982 return values from functions.
10984 The argument TYPE is the top of the chain, and BOTTOM is the
10985 new type which we will point to. */
10987 tree
10988 reconstruct_complex_type (tree type, tree bottom)
10990 tree inner, outer;
10992 if (TREE_CODE (type) == POINTER_TYPE)
10994 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10995 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10996 TYPE_REF_CAN_ALIAS_ALL (type));
10998 else if (TREE_CODE (type) == REFERENCE_TYPE)
11000 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
11001 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
11002 TYPE_REF_CAN_ALIAS_ALL (type));
11004 else if (TREE_CODE (type) == ARRAY_TYPE)
11006 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
11007 outer = build_array_type (inner, TYPE_DOMAIN (type));
11009 else if (TREE_CODE (type) == FUNCTION_TYPE)
11011 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
11012 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
11014 else if (TREE_CODE (type) == METHOD_TYPE)
11016 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
11017 /* The build_method_type_directly() routine prepends 'this' to argument list,
11018 so we must compensate by getting rid of it. */
11019 outer
11020 = build_method_type_directly
11021 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
11022 inner,
11023 TREE_CHAIN (TYPE_ARG_TYPES (type)));
11025 else if (TREE_CODE (type) == OFFSET_TYPE)
11027 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
11028 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
11030 else
11031 return bottom;
11033 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
11034 TYPE_QUALS (type));
11037 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
11038 the inner type. */
11039 tree
11040 build_vector_type_for_mode (tree innertype, machine_mode mode)
11042 poly_int64 nunits;
11043 unsigned int bitsize;
11045 switch (GET_MODE_CLASS (mode))
11047 case MODE_VECTOR_BOOL:
11048 case MODE_VECTOR_INT:
11049 case MODE_VECTOR_FLOAT:
11050 case MODE_VECTOR_FRACT:
11051 case MODE_VECTOR_UFRACT:
11052 case MODE_VECTOR_ACCUM:
11053 case MODE_VECTOR_UACCUM:
11054 nunits = GET_MODE_NUNITS (mode);
11055 break;
11057 case MODE_INT:
11058 /* Check that there are no leftover bits. */
11059 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
11060 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
11061 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
11062 break;
11064 default:
11065 gcc_unreachable ();
11068 return make_vector_type (innertype, nunits, mode);
11071 /* Similarly, but takes the inner type and number of units, which must be
11072 a power of two. */
11074 tree
11075 build_vector_type (tree innertype, poly_int64 nunits)
11077 return make_vector_type (innertype, nunits, VOIDmode);
11080 /* Build truth vector with specified length and number of units. */
11082 tree
11083 build_truth_vector_type (poly_uint64 nunits, poly_uint64 vector_size)
11085 machine_mode mask_mode
11086 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
11088 poly_uint64 vsize;
11089 if (mask_mode == BLKmode)
11090 vsize = vector_size * BITS_PER_UNIT;
11091 else
11092 vsize = GET_MODE_BITSIZE (mask_mode);
11094 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
11096 tree bool_type = build_nonstandard_boolean_type (esize);
11098 return make_vector_type (bool_type, nunits, mask_mode);
11101 /* Returns a vector type corresponding to a comparison of VECTYPE. */
11103 tree
11104 build_same_sized_truth_vector_type (tree vectype)
11106 if (VECTOR_BOOLEAN_TYPE_P (vectype))
11107 return vectype;
11109 poly_uint64 size = GET_MODE_SIZE (TYPE_MODE (vectype));
11111 if (known_eq (size, 0U))
11112 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
11114 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
11117 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
11119 tree
11120 build_opaque_vector_type (tree innertype, poly_int64 nunits)
11122 tree t = make_vector_type (innertype, nunits, VOIDmode);
11123 tree cand;
11124 /* We always build the non-opaque variant before the opaque one,
11125 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
11126 cand = TYPE_NEXT_VARIANT (t);
11127 if (cand
11128 && TYPE_VECTOR_OPAQUE (cand)
11129 && check_qualified_type (cand, t, TYPE_QUALS (t)))
11130 return cand;
11131 /* Othewise build a variant type and make sure to queue it after
11132 the non-opaque type. */
11133 cand = build_distinct_type_copy (t);
11134 TYPE_VECTOR_OPAQUE (cand) = true;
11135 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
11136 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
11137 TYPE_NEXT_VARIANT (t) = cand;
11138 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
11139 return cand;
11142 /* Return the value of element I of VECTOR_CST T as a wide_int. */
11144 wide_int
11145 vector_cst_int_elt (const_tree t, unsigned int i)
11147 /* First handle elements that are directly encoded. */
11148 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11149 if (i < encoded_nelts)
11150 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
11152 /* Identify the pattern that contains element I and work out the index of
11153 the last encoded element for that pattern. */
11154 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11155 unsigned int pattern = i % npatterns;
11156 unsigned int count = i / npatterns;
11157 unsigned int final_i = encoded_nelts - npatterns + pattern;
11159 /* If there are no steps, the final encoded value is the right one. */
11160 if (!VECTOR_CST_STEPPED_P (t))
11161 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
11163 /* Otherwise work out the value from the last two encoded elements. */
11164 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
11165 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
11166 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
11167 return wi::to_wide (v2) + (count - 2) * diff;
11170 /* Return the value of element I of VECTOR_CST T. */
11172 tree
11173 vector_cst_elt (const_tree t, unsigned int i)
11175 /* First handle elements that are directly encoded. */
11176 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11177 if (i < encoded_nelts)
11178 return VECTOR_CST_ENCODED_ELT (t, i);
11180 /* If there are no steps, the final encoded value is the right one. */
11181 if (!VECTOR_CST_STEPPED_P (t))
11183 /* Identify the pattern that contains element I and work out the index of
11184 the last encoded element for that pattern. */
11185 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11186 unsigned int pattern = i % npatterns;
11187 unsigned int final_i = encoded_nelts - npatterns + pattern;
11188 return VECTOR_CST_ENCODED_ELT (t, final_i);
11191 /* Otherwise work out the value from the last two encoded elements. */
11192 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
11193 vector_cst_int_elt (t, i));
11196 /* Given an initializer INIT, return TRUE if INIT is zero or some
11197 aggregate of zeros. Otherwise return FALSE. If NONZERO is not
11198 null, set *NONZERO if and only if INIT is known not to be all
11199 zeros. The combination of return value of false and *NONZERO
11200 false implies that INIT may but need not be all zeros. Other
11201 combinations indicate definitive answers. */
11203 bool
11204 initializer_zerop (const_tree init, bool *nonzero /* = NULL */)
11206 bool dummy;
11207 if (!nonzero)
11208 nonzero = &dummy;
11210 /* Conservatively clear NONZERO and set it only if INIT is definitely
11211 not all zero. */
11212 *nonzero = false;
11214 STRIP_NOPS (init);
11216 unsigned HOST_WIDE_INT off = 0;
11218 switch (TREE_CODE (init))
11220 case INTEGER_CST:
11221 if (integer_zerop (init))
11222 return true;
11224 *nonzero = true;
11225 return false;
11227 case REAL_CST:
11228 /* ??? Note that this is not correct for C4X float formats. There,
11229 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
11230 negative exponent. */
11231 if (real_zerop (init)
11232 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init)))
11233 return true;
11235 *nonzero = true;
11236 return false;
11238 case FIXED_CST:
11239 if (fixed_zerop (init))
11240 return true;
11242 *nonzero = true;
11243 return false;
11245 case COMPLEX_CST:
11246 if (integer_zerop (init)
11247 || (real_zerop (init)
11248 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
11249 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init)))))
11250 return true;
11252 *nonzero = true;
11253 return false;
11255 case VECTOR_CST:
11256 if (VECTOR_CST_NPATTERNS (init) == 1
11257 && VECTOR_CST_DUPLICATE_P (init)
11258 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)))
11259 return true;
11261 *nonzero = true;
11262 return false;
11264 case CONSTRUCTOR:
11266 if (TREE_CLOBBER_P (init))
11267 return false;
11269 unsigned HOST_WIDE_INT idx;
11270 tree elt;
11272 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
11273 if (!initializer_zerop (elt, nonzero))
11274 return false;
11276 return true;
11279 case MEM_REF:
11281 tree arg = TREE_OPERAND (init, 0);
11282 if (TREE_CODE (arg) != ADDR_EXPR)
11283 return false;
11284 tree offset = TREE_OPERAND (init, 1);
11285 if (TREE_CODE (offset) != INTEGER_CST
11286 || !tree_fits_uhwi_p (offset))
11287 return false;
11288 off = tree_to_uhwi (offset);
11289 if (INT_MAX < off)
11290 return false;
11291 arg = TREE_OPERAND (arg, 0);
11292 if (TREE_CODE (arg) != STRING_CST)
11293 return false;
11294 init = arg;
11296 /* Fall through. */
11298 case STRING_CST:
11300 gcc_assert (off <= INT_MAX);
11302 int i = off;
11303 int n = TREE_STRING_LENGTH (init);
11304 if (n <= i)
11305 return false;
11307 /* We need to loop through all elements to handle cases like
11308 "\0" and "\0foobar". */
11309 for (i = 0; i < n; ++i)
11310 if (TREE_STRING_POINTER (init)[i] != '\0')
11312 *nonzero = true;
11313 return false;
11316 return true;
11319 default:
11320 return false;
11324 /* Return true if EXPR is an initializer expression in which every element
11325 is a constant that is numerically equal to 0 or 1. The elements do not
11326 need to be equal to each other. */
11328 bool
11329 initializer_each_zero_or_onep (const_tree expr)
11331 STRIP_ANY_LOCATION_WRAPPER (expr);
11333 switch (TREE_CODE (expr))
11335 case INTEGER_CST:
11336 return integer_zerop (expr) || integer_onep (expr);
11338 case REAL_CST:
11339 return real_zerop (expr) || real_onep (expr);
11341 case VECTOR_CST:
11343 unsigned HOST_WIDE_INT nelts = vector_cst_encoded_nelts (expr);
11344 if (VECTOR_CST_STEPPED_P (expr)
11345 && !TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr)).is_constant (&nelts))
11346 return false;
11348 for (unsigned int i = 0; i < nelts; ++i)
11350 tree elt = vector_cst_elt (expr, i);
11351 if (!initializer_each_zero_or_onep (elt))
11352 return false;
11355 return true;
11358 default:
11359 return false;
11363 /* Check if vector VEC consists of all the equal elements and
11364 that the number of elements corresponds to the type of VEC.
11365 The function returns first element of the vector
11366 or NULL_TREE if the vector is not uniform. */
11367 tree
11368 uniform_vector_p (const_tree vec)
11370 tree first, t;
11371 unsigned HOST_WIDE_INT i, nelts;
11373 if (vec == NULL_TREE)
11374 return NULL_TREE;
11376 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
11378 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
11379 return TREE_OPERAND (vec, 0);
11381 else if (TREE_CODE (vec) == VECTOR_CST)
11383 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
11384 return VECTOR_CST_ENCODED_ELT (vec, 0);
11385 return NULL_TREE;
11388 else if (TREE_CODE (vec) == CONSTRUCTOR
11389 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
11391 first = error_mark_node;
11393 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
11395 if (i == 0)
11397 first = t;
11398 continue;
11400 if (!operand_equal_p (first, t, 0))
11401 return NULL_TREE;
11403 if (i != nelts)
11404 return NULL_TREE;
11406 return first;
11409 return NULL_TREE;
11412 /* If the argument is INTEGER_CST, return it. If the argument is vector
11413 with all elements the same INTEGER_CST, return that INTEGER_CST. Otherwise
11414 return NULL_TREE.
11415 Look through location wrappers. */
11417 tree
11418 uniform_integer_cst_p (tree t)
11420 STRIP_ANY_LOCATION_WRAPPER (t);
11422 if (TREE_CODE (t) == INTEGER_CST)
11423 return t;
11425 if (VECTOR_TYPE_P (TREE_TYPE (t)))
11427 t = uniform_vector_p (t);
11428 if (t && TREE_CODE (t) == INTEGER_CST)
11429 return t;
11432 return NULL_TREE;
11435 /* If VECTOR_CST T has a single nonzero element, return the index of that
11436 element, otherwise return -1. */
11439 single_nonzero_element (const_tree t)
11441 unsigned HOST_WIDE_INT nelts;
11442 unsigned int repeat_nelts;
11443 if (VECTOR_CST_NELTS (t).is_constant (&nelts))
11444 repeat_nelts = nelts;
11445 else if (VECTOR_CST_NELTS_PER_PATTERN (t) == 2)
11447 nelts = vector_cst_encoded_nelts (t);
11448 repeat_nelts = VECTOR_CST_NPATTERNS (t);
11450 else
11451 return -1;
11453 int res = -1;
11454 for (unsigned int i = 0; i < nelts; ++i)
11456 tree elt = vector_cst_elt (t, i);
11457 if (!integer_zerop (elt) && !real_zerop (elt))
11459 if (res >= 0 || i >= repeat_nelts)
11460 return -1;
11461 res = i;
11464 return res;
11467 /* Build an empty statement at location LOC. */
11469 tree
11470 build_empty_stmt (location_t loc)
11472 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
11473 SET_EXPR_LOCATION (t, loc);
11474 return t;
11478 /* Build an OpenMP clause with code CODE. LOC is the location of the
11479 clause. */
11481 tree
11482 build_omp_clause (location_t loc, enum omp_clause_code code)
11484 tree t;
11485 int size, length;
11487 length = omp_clause_num_ops[code];
11488 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
11490 record_node_allocation_statistics (OMP_CLAUSE, size);
11492 t = (tree) ggc_internal_alloc (size);
11493 memset (t, 0, size);
11494 TREE_SET_CODE (t, OMP_CLAUSE);
11495 OMP_CLAUSE_SET_CODE (t, code);
11496 OMP_CLAUSE_LOCATION (t) = loc;
11498 return t;
11501 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
11502 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
11503 Except for the CODE and operand count field, other storage for the
11504 object is initialized to zeros. */
11506 tree
11507 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
11509 tree t;
11510 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
11512 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
11513 gcc_assert (len >= 1);
11515 record_node_allocation_statistics (code, length);
11517 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
11519 TREE_SET_CODE (t, code);
11521 /* Can't use TREE_OPERAND to store the length because if checking is
11522 enabled, it will try to check the length before we store it. :-P */
11523 t->exp.operands[0] = build_int_cst (sizetype, len);
11525 return t;
11528 /* Helper function for build_call_* functions; build a CALL_EXPR with
11529 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
11530 the argument slots. */
11532 static tree
11533 build_call_1 (tree return_type, tree fn, int nargs)
11535 tree t;
11537 t = build_vl_exp (CALL_EXPR, nargs + 3);
11538 TREE_TYPE (t) = return_type;
11539 CALL_EXPR_FN (t) = fn;
11540 CALL_EXPR_STATIC_CHAIN (t) = NULL;
11542 return t;
11545 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11546 FN and a null static chain slot. NARGS is the number of call arguments
11547 which are specified as "..." arguments. */
11549 tree
11550 build_call_nary (tree return_type, tree fn, int nargs, ...)
11552 tree ret;
11553 va_list args;
11554 va_start (args, nargs);
11555 ret = build_call_valist (return_type, fn, nargs, args);
11556 va_end (args);
11557 return ret;
11560 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11561 FN and a null static chain slot. NARGS is the number of call arguments
11562 which are specified as a va_list ARGS. */
11564 tree
11565 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11567 tree t;
11568 int i;
11570 t = build_call_1 (return_type, fn, nargs);
11571 for (i = 0; i < nargs; i++)
11572 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11573 process_call_operands (t);
11574 return t;
11577 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11578 FN and a null static chain slot. NARGS is the number of call arguments
11579 which are specified as a tree array ARGS. */
11581 tree
11582 build_call_array_loc (location_t loc, tree return_type, tree fn,
11583 int nargs, const tree *args)
11585 tree t;
11586 int i;
11588 t = build_call_1 (return_type, fn, nargs);
11589 for (i = 0; i < nargs; i++)
11590 CALL_EXPR_ARG (t, i) = args[i];
11591 process_call_operands (t);
11592 SET_EXPR_LOCATION (t, loc);
11593 return t;
11596 /* Like build_call_array, but takes a vec. */
11598 tree
11599 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11601 tree ret, t;
11602 unsigned int ix;
11604 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11605 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11606 CALL_EXPR_ARG (ret, ix) = t;
11607 process_call_operands (ret);
11608 return ret;
11611 /* Conveniently construct a function call expression. FNDECL names the
11612 function to be called and N arguments are passed in the array
11613 ARGARRAY. */
11615 tree
11616 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11618 tree fntype = TREE_TYPE (fndecl);
11619 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11621 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11624 /* Conveniently construct a function call expression. FNDECL names the
11625 function to be called and the arguments are passed in the vector
11626 VEC. */
11628 tree
11629 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11631 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11632 vec_safe_address (vec));
11636 /* Conveniently construct a function call expression. FNDECL names the
11637 function to be called, N is the number of arguments, and the "..."
11638 parameters are the argument expressions. */
11640 tree
11641 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11643 va_list ap;
11644 tree *argarray = XALLOCAVEC (tree, n);
11645 int i;
11647 va_start (ap, n);
11648 for (i = 0; i < n; i++)
11649 argarray[i] = va_arg (ap, tree);
11650 va_end (ap);
11651 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11654 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11655 varargs macros aren't supported by all bootstrap compilers. */
11657 tree
11658 build_call_expr (tree fndecl, int n, ...)
11660 va_list ap;
11661 tree *argarray = XALLOCAVEC (tree, n);
11662 int i;
11664 va_start (ap, n);
11665 for (i = 0; i < n; i++)
11666 argarray[i] = va_arg (ap, tree);
11667 va_end (ap);
11668 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11671 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11672 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11673 It will get gimplified later into an ordinary internal function. */
11675 tree
11676 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11677 tree type, int n, const tree *args)
11679 tree t = build_call_1 (type, NULL_TREE, n);
11680 for (int i = 0; i < n; ++i)
11681 CALL_EXPR_ARG (t, i) = args[i];
11682 SET_EXPR_LOCATION (t, loc);
11683 CALL_EXPR_IFN (t) = ifn;
11684 return t;
11687 /* Build internal call expression. This is just like CALL_EXPR, except
11688 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11689 internal function. */
11691 tree
11692 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11693 tree type, int n, ...)
11695 va_list ap;
11696 tree *argarray = XALLOCAVEC (tree, n);
11697 int i;
11699 va_start (ap, n);
11700 for (i = 0; i < n; i++)
11701 argarray[i] = va_arg (ap, tree);
11702 va_end (ap);
11703 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11706 /* Return a function call to FN, if the target is guaranteed to support it,
11707 or null otherwise.
11709 N is the number of arguments, passed in the "...", and TYPE is the
11710 type of the return value. */
11712 tree
11713 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11714 int n, ...)
11716 va_list ap;
11717 tree *argarray = XALLOCAVEC (tree, n);
11718 int i;
11720 va_start (ap, n);
11721 for (i = 0; i < n; i++)
11722 argarray[i] = va_arg (ap, tree);
11723 va_end (ap);
11724 if (internal_fn_p (fn))
11726 internal_fn ifn = as_internal_fn (fn);
11727 if (direct_internal_fn_p (ifn))
11729 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11730 if (!direct_internal_fn_supported_p (ifn, types,
11731 OPTIMIZE_FOR_BOTH))
11732 return NULL_TREE;
11734 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11736 else
11738 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11739 if (!fndecl)
11740 return NULL_TREE;
11741 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11745 /* Return a function call to the appropriate builtin alloca variant.
11747 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11748 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11749 bound for SIZE in case it is not a fixed value. */
11751 tree
11752 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11754 if (max_size >= 0)
11756 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11757 return
11758 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11760 else if (align > 0)
11762 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11763 return build_call_expr (t, 2, size, size_int (align));
11765 else
11767 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11768 return build_call_expr (t, 1, size);
11772 /* Create a new constant string literal consisting of elements of type
11773 ELTYPE and return a tree node representing char* pointer to it as
11774 an ADDR_EXPR (ARRAY_REF (ELTYPE, ...)). The STRING_CST value is
11775 the LEN bytes at STR (the representation of the string, which may
11776 be wide). */
11778 tree
11779 build_string_literal (int len, const char *str,
11780 tree eltype /* = char_type_node */)
11782 tree t = build_string (len, str);
11783 tree index = build_index_type (size_int (len - 1));
11784 eltype = build_type_variant (eltype, 1, 0);
11785 tree type = build_array_type (eltype, index);
11786 TREE_TYPE (t) = type;
11787 TREE_CONSTANT (t) = 1;
11788 TREE_READONLY (t) = 1;
11789 TREE_STATIC (t) = 1;
11791 type = build_pointer_type (eltype);
11792 t = build1 (ADDR_EXPR, type,
11793 build4 (ARRAY_REF, eltype,
11794 t, integer_zero_node, NULL_TREE, NULL_TREE));
11795 return t;
11800 /* Return true if T (assumed to be a DECL) must be assigned a memory
11801 location. */
11803 bool
11804 needs_to_live_in_memory (const_tree t)
11806 return (TREE_ADDRESSABLE (t)
11807 || is_global_var (t)
11808 || (TREE_CODE (t) == RESULT_DECL
11809 && !DECL_BY_REFERENCE (t)
11810 && aggregate_value_p (t, current_function_decl)));
11813 /* Return value of a constant X and sign-extend it. */
11815 HOST_WIDE_INT
11816 int_cst_value (const_tree x)
11818 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11819 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11821 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11822 gcc_assert (cst_and_fits_in_hwi (x));
11824 if (bits < HOST_BITS_PER_WIDE_INT)
11826 bool negative = ((val >> (bits - 1)) & 1) != 0;
11827 if (negative)
11828 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11829 else
11830 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11833 return val;
11836 /* If TYPE is an integral or pointer type, return an integer type with
11837 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11838 if TYPE is already an integer type of signedness UNSIGNEDP.
11839 If TYPE is a floating-point type, return an integer type with the same
11840 bitsize and with the signedness given by UNSIGNEDP; this is useful
11841 when doing bit-level operations on a floating-point value. */
11843 tree
11844 signed_or_unsigned_type_for (int unsignedp, tree type)
11846 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_UNSIGNED (type) == unsignedp)
11847 return type;
11849 if (TREE_CODE (type) == VECTOR_TYPE)
11851 tree inner = TREE_TYPE (type);
11852 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11853 if (!inner2)
11854 return NULL_TREE;
11855 if (inner == inner2)
11856 return type;
11857 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11860 if (TREE_CODE (type) == COMPLEX_TYPE)
11862 tree inner = TREE_TYPE (type);
11863 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11864 if (!inner2)
11865 return NULL_TREE;
11866 if (inner == inner2)
11867 return type;
11868 return build_complex_type (inner2);
11871 unsigned int bits;
11872 if (INTEGRAL_TYPE_P (type)
11873 || POINTER_TYPE_P (type)
11874 || TREE_CODE (type) == OFFSET_TYPE)
11875 bits = TYPE_PRECISION (type);
11876 else if (TREE_CODE (type) == REAL_TYPE)
11877 bits = GET_MODE_BITSIZE (SCALAR_TYPE_MODE (type));
11878 else
11879 return NULL_TREE;
11881 return build_nonstandard_integer_type (bits, unsignedp);
11884 /* If TYPE is an integral or pointer type, return an integer type with
11885 the same precision which is unsigned, or itself if TYPE is already an
11886 unsigned integer type. If TYPE is a floating-point type, return an
11887 unsigned integer type with the same bitsize as TYPE. */
11889 tree
11890 unsigned_type_for (tree type)
11892 return signed_or_unsigned_type_for (1, type);
11895 /* If TYPE is an integral or pointer type, return an integer type with
11896 the same precision which is signed, or itself if TYPE is already a
11897 signed integer type. If TYPE is a floating-point type, return a
11898 signed integer type with the same bitsize as TYPE. */
11900 tree
11901 signed_type_for (tree type)
11903 return signed_or_unsigned_type_for (0, type);
11906 /* If TYPE is a vector type, return a signed integer vector type with the
11907 same width and number of subparts. Otherwise return boolean_type_node. */
11909 tree
11910 truth_type_for (tree type)
11912 if (TREE_CODE (type) == VECTOR_TYPE)
11914 if (VECTOR_BOOLEAN_TYPE_P (type))
11915 return type;
11916 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
11917 GET_MODE_SIZE (TYPE_MODE (type)));
11919 else
11920 return boolean_type_node;
11923 /* Returns the largest value obtainable by casting something in INNER type to
11924 OUTER type. */
11926 tree
11927 upper_bound_in_type (tree outer, tree inner)
11929 unsigned int det = 0;
11930 unsigned oprec = TYPE_PRECISION (outer);
11931 unsigned iprec = TYPE_PRECISION (inner);
11932 unsigned prec;
11934 /* Compute a unique number for every combination. */
11935 det |= (oprec > iprec) ? 4 : 0;
11936 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11937 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11939 /* Determine the exponent to use. */
11940 switch (det)
11942 case 0:
11943 case 1:
11944 /* oprec <= iprec, outer: signed, inner: don't care. */
11945 prec = oprec - 1;
11946 break;
11947 case 2:
11948 case 3:
11949 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11950 prec = oprec;
11951 break;
11952 case 4:
11953 /* oprec > iprec, outer: signed, inner: signed. */
11954 prec = iprec - 1;
11955 break;
11956 case 5:
11957 /* oprec > iprec, outer: signed, inner: unsigned. */
11958 prec = iprec;
11959 break;
11960 case 6:
11961 /* oprec > iprec, outer: unsigned, inner: signed. */
11962 prec = oprec;
11963 break;
11964 case 7:
11965 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11966 prec = iprec;
11967 break;
11968 default:
11969 gcc_unreachable ();
11972 return wide_int_to_tree (outer,
11973 wi::mask (prec, false, TYPE_PRECISION (outer)));
11976 /* Returns the smallest value obtainable by casting something in INNER type to
11977 OUTER type. */
11979 tree
11980 lower_bound_in_type (tree outer, tree inner)
11982 unsigned oprec = TYPE_PRECISION (outer);
11983 unsigned iprec = TYPE_PRECISION (inner);
11985 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11986 and obtain 0. */
11987 if (TYPE_UNSIGNED (outer)
11988 /* If we are widening something of an unsigned type, OUTER type
11989 contains all values of INNER type. In particular, both INNER
11990 and OUTER types have zero in common. */
11991 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11992 return build_int_cst (outer, 0);
11993 else
11995 /* If we are widening a signed type to another signed type, we
11996 want to obtain -2^^(iprec-1). If we are keeping the
11997 precision or narrowing to a signed type, we want to obtain
11998 -2^(oprec-1). */
11999 unsigned prec = oprec > iprec ? iprec : oprec;
12000 return wide_int_to_tree (outer,
12001 wi::mask (prec - 1, true,
12002 TYPE_PRECISION (outer)));
12006 /* Return nonzero if two operands that are suitable for PHI nodes are
12007 necessarily equal. Specifically, both ARG0 and ARG1 must be either
12008 SSA_NAME or invariant. Note that this is strictly an optimization.
12009 That is, callers of this function can directly call operand_equal_p
12010 and get the same result, only slower. */
12013 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
12015 if (arg0 == arg1)
12016 return 1;
12017 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
12018 return 0;
12019 return operand_equal_p (arg0, arg1, 0);
12022 /* Returns number of zeros at the end of binary representation of X. */
12024 tree
12025 num_ending_zeros (const_tree x)
12027 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
12031 #define WALK_SUBTREE(NODE) \
12032 do \
12034 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
12035 if (result) \
12036 return result; \
12038 while (0)
12040 /* This is a subroutine of walk_tree that walks field of TYPE that are to
12041 be walked whenever a type is seen in the tree. Rest of operands and return
12042 value are as for walk_tree. */
12044 static tree
12045 walk_type_fields (tree type, walk_tree_fn func, void *data,
12046 hash_set<tree> *pset, walk_tree_lh lh)
12048 tree result = NULL_TREE;
12050 switch (TREE_CODE (type))
12052 case POINTER_TYPE:
12053 case REFERENCE_TYPE:
12054 case VECTOR_TYPE:
12055 /* We have to worry about mutually recursive pointers. These can't
12056 be written in C. They can in Ada. It's pathological, but
12057 there's an ACATS test (c38102a) that checks it. Deal with this
12058 by checking if we're pointing to another pointer, that one
12059 points to another pointer, that one does too, and we have no htab.
12060 If so, get a hash table. We check three levels deep to avoid
12061 the cost of the hash table if we don't need one. */
12062 if (POINTER_TYPE_P (TREE_TYPE (type))
12063 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
12064 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
12065 && !pset)
12067 result = walk_tree_without_duplicates (&TREE_TYPE (type),
12068 func, data);
12069 if (result)
12070 return result;
12072 break;
12075 /* fall through */
12077 case COMPLEX_TYPE:
12078 WALK_SUBTREE (TREE_TYPE (type));
12079 break;
12081 case METHOD_TYPE:
12082 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
12084 /* Fall through. */
12086 case FUNCTION_TYPE:
12087 WALK_SUBTREE (TREE_TYPE (type));
12089 tree arg;
12091 /* We never want to walk into default arguments. */
12092 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
12093 WALK_SUBTREE (TREE_VALUE (arg));
12095 break;
12097 case ARRAY_TYPE:
12098 /* Don't follow this nodes's type if a pointer for fear that
12099 we'll have infinite recursion. If we have a PSET, then we
12100 need not fear. */
12101 if (pset
12102 || (!POINTER_TYPE_P (TREE_TYPE (type))
12103 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
12104 WALK_SUBTREE (TREE_TYPE (type));
12105 WALK_SUBTREE (TYPE_DOMAIN (type));
12106 break;
12108 case OFFSET_TYPE:
12109 WALK_SUBTREE (TREE_TYPE (type));
12110 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
12111 break;
12113 default:
12114 break;
12117 return NULL_TREE;
12120 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
12121 called with the DATA and the address of each sub-tree. If FUNC returns a
12122 non-NULL value, the traversal is stopped, and the value returned by FUNC
12123 is returned. If PSET is non-NULL it is used to record the nodes visited,
12124 and to avoid visiting a node more than once. */
12126 tree
12127 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
12128 hash_set<tree> *pset, walk_tree_lh lh)
12130 enum tree_code code;
12131 int walk_subtrees;
12132 tree result;
12134 #define WALK_SUBTREE_TAIL(NODE) \
12135 do \
12137 tp = & (NODE); \
12138 goto tail_recurse; \
12140 while (0)
12142 tail_recurse:
12143 /* Skip empty subtrees. */
12144 if (!*tp)
12145 return NULL_TREE;
12147 /* Don't walk the same tree twice, if the user has requested
12148 that we avoid doing so. */
12149 if (pset && pset->add (*tp))
12150 return NULL_TREE;
12152 /* Call the function. */
12153 walk_subtrees = 1;
12154 result = (*func) (tp, &walk_subtrees, data);
12156 /* If we found something, return it. */
12157 if (result)
12158 return result;
12160 code = TREE_CODE (*tp);
12162 /* Even if we didn't, FUNC may have decided that there was nothing
12163 interesting below this point in the tree. */
12164 if (!walk_subtrees)
12166 /* But we still need to check our siblings. */
12167 if (code == TREE_LIST)
12168 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12169 else if (code == OMP_CLAUSE)
12170 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12171 else
12172 return NULL_TREE;
12175 if (lh)
12177 result = (*lh) (tp, &walk_subtrees, func, data, pset);
12178 if (result || !walk_subtrees)
12179 return result;
12182 switch (code)
12184 case ERROR_MARK:
12185 case IDENTIFIER_NODE:
12186 case INTEGER_CST:
12187 case REAL_CST:
12188 case FIXED_CST:
12189 case VECTOR_CST:
12190 case STRING_CST:
12191 case BLOCK:
12192 case PLACEHOLDER_EXPR:
12193 case SSA_NAME:
12194 case FIELD_DECL:
12195 case RESULT_DECL:
12196 /* None of these have subtrees other than those already walked
12197 above. */
12198 break;
12200 case TREE_LIST:
12201 WALK_SUBTREE (TREE_VALUE (*tp));
12202 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12203 break;
12205 case TREE_VEC:
12207 int len = TREE_VEC_LENGTH (*tp);
12209 if (len == 0)
12210 break;
12212 /* Walk all elements but the first. */
12213 while (--len)
12214 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
12216 /* Now walk the first one as a tail call. */
12217 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
12220 case COMPLEX_CST:
12221 WALK_SUBTREE (TREE_REALPART (*tp));
12222 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
12224 case CONSTRUCTOR:
12226 unsigned HOST_WIDE_INT idx;
12227 constructor_elt *ce;
12229 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
12230 idx++)
12231 WALK_SUBTREE (ce->value);
12233 break;
12235 case SAVE_EXPR:
12236 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
12238 case BIND_EXPR:
12240 tree decl;
12241 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
12243 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
12244 into declarations that are just mentioned, rather than
12245 declared; they don't really belong to this part of the tree.
12246 And, we can see cycles: the initializer for a declaration
12247 can refer to the declaration itself. */
12248 WALK_SUBTREE (DECL_INITIAL (decl));
12249 WALK_SUBTREE (DECL_SIZE (decl));
12250 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
12252 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
12255 case STATEMENT_LIST:
12257 tree_stmt_iterator i;
12258 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
12259 WALK_SUBTREE (*tsi_stmt_ptr (i));
12261 break;
12263 case OMP_CLAUSE:
12264 switch (OMP_CLAUSE_CODE (*tp))
12266 case OMP_CLAUSE_GANG:
12267 case OMP_CLAUSE__GRIDDIM_:
12268 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12269 /* FALLTHRU */
12271 case OMP_CLAUSE_ASYNC:
12272 case OMP_CLAUSE_WAIT:
12273 case OMP_CLAUSE_WORKER:
12274 case OMP_CLAUSE_VECTOR:
12275 case OMP_CLAUSE_NUM_GANGS:
12276 case OMP_CLAUSE_NUM_WORKERS:
12277 case OMP_CLAUSE_VECTOR_LENGTH:
12278 case OMP_CLAUSE_PRIVATE:
12279 case OMP_CLAUSE_SHARED:
12280 case OMP_CLAUSE_FIRSTPRIVATE:
12281 case OMP_CLAUSE_COPYIN:
12282 case OMP_CLAUSE_COPYPRIVATE:
12283 case OMP_CLAUSE_FINAL:
12284 case OMP_CLAUSE_IF:
12285 case OMP_CLAUSE_NUM_THREADS:
12286 case OMP_CLAUSE_SCHEDULE:
12287 case OMP_CLAUSE_UNIFORM:
12288 case OMP_CLAUSE_DEPEND:
12289 case OMP_CLAUSE_NONTEMPORAL:
12290 case OMP_CLAUSE_NUM_TEAMS:
12291 case OMP_CLAUSE_THREAD_LIMIT:
12292 case OMP_CLAUSE_DEVICE:
12293 case OMP_CLAUSE_DIST_SCHEDULE:
12294 case OMP_CLAUSE_SAFELEN:
12295 case OMP_CLAUSE_SIMDLEN:
12296 case OMP_CLAUSE_ORDERED:
12297 case OMP_CLAUSE_PRIORITY:
12298 case OMP_CLAUSE_GRAINSIZE:
12299 case OMP_CLAUSE_NUM_TASKS:
12300 case OMP_CLAUSE_HINT:
12301 case OMP_CLAUSE_TO_DECLARE:
12302 case OMP_CLAUSE_LINK:
12303 case OMP_CLAUSE_USE_DEVICE_PTR:
12304 case OMP_CLAUSE_IS_DEVICE_PTR:
12305 case OMP_CLAUSE__LOOPTEMP_:
12306 case OMP_CLAUSE__REDUCTEMP_:
12307 case OMP_CLAUSE__SIMDUID_:
12308 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
12309 /* FALLTHRU */
12311 case OMP_CLAUSE_INDEPENDENT:
12312 case OMP_CLAUSE_NOWAIT:
12313 case OMP_CLAUSE_DEFAULT:
12314 case OMP_CLAUSE_UNTIED:
12315 case OMP_CLAUSE_MERGEABLE:
12316 case OMP_CLAUSE_PROC_BIND:
12317 case OMP_CLAUSE_INBRANCH:
12318 case OMP_CLAUSE_NOTINBRANCH:
12319 case OMP_CLAUSE_FOR:
12320 case OMP_CLAUSE_PARALLEL:
12321 case OMP_CLAUSE_SECTIONS:
12322 case OMP_CLAUSE_TASKGROUP:
12323 case OMP_CLAUSE_NOGROUP:
12324 case OMP_CLAUSE_THREADS:
12325 case OMP_CLAUSE_SIMD:
12326 case OMP_CLAUSE_DEFAULTMAP:
12327 case OMP_CLAUSE_AUTO:
12328 case OMP_CLAUSE_SEQ:
12329 case OMP_CLAUSE_TILE:
12330 case OMP_CLAUSE__SIMT_:
12331 case OMP_CLAUSE_IF_PRESENT:
12332 case OMP_CLAUSE_FINALIZE:
12333 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12335 case OMP_CLAUSE_LASTPRIVATE:
12336 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12337 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
12338 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12340 case OMP_CLAUSE_COLLAPSE:
12342 int i;
12343 for (i = 0; i < 3; i++)
12344 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12345 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12348 case OMP_CLAUSE_LINEAR:
12349 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12350 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
12351 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
12352 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12354 case OMP_CLAUSE_ALIGNED:
12355 case OMP_CLAUSE_FROM:
12356 case OMP_CLAUSE_TO:
12357 case OMP_CLAUSE_MAP:
12358 case OMP_CLAUSE__CACHE_:
12359 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12360 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12361 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12363 case OMP_CLAUSE_REDUCTION:
12364 case OMP_CLAUSE_TASK_REDUCTION:
12365 case OMP_CLAUSE_IN_REDUCTION:
12367 int i;
12368 for (i = 0; i < 5; i++)
12369 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12370 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12373 default:
12374 gcc_unreachable ();
12376 break;
12378 case TARGET_EXPR:
12380 int i, len;
12382 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
12383 But, we only want to walk once. */
12384 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
12385 for (i = 0; i < len; ++i)
12386 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12387 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
12390 case DECL_EXPR:
12391 /* If this is a TYPE_DECL, walk into the fields of the type that it's
12392 defining. We only want to walk into these fields of a type in this
12393 case and not in the general case of a mere reference to the type.
12395 The criterion is as follows: if the field can be an expression, it
12396 must be walked only here. This should be in keeping with the fields
12397 that are directly gimplified in gimplify_type_sizes in order for the
12398 mark/copy-if-shared/unmark machinery of the gimplifier to work with
12399 variable-sized types.
12401 Note that DECLs get walked as part of processing the BIND_EXPR. */
12402 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
12404 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
12405 if (TREE_CODE (*type_p) == ERROR_MARK)
12406 return NULL_TREE;
12408 /* Call the function for the type. See if it returns anything or
12409 doesn't want us to continue. If we are to continue, walk both
12410 the normal fields and those for the declaration case. */
12411 result = (*func) (type_p, &walk_subtrees, data);
12412 if (result || !walk_subtrees)
12413 return result;
12415 /* But do not walk a pointed-to type since it may itself need to
12416 be walked in the declaration case if it isn't anonymous. */
12417 if (!POINTER_TYPE_P (*type_p))
12419 result = walk_type_fields (*type_p, func, data, pset, lh);
12420 if (result)
12421 return result;
12424 /* If this is a record type, also walk the fields. */
12425 if (RECORD_OR_UNION_TYPE_P (*type_p))
12427 tree field;
12429 for (field = TYPE_FIELDS (*type_p); field;
12430 field = DECL_CHAIN (field))
12432 /* We'd like to look at the type of the field, but we can
12433 easily get infinite recursion. So assume it's pointed
12434 to elsewhere in the tree. Also, ignore things that
12435 aren't fields. */
12436 if (TREE_CODE (field) != FIELD_DECL)
12437 continue;
12439 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
12440 WALK_SUBTREE (DECL_SIZE (field));
12441 WALK_SUBTREE (DECL_SIZE_UNIT (field));
12442 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
12443 WALK_SUBTREE (DECL_QUALIFIER (field));
12447 /* Same for scalar types. */
12448 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
12449 || TREE_CODE (*type_p) == ENUMERAL_TYPE
12450 || TREE_CODE (*type_p) == INTEGER_TYPE
12451 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
12452 || TREE_CODE (*type_p) == REAL_TYPE)
12454 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
12455 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
12458 WALK_SUBTREE (TYPE_SIZE (*type_p));
12459 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
12461 /* FALLTHRU */
12463 default:
12464 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
12466 int i, len;
12468 /* Walk over all the sub-trees of this operand. */
12469 len = TREE_OPERAND_LENGTH (*tp);
12471 /* Go through the subtrees. We need to do this in forward order so
12472 that the scope of a FOR_EXPR is handled properly. */
12473 if (len)
12475 for (i = 0; i < len - 1; ++i)
12476 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12477 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
12480 /* If this is a type, walk the needed fields in the type. */
12481 else if (TYPE_P (*tp))
12482 return walk_type_fields (*tp, func, data, pset, lh);
12483 break;
12486 /* We didn't find what we were looking for. */
12487 return NULL_TREE;
12489 #undef WALK_SUBTREE_TAIL
12491 #undef WALK_SUBTREE
12493 /* Like walk_tree, but does not walk duplicate nodes more than once. */
12495 tree
12496 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
12497 walk_tree_lh lh)
12499 tree result;
12501 hash_set<tree> pset;
12502 result = walk_tree_1 (tp, func, data, &pset, lh);
12503 return result;
12507 tree
12508 tree_block (tree t)
12510 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12512 if (IS_EXPR_CODE_CLASS (c))
12513 return LOCATION_BLOCK (t->exp.locus);
12514 gcc_unreachable ();
12515 return NULL;
12518 void
12519 tree_set_block (tree t, tree b)
12521 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12523 if (IS_EXPR_CODE_CLASS (c))
12525 t->exp.locus = set_block (t->exp.locus, b);
12527 else
12528 gcc_unreachable ();
12531 /* Create a nameless artificial label and put it in the current
12532 function context. The label has a location of LOC. Returns the
12533 newly created label. */
12535 tree
12536 create_artificial_label (location_t loc)
12538 tree lab = build_decl (loc,
12539 LABEL_DECL, NULL_TREE, void_type_node);
12541 DECL_ARTIFICIAL (lab) = 1;
12542 DECL_IGNORED_P (lab) = 1;
12543 DECL_CONTEXT (lab) = current_function_decl;
12544 return lab;
12547 /* Given a tree, try to return a useful variable name that we can use
12548 to prefix a temporary that is being assigned the value of the tree.
12549 I.E. given <temp> = &A, return A. */
12551 const char *
12552 get_name (tree t)
12554 tree stripped_decl;
12556 stripped_decl = t;
12557 STRIP_NOPS (stripped_decl);
12558 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
12559 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
12560 else if (TREE_CODE (stripped_decl) == SSA_NAME)
12562 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
12563 if (!name)
12564 return NULL;
12565 return IDENTIFIER_POINTER (name);
12567 else
12569 switch (TREE_CODE (stripped_decl))
12571 case ADDR_EXPR:
12572 return get_name (TREE_OPERAND (stripped_decl, 0));
12573 default:
12574 return NULL;
12579 /* Return true if TYPE has a variable argument list. */
12581 bool
12582 stdarg_p (const_tree fntype)
12584 function_args_iterator args_iter;
12585 tree n = NULL_TREE, t;
12587 if (!fntype)
12588 return false;
12590 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
12592 n = t;
12595 return n != NULL_TREE && n != void_type_node;
12598 /* Return true if TYPE has a prototype. */
12600 bool
12601 prototype_p (const_tree fntype)
12603 tree t;
12605 gcc_assert (fntype != NULL_TREE);
12607 t = TYPE_ARG_TYPES (fntype);
12608 return (t != NULL_TREE);
12611 /* If BLOCK is inlined from an __attribute__((__artificial__))
12612 routine, return pointer to location from where it has been
12613 called. */
12614 location_t *
12615 block_nonartificial_location (tree block)
12617 location_t *ret = NULL;
12619 while (block && TREE_CODE (block) == BLOCK
12620 && BLOCK_ABSTRACT_ORIGIN (block))
12622 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12623 if (TREE_CODE (ao) == FUNCTION_DECL)
12625 /* If AO is an artificial inline, point RET to the
12626 call site locus at which it has been inlined and continue
12627 the loop, in case AO's caller is also an artificial
12628 inline. */
12629 if (DECL_DECLARED_INLINE_P (ao)
12630 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12631 ret = &BLOCK_SOURCE_LOCATION (block);
12632 else
12633 break;
12635 else if (TREE_CODE (ao) != BLOCK)
12636 break;
12638 block = BLOCK_SUPERCONTEXT (block);
12640 return ret;
12644 /* If EXP is inlined from an __attribute__((__artificial__))
12645 function, return the location of the original call expression. */
12647 location_t
12648 tree_nonartificial_location (tree exp)
12650 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12652 if (loc)
12653 return *loc;
12654 else
12655 return EXPR_LOCATION (exp);
12659 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
12660 nodes. */
12662 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12664 hashval_t
12665 cl_option_hasher::hash (tree x)
12667 const_tree const t = x;
12668 const char *p;
12669 size_t i;
12670 size_t len = 0;
12671 hashval_t hash = 0;
12673 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12675 p = (const char *)TREE_OPTIMIZATION (t);
12676 len = sizeof (struct cl_optimization);
12679 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12680 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12682 else
12683 gcc_unreachable ();
12685 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12686 something else. */
12687 for (i = 0; i < len; i++)
12688 if (p[i])
12689 hash = (hash << 4) ^ ((i << 2) | p[i]);
12691 return hash;
12694 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12695 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12696 same. */
12698 bool
12699 cl_option_hasher::equal (tree x, tree y)
12701 const_tree const xt = x;
12702 const_tree const yt = y;
12704 if (TREE_CODE (xt) != TREE_CODE (yt))
12705 return 0;
12707 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12708 return cl_optimization_option_eq (TREE_OPTIMIZATION (xt),
12709 TREE_OPTIMIZATION (yt));
12710 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12711 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12712 TREE_TARGET_OPTION (yt));
12713 else
12714 gcc_unreachable ();
12717 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
12719 tree
12720 build_optimization_node (struct gcc_options *opts)
12722 tree t;
12724 /* Use the cache of optimization nodes. */
12726 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12727 opts);
12729 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12730 t = *slot;
12731 if (!t)
12733 /* Insert this one into the hash table. */
12734 t = cl_optimization_node;
12735 *slot = t;
12737 /* Make a new node for next time round. */
12738 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12741 return t;
12744 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
12746 tree
12747 build_target_option_node (struct gcc_options *opts)
12749 tree t;
12751 /* Use the cache of optimization nodes. */
12753 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12754 opts);
12756 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12757 t = *slot;
12758 if (!t)
12760 /* Insert this one into the hash table. */
12761 t = cl_target_option_node;
12762 *slot = t;
12764 /* Make a new node for next time round. */
12765 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12768 return t;
12771 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12772 so that they aren't saved during PCH writing. */
12774 void
12775 prepare_target_option_nodes_for_pch (void)
12777 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12778 for (; iter != cl_option_hash_table->end (); ++iter)
12779 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12780 TREE_TARGET_GLOBALS (*iter) = NULL;
12783 /* Determine the "ultimate origin" of a block. */
12785 tree
12786 block_ultimate_origin (const_tree block)
12788 tree origin = BLOCK_ABSTRACT_ORIGIN (block);
12790 if (origin == NULL_TREE)
12791 return NULL_TREE;
12792 else
12794 gcc_checking_assert ((DECL_P (origin)
12795 && DECL_ORIGIN (origin) == origin)
12796 || BLOCK_ORIGIN (origin) == origin);
12797 return origin;
12801 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12802 no instruction. */
12804 bool
12805 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12807 /* Do not strip casts into or out of differing address spaces. */
12808 if (POINTER_TYPE_P (outer_type)
12809 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12811 if (!POINTER_TYPE_P (inner_type)
12812 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12813 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12814 return false;
12816 else if (POINTER_TYPE_P (inner_type)
12817 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12819 /* We already know that outer_type is not a pointer with
12820 a non-generic address space. */
12821 return false;
12824 /* Use precision rather then machine mode when we can, which gives
12825 the correct answer even for submode (bit-field) types. */
12826 if ((INTEGRAL_TYPE_P (outer_type)
12827 || POINTER_TYPE_P (outer_type)
12828 || TREE_CODE (outer_type) == OFFSET_TYPE)
12829 && (INTEGRAL_TYPE_P (inner_type)
12830 || POINTER_TYPE_P (inner_type)
12831 || TREE_CODE (inner_type) == OFFSET_TYPE))
12832 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12834 /* Otherwise fall back on comparing machine modes (e.g. for
12835 aggregate types, floats). */
12836 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12839 /* Return true iff conversion in EXP generates no instruction. Mark
12840 it inline so that we fully inline into the stripping functions even
12841 though we have two uses of this function. */
12843 static inline bool
12844 tree_nop_conversion (const_tree exp)
12846 tree outer_type, inner_type;
12848 if (location_wrapper_p (exp))
12849 return true;
12850 if (!CONVERT_EXPR_P (exp)
12851 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12852 return false;
12854 outer_type = TREE_TYPE (exp);
12855 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12856 if (!inner_type || inner_type == error_mark_node)
12857 return false;
12859 return tree_nop_conversion_p (outer_type, inner_type);
12862 /* Return true iff conversion in EXP generates no instruction. Don't
12863 consider conversions changing the signedness. */
12865 static bool
12866 tree_sign_nop_conversion (const_tree exp)
12868 tree outer_type, inner_type;
12870 if (!tree_nop_conversion (exp))
12871 return false;
12873 outer_type = TREE_TYPE (exp);
12874 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12876 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12877 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12880 /* Strip conversions from EXP according to tree_nop_conversion and
12881 return the resulting expression. */
12883 tree
12884 tree_strip_nop_conversions (tree exp)
12886 while (tree_nop_conversion (exp))
12887 exp = TREE_OPERAND (exp, 0);
12888 return exp;
12891 /* Strip conversions from EXP according to tree_sign_nop_conversion
12892 and return the resulting expression. */
12894 tree
12895 tree_strip_sign_nop_conversions (tree exp)
12897 while (tree_sign_nop_conversion (exp))
12898 exp = TREE_OPERAND (exp, 0);
12899 return exp;
12902 /* Avoid any floating point extensions from EXP. */
12903 tree
12904 strip_float_extensions (tree exp)
12906 tree sub, expt, subt;
12908 /* For floating point constant look up the narrowest type that can hold
12909 it properly and handle it like (type)(narrowest_type)constant.
12910 This way we can optimize for instance a=a*2.0 where "a" is float
12911 but 2.0 is double constant. */
12912 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12914 REAL_VALUE_TYPE orig;
12915 tree type = NULL;
12917 orig = TREE_REAL_CST (exp);
12918 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12919 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12920 type = float_type_node;
12921 else if (TYPE_PRECISION (TREE_TYPE (exp))
12922 > TYPE_PRECISION (double_type_node)
12923 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12924 type = double_type_node;
12925 if (type)
12926 return build_real_truncate (type, orig);
12929 if (!CONVERT_EXPR_P (exp))
12930 return exp;
12932 sub = TREE_OPERAND (exp, 0);
12933 subt = TREE_TYPE (sub);
12934 expt = TREE_TYPE (exp);
12936 if (!FLOAT_TYPE_P (subt))
12937 return exp;
12939 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12940 return exp;
12942 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12943 return exp;
12945 return strip_float_extensions (sub);
12948 /* Strip out all handled components that produce invariant
12949 offsets. */
12951 const_tree
12952 strip_invariant_refs (const_tree op)
12954 while (handled_component_p (op))
12956 switch (TREE_CODE (op))
12958 case ARRAY_REF:
12959 case ARRAY_RANGE_REF:
12960 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12961 || TREE_OPERAND (op, 2) != NULL_TREE
12962 || TREE_OPERAND (op, 3) != NULL_TREE)
12963 return NULL;
12964 break;
12966 case COMPONENT_REF:
12967 if (TREE_OPERAND (op, 2) != NULL_TREE)
12968 return NULL;
12969 break;
12971 default:;
12973 op = TREE_OPERAND (op, 0);
12976 return op;
12979 static GTY(()) tree gcc_eh_personality_decl;
12981 /* Return the GCC personality function decl. */
12983 tree
12984 lhd_gcc_personality (void)
12986 if (!gcc_eh_personality_decl)
12987 gcc_eh_personality_decl = build_personality_function ("gcc");
12988 return gcc_eh_personality_decl;
12991 /* TARGET is a call target of GIMPLE call statement
12992 (obtained by gimple_call_fn). Return true if it is
12993 OBJ_TYPE_REF representing an virtual call of C++ method.
12994 (As opposed to OBJ_TYPE_REF representing objc calls
12995 through a cast where middle-end devirtualization machinery
12996 can't apply.) */
12998 bool
12999 virtual_method_call_p (const_tree target)
13001 if (TREE_CODE (target) != OBJ_TYPE_REF)
13002 return false;
13003 tree t = TREE_TYPE (target);
13004 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
13005 t = TREE_TYPE (t);
13006 if (TREE_CODE (t) == FUNCTION_TYPE)
13007 return false;
13008 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
13009 /* If we do not have BINFO associated, it means that type was built
13010 without devirtualization enabled. Do not consider this a virtual
13011 call. */
13012 if (!TYPE_BINFO (obj_type_ref_class (target)))
13013 return false;
13014 return true;
13017 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
13019 static tree
13020 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
13022 unsigned int i;
13023 tree base_binfo, b;
13025 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13026 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
13027 && types_same_for_odr (TREE_TYPE (base_binfo), type))
13028 return base_binfo;
13029 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
13030 return b;
13031 return NULL;
13034 /* Try to find a base info of BINFO that would have its field decl at offset
13035 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
13036 found, return, otherwise return NULL_TREE. */
13038 tree
13039 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
13041 tree type = BINFO_TYPE (binfo);
13043 while (true)
13045 HOST_WIDE_INT pos, size;
13046 tree fld;
13047 int i;
13049 if (types_same_for_odr (type, expected_type))
13050 return binfo;
13051 if (maybe_lt (offset, 0))
13052 return NULL_TREE;
13054 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
13056 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
13057 continue;
13059 pos = int_bit_position (fld);
13060 size = tree_to_uhwi (DECL_SIZE (fld));
13061 if (known_in_range_p (offset, pos, size))
13062 break;
13064 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
13065 return NULL_TREE;
13067 /* Offset 0 indicates the primary base, whose vtable contents are
13068 represented in the binfo for the derived class. */
13069 else if (maybe_ne (offset, 0))
13071 tree found_binfo = NULL, base_binfo;
13072 /* Offsets in BINFO are in bytes relative to the whole structure
13073 while POS is in bits relative to the containing field. */
13074 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
13075 / BITS_PER_UNIT);
13077 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13078 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
13079 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
13081 found_binfo = base_binfo;
13082 break;
13084 if (found_binfo)
13085 binfo = found_binfo;
13086 else
13087 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
13088 binfo_offset);
13091 type = TREE_TYPE (fld);
13092 offset -= pos;
13096 /* Returns true if X is a typedef decl. */
13098 bool
13099 is_typedef_decl (const_tree x)
13101 return (x && TREE_CODE (x) == TYPE_DECL
13102 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
13105 /* Returns true iff TYPE is a type variant created for a typedef. */
13107 bool
13108 typedef_variant_p (const_tree type)
13110 return is_typedef_decl (TYPE_NAME (type));
13113 /* A class to handle converting a string that might contain
13114 control characters, (eg newline, form-feed, etc), into one
13115 in which contains escape sequences instead. */
13117 class escaped_string
13119 public:
13120 escaped_string () { m_owned = false; m_str = NULL; };
13121 ~escaped_string () { if (m_owned) free (m_str); }
13122 operator const char *() const { return (const char *) m_str; }
13123 void escape (const char *);
13124 private:
13125 char *m_str;
13126 bool m_owned;
13129 /* PR 84195: Replace control characters in "unescaped" with their
13130 escaped equivalents. Allow newlines if -fmessage-length has
13131 been set to a non-zero value. This is done here, rather than
13132 where the attribute is recorded as the message length can
13133 change between these two locations. */
13135 void
13136 escaped_string::escape (const char *unescaped)
13138 char *escaped;
13139 size_t i, new_i, len;
13141 if (m_owned)
13142 free (m_str);
13144 m_str = const_cast<char *> (unescaped);
13145 m_owned = false;
13147 if (unescaped == NULL || *unescaped == 0)
13148 return;
13150 len = strlen (unescaped);
13151 escaped = NULL;
13152 new_i = 0;
13154 for (i = 0; i < len; i++)
13156 char c = unescaped[i];
13158 if (!ISCNTRL (c))
13160 if (escaped)
13161 escaped[new_i++] = c;
13162 continue;
13165 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
13167 if (escaped == NULL)
13169 /* We only allocate space for a new string if we
13170 actually encounter a control character that
13171 needs replacing. */
13172 escaped = (char *) xmalloc (len * 2 + 1);
13173 strncpy (escaped, unescaped, i);
13174 new_i = i;
13177 escaped[new_i++] = '\\';
13179 switch (c)
13181 case '\a': escaped[new_i++] = 'a'; break;
13182 case '\b': escaped[new_i++] = 'b'; break;
13183 case '\f': escaped[new_i++] = 'f'; break;
13184 case '\n': escaped[new_i++] = 'n'; break;
13185 case '\r': escaped[new_i++] = 'r'; break;
13186 case '\t': escaped[new_i++] = 't'; break;
13187 case '\v': escaped[new_i++] = 'v'; break;
13188 default: escaped[new_i++] = '?'; break;
13191 else if (escaped)
13192 escaped[new_i++] = c;
13195 if (escaped)
13197 escaped[new_i] = 0;
13198 m_str = escaped;
13199 m_owned = true;
13203 /* Warn about a use of an identifier which was marked deprecated. Returns
13204 whether a warning was given. */
13206 bool
13207 warn_deprecated_use (tree node, tree attr)
13209 escaped_string msg;
13211 if (node == 0 || !warn_deprecated_decl)
13212 return false;
13214 if (!attr)
13216 if (DECL_P (node))
13217 attr = DECL_ATTRIBUTES (node);
13218 else if (TYPE_P (node))
13220 tree decl = TYPE_STUB_DECL (node);
13221 if (decl)
13222 attr = lookup_attribute ("deprecated",
13223 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
13227 if (attr)
13228 attr = lookup_attribute ("deprecated", attr);
13230 if (attr)
13231 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
13233 bool w = false;
13234 if (DECL_P (node))
13236 auto_diagnostic_group d;
13237 if (msg)
13238 w = warning (OPT_Wdeprecated_declarations,
13239 "%qD is deprecated: %s", node, (const char *) msg);
13240 else
13241 w = warning (OPT_Wdeprecated_declarations,
13242 "%qD is deprecated", node);
13243 if (w)
13244 inform (DECL_SOURCE_LOCATION (node), "declared here");
13246 else if (TYPE_P (node))
13248 tree what = NULL_TREE;
13249 tree decl = TYPE_STUB_DECL (node);
13251 if (TYPE_NAME (node))
13253 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
13254 what = TYPE_NAME (node);
13255 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
13256 && DECL_NAME (TYPE_NAME (node)))
13257 what = DECL_NAME (TYPE_NAME (node));
13260 auto_diagnostic_group d;
13261 if (what)
13263 if (msg)
13264 w = warning (OPT_Wdeprecated_declarations,
13265 "%qE is deprecated: %s", what, (const char *) msg);
13266 else
13267 w = warning (OPT_Wdeprecated_declarations,
13268 "%qE is deprecated", what);
13270 else
13272 if (msg)
13273 w = warning (OPT_Wdeprecated_declarations,
13274 "type is deprecated: %s", (const char *) msg);
13275 else
13276 w = warning (OPT_Wdeprecated_declarations,
13277 "type is deprecated");
13280 if (w && decl)
13281 inform (DECL_SOURCE_LOCATION (decl), "declared here");
13284 return w;
13287 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
13288 somewhere in it. */
13290 bool
13291 contains_bitfld_component_ref_p (const_tree ref)
13293 while (handled_component_p (ref))
13295 if (TREE_CODE (ref) == COMPONENT_REF
13296 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
13297 return true;
13298 ref = TREE_OPERAND (ref, 0);
13301 return false;
13304 /* Try to determine whether a TRY_CATCH expression can fall through.
13305 This is a subroutine of block_may_fallthru. */
13307 static bool
13308 try_catch_may_fallthru (const_tree stmt)
13310 tree_stmt_iterator i;
13312 /* If the TRY block can fall through, the whole TRY_CATCH can
13313 fall through. */
13314 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
13315 return true;
13317 i = tsi_start (TREE_OPERAND (stmt, 1));
13318 switch (TREE_CODE (tsi_stmt (i)))
13320 case CATCH_EXPR:
13321 /* We expect to see a sequence of CATCH_EXPR trees, each with a
13322 catch expression and a body. The whole TRY_CATCH may fall
13323 through iff any of the catch bodies falls through. */
13324 for (; !tsi_end_p (i); tsi_next (&i))
13326 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
13327 return true;
13329 return false;
13331 case EH_FILTER_EXPR:
13332 /* The exception filter expression only matters if there is an
13333 exception. If the exception does not match EH_FILTER_TYPES,
13334 we will execute EH_FILTER_FAILURE, and we will fall through
13335 if that falls through. If the exception does match
13336 EH_FILTER_TYPES, the stack unwinder will continue up the
13337 stack, so we will not fall through. We don't know whether we
13338 will throw an exception which matches EH_FILTER_TYPES or not,
13339 so we just ignore EH_FILTER_TYPES and assume that we might
13340 throw an exception which doesn't match. */
13341 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
13343 default:
13344 /* This case represents statements to be executed when an
13345 exception occurs. Those statements are implicitly followed
13346 by a RESX statement to resume execution after the exception.
13347 So in this case the TRY_CATCH never falls through. */
13348 return false;
13352 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
13353 need not be 100% accurate; simply be conservative and return true if we
13354 don't know. This is used only to avoid stupidly generating extra code.
13355 If we're wrong, we'll just delete the extra code later. */
13357 bool
13358 block_may_fallthru (const_tree block)
13360 /* This CONST_CAST is okay because expr_last returns its argument
13361 unmodified and we assign it to a const_tree. */
13362 const_tree stmt = expr_last (CONST_CAST_TREE (block));
13364 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
13366 case GOTO_EXPR:
13367 case RETURN_EXPR:
13368 /* Easy cases. If the last statement of the block implies
13369 control transfer, then we can't fall through. */
13370 return false;
13372 case SWITCH_EXPR:
13373 /* If there is a default: label or case labels cover all possible
13374 SWITCH_COND values, then the SWITCH_EXPR will transfer control
13375 to some case label in all cases and all we care is whether the
13376 SWITCH_BODY falls through. */
13377 if (SWITCH_ALL_CASES_P (stmt))
13378 return block_may_fallthru (SWITCH_BODY (stmt));
13379 return true;
13381 case COND_EXPR:
13382 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
13383 return true;
13384 return block_may_fallthru (COND_EXPR_ELSE (stmt));
13386 case BIND_EXPR:
13387 return block_may_fallthru (BIND_EXPR_BODY (stmt));
13389 case TRY_CATCH_EXPR:
13390 return try_catch_may_fallthru (stmt);
13392 case TRY_FINALLY_EXPR:
13393 /* The finally clause is always executed after the try clause,
13394 so if it does not fall through, then the try-finally will not
13395 fall through. Otherwise, if the try clause does not fall
13396 through, then when the finally clause falls through it will
13397 resume execution wherever the try clause was going. So the
13398 whole try-finally will only fall through if both the try
13399 clause and the finally clause fall through. */
13400 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
13401 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
13403 case MODIFY_EXPR:
13404 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
13405 stmt = TREE_OPERAND (stmt, 1);
13406 else
13407 return true;
13408 /* FALLTHRU */
13410 case CALL_EXPR:
13411 /* Functions that do not return do not fall through. */
13412 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
13414 case CLEANUP_POINT_EXPR:
13415 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13417 case TARGET_EXPR:
13418 return block_may_fallthru (TREE_OPERAND (stmt, 1));
13420 case ERROR_MARK:
13421 return true;
13423 default:
13424 return lang_hooks.block_may_fallthru (stmt);
13428 /* True if we are using EH to handle cleanups. */
13429 static bool using_eh_for_cleanups_flag = false;
13431 /* This routine is called from front ends to indicate eh should be used for
13432 cleanups. */
13433 void
13434 using_eh_for_cleanups (void)
13436 using_eh_for_cleanups_flag = true;
13439 /* Query whether EH is used for cleanups. */
13440 bool
13441 using_eh_for_cleanups_p (void)
13443 return using_eh_for_cleanups_flag;
13446 /* Wrapper for tree_code_name to ensure that tree code is valid */
13447 const char *
13448 get_tree_code_name (enum tree_code code)
13450 const char *invalid = "<invalid tree code>";
13452 if (code >= MAX_TREE_CODES)
13453 return invalid;
13455 return tree_code_name[code];
13458 /* Drops the TREE_OVERFLOW flag from T. */
13460 tree
13461 drop_tree_overflow (tree t)
13463 gcc_checking_assert (TREE_OVERFLOW (t));
13465 /* For tree codes with a sharing machinery re-build the result. */
13466 if (poly_int_tree_p (t))
13467 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
13469 /* For VECTOR_CST, remove the overflow bits from the encoded elements
13470 and canonicalize the result. */
13471 if (TREE_CODE (t) == VECTOR_CST)
13473 tree_vector_builder builder;
13474 builder.new_unary_operation (TREE_TYPE (t), t, true);
13475 unsigned int count = builder.encoded_nelts ();
13476 for (unsigned int i = 0; i < count; ++i)
13478 tree elt = VECTOR_CST_ELT (t, i);
13479 if (TREE_OVERFLOW (elt))
13480 elt = drop_tree_overflow (elt);
13481 builder.quick_push (elt);
13483 return builder.build ();
13486 /* Otherwise, as all tcc_constants are possibly shared, copy the node
13487 and drop the flag. */
13488 t = copy_node (t);
13489 TREE_OVERFLOW (t) = 0;
13491 /* For constants that contain nested constants, drop the flag
13492 from those as well. */
13493 if (TREE_CODE (t) == COMPLEX_CST)
13495 if (TREE_OVERFLOW (TREE_REALPART (t)))
13496 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
13497 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
13498 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
13501 return t;
13504 /* Given a memory reference expression T, return its base address.
13505 The base address of a memory reference expression is the main
13506 object being referenced. For instance, the base address for
13507 'array[i].fld[j]' is 'array'. You can think of this as stripping
13508 away the offset part from a memory address.
13510 This function calls handled_component_p to strip away all the inner
13511 parts of the memory reference until it reaches the base object. */
13513 tree
13514 get_base_address (tree t)
13516 while (handled_component_p (t))
13517 t = TREE_OPERAND (t, 0);
13519 if ((TREE_CODE (t) == MEM_REF
13520 || TREE_CODE (t) == TARGET_MEM_REF)
13521 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
13522 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
13524 /* ??? Either the alias oracle or all callers need to properly deal
13525 with WITH_SIZE_EXPRs before we can look through those. */
13526 if (TREE_CODE (t) == WITH_SIZE_EXPR)
13527 return NULL_TREE;
13529 return t;
13532 /* Return a tree of sizetype representing the size, in bytes, of the element
13533 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13535 tree
13536 array_ref_element_size (tree exp)
13538 tree aligned_size = TREE_OPERAND (exp, 3);
13539 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
13540 location_t loc = EXPR_LOCATION (exp);
13542 /* If a size was specified in the ARRAY_REF, it's the size measured
13543 in alignment units of the element type. So multiply by that value. */
13544 if (aligned_size)
13546 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13547 sizetype from another type of the same width and signedness. */
13548 if (TREE_TYPE (aligned_size) != sizetype)
13549 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
13550 return size_binop_loc (loc, MULT_EXPR, aligned_size,
13551 size_int (TYPE_ALIGN_UNIT (elmt_type)));
13554 /* Otherwise, take the size from that of the element type. Substitute
13555 any PLACEHOLDER_EXPR that we have. */
13556 else
13557 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
13560 /* Return a tree representing the lower bound of the array mentioned in
13561 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13563 tree
13564 array_ref_low_bound (tree exp)
13566 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13568 /* If a lower bound is specified in EXP, use it. */
13569 if (TREE_OPERAND (exp, 2))
13570 return TREE_OPERAND (exp, 2);
13572 /* Otherwise, if there is a domain type and it has a lower bound, use it,
13573 substituting for a PLACEHOLDER_EXPR as needed. */
13574 if (domain_type && TYPE_MIN_VALUE (domain_type))
13575 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
13577 /* Otherwise, return a zero of the appropriate type. */
13578 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
13581 /* Return a tree representing the upper bound of the array mentioned in
13582 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13584 tree
13585 array_ref_up_bound (tree exp)
13587 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13589 /* If there is a domain type and it has an upper bound, use it, substituting
13590 for a PLACEHOLDER_EXPR as needed. */
13591 if (domain_type && TYPE_MAX_VALUE (domain_type))
13592 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
13594 /* Otherwise fail. */
13595 return NULL_TREE;
13598 /* Returns true if REF is an array reference or a component reference
13599 to an array at the end of a structure.
13600 If this is the case, the array may be allocated larger
13601 than its upper bound implies. */
13603 bool
13604 array_at_struct_end_p (tree ref)
13606 tree atype;
13608 if (TREE_CODE (ref) == ARRAY_REF
13609 || TREE_CODE (ref) == ARRAY_RANGE_REF)
13611 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
13612 ref = TREE_OPERAND (ref, 0);
13614 else if (TREE_CODE (ref) == COMPONENT_REF
13615 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
13616 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
13617 else
13618 return false;
13620 if (TREE_CODE (ref) == STRING_CST)
13621 return false;
13623 tree ref_to_array = ref;
13624 while (handled_component_p (ref))
13626 /* If the reference chain contains a component reference to a
13627 non-union type and there follows another field the reference
13628 is not at the end of a structure. */
13629 if (TREE_CODE (ref) == COMPONENT_REF)
13631 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
13633 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
13634 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
13635 nextf = DECL_CHAIN (nextf);
13636 if (nextf)
13637 return false;
13640 /* If we have a multi-dimensional array we do not consider
13641 a non-innermost dimension as flex array if the whole
13642 multi-dimensional array is at struct end.
13643 Same for an array of aggregates with a trailing array
13644 member. */
13645 else if (TREE_CODE (ref) == ARRAY_REF)
13646 return false;
13647 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
13649 /* If we view an underlying object as sth else then what we
13650 gathered up to now is what we have to rely on. */
13651 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
13652 break;
13653 else
13654 gcc_unreachable ();
13656 ref = TREE_OPERAND (ref, 0);
13659 /* The array now is at struct end. Treat flexible arrays as
13660 always subject to extend, even into just padding constrained by
13661 an underlying decl. */
13662 if (! TYPE_SIZE (atype)
13663 || ! TYPE_DOMAIN (atype)
13664 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13665 return true;
13667 if (TREE_CODE (ref) == MEM_REF
13668 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13669 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13671 /* If the reference is based on a declared entity, the size of the array
13672 is constrained by its given domain. (Do not trust commons PR/69368). */
13673 if (DECL_P (ref)
13674 && !(flag_unconstrained_commons
13675 && VAR_P (ref) && DECL_COMMON (ref))
13676 && DECL_SIZE_UNIT (ref)
13677 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13679 /* Check whether the array domain covers all of the available
13680 padding. */
13681 poly_int64 offset;
13682 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13683 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13684 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13685 return true;
13686 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13687 return true;
13689 /* If at least one extra element fits it is a flexarray. */
13690 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13691 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13692 + 2)
13693 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13694 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13695 return true;
13697 return false;
13700 return true;
13703 /* Return a tree representing the offset, in bytes, of the field referenced
13704 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13706 tree
13707 component_ref_field_offset (tree exp)
13709 tree aligned_offset = TREE_OPERAND (exp, 2);
13710 tree field = TREE_OPERAND (exp, 1);
13711 location_t loc = EXPR_LOCATION (exp);
13713 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13714 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13715 value. */
13716 if (aligned_offset)
13718 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13719 sizetype from another type of the same width and signedness. */
13720 if (TREE_TYPE (aligned_offset) != sizetype)
13721 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13722 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13723 size_int (DECL_OFFSET_ALIGN (field)
13724 / BITS_PER_UNIT));
13727 /* Otherwise, take the offset from that of the field. Substitute
13728 any PLACEHOLDER_EXPR that we have. */
13729 else
13730 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13733 /* Return the machine mode of T. For vectors, returns the mode of the
13734 inner type. The main use case is to feed the result to HONOR_NANS,
13735 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13737 machine_mode
13738 element_mode (const_tree t)
13740 if (!TYPE_P (t))
13741 t = TREE_TYPE (t);
13742 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13743 t = TREE_TYPE (t);
13744 return TYPE_MODE (t);
13747 /* Vector types need to re-check the target flags each time we report
13748 the machine mode. We need to do this because attribute target can
13749 change the result of vector_mode_supported_p and have_regs_of_mode
13750 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
13751 change on a per-function basis. */
13752 /* ??? Possibly a better solution is to run through all the types
13753 referenced by a function and re-compute the TYPE_MODE once, rather
13754 than make the TYPE_MODE macro call a function. */
13756 machine_mode
13757 vector_type_mode (const_tree t)
13759 machine_mode mode;
13761 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
13763 mode = t->type_common.mode;
13764 if (VECTOR_MODE_P (mode)
13765 && (!targetm.vector_mode_supported_p (mode)
13766 || !have_regs_of_mode[mode]))
13768 scalar_int_mode innermode;
13770 /* For integers, try mapping it to a same-sized scalar mode. */
13771 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
13773 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
13774 * GET_MODE_BITSIZE (innermode));
13775 scalar_int_mode mode;
13776 if (int_mode_for_size (size, 0).exists (&mode)
13777 && have_regs_of_mode[mode])
13778 return mode;
13781 return BLKmode;
13784 return mode;
13787 /* Verify that basic properties of T match TV and thus T can be a variant of
13788 TV. TV should be the more specified variant (i.e. the main variant). */
13790 static bool
13791 verify_type_variant (const_tree t, tree tv)
13793 /* Type variant can differ by:
13795 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13796 ENCODE_QUAL_ADDR_SPACE.
13797 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13798 in this case some values may not be set in the variant types
13799 (see TYPE_COMPLETE_P checks).
13800 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13801 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13802 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13803 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13804 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13805 this is necessary to make it possible to merge types form different TUs
13806 - arrays, pointers and references may have TREE_TYPE that is a variant
13807 of TREE_TYPE of their main variants.
13808 - aggregates may have new TYPE_FIELDS list that list variants of
13809 the main variant TYPE_FIELDS.
13810 - vector types may differ by TYPE_VECTOR_OPAQUE
13813 /* Convenience macro for matching individual fields. */
13814 #define verify_variant_match(flag) \
13815 do { \
13816 if (flag (tv) != flag (t)) \
13818 error ("type variant differs by %s", #flag); \
13819 debug_tree (tv); \
13820 return false; \
13822 } while (false)
13824 /* tree_base checks. */
13826 verify_variant_match (TREE_CODE);
13827 /* FIXME: Ada builds non-artificial variants of artificial types. */
13828 if (TYPE_ARTIFICIAL (tv) && 0)
13829 verify_variant_match (TYPE_ARTIFICIAL);
13830 if (POINTER_TYPE_P (tv))
13831 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13832 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13833 verify_variant_match (TYPE_UNSIGNED);
13834 verify_variant_match (TYPE_PACKED);
13835 if (TREE_CODE (t) == REFERENCE_TYPE)
13836 verify_variant_match (TYPE_REF_IS_RVALUE);
13837 if (AGGREGATE_TYPE_P (t))
13838 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13839 else
13840 verify_variant_match (TYPE_SATURATING);
13841 /* FIXME: This check trigger during libstdc++ build. */
13842 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13843 verify_variant_match (TYPE_FINAL_P);
13845 /* tree_type_common checks. */
13847 if (COMPLETE_TYPE_P (t))
13849 verify_variant_match (TYPE_MODE);
13850 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
13851 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
13852 verify_variant_match (TYPE_SIZE);
13853 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
13854 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
13855 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
13857 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
13858 TYPE_SIZE_UNIT (tv), 0));
13859 error ("type variant has different %<TYPE_SIZE_UNIT%>");
13860 debug_tree (tv);
13861 error ("type variant%'s %<TYPE_SIZE_UNIT%>");
13862 debug_tree (TYPE_SIZE_UNIT (tv));
13863 error ("type%'s %<TYPE_SIZE_UNIT%>");
13864 debug_tree (TYPE_SIZE_UNIT (t));
13865 return false;
13868 verify_variant_match (TYPE_PRECISION);
13869 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
13870 if (RECORD_OR_UNION_TYPE_P (t))
13871 verify_variant_match (TYPE_TRANSPARENT_AGGR);
13872 else if (TREE_CODE (t) == ARRAY_TYPE)
13873 verify_variant_match (TYPE_NONALIASED_COMPONENT);
13874 /* During LTO we merge variant lists from diferent translation units
13875 that may differ BY TYPE_CONTEXT that in turn may point
13876 to TRANSLATION_UNIT_DECL.
13877 Ada also builds variants of types with different TYPE_CONTEXT. */
13878 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
13879 verify_variant_match (TYPE_CONTEXT);
13880 verify_variant_match (TYPE_STRING_FLAG);
13881 if (TYPE_ALIAS_SET_KNOWN_P (t))
13883 error ("type variant with %<TYPE_ALIAS_SET_KNOWN_P%>");
13884 debug_tree (tv);
13885 return false;
13888 /* tree_type_non_common checks. */
13890 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13891 and dangle the pointer from time to time. */
13892 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
13893 && (in_lto_p || !TYPE_VFIELD (tv)
13894 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
13896 error ("type variant has different %<TYPE_VFIELD%>");
13897 debug_tree (tv);
13898 return false;
13900 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
13901 || TREE_CODE (t) == INTEGER_TYPE
13902 || TREE_CODE (t) == BOOLEAN_TYPE
13903 || TREE_CODE (t) == REAL_TYPE
13904 || TREE_CODE (t) == FIXED_POINT_TYPE)
13906 verify_variant_match (TYPE_MAX_VALUE);
13907 verify_variant_match (TYPE_MIN_VALUE);
13909 if (TREE_CODE (t) == METHOD_TYPE)
13910 verify_variant_match (TYPE_METHOD_BASETYPE);
13911 if (TREE_CODE (t) == OFFSET_TYPE)
13912 verify_variant_match (TYPE_OFFSET_BASETYPE);
13913 if (TREE_CODE (t) == ARRAY_TYPE)
13914 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
13915 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
13916 or even type's main variant. This is needed to make bootstrap pass
13917 and the bug seems new in GCC 5.
13918 C++ FE should be updated to make this consistent and we should check
13919 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
13920 is a match with main variant.
13922 Also disable the check for Java for now because of parser hack that builds
13923 first an dummy BINFO and then sometimes replace it by real BINFO in some
13924 of the copies. */
13925 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
13926 && TYPE_BINFO (t) != TYPE_BINFO (tv)
13927 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
13928 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
13929 at LTO time only. */
13930 && (in_lto_p && odr_type_p (t)))
13932 error ("type variant has different %<TYPE_BINFO%>");
13933 debug_tree (tv);
13934 error ("type variant%'s %<TYPE_BINFO%>");
13935 debug_tree (TYPE_BINFO (tv));
13936 error ("type%'s %<TYPE_BINFO%>");
13937 debug_tree (TYPE_BINFO (t));
13938 return false;
13941 /* Check various uses of TYPE_VALUES_RAW. */
13942 if (TREE_CODE (t) == ENUMERAL_TYPE
13943 && TYPE_VALUES (t))
13944 verify_variant_match (TYPE_VALUES);
13945 else if (TREE_CODE (t) == ARRAY_TYPE)
13946 verify_variant_match (TYPE_DOMAIN);
13947 /* Permit incomplete variants of complete type. While FEs may complete
13948 all variants, this does not happen for C++ templates in all cases. */
13949 else if (RECORD_OR_UNION_TYPE_P (t)
13950 && COMPLETE_TYPE_P (t)
13951 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
13953 tree f1, f2;
13955 /* Fortran builds qualified variants as new records with items of
13956 qualified type. Verify that they looks same. */
13957 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
13958 f1 && f2;
13959 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13960 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
13961 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
13962 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
13963 /* FIXME: gfc_nonrestricted_type builds all types as variants
13964 with exception of pointer types. It deeply copies the type
13965 which means that we may end up with a variant type
13966 referring non-variant pointer. We may change it to
13967 produce types as variants, too, like
13968 objc_get_protocol_qualified_type does. */
13969 && !POINTER_TYPE_P (TREE_TYPE (f1)))
13970 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
13971 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
13972 break;
13973 if (f1 || f2)
13975 error ("type variant has different %<TYPE_FIELDS%>");
13976 debug_tree (tv);
13977 error ("first mismatch is field");
13978 debug_tree (f1);
13979 error ("and field");
13980 debug_tree (f2);
13981 return false;
13984 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
13985 verify_variant_match (TYPE_ARG_TYPES);
13986 /* For C++ the qualified variant of array type is really an array type
13987 of qualified TREE_TYPE.
13988 objc builds variants of pointer where pointer to type is a variant, too
13989 in objc_get_protocol_qualified_type. */
13990 if (TREE_TYPE (t) != TREE_TYPE (tv)
13991 && ((TREE_CODE (t) != ARRAY_TYPE
13992 && !POINTER_TYPE_P (t))
13993 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
13994 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13996 error ("type variant has different %<TREE_TYPE%>");
13997 debug_tree (tv);
13998 error ("type variant%'s %<TREE_TYPE%>");
13999 debug_tree (TREE_TYPE (tv));
14000 error ("type%'s %<TREE_TYPE%>");
14001 debug_tree (TREE_TYPE (t));
14002 return false;
14004 if (type_with_alias_set_p (t)
14005 && !gimple_canonical_types_compatible_p (t, tv, false))
14007 error ("type is not compatible with its variant");
14008 debug_tree (tv);
14009 error ("type variant%'s %<TREE_TYPE%>");
14010 debug_tree (TREE_TYPE (tv));
14011 error ("type%'s %<TREE_TYPE%>");
14012 debug_tree (TREE_TYPE (t));
14013 return false;
14015 return true;
14016 #undef verify_variant_match
14020 /* The TYPE_CANONICAL merging machinery. It should closely resemble
14021 the middle-end types_compatible_p function. It needs to avoid
14022 claiming types are different for types that should be treated
14023 the same with respect to TBAA. Canonical types are also used
14024 for IL consistency checks via the useless_type_conversion_p
14025 predicate which does not handle all type kinds itself but falls
14026 back to pointer-comparison of TYPE_CANONICAL for aggregates
14027 for example. */
14029 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
14030 type calculation because we need to allow inter-operability between signed
14031 and unsigned variants. */
14033 bool
14034 type_with_interoperable_signedness (const_tree type)
14036 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
14037 signed char and unsigned char. Similarly fortran FE builds
14038 C_SIZE_T as signed type, while C defines it unsigned. */
14040 return tree_code_for_canonical_type_merging (TREE_CODE (type))
14041 == INTEGER_TYPE
14042 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
14043 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
14046 /* Return true iff T1 and T2 are structurally identical for what
14047 TBAA is concerned.
14048 This function is used both by lto.c canonical type merging and by the
14049 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
14050 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
14051 only for LTO because only in these cases TYPE_CANONICAL equivalence
14052 correspond to one defined by gimple_canonical_types_compatible_p. */
14054 bool
14055 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
14056 bool trust_type_canonical)
14058 /* Type variants should be same as the main variant. When not doing sanity
14059 checking to verify this fact, go to main variants and save some work. */
14060 if (trust_type_canonical)
14062 t1 = TYPE_MAIN_VARIANT (t1);
14063 t2 = TYPE_MAIN_VARIANT (t2);
14066 /* Check first for the obvious case of pointer identity. */
14067 if (t1 == t2)
14068 return true;
14070 /* Check that we have two types to compare. */
14071 if (t1 == NULL_TREE || t2 == NULL_TREE)
14072 return false;
14074 /* We consider complete types always compatible with incomplete type.
14075 This does not make sense for canonical type calculation and thus we
14076 need to ensure that we are never called on it.
14078 FIXME: For more correctness the function probably should have three modes
14079 1) mode assuming that types are complete mathcing their structure
14080 2) mode allowing incomplete types but producing equivalence classes
14081 and thus ignoring all info from complete types
14082 3) mode allowing incomplete types to match complete but checking
14083 compatibility between complete types.
14085 1 and 2 can be used for canonical type calculation. 3 is the real
14086 definition of type compatibility that can be used i.e. for warnings during
14087 declaration merging. */
14089 gcc_assert (!trust_type_canonical
14090 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
14091 /* If the types have been previously registered and found equal
14092 they still are. */
14094 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
14095 && trust_type_canonical)
14097 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
14098 they are always NULL, but they are set to non-NULL for types
14099 constructed by build_pointer_type and variants. In this case the
14100 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
14101 all pointers are considered equal. Be sure to not return false
14102 negatives. */
14103 gcc_checking_assert (canonical_type_used_p (t1)
14104 && canonical_type_used_p (t2));
14105 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
14108 /* Can't be the same type if the types don't have the same code. */
14109 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
14110 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
14111 return false;
14113 /* Qualifiers do not matter for canonical type comparison purposes. */
14115 /* Void types and nullptr types are always the same. */
14116 if (TREE_CODE (t1) == VOID_TYPE
14117 || TREE_CODE (t1) == NULLPTR_TYPE)
14118 return true;
14120 /* Can't be the same type if they have different mode. */
14121 if (TYPE_MODE (t1) != TYPE_MODE (t2))
14122 return false;
14124 /* Non-aggregate types can be handled cheaply. */
14125 if (INTEGRAL_TYPE_P (t1)
14126 || SCALAR_FLOAT_TYPE_P (t1)
14127 || FIXED_POINT_TYPE_P (t1)
14128 || TREE_CODE (t1) == VECTOR_TYPE
14129 || TREE_CODE (t1) == COMPLEX_TYPE
14130 || TREE_CODE (t1) == OFFSET_TYPE
14131 || POINTER_TYPE_P (t1))
14133 /* Can't be the same type if they have different recision. */
14134 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
14135 return false;
14137 /* In some cases the signed and unsigned types are required to be
14138 inter-operable. */
14139 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
14140 && !type_with_interoperable_signedness (t1))
14141 return false;
14143 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
14144 interoperable with "signed char". Unless all frontends are revisited
14145 to agree on these types, we must ignore the flag completely. */
14147 /* Fortran standard define C_PTR type that is compatible with every
14148 C pointer. For this reason we need to glob all pointers into one.
14149 Still pointers in different address spaces are not compatible. */
14150 if (POINTER_TYPE_P (t1))
14152 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
14153 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
14154 return false;
14157 /* Tail-recurse to components. */
14158 if (TREE_CODE (t1) == VECTOR_TYPE
14159 || TREE_CODE (t1) == COMPLEX_TYPE)
14160 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
14161 TREE_TYPE (t2),
14162 trust_type_canonical);
14164 return true;
14167 /* Do type-specific comparisons. */
14168 switch (TREE_CODE (t1))
14170 case ARRAY_TYPE:
14171 /* Array types are the same if the element types are the same and
14172 the number of elements are the same. */
14173 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14174 trust_type_canonical)
14175 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
14176 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
14177 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
14178 return false;
14179 else
14181 tree i1 = TYPE_DOMAIN (t1);
14182 tree i2 = TYPE_DOMAIN (t2);
14184 /* For an incomplete external array, the type domain can be
14185 NULL_TREE. Check this condition also. */
14186 if (i1 == NULL_TREE && i2 == NULL_TREE)
14187 return true;
14188 else if (i1 == NULL_TREE || i2 == NULL_TREE)
14189 return false;
14190 else
14192 tree min1 = TYPE_MIN_VALUE (i1);
14193 tree min2 = TYPE_MIN_VALUE (i2);
14194 tree max1 = TYPE_MAX_VALUE (i1);
14195 tree max2 = TYPE_MAX_VALUE (i2);
14197 /* The minimum/maximum values have to be the same. */
14198 if ((min1 == min2
14199 || (min1 && min2
14200 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
14201 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
14202 || operand_equal_p (min1, min2, 0))))
14203 && (max1 == max2
14204 || (max1 && max2
14205 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
14206 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
14207 || operand_equal_p (max1, max2, 0)))))
14208 return true;
14209 else
14210 return false;
14214 case METHOD_TYPE:
14215 case FUNCTION_TYPE:
14216 /* Function types are the same if the return type and arguments types
14217 are the same. */
14218 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14219 trust_type_canonical))
14220 return false;
14222 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
14223 return true;
14224 else
14226 tree parms1, parms2;
14228 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
14229 parms1 && parms2;
14230 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
14232 if (!gimple_canonical_types_compatible_p
14233 (TREE_VALUE (parms1), TREE_VALUE (parms2),
14234 trust_type_canonical))
14235 return false;
14238 if (parms1 || parms2)
14239 return false;
14241 return true;
14244 case RECORD_TYPE:
14245 case UNION_TYPE:
14246 case QUAL_UNION_TYPE:
14248 tree f1, f2;
14250 /* Don't try to compare variants of an incomplete type, before
14251 TYPE_FIELDS has been copied around. */
14252 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
14253 return true;
14256 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
14257 return false;
14259 /* For aggregate types, all the fields must be the same. */
14260 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
14261 f1 || f2;
14262 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14264 /* Skip non-fields and zero-sized fields. */
14265 while (f1 && (TREE_CODE (f1) != FIELD_DECL
14266 || (DECL_SIZE (f1)
14267 && integer_zerop (DECL_SIZE (f1)))))
14268 f1 = TREE_CHAIN (f1);
14269 while (f2 && (TREE_CODE (f2) != FIELD_DECL
14270 || (DECL_SIZE (f2)
14271 && integer_zerop (DECL_SIZE (f2)))))
14272 f2 = TREE_CHAIN (f2);
14273 if (!f1 || !f2)
14274 break;
14275 /* The fields must have the same name, offset and type. */
14276 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
14277 || !gimple_compare_field_offset (f1, f2)
14278 || !gimple_canonical_types_compatible_p
14279 (TREE_TYPE (f1), TREE_TYPE (f2),
14280 trust_type_canonical))
14281 return false;
14284 /* If one aggregate has more fields than the other, they
14285 are not the same. */
14286 if (f1 || f2)
14287 return false;
14289 return true;
14292 default:
14293 /* Consider all types with language specific trees in them mutually
14294 compatible. This is executed only from verify_type and false
14295 positives can be tolerated. */
14296 gcc_assert (!in_lto_p);
14297 return true;
14301 /* Verify type T. */
14303 void
14304 verify_type (const_tree t)
14306 bool error_found = false;
14307 tree mv = TYPE_MAIN_VARIANT (t);
14308 if (!mv)
14310 error ("main variant is not defined");
14311 error_found = true;
14313 else if (mv != TYPE_MAIN_VARIANT (mv))
14315 error ("%<TYPE_MAIN_VARIANT%> has different %<TYPE_MAIN_VARIANT%>");
14316 debug_tree (mv);
14317 error_found = true;
14319 else if (t != mv && !verify_type_variant (t, mv))
14320 error_found = true;
14322 tree ct = TYPE_CANONICAL (t);
14323 if (!ct)
14325 else if (TYPE_CANONICAL (t) != ct)
14327 error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
14328 debug_tree (ct);
14329 error_found = true;
14331 /* Method and function types cannot be used to address memory and thus
14332 TYPE_CANONICAL really matters only for determining useless conversions.
14334 FIXME: C++ FE produce declarations of builtin functions that are not
14335 compatible with main variants. */
14336 else if (TREE_CODE (t) == FUNCTION_TYPE)
14338 else if (t != ct
14339 /* FIXME: gimple_canonical_types_compatible_p cannot compare types
14340 with variably sized arrays because their sizes possibly
14341 gimplified to different variables. */
14342 && !variably_modified_type_p (ct, NULL)
14343 && !gimple_canonical_types_compatible_p (t, ct, false)
14344 && COMPLETE_TYPE_P (t))
14346 error ("%<TYPE_CANONICAL%> is not compatible");
14347 debug_tree (ct);
14348 error_found = true;
14351 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
14352 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
14354 error ("%<TYPE_MODE%> of %<TYPE_CANONICAL%> is not compatible");
14355 debug_tree (ct);
14356 error_found = true;
14358 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
14360 error ("%<TYPE_CANONICAL%> of main variant is not main variant");
14361 debug_tree (ct);
14362 debug_tree (TYPE_MAIN_VARIANT (ct));
14363 error_found = true;
14367 /* Check various uses of TYPE_MIN_VALUE_RAW. */
14368 if (RECORD_OR_UNION_TYPE_P (t))
14370 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14371 and danagle the pointer from time to time. */
14372 if (TYPE_VFIELD (t)
14373 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
14374 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
14376 error ("%<TYPE_VFIELD%> is not %<FIELD_DECL%> nor %<TREE_LIST%>");
14377 debug_tree (TYPE_VFIELD (t));
14378 error_found = true;
14381 else if (TREE_CODE (t) == POINTER_TYPE)
14383 if (TYPE_NEXT_PTR_TO (t)
14384 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
14386 error ("%<TYPE_NEXT_PTR_TO%> is not %<POINTER_TYPE%>");
14387 debug_tree (TYPE_NEXT_PTR_TO (t));
14388 error_found = true;
14391 else if (TREE_CODE (t) == REFERENCE_TYPE)
14393 if (TYPE_NEXT_REF_TO (t)
14394 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
14396 error ("%<TYPE_NEXT_REF_TO%> is not %<REFERENCE_TYPE%>");
14397 debug_tree (TYPE_NEXT_REF_TO (t));
14398 error_found = true;
14401 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14402 || TREE_CODE (t) == FIXED_POINT_TYPE)
14404 /* FIXME: The following check should pass:
14405 useless_type_conversion_p (const_cast <tree> (t),
14406 TREE_TYPE (TYPE_MIN_VALUE (t))
14407 but does not for C sizetypes in LTO. */
14410 /* Check various uses of TYPE_MAXVAL_RAW. */
14411 if (RECORD_OR_UNION_TYPE_P (t))
14413 if (!TYPE_BINFO (t))
14415 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
14417 error ("%<TYPE_BINFO%> is not %<TREE_BINFO%>");
14418 debug_tree (TYPE_BINFO (t));
14419 error_found = true;
14421 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
14423 error ("%<TYPE_BINFO%> type is not %<TYPE_MAIN_VARIANT%>");
14424 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
14425 error_found = true;
14428 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14430 if (TYPE_METHOD_BASETYPE (t)
14431 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
14432 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
14434 error ("%<TYPE_METHOD_BASETYPE%> is not record nor union");
14435 debug_tree (TYPE_METHOD_BASETYPE (t));
14436 error_found = true;
14439 else if (TREE_CODE (t) == OFFSET_TYPE)
14441 if (TYPE_OFFSET_BASETYPE (t)
14442 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
14443 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
14445 error ("%<TYPE_OFFSET_BASETYPE%> is not record nor union");
14446 debug_tree (TYPE_OFFSET_BASETYPE (t));
14447 error_found = true;
14450 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14451 || TREE_CODE (t) == FIXED_POINT_TYPE)
14453 /* FIXME: The following check should pass:
14454 useless_type_conversion_p (const_cast <tree> (t),
14455 TREE_TYPE (TYPE_MAX_VALUE (t))
14456 but does not for C sizetypes in LTO. */
14458 else if (TREE_CODE (t) == ARRAY_TYPE)
14460 if (TYPE_ARRAY_MAX_SIZE (t)
14461 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
14463 error ("%<TYPE_ARRAY_MAX_SIZE%> not %<INTEGER_CST%>");
14464 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
14465 error_found = true;
14468 else if (TYPE_MAX_VALUE_RAW (t))
14470 error ("%<TYPE_MAX_VALUE_RAW%> non-NULL");
14471 debug_tree (TYPE_MAX_VALUE_RAW (t));
14472 error_found = true;
14475 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
14477 error ("%<TYPE_LANG_SLOT_1 (binfo)%> field is non-NULL");
14478 debug_tree (TYPE_LANG_SLOT_1 (t));
14479 error_found = true;
14482 /* Check various uses of TYPE_VALUES_RAW. */
14483 if (TREE_CODE (t) == ENUMERAL_TYPE)
14484 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
14486 tree value = TREE_VALUE (l);
14487 tree name = TREE_PURPOSE (l);
14489 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
14490 CONST_DECL of ENUMERAL TYPE. */
14491 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
14493 error ("enum value is not %<CONST_DECL%> or %<INTEGER_CST%>");
14494 debug_tree (value);
14495 debug_tree (name);
14496 error_found = true;
14498 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
14499 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
14501 error ("enum value type is not %<INTEGER_TYPE%> nor convertible "
14502 "to the enum");
14503 debug_tree (value);
14504 debug_tree (name);
14505 error_found = true;
14507 if (TREE_CODE (name) != IDENTIFIER_NODE)
14509 error ("enum value name is not %<IDENTIFIER_NODE%>");
14510 debug_tree (value);
14511 debug_tree (name);
14512 error_found = true;
14515 else if (TREE_CODE (t) == ARRAY_TYPE)
14517 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
14519 error ("array %<TYPE_DOMAIN%> is not integer type");
14520 debug_tree (TYPE_DOMAIN (t));
14521 error_found = true;
14524 else if (RECORD_OR_UNION_TYPE_P (t))
14526 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
14528 error ("%<TYPE_FIELDS%> defined in incomplete type");
14529 error_found = true;
14531 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
14533 /* TODO: verify properties of decls. */
14534 if (TREE_CODE (fld) == FIELD_DECL)
14536 else if (TREE_CODE (fld) == TYPE_DECL)
14538 else if (TREE_CODE (fld) == CONST_DECL)
14540 else if (VAR_P (fld))
14542 else if (TREE_CODE (fld) == TEMPLATE_DECL)
14544 else if (TREE_CODE (fld) == USING_DECL)
14546 else if (TREE_CODE (fld) == FUNCTION_DECL)
14548 else
14550 error ("wrong tree in %<TYPE_FIELDS%> list");
14551 debug_tree (fld);
14552 error_found = true;
14556 else if (TREE_CODE (t) == INTEGER_TYPE
14557 || TREE_CODE (t) == BOOLEAN_TYPE
14558 || TREE_CODE (t) == OFFSET_TYPE
14559 || TREE_CODE (t) == REFERENCE_TYPE
14560 || TREE_CODE (t) == NULLPTR_TYPE
14561 || TREE_CODE (t) == POINTER_TYPE)
14563 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
14565 error ("%<TYPE_CACHED_VALUES_P%> is %i while %<TYPE_CACHED_VALUES%> "
14566 "is %p",
14567 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
14568 error_found = true;
14570 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
14572 error ("%<TYPE_CACHED_VALUES%> is not %<TREE_VEC%>");
14573 debug_tree (TYPE_CACHED_VALUES (t));
14574 error_found = true;
14576 /* Verify just enough of cache to ensure that no one copied it to new type.
14577 All copying should go by copy_node that should clear it. */
14578 else if (TYPE_CACHED_VALUES_P (t))
14580 int i;
14581 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
14582 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
14583 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
14585 error ("wrong %<TYPE_CACHED_VALUES%> entry");
14586 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
14587 error_found = true;
14588 break;
14592 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14593 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
14595 /* C++ FE uses TREE_PURPOSE to store initial values. */
14596 if (TREE_PURPOSE (l) && in_lto_p)
14598 error ("%<TREE_PURPOSE%> is non-NULL in %<TYPE_ARG_TYPES%> list");
14599 debug_tree (l);
14600 error_found = true;
14602 if (!TYPE_P (TREE_VALUE (l)))
14604 error ("wrong entry in %<TYPE_ARG_TYPES%> list");
14605 debug_tree (l);
14606 error_found = true;
14609 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
14611 error ("%<TYPE_VALUES_RAW%> field is non-NULL");
14612 debug_tree (TYPE_VALUES_RAW (t));
14613 error_found = true;
14615 if (TREE_CODE (t) != INTEGER_TYPE
14616 && TREE_CODE (t) != BOOLEAN_TYPE
14617 && TREE_CODE (t) != OFFSET_TYPE
14618 && TREE_CODE (t) != REFERENCE_TYPE
14619 && TREE_CODE (t) != NULLPTR_TYPE
14620 && TREE_CODE (t) != POINTER_TYPE
14621 && TYPE_CACHED_VALUES_P (t))
14623 error ("%<TYPE_CACHED_VALUES_P%> is set while it should not be");
14624 error_found = true;
14626 if (TYPE_STRING_FLAG (t)
14627 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
14629 error ("%<TYPE_STRING_FLAG%> is set on wrong type code");
14630 error_found = true;
14633 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
14634 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
14635 of a type. */
14636 if (TREE_CODE (t) == METHOD_TYPE
14637 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
14639 error ("%<TYPE_METHOD_BASETYPE%> is not main variant");
14640 error_found = true;
14643 if (error_found)
14645 debug_tree (const_cast <tree> (t));
14646 internal_error ("%qs failed", __func__);
14651 /* Return 1 if ARG interpreted as signed in its precision is known to be
14652 always positive or 2 if ARG is known to be always negative, or 3 if
14653 ARG may be positive or negative. */
14656 get_range_pos_neg (tree arg)
14658 if (arg == error_mark_node)
14659 return 3;
14661 int prec = TYPE_PRECISION (TREE_TYPE (arg));
14662 int cnt = 0;
14663 if (TREE_CODE (arg) == INTEGER_CST)
14665 wide_int w = wi::sext (wi::to_wide (arg), prec);
14666 if (wi::neg_p (w))
14667 return 2;
14668 else
14669 return 1;
14671 while (CONVERT_EXPR_P (arg)
14672 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14673 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14675 arg = TREE_OPERAND (arg, 0);
14676 /* Narrower value zero extended into wider type
14677 will always result in positive values. */
14678 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14679 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14680 return 1;
14681 prec = TYPE_PRECISION (TREE_TYPE (arg));
14682 if (++cnt > 30)
14683 return 3;
14686 if (TREE_CODE (arg) != SSA_NAME)
14687 return 3;
14688 wide_int arg_min, arg_max;
14689 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14691 gimple *g = SSA_NAME_DEF_STMT (arg);
14692 if (is_gimple_assign (g)
14693 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14695 tree t = gimple_assign_rhs1 (g);
14696 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14697 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14699 if (TYPE_UNSIGNED (TREE_TYPE (t))
14700 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14701 return 1;
14702 prec = TYPE_PRECISION (TREE_TYPE (t));
14703 arg = t;
14704 if (++cnt > 30)
14705 return 3;
14706 continue;
14709 return 3;
14711 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14713 /* For unsigned values, the "positive" range comes
14714 below the "negative" range. */
14715 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14716 return 1;
14717 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14718 return 2;
14720 else
14722 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14723 return 1;
14724 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14725 return 2;
14727 return 3;
14733 /* Return true if ARG is marked with the nonnull attribute in the
14734 current function signature. */
14736 bool
14737 nonnull_arg_p (const_tree arg)
14739 tree t, attrs, fntype;
14740 unsigned HOST_WIDE_INT arg_num;
14742 gcc_assert (TREE_CODE (arg) == PARM_DECL
14743 && (POINTER_TYPE_P (TREE_TYPE (arg))
14744 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
14746 /* The static chain decl is always non null. */
14747 if (arg == cfun->static_chain_decl)
14748 return true;
14750 /* THIS argument of method is always non-NULL. */
14751 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
14752 && arg == DECL_ARGUMENTS (cfun->decl)
14753 && flag_delete_null_pointer_checks)
14754 return true;
14756 /* Values passed by reference are always non-NULL. */
14757 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
14758 && flag_delete_null_pointer_checks)
14759 return true;
14761 fntype = TREE_TYPE (cfun->decl);
14762 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
14764 attrs = lookup_attribute ("nonnull", attrs);
14766 /* If "nonnull" wasn't specified, we know nothing about the argument. */
14767 if (attrs == NULL_TREE)
14768 return false;
14770 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
14771 if (TREE_VALUE (attrs) == NULL_TREE)
14772 return true;
14774 /* Get the position number for ARG in the function signature. */
14775 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
14777 t = DECL_CHAIN (t), arg_num++)
14779 if (t == arg)
14780 break;
14783 gcc_assert (t == arg);
14785 /* Now see if ARG_NUM is mentioned in the nonnull list. */
14786 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
14788 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
14789 return true;
14793 return false;
14796 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14797 information. */
14799 location_t
14800 set_block (location_t loc, tree block)
14802 location_t pure_loc = get_pure_location (loc);
14803 source_range src_range = get_range_from_loc (line_table, loc);
14804 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14807 location_t
14808 set_source_range (tree expr, location_t start, location_t finish)
14810 source_range src_range;
14811 src_range.m_start = start;
14812 src_range.m_finish = finish;
14813 return set_source_range (expr, src_range);
14816 location_t
14817 set_source_range (tree expr, source_range src_range)
14819 if (!EXPR_P (expr))
14820 return UNKNOWN_LOCATION;
14822 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14823 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14824 pure_loc,
14825 src_range,
14826 NULL);
14827 SET_EXPR_LOCATION (expr, adhoc);
14828 return adhoc;
14831 /* Return EXPR, potentially wrapped with a node expression LOC,
14832 if !CAN_HAVE_LOCATION_P (expr).
14834 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
14835 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
14837 Wrapper nodes can be identified using location_wrapper_p. */
14839 tree
14840 maybe_wrap_with_location (tree expr, location_t loc)
14842 if (expr == NULL)
14843 return NULL;
14844 if (loc == UNKNOWN_LOCATION)
14845 return expr;
14846 if (CAN_HAVE_LOCATION_P (expr))
14847 return expr;
14848 /* We should only be adding wrappers for constants and for decls,
14849 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
14850 gcc_assert (CONSTANT_CLASS_P (expr)
14851 || DECL_P (expr)
14852 || EXCEPTIONAL_CLASS_P (expr));
14854 /* For now, don't add wrappers to exceptional tree nodes, to minimize
14855 any impact of the wrapper nodes. */
14856 if (EXCEPTIONAL_CLASS_P (expr))
14857 return expr;
14859 /* If any auto_suppress_location_wrappers are active, don't create
14860 wrappers. */
14861 if (suppress_location_wrappers > 0)
14862 return expr;
14864 tree_code code
14865 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
14866 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
14867 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
14868 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
14869 /* Mark this node as being a wrapper. */
14870 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
14871 return wrapper;
14874 int suppress_location_wrappers;
14876 /* Return the name of combined function FN, for debugging purposes. */
14878 const char *
14879 combined_fn_name (combined_fn fn)
14881 if (builtin_fn_p (fn))
14883 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
14884 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
14886 else
14887 return internal_fn_name (as_internal_fn (fn));
14890 /* Return a bitmap with a bit set corresponding to each argument in
14891 a function call type FNTYPE declared with attribute nonnull,
14892 or null if none of the function's argument are nonnull. The caller
14893 must free the bitmap. */
14895 bitmap
14896 get_nonnull_args (const_tree fntype)
14898 if (fntype == NULL_TREE)
14899 return NULL;
14901 tree attrs = TYPE_ATTRIBUTES (fntype);
14902 if (!attrs)
14903 return NULL;
14905 bitmap argmap = NULL;
14907 /* A function declaration can specify multiple attribute nonnull,
14908 each with zero or more arguments. The loop below creates a bitmap
14909 representing a union of all the arguments. An empty (but non-null)
14910 bitmap means that all arguments have been declaraed nonnull. */
14911 for ( ; attrs; attrs = TREE_CHAIN (attrs))
14913 attrs = lookup_attribute ("nonnull", attrs);
14914 if (!attrs)
14915 break;
14917 if (!argmap)
14918 argmap = BITMAP_ALLOC (NULL);
14920 if (!TREE_VALUE (attrs))
14922 /* Clear the bitmap in case a previous attribute nonnull
14923 set it and this one overrides it for all arguments. */
14924 bitmap_clear (argmap);
14925 return argmap;
14928 /* Iterate over the indices of the format arguments declared nonnull
14929 and set a bit for each. */
14930 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
14932 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
14933 bitmap_set_bit (argmap, val);
14937 return argmap;
14940 /* Returns true if TYPE is a type where it and all of its subobjects
14941 (recursively) are of structure, union, or array type. */
14943 static bool
14944 default_is_empty_type (tree type)
14946 if (RECORD_OR_UNION_TYPE_P (type))
14948 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
14949 if (TREE_CODE (field) == FIELD_DECL
14950 && !DECL_PADDING_P (field)
14951 && !default_is_empty_type (TREE_TYPE (field)))
14952 return false;
14953 return true;
14955 else if (TREE_CODE (type) == ARRAY_TYPE)
14956 return (integer_minus_onep (array_type_nelts (type))
14957 || TYPE_DOMAIN (type) == NULL_TREE
14958 || default_is_empty_type (TREE_TYPE (type)));
14959 return false;
14962 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
14963 that shouldn't be passed via stack. */
14965 bool
14966 default_is_empty_record (const_tree type)
14968 if (!abi_version_at_least (12))
14969 return false;
14971 if (type == error_mark_node)
14972 return false;
14974 if (TREE_ADDRESSABLE (type))
14975 return false;
14977 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
14980 /* Like int_size_in_bytes, but handle empty records specially. */
14982 HOST_WIDE_INT
14983 arg_int_size_in_bytes (const_tree type)
14985 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
14988 /* Like size_in_bytes, but handle empty records specially. */
14990 tree
14991 arg_size_in_bytes (const_tree type)
14993 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
14996 /* Return true if an expression with CODE has to have the same result type as
14997 its first operand. */
14999 bool
15000 expr_type_first_operand_type_p (tree_code code)
15002 switch (code)
15004 case NEGATE_EXPR:
15005 case ABS_EXPR:
15006 case BIT_NOT_EXPR:
15007 case PAREN_EXPR:
15008 case CONJ_EXPR:
15010 case PLUS_EXPR:
15011 case MINUS_EXPR:
15012 case MULT_EXPR:
15013 case TRUNC_DIV_EXPR:
15014 case CEIL_DIV_EXPR:
15015 case FLOOR_DIV_EXPR:
15016 case ROUND_DIV_EXPR:
15017 case TRUNC_MOD_EXPR:
15018 case CEIL_MOD_EXPR:
15019 case FLOOR_MOD_EXPR:
15020 case ROUND_MOD_EXPR:
15021 case RDIV_EXPR:
15022 case EXACT_DIV_EXPR:
15023 case MIN_EXPR:
15024 case MAX_EXPR:
15025 case BIT_IOR_EXPR:
15026 case BIT_XOR_EXPR:
15027 case BIT_AND_EXPR:
15029 case LSHIFT_EXPR:
15030 case RSHIFT_EXPR:
15031 case LROTATE_EXPR:
15032 case RROTATE_EXPR:
15033 return true;
15035 default:
15036 return false;
15040 /* Return a typenode for the "standard" C type with a given name. */
15041 tree
15042 get_typenode_from_name (const char *name)
15044 if (name == NULL || *name == '\0')
15045 return NULL_TREE;
15047 if (strcmp (name, "char") == 0)
15048 return char_type_node;
15049 if (strcmp (name, "unsigned char") == 0)
15050 return unsigned_char_type_node;
15051 if (strcmp (name, "signed char") == 0)
15052 return signed_char_type_node;
15054 if (strcmp (name, "short int") == 0)
15055 return short_integer_type_node;
15056 if (strcmp (name, "short unsigned int") == 0)
15057 return short_unsigned_type_node;
15059 if (strcmp (name, "int") == 0)
15060 return integer_type_node;
15061 if (strcmp (name, "unsigned int") == 0)
15062 return unsigned_type_node;
15064 if (strcmp (name, "long int") == 0)
15065 return long_integer_type_node;
15066 if (strcmp (name, "long unsigned int") == 0)
15067 return long_unsigned_type_node;
15069 if (strcmp (name, "long long int") == 0)
15070 return long_long_integer_type_node;
15071 if (strcmp (name, "long long unsigned int") == 0)
15072 return long_long_unsigned_type_node;
15074 gcc_unreachable ();
15077 /* List of pointer types used to declare builtins before we have seen their
15078 real declaration.
15080 Keep the size up to date in tree.h ! */
15081 const builtin_structptr_type builtin_structptr_types[6] =
15083 { fileptr_type_node, ptr_type_node, "FILE" },
15084 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
15085 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
15086 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
15087 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
15088 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
15091 /* Return the maximum object size. */
15093 tree
15094 max_object_size (void)
15096 /* To do: Make this a configurable parameter. */
15097 return TYPE_MAX_VALUE (ptrdiff_type_node);
15100 #if CHECKING_P
15102 namespace selftest {
15104 /* Selftests for tree. */
15106 /* Verify that integer constants are sane. */
15108 static void
15109 test_integer_constants ()
15111 ASSERT_TRUE (integer_type_node != NULL);
15112 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
15114 tree type = integer_type_node;
15116 tree zero = build_zero_cst (type);
15117 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
15118 ASSERT_EQ (type, TREE_TYPE (zero));
15120 tree one = build_int_cst (type, 1);
15121 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
15122 ASSERT_EQ (type, TREE_TYPE (zero));
15125 /* Verify identifiers. */
15127 static void
15128 test_identifiers ()
15130 tree identifier = get_identifier ("foo");
15131 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
15132 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
15135 /* Verify LABEL_DECL. */
15137 static void
15138 test_labels ()
15140 tree identifier = get_identifier ("err");
15141 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
15142 identifier, void_type_node);
15143 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
15144 ASSERT_FALSE (FORCED_LABEL (label_decl));
15147 /* Return a new VECTOR_CST node whose type is TYPE and whose values
15148 are given by VALS. */
15150 static tree
15151 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
15153 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
15154 tree_vector_builder builder (type, vals.length (), 1);
15155 builder.splice (vals);
15156 return builder.build ();
15159 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
15161 static void
15162 check_vector_cst (vec<tree> expected, tree actual)
15164 ASSERT_KNOWN_EQ (expected.length (),
15165 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
15166 for (unsigned int i = 0; i < expected.length (); ++i)
15167 ASSERT_EQ (wi::to_wide (expected[i]),
15168 wi::to_wide (vector_cst_elt (actual, i)));
15171 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
15172 and that its elements match EXPECTED. */
15174 static void
15175 check_vector_cst_duplicate (vec<tree> expected, tree actual,
15176 unsigned int npatterns)
15178 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15179 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
15180 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
15181 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
15182 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15183 check_vector_cst (expected, actual);
15186 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
15187 and NPATTERNS background elements, and that its elements match
15188 EXPECTED. */
15190 static void
15191 check_vector_cst_fill (vec<tree> expected, tree actual,
15192 unsigned int npatterns)
15194 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15195 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
15196 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
15197 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15198 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15199 check_vector_cst (expected, actual);
15202 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
15203 and that its elements match EXPECTED. */
15205 static void
15206 check_vector_cst_stepped (vec<tree> expected, tree actual,
15207 unsigned int npatterns)
15209 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15210 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
15211 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
15212 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15213 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
15214 check_vector_cst (expected, actual);
15217 /* Test the creation of VECTOR_CSTs. */
15219 static void
15220 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
15222 auto_vec<tree, 8> elements (8);
15223 elements.quick_grow (8);
15224 tree element_type = build_nonstandard_integer_type (16, true);
15225 tree vector_type = build_vector_type (element_type, 8);
15227 /* Test a simple linear series with a base of 0 and a step of 1:
15228 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
15229 for (unsigned int i = 0; i < 8; ++i)
15230 elements[i] = build_int_cst (element_type, i);
15231 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
15232 check_vector_cst_stepped (elements, vector, 1);
15234 /* Try the same with the first element replaced by 100:
15235 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
15236 elements[0] = build_int_cst (element_type, 100);
15237 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15238 check_vector_cst_stepped (elements, vector, 1);
15240 /* Try a series that wraps around.
15241 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
15242 for (unsigned int i = 1; i < 8; ++i)
15243 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
15244 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15245 check_vector_cst_stepped (elements, vector, 1);
15247 /* Try a downward series:
15248 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
15249 for (unsigned int i = 1; i < 8; ++i)
15250 elements[i] = build_int_cst (element_type, 80 - i);
15251 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15252 check_vector_cst_stepped (elements, vector, 1);
15254 /* Try two interleaved series with different bases and steps:
15255 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
15256 elements[1] = build_int_cst (element_type, 53);
15257 for (unsigned int i = 2; i < 8; i += 2)
15259 elements[i] = build_int_cst (element_type, 70 - i * 2);
15260 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
15262 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15263 check_vector_cst_stepped (elements, vector, 2);
15265 /* Try a duplicated value:
15266 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
15267 for (unsigned int i = 1; i < 8; ++i)
15268 elements[i] = elements[0];
15269 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15270 check_vector_cst_duplicate (elements, vector, 1);
15272 /* Try an interleaved duplicated value:
15273 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
15274 elements[1] = build_int_cst (element_type, 55);
15275 for (unsigned int i = 2; i < 8; ++i)
15276 elements[i] = elements[i - 2];
15277 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15278 check_vector_cst_duplicate (elements, vector, 2);
15280 /* Try a duplicated value with 2 exceptions
15281 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
15282 elements[0] = build_int_cst (element_type, 41);
15283 elements[1] = build_int_cst (element_type, 97);
15284 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15285 check_vector_cst_fill (elements, vector, 2);
15287 /* Try with and without a step
15288 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
15289 for (unsigned int i = 3; i < 8; i += 2)
15290 elements[i] = build_int_cst (element_type, i * 7);
15291 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15292 check_vector_cst_stepped (elements, vector, 2);
15294 /* Try a fully-general constant:
15295 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
15296 elements[5] = build_int_cst (element_type, 9990);
15297 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15298 check_vector_cst_fill (elements, vector, 4);
15301 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
15302 Helper function for test_location_wrappers, to deal with STRIP_NOPS
15303 modifying its argument in-place. */
15305 static void
15306 check_strip_nops (tree node, tree expected)
15308 STRIP_NOPS (node);
15309 ASSERT_EQ (expected, node);
15312 /* Verify location wrappers. */
15314 static void
15315 test_location_wrappers ()
15317 location_t loc = BUILTINS_LOCATION;
15319 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
15321 /* Wrapping a constant. */
15322 tree int_cst = build_int_cst (integer_type_node, 42);
15323 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
15324 ASSERT_FALSE (location_wrapper_p (int_cst));
15326 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
15327 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
15328 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
15329 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
15331 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
15332 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
15334 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
15335 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
15336 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
15337 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
15339 /* Wrapping a STRING_CST. */
15340 tree string_cst = build_string (4, "foo");
15341 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
15342 ASSERT_FALSE (location_wrapper_p (string_cst));
15344 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
15345 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
15346 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
15347 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
15348 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
15351 /* Wrapping a variable. */
15352 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
15353 get_identifier ("some_int_var"),
15354 integer_type_node);
15355 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
15356 ASSERT_FALSE (location_wrapper_p (int_var));
15358 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
15359 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
15360 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
15361 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
15363 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
15364 wrapper. */
15365 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
15366 ASSERT_FALSE (location_wrapper_p (r_cast));
15367 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
15369 /* Verify that STRIP_NOPS removes wrappers. */
15370 check_strip_nops (wrapped_int_cst, int_cst);
15371 check_strip_nops (wrapped_string_cst, string_cst);
15372 check_strip_nops (wrapped_int_var, int_var);
15375 /* Test various tree predicates. Verify that location wrappers don't
15376 affect the results. */
15378 static void
15379 test_predicates ()
15381 /* Build various constants and wrappers around them. */
15383 location_t loc = BUILTINS_LOCATION;
15385 tree i_0 = build_int_cst (integer_type_node, 0);
15386 tree wr_i_0 = maybe_wrap_with_location (i_0, loc);
15388 tree i_1 = build_int_cst (integer_type_node, 1);
15389 tree wr_i_1 = maybe_wrap_with_location (i_1, loc);
15391 tree i_m1 = build_int_cst (integer_type_node, -1);
15392 tree wr_i_m1 = maybe_wrap_with_location (i_m1, loc);
15394 tree f_0 = build_real_from_int_cst (float_type_node, i_0);
15395 tree wr_f_0 = maybe_wrap_with_location (f_0, loc);
15396 tree f_1 = build_real_from_int_cst (float_type_node, i_1);
15397 tree wr_f_1 = maybe_wrap_with_location (f_1, loc);
15398 tree f_m1 = build_real_from_int_cst (float_type_node, i_m1);
15399 tree wr_f_m1 = maybe_wrap_with_location (f_m1, loc);
15401 tree c_i_0 = build_complex (NULL_TREE, i_0, i_0);
15402 tree c_i_1 = build_complex (NULL_TREE, i_1, i_0);
15403 tree c_i_m1 = build_complex (NULL_TREE, i_m1, i_0);
15405 tree c_f_0 = build_complex (NULL_TREE, f_0, f_0);
15406 tree c_f_1 = build_complex (NULL_TREE, f_1, f_0);
15407 tree c_f_m1 = build_complex (NULL_TREE, f_m1, f_0);
15409 /* TODO: vector constants. */
15411 /* Test integer_onep. */
15412 ASSERT_FALSE (integer_onep (i_0));
15413 ASSERT_FALSE (integer_onep (wr_i_0));
15414 ASSERT_TRUE (integer_onep (i_1));
15415 ASSERT_TRUE (integer_onep (wr_i_1));
15416 ASSERT_FALSE (integer_onep (i_m1));
15417 ASSERT_FALSE (integer_onep (wr_i_m1));
15418 ASSERT_FALSE (integer_onep (f_0));
15419 ASSERT_FALSE (integer_onep (wr_f_0));
15420 ASSERT_FALSE (integer_onep (f_1));
15421 ASSERT_FALSE (integer_onep (wr_f_1));
15422 ASSERT_FALSE (integer_onep (f_m1));
15423 ASSERT_FALSE (integer_onep (wr_f_m1));
15424 ASSERT_FALSE (integer_onep (c_i_0));
15425 ASSERT_TRUE (integer_onep (c_i_1));
15426 ASSERT_FALSE (integer_onep (c_i_m1));
15427 ASSERT_FALSE (integer_onep (c_f_0));
15428 ASSERT_FALSE (integer_onep (c_f_1));
15429 ASSERT_FALSE (integer_onep (c_f_m1));
15431 /* Test integer_zerop. */
15432 ASSERT_TRUE (integer_zerop (i_0));
15433 ASSERT_TRUE (integer_zerop (wr_i_0));
15434 ASSERT_FALSE (integer_zerop (i_1));
15435 ASSERT_FALSE (integer_zerop (wr_i_1));
15436 ASSERT_FALSE (integer_zerop (i_m1));
15437 ASSERT_FALSE (integer_zerop (wr_i_m1));
15438 ASSERT_FALSE (integer_zerop (f_0));
15439 ASSERT_FALSE (integer_zerop (wr_f_0));
15440 ASSERT_FALSE (integer_zerop (f_1));
15441 ASSERT_FALSE (integer_zerop (wr_f_1));
15442 ASSERT_FALSE (integer_zerop (f_m1));
15443 ASSERT_FALSE (integer_zerop (wr_f_m1));
15444 ASSERT_TRUE (integer_zerop (c_i_0));
15445 ASSERT_FALSE (integer_zerop (c_i_1));
15446 ASSERT_FALSE (integer_zerop (c_i_m1));
15447 ASSERT_FALSE (integer_zerop (c_f_0));
15448 ASSERT_FALSE (integer_zerop (c_f_1));
15449 ASSERT_FALSE (integer_zerop (c_f_m1));
15451 /* Test integer_all_onesp. */
15452 ASSERT_FALSE (integer_all_onesp (i_0));
15453 ASSERT_FALSE (integer_all_onesp (wr_i_0));
15454 ASSERT_FALSE (integer_all_onesp (i_1));
15455 ASSERT_FALSE (integer_all_onesp (wr_i_1));
15456 ASSERT_TRUE (integer_all_onesp (i_m1));
15457 ASSERT_TRUE (integer_all_onesp (wr_i_m1));
15458 ASSERT_FALSE (integer_all_onesp (f_0));
15459 ASSERT_FALSE (integer_all_onesp (wr_f_0));
15460 ASSERT_FALSE (integer_all_onesp (f_1));
15461 ASSERT_FALSE (integer_all_onesp (wr_f_1));
15462 ASSERT_FALSE (integer_all_onesp (f_m1));
15463 ASSERT_FALSE (integer_all_onesp (wr_f_m1));
15464 ASSERT_FALSE (integer_all_onesp (c_i_0));
15465 ASSERT_FALSE (integer_all_onesp (c_i_1));
15466 ASSERT_FALSE (integer_all_onesp (c_i_m1));
15467 ASSERT_FALSE (integer_all_onesp (c_f_0));
15468 ASSERT_FALSE (integer_all_onesp (c_f_1));
15469 ASSERT_FALSE (integer_all_onesp (c_f_m1));
15471 /* Test integer_minus_onep. */
15472 ASSERT_FALSE (integer_minus_onep (i_0));
15473 ASSERT_FALSE (integer_minus_onep (wr_i_0));
15474 ASSERT_FALSE (integer_minus_onep (i_1));
15475 ASSERT_FALSE (integer_minus_onep (wr_i_1));
15476 ASSERT_TRUE (integer_minus_onep (i_m1));
15477 ASSERT_TRUE (integer_minus_onep (wr_i_m1));
15478 ASSERT_FALSE (integer_minus_onep (f_0));
15479 ASSERT_FALSE (integer_minus_onep (wr_f_0));
15480 ASSERT_FALSE (integer_minus_onep (f_1));
15481 ASSERT_FALSE (integer_minus_onep (wr_f_1));
15482 ASSERT_FALSE (integer_minus_onep (f_m1));
15483 ASSERT_FALSE (integer_minus_onep (wr_f_m1));
15484 ASSERT_FALSE (integer_minus_onep (c_i_0));
15485 ASSERT_FALSE (integer_minus_onep (c_i_1));
15486 ASSERT_TRUE (integer_minus_onep (c_i_m1));
15487 ASSERT_FALSE (integer_minus_onep (c_f_0));
15488 ASSERT_FALSE (integer_minus_onep (c_f_1));
15489 ASSERT_FALSE (integer_minus_onep (c_f_m1));
15491 /* Test integer_each_onep. */
15492 ASSERT_FALSE (integer_each_onep (i_0));
15493 ASSERT_FALSE (integer_each_onep (wr_i_0));
15494 ASSERT_TRUE (integer_each_onep (i_1));
15495 ASSERT_TRUE (integer_each_onep (wr_i_1));
15496 ASSERT_FALSE (integer_each_onep (i_m1));
15497 ASSERT_FALSE (integer_each_onep (wr_i_m1));
15498 ASSERT_FALSE (integer_each_onep (f_0));
15499 ASSERT_FALSE (integer_each_onep (wr_f_0));
15500 ASSERT_FALSE (integer_each_onep (f_1));
15501 ASSERT_FALSE (integer_each_onep (wr_f_1));
15502 ASSERT_FALSE (integer_each_onep (f_m1));
15503 ASSERT_FALSE (integer_each_onep (wr_f_m1));
15504 ASSERT_FALSE (integer_each_onep (c_i_0));
15505 ASSERT_FALSE (integer_each_onep (c_i_1));
15506 ASSERT_FALSE (integer_each_onep (c_i_m1));
15507 ASSERT_FALSE (integer_each_onep (c_f_0));
15508 ASSERT_FALSE (integer_each_onep (c_f_1));
15509 ASSERT_FALSE (integer_each_onep (c_f_m1));
15511 /* Test integer_truep. */
15512 ASSERT_FALSE (integer_truep (i_0));
15513 ASSERT_FALSE (integer_truep (wr_i_0));
15514 ASSERT_TRUE (integer_truep (i_1));
15515 ASSERT_TRUE (integer_truep (wr_i_1));
15516 ASSERT_FALSE (integer_truep (i_m1));
15517 ASSERT_FALSE (integer_truep (wr_i_m1));
15518 ASSERT_FALSE (integer_truep (f_0));
15519 ASSERT_FALSE (integer_truep (wr_f_0));
15520 ASSERT_FALSE (integer_truep (f_1));
15521 ASSERT_FALSE (integer_truep (wr_f_1));
15522 ASSERT_FALSE (integer_truep (f_m1));
15523 ASSERT_FALSE (integer_truep (wr_f_m1));
15524 ASSERT_FALSE (integer_truep (c_i_0));
15525 ASSERT_TRUE (integer_truep (c_i_1));
15526 ASSERT_FALSE (integer_truep (c_i_m1));
15527 ASSERT_FALSE (integer_truep (c_f_0));
15528 ASSERT_FALSE (integer_truep (c_f_1));
15529 ASSERT_FALSE (integer_truep (c_f_m1));
15531 /* Test integer_nonzerop. */
15532 ASSERT_FALSE (integer_nonzerop (i_0));
15533 ASSERT_FALSE (integer_nonzerop (wr_i_0));
15534 ASSERT_TRUE (integer_nonzerop (i_1));
15535 ASSERT_TRUE (integer_nonzerop (wr_i_1));
15536 ASSERT_TRUE (integer_nonzerop (i_m1));
15537 ASSERT_TRUE (integer_nonzerop (wr_i_m1));
15538 ASSERT_FALSE (integer_nonzerop (f_0));
15539 ASSERT_FALSE (integer_nonzerop (wr_f_0));
15540 ASSERT_FALSE (integer_nonzerop (f_1));
15541 ASSERT_FALSE (integer_nonzerop (wr_f_1));
15542 ASSERT_FALSE (integer_nonzerop (f_m1));
15543 ASSERT_FALSE (integer_nonzerop (wr_f_m1));
15544 ASSERT_FALSE (integer_nonzerop (c_i_0));
15545 ASSERT_TRUE (integer_nonzerop (c_i_1));
15546 ASSERT_TRUE (integer_nonzerop (c_i_m1));
15547 ASSERT_FALSE (integer_nonzerop (c_f_0));
15548 ASSERT_FALSE (integer_nonzerop (c_f_1));
15549 ASSERT_FALSE (integer_nonzerop (c_f_m1));
15551 /* Test real_zerop. */
15552 ASSERT_FALSE (real_zerop (i_0));
15553 ASSERT_FALSE (real_zerop (wr_i_0));
15554 ASSERT_FALSE (real_zerop (i_1));
15555 ASSERT_FALSE (real_zerop (wr_i_1));
15556 ASSERT_FALSE (real_zerop (i_m1));
15557 ASSERT_FALSE (real_zerop (wr_i_m1));
15558 ASSERT_TRUE (real_zerop (f_0));
15559 ASSERT_TRUE (real_zerop (wr_f_0));
15560 ASSERT_FALSE (real_zerop (f_1));
15561 ASSERT_FALSE (real_zerop (wr_f_1));
15562 ASSERT_FALSE (real_zerop (f_m1));
15563 ASSERT_FALSE (real_zerop (wr_f_m1));
15564 ASSERT_FALSE (real_zerop (c_i_0));
15565 ASSERT_FALSE (real_zerop (c_i_1));
15566 ASSERT_FALSE (real_zerop (c_i_m1));
15567 ASSERT_TRUE (real_zerop (c_f_0));
15568 ASSERT_FALSE (real_zerop (c_f_1));
15569 ASSERT_FALSE (real_zerop (c_f_m1));
15571 /* Test real_onep. */
15572 ASSERT_FALSE (real_onep (i_0));
15573 ASSERT_FALSE (real_onep (wr_i_0));
15574 ASSERT_FALSE (real_onep (i_1));
15575 ASSERT_FALSE (real_onep (wr_i_1));
15576 ASSERT_FALSE (real_onep (i_m1));
15577 ASSERT_FALSE (real_onep (wr_i_m1));
15578 ASSERT_FALSE (real_onep (f_0));
15579 ASSERT_FALSE (real_onep (wr_f_0));
15580 ASSERT_TRUE (real_onep (f_1));
15581 ASSERT_TRUE (real_onep (wr_f_1));
15582 ASSERT_FALSE (real_onep (f_m1));
15583 ASSERT_FALSE (real_onep (wr_f_m1));
15584 ASSERT_FALSE (real_onep (c_i_0));
15585 ASSERT_FALSE (real_onep (c_i_1));
15586 ASSERT_FALSE (real_onep (c_i_m1));
15587 ASSERT_FALSE (real_onep (c_f_0));
15588 ASSERT_TRUE (real_onep (c_f_1));
15589 ASSERT_FALSE (real_onep (c_f_m1));
15591 /* Test real_minus_onep. */
15592 ASSERT_FALSE (real_minus_onep (i_0));
15593 ASSERT_FALSE (real_minus_onep (wr_i_0));
15594 ASSERT_FALSE (real_minus_onep (i_1));
15595 ASSERT_FALSE (real_minus_onep (wr_i_1));
15596 ASSERT_FALSE (real_minus_onep (i_m1));
15597 ASSERT_FALSE (real_minus_onep (wr_i_m1));
15598 ASSERT_FALSE (real_minus_onep (f_0));
15599 ASSERT_FALSE (real_minus_onep (wr_f_0));
15600 ASSERT_FALSE (real_minus_onep (f_1));
15601 ASSERT_FALSE (real_minus_onep (wr_f_1));
15602 ASSERT_TRUE (real_minus_onep (f_m1));
15603 ASSERT_TRUE (real_minus_onep (wr_f_m1));
15604 ASSERT_FALSE (real_minus_onep (c_i_0));
15605 ASSERT_FALSE (real_minus_onep (c_i_1));
15606 ASSERT_FALSE (real_minus_onep (c_i_m1));
15607 ASSERT_FALSE (real_minus_onep (c_f_0));
15608 ASSERT_FALSE (real_minus_onep (c_f_1));
15609 ASSERT_TRUE (real_minus_onep (c_f_m1));
15611 /* Test zerop. */
15612 ASSERT_TRUE (zerop (i_0));
15613 ASSERT_TRUE (zerop (wr_i_0));
15614 ASSERT_FALSE (zerop (i_1));
15615 ASSERT_FALSE (zerop (wr_i_1));
15616 ASSERT_FALSE (zerop (i_m1));
15617 ASSERT_FALSE (zerop (wr_i_m1));
15618 ASSERT_TRUE (zerop (f_0));
15619 ASSERT_TRUE (zerop (wr_f_0));
15620 ASSERT_FALSE (zerop (f_1));
15621 ASSERT_FALSE (zerop (wr_f_1));
15622 ASSERT_FALSE (zerop (f_m1));
15623 ASSERT_FALSE (zerop (wr_f_m1));
15624 ASSERT_TRUE (zerop (c_i_0));
15625 ASSERT_FALSE (zerop (c_i_1));
15626 ASSERT_FALSE (zerop (c_i_m1));
15627 ASSERT_TRUE (zerop (c_f_0));
15628 ASSERT_FALSE (zerop (c_f_1));
15629 ASSERT_FALSE (zerop (c_f_m1));
15631 /* Test tree_expr_nonnegative_p. */
15632 ASSERT_TRUE (tree_expr_nonnegative_p (i_0));
15633 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_0));
15634 ASSERT_TRUE (tree_expr_nonnegative_p (i_1));
15635 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_1));
15636 ASSERT_FALSE (tree_expr_nonnegative_p (i_m1));
15637 ASSERT_FALSE (tree_expr_nonnegative_p (wr_i_m1));
15638 ASSERT_TRUE (tree_expr_nonnegative_p (f_0));
15639 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_0));
15640 ASSERT_TRUE (tree_expr_nonnegative_p (f_1));
15641 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_1));
15642 ASSERT_FALSE (tree_expr_nonnegative_p (f_m1));
15643 ASSERT_FALSE (tree_expr_nonnegative_p (wr_f_m1));
15644 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_0));
15645 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_1));
15646 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_m1));
15647 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_0));
15648 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_1));
15649 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_m1));
15651 /* Test tree_expr_nonzero_p. */
15652 ASSERT_FALSE (tree_expr_nonzero_p (i_0));
15653 ASSERT_FALSE (tree_expr_nonzero_p (wr_i_0));
15654 ASSERT_TRUE (tree_expr_nonzero_p (i_1));
15655 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_1));
15656 ASSERT_TRUE (tree_expr_nonzero_p (i_m1));
15657 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_m1));
15659 /* Test integer_valued_real_p. */
15660 ASSERT_FALSE (integer_valued_real_p (i_0));
15661 ASSERT_TRUE (integer_valued_real_p (f_0));
15662 ASSERT_TRUE (integer_valued_real_p (wr_f_0));
15663 ASSERT_TRUE (integer_valued_real_p (f_1));
15664 ASSERT_TRUE (integer_valued_real_p (wr_f_1));
15666 /* Test integer_pow2p. */
15667 ASSERT_FALSE (integer_pow2p (i_0));
15668 ASSERT_TRUE (integer_pow2p (i_1));
15669 ASSERT_TRUE (integer_pow2p (wr_i_1));
15671 /* Test uniform_integer_cst_p. */
15672 ASSERT_TRUE (uniform_integer_cst_p (i_0));
15673 ASSERT_TRUE (uniform_integer_cst_p (wr_i_0));
15674 ASSERT_TRUE (uniform_integer_cst_p (i_1));
15675 ASSERT_TRUE (uniform_integer_cst_p (wr_i_1));
15676 ASSERT_TRUE (uniform_integer_cst_p (i_m1));
15677 ASSERT_TRUE (uniform_integer_cst_p (wr_i_m1));
15678 ASSERT_FALSE (uniform_integer_cst_p (f_0));
15679 ASSERT_FALSE (uniform_integer_cst_p (wr_f_0));
15680 ASSERT_FALSE (uniform_integer_cst_p (f_1));
15681 ASSERT_FALSE (uniform_integer_cst_p (wr_f_1));
15682 ASSERT_FALSE (uniform_integer_cst_p (f_m1));
15683 ASSERT_FALSE (uniform_integer_cst_p (wr_f_m1));
15684 ASSERT_FALSE (uniform_integer_cst_p (c_i_0));
15685 ASSERT_FALSE (uniform_integer_cst_p (c_i_1));
15686 ASSERT_FALSE (uniform_integer_cst_p (c_i_m1));
15687 ASSERT_FALSE (uniform_integer_cst_p (c_f_0));
15688 ASSERT_FALSE (uniform_integer_cst_p (c_f_1));
15689 ASSERT_FALSE (uniform_integer_cst_p (c_f_m1));
15692 /* Check that string escaping works correctly. */
15694 static void
15695 test_escaped_strings (void)
15697 int saved_cutoff;
15698 escaped_string msg;
15700 msg.escape (NULL);
15701 /* ASSERT_STREQ does not accept NULL as a valid test
15702 result, so we have to use ASSERT_EQ instead. */
15703 ASSERT_EQ (NULL, (const char *) msg);
15705 msg.escape ("");
15706 ASSERT_STREQ ("", (const char *) msg);
15708 msg.escape ("foobar");
15709 ASSERT_STREQ ("foobar", (const char *) msg);
15711 /* Ensure that we have -fmessage-length set to 0. */
15712 saved_cutoff = pp_line_cutoff (global_dc->printer);
15713 pp_line_cutoff (global_dc->printer) = 0;
15715 msg.escape ("foo\nbar");
15716 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
15718 msg.escape ("\a\b\f\n\r\t\v");
15719 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
15721 /* Now repeat the tests with -fmessage-length set to 5. */
15722 pp_line_cutoff (global_dc->printer) = 5;
15724 /* Note that the newline is not translated into an escape. */
15725 msg.escape ("foo\nbar");
15726 ASSERT_STREQ ("foo\nbar", (const char *) msg);
15728 msg.escape ("\a\b\f\n\r\t\v");
15729 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
15731 /* Restore the original message length setting. */
15732 pp_line_cutoff (global_dc->printer) = saved_cutoff;
15735 /* Run all of the selftests within this file. */
15737 void
15738 tree_c_tests ()
15740 test_integer_constants ();
15741 test_identifiers ();
15742 test_labels ();
15743 test_vector_cst_patterns ();
15744 test_location_wrappers ();
15745 test_predicates ();
15746 test_escaped_strings ();
15749 } // namespace selftest
15751 #endif /* CHECKING_P */
15753 #include "gt-tree.h"