match_asm_constraints: Use copy_rtx where needed (PR88001)
[official-gcc.git] / gcc / tree.c
blob170ef1300ed240fb6a4bd51bdaf94991e46f1f55
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
25 nodes of that code.
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "target.h"
35 #include "tree.h"
36 #include "gimple.h"
37 #include "tree-pass.h"
38 #include "ssa.h"
39 #include "cgraph.h"
40 #include "diagnostic.h"
41 #include "flags.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "attribs.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "output.h"
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
55 #include "gimplify.h"
56 #include "tree-dfa.h"
57 #include "params.h"
58 #include "langhooks-def.h"
59 #include "tree-diagnostic.h"
60 #include "except.h"
61 #include "builtins.h"
62 #include "print-tree.h"
63 #include "ipa-utils.h"
64 #include "selftest.h"
65 #include "stringpool.h"
66 #include "attribs.h"
67 #include "rtl.h"
68 #include "regs.h"
69 #include "tree-vector-builder.h"
71 /* Tree code classes. */
73 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
74 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76 const enum tree_code_class tree_code_type[] = {
77 #include "all-tree.def"
80 #undef DEFTREECODE
81 #undef END_OF_BASE_TREE_CODES
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
88 #define END_OF_BASE_TREE_CODES 0,
90 const unsigned char tree_code_length[] = {
91 #include "all-tree.def"
94 #undef DEFTREECODE
95 #undef END_OF_BASE_TREE_CODES
97 /* Names of tree components.
98 Used for printing out the tree and error messages. */
99 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 #define END_OF_BASE_TREE_CODES "@dummy",
102 static const char *const tree_code_name[] = {
103 #include "all-tree.def"
106 #undef DEFTREECODE
107 #undef END_OF_BASE_TREE_CODES
109 /* Each tree code class has an associated string representation.
110 These must correspond to the tree_code_class entries. */
112 const char *const tree_code_class_strings[] =
114 "exceptional",
115 "constant",
116 "type",
117 "declaration",
118 "reference",
119 "comparison",
120 "unary",
121 "binary",
122 "statement",
123 "vl_exp",
124 "expression"
127 /* obstack.[ch] explicitly declined to prototype this. */
128 extern int _obstack_allocated_p (struct obstack *h, void *obj);
130 /* Statistics-gathering stuff. */
132 static uint64_t tree_code_counts[MAX_TREE_CODES];
133 uint64_t tree_node_counts[(int) all_kinds];
134 uint64_t tree_node_sizes[(int) all_kinds];
136 /* Keep in sync with tree.h:enum tree_node_kind. */
137 static const char * const tree_node_kind_names[] = {
138 "decls",
139 "types",
140 "blocks",
141 "stmts",
142 "refs",
143 "exprs",
144 "constants",
145 "identifiers",
146 "vecs",
147 "binfos",
148 "ssa names",
149 "constructors",
150 "random kinds",
151 "lang_decl kinds",
152 "lang_type kinds",
153 "omp clauses",
156 /* Unique id for next decl created. */
157 static GTY(()) int next_decl_uid;
158 /* Unique id for next type created. */
159 static GTY(()) unsigned next_type_uid = 1;
160 /* Unique id for next debug decl created. Use negative numbers,
161 to catch erroneous uses. */
162 static GTY(()) int next_debug_decl_uid;
164 /* Since we cannot rehash a type after it is in the table, we have to
165 keep the hash code. */
167 struct GTY((for_user)) type_hash {
168 unsigned long hash;
169 tree type;
172 /* Initial size of the hash table (rounded to next prime). */
173 #define TYPE_HASH_INITIAL_SIZE 1000
175 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
177 static hashval_t hash (type_hash *t) { return t->hash; }
178 static bool equal (type_hash *a, type_hash *b);
180 static int
181 keep_cache_entry (type_hash *&t)
183 return ggc_marked_p (t->type);
187 /* Now here is the hash table. When recording a type, it is added to
188 the slot whose index is the hash code. Note that the hash table is
189 used for several kinds of types (function types, array types and
190 array index range types, for now). While all these live in the
191 same table, they are completely independent, and the hash code is
192 computed differently for each of these. */
194 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
196 /* Hash table and temporary node for larger integer const values. */
197 static GTY (()) tree int_cst_node;
199 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
201 static hashval_t hash (tree t);
202 static bool equal (tree x, tree y);
205 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
207 /* Class and variable for making sure that there is a single POLY_INT_CST
208 for a given value. */
209 struct poly_int_cst_hasher : ggc_cache_ptr_hash<tree_node>
211 typedef std::pair<tree, const poly_wide_int *> compare_type;
212 static hashval_t hash (tree t);
213 static bool equal (tree x, const compare_type &y);
216 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
218 /* Hash table for optimization flags and target option flags. Use the same
219 hash table for both sets of options. Nodes for building the current
220 optimization and target option nodes. The assumption is most of the time
221 the options created will already be in the hash table, so we avoid
222 allocating and freeing up a node repeatably. */
223 static GTY (()) tree cl_optimization_node;
224 static GTY (()) tree cl_target_option_node;
226 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
228 static hashval_t hash (tree t);
229 static bool equal (tree x, tree y);
232 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
234 /* General tree->tree mapping structure for use in hash tables. */
237 static GTY ((cache))
238 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
240 static GTY ((cache))
241 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
243 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
245 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
247 static bool
248 equal (tree_vec_map *a, tree_vec_map *b)
250 return a->base.from == b->base.from;
253 static int
254 keep_cache_entry (tree_vec_map *&m)
256 return ggc_marked_p (m->base.from);
260 static GTY ((cache))
261 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
263 static void set_type_quals (tree, int);
264 static void print_type_hash_statistics (void);
265 static void print_debug_expr_statistics (void);
266 static void print_value_expr_statistics (void);
268 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 tree t = make_node (COMPLEX_CST);
2213 TREE_REALPART (t) = real;
2214 TREE_IMAGPART (t) = imag;
2215 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2216 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2217 return t;
2220 /* Build a complex (inf +- 0i), such as for the result of cproj.
2221 TYPE is the complex tree type of the result. If NEG is true, the
2222 imaginary zero is negative. */
2224 tree
2225 build_complex_inf (tree type, bool neg)
2227 REAL_VALUE_TYPE rinf, rzero = dconst0;
2229 real_inf (&rinf);
2230 rzero.sign = neg;
2231 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2232 build_real (TREE_TYPE (type), rzero));
2235 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2236 element is set to 1. In particular, this is 1 + i for complex types. */
2238 tree
2239 build_each_one_cst (tree type)
2241 if (TREE_CODE (type) == COMPLEX_TYPE)
2243 tree scalar = build_one_cst (TREE_TYPE (type));
2244 return build_complex (type, scalar, scalar);
2246 else
2247 return build_one_cst (type);
2250 /* Return a constant of arithmetic type TYPE which is the
2251 multiplicative identity of the set TYPE. */
2253 tree
2254 build_one_cst (tree type)
2256 switch (TREE_CODE (type))
2258 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2259 case POINTER_TYPE: case REFERENCE_TYPE:
2260 case OFFSET_TYPE:
2261 return build_int_cst (type, 1);
2263 case REAL_TYPE:
2264 return build_real (type, dconst1);
2266 case FIXED_POINT_TYPE:
2267 /* We can only generate 1 for accum types. */
2268 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2269 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2271 case VECTOR_TYPE:
2273 tree scalar = build_one_cst (TREE_TYPE (type));
2275 return build_vector_from_val (type, scalar);
2278 case COMPLEX_TYPE:
2279 return build_complex (type,
2280 build_one_cst (TREE_TYPE (type)),
2281 build_zero_cst (TREE_TYPE (type)));
2283 default:
2284 gcc_unreachable ();
2288 /* Return an integer of type TYPE containing all 1's in as much precision as
2289 it contains, or a complex or vector whose subparts are such integers. */
2291 tree
2292 build_all_ones_cst (tree type)
2294 if (TREE_CODE (type) == COMPLEX_TYPE)
2296 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2297 return build_complex (type, scalar, scalar);
2299 else
2300 return build_minus_one_cst (type);
2303 /* Return a constant of arithmetic type TYPE which is the
2304 opposite of the multiplicative identity of the set TYPE. */
2306 tree
2307 build_minus_one_cst (tree type)
2309 switch (TREE_CODE (type))
2311 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2312 case POINTER_TYPE: case REFERENCE_TYPE:
2313 case OFFSET_TYPE:
2314 return build_int_cst (type, -1);
2316 case REAL_TYPE:
2317 return build_real (type, dconstm1);
2319 case FIXED_POINT_TYPE:
2320 /* We can only generate 1 for accum types. */
2321 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2322 return build_fixed (type,
2323 fixed_from_double_int (double_int_minus_one,
2324 SCALAR_TYPE_MODE (type)));
2326 case VECTOR_TYPE:
2328 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2330 return build_vector_from_val (type, scalar);
2333 case COMPLEX_TYPE:
2334 return build_complex (type,
2335 build_minus_one_cst (TREE_TYPE (type)),
2336 build_zero_cst (TREE_TYPE (type)));
2338 default:
2339 gcc_unreachable ();
2343 /* Build 0 constant of type TYPE. This is used by constructor folding
2344 and thus the constant should be represented in memory by
2345 zero(es). */
2347 tree
2348 build_zero_cst (tree type)
2350 switch (TREE_CODE (type))
2352 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2353 case POINTER_TYPE: case REFERENCE_TYPE:
2354 case OFFSET_TYPE: case NULLPTR_TYPE:
2355 return build_int_cst (type, 0);
2357 case REAL_TYPE:
2358 return build_real (type, dconst0);
2360 case FIXED_POINT_TYPE:
2361 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2363 case VECTOR_TYPE:
2365 tree scalar = build_zero_cst (TREE_TYPE (type));
2367 return build_vector_from_val (type, scalar);
2370 case COMPLEX_TYPE:
2372 tree zero = build_zero_cst (TREE_TYPE (type));
2374 return build_complex (type, zero, zero);
2377 default:
2378 if (!AGGREGATE_TYPE_P (type))
2379 return fold_convert (type, integer_zero_node);
2380 return build_constructor (type, NULL);
2385 /* Build a BINFO with LEN language slots. */
2387 tree
2388 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2390 tree t;
2391 size_t length = (offsetof (struct tree_binfo, base_binfos)
2392 + vec<tree, va_gc>::embedded_size (base_binfos));
2394 record_node_allocation_statistics (TREE_BINFO, length);
2396 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2398 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2400 TREE_SET_CODE (t, TREE_BINFO);
2402 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2404 return t;
2407 /* Create a CASE_LABEL_EXPR tree node and return it. */
2409 tree
2410 build_case_label (tree low_value, tree high_value, tree label_decl)
2412 tree t = make_node (CASE_LABEL_EXPR);
2414 TREE_TYPE (t) = void_type_node;
2415 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2417 CASE_LOW (t) = low_value;
2418 CASE_HIGH (t) = high_value;
2419 CASE_LABEL (t) = label_decl;
2420 CASE_CHAIN (t) = NULL_TREE;
2422 return t;
2425 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2426 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2427 The latter determines the length of the HOST_WIDE_INT vector. */
2429 tree
2430 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2432 tree t;
2433 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2434 + sizeof (struct tree_int_cst));
2436 gcc_assert (len);
2437 record_node_allocation_statistics (INTEGER_CST, length);
2439 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2441 TREE_SET_CODE (t, INTEGER_CST);
2442 TREE_INT_CST_NUNITS (t) = len;
2443 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2444 /* to_offset can only be applied to trees that are offset_int-sized
2445 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2446 must be exactly the precision of offset_int and so LEN is correct. */
2447 if (ext_len <= OFFSET_INT_ELTS)
2448 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2449 else
2450 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2452 TREE_CONSTANT (t) = 1;
2454 return t;
2457 /* Build a newly constructed TREE_VEC node of length LEN. */
2459 tree
2460 make_tree_vec (int len MEM_STAT_DECL)
2462 tree t;
2463 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2465 record_node_allocation_statistics (TREE_VEC, length);
2467 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2469 TREE_SET_CODE (t, TREE_VEC);
2470 TREE_VEC_LENGTH (t) = len;
2472 return t;
2475 /* Grow a TREE_VEC node to new length LEN. */
2477 tree
2478 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2480 gcc_assert (TREE_CODE (v) == TREE_VEC);
2482 int oldlen = TREE_VEC_LENGTH (v);
2483 gcc_assert (len > oldlen);
2485 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2486 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2488 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2490 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2492 TREE_VEC_LENGTH (v) = len;
2494 return v;
2497 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2498 fixed, and scalar, complex or vector. */
2500 bool
2501 zerop (const_tree expr)
2503 return (integer_zerop (expr)
2504 || real_zerop (expr)
2505 || fixed_zerop (expr));
2508 /* Return 1 if EXPR is the integer constant zero or a complex constant
2509 of zero. */
2511 bool
2512 integer_zerop (const_tree expr)
2514 switch (TREE_CODE (expr))
2516 case INTEGER_CST:
2517 return wi::to_wide (expr) == 0;
2518 case COMPLEX_CST:
2519 return (integer_zerop (TREE_REALPART (expr))
2520 && integer_zerop (TREE_IMAGPART (expr)));
2521 case VECTOR_CST:
2522 return (VECTOR_CST_NPATTERNS (expr) == 1
2523 && VECTOR_CST_DUPLICATE_P (expr)
2524 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2525 default:
2526 return false;
2530 /* Return 1 if EXPR is the integer constant one or the corresponding
2531 complex constant. */
2533 bool
2534 integer_onep (const_tree expr)
2536 switch (TREE_CODE (expr))
2538 case INTEGER_CST:
2539 return wi::eq_p (wi::to_widest (expr), 1);
2540 case COMPLEX_CST:
2541 return (integer_onep (TREE_REALPART (expr))
2542 && integer_zerop (TREE_IMAGPART (expr)));
2543 case VECTOR_CST:
2544 return (VECTOR_CST_NPATTERNS (expr) == 1
2545 && VECTOR_CST_DUPLICATE_P (expr)
2546 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2547 default:
2548 return false;
2552 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2553 return 1 if every piece is the integer constant one. */
2555 bool
2556 integer_each_onep (const_tree expr)
2558 if (TREE_CODE (expr) == COMPLEX_CST)
2559 return (integer_onep (TREE_REALPART (expr))
2560 && integer_onep (TREE_IMAGPART (expr)));
2561 else
2562 return integer_onep (expr);
2565 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2566 it contains, or a complex or vector whose subparts are such integers. */
2568 bool
2569 integer_all_onesp (const_tree expr)
2571 if (TREE_CODE (expr) == COMPLEX_CST
2572 && integer_all_onesp (TREE_REALPART (expr))
2573 && integer_all_onesp (TREE_IMAGPART (expr)))
2574 return true;
2576 else if (TREE_CODE (expr) == VECTOR_CST)
2577 return (VECTOR_CST_NPATTERNS (expr) == 1
2578 && VECTOR_CST_DUPLICATE_P (expr)
2579 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2581 else if (TREE_CODE (expr) != INTEGER_CST)
2582 return false;
2584 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2585 == wi::to_wide (expr));
2588 /* Return 1 if EXPR is the integer constant minus one. */
2590 bool
2591 integer_minus_onep (const_tree expr)
2593 if (TREE_CODE (expr) == COMPLEX_CST)
2594 return (integer_all_onesp (TREE_REALPART (expr))
2595 && integer_zerop (TREE_IMAGPART (expr)));
2596 else
2597 return integer_all_onesp (expr);
2600 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2601 one bit on). */
2603 bool
2604 integer_pow2p (const_tree expr)
2606 if (TREE_CODE (expr) == COMPLEX_CST
2607 && integer_pow2p (TREE_REALPART (expr))
2608 && integer_zerop (TREE_IMAGPART (expr)))
2609 return true;
2611 if (TREE_CODE (expr) != INTEGER_CST)
2612 return false;
2614 return wi::popcount (wi::to_wide (expr)) == 1;
2617 /* Return 1 if EXPR is an integer constant other than zero or a
2618 complex constant other than zero. */
2620 bool
2621 integer_nonzerop (const_tree expr)
2623 return ((TREE_CODE (expr) == INTEGER_CST
2624 && wi::to_wide (expr) != 0)
2625 || (TREE_CODE (expr) == COMPLEX_CST
2626 && (integer_nonzerop (TREE_REALPART (expr))
2627 || integer_nonzerop (TREE_IMAGPART (expr)))));
2630 /* Return 1 if EXPR is the integer constant one. For vector,
2631 return 1 if every piece is the integer constant minus one
2632 (representing the value TRUE). */
2634 bool
2635 integer_truep (const_tree expr)
2637 if (TREE_CODE (expr) == VECTOR_CST)
2638 return integer_all_onesp (expr);
2639 return integer_onep (expr);
2642 /* Return 1 if EXPR is the fixed-point constant zero. */
2644 bool
2645 fixed_zerop (const_tree expr)
2647 return (TREE_CODE (expr) == FIXED_CST
2648 && TREE_FIXED_CST (expr).data.is_zero ());
2651 /* Return the power of two represented by a tree node known to be a
2652 power of two. */
2655 tree_log2 (const_tree expr)
2657 if (TREE_CODE (expr) == COMPLEX_CST)
2658 return tree_log2 (TREE_REALPART (expr));
2660 return wi::exact_log2 (wi::to_wide (expr));
2663 /* Similar, but return the largest integer Y such that 2 ** Y is less
2664 than or equal to EXPR. */
2667 tree_floor_log2 (const_tree expr)
2669 if (TREE_CODE (expr) == COMPLEX_CST)
2670 return tree_log2 (TREE_REALPART (expr));
2672 return wi::floor_log2 (wi::to_wide (expr));
2675 /* Return number of known trailing zero bits in EXPR, or, if the value of
2676 EXPR is known to be zero, the precision of it's type. */
2678 unsigned int
2679 tree_ctz (const_tree expr)
2681 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2682 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2683 return 0;
2685 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2686 switch (TREE_CODE (expr))
2688 case INTEGER_CST:
2689 ret1 = wi::ctz (wi::to_wide (expr));
2690 return MIN (ret1, prec);
2691 case SSA_NAME:
2692 ret1 = wi::ctz (get_nonzero_bits (expr));
2693 return MIN (ret1, prec);
2694 case PLUS_EXPR:
2695 case MINUS_EXPR:
2696 case BIT_IOR_EXPR:
2697 case BIT_XOR_EXPR:
2698 case MIN_EXPR:
2699 case MAX_EXPR:
2700 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2701 if (ret1 == 0)
2702 return ret1;
2703 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2704 return MIN (ret1, ret2);
2705 case POINTER_PLUS_EXPR:
2706 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2707 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2708 /* Second operand is sizetype, which could be in theory
2709 wider than pointer's precision. Make sure we never
2710 return more than prec. */
2711 ret2 = MIN (ret2, prec);
2712 return MIN (ret1, ret2);
2713 case BIT_AND_EXPR:
2714 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2715 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2716 return MAX (ret1, ret2);
2717 case MULT_EXPR:
2718 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2719 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2720 return MIN (ret1 + ret2, prec);
2721 case LSHIFT_EXPR:
2722 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2723 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2724 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2726 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2727 return MIN (ret1 + ret2, prec);
2729 return ret1;
2730 case RSHIFT_EXPR:
2731 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2732 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2734 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2735 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2736 if (ret1 > ret2)
2737 return ret1 - ret2;
2739 return 0;
2740 case TRUNC_DIV_EXPR:
2741 case CEIL_DIV_EXPR:
2742 case FLOOR_DIV_EXPR:
2743 case ROUND_DIV_EXPR:
2744 case EXACT_DIV_EXPR:
2745 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2746 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2748 int l = tree_log2 (TREE_OPERAND (expr, 1));
2749 if (l >= 0)
2751 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2752 ret2 = l;
2753 if (ret1 > ret2)
2754 return ret1 - ret2;
2757 return 0;
2758 CASE_CONVERT:
2759 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2760 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2761 ret1 = prec;
2762 return MIN (ret1, prec);
2763 case SAVE_EXPR:
2764 return tree_ctz (TREE_OPERAND (expr, 0));
2765 case COND_EXPR:
2766 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2767 if (ret1 == 0)
2768 return 0;
2769 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2770 return MIN (ret1, ret2);
2771 case COMPOUND_EXPR:
2772 return tree_ctz (TREE_OPERAND (expr, 1));
2773 case ADDR_EXPR:
2774 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2775 if (ret1 > BITS_PER_UNIT)
2777 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2778 return MIN (ret1, prec);
2780 return 0;
2781 default:
2782 return 0;
2786 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2787 decimal float constants, so don't return 1 for them. */
2789 bool
2790 real_zerop (const_tree expr)
2792 switch (TREE_CODE (expr))
2794 case REAL_CST:
2795 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2796 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2797 case COMPLEX_CST:
2798 return real_zerop (TREE_REALPART (expr))
2799 && real_zerop (TREE_IMAGPART (expr));
2800 case VECTOR_CST:
2802 /* Don't simply check for a duplicate because the predicate
2803 accepts both +0.0 and -0.0. */
2804 unsigned count = vector_cst_encoded_nelts (expr);
2805 for (unsigned int i = 0; i < count; ++i)
2806 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2807 return false;
2808 return true;
2810 default:
2811 return false;
2815 /* Return 1 if EXPR is the real constant one in real or complex form.
2816 Trailing zeroes matter for decimal float constants, so don't return
2817 1 for them. */
2819 bool
2820 real_onep (const_tree expr)
2822 switch (TREE_CODE (expr))
2824 case REAL_CST:
2825 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2826 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2827 case COMPLEX_CST:
2828 return real_onep (TREE_REALPART (expr))
2829 && real_zerop (TREE_IMAGPART (expr));
2830 case VECTOR_CST:
2831 return (VECTOR_CST_NPATTERNS (expr) == 1
2832 && VECTOR_CST_DUPLICATE_P (expr)
2833 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2834 default:
2835 return false;
2839 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2840 matter for decimal float constants, so don't return 1 for them. */
2842 bool
2843 real_minus_onep (const_tree expr)
2845 switch (TREE_CODE (expr))
2847 case REAL_CST:
2848 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2849 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2850 case COMPLEX_CST:
2851 return real_minus_onep (TREE_REALPART (expr))
2852 && real_zerop (TREE_IMAGPART (expr));
2853 case VECTOR_CST:
2854 return (VECTOR_CST_NPATTERNS (expr) == 1
2855 && VECTOR_CST_DUPLICATE_P (expr)
2856 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2857 default:
2858 return false;
2862 /* Nonzero if EXP is a constant or a cast of a constant. */
2864 bool
2865 really_constant_p (const_tree exp)
2867 /* This is not quite the same as STRIP_NOPS. It does more. */
2868 while (CONVERT_EXPR_P (exp)
2869 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2870 exp = TREE_OPERAND (exp, 0);
2871 return TREE_CONSTANT (exp);
2874 /* Return true if T holds a polynomial pointer difference, storing it in
2875 *VALUE if so. A true return means that T's precision is no greater
2876 than 64 bits, which is the largest address space we support, so *VALUE
2877 never loses precision. However, the signedness of the result does
2878 not necessarily match the signedness of T: sometimes an unsigned type
2879 like sizetype is used to encode a value that is actually negative. */
2881 bool
2882 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
2884 if (!t)
2885 return false;
2886 if (TREE_CODE (t) == INTEGER_CST)
2888 if (!cst_and_fits_in_hwi (t))
2889 return false;
2890 *value = int_cst_value (t);
2891 return true;
2893 if (POLY_INT_CST_P (t))
2895 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2896 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
2897 return false;
2898 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2899 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
2900 return true;
2902 return false;
2905 poly_int64
2906 tree_to_poly_int64 (const_tree t)
2908 gcc_assert (tree_fits_poly_int64_p (t));
2909 if (POLY_INT_CST_P (t))
2910 return poly_int_cst_value (t).force_shwi ();
2911 return TREE_INT_CST_LOW (t);
2914 poly_uint64
2915 tree_to_poly_uint64 (const_tree t)
2917 gcc_assert (tree_fits_poly_uint64_p (t));
2918 if (POLY_INT_CST_P (t))
2919 return poly_int_cst_value (t).force_uhwi ();
2920 return TREE_INT_CST_LOW (t);
2923 /* Return first list element whose TREE_VALUE is ELEM.
2924 Return 0 if ELEM is not in LIST. */
2926 tree
2927 value_member (tree elem, tree list)
2929 while (list)
2931 if (elem == TREE_VALUE (list))
2932 return list;
2933 list = TREE_CHAIN (list);
2935 return NULL_TREE;
2938 /* Return first list element whose TREE_PURPOSE is ELEM.
2939 Return 0 if ELEM is not in LIST. */
2941 tree
2942 purpose_member (const_tree elem, tree list)
2944 while (list)
2946 if (elem == TREE_PURPOSE (list))
2947 return list;
2948 list = TREE_CHAIN (list);
2950 return NULL_TREE;
2953 /* Return true if ELEM is in V. */
2955 bool
2956 vec_member (const_tree elem, vec<tree, va_gc> *v)
2958 unsigned ix;
2959 tree t;
2960 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2961 if (elem == t)
2962 return true;
2963 return false;
2966 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2967 NULL_TREE. */
2969 tree
2970 chain_index (int idx, tree chain)
2972 for (; chain && idx > 0; --idx)
2973 chain = TREE_CHAIN (chain);
2974 return chain;
2977 /* Return nonzero if ELEM is part of the chain CHAIN. */
2979 bool
2980 chain_member (const_tree elem, const_tree chain)
2982 while (chain)
2984 if (elem == chain)
2985 return true;
2986 chain = DECL_CHAIN (chain);
2989 return false;
2992 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2993 We expect a null pointer to mark the end of the chain.
2994 This is the Lisp primitive `length'. */
2997 list_length (const_tree t)
2999 const_tree p = t;
3000 #ifdef ENABLE_TREE_CHECKING
3001 const_tree q = t;
3002 #endif
3003 int len = 0;
3005 while (p)
3007 p = TREE_CHAIN (p);
3008 #ifdef ENABLE_TREE_CHECKING
3009 if (len % 2)
3010 q = TREE_CHAIN (q);
3011 gcc_assert (p != q);
3012 #endif
3013 len++;
3016 return len;
3019 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3020 UNION_TYPE TYPE, or NULL_TREE if none. */
3022 tree
3023 first_field (const_tree type)
3025 tree t = TYPE_FIELDS (type);
3026 while (t && TREE_CODE (t) != FIELD_DECL)
3027 t = TREE_CHAIN (t);
3028 return t;
3031 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3032 by modifying the last node in chain 1 to point to chain 2.
3033 This is the Lisp primitive `nconc'. */
3035 tree
3036 chainon (tree op1, tree op2)
3038 tree t1;
3040 if (!op1)
3041 return op2;
3042 if (!op2)
3043 return op1;
3045 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3046 continue;
3047 TREE_CHAIN (t1) = op2;
3049 #ifdef ENABLE_TREE_CHECKING
3051 tree t2;
3052 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3053 gcc_assert (t2 != t1);
3055 #endif
3057 return op1;
3060 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3062 tree
3063 tree_last (tree chain)
3065 tree next;
3066 if (chain)
3067 while ((next = TREE_CHAIN (chain)))
3068 chain = next;
3069 return chain;
3072 /* Reverse the order of elements in the chain T,
3073 and return the new head of the chain (old last element). */
3075 tree
3076 nreverse (tree t)
3078 tree prev = 0, decl, next;
3079 for (decl = t; decl; decl = next)
3081 /* We shouldn't be using this function to reverse BLOCK chains; we
3082 have blocks_nreverse for that. */
3083 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3084 next = TREE_CHAIN (decl);
3085 TREE_CHAIN (decl) = prev;
3086 prev = decl;
3088 return prev;
3091 /* Return a newly created TREE_LIST node whose
3092 purpose and value fields are PARM and VALUE. */
3094 tree
3095 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3097 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3098 TREE_PURPOSE (t) = parm;
3099 TREE_VALUE (t) = value;
3100 return t;
3103 /* Build a chain of TREE_LIST nodes from a vector. */
3105 tree
3106 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3108 tree ret = NULL_TREE;
3109 tree *pp = &ret;
3110 unsigned int i;
3111 tree t;
3112 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3114 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3115 pp = &TREE_CHAIN (*pp);
3117 return ret;
3120 /* Return a newly created TREE_LIST node whose
3121 purpose and value fields are PURPOSE and VALUE
3122 and whose TREE_CHAIN is CHAIN. */
3124 tree
3125 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3127 tree node;
3129 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3130 memset (node, 0, sizeof (struct tree_common));
3132 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3134 TREE_SET_CODE (node, TREE_LIST);
3135 TREE_CHAIN (node) = chain;
3136 TREE_PURPOSE (node) = purpose;
3137 TREE_VALUE (node) = value;
3138 return node;
3141 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3142 trees. */
3144 vec<tree, va_gc> *
3145 ctor_to_vec (tree ctor)
3147 vec<tree, va_gc> *vec;
3148 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3149 unsigned int ix;
3150 tree val;
3152 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3153 vec->quick_push (val);
3155 return vec;
3158 /* Return the size nominally occupied by an object of type TYPE
3159 when it resides in memory. The value is measured in units of bytes,
3160 and its data type is that normally used for type sizes
3161 (which is the first type created by make_signed_type or
3162 make_unsigned_type). */
3164 tree
3165 size_in_bytes_loc (location_t loc, const_tree type)
3167 tree t;
3169 if (type == error_mark_node)
3170 return integer_zero_node;
3172 type = TYPE_MAIN_VARIANT (type);
3173 t = TYPE_SIZE_UNIT (type);
3175 if (t == 0)
3177 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3178 return size_zero_node;
3181 return t;
3184 /* Return the size of TYPE (in bytes) as a wide integer
3185 or return -1 if the size can vary or is larger than an integer. */
3187 HOST_WIDE_INT
3188 int_size_in_bytes (const_tree type)
3190 tree t;
3192 if (type == error_mark_node)
3193 return 0;
3195 type = TYPE_MAIN_VARIANT (type);
3196 t = TYPE_SIZE_UNIT (type);
3198 if (t && tree_fits_uhwi_p (t))
3199 return TREE_INT_CST_LOW (t);
3200 else
3201 return -1;
3204 /* Return the maximum size of TYPE (in bytes) as a wide integer
3205 or return -1 if the size can vary or is larger than an integer. */
3207 HOST_WIDE_INT
3208 max_int_size_in_bytes (const_tree type)
3210 HOST_WIDE_INT size = -1;
3211 tree size_tree;
3213 /* If this is an array type, check for a possible MAX_SIZE attached. */
3215 if (TREE_CODE (type) == ARRAY_TYPE)
3217 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3219 if (size_tree && tree_fits_uhwi_p (size_tree))
3220 size = tree_to_uhwi (size_tree);
3223 /* If we still haven't been able to get a size, see if the language
3224 can compute a maximum size. */
3226 if (size == -1)
3228 size_tree = lang_hooks.types.max_size (type);
3230 if (size_tree && tree_fits_uhwi_p (size_tree))
3231 size = tree_to_uhwi (size_tree);
3234 return size;
3237 /* Return the bit position of FIELD, in bits from the start of the record.
3238 This is a tree of type bitsizetype. */
3240 tree
3241 bit_position (const_tree field)
3243 return bit_from_pos (DECL_FIELD_OFFSET (field),
3244 DECL_FIELD_BIT_OFFSET (field));
3247 /* Return the byte position of FIELD, in bytes from the start of the record.
3248 This is a tree of type sizetype. */
3250 tree
3251 byte_position (const_tree field)
3253 return byte_from_pos (DECL_FIELD_OFFSET (field),
3254 DECL_FIELD_BIT_OFFSET (field));
3257 /* Likewise, but return as an integer. It must be representable in
3258 that way (since it could be a signed value, we don't have the
3259 option of returning -1 like int_size_in_byte can. */
3261 HOST_WIDE_INT
3262 int_byte_position (const_tree field)
3264 return tree_to_shwi (byte_position (field));
3267 /* Return the strictest alignment, in bits, that T is known to have. */
3269 unsigned int
3270 expr_align (const_tree t)
3272 unsigned int align0, align1;
3274 switch (TREE_CODE (t))
3276 CASE_CONVERT: case NON_LVALUE_EXPR:
3277 /* If we have conversions, we know that the alignment of the
3278 object must meet each of the alignments of the types. */
3279 align0 = expr_align (TREE_OPERAND (t, 0));
3280 align1 = TYPE_ALIGN (TREE_TYPE (t));
3281 return MAX (align0, align1);
3283 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3284 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3285 case CLEANUP_POINT_EXPR:
3286 /* These don't change the alignment of an object. */
3287 return expr_align (TREE_OPERAND (t, 0));
3289 case COND_EXPR:
3290 /* The best we can do is say that the alignment is the least aligned
3291 of the two arms. */
3292 align0 = expr_align (TREE_OPERAND (t, 1));
3293 align1 = expr_align (TREE_OPERAND (t, 2));
3294 return MIN (align0, align1);
3296 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3297 meaningfully, it's always 1. */
3298 case LABEL_DECL: case CONST_DECL:
3299 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3300 case FUNCTION_DECL:
3301 gcc_assert (DECL_ALIGN (t) != 0);
3302 return DECL_ALIGN (t);
3304 default:
3305 break;
3308 /* Otherwise take the alignment from that of the type. */
3309 return TYPE_ALIGN (TREE_TYPE (t));
3312 /* Return, as a tree node, the number of elements for TYPE (which is an
3313 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3315 tree
3316 array_type_nelts (const_tree type)
3318 tree index_type, min, max;
3320 /* If they did it with unspecified bounds, then we should have already
3321 given an error about it before we got here. */
3322 if (! TYPE_DOMAIN (type))
3323 return error_mark_node;
3325 index_type = TYPE_DOMAIN (type);
3326 min = TYPE_MIN_VALUE (index_type);
3327 max = TYPE_MAX_VALUE (index_type);
3329 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3330 if (!max)
3331 return error_mark_node;
3333 return (integer_zerop (min)
3334 ? max
3335 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3338 /* If arg is static -- a reference to an object in static storage -- then
3339 return the object. This is not the same as the C meaning of `static'.
3340 If arg isn't static, return NULL. */
3342 tree
3343 staticp (tree arg)
3345 switch (TREE_CODE (arg))
3347 case FUNCTION_DECL:
3348 /* Nested functions are static, even though taking their address will
3349 involve a trampoline as we unnest the nested function and create
3350 the trampoline on the tree level. */
3351 return arg;
3353 case VAR_DECL:
3354 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3355 && ! DECL_THREAD_LOCAL_P (arg)
3356 && ! DECL_DLLIMPORT_P (arg)
3357 ? arg : NULL);
3359 case CONST_DECL:
3360 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3361 ? arg : NULL);
3363 case CONSTRUCTOR:
3364 return TREE_STATIC (arg) ? arg : NULL;
3366 case LABEL_DECL:
3367 case STRING_CST:
3368 return arg;
3370 case COMPONENT_REF:
3371 /* If the thing being referenced is not a field, then it is
3372 something language specific. */
3373 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3375 /* If we are referencing a bitfield, we can't evaluate an
3376 ADDR_EXPR at compile time and so it isn't a constant. */
3377 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3378 return NULL;
3380 return staticp (TREE_OPERAND (arg, 0));
3382 case BIT_FIELD_REF:
3383 return NULL;
3385 case INDIRECT_REF:
3386 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3388 case ARRAY_REF:
3389 case ARRAY_RANGE_REF:
3390 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3391 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3392 return staticp (TREE_OPERAND (arg, 0));
3393 else
3394 return NULL;
3396 case COMPOUND_LITERAL_EXPR:
3397 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3399 default:
3400 return NULL;
3407 /* Return whether OP is a DECL whose address is function-invariant. */
3409 bool
3410 decl_address_invariant_p (const_tree op)
3412 /* The conditions below are slightly less strict than the one in
3413 staticp. */
3415 switch (TREE_CODE (op))
3417 case PARM_DECL:
3418 case RESULT_DECL:
3419 case LABEL_DECL:
3420 case FUNCTION_DECL:
3421 return true;
3423 case VAR_DECL:
3424 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3425 || DECL_THREAD_LOCAL_P (op)
3426 || DECL_CONTEXT (op) == current_function_decl
3427 || decl_function_context (op) == current_function_decl)
3428 return true;
3429 break;
3431 case CONST_DECL:
3432 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3433 || decl_function_context (op) == current_function_decl)
3434 return true;
3435 break;
3437 default:
3438 break;
3441 return false;
3444 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3446 bool
3447 decl_address_ip_invariant_p (const_tree op)
3449 /* The conditions below are slightly less strict than the one in
3450 staticp. */
3452 switch (TREE_CODE (op))
3454 case LABEL_DECL:
3455 case FUNCTION_DECL:
3456 case STRING_CST:
3457 return true;
3459 case VAR_DECL:
3460 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3461 && !DECL_DLLIMPORT_P (op))
3462 || DECL_THREAD_LOCAL_P (op))
3463 return true;
3464 break;
3466 case CONST_DECL:
3467 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3468 return true;
3469 break;
3471 default:
3472 break;
3475 return false;
3479 /* Return true if T is function-invariant (internal function, does
3480 not handle arithmetic; that's handled in skip_simple_arithmetic and
3481 tree_invariant_p). */
3483 static bool
3484 tree_invariant_p_1 (tree t)
3486 tree op;
3488 if (TREE_CONSTANT (t)
3489 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3490 return true;
3492 switch (TREE_CODE (t))
3494 case SAVE_EXPR:
3495 return true;
3497 case ADDR_EXPR:
3498 op = TREE_OPERAND (t, 0);
3499 while (handled_component_p (op))
3501 switch (TREE_CODE (op))
3503 case ARRAY_REF:
3504 case ARRAY_RANGE_REF:
3505 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3506 || TREE_OPERAND (op, 2) != NULL_TREE
3507 || TREE_OPERAND (op, 3) != NULL_TREE)
3508 return false;
3509 break;
3511 case COMPONENT_REF:
3512 if (TREE_OPERAND (op, 2) != NULL_TREE)
3513 return false;
3514 break;
3516 default:;
3518 op = TREE_OPERAND (op, 0);
3521 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3523 default:
3524 break;
3527 return false;
3530 /* Return true if T is function-invariant. */
3532 bool
3533 tree_invariant_p (tree t)
3535 tree inner = skip_simple_arithmetic (t);
3536 return tree_invariant_p_1 (inner);
3539 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3540 Do this to any expression which may be used in more than one place,
3541 but must be evaluated only once.
3543 Normally, expand_expr would reevaluate the expression each time.
3544 Calling save_expr produces something that is evaluated and recorded
3545 the first time expand_expr is called on it. Subsequent calls to
3546 expand_expr just reuse the recorded value.
3548 The call to expand_expr that generates code that actually computes
3549 the value is the first call *at compile time*. Subsequent calls
3550 *at compile time* generate code to use the saved value.
3551 This produces correct result provided that *at run time* control
3552 always flows through the insns made by the first expand_expr
3553 before reaching the other places where the save_expr was evaluated.
3554 You, the caller of save_expr, must make sure this is so.
3556 Constants, and certain read-only nodes, are returned with no
3557 SAVE_EXPR because that is safe. Expressions containing placeholders
3558 are not touched; see tree.def for an explanation of what these
3559 are used for. */
3561 tree
3562 save_expr (tree expr)
3564 tree inner;
3566 /* If the tree evaluates to a constant, then we don't want to hide that
3567 fact (i.e. this allows further folding, and direct checks for constants).
3568 However, a read-only object that has side effects cannot be bypassed.
3569 Since it is no problem to reevaluate literals, we just return the
3570 literal node. */
3571 inner = skip_simple_arithmetic (expr);
3572 if (TREE_CODE (inner) == ERROR_MARK)
3573 return inner;
3575 if (tree_invariant_p_1 (inner))
3576 return expr;
3578 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3579 it means that the size or offset of some field of an object depends on
3580 the value within another field.
3582 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3583 and some variable since it would then need to be both evaluated once and
3584 evaluated more than once. Front-ends must assure this case cannot
3585 happen by surrounding any such subexpressions in their own SAVE_EXPR
3586 and forcing evaluation at the proper time. */
3587 if (contains_placeholder_p (inner))
3588 return expr;
3590 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3592 /* This expression might be placed ahead of a jump to ensure that the
3593 value was computed on both sides of the jump. So make sure it isn't
3594 eliminated as dead. */
3595 TREE_SIDE_EFFECTS (expr) = 1;
3596 return expr;
3599 /* Look inside EXPR into any simple arithmetic operations. Return the
3600 outermost non-arithmetic or non-invariant node. */
3602 tree
3603 skip_simple_arithmetic (tree expr)
3605 /* We don't care about whether this can be used as an lvalue in this
3606 context. */
3607 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3608 expr = TREE_OPERAND (expr, 0);
3610 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3611 a constant, it will be more efficient to not make another SAVE_EXPR since
3612 it will allow better simplification and GCSE will be able to merge the
3613 computations if they actually occur. */
3614 while (true)
3616 if (UNARY_CLASS_P (expr))
3617 expr = TREE_OPERAND (expr, 0);
3618 else if (BINARY_CLASS_P (expr))
3620 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3621 expr = TREE_OPERAND (expr, 0);
3622 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3623 expr = TREE_OPERAND (expr, 1);
3624 else
3625 break;
3627 else
3628 break;
3631 return expr;
3634 /* Look inside EXPR into simple arithmetic operations involving constants.
3635 Return the outermost non-arithmetic or non-constant node. */
3637 tree
3638 skip_simple_constant_arithmetic (tree expr)
3640 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3641 expr = TREE_OPERAND (expr, 0);
3643 while (true)
3645 if (UNARY_CLASS_P (expr))
3646 expr = TREE_OPERAND (expr, 0);
3647 else if (BINARY_CLASS_P (expr))
3649 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3650 expr = TREE_OPERAND (expr, 0);
3651 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3652 expr = TREE_OPERAND (expr, 1);
3653 else
3654 break;
3656 else
3657 break;
3660 return expr;
3663 /* Return which tree structure is used by T. */
3665 enum tree_node_structure_enum
3666 tree_node_structure (const_tree t)
3668 const enum tree_code code = TREE_CODE (t);
3669 return tree_node_structure_for_code (code);
3672 /* Set various status flags when building a CALL_EXPR object T. */
3674 static void
3675 process_call_operands (tree t)
3677 bool side_effects = TREE_SIDE_EFFECTS (t);
3678 bool read_only = false;
3679 int i = call_expr_flags (t);
3681 /* Calls have side-effects, except those to const or pure functions. */
3682 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3683 side_effects = true;
3684 /* Propagate TREE_READONLY of arguments for const functions. */
3685 if (i & ECF_CONST)
3686 read_only = true;
3688 if (!side_effects || read_only)
3689 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3691 tree op = TREE_OPERAND (t, i);
3692 if (op && TREE_SIDE_EFFECTS (op))
3693 side_effects = true;
3694 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3695 read_only = false;
3698 TREE_SIDE_EFFECTS (t) = side_effects;
3699 TREE_READONLY (t) = read_only;
3702 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3703 size or offset that depends on a field within a record. */
3705 bool
3706 contains_placeholder_p (const_tree exp)
3708 enum tree_code code;
3710 if (!exp)
3711 return 0;
3713 code = TREE_CODE (exp);
3714 if (code == PLACEHOLDER_EXPR)
3715 return 1;
3717 switch (TREE_CODE_CLASS (code))
3719 case tcc_reference:
3720 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3721 position computations since they will be converted into a
3722 WITH_RECORD_EXPR involving the reference, which will assume
3723 here will be valid. */
3724 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3726 case tcc_exceptional:
3727 if (code == TREE_LIST)
3728 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3729 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3730 break;
3732 case tcc_unary:
3733 case tcc_binary:
3734 case tcc_comparison:
3735 case tcc_expression:
3736 switch (code)
3738 case COMPOUND_EXPR:
3739 /* Ignoring the first operand isn't quite right, but works best. */
3740 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3742 case COND_EXPR:
3743 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3744 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3745 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3747 case SAVE_EXPR:
3748 /* The save_expr function never wraps anything containing
3749 a PLACEHOLDER_EXPR. */
3750 return 0;
3752 default:
3753 break;
3756 switch (TREE_CODE_LENGTH (code))
3758 case 1:
3759 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3760 case 2:
3761 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3762 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3763 default:
3764 return 0;
3767 case tcc_vl_exp:
3768 switch (code)
3770 case CALL_EXPR:
3772 const_tree arg;
3773 const_call_expr_arg_iterator iter;
3774 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3775 if (CONTAINS_PLACEHOLDER_P (arg))
3776 return 1;
3777 return 0;
3779 default:
3780 return 0;
3783 default:
3784 return 0;
3786 return 0;
3789 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3790 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3791 field positions. */
3793 static bool
3794 type_contains_placeholder_1 (const_tree type)
3796 /* If the size contains a placeholder or the parent type (component type in
3797 the case of arrays) type involves a placeholder, this type does. */
3798 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3799 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3800 || (!POINTER_TYPE_P (type)
3801 && TREE_TYPE (type)
3802 && type_contains_placeholder_p (TREE_TYPE (type))))
3803 return true;
3805 /* Now do type-specific checks. Note that the last part of the check above
3806 greatly limits what we have to do below. */
3807 switch (TREE_CODE (type))
3809 case VOID_TYPE:
3810 case COMPLEX_TYPE:
3811 case ENUMERAL_TYPE:
3812 case BOOLEAN_TYPE:
3813 case POINTER_TYPE:
3814 case OFFSET_TYPE:
3815 case REFERENCE_TYPE:
3816 case METHOD_TYPE:
3817 case FUNCTION_TYPE:
3818 case VECTOR_TYPE:
3819 case NULLPTR_TYPE:
3820 return false;
3822 case INTEGER_TYPE:
3823 case REAL_TYPE:
3824 case FIXED_POINT_TYPE:
3825 /* Here we just check the bounds. */
3826 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3827 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3829 case ARRAY_TYPE:
3830 /* We have already checked the component type above, so just check
3831 the domain type. Flexible array members have a null domain. */
3832 return TYPE_DOMAIN (type) ?
3833 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3835 case RECORD_TYPE:
3836 case UNION_TYPE:
3837 case QUAL_UNION_TYPE:
3839 tree field;
3841 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3842 if (TREE_CODE (field) == FIELD_DECL
3843 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3844 || (TREE_CODE (type) == QUAL_UNION_TYPE
3845 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3846 || type_contains_placeholder_p (TREE_TYPE (field))))
3847 return true;
3849 return false;
3852 default:
3853 gcc_unreachable ();
3857 /* Wrapper around above function used to cache its result. */
3859 bool
3860 type_contains_placeholder_p (tree type)
3862 bool result;
3864 /* If the contains_placeholder_bits field has been initialized,
3865 then we know the answer. */
3866 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3867 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3869 /* Indicate that we've seen this type node, and the answer is false.
3870 This is what we want to return if we run into recursion via fields. */
3871 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3873 /* Compute the real value. */
3874 result = type_contains_placeholder_1 (type);
3876 /* Store the real value. */
3877 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3879 return result;
3882 /* Push tree EXP onto vector QUEUE if it is not already present. */
3884 static void
3885 push_without_duplicates (tree exp, vec<tree> *queue)
3887 unsigned int i;
3888 tree iter;
3890 FOR_EACH_VEC_ELT (*queue, i, iter)
3891 if (simple_cst_equal (iter, exp) == 1)
3892 break;
3894 if (!iter)
3895 queue->safe_push (exp);
3898 /* Given a tree EXP, find all occurrences of references to fields
3899 in a PLACEHOLDER_EXPR and place them in vector REFS without
3900 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3901 we assume here that EXP contains only arithmetic expressions
3902 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3903 argument list. */
3905 void
3906 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3908 enum tree_code code = TREE_CODE (exp);
3909 tree inner;
3910 int i;
3912 /* We handle TREE_LIST and COMPONENT_REF separately. */
3913 if (code == TREE_LIST)
3915 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3916 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3918 else if (code == COMPONENT_REF)
3920 for (inner = TREE_OPERAND (exp, 0);
3921 REFERENCE_CLASS_P (inner);
3922 inner = TREE_OPERAND (inner, 0))
3925 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3926 push_without_duplicates (exp, refs);
3927 else
3928 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3930 else
3931 switch (TREE_CODE_CLASS (code))
3933 case tcc_constant:
3934 break;
3936 case tcc_declaration:
3937 /* Variables allocated to static storage can stay. */
3938 if (!TREE_STATIC (exp))
3939 push_without_duplicates (exp, refs);
3940 break;
3942 case tcc_expression:
3943 /* This is the pattern built in ada/make_aligning_type. */
3944 if (code == ADDR_EXPR
3945 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3947 push_without_duplicates (exp, refs);
3948 break;
3951 /* Fall through. */
3953 case tcc_exceptional:
3954 case tcc_unary:
3955 case tcc_binary:
3956 case tcc_comparison:
3957 case tcc_reference:
3958 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3959 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3960 break;
3962 case tcc_vl_exp:
3963 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3964 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3965 break;
3967 default:
3968 gcc_unreachable ();
3972 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3973 return a tree with all occurrences of references to F in a
3974 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3975 CONST_DECLs. Note that we assume here that EXP contains only
3976 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3977 occurring only in their argument list. */
3979 tree
3980 substitute_in_expr (tree exp, tree f, tree r)
3982 enum tree_code code = TREE_CODE (exp);
3983 tree op0, op1, op2, op3;
3984 tree new_tree;
3986 /* We handle TREE_LIST and COMPONENT_REF separately. */
3987 if (code == TREE_LIST)
3989 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3990 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3991 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3992 return exp;
3994 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3996 else if (code == COMPONENT_REF)
3998 tree inner;
4000 /* If this expression is getting a value from a PLACEHOLDER_EXPR
4001 and it is the right field, replace it with R. */
4002 for (inner = TREE_OPERAND (exp, 0);
4003 REFERENCE_CLASS_P (inner);
4004 inner = TREE_OPERAND (inner, 0))
4007 /* The field. */
4008 op1 = TREE_OPERAND (exp, 1);
4010 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
4011 return r;
4013 /* If this expression hasn't been completed let, leave it alone. */
4014 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
4015 return exp;
4017 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4018 if (op0 == TREE_OPERAND (exp, 0))
4019 return exp;
4021 new_tree
4022 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4024 else
4025 switch (TREE_CODE_CLASS (code))
4027 case tcc_constant:
4028 return exp;
4030 case tcc_declaration:
4031 if (exp == f)
4032 return r;
4033 else
4034 return exp;
4036 case tcc_expression:
4037 if (exp == f)
4038 return r;
4040 /* Fall through. */
4042 case tcc_exceptional:
4043 case tcc_unary:
4044 case tcc_binary:
4045 case tcc_comparison:
4046 case tcc_reference:
4047 switch (TREE_CODE_LENGTH (code))
4049 case 0:
4050 return exp;
4052 case 1:
4053 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4054 if (op0 == TREE_OPERAND (exp, 0))
4055 return exp;
4057 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4058 break;
4060 case 2:
4061 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4062 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4064 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4065 return exp;
4067 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4068 break;
4070 case 3:
4071 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4072 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4073 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4075 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4076 && op2 == TREE_OPERAND (exp, 2))
4077 return exp;
4079 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4080 break;
4082 case 4:
4083 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4084 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4085 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4086 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4088 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4089 && op2 == TREE_OPERAND (exp, 2)
4090 && op3 == TREE_OPERAND (exp, 3))
4091 return exp;
4093 new_tree
4094 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4095 break;
4097 default:
4098 gcc_unreachable ();
4100 break;
4102 case tcc_vl_exp:
4104 int i;
4106 new_tree = NULL_TREE;
4108 /* If we are trying to replace F with a constant or with another
4109 instance of one of the arguments of the call, inline back
4110 functions which do nothing else than computing a value from
4111 the arguments they are passed. This makes it possible to
4112 fold partially or entirely the replacement expression. */
4113 if (code == CALL_EXPR)
4115 bool maybe_inline = false;
4116 if (CONSTANT_CLASS_P (r))
4117 maybe_inline = true;
4118 else
4119 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4120 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4122 maybe_inline = true;
4123 break;
4125 if (maybe_inline)
4127 tree t = maybe_inline_call_in_expr (exp);
4128 if (t)
4129 return SUBSTITUTE_IN_EXPR (t, f, r);
4133 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4135 tree op = TREE_OPERAND (exp, i);
4136 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4137 if (new_op != op)
4139 if (!new_tree)
4140 new_tree = copy_node (exp);
4141 TREE_OPERAND (new_tree, i) = new_op;
4145 if (new_tree)
4147 new_tree = fold (new_tree);
4148 if (TREE_CODE (new_tree) == CALL_EXPR)
4149 process_call_operands (new_tree);
4151 else
4152 return exp;
4154 break;
4156 default:
4157 gcc_unreachable ();
4160 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4162 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4163 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4165 return new_tree;
4168 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4169 for it within OBJ, a tree that is an object or a chain of references. */
4171 tree
4172 substitute_placeholder_in_expr (tree exp, tree obj)
4174 enum tree_code code = TREE_CODE (exp);
4175 tree op0, op1, op2, op3;
4176 tree new_tree;
4178 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4179 in the chain of OBJ. */
4180 if (code == PLACEHOLDER_EXPR)
4182 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4183 tree elt;
4185 for (elt = obj; elt != 0;
4186 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4187 || TREE_CODE (elt) == COND_EXPR)
4188 ? TREE_OPERAND (elt, 1)
4189 : (REFERENCE_CLASS_P (elt)
4190 || UNARY_CLASS_P (elt)
4191 || BINARY_CLASS_P (elt)
4192 || VL_EXP_CLASS_P (elt)
4193 || EXPRESSION_CLASS_P (elt))
4194 ? TREE_OPERAND (elt, 0) : 0))
4195 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4196 return elt;
4198 for (elt = obj; elt != 0;
4199 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4200 || TREE_CODE (elt) == COND_EXPR)
4201 ? TREE_OPERAND (elt, 1)
4202 : (REFERENCE_CLASS_P (elt)
4203 || UNARY_CLASS_P (elt)
4204 || BINARY_CLASS_P (elt)
4205 || VL_EXP_CLASS_P (elt)
4206 || EXPRESSION_CLASS_P (elt))
4207 ? TREE_OPERAND (elt, 0) : 0))
4208 if (POINTER_TYPE_P (TREE_TYPE (elt))
4209 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4210 == need_type))
4211 return fold_build1 (INDIRECT_REF, need_type, elt);
4213 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4214 survives until RTL generation, there will be an error. */
4215 return exp;
4218 /* TREE_LIST is special because we need to look at TREE_VALUE
4219 and TREE_CHAIN, not TREE_OPERANDS. */
4220 else if (code == TREE_LIST)
4222 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4223 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4224 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4225 return exp;
4227 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4229 else
4230 switch (TREE_CODE_CLASS (code))
4232 case tcc_constant:
4233 case tcc_declaration:
4234 return exp;
4236 case tcc_exceptional:
4237 case tcc_unary:
4238 case tcc_binary:
4239 case tcc_comparison:
4240 case tcc_expression:
4241 case tcc_reference:
4242 case tcc_statement:
4243 switch (TREE_CODE_LENGTH (code))
4245 case 0:
4246 return exp;
4248 case 1:
4249 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4250 if (op0 == TREE_OPERAND (exp, 0))
4251 return exp;
4253 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4254 break;
4256 case 2:
4257 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4258 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4260 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4261 return exp;
4263 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4264 break;
4266 case 3:
4267 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4268 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4269 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4271 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4272 && op2 == TREE_OPERAND (exp, 2))
4273 return exp;
4275 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4276 break;
4278 case 4:
4279 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4280 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4281 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4282 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4284 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4285 && op2 == TREE_OPERAND (exp, 2)
4286 && op3 == TREE_OPERAND (exp, 3))
4287 return exp;
4289 new_tree
4290 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4291 break;
4293 default:
4294 gcc_unreachable ();
4296 break;
4298 case tcc_vl_exp:
4300 int i;
4302 new_tree = NULL_TREE;
4304 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4306 tree op = TREE_OPERAND (exp, i);
4307 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4308 if (new_op != op)
4310 if (!new_tree)
4311 new_tree = copy_node (exp);
4312 TREE_OPERAND (new_tree, i) = new_op;
4316 if (new_tree)
4318 new_tree = fold (new_tree);
4319 if (TREE_CODE (new_tree) == CALL_EXPR)
4320 process_call_operands (new_tree);
4322 else
4323 return exp;
4325 break;
4327 default:
4328 gcc_unreachable ();
4331 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4333 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4334 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4336 return new_tree;
4340 /* Subroutine of stabilize_reference; this is called for subtrees of
4341 references. Any expression with side-effects must be put in a SAVE_EXPR
4342 to ensure that it is only evaluated once.
4344 We don't put SAVE_EXPR nodes around everything, because assigning very
4345 simple expressions to temporaries causes us to miss good opportunities
4346 for optimizations. Among other things, the opportunity to fold in the
4347 addition of a constant into an addressing mode often gets lost, e.g.
4348 "y[i+1] += x;". In general, we take the approach that we should not make
4349 an assignment unless we are forced into it - i.e., that any non-side effect
4350 operator should be allowed, and that cse should take care of coalescing
4351 multiple utterances of the same expression should that prove fruitful. */
4353 static tree
4354 stabilize_reference_1 (tree e)
4356 tree result;
4357 enum tree_code code = TREE_CODE (e);
4359 /* We cannot ignore const expressions because it might be a reference
4360 to a const array but whose index contains side-effects. But we can
4361 ignore things that are actual constant or that already have been
4362 handled by this function. */
4364 if (tree_invariant_p (e))
4365 return e;
4367 switch (TREE_CODE_CLASS (code))
4369 case tcc_exceptional:
4370 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4371 have side-effects. */
4372 if (code == STATEMENT_LIST)
4373 return save_expr (e);
4374 /* FALLTHRU */
4375 case tcc_type:
4376 case tcc_declaration:
4377 case tcc_comparison:
4378 case tcc_statement:
4379 case tcc_expression:
4380 case tcc_reference:
4381 case tcc_vl_exp:
4382 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4383 so that it will only be evaluated once. */
4384 /* The reference (r) and comparison (<) classes could be handled as
4385 below, but it is generally faster to only evaluate them once. */
4386 if (TREE_SIDE_EFFECTS (e))
4387 return save_expr (e);
4388 return e;
4390 case tcc_constant:
4391 /* Constants need no processing. In fact, we should never reach
4392 here. */
4393 return e;
4395 case tcc_binary:
4396 /* Division is slow and tends to be compiled with jumps,
4397 especially the division by powers of 2 that is often
4398 found inside of an array reference. So do it just once. */
4399 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4400 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4401 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4402 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4403 return save_expr (e);
4404 /* Recursively stabilize each operand. */
4405 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4406 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4407 break;
4409 case tcc_unary:
4410 /* Recursively stabilize each operand. */
4411 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4412 break;
4414 default:
4415 gcc_unreachable ();
4418 TREE_TYPE (result) = TREE_TYPE (e);
4419 TREE_READONLY (result) = TREE_READONLY (e);
4420 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4421 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4423 return result;
4426 /* Stabilize a reference so that we can use it any number of times
4427 without causing its operands to be evaluated more than once.
4428 Returns the stabilized reference. This works by means of save_expr,
4429 so see the caveats in the comments about save_expr.
4431 Also allows conversion expressions whose operands are references.
4432 Any other kind of expression is returned unchanged. */
4434 tree
4435 stabilize_reference (tree ref)
4437 tree result;
4438 enum tree_code code = TREE_CODE (ref);
4440 switch (code)
4442 case VAR_DECL:
4443 case PARM_DECL:
4444 case RESULT_DECL:
4445 /* No action is needed in this case. */
4446 return ref;
4448 CASE_CONVERT:
4449 case FLOAT_EXPR:
4450 case FIX_TRUNC_EXPR:
4451 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4452 break;
4454 case INDIRECT_REF:
4455 result = build_nt (INDIRECT_REF,
4456 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4457 break;
4459 case COMPONENT_REF:
4460 result = build_nt (COMPONENT_REF,
4461 stabilize_reference (TREE_OPERAND (ref, 0)),
4462 TREE_OPERAND (ref, 1), NULL_TREE);
4463 break;
4465 case BIT_FIELD_REF:
4466 result = build_nt (BIT_FIELD_REF,
4467 stabilize_reference (TREE_OPERAND (ref, 0)),
4468 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4469 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4470 break;
4472 case ARRAY_REF:
4473 result = build_nt (ARRAY_REF,
4474 stabilize_reference (TREE_OPERAND (ref, 0)),
4475 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4476 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4477 break;
4479 case ARRAY_RANGE_REF:
4480 result = build_nt (ARRAY_RANGE_REF,
4481 stabilize_reference (TREE_OPERAND (ref, 0)),
4482 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4483 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4484 break;
4486 case COMPOUND_EXPR:
4487 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4488 it wouldn't be ignored. This matters when dealing with
4489 volatiles. */
4490 return stabilize_reference_1 (ref);
4492 /* If arg isn't a kind of lvalue we recognize, make no change.
4493 Caller should recognize the error for an invalid lvalue. */
4494 default:
4495 return ref;
4497 case ERROR_MARK:
4498 return error_mark_node;
4501 TREE_TYPE (result) = TREE_TYPE (ref);
4502 TREE_READONLY (result) = TREE_READONLY (ref);
4503 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4504 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4506 return result;
4509 /* Low-level constructors for expressions. */
4511 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4512 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4514 void
4515 recompute_tree_invariant_for_addr_expr (tree t)
4517 tree node;
4518 bool tc = true, se = false;
4520 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4522 /* We started out assuming this address is both invariant and constant, but
4523 does not have side effects. Now go down any handled components and see if
4524 any of them involve offsets that are either non-constant or non-invariant.
4525 Also check for side-effects.
4527 ??? Note that this code makes no attempt to deal with the case where
4528 taking the address of something causes a copy due to misalignment. */
4530 #define UPDATE_FLAGS(NODE) \
4531 do { tree _node = (NODE); \
4532 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4533 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4535 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4536 node = TREE_OPERAND (node, 0))
4538 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4539 array reference (probably made temporarily by the G++ front end),
4540 so ignore all the operands. */
4541 if ((TREE_CODE (node) == ARRAY_REF
4542 || TREE_CODE (node) == ARRAY_RANGE_REF)
4543 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4545 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4546 if (TREE_OPERAND (node, 2))
4547 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4548 if (TREE_OPERAND (node, 3))
4549 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4551 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4552 FIELD_DECL, apparently. The G++ front end can put something else
4553 there, at least temporarily. */
4554 else if (TREE_CODE (node) == COMPONENT_REF
4555 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4557 if (TREE_OPERAND (node, 2))
4558 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4562 node = lang_hooks.expr_to_decl (node, &tc, &se);
4564 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4565 the address, since &(*a)->b is a form of addition. If it's a constant, the
4566 address is constant too. If it's a decl, its address is constant if the
4567 decl is static. Everything else is not constant and, furthermore,
4568 taking the address of a volatile variable is not volatile. */
4569 if (TREE_CODE (node) == INDIRECT_REF
4570 || TREE_CODE (node) == MEM_REF)
4571 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4572 else if (CONSTANT_CLASS_P (node))
4574 else if (DECL_P (node))
4575 tc &= (staticp (node) != NULL_TREE);
4576 else
4578 tc = false;
4579 se |= TREE_SIDE_EFFECTS (node);
4583 TREE_CONSTANT (t) = tc;
4584 TREE_SIDE_EFFECTS (t) = se;
4585 #undef UPDATE_FLAGS
4588 /* Build an expression of code CODE, data type TYPE, and operands as
4589 specified. Expressions and reference nodes can be created this way.
4590 Constants, decls, types and misc nodes cannot be.
4592 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4593 enough for all extant tree codes. */
4595 tree
4596 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4598 tree t;
4600 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4602 t = make_node (code PASS_MEM_STAT);
4603 TREE_TYPE (t) = tt;
4605 return t;
4608 tree
4609 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4611 int length = sizeof (struct tree_exp);
4612 tree t;
4614 record_node_allocation_statistics (code, length);
4616 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4618 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4620 memset (t, 0, sizeof (struct tree_common));
4622 TREE_SET_CODE (t, code);
4624 TREE_TYPE (t) = type;
4625 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4626 TREE_OPERAND (t, 0) = node;
4627 if (node && !TYPE_P (node))
4629 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4630 TREE_READONLY (t) = TREE_READONLY (node);
4633 if (TREE_CODE_CLASS (code) == tcc_statement)
4635 if (code != DEBUG_BEGIN_STMT)
4636 TREE_SIDE_EFFECTS (t) = 1;
4638 else switch (code)
4640 case VA_ARG_EXPR:
4641 /* All of these have side-effects, no matter what their
4642 operands are. */
4643 TREE_SIDE_EFFECTS (t) = 1;
4644 TREE_READONLY (t) = 0;
4645 break;
4647 case INDIRECT_REF:
4648 /* Whether a dereference is readonly has nothing to do with whether
4649 its operand is readonly. */
4650 TREE_READONLY (t) = 0;
4651 break;
4653 case ADDR_EXPR:
4654 if (node)
4655 recompute_tree_invariant_for_addr_expr (t);
4656 break;
4658 default:
4659 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4660 && node && !TYPE_P (node)
4661 && TREE_CONSTANT (node))
4662 TREE_CONSTANT (t) = 1;
4663 if (TREE_CODE_CLASS (code) == tcc_reference
4664 && node && TREE_THIS_VOLATILE (node))
4665 TREE_THIS_VOLATILE (t) = 1;
4666 break;
4669 return t;
4672 #define PROCESS_ARG(N) \
4673 do { \
4674 TREE_OPERAND (t, N) = arg##N; \
4675 if (arg##N &&!TYPE_P (arg##N)) \
4677 if (TREE_SIDE_EFFECTS (arg##N)) \
4678 side_effects = 1; \
4679 if (!TREE_READONLY (arg##N) \
4680 && !CONSTANT_CLASS_P (arg##N)) \
4681 (void) (read_only = 0); \
4682 if (!TREE_CONSTANT (arg##N)) \
4683 (void) (constant = 0); \
4685 } while (0)
4687 tree
4688 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4690 bool constant, read_only, side_effects, div_by_zero;
4691 tree t;
4693 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4695 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4696 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4697 /* When sizetype precision doesn't match that of pointers
4698 we need to be able to build explicit extensions or truncations
4699 of the offset argument. */
4700 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4701 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4702 && TREE_CODE (arg1) == INTEGER_CST);
4704 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4705 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4706 && ptrofftype_p (TREE_TYPE (arg1)));
4708 t = make_node (code PASS_MEM_STAT);
4709 TREE_TYPE (t) = tt;
4711 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4712 result based on those same flags for the arguments. But if the
4713 arguments aren't really even `tree' expressions, we shouldn't be trying
4714 to do this. */
4716 /* Expressions without side effects may be constant if their
4717 arguments are as well. */
4718 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4719 || TREE_CODE_CLASS (code) == tcc_binary);
4720 read_only = 1;
4721 side_effects = TREE_SIDE_EFFECTS (t);
4723 switch (code)
4725 case TRUNC_DIV_EXPR:
4726 case CEIL_DIV_EXPR:
4727 case FLOOR_DIV_EXPR:
4728 case ROUND_DIV_EXPR:
4729 case EXACT_DIV_EXPR:
4730 case CEIL_MOD_EXPR:
4731 case FLOOR_MOD_EXPR:
4732 case ROUND_MOD_EXPR:
4733 case TRUNC_MOD_EXPR:
4734 div_by_zero = integer_zerop (arg1);
4735 break;
4736 default:
4737 div_by_zero = false;
4740 PROCESS_ARG (0);
4741 PROCESS_ARG (1);
4743 TREE_SIDE_EFFECTS (t) = side_effects;
4744 if (code == MEM_REF)
4746 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4748 tree o = TREE_OPERAND (arg0, 0);
4749 TREE_READONLY (t) = TREE_READONLY (o);
4750 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4753 else
4755 TREE_READONLY (t) = read_only;
4756 /* Don't mark X / 0 as constant. */
4757 TREE_CONSTANT (t) = constant && !div_by_zero;
4758 TREE_THIS_VOLATILE (t)
4759 = (TREE_CODE_CLASS (code) == tcc_reference
4760 && arg0 && TREE_THIS_VOLATILE (arg0));
4763 return t;
4767 tree
4768 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4769 tree arg2 MEM_STAT_DECL)
4771 bool constant, read_only, side_effects;
4772 tree t;
4774 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4775 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4777 t = make_node (code PASS_MEM_STAT);
4778 TREE_TYPE (t) = tt;
4780 read_only = 1;
4782 /* As a special exception, if COND_EXPR has NULL branches, we
4783 assume that it is a gimple statement and always consider
4784 it to have side effects. */
4785 if (code == COND_EXPR
4786 && tt == void_type_node
4787 && arg1 == NULL_TREE
4788 && arg2 == NULL_TREE)
4789 side_effects = true;
4790 else
4791 side_effects = TREE_SIDE_EFFECTS (t);
4793 PROCESS_ARG (0);
4794 PROCESS_ARG (1);
4795 PROCESS_ARG (2);
4797 if (code == COND_EXPR)
4798 TREE_READONLY (t) = read_only;
4800 TREE_SIDE_EFFECTS (t) = side_effects;
4801 TREE_THIS_VOLATILE (t)
4802 = (TREE_CODE_CLASS (code) == tcc_reference
4803 && arg0 && TREE_THIS_VOLATILE (arg0));
4805 return t;
4808 tree
4809 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4810 tree arg2, tree arg3 MEM_STAT_DECL)
4812 bool constant, read_only, side_effects;
4813 tree t;
4815 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4817 t = make_node (code PASS_MEM_STAT);
4818 TREE_TYPE (t) = tt;
4820 side_effects = TREE_SIDE_EFFECTS (t);
4822 PROCESS_ARG (0);
4823 PROCESS_ARG (1);
4824 PROCESS_ARG (2);
4825 PROCESS_ARG (3);
4827 TREE_SIDE_EFFECTS (t) = side_effects;
4828 TREE_THIS_VOLATILE (t)
4829 = (TREE_CODE_CLASS (code) == tcc_reference
4830 && arg0 && TREE_THIS_VOLATILE (arg0));
4832 return t;
4835 tree
4836 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4837 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4839 bool constant, read_only, side_effects;
4840 tree t;
4842 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4844 t = make_node (code PASS_MEM_STAT);
4845 TREE_TYPE (t) = tt;
4847 side_effects = TREE_SIDE_EFFECTS (t);
4849 PROCESS_ARG (0);
4850 PROCESS_ARG (1);
4851 PROCESS_ARG (2);
4852 PROCESS_ARG (3);
4853 PROCESS_ARG (4);
4855 TREE_SIDE_EFFECTS (t) = side_effects;
4856 if (code == TARGET_MEM_REF)
4858 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4860 tree o = TREE_OPERAND (arg0, 0);
4861 TREE_READONLY (t) = TREE_READONLY (o);
4862 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4865 else
4866 TREE_THIS_VOLATILE (t)
4867 = (TREE_CODE_CLASS (code) == tcc_reference
4868 && arg0 && TREE_THIS_VOLATILE (arg0));
4870 return t;
4873 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4874 on the pointer PTR. */
4876 tree
4877 build_simple_mem_ref_loc (location_t loc, tree ptr)
4879 poly_int64 offset = 0;
4880 tree ptype = TREE_TYPE (ptr);
4881 tree tem;
4882 /* For convenience allow addresses that collapse to a simple base
4883 and offset. */
4884 if (TREE_CODE (ptr) == ADDR_EXPR
4885 && (handled_component_p (TREE_OPERAND (ptr, 0))
4886 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4888 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4889 gcc_assert (ptr);
4890 if (TREE_CODE (ptr) == MEM_REF)
4892 offset += mem_ref_offset (ptr).force_shwi ();
4893 ptr = TREE_OPERAND (ptr, 0);
4895 else
4896 ptr = build_fold_addr_expr (ptr);
4897 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4899 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4900 ptr, build_int_cst (ptype, offset));
4901 SET_EXPR_LOCATION (tem, loc);
4902 return tem;
4905 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4907 poly_offset_int
4908 mem_ref_offset (const_tree t)
4910 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
4911 SIGNED);
4914 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4915 offsetted by OFFSET units. */
4917 tree
4918 build_invariant_address (tree type, tree base, poly_int64 offset)
4920 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4921 build_fold_addr_expr (base),
4922 build_int_cst (ptr_type_node, offset));
4923 tree addr = build1 (ADDR_EXPR, type, ref);
4924 recompute_tree_invariant_for_addr_expr (addr);
4925 return addr;
4928 /* Similar except don't specify the TREE_TYPE
4929 and leave the TREE_SIDE_EFFECTS as 0.
4930 It is permissible for arguments to be null,
4931 or even garbage if their values do not matter. */
4933 tree
4934 build_nt (enum tree_code code, ...)
4936 tree t;
4937 int length;
4938 int i;
4939 va_list p;
4941 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4943 va_start (p, code);
4945 t = make_node (code);
4946 length = TREE_CODE_LENGTH (code);
4948 for (i = 0; i < length; i++)
4949 TREE_OPERAND (t, i) = va_arg (p, tree);
4951 va_end (p);
4952 return t;
4955 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4956 tree vec. */
4958 tree
4959 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4961 tree ret, t;
4962 unsigned int ix;
4964 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4965 CALL_EXPR_FN (ret) = fn;
4966 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4967 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4968 CALL_EXPR_ARG (ret, ix) = t;
4969 return ret;
4972 /* Create a DECL_... node of code CODE, name NAME (if non-null)
4973 and data type TYPE.
4974 We do NOT enter this node in any sort of symbol table.
4976 LOC is the location of the decl.
4978 layout_decl is used to set up the decl's storage layout.
4979 Other slots are initialized to 0 or null pointers. */
4981 tree
4982 build_decl (location_t loc, enum tree_code code, tree name,
4983 tree type MEM_STAT_DECL)
4985 tree t;
4987 t = make_node (code PASS_MEM_STAT);
4988 DECL_SOURCE_LOCATION (t) = loc;
4990 /* if (type == error_mark_node)
4991 type = integer_type_node; */
4992 /* That is not done, deliberately, so that having error_mark_node
4993 as the type can suppress useless errors in the use of this variable. */
4995 DECL_NAME (t) = name;
4996 TREE_TYPE (t) = type;
4998 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4999 layout_decl (t, 0);
5001 return t;
5004 /* Builds and returns function declaration with NAME and TYPE. */
5006 tree
5007 build_fn_decl (const char *name, tree type)
5009 tree id = get_identifier (name);
5010 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
5012 DECL_EXTERNAL (decl) = 1;
5013 TREE_PUBLIC (decl) = 1;
5014 DECL_ARTIFICIAL (decl) = 1;
5015 TREE_NOTHROW (decl) = 1;
5017 return decl;
5020 vec<tree, va_gc> *all_translation_units;
5022 /* Builds a new translation-unit decl with name NAME, queues it in the
5023 global list of translation-unit decls and returns it. */
5025 tree
5026 build_translation_unit_decl (tree name)
5028 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5029 name, NULL_TREE);
5030 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5031 vec_safe_push (all_translation_units, tu);
5032 return tu;
5036 /* BLOCK nodes are used to represent the structure of binding contours
5037 and declarations, once those contours have been exited and their contents
5038 compiled. This information is used for outputting debugging info. */
5040 tree
5041 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5043 tree block = make_node (BLOCK);
5045 BLOCK_VARS (block) = vars;
5046 BLOCK_SUBBLOCKS (block) = subblocks;
5047 BLOCK_SUPERCONTEXT (block) = supercontext;
5048 BLOCK_CHAIN (block) = chain;
5049 return block;
5053 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5055 LOC is the location to use in tree T. */
5057 void
5058 protected_set_expr_location (tree t, location_t loc)
5060 if (CAN_HAVE_LOCATION_P (t))
5061 SET_EXPR_LOCATION (t, loc);
5064 /* Data used when collecting DECLs and TYPEs for language data removal. */
5066 struct free_lang_data_d
5068 free_lang_data_d () : decls (100), types (100) {}
5070 /* Worklist to avoid excessive recursion. */
5071 auto_vec<tree> worklist;
5073 /* Set of traversed objects. Used to avoid duplicate visits. */
5074 hash_set<tree> pset;
5076 /* Array of symbols to process with free_lang_data_in_decl. */
5077 auto_vec<tree> decls;
5079 /* Array of types to process with free_lang_data_in_type. */
5080 auto_vec<tree> types;
5084 /* Add type or decl T to one of the list of tree nodes that need their
5085 language data removed. The lists are held inside FLD. */
5087 static void
5088 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5090 if (DECL_P (t))
5091 fld->decls.safe_push (t);
5092 else if (TYPE_P (t))
5093 fld->types.safe_push (t);
5094 else
5095 gcc_unreachable ();
5098 /* Push tree node T into FLD->WORKLIST. */
5100 static inline void
5101 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5103 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5104 fld->worklist.safe_push ((t));
5109 /* Return simplified TYPE_NAME of TYPE. */
5111 static tree
5112 fld_simplified_type_name (tree type)
5114 if (!TYPE_NAME (type) || TREE_CODE (TYPE_NAME (type)) != TYPE_DECL)
5115 return TYPE_NAME (type);
5116 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5117 TYPE_DECL if the type doesn't have linkage.
5118 this must match fld_ */
5119 if (type != TYPE_MAIN_VARIANT (type) || ! type_with_linkage_p (type))
5120 return DECL_NAME (TYPE_NAME (type));
5121 return TYPE_NAME (type);
5124 /* Do same comparsion as check_qualified_type skipping lang part of type
5125 and be more permissive about type names: we only care that names are
5126 same (for diagnostics) and that ODR names are the same.
5127 If INNER_TYPE is non-NULL, be sure that TREE_TYPE match it. */
5129 static bool
5130 fld_type_variant_equal_p (tree t, tree v, tree inner_type)
5132 if (TYPE_QUALS (t) != TYPE_QUALS (v)
5133 /* We want to match incomplete variants with complete types.
5134 In this case we need to ignore alignment. */
5135 || ((!RECORD_OR_UNION_TYPE_P (t) || COMPLETE_TYPE_P (v))
5136 && (TYPE_ALIGN (t) != TYPE_ALIGN (v)
5137 || TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (v)))
5138 || fld_simplified_type_name (t) != fld_simplified_type_name (v)
5139 || !attribute_list_equal (TYPE_ATTRIBUTES (t),
5140 TYPE_ATTRIBUTES (v))
5141 || (inner_type && TREE_TYPE (v) != inner_type))
5142 return false;
5144 return true;
5147 /* Find variant of FIRST that match T and create new one if necessary.
5148 Set TREE_TYPE to INNER_TYPE if non-NULL. */
5150 static tree
5151 fld_type_variant (tree first, tree t, struct free_lang_data_d *fld,
5152 tree inner_type = NULL)
5154 if (first == TYPE_MAIN_VARIANT (t))
5155 return t;
5156 for (tree v = first; v; v = TYPE_NEXT_VARIANT (v))
5157 if (fld_type_variant_equal_p (t, v, inner_type))
5158 return v;
5159 tree v = build_variant_type_copy (first);
5160 TYPE_READONLY (v) = TYPE_READONLY (t);
5161 TYPE_VOLATILE (v) = TYPE_VOLATILE (t);
5162 TYPE_ATOMIC (v) = TYPE_ATOMIC (t);
5163 TYPE_RESTRICT (v) = TYPE_RESTRICT (t);
5164 TYPE_ADDR_SPACE (v) = TYPE_ADDR_SPACE (t);
5165 TYPE_NAME (v) = TYPE_NAME (t);
5166 TYPE_ATTRIBUTES (v) = TYPE_ATTRIBUTES (t);
5167 TYPE_CANONICAL (v) = TYPE_CANONICAL (t);
5168 /* Variants of incomplete types should have alignment
5169 set to BITS_PER_UNIT. Do not copy the actual alignment. */
5170 if (!RECORD_OR_UNION_TYPE_P (v) || COMPLETE_TYPE_P (v))
5172 SET_TYPE_ALIGN (v, TYPE_ALIGN (t));
5173 TYPE_USER_ALIGN (v) = TYPE_USER_ALIGN (t);
5175 if (inner_type)
5176 TREE_TYPE (v) = inner_type;
5177 gcc_checking_assert (fld_type_variant_equal_p (t,v, inner_type));
5178 add_tree_to_fld_list (v, fld);
5179 return v;
5182 /* Map complete types to incomplete types. */
5184 static hash_map<tree, tree> *fld_incomplete_types;
5186 /* Map types to simplified types. */
5188 static hash_map<tree, tree> *fld_simplified_types;
5190 /* Produce variant of T whose TREE_TYPE is T2. If it is main variant,
5191 use MAP to prevent duplicates. */
5193 static tree
5194 fld_process_array_type (tree t, tree t2, hash_map<tree, tree> *map,
5195 struct free_lang_data_d *fld)
5197 if (TREE_TYPE (t) == t2)
5198 return t;
5200 if (TYPE_MAIN_VARIANT (t) != t)
5202 return fld_type_variant
5203 (fld_process_array_type (TYPE_MAIN_VARIANT (t),
5204 TYPE_MAIN_VARIANT (t2), map, fld),
5205 t, fld, t2);
5208 bool existed;
5209 tree &array
5210 = map->get_or_insert (t, &existed);
5211 if (!existed)
5213 array = build_array_type_1 (t2, TYPE_DOMAIN (t),
5214 TYPE_TYPELESS_STORAGE (t), false);
5215 TYPE_CANONICAL (array) = TYPE_CANONICAL (t);
5216 add_tree_to_fld_list (array, fld);
5218 return array;
5221 /* Return CTX after removal of contexts that are not relevant */
5223 static tree
5224 fld_decl_context (tree ctx)
5226 /* Variably modified types are needed for tree_is_indexable to decide
5227 whether the type needs to go to local or global section.
5228 This code is semi-broken but for now it is easiest to keep contexts
5229 as expected. */
5230 if (ctx && TYPE_P (ctx)
5231 && !variably_modified_type_p (ctx, NULL_TREE))
5233 while (ctx && TYPE_P (ctx))
5234 ctx = TYPE_CONTEXT (ctx);
5236 return ctx;
5239 /* For T being aggregate type try to turn it into a incomplete variant.
5240 Return T if no simplification is possible. */
5242 static tree
5243 fld_incomplete_type_of (tree t, struct free_lang_data_d *fld)
5245 if (!t)
5246 return NULL;
5247 if (POINTER_TYPE_P (t))
5249 tree t2 = fld_incomplete_type_of (TREE_TYPE (t), fld);
5250 if (t2 != TREE_TYPE (t))
5252 tree first;
5253 if (TREE_CODE (t) == POINTER_TYPE)
5254 first = build_pointer_type_for_mode (t2, TYPE_MODE (t),
5255 TYPE_REF_CAN_ALIAS_ALL (t));
5256 else
5257 first = build_reference_type_for_mode (t2, TYPE_MODE (t),
5258 TYPE_REF_CAN_ALIAS_ALL (t));
5259 gcc_assert (TYPE_CANONICAL (t2) != t2
5260 && TYPE_CANONICAL (t2) == TYPE_CANONICAL (TREE_TYPE (t)));
5261 add_tree_to_fld_list (first, fld);
5262 return fld_type_variant (first, t, fld);
5264 return t;
5266 if (TREE_CODE (t) == ARRAY_TYPE)
5267 return fld_process_array_type (t,
5268 fld_incomplete_type_of (TREE_TYPE (t), fld),
5269 fld_incomplete_types, fld);
5270 if ((!RECORD_OR_UNION_TYPE_P (t) && TREE_CODE (t) != ENUMERAL_TYPE)
5271 || !COMPLETE_TYPE_P (t))
5272 return t;
5273 if (TYPE_MAIN_VARIANT (t) == t)
5275 bool existed;
5276 tree &copy
5277 = fld_incomplete_types->get_or_insert (t, &existed);
5279 if (!existed)
5281 copy = build_distinct_type_copy (t);
5283 /* It is possible that type was not seen by free_lang_data yet. */
5284 add_tree_to_fld_list (copy, fld);
5285 TYPE_SIZE (copy) = NULL;
5286 TYPE_USER_ALIGN (copy) = 0;
5287 TYPE_SIZE_UNIT (copy) = NULL;
5288 TYPE_CANONICAL (copy) = TYPE_CANONICAL (t);
5289 TREE_ADDRESSABLE (copy) = 0;
5290 if (AGGREGATE_TYPE_P (t))
5292 SET_TYPE_MODE (copy, VOIDmode);
5293 SET_TYPE_ALIGN (copy, BITS_PER_UNIT);
5294 TYPE_TYPELESS_STORAGE (copy) = 0;
5295 TYPE_FIELDS (copy) = NULL;
5296 TYPE_BINFO (copy) = NULL;
5298 else
5299 TYPE_VALUES (copy) = NULL;
5301 /* Build copy of TYPE_DECL in TYPE_NAME if necessary.
5302 This is needed for ODR violation warnings to come out right (we
5303 want duplicate TYPE_DECLs whenever the type is duplicated because
5304 of ODR violation. Because lang data in the TYPE_DECL may not
5305 have been freed yet, rebuild it from scratch and copy relevant
5306 fields. */
5307 TYPE_NAME (copy) = fld_simplified_type_name (copy);
5308 tree name = TYPE_NAME (copy);
5310 if (name && TREE_CODE (name) == TYPE_DECL)
5312 gcc_checking_assert (TREE_TYPE (name) == t);
5313 tree name2 = build_decl (DECL_SOURCE_LOCATION (name), TYPE_DECL,
5314 DECL_NAME (name), copy);
5315 if (DECL_ASSEMBLER_NAME_SET_P (name))
5316 SET_DECL_ASSEMBLER_NAME (name2, DECL_ASSEMBLER_NAME (name));
5317 SET_DECL_ALIGN (name2, 0);
5318 DECL_CONTEXT (name2) = fld_decl_context
5319 (DECL_CONTEXT (name));
5320 TYPE_NAME (copy) = name2;
5323 return copy;
5325 return (fld_type_variant
5326 (fld_incomplete_type_of (TYPE_MAIN_VARIANT (t), fld), t, fld));
5329 /* Simplify type T for scenarios where we do not need complete pointer
5330 types. */
5332 static tree
5333 fld_simplified_type (tree t, struct free_lang_data_d *fld)
5335 if (!t)
5336 return t;
5337 if (POINTER_TYPE_P (t))
5338 return fld_incomplete_type_of (t, fld);
5339 if (TREE_CODE (t) == ARRAY_TYPE)
5340 return fld_process_array_type (t, fld_simplified_type (TREE_TYPE (t), fld),
5341 fld_simplified_types, fld);
5342 return t;
5345 /* Reset the expression *EXPR_P, a size or position.
5347 ??? We could reset all non-constant sizes or positions. But it's cheap
5348 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5350 We need to reset self-referential sizes or positions because they cannot
5351 be gimplified and thus can contain a CALL_EXPR after the gimplification
5352 is finished, which will run afoul of LTO streaming. And they need to be
5353 reset to something essentially dummy but not constant, so as to preserve
5354 the properties of the object they are attached to. */
5356 static inline void
5357 free_lang_data_in_one_sizepos (tree *expr_p)
5359 tree expr = *expr_p;
5360 if (CONTAINS_PLACEHOLDER_P (expr))
5361 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5365 /* Reset all the fields in a binfo node BINFO. We only keep
5366 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5368 static void
5369 free_lang_data_in_binfo (tree binfo)
5371 unsigned i;
5372 tree t;
5374 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5376 BINFO_VIRTUALS (binfo) = NULL_TREE;
5377 BINFO_BASE_ACCESSES (binfo) = NULL;
5378 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5379 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5380 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
5382 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5383 free_lang_data_in_binfo (t);
5387 /* Reset all language specific information still present in TYPE. */
5389 static void
5390 free_lang_data_in_type (tree type, struct free_lang_data_d *fld)
5392 gcc_assert (TYPE_P (type));
5394 /* Give the FE a chance to remove its own data first. */
5395 lang_hooks.free_lang_data (type);
5397 TREE_LANG_FLAG_0 (type) = 0;
5398 TREE_LANG_FLAG_1 (type) = 0;
5399 TREE_LANG_FLAG_2 (type) = 0;
5400 TREE_LANG_FLAG_3 (type) = 0;
5401 TREE_LANG_FLAG_4 (type) = 0;
5402 TREE_LANG_FLAG_5 (type) = 0;
5403 TREE_LANG_FLAG_6 (type) = 0;
5405 TYPE_NEEDS_CONSTRUCTING (type) = 0;
5407 if (TREE_CODE (type) == FUNCTION_TYPE)
5409 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5410 /* Remove the const and volatile qualifiers from arguments. The
5411 C++ front end removes them, but the C front end does not,
5412 leading to false ODR violation errors when merging two
5413 instances of the same function signature compiled by
5414 different front ends. */
5415 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5417 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5418 tree arg_type = TREE_VALUE (p);
5420 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5422 int quals = TYPE_QUALS (arg_type)
5423 & ~TYPE_QUAL_CONST
5424 & ~TYPE_QUAL_VOLATILE;
5425 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5426 free_lang_data_in_type (TREE_VALUE (p), fld);
5428 /* C++ FE uses TREE_PURPOSE to store initial values. */
5429 TREE_PURPOSE (p) = NULL;
5432 else if (TREE_CODE (type) == METHOD_TYPE)
5434 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5435 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5437 /* C++ FE uses TREE_PURPOSE to store initial values. */
5438 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5439 TREE_PURPOSE (p) = NULL;
5442 else if (RECORD_OR_UNION_TYPE_P (type))
5444 /* Remove members that are not FIELD_DECLs from the field list
5445 of an aggregate. These occur in C++. */
5446 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5447 if (TREE_CODE (member) == FIELD_DECL)
5448 prev = &DECL_CHAIN (member);
5449 else
5450 *prev = DECL_CHAIN (member);
5452 TYPE_VFIELD (type) = NULL_TREE;
5454 if (TYPE_BINFO (type))
5456 free_lang_data_in_binfo (TYPE_BINFO (type));
5457 /* We need to preserve link to bases and virtual table for all
5458 polymorphic types to make devirtualization machinery working. */
5459 if (!BINFO_VTABLE (TYPE_BINFO (type))
5460 || !flag_devirtualize)
5461 TYPE_BINFO (type) = NULL;
5464 else if (INTEGRAL_TYPE_P (type)
5465 || SCALAR_FLOAT_TYPE_P (type)
5466 || FIXED_POINT_TYPE_P (type))
5468 if (TREE_CODE (type) == ENUMERAL_TYPE)
5470 /* Type values are used only for C++ ODR checking. Drop them
5471 for all type variants and non-ODR types.
5472 For ODR types the data is freed in free_odr_warning_data. */
5473 if (TYPE_MAIN_VARIANT (type) != type
5474 || !type_with_linkage_p (type))
5475 TYPE_VALUES (type) = NULL;
5476 else
5477 /* Simplify representation by recording only values rather
5478 than const decls. */
5479 for (tree e = TYPE_VALUES (type); e; e = TREE_CHAIN (e))
5480 if (TREE_CODE (TREE_VALUE (e)) == CONST_DECL)
5481 TREE_VALUE (e) = DECL_INITIAL (TREE_VALUE (e));
5483 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5484 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5487 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5489 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5490 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5492 if (TYPE_CONTEXT (type)
5493 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5495 tree ctx = TYPE_CONTEXT (type);
5498 ctx = BLOCK_SUPERCONTEXT (ctx);
5500 while (ctx && TREE_CODE (ctx) == BLOCK);
5501 TYPE_CONTEXT (type) = ctx;
5504 TYPE_STUB_DECL (type) = NULL;
5505 TYPE_NAME (type) = fld_simplified_type_name (type);
5509 /* Return true if DECL may need an assembler name to be set. */
5511 static inline bool
5512 need_assembler_name_p (tree decl)
5514 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5515 Rule merging. This makes type_odr_p to return true on those types during
5516 LTO and by comparing the mangled name, we can say what types are intended
5517 to be equivalent across compilation unit.
5519 We do not store names of type_in_anonymous_namespace_p.
5521 Record, union and enumeration type have linkage that allows use
5522 to check type_in_anonymous_namespace_p. We do not mangle compound types
5523 that always can be compared structurally.
5525 Similarly for builtin types, we compare properties of their main variant.
5526 A special case are integer types where mangling do make differences
5527 between char/signed char/unsigned char etc. Storing name for these makes
5528 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5529 See cp/mangle.c:write_builtin_type for details. */
5531 if (TREE_CODE (decl) == TYPE_DECL)
5533 if (flag_lto_odr_type_mering
5534 && DECL_NAME (decl)
5535 && decl == TYPE_NAME (TREE_TYPE (decl))
5536 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5537 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5538 && (type_with_linkage_p (TREE_TYPE (decl))
5539 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5540 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5541 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5542 return false;
5544 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5545 if (!VAR_OR_FUNCTION_DECL_P (decl))
5546 return false;
5548 /* If DECL already has its assembler name set, it does not need a
5549 new one. */
5550 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5551 || DECL_ASSEMBLER_NAME_SET_P (decl))
5552 return false;
5554 /* Abstract decls do not need an assembler name. */
5555 if (DECL_ABSTRACT_P (decl))
5556 return false;
5558 /* For VAR_DECLs, only static, public and external symbols need an
5559 assembler name. */
5560 if (VAR_P (decl)
5561 && !TREE_STATIC (decl)
5562 && !TREE_PUBLIC (decl)
5563 && !DECL_EXTERNAL (decl))
5564 return false;
5566 if (TREE_CODE (decl) == FUNCTION_DECL)
5568 /* Do not set assembler name on builtins. Allow RTL expansion to
5569 decide whether to expand inline or via a regular call. */
5570 if (fndecl_built_in_p (decl)
5571 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5572 return false;
5574 /* Functions represented in the callgraph need an assembler name. */
5575 if (cgraph_node::get (decl) != NULL)
5576 return true;
5578 /* Unused and not public functions don't need an assembler name. */
5579 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5580 return false;
5583 return true;
5587 /* Reset all language specific information still present in symbol
5588 DECL. */
5590 static void
5591 free_lang_data_in_decl (tree decl, struct free_lang_data_d *fld)
5593 gcc_assert (DECL_P (decl));
5595 /* Give the FE a chance to remove its own data first. */
5596 lang_hooks.free_lang_data (decl);
5598 TREE_LANG_FLAG_0 (decl) = 0;
5599 TREE_LANG_FLAG_1 (decl) = 0;
5600 TREE_LANG_FLAG_2 (decl) = 0;
5601 TREE_LANG_FLAG_3 (decl) = 0;
5602 TREE_LANG_FLAG_4 (decl) = 0;
5603 TREE_LANG_FLAG_5 (decl) = 0;
5604 TREE_LANG_FLAG_6 (decl) = 0;
5606 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5607 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5608 if (TREE_CODE (decl) == FIELD_DECL)
5610 DECL_FCONTEXT (decl) = NULL;
5611 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5612 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5613 DECL_QUALIFIER (decl) = NULL_TREE;
5616 if (TREE_CODE (decl) == FUNCTION_DECL)
5618 struct cgraph_node *node;
5619 /* Frontends do not set TREE_ADDRESSABLE on public variables even though
5620 the address may be taken in other unit, so this flag has no practical
5621 use for middle-end.
5623 It would make more sense if frontends set TREE_ADDRESSABLE to 0 only
5624 for public objects that indeed can not be adressed, but it is not
5625 the case. Set the flag to true so we do not get merge failures for
5626 i.e. virtual tables between units that take address of it and
5627 units that don't. */
5628 if (TREE_PUBLIC (decl))
5629 TREE_ADDRESSABLE (decl) = true;
5630 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5631 if (!(node = cgraph_node::get (decl))
5632 || (!node->definition && !node->clones))
5634 if (node)
5635 node->release_body ();
5636 else
5638 release_function_body (decl);
5639 DECL_ARGUMENTS (decl) = NULL;
5640 DECL_RESULT (decl) = NULL;
5641 DECL_INITIAL (decl) = error_mark_node;
5644 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5646 tree t;
5648 /* If DECL has a gimple body, then the context for its
5649 arguments must be DECL. Otherwise, it doesn't really
5650 matter, as we will not be emitting any code for DECL. In
5651 general, there may be other instances of DECL created by
5652 the front end and since PARM_DECLs are generally shared,
5653 their DECL_CONTEXT changes as the replicas of DECL are
5654 created. The only time where DECL_CONTEXT is important
5655 is for the FUNCTION_DECLs that have a gimple body (since
5656 the PARM_DECL will be used in the function's body). */
5657 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5658 DECL_CONTEXT (t) = decl;
5659 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5660 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5661 = target_option_default_node;
5662 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5663 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5664 = optimization_default_node;
5667 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5668 At this point, it is not needed anymore. */
5669 DECL_SAVED_TREE (decl) = NULL_TREE;
5671 /* Clear the abstract origin if it refers to a method.
5672 Otherwise dwarf2out.c will ICE as we splice functions out of
5673 TYPE_FIELDS and thus the origin will not be output
5674 correctly. */
5675 if (DECL_ABSTRACT_ORIGIN (decl)
5676 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5677 && RECORD_OR_UNION_TYPE_P
5678 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5679 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5681 DECL_VINDEX (decl) = NULL_TREE;
5683 else if (VAR_P (decl))
5685 /* See comment above why we set the flag for functoins. */
5686 if (TREE_PUBLIC (decl))
5687 TREE_ADDRESSABLE (decl) = true;
5688 if ((DECL_EXTERNAL (decl)
5689 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5690 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5691 DECL_INITIAL (decl) = NULL_TREE;
5693 else if (TREE_CODE (decl) == TYPE_DECL)
5695 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5696 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5697 TREE_PUBLIC (decl) = 0;
5698 TREE_PRIVATE (decl) = 0;
5699 DECL_ARTIFICIAL (decl) = 0;
5700 TYPE_DECL_SUPPRESS_DEBUG (decl) = 0;
5701 DECL_INITIAL (decl) = NULL_TREE;
5702 DECL_ORIGINAL_TYPE (decl) = NULL_TREE;
5703 DECL_MODE (decl) = VOIDmode;
5704 SET_DECL_ALIGN (decl, 0);
5705 /* TREE_TYPE is cleared at WPA time in free_odr_warning_data. */
5707 else if (TREE_CODE (decl) == FIELD_DECL)
5709 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5710 DECL_INITIAL (decl) = NULL_TREE;
5712 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5713 && DECL_INITIAL (decl)
5714 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5716 /* Strip builtins from the translation-unit BLOCK. We still have targets
5717 without builtin_decl_explicit support and also builtins are shared
5718 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5719 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5720 while (*nextp)
5722 tree var = *nextp;
5723 if (fndecl_built_in_p (var))
5724 *nextp = TREE_CHAIN (var);
5725 else
5726 nextp = &TREE_CHAIN (var);
5729 /* We need to keep field decls associated with their trees. Otherwise tree
5730 merging may merge some fileds and keep others disjoint wich in turn will
5731 not do well with TREE_CHAIN pointers linking them.
5733 Also do not drop containing types for virtual methods and tables because
5734 these are needed by devirtualization. */
5735 if (TREE_CODE (decl) != FIELD_DECL
5736 && ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
5737 || !DECL_VIRTUAL_P (decl)))
5738 DECL_CONTEXT (decl) = fld_decl_context (DECL_CONTEXT (decl));
5742 /* Operand callback helper for free_lang_data_in_node. *TP is the
5743 subtree operand being considered. */
5745 static tree
5746 find_decls_types_r (tree *tp, int *ws, void *data)
5748 tree t = *tp;
5749 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5751 if (TREE_CODE (t) == TREE_LIST)
5752 return NULL_TREE;
5754 /* Language specific nodes will be removed, so there is no need
5755 to gather anything under them. */
5756 if (is_lang_specific (t))
5758 *ws = 0;
5759 return NULL_TREE;
5762 if (DECL_P (t))
5764 /* Note that walk_tree does not traverse every possible field in
5765 decls, so we have to do our own traversals here. */
5766 add_tree_to_fld_list (t, fld);
5768 fld_worklist_push (DECL_NAME (t), fld);
5769 fld_worklist_push (DECL_CONTEXT (t), fld);
5770 fld_worklist_push (DECL_SIZE (t), fld);
5771 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5773 /* We are going to remove everything under DECL_INITIAL for
5774 TYPE_DECLs. No point walking them. */
5775 if (TREE_CODE (t) != TYPE_DECL)
5776 fld_worklist_push (DECL_INITIAL (t), fld);
5778 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5779 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5781 if (TREE_CODE (t) == FUNCTION_DECL)
5783 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5784 fld_worklist_push (DECL_RESULT (t), fld);
5786 else if (TREE_CODE (t) == FIELD_DECL)
5788 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5789 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5790 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5791 fld_worklist_push (DECL_FCONTEXT (t), fld);
5794 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5795 && DECL_HAS_VALUE_EXPR_P (t))
5796 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5798 if (TREE_CODE (t) != FIELD_DECL
5799 && TREE_CODE (t) != TYPE_DECL)
5800 fld_worklist_push (TREE_CHAIN (t), fld);
5801 *ws = 0;
5803 else if (TYPE_P (t))
5805 /* Note that walk_tree does not traverse every possible field in
5806 types, so we have to do our own traversals here. */
5807 add_tree_to_fld_list (t, fld);
5809 if (!RECORD_OR_UNION_TYPE_P (t))
5810 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5811 fld_worklist_push (TYPE_SIZE (t), fld);
5812 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5813 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5814 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5815 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5816 fld_worklist_push (TYPE_NAME (t), fld);
5817 /* While we do not stream TYPE_POINTER_TO and TYPE_REFERENCE_TO
5818 lists, we may look types up in these lists and use them while
5819 optimizing the function body. Thus we need to free lang data
5820 in them. */
5821 if (TREE_CODE (t) == POINTER_TYPE)
5822 fld_worklist_push (TYPE_NEXT_PTR_TO (t), fld);
5823 if (TREE_CODE (t) == REFERENCE_TYPE)
5824 fld_worklist_push (TYPE_NEXT_REF_TO (t), fld);
5825 if (!POINTER_TYPE_P (t))
5826 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5827 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5828 if (!RECORD_OR_UNION_TYPE_P (t))
5829 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5830 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5831 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5832 do not and want not to reach unused variants this way. */
5833 if (TYPE_CONTEXT (t))
5835 tree ctx = TYPE_CONTEXT (t);
5836 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5837 So push that instead. */
5838 while (ctx && TREE_CODE (ctx) == BLOCK)
5839 ctx = BLOCK_SUPERCONTEXT (ctx);
5840 fld_worklist_push (ctx, fld);
5842 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5843 and want not to reach unused types this way. */
5845 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5847 unsigned i;
5848 tree tem;
5849 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5850 fld_worklist_push (TREE_TYPE (tem), fld);
5851 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
5852 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
5854 if (RECORD_OR_UNION_TYPE_P (t))
5856 tree tem;
5857 /* Push all TYPE_FIELDS - there can be interleaving interesting
5858 and non-interesting things. */
5859 tem = TYPE_FIELDS (t);
5860 while (tem)
5862 if (TREE_CODE (tem) == FIELD_DECL)
5863 fld_worklist_push (tem, fld);
5864 tem = TREE_CHAIN (tem);
5867 if (FUNC_OR_METHOD_TYPE_P (t))
5868 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
5870 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5871 *ws = 0;
5873 else if (TREE_CODE (t) == BLOCK)
5875 for (tree *tem = &BLOCK_VARS (t); *tem; )
5877 if (TREE_CODE (*tem) != VAR_DECL
5878 || !auto_var_in_fn_p (*tem, DECL_CONTEXT (*tem)))
5880 gcc_assert (TREE_CODE (*tem) != RESULT_DECL
5881 && TREE_CODE (*tem) != PARM_DECL);
5882 *tem = TREE_CHAIN (*tem);
5884 else
5886 fld_worklist_push (*tem, fld);
5887 tem = &TREE_CHAIN (*tem);
5890 for (tree tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5891 fld_worklist_push (tem, fld);
5892 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5895 if (TREE_CODE (t) != IDENTIFIER_NODE
5896 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5897 fld_worklist_push (TREE_TYPE (t), fld);
5899 return NULL_TREE;
5903 /* Find decls and types in T. */
5905 static void
5906 find_decls_types (tree t, struct free_lang_data_d *fld)
5908 while (1)
5910 if (!fld->pset.contains (t))
5911 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5912 if (fld->worklist.is_empty ())
5913 break;
5914 t = fld->worklist.pop ();
5918 /* Translate all the types in LIST with the corresponding runtime
5919 types. */
5921 static tree
5922 get_eh_types_for_runtime (tree list)
5924 tree head, prev;
5926 if (list == NULL_TREE)
5927 return NULL_TREE;
5929 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5930 prev = head;
5931 list = TREE_CHAIN (list);
5932 while (list)
5934 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5935 TREE_CHAIN (prev) = n;
5936 prev = TREE_CHAIN (prev);
5937 list = TREE_CHAIN (list);
5940 return head;
5944 /* Find decls and types referenced in EH region R and store them in
5945 FLD->DECLS and FLD->TYPES. */
5947 static void
5948 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5950 switch (r->type)
5952 case ERT_CLEANUP:
5953 break;
5955 case ERT_TRY:
5957 eh_catch c;
5959 /* The types referenced in each catch must first be changed to the
5960 EH types used at runtime. This removes references to FE types
5961 in the region. */
5962 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5964 c->type_list = get_eh_types_for_runtime (c->type_list);
5965 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
5968 break;
5970 case ERT_ALLOWED_EXCEPTIONS:
5971 r->u.allowed.type_list
5972 = get_eh_types_for_runtime (r->u.allowed.type_list);
5973 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
5974 break;
5976 case ERT_MUST_NOT_THROW:
5977 walk_tree (&r->u.must_not_throw.failure_decl,
5978 find_decls_types_r, fld, &fld->pset);
5979 break;
5984 /* Find decls and types referenced in cgraph node N and store them in
5985 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5986 look for *every* kind of DECL and TYPE node reachable from N,
5987 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5988 NAMESPACE_DECLs, etc). */
5990 static void
5991 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5993 basic_block bb;
5994 struct function *fn;
5995 unsigned ix;
5996 tree t;
5998 find_decls_types (n->decl, fld);
6000 if (!gimple_has_body_p (n->decl))
6001 return;
6003 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
6005 fn = DECL_STRUCT_FUNCTION (n->decl);
6007 /* Traverse locals. */
6008 FOR_EACH_LOCAL_DECL (fn, ix, t)
6009 find_decls_types (t, fld);
6011 /* Traverse EH regions in FN. */
6013 eh_region r;
6014 FOR_ALL_EH_REGION_FN (r, fn)
6015 find_decls_types_in_eh_region (r, fld);
6018 /* Traverse every statement in FN. */
6019 FOR_EACH_BB_FN (bb, fn)
6021 gphi_iterator psi;
6022 gimple_stmt_iterator si;
6023 unsigned i;
6025 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
6027 gphi *phi = psi.phi ();
6029 for (i = 0; i < gimple_phi_num_args (phi); i++)
6031 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
6032 find_decls_types (*arg_p, fld);
6036 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6038 gimple *stmt = gsi_stmt (si);
6040 if (is_gimple_call (stmt))
6041 find_decls_types (gimple_call_fntype (stmt), fld);
6043 for (i = 0; i < gimple_num_ops (stmt); i++)
6045 tree arg = gimple_op (stmt, i);
6046 find_decls_types (arg, fld);
6053 /* Find decls and types referenced in varpool node N and store them in
6054 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6055 look for *every* kind of DECL and TYPE node reachable from N,
6056 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6057 NAMESPACE_DECLs, etc). */
6059 static void
6060 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
6062 find_decls_types (v->decl, fld);
6065 /* If T needs an assembler name, have one created for it. */
6067 void
6068 assign_assembler_name_if_needed (tree t)
6070 if (need_assembler_name_p (t))
6072 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
6073 diagnostics that use input_location to show locus
6074 information. The problem here is that, at this point,
6075 input_location is generally anchored to the end of the file
6076 (since the parser is long gone), so we don't have a good
6077 position to pin it to.
6079 To alleviate this problem, this uses the location of T's
6080 declaration. Examples of this are
6081 testsuite/g++.dg/template/cond2.C and
6082 testsuite/g++.dg/template/pr35240.C. */
6083 location_t saved_location = input_location;
6084 input_location = DECL_SOURCE_LOCATION (t);
6086 decl_assembler_name (t);
6088 input_location = saved_location;
6093 /* Free language specific information for every operand and expression
6094 in every node of the call graph. This process operates in three stages:
6096 1- Every callgraph node and varpool node is traversed looking for
6097 decls and types embedded in them. This is a more exhaustive
6098 search than that done by find_referenced_vars, because it will
6099 also collect individual fields, decls embedded in types, etc.
6101 2- All the decls found are sent to free_lang_data_in_decl.
6103 3- All the types found are sent to free_lang_data_in_type.
6105 The ordering between decls and types is important because
6106 free_lang_data_in_decl sets assembler names, which includes
6107 mangling. So types cannot be freed up until assembler names have
6108 been set up. */
6110 static void
6111 free_lang_data_in_cgraph (struct free_lang_data_d *fld)
6113 struct cgraph_node *n;
6114 varpool_node *v;
6115 tree t;
6116 unsigned i;
6117 alias_pair *p;
6119 /* Find decls and types in the body of every function in the callgraph. */
6120 FOR_EACH_FUNCTION (n)
6121 find_decls_types_in_node (n, fld);
6123 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
6124 find_decls_types (p->decl, fld);
6126 /* Find decls and types in every varpool symbol. */
6127 FOR_EACH_VARIABLE (v)
6128 find_decls_types_in_var (v, fld);
6130 /* Set the assembler name on every decl found. We need to do this
6131 now because free_lang_data_in_decl will invalidate data needed
6132 for mangling. This breaks mangling on interdependent decls. */
6133 FOR_EACH_VEC_ELT (fld->decls, i, t)
6134 assign_assembler_name_if_needed (t);
6136 /* Traverse every decl found freeing its language data. */
6137 FOR_EACH_VEC_ELT (fld->decls, i, t)
6138 free_lang_data_in_decl (t, fld);
6140 /* Traverse every type found freeing its language data. */
6141 FOR_EACH_VEC_ELT (fld->types, i, t)
6142 free_lang_data_in_type (t, fld);
6146 /* Free resources that are used by FE but are not needed once they are done. */
6148 static unsigned
6149 free_lang_data (void)
6151 unsigned i;
6152 struct free_lang_data_d fld;
6154 /* If we are the LTO frontend we have freed lang-specific data already. */
6155 if (in_lto_p
6156 || (!flag_generate_lto && !flag_generate_offload))
6157 return 0;
6159 fld_incomplete_types = new hash_map<tree, tree>;
6160 fld_simplified_types = new hash_map<tree, tree>;
6162 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
6163 if (vec_safe_is_empty (all_translation_units))
6164 build_translation_unit_decl (NULL_TREE);
6166 /* Allocate and assign alias sets to the standard integer types
6167 while the slots are still in the way the frontends generated them. */
6168 for (i = 0; i < itk_none; ++i)
6169 if (integer_types[i])
6170 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
6172 /* Traverse the IL resetting language specific information for
6173 operands, expressions, etc. */
6174 free_lang_data_in_cgraph (&fld);
6176 /* Create gimple variants for common types. */
6177 for (unsigned i = 0;
6178 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
6179 ++i)
6180 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
6182 /* Reset some langhooks. Do not reset types_compatible_p, it may
6183 still be used indirectly via the get_alias_set langhook. */
6184 lang_hooks.dwarf_name = lhd_dwarf_name;
6185 lang_hooks.decl_printable_name = gimple_decl_printable_name;
6186 lang_hooks.gimplify_expr = lhd_gimplify_expr;
6187 lang_hooks.overwrite_decl_assembler_name = lhd_overwrite_decl_assembler_name;
6188 lang_hooks.print_xnode = lhd_print_tree_nothing;
6189 lang_hooks.print_decl = lhd_print_tree_nothing;
6190 lang_hooks.print_type = lhd_print_tree_nothing;
6191 lang_hooks.print_identifier = lhd_print_tree_nothing;
6193 lang_hooks.tree_inlining.var_mod_type_p = hook_bool_tree_tree_false;
6195 if (flag_checking)
6197 int i;
6198 tree t;
6200 FOR_EACH_VEC_ELT (fld.types, i, t)
6201 verify_type (t);
6204 /* We do not want the default decl_assembler_name implementation,
6205 rather if we have fixed everything we want a wrapper around it
6206 asserting that all non-local symbols already got their assembler
6207 name and only produce assembler names for local symbols. Or rather
6208 make sure we never call decl_assembler_name on local symbols and
6209 devise a separate, middle-end private scheme for it. */
6211 /* Reset diagnostic machinery. */
6212 tree_diagnostics_defaults (global_dc);
6214 rebuild_type_inheritance_graph ();
6216 delete fld_incomplete_types;
6217 delete fld_simplified_types;
6219 return 0;
6223 namespace {
6225 const pass_data pass_data_ipa_free_lang_data =
6227 SIMPLE_IPA_PASS, /* type */
6228 "*free_lang_data", /* name */
6229 OPTGROUP_NONE, /* optinfo_flags */
6230 TV_IPA_FREE_LANG_DATA, /* tv_id */
6231 0, /* properties_required */
6232 0, /* properties_provided */
6233 0, /* properties_destroyed */
6234 0, /* todo_flags_start */
6235 0, /* todo_flags_finish */
6238 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
6240 public:
6241 pass_ipa_free_lang_data (gcc::context *ctxt)
6242 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
6245 /* opt_pass methods: */
6246 virtual unsigned int execute (function *) { return free_lang_data (); }
6248 }; // class pass_ipa_free_lang_data
6250 } // anon namespace
6252 simple_ipa_opt_pass *
6253 make_pass_ipa_free_lang_data (gcc::context *ctxt)
6255 return new pass_ipa_free_lang_data (ctxt);
6258 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6259 of the various TYPE_QUAL values. */
6261 static void
6262 set_type_quals (tree type, int type_quals)
6264 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6265 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6266 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6267 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6268 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6271 /* Returns true iff CAND and BASE have equivalent language-specific
6272 qualifiers. */
6274 bool
6275 check_lang_type (const_tree cand, const_tree base)
6277 if (lang_hooks.types.type_hash_eq == NULL)
6278 return true;
6279 /* type_hash_eq currently only applies to these types. */
6280 if (TREE_CODE (cand) != FUNCTION_TYPE
6281 && TREE_CODE (cand) != METHOD_TYPE)
6282 return true;
6283 return lang_hooks.types.type_hash_eq (cand, base);
6286 /* Returns true iff unqualified CAND and BASE are equivalent. */
6288 bool
6289 check_base_type (const_tree cand, const_tree base)
6291 return (TYPE_NAME (cand) == TYPE_NAME (base)
6292 /* Apparently this is needed for Objective-C. */
6293 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6294 /* Check alignment. */
6295 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
6296 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6297 TYPE_ATTRIBUTES (base)));
6300 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6302 bool
6303 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6305 return (TYPE_QUALS (cand) == type_quals
6306 && check_base_type (cand, base)
6307 && check_lang_type (cand, base));
6310 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6312 static bool
6313 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6315 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6316 && TYPE_NAME (cand) == TYPE_NAME (base)
6317 /* Apparently this is needed for Objective-C. */
6318 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6319 /* Check alignment. */
6320 && TYPE_ALIGN (cand) == align
6321 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6322 TYPE_ATTRIBUTES (base))
6323 && check_lang_type (cand, base));
6326 /* This function checks to see if TYPE matches the size one of the built-in
6327 atomic types, and returns that core atomic type. */
6329 static tree
6330 find_atomic_core_type (tree type)
6332 tree base_atomic_type;
6334 /* Only handle complete types. */
6335 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
6336 return NULL_TREE;
6338 switch (tree_to_uhwi (TYPE_SIZE (type)))
6340 case 8:
6341 base_atomic_type = atomicQI_type_node;
6342 break;
6344 case 16:
6345 base_atomic_type = atomicHI_type_node;
6346 break;
6348 case 32:
6349 base_atomic_type = atomicSI_type_node;
6350 break;
6352 case 64:
6353 base_atomic_type = atomicDI_type_node;
6354 break;
6356 case 128:
6357 base_atomic_type = atomicTI_type_node;
6358 break;
6360 default:
6361 base_atomic_type = NULL_TREE;
6364 return base_atomic_type;
6367 /* Return a version of the TYPE, qualified as indicated by the
6368 TYPE_QUALS, if one exists. If no qualified version exists yet,
6369 return NULL_TREE. */
6371 tree
6372 get_qualified_type (tree type, int type_quals)
6374 tree t;
6376 if (TYPE_QUALS (type) == type_quals)
6377 return type;
6379 /* Search the chain of variants to see if there is already one there just
6380 like the one we need to have. If so, use that existing one. We must
6381 preserve the TYPE_NAME, since there is code that depends on this. */
6382 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6383 if (check_qualified_type (t, type, type_quals))
6384 return t;
6386 return NULL_TREE;
6389 /* Like get_qualified_type, but creates the type if it does not
6390 exist. This function never returns NULL_TREE. */
6392 tree
6393 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6395 tree t;
6397 /* See if we already have the appropriate qualified variant. */
6398 t = get_qualified_type (type, type_quals);
6400 /* If not, build it. */
6401 if (!t)
6403 t = build_variant_type_copy (type PASS_MEM_STAT);
6404 set_type_quals (t, type_quals);
6406 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6408 /* See if this object can map to a basic atomic type. */
6409 tree atomic_type = find_atomic_core_type (type);
6410 if (atomic_type)
6412 /* Ensure the alignment of this type is compatible with
6413 the required alignment of the atomic type. */
6414 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6415 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6419 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6420 /* Propagate structural equality. */
6421 SET_TYPE_STRUCTURAL_EQUALITY (t);
6422 else if (TYPE_CANONICAL (type) != type)
6423 /* Build the underlying canonical type, since it is different
6424 from TYPE. */
6426 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6427 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6429 else
6430 /* T is its own canonical type. */
6431 TYPE_CANONICAL (t) = t;
6435 return t;
6438 /* Create a variant of type T with alignment ALIGN. */
6440 tree
6441 build_aligned_type (tree type, unsigned int align)
6443 tree t;
6445 if (TYPE_PACKED (type)
6446 || TYPE_ALIGN (type) == align)
6447 return type;
6449 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6450 if (check_aligned_type (t, type, align))
6451 return t;
6453 t = build_variant_type_copy (type);
6454 SET_TYPE_ALIGN (t, align);
6455 TYPE_USER_ALIGN (t) = 1;
6457 return t;
6460 /* Create a new distinct copy of TYPE. The new type is made its own
6461 MAIN_VARIANT. If TYPE requires structural equality checks, the
6462 resulting type requires structural equality checks; otherwise, its
6463 TYPE_CANONICAL points to itself. */
6465 tree
6466 build_distinct_type_copy (tree type MEM_STAT_DECL)
6468 tree t = copy_node (type PASS_MEM_STAT);
6470 TYPE_POINTER_TO (t) = 0;
6471 TYPE_REFERENCE_TO (t) = 0;
6473 /* Set the canonical type either to a new equivalence class, or
6474 propagate the need for structural equality checks. */
6475 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6476 SET_TYPE_STRUCTURAL_EQUALITY (t);
6477 else
6478 TYPE_CANONICAL (t) = t;
6480 /* Make it its own variant. */
6481 TYPE_MAIN_VARIANT (t) = t;
6482 TYPE_NEXT_VARIANT (t) = 0;
6484 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6485 whose TREE_TYPE is not t. This can also happen in the Ada
6486 frontend when using subtypes. */
6488 return t;
6491 /* Create a new variant of TYPE, equivalent but distinct. This is so
6492 the caller can modify it. TYPE_CANONICAL for the return type will
6493 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6494 are considered equal by the language itself (or that both types
6495 require structural equality checks). */
6497 tree
6498 build_variant_type_copy (tree type MEM_STAT_DECL)
6500 tree t, m = TYPE_MAIN_VARIANT (type);
6502 t = build_distinct_type_copy (type PASS_MEM_STAT);
6504 /* Since we're building a variant, assume that it is a non-semantic
6505 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6506 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6507 /* Type variants have no alias set defined. */
6508 TYPE_ALIAS_SET (t) = -1;
6510 /* Add the new type to the chain of variants of TYPE. */
6511 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6512 TYPE_NEXT_VARIANT (m) = t;
6513 TYPE_MAIN_VARIANT (t) = m;
6515 return t;
6518 /* Return true if the from tree in both tree maps are equal. */
6521 tree_map_base_eq (const void *va, const void *vb)
6523 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6524 *const b = (const struct tree_map_base *) vb;
6525 return (a->from == b->from);
6528 /* Hash a from tree in a tree_base_map. */
6530 unsigned int
6531 tree_map_base_hash (const void *item)
6533 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6536 /* Return true if this tree map structure is marked for garbage collection
6537 purposes. We simply return true if the from tree is marked, so that this
6538 structure goes away when the from tree goes away. */
6541 tree_map_base_marked_p (const void *p)
6543 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6546 /* Hash a from tree in a tree_map. */
6548 unsigned int
6549 tree_map_hash (const void *item)
6551 return (((const struct tree_map *) item)->hash);
6554 /* Hash a from tree in a tree_decl_map. */
6556 unsigned int
6557 tree_decl_map_hash (const void *item)
6559 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6562 /* Return the initialization priority for DECL. */
6564 priority_type
6565 decl_init_priority_lookup (tree decl)
6567 symtab_node *snode = symtab_node::get (decl);
6569 if (!snode)
6570 return DEFAULT_INIT_PRIORITY;
6571 return
6572 snode->get_init_priority ();
6575 /* Return the finalization priority for DECL. */
6577 priority_type
6578 decl_fini_priority_lookup (tree decl)
6580 cgraph_node *node = cgraph_node::get (decl);
6582 if (!node)
6583 return DEFAULT_INIT_PRIORITY;
6584 return
6585 node->get_fini_priority ();
6588 /* Set the initialization priority for DECL to PRIORITY. */
6590 void
6591 decl_init_priority_insert (tree decl, priority_type priority)
6593 struct symtab_node *snode;
6595 if (priority == DEFAULT_INIT_PRIORITY)
6597 snode = symtab_node::get (decl);
6598 if (!snode)
6599 return;
6601 else if (VAR_P (decl))
6602 snode = varpool_node::get_create (decl);
6603 else
6604 snode = cgraph_node::get_create (decl);
6605 snode->set_init_priority (priority);
6608 /* Set the finalization priority for DECL to PRIORITY. */
6610 void
6611 decl_fini_priority_insert (tree decl, priority_type priority)
6613 struct cgraph_node *node;
6615 if (priority == DEFAULT_INIT_PRIORITY)
6617 node = cgraph_node::get (decl);
6618 if (!node)
6619 return;
6621 else
6622 node = cgraph_node::get_create (decl);
6623 node->set_fini_priority (priority);
6626 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6628 static void
6629 print_debug_expr_statistics (void)
6631 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6632 (long) debug_expr_for_decl->size (),
6633 (long) debug_expr_for_decl->elements (),
6634 debug_expr_for_decl->collisions ());
6637 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6639 static void
6640 print_value_expr_statistics (void)
6642 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6643 (long) value_expr_for_decl->size (),
6644 (long) value_expr_for_decl->elements (),
6645 value_expr_for_decl->collisions ());
6648 /* Lookup a debug expression for FROM, and return it if we find one. */
6650 tree
6651 decl_debug_expr_lookup (tree from)
6653 struct tree_decl_map *h, in;
6654 in.base.from = from;
6656 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6657 if (h)
6658 return h->to;
6659 return NULL_TREE;
6662 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6664 void
6665 decl_debug_expr_insert (tree from, tree to)
6667 struct tree_decl_map *h;
6669 h = ggc_alloc<tree_decl_map> ();
6670 h->base.from = from;
6671 h->to = to;
6672 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6675 /* Lookup a value expression for FROM, and return it if we find one. */
6677 tree
6678 decl_value_expr_lookup (tree from)
6680 struct tree_decl_map *h, in;
6681 in.base.from = from;
6683 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6684 if (h)
6685 return h->to;
6686 return NULL_TREE;
6689 /* Insert a mapping FROM->TO in the value expression hashtable. */
6691 void
6692 decl_value_expr_insert (tree from, tree to)
6694 struct tree_decl_map *h;
6696 h = ggc_alloc<tree_decl_map> ();
6697 h->base.from = from;
6698 h->to = to;
6699 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6702 /* Lookup a vector of debug arguments for FROM, and return it if we
6703 find one. */
6705 vec<tree, va_gc> **
6706 decl_debug_args_lookup (tree from)
6708 struct tree_vec_map *h, in;
6710 if (!DECL_HAS_DEBUG_ARGS_P (from))
6711 return NULL;
6712 gcc_checking_assert (debug_args_for_decl != NULL);
6713 in.base.from = from;
6714 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6715 if (h)
6716 return &h->to;
6717 return NULL;
6720 /* Insert a mapping FROM->empty vector of debug arguments in the value
6721 expression hashtable. */
6723 vec<tree, va_gc> **
6724 decl_debug_args_insert (tree from)
6726 struct tree_vec_map *h;
6727 tree_vec_map **loc;
6729 if (DECL_HAS_DEBUG_ARGS_P (from))
6730 return decl_debug_args_lookup (from);
6731 if (debug_args_for_decl == NULL)
6732 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6733 h = ggc_alloc<tree_vec_map> ();
6734 h->base.from = from;
6735 h->to = NULL;
6736 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6737 *loc = h;
6738 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6739 return &h->to;
6742 /* Hashing of types so that we don't make duplicates.
6743 The entry point is `type_hash_canon'. */
6745 /* Generate the default hash code for TYPE. This is designed for
6746 speed, rather than maximum entropy. */
6748 hashval_t
6749 type_hash_canon_hash (tree type)
6751 inchash::hash hstate;
6753 hstate.add_int (TREE_CODE (type));
6755 if (TREE_TYPE (type))
6756 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6758 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6759 /* Just the identifier is adequate to distinguish. */
6760 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6762 switch (TREE_CODE (type))
6764 case METHOD_TYPE:
6765 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6766 /* FALLTHROUGH. */
6767 case FUNCTION_TYPE:
6768 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6769 if (TREE_VALUE (t) != error_mark_node)
6770 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6771 break;
6773 case OFFSET_TYPE:
6774 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6775 break;
6777 case ARRAY_TYPE:
6779 if (TYPE_DOMAIN (type))
6780 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6781 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6783 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6784 hstate.add_object (typeless);
6787 break;
6789 case INTEGER_TYPE:
6791 tree t = TYPE_MAX_VALUE (type);
6792 if (!t)
6793 t = TYPE_MIN_VALUE (type);
6794 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6795 hstate.add_object (TREE_INT_CST_ELT (t, i));
6796 break;
6799 case REAL_TYPE:
6800 case FIXED_POINT_TYPE:
6802 unsigned prec = TYPE_PRECISION (type);
6803 hstate.add_object (prec);
6804 break;
6807 case VECTOR_TYPE:
6808 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
6809 break;
6811 default:
6812 break;
6815 return hstate.end ();
6818 /* These are the Hashtable callback functions. */
6820 /* Returns true iff the types are equivalent. */
6822 bool
6823 type_cache_hasher::equal (type_hash *a, type_hash *b)
6825 /* First test the things that are the same for all types. */
6826 if (a->hash != b->hash
6827 || TREE_CODE (a->type) != TREE_CODE (b->type)
6828 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6829 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6830 TYPE_ATTRIBUTES (b->type))
6831 || (TREE_CODE (a->type) != COMPLEX_TYPE
6832 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6833 return 0;
6835 /* Be careful about comparing arrays before and after the element type
6836 has been completed; don't compare TYPE_ALIGN unless both types are
6837 complete. */
6838 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6839 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6840 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6841 return 0;
6843 switch (TREE_CODE (a->type))
6845 case VOID_TYPE:
6846 case COMPLEX_TYPE:
6847 case POINTER_TYPE:
6848 case REFERENCE_TYPE:
6849 case NULLPTR_TYPE:
6850 return 1;
6852 case VECTOR_TYPE:
6853 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
6854 TYPE_VECTOR_SUBPARTS (b->type));
6856 case ENUMERAL_TYPE:
6857 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6858 && !(TYPE_VALUES (a->type)
6859 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6860 && TYPE_VALUES (b->type)
6861 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6862 && type_list_equal (TYPE_VALUES (a->type),
6863 TYPE_VALUES (b->type))))
6864 return 0;
6866 /* fall through */
6868 case INTEGER_TYPE:
6869 case REAL_TYPE:
6870 case BOOLEAN_TYPE:
6871 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6872 return false;
6873 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6874 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6875 TYPE_MAX_VALUE (b->type)))
6876 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6877 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6878 TYPE_MIN_VALUE (b->type))));
6880 case FIXED_POINT_TYPE:
6881 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6883 case OFFSET_TYPE:
6884 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6886 case METHOD_TYPE:
6887 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6888 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6889 || (TYPE_ARG_TYPES (a->type)
6890 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6891 && TYPE_ARG_TYPES (b->type)
6892 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6893 && type_list_equal (TYPE_ARG_TYPES (a->type),
6894 TYPE_ARG_TYPES (b->type)))))
6895 break;
6896 return 0;
6897 case ARRAY_TYPE:
6898 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6899 where the flag should be inherited from the element type
6900 and can change after ARRAY_TYPEs are created; on non-aggregates
6901 compare it and hash it, scalars will never have that flag set
6902 and we need to differentiate between arrays created by different
6903 front-ends or middle-end created arrays. */
6904 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6905 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6906 || (TYPE_TYPELESS_STORAGE (a->type)
6907 == TYPE_TYPELESS_STORAGE (b->type))));
6909 case RECORD_TYPE:
6910 case UNION_TYPE:
6911 case QUAL_UNION_TYPE:
6912 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6913 || (TYPE_FIELDS (a->type)
6914 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6915 && TYPE_FIELDS (b->type)
6916 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6917 && type_list_equal (TYPE_FIELDS (a->type),
6918 TYPE_FIELDS (b->type))));
6920 case FUNCTION_TYPE:
6921 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6922 || (TYPE_ARG_TYPES (a->type)
6923 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6924 && TYPE_ARG_TYPES (b->type)
6925 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6926 && type_list_equal (TYPE_ARG_TYPES (a->type),
6927 TYPE_ARG_TYPES (b->type))))
6928 break;
6929 return 0;
6931 default:
6932 return 0;
6935 if (lang_hooks.types.type_hash_eq != NULL)
6936 return lang_hooks.types.type_hash_eq (a->type, b->type);
6938 return 1;
6941 /* Given TYPE, and HASHCODE its hash code, return the canonical
6942 object for an identical type if one already exists.
6943 Otherwise, return TYPE, and record it as the canonical object.
6945 To use this function, first create a type of the sort you want.
6946 Then compute its hash code from the fields of the type that
6947 make it different from other similar types.
6948 Then call this function and use the value. */
6950 tree
6951 type_hash_canon (unsigned int hashcode, tree type)
6953 type_hash in;
6954 type_hash **loc;
6956 /* The hash table only contains main variants, so ensure that's what we're
6957 being passed. */
6958 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6960 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6961 must call that routine before comparing TYPE_ALIGNs. */
6962 layout_type (type);
6964 in.hash = hashcode;
6965 in.type = type;
6967 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
6968 if (*loc)
6970 tree t1 = ((type_hash *) *loc)->type;
6971 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
6972 && t1 != type);
6973 if (TYPE_UID (type) + 1 == next_type_uid)
6974 --next_type_uid;
6975 /* Free also min/max values and the cache for integer
6976 types. This can't be done in free_node, as LTO frees
6977 those on its own. */
6978 if (TREE_CODE (type) == INTEGER_TYPE)
6980 if (TYPE_MIN_VALUE (type)
6981 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
6983 /* Zero is always in TYPE_CACHED_VALUES. */
6984 if (! TYPE_UNSIGNED (type))
6985 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
6986 ggc_free (TYPE_MIN_VALUE (type));
6988 if (TYPE_MAX_VALUE (type)
6989 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
6991 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
6992 ggc_free (TYPE_MAX_VALUE (type));
6994 if (TYPE_CACHED_VALUES_P (type))
6995 ggc_free (TYPE_CACHED_VALUES (type));
6997 free_node (type);
6998 return t1;
7000 else
7002 struct type_hash *h;
7004 h = ggc_alloc<type_hash> ();
7005 h->hash = hashcode;
7006 h->type = type;
7007 *loc = h;
7009 return type;
7013 static void
7014 print_type_hash_statistics (void)
7016 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7017 (long) type_hash_table->size (),
7018 (long) type_hash_table->elements (),
7019 type_hash_table->collisions ());
7022 /* Given two lists of types
7023 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7024 return 1 if the lists contain the same types in the same order.
7025 Also, the TREE_PURPOSEs must match. */
7027 bool
7028 type_list_equal (const_tree l1, const_tree l2)
7030 const_tree t1, t2;
7032 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7033 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7034 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7035 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7036 && (TREE_TYPE (TREE_PURPOSE (t1))
7037 == TREE_TYPE (TREE_PURPOSE (t2))))))
7038 return false;
7040 return t1 == t2;
7043 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7044 given by TYPE. If the argument list accepts variable arguments,
7045 then this function counts only the ordinary arguments. */
7048 type_num_arguments (const_tree fntype)
7050 int i = 0;
7052 for (tree t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
7053 /* If the function does not take a variable number of arguments,
7054 the last element in the list will have type `void'. */
7055 if (VOID_TYPE_P (TREE_VALUE (t)))
7056 break;
7057 else
7058 ++i;
7060 return i;
7063 /* Return the type of the function TYPE's argument ARGNO if known.
7064 For vararg function's where ARGNO refers to one of the variadic
7065 arguments return null. Otherwise, return a void_type_node for
7066 out-of-bounds ARGNO. */
7068 tree
7069 type_argument_type (const_tree fntype, unsigned argno)
7071 /* Treat zero the same as an out-of-bounds argument number. */
7072 if (!argno)
7073 return void_type_node;
7075 function_args_iterator iter;
7077 tree argtype;
7078 unsigned i = 1;
7079 FOREACH_FUNCTION_ARGS (fntype, argtype, iter)
7081 /* A vararg function's argument list ends in a null. Otherwise,
7082 an ordinary function's argument list ends with void. Return
7083 null if ARGNO refers to a vararg argument, void_type_node if
7084 it's out of bounds, and the formal argument type otherwise. */
7085 if (!argtype)
7086 break;
7088 if (i == argno || VOID_TYPE_P (argtype))
7089 return argtype;
7091 ++i;
7094 return NULL_TREE;
7097 /* Nonzero if integer constants T1 and T2
7098 represent the same constant value. */
7101 tree_int_cst_equal (const_tree t1, const_tree t2)
7103 if (t1 == t2)
7104 return 1;
7106 if (t1 == 0 || t2 == 0)
7107 return 0;
7109 if (TREE_CODE (t1) == INTEGER_CST
7110 && TREE_CODE (t2) == INTEGER_CST
7111 && wi::to_widest (t1) == wi::to_widest (t2))
7112 return 1;
7114 return 0;
7117 /* Return true if T is an INTEGER_CST whose numerical value (extended
7118 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7120 bool
7121 tree_fits_shwi_p (const_tree t)
7123 return (t != NULL_TREE
7124 && TREE_CODE (t) == INTEGER_CST
7125 && wi::fits_shwi_p (wi::to_widest (t)));
7128 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7129 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
7131 bool
7132 tree_fits_poly_int64_p (const_tree t)
7134 if (t == NULL_TREE)
7135 return false;
7136 if (POLY_INT_CST_P (t))
7138 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7139 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
7140 return false;
7141 return true;
7143 return (TREE_CODE (t) == INTEGER_CST
7144 && wi::fits_shwi_p (wi::to_widest (t)));
7147 /* Return true if T is an INTEGER_CST whose numerical value (extended
7148 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7150 bool
7151 tree_fits_uhwi_p (const_tree t)
7153 return (t != NULL_TREE
7154 && TREE_CODE (t) == INTEGER_CST
7155 && wi::fits_uhwi_p (wi::to_widest (t)));
7158 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7159 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
7161 bool
7162 tree_fits_poly_uint64_p (const_tree t)
7164 if (t == NULL_TREE)
7165 return false;
7166 if (POLY_INT_CST_P (t))
7168 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7169 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
7170 return false;
7171 return true;
7173 return (TREE_CODE (t) == INTEGER_CST
7174 && wi::fits_uhwi_p (wi::to_widest (t)));
7177 /* T is an INTEGER_CST whose numerical value (extended according to
7178 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7179 HOST_WIDE_INT. */
7181 HOST_WIDE_INT
7182 tree_to_shwi (const_tree t)
7184 gcc_assert (tree_fits_shwi_p (t));
7185 return TREE_INT_CST_LOW (t);
7188 /* T is an INTEGER_CST whose numerical value (extended according to
7189 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7190 HOST_WIDE_INT. */
7192 unsigned HOST_WIDE_INT
7193 tree_to_uhwi (const_tree t)
7195 gcc_assert (tree_fits_uhwi_p (t));
7196 return TREE_INT_CST_LOW (t);
7199 /* Return the most significant (sign) bit of T. */
7202 tree_int_cst_sign_bit (const_tree t)
7204 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7206 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
7209 /* Return an indication of the sign of the integer constant T.
7210 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7211 Note that -1 will never be returned if T's type is unsigned. */
7214 tree_int_cst_sgn (const_tree t)
7216 if (wi::to_wide (t) == 0)
7217 return 0;
7218 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7219 return 1;
7220 else if (wi::neg_p (wi::to_wide (t)))
7221 return -1;
7222 else
7223 return 1;
7226 /* Return the minimum number of bits needed to represent VALUE in a
7227 signed or unsigned type, UNSIGNEDP says which. */
7229 unsigned int
7230 tree_int_cst_min_precision (tree value, signop sgn)
7232 /* If the value is negative, compute its negative minus 1. The latter
7233 adjustment is because the absolute value of the largest negative value
7234 is one larger than the largest positive value. This is equivalent to
7235 a bit-wise negation, so use that operation instead. */
7237 if (tree_int_cst_sgn (value) < 0)
7238 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7240 /* Return the number of bits needed, taking into account the fact
7241 that we need one more bit for a signed than unsigned type.
7242 If value is 0 or -1, the minimum precision is 1 no matter
7243 whether unsignedp is true or false. */
7245 if (integer_zerop (value))
7246 return 1;
7247 else
7248 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7251 /* Return truthvalue of whether T1 is the same tree structure as T2.
7252 Return 1 if they are the same.
7253 Return 0 if they are understandably different.
7254 Return -1 if either contains tree structure not understood by
7255 this function. */
7258 simple_cst_equal (const_tree t1, const_tree t2)
7260 enum tree_code code1, code2;
7261 int cmp;
7262 int i;
7264 if (t1 == t2)
7265 return 1;
7266 if (t1 == 0 || t2 == 0)
7267 return 0;
7269 code1 = TREE_CODE (t1);
7270 code2 = TREE_CODE (t2);
7272 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7274 if (CONVERT_EXPR_CODE_P (code2)
7275 || code2 == NON_LVALUE_EXPR)
7276 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7277 else
7278 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7281 else if (CONVERT_EXPR_CODE_P (code2)
7282 || code2 == NON_LVALUE_EXPR)
7283 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7285 if (code1 != code2)
7286 return 0;
7288 switch (code1)
7290 case INTEGER_CST:
7291 return wi::to_widest (t1) == wi::to_widest (t2);
7293 case REAL_CST:
7294 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7296 case FIXED_CST:
7297 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7299 case STRING_CST:
7300 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7301 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7302 TREE_STRING_LENGTH (t1)));
7304 case CONSTRUCTOR:
7306 unsigned HOST_WIDE_INT idx;
7307 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7308 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7310 if (vec_safe_length (v1) != vec_safe_length (v2))
7311 return false;
7313 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7314 /* ??? Should we handle also fields here? */
7315 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7316 return false;
7317 return true;
7320 case SAVE_EXPR:
7321 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7323 case CALL_EXPR:
7324 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7325 if (cmp <= 0)
7326 return cmp;
7327 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7328 return 0;
7330 const_tree arg1, arg2;
7331 const_call_expr_arg_iterator iter1, iter2;
7332 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7333 arg2 = first_const_call_expr_arg (t2, &iter2);
7334 arg1 && arg2;
7335 arg1 = next_const_call_expr_arg (&iter1),
7336 arg2 = next_const_call_expr_arg (&iter2))
7338 cmp = simple_cst_equal (arg1, arg2);
7339 if (cmp <= 0)
7340 return cmp;
7342 return arg1 == arg2;
7345 case TARGET_EXPR:
7346 /* Special case: if either target is an unallocated VAR_DECL,
7347 it means that it's going to be unified with whatever the
7348 TARGET_EXPR is really supposed to initialize, so treat it
7349 as being equivalent to anything. */
7350 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7351 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7352 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7353 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7354 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7355 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7356 cmp = 1;
7357 else
7358 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7360 if (cmp <= 0)
7361 return cmp;
7363 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7365 case WITH_CLEANUP_EXPR:
7366 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7367 if (cmp <= 0)
7368 return cmp;
7370 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7372 case COMPONENT_REF:
7373 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7374 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7376 return 0;
7378 case VAR_DECL:
7379 case PARM_DECL:
7380 case CONST_DECL:
7381 case FUNCTION_DECL:
7382 return 0;
7384 default:
7385 if (POLY_INT_CST_P (t1))
7386 /* A false return means maybe_ne rather than known_ne. */
7387 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7388 TYPE_SIGN (TREE_TYPE (t1))),
7389 poly_widest_int::from (poly_int_cst_value (t2),
7390 TYPE_SIGN (TREE_TYPE (t2))));
7391 break;
7394 /* This general rule works for most tree codes. All exceptions should be
7395 handled above. If this is a language-specific tree code, we can't
7396 trust what might be in the operand, so say we don't know
7397 the situation. */
7398 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7399 return -1;
7401 switch (TREE_CODE_CLASS (code1))
7403 case tcc_unary:
7404 case tcc_binary:
7405 case tcc_comparison:
7406 case tcc_expression:
7407 case tcc_reference:
7408 case tcc_statement:
7409 cmp = 1;
7410 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7412 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7413 if (cmp <= 0)
7414 return cmp;
7417 return cmp;
7419 default:
7420 return -1;
7424 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7425 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7426 than U, respectively. */
7429 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7431 if (tree_int_cst_sgn (t) < 0)
7432 return -1;
7433 else if (!tree_fits_uhwi_p (t))
7434 return 1;
7435 else if (TREE_INT_CST_LOW (t) == u)
7436 return 0;
7437 else if (TREE_INT_CST_LOW (t) < u)
7438 return -1;
7439 else
7440 return 1;
7443 /* Return true if SIZE represents a constant size that is in bounds of
7444 what the middle-end and the backend accepts (covering not more than
7445 half of the address-space). */
7447 bool
7448 valid_constant_size_p (const_tree size)
7450 if (POLY_INT_CST_P (size))
7452 if (TREE_OVERFLOW (size))
7453 return false;
7454 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7455 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7456 return false;
7457 return true;
7459 if (! tree_fits_uhwi_p (size)
7460 || TREE_OVERFLOW (size)
7461 || tree_int_cst_sign_bit (size) != 0)
7462 return false;
7463 return true;
7466 /* Return the precision of the type, or for a complex or vector type the
7467 precision of the type of its elements. */
7469 unsigned int
7470 element_precision (const_tree type)
7472 if (!TYPE_P (type))
7473 type = TREE_TYPE (type);
7474 enum tree_code code = TREE_CODE (type);
7475 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7476 type = TREE_TYPE (type);
7478 return TYPE_PRECISION (type);
7481 /* Return true if CODE represents an associative tree code. Otherwise
7482 return false. */
7483 bool
7484 associative_tree_code (enum tree_code code)
7486 switch (code)
7488 case BIT_IOR_EXPR:
7489 case BIT_AND_EXPR:
7490 case BIT_XOR_EXPR:
7491 case PLUS_EXPR:
7492 case MULT_EXPR:
7493 case MIN_EXPR:
7494 case MAX_EXPR:
7495 return true;
7497 default:
7498 break;
7500 return false;
7503 /* Return true if CODE represents a commutative tree code. Otherwise
7504 return false. */
7505 bool
7506 commutative_tree_code (enum tree_code code)
7508 switch (code)
7510 case PLUS_EXPR:
7511 case MULT_EXPR:
7512 case MULT_HIGHPART_EXPR:
7513 case MIN_EXPR:
7514 case MAX_EXPR:
7515 case BIT_IOR_EXPR:
7516 case BIT_XOR_EXPR:
7517 case BIT_AND_EXPR:
7518 case NE_EXPR:
7519 case EQ_EXPR:
7520 case UNORDERED_EXPR:
7521 case ORDERED_EXPR:
7522 case UNEQ_EXPR:
7523 case LTGT_EXPR:
7524 case TRUTH_AND_EXPR:
7525 case TRUTH_XOR_EXPR:
7526 case TRUTH_OR_EXPR:
7527 case WIDEN_MULT_EXPR:
7528 case VEC_WIDEN_MULT_HI_EXPR:
7529 case VEC_WIDEN_MULT_LO_EXPR:
7530 case VEC_WIDEN_MULT_EVEN_EXPR:
7531 case VEC_WIDEN_MULT_ODD_EXPR:
7532 return true;
7534 default:
7535 break;
7537 return false;
7540 /* Return true if CODE represents a ternary tree code for which the
7541 first two operands are commutative. Otherwise return false. */
7542 bool
7543 commutative_ternary_tree_code (enum tree_code code)
7545 switch (code)
7547 case WIDEN_MULT_PLUS_EXPR:
7548 case WIDEN_MULT_MINUS_EXPR:
7549 case DOT_PROD_EXPR:
7550 return true;
7552 default:
7553 break;
7555 return false;
7558 /* Returns true if CODE can overflow. */
7560 bool
7561 operation_can_overflow (enum tree_code code)
7563 switch (code)
7565 case PLUS_EXPR:
7566 case MINUS_EXPR:
7567 case MULT_EXPR:
7568 case LSHIFT_EXPR:
7569 /* Can overflow in various ways. */
7570 return true;
7571 case TRUNC_DIV_EXPR:
7572 case EXACT_DIV_EXPR:
7573 case FLOOR_DIV_EXPR:
7574 case CEIL_DIV_EXPR:
7575 /* For INT_MIN / -1. */
7576 return true;
7577 case NEGATE_EXPR:
7578 case ABS_EXPR:
7579 /* For -INT_MIN. */
7580 return true;
7581 default:
7582 /* These operators cannot overflow. */
7583 return false;
7587 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7588 ftrapv doesn't generate trapping insns for CODE. */
7590 bool
7591 operation_no_trapping_overflow (tree type, enum tree_code code)
7593 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7595 /* We don't generate instructions that trap on overflow for complex or vector
7596 types. */
7597 if (!INTEGRAL_TYPE_P (type))
7598 return true;
7600 if (!TYPE_OVERFLOW_TRAPS (type))
7601 return true;
7603 switch (code)
7605 case PLUS_EXPR:
7606 case MINUS_EXPR:
7607 case MULT_EXPR:
7608 case NEGATE_EXPR:
7609 case ABS_EXPR:
7610 /* These operators can overflow, and -ftrapv generates trapping code for
7611 these. */
7612 return false;
7613 case TRUNC_DIV_EXPR:
7614 case EXACT_DIV_EXPR:
7615 case FLOOR_DIV_EXPR:
7616 case CEIL_DIV_EXPR:
7617 case LSHIFT_EXPR:
7618 /* These operators can overflow, but -ftrapv does not generate trapping
7619 code for these. */
7620 return true;
7621 default:
7622 /* These operators cannot overflow. */
7623 return true;
7627 namespace inchash
7630 /* Generate a hash value for an expression. This can be used iteratively
7631 by passing a previous result as the HSTATE argument.
7633 This function is intended to produce the same hash for expressions which
7634 would compare equal using operand_equal_p. */
7635 void
7636 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7638 int i;
7639 enum tree_code code;
7640 enum tree_code_class tclass;
7642 if (t == NULL_TREE || t == error_mark_node)
7644 hstate.merge_hash (0);
7645 return;
7648 if (!(flags & OEP_ADDRESS_OF))
7649 STRIP_NOPS (t);
7651 code = TREE_CODE (t);
7653 switch (code)
7655 /* Alas, constants aren't shared, so we can't rely on pointer
7656 identity. */
7657 case VOID_CST:
7658 hstate.merge_hash (0);
7659 return;
7660 case INTEGER_CST:
7661 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7662 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7663 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7664 return;
7665 case REAL_CST:
7667 unsigned int val2;
7668 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7669 val2 = rvc_zero;
7670 else
7671 val2 = real_hash (TREE_REAL_CST_PTR (t));
7672 hstate.merge_hash (val2);
7673 return;
7675 case FIXED_CST:
7677 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7678 hstate.merge_hash (val2);
7679 return;
7681 case STRING_CST:
7682 hstate.add ((const void *) TREE_STRING_POINTER (t),
7683 TREE_STRING_LENGTH (t));
7684 return;
7685 case COMPLEX_CST:
7686 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7687 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7688 return;
7689 case VECTOR_CST:
7691 hstate.add_int (VECTOR_CST_NPATTERNS (t));
7692 hstate.add_int (VECTOR_CST_NELTS_PER_PATTERN (t));
7693 unsigned int count = vector_cst_encoded_nelts (t);
7694 for (unsigned int i = 0; i < count; ++i)
7695 inchash::add_expr (VECTOR_CST_ENCODED_ELT (t, i), hstate, flags);
7696 return;
7698 case SSA_NAME:
7699 /* We can just compare by pointer. */
7700 hstate.add_hwi (SSA_NAME_VERSION (t));
7701 return;
7702 case PLACEHOLDER_EXPR:
7703 /* The node itself doesn't matter. */
7704 return;
7705 case BLOCK:
7706 case OMP_CLAUSE:
7707 /* Ignore. */
7708 return;
7709 case TREE_LIST:
7710 /* A list of expressions, for a CALL_EXPR or as the elements of a
7711 VECTOR_CST. */
7712 for (; t; t = TREE_CHAIN (t))
7713 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7714 return;
7715 case CONSTRUCTOR:
7717 unsigned HOST_WIDE_INT idx;
7718 tree field, value;
7719 flags &= ~OEP_ADDRESS_OF;
7720 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7722 inchash::add_expr (field, hstate, flags);
7723 inchash::add_expr (value, hstate, flags);
7725 return;
7727 case STATEMENT_LIST:
7729 tree_stmt_iterator i;
7730 for (i = tsi_start (CONST_CAST_TREE (t));
7731 !tsi_end_p (i); tsi_next (&i))
7732 inchash::add_expr (tsi_stmt (i), hstate, flags);
7733 return;
7735 case TREE_VEC:
7736 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7737 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7738 return;
7739 case IDENTIFIER_NODE:
7740 hstate.add_object (IDENTIFIER_HASH_VALUE (t));
7741 return;
7742 case FUNCTION_DECL:
7743 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7744 Otherwise nodes that compare equal according to operand_equal_p might
7745 get different hash codes. However, don't do this for machine specific
7746 or front end builtins, since the function code is overloaded in those
7747 cases. */
7748 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7749 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7751 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7752 code = TREE_CODE (t);
7754 /* FALL THROUGH */
7755 default:
7756 if (POLY_INT_CST_P (t))
7758 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7759 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
7760 return;
7762 tclass = TREE_CODE_CLASS (code);
7764 if (tclass == tcc_declaration)
7766 /* DECL's have a unique ID */
7767 hstate.add_hwi (DECL_UID (t));
7769 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7771 /* For comparisons that can be swapped, use the lower
7772 tree code. */
7773 enum tree_code ccode = swap_tree_comparison (code);
7774 if (code < ccode)
7775 ccode = code;
7776 hstate.add_object (ccode);
7777 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7778 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7780 else if (CONVERT_EXPR_CODE_P (code))
7782 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7783 operand_equal_p. */
7784 enum tree_code ccode = NOP_EXPR;
7785 hstate.add_object (ccode);
7787 /* Don't hash the type, that can lead to having nodes which
7788 compare equal according to operand_equal_p, but which
7789 have different hash codes. Make sure to include signedness
7790 in the hash computation. */
7791 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7792 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7794 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7795 else if (code == MEM_REF
7796 && (flags & OEP_ADDRESS_OF) != 0
7797 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7798 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7799 && integer_zerop (TREE_OPERAND (t, 1)))
7800 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7801 hstate, flags);
7802 /* Don't ICE on FE specific trees, or their arguments etc.
7803 during operand_equal_p hash verification. */
7804 else if (!IS_EXPR_CODE_CLASS (tclass))
7805 gcc_assert (flags & OEP_HASH_CHECK);
7806 else
7808 unsigned int sflags = flags;
7810 hstate.add_object (code);
7812 switch (code)
7814 case ADDR_EXPR:
7815 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7816 flags |= OEP_ADDRESS_OF;
7817 sflags = flags;
7818 break;
7820 case INDIRECT_REF:
7821 case MEM_REF:
7822 case TARGET_MEM_REF:
7823 flags &= ~OEP_ADDRESS_OF;
7824 sflags = flags;
7825 break;
7827 case ARRAY_REF:
7828 case ARRAY_RANGE_REF:
7829 case COMPONENT_REF:
7830 case BIT_FIELD_REF:
7831 sflags &= ~OEP_ADDRESS_OF;
7832 break;
7834 case COND_EXPR:
7835 flags &= ~OEP_ADDRESS_OF;
7836 break;
7838 case WIDEN_MULT_PLUS_EXPR:
7839 case WIDEN_MULT_MINUS_EXPR:
7841 /* The multiplication operands are commutative. */
7842 inchash::hash one, two;
7843 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7844 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7845 hstate.add_commutative (one, two);
7846 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7847 return;
7850 case CALL_EXPR:
7851 if (CALL_EXPR_FN (t) == NULL_TREE)
7852 hstate.add_int (CALL_EXPR_IFN (t));
7853 break;
7855 case TARGET_EXPR:
7856 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7857 Usually different TARGET_EXPRs just should use
7858 different temporaries in their slots. */
7859 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7860 return;
7862 default:
7863 break;
7866 /* Don't hash the type, that can lead to having nodes which
7867 compare equal according to operand_equal_p, but which
7868 have different hash codes. */
7869 if (code == NON_LVALUE_EXPR)
7871 /* Make sure to include signness in the hash computation. */
7872 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7873 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7876 else if (commutative_tree_code (code))
7878 /* It's a commutative expression. We want to hash it the same
7879 however it appears. We do this by first hashing both operands
7880 and then rehashing based on the order of their independent
7881 hashes. */
7882 inchash::hash one, two;
7883 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7884 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7885 hstate.add_commutative (one, two);
7887 else
7888 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7889 inchash::add_expr (TREE_OPERAND (t, i), hstate,
7890 i == 0 ? flags : sflags);
7892 return;
7898 /* Constructors for pointer, array and function types.
7899 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7900 constructed by language-dependent code, not here.) */
7902 /* Construct, lay out and return the type of pointers to TO_TYPE with
7903 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7904 reference all of memory. If such a type has already been
7905 constructed, reuse it. */
7907 tree
7908 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7909 bool can_alias_all)
7911 tree t;
7912 bool could_alias = can_alias_all;
7914 if (to_type == error_mark_node)
7915 return error_mark_node;
7917 /* If the pointed-to type has the may_alias attribute set, force
7918 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7919 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7920 can_alias_all = true;
7922 /* In some cases, languages will have things that aren't a POINTER_TYPE
7923 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7924 In that case, return that type without regard to the rest of our
7925 operands.
7927 ??? This is a kludge, but consistent with the way this function has
7928 always operated and there doesn't seem to be a good way to avoid this
7929 at the moment. */
7930 if (TYPE_POINTER_TO (to_type) != 0
7931 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7932 return TYPE_POINTER_TO (to_type);
7934 /* First, if we already have a type for pointers to TO_TYPE and it's
7935 the proper mode, use it. */
7936 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7937 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7938 return t;
7940 t = make_node (POINTER_TYPE);
7942 TREE_TYPE (t) = to_type;
7943 SET_TYPE_MODE (t, mode);
7944 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7945 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7946 TYPE_POINTER_TO (to_type) = t;
7948 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7949 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7950 SET_TYPE_STRUCTURAL_EQUALITY (t);
7951 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7952 TYPE_CANONICAL (t)
7953 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7954 mode, false);
7956 /* Lay out the type. This function has many callers that are concerned
7957 with expression-construction, and this simplifies them all. */
7958 layout_type (t);
7960 return t;
7963 /* By default build pointers in ptr_mode. */
7965 tree
7966 build_pointer_type (tree to_type)
7968 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7969 : TYPE_ADDR_SPACE (to_type);
7970 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7971 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7974 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7976 tree
7977 build_reference_type_for_mode (tree to_type, machine_mode mode,
7978 bool can_alias_all)
7980 tree t;
7981 bool could_alias = can_alias_all;
7983 if (to_type == error_mark_node)
7984 return error_mark_node;
7986 /* If the pointed-to type has the may_alias attribute set, force
7987 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7988 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7989 can_alias_all = true;
7991 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7992 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7993 In that case, return that type without regard to the rest of our
7994 operands.
7996 ??? This is a kludge, but consistent with the way this function has
7997 always operated and there doesn't seem to be a good way to avoid this
7998 at the moment. */
7999 if (TYPE_REFERENCE_TO (to_type) != 0
8000 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
8001 return TYPE_REFERENCE_TO (to_type);
8003 /* First, if we already have a type for pointers to TO_TYPE and it's
8004 the proper mode, use it. */
8005 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
8006 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8007 return t;
8009 t = make_node (REFERENCE_TYPE);
8011 TREE_TYPE (t) = to_type;
8012 SET_TYPE_MODE (t, mode);
8013 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8014 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
8015 TYPE_REFERENCE_TO (to_type) = t;
8017 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8018 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8019 SET_TYPE_STRUCTURAL_EQUALITY (t);
8020 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8021 TYPE_CANONICAL (t)
8022 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
8023 mode, false);
8025 layout_type (t);
8027 return t;
8031 /* Build the node for the type of references-to-TO_TYPE by default
8032 in ptr_mode. */
8034 tree
8035 build_reference_type (tree to_type)
8037 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8038 : TYPE_ADDR_SPACE (to_type);
8039 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8040 return build_reference_type_for_mode (to_type, pointer_mode, false);
8043 #define MAX_INT_CACHED_PREC \
8044 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8045 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
8047 /* Builds a signed or unsigned integer type of precision PRECISION.
8048 Used for C bitfields whose precision does not match that of
8049 built-in target types. */
8050 tree
8051 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8052 int unsignedp)
8054 tree itype, ret;
8056 if (unsignedp)
8057 unsignedp = MAX_INT_CACHED_PREC + 1;
8059 if (precision <= MAX_INT_CACHED_PREC)
8061 itype = nonstandard_integer_type_cache[precision + unsignedp];
8062 if (itype)
8063 return itype;
8066 itype = make_node (INTEGER_TYPE);
8067 TYPE_PRECISION (itype) = precision;
8069 if (unsignedp)
8070 fixup_unsigned_type (itype);
8071 else
8072 fixup_signed_type (itype);
8074 ret = itype;
8076 inchash::hash hstate;
8077 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8078 ret = type_hash_canon (hstate.end (), itype);
8079 if (precision <= MAX_INT_CACHED_PREC)
8080 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8082 return ret;
8085 #define MAX_BOOL_CACHED_PREC \
8086 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8087 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8089 /* Builds a boolean type of precision PRECISION.
8090 Used for boolean vectors to choose proper vector element size. */
8091 tree
8092 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8094 tree type;
8096 if (precision <= MAX_BOOL_CACHED_PREC)
8098 type = nonstandard_boolean_type_cache[precision];
8099 if (type)
8100 return type;
8103 type = make_node (BOOLEAN_TYPE);
8104 TYPE_PRECISION (type) = precision;
8105 fixup_signed_type (type);
8107 if (precision <= MAX_INT_CACHED_PREC)
8108 nonstandard_boolean_type_cache[precision] = type;
8110 return type;
8113 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8114 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8115 is true, reuse such a type that has already been constructed. */
8117 static tree
8118 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8120 tree itype = make_node (INTEGER_TYPE);
8122 TREE_TYPE (itype) = type;
8124 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8125 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8127 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8128 SET_TYPE_MODE (itype, TYPE_MODE (type));
8129 TYPE_SIZE (itype) = TYPE_SIZE (type);
8130 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8131 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
8132 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8133 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
8135 if (!shared)
8136 return itype;
8138 if ((TYPE_MIN_VALUE (itype)
8139 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8140 || (TYPE_MAX_VALUE (itype)
8141 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8143 /* Since we cannot reliably merge this type, we need to compare it using
8144 structural equality checks. */
8145 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8146 return itype;
8149 hashval_t hash = type_hash_canon_hash (itype);
8150 itype = type_hash_canon (hash, itype);
8152 return itype;
8155 /* Wrapper around build_range_type_1 with SHARED set to true. */
8157 tree
8158 build_range_type (tree type, tree lowval, tree highval)
8160 return build_range_type_1 (type, lowval, highval, true);
8163 /* Wrapper around build_range_type_1 with SHARED set to false. */
8165 tree
8166 build_nonshared_range_type (tree type, tree lowval, tree highval)
8168 return build_range_type_1 (type, lowval, highval, false);
8171 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8172 MAXVAL should be the maximum value in the domain
8173 (one less than the length of the array).
8175 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8176 We don't enforce this limit, that is up to caller (e.g. language front end).
8177 The limit exists because the result is a signed type and we don't handle
8178 sizes that use more than one HOST_WIDE_INT. */
8180 tree
8181 build_index_type (tree maxval)
8183 return build_range_type (sizetype, size_zero_node, maxval);
8186 /* Return true if the debug information for TYPE, a subtype, should be emitted
8187 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8188 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8189 debug info and doesn't reflect the source code. */
8191 bool
8192 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8194 tree base_type = TREE_TYPE (type), low, high;
8196 /* Subrange types have a base type which is an integral type. */
8197 if (!INTEGRAL_TYPE_P (base_type))
8198 return false;
8200 /* Get the real bounds of the subtype. */
8201 if (lang_hooks.types.get_subrange_bounds)
8202 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8203 else
8205 low = TYPE_MIN_VALUE (type);
8206 high = TYPE_MAX_VALUE (type);
8209 /* If the type and its base type have the same representation and the same
8210 name, then the type is not a subrange but a copy of the base type. */
8211 if ((TREE_CODE (base_type) == INTEGER_TYPE
8212 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8213 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8214 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8215 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8216 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8217 return false;
8219 if (lowval)
8220 *lowval = low;
8221 if (highval)
8222 *highval = high;
8223 return true;
8226 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8227 and number of elements specified by the range of values of INDEX_TYPE.
8228 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
8229 If SHARED is true, reuse such a type that has already been constructed. */
8231 static tree
8232 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
8233 bool shared)
8235 tree t;
8237 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8239 error ("arrays of functions are not meaningful");
8240 elt_type = integer_type_node;
8243 t = make_node (ARRAY_TYPE);
8244 TREE_TYPE (t) = elt_type;
8245 TYPE_DOMAIN (t) = index_type;
8246 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8247 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
8248 layout_type (t);
8250 /* If the element type is incomplete at this point we get marked for
8251 structural equality. Do not record these types in the canonical
8252 type hashtable. */
8253 if (TYPE_STRUCTURAL_EQUALITY_P (t))
8254 return t;
8256 if (shared)
8258 hashval_t hash = type_hash_canon_hash (t);
8259 t = type_hash_canon (hash, t);
8262 if (TYPE_CANONICAL (t) == t)
8264 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8265 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8266 || in_lto_p)
8267 SET_TYPE_STRUCTURAL_EQUALITY (t);
8268 else if (TYPE_CANONICAL (elt_type) != elt_type
8269 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8270 TYPE_CANONICAL (t)
8271 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8272 index_type
8273 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8274 typeless_storage, shared);
8277 return t;
8280 /* Wrapper around build_array_type_1 with SHARED set to true. */
8282 tree
8283 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
8285 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
8288 /* Wrapper around build_array_type_1 with SHARED set to false. */
8290 tree
8291 build_nonshared_array_type (tree elt_type, tree index_type)
8293 return build_array_type_1 (elt_type, index_type, false, false);
8296 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8297 sizetype. */
8299 tree
8300 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
8302 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8305 /* Recursively examines the array elements of TYPE, until a non-array
8306 element type is found. */
8308 tree
8309 strip_array_types (tree type)
8311 while (TREE_CODE (type) == ARRAY_TYPE)
8312 type = TREE_TYPE (type);
8314 return type;
8317 /* Computes the canonical argument types from the argument type list
8318 ARGTYPES.
8320 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8321 on entry to this function, or if any of the ARGTYPES are
8322 structural.
8324 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8325 true on entry to this function, or if any of the ARGTYPES are
8326 non-canonical.
8328 Returns a canonical argument list, which may be ARGTYPES when the
8329 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8330 true) or would not differ from ARGTYPES. */
8332 static tree
8333 maybe_canonicalize_argtypes (tree argtypes,
8334 bool *any_structural_p,
8335 bool *any_noncanonical_p)
8337 tree arg;
8338 bool any_noncanonical_argtypes_p = false;
8340 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8342 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8343 /* Fail gracefully by stating that the type is structural. */
8344 *any_structural_p = true;
8345 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8346 *any_structural_p = true;
8347 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8348 || TREE_PURPOSE (arg))
8349 /* If the argument has a default argument, we consider it
8350 non-canonical even though the type itself is canonical.
8351 That way, different variants of function and method types
8352 with default arguments will all point to the variant with
8353 no defaults as their canonical type. */
8354 any_noncanonical_argtypes_p = true;
8357 if (*any_structural_p)
8358 return argtypes;
8360 if (any_noncanonical_argtypes_p)
8362 /* Build the canonical list of argument types. */
8363 tree canon_argtypes = NULL_TREE;
8364 bool is_void = false;
8366 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8368 if (arg == void_list_node)
8369 is_void = true;
8370 else
8371 canon_argtypes = tree_cons (NULL_TREE,
8372 TYPE_CANONICAL (TREE_VALUE (arg)),
8373 canon_argtypes);
8376 canon_argtypes = nreverse (canon_argtypes);
8377 if (is_void)
8378 canon_argtypes = chainon (canon_argtypes, void_list_node);
8380 /* There is a non-canonical type. */
8381 *any_noncanonical_p = true;
8382 return canon_argtypes;
8385 /* The canonical argument types are the same as ARGTYPES. */
8386 return argtypes;
8389 /* Construct, lay out and return
8390 the type of functions returning type VALUE_TYPE
8391 given arguments of types ARG_TYPES.
8392 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8393 are data type nodes for the arguments of the function.
8394 If such a type has already been constructed, reuse it. */
8396 tree
8397 build_function_type (tree value_type, tree arg_types)
8399 tree t;
8400 inchash::hash hstate;
8401 bool any_structural_p, any_noncanonical_p;
8402 tree canon_argtypes;
8404 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8406 error ("function return type cannot be function");
8407 value_type = integer_type_node;
8410 /* Make a node of the sort we want. */
8411 t = make_node (FUNCTION_TYPE);
8412 TREE_TYPE (t) = value_type;
8413 TYPE_ARG_TYPES (t) = arg_types;
8415 /* If we already have such a type, use the old one. */
8416 hashval_t hash = type_hash_canon_hash (t);
8417 t = type_hash_canon (hash, t);
8419 /* Set up the canonical type. */
8420 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8421 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8422 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8423 &any_structural_p,
8424 &any_noncanonical_p);
8425 if (any_structural_p)
8426 SET_TYPE_STRUCTURAL_EQUALITY (t);
8427 else if (any_noncanonical_p)
8428 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8429 canon_argtypes);
8431 if (!COMPLETE_TYPE_P (t))
8432 layout_type (t);
8433 return t;
8436 /* Build a function type. The RETURN_TYPE is the type returned by the
8437 function. If VAARGS is set, no void_type_node is appended to the
8438 list. ARGP must be always be terminated be a NULL_TREE. */
8440 static tree
8441 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8443 tree t, args, last;
8445 t = va_arg (argp, tree);
8446 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8447 args = tree_cons (NULL_TREE, t, args);
8449 if (vaargs)
8451 last = args;
8452 if (args != NULL_TREE)
8453 args = nreverse (args);
8454 gcc_assert (last != void_list_node);
8456 else if (args == NULL_TREE)
8457 args = void_list_node;
8458 else
8460 last = args;
8461 args = nreverse (args);
8462 TREE_CHAIN (last) = void_list_node;
8464 args = build_function_type (return_type, args);
8466 return args;
8469 /* Build a function type. The RETURN_TYPE is the type returned by the
8470 function. If additional arguments are provided, they are
8471 additional argument types. The list of argument types must always
8472 be terminated by NULL_TREE. */
8474 tree
8475 build_function_type_list (tree return_type, ...)
8477 tree args;
8478 va_list p;
8480 va_start (p, return_type);
8481 args = build_function_type_list_1 (false, return_type, p);
8482 va_end (p);
8483 return args;
8486 /* Build a variable argument function type. The RETURN_TYPE is the
8487 type returned by the function. If additional arguments are provided,
8488 they are additional argument types. The list of argument types must
8489 always be terminated by NULL_TREE. */
8491 tree
8492 build_varargs_function_type_list (tree return_type, ...)
8494 tree args;
8495 va_list p;
8497 va_start (p, return_type);
8498 args = build_function_type_list_1 (true, return_type, p);
8499 va_end (p);
8501 return args;
8504 /* Build a function type. RETURN_TYPE is the type returned by the
8505 function; VAARGS indicates whether the function takes varargs. The
8506 function takes N named arguments, the types of which are provided in
8507 ARG_TYPES. */
8509 static tree
8510 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8511 tree *arg_types)
8513 int i;
8514 tree t = vaargs ? NULL_TREE : void_list_node;
8516 for (i = n - 1; i >= 0; i--)
8517 t = tree_cons (NULL_TREE, arg_types[i], t);
8519 return build_function_type (return_type, t);
8522 /* Build a function type. RETURN_TYPE is the type returned by the
8523 function. The function takes N named arguments, the types of which
8524 are provided in ARG_TYPES. */
8526 tree
8527 build_function_type_array (tree return_type, int n, tree *arg_types)
8529 return build_function_type_array_1 (false, return_type, n, arg_types);
8532 /* Build a variable argument function type. RETURN_TYPE is the type
8533 returned by the function. The function takes N named arguments, the
8534 types of which are provided in ARG_TYPES. */
8536 tree
8537 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8539 return build_function_type_array_1 (true, return_type, n, arg_types);
8542 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8543 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8544 for the method. An implicit additional parameter (of type
8545 pointer-to-BASETYPE) is added to the ARGTYPES. */
8547 tree
8548 build_method_type_directly (tree basetype,
8549 tree rettype,
8550 tree argtypes)
8552 tree t;
8553 tree ptype;
8554 bool any_structural_p, any_noncanonical_p;
8555 tree canon_argtypes;
8557 /* Make a node of the sort we want. */
8558 t = make_node (METHOD_TYPE);
8560 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8561 TREE_TYPE (t) = rettype;
8562 ptype = build_pointer_type (basetype);
8564 /* The actual arglist for this function includes a "hidden" argument
8565 which is "this". Put it into the list of argument types. */
8566 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8567 TYPE_ARG_TYPES (t) = argtypes;
8569 /* If we already have such a type, use the old one. */
8570 hashval_t hash = type_hash_canon_hash (t);
8571 t = type_hash_canon (hash, t);
8573 /* Set up the canonical type. */
8574 any_structural_p
8575 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8576 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8577 any_noncanonical_p
8578 = (TYPE_CANONICAL (basetype) != basetype
8579 || TYPE_CANONICAL (rettype) != rettype);
8580 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8581 &any_structural_p,
8582 &any_noncanonical_p);
8583 if (any_structural_p)
8584 SET_TYPE_STRUCTURAL_EQUALITY (t);
8585 else if (any_noncanonical_p)
8586 TYPE_CANONICAL (t)
8587 = build_method_type_directly (TYPE_CANONICAL (basetype),
8588 TYPE_CANONICAL (rettype),
8589 canon_argtypes);
8590 if (!COMPLETE_TYPE_P (t))
8591 layout_type (t);
8593 return t;
8596 /* Construct, lay out and return the type of methods belonging to class
8597 BASETYPE and whose arguments and values are described by TYPE.
8598 If that type exists already, reuse it.
8599 TYPE must be a FUNCTION_TYPE node. */
8601 tree
8602 build_method_type (tree basetype, tree type)
8604 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8606 return build_method_type_directly (basetype,
8607 TREE_TYPE (type),
8608 TYPE_ARG_TYPES (type));
8611 /* Construct, lay out and return the type of offsets to a value
8612 of type TYPE, within an object of type BASETYPE.
8613 If a suitable offset type exists already, reuse it. */
8615 tree
8616 build_offset_type (tree basetype, tree type)
8618 tree t;
8620 /* Make a node of the sort we want. */
8621 t = make_node (OFFSET_TYPE);
8623 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8624 TREE_TYPE (t) = type;
8626 /* If we already have such a type, use the old one. */
8627 hashval_t hash = type_hash_canon_hash (t);
8628 t = type_hash_canon (hash, t);
8630 if (!COMPLETE_TYPE_P (t))
8631 layout_type (t);
8633 if (TYPE_CANONICAL (t) == t)
8635 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8636 || TYPE_STRUCTURAL_EQUALITY_P (type))
8637 SET_TYPE_STRUCTURAL_EQUALITY (t);
8638 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8639 || TYPE_CANONICAL (type) != type)
8640 TYPE_CANONICAL (t)
8641 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8642 TYPE_CANONICAL (type));
8645 return t;
8648 /* Create a complex type whose components are COMPONENT_TYPE.
8650 If NAMED is true, the type is given a TYPE_NAME. We do not always
8651 do so because this creates a DECL node and thus make the DECL_UIDs
8652 dependent on the type canonicalization hashtable, which is GC-ed,
8653 so the DECL_UIDs would not be stable wrt garbage collection. */
8655 tree
8656 build_complex_type (tree component_type, bool named)
8658 gcc_assert (INTEGRAL_TYPE_P (component_type)
8659 || SCALAR_FLOAT_TYPE_P (component_type)
8660 || FIXED_POINT_TYPE_P (component_type));
8662 /* Make a node of the sort we want. */
8663 tree probe = make_node (COMPLEX_TYPE);
8665 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8667 /* If we already have such a type, use the old one. */
8668 hashval_t hash = type_hash_canon_hash (probe);
8669 tree t = type_hash_canon (hash, probe);
8671 if (t == probe)
8673 /* We created a new type. The hash insertion will have laid
8674 out the type. We need to check the canonicalization and
8675 maybe set the name. */
8676 gcc_checking_assert (COMPLETE_TYPE_P (t)
8677 && !TYPE_NAME (t)
8678 && TYPE_CANONICAL (t) == t);
8680 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8681 SET_TYPE_STRUCTURAL_EQUALITY (t);
8682 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8683 TYPE_CANONICAL (t)
8684 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8686 /* We need to create a name, since complex is a fundamental type. */
8687 if (named)
8689 const char *name = NULL;
8691 if (TREE_TYPE (t) == char_type_node)
8692 name = "complex char";
8693 else if (TREE_TYPE (t) == signed_char_type_node)
8694 name = "complex signed char";
8695 else if (TREE_TYPE (t) == unsigned_char_type_node)
8696 name = "complex unsigned char";
8697 else if (TREE_TYPE (t) == short_integer_type_node)
8698 name = "complex short int";
8699 else if (TREE_TYPE (t) == short_unsigned_type_node)
8700 name = "complex short unsigned int";
8701 else if (TREE_TYPE (t) == integer_type_node)
8702 name = "complex int";
8703 else if (TREE_TYPE (t) == unsigned_type_node)
8704 name = "complex unsigned int";
8705 else if (TREE_TYPE (t) == long_integer_type_node)
8706 name = "complex long int";
8707 else if (TREE_TYPE (t) == long_unsigned_type_node)
8708 name = "complex long unsigned int";
8709 else if (TREE_TYPE (t) == long_long_integer_type_node)
8710 name = "complex long long int";
8711 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8712 name = "complex long long unsigned int";
8714 if (name != NULL)
8715 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8716 get_identifier (name), t);
8720 return build_qualified_type (t, TYPE_QUALS (component_type));
8723 /* If TYPE is a real or complex floating-point type and the target
8724 does not directly support arithmetic on TYPE then return the wider
8725 type to be used for arithmetic on TYPE. Otherwise, return
8726 NULL_TREE. */
8728 tree
8729 excess_precision_type (tree type)
8731 /* The target can give two different responses to the question of
8732 which excess precision mode it would like depending on whether we
8733 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8735 enum excess_precision_type requested_type
8736 = (flag_excess_precision == EXCESS_PRECISION_FAST
8737 ? EXCESS_PRECISION_TYPE_FAST
8738 : EXCESS_PRECISION_TYPE_STANDARD);
8740 enum flt_eval_method target_flt_eval_method
8741 = targetm.c.excess_precision (requested_type);
8743 /* The target should not ask for unpredictable float evaluation (though
8744 it might advertise that implicitly the evaluation is unpredictable,
8745 but we don't care about that here, it will have been reported
8746 elsewhere). If it does ask for unpredictable evaluation, we have
8747 nothing to do here. */
8748 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8750 /* Nothing to do. The target has asked for all types we know about
8751 to be computed with their native precision and range. */
8752 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8753 return NULL_TREE;
8755 /* The target will promote this type in a target-dependent way, so excess
8756 precision ought to leave it alone. */
8757 if (targetm.promoted_type (type) != NULL_TREE)
8758 return NULL_TREE;
8760 machine_mode float16_type_mode = (float16_type_node
8761 ? TYPE_MODE (float16_type_node)
8762 : VOIDmode);
8763 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8764 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8766 switch (TREE_CODE (type))
8768 case REAL_TYPE:
8770 machine_mode type_mode = TYPE_MODE (type);
8771 switch (target_flt_eval_method)
8773 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8774 if (type_mode == float16_type_mode)
8775 return float_type_node;
8776 break;
8777 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8778 if (type_mode == float16_type_mode
8779 || type_mode == float_type_mode)
8780 return double_type_node;
8781 break;
8782 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8783 if (type_mode == float16_type_mode
8784 || type_mode == float_type_mode
8785 || type_mode == double_type_mode)
8786 return long_double_type_node;
8787 break;
8788 default:
8789 gcc_unreachable ();
8791 break;
8793 case COMPLEX_TYPE:
8795 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8796 return NULL_TREE;
8797 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8798 switch (target_flt_eval_method)
8800 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8801 if (type_mode == float16_type_mode)
8802 return complex_float_type_node;
8803 break;
8804 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8805 if (type_mode == float16_type_mode
8806 || type_mode == float_type_mode)
8807 return complex_double_type_node;
8808 break;
8809 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8810 if (type_mode == float16_type_mode
8811 || type_mode == float_type_mode
8812 || type_mode == double_type_mode)
8813 return complex_long_double_type_node;
8814 break;
8815 default:
8816 gcc_unreachable ();
8818 break;
8820 default:
8821 break;
8824 return NULL_TREE;
8827 /* Return OP, stripped of any conversions to wider types as much as is safe.
8828 Converting the value back to OP's type makes a value equivalent to OP.
8830 If FOR_TYPE is nonzero, we return a value which, if converted to
8831 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8833 OP must have integer, real or enumeral type. Pointers are not allowed!
8835 There are some cases where the obvious value we could return
8836 would regenerate to OP if converted to OP's type,
8837 but would not extend like OP to wider types.
8838 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8839 For example, if OP is (unsigned short)(signed char)-1,
8840 we avoid returning (signed char)-1 if FOR_TYPE is int,
8841 even though extending that to an unsigned short would regenerate OP,
8842 since the result of extending (signed char)-1 to (int)
8843 is different from (int) OP. */
8845 tree
8846 get_unwidened (tree op, tree for_type)
8848 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8849 tree type = TREE_TYPE (op);
8850 unsigned final_prec
8851 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8852 int uns
8853 = (for_type != 0 && for_type != type
8854 && final_prec > TYPE_PRECISION (type)
8855 && TYPE_UNSIGNED (type));
8856 tree win = op;
8858 while (CONVERT_EXPR_P (op))
8860 int bitschange;
8862 /* TYPE_PRECISION on vector types has different meaning
8863 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8864 so avoid them here. */
8865 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8866 break;
8868 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8869 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8871 /* Truncations are many-one so cannot be removed.
8872 Unless we are later going to truncate down even farther. */
8873 if (bitschange < 0
8874 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8875 break;
8877 /* See what's inside this conversion. If we decide to strip it,
8878 we will set WIN. */
8879 op = TREE_OPERAND (op, 0);
8881 /* If we have not stripped any zero-extensions (uns is 0),
8882 we can strip any kind of extension.
8883 If we have previously stripped a zero-extension,
8884 only zero-extensions can safely be stripped.
8885 Any extension can be stripped if the bits it would produce
8886 are all going to be discarded later by truncating to FOR_TYPE. */
8888 if (bitschange > 0)
8890 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8891 win = op;
8892 /* TYPE_UNSIGNED says whether this is a zero-extension.
8893 Let's avoid computing it if it does not affect WIN
8894 and if UNS will not be needed again. */
8895 if ((uns
8896 || CONVERT_EXPR_P (op))
8897 && TYPE_UNSIGNED (TREE_TYPE (op)))
8899 uns = 1;
8900 win = op;
8905 /* If we finally reach a constant see if it fits in sth smaller and
8906 in that case convert it. */
8907 if (TREE_CODE (win) == INTEGER_CST)
8909 tree wtype = TREE_TYPE (win);
8910 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8911 if (for_type)
8912 prec = MAX (prec, final_prec);
8913 if (prec < TYPE_PRECISION (wtype))
8915 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8916 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8917 win = fold_convert (t, win);
8921 return win;
8924 /* Return OP or a simpler expression for a narrower value
8925 which can be sign-extended or zero-extended to give back OP.
8926 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8927 or 0 if the value should be sign-extended. */
8929 tree
8930 get_narrower (tree op, int *unsignedp_ptr)
8932 int uns = 0;
8933 int first = 1;
8934 tree win = op;
8935 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8937 while (TREE_CODE (op) == NOP_EXPR)
8939 int bitschange
8940 = (TYPE_PRECISION (TREE_TYPE (op))
8941 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8943 /* Truncations are many-one so cannot be removed. */
8944 if (bitschange < 0)
8945 break;
8947 /* See what's inside this conversion. If we decide to strip it,
8948 we will set WIN. */
8950 if (bitschange > 0)
8952 op = TREE_OPERAND (op, 0);
8953 /* An extension: the outermost one can be stripped,
8954 but remember whether it is zero or sign extension. */
8955 if (first)
8956 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8957 /* Otherwise, if a sign extension has been stripped,
8958 only sign extensions can now be stripped;
8959 if a zero extension has been stripped, only zero-extensions. */
8960 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8961 break;
8962 first = 0;
8964 else /* bitschange == 0 */
8966 /* A change in nominal type can always be stripped, but we must
8967 preserve the unsignedness. */
8968 if (first)
8969 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8970 first = 0;
8971 op = TREE_OPERAND (op, 0);
8972 /* Keep trying to narrow, but don't assign op to win if it
8973 would turn an integral type into something else. */
8974 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8975 continue;
8978 win = op;
8981 if (TREE_CODE (op) == COMPONENT_REF
8982 /* Since type_for_size always gives an integer type. */
8983 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8984 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8985 /* Ensure field is laid out already. */
8986 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8987 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8989 unsigned HOST_WIDE_INT innerprec
8990 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8991 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8992 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8993 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8995 /* We can get this structure field in a narrower type that fits it,
8996 but the resulting extension to its nominal type (a fullword type)
8997 must satisfy the same conditions as for other extensions.
8999 Do this only for fields that are aligned (not bit-fields),
9000 because when bit-field insns will be used there is no
9001 advantage in doing this. */
9003 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
9004 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
9005 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
9006 && type != 0)
9008 if (first)
9009 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
9010 win = fold_convert (type, op);
9014 *unsignedp_ptr = uns;
9015 return win;
9018 /* Return true if integer constant C has a value that is permissible
9019 for TYPE, an integral type. */
9021 bool
9022 int_fits_type_p (const_tree c, const_tree type)
9024 tree type_low_bound, type_high_bound;
9025 bool ok_for_low_bound, ok_for_high_bound;
9026 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
9028 /* Non-standard boolean types can have arbitrary precision but various
9029 transformations assume that they can only take values 0 and +/-1. */
9030 if (TREE_CODE (type) == BOOLEAN_TYPE)
9031 return wi::fits_to_boolean_p (wi::to_wide (c), type);
9033 retry:
9034 type_low_bound = TYPE_MIN_VALUE (type);
9035 type_high_bound = TYPE_MAX_VALUE (type);
9037 /* If at least one bound of the type is a constant integer, we can check
9038 ourselves and maybe make a decision. If no such decision is possible, but
9039 this type is a subtype, try checking against that. Otherwise, use
9040 fits_to_tree_p, which checks against the precision.
9042 Compute the status for each possibly constant bound, and return if we see
9043 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9044 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9045 for "constant known to fit". */
9047 /* Check if c >= type_low_bound. */
9048 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9050 if (tree_int_cst_lt (c, type_low_bound))
9051 return false;
9052 ok_for_low_bound = true;
9054 else
9055 ok_for_low_bound = false;
9057 /* Check if c <= type_high_bound. */
9058 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9060 if (tree_int_cst_lt (type_high_bound, c))
9061 return false;
9062 ok_for_high_bound = true;
9064 else
9065 ok_for_high_bound = false;
9067 /* If the constant fits both bounds, the result is known. */
9068 if (ok_for_low_bound && ok_for_high_bound)
9069 return true;
9071 /* Perform some generic filtering which may allow making a decision
9072 even if the bounds are not constant. First, negative integers
9073 never fit in unsigned types, */
9074 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
9075 return false;
9077 /* Second, narrower types always fit in wider ones. */
9078 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9079 return true;
9081 /* Third, unsigned integers with top bit set never fit signed types. */
9082 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9084 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
9085 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9087 /* When a tree_cst is converted to a wide-int, the precision
9088 is taken from the type. However, if the precision of the
9089 mode underneath the type is smaller than that, it is
9090 possible that the value will not fit. The test below
9091 fails if any bit is set between the sign bit of the
9092 underlying mode and the top bit of the type. */
9093 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
9094 return false;
9096 else if (wi::neg_p (wi::to_wide (c)))
9097 return false;
9100 /* If we haven't been able to decide at this point, there nothing more we
9101 can check ourselves here. Look at the base type if we have one and it
9102 has the same precision. */
9103 if (TREE_CODE (type) == INTEGER_TYPE
9104 && TREE_TYPE (type) != 0
9105 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9107 type = TREE_TYPE (type);
9108 goto retry;
9111 /* Or to fits_to_tree_p, if nothing else. */
9112 return wi::fits_to_tree_p (wi::to_wide (c), type);
9115 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9116 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9117 represented (assuming two's-complement arithmetic) within the bit
9118 precision of the type are returned instead. */
9120 void
9121 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9123 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9124 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9125 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
9126 else
9128 if (TYPE_UNSIGNED (type))
9129 mpz_set_ui (min, 0);
9130 else
9132 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9133 wi::to_mpz (mn, min, SIGNED);
9137 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9138 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9139 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
9140 else
9142 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9143 wi::to_mpz (mn, max, TYPE_SIGN (type));
9147 /* Return true if VAR is an automatic variable defined in function FN. */
9149 bool
9150 auto_var_in_fn_p (const_tree var, const_tree fn)
9152 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9153 && ((((VAR_P (var) && ! DECL_EXTERNAL (var))
9154 || TREE_CODE (var) == PARM_DECL)
9155 && ! TREE_STATIC (var))
9156 || TREE_CODE (var) == LABEL_DECL
9157 || TREE_CODE (var) == RESULT_DECL));
9160 /* Subprogram of following function. Called by walk_tree.
9162 Return *TP if it is an automatic variable or parameter of the
9163 function passed in as DATA. */
9165 static tree
9166 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9168 tree fn = (tree) data;
9170 if (TYPE_P (*tp))
9171 *walk_subtrees = 0;
9173 else if (DECL_P (*tp)
9174 && auto_var_in_fn_p (*tp, fn))
9175 return *tp;
9177 return NULL_TREE;
9180 /* Returns true if T is, contains, or refers to a type with variable
9181 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9182 arguments, but not the return type. If FN is nonzero, only return
9183 true if a modifier of the type or position of FN is a variable or
9184 parameter inside FN.
9186 This concept is more general than that of C99 'variably modified types':
9187 in C99, a struct type is never variably modified because a VLA may not
9188 appear as a structure member. However, in GNU C code like:
9190 struct S { int i[f()]; };
9192 is valid, and other languages may define similar constructs. */
9194 bool
9195 variably_modified_type_p (tree type, tree fn)
9197 tree t;
9199 /* Test if T is either variable (if FN is zero) or an expression containing
9200 a variable in FN. If TYPE isn't gimplified, return true also if
9201 gimplify_one_sizepos would gimplify the expression into a local
9202 variable. */
9203 #define RETURN_TRUE_IF_VAR(T) \
9204 do { tree _t = (T); \
9205 if (_t != NULL_TREE \
9206 && _t != error_mark_node \
9207 && !CONSTANT_CLASS_P (_t) \
9208 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9209 && (!fn \
9210 || (!TYPE_SIZES_GIMPLIFIED (type) \
9211 && (TREE_CODE (_t) != VAR_DECL \
9212 && !CONTAINS_PLACEHOLDER_P (_t))) \
9213 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9214 return true; } while (0)
9216 if (type == error_mark_node)
9217 return false;
9219 /* If TYPE itself has variable size, it is variably modified. */
9220 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9221 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9223 switch (TREE_CODE (type))
9225 case POINTER_TYPE:
9226 case REFERENCE_TYPE:
9227 case VECTOR_TYPE:
9228 /* Ada can have pointer types refering to themselves indirectly. */
9229 if (TREE_VISITED (type))
9230 return false;
9231 TREE_VISITED (type) = true;
9232 if (variably_modified_type_p (TREE_TYPE (type), fn))
9234 TREE_VISITED (type) = false;
9235 return true;
9237 TREE_VISITED (type) = false;
9238 break;
9240 case FUNCTION_TYPE:
9241 case METHOD_TYPE:
9242 /* If TYPE is a function type, it is variably modified if the
9243 return type is variably modified. */
9244 if (variably_modified_type_p (TREE_TYPE (type), fn))
9245 return true;
9246 break;
9248 case INTEGER_TYPE:
9249 case REAL_TYPE:
9250 case FIXED_POINT_TYPE:
9251 case ENUMERAL_TYPE:
9252 case BOOLEAN_TYPE:
9253 /* Scalar types are variably modified if their end points
9254 aren't constant. */
9255 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9256 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9257 break;
9259 case RECORD_TYPE:
9260 case UNION_TYPE:
9261 case QUAL_UNION_TYPE:
9262 /* We can't see if any of the fields are variably-modified by the
9263 definition we normally use, since that would produce infinite
9264 recursion via pointers. */
9265 /* This is variably modified if some field's type is. */
9266 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9267 if (TREE_CODE (t) == FIELD_DECL)
9269 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9270 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9271 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9273 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9274 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9276 break;
9278 case ARRAY_TYPE:
9279 /* Do not call ourselves to avoid infinite recursion. This is
9280 variably modified if the element type is. */
9281 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9282 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9283 break;
9285 default:
9286 break;
9289 /* The current language may have other cases to check, but in general,
9290 all other types are not variably modified. */
9291 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9293 #undef RETURN_TRUE_IF_VAR
9296 /* Given a DECL or TYPE, return the scope in which it was declared, or
9297 NULL_TREE if there is no containing scope. */
9299 tree
9300 get_containing_scope (const_tree t)
9302 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9305 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
9307 const_tree
9308 get_ultimate_context (const_tree decl)
9310 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
9312 if (TREE_CODE (decl) == BLOCK)
9313 decl = BLOCK_SUPERCONTEXT (decl);
9314 else
9315 decl = get_containing_scope (decl);
9317 return decl;
9320 /* Return the innermost context enclosing DECL that is
9321 a FUNCTION_DECL, or zero if none. */
9323 tree
9324 decl_function_context (const_tree decl)
9326 tree context;
9328 if (TREE_CODE (decl) == ERROR_MARK)
9329 return 0;
9331 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9332 where we look up the function at runtime. Such functions always take
9333 a first argument of type 'pointer to real context'.
9335 C++ should really be fixed to use DECL_CONTEXT for the real context,
9336 and use something else for the "virtual context". */
9337 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
9338 context
9339 = TYPE_MAIN_VARIANT
9340 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9341 else
9342 context = DECL_CONTEXT (decl);
9344 while (context && TREE_CODE (context) != FUNCTION_DECL)
9346 if (TREE_CODE (context) == BLOCK)
9347 context = BLOCK_SUPERCONTEXT (context);
9348 else
9349 context = get_containing_scope (context);
9352 return context;
9355 /* Return the innermost context enclosing DECL that is
9356 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9357 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9359 tree
9360 decl_type_context (const_tree decl)
9362 tree context = DECL_CONTEXT (decl);
9364 while (context)
9365 switch (TREE_CODE (context))
9367 case NAMESPACE_DECL:
9368 case TRANSLATION_UNIT_DECL:
9369 return NULL_TREE;
9371 case RECORD_TYPE:
9372 case UNION_TYPE:
9373 case QUAL_UNION_TYPE:
9374 return context;
9376 case TYPE_DECL:
9377 case FUNCTION_DECL:
9378 context = DECL_CONTEXT (context);
9379 break;
9381 case BLOCK:
9382 context = BLOCK_SUPERCONTEXT (context);
9383 break;
9385 default:
9386 gcc_unreachable ();
9389 return NULL_TREE;
9392 /* CALL is a CALL_EXPR. Return the declaration for the function
9393 called, or NULL_TREE if the called function cannot be
9394 determined. */
9396 tree
9397 get_callee_fndecl (const_tree call)
9399 tree addr;
9401 if (call == error_mark_node)
9402 return error_mark_node;
9404 /* It's invalid to call this function with anything but a
9405 CALL_EXPR. */
9406 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9408 /* The first operand to the CALL is the address of the function
9409 called. */
9410 addr = CALL_EXPR_FN (call);
9412 /* If there is no function, return early. */
9413 if (addr == NULL_TREE)
9414 return NULL_TREE;
9416 STRIP_NOPS (addr);
9418 /* If this is a readonly function pointer, extract its initial value. */
9419 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9420 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9421 && DECL_INITIAL (addr))
9422 addr = DECL_INITIAL (addr);
9424 /* If the address is just `&f' for some function `f', then we know
9425 that `f' is being called. */
9426 if (TREE_CODE (addr) == ADDR_EXPR
9427 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9428 return TREE_OPERAND (addr, 0);
9430 /* We couldn't figure out what was being called. */
9431 return NULL_TREE;
9434 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9435 return the associated function code, otherwise return CFN_LAST. */
9437 combined_fn
9438 get_call_combined_fn (const_tree call)
9440 /* It's invalid to call this function with anything but a CALL_EXPR. */
9441 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9443 if (!CALL_EXPR_FN (call))
9444 return as_combined_fn (CALL_EXPR_IFN (call));
9446 tree fndecl = get_callee_fndecl (call);
9447 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
9448 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9450 return CFN_LAST;
9453 /* Comparator of indices based on tree_node_counts. */
9455 static int
9456 tree_nodes_cmp (const void *p1, const void *p2)
9458 const unsigned *n1 = (const unsigned *)p1;
9459 const unsigned *n2 = (const unsigned *)p2;
9461 return tree_node_counts[*n1] - tree_node_counts[*n2];
9464 /* Comparator of indices based on tree_code_counts. */
9466 static int
9467 tree_codes_cmp (const void *p1, const void *p2)
9469 const unsigned *n1 = (const unsigned *)p1;
9470 const unsigned *n2 = (const unsigned *)p2;
9472 return tree_code_counts[*n1] - tree_code_counts[*n2];
9475 #define TREE_MEM_USAGE_SPACES 40
9477 /* Print debugging information about tree nodes generated during the compile,
9478 and any language-specific information. */
9480 void
9481 dump_tree_statistics (void)
9483 if (GATHER_STATISTICS)
9485 uint64_t total_nodes, total_bytes;
9486 fprintf (stderr, "\nKind Nodes Bytes\n");
9487 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9488 total_nodes = total_bytes = 0;
9491 auto_vec<unsigned> indices (all_kinds);
9492 for (unsigned i = 0; i < all_kinds; i++)
9493 indices.quick_push (i);
9494 indices.qsort (tree_nodes_cmp);
9496 for (unsigned i = 0; i < (int) all_kinds; i++)
9498 unsigned j = indices[i];
9499 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n",
9500 tree_node_kind_names[i], SIZE_AMOUNT (tree_node_counts[j]),
9501 SIZE_AMOUNT (tree_node_sizes[j]));
9502 total_nodes += tree_node_counts[j];
9503 total_bytes += tree_node_sizes[j];
9505 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9506 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", "Total",
9507 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
9508 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9512 fprintf (stderr, "Code Nodes\n");
9513 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9515 auto_vec<unsigned> indices (MAX_TREE_CODES);
9516 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9517 indices.quick_push (i);
9518 indices.qsort (tree_codes_cmp);
9520 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9522 unsigned j = indices[i];
9523 fprintf (stderr, "%-32s %6" PRIu64 "%c\n",
9524 get_tree_code_name ((enum tree_code) j),
9525 SIZE_AMOUNT (tree_code_counts[j]));
9527 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9528 fprintf (stderr, "\n");
9529 ssanames_print_statistics ();
9530 fprintf (stderr, "\n");
9531 phinodes_print_statistics ();
9532 fprintf (stderr, "\n");
9535 else
9536 fprintf (stderr, "(No per-node statistics)\n");
9538 print_type_hash_statistics ();
9539 print_debug_expr_statistics ();
9540 print_value_expr_statistics ();
9541 lang_hooks.print_statistics ();
9544 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9546 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9548 unsigned
9549 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9551 /* This relies on the raw feedback's top 4 bits being zero. */
9552 #define FEEDBACK(X) ((X) * 0x04c11db7)
9553 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9554 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9555 static const unsigned syndromes[16] =
9557 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9558 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9559 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9560 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9562 #undef FEEDBACK
9563 #undef SYNDROME
9565 value <<= (32 - bytes * 8);
9566 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9568 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9570 chksum = (chksum << 4) ^ feedback;
9573 return chksum;
9576 /* Generate a crc32 of a string. */
9578 unsigned
9579 crc32_string (unsigned chksum, const char *string)
9582 chksum = crc32_byte (chksum, *string);
9583 while (*string++);
9584 return chksum;
9587 /* P is a string that will be used in a symbol. Mask out any characters
9588 that are not valid in that context. */
9590 void
9591 clean_symbol_name (char *p)
9593 for (; *p; p++)
9594 if (! (ISALNUM (*p)
9595 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9596 || *p == '$'
9597 #endif
9598 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9599 || *p == '.'
9600 #endif
9602 *p = '_';
9605 /* For anonymous aggregate types, we need some sort of name to
9606 hold on to. In practice, this should not appear, but it should
9607 not be harmful if it does. */
9608 bool
9609 anon_aggrname_p(const_tree id_node)
9611 #ifndef NO_DOT_IN_LABEL
9612 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9613 && IDENTIFIER_POINTER (id_node)[1] == '_');
9614 #else /* NO_DOT_IN_LABEL */
9615 #ifndef NO_DOLLAR_IN_LABEL
9616 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9617 && IDENTIFIER_POINTER (id_node)[1] == '_');
9618 #else /* NO_DOLLAR_IN_LABEL */
9619 #define ANON_AGGRNAME_PREFIX "__anon_"
9620 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9621 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9622 #endif /* NO_DOLLAR_IN_LABEL */
9623 #endif /* NO_DOT_IN_LABEL */
9626 /* Return a format for an anonymous aggregate name. */
9627 const char *
9628 anon_aggrname_format()
9630 #ifndef NO_DOT_IN_LABEL
9631 return "._%d";
9632 #else /* NO_DOT_IN_LABEL */
9633 #ifndef NO_DOLLAR_IN_LABEL
9634 return "$_%d";
9635 #else /* NO_DOLLAR_IN_LABEL */
9636 return "__anon_%d";
9637 #endif /* NO_DOLLAR_IN_LABEL */
9638 #endif /* NO_DOT_IN_LABEL */
9641 /* Generate a name for a special-purpose function.
9642 The generated name may need to be unique across the whole link.
9643 Changes to this function may also require corresponding changes to
9644 xstrdup_mask_random.
9645 TYPE is some string to identify the purpose of this function to the
9646 linker or collect2; it must start with an uppercase letter,
9647 one of:
9648 I - for constructors
9649 D - for destructors
9650 N - for C++ anonymous namespaces
9651 F - for DWARF unwind frame information. */
9653 tree
9654 get_file_function_name (const char *type)
9656 char *buf;
9657 const char *p;
9658 char *q;
9660 /* If we already have a name we know to be unique, just use that. */
9661 if (first_global_object_name)
9662 p = q = ASTRDUP (first_global_object_name);
9663 /* If the target is handling the constructors/destructors, they
9664 will be local to this file and the name is only necessary for
9665 debugging purposes.
9666 We also assign sub_I and sub_D sufixes to constructors called from
9667 the global static constructors. These are always local. */
9668 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9669 || (strncmp (type, "sub_", 4) == 0
9670 && (type[4] == 'I' || type[4] == 'D')))
9672 const char *file = main_input_filename;
9673 if (! file)
9674 file = LOCATION_FILE (input_location);
9675 /* Just use the file's basename, because the full pathname
9676 might be quite long. */
9677 p = q = ASTRDUP (lbasename (file));
9679 else
9681 /* Otherwise, the name must be unique across the entire link.
9682 We don't have anything that we know to be unique to this translation
9683 unit, so use what we do have and throw in some randomness. */
9684 unsigned len;
9685 const char *name = weak_global_object_name;
9686 const char *file = main_input_filename;
9688 if (! name)
9689 name = "";
9690 if (! file)
9691 file = LOCATION_FILE (input_location);
9693 len = strlen (file);
9694 q = (char *) alloca (9 + 19 + len + 1);
9695 memcpy (q, file, len + 1);
9697 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9698 crc32_string (0, name), get_random_seed (false));
9700 p = q;
9703 clean_symbol_name (q);
9704 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9705 + strlen (type));
9707 /* Set up the name of the file-level functions we may need.
9708 Use a global object (which is already required to be unique over
9709 the program) rather than the file name (which imposes extra
9710 constraints). */
9711 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9713 return get_identifier (buf);
9716 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9718 /* Complain that the tree code of NODE does not match the expected 0
9719 terminated list of trailing codes. The trailing code list can be
9720 empty, for a more vague error message. FILE, LINE, and FUNCTION
9721 are of the caller. */
9723 void
9724 tree_check_failed (const_tree node, const char *file,
9725 int line, const char *function, ...)
9727 va_list args;
9728 const char *buffer;
9729 unsigned length = 0;
9730 enum tree_code code;
9732 va_start (args, function);
9733 while ((code = (enum tree_code) va_arg (args, int)))
9734 length += 4 + strlen (get_tree_code_name (code));
9735 va_end (args);
9736 if (length)
9738 char *tmp;
9739 va_start (args, function);
9740 length += strlen ("expected ");
9741 buffer = tmp = (char *) alloca (length);
9742 length = 0;
9743 while ((code = (enum tree_code) va_arg (args, int)))
9745 const char *prefix = length ? " or " : "expected ";
9747 strcpy (tmp + length, prefix);
9748 length += strlen (prefix);
9749 strcpy (tmp + length, get_tree_code_name (code));
9750 length += strlen (get_tree_code_name (code));
9752 va_end (args);
9754 else
9755 buffer = "unexpected node";
9757 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9758 buffer, get_tree_code_name (TREE_CODE (node)),
9759 function, trim_filename (file), line);
9762 /* Complain that the tree code of NODE does match the expected 0
9763 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9764 the caller. */
9766 void
9767 tree_not_check_failed (const_tree node, const char *file,
9768 int line, const char *function, ...)
9770 va_list args;
9771 char *buffer;
9772 unsigned length = 0;
9773 enum tree_code code;
9775 va_start (args, function);
9776 while ((code = (enum tree_code) va_arg (args, int)))
9777 length += 4 + strlen (get_tree_code_name (code));
9778 va_end (args);
9779 va_start (args, function);
9780 buffer = (char *) alloca (length);
9781 length = 0;
9782 while ((code = (enum tree_code) va_arg (args, int)))
9784 if (length)
9786 strcpy (buffer + length, " or ");
9787 length += 4;
9789 strcpy (buffer + length, get_tree_code_name (code));
9790 length += strlen (get_tree_code_name (code));
9792 va_end (args);
9794 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9795 buffer, get_tree_code_name (TREE_CODE (node)),
9796 function, trim_filename (file), line);
9799 /* Similar to tree_check_failed, except that we check for a class of tree
9800 code, given in CL. */
9802 void
9803 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9804 const char *file, int line, const char *function)
9806 internal_error
9807 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9808 TREE_CODE_CLASS_STRING (cl),
9809 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9810 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9813 /* Similar to tree_check_failed, except that instead of specifying a
9814 dozen codes, use the knowledge that they're all sequential. */
9816 void
9817 tree_range_check_failed (const_tree node, const char *file, int line,
9818 const char *function, enum tree_code c1,
9819 enum tree_code c2)
9821 char *buffer;
9822 unsigned length = 0;
9823 unsigned int c;
9825 for (c = c1; c <= c2; ++c)
9826 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9828 length += strlen ("expected ");
9829 buffer = (char *) alloca (length);
9830 length = 0;
9832 for (c = c1; c <= c2; ++c)
9834 const char *prefix = length ? " or " : "expected ";
9836 strcpy (buffer + length, prefix);
9837 length += strlen (prefix);
9838 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9839 length += strlen (get_tree_code_name ((enum tree_code) c));
9842 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9843 buffer, get_tree_code_name (TREE_CODE (node)),
9844 function, trim_filename (file), line);
9848 /* Similar to tree_check_failed, except that we check that a tree does
9849 not have the specified code, given in CL. */
9851 void
9852 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9853 const char *file, int line, const char *function)
9855 internal_error
9856 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9857 TREE_CODE_CLASS_STRING (cl),
9858 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9859 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9863 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9865 void
9866 omp_clause_check_failed (const_tree node, const char *file, int line,
9867 const char *function, enum omp_clause_code code)
9869 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9870 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9871 function, trim_filename (file), line);
9875 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9877 void
9878 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9879 const char *function, enum omp_clause_code c1,
9880 enum omp_clause_code c2)
9882 char *buffer;
9883 unsigned length = 0;
9884 unsigned int c;
9886 for (c = c1; c <= c2; ++c)
9887 length += 4 + strlen (omp_clause_code_name[c]);
9889 length += strlen ("expected ");
9890 buffer = (char *) alloca (length);
9891 length = 0;
9893 for (c = c1; c <= c2; ++c)
9895 const char *prefix = length ? " or " : "expected ";
9897 strcpy (buffer + length, prefix);
9898 length += strlen (prefix);
9899 strcpy (buffer + length, omp_clause_code_name[c]);
9900 length += strlen (omp_clause_code_name[c]);
9903 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9904 buffer, omp_clause_code_name[TREE_CODE (node)],
9905 function, trim_filename (file), line);
9909 #undef DEFTREESTRUCT
9910 #define DEFTREESTRUCT(VAL, NAME) NAME,
9912 static const char *ts_enum_names[] = {
9913 #include "treestruct.def"
9915 #undef DEFTREESTRUCT
9917 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9919 /* Similar to tree_class_check_failed, except that we check for
9920 whether CODE contains the tree structure identified by EN. */
9922 void
9923 tree_contains_struct_check_failed (const_tree node,
9924 const enum tree_node_structure_enum en,
9925 const char *file, int line,
9926 const char *function)
9928 internal_error
9929 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9930 TS_ENUM_NAME (en),
9931 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9935 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9936 (dynamically sized) vector. */
9938 void
9939 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9940 const char *function)
9942 internal_error
9943 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9944 idx + 1, len, function, trim_filename (file), line);
9947 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9948 (dynamically sized) vector. */
9950 void
9951 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9952 const char *function)
9954 internal_error
9955 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9956 idx + 1, len, function, trim_filename (file), line);
9959 /* Similar to above, except that the check is for the bounds of the operand
9960 vector of an expression node EXP. */
9962 void
9963 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9964 int line, const char *function)
9966 enum tree_code code = TREE_CODE (exp);
9967 internal_error
9968 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9969 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9970 function, trim_filename (file), line);
9973 /* Similar to above, except that the check is for the number of
9974 operands of an OMP_CLAUSE node. */
9976 void
9977 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9978 int line, const char *function)
9980 internal_error
9981 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9982 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9983 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9984 trim_filename (file), line);
9986 #endif /* ENABLE_TREE_CHECKING */
9988 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
9989 and mapped to the machine mode MODE. Initialize its fields and build
9990 the information necessary for debugging output. */
9992 static tree
9993 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
9995 tree t;
9996 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9998 t = make_node (VECTOR_TYPE);
9999 TREE_TYPE (t) = mv_innertype;
10000 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
10001 SET_TYPE_MODE (t, mode);
10003 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
10004 SET_TYPE_STRUCTURAL_EQUALITY (t);
10005 else if ((TYPE_CANONICAL (mv_innertype) != innertype
10006 || mode != VOIDmode)
10007 && !VECTOR_BOOLEAN_TYPE_P (t))
10008 TYPE_CANONICAL (t)
10009 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
10011 layout_type (t);
10013 hashval_t hash = type_hash_canon_hash (t);
10014 t = type_hash_canon (hash, t);
10016 /* We have built a main variant, based on the main variant of the
10017 inner type. Use it to build the variant we return. */
10018 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
10019 && TREE_TYPE (t) != innertype)
10020 return build_type_attribute_qual_variant (t,
10021 TYPE_ATTRIBUTES (innertype),
10022 TYPE_QUALS (innertype));
10024 return t;
10027 static tree
10028 make_or_reuse_type (unsigned size, int unsignedp)
10030 int i;
10032 if (size == INT_TYPE_SIZE)
10033 return unsignedp ? unsigned_type_node : integer_type_node;
10034 if (size == CHAR_TYPE_SIZE)
10035 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
10036 if (size == SHORT_TYPE_SIZE)
10037 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
10038 if (size == LONG_TYPE_SIZE)
10039 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
10040 if (size == LONG_LONG_TYPE_SIZE)
10041 return (unsignedp ? long_long_unsigned_type_node
10042 : long_long_integer_type_node);
10044 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10045 if (size == int_n_data[i].bitsize
10046 && int_n_enabled_p[i])
10047 return (unsignedp ? int_n_trees[i].unsigned_type
10048 : int_n_trees[i].signed_type);
10050 if (unsignedp)
10051 return make_unsigned_type (size);
10052 else
10053 return make_signed_type (size);
10056 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
10058 static tree
10059 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
10061 if (satp)
10063 if (size == SHORT_FRACT_TYPE_SIZE)
10064 return unsignedp ? sat_unsigned_short_fract_type_node
10065 : sat_short_fract_type_node;
10066 if (size == FRACT_TYPE_SIZE)
10067 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
10068 if (size == LONG_FRACT_TYPE_SIZE)
10069 return unsignedp ? sat_unsigned_long_fract_type_node
10070 : sat_long_fract_type_node;
10071 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10072 return unsignedp ? sat_unsigned_long_long_fract_type_node
10073 : sat_long_long_fract_type_node;
10075 else
10077 if (size == SHORT_FRACT_TYPE_SIZE)
10078 return unsignedp ? unsigned_short_fract_type_node
10079 : short_fract_type_node;
10080 if (size == FRACT_TYPE_SIZE)
10081 return unsignedp ? unsigned_fract_type_node : fract_type_node;
10082 if (size == LONG_FRACT_TYPE_SIZE)
10083 return unsignedp ? unsigned_long_fract_type_node
10084 : long_fract_type_node;
10085 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10086 return unsignedp ? unsigned_long_long_fract_type_node
10087 : long_long_fract_type_node;
10090 return make_fract_type (size, unsignedp, satp);
10093 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
10095 static tree
10096 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
10098 if (satp)
10100 if (size == SHORT_ACCUM_TYPE_SIZE)
10101 return unsignedp ? sat_unsigned_short_accum_type_node
10102 : sat_short_accum_type_node;
10103 if (size == ACCUM_TYPE_SIZE)
10104 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10105 if (size == LONG_ACCUM_TYPE_SIZE)
10106 return unsignedp ? sat_unsigned_long_accum_type_node
10107 : sat_long_accum_type_node;
10108 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10109 return unsignedp ? sat_unsigned_long_long_accum_type_node
10110 : sat_long_long_accum_type_node;
10112 else
10114 if (size == SHORT_ACCUM_TYPE_SIZE)
10115 return unsignedp ? unsigned_short_accum_type_node
10116 : short_accum_type_node;
10117 if (size == ACCUM_TYPE_SIZE)
10118 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10119 if (size == LONG_ACCUM_TYPE_SIZE)
10120 return unsignedp ? unsigned_long_accum_type_node
10121 : long_accum_type_node;
10122 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10123 return unsignedp ? unsigned_long_long_accum_type_node
10124 : long_long_accum_type_node;
10127 return make_accum_type (size, unsignedp, satp);
10131 /* Create an atomic variant node for TYPE. This routine is called
10132 during initialization of data types to create the 5 basic atomic
10133 types. The generic build_variant_type function requires these to
10134 already be set up in order to function properly, so cannot be
10135 called from there. If ALIGN is non-zero, then ensure alignment is
10136 overridden to this value. */
10138 static tree
10139 build_atomic_base (tree type, unsigned int align)
10141 tree t;
10143 /* Make sure its not already registered. */
10144 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10145 return t;
10147 t = build_variant_type_copy (type);
10148 set_type_quals (t, TYPE_QUAL_ATOMIC);
10150 if (align)
10151 SET_TYPE_ALIGN (t, align);
10153 return t;
10156 /* Information about the _FloatN and _FloatNx types. This must be in
10157 the same order as the corresponding TI_* enum values. */
10158 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
10160 { 16, false },
10161 { 32, false },
10162 { 64, false },
10163 { 128, false },
10164 { 32, true },
10165 { 64, true },
10166 { 128, true },
10170 /* Create nodes for all integer types (and error_mark_node) using the sizes
10171 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10173 void
10174 build_common_tree_nodes (bool signed_char)
10176 int i;
10178 error_mark_node = make_node (ERROR_MARK);
10179 TREE_TYPE (error_mark_node) = error_mark_node;
10181 initialize_sizetypes ();
10183 /* Define both `signed char' and `unsigned char'. */
10184 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10185 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10186 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10187 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10189 /* Define `char', which is like either `signed char' or `unsigned char'
10190 but not the same as either. */
10191 char_type_node
10192 = (signed_char
10193 ? make_signed_type (CHAR_TYPE_SIZE)
10194 : make_unsigned_type (CHAR_TYPE_SIZE));
10195 TYPE_STRING_FLAG (char_type_node) = 1;
10197 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10198 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10199 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10200 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10201 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10202 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10203 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10204 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10206 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10208 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10209 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10211 if (int_n_enabled_p[i])
10213 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10214 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10218 /* Define a boolean type. This type only represents boolean values but
10219 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10220 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10221 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10222 TYPE_PRECISION (boolean_type_node) = 1;
10223 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10225 /* Define what type to use for size_t. */
10226 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10227 size_type_node = unsigned_type_node;
10228 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10229 size_type_node = long_unsigned_type_node;
10230 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10231 size_type_node = long_long_unsigned_type_node;
10232 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10233 size_type_node = short_unsigned_type_node;
10234 else
10236 int i;
10238 size_type_node = NULL_TREE;
10239 for (i = 0; i < NUM_INT_N_ENTS; i++)
10240 if (int_n_enabled_p[i])
10242 char name[50];
10243 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10245 if (strcmp (name, SIZE_TYPE) == 0)
10247 size_type_node = int_n_trees[i].unsigned_type;
10250 if (size_type_node == NULL_TREE)
10251 gcc_unreachable ();
10254 /* Define what type to use for ptrdiff_t. */
10255 if (strcmp (PTRDIFF_TYPE, "int") == 0)
10256 ptrdiff_type_node = integer_type_node;
10257 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
10258 ptrdiff_type_node = long_integer_type_node;
10259 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
10260 ptrdiff_type_node = long_long_integer_type_node;
10261 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
10262 ptrdiff_type_node = short_integer_type_node;
10263 else
10265 ptrdiff_type_node = NULL_TREE;
10266 for (int i = 0; i < NUM_INT_N_ENTS; i++)
10267 if (int_n_enabled_p[i])
10269 char name[50];
10270 sprintf (name, "__int%d", int_n_data[i].bitsize);
10271 if (strcmp (name, PTRDIFF_TYPE) == 0)
10272 ptrdiff_type_node = int_n_trees[i].signed_type;
10274 if (ptrdiff_type_node == NULL_TREE)
10275 gcc_unreachable ();
10278 /* Fill in the rest of the sized types. Reuse existing type nodes
10279 when possible. */
10280 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10281 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10282 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10283 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10284 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10286 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10287 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10288 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10289 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10290 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10292 /* Don't call build_qualified type for atomics. That routine does
10293 special processing for atomics, and until they are initialized
10294 it's better not to make that call.
10296 Check to see if there is a target override for atomic types. */
10298 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10299 targetm.atomic_align_for_mode (QImode));
10300 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10301 targetm.atomic_align_for_mode (HImode));
10302 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10303 targetm.atomic_align_for_mode (SImode));
10304 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10305 targetm.atomic_align_for_mode (DImode));
10306 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10307 targetm.atomic_align_for_mode (TImode));
10309 access_public_node = get_identifier ("public");
10310 access_protected_node = get_identifier ("protected");
10311 access_private_node = get_identifier ("private");
10313 /* Define these next since types below may used them. */
10314 integer_zero_node = build_int_cst (integer_type_node, 0);
10315 integer_one_node = build_int_cst (integer_type_node, 1);
10316 integer_three_node = build_int_cst (integer_type_node, 3);
10317 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10319 size_zero_node = size_int (0);
10320 size_one_node = size_int (1);
10321 bitsize_zero_node = bitsize_int (0);
10322 bitsize_one_node = bitsize_int (1);
10323 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10325 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10326 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10328 void_type_node = make_node (VOID_TYPE);
10329 layout_type (void_type_node);
10331 /* We are not going to have real types in C with less than byte alignment,
10332 so we might as well not have any types that claim to have it. */
10333 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
10334 TYPE_USER_ALIGN (void_type_node) = 0;
10336 void_node = make_node (VOID_CST);
10337 TREE_TYPE (void_node) = void_type_node;
10339 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10340 layout_type (TREE_TYPE (null_pointer_node));
10342 ptr_type_node = build_pointer_type (void_type_node);
10343 const_ptr_type_node
10344 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10345 for (unsigned i = 0;
10346 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
10347 ++i)
10348 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
10350 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10352 float_type_node = make_node (REAL_TYPE);
10353 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10354 layout_type (float_type_node);
10356 double_type_node = make_node (REAL_TYPE);
10357 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10358 layout_type (double_type_node);
10360 long_double_type_node = make_node (REAL_TYPE);
10361 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10362 layout_type (long_double_type_node);
10364 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10366 int n = floatn_nx_types[i].n;
10367 bool extended = floatn_nx_types[i].extended;
10368 scalar_float_mode mode;
10369 if (!targetm.floatn_mode (n, extended).exists (&mode))
10370 continue;
10371 int precision = GET_MODE_PRECISION (mode);
10372 /* Work around the rs6000 KFmode having precision 113 not
10373 128. */
10374 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
10375 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
10376 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
10377 if (!extended)
10378 gcc_assert (min_precision == n);
10379 if (precision < min_precision)
10380 precision = min_precision;
10381 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
10382 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
10383 layout_type (FLOATN_NX_TYPE_NODE (i));
10384 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
10387 float_ptr_type_node = build_pointer_type (float_type_node);
10388 double_ptr_type_node = build_pointer_type (double_type_node);
10389 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10390 integer_ptr_type_node = build_pointer_type (integer_type_node);
10392 /* Fixed size integer types. */
10393 uint16_type_node = make_or_reuse_type (16, 1);
10394 uint32_type_node = make_or_reuse_type (32, 1);
10395 uint64_type_node = make_or_reuse_type (64, 1);
10397 /* Decimal float types. */
10398 dfloat32_type_node = make_node (REAL_TYPE);
10399 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10400 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10401 layout_type (dfloat32_type_node);
10402 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
10404 dfloat64_type_node = make_node (REAL_TYPE);
10405 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10406 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10407 layout_type (dfloat64_type_node);
10408 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
10410 dfloat128_type_node = make_node (REAL_TYPE);
10411 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10412 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10413 layout_type (dfloat128_type_node);
10414 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
10416 complex_integer_type_node = build_complex_type (integer_type_node, true);
10417 complex_float_type_node = build_complex_type (float_type_node, true);
10418 complex_double_type_node = build_complex_type (double_type_node, true);
10419 complex_long_double_type_node = build_complex_type (long_double_type_node,
10420 true);
10422 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10424 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10425 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10426 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10429 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10430 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10431 sat_ ## KIND ## _type_node = \
10432 make_sat_signed_ ## KIND ## _type (SIZE); \
10433 sat_unsigned_ ## KIND ## _type_node = \
10434 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10435 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10436 unsigned_ ## KIND ## _type_node = \
10437 make_unsigned_ ## KIND ## _type (SIZE);
10439 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10440 sat_ ## WIDTH ## KIND ## _type_node = \
10441 make_sat_signed_ ## KIND ## _type (SIZE); \
10442 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10443 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10444 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10445 unsigned_ ## WIDTH ## KIND ## _type_node = \
10446 make_unsigned_ ## KIND ## _type (SIZE);
10448 /* Make fixed-point type nodes based on four different widths. */
10449 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10450 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10451 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10452 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10453 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10455 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10456 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10457 NAME ## _type_node = \
10458 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10459 u ## NAME ## _type_node = \
10460 make_or_reuse_unsigned_ ## KIND ## _type \
10461 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10462 sat_ ## NAME ## _type_node = \
10463 make_or_reuse_sat_signed_ ## KIND ## _type \
10464 (GET_MODE_BITSIZE (MODE ## mode)); \
10465 sat_u ## NAME ## _type_node = \
10466 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10467 (GET_MODE_BITSIZE (U ## MODE ## mode));
10469 /* Fixed-point type and mode nodes. */
10470 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10471 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10472 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10473 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10474 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10475 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10476 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10477 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10478 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10479 MAKE_FIXED_MODE_NODE (accum, da, DA)
10480 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10483 tree t = targetm.build_builtin_va_list ();
10485 /* Many back-ends define record types without setting TYPE_NAME.
10486 If we copied the record type here, we'd keep the original
10487 record type without a name. This breaks name mangling. So,
10488 don't copy record types and let c_common_nodes_and_builtins()
10489 declare the type to be __builtin_va_list. */
10490 if (TREE_CODE (t) != RECORD_TYPE)
10491 t = build_variant_type_copy (t);
10493 va_list_type_node = t;
10497 /* Modify DECL for given flags.
10498 TM_PURE attribute is set only on types, so the function will modify
10499 DECL's type when ECF_TM_PURE is used. */
10501 void
10502 set_call_expr_flags (tree decl, int flags)
10504 if (flags & ECF_NOTHROW)
10505 TREE_NOTHROW (decl) = 1;
10506 if (flags & ECF_CONST)
10507 TREE_READONLY (decl) = 1;
10508 if (flags & ECF_PURE)
10509 DECL_PURE_P (decl) = 1;
10510 if (flags & ECF_LOOPING_CONST_OR_PURE)
10511 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10512 if (flags & ECF_NOVOPS)
10513 DECL_IS_NOVOPS (decl) = 1;
10514 if (flags & ECF_NORETURN)
10515 TREE_THIS_VOLATILE (decl) = 1;
10516 if (flags & ECF_MALLOC)
10517 DECL_IS_MALLOC (decl) = 1;
10518 if (flags & ECF_RETURNS_TWICE)
10519 DECL_IS_RETURNS_TWICE (decl) = 1;
10520 if (flags & ECF_LEAF)
10521 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10522 NULL, DECL_ATTRIBUTES (decl));
10523 if (flags & ECF_COLD)
10524 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10525 NULL, DECL_ATTRIBUTES (decl));
10526 if (flags & ECF_RET1)
10527 DECL_ATTRIBUTES (decl)
10528 = tree_cons (get_identifier ("fn spec"),
10529 build_tree_list (NULL_TREE, build_string (1, "1")),
10530 DECL_ATTRIBUTES (decl));
10531 if ((flags & ECF_TM_PURE) && flag_tm)
10532 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10533 /* Looping const or pure is implied by noreturn.
10534 There is currently no way to declare looping const or looping pure alone. */
10535 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10536 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10540 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10542 static void
10543 local_define_builtin (const char *name, tree type, enum built_in_function code,
10544 const char *library_name, int ecf_flags)
10546 tree decl;
10548 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10549 library_name, NULL_TREE);
10550 set_call_expr_flags (decl, ecf_flags);
10552 set_builtin_decl (code, decl, true);
10555 /* Call this function after instantiating all builtins that the language
10556 front end cares about. This will build the rest of the builtins
10557 and internal functions that are relied upon by the tree optimizers and
10558 the middle-end. */
10560 void
10561 build_common_builtin_nodes (void)
10563 tree tmp, ftype;
10564 int ecf_flags;
10566 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10567 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10569 ftype = build_function_type (void_type_node, void_list_node);
10570 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10571 local_define_builtin ("__builtin_unreachable", ftype,
10572 BUILT_IN_UNREACHABLE,
10573 "__builtin_unreachable",
10574 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10575 | ECF_CONST | ECF_COLD);
10576 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10577 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10578 "abort",
10579 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10582 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10583 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10585 ftype = build_function_type_list (ptr_type_node,
10586 ptr_type_node, const_ptr_type_node,
10587 size_type_node, NULL_TREE);
10589 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10590 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10591 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10592 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10593 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10594 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10597 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10599 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10600 const_ptr_type_node, size_type_node,
10601 NULL_TREE);
10602 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10603 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10606 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10608 ftype = build_function_type_list (ptr_type_node,
10609 ptr_type_node, integer_type_node,
10610 size_type_node, NULL_TREE);
10611 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10612 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10615 /* If we're checking the stack, `alloca' can throw. */
10616 const int alloca_flags
10617 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10619 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10621 ftype = build_function_type_list (ptr_type_node,
10622 size_type_node, NULL_TREE);
10623 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10624 "alloca", alloca_flags);
10627 ftype = build_function_type_list (ptr_type_node, size_type_node,
10628 size_type_node, NULL_TREE);
10629 local_define_builtin ("__builtin_alloca_with_align", ftype,
10630 BUILT_IN_ALLOCA_WITH_ALIGN,
10631 "__builtin_alloca_with_align",
10632 alloca_flags);
10634 ftype = build_function_type_list (ptr_type_node, size_type_node,
10635 size_type_node, size_type_node, NULL_TREE);
10636 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10637 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10638 "__builtin_alloca_with_align_and_max",
10639 alloca_flags);
10641 ftype = build_function_type_list (void_type_node,
10642 ptr_type_node, ptr_type_node,
10643 ptr_type_node, NULL_TREE);
10644 local_define_builtin ("__builtin_init_trampoline", ftype,
10645 BUILT_IN_INIT_TRAMPOLINE,
10646 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10647 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10648 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10649 "__builtin_init_heap_trampoline",
10650 ECF_NOTHROW | ECF_LEAF);
10651 local_define_builtin ("__builtin_init_descriptor", ftype,
10652 BUILT_IN_INIT_DESCRIPTOR,
10653 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10655 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10656 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10657 BUILT_IN_ADJUST_TRAMPOLINE,
10658 "__builtin_adjust_trampoline",
10659 ECF_CONST | ECF_NOTHROW);
10660 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10661 BUILT_IN_ADJUST_DESCRIPTOR,
10662 "__builtin_adjust_descriptor",
10663 ECF_CONST | ECF_NOTHROW);
10665 ftype = build_function_type_list (void_type_node,
10666 ptr_type_node, ptr_type_node, NULL_TREE);
10667 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10668 BUILT_IN_NONLOCAL_GOTO,
10669 "__builtin_nonlocal_goto",
10670 ECF_NORETURN | ECF_NOTHROW);
10672 ftype = build_function_type_list (void_type_node,
10673 ptr_type_node, ptr_type_node, NULL_TREE);
10674 local_define_builtin ("__builtin_setjmp_setup", ftype,
10675 BUILT_IN_SETJMP_SETUP,
10676 "__builtin_setjmp_setup", ECF_NOTHROW);
10678 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10679 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10680 BUILT_IN_SETJMP_RECEIVER,
10681 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10683 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10684 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10685 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10687 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10688 local_define_builtin ("__builtin_stack_restore", ftype,
10689 BUILT_IN_STACK_RESTORE,
10690 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10692 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10693 const_ptr_type_node, size_type_node,
10694 NULL_TREE);
10695 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10696 "__builtin_memcmp_eq",
10697 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10699 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10700 "__builtin_strncmp_eq",
10701 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10703 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10704 "__builtin_strcmp_eq",
10705 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10707 /* If there's a possibility that we might use the ARM EABI, build the
10708 alternate __cxa_end_cleanup node used to resume from C++. */
10709 if (targetm.arm_eabi_unwinder)
10711 ftype = build_function_type_list (void_type_node, NULL_TREE);
10712 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10713 BUILT_IN_CXA_END_CLEANUP,
10714 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10717 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10718 local_define_builtin ("__builtin_unwind_resume", ftype,
10719 BUILT_IN_UNWIND_RESUME,
10720 ((targetm_common.except_unwind_info (&global_options)
10721 == UI_SJLJ)
10722 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10723 ECF_NORETURN);
10725 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10727 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10728 NULL_TREE);
10729 local_define_builtin ("__builtin_return_address", ftype,
10730 BUILT_IN_RETURN_ADDRESS,
10731 "__builtin_return_address",
10732 ECF_NOTHROW);
10735 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10736 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10738 ftype = build_function_type_list (void_type_node, ptr_type_node,
10739 ptr_type_node, NULL_TREE);
10740 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10741 local_define_builtin ("__cyg_profile_func_enter", ftype,
10742 BUILT_IN_PROFILE_FUNC_ENTER,
10743 "__cyg_profile_func_enter", 0);
10744 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10745 local_define_builtin ("__cyg_profile_func_exit", ftype,
10746 BUILT_IN_PROFILE_FUNC_EXIT,
10747 "__cyg_profile_func_exit", 0);
10750 /* The exception object and filter values from the runtime. The argument
10751 must be zero before exception lowering, i.e. from the front end. After
10752 exception lowering, it will be the region number for the exception
10753 landing pad. These functions are PURE instead of CONST to prevent
10754 them from being hoisted past the exception edge that will initialize
10755 its value in the landing pad. */
10756 ftype = build_function_type_list (ptr_type_node,
10757 integer_type_node, NULL_TREE);
10758 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10759 /* Only use TM_PURE if we have TM language support. */
10760 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10761 ecf_flags |= ECF_TM_PURE;
10762 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10763 "__builtin_eh_pointer", ecf_flags);
10765 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10766 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10767 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10768 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10770 ftype = build_function_type_list (void_type_node,
10771 integer_type_node, integer_type_node,
10772 NULL_TREE);
10773 local_define_builtin ("__builtin_eh_copy_values", ftype,
10774 BUILT_IN_EH_COPY_VALUES,
10775 "__builtin_eh_copy_values", ECF_NOTHROW);
10777 /* Complex multiplication and division. These are handled as builtins
10778 rather than optabs because emit_library_call_value doesn't support
10779 complex. Further, we can do slightly better with folding these
10780 beasties if the real and complex parts of the arguments are separate. */
10782 int mode;
10784 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10786 char mode_name_buf[4], *q;
10787 const char *p;
10788 enum built_in_function mcode, dcode;
10789 tree type, inner_type;
10790 const char *prefix = "__";
10792 if (targetm.libfunc_gnu_prefix)
10793 prefix = "__gnu_";
10795 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10796 if (type == NULL)
10797 continue;
10798 inner_type = TREE_TYPE (type);
10800 ftype = build_function_type_list (type, inner_type, inner_type,
10801 inner_type, inner_type, NULL_TREE);
10803 mcode = ((enum built_in_function)
10804 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10805 dcode = ((enum built_in_function)
10806 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10808 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10809 *q = TOLOWER (*p);
10810 *q = '\0';
10812 /* For -ftrapping-math these should throw from a former
10813 -fnon-call-exception stmt. */
10814 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10815 NULL);
10816 local_define_builtin (built_in_names[mcode], ftype, mcode,
10817 built_in_names[mcode],
10818 ECF_CONST | ECF_LEAF);
10820 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10821 NULL);
10822 local_define_builtin (built_in_names[dcode], ftype, dcode,
10823 built_in_names[dcode],
10824 ECF_CONST | ECF_LEAF);
10828 init_internal_fns ();
10831 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10832 better way.
10834 If we requested a pointer to a vector, build up the pointers that
10835 we stripped off while looking for the inner type. Similarly for
10836 return values from functions.
10838 The argument TYPE is the top of the chain, and BOTTOM is the
10839 new type which we will point to. */
10841 tree
10842 reconstruct_complex_type (tree type, tree bottom)
10844 tree inner, outer;
10846 if (TREE_CODE (type) == POINTER_TYPE)
10848 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10849 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10850 TYPE_REF_CAN_ALIAS_ALL (type));
10852 else if (TREE_CODE (type) == REFERENCE_TYPE)
10854 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10855 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10856 TYPE_REF_CAN_ALIAS_ALL (type));
10858 else if (TREE_CODE (type) == ARRAY_TYPE)
10860 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10861 outer = build_array_type (inner, TYPE_DOMAIN (type));
10863 else if (TREE_CODE (type) == FUNCTION_TYPE)
10865 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10866 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10868 else if (TREE_CODE (type) == METHOD_TYPE)
10870 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10871 /* The build_method_type_directly() routine prepends 'this' to argument list,
10872 so we must compensate by getting rid of it. */
10873 outer
10874 = build_method_type_directly
10875 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10876 inner,
10877 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10879 else if (TREE_CODE (type) == OFFSET_TYPE)
10881 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10882 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10884 else
10885 return bottom;
10887 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10888 TYPE_QUALS (type));
10891 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10892 the inner type. */
10893 tree
10894 build_vector_type_for_mode (tree innertype, machine_mode mode)
10896 poly_int64 nunits;
10897 unsigned int bitsize;
10899 switch (GET_MODE_CLASS (mode))
10901 case MODE_VECTOR_BOOL:
10902 case MODE_VECTOR_INT:
10903 case MODE_VECTOR_FLOAT:
10904 case MODE_VECTOR_FRACT:
10905 case MODE_VECTOR_UFRACT:
10906 case MODE_VECTOR_ACCUM:
10907 case MODE_VECTOR_UACCUM:
10908 nunits = GET_MODE_NUNITS (mode);
10909 break;
10911 case MODE_INT:
10912 /* Check that there are no leftover bits. */
10913 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10914 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10915 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10916 break;
10918 default:
10919 gcc_unreachable ();
10922 return make_vector_type (innertype, nunits, mode);
10925 /* Similarly, but takes the inner type and number of units, which must be
10926 a power of two. */
10928 tree
10929 build_vector_type (tree innertype, poly_int64 nunits)
10931 return make_vector_type (innertype, nunits, VOIDmode);
10934 /* Build truth vector with specified length and number of units. */
10936 tree
10937 build_truth_vector_type (poly_uint64 nunits, poly_uint64 vector_size)
10939 machine_mode mask_mode
10940 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
10942 poly_uint64 vsize;
10943 if (mask_mode == BLKmode)
10944 vsize = vector_size * BITS_PER_UNIT;
10945 else
10946 vsize = GET_MODE_BITSIZE (mask_mode);
10948 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
10950 tree bool_type = build_nonstandard_boolean_type (esize);
10952 return make_vector_type (bool_type, nunits, mask_mode);
10955 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10957 tree
10958 build_same_sized_truth_vector_type (tree vectype)
10960 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10961 return vectype;
10963 poly_uint64 size = GET_MODE_SIZE (TYPE_MODE (vectype));
10965 if (known_eq (size, 0U))
10966 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10968 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10971 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10973 tree
10974 build_opaque_vector_type (tree innertype, poly_int64 nunits)
10976 tree t = make_vector_type (innertype, nunits, VOIDmode);
10977 tree cand;
10978 /* We always build the non-opaque variant before the opaque one,
10979 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10980 cand = TYPE_NEXT_VARIANT (t);
10981 if (cand
10982 && TYPE_VECTOR_OPAQUE (cand)
10983 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10984 return cand;
10985 /* Othewise build a variant type and make sure to queue it after
10986 the non-opaque type. */
10987 cand = build_distinct_type_copy (t);
10988 TYPE_VECTOR_OPAQUE (cand) = true;
10989 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10990 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10991 TYPE_NEXT_VARIANT (t) = cand;
10992 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10993 return cand;
10996 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10998 wide_int
10999 vector_cst_int_elt (const_tree t, unsigned int i)
11001 /* First handle elements that are directly encoded. */
11002 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11003 if (i < encoded_nelts)
11004 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
11006 /* Identify the pattern that contains element I and work out the index of
11007 the last encoded element for that pattern. */
11008 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11009 unsigned int pattern = i % npatterns;
11010 unsigned int count = i / npatterns;
11011 unsigned int final_i = encoded_nelts - npatterns + pattern;
11013 /* If there are no steps, the final encoded value is the right one. */
11014 if (!VECTOR_CST_STEPPED_P (t))
11015 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
11017 /* Otherwise work out the value from the last two encoded elements. */
11018 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
11019 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
11020 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
11021 return wi::to_wide (v2) + (count - 2) * diff;
11024 /* Return the value of element I of VECTOR_CST T. */
11026 tree
11027 vector_cst_elt (const_tree t, unsigned int i)
11029 /* First handle elements that are directly encoded. */
11030 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11031 if (i < encoded_nelts)
11032 return VECTOR_CST_ENCODED_ELT (t, i);
11034 /* If there are no steps, the final encoded value is the right one. */
11035 if (!VECTOR_CST_STEPPED_P (t))
11037 /* Identify the pattern that contains element I and work out the index of
11038 the last encoded element for that pattern. */
11039 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11040 unsigned int pattern = i % npatterns;
11041 unsigned int final_i = encoded_nelts - npatterns + pattern;
11042 return VECTOR_CST_ENCODED_ELT (t, final_i);
11045 /* Otherwise work out the value from the last two encoded elements. */
11046 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
11047 vector_cst_int_elt (t, i));
11050 /* Given an initializer INIT, return TRUE if INIT is zero or some
11051 aggregate of zeros. Otherwise return FALSE. If NONZERO is not
11052 null, set *NONZERO if and only if INIT is known not to be all
11053 zeros. The combination of return value of false and *NONZERO
11054 false implies that INIT may but need not be all zeros. Other
11055 combinations indicate definitive answers. */
11057 bool
11058 initializer_zerop (const_tree init, bool *nonzero /* = NULL */)
11060 bool dummy;
11061 if (!nonzero)
11062 nonzero = &dummy;
11064 /* Conservatively clear NONZERO and set it only if INIT is definitely
11065 not all zero. */
11066 *nonzero = false;
11068 STRIP_NOPS (init);
11070 unsigned HOST_WIDE_INT off = 0;
11072 switch (TREE_CODE (init))
11074 case INTEGER_CST:
11075 if (integer_zerop (init))
11076 return true;
11078 *nonzero = true;
11079 return false;
11081 case REAL_CST:
11082 /* ??? Note that this is not correct for C4X float formats. There,
11083 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
11084 negative exponent. */
11085 if (real_zerop (init)
11086 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init)))
11087 return true;
11089 *nonzero = true;
11090 return false;
11092 case FIXED_CST:
11093 if (fixed_zerop (init))
11094 return true;
11096 *nonzero = true;
11097 return false;
11099 case COMPLEX_CST:
11100 if (integer_zerop (init)
11101 || (real_zerop (init)
11102 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
11103 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init)))))
11104 return true;
11106 *nonzero = true;
11107 return false;
11109 case VECTOR_CST:
11110 if (VECTOR_CST_NPATTERNS (init) == 1
11111 && VECTOR_CST_DUPLICATE_P (init)
11112 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)))
11113 return true;
11115 *nonzero = true;
11116 return false;
11118 case CONSTRUCTOR:
11120 if (TREE_CLOBBER_P (init))
11121 return false;
11123 unsigned HOST_WIDE_INT idx;
11124 tree elt;
11126 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
11127 if (!initializer_zerop (elt, nonzero))
11128 return false;
11130 return true;
11133 case MEM_REF:
11135 tree arg = TREE_OPERAND (init, 0);
11136 if (TREE_CODE (arg) != ADDR_EXPR)
11137 return false;
11138 tree offset = TREE_OPERAND (init, 1);
11139 if (TREE_CODE (offset) != INTEGER_CST
11140 || !tree_fits_uhwi_p (offset))
11141 return false;
11142 off = tree_to_uhwi (offset);
11143 if (INT_MAX < off)
11144 return false;
11145 arg = TREE_OPERAND (arg, 0);
11146 if (TREE_CODE (arg) != STRING_CST)
11147 return false;
11148 init = arg;
11150 /* Fall through. */
11152 case STRING_CST:
11154 gcc_assert (off <= INT_MAX);
11156 int i = off;
11157 int n = TREE_STRING_LENGTH (init);
11158 if (n <= i)
11159 return false;
11161 /* We need to loop through all elements to handle cases like
11162 "\0" and "\0foobar". */
11163 for (i = 0; i < n; ++i)
11164 if (TREE_STRING_POINTER (init)[i] != '\0')
11166 *nonzero = true;
11167 return false;
11170 return true;
11173 default:
11174 return false;
11178 /* Check if vector VEC consists of all the equal elements and
11179 that the number of elements corresponds to the type of VEC.
11180 The function returns first element of the vector
11181 or NULL_TREE if the vector is not uniform. */
11182 tree
11183 uniform_vector_p (const_tree vec)
11185 tree first, t;
11186 unsigned HOST_WIDE_INT i, nelts;
11188 if (vec == NULL_TREE)
11189 return NULL_TREE;
11191 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
11193 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
11194 return TREE_OPERAND (vec, 0);
11196 else if (TREE_CODE (vec) == VECTOR_CST)
11198 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
11199 return VECTOR_CST_ENCODED_ELT (vec, 0);
11200 return NULL_TREE;
11203 else if (TREE_CODE (vec) == CONSTRUCTOR
11204 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
11206 first = error_mark_node;
11208 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
11210 if (i == 0)
11212 first = t;
11213 continue;
11215 if (!operand_equal_p (first, t, 0))
11216 return NULL_TREE;
11218 if (i != nelts)
11219 return NULL_TREE;
11221 return first;
11224 return NULL_TREE;
11227 /* If the argument is INTEGER_CST, return it. If the argument is vector
11228 with all elements the same INTEGER_CST, return that INTEGER_CST. Otherwise
11229 return NULL_TREE. */
11231 tree
11232 uniform_integer_cst_p (tree t)
11234 if (TREE_CODE (t) == INTEGER_CST)
11235 return t;
11237 if (VECTOR_TYPE_P (TREE_TYPE (t)))
11239 t = uniform_vector_p (t);
11240 if (t && TREE_CODE (t) == INTEGER_CST)
11241 return t;
11244 return NULL_TREE;
11247 /* Build an empty statement at location LOC. */
11249 tree
11250 build_empty_stmt (location_t loc)
11252 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
11253 SET_EXPR_LOCATION (t, loc);
11254 return t;
11258 /* Build an OpenMP clause with code CODE. LOC is the location of the
11259 clause. */
11261 tree
11262 build_omp_clause (location_t loc, enum omp_clause_code code)
11264 tree t;
11265 int size, length;
11267 length = omp_clause_num_ops[code];
11268 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
11270 record_node_allocation_statistics (OMP_CLAUSE, size);
11272 t = (tree) ggc_internal_alloc (size);
11273 memset (t, 0, size);
11274 TREE_SET_CODE (t, OMP_CLAUSE);
11275 OMP_CLAUSE_SET_CODE (t, code);
11276 OMP_CLAUSE_LOCATION (t) = loc;
11278 return t;
11281 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
11282 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
11283 Except for the CODE and operand count field, other storage for the
11284 object is initialized to zeros. */
11286 tree
11287 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
11289 tree t;
11290 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
11292 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
11293 gcc_assert (len >= 1);
11295 record_node_allocation_statistics (code, length);
11297 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
11299 TREE_SET_CODE (t, code);
11301 /* Can't use TREE_OPERAND to store the length because if checking is
11302 enabled, it will try to check the length before we store it. :-P */
11303 t->exp.operands[0] = build_int_cst (sizetype, len);
11305 return t;
11308 /* Helper function for build_call_* functions; build a CALL_EXPR with
11309 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
11310 the argument slots. */
11312 static tree
11313 build_call_1 (tree return_type, tree fn, int nargs)
11315 tree t;
11317 t = build_vl_exp (CALL_EXPR, nargs + 3);
11318 TREE_TYPE (t) = return_type;
11319 CALL_EXPR_FN (t) = fn;
11320 CALL_EXPR_STATIC_CHAIN (t) = NULL;
11322 return t;
11325 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11326 FN and a null static chain slot. NARGS is the number of call arguments
11327 which are specified as "..." arguments. */
11329 tree
11330 build_call_nary (tree return_type, tree fn, int nargs, ...)
11332 tree ret;
11333 va_list args;
11334 va_start (args, nargs);
11335 ret = build_call_valist (return_type, fn, nargs, args);
11336 va_end (args);
11337 return ret;
11340 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11341 FN and a null static chain slot. NARGS is the number of call arguments
11342 which are specified as a va_list ARGS. */
11344 tree
11345 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11347 tree t;
11348 int i;
11350 t = build_call_1 (return_type, fn, nargs);
11351 for (i = 0; i < nargs; i++)
11352 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11353 process_call_operands (t);
11354 return t;
11357 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11358 FN and a null static chain slot. NARGS is the number of call arguments
11359 which are specified as a tree array ARGS. */
11361 tree
11362 build_call_array_loc (location_t loc, tree return_type, tree fn,
11363 int nargs, const tree *args)
11365 tree t;
11366 int i;
11368 t = build_call_1 (return_type, fn, nargs);
11369 for (i = 0; i < nargs; i++)
11370 CALL_EXPR_ARG (t, i) = args[i];
11371 process_call_operands (t);
11372 SET_EXPR_LOCATION (t, loc);
11373 return t;
11376 /* Like build_call_array, but takes a vec. */
11378 tree
11379 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11381 tree ret, t;
11382 unsigned int ix;
11384 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11385 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11386 CALL_EXPR_ARG (ret, ix) = t;
11387 process_call_operands (ret);
11388 return ret;
11391 /* Conveniently construct a function call expression. FNDECL names the
11392 function to be called and N arguments are passed in the array
11393 ARGARRAY. */
11395 tree
11396 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11398 tree fntype = TREE_TYPE (fndecl);
11399 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11401 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11404 /* Conveniently construct a function call expression. FNDECL names the
11405 function to be called and the arguments are passed in the vector
11406 VEC. */
11408 tree
11409 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11411 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11412 vec_safe_address (vec));
11416 /* Conveniently construct a function call expression. FNDECL names the
11417 function to be called, N is the number of arguments, and the "..."
11418 parameters are the argument expressions. */
11420 tree
11421 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11423 va_list ap;
11424 tree *argarray = XALLOCAVEC (tree, n);
11425 int i;
11427 va_start (ap, n);
11428 for (i = 0; i < n; i++)
11429 argarray[i] = va_arg (ap, tree);
11430 va_end (ap);
11431 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11434 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11435 varargs macros aren't supported by all bootstrap compilers. */
11437 tree
11438 build_call_expr (tree fndecl, int n, ...)
11440 va_list ap;
11441 tree *argarray = XALLOCAVEC (tree, n);
11442 int i;
11444 va_start (ap, n);
11445 for (i = 0; i < n; i++)
11446 argarray[i] = va_arg (ap, tree);
11447 va_end (ap);
11448 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11451 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11452 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11453 It will get gimplified later into an ordinary internal function. */
11455 tree
11456 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11457 tree type, int n, const tree *args)
11459 tree t = build_call_1 (type, NULL_TREE, n);
11460 for (int i = 0; i < n; ++i)
11461 CALL_EXPR_ARG (t, i) = args[i];
11462 SET_EXPR_LOCATION (t, loc);
11463 CALL_EXPR_IFN (t) = ifn;
11464 return t;
11467 /* Build internal call expression. This is just like CALL_EXPR, except
11468 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11469 internal function. */
11471 tree
11472 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11473 tree type, int n, ...)
11475 va_list ap;
11476 tree *argarray = XALLOCAVEC (tree, n);
11477 int i;
11479 va_start (ap, n);
11480 for (i = 0; i < n; i++)
11481 argarray[i] = va_arg (ap, tree);
11482 va_end (ap);
11483 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11486 /* Return a function call to FN, if the target is guaranteed to support it,
11487 or null otherwise.
11489 N is the number of arguments, passed in the "...", and TYPE is the
11490 type of the return value. */
11492 tree
11493 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11494 int n, ...)
11496 va_list ap;
11497 tree *argarray = XALLOCAVEC (tree, n);
11498 int i;
11500 va_start (ap, n);
11501 for (i = 0; i < n; i++)
11502 argarray[i] = va_arg (ap, tree);
11503 va_end (ap);
11504 if (internal_fn_p (fn))
11506 internal_fn ifn = as_internal_fn (fn);
11507 if (direct_internal_fn_p (ifn))
11509 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11510 if (!direct_internal_fn_supported_p (ifn, types,
11511 OPTIMIZE_FOR_BOTH))
11512 return NULL_TREE;
11514 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11516 else
11518 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11519 if (!fndecl)
11520 return NULL_TREE;
11521 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11525 /* Return a function call to the appropriate builtin alloca variant.
11527 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11528 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11529 bound for SIZE in case it is not a fixed value. */
11531 tree
11532 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11534 if (max_size >= 0)
11536 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11537 return
11538 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11540 else if (align > 0)
11542 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11543 return build_call_expr (t, 2, size, size_int (align));
11545 else
11547 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11548 return build_call_expr (t, 1, size);
11552 /* Create a new constant string literal consisting of elements of type
11553 ELTYPE and return a tree node representing char* pointer to it as
11554 an ADDR_EXPR (ARRAY_REF (ELTYPE, ...)). The STRING_CST value is
11555 the LEN bytes at STR (the representation of the string, which may
11556 be wide). */
11558 tree
11559 build_string_literal (int len, const char *str,
11560 tree eltype /* = char_type_node */)
11562 tree t = build_string (len, str);
11563 tree index = build_index_type (size_int (len - 1));
11564 eltype = build_type_variant (eltype, 1, 0);
11565 tree type = build_array_type (eltype, index);
11566 TREE_TYPE (t) = type;
11567 TREE_CONSTANT (t) = 1;
11568 TREE_READONLY (t) = 1;
11569 TREE_STATIC (t) = 1;
11571 type = build_pointer_type (eltype);
11572 t = build1 (ADDR_EXPR, type,
11573 build4 (ARRAY_REF, eltype,
11574 t, integer_zero_node, NULL_TREE, NULL_TREE));
11575 return t;
11580 /* Return true if T (assumed to be a DECL) must be assigned a memory
11581 location. */
11583 bool
11584 needs_to_live_in_memory (const_tree t)
11586 return (TREE_ADDRESSABLE (t)
11587 || is_global_var (t)
11588 || (TREE_CODE (t) == RESULT_DECL
11589 && !DECL_BY_REFERENCE (t)
11590 && aggregate_value_p (t, current_function_decl)));
11593 /* Return value of a constant X and sign-extend it. */
11595 HOST_WIDE_INT
11596 int_cst_value (const_tree x)
11598 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11599 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11601 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11602 gcc_assert (cst_and_fits_in_hwi (x));
11604 if (bits < HOST_BITS_PER_WIDE_INT)
11606 bool negative = ((val >> (bits - 1)) & 1) != 0;
11607 if (negative)
11608 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11609 else
11610 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11613 return val;
11616 /* If TYPE is an integral or pointer type, return an integer type with
11617 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11618 if TYPE is already an integer type of signedness UNSIGNEDP. */
11620 tree
11621 signed_or_unsigned_type_for (int unsignedp, tree type)
11623 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_UNSIGNED (type) == unsignedp)
11624 return type;
11626 if (TREE_CODE (type) == VECTOR_TYPE)
11628 tree inner = TREE_TYPE (type);
11629 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11630 if (!inner2)
11631 return NULL_TREE;
11632 if (inner == inner2)
11633 return type;
11634 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11637 if (TREE_CODE (type) == COMPLEX_TYPE)
11639 tree inner = TREE_TYPE (type);
11640 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11641 if (!inner2)
11642 return NULL_TREE;
11643 if (inner == inner2)
11644 return type;
11645 return build_complex_type (inner2);
11648 if (!INTEGRAL_TYPE_P (type)
11649 && !POINTER_TYPE_P (type)
11650 && TREE_CODE (type) != OFFSET_TYPE)
11651 return NULL_TREE;
11653 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
11656 /* If TYPE is an integral or pointer type, return an integer type with
11657 the same precision which is unsigned, or itself if TYPE is already an
11658 unsigned integer type. */
11660 tree
11661 unsigned_type_for (tree type)
11663 return signed_or_unsigned_type_for (1, type);
11666 /* If TYPE is an integral or pointer type, return an integer type with
11667 the same precision which is signed, or itself if TYPE is already a
11668 signed integer type. */
11670 tree
11671 signed_type_for (tree type)
11673 return signed_or_unsigned_type_for (0, type);
11676 /* If TYPE is a vector type, return a signed integer vector type with the
11677 same width and number of subparts. Otherwise return boolean_type_node. */
11679 tree
11680 truth_type_for (tree type)
11682 if (TREE_CODE (type) == VECTOR_TYPE)
11684 if (VECTOR_BOOLEAN_TYPE_P (type))
11685 return type;
11686 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
11687 GET_MODE_SIZE (TYPE_MODE (type)));
11689 else
11690 return boolean_type_node;
11693 /* Returns the largest value obtainable by casting something in INNER type to
11694 OUTER type. */
11696 tree
11697 upper_bound_in_type (tree outer, tree inner)
11699 unsigned int det = 0;
11700 unsigned oprec = TYPE_PRECISION (outer);
11701 unsigned iprec = TYPE_PRECISION (inner);
11702 unsigned prec;
11704 /* Compute a unique number for every combination. */
11705 det |= (oprec > iprec) ? 4 : 0;
11706 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11707 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11709 /* Determine the exponent to use. */
11710 switch (det)
11712 case 0:
11713 case 1:
11714 /* oprec <= iprec, outer: signed, inner: don't care. */
11715 prec = oprec - 1;
11716 break;
11717 case 2:
11718 case 3:
11719 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11720 prec = oprec;
11721 break;
11722 case 4:
11723 /* oprec > iprec, outer: signed, inner: signed. */
11724 prec = iprec - 1;
11725 break;
11726 case 5:
11727 /* oprec > iprec, outer: signed, inner: unsigned. */
11728 prec = iprec;
11729 break;
11730 case 6:
11731 /* oprec > iprec, outer: unsigned, inner: signed. */
11732 prec = oprec;
11733 break;
11734 case 7:
11735 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11736 prec = iprec;
11737 break;
11738 default:
11739 gcc_unreachable ();
11742 return wide_int_to_tree (outer,
11743 wi::mask (prec, false, TYPE_PRECISION (outer)));
11746 /* Returns the smallest value obtainable by casting something in INNER type to
11747 OUTER type. */
11749 tree
11750 lower_bound_in_type (tree outer, tree inner)
11752 unsigned oprec = TYPE_PRECISION (outer);
11753 unsigned iprec = TYPE_PRECISION (inner);
11755 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11756 and obtain 0. */
11757 if (TYPE_UNSIGNED (outer)
11758 /* If we are widening something of an unsigned type, OUTER type
11759 contains all values of INNER type. In particular, both INNER
11760 and OUTER types have zero in common. */
11761 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11762 return build_int_cst (outer, 0);
11763 else
11765 /* If we are widening a signed type to another signed type, we
11766 want to obtain -2^^(iprec-1). If we are keeping the
11767 precision or narrowing to a signed type, we want to obtain
11768 -2^(oprec-1). */
11769 unsigned prec = oprec > iprec ? iprec : oprec;
11770 return wide_int_to_tree (outer,
11771 wi::mask (prec - 1, true,
11772 TYPE_PRECISION (outer)));
11776 /* Return nonzero if two operands that are suitable for PHI nodes are
11777 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11778 SSA_NAME or invariant. Note that this is strictly an optimization.
11779 That is, callers of this function can directly call operand_equal_p
11780 and get the same result, only slower. */
11783 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11785 if (arg0 == arg1)
11786 return 1;
11787 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11788 return 0;
11789 return operand_equal_p (arg0, arg1, 0);
11792 /* Returns number of zeros at the end of binary representation of X. */
11794 tree
11795 num_ending_zeros (const_tree x)
11797 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11801 #define WALK_SUBTREE(NODE) \
11802 do \
11804 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11805 if (result) \
11806 return result; \
11808 while (0)
11810 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11811 be walked whenever a type is seen in the tree. Rest of operands and return
11812 value are as for walk_tree. */
11814 static tree
11815 walk_type_fields (tree type, walk_tree_fn func, void *data,
11816 hash_set<tree> *pset, walk_tree_lh lh)
11818 tree result = NULL_TREE;
11820 switch (TREE_CODE (type))
11822 case POINTER_TYPE:
11823 case REFERENCE_TYPE:
11824 case VECTOR_TYPE:
11825 /* We have to worry about mutually recursive pointers. These can't
11826 be written in C. They can in Ada. It's pathological, but
11827 there's an ACATS test (c38102a) that checks it. Deal with this
11828 by checking if we're pointing to another pointer, that one
11829 points to another pointer, that one does too, and we have no htab.
11830 If so, get a hash table. We check three levels deep to avoid
11831 the cost of the hash table if we don't need one. */
11832 if (POINTER_TYPE_P (TREE_TYPE (type))
11833 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11834 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11835 && !pset)
11837 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11838 func, data);
11839 if (result)
11840 return result;
11842 break;
11845 /* fall through */
11847 case COMPLEX_TYPE:
11848 WALK_SUBTREE (TREE_TYPE (type));
11849 break;
11851 case METHOD_TYPE:
11852 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11854 /* Fall through. */
11856 case FUNCTION_TYPE:
11857 WALK_SUBTREE (TREE_TYPE (type));
11859 tree arg;
11861 /* We never want to walk into default arguments. */
11862 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11863 WALK_SUBTREE (TREE_VALUE (arg));
11865 break;
11867 case ARRAY_TYPE:
11868 /* Don't follow this nodes's type if a pointer for fear that
11869 we'll have infinite recursion. If we have a PSET, then we
11870 need not fear. */
11871 if (pset
11872 || (!POINTER_TYPE_P (TREE_TYPE (type))
11873 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11874 WALK_SUBTREE (TREE_TYPE (type));
11875 WALK_SUBTREE (TYPE_DOMAIN (type));
11876 break;
11878 case OFFSET_TYPE:
11879 WALK_SUBTREE (TREE_TYPE (type));
11880 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11881 break;
11883 default:
11884 break;
11887 return NULL_TREE;
11890 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11891 called with the DATA and the address of each sub-tree. If FUNC returns a
11892 non-NULL value, the traversal is stopped, and the value returned by FUNC
11893 is returned. If PSET is non-NULL it is used to record the nodes visited,
11894 and to avoid visiting a node more than once. */
11896 tree
11897 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11898 hash_set<tree> *pset, walk_tree_lh lh)
11900 enum tree_code code;
11901 int walk_subtrees;
11902 tree result;
11904 #define WALK_SUBTREE_TAIL(NODE) \
11905 do \
11907 tp = & (NODE); \
11908 goto tail_recurse; \
11910 while (0)
11912 tail_recurse:
11913 /* Skip empty subtrees. */
11914 if (!*tp)
11915 return NULL_TREE;
11917 /* Don't walk the same tree twice, if the user has requested
11918 that we avoid doing so. */
11919 if (pset && pset->add (*tp))
11920 return NULL_TREE;
11922 /* Call the function. */
11923 walk_subtrees = 1;
11924 result = (*func) (tp, &walk_subtrees, data);
11926 /* If we found something, return it. */
11927 if (result)
11928 return result;
11930 code = TREE_CODE (*tp);
11932 /* Even if we didn't, FUNC may have decided that there was nothing
11933 interesting below this point in the tree. */
11934 if (!walk_subtrees)
11936 /* But we still need to check our siblings. */
11937 if (code == TREE_LIST)
11938 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11939 else if (code == OMP_CLAUSE)
11940 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11941 else
11942 return NULL_TREE;
11945 if (lh)
11947 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11948 if (result || !walk_subtrees)
11949 return result;
11952 switch (code)
11954 case ERROR_MARK:
11955 case IDENTIFIER_NODE:
11956 case INTEGER_CST:
11957 case REAL_CST:
11958 case FIXED_CST:
11959 case VECTOR_CST:
11960 case STRING_CST:
11961 case BLOCK:
11962 case PLACEHOLDER_EXPR:
11963 case SSA_NAME:
11964 case FIELD_DECL:
11965 case RESULT_DECL:
11966 /* None of these have subtrees other than those already walked
11967 above. */
11968 break;
11970 case TREE_LIST:
11971 WALK_SUBTREE (TREE_VALUE (*tp));
11972 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11973 break;
11975 case TREE_VEC:
11977 int len = TREE_VEC_LENGTH (*tp);
11979 if (len == 0)
11980 break;
11982 /* Walk all elements but the first. */
11983 while (--len)
11984 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11986 /* Now walk the first one as a tail call. */
11987 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11990 case COMPLEX_CST:
11991 WALK_SUBTREE (TREE_REALPART (*tp));
11992 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11994 case CONSTRUCTOR:
11996 unsigned HOST_WIDE_INT idx;
11997 constructor_elt *ce;
11999 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
12000 idx++)
12001 WALK_SUBTREE (ce->value);
12003 break;
12005 case SAVE_EXPR:
12006 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
12008 case BIND_EXPR:
12010 tree decl;
12011 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
12013 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
12014 into declarations that are just mentioned, rather than
12015 declared; they don't really belong to this part of the tree.
12016 And, we can see cycles: the initializer for a declaration
12017 can refer to the declaration itself. */
12018 WALK_SUBTREE (DECL_INITIAL (decl));
12019 WALK_SUBTREE (DECL_SIZE (decl));
12020 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
12022 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
12025 case STATEMENT_LIST:
12027 tree_stmt_iterator i;
12028 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
12029 WALK_SUBTREE (*tsi_stmt_ptr (i));
12031 break;
12033 case OMP_CLAUSE:
12034 switch (OMP_CLAUSE_CODE (*tp))
12036 case OMP_CLAUSE_GANG:
12037 case OMP_CLAUSE__GRIDDIM_:
12038 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12039 /* FALLTHRU */
12041 case OMP_CLAUSE_ASYNC:
12042 case OMP_CLAUSE_WAIT:
12043 case OMP_CLAUSE_WORKER:
12044 case OMP_CLAUSE_VECTOR:
12045 case OMP_CLAUSE_NUM_GANGS:
12046 case OMP_CLAUSE_NUM_WORKERS:
12047 case OMP_CLAUSE_VECTOR_LENGTH:
12048 case OMP_CLAUSE_PRIVATE:
12049 case OMP_CLAUSE_SHARED:
12050 case OMP_CLAUSE_FIRSTPRIVATE:
12051 case OMP_CLAUSE_COPYIN:
12052 case OMP_CLAUSE_COPYPRIVATE:
12053 case OMP_CLAUSE_FINAL:
12054 case OMP_CLAUSE_IF:
12055 case OMP_CLAUSE_NUM_THREADS:
12056 case OMP_CLAUSE_SCHEDULE:
12057 case OMP_CLAUSE_UNIFORM:
12058 case OMP_CLAUSE_DEPEND:
12059 case OMP_CLAUSE_NONTEMPORAL:
12060 case OMP_CLAUSE_NUM_TEAMS:
12061 case OMP_CLAUSE_THREAD_LIMIT:
12062 case OMP_CLAUSE_DEVICE:
12063 case OMP_CLAUSE_DIST_SCHEDULE:
12064 case OMP_CLAUSE_SAFELEN:
12065 case OMP_CLAUSE_SIMDLEN:
12066 case OMP_CLAUSE_ORDERED:
12067 case OMP_CLAUSE_PRIORITY:
12068 case OMP_CLAUSE_GRAINSIZE:
12069 case OMP_CLAUSE_NUM_TASKS:
12070 case OMP_CLAUSE_HINT:
12071 case OMP_CLAUSE_TO_DECLARE:
12072 case OMP_CLAUSE_LINK:
12073 case OMP_CLAUSE_USE_DEVICE_PTR:
12074 case OMP_CLAUSE_IS_DEVICE_PTR:
12075 case OMP_CLAUSE__LOOPTEMP_:
12076 case OMP_CLAUSE__REDUCTEMP_:
12077 case OMP_CLAUSE__SIMDUID_:
12078 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
12079 /* FALLTHRU */
12081 case OMP_CLAUSE_INDEPENDENT:
12082 case OMP_CLAUSE_NOWAIT:
12083 case OMP_CLAUSE_DEFAULT:
12084 case OMP_CLAUSE_UNTIED:
12085 case OMP_CLAUSE_MERGEABLE:
12086 case OMP_CLAUSE_PROC_BIND:
12087 case OMP_CLAUSE_INBRANCH:
12088 case OMP_CLAUSE_NOTINBRANCH:
12089 case OMP_CLAUSE_FOR:
12090 case OMP_CLAUSE_PARALLEL:
12091 case OMP_CLAUSE_SECTIONS:
12092 case OMP_CLAUSE_TASKGROUP:
12093 case OMP_CLAUSE_NOGROUP:
12094 case OMP_CLAUSE_THREADS:
12095 case OMP_CLAUSE_SIMD:
12096 case OMP_CLAUSE_DEFAULTMAP:
12097 case OMP_CLAUSE_AUTO:
12098 case OMP_CLAUSE_SEQ:
12099 case OMP_CLAUSE_TILE:
12100 case OMP_CLAUSE__SIMT_:
12101 case OMP_CLAUSE_IF_PRESENT:
12102 case OMP_CLAUSE_FINALIZE:
12103 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12105 case OMP_CLAUSE_LASTPRIVATE:
12106 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12107 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
12108 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12110 case OMP_CLAUSE_COLLAPSE:
12112 int i;
12113 for (i = 0; i < 3; i++)
12114 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12115 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12118 case OMP_CLAUSE_LINEAR:
12119 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12120 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
12121 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
12122 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12124 case OMP_CLAUSE_ALIGNED:
12125 case OMP_CLAUSE_FROM:
12126 case OMP_CLAUSE_TO:
12127 case OMP_CLAUSE_MAP:
12128 case OMP_CLAUSE__CACHE_:
12129 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12130 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12131 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12133 case OMP_CLAUSE_REDUCTION:
12134 case OMP_CLAUSE_TASK_REDUCTION:
12135 case OMP_CLAUSE_IN_REDUCTION:
12137 int i;
12138 for (i = 0; i < 5; i++)
12139 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12140 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12143 default:
12144 gcc_unreachable ();
12146 break;
12148 case TARGET_EXPR:
12150 int i, len;
12152 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
12153 But, we only want to walk once. */
12154 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
12155 for (i = 0; i < len; ++i)
12156 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12157 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
12160 case DECL_EXPR:
12161 /* If this is a TYPE_DECL, walk into the fields of the type that it's
12162 defining. We only want to walk into these fields of a type in this
12163 case and not in the general case of a mere reference to the type.
12165 The criterion is as follows: if the field can be an expression, it
12166 must be walked only here. This should be in keeping with the fields
12167 that are directly gimplified in gimplify_type_sizes in order for the
12168 mark/copy-if-shared/unmark machinery of the gimplifier to work with
12169 variable-sized types.
12171 Note that DECLs get walked as part of processing the BIND_EXPR. */
12172 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
12174 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
12175 if (TREE_CODE (*type_p) == ERROR_MARK)
12176 return NULL_TREE;
12178 /* Call the function for the type. See if it returns anything or
12179 doesn't want us to continue. If we are to continue, walk both
12180 the normal fields and those for the declaration case. */
12181 result = (*func) (type_p, &walk_subtrees, data);
12182 if (result || !walk_subtrees)
12183 return result;
12185 /* But do not walk a pointed-to type since it may itself need to
12186 be walked in the declaration case if it isn't anonymous. */
12187 if (!POINTER_TYPE_P (*type_p))
12189 result = walk_type_fields (*type_p, func, data, pset, lh);
12190 if (result)
12191 return result;
12194 /* If this is a record type, also walk the fields. */
12195 if (RECORD_OR_UNION_TYPE_P (*type_p))
12197 tree field;
12199 for (field = TYPE_FIELDS (*type_p); field;
12200 field = DECL_CHAIN (field))
12202 /* We'd like to look at the type of the field, but we can
12203 easily get infinite recursion. So assume it's pointed
12204 to elsewhere in the tree. Also, ignore things that
12205 aren't fields. */
12206 if (TREE_CODE (field) != FIELD_DECL)
12207 continue;
12209 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
12210 WALK_SUBTREE (DECL_SIZE (field));
12211 WALK_SUBTREE (DECL_SIZE_UNIT (field));
12212 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
12213 WALK_SUBTREE (DECL_QUALIFIER (field));
12217 /* Same for scalar types. */
12218 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
12219 || TREE_CODE (*type_p) == ENUMERAL_TYPE
12220 || TREE_CODE (*type_p) == INTEGER_TYPE
12221 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
12222 || TREE_CODE (*type_p) == REAL_TYPE)
12224 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
12225 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
12228 WALK_SUBTREE (TYPE_SIZE (*type_p));
12229 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
12231 /* FALLTHRU */
12233 default:
12234 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
12236 int i, len;
12238 /* Walk over all the sub-trees of this operand. */
12239 len = TREE_OPERAND_LENGTH (*tp);
12241 /* Go through the subtrees. We need to do this in forward order so
12242 that the scope of a FOR_EXPR is handled properly. */
12243 if (len)
12245 for (i = 0; i < len - 1; ++i)
12246 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12247 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
12250 /* If this is a type, walk the needed fields in the type. */
12251 else if (TYPE_P (*tp))
12252 return walk_type_fields (*tp, func, data, pset, lh);
12253 break;
12256 /* We didn't find what we were looking for. */
12257 return NULL_TREE;
12259 #undef WALK_SUBTREE_TAIL
12261 #undef WALK_SUBTREE
12263 /* Like walk_tree, but does not walk duplicate nodes more than once. */
12265 tree
12266 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
12267 walk_tree_lh lh)
12269 tree result;
12271 hash_set<tree> pset;
12272 result = walk_tree_1 (tp, func, data, &pset, lh);
12273 return result;
12277 tree
12278 tree_block (tree t)
12280 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12282 if (IS_EXPR_CODE_CLASS (c))
12283 return LOCATION_BLOCK (t->exp.locus);
12284 gcc_unreachable ();
12285 return NULL;
12288 void
12289 tree_set_block (tree t, tree b)
12291 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12293 if (IS_EXPR_CODE_CLASS (c))
12295 t->exp.locus = set_block (t->exp.locus, b);
12297 else
12298 gcc_unreachable ();
12301 /* Create a nameless artificial label and put it in the current
12302 function context. The label has a location of LOC. Returns the
12303 newly created label. */
12305 tree
12306 create_artificial_label (location_t loc)
12308 tree lab = build_decl (loc,
12309 LABEL_DECL, NULL_TREE, void_type_node);
12311 DECL_ARTIFICIAL (lab) = 1;
12312 DECL_IGNORED_P (lab) = 1;
12313 DECL_CONTEXT (lab) = current_function_decl;
12314 return lab;
12317 /* Given a tree, try to return a useful variable name that we can use
12318 to prefix a temporary that is being assigned the value of the tree.
12319 I.E. given <temp> = &A, return A. */
12321 const char *
12322 get_name (tree t)
12324 tree stripped_decl;
12326 stripped_decl = t;
12327 STRIP_NOPS (stripped_decl);
12328 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
12329 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
12330 else if (TREE_CODE (stripped_decl) == SSA_NAME)
12332 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
12333 if (!name)
12334 return NULL;
12335 return IDENTIFIER_POINTER (name);
12337 else
12339 switch (TREE_CODE (stripped_decl))
12341 case ADDR_EXPR:
12342 return get_name (TREE_OPERAND (stripped_decl, 0));
12343 default:
12344 return NULL;
12349 /* Return true if TYPE has a variable argument list. */
12351 bool
12352 stdarg_p (const_tree fntype)
12354 function_args_iterator args_iter;
12355 tree n = NULL_TREE, t;
12357 if (!fntype)
12358 return false;
12360 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
12362 n = t;
12365 return n != NULL_TREE && n != void_type_node;
12368 /* Return true if TYPE has a prototype. */
12370 bool
12371 prototype_p (const_tree fntype)
12373 tree t;
12375 gcc_assert (fntype != NULL_TREE);
12377 t = TYPE_ARG_TYPES (fntype);
12378 return (t != NULL_TREE);
12381 /* If BLOCK is inlined from an __attribute__((__artificial__))
12382 routine, return pointer to location from where it has been
12383 called. */
12384 location_t *
12385 block_nonartificial_location (tree block)
12387 location_t *ret = NULL;
12389 while (block && TREE_CODE (block) == BLOCK
12390 && BLOCK_ABSTRACT_ORIGIN (block))
12392 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12393 if (TREE_CODE (ao) == FUNCTION_DECL)
12395 /* If AO is an artificial inline, point RET to the
12396 call site locus at which it has been inlined and continue
12397 the loop, in case AO's caller is also an artificial
12398 inline. */
12399 if (DECL_DECLARED_INLINE_P (ao)
12400 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12401 ret = &BLOCK_SOURCE_LOCATION (block);
12402 else
12403 break;
12405 else if (TREE_CODE (ao) != BLOCK)
12406 break;
12408 block = BLOCK_SUPERCONTEXT (block);
12410 return ret;
12414 /* If EXP is inlined from an __attribute__((__artificial__))
12415 function, return the location of the original call expression. */
12417 location_t
12418 tree_nonartificial_location (tree exp)
12420 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12422 if (loc)
12423 return *loc;
12424 else
12425 return EXPR_LOCATION (exp);
12429 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
12430 nodes. */
12432 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12434 hashval_t
12435 cl_option_hasher::hash (tree x)
12437 const_tree const t = x;
12438 const char *p;
12439 size_t i;
12440 size_t len = 0;
12441 hashval_t hash = 0;
12443 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12445 p = (const char *)TREE_OPTIMIZATION (t);
12446 len = sizeof (struct cl_optimization);
12449 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12450 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12452 else
12453 gcc_unreachable ();
12455 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12456 something else. */
12457 for (i = 0; i < len; i++)
12458 if (p[i])
12459 hash = (hash << 4) ^ ((i << 2) | p[i]);
12461 return hash;
12464 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12465 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12466 same. */
12468 bool
12469 cl_option_hasher::equal (tree x, tree y)
12471 const_tree const xt = x;
12472 const_tree const yt = y;
12474 if (TREE_CODE (xt) != TREE_CODE (yt))
12475 return 0;
12477 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12478 return cl_optimization_option_eq (TREE_OPTIMIZATION (xt),
12479 TREE_OPTIMIZATION (yt));
12480 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12481 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12482 TREE_TARGET_OPTION (yt));
12483 else
12484 gcc_unreachable ();
12487 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
12489 tree
12490 build_optimization_node (struct gcc_options *opts)
12492 tree t;
12494 /* Use the cache of optimization nodes. */
12496 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12497 opts);
12499 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12500 t = *slot;
12501 if (!t)
12503 /* Insert this one into the hash table. */
12504 t = cl_optimization_node;
12505 *slot = t;
12507 /* Make a new node for next time round. */
12508 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12511 return t;
12514 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
12516 tree
12517 build_target_option_node (struct gcc_options *opts)
12519 tree t;
12521 /* Use the cache of optimization nodes. */
12523 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12524 opts);
12526 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12527 t = *slot;
12528 if (!t)
12530 /* Insert this one into the hash table. */
12531 t = cl_target_option_node;
12532 *slot = t;
12534 /* Make a new node for next time round. */
12535 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12538 return t;
12541 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12542 so that they aren't saved during PCH writing. */
12544 void
12545 prepare_target_option_nodes_for_pch (void)
12547 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12548 for (; iter != cl_option_hash_table->end (); ++iter)
12549 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12550 TREE_TARGET_GLOBALS (*iter) = NULL;
12553 /* Determine the "ultimate origin" of a block. */
12555 tree
12556 block_ultimate_origin (const_tree block)
12558 tree origin = BLOCK_ABSTRACT_ORIGIN (block);
12560 if (origin == NULL_TREE)
12561 return NULL_TREE;
12562 else
12564 gcc_checking_assert ((DECL_P (origin)
12565 && DECL_ORIGIN (origin) == origin)
12566 || BLOCK_ORIGIN (origin) == origin);
12567 return origin;
12571 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12572 no instruction. */
12574 bool
12575 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12577 /* Do not strip casts into or out of differing address spaces. */
12578 if (POINTER_TYPE_P (outer_type)
12579 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12581 if (!POINTER_TYPE_P (inner_type)
12582 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12583 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12584 return false;
12586 else if (POINTER_TYPE_P (inner_type)
12587 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12589 /* We already know that outer_type is not a pointer with
12590 a non-generic address space. */
12591 return false;
12594 /* Use precision rather then machine mode when we can, which gives
12595 the correct answer even for submode (bit-field) types. */
12596 if ((INTEGRAL_TYPE_P (outer_type)
12597 || POINTER_TYPE_P (outer_type)
12598 || TREE_CODE (outer_type) == OFFSET_TYPE)
12599 && (INTEGRAL_TYPE_P (inner_type)
12600 || POINTER_TYPE_P (inner_type)
12601 || TREE_CODE (inner_type) == OFFSET_TYPE))
12602 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12604 /* Otherwise fall back on comparing machine modes (e.g. for
12605 aggregate types, floats). */
12606 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12609 /* Return true iff conversion in EXP generates no instruction. Mark
12610 it inline so that we fully inline into the stripping functions even
12611 though we have two uses of this function. */
12613 static inline bool
12614 tree_nop_conversion (const_tree exp)
12616 tree outer_type, inner_type;
12618 if (location_wrapper_p (exp))
12619 return true;
12620 if (!CONVERT_EXPR_P (exp)
12621 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12622 return false;
12623 if (TREE_OPERAND (exp, 0) == error_mark_node)
12624 return false;
12626 outer_type = TREE_TYPE (exp);
12627 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12629 if (!inner_type)
12630 return false;
12632 return tree_nop_conversion_p (outer_type, inner_type);
12635 /* Return true iff conversion in EXP generates no instruction. Don't
12636 consider conversions changing the signedness. */
12638 static bool
12639 tree_sign_nop_conversion (const_tree exp)
12641 tree outer_type, inner_type;
12643 if (!tree_nop_conversion (exp))
12644 return false;
12646 outer_type = TREE_TYPE (exp);
12647 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12649 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12650 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12653 /* Strip conversions from EXP according to tree_nop_conversion and
12654 return the resulting expression. */
12656 tree
12657 tree_strip_nop_conversions (tree exp)
12659 while (tree_nop_conversion (exp))
12660 exp = TREE_OPERAND (exp, 0);
12661 return exp;
12664 /* Strip conversions from EXP according to tree_sign_nop_conversion
12665 and return the resulting expression. */
12667 tree
12668 tree_strip_sign_nop_conversions (tree exp)
12670 while (tree_sign_nop_conversion (exp))
12671 exp = TREE_OPERAND (exp, 0);
12672 return exp;
12675 /* Avoid any floating point extensions from EXP. */
12676 tree
12677 strip_float_extensions (tree exp)
12679 tree sub, expt, subt;
12681 /* For floating point constant look up the narrowest type that can hold
12682 it properly and handle it like (type)(narrowest_type)constant.
12683 This way we can optimize for instance a=a*2.0 where "a" is float
12684 but 2.0 is double constant. */
12685 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12687 REAL_VALUE_TYPE orig;
12688 tree type = NULL;
12690 orig = TREE_REAL_CST (exp);
12691 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12692 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12693 type = float_type_node;
12694 else if (TYPE_PRECISION (TREE_TYPE (exp))
12695 > TYPE_PRECISION (double_type_node)
12696 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12697 type = double_type_node;
12698 if (type)
12699 return build_real_truncate (type, orig);
12702 if (!CONVERT_EXPR_P (exp))
12703 return exp;
12705 sub = TREE_OPERAND (exp, 0);
12706 subt = TREE_TYPE (sub);
12707 expt = TREE_TYPE (exp);
12709 if (!FLOAT_TYPE_P (subt))
12710 return exp;
12712 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12713 return exp;
12715 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12716 return exp;
12718 return strip_float_extensions (sub);
12721 /* Strip out all handled components that produce invariant
12722 offsets. */
12724 const_tree
12725 strip_invariant_refs (const_tree op)
12727 while (handled_component_p (op))
12729 switch (TREE_CODE (op))
12731 case ARRAY_REF:
12732 case ARRAY_RANGE_REF:
12733 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12734 || TREE_OPERAND (op, 2) != NULL_TREE
12735 || TREE_OPERAND (op, 3) != NULL_TREE)
12736 return NULL;
12737 break;
12739 case COMPONENT_REF:
12740 if (TREE_OPERAND (op, 2) != NULL_TREE)
12741 return NULL;
12742 break;
12744 default:;
12746 op = TREE_OPERAND (op, 0);
12749 return op;
12752 static GTY(()) tree gcc_eh_personality_decl;
12754 /* Return the GCC personality function decl. */
12756 tree
12757 lhd_gcc_personality (void)
12759 if (!gcc_eh_personality_decl)
12760 gcc_eh_personality_decl = build_personality_function ("gcc");
12761 return gcc_eh_personality_decl;
12764 /* TARGET is a call target of GIMPLE call statement
12765 (obtained by gimple_call_fn). Return true if it is
12766 OBJ_TYPE_REF representing an virtual call of C++ method.
12767 (As opposed to OBJ_TYPE_REF representing objc calls
12768 through a cast where middle-end devirtualization machinery
12769 can't apply.) */
12771 bool
12772 virtual_method_call_p (const_tree target)
12774 if (TREE_CODE (target) != OBJ_TYPE_REF)
12775 return false;
12776 tree t = TREE_TYPE (target);
12777 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12778 t = TREE_TYPE (t);
12779 if (TREE_CODE (t) == FUNCTION_TYPE)
12780 return false;
12781 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12782 /* If we do not have BINFO associated, it means that type was built
12783 without devirtualization enabled. Do not consider this a virtual
12784 call. */
12785 if (!TYPE_BINFO (obj_type_ref_class (target)))
12786 return false;
12787 return true;
12790 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12792 tree
12793 obj_type_ref_class (const_tree ref)
12795 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12796 ref = TREE_TYPE (ref);
12797 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12798 ref = TREE_TYPE (ref);
12799 /* We look for type THIS points to. ObjC also builds
12800 OBJ_TYPE_REF with non-method calls, Their first parameter
12801 ID however also corresponds to class type. */
12802 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12803 || TREE_CODE (ref) == FUNCTION_TYPE);
12804 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12805 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12806 return TREE_TYPE (ref);
12809 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12811 static tree
12812 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12814 unsigned int i;
12815 tree base_binfo, b;
12817 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12818 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12819 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12820 return base_binfo;
12821 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12822 return b;
12823 return NULL;
12826 /* Try to find a base info of BINFO that would have its field decl at offset
12827 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12828 found, return, otherwise return NULL_TREE. */
12830 tree
12831 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
12833 tree type = BINFO_TYPE (binfo);
12835 while (true)
12837 HOST_WIDE_INT pos, size;
12838 tree fld;
12839 int i;
12841 if (types_same_for_odr (type, expected_type))
12842 return binfo;
12843 if (maybe_lt (offset, 0))
12844 return NULL_TREE;
12846 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12848 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12849 continue;
12851 pos = int_bit_position (fld);
12852 size = tree_to_uhwi (DECL_SIZE (fld));
12853 if (known_in_range_p (offset, pos, size))
12854 break;
12856 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12857 return NULL_TREE;
12859 /* Offset 0 indicates the primary base, whose vtable contents are
12860 represented in the binfo for the derived class. */
12861 else if (maybe_ne (offset, 0))
12863 tree found_binfo = NULL, base_binfo;
12864 /* Offsets in BINFO are in bytes relative to the whole structure
12865 while POS is in bits relative to the containing field. */
12866 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12867 / BITS_PER_UNIT);
12869 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12870 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12871 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12873 found_binfo = base_binfo;
12874 break;
12876 if (found_binfo)
12877 binfo = found_binfo;
12878 else
12879 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12880 binfo_offset);
12883 type = TREE_TYPE (fld);
12884 offset -= pos;
12888 /* Returns true if X is a typedef decl. */
12890 bool
12891 is_typedef_decl (const_tree x)
12893 return (x && TREE_CODE (x) == TYPE_DECL
12894 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12897 /* Returns true iff TYPE is a type variant created for a typedef. */
12899 bool
12900 typedef_variant_p (const_tree type)
12902 return is_typedef_decl (TYPE_NAME (type));
12905 /* A class to handle converting a string that might contain
12906 control characters, (eg newline, form-feed, etc), into one
12907 in which contains escape sequences instead. */
12909 class escaped_string
12911 public:
12912 escaped_string () { m_owned = false; m_str = NULL; };
12913 ~escaped_string () { if (m_owned) free (m_str); }
12914 operator const char *() const { return (const char *) m_str; }
12915 void escape (const char *);
12916 private:
12917 char *m_str;
12918 bool m_owned;
12921 /* PR 84195: Replace control characters in "unescaped" with their
12922 escaped equivalents. Allow newlines if -fmessage-length has
12923 been set to a non-zero value. This is done here, rather than
12924 where the attribute is recorded as the message length can
12925 change between these two locations. */
12927 void
12928 escaped_string::escape (const char *unescaped)
12930 char *escaped;
12931 size_t i, new_i, len;
12933 if (m_owned)
12934 free (m_str);
12936 m_str = const_cast<char *> (unescaped);
12937 m_owned = false;
12939 if (unescaped == NULL || *unescaped == 0)
12940 return;
12942 len = strlen (unescaped);
12943 escaped = NULL;
12944 new_i = 0;
12946 for (i = 0; i < len; i++)
12948 char c = unescaped[i];
12950 if (!ISCNTRL (c))
12952 if (escaped)
12953 escaped[new_i++] = c;
12954 continue;
12957 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
12959 if (escaped == NULL)
12961 /* We only allocate space for a new string if we
12962 actually encounter a control character that
12963 needs replacing. */
12964 escaped = (char *) xmalloc (len * 2 + 1);
12965 strncpy (escaped, unescaped, i);
12966 new_i = i;
12969 escaped[new_i++] = '\\';
12971 switch (c)
12973 case '\a': escaped[new_i++] = 'a'; break;
12974 case '\b': escaped[new_i++] = 'b'; break;
12975 case '\f': escaped[new_i++] = 'f'; break;
12976 case '\n': escaped[new_i++] = 'n'; break;
12977 case '\r': escaped[new_i++] = 'r'; break;
12978 case '\t': escaped[new_i++] = 't'; break;
12979 case '\v': escaped[new_i++] = 'v'; break;
12980 default: escaped[new_i++] = '?'; break;
12983 else if (escaped)
12984 escaped[new_i++] = c;
12987 if (escaped)
12989 escaped[new_i] = 0;
12990 m_str = escaped;
12991 m_owned = true;
12995 /* Warn about a use of an identifier which was marked deprecated. Returns
12996 whether a warning was given. */
12998 bool
12999 warn_deprecated_use (tree node, tree attr)
13001 escaped_string msg;
13003 if (node == 0 || !warn_deprecated_decl)
13004 return false;
13006 if (!attr)
13008 if (DECL_P (node))
13009 attr = DECL_ATTRIBUTES (node);
13010 else if (TYPE_P (node))
13012 tree decl = TYPE_STUB_DECL (node);
13013 if (decl)
13014 attr = lookup_attribute ("deprecated",
13015 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
13019 if (attr)
13020 attr = lookup_attribute ("deprecated", attr);
13022 if (attr)
13023 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
13025 bool w = false;
13026 if (DECL_P (node))
13028 auto_diagnostic_group d;
13029 if (msg)
13030 w = warning (OPT_Wdeprecated_declarations,
13031 "%qD is deprecated: %s", node, (const char *) msg);
13032 else
13033 w = warning (OPT_Wdeprecated_declarations,
13034 "%qD is deprecated", node);
13035 if (w)
13036 inform (DECL_SOURCE_LOCATION (node), "declared here");
13038 else if (TYPE_P (node))
13040 tree what = NULL_TREE;
13041 tree decl = TYPE_STUB_DECL (node);
13043 if (TYPE_NAME (node))
13045 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
13046 what = TYPE_NAME (node);
13047 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
13048 && DECL_NAME (TYPE_NAME (node)))
13049 what = DECL_NAME (TYPE_NAME (node));
13052 auto_diagnostic_group d;
13053 if (what)
13055 if (msg)
13056 w = warning (OPT_Wdeprecated_declarations,
13057 "%qE is deprecated: %s", what, (const char *) msg);
13058 else
13059 w = warning (OPT_Wdeprecated_declarations,
13060 "%qE is deprecated", what);
13062 else
13064 if (msg)
13065 w = warning (OPT_Wdeprecated_declarations,
13066 "type is deprecated: %s", (const char *) msg);
13067 else
13068 w = warning (OPT_Wdeprecated_declarations,
13069 "type is deprecated");
13072 if (w && decl)
13073 inform (DECL_SOURCE_LOCATION (decl), "declared here");
13076 return w;
13079 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
13080 somewhere in it. */
13082 bool
13083 contains_bitfld_component_ref_p (const_tree ref)
13085 while (handled_component_p (ref))
13087 if (TREE_CODE (ref) == COMPONENT_REF
13088 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
13089 return true;
13090 ref = TREE_OPERAND (ref, 0);
13093 return false;
13096 /* Try to determine whether a TRY_CATCH expression can fall through.
13097 This is a subroutine of block_may_fallthru. */
13099 static bool
13100 try_catch_may_fallthru (const_tree stmt)
13102 tree_stmt_iterator i;
13104 /* If the TRY block can fall through, the whole TRY_CATCH can
13105 fall through. */
13106 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
13107 return true;
13109 i = tsi_start (TREE_OPERAND (stmt, 1));
13110 switch (TREE_CODE (tsi_stmt (i)))
13112 case CATCH_EXPR:
13113 /* We expect to see a sequence of CATCH_EXPR trees, each with a
13114 catch expression and a body. The whole TRY_CATCH may fall
13115 through iff any of the catch bodies falls through. */
13116 for (; !tsi_end_p (i); tsi_next (&i))
13118 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
13119 return true;
13121 return false;
13123 case EH_FILTER_EXPR:
13124 /* The exception filter expression only matters if there is an
13125 exception. If the exception does not match EH_FILTER_TYPES,
13126 we will execute EH_FILTER_FAILURE, and we will fall through
13127 if that falls through. If the exception does match
13128 EH_FILTER_TYPES, the stack unwinder will continue up the
13129 stack, so we will not fall through. We don't know whether we
13130 will throw an exception which matches EH_FILTER_TYPES or not,
13131 so we just ignore EH_FILTER_TYPES and assume that we might
13132 throw an exception which doesn't match. */
13133 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
13135 default:
13136 /* This case represents statements to be executed when an
13137 exception occurs. Those statements are implicitly followed
13138 by a RESX statement to resume execution after the exception.
13139 So in this case the TRY_CATCH never falls through. */
13140 return false;
13144 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
13145 need not be 100% accurate; simply be conservative and return true if we
13146 don't know. This is used only to avoid stupidly generating extra code.
13147 If we're wrong, we'll just delete the extra code later. */
13149 bool
13150 block_may_fallthru (const_tree block)
13152 /* This CONST_CAST is okay because expr_last returns its argument
13153 unmodified and we assign it to a const_tree. */
13154 const_tree stmt = expr_last (CONST_CAST_TREE (block));
13156 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
13158 case GOTO_EXPR:
13159 case RETURN_EXPR:
13160 /* Easy cases. If the last statement of the block implies
13161 control transfer, then we can't fall through. */
13162 return false;
13164 case SWITCH_EXPR:
13165 /* If there is a default: label or case labels cover all possible
13166 SWITCH_COND values, then the SWITCH_EXPR will transfer control
13167 to some case label in all cases and all we care is whether the
13168 SWITCH_BODY falls through. */
13169 if (SWITCH_ALL_CASES_P (stmt))
13170 return block_may_fallthru (SWITCH_BODY (stmt));
13171 return true;
13173 case COND_EXPR:
13174 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
13175 return true;
13176 return block_may_fallthru (COND_EXPR_ELSE (stmt));
13178 case BIND_EXPR:
13179 return block_may_fallthru (BIND_EXPR_BODY (stmt));
13181 case TRY_CATCH_EXPR:
13182 return try_catch_may_fallthru (stmt);
13184 case TRY_FINALLY_EXPR:
13185 /* The finally clause is always executed after the try clause,
13186 so if it does not fall through, then the try-finally will not
13187 fall through. Otherwise, if the try clause does not fall
13188 through, then when the finally clause falls through it will
13189 resume execution wherever the try clause was going. So the
13190 whole try-finally will only fall through if both the try
13191 clause and the finally clause fall through. */
13192 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
13193 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
13195 case MODIFY_EXPR:
13196 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
13197 stmt = TREE_OPERAND (stmt, 1);
13198 else
13199 return true;
13200 /* FALLTHRU */
13202 case CALL_EXPR:
13203 /* Functions that do not return do not fall through. */
13204 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
13206 case CLEANUP_POINT_EXPR:
13207 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13209 case TARGET_EXPR:
13210 return block_may_fallthru (TREE_OPERAND (stmt, 1));
13212 case ERROR_MARK:
13213 return true;
13215 default:
13216 return lang_hooks.block_may_fallthru (stmt);
13220 /* True if we are using EH to handle cleanups. */
13221 static bool using_eh_for_cleanups_flag = false;
13223 /* This routine is called from front ends to indicate eh should be used for
13224 cleanups. */
13225 void
13226 using_eh_for_cleanups (void)
13228 using_eh_for_cleanups_flag = true;
13231 /* Query whether EH is used for cleanups. */
13232 bool
13233 using_eh_for_cleanups_p (void)
13235 return using_eh_for_cleanups_flag;
13238 /* Wrapper for tree_code_name to ensure that tree code is valid */
13239 const char *
13240 get_tree_code_name (enum tree_code code)
13242 const char *invalid = "<invalid tree code>";
13244 if (code >= MAX_TREE_CODES)
13245 return invalid;
13247 return tree_code_name[code];
13250 /* Drops the TREE_OVERFLOW flag from T. */
13252 tree
13253 drop_tree_overflow (tree t)
13255 gcc_checking_assert (TREE_OVERFLOW (t));
13257 /* For tree codes with a sharing machinery re-build the result. */
13258 if (poly_int_tree_p (t))
13259 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
13261 /* For VECTOR_CST, remove the overflow bits from the encoded elements
13262 and canonicalize the result. */
13263 if (TREE_CODE (t) == VECTOR_CST)
13265 tree_vector_builder builder;
13266 builder.new_unary_operation (TREE_TYPE (t), t, true);
13267 unsigned int count = builder.encoded_nelts ();
13268 for (unsigned int i = 0; i < count; ++i)
13270 tree elt = VECTOR_CST_ELT (t, i);
13271 if (TREE_OVERFLOW (elt))
13272 elt = drop_tree_overflow (elt);
13273 builder.quick_push (elt);
13275 return builder.build ();
13278 /* Otherwise, as all tcc_constants are possibly shared, copy the node
13279 and drop the flag. */
13280 t = copy_node (t);
13281 TREE_OVERFLOW (t) = 0;
13283 /* For constants that contain nested constants, drop the flag
13284 from those as well. */
13285 if (TREE_CODE (t) == COMPLEX_CST)
13287 if (TREE_OVERFLOW (TREE_REALPART (t)))
13288 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
13289 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
13290 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
13293 return t;
13296 /* Given a memory reference expression T, return its base address.
13297 The base address of a memory reference expression is the main
13298 object being referenced. For instance, the base address for
13299 'array[i].fld[j]' is 'array'. You can think of this as stripping
13300 away the offset part from a memory address.
13302 This function calls handled_component_p to strip away all the inner
13303 parts of the memory reference until it reaches the base object. */
13305 tree
13306 get_base_address (tree t)
13308 while (handled_component_p (t))
13309 t = TREE_OPERAND (t, 0);
13311 if ((TREE_CODE (t) == MEM_REF
13312 || TREE_CODE (t) == TARGET_MEM_REF)
13313 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
13314 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
13316 /* ??? Either the alias oracle or all callers need to properly deal
13317 with WITH_SIZE_EXPRs before we can look through those. */
13318 if (TREE_CODE (t) == WITH_SIZE_EXPR)
13319 return NULL_TREE;
13321 return t;
13324 /* Return a tree of sizetype representing the size, in bytes, of the element
13325 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13327 tree
13328 array_ref_element_size (tree exp)
13330 tree aligned_size = TREE_OPERAND (exp, 3);
13331 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
13332 location_t loc = EXPR_LOCATION (exp);
13334 /* If a size was specified in the ARRAY_REF, it's the size measured
13335 in alignment units of the element type. So multiply by that value. */
13336 if (aligned_size)
13338 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13339 sizetype from another type of the same width and signedness. */
13340 if (TREE_TYPE (aligned_size) != sizetype)
13341 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
13342 return size_binop_loc (loc, MULT_EXPR, aligned_size,
13343 size_int (TYPE_ALIGN_UNIT (elmt_type)));
13346 /* Otherwise, take the size from that of the element type. Substitute
13347 any PLACEHOLDER_EXPR that we have. */
13348 else
13349 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
13352 /* Return a tree representing the lower bound of the array mentioned in
13353 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13355 tree
13356 array_ref_low_bound (tree exp)
13358 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13360 /* If a lower bound is specified in EXP, use it. */
13361 if (TREE_OPERAND (exp, 2))
13362 return TREE_OPERAND (exp, 2);
13364 /* Otherwise, if there is a domain type and it has a lower bound, use it,
13365 substituting for a PLACEHOLDER_EXPR as needed. */
13366 if (domain_type && TYPE_MIN_VALUE (domain_type))
13367 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
13369 /* Otherwise, return a zero of the appropriate type. */
13370 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
13373 /* Return a tree representing the upper bound of the array mentioned in
13374 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13376 tree
13377 array_ref_up_bound (tree exp)
13379 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13381 /* If there is a domain type and it has an upper bound, use it, substituting
13382 for a PLACEHOLDER_EXPR as needed. */
13383 if (domain_type && TYPE_MAX_VALUE (domain_type))
13384 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
13386 /* Otherwise fail. */
13387 return NULL_TREE;
13390 /* Returns true if REF is an array reference or a component reference
13391 to an array at the end of a structure.
13392 If this is the case, the array may be allocated larger
13393 than its upper bound implies. */
13395 bool
13396 array_at_struct_end_p (tree ref)
13398 tree atype;
13400 if (TREE_CODE (ref) == ARRAY_REF
13401 || TREE_CODE (ref) == ARRAY_RANGE_REF)
13403 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
13404 ref = TREE_OPERAND (ref, 0);
13406 else if (TREE_CODE (ref) == COMPONENT_REF
13407 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
13408 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
13409 else
13410 return false;
13412 if (TREE_CODE (ref) == STRING_CST)
13413 return false;
13415 tree ref_to_array = ref;
13416 while (handled_component_p (ref))
13418 /* If the reference chain contains a component reference to a
13419 non-union type and there follows another field the reference
13420 is not at the end of a structure. */
13421 if (TREE_CODE (ref) == COMPONENT_REF)
13423 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
13425 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
13426 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
13427 nextf = DECL_CHAIN (nextf);
13428 if (nextf)
13429 return false;
13432 /* If we have a multi-dimensional array we do not consider
13433 a non-innermost dimension as flex array if the whole
13434 multi-dimensional array is at struct end.
13435 Same for an array of aggregates with a trailing array
13436 member. */
13437 else if (TREE_CODE (ref) == ARRAY_REF)
13438 return false;
13439 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
13441 /* If we view an underlying object as sth else then what we
13442 gathered up to now is what we have to rely on. */
13443 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
13444 break;
13445 else
13446 gcc_unreachable ();
13448 ref = TREE_OPERAND (ref, 0);
13451 /* The array now is at struct end. Treat flexible arrays as
13452 always subject to extend, even into just padding constrained by
13453 an underlying decl. */
13454 if (! TYPE_SIZE (atype)
13455 || ! TYPE_DOMAIN (atype)
13456 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13457 return true;
13459 if (TREE_CODE (ref) == MEM_REF
13460 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13461 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13463 /* If the reference is based on a declared entity, the size of the array
13464 is constrained by its given domain. (Do not trust commons PR/69368). */
13465 if (DECL_P (ref)
13466 && !(flag_unconstrained_commons
13467 && VAR_P (ref) && DECL_COMMON (ref))
13468 && DECL_SIZE_UNIT (ref)
13469 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13471 /* Check whether the array domain covers all of the available
13472 padding. */
13473 poly_int64 offset;
13474 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13475 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13476 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13477 return true;
13478 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13479 return true;
13481 /* If at least one extra element fits it is a flexarray. */
13482 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13483 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13484 + 2)
13485 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13486 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13487 return true;
13489 return false;
13492 return true;
13495 /* Return a tree representing the offset, in bytes, of the field referenced
13496 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13498 tree
13499 component_ref_field_offset (tree exp)
13501 tree aligned_offset = TREE_OPERAND (exp, 2);
13502 tree field = TREE_OPERAND (exp, 1);
13503 location_t loc = EXPR_LOCATION (exp);
13505 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13506 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13507 value. */
13508 if (aligned_offset)
13510 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13511 sizetype from another type of the same width and signedness. */
13512 if (TREE_TYPE (aligned_offset) != sizetype)
13513 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13514 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13515 size_int (DECL_OFFSET_ALIGN (field)
13516 / BITS_PER_UNIT));
13519 /* Otherwise, take the offset from that of the field. Substitute
13520 any PLACEHOLDER_EXPR that we have. */
13521 else
13522 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13525 /* Return the machine mode of T. For vectors, returns the mode of the
13526 inner type. The main use case is to feed the result to HONOR_NANS,
13527 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13529 machine_mode
13530 element_mode (const_tree t)
13532 if (!TYPE_P (t))
13533 t = TREE_TYPE (t);
13534 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13535 t = TREE_TYPE (t);
13536 return TYPE_MODE (t);
13539 /* Vector types need to re-check the target flags each time we report
13540 the machine mode. We need to do this because attribute target can
13541 change the result of vector_mode_supported_p and have_regs_of_mode
13542 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
13543 change on a per-function basis. */
13544 /* ??? Possibly a better solution is to run through all the types
13545 referenced by a function and re-compute the TYPE_MODE once, rather
13546 than make the TYPE_MODE macro call a function. */
13548 machine_mode
13549 vector_type_mode (const_tree t)
13551 machine_mode mode;
13553 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
13555 mode = t->type_common.mode;
13556 if (VECTOR_MODE_P (mode)
13557 && (!targetm.vector_mode_supported_p (mode)
13558 || !have_regs_of_mode[mode]))
13560 scalar_int_mode innermode;
13562 /* For integers, try mapping it to a same-sized scalar mode. */
13563 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
13565 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
13566 * GET_MODE_BITSIZE (innermode));
13567 scalar_int_mode mode;
13568 if (int_mode_for_size (size, 0).exists (&mode)
13569 && have_regs_of_mode[mode])
13570 return mode;
13573 return BLKmode;
13576 return mode;
13579 /* Verify that basic properties of T match TV and thus T can be a variant of
13580 TV. TV should be the more specified variant (i.e. the main variant). */
13582 static bool
13583 verify_type_variant (const_tree t, tree tv)
13585 /* Type variant can differ by:
13587 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13588 ENCODE_QUAL_ADDR_SPACE.
13589 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13590 in this case some values may not be set in the variant types
13591 (see TYPE_COMPLETE_P checks).
13592 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13593 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13594 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13595 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13596 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13597 this is necessary to make it possible to merge types form different TUs
13598 - arrays, pointers and references may have TREE_TYPE that is a variant
13599 of TREE_TYPE of their main variants.
13600 - aggregates may have new TYPE_FIELDS list that list variants of
13601 the main variant TYPE_FIELDS.
13602 - vector types may differ by TYPE_VECTOR_OPAQUE
13605 /* Convenience macro for matching individual fields. */
13606 #define verify_variant_match(flag) \
13607 do { \
13608 if (flag (tv) != flag (t)) \
13610 error ("type variant differs by %s", #flag); \
13611 debug_tree (tv); \
13612 return false; \
13614 } while (false)
13616 /* tree_base checks. */
13618 verify_variant_match (TREE_CODE);
13619 /* FIXME: Ada builds non-artificial variants of artificial types. */
13620 if (TYPE_ARTIFICIAL (tv) && 0)
13621 verify_variant_match (TYPE_ARTIFICIAL);
13622 if (POINTER_TYPE_P (tv))
13623 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13624 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13625 verify_variant_match (TYPE_UNSIGNED);
13626 verify_variant_match (TYPE_PACKED);
13627 if (TREE_CODE (t) == REFERENCE_TYPE)
13628 verify_variant_match (TYPE_REF_IS_RVALUE);
13629 if (AGGREGATE_TYPE_P (t))
13630 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13631 else
13632 verify_variant_match (TYPE_SATURATING);
13633 /* FIXME: This check trigger during libstdc++ build. */
13634 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13635 verify_variant_match (TYPE_FINAL_P);
13637 /* tree_type_common checks. */
13639 if (COMPLETE_TYPE_P (t))
13641 verify_variant_match (TYPE_MODE);
13642 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
13643 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
13644 verify_variant_match (TYPE_SIZE);
13645 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
13646 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
13647 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
13649 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
13650 TYPE_SIZE_UNIT (tv), 0));
13651 error ("type variant has different TYPE_SIZE_UNIT");
13652 debug_tree (tv);
13653 error ("type variant's TYPE_SIZE_UNIT");
13654 debug_tree (TYPE_SIZE_UNIT (tv));
13655 error ("type's TYPE_SIZE_UNIT");
13656 debug_tree (TYPE_SIZE_UNIT (t));
13657 return false;
13660 verify_variant_match (TYPE_PRECISION);
13661 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
13662 if (RECORD_OR_UNION_TYPE_P (t))
13663 verify_variant_match (TYPE_TRANSPARENT_AGGR);
13664 else if (TREE_CODE (t) == ARRAY_TYPE)
13665 verify_variant_match (TYPE_NONALIASED_COMPONENT);
13666 /* During LTO we merge variant lists from diferent translation units
13667 that may differ BY TYPE_CONTEXT that in turn may point
13668 to TRANSLATION_UNIT_DECL.
13669 Ada also builds variants of types with different TYPE_CONTEXT. */
13670 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
13671 verify_variant_match (TYPE_CONTEXT);
13672 verify_variant_match (TYPE_STRING_FLAG);
13673 if (TYPE_ALIAS_SET_KNOWN_P (t))
13675 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
13676 debug_tree (tv);
13677 return false;
13680 /* tree_type_non_common checks. */
13682 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13683 and dangle the pointer from time to time. */
13684 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
13685 && (in_lto_p || !TYPE_VFIELD (tv)
13686 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
13688 error ("type variant has different TYPE_VFIELD");
13689 debug_tree (tv);
13690 return false;
13692 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
13693 || TREE_CODE (t) == INTEGER_TYPE
13694 || TREE_CODE (t) == BOOLEAN_TYPE
13695 || TREE_CODE (t) == REAL_TYPE
13696 || TREE_CODE (t) == FIXED_POINT_TYPE)
13698 verify_variant_match (TYPE_MAX_VALUE);
13699 verify_variant_match (TYPE_MIN_VALUE);
13701 if (TREE_CODE (t) == METHOD_TYPE)
13702 verify_variant_match (TYPE_METHOD_BASETYPE);
13703 if (TREE_CODE (t) == OFFSET_TYPE)
13704 verify_variant_match (TYPE_OFFSET_BASETYPE);
13705 if (TREE_CODE (t) == ARRAY_TYPE)
13706 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
13707 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
13708 or even type's main variant. This is needed to make bootstrap pass
13709 and the bug seems new in GCC 5.
13710 C++ FE should be updated to make this consistent and we should check
13711 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
13712 is a match with main variant.
13714 Also disable the check for Java for now because of parser hack that builds
13715 first an dummy BINFO and then sometimes replace it by real BINFO in some
13716 of the copies. */
13717 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
13718 && TYPE_BINFO (t) != TYPE_BINFO (tv)
13719 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
13720 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
13721 at LTO time only. */
13722 && (in_lto_p && odr_type_p (t)))
13724 error ("type variant has different TYPE_BINFO");
13725 debug_tree (tv);
13726 error ("type variant's TYPE_BINFO");
13727 debug_tree (TYPE_BINFO (tv));
13728 error ("type's TYPE_BINFO");
13729 debug_tree (TYPE_BINFO (t));
13730 return false;
13733 /* Check various uses of TYPE_VALUES_RAW. */
13734 if (TREE_CODE (t) == ENUMERAL_TYPE
13735 && TYPE_VALUES (t))
13736 verify_variant_match (TYPE_VALUES);
13737 else if (TREE_CODE (t) == ARRAY_TYPE)
13738 verify_variant_match (TYPE_DOMAIN);
13739 /* Permit incomplete variants of complete type. While FEs may complete
13740 all variants, this does not happen for C++ templates in all cases. */
13741 else if (RECORD_OR_UNION_TYPE_P (t)
13742 && COMPLETE_TYPE_P (t)
13743 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
13745 tree f1, f2;
13747 /* Fortran builds qualified variants as new records with items of
13748 qualified type. Verify that they looks same. */
13749 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
13750 f1 && f2;
13751 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13752 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
13753 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
13754 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
13755 /* FIXME: gfc_nonrestricted_type builds all types as variants
13756 with exception of pointer types. It deeply copies the type
13757 which means that we may end up with a variant type
13758 referring non-variant pointer. We may change it to
13759 produce types as variants, too, like
13760 objc_get_protocol_qualified_type does. */
13761 && !POINTER_TYPE_P (TREE_TYPE (f1)))
13762 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
13763 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
13764 break;
13765 if (f1 || f2)
13767 error ("type variant has different TYPE_FIELDS");
13768 debug_tree (tv);
13769 error ("first mismatch is field");
13770 debug_tree (f1);
13771 error ("and field");
13772 debug_tree (f2);
13773 return false;
13776 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
13777 verify_variant_match (TYPE_ARG_TYPES);
13778 /* For C++ the qualified variant of array type is really an array type
13779 of qualified TREE_TYPE.
13780 objc builds variants of pointer where pointer to type is a variant, too
13781 in objc_get_protocol_qualified_type. */
13782 if (TREE_TYPE (t) != TREE_TYPE (tv)
13783 && ((TREE_CODE (t) != ARRAY_TYPE
13784 && !POINTER_TYPE_P (t))
13785 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
13786 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13788 error ("type variant has different TREE_TYPE");
13789 debug_tree (tv);
13790 error ("type variant's TREE_TYPE");
13791 debug_tree (TREE_TYPE (tv));
13792 error ("type's TREE_TYPE");
13793 debug_tree (TREE_TYPE (t));
13794 return false;
13796 if (type_with_alias_set_p (t)
13797 && !gimple_canonical_types_compatible_p (t, tv, false))
13799 error ("type is not compatible with its variant");
13800 debug_tree (tv);
13801 error ("type variant's TREE_TYPE");
13802 debug_tree (TREE_TYPE (tv));
13803 error ("type's TREE_TYPE");
13804 debug_tree (TREE_TYPE (t));
13805 return false;
13807 return true;
13808 #undef verify_variant_match
13812 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13813 the middle-end types_compatible_p function. It needs to avoid
13814 claiming types are different for types that should be treated
13815 the same with respect to TBAA. Canonical types are also used
13816 for IL consistency checks via the useless_type_conversion_p
13817 predicate which does not handle all type kinds itself but falls
13818 back to pointer-comparison of TYPE_CANONICAL for aggregates
13819 for example. */
13821 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13822 type calculation because we need to allow inter-operability between signed
13823 and unsigned variants. */
13825 bool
13826 type_with_interoperable_signedness (const_tree type)
13828 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13829 signed char and unsigned char. Similarly fortran FE builds
13830 C_SIZE_T as signed type, while C defines it unsigned. */
13832 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13833 == INTEGER_TYPE
13834 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13835 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13838 /* Return true iff T1 and T2 are structurally identical for what
13839 TBAA is concerned.
13840 This function is used both by lto.c canonical type merging and by the
13841 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13842 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13843 only for LTO because only in these cases TYPE_CANONICAL equivalence
13844 correspond to one defined by gimple_canonical_types_compatible_p. */
13846 bool
13847 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13848 bool trust_type_canonical)
13850 /* Type variants should be same as the main variant. When not doing sanity
13851 checking to verify this fact, go to main variants and save some work. */
13852 if (trust_type_canonical)
13854 t1 = TYPE_MAIN_VARIANT (t1);
13855 t2 = TYPE_MAIN_VARIANT (t2);
13858 /* Check first for the obvious case of pointer identity. */
13859 if (t1 == t2)
13860 return true;
13862 /* Check that we have two types to compare. */
13863 if (t1 == NULL_TREE || t2 == NULL_TREE)
13864 return false;
13866 /* We consider complete types always compatible with incomplete type.
13867 This does not make sense for canonical type calculation and thus we
13868 need to ensure that we are never called on it.
13870 FIXME: For more correctness the function probably should have three modes
13871 1) mode assuming that types are complete mathcing their structure
13872 2) mode allowing incomplete types but producing equivalence classes
13873 and thus ignoring all info from complete types
13874 3) mode allowing incomplete types to match complete but checking
13875 compatibility between complete types.
13877 1 and 2 can be used for canonical type calculation. 3 is the real
13878 definition of type compatibility that can be used i.e. for warnings during
13879 declaration merging. */
13881 gcc_assert (!trust_type_canonical
13882 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13883 /* If the types have been previously registered and found equal
13884 they still are. */
13886 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13887 && trust_type_canonical)
13889 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13890 they are always NULL, but they are set to non-NULL for types
13891 constructed by build_pointer_type and variants. In this case the
13892 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13893 all pointers are considered equal. Be sure to not return false
13894 negatives. */
13895 gcc_checking_assert (canonical_type_used_p (t1)
13896 && canonical_type_used_p (t2));
13897 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13900 /* Can't be the same type if the types don't have the same code. */
13901 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13902 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13903 return false;
13905 /* Qualifiers do not matter for canonical type comparison purposes. */
13907 /* Void types and nullptr types are always the same. */
13908 if (TREE_CODE (t1) == VOID_TYPE
13909 || TREE_CODE (t1) == NULLPTR_TYPE)
13910 return true;
13912 /* Can't be the same type if they have different mode. */
13913 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13914 return false;
13916 /* Non-aggregate types can be handled cheaply. */
13917 if (INTEGRAL_TYPE_P (t1)
13918 || SCALAR_FLOAT_TYPE_P (t1)
13919 || FIXED_POINT_TYPE_P (t1)
13920 || TREE_CODE (t1) == VECTOR_TYPE
13921 || TREE_CODE (t1) == COMPLEX_TYPE
13922 || TREE_CODE (t1) == OFFSET_TYPE
13923 || POINTER_TYPE_P (t1))
13925 /* Can't be the same type if they have different recision. */
13926 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13927 return false;
13929 /* In some cases the signed and unsigned types are required to be
13930 inter-operable. */
13931 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13932 && !type_with_interoperable_signedness (t1))
13933 return false;
13935 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13936 interoperable with "signed char". Unless all frontends are revisited
13937 to agree on these types, we must ignore the flag completely. */
13939 /* Fortran standard define C_PTR type that is compatible with every
13940 C pointer. For this reason we need to glob all pointers into one.
13941 Still pointers in different address spaces are not compatible. */
13942 if (POINTER_TYPE_P (t1))
13944 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13945 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13946 return false;
13949 /* Tail-recurse to components. */
13950 if (TREE_CODE (t1) == VECTOR_TYPE
13951 || TREE_CODE (t1) == COMPLEX_TYPE)
13952 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13953 TREE_TYPE (t2),
13954 trust_type_canonical);
13956 return true;
13959 /* Do type-specific comparisons. */
13960 switch (TREE_CODE (t1))
13962 case ARRAY_TYPE:
13963 /* Array types are the same if the element types are the same and
13964 the number of elements are the same. */
13965 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13966 trust_type_canonical)
13967 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13968 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13969 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13970 return false;
13971 else
13973 tree i1 = TYPE_DOMAIN (t1);
13974 tree i2 = TYPE_DOMAIN (t2);
13976 /* For an incomplete external array, the type domain can be
13977 NULL_TREE. Check this condition also. */
13978 if (i1 == NULL_TREE && i2 == NULL_TREE)
13979 return true;
13980 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13981 return false;
13982 else
13984 tree min1 = TYPE_MIN_VALUE (i1);
13985 tree min2 = TYPE_MIN_VALUE (i2);
13986 tree max1 = TYPE_MAX_VALUE (i1);
13987 tree max2 = TYPE_MAX_VALUE (i2);
13989 /* The minimum/maximum values have to be the same. */
13990 if ((min1 == min2
13991 || (min1 && min2
13992 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13993 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13994 || operand_equal_p (min1, min2, 0))))
13995 && (max1 == max2
13996 || (max1 && max2
13997 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13998 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13999 || operand_equal_p (max1, max2, 0)))))
14000 return true;
14001 else
14002 return false;
14006 case METHOD_TYPE:
14007 case FUNCTION_TYPE:
14008 /* Function types are the same if the return type and arguments types
14009 are the same. */
14010 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14011 trust_type_canonical))
14012 return false;
14014 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
14015 return true;
14016 else
14018 tree parms1, parms2;
14020 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
14021 parms1 && parms2;
14022 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
14024 if (!gimple_canonical_types_compatible_p
14025 (TREE_VALUE (parms1), TREE_VALUE (parms2),
14026 trust_type_canonical))
14027 return false;
14030 if (parms1 || parms2)
14031 return false;
14033 return true;
14036 case RECORD_TYPE:
14037 case UNION_TYPE:
14038 case QUAL_UNION_TYPE:
14040 tree f1, f2;
14042 /* Don't try to compare variants of an incomplete type, before
14043 TYPE_FIELDS has been copied around. */
14044 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
14045 return true;
14048 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
14049 return false;
14051 /* For aggregate types, all the fields must be the same. */
14052 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
14053 f1 || f2;
14054 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14056 /* Skip non-fields and zero-sized fields. */
14057 while (f1 && (TREE_CODE (f1) != FIELD_DECL
14058 || (DECL_SIZE (f1)
14059 && integer_zerop (DECL_SIZE (f1)))))
14060 f1 = TREE_CHAIN (f1);
14061 while (f2 && (TREE_CODE (f2) != FIELD_DECL
14062 || (DECL_SIZE (f2)
14063 && integer_zerop (DECL_SIZE (f2)))))
14064 f2 = TREE_CHAIN (f2);
14065 if (!f1 || !f2)
14066 break;
14067 /* The fields must have the same name, offset and type. */
14068 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
14069 || !gimple_compare_field_offset (f1, f2)
14070 || !gimple_canonical_types_compatible_p
14071 (TREE_TYPE (f1), TREE_TYPE (f2),
14072 trust_type_canonical))
14073 return false;
14076 /* If one aggregate has more fields than the other, they
14077 are not the same. */
14078 if (f1 || f2)
14079 return false;
14081 return true;
14084 default:
14085 /* Consider all types with language specific trees in them mutually
14086 compatible. This is executed only from verify_type and false
14087 positives can be tolerated. */
14088 gcc_assert (!in_lto_p);
14089 return true;
14093 /* Verify type T. */
14095 void
14096 verify_type (const_tree t)
14098 bool error_found = false;
14099 tree mv = TYPE_MAIN_VARIANT (t);
14100 if (!mv)
14102 error ("Main variant is not defined");
14103 error_found = true;
14105 else if (mv != TYPE_MAIN_VARIANT (mv))
14107 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
14108 debug_tree (mv);
14109 error_found = true;
14111 else if (t != mv && !verify_type_variant (t, mv))
14112 error_found = true;
14114 tree ct = TYPE_CANONICAL (t);
14115 if (!ct)
14117 else if (TYPE_CANONICAL (t) != ct)
14119 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
14120 debug_tree (ct);
14121 error_found = true;
14123 /* Method and function types can not be used to address memory and thus
14124 TYPE_CANONICAL really matters only for determining useless conversions.
14126 FIXME: C++ FE produce declarations of builtin functions that are not
14127 compatible with main variants. */
14128 else if (TREE_CODE (t) == FUNCTION_TYPE)
14130 else if (t != ct
14131 /* FIXME: gimple_canonical_types_compatible_p can not compare types
14132 with variably sized arrays because their sizes possibly
14133 gimplified to different variables. */
14134 && !variably_modified_type_p (ct, NULL)
14135 && !gimple_canonical_types_compatible_p (t, ct, false)
14136 && COMPLETE_TYPE_P (t))
14138 error ("TYPE_CANONICAL is not compatible");
14139 debug_tree (ct);
14140 error_found = true;
14143 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
14144 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
14146 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
14147 debug_tree (ct);
14148 error_found = true;
14150 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
14152 error ("TYPE_CANONICAL of main variant is not main variant");
14153 debug_tree (ct);
14154 debug_tree (TYPE_MAIN_VARIANT (ct));
14155 error_found = true;
14159 /* Check various uses of TYPE_MIN_VALUE_RAW. */
14160 if (RECORD_OR_UNION_TYPE_P (t))
14162 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14163 and danagle the pointer from time to time. */
14164 if (TYPE_VFIELD (t)
14165 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
14166 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
14168 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
14169 debug_tree (TYPE_VFIELD (t));
14170 error_found = true;
14173 else if (TREE_CODE (t) == POINTER_TYPE)
14175 if (TYPE_NEXT_PTR_TO (t)
14176 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
14178 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
14179 debug_tree (TYPE_NEXT_PTR_TO (t));
14180 error_found = true;
14183 else if (TREE_CODE (t) == REFERENCE_TYPE)
14185 if (TYPE_NEXT_REF_TO (t)
14186 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
14188 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
14189 debug_tree (TYPE_NEXT_REF_TO (t));
14190 error_found = true;
14193 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14194 || TREE_CODE (t) == FIXED_POINT_TYPE)
14196 /* FIXME: The following check should pass:
14197 useless_type_conversion_p (const_cast <tree> (t),
14198 TREE_TYPE (TYPE_MIN_VALUE (t))
14199 but does not for C sizetypes in LTO. */
14202 /* Check various uses of TYPE_MAXVAL_RAW. */
14203 if (RECORD_OR_UNION_TYPE_P (t))
14205 if (!TYPE_BINFO (t))
14207 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
14209 error ("TYPE_BINFO is not TREE_BINFO");
14210 debug_tree (TYPE_BINFO (t));
14211 error_found = true;
14213 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
14215 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
14216 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
14217 error_found = true;
14220 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14222 if (TYPE_METHOD_BASETYPE (t)
14223 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
14224 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
14226 error ("TYPE_METHOD_BASETYPE is not record nor union");
14227 debug_tree (TYPE_METHOD_BASETYPE (t));
14228 error_found = true;
14231 else if (TREE_CODE (t) == OFFSET_TYPE)
14233 if (TYPE_OFFSET_BASETYPE (t)
14234 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
14235 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
14237 error ("TYPE_OFFSET_BASETYPE is not record nor union");
14238 debug_tree (TYPE_OFFSET_BASETYPE (t));
14239 error_found = true;
14242 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14243 || TREE_CODE (t) == FIXED_POINT_TYPE)
14245 /* FIXME: The following check should pass:
14246 useless_type_conversion_p (const_cast <tree> (t),
14247 TREE_TYPE (TYPE_MAX_VALUE (t))
14248 but does not for C sizetypes in LTO. */
14250 else if (TREE_CODE (t) == ARRAY_TYPE)
14252 if (TYPE_ARRAY_MAX_SIZE (t)
14253 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
14255 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
14256 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
14257 error_found = true;
14260 else if (TYPE_MAX_VALUE_RAW (t))
14262 error ("TYPE_MAX_VALUE_RAW non-NULL");
14263 debug_tree (TYPE_MAX_VALUE_RAW (t));
14264 error_found = true;
14267 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
14269 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
14270 debug_tree (TYPE_LANG_SLOT_1 (t));
14271 error_found = true;
14274 /* Check various uses of TYPE_VALUES_RAW. */
14275 if (TREE_CODE (t) == ENUMERAL_TYPE)
14276 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
14278 tree value = TREE_VALUE (l);
14279 tree name = TREE_PURPOSE (l);
14281 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
14282 CONST_DECL of ENUMERAL TYPE. */
14283 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
14285 error ("Enum value is not CONST_DECL or INTEGER_CST");
14286 debug_tree (value);
14287 debug_tree (name);
14288 error_found = true;
14290 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
14291 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
14293 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
14294 debug_tree (value);
14295 debug_tree (name);
14296 error_found = true;
14298 if (TREE_CODE (name) != IDENTIFIER_NODE)
14300 error ("Enum value name is not IDENTIFIER_NODE");
14301 debug_tree (value);
14302 debug_tree (name);
14303 error_found = true;
14306 else if (TREE_CODE (t) == ARRAY_TYPE)
14308 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
14310 error ("Array TYPE_DOMAIN is not integer type");
14311 debug_tree (TYPE_DOMAIN (t));
14312 error_found = true;
14315 else if (RECORD_OR_UNION_TYPE_P (t))
14317 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
14319 error ("TYPE_FIELDS defined in incomplete type");
14320 error_found = true;
14322 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
14324 /* TODO: verify properties of decls. */
14325 if (TREE_CODE (fld) == FIELD_DECL)
14327 else if (TREE_CODE (fld) == TYPE_DECL)
14329 else if (TREE_CODE (fld) == CONST_DECL)
14331 else if (VAR_P (fld))
14333 else if (TREE_CODE (fld) == TEMPLATE_DECL)
14335 else if (TREE_CODE (fld) == USING_DECL)
14337 else if (TREE_CODE (fld) == FUNCTION_DECL)
14339 else
14341 error ("Wrong tree in TYPE_FIELDS list");
14342 debug_tree (fld);
14343 error_found = true;
14347 else if (TREE_CODE (t) == INTEGER_TYPE
14348 || TREE_CODE (t) == BOOLEAN_TYPE
14349 || TREE_CODE (t) == OFFSET_TYPE
14350 || TREE_CODE (t) == REFERENCE_TYPE
14351 || TREE_CODE (t) == NULLPTR_TYPE
14352 || TREE_CODE (t) == POINTER_TYPE)
14354 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
14356 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
14357 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
14358 error_found = true;
14360 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
14362 error ("TYPE_CACHED_VALUES is not TREE_VEC");
14363 debug_tree (TYPE_CACHED_VALUES (t));
14364 error_found = true;
14366 /* Verify just enough of cache to ensure that no one copied it to new type.
14367 All copying should go by copy_node that should clear it. */
14368 else if (TYPE_CACHED_VALUES_P (t))
14370 int i;
14371 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
14372 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
14373 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
14375 error ("wrong TYPE_CACHED_VALUES entry");
14376 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
14377 error_found = true;
14378 break;
14382 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14383 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
14385 /* C++ FE uses TREE_PURPOSE to store initial values. */
14386 if (TREE_PURPOSE (l) && in_lto_p)
14388 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
14389 debug_tree (l);
14390 error_found = true;
14392 if (!TYPE_P (TREE_VALUE (l)))
14394 error ("Wrong entry in TYPE_ARG_TYPES list");
14395 debug_tree (l);
14396 error_found = true;
14399 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
14401 error ("TYPE_VALUES_RAW field is non-NULL");
14402 debug_tree (TYPE_VALUES_RAW (t));
14403 error_found = true;
14405 if (TREE_CODE (t) != INTEGER_TYPE
14406 && TREE_CODE (t) != BOOLEAN_TYPE
14407 && TREE_CODE (t) != OFFSET_TYPE
14408 && TREE_CODE (t) != REFERENCE_TYPE
14409 && TREE_CODE (t) != NULLPTR_TYPE
14410 && TREE_CODE (t) != POINTER_TYPE
14411 && TYPE_CACHED_VALUES_P (t))
14413 error ("TYPE_CACHED_VALUES_P is set while it should not");
14414 error_found = true;
14416 if (TYPE_STRING_FLAG (t)
14417 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
14419 error ("TYPE_STRING_FLAG is set on wrong type code");
14420 error_found = true;
14423 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
14424 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
14425 of a type. */
14426 if (TREE_CODE (t) == METHOD_TYPE
14427 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
14429 error ("TYPE_METHOD_BASETYPE is not main variant");
14430 error_found = true;
14433 if (error_found)
14435 debug_tree (const_cast <tree> (t));
14436 internal_error ("verify_type failed");
14441 /* Return 1 if ARG interpreted as signed in its precision is known to be
14442 always positive or 2 if ARG is known to be always negative, or 3 if
14443 ARG may be positive or negative. */
14446 get_range_pos_neg (tree arg)
14448 if (arg == error_mark_node)
14449 return 3;
14451 int prec = TYPE_PRECISION (TREE_TYPE (arg));
14452 int cnt = 0;
14453 if (TREE_CODE (arg) == INTEGER_CST)
14455 wide_int w = wi::sext (wi::to_wide (arg), prec);
14456 if (wi::neg_p (w))
14457 return 2;
14458 else
14459 return 1;
14461 while (CONVERT_EXPR_P (arg)
14462 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14463 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14465 arg = TREE_OPERAND (arg, 0);
14466 /* Narrower value zero extended into wider type
14467 will always result in positive values. */
14468 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14469 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14470 return 1;
14471 prec = TYPE_PRECISION (TREE_TYPE (arg));
14472 if (++cnt > 30)
14473 return 3;
14476 if (TREE_CODE (arg) != SSA_NAME)
14477 return 3;
14478 wide_int arg_min, arg_max;
14479 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14481 gimple *g = SSA_NAME_DEF_STMT (arg);
14482 if (is_gimple_assign (g)
14483 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14485 tree t = gimple_assign_rhs1 (g);
14486 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14487 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14489 if (TYPE_UNSIGNED (TREE_TYPE (t))
14490 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14491 return 1;
14492 prec = TYPE_PRECISION (TREE_TYPE (t));
14493 arg = t;
14494 if (++cnt > 30)
14495 return 3;
14496 continue;
14499 return 3;
14501 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14503 /* For unsigned values, the "positive" range comes
14504 below the "negative" range. */
14505 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14506 return 1;
14507 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14508 return 2;
14510 else
14512 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14513 return 1;
14514 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14515 return 2;
14517 return 3;
14523 /* Return true if ARG is marked with the nonnull attribute in the
14524 current function signature. */
14526 bool
14527 nonnull_arg_p (const_tree arg)
14529 tree t, attrs, fntype;
14530 unsigned HOST_WIDE_INT arg_num;
14532 gcc_assert (TREE_CODE (arg) == PARM_DECL
14533 && (POINTER_TYPE_P (TREE_TYPE (arg))
14534 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
14536 /* The static chain decl is always non null. */
14537 if (arg == cfun->static_chain_decl)
14538 return true;
14540 /* THIS argument of method is always non-NULL. */
14541 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
14542 && arg == DECL_ARGUMENTS (cfun->decl)
14543 && flag_delete_null_pointer_checks)
14544 return true;
14546 /* Values passed by reference are always non-NULL. */
14547 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
14548 && flag_delete_null_pointer_checks)
14549 return true;
14551 fntype = TREE_TYPE (cfun->decl);
14552 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
14554 attrs = lookup_attribute ("nonnull", attrs);
14556 /* If "nonnull" wasn't specified, we know nothing about the argument. */
14557 if (attrs == NULL_TREE)
14558 return false;
14560 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
14561 if (TREE_VALUE (attrs) == NULL_TREE)
14562 return true;
14564 /* Get the position number for ARG in the function signature. */
14565 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
14567 t = DECL_CHAIN (t), arg_num++)
14569 if (t == arg)
14570 break;
14573 gcc_assert (t == arg);
14575 /* Now see if ARG_NUM is mentioned in the nonnull list. */
14576 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
14578 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
14579 return true;
14583 return false;
14586 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14587 information. */
14589 location_t
14590 set_block (location_t loc, tree block)
14592 location_t pure_loc = get_pure_location (loc);
14593 source_range src_range = get_range_from_loc (line_table, loc);
14594 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14597 location_t
14598 set_source_range (tree expr, location_t start, location_t finish)
14600 source_range src_range;
14601 src_range.m_start = start;
14602 src_range.m_finish = finish;
14603 return set_source_range (expr, src_range);
14606 location_t
14607 set_source_range (tree expr, source_range src_range)
14609 if (!EXPR_P (expr))
14610 return UNKNOWN_LOCATION;
14612 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14613 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14614 pure_loc,
14615 src_range,
14616 NULL);
14617 SET_EXPR_LOCATION (expr, adhoc);
14618 return adhoc;
14621 /* Return EXPR, potentially wrapped with a node expression LOC,
14622 if !CAN_HAVE_LOCATION_P (expr).
14624 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
14625 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
14627 Wrapper nodes can be identified using location_wrapper_p. */
14629 tree
14630 maybe_wrap_with_location (tree expr, location_t loc)
14632 if (expr == NULL)
14633 return NULL;
14634 if (loc == UNKNOWN_LOCATION)
14635 return expr;
14636 if (CAN_HAVE_LOCATION_P (expr))
14637 return expr;
14638 /* We should only be adding wrappers for constants and for decls,
14639 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
14640 gcc_assert (CONSTANT_CLASS_P (expr)
14641 || DECL_P (expr)
14642 || EXCEPTIONAL_CLASS_P (expr));
14644 /* For now, don't add wrappers to exceptional tree nodes, to minimize
14645 any impact of the wrapper nodes. */
14646 if (EXCEPTIONAL_CLASS_P (expr))
14647 return expr;
14649 tree_code code
14650 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
14651 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
14652 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
14653 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
14654 /* Mark this node as being a wrapper. */
14655 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
14656 return wrapper;
14659 /* Return the name of combined function FN, for debugging purposes. */
14661 const char *
14662 combined_fn_name (combined_fn fn)
14664 if (builtin_fn_p (fn))
14666 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
14667 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
14669 else
14670 return internal_fn_name (as_internal_fn (fn));
14673 /* Return a bitmap with a bit set corresponding to each argument in
14674 a function call type FNTYPE declared with attribute nonnull,
14675 or null if none of the function's argument are nonnull. The caller
14676 must free the bitmap. */
14678 bitmap
14679 get_nonnull_args (const_tree fntype)
14681 if (fntype == NULL_TREE)
14682 return NULL;
14684 tree attrs = TYPE_ATTRIBUTES (fntype);
14685 if (!attrs)
14686 return NULL;
14688 bitmap argmap = NULL;
14690 /* A function declaration can specify multiple attribute nonnull,
14691 each with zero or more arguments. The loop below creates a bitmap
14692 representing a union of all the arguments. An empty (but non-null)
14693 bitmap means that all arguments have been declaraed nonnull. */
14694 for ( ; attrs; attrs = TREE_CHAIN (attrs))
14696 attrs = lookup_attribute ("nonnull", attrs);
14697 if (!attrs)
14698 break;
14700 if (!argmap)
14701 argmap = BITMAP_ALLOC (NULL);
14703 if (!TREE_VALUE (attrs))
14705 /* Clear the bitmap in case a previous attribute nonnull
14706 set it and this one overrides it for all arguments. */
14707 bitmap_clear (argmap);
14708 return argmap;
14711 /* Iterate over the indices of the format arguments declared nonnull
14712 and set a bit for each. */
14713 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
14715 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
14716 bitmap_set_bit (argmap, val);
14720 return argmap;
14723 /* Returns true if TYPE is a type where it and all of its subobjects
14724 (recursively) are of structure, union, or array type. */
14726 static bool
14727 default_is_empty_type (tree type)
14729 if (RECORD_OR_UNION_TYPE_P (type))
14731 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
14732 if (TREE_CODE (field) == FIELD_DECL
14733 && !DECL_PADDING_P (field)
14734 && !default_is_empty_type (TREE_TYPE (field)))
14735 return false;
14736 return true;
14738 else if (TREE_CODE (type) == ARRAY_TYPE)
14739 return (integer_minus_onep (array_type_nelts (type))
14740 || TYPE_DOMAIN (type) == NULL_TREE
14741 || default_is_empty_type (TREE_TYPE (type)));
14742 return false;
14745 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
14746 that shouldn't be passed via stack. */
14748 bool
14749 default_is_empty_record (const_tree type)
14751 if (!abi_version_at_least (12))
14752 return false;
14754 if (type == error_mark_node)
14755 return false;
14757 if (TREE_ADDRESSABLE (type))
14758 return false;
14760 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
14763 /* Like int_size_in_bytes, but handle empty records specially. */
14765 HOST_WIDE_INT
14766 arg_int_size_in_bytes (const_tree type)
14768 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
14771 /* Like size_in_bytes, but handle empty records specially. */
14773 tree
14774 arg_size_in_bytes (const_tree type)
14776 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
14779 /* Return true if an expression with CODE has to have the same result type as
14780 its first operand. */
14782 bool
14783 expr_type_first_operand_type_p (tree_code code)
14785 switch (code)
14787 case NEGATE_EXPR:
14788 case ABS_EXPR:
14789 case BIT_NOT_EXPR:
14790 case PAREN_EXPR:
14791 case CONJ_EXPR:
14793 case PLUS_EXPR:
14794 case MINUS_EXPR:
14795 case MULT_EXPR:
14796 case TRUNC_DIV_EXPR:
14797 case CEIL_DIV_EXPR:
14798 case FLOOR_DIV_EXPR:
14799 case ROUND_DIV_EXPR:
14800 case TRUNC_MOD_EXPR:
14801 case CEIL_MOD_EXPR:
14802 case FLOOR_MOD_EXPR:
14803 case ROUND_MOD_EXPR:
14804 case RDIV_EXPR:
14805 case EXACT_DIV_EXPR:
14806 case MIN_EXPR:
14807 case MAX_EXPR:
14808 case BIT_IOR_EXPR:
14809 case BIT_XOR_EXPR:
14810 case BIT_AND_EXPR:
14812 case LSHIFT_EXPR:
14813 case RSHIFT_EXPR:
14814 case LROTATE_EXPR:
14815 case RROTATE_EXPR:
14816 return true;
14818 default:
14819 return false;
14823 /* Return a typenode for the "standard" C type with a given name. */
14824 tree
14825 get_typenode_from_name (const char *name)
14827 if (name == NULL || *name == '\0')
14828 return NULL_TREE;
14830 if (strcmp (name, "char") == 0)
14831 return char_type_node;
14832 if (strcmp (name, "unsigned char") == 0)
14833 return unsigned_char_type_node;
14834 if (strcmp (name, "signed char") == 0)
14835 return signed_char_type_node;
14837 if (strcmp (name, "short int") == 0)
14838 return short_integer_type_node;
14839 if (strcmp (name, "short unsigned int") == 0)
14840 return short_unsigned_type_node;
14842 if (strcmp (name, "int") == 0)
14843 return integer_type_node;
14844 if (strcmp (name, "unsigned int") == 0)
14845 return unsigned_type_node;
14847 if (strcmp (name, "long int") == 0)
14848 return long_integer_type_node;
14849 if (strcmp (name, "long unsigned int") == 0)
14850 return long_unsigned_type_node;
14852 if (strcmp (name, "long long int") == 0)
14853 return long_long_integer_type_node;
14854 if (strcmp (name, "long long unsigned int") == 0)
14855 return long_long_unsigned_type_node;
14857 gcc_unreachable ();
14860 /* List of pointer types used to declare builtins before we have seen their
14861 real declaration.
14863 Keep the size up to date in tree.h ! */
14864 const builtin_structptr_type builtin_structptr_types[6] =
14866 { fileptr_type_node, ptr_type_node, "FILE" },
14867 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
14868 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
14869 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
14870 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
14871 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
14874 #if CHECKING_P
14876 namespace selftest {
14878 /* Selftests for tree. */
14880 /* Verify that integer constants are sane. */
14882 static void
14883 test_integer_constants ()
14885 ASSERT_TRUE (integer_type_node != NULL);
14886 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
14888 tree type = integer_type_node;
14890 tree zero = build_zero_cst (type);
14891 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
14892 ASSERT_EQ (type, TREE_TYPE (zero));
14894 tree one = build_int_cst (type, 1);
14895 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
14896 ASSERT_EQ (type, TREE_TYPE (zero));
14899 /* Verify identifiers. */
14901 static void
14902 test_identifiers ()
14904 tree identifier = get_identifier ("foo");
14905 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
14906 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
14909 /* Verify LABEL_DECL. */
14911 static void
14912 test_labels ()
14914 tree identifier = get_identifier ("err");
14915 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
14916 identifier, void_type_node);
14917 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
14918 ASSERT_FALSE (FORCED_LABEL (label_decl));
14921 /* Return a new VECTOR_CST node whose type is TYPE and whose values
14922 are given by VALS. */
14924 static tree
14925 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
14927 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
14928 tree_vector_builder builder (type, vals.length (), 1);
14929 builder.splice (vals);
14930 return builder.build ();
14933 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
14935 static void
14936 check_vector_cst (vec<tree> expected, tree actual)
14938 ASSERT_KNOWN_EQ (expected.length (),
14939 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
14940 for (unsigned int i = 0; i < expected.length (); ++i)
14941 ASSERT_EQ (wi::to_wide (expected[i]),
14942 wi::to_wide (vector_cst_elt (actual, i)));
14945 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
14946 and that its elements match EXPECTED. */
14948 static void
14949 check_vector_cst_duplicate (vec<tree> expected, tree actual,
14950 unsigned int npatterns)
14952 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14953 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
14954 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
14955 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
14956 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14957 check_vector_cst (expected, actual);
14960 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
14961 and NPATTERNS background elements, and that its elements match
14962 EXPECTED. */
14964 static void
14965 check_vector_cst_fill (vec<tree> expected, tree actual,
14966 unsigned int npatterns)
14968 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14969 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
14970 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
14971 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14972 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14973 check_vector_cst (expected, actual);
14976 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
14977 and that its elements match EXPECTED. */
14979 static void
14980 check_vector_cst_stepped (vec<tree> expected, tree actual,
14981 unsigned int npatterns)
14983 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14984 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
14985 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
14986 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14987 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
14988 check_vector_cst (expected, actual);
14991 /* Test the creation of VECTOR_CSTs. */
14993 static void
14994 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
14996 auto_vec<tree, 8> elements (8);
14997 elements.quick_grow (8);
14998 tree element_type = build_nonstandard_integer_type (16, true);
14999 tree vector_type = build_vector_type (element_type, 8);
15001 /* Test a simple linear series with a base of 0 and a step of 1:
15002 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
15003 for (unsigned int i = 0; i < 8; ++i)
15004 elements[i] = build_int_cst (element_type, i);
15005 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
15006 check_vector_cst_stepped (elements, vector, 1);
15008 /* Try the same with the first element replaced by 100:
15009 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
15010 elements[0] = build_int_cst (element_type, 100);
15011 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15012 check_vector_cst_stepped (elements, vector, 1);
15014 /* Try a series that wraps around.
15015 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
15016 for (unsigned int i = 1; i < 8; ++i)
15017 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
15018 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15019 check_vector_cst_stepped (elements, vector, 1);
15021 /* Try a downward series:
15022 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
15023 for (unsigned int i = 1; i < 8; ++i)
15024 elements[i] = build_int_cst (element_type, 80 - i);
15025 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15026 check_vector_cst_stepped (elements, vector, 1);
15028 /* Try two interleaved series with different bases and steps:
15029 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
15030 elements[1] = build_int_cst (element_type, 53);
15031 for (unsigned int i = 2; i < 8; i += 2)
15033 elements[i] = build_int_cst (element_type, 70 - i * 2);
15034 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
15036 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15037 check_vector_cst_stepped (elements, vector, 2);
15039 /* Try a duplicated value:
15040 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
15041 for (unsigned int i = 1; i < 8; ++i)
15042 elements[i] = elements[0];
15043 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15044 check_vector_cst_duplicate (elements, vector, 1);
15046 /* Try an interleaved duplicated value:
15047 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
15048 elements[1] = build_int_cst (element_type, 55);
15049 for (unsigned int i = 2; i < 8; ++i)
15050 elements[i] = elements[i - 2];
15051 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15052 check_vector_cst_duplicate (elements, vector, 2);
15054 /* Try a duplicated value with 2 exceptions
15055 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
15056 elements[0] = build_int_cst (element_type, 41);
15057 elements[1] = build_int_cst (element_type, 97);
15058 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15059 check_vector_cst_fill (elements, vector, 2);
15061 /* Try with and without a step
15062 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
15063 for (unsigned int i = 3; i < 8; i += 2)
15064 elements[i] = build_int_cst (element_type, i * 7);
15065 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15066 check_vector_cst_stepped (elements, vector, 2);
15068 /* Try a fully-general constant:
15069 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
15070 elements[5] = build_int_cst (element_type, 9990);
15071 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15072 check_vector_cst_fill (elements, vector, 4);
15075 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
15076 Helper function for test_location_wrappers, to deal with STRIP_NOPS
15077 modifying its argument in-place. */
15079 static void
15080 check_strip_nops (tree node, tree expected)
15082 STRIP_NOPS (node);
15083 ASSERT_EQ (expected, node);
15086 /* Verify location wrappers. */
15088 static void
15089 test_location_wrappers ()
15091 location_t loc = BUILTINS_LOCATION;
15093 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
15095 /* Wrapping a constant. */
15096 tree int_cst = build_int_cst (integer_type_node, 42);
15097 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
15098 ASSERT_FALSE (location_wrapper_p (int_cst));
15100 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
15101 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
15102 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
15103 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
15105 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
15106 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
15108 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
15109 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
15110 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
15111 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
15113 /* Wrapping a STRING_CST. */
15114 tree string_cst = build_string (4, "foo");
15115 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
15116 ASSERT_FALSE (location_wrapper_p (string_cst));
15118 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
15119 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
15120 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
15121 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
15122 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
15125 /* Wrapping a variable. */
15126 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
15127 get_identifier ("some_int_var"),
15128 integer_type_node);
15129 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
15130 ASSERT_FALSE (location_wrapper_p (int_var));
15132 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
15133 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
15134 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
15135 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
15137 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
15138 wrapper. */
15139 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
15140 ASSERT_FALSE (location_wrapper_p (r_cast));
15141 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
15143 /* Verify that STRIP_NOPS removes wrappers. */
15144 check_strip_nops (wrapped_int_cst, int_cst);
15145 check_strip_nops (wrapped_string_cst, string_cst);
15146 check_strip_nops (wrapped_int_var, int_var);
15149 /* Check that string escaping works correctly. */
15151 static void
15152 test_escaped_strings (void)
15154 int saved_cutoff;
15155 escaped_string msg;
15157 msg.escape (NULL);
15158 /* ASSERT_STREQ does not accept NULL as a valid test
15159 result, so we have to use ASSERT_EQ instead. */
15160 ASSERT_EQ (NULL, (const char *) msg);
15162 msg.escape ("");
15163 ASSERT_STREQ ("", (const char *) msg);
15165 msg.escape ("foobar");
15166 ASSERT_STREQ ("foobar", (const char *) msg);
15168 /* Ensure that we have -fmessage-length set to 0. */
15169 saved_cutoff = pp_line_cutoff (global_dc->printer);
15170 pp_line_cutoff (global_dc->printer) = 0;
15172 msg.escape ("foo\nbar");
15173 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
15175 msg.escape ("\a\b\f\n\r\t\v");
15176 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
15178 /* Now repeat the tests with -fmessage-length set to 5. */
15179 pp_line_cutoff (global_dc->printer) = 5;
15181 /* Note that the newline is not translated into an escape. */
15182 msg.escape ("foo\nbar");
15183 ASSERT_STREQ ("foo\nbar", (const char *) msg);
15185 msg.escape ("\a\b\f\n\r\t\v");
15186 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
15188 /* Restore the original message length setting. */
15189 pp_line_cutoff (global_dc->printer) = saved_cutoff;
15192 /* Run all of the selftests within this file. */
15194 void
15195 tree_c_tests ()
15197 test_integer_constants ();
15198 test_identifiers ();
15199 test_labels ();
15200 test_vector_cst_patterns ();
15201 test_location_wrappers ();
15202 test_escaped_strings ();
15205 } // namespace selftest
15207 #endif /* CHECKING_P */
15209 #include "gt-tree.h"