testsuite: Correct requirements for vadsdu*, vslv and vsrv testcases.
[official-gcc.git] / gcc / tree.c
blob81f867ddded8a3cd1fc1de2e7b531b0ce865ac3c
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2020 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
25 nodes of that code.
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "target.h"
35 #include "tree.h"
36 #include "gimple.h"
37 #include "tree-pass.h"
38 #include "ssa.h"
39 #include "cgraph.h"
40 #include "diagnostic.h"
41 #include "flags.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "attribs.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "output.h"
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
55 #include "gimplify.h"
56 #include "tree-dfa.h"
57 #include "langhooks-def.h"
58 #include "tree-diagnostic.h"
59 #include "except.h"
60 #include "builtins.h"
61 #include "print-tree.h"
62 #include "ipa-utils.h"
63 #include "selftest.h"
64 #include "stringpool.h"
65 #include "attribs.h"
66 #include "rtl.h"
67 #include "regs.h"
68 #include "tree-vector-builder.h"
69 #include "gimple-fold.h"
70 #include "escaped_string.h"
72 /* Tree code classes. */
74 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
75 #define END_OF_BASE_TREE_CODES tcc_exceptional,
77 const enum tree_code_class tree_code_type[] = {
78 #include "all-tree.def"
81 #undef DEFTREECODE
82 #undef END_OF_BASE_TREE_CODES
84 /* Table indexed by tree code giving number of expression
85 operands beyond the fixed part of the node structure.
86 Not used for types or decls. */
88 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
89 #define END_OF_BASE_TREE_CODES 0,
91 const unsigned char tree_code_length[] = {
92 #include "all-tree.def"
95 #undef DEFTREECODE
96 #undef END_OF_BASE_TREE_CODES
98 /* Names of tree components.
99 Used for printing out the tree and error messages. */
100 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
101 #define END_OF_BASE_TREE_CODES "@dummy",
103 static const char *const tree_code_name[] = {
104 #include "all-tree.def"
107 #undef DEFTREECODE
108 #undef END_OF_BASE_TREE_CODES
110 /* Each tree code class has an associated string representation.
111 These must correspond to the tree_code_class entries. */
113 const char *const tree_code_class_strings[] =
115 "exceptional",
116 "constant",
117 "type",
118 "declaration",
119 "reference",
120 "comparison",
121 "unary",
122 "binary",
123 "statement",
124 "vl_exp",
125 "expression"
128 /* obstack.[ch] explicitly declined to prototype this. */
129 extern int _obstack_allocated_p (struct obstack *h, void *obj);
131 /* Statistics-gathering stuff. */
133 static uint64_t tree_code_counts[MAX_TREE_CODES];
134 uint64_t tree_node_counts[(int) all_kinds];
135 uint64_t tree_node_sizes[(int) all_kinds];
137 /* Keep in sync with tree.h:enum tree_node_kind. */
138 static const char * const tree_node_kind_names[] = {
139 "decls",
140 "types",
141 "blocks",
142 "stmts",
143 "refs",
144 "exprs",
145 "constants",
146 "identifiers",
147 "vecs",
148 "binfos",
149 "ssa names",
150 "constructors",
151 "random kinds",
152 "lang_decl kinds",
153 "lang_type kinds",
154 "omp clauses",
157 /* Unique id for next decl created. */
158 static GTY(()) int next_decl_uid;
159 /* Unique id for next type created. */
160 static GTY(()) unsigned next_type_uid = 1;
161 /* Unique id for next debug decl created. Use negative numbers,
162 to catch erroneous uses. */
163 static GTY(()) int next_debug_decl_uid;
165 /* Since we cannot rehash a type after it is in the table, we have to
166 keep the hash code. */
168 struct GTY((for_user)) type_hash {
169 unsigned long hash;
170 tree type;
173 /* Initial size of the hash table (rounded to next prime). */
174 #define TYPE_HASH_INITIAL_SIZE 1000
176 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
178 static hashval_t hash (type_hash *t) { return t->hash; }
179 static bool equal (type_hash *a, type_hash *b);
181 static int
182 keep_cache_entry (type_hash *&t)
184 return ggc_marked_p (t->type);
188 /* Now here is the hash table. When recording a type, it is added to
189 the slot whose index is the hash code. Note that the hash table is
190 used for several kinds of types (function types, array types and
191 array index range types, for now). While all these live in the
192 same table, they are completely independent, and the hash code is
193 computed differently for each of these. */
195 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
197 /* Hash table and temporary node for larger integer const values. */
198 static GTY (()) tree int_cst_node;
200 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
202 static hashval_t hash (tree t);
203 static bool equal (tree x, tree y);
206 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
208 /* Class and variable for making sure that there is a single POLY_INT_CST
209 for a given value. */
210 struct poly_int_cst_hasher : ggc_cache_ptr_hash<tree_node>
212 typedef std::pair<tree, const poly_wide_int *> compare_type;
213 static hashval_t hash (tree t);
214 static bool equal (tree x, const compare_type &y);
217 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
219 /* Hash table for optimization flags and target option flags. Use the same
220 hash table for both sets of options. Nodes for building the current
221 optimization and target option nodes. The assumption is most of the time
222 the options created will already be in the hash table, so we avoid
223 allocating and freeing up a node repeatably. */
224 static GTY (()) tree cl_optimization_node;
225 static GTY (()) tree cl_target_option_node;
227 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
229 static hashval_t hash (tree t);
230 static bool equal (tree x, tree y);
233 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
235 /* General tree->tree mapping structure for use in hash tables. */
238 static GTY ((cache))
239 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
241 static GTY ((cache))
242 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
244 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
246 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
248 static bool
249 equal (tree_vec_map *a, tree_vec_map *b)
251 return a->base.from == b->base.from;
254 static int
255 keep_cache_entry (tree_vec_map *&m)
257 return ggc_marked_p (m->base.from);
261 static GTY ((cache))
262 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
264 static void set_type_quals (tree, int);
265 static void print_type_hash_statistics (void);
266 static void print_debug_expr_statistics (void);
267 static void print_value_expr_statistics (void);
269 static tree build_array_type_1 (tree, tree, bool, bool, bool);
271 tree global_trees[TI_MAX];
272 tree integer_types[itk_none];
274 bool int_n_enabled_p[NUM_INT_N_ENTS];
275 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
277 bool tree_contains_struct[MAX_TREE_CODES][64];
279 /* Number of operands for each OpenMP clause. */
280 unsigned const char omp_clause_num_ops[] =
282 0, /* OMP_CLAUSE_ERROR */
283 1, /* OMP_CLAUSE_PRIVATE */
284 1, /* OMP_CLAUSE_SHARED */
285 1, /* OMP_CLAUSE_FIRSTPRIVATE */
286 2, /* OMP_CLAUSE_LASTPRIVATE */
287 5, /* OMP_CLAUSE_REDUCTION */
288 5, /* OMP_CLAUSE_TASK_REDUCTION */
289 5, /* OMP_CLAUSE_IN_REDUCTION */
290 1, /* OMP_CLAUSE_COPYIN */
291 1, /* OMP_CLAUSE_COPYPRIVATE */
292 3, /* OMP_CLAUSE_LINEAR */
293 2, /* OMP_CLAUSE_ALIGNED */
294 2, /* OMP_CLAUSE_ALLOCATE */
295 1, /* OMP_CLAUSE_DEPEND */
296 1, /* OMP_CLAUSE_NONTEMPORAL */
297 1, /* OMP_CLAUSE_UNIFORM */
298 1, /* OMP_CLAUSE_TO_DECLARE */
299 1, /* OMP_CLAUSE_LINK */
300 2, /* OMP_CLAUSE_FROM */
301 2, /* OMP_CLAUSE_TO */
302 2, /* OMP_CLAUSE_MAP */
303 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
304 1, /* OMP_CLAUSE_USE_DEVICE_ADDR */
305 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
306 1, /* OMP_CLAUSE_INCLUSIVE */
307 1, /* OMP_CLAUSE_EXCLUSIVE */
308 2, /* OMP_CLAUSE__CACHE_ */
309 2, /* OMP_CLAUSE_GANG */
310 1, /* OMP_CLAUSE_ASYNC */
311 1, /* OMP_CLAUSE_WAIT */
312 0, /* OMP_CLAUSE_AUTO */
313 0, /* OMP_CLAUSE_SEQ */
314 1, /* OMP_CLAUSE__LOOPTEMP_ */
315 1, /* OMP_CLAUSE__REDUCTEMP_ */
316 1, /* OMP_CLAUSE__CONDTEMP_ */
317 1, /* OMP_CLAUSE__SCANTEMP_ */
318 1, /* OMP_CLAUSE_IF */
319 1, /* OMP_CLAUSE_NUM_THREADS */
320 1, /* OMP_CLAUSE_SCHEDULE */
321 0, /* OMP_CLAUSE_NOWAIT */
322 1, /* OMP_CLAUSE_ORDERED */
323 0, /* OMP_CLAUSE_DEFAULT */
324 3, /* OMP_CLAUSE_COLLAPSE */
325 0, /* OMP_CLAUSE_UNTIED */
326 1, /* OMP_CLAUSE_FINAL */
327 0, /* OMP_CLAUSE_MERGEABLE */
328 1, /* OMP_CLAUSE_DEVICE */
329 1, /* OMP_CLAUSE_DIST_SCHEDULE */
330 0, /* OMP_CLAUSE_INBRANCH */
331 0, /* OMP_CLAUSE_NOTINBRANCH */
332 1, /* OMP_CLAUSE_NUM_TEAMS */
333 1, /* OMP_CLAUSE_THREAD_LIMIT */
334 0, /* OMP_CLAUSE_PROC_BIND */
335 1, /* OMP_CLAUSE_SAFELEN */
336 1, /* OMP_CLAUSE_SIMDLEN */
337 0, /* OMP_CLAUSE_DEVICE_TYPE */
338 0, /* OMP_CLAUSE_FOR */
339 0, /* OMP_CLAUSE_PARALLEL */
340 0, /* OMP_CLAUSE_SECTIONS */
341 0, /* OMP_CLAUSE_TASKGROUP */
342 1, /* OMP_CLAUSE_PRIORITY */
343 1, /* OMP_CLAUSE_GRAINSIZE */
344 1, /* OMP_CLAUSE_NUM_TASKS */
345 0, /* OMP_CLAUSE_NOGROUP */
346 0, /* OMP_CLAUSE_THREADS */
347 0, /* OMP_CLAUSE_SIMD */
348 1, /* OMP_CLAUSE_HINT */
349 0, /* OMP_CLAUSE_DEFAULTMAP */
350 0, /* OMP_CLAUSE_ORDER */
351 0, /* OMP_CLAUSE_BIND */
352 1, /* OMP_CLAUSE__SIMDUID_ */
353 0, /* OMP_CLAUSE__SIMT_ */
354 0, /* OMP_CLAUSE_INDEPENDENT */
355 1, /* OMP_CLAUSE_WORKER */
356 1, /* OMP_CLAUSE_VECTOR */
357 1, /* OMP_CLAUSE_NUM_GANGS */
358 1, /* OMP_CLAUSE_NUM_WORKERS */
359 1, /* OMP_CLAUSE_VECTOR_LENGTH */
360 3, /* OMP_CLAUSE_TILE */
361 0, /* OMP_CLAUSE_IF_PRESENT */
362 0, /* OMP_CLAUSE_FINALIZE */
365 const char * const omp_clause_code_name[] =
367 "error_clause",
368 "private",
369 "shared",
370 "firstprivate",
371 "lastprivate",
372 "reduction",
373 "task_reduction",
374 "in_reduction",
375 "copyin",
376 "copyprivate",
377 "linear",
378 "aligned",
379 "allocate",
380 "depend",
381 "nontemporal",
382 "uniform",
383 "to",
384 "link",
385 "from",
386 "to",
387 "map",
388 "use_device_ptr",
389 "use_device_addr",
390 "is_device_ptr",
391 "inclusive",
392 "exclusive",
393 "_cache_",
394 "gang",
395 "async",
396 "wait",
397 "auto",
398 "seq",
399 "_looptemp_",
400 "_reductemp_",
401 "_condtemp_",
402 "_scantemp_",
403 "if",
404 "num_threads",
405 "schedule",
406 "nowait",
407 "ordered",
408 "default",
409 "collapse",
410 "untied",
411 "final",
412 "mergeable",
413 "device",
414 "dist_schedule",
415 "inbranch",
416 "notinbranch",
417 "num_teams",
418 "thread_limit",
419 "proc_bind",
420 "safelen",
421 "simdlen",
422 "device_type",
423 "for",
424 "parallel",
425 "sections",
426 "taskgroup",
427 "priority",
428 "grainsize",
429 "num_tasks",
430 "nogroup",
431 "threads",
432 "simd",
433 "hint",
434 "defaultmap",
435 "order",
436 "bind",
437 "_simduid_",
438 "_simt_",
439 "independent",
440 "worker",
441 "vector",
442 "num_gangs",
443 "num_workers",
444 "vector_length",
445 "tile",
446 "if_present",
447 "finalize",
451 /* Return the tree node structure used by tree code CODE. */
453 static inline enum tree_node_structure_enum
454 tree_node_structure_for_code (enum tree_code code)
456 switch (TREE_CODE_CLASS (code))
458 case tcc_declaration:
459 switch (code)
461 case CONST_DECL: return TS_CONST_DECL;
462 case DEBUG_EXPR_DECL: return TS_DECL_WRTL;
463 case FIELD_DECL: return TS_FIELD_DECL;
464 case FUNCTION_DECL: return TS_FUNCTION_DECL;
465 case LABEL_DECL: return TS_LABEL_DECL;
466 case PARM_DECL: return TS_PARM_DECL;
467 case RESULT_DECL: return TS_RESULT_DECL;
468 case TRANSLATION_UNIT_DECL: return TS_TRANSLATION_UNIT_DECL;
469 case TYPE_DECL: return TS_TYPE_DECL;
470 case VAR_DECL: return TS_VAR_DECL;
471 default: return TS_DECL_NON_COMMON;
474 case tcc_type: return TS_TYPE_NON_COMMON;
476 case tcc_binary:
477 case tcc_comparison:
478 case tcc_expression:
479 case tcc_reference:
480 case tcc_statement:
481 case tcc_unary:
482 case tcc_vl_exp: return TS_EXP;
484 default: /* tcc_constant and tcc_exceptional */
485 break;
488 switch (code)
490 /* tcc_constant cases. */
491 case COMPLEX_CST: return TS_COMPLEX;
492 case FIXED_CST: return TS_FIXED_CST;
493 case INTEGER_CST: return TS_INT_CST;
494 case POLY_INT_CST: return TS_POLY_INT_CST;
495 case REAL_CST: return TS_REAL_CST;
496 case STRING_CST: return TS_STRING;
497 case VECTOR_CST: return TS_VECTOR;
498 case VOID_CST: return TS_TYPED;
500 /* tcc_exceptional cases. */
501 case BLOCK: return TS_BLOCK;
502 case CONSTRUCTOR: return TS_CONSTRUCTOR;
503 case ERROR_MARK: return TS_COMMON;
504 case IDENTIFIER_NODE: return TS_IDENTIFIER;
505 case OMP_CLAUSE: return TS_OMP_CLAUSE;
506 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
507 case PLACEHOLDER_EXPR: return TS_COMMON;
508 case SSA_NAME: return TS_SSA_NAME;
509 case STATEMENT_LIST: return TS_STATEMENT_LIST;
510 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
511 case TREE_BINFO: return TS_BINFO;
512 case TREE_LIST: return TS_LIST;
513 case TREE_VEC: return TS_VEC;
515 default:
516 gcc_unreachable ();
521 /* Initialize tree_contains_struct to describe the hierarchy of tree
522 nodes. */
524 static void
525 initialize_tree_contains_struct (void)
527 unsigned i;
529 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
531 enum tree_code code;
532 enum tree_node_structure_enum ts_code;
534 code = (enum tree_code) i;
535 ts_code = tree_node_structure_for_code (code);
537 /* Mark the TS structure itself. */
538 tree_contains_struct[code][ts_code] = 1;
540 /* Mark all the structures that TS is derived from. */
541 switch (ts_code)
543 case TS_TYPED:
544 case TS_BLOCK:
545 case TS_OPTIMIZATION:
546 case TS_TARGET_OPTION:
547 MARK_TS_BASE (code);
548 break;
550 case TS_COMMON:
551 case TS_INT_CST:
552 case TS_POLY_INT_CST:
553 case TS_REAL_CST:
554 case TS_FIXED_CST:
555 case TS_VECTOR:
556 case TS_STRING:
557 case TS_COMPLEX:
558 case TS_SSA_NAME:
559 case TS_CONSTRUCTOR:
560 case TS_EXP:
561 case TS_STATEMENT_LIST:
562 MARK_TS_TYPED (code);
563 break;
565 case TS_IDENTIFIER:
566 case TS_DECL_MINIMAL:
567 case TS_TYPE_COMMON:
568 case TS_LIST:
569 case TS_VEC:
570 case TS_BINFO:
571 case TS_OMP_CLAUSE:
572 MARK_TS_COMMON (code);
573 break;
575 case TS_TYPE_WITH_LANG_SPECIFIC:
576 MARK_TS_TYPE_COMMON (code);
577 break;
579 case TS_TYPE_NON_COMMON:
580 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
581 break;
583 case TS_DECL_COMMON:
584 MARK_TS_DECL_MINIMAL (code);
585 break;
587 case TS_DECL_WRTL:
588 case TS_CONST_DECL:
589 MARK_TS_DECL_COMMON (code);
590 break;
592 case TS_DECL_NON_COMMON:
593 MARK_TS_DECL_WITH_VIS (code);
594 break;
596 case TS_DECL_WITH_VIS:
597 case TS_PARM_DECL:
598 case TS_LABEL_DECL:
599 case TS_RESULT_DECL:
600 MARK_TS_DECL_WRTL (code);
601 break;
603 case TS_FIELD_DECL:
604 MARK_TS_DECL_COMMON (code);
605 break;
607 case TS_VAR_DECL:
608 MARK_TS_DECL_WITH_VIS (code);
609 break;
611 case TS_TYPE_DECL:
612 case TS_FUNCTION_DECL:
613 MARK_TS_DECL_NON_COMMON (code);
614 break;
616 case TS_TRANSLATION_UNIT_DECL:
617 MARK_TS_DECL_COMMON (code);
618 break;
620 default:
621 gcc_unreachable ();
625 /* Basic consistency checks for attributes used in fold. */
626 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
627 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
628 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
629 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
630 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
631 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
632 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
633 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
634 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
635 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
636 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
637 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
638 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
639 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
640 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
641 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
642 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
643 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
644 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
645 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
646 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
647 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
648 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
649 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
650 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
651 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
652 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
653 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
654 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
655 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
656 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
657 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
658 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
659 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
660 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
661 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
662 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
663 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
664 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
665 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
669 /* Init tree.c. */
671 void
672 init_ttree (void)
674 /* Initialize the hash table of types. */
675 type_hash_table
676 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
678 debug_expr_for_decl
679 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
681 value_expr_for_decl
682 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
684 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
686 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
688 int_cst_node = make_int_cst (1, 1);
690 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
692 cl_optimization_node = make_node (OPTIMIZATION_NODE);
693 cl_target_option_node = make_node (TARGET_OPTION_NODE);
695 /* Initialize the tree_contains_struct array. */
696 initialize_tree_contains_struct ();
697 lang_hooks.init_ts ();
701 /* The name of the object as the assembler will see it (but before any
702 translations made by ASM_OUTPUT_LABELREF). Often this is the same
703 as DECL_NAME. It is an IDENTIFIER_NODE. */
704 tree
705 decl_assembler_name (tree decl)
707 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
708 lang_hooks.set_decl_assembler_name (decl);
709 return DECL_ASSEMBLER_NAME_RAW (decl);
712 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
713 (either of which may be NULL). Inform the FE, if this changes the
714 name. */
716 void
717 overwrite_decl_assembler_name (tree decl, tree name)
719 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
720 lang_hooks.overwrite_decl_assembler_name (decl, name);
723 /* When the target supports COMDAT groups, this indicates which group the
724 DECL is associated with. This can be either an IDENTIFIER_NODE or a
725 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
726 tree
727 decl_comdat_group (const_tree node)
729 struct symtab_node *snode = symtab_node::get (node);
730 if (!snode)
731 return NULL;
732 return snode->get_comdat_group ();
735 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
736 tree
737 decl_comdat_group_id (const_tree node)
739 struct symtab_node *snode = symtab_node::get (node);
740 if (!snode)
741 return NULL;
742 return snode->get_comdat_group_id ();
745 /* When the target supports named section, return its name as IDENTIFIER_NODE
746 or NULL if it is in no section. */
747 const char *
748 decl_section_name (const_tree node)
750 struct symtab_node *snode = symtab_node::get (node);
751 if (!snode)
752 return NULL;
753 return snode->get_section ();
756 /* Set section name of NODE to VALUE (that is expected to be
757 identifier node) */
758 void
759 set_decl_section_name (tree node, const char *value)
761 struct symtab_node *snode;
763 if (value == NULL)
765 snode = symtab_node::get (node);
766 if (!snode)
767 return;
769 else if (VAR_P (node))
770 snode = varpool_node::get_create (node);
771 else
772 snode = cgraph_node::get_create (node);
773 snode->set_section (value);
776 /* Return TLS model of a variable NODE. */
777 enum tls_model
778 decl_tls_model (const_tree node)
780 struct varpool_node *snode = varpool_node::get (node);
781 if (!snode)
782 return TLS_MODEL_NONE;
783 return snode->tls_model;
786 /* Set TLS model of variable NODE to MODEL. */
787 void
788 set_decl_tls_model (tree node, enum tls_model model)
790 struct varpool_node *vnode;
792 if (model == TLS_MODEL_NONE)
794 vnode = varpool_node::get (node);
795 if (!vnode)
796 return;
798 else
799 vnode = varpool_node::get_create (node);
800 vnode->tls_model = model;
803 /* Compute the number of bytes occupied by a tree with code CODE.
804 This function cannot be used for nodes that have variable sizes,
805 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
806 size_t
807 tree_code_size (enum tree_code code)
809 switch (TREE_CODE_CLASS (code))
811 case tcc_declaration: /* A decl node */
812 switch (code)
814 case FIELD_DECL: return sizeof (tree_field_decl);
815 case PARM_DECL: return sizeof (tree_parm_decl);
816 case VAR_DECL: return sizeof (tree_var_decl);
817 case LABEL_DECL: return sizeof (tree_label_decl);
818 case RESULT_DECL: return sizeof (tree_result_decl);
819 case CONST_DECL: return sizeof (tree_const_decl);
820 case TYPE_DECL: return sizeof (tree_type_decl);
821 case FUNCTION_DECL: return sizeof (tree_function_decl);
822 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
823 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
824 case NAMESPACE_DECL:
825 case IMPORTED_DECL:
826 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
827 default:
828 gcc_checking_assert (code >= NUM_TREE_CODES);
829 return lang_hooks.tree_size (code);
832 case tcc_type: /* a type node */
833 switch (code)
835 case OFFSET_TYPE:
836 case ENUMERAL_TYPE:
837 case BOOLEAN_TYPE:
838 case INTEGER_TYPE:
839 case REAL_TYPE:
840 case POINTER_TYPE:
841 case REFERENCE_TYPE:
842 case NULLPTR_TYPE:
843 case FIXED_POINT_TYPE:
844 case COMPLEX_TYPE:
845 case VECTOR_TYPE:
846 case ARRAY_TYPE:
847 case RECORD_TYPE:
848 case UNION_TYPE:
849 case QUAL_UNION_TYPE:
850 case VOID_TYPE:
851 case FUNCTION_TYPE:
852 case METHOD_TYPE:
853 case LANG_TYPE: return sizeof (tree_type_non_common);
854 default:
855 gcc_checking_assert (code >= NUM_TREE_CODES);
856 return lang_hooks.tree_size (code);
859 case tcc_reference: /* a reference */
860 case tcc_expression: /* an expression */
861 case tcc_statement: /* an expression with side effects */
862 case tcc_comparison: /* a comparison expression */
863 case tcc_unary: /* a unary arithmetic expression */
864 case tcc_binary: /* a binary arithmetic expression */
865 return (sizeof (struct tree_exp)
866 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
868 case tcc_constant: /* a constant */
869 switch (code)
871 case VOID_CST: return sizeof (tree_typed);
872 case INTEGER_CST: gcc_unreachable ();
873 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
874 case REAL_CST: return sizeof (tree_real_cst);
875 case FIXED_CST: return sizeof (tree_fixed_cst);
876 case COMPLEX_CST: return sizeof (tree_complex);
877 case VECTOR_CST: gcc_unreachable ();
878 case STRING_CST: gcc_unreachable ();
879 default:
880 gcc_checking_assert (code >= NUM_TREE_CODES);
881 return lang_hooks.tree_size (code);
884 case tcc_exceptional: /* something random, like an identifier. */
885 switch (code)
887 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
888 case TREE_LIST: return sizeof (tree_list);
890 case ERROR_MARK:
891 case PLACEHOLDER_EXPR: return sizeof (tree_common);
893 case TREE_VEC: gcc_unreachable ();
894 case OMP_CLAUSE: gcc_unreachable ();
896 case SSA_NAME: return sizeof (tree_ssa_name);
898 case STATEMENT_LIST: return sizeof (tree_statement_list);
899 case BLOCK: return sizeof (struct tree_block);
900 case CONSTRUCTOR: return sizeof (tree_constructor);
901 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
902 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
904 default:
905 gcc_checking_assert (code >= NUM_TREE_CODES);
906 return lang_hooks.tree_size (code);
909 default:
910 gcc_unreachable ();
914 /* Compute the number of bytes occupied by NODE. This routine only
915 looks at TREE_CODE, except for those nodes that have variable sizes. */
916 size_t
917 tree_size (const_tree node)
919 const enum tree_code code = TREE_CODE (node);
920 switch (code)
922 case INTEGER_CST:
923 return (sizeof (struct tree_int_cst)
924 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
926 case TREE_BINFO:
927 return (offsetof (struct tree_binfo, base_binfos)
928 + vec<tree, va_gc>
929 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
931 case TREE_VEC:
932 return (sizeof (struct tree_vec)
933 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
935 case VECTOR_CST:
936 return (sizeof (struct tree_vector)
937 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
939 case STRING_CST:
940 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
942 case OMP_CLAUSE:
943 return (sizeof (struct tree_omp_clause)
944 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
945 * sizeof (tree));
947 default:
948 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
949 return (sizeof (struct tree_exp)
950 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
951 else
952 return tree_code_size (code);
956 /* Return tree node kind based on tree CODE. */
958 static tree_node_kind
959 get_stats_node_kind (enum tree_code code)
961 enum tree_code_class type = TREE_CODE_CLASS (code);
963 switch (type)
965 case tcc_declaration: /* A decl node */
966 return d_kind;
967 case tcc_type: /* a type node */
968 return t_kind;
969 case tcc_statement: /* an expression with side effects */
970 return s_kind;
971 case tcc_reference: /* a reference */
972 return r_kind;
973 case tcc_expression: /* an expression */
974 case tcc_comparison: /* a comparison expression */
975 case tcc_unary: /* a unary arithmetic expression */
976 case tcc_binary: /* a binary arithmetic expression */
977 return e_kind;
978 case tcc_constant: /* a constant */
979 return c_kind;
980 case tcc_exceptional: /* something random, like an identifier. */
981 switch (code)
983 case IDENTIFIER_NODE:
984 return id_kind;
985 case TREE_VEC:
986 return vec_kind;
987 case TREE_BINFO:
988 return binfo_kind;
989 case SSA_NAME:
990 return ssa_name_kind;
991 case BLOCK:
992 return b_kind;
993 case CONSTRUCTOR:
994 return constr_kind;
995 case OMP_CLAUSE:
996 return omp_clause_kind;
997 default:
998 return x_kind;
1000 break;
1001 case tcc_vl_exp:
1002 return e_kind;
1003 default:
1004 gcc_unreachable ();
1008 /* Record interesting allocation statistics for a tree node with CODE
1009 and LENGTH. */
1011 static void
1012 record_node_allocation_statistics (enum tree_code code, size_t length)
1014 if (!GATHER_STATISTICS)
1015 return;
1017 tree_node_kind kind = get_stats_node_kind (code);
1019 tree_code_counts[(int) code]++;
1020 tree_node_counts[(int) kind]++;
1021 tree_node_sizes[(int) kind] += length;
1024 /* Allocate and return a new UID from the DECL_UID namespace. */
1027 allocate_decl_uid (void)
1029 return next_decl_uid++;
1032 /* Return a newly allocated node of code CODE. For decl and type
1033 nodes, some other fields are initialized. The rest of the node is
1034 initialized to zero. This function cannot be used for TREE_VEC,
1035 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1036 tree_code_size.
1038 Achoo! I got a code in the node. */
1040 tree
1041 make_node (enum tree_code code MEM_STAT_DECL)
1043 tree t;
1044 enum tree_code_class type = TREE_CODE_CLASS (code);
1045 size_t length = tree_code_size (code);
1047 record_node_allocation_statistics (code, length);
1049 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1050 TREE_SET_CODE (t, code);
1052 switch (type)
1054 case tcc_statement:
1055 if (code != DEBUG_BEGIN_STMT)
1056 TREE_SIDE_EFFECTS (t) = 1;
1057 break;
1059 case tcc_declaration:
1060 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1062 if (code == FUNCTION_DECL)
1064 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1065 SET_DECL_MODE (t, FUNCTION_MODE);
1067 else
1068 SET_DECL_ALIGN (t, 1);
1070 DECL_SOURCE_LOCATION (t) = input_location;
1071 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1072 DECL_UID (t) = --next_debug_decl_uid;
1073 else
1075 DECL_UID (t) = allocate_decl_uid ();
1076 SET_DECL_PT_UID (t, -1);
1078 if (TREE_CODE (t) == LABEL_DECL)
1079 LABEL_DECL_UID (t) = -1;
1081 break;
1083 case tcc_type:
1084 TYPE_UID (t) = next_type_uid++;
1085 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1086 TYPE_USER_ALIGN (t) = 0;
1087 TYPE_MAIN_VARIANT (t) = t;
1088 TYPE_CANONICAL (t) = t;
1090 /* Default to no attributes for type, but let target change that. */
1091 TYPE_ATTRIBUTES (t) = NULL_TREE;
1092 targetm.set_default_type_attributes (t);
1094 /* We have not yet computed the alias set for this type. */
1095 TYPE_ALIAS_SET (t) = -1;
1096 break;
1098 case tcc_constant:
1099 TREE_CONSTANT (t) = 1;
1100 break;
1102 case tcc_expression:
1103 switch (code)
1105 case INIT_EXPR:
1106 case MODIFY_EXPR:
1107 case VA_ARG_EXPR:
1108 case PREDECREMENT_EXPR:
1109 case PREINCREMENT_EXPR:
1110 case POSTDECREMENT_EXPR:
1111 case POSTINCREMENT_EXPR:
1112 /* All of these have side-effects, no matter what their
1113 operands are. */
1114 TREE_SIDE_EFFECTS (t) = 1;
1115 break;
1117 default:
1118 break;
1120 break;
1122 case tcc_exceptional:
1123 switch (code)
1125 case TARGET_OPTION_NODE:
1126 TREE_TARGET_OPTION(t)
1127 = ggc_cleared_alloc<struct cl_target_option> ();
1128 break;
1130 case OPTIMIZATION_NODE:
1131 TREE_OPTIMIZATION (t)
1132 = ggc_cleared_alloc<struct cl_optimization> ();
1133 break;
1135 default:
1136 break;
1138 break;
1140 default:
1141 /* Other classes need no special treatment. */
1142 break;
1145 return t;
1148 /* Free tree node. */
1150 void
1151 free_node (tree node)
1153 enum tree_code code = TREE_CODE (node);
1154 if (GATHER_STATISTICS)
1156 enum tree_node_kind kind = get_stats_node_kind (code);
1158 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1159 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1160 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1162 tree_code_counts[(int) TREE_CODE (node)]--;
1163 tree_node_counts[(int) kind]--;
1164 tree_node_sizes[(int) kind] -= tree_size (node);
1166 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1167 vec_free (CONSTRUCTOR_ELTS (node));
1168 else if (code == BLOCK)
1169 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1170 else if (code == TREE_BINFO)
1171 vec_free (BINFO_BASE_ACCESSES (node));
1172 else if (code == OPTIMIZATION_NODE)
1173 cl_optimization_option_free (TREE_OPTIMIZATION (node));
1174 else if (code == TARGET_OPTION_NODE)
1175 cl_target_option_free (TREE_TARGET_OPTION (node));
1176 ggc_free (node);
1179 /* Return a new node with the same contents as NODE except that its
1180 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1182 tree
1183 copy_node (tree node MEM_STAT_DECL)
1185 tree t;
1186 enum tree_code code = TREE_CODE (node);
1187 size_t length;
1189 gcc_assert (code != STATEMENT_LIST);
1191 length = tree_size (node);
1192 record_node_allocation_statistics (code, length);
1193 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1194 memcpy (t, node, length);
1196 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1197 TREE_CHAIN (t) = 0;
1198 TREE_ASM_WRITTEN (t) = 0;
1199 TREE_VISITED (t) = 0;
1201 if (TREE_CODE_CLASS (code) == tcc_declaration)
1203 if (code == DEBUG_EXPR_DECL)
1204 DECL_UID (t) = --next_debug_decl_uid;
1205 else
1207 DECL_UID (t) = allocate_decl_uid ();
1208 if (DECL_PT_UID_SET_P (node))
1209 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1211 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1212 && DECL_HAS_VALUE_EXPR_P (node))
1214 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1215 DECL_HAS_VALUE_EXPR_P (t) = 1;
1217 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1218 if (VAR_P (node))
1220 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1221 t->decl_with_vis.symtab_node = NULL;
1223 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1225 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1226 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1228 if (TREE_CODE (node) == FUNCTION_DECL)
1230 DECL_STRUCT_FUNCTION (t) = NULL;
1231 t->decl_with_vis.symtab_node = NULL;
1234 else if (TREE_CODE_CLASS (code) == tcc_type)
1236 TYPE_UID (t) = next_type_uid++;
1237 /* The following is so that the debug code for
1238 the copy is different from the original type.
1239 The two statements usually duplicate each other
1240 (because they clear fields of the same union),
1241 but the optimizer should catch that. */
1242 TYPE_SYMTAB_ADDRESS (t) = 0;
1243 TYPE_SYMTAB_DIE (t) = 0;
1245 /* Do not copy the values cache. */
1246 if (TYPE_CACHED_VALUES_P (t))
1248 TYPE_CACHED_VALUES_P (t) = 0;
1249 TYPE_CACHED_VALUES (t) = NULL_TREE;
1252 else if (code == TARGET_OPTION_NODE)
1254 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1255 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1256 sizeof (struct cl_target_option));
1258 else if (code == OPTIMIZATION_NODE)
1260 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1261 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1262 sizeof (struct cl_optimization));
1265 return t;
1268 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1269 For example, this can copy a list made of TREE_LIST nodes. */
1271 tree
1272 copy_list (tree list)
1274 tree head;
1275 tree prev, next;
1277 if (list == 0)
1278 return 0;
1280 head = prev = copy_node (list);
1281 next = TREE_CHAIN (list);
1282 while (next)
1284 TREE_CHAIN (prev) = copy_node (next);
1285 prev = TREE_CHAIN (prev);
1286 next = TREE_CHAIN (next);
1288 return head;
1292 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1293 INTEGER_CST with value CST and type TYPE. */
1295 static unsigned int
1296 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1298 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1299 /* We need extra HWIs if CST is an unsigned integer with its
1300 upper bit set. */
1301 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1302 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1303 return cst.get_len ();
1306 /* Return a new INTEGER_CST with value CST and type TYPE. */
1308 static tree
1309 build_new_int_cst (tree type, const wide_int &cst)
1311 unsigned int len = cst.get_len ();
1312 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1313 tree nt = make_int_cst (len, ext_len);
1315 if (len < ext_len)
1317 --ext_len;
1318 TREE_INT_CST_ELT (nt, ext_len)
1319 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1320 for (unsigned int i = len; i < ext_len; ++i)
1321 TREE_INT_CST_ELT (nt, i) = -1;
1323 else if (TYPE_UNSIGNED (type)
1324 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1326 len--;
1327 TREE_INT_CST_ELT (nt, len)
1328 = zext_hwi (cst.elt (len),
1329 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1332 for (unsigned int i = 0; i < len; i++)
1333 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1334 TREE_TYPE (nt) = type;
1335 return nt;
1338 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1340 static tree
1341 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1342 CXX_MEM_STAT_INFO)
1344 size_t length = sizeof (struct tree_poly_int_cst);
1345 record_node_allocation_statistics (POLY_INT_CST, length);
1347 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1349 TREE_SET_CODE (t, POLY_INT_CST);
1350 TREE_CONSTANT (t) = 1;
1351 TREE_TYPE (t) = type;
1352 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1353 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1354 return t;
1357 /* Create a constant tree that contains CST sign-extended to TYPE. */
1359 tree
1360 build_int_cst (tree type, poly_int64 cst)
1362 /* Support legacy code. */
1363 if (!type)
1364 type = integer_type_node;
1366 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1369 /* Create a constant tree that contains CST zero-extended to TYPE. */
1371 tree
1372 build_int_cstu (tree type, poly_uint64 cst)
1374 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1377 /* Create a constant tree that contains CST sign-extended to TYPE. */
1379 tree
1380 build_int_cst_type (tree type, poly_int64 cst)
1382 gcc_assert (type);
1383 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1386 /* Constructs tree in type TYPE from with value given by CST. Signedness
1387 of CST is assumed to be the same as the signedness of TYPE. */
1389 tree
1390 double_int_to_tree (tree type, double_int cst)
1392 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1395 /* We force the wide_int CST to the range of the type TYPE by sign or
1396 zero extending it. OVERFLOWABLE indicates if we are interested in
1397 overflow of the value, when >0 we are only interested in signed
1398 overflow, for <0 we are interested in any overflow. OVERFLOWED
1399 indicates whether overflow has already occurred. CONST_OVERFLOWED
1400 indicates whether constant overflow has already occurred. We force
1401 T's value to be within range of T's type (by setting to 0 or 1 all
1402 the bits outside the type's range). We set TREE_OVERFLOWED if,
1403 OVERFLOWED is nonzero,
1404 or OVERFLOWABLE is >0 and signed overflow occurs
1405 or OVERFLOWABLE is <0 and any overflow occurs
1406 We return a new tree node for the extended wide_int. The node
1407 is shared if no overflow flags are set. */
1410 tree
1411 force_fit_type (tree type, const poly_wide_int_ref &cst,
1412 int overflowable, bool overflowed)
1414 signop sign = TYPE_SIGN (type);
1416 /* If we need to set overflow flags, return a new unshared node. */
1417 if (overflowed || !wi::fits_to_tree_p (cst, type))
1419 if (overflowed
1420 || overflowable < 0
1421 || (overflowable > 0 && sign == SIGNED))
1423 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1424 sign);
1425 tree t;
1426 if (tmp.is_constant ())
1427 t = build_new_int_cst (type, tmp.coeffs[0]);
1428 else
1430 tree coeffs[NUM_POLY_INT_COEFFS];
1431 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1433 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1434 TREE_OVERFLOW (coeffs[i]) = 1;
1436 t = build_new_poly_int_cst (type, coeffs);
1438 TREE_OVERFLOW (t) = 1;
1439 return t;
1443 /* Else build a shared node. */
1444 return wide_int_to_tree (type, cst);
1447 /* These are the hash table functions for the hash table of INTEGER_CST
1448 nodes of a sizetype. */
1450 /* Return the hash code X, an INTEGER_CST. */
1452 hashval_t
1453 int_cst_hasher::hash (tree x)
1455 const_tree const t = x;
1456 hashval_t code = TYPE_UID (TREE_TYPE (t));
1457 int i;
1459 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1460 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1462 return code;
1465 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1466 is the same as that given by *Y, which is the same. */
1468 bool
1469 int_cst_hasher::equal (tree x, tree y)
1471 const_tree const xt = x;
1472 const_tree const yt = y;
1474 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1475 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1476 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1477 return false;
1479 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1480 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1481 return false;
1483 return true;
1486 /* Cache wide_int CST into the TYPE_CACHED_VALUES cache for TYPE.
1487 SLOT is the slot entry to store it in, and MAX_SLOTS is the maximum
1488 number of slots that can be cached for the type. */
1490 static inline tree
1491 cache_wide_int_in_type_cache (tree type, const wide_int &cst,
1492 int slot, int max_slots)
1494 gcc_checking_assert (slot >= 0);
1495 /* Initialize cache. */
1496 if (!TYPE_CACHED_VALUES_P (type))
1498 TYPE_CACHED_VALUES_P (type) = 1;
1499 TYPE_CACHED_VALUES (type) = make_tree_vec (max_slots);
1501 tree t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), slot);
1502 if (!t)
1504 /* Create a new shared int. */
1505 t = build_new_int_cst (type, cst);
1506 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), slot) = t;
1508 return t;
1511 /* Create an INT_CST node of TYPE and value CST.
1512 The returned node is always shared. For small integers we use a
1513 per-type vector cache, for larger ones we use a single hash table.
1514 The value is extended from its precision according to the sign of
1515 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1516 the upper bits and ensures that hashing and value equality based
1517 upon the underlying HOST_WIDE_INTs works without masking. */
1519 static tree
1520 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1522 tree t;
1523 int ix = -1;
1524 int limit = 0;
1526 gcc_assert (type);
1527 unsigned int prec = TYPE_PRECISION (type);
1528 signop sgn = TYPE_SIGN (type);
1530 /* Verify that everything is canonical. */
1531 int l = pcst.get_len ();
1532 if (l > 1)
1534 if (pcst.elt (l - 1) == 0)
1535 gcc_checking_assert (pcst.elt (l - 2) < 0);
1536 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1537 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1540 wide_int cst = wide_int::from (pcst, prec, sgn);
1541 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1543 enum tree_code code = TREE_CODE (type);
1544 if (code == POINTER_TYPE || code == REFERENCE_TYPE)
1546 /* Cache NULL pointer and zero bounds. */
1547 if (cst == 0)
1548 ix = 0;
1549 /* Cache upper bounds of pointers. */
1550 else if (cst == wi::max_value (prec, sgn))
1551 ix = 1;
1552 /* Cache 1 which is used for a non-zero range. */
1553 else if (cst == 1)
1554 ix = 2;
1556 if (ix >= 0)
1558 t = cache_wide_int_in_type_cache (type, cst, ix, 3);
1559 /* Make sure no one is clobbering the shared constant. */
1560 gcc_checking_assert (TREE_TYPE (t) == type
1561 && cst == wi::to_wide (t));
1562 return t;
1565 if (ext_len == 1)
1567 /* We just need to store a single HOST_WIDE_INT. */
1568 HOST_WIDE_INT hwi;
1569 if (TYPE_UNSIGNED (type))
1570 hwi = cst.to_uhwi ();
1571 else
1572 hwi = cst.to_shwi ();
1574 switch (code)
1576 case NULLPTR_TYPE:
1577 gcc_assert (hwi == 0);
1578 /* Fallthru. */
1580 case POINTER_TYPE:
1581 case REFERENCE_TYPE:
1582 /* Ignore pointers, as they were already handled above. */
1583 break;
1585 case BOOLEAN_TYPE:
1586 /* Cache false or true. */
1587 limit = 2;
1588 if (IN_RANGE (hwi, 0, 1))
1589 ix = hwi;
1590 break;
1592 case INTEGER_TYPE:
1593 case OFFSET_TYPE:
1594 if (TYPE_SIGN (type) == UNSIGNED)
1596 /* Cache [0, N). */
1597 limit = param_integer_share_limit;
1598 if (IN_RANGE (hwi, 0, param_integer_share_limit - 1))
1599 ix = hwi;
1601 else
1603 /* Cache [-1, N). */
1604 limit = param_integer_share_limit + 1;
1605 if (IN_RANGE (hwi, -1, param_integer_share_limit - 1))
1606 ix = hwi + 1;
1608 break;
1610 case ENUMERAL_TYPE:
1611 break;
1613 default:
1614 gcc_unreachable ();
1617 if (ix >= 0)
1619 t = cache_wide_int_in_type_cache (type, cst, ix, limit);
1620 /* Make sure no one is clobbering the shared constant. */
1621 gcc_checking_assert (TREE_TYPE (t) == type
1622 && TREE_INT_CST_NUNITS (t) == 1
1623 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1624 && TREE_INT_CST_EXT_NUNITS (t) == 1
1625 && TREE_INT_CST_ELT (t, 0) == hwi);
1626 return t;
1628 else
1630 /* Use the cache of larger shared ints, using int_cst_node as
1631 a temporary. */
1633 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1634 TREE_TYPE (int_cst_node) = type;
1636 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1637 t = *slot;
1638 if (!t)
1640 /* Insert this one into the hash table. */
1641 t = int_cst_node;
1642 *slot = t;
1643 /* Make a new node for next time round. */
1644 int_cst_node = make_int_cst (1, 1);
1648 else
1650 /* The value either hashes properly or we drop it on the floor
1651 for the gc to take care of. There will not be enough of them
1652 to worry about. */
1654 tree nt = build_new_int_cst (type, cst);
1655 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1656 t = *slot;
1657 if (!t)
1659 /* Insert this one into the hash table. */
1660 t = nt;
1661 *slot = t;
1663 else
1664 ggc_free (nt);
1667 return t;
1670 hashval_t
1671 poly_int_cst_hasher::hash (tree t)
1673 inchash::hash hstate;
1675 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1676 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1677 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1679 return hstate.end ();
1682 bool
1683 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1685 if (TREE_TYPE (x) != y.first)
1686 return false;
1687 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1688 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1689 return false;
1690 return true;
1693 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1694 The elements must also have type TYPE. */
1696 tree
1697 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1699 unsigned int prec = TYPE_PRECISION (type);
1700 gcc_assert (prec <= values.coeffs[0].get_precision ());
1701 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1703 inchash::hash h;
1704 h.add_int (TYPE_UID (type));
1705 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1706 h.add_wide_int (c.coeffs[i]);
1707 poly_int_cst_hasher::compare_type comp (type, &c);
1708 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1709 INSERT);
1710 if (*slot == NULL_TREE)
1712 tree coeffs[NUM_POLY_INT_COEFFS];
1713 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1714 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1715 *slot = build_new_poly_int_cst (type, coeffs);
1717 return *slot;
1720 /* Create a constant tree with value VALUE in type TYPE. */
1722 tree
1723 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1725 if (value.is_constant ())
1726 return wide_int_to_tree_1 (type, value.coeffs[0]);
1727 return build_poly_int_cst (type, value);
1730 void
1731 cache_integer_cst (tree t)
1733 tree type = TREE_TYPE (t);
1734 int ix = -1;
1735 int limit = 0;
1736 int prec = TYPE_PRECISION (type);
1738 gcc_assert (!TREE_OVERFLOW (t));
1740 switch (TREE_CODE (type))
1742 case NULLPTR_TYPE:
1743 gcc_assert (integer_zerop (t));
1744 /* Fallthru. */
1746 case POINTER_TYPE:
1747 case REFERENCE_TYPE:
1748 /* Cache NULL pointer. */
1749 if (integer_zerop (t))
1751 limit = 1;
1752 ix = 0;
1754 break;
1756 case BOOLEAN_TYPE:
1757 /* Cache false or true. */
1758 limit = 2;
1759 if (wi::ltu_p (wi::to_wide (t), 2))
1760 ix = TREE_INT_CST_ELT (t, 0);
1761 break;
1763 case INTEGER_TYPE:
1764 case OFFSET_TYPE:
1765 if (TYPE_UNSIGNED (type))
1767 /* Cache 0..N */
1768 limit = param_integer_share_limit;
1770 /* This is a little hokie, but if the prec is smaller than
1771 what is necessary to hold param_integer_share_limit, then the
1772 obvious test will not get the correct answer. */
1773 if (prec < HOST_BITS_PER_WIDE_INT)
1775 if (tree_to_uhwi (t)
1776 < (unsigned HOST_WIDE_INT) param_integer_share_limit)
1777 ix = tree_to_uhwi (t);
1779 else if (wi::ltu_p (wi::to_wide (t), param_integer_share_limit))
1780 ix = tree_to_uhwi (t);
1782 else
1784 /* Cache -1..N */
1785 limit = param_integer_share_limit + 1;
1787 if (integer_minus_onep (t))
1788 ix = 0;
1789 else if (!wi::neg_p (wi::to_wide (t)))
1791 if (prec < HOST_BITS_PER_WIDE_INT)
1793 if (tree_to_shwi (t) < param_integer_share_limit)
1794 ix = tree_to_shwi (t) + 1;
1796 else if (wi::ltu_p (wi::to_wide (t), param_integer_share_limit))
1797 ix = tree_to_shwi (t) + 1;
1800 break;
1802 case ENUMERAL_TYPE:
1803 /* The slot used by TYPE_CACHED_VALUES is used for the enum
1804 members. */
1805 break;
1807 default:
1808 gcc_unreachable ();
1811 if (ix >= 0)
1813 /* Look for it in the type's vector of small shared ints. */
1814 if (!TYPE_CACHED_VALUES_P (type))
1816 TYPE_CACHED_VALUES_P (type) = 1;
1817 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1820 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1821 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1823 else
1825 /* Use the cache of larger shared ints. */
1826 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1827 /* If there is already an entry for the number verify it's the
1828 same. */
1829 if (*slot)
1830 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1831 else
1832 /* Otherwise insert this one into the hash table. */
1833 *slot = t;
1838 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1839 and the rest are zeros. */
1841 tree
1842 build_low_bits_mask (tree type, unsigned bits)
1844 gcc_assert (bits <= TYPE_PRECISION (type));
1846 return wide_int_to_tree (type, wi::mask (bits, false,
1847 TYPE_PRECISION (type)));
1850 /* Checks that X is integer constant that can be expressed in (unsigned)
1851 HOST_WIDE_INT without loss of precision. */
1853 bool
1854 cst_and_fits_in_hwi (const_tree x)
1856 return (TREE_CODE (x) == INTEGER_CST
1857 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1860 /* Build a newly constructed VECTOR_CST with the given values of
1861 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1863 tree
1864 make_vector (unsigned log2_npatterns,
1865 unsigned int nelts_per_pattern MEM_STAT_DECL)
1867 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1868 tree t;
1869 unsigned npatterns = 1 << log2_npatterns;
1870 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1871 unsigned length = (sizeof (struct tree_vector)
1872 + (encoded_nelts - 1) * sizeof (tree));
1874 record_node_allocation_statistics (VECTOR_CST, length);
1876 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1878 TREE_SET_CODE (t, VECTOR_CST);
1879 TREE_CONSTANT (t) = 1;
1880 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1881 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1883 return t;
1886 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1887 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1889 tree
1890 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1892 if (vec_safe_length (v) == 0)
1893 return build_zero_cst (type);
1895 unsigned HOST_WIDE_INT idx, nelts;
1896 tree value;
1898 /* We can't construct a VECTOR_CST for a variable number of elements. */
1899 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1900 tree_vector_builder vec (type, nelts, 1);
1901 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1903 if (TREE_CODE (value) == VECTOR_CST)
1905 /* If NELTS is constant then this must be too. */
1906 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1907 for (unsigned i = 0; i < sub_nelts; ++i)
1908 vec.quick_push (VECTOR_CST_ELT (value, i));
1910 else
1911 vec.quick_push (value);
1913 while (vec.length () < nelts)
1914 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1916 return vec.build ();
1919 /* Build a vector of type VECTYPE where all the elements are SCs. */
1920 tree
1921 build_vector_from_val (tree vectype, tree sc)
1923 unsigned HOST_WIDE_INT i, nunits;
1925 if (sc == error_mark_node)
1926 return sc;
1928 /* Verify that the vector type is suitable for SC. Note that there
1929 is some inconsistency in the type-system with respect to restrict
1930 qualifications of pointers. Vector types always have a main-variant
1931 element type and the qualification is applied to the vector-type.
1932 So TREE_TYPE (vector-type) does not return a properly qualified
1933 vector element-type. */
1934 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1935 TREE_TYPE (vectype)));
1937 if (CONSTANT_CLASS_P (sc))
1939 tree_vector_builder v (vectype, 1, 1);
1940 v.quick_push (sc);
1941 return v.build ();
1943 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1944 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1945 else
1947 vec<constructor_elt, va_gc> *v;
1948 vec_alloc (v, nunits);
1949 for (i = 0; i < nunits; ++i)
1950 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1951 return build_constructor (vectype, v);
1955 /* If TYPE is not a vector type, just return SC, otherwise return
1956 build_vector_from_val (TYPE, SC). */
1958 tree
1959 build_uniform_cst (tree type, tree sc)
1961 if (!VECTOR_TYPE_P (type))
1962 return sc;
1964 return build_vector_from_val (type, sc);
1967 /* Build a vector series of type TYPE in which element I has the value
1968 BASE + I * STEP. The result is a constant if BASE and STEP are constant
1969 and a VEC_SERIES_EXPR otherwise. */
1971 tree
1972 build_vec_series (tree type, tree base, tree step)
1974 if (integer_zerop (step))
1975 return build_vector_from_val (type, base);
1976 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
1978 tree_vector_builder builder (type, 1, 3);
1979 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
1980 wi::to_wide (base) + wi::to_wide (step));
1981 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
1982 wi::to_wide (elt1) + wi::to_wide (step));
1983 builder.quick_push (base);
1984 builder.quick_push (elt1);
1985 builder.quick_push (elt2);
1986 return builder.build ();
1988 return build2 (VEC_SERIES_EXPR, type, base, step);
1991 /* Return a vector with the same number of units and number of bits
1992 as VEC_TYPE, but in which the elements are a linear series of unsigned
1993 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
1995 tree
1996 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
1998 tree index_vec_type = vec_type;
1999 tree index_elt_type = TREE_TYPE (vec_type);
2000 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
2001 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
2003 index_elt_type = build_nonstandard_integer_type
2004 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
2005 index_vec_type = build_vector_type (index_elt_type, nunits);
2008 tree_vector_builder v (index_vec_type, 1, 3);
2009 for (unsigned int i = 0; i < 3; ++i)
2010 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
2011 return v.build ();
2014 /* Return a VECTOR_CST of type VEC_TYPE in which the first NUM_A
2015 elements are A and the rest are B. */
2017 tree
2018 build_vector_a_then_b (tree vec_type, unsigned int num_a, tree a, tree b)
2020 gcc_assert (known_le (num_a, TYPE_VECTOR_SUBPARTS (vec_type)));
2021 unsigned int count = constant_lower_bound (TYPE_VECTOR_SUBPARTS (vec_type));
2022 /* Optimize the constant case. */
2023 if ((count & 1) == 0 && TYPE_VECTOR_SUBPARTS (vec_type).is_constant ())
2024 count /= 2;
2025 tree_vector_builder builder (vec_type, count, 2);
2026 for (unsigned int i = 0; i < count * 2; ++i)
2027 builder.quick_push (i < num_a ? a : b);
2028 return builder.build ();
2031 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
2032 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
2034 void
2035 recompute_constructor_flags (tree c)
2037 unsigned int i;
2038 tree val;
2039 bool constant_p = true;
2040 bool side_effects_p = false;
2041 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2043 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2045 /* Mostly ctors will have elts that don't have side-effects, so
2046 the usual case is to scan all the elements. Hence a single
2047 loop for both const and side effects, rather than one loop
2048 each (with early outs). */
2049 if (!TREE_CONSTANT (val))
2050 constant_p = false;
2051 if (TREE_SIDE_EFFECTS (val))
2052 side_effects_p = true;
2055 TREE_SIDE_EFFECTS (c) = side_effects_p;
2056 TREE_CONSTANT (c) = constant_p;
2059 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
2060 CONSTRUCTOR C. */
2062 void
2063 verify_constructor_flags (tree c)
2065 unsigned int i;
2066 tree val;
2067 bool constant_p = TREE_CONSTANT (c);
2068 bool side_effects_p = TREE_SIDE_EFFECTS (c);
2069 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2071 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2073 if (constant_p && !TREE_CONSTANT (val))
2074 internal_error ("non-constant element in constant CONSTRUCTOR");
2075 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
2076 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
2080 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2081 are in the vec pointed to by VALS. */
2082 tree
2083 build_constructor (tree type, vec<constructor_elt, va_gc> *vals MEM_STAT_DECL)
2085 tree c = make_node (CONSTRUCTOR PASS_MEM_STAT);
2087 TREE_TYPE (c) = type;
2088 CONSTRUCTOR_ELTS (c) = vals;
2090 recompute_constructor_flags (c);
2092 return c;
2095 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2096 INDEX and VALUE. */
2097 tree
2098 build_constructor_single (tree type, tree index, tree value)
2100 vec<constructor_elt, va_gc> *v;
2101 constructor_elt elt = {index, value};
2103 vec_alloc (v, 1);
2104 v->quick_push (elt);
2106 return build_constructor (type, v);
2110 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2111 are in a list pointed to by VALS. */
2112 tree
2113 build_constructor_from_list (tree type, tree vals)
2115 tree t;
2116 vec<constructor_elt, va_gc> *v = NULL;
2118 if (vals)
2120 vec_alloc (v, list_length (vals));
2121 for (t = vals; t; t = TREE_CHAIN (t))
2122 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2125 return build_constructor (type, v);
2128 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2129 are in a vector pointed to by VALS. Note that the TREE_PURPOSE
2130 fields in the constructor remain null. */
2132 tree
2133 build_constructor_from_vec (tree type, const vec<tree, va_gc> *vals)
2135 vec<constructor_elt, va_gc> *v = NULL;
2137 for (tree t : *vals)
2138 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, t);
2140 return build_constructor (type, v);
2143 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2144 of elements, provided as index/value pairs. */
2146 tree
2147 build_constructor_va (tree type, int nelts, ...)
2149 vec<constructor_elt, va_gc> *v = NULL;
2150 va_list p;
2152 va_start (p, nelts);
2153 vec_alloc (v, nelts);
2154 while (nelts--)
2156 tree index = va_arg (p, tree);
2157 tree value = va_arg (p, tree);
2158 CONSTRUCTOR_APPEND_ELT (v, index, value);
2160 va_end (p);
2161 return build_constructor (type, v);
2164 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2166 tree
2167 build_clobber (tree type)
2169 tree clobber = build_constructor (type, NULL);
2170 TREE_THIS_VOLATILE (clobber) = true;
2171 return clobber;
2174 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2176 tree
2177 build_fixed (tree type, FIXED_VALUE_TYPE f)
2179 tree v;
2180 FIXED_VALUE_TYPE *fp;
2182 v = make_node (FIXED_CST);
2183 fp = ggc_alloc<fixed_value> ();
2184 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2186 TREE_TYPE (v) = type;
2187 TREE_FIXED_CST_PTR (v) = fp;
2188 return v;
2191 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2193 tree
2194 build_real (tree type, REAL_VALUE_TYPE d)
2196 tree v;
2197 REAL_VALUE_TYPE *dp;
2198 int overflow = 0;
2200 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2201 Consider doing it via real_convert now. */
2203 v = make_node (REAL_CST);
2204 dp = ggc_alloc<real_value> ();
2205 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2207 TREE_TYPE (v) = type;
2208 TREE_REAL_CST_PTR (v) = dp;
2209 TREE_OVERFLOW (v) = overflow;
2210 return v;
2213 /* Like build_real, but first truncate D to the type. */
2215 tree
2216 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2218 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2221 /* Return a new REAL_CST node whose type is TYPE
2222 and whose value is the integer value of the INTEGER_CST node I. */
2224 REAL_VALUE_TYPE
2225 real_value_from_int_cst (const_tree type, const_tree i)
2227 REAL_VALUE_TYPE d;
2229 /* Clear all bits of the real value type so that we can later do
2230 bitwise comparisons to see if two values are the same. */
2231 memset (&d, 0, sizeof d);
2233 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2234 TYPE_SIGN (TREE_TYPE (i)));
2235 return d;
2238 /* Given a tree representing an integer constant I, return a tree
2239 representing the same value as a floating-point constant of type TYPE. */
2241 tree
2242 build_real_from_int_cst (tree type, const_tree i)
2244 tree v;
2245 int overflow = TREE_OVERFLOW (i);
2247 v = build_real (type, real_value_from_int_cst (type, i));
2249 TREE_OVERFLOW (v) |= overflow;
2250 return v;
2253 /* Return a newly constructed STRING_CST node whose value is the LEN
2254 characters at STR when STR is nonnull, or all zeros otherwise.
2255 Note that for a C string literal, LEN should include the trailing NUL.
2256 The TREE_TYPE is not initialized. */
2258 tree
2259 build_string (unsigned len, const char *str /*= NULL */)
2261 /* Do not waste bytes provided by padding of struct tree_string. */
2262 unsigned size = len + offsetof (struct tree_string, str) + 1;
2264 record_node_allocation_statistics (STRING_CST, size);
2266 tree s = (tree) ggc_internal_alloc (size);
2268 memset (s, 0, sizeof (struct tree_typed));
2269 TREE_SET_CODE (s, STRING_CST);
2270 TREE_CONSTANT (s) = 1;
2271 TREE_STRING_LENGTH (s) = len;
2272 if (str)
2273 memcpy (s->string.str, str, len);
2274 else
2275 memset (s->string.str, 0, len);
2276 s->string.str[len] = '\0';
2278 return s;
2281 /* Return a newly constructed COMPLEX_CST node whose value is
2282 specified by the real and imaginary parts REAL and IMAG.
2283 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2284 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2286 tree
2287 build_complex (tree type, tree real, tree imag)
2289 gcc_assert (CONSTANT_CLASS_P (real));
2290 gcc_assert (CONSTANT_CLASS_P (imag));
2292 tree t = make_node (COMPLEX_CST);
2294 TREE_REALPART (t) = real;
2295 TREE_IMAGPART (t) = imag;
2296 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2297 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2298 return t;
2301 /* Build a complex (inf +- 0i), such as for the result of cproj.
2302 TYPE is the complex tree type of the result. If NEG is true, the
2303 imaginary zero is negative. */
2305 tree
2306 build_complex_inf (tree type, bool neg)
2308 REAL_VALUE_TYPE rinf, rzero = dconst0;
2310 real_inf (&rinf);
2311 rzero.sign = neg;
2312 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2313 build_real (TREE_TYPE (type), rzero));
2316 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2317 element is set to 1. In particular, this is 1 + i for complex types. */
2319 tree
2320 build_each_one_cst (tree type)
2322 if (TREE_CODE (type) == COMPLEX_TYPE)
2324 tree scalar = build_one_cst (TREE_TYPE (type));
2325 return build_complex (type, scalar, scalar);
2327 else
2328 return build_one_cst (type);
2331 /* Return a constant of arithmetic type TYPE which is the
2332 multiplicative identity of the set TYPE. */
2334 tree
2335 build_one_cst (tree type)
2337 switch (TREE_CODE (type))
2339 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2340 case POINTER_TYPE: case REFERENCE_TYPE:
2341 case OFFSET_TYPE:
2342 return build_int_cst (type, 1);
2344 case REAL_TYPE:
2345 return build_real (type, dconst1);
2347 case FIXED_POINT_TYPE:
2348 /* We can only generate 1 for accum types. */
2349 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2350 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2352 case VECTOR_TYPE:
2354 tree scalar = build_one_cst (TREE_TYPE (type));
2356 return build_vector_from_val (type, scalar);
2359 case COMPLEX_TYPE:
2360 return build_complex (type,
2361 build_one_cst (TREE_TYPE (type)),
2362 build_zero_cst (TREE_TYPE (type)));
2364 default:
2365 gcc_unreachable ();
2369 /* Return an integer of type TYPE containing all 1's in as much precision as
2370 it contains, or a complex or vector whose subparts are such integers. */
2372 tree
2373 build_all_ones_cst (tree type)
2375 if (TREE_CODE (type) == COMPLEX_TYPE)
2377 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2378 return build_complex (type, scalar, scalar);
2380 else
2381 return build_minus_one_cst (type);
2384 /* Return a constant of arithmetic type TYPE which is the
2385 opposite of the multiplicative identity of the set TYPE. */
2387 tree
2388 build_minus_one_cst (tree type)
2390 switch (TREE_CODE (type))
2392 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2393 case POINTER_TYPE: case REFERENCE_TYPE:
2394 case OFFSET_TYPE:
2395 return build_int_cst (type, -1);
2397 case REAL_TYPE:
2398 return build_real (type, dconstm1);
2400 case FIXED_POINT_TYPE:
2401 /* We can only generate 1 for accum types. */
2402 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2403 return build_fixed (type,
2404 fixed_from_double_int (double_int_minus_one,
2405 SCALAR_TYPE_MODE (type)));
2407 case VECTOR_TYPE:
2409 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2411 return build_vector_from_val (type, scalar);
2414 case COMPLEX_TYPE:
2415 return build_complex (type,
2416 build_minus_one_cst (TREE_TYPE (type)),
2417 build_zero_cst (TREE_TYPE (type)));
2419 default:
2420 gcc_unreachable ();
2424 /* Build 0 constant of type TYPE. This is used by constructor folding
2425 and thus the constant should be represented in memory by
2426 zero(es). */
2428 tree
2429 build_zero_cst (tree type)
2431 switch (TREE_CODE (type))
2433 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2434 case POINTER_TYPE: case REFERENCE_TYPE:
2435 case OFFSET_TYPE: case NULLPTR_TYPE:
2436 return build_int_cst (type, 0);
2438 case REAL_TYPE:
2439 return build_real (type, dconst0);
2441 case FIXED_POINT_TYPE:
2442 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2444 case VECTOR_TYPE:
2446 tree scalar = build_zero_cst (TREE_TYPE (type));
2448 return build_vector_from_val (type, scalar);
2451 case COMPLEX_TYPE:
2453 tree zero = build_zero_cst (TREE_TYPE (type));
2455 return build_complex (type, zero, zero);
2458 default:
2459 if (!AGGREGATE_TYPE_P (type))
2460 return fold_convert (type, integer_zero_node);
2461 return build_constructor (type, NULL);
2466 /* Build a BINFO with LEN language slots. */
2468 tree
2469 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2471 tree t;
2472 size_t length = (offsetof (struct tree_binfo, base_binfos)
2473 + vec<tree, va_gc>::embedded_size (base_binfos));
2475 record_node_allocation_statistics (TREE_BINFO, length);
2477 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2479 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2481 TREE_SET_CODE (t, TREE_BINFO);
2483 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2485 return t;
2488 /* Create a CASE_LABEL_EXPR tree node and return it. */
2490 tree
2491 build_case_label (tree low_value, tree high_value, tree label_decl)
2493 tree t = make_node (CASE_LABEL_EXPR);
2495 TREE_TYPE (t) = void_type_node;
2496 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2498 CASE_LOW (t) = low_value;
2499 CASE_HIGH (t) = high_value;
2500 CASE_LABEL (t) = label_decl;
2501 CASE_CHAIN (t) = NULL_TREE;
2503 return t;
2506 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2507 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2508 The latter determines the length of the HOST_WIDE_INT vector. */
2510 tree
2511 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2513 tree t;
2514 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2515 + sizeof (struct tree_int_cst));
2517 gcc_assert (len);
2518 record_node_allocation_statistics (INTEGER_CST, length);
2520 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2522 TREE_SET_CODE (t, INTEGER_CST);
2523 TREE_INT_CST_NUNITS (t) = len;
2524 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2525 /* to_offset can only be applied to trees that are offset_int-sized
2526 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2527 must be exactly the precision of offset_int and so LEN is correct. */
2528 if (ext_len <= OFFSET_INT_ELTS)
2529 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2530 else
2531 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2533 TREE_CONSTANT (t) = 1;
2535 return t;
2538 /* Build a newly constructed TREE_VEC node of length LEN. */
2540 tree
2541 make_tree_vec (int len MEM_STAT_DECL)
2543 tree t;
2544 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2546 record_node_allocation_statistics (TREE_VEC, length);
2548 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2550 TREE_SET_CODE (t, TREE_VEC);
2551 TREE_VEC_LENGTH (t) = len;
2553 return t;
2556 /* Grow a TREE_VEC node to new length LEN. */
2558 tree
2559 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2561 gcc_assert (TREE_CODE (v) == TREE_VEC);
2563 int oldlen = TREE_VEC_LENGTH (v);
2564 gcc_assert (len > oldlen);
2566 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2567 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2569 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2571 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2573 TREE_VEC_LENGTH (v) = len;
2575 return v;
2578 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2579 fixed, and scalar, complex or vector. */
2581 bool
2582 zerop (const_tree expr)
2584 return (integer_zerop (expr)
2585 || real_zerop (expr)
2586 || fixed_zerop (expr));
2589 /* Return 1 if EXPR is the integer constant zero or a complex constant
2590 of zero, or a location wrapper for such a constant. */
2592 bool
2593 integer_zerop (const_tree expr)
2595 STRIP_ANY_LOCATION_WRAPPER (expr);
2597 switch (TREE_CODE (expr))
2599 case INTEGER_CST:
2600 return wi::to_wide (expr) == 0;
2601 case COMPLEX_CST:
2602 return (integer_zerop (TREE_REALPART (expr))
2603 && integer_zerop (TREE_IMAGPART (expr)));
2604 case VECTOR_CST:
2605 return (VECTOR_CST_NPATTERNS (expr) == 1
2606 && VECTOR_CST_DUPLICATE_P (expr)
2607 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2608 default:
2609 return false;
2613 /* Return 1 if EXPR is the integer constant one or the corresponding
2614 complex constant, or a location wrapper for such a constant. */
2616 bool
2617 integer_onep (const_tree expr)
2619 STRIP_ANY_LOCATION_WRAPPER (expr);
2621 switch (TREE_CODE (expr))
2623 case INTEGER_CST:
2624 return wi::eq_p (wi::to_widest (expr), 1);
2625 case COMPLEX_CST:
2626 return (integer_onep (TREE_REALPART (expr))
2627 && integer_zerop (TREE_IMAGPART (expr)));
2628 case VECTOR_CST:
2629 return (VECTOR_CST_NPATTERNS (expr) == 1
2630 && VECTOR_CST_DUPLICATE_P (expr)
2631 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2632 default:
2633 return false;
2637 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2638 return 1 if every piece is the integer constant one.
2639 Also return 1 for location wrappers for such a constant. */
2641 bool
2642 integer_each_onep (const_tree expr)
2644 STRIP_ANY_LOCATION_WRAPPER (expr);
2646 if (TREE_CODE (expr) == COMPLEX_CST)
2647 return (integer_onep (TREE_REALPART (expr))
2648 && integer_onep (TREE_IMAGPART (expr)));
2649 else
2650 return integer_onep (expr);
2653 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2654 it contains, or a complex or vector whose subparts are such integers,
2655 or a location wrapper for such a constant. */
2657 bool
2658 integer_all_onesp (const_tree expr)
2660 STRIP_ANY_LOCATION_WRAPPER (expr);
2662 if (TREE_CODE (expr) == COMPLEX_CST
2663 && integer_all_onesp (TREE_REALPART (expr))
2664 && integer_all_onesp (TREE_IMAGPART (expr)))
2665 return true;
2667 else if (TREE_CODE (expr) == VECTOR_CST)
2668 return (VECTOR_CST_NPATTERNS (expr) == 1
2669 && VECTOR_CST_DUPLICATE_P (expr)
2670 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2672 else if (TREE_CODE (expr) != INTEGER_CST)
2673 return false;
2675 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2676 == wi::to_wide (expr));
2679 /* Return 1 if EXPR is the integer constant minus one, or a location wrapper
2680 for such a constant. */
2682 bool
2683 integer_minus_onep (const_tree expr)
2685 STRIP_ANY_LOCATION_WRAPPER (expr);
2687 if (TREE_CODE (expr) == COMPLEX_CST)
2688 return (integer_all_onesp (TREE_REALPART (expr))
2689 && integer_zerop (TREE_IMAGPART (expr)));
2690 else
2691 return integer_all_onesp (expr);
2694 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2695 one bit on), or a location wrapper for such a constant. */
2697 bool
2698 integer_pow2p (const_tree expr)
2700 STRIP_ANY_LOCATION_WRAPPER (expr);
2702 if (TREE_CODE (expr) == COMPLEX_CST
2703 && integer_pow2p (TREE_REALPART (expr))
2704 && integer_zerop (TREE_IMAGPART (expr)))
2705 return true;
2707 if (TREE_CODE (expr) != INTEGER_CST)
2708 return false;
2710 return wi::popcount (wi::to_wide (expr)) == 1;
2713 /* Return 1 if EXPR is an integer constant other than zero or a
2714 complex constant other than zero, or a location wrapper for such a
2715 constant. */
2717 bool
2718 integer_nonzerop (const_tree expr)
2720 STRIP_ANY_LOCATION_WRAPPER (expr);
2722 return ((TREE_CODE (expr) == INTEGER_CST
2723 && wi::to_wide (expr) != 0)
2724 || (TREE_CODE (expr) == COMPLEX_CST
2725 && (integer_nonzerop (TREE_REALPART (expr))
2726 || integer_nonzerop (TREE_IMAGPART (expr)))));
2729 /* Return 1 if EXPR is the integer constant one. For vector,
2730 return 1 if every piece is the integer constant minus one
2731 (representing the value TRUE).
2732 Also return 1 for location wrappers for such a constant. */
2734 bool
2735 integer_truep (const_tree expr)
2737 STRIP_ANY_LOCATION_WRAPPER (expr);
2739 if (TREE_CODE (expr) == VECTOR_CST)
2740 return integer_all_onesp (expr);
2741 return integer_onep (expr);
2744 /* Return 1 if EXPR is the fixed-point constant zero, or a location wrapper
2745 for such a constant. */
2747 bool
2748 fixed_zerop (const_tree expr)
2750 STRIP_ANY_LOCATION_WRAPPER (expr);
2752 return (TREE_CODE (expr) == FIXED_CST
2753 && TREE_FIXED_CST (expr).data.is_zero ());
2756 /* Return the power of two represented by a tree node known to be a
2757 power of two. */
2760 tree_log2 (const_tree expr)
2762 if (TREE_CODE (expr) == COMPLEX_CST)
2763 return tree_log2 (TREE_REALPART (expr));
2765 return wi::exact_log2 (wi::to_wide (expr));
2768 /* Similar, but return the largest integer Y such that 2 ** Y is less
2769 than or equal to EXPR. */
2772 tree_floor_log2 (const_tree expr)
2774 if (TREE_CODE (expr) == COMPLEX_CST)
2775 return tree_log2 (TREE_REALPART (expr));
2777 return wi::floor_log2 (wi::to_wide (expr));
2780 /* Return number of known trailing zero bits in EXPR, or, if the value of
2781 EXPR is known to be zero, the precision of it's type. */
2783 unsigned int
2784 tree_ctz (const_tree expr)
2786 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2787 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2788 return 0;
2790 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2791 switch (TREE_CODE (expr))
2793 case INTEGER_CST:
2794 ret1 = wi::ctz (wi::to_wide (expr));
2795 return MIN (ret1, prec);
2796 case SSA_NAME:
2797 ret1 = wi::ctz (get_nonzero_bits (expr));
2798 return MIN (ret1, prec);
2799 case PLUS_EXPR:
2800 case MINUS_EXPR:
2801 case BIT_IOR_EXPR:
2802 case BIT_XOR_EXPR:
2803 case MIN_EXPR:
2804 case MAX_EXPR:
2805 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2806 if (ret1 == 0)
2807 return ret1;
2808 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2809 return MIN (ret1, ret2);
2810 case POINTER_PLUS_EXPR:
2811 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2812 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2813 /* Second operand is sizetype, which could be in theory
2814 wider than pointer's precision. Make sure we never
2815 return more than prec. */
2816 ret2 = MIN (ret2, prec);
2817 return MIN (ret1, ret2);
2818 case BIT_AND_EXPR:
2819 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2820 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2821 return MAX (ret1, ret2);
2822 case MULT_EXPR:
2823 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2824 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2825 return MIN (ret1 + ret2, prec);
2826 case LSHIFT_EXPR:
2827 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2828 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2829 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2831 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2832 return MIN (ret1 + ret2, prec);
2834 return ret1;
2835 case RSHIFT_EXPR:
2836 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2837 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2839 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2840 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2841 if (ret1 > ret2)
2842 return ret1 - ret2;
2844 return 0;
2845 case TRUNC_DIV_EXPR:
2846 case CEIL_DIV_EXPR:
2847 case FLOOR_DIV_EXPR:
2848 case ROUND_DIV_EXPR:
2849 case EXACT_DIV_EXPR:
2850 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2851 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2853 int l = tree_log2 (TREE_OPERAND (expr, 1));
2854 if (l >= 0)
2856 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2857 ret2 = l;
2858 if (ret1 > ret2)
2859 return ret1 - ret2;
2862 return 0;
2863 CASE_CONVERT:
2864 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2865 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2866 ret1 = prec;
2867 return MIN (ret1, prec);
2868 case SAVE_EXPR:
2869 return tree_ctz (TREE_OPERAND (expr, 0));
2870 case COND_EXPR:
2871 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2872 if (ret1 == 0)
2873 return 0;
2874 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2875 return MIN (ret1, ret2);
2876 case COMPOUND_EXPR:
2877 return tree_ctz (TREE_OPERAND (expr, 1));
2878 case ADDR_EXPR:
2879 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2880 if (ret1 > BITS_PER_UNIT)
2882 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2883 return MIN (ret1, prec);
2885 return 0;
2886 default:
2887 return 0;
2891 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2892 decimal float constants, so don't return 1 for them.
2893 Also return 1 for location wrappers around such a constant. */
2895 bool
2896 real_zerop (const_tree expr)
2898 STRIP_ANY_LOCATION_WRAPPER (expr);
2900 switch (TREE_CODE (expr))
2902 case REAL_CST:
2903 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2904 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2905 case COMPLEX_CST:
2906 return real_zerop (TREE_REALPART (expr))
2907 && real_zerop (TREE_IMAGPART (expr));
2908 case VECTOR_CST:
2910 /* Don't simply check for a duplicate because the predicate
2911 accepts both +0.0 and -0.0. */
2912 unsigned count = vector_cst_encoded_nelts (expr);
2913 for (unsigned int i = 0; i < count; ++i)
2914 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2915 return false;
2916 return true;
2918 default:
2919 return false;
2923 /* Return 1 if EXPR is the real constant one in real or complex form.
2924 Trailing zeroes matter for decimal float constants, so don't return
2925 1 for them.
2926 Also return 1 for location wrappers around such a constant. */
2928 bool
2929 real_onep (const_tree expr)
2931 STRIP_ANY_LOCATION_WRAPPER (expr);
2933 switch (TREE_CODE (expr))
2935 case REAL_CST:
2936 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2937 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2938 case COMPLEX_CST:
2939 return real_onep (TREE_REALPART (expr))
2940 && real_zerop (TREE_IMAGPART (expr));
2941 case VECTOR_CST:
2942 return (VECTOR_CST_NPATTERNS (expr) == 1
2943 && VECTOR_CST_DUPLICATE_P (expr)
2944 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2945 default:
2946 return false;
2950 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2951 matter for decimal float constants, so don't return 1 for them.
2952 Also return 1 for location wrappers around such a constant. */
2954 bool
2955 real_minus_onep (const_tree expr)
2957 STRIP_ANY_LOCATION_WRAPPER (expr);
2959 switch (TREE_CODE (expr))
2961 case REAL_CST:
2962 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2963 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2964 case COMPLEX_CST:
2965 return real_minus_onep (TREE_REALPART (expr))
2966 && real_zerop (TREE_IMAGPART (expr));
2967 case VECTOR_CST:
2968 return (VECTOR_CST_NPATTERNS (expr) == 1
2969 && VECTOR_CST_DUPLICATE_P (expr)
2970 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2971 default:
2972 return false;
2976 /* Nonzero if EXP is a constant or a cast of a constant. */
2978 bool
2979 really_constant_p (const_tree exp)
2981 /* This is not quite the same as STRIP_NOPS. It does more. */
2982 while (CONVERT_EXPR_P (exp)
2983 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2984 exp = TREE_OPERAND (exp, 0);
2985 return TREE_CONSTANT (exp);
2988 /* Return true if T holds a polynomial pointer difference, storing it in
2989 *VALUE if so. A true return means that T's precision is no greater
2990 than 64 bits, which is the largest address space we support, so *VALUE
2991 never loses precision. However, the signedness of the result does
2992 not necessarily match the signedness of T: sometimes an unsigned type
2993 like sizetype is used to encode a value that is actually negative. */
2995 bool
2996 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
2998 if (!t)
2999 return false;
3000 if (TREE_CODE (t) == INTEGER_CST)
3002 if (!cst_and_fits_in_hwi (t))
3003 return false;
3004 *value = int_cst_value (t);
3005 return true;
3007 if (POLY_INT_CST_P (t))
3009 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
3010 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
3011 return false;
3012 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
3013 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
3014 return true;
3016 return false;
3019 poly_int64
3020 tree_to_poly_int64 (const_tree t)
3022 gcc_assert (tree_fits_poly_int64_p (t));
3023 if (POLY_INT_CST_P (t))
3024 return poly_int_cst_value (t).force_shwi ();
3025 return TREE_INT_CST_LOW (t);
3028 poly_uint64
3029 tree_to_poly_uint64 (const_tree t)
3031 gcc_assert (tree_fits_poly_uint64_p (t));
3032 if (POLY_INT_CST_P (t))
3033 return poly_int_cst_value (t).force_uhwi ();
3034 return TREE_INT_CST_LOW (t);
3037 /* Return first list element whose TREE_VALUE is ELEM.
3038 Return 0 if ELEM is not in LIST. */
3040 tree
3041 value_member (tree elem, tree list)
3043 while (list)
3045 if (elem == TREE_VALUE (list))
3046 return list;
3047 list = TREE_CHAIN (list);
3049 return NULL_TREE;
3052 /* Return first list element whose TREE_PURPOSE is ELEM.
3053 Return 0 if ELEM is not in LIST. */
3055 tree
3056 purpose_member (const_tree elem, tree list)
3058 while (list)
3060 if (elem == TREE_PURPOSE (list))
3061 return list;
3062 list = TREE_CHAIN (list);
3064 return NULL_TREE;
3067 /* Return true if ELEM is in V. */
3069 bool
3070 vec_member (const_tree elem, vec<tree, va_gc> *v)
3072 unsigned ix;
3073 tree t;
3074 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
3075 if (elem == t)
3076 return true;
3077 return false;
3080 /* Returns element number IDX (zero-origin) of chain CHAIN, or
3081 NULL_TREE. */
3083 tree
3084 chain_index (int idx, tree chain)
3086 for (; chain && idx > 0; --idx)
3087 chain = TREE_CHAIN (chain);
3088 return chain;
3091 /* Return nonzero if ELEM is part of the chain CHAIN. */
3093 bool
3094 chain_member (const_tree elem, const_tree chain)
3096 while (chain)
3098 if (elem == chain)
3099 return true;
3100 chain = DECL_CHAIN (chain);
3103 return false;
3106 /* Return the length of a chain of nodes chained through TREE_CHAIN.
3107 We expect a null pointer to mark the end of the chain.
3108 This is the Lisp primitive `length'. */
3111 list_length (const_tree t)
3113 const_tree p = t;
3114 #ifdef ENABLE_TREE_CHECKING
3115 const_tree q = t;
3116 #endif
3117 int len = 0;
3119 while (p)
3121 p = TREE_CHAIN (p);
3122 #ifdef ENABLE_TREE_CHECKING
3123 if (len % 2)
3124 q = TREE_CHAIN (q);
3125 gcc_assert (p != q);
3126 #endif
3127 len++;
3130 return len;
3133 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3134 UNION_TYPE TYPE, or NULL_TREE if none. */
3136 tree
3137 first_field (const_tree type)
3139 tree t = TYPE_FIELDS (type);
3140 while (t && TREE_CODE (t) != FIELD_DECL)
3141 t = TREE_CHAIN (t);
3142 return t;
3145 /* Returns the last FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3146 UNION_TYPE TYPE, or NULL_TREE if none. */
3148 tree
3149 last_field (const_tree type)
3151 tree last = NULL_TREE;
3153 for (tree fld = TYPE_FIELDS (type); fld; fld = TREE_CHAIN (fld))
3155 if (TREE_CODE (fld) != FIELD_DECL)
3156 continue;
3158 last = fld;
3161 return last;
3164 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3165 by modifying the last node in chain 1 to point to chain 2.
3166 This is the Lisp primitive `nconc'. */
3168 tree
3169 chainon (tree op1, tree op2)
3171 tree t1;
3173 if (!op1)
3174 return op2;
3175 if (!op2)
3176 return op1;
3178 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3179 continue;
3180 TREE_CHAIN (t1) = op2;
3182 #ifdef ENABLE_TREE_CHECKING
3184 tree t2;
3185 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3186 gcc_assert (t2 != t1);
3188 #endif
3190 return op1;
3193 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3195 tree
3196 tree_last (tree chain)
3198 tree next;
3199 if (chain)
3200 while ((next = TREE_CHAIN (chain)))
3201 chain = next;
3202 return chain;
3205 /* Reverse the order of elements in the chain T,
3206 and return the new head of the chain (old last element). */
3208 tree
3209 nreverse (tree t)
3211 tree prev = 0, decl, next;
3212 for (decl = t; decl; decl = next)
3214 /* We shouldn't be using this function to reverse BLOCK chains; we
3215 have blocks_nreverse for that. */
3216 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3217 next = TREE_CHAIN (decl);
3218 TREE_CHAIN (decl) = prev;
3219 prev = decl;
3221 return prev;
3224 /* Return a newly created TREE_LIST node whose
3225 purpose and value fields are PARM and VALUE. */
3227 tree
3228 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3230 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3231 TREE_PURPOSE (t) = parm;
3232 TREE_VALUE (t) = value;
3233 return t;
3236 /* Build a chain of TREE_LIST nodes from a vector. */
3238 tree
3239 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3241 tree ret = NULL_TREE;
3242 tree *pp = &ret;
3243 unsigned int i;
3244 tree t;
3245 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3247 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3248 pp = &TREE_CHAIN (*pp);
3250 return ret;
3253 /* Return a newly created TREE_LIST node whose
3254 purpose and value fields are PURPOSE and VALUE
3255 and whose TREE_CHAIN is CHAIN. */
3257 tree
3258 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3260 tree node;
3262 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3263 memset (node, 0, sizeof (struct tree_common));
3265 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3267 TREE_SET_CODE (node, TREE_LIST);
3268 TREE_CHAIN (node) = chain;
3269 TREE_PURPOSE (node) = purpose;
3270 TREE_VALUE (node) = value;
3271 return node;
3274 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3275 trees. */
3277 vec<tree, va_gc> *
3278 ctor_to_vec (tree ctor)
3280 vec<tree, va_gc> *vec;
3281 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3282 unsigned int ix;
3283 tree val;
3285 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3286 vec->quick_push (val);
3288 return vec;
3291 /* Return the size nominally occupied by an object of type TYPE
3292 when it resides in memory. The value is measured in units of bytes,
3293 and its data type is that normally used for type sizes
3294 (which is the first type created by make_signed_type or
3295 make_unsigned_type). */
3297 tree
3298 size_in_bytes_loc (location_t loc, const_tree type)
3300 tree t;
3302 if (type == error_mark_node)
3303 return integer_zero_node;
3305 type = TYPE_MAIN_VARIANT (type);
3306 t = TYPE_SIZE_UNIT (type);
3308 if (t == 0)
3310 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3311 return size_zero_node;
3314 return t;
3317 /* Return the size of TYPE (in bytes) as a wide integer
3318 or return -1 if the size can vary or is larger than an integer. */
3320 HOST_WIDE_INT
3321 int_size_in_bytes (const_tree type)
3323 tree t;
3325 if (type == error_mark_node)
3326 return 0;
3328 type = TYPE_MAIN_VARIANT (type);
3329 t = TYPE_SIZE_UNIT (type);
3331 if (t && tree_fits_uhwi_p (t))
3332 return TREE_INT_CST_LOW (t);
3333 else
3334 return -1;
3337 /* Return the maximum size of TYPE (in bytes) as a wide integer
3338 or return -1 if the size can vary or is larger than an integer. */
3340 HOST_WIDE_INT
3341 max_int_size_in_bytes (const_tree type)
3343 HOST_WIDE_INT size = -1;
3344 tree size_tree;
3346 /* If this is an array type, check for a possible MAX_SIZE attached. */
3348 if (TREE_CODE (type) == ARRAY_TYPE)
3350 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3352 if (size_tree && tree_fits_uhwi_p (size_tree))
3353 size = tree_to_uhwi (size_tree);
3356 /* If we still haven't been able to get a size, see if the language
3357 can compute a maximum size. */
3359 if (size == -1)
3361 size_tree = lang_hooks.types.max_size (type);
3363 if (size_tree && tree_fits_uhwi_p (size_tree))
3364 size = tree_to_uhwi (size_tree);
3367 return size;
3370 /* Return the bit position of FIELD, in bits from the start of the record.
3371 This is a tree of type bitsizetype. */
3373 tree
3374 bit_position (const_tree field)
3376 return bit_from_pos (DECL_FIELD_OFFSET (field),
3377 DECL_FIELD_BIT_OFFSET (field));
3380 /* Return the byte position of FIELD, in bytes from the start of the record.
3381 This is a tree of type sizetype. */
3383 tree
3384 byte_position (const_tree field)
3386 return byte_from_pos (DECL_FIELD_OFFSET (field),
3387 DECL_FIELD_BIT_OFFSET (field));
3390 /* Likewise, but return as an integer. It must be representable in
3391 that way (since it could be a signed value, we don't have the
3392 option of returning -1 like int_size_in_byte can. */
3394 HOST_WIDE_INT
3395 int_byte_position (const_tree field)
3397 return tree_to_shwi (byte_position (field));
3400 /* Return, as a tree node, the number of elements for TYPE (which is an
3401 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3403 tree
3404 array_type_nelts (const_tree type)
3406 tree index_type, min, max;
3408 /* If they did it with unspecified bounds, then we should have already
3409 given an error about it before we got here. */
3410 if (! TYPE_DOMAIN (type))
3411 return error_mark_node;
3413 index_type = TYPE_DOMAIN (type);
3414 min = TYPE_MIN_VALUE (index_type);
3415 max = TYPE_MAX_VALUE (index_type);
3417 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3418 if (!max)
3419 return error_mark_node;
3421 return (integer_zerop (min)
3422 ? max
3423 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3426 /* If arg is static -- a reference to an object in static storage -- then
3427 return the object. This is not the same as the C meaning of `static'.
3428 If arg isn't static, return NULL. */
3430 tree
3431 staticp (tree arg)
3433 switch (TREE_CODE (arg))
3435 case FUNCTION_DECL:
3436 /* Nested functions are static, even though taking their address will
3437 involve a trampoline as we unnest the nested function and create
3438 the trampoline on the tree level. */
3439 return arg;
3441 case VAR_DECL:
3442 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3443 && ! DECL_THREAD_LOCAL_P (arg)
3444 && ! DECL_DLLIMPORT_P (arg)
3445 ? arg : NULL);
3447 case CONST_DECL:
3448 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3449 ? arg : NULL);
3451 case CONSTRUCTOR:
3452 return TREE_STATIC (arg) ? arg : NULL;
3454 case LABEL_DECL:
3455 case STRING_CST:
3456 return arg;
3458 case COMPONENT_REF:
3459 /* If the thing being referenced is not a field, then it is
3460 something language specific. */
3461 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3463 /* If we are referencing a bitfield, we can't evaluate an
3464 ADDR_EXPR at compile time and so it isn't a constant. */
3465 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3466 return NULL;
3468 return staticp (TREE_OPERAND (arg, 0));
3470 case BIT_FIELD_REF:
3471 return NULL;
3473 case INDIRECT_REF:
3474 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3476 case ARRAY_REF:
3477 case ARRAY_RANGE_REF:
3478 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3479 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3480 return staticp (TREE_OPERAND (arg, 0));
3481 else
3482 return NULL;
3484 case COMPOUND_LITERAL_EXPR:
3485 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3487 default:
3488 return NULL;
3495 /* Return whether OP is a DECL whose address is function-invariant. */
3497 bool
3498 decl_address_invariant_p (const_tree op)
3500 /* The conditions below are slightly less strict than the one in
3501 staticp. */
3503 switch (TREE_CODE (op))
3505 case PARM_DECL:
3506 case RESULT_DECL:
3507 case LABEL_DECL:
3508 case FUNCTION_DECL:
3509 return true;
3511 case VAR_DECL:
3512 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3513 || DECL_THREAD_LOCAL_P (op)
3514 || DECL_CONTEXT (op) == current_function_decl
3515 || decl_function_context (op) == current_function_decl)
3516 return true;
3517 break;
3519 case CONST_DECL:
3520 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3521 || decl_function_context (op) == current_function_decl)
3522 return true;
3523 break;
3525 default:
3526 break;
3529 return false;
3532 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3534 bool
3535 decl_address_ip_invariant_p (const_tree op)
3537 /* The conditions below are slightly less strict than the one in
3538 staticp. */
3540 switch (TREE_CODE (op))
3542 case LABEL_DECL:
3543 case FUNCTION_DECL:
3544 case STRING_CST:
3545 return true;
3547 case VAR_DECL:
3548 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3549 && !DECL_DLLIMPORT_P (op))
3550 || DECL_THREAD_LOCAL_P (op))
3551 return true;
3552 break;
3554 case CONST_DECL:
3555 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3556 return true;
3557 break;
3559 default:
3560 break;
3563 return false;
3567 /* Return true if T is function-invariant (internal function, does
3568 not handle arithmetic; that's handled in skip_simple_arithmetic and
3569 tree_invariant_p). */
3571 static bool
3572 tree_invariant_p_1 (tree t)
3574 tree op;
3576 if (TREE_CONSTANT (t)
3577 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3578 return true;
3580 switch (TREE_CODE (t))
3582 case SAVE_EXPR:
3583 return true;
3585 case ADDR_EXPR:
3586 op = TREE_OPERAND (t, 0);
3587 while (handled_component_p (op))
3589 switch (TREE_CODE (op))
3591 case ARRAY_REF:
3592 case ARRAY_RANGE_REF:
3593 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3594 || TREE_OPERAND (op, 2) != NULL_TREE
3595 || TREE_OPERAND (op, 3) != NULL_TREE)
3596 return false;
3597 break;
3599 case COMPONENT_REF:
3600 if (TREE_OPERAND (op, 2) != NULL_TREE)
3601 return false;
3602 break;
3604 default:;
3606 op = TREE_OPERAND (op, 0);
3609 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3611 default:
3612 break;
3615 return false;
3618 /* Return true if T is function-invariant. */
3620 bool
3621 tree_invariant_p (tree t)
3623 tree inner = skip_simple_arithmetic (t);
3624 return tree_invariant_p_1 (inner);
3627 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3628 Do this to any expression which may be used in more than one place,
3629 but must be evaluated only once.
3631 Normally, expand_expr would reevaluate the expression each time.
3632 Calling save_expr produces something that is evaluated and recorded
3633 the first time expand_expr is called on it. Subsequent calls to
3634 expand_expr just reuse the recorded value.
3636 The call to expand_expr that generates code that actually computes
3637 the value is the first call *at compile time*. Subsequent calls
3638 *at compile time* generate code to use the saved value.
3639 This produces correct result provided that *at run time* control
3640 always flows through the insns made by the first expand_expr
3641 before reaching the other places where the save_expr was evaluated.
3642 You, the caller of save_expr, must make sure this is so.
3644 Constants, and certain read-only nodes, are returned with no
3645 SAVE_EXPR because that is safe. Expressions containing placeholders
3646 are not touched; see tree.def for an explanation of what these
3647 are used for. */
3649 tree
3650 save_expr (tree expr)
3652 tree inner;
3654 /* If the tree evaluates to a constant, then we don't want to hide that
3655 fact (i.e. this allows further folding, and direct checks for constants).
3656 However, a read-only object that has side effects cannot be bypassed.
3657 Since it is no problem to reevaluate literals, we just return the
3658 literal node. */
3659 inner = skip_simple_arithmetic (expr);
3660 if (TREE_CODE (inner) == ERROR_MARK)
3661 return inner;
3663 if (tree_invariant_p_1 (inner))
3664 return expr;
3666 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3667 it means that the size or offset of some field of an object depends on
3668 the value within another field.
3670 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3671 and some variable since it would then need to be both evaluated once and
3672 evaluated more than once. Front-ends must assure this case cannot
3673 happen by surrounding any such subexpressions in their own SAVE_EXPR
3674 and forcing evaluation at the proper time. */
3675 if (contains_placeholder_p (inner))
3676 return expr;
3678 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3680 /* This expression might be placed ahead of a jump to ensure that the
3681 value was computed on both sides of the jump. So make sure it isn't
3682 eliminated as dead. */
3683 TREE_SIDE_EFFECTS (expr) = 1;
3684 return expr;
3687 /* Look inside EXPR into any simple arithmetic operations. Return the
3688 outermost non-arithmetic or non-invariant node. */
3690 tree
3691 skip_simple_arithmetic (tree expr)
3693 /* We don't care about whether this can be used as an lvalue in this
3694 context. */
3695 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3696 expr = TREE_OPERAND (expr, 0);
3698 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3699 a constant, it will be more efficient to not make another SAVE_EXPR since
3700 it will allow better simplification and GCSE will be able to merge the
3701 computations if they actually occur. */
3702 while (true)
3704 if (UNARY_CLASS_P (expr))
3705 expr = TREE_OPERAND (expr, 0);
3706 else if (BINARY_CLASS_P (expr))
3708 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3709 expr = TREE_OPERAND (expr, 0);
3710 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3711 expr = TREE_OPERAND (expr, 1);
3712 else
3713 break;
3715 else
3716 break;
3719 return expr;
3722 /* Look inside EXPR into simple arithmetic operations involving constants.
3723 Return the outermost non-arithmetic or non-constant node. */
3725 tree
3726 skip_simple_constant_arithmetic (tree expr)
3728 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3729 expr = TREE_OPERAND (expr, 0);
3731 while (true)
3733 if (UNARY_CLASS_P (expr))
3734 expr = TREE_OPERAND (expr, 0);
3735 else if (BINARY_CLASS_P (expr))
3737 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3738 expr = TREE_OPERAND (expr, 0);
3739 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3740 expr = TREE_OPERAND (expr, 1);
3741 else
3742 break;
3744 else
3745 break;
3748 return expr;
3751 /* Return which tree structure is used by T. */
3753 enum tree_node_structure_enum
3754 tree_node_structure (const_tree t)
3756 const enum tree_code code = TREE_CODE (t);
3757 return tree_node_structure_for_code (code);
3760 /* Set various status flags when building a CALL_EXPR object T. */
3762 static void
3763 process_call_operands (tree t)
3765 bool side_effects = TREE_SIDE_EFFECTS (t);
3766 bool read_only = false;
3767 int i = call_expr_flags (t);
3769 /* Calls have side-effects, except those to const or pure functions. */
3770 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3771 side_effects = true;
3772 /* Propagate TREE_READONLY of arguments for const functions. */
3773 if (i & ECF_CONST)
3774 read_only = true;
3776 if (!side_effects || read_only)
3777 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3779 tree op = TREE_OPERAND (t, i);
3780 if (op && TREE_SIDE_EFFECTS (op))
3781 side_effects = true;
3782 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3783 read_only = false;
3786 TREE_SIDE_EFFECTS (t) = side_effects;
3787 TREE_READONLY (t) = read_only;
3790 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3791 size or offset that depends on a field within a record. */
3793 bool
3794 contains_placeholder_p (const_tree exp)
3796 enum tree_code code;
3798 if (!exp)
3799 return 0;
3801 code = TREE_CODE (exp);
3802 if (code == PLACEHOLDER_EXPR)
3803 return 1;
3805 switch (TREE_CODE_CLASS (code))
3807 case tcc_reference:
3808 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3809 position computations since they will be converted into a
3810 WITH_RECORD_EXPR involving the reference, which will assume
3811 here will be valid. */
3812 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3814 case tcc_exceptional:
3815 if (code == TREE_LIST)
3816 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3817 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3818 break;
3820 case tcc_unary:
3821 case tcc_binary:
3822 case tcc_comparison:
3823 case tcc_expression:
3824 switch (code)
3826 case COMPOUND_EXPR:
3827 /* Ignoring the first operand isn't quite right, but works best. */
3828 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3830 case COND_EXPR:
3831 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3832 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3833 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3835 case SAVE_EXPR:
3836 /* The save_expr function never wraps anything containing
3837 a PLACEHOLDER_EXPR. */
3838 return 0;
3840 default:
3841 break;
3844 switch (TREE_CODE_LENGTH (code))
3846 case 1:
3847 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3848 case 2:
3849 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3850 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3851 default:
3852 return 0;
3855 case tcc_vl_exp:
3856 switch (code)
3858 case CALL_EXPR:
3860 const_tree arg;
3861 const_call_expr_arg_iterator iter;
3862 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3863 if (CONTAINS_PLACEHOLDER_P (arg))
3864 return 1;
3865 return 0;
3867 default:
3868 return 0;
3871 default:
3872 return 0;
3874 return 0;
3877 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3878 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3879 field positions. */
3881 static bool
3882 type_contains_placeholder_1 (const_tree type)
3884 /* If the size contains a placeholder or the parent type (component type in
3885 the case of arrays) type involves a placeholder, this type does. */
3886 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3887 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3888 || (!POINTER_TYPE_P (type)
3889 && TREE_TYPE (type)
3890 && type_contains_placeholder_p (TREE_TYPE (type))))
3891 return true;
3893 /* Now do type-specific checks. Note that the last part of the check above
3894 greatly limits what we have to do below. */
3895 switch (TREE_CODE (type))
3897 case VOID_TYPE:
3898 case COMPLEX_TYPE:
3899 case ENUMERAL_TYPE:
3900 case BOOLEAN_TYPE:
3901 case POINTER_TYPE:
3902 case OFFSET_TYPE:
3903 case REFERENCE_TYPE:
3904 case METHOD_TYPE:
3905 case FUNCTION_TYPE:
3906 case VECTOR_TYPE:
3907 case NULLPTR_TYPE:
3908 return false;
3910 case INTEGER_TYPE:
3911 case REAL_TYPE:
3912 case FIXED_POINT_TYPE:
3913 /* Here we just check the bounds. */
3914 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3915 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3917 case ARRAY_TYPE:
3918 /* We have already checked the component type above, so just check
3919 the domain type. Flexible array members have a null domain. */
3920 return TYPE_DOMAIN (type) ?
3921 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3923 case RECORD_TYPE:
3924 case UNION_TYPE:
3925 case QUAL_UNION_TYPE:
3927 tree field;
3929 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3930 if (TREE_CODE (field) == FIELD_DECL
3931 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3932 || (TREE_CODE (type) == QUAL_UNION_TYPE
3933 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3934 || type_contains_placeholder_p (TREE_TYPE (field))))
3935 return true;
3937 return false;
3940 default:
3941 gcc_unreachable ();
3945 /* Wrapper around above function used to cache its result. */
3947 bool
3948 type_contains_placeholder_p (tree type)
3950 bool result;
3952 /* If the contains_placeholder_bits field has been initialized,
3953 then we know the answer. */
3954 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3955 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3957 /* Indicate that we've seen this type node, and the answer is false.
3958 This is what we want to return if we run into recursion via fields. */
3959 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3961 /* Compute the real value. */
3962 result = type_contains_placeholder_1 (type);
3964 /* Store the real value. */
3965 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3967 return result;
3970 /* Push tree EXP onto vector QUEUE if it is not already present. */
3972 static void
3973 push_without_duplicates (tree exp, vec<tree> *queue)
3975 unsigned int i;
3976 tree iter;
3978 FOR_EACH_VEC_ELT (*queue, i, iter)
3979 if (simple_cst_equal (iter, exp) == 1)
3980 break;
3982 if (!iter)
3983 queue->safe_push (exp);
3986 /* Given a tree EXP, find all occurrences of references to fields
3987 in a PLACEHOLDER_EXPR and place them in vector REFS without
3988 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3989 we assume here that EXP contains only arithmetic expressions
3990 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3991 argument list. */
3993 void
3994 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3996 enum tree_code code = TREE_CODE (exp);
3997 tree inner;
3998 int i;
4000 /* We handle TREE_LIST and COMPONENT_REF separately. */
4001 if (code == TREE_LIST)
4003 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
4004 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
4006 else if (code == COMPONENT_REF)
4008 for (inner = TREE_OPERAND (exp, 0);
4009 REFERENCE_CLASS_P (inner);
4010 inner = TREE_OPERAND (inner, 0))
4013 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
4014 push_without_duplicates (exp, refs);
4015 else
4016 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
4018 else
4019 switch (TREE_CODE_CLASS (code))
4021 case tcc_constant:
4022 break;
4024 case tcc_declaration:
4025 /* Variables allocated to static storage can stay. */
4026 if (!TREE_STATIC (exp))
4027 push_without_duplicates (exp, refs);
4028 break;
4030 case tcc_expression:
4031 /* This is the pattern built in ada/make_aligning_type. */
4032 if (code == ADDR_EXPR
4033 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
4035 push_without_duplicates (exp, refs);
4036 break;
4039 /* Fall through. */
4041 case tcc_exceptional:
4042 case tcc_unary:
4043 case tcc_binary:
4044 case tcc_comparison:
4045 case tcc_reference:
4046 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
4047 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4048 break;
4050 case tcc_vl_exp:
4051 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4052 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4053 break;
4055 default:
4056 gcc_unreachable ();
4060 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
4061 return a tree with all occurrences of references to F in a
4062 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
4063 CONST_DECLs. Note that we assume here that EXP contains only
4064 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
4065 occurring only in their argument list. */
4067 tree
4068 substitute_in_expr (tree exp, tree f, tree r)
4070 enum tree_code code = TREE_CODE (exp);
4071 tree op0, op1, op2, op3;
4072 tree new_tree;
4074 /* We handle TREE_LIST and COMPONENT_REF separately. */
4075 if (code == TREE_LIST)
4077 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
4078 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
4079 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4080 return exp;
4082 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4084 else if (code == COMPONENT_REF)
4086 tree inner;
4088 /* If this expression is getting a value from a PLACEHOLDER_EXPR
4089 and it is the right field, replace it with R. */
4090 for (inner = TREE_OPERAND (exp, 0);
4091 REFERENCE_CLASS_P (inner);
4092 inner = TREE_OPERAND (inner, 0))
4095 /* The field. */
4096 op1 = TREE_OPERAND (exp, 1);
4098 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
4099 return r;
4101 /* If this expression hasn't been completed let, leave it alone. */
4102 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
4103 return exp;
4105 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4106 if (op0 == TREE_OPERAND (exp, 0))
4107 return exp;
4109 new_tree
4110 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4112 else
4113 switch (TREE_CODE_CLASS (code))
4115 case tcc_constant:
4116 return exp;
4118 case tcc_declaration:
4119 if (exp == f)
4120 return r;
4121 else
4122 return exp;
4124 case tcc_expression:
4125 if (exp == f)
4126 return r;
4128 /* Fall through. */
4130 case tcc_exceptional:
4131 case tcc_unary:
4132 case tcc_binary:
4133 case tcc_comparison:
4134 case tcc_reference:
4135 switch (TREE_CODE_LENGTH (code))
4137 case 0:
4138 return exp;
4140 case 1:
4141 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4142 if (op0 == TREE_OPERAND (exp, 0))
4143 return exp;
4145 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4146 break;
4148 case 2:
4149 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4150 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4152 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4153 return exp;
4155 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4156 break;
4158 case 3:
4159 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4160 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4161 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4163 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4164 && op2 == TREE_OPERAND (exp, 2))
4165 return exp;
4167 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4168 break;
4170 case 4:
4171 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4172 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4173 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4174 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4176 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4177 && op2 == TREE_OPERAND (exp, 2)
4178 && op3 == TREE_OPERAND (exp, 3))
4179 return exp;
4181 new_tree
4182 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4183 break;
4185 default:
4186 gcc_unreachable ();
4188 break;
4190 case tcc_vl_exp:
4192 int i;
4194 new_tree = NULL_TREE;
4196 /* If we are trying to replace F with a constant or with another
4197 instance of one of the arguments of the call, inline back
4198 functions which do nothing else than computing a value from
4199 the arguments they are passed. This makes it possible to
4200 fold partially or entirely the replacement expression. */
4201 if (code == CALL_EXPR)
4203 bool maybe_inline = false;
4204 if (CONSTANT_CLASS_P (r))
4205 maybe_inline = true;
4206 else
4207 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4208 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4210 maybe_inline = true;
4211 break;
4213 if (maybe_inline)
4215 tree t = maybe_inline_call_in_expr (exp);
4216 if (t)
4217 return SUBSTITUTE_IN_EXPR (t, f, r);
4221 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4223 tree op = TREE_OPERAND (exp, i);
4224 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4225 if (new_op != op)
4227 if (!new_tree)
4228 new_tree = copy_node (exp);
4229 TREE_OPERAND (new_tree, i) = new_op;
4233 if (new_tree)
4235 new_tree = fold (new_tree);
4236 if (TREE_CODE (new_tree) == CALL_EXPR)
4237 process_call_operands (new_tree);
4239 else
4240 return exp;
4242 break;
4244 default:
4245 gcc_unreachable ();
4248 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4250 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4251 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4253 return new_tree;
4256 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4257 for it within OBJ, a tree that is an object or a chain of references. */
4259 tree
4260 substitute_placeholder_in_expr (tree exp, tree obj)
4262 enum tree_code code = TREE_CODE (exp);
4263 tree op0, op1, op2, op3;
4264 tree new_tree;
4266 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4267 in the chain of OBJ. */
4268 if (code == PLACEHOLDER_EXPR)
4270 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4271 tree elt;
4273 for (elt = obj; elt != 0;
4274 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4275 || TREE_CODE (elt) == COND_EXPR)
4276 ? TREE_OPERAND (elt, 1)
4277 : (REFERENCE_CLASS_P (elt)
4278 || UNARY_CLASS_P (elt)
4279 || BINARY_CLASS_P (elt)
4280 || VL_EXP_CLASS_P (elt)
4281 || EXPRESSION_CLASS_P (elt))
4282 ? TREE_OPERAND (elt, 0) : 0))
4283 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4284 return elt;
4286 for (elt = obj; elt != 0;
4287 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4288 || TREE_CODE (elt) == COND_EXPR)
4289 ? TREE_OPERAND (elt, 1)
4290 : (REFERENCE_CLASS_P (elt)
4291 || UNARY_CLASS_P (elt)
4292 || BINARY_CLASS_P (elt)
4293 || VL_EXP_CLASS_P (elt)
4294 || EXPRESSION_CLASS_P (elt))
4295 ? TREE_OPERAND (elt, 0) : 0))
4296 if (POINTER_TYPE_P (TREE_TYPE (elt))
4297 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4298 == need_type))
4299 return fold_build1 (INDIRECT_REF, need_type, elt);
4301 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4302 survives until RTL generation, there will be an error. */
4303 return exp;
4306 /* TREE_LIST is special because we need to look at TREE_VALUE
4307 and TREE_CHAIN, not TREE_OPERANDS. */
4308 else if (code == TREE_LIST)
4310 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4311 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4312 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4313 return exp;
4315 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4317 else
4318 switch (TREE_CODE_CLASS (code))
4320 case tcc_constant:
4321 case tcc_declaration:
4322 return exp;
4324 case tcc_exceptional:
4325 case tcc_unary:
4326 case tcc_binary:
4327 case tcc_comparison:
4328 case tcc_expression:
4329 case tcc_reference:
4330 case tcc_statement:
4331 switch (TREE_CODE_LENGTH (code))
4333 case 0:
4334 return exp;
4336 case 1:
4337 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4338 if (op0 == TREE_OPERAND (exp, 0))
4339 return exp;
4341 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4342 break;
4344 case 2:
4345 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4346 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4348 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4349 return exp;
4351 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4352 break;
4354 case 3:
4355 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4356 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4357 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4359 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4360 && op2 == TREE_OPERAND (exp, 2))
4361 return exp;
4363 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4364 break;
4366 case 4:
4367 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4368 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4369 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4370 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4372 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4373 && op2 == TREE_OPERAND (exp, 2)
4374 && op3 == TREE_OPERAND (exp, 3))
4375 return exp;
4377 new_tree
4378 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4379 break;
4381 default:
4382 gcc_unreachable ();
4384 break;
4386 case tcc_vl_exp:
4388 int i;
4390 new_tree = NULL_TREE;
4392 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4394 tree op = TREE_OPERAND (exp, i);
4395 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4396 if (new_op != op)
4398 if (!new_tree)
4399 new_tree = copy_node (exp);
4400 TREE_OPERAND (new_tree, i) = new_op;
4404 if (new_tree)
4406 new_tree = fold (new_tree);
4407 if (TREE_CODE (new_tree) == CALL_EXPR)
4408 process_call_operands (new_tree);
4410 else
4411 return exp;
4413 break;
4415 default:
4416 gcc_unreachable ();
4419 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4421 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4422 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4424 return new_tree;
4428 /* Subroutine of stabilize_reference; this is called for subtrees of
4429 references. Any expression with side-effects must be put in a SAVE_EXPR
4430 to ensure that it is only evaluated once.
4432 We don't put SAVE_EXPR nodes around everything, because assigning very
4433 simple expressions to temporaries causes us to miss good opportunities
4434 for optimizations. Among other things, the opportunity to fold in the
4435 addition of a constant into an addressing mode often gets lost, e.g.
4436 "y[i+1] += x;". In general, we take the approach that we should not make
4437 an assignment unless we are forced into it - i.e., that any non-side effect
4438 operator should be allowed, and that cse should take care of coalescing
4439 multiple utterances of the same expression should that prove fruitful. */
4441 static tree
4442 stabilize_reference_1 (tree e)
4444 tree result;
4445 enum tree_code code = TREE_CODE (e);
4447 /* We cannot ignore const expressions because it might be a reference
4448 to a const array but whose index contains side-effects. But we can
4449 ignore things that are actual constant or that already have been
4450 handled by this function. */
4452 if (tree_invariant_p (e))
4453 return e;
4455 switch (TREE_CODE_CLASS (code))
4457 case tcc_exceptional:
4458 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4459 have side-effects. */
4460 if (code == STATEMENT_LIST)
4461 return save_expr (e);
4462 /* FALLTHRU */
4463 case tcc_type:
4464 case tcc_declaration:
4465 case tcc_comparison:
4466 case tcc_statement:
4467 case tcc_expression:
4468 case tcc_reference:
4469 case tcc_vl_exp:
4470 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4471 so that it will only be evaluated once. */
4472 /* The reference (r) and comparison (<) classes could be handled as
4473 below, but it is generally faster to only evaluate them once. */
4474 if (TREE_SIDE_EFFECTS (e))
4475 return save_expr (e);
4476 return e;
4478 case tcc_constant:
4479 /* Constants need no processing. In fact, we should never reach
4480 here. */
4481 return e;
4483 case tcc_binary:
4484 /* Division is slow and tends to be compiled with jumps,
4485 especially the division by powers of 2 that is often
4486 found inside of an array reference. So do it just once. */
4487 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4488 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4489 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4490 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4491 return save_expr (e);
4492 /* Recursively stabilize each operand. */
4493 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4494 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4495 break;
4497 case tcc_unary:
4498 /* Recursively stabilize each operand. */
4499 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4500 break;
4502 default:
4503 gcc_unreachable ();
4506 TREE_TYPE (result) = TREE_TYPE (e);
4507 TREE_READONLY (result) = TREE_READONLY (e);
4508 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4509 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4511 return result;
4514 /* Stabilize a reference so that we can use it any number of times
4515 without causing its operands to be evaluated more than once.
4516 Returns the stabilized reference. This works by means of save_expr,
4517 so see the caveats in the comments about save_expr.
4519 Also allows conversion expressions whose operands are references.
4520 Any other kind of expression is returned unchanged. */
4522 tree
4523 stabilize_reference (tree ref)
4525 tree result;
4526 enum tree_code code = TREE_CODE (ref);
4528 switch (code)
4530 case VAR_DECL:
4531 case PARM_DECL:
4532 case RESULT_DECL:
4533 /* No action is needed in this case. */
4534 return ref;
4536 CASE_CONVERT:
4537 case FLOAT_EXPR:
4538 case FIX_TRUNC_EXPR:
4539 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4540 break;
4542 case INDIRECT_REF:
4543 result = build_nt (INDIRECT_REF,
4544 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4545 break;
4547 case COMPONENT_REF:
4548 result = build_nt (COMPONENT_REF,
4549 stabilize_reference (TREE_OPERAND (ref, 0)),
4550 TREE_OPERAND (ref, 1), NULL_TREE);
4551 break;
4553 case BIT_FIELD_REF:
4554 result = build_nt (BIT_FIELD_REF,
4555 stabilize_reference (TREE_OPERAND (ref, 0)),
4556 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4557 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4558 break;
4560 case ARRAY_REF:
4561 result = build_nt (ARRAY_REF,
4562 stabilize_reference (TREE_OPERAND (ref, 0)),
4563 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4564 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4565 break;
4567 case ARRAY_RANGE_REF:
4568 result = build_nt (ARRAY_RANGE_REF,
4569 stabilize_reference (TREE_OPERAND (ref, 0)),
4570 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4571 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4572 break;
4574 case COMPOUND_EXPR:
4575 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4576 it wouldn't be ignored. This matters when dealing with
4577 volatiles. */
4578 return stabilize_reference_1 (ref);
4580 /* If arg isn't a kind of lvalue we recognize, make no change.
4581 Caller should recognize the error for an invalid lvalue. */
4582 default:
4583 return ref;
4585 case ERROR_MARK:
4586 return error_mark_node;
4589 TREE_TYPE (result) = TREE_TYPE (ref);
4590 TREE_READONLY (result) = TREE_READONLY (ref);
4591 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4592 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4594 return result;
4597 /* Low-level constructors for expressions. */
4599 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4600 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4602 void
4603 recompute_tree_invariant_for_addr_expr (tree t)
4605 tree node;
4606 bool tc = true, se = false;
4608 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4610 /* We started out assuming this address is both invariant and constant, but
4611 does not have side effects. Now go down any handled components and see if
4612 any of them involve offsets that are either non-constant or non-invariant.
4613 Also check for side-effects.
4615 ??? Note that this code makes no attempt to deal with the case where
4616 taking the address of something causes a copy due to misalignment. */
4618 #define UPDATE_FLAGS(NODE) \
4619 do { tree _node = (NODE); \
4620 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4621 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4623 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4624 node = TREE_OPERAND (node, 0))
4626 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4627 array reference (probably made temporarily by the G++ front end),
4628 so ignore all the operands. */
4629 if ((TREE_CODE (node) == ARRAY_REF
4630 || TREE_CODE (node) == ARRAY_RANGE_REF)
4631 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4633 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4634 if (TREE_OPERAND (node, 2))
4635 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4636 if (TREE_OPERAND (node, 3))
4637 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4639 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4640 FIELD_DECL, apparently. The G++ front end can put something else
4641 there, at least temporarily. */
4642 else if (TREE_CODE (node) == COMPONENT_REF
4643 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4645 if (TREE_OPERAND (node, 2))
4646 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4650 node = lang_hooks.expr_to_decl (node, &tc, &se);
4652 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4653 the address, since &(*a)->b is a form of addition. If it's a constant, the
4654 address is constant too. If it's a decl, its address is constant if the
4655 decl is static. Everything else is not constant and, furthermore,
4656 taking the address of a volatile variable is not volatile. */
4657 if (TREE_CODE (node) == INDIRECT_REF
4658 || TREE_CODE (node) == MEM_REF)
4659 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4660 else if (CONSTANT_CLASS_P (node))
4662 else if (DECL_P (node))
4663 tc &= (staticp (node) != NULL_TREE);
4664 else
4666 tc = false;
4667 se |= TREE_SIDE_EFFECTS (node);
4671 TREE_CONSTANT (t) = tc;
4672 TREE_SIDE_EFFECTS (t) = se;
4673 #undef UPDATE_FLAGS
4676 /* Build an expression of code CODE, data type TYPE, and operands as
4677 specified. Expressions and reference nodes can be created this way.
4678 Constants, decls, types and misc nodes cannot be.
4680 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4681 enough for all extant tree codes. */
4683 tree
4684 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4686 tree t;
4688 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4690 t = make_node (code PASS_MEM_STAT);
4691 TREE_TYPE (t) = tt;
4693 return t;
4696 tree
4697 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4699 int length = sizeof (struct tree_exp);
4700 tree t;
4702 record_node_allocation_statistics (code, length);
4704 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4706 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4708 memset (t, 0, sizeof (struct tree_common));
4710 TREE_SET_CODE (t, code);
4712 TREE_TYPE (t) = type;
4713 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4714 TREE_OPERAND (t, 0) = node;
4715 if (node && !TYPE_P (node))
4717 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4718 TREE_READONLY (t) = TREE_READONLY (node);
4721 if (TREE_CODE_CLASS (code) == tcc_statement)
4723 if (code != DEBUG_BEGIN_STMT)
4724 TREE_SIDE_EFFECTS (t) = 1;
4726 else switch (code)
4728 case VA_ARG_EXPR:
4729 /* All of these have side-effects, no matter what their
4730 operands are. */
4731 TREE_SIDE_EFFECTS (t) = 1;
4732 TREE_READONLY (t) = 0;
4733 break;
4735 case INDIRECT_REF:
4736 /* Whether a dereference is readonly has nothing to do with whether
4737 its operand is readonly. */
4738 TREE_READONLY (t) = 0;
4739 break;
4741 case ADDR_EXPR:
4742 if (node)
4743 recompute_tree_invariant_for_addr_expr (t);
4744 break;
4746 default:
4747 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4748 && node && !TYPE_P (node)
4749 && TREE_CONSTANT (node))
4750 TREE_CONSTANT (t) = 1;
4751 if (TREE_CODE_CLASS (code) == tcc_reference
4752 && node && TREE_THIS_VOLATILE (node))
4753 TREE_THIS_VOLATILE (t) = 1;
4754 break;
4757 return t;
4760 #define PROCESS_ARG(N) \
4761 do { \
4762 TREE_OPERAND (t, N) = arg##N; \
4763 if (arg##N &&!TYPE_P (arg##N)) \
4765 if (TREE_SIDE_EFFECTS (arg##N)) \
4766 side_effects = 1; \
4767 if (!TREE_READONLY (arg##N) \
4768 && !CONSTANT_CLASS_P (arg##N)) \
4769 (void) (read_only = 0); \
4770 if (!TREE_CONSTANT (arg##N)) \
4771 (void) (constant = 0); \
4773 } while (0)
4775 tree
4776 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4778 bool constant, read_only, side_effects, div_by_zero;
4779 tree t;
4781 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4783 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4784 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4785 /* When sizetype precision doesn't match that of pointers
4786 we need to be able to build explicit extensions or truncations
4787 of the offset argument. */
4788 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4789 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4790 && TREE_CODE (arg1) == INTEGER_CST);
4792 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4793 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4794 && ptrofftype_p (TREE_TYPE (arg1)));
4796 t = make_node (code PASS_MEM_STAT);
4797 TREE_TYPE (t) = tt;
4799 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4800 result based on those same flags for the arguments. But if the
4801 arguments aren't really even `tree' expressions, we shouldn't be trying
4802 to do this. */
4804 /* Expressions without side effects may be constant if their
4805 arguments are as well. */
4806 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4807 || TREE_CODE_CLASS (code) == tcc_binary);
4808 read_only = 1;
4809 side_effects = TREE_SIDE_EFFECTS (t);
4811 switch (code)
4813 case TRUNC_DIV_EXPR:
4814 case CEIL_DIV_EXPR:
4815 case FLOOR_DIV_EXPR:
4816 case ROUND_DIV_EXPR:
4817 case EXACT_DIV_EXPR:
4818 case CEIL_MOD_EXPR:
4819 case FLOOR_MOD_EXPR:
4820 case ROUND_MOD_EXPR:
4821 case TRUNC_MOD_EXPR:
4822 div_by_zero = integer_zerop (arg1);
4823 break;
4824 default:
4825 div_by_zero = false;
4828 PROCESS_ARG (0);
4829 PROCESS_ARG (1);
4831 TREE_SIDE_EFFECTS (t) = side_effects;
4832 if (code == MEM_REF)
4834 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4836 tree o = TREE_OPERAND (arg0, 0);
4837 TREE_READONLY (t) = TREE_READONLY (o);
4838 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4841 else
4843 TREE_READONLY (t) = read_only;
4844 /* Don't mark X / 0 as constant. */
4845 TREE_CONSTANT (t) = constant && !div_by_zero;
4846 TREE_THIS_VOLATILE (t)
4847 = (TREE_CODE_CLASS (code) == tcc_reference
4848 && arg0 && TREE_THIS_VOLATILE (arg0));
4851 return t;
4855 tree
4856 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4857 tree arg2 MEM_STAT_DECL)
4859 bool constant, read_only, side_effects;
4860 tree t;
4862 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4863 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4865 t = make_node (code PASS_MEM_STAT);
4866 TREE_TYPE (t) = tt;
4868 read_only = 1;
4870 /* As a special exception, if COND_EXPR has NULL branches, we
4871 assume that it is a gimple statement and always consider
4872 it to have side effects. */
4873 if (code == COND_EXPR
4874 && tt == void_type_node
4875 && arg1 == NULL_TREE
4876 && arg2 == NULL_TREE)
4877 side_effects = true;
4878 else
4879 side_effects = TREE_SIDE_EFFECTS (t);
4881 PROCESS_ARG (0);
4882 PROCESS_ARG (1);
4883 PROCESS_ARG (2);
4885 if (code == COND_EXPR)
4886 TREE_READONLY (t) = read_only;
4888 TREE_SIDE_EFFECTS (t) = side_effects;
4889 TREE_THIS_VOLATILE (t)
4890 = (TREE_CODE_CLASS (code) == tcc_reference
4891 && arg0 && TREE_THIS_VOLATILE (arg0));
4893 return t;
4896 tree
4897 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4898 tree arg2, tree arg3 MEM_STAT_DECL)
4900 bool constant, read_only, side_effects;
4901 tree t;
4903 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4905 t = make_node (code PASS_MEM_STAT);
4906 TREE_TYPE (t) = tt;
4908 side_effects = TREE_SIDE_EFFECTS (t);
4910 PROCESS_ARG (0);
4911 PROCESS_ARG (1);
4912 PROCESS_ARG (2);
4913 PROCESS_ARG (3);
4915 TREE_SIDE_EFFECTS (t) = side_effects;
4916 TREE_THIS_VOLATILE (t)
4917 = (TREE_CODE_CLASS (code) == tcc_reference
4918 && arg0 && TREE_THIS_VOLATILE (arg0));
4920 return t;
4923 tree
4924 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4925 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4927 bool constant, read_only, side_effects;
4928 tree t;
4930 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4932 t = make_node (code PASS_MEM_STAT);
4933 TREE_TYPE (t) = tt;
4935 side_effects = TREE_SIDE_EFFECTS (t);
4937 PROCESS_ARG (0);
4938 PROCESS_ARG (1);
4939 PROCESS_ARG (2);
4940 PROCESS_ARG (3);
4941 PROCESS_ARG (4);
4943 TREE_SIDE_EFFECTS (t) = side_effects;
4944 if (code == TARGET_MEM_REF)
4946 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4948 tree o = TREE_OPERAND (arg0, 0);
4949 TREE_READONLY (t) = TREE_READONLY (o);
4950 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4953 else
4954 TREE_THIS_VOLATILE (t)
4955 = (TREE_CODE_CLASS (code) == tcc_reference
4956 && arg0 && TREE_THIS_VOLATILE (arg0));
4958 return t;
4961 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4962 on the pointer PTR. */
4964 tree
4965 build_simple_mem_ref_loc (location_t loc, tree ptr)
4967 poly_int64 offset = 0;
4968 tree ptype = TREE_TYPE (ptr);
4969 tree tem;
4970 /* For convenience allow addresses that collapse to a simple base
4971 and offset. */
4972 if (TREE_CODE (ptr) == ADDR_EXPR
4973 && (handled_component_p (TREE_OPERAND (ptr, 0))
4974 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4976 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4977 gcc_assert (ptr);
4978 if (TREE_CODE (ptr) == MEM_REF)
4980 offset += mem_ref_offset (ptr).force_shwi ();
4981 ptr = TREE_OPERAND (ptr, 0);
4983 else
4984 ptr = build_fold_addr_expr (ptr);
4985 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4987 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4988 ptr, build_int_cst (ptype, offset));
4989 SET_EXPR_LOCATION (tem, loc);
4990 return tem;
4993 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4995 poly_offset_int
4996 mem_ref_offset (const_tree t)
4998 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
4999 SIGNED);
5002 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
5003 offsetted by OFFSET units. */
5005 tree
5006 build_invariant_address (tree type, tree base, poly_int64 offset)
5008 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
5009 build_fold_addr_expr (base),
5010 build_int_cst (ptr_type_node, offset));
5011 tree addr = build1 (ADDR_EXPR, type, ref);
5012 recompute_tree_invariant_for_addr_expr (addr);
5013 return addr;
5016 /* Similar except don't specify the TREE_TYPE
5017 and leave the TREE_SIDE_EFFECTS as 0.
5018 It is permissible for arguments to be null,
5019 or even garbage if their values do not matter. */
5021 tree
5022 build_nt (enum tree_code code, ...)
5024 tree t;
5025 int length;
5026 int i;
5027 va_list p;
5029 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
5031 va_start (p, code);
5033 t = make_node (code);
5034 length = TREE_CODE_LENGTH (code);
5036 for (i = 0; i < length; i++)
5037 TREE_OPERAND (t, i) = va_arg (p, tree);
5039 va_end (p);
5040 return t;
5043 /* Similar to build_nt, but for creating a CALL_EXPR object with a
5044 tree vec. */
5046 tree
5047 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
5049 tree ret, t;
5050 unsigned int ix;
5052 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
5053 CALL_EXPR_FN (ret) = fn;
5054 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
5055 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
5056 CALL_EXPR_ARG (ret, ix) = t;
5057 return ret;
5060 /* Create a DECL_... node of code CODE, name NAME (if non-null)
5061 and data type TYPE.
5062 We do NOT enter this node in any sort of symbol table.
5064 LOC is the location of the decl.
5066 layout_decl is used to set up the decl's storage layout.
5067 Other slots are initialized to 0 or null pointers. */
5069 tree
5070 build_decl (location_t loc, enum tree_code code, tree name,
5071 tree type MEM_STAT_DECL)
5073 tree t;
5075 t = make_node (code PASS_MEM_STAT);
5076 DECL_SOURCE_LOCATION (t) = loc;
5078 /* if (type == error_mark_node)
5079 type = integer_type_node; */
5080 /* That is not done, deliberately, so that having error_mark_node
5081 as the type can suppress useless errors in the use of this variable. */
5083 DECL_NAME (t) = name;
5084 TREE_TYPE (t) = type;
5086 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
5087 layout_decl (t, 0);
5089 return t;
5092 /* Builds and returns function declaration with NAME and TYPE. */
5094 tree
5095 build_fn_decl (const char *name, tree type)
5097 tree id = get_identifier (name);
5098 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
5100 DECL_EXTERNAL (decl) = 1;
5101 TREE_PUBLIC (decl) = 1;
5102 DECL_ARTIFICIAL (decl) = 1;
5103 TREE_NOTHROW (decl) = 1;
5105 return decl;
5108 vec<tree, va_gc> *all_translation_units;
5110 /* Builds a new translation-unit decl with name NAME, queues it in the
5111 global list of translation-unit decls and returns it. */
5113 tree
5114 build_translation_unit_decl (tree name)
5116 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5117 name, NULL_TREE);
5118 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5119 vec_safe_push (all_translation_units, tu);
5120 return tu;
5124 /* BLOCK nodes are used to represent the structure of binding contours
5125 and declarations, once those contours have been exited and their contents
5126 compiled. This information is used for outputting debugging info. */
5128 tree
5129 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5131 tree block = make_node (BLOCK);
5133 BLOCK_VARS (block) = vars;
5134 BLOCK_SUBBLOCKS (block) = subblocks;
5135 BLOCK_SUPERCONTEXT (block) = supercontext;
5136 BLOCK_CHAIN (block) = chain;
5137 return block;
5141 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5143 LOC is the location to use in tree T. */
5145 void
5146 protected_set_expr_location (tree t, location_t loc)
5148 if (CAN_HAVE_LOCATION_P (t))
5149 SET_EXPR_LOCATION (t, loc);
5150 else if (t && TREE_CODE (t) == STATEMENT_LIST)
5152 t = expr_single (t);
5153 if (t && CAN_HAVE_LOCATION_P (t))
5154 SET_EXPR_LOCATION (t, loc);
5158 /* Like PROTECTED_SET_EXPR_LOCATION, but only do that if T has
5159 UNKNOWN_LOCATION. */
5161 void
5162 protected_set_expr_location_if_unset (tree t, location_t loc)
5164 t = expr_single (t);
5165 if (t && !EXPR_HAS_LOCATION (t))
5166 protected_set_expr_location (t, loc);
5169 /* Data used when collecting DECLs and TYPEs for language data removal. */
5171 class free_lang_data_d
5173 public:
5174 free_lang_data_d () : decls (100), types (100) {}
5176 /* Worklist to avoid excessive recursion. */
5177 auto_vec<tree> worklist;
5179 /* Set of traversed objects. Used to avoid duplicate visits. */
5180 hash_set<tree> pset;
5182 /* Array of symbols to process with free_lang_data_in_decl. */
5183 auto_vec<tree> decls;
5185 /* Array of types to process with free_lang_data_in_type. */
5186 auto_vec<tree> types;
5190 /* Add type or decl T to one of the list of tree nodes that need their
5191 language data removed. The lists are held inside FLD. */
5193 static void
5194 add_tree_to_fld_list (tree t, class free_lang_data_d *fld)
5196 if (DECL_P (t))
5197 fld->decls.safe_push (t);
5198 else if (TYPE_P (t))
5199 fld->types.safe_push (t);
5200 else
5201 gcc_unreachable ();
5204 /* Push tree node T into FLD->WORKLIST. */
5206 static inline void
5207 fld_worklist_push (tree t, class free_lang_data_d *fld)
5209 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5210 fld->worklist.safe_push ((t));
5215 /* Return simplified TYPE_NAME of TYPE. */
5217 static tree
5218 fld_simplified_type_name (tree type)
5220 if (!TYPE_NAME (type) || TREE_CODE (TYPE_NAME (type)) != TYPE_DECL)
5221 return TYPE_NAME (type);
5222 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5223 TYPE_DECL if the type doesn't have linkage.
5224 this must match fld_ */
5225 if (type != TYPE_MAIN_VARIANT (type)
5226 || (!DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type))
5227 && (TREE_CODE (type) != RECORD_TYPE
5228 || !TYPE_BINFO (type)
5229 || !BINFO_VTABLE (TYPE_BINFO (type)))))
5230 return DECL_NAME (TYPE_NAME (type));
5231 return TYPE_NAME (type);
5234 /* Do same comparsion as check_qualified_type skipping lang part of type
5235 and be more permissive about type names: we only care that names are
5236 same (for diagnostics) and that ODR names are the same.
5237 If INNER_TYPE is non-NULL, be sure that TREE_TYPE match it. */
5239 static bool
5240 fld_type_variant_equal_p (tree t, tree v, tree inner_type)
5242 if (TYPE_QUALS (t) != TYPE_QUALS (v)
5243 /* We want to match incomplete variants with complete types.
5244 In this case we need to ignore alignment. */
5245 || ((!RECORD_OR_UNION_TYPE_P (t) || COMPLETE_TYPE_P (v))
5246 && (TYPE_ALIGN (t) != TYPE_ALIGN (v)
5247 || TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (v)))
5248 || fld_simplified_type_name (t) != fld_simplified_type_name (v)
5249 || !attribute_list_equal (TYPE_ATTRIBUTES (t),
5250 TYPE_ATTRIBUTES (v))
5251 || (inner_type && TREE_TYPE (v) != inner_type))
5252 return false;
5254 return true;
5257 /* Find variant of FIRST that match T and create new one if necessary.
5258 Set TREE_TYPE to INNER_TYPE if non-NULL. */
5260 static tree
5261 fld_type_variant (tree first, tree t, class free_lang_data_d *fld,
5262 tree inner_type = NULL)
5264 if (first == TYPE_MAIN_VARIANT (t))
5265 return t;
5266 for (tree v = first; v; v = TYPE_NEXT_VARIANT (v))
5267 if (fld_type_variant_equal_p (t, v, inner_type))
5268 return v;
5269 tree v = build_variant_type_copy (first);
5270 TYPE_READONLY (v) = TYPE_READONLY (t);
5271 TYPE_VOLATILE (v) = TYPE_VOLATILE (t);
5272 TYPE_ATOMIC (v) = TYPE_ATOMIC (t);
5273 TYPE_RESTRICT (v) = TYPE_RESTRICT (t);
5274 TYPE_ADDR_SPACE (v) = TYPE_ADDR_SPACE (t);
5275 TYPE_NAME (v) = TYPE_NAME (t);
5276 TYPE_ATTRIBUTES (v) = TYPE_ATTRIBUTES (t);
5277 TYPE_CANONICAL (v) = TYPE_CANONICAL (t);
5278 /* Variants of incomplete types should have alignment
5279 set to BITS_PER_UNIT. Do not copy the actual alignment. */
5280 if (!RECORD_OR_UNION_TYPE_P (v) || COMPLETE_TYPE_P (v))
5282 SET_TYPE_ALIGN (v, TYPE_ALIGN (t));
5283 TYPE_USER_ALIGN (v) = TYPE_USER_ALIGN (t);
5285 if (inner_type)
5286 TREE_TYPE (v) = inner_type;
5287 gcc_checking_assert (fld_type_variant_equal_p (t,v, inner_type));
5288 if (!fld->pset.add (v))
5289 add_tree_to_fld_list (v, fld);
5290 return v;
5293 /* Map complete types to incomplete types. */
5295 static hash_map<tree, tree> *fld_incomplete_types;
5297 /* Map types to simplified types. */
5299 static hash_map<tree, tree> *fld_simplified_types;
5301 /* Produce variant of T whose TREE_TYPE is T2. If it is main variant,
5302 use MAP to prevent duplicates. */
5304 static tree
5305 fld_process_array_type (tree t, tree t2, hash_map<tree, tree> *map,
5306 class free_lang_data_d *fld)
5308 if (TREE_TYPE (t) == t2)
5309 return t;
5311 if (TYPE_MAIN_VARIANT (t) != t)
5313 return fld_type_variant
5314 (fld_process_array_type (TYPE_MAIN_VARIANT (t),
5315 TYPE_MAIN_VARIANT (t2), map, fld),
5316 t, fld, t2);
5319 bool existed;
5320 tree &array
5321 = map->get_or_insert (t, &existed);
5322 if (!existed)
5324 array
5325 = build_array_type_1 (t2, TYPE_DOMAIN (t), TYPE_TYPELESS_STORAGE (t),
5326 false, false);
5327 TYPE_CANONICAL (array) = TYPE_CANONICAL (t);
5328 if (!fld->pset.add (array))
5329 add_tree_to_fld_list (array, fld);
5331 return array;
5334 /* Return CTX after removal of contexts that are not relevant */
5336 static tree
5337 fld_decl_context (tree ctx)
5339 /* Variably modified types are needed for tree_is_indexable to decide
5340 whether the type needs to go to local or global section.
5341 This code is semi-broken but for now it is easiest to keep contexts
5342 as expected. */
5343 if (ctx && TYPE_P (ctx)
5344 && !variably_modified_type_p (ctx, NULL_TREE))
5346 while (ctx && TYPE_P (ctx))
5347 ctx = TYPE_CONTEXT (ctx);
5349 return ctx;
5352 /* For T being aggregate type try to turn it into a incomplete variant.
5353 Return T if no simplification is possible. */
5355 static tree
5356 fld_incomplete_type_of (tree t, class free_lang_data_d *fld)
5358 if (!t)
5359 return NULL;
5360 if (POINTER_TYPE_P (t))
5362 tree t2 = fld_incomplete_type_of (TREE_TYPE (t), fld);
5363 if (t2 != TREE_TYPE (t))
5365 tree first;
5366 if (TREE_CODE (t) == POINTER_TYPE)
5367 first = build_pointer_type_for_mode (t2, TYPE_MODE (t),
5368 TYPE_REF_CAN_ALIAS_ALL (t));
5369 else
5370 first = build_reference_type_for_mode (t2, TYPE_MODE (t),
5371 TYPE_REF_CAN_ALIAS_ALL (t));
5372 gcc_assert (TYPE_CANONICAL (t2) != t2
5373 && TYPE_CANONICAL (t2) == TYPE_CANONICAL (TREE_TYPE (t)));
5374 if (!fld->pset.add (first))
5375 add_tree_to_fld_list (first, fld);
5376 return fld_type_variant (first, t, fld);
5378 return t;
5380 if (TREE_CODE (t) == ARRAY_TYPE)
5381 return fld_process_array_type (t,
5382 fld_incomplete_type_of (TREE_TYPE (t), fld),
5383 fld_incomplete_types, fld);
5384 if ((!RECORD_OR_UNION_TYPE_P (t) && TREE_CODE (t) != ENUMERAL_TYPE)
5385 || !COMPLETE_TYPE_P (t))
5386 return t;
5387 if (TYPE_MAIN_VARIANT (t) == t)
5389 bool existed;
5390 tree &copy
5391 = fld_incomplete_types->get_or_insert (t, &existed);
5393 if (!existed)
5395 copy = build_distinct_type_copy (t);
5397 /* It is possible that type was not seen by free_lang_data yet. */
5398 if (!fld->pset.add (copy))
5399 add_tree_to_fld_list (copy, fld);
5400 TYPE_SIZE (copy) = NULL;
5401 TYPE_USER_ALIGN (copy) = 0;
5402 TYPE_SIZE_UNIT (copy) = NULL;
5403 TYPE_CANONICAL (copy) = TYPE_CANONICAL (t);
5404 TREE_ADDRESSABLE (copy) = 0;
5405 if (AGGREGATE_TYPE_P (t))
5407 SET_TYPE_MODE (copy, VOIDmode);
5408 SET_TYPE_ALIGN (copy, BITS_PER_UNIT);
5409 TYPE_TYPELESS_STORAGE (copy) = 0;
5410 TYPE_FIELDS (copy) = NULL;
5411 TYPE_BINFO (copy) = NULL;
5412 TYPE_FINAL_P (copy) = 0;
5413 TYPE_EMPTY_P (copy) = 0;
5415 else
5417 TYPE_VALUES (copy) = NULL;
5418 ENUM_IS_OPAQUE (copy) = 0;
5419 ENUM_IS_SCOPED (copy) = 0;
5422 /* Build copy of TYPE_DECL in TYPE_NAME if necessary.
5423 This is needed for ODR violation warnings to come out right (we
5424 want duplicate TYPE_DECLs whenever the type is duplicated because
5425 of ODR violation. Because lang data in the TYPE_DECL may not
5426 have been freed yet, rebuild it from scratch and copy relevant
5427 fields. */
5428 TYPE_NAME (copy) = fld_simplified_type_name (copy);
5429 tree name = TYPE_NAME (copy);
5431 if (name && TREE_CODE (name) == TYPE_DECL)
5433 gcc_checking_assert (TREE_TYPE (name) == t);
5434 tree name2 = build_decl (DECL_SOURCE_LOCATION (name), TYPE_DECL,
5435 DECL_NAME (name), copy);
5436 if (DECL_ASSEMBLER_NAME_SET_P (name))
5437 SET_DECL_ASSEMBLER_NAME (name2, DECL_ASSEMBLER_NAME (name));
5438 SET_DECL_ALIGN (name2, 0);
5439 DECL_CONTEXT (name2) = fld_decl_context
5440 (DECL_CONTEXT (name));
5441 TYPE_NAME (copy) = name2;
5444 return copy;
5446 return (fld_type_variant
5447 (fld_incomplete_type_of (TYPE_MAIN_VARIANT (t), fld), t, fld));
5450 /* Simplify type T for scenarios where we do not need complete pointer
5451 types. */
5453 static tree
5454 fld_simplified_type (tree t, class free_lang_data_d *fld)
5456 if (!t)
5457 return t;
5458 if (POINTER_TYPE_P (t))
5459 return fld_incomplete_type_of (t, fld);
5460 /* FIXME: This triggers verification error, see PR88140. */
5461 if (TREE_CODE (t) == ARRAY_TYPE && 0)
5462 return fld_process_array_type (t, fld_simplified_type (TREE_TYPE (t), fld),
5463 fld_simplified_types, fld);
5464 return t;
5467 /* Reset the expression *EXPR_P, a size or position.
5469 ??? We could reset all non-constant sizes or positions. But it's cheap
5470 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5472 We need to reset self-referential sizes or positions because they cannot
5473 be gimplified and thus can contain a CALL_EXPR after the gimplification
5474 is finished, which will run afoul of LTO streaming. And they need to be
5475 reset to something essentially dummy but not constant, so as to preserve
5476 the properties of the object they are attached to. */
5478 static inline void
5479 free_lang_data_in_one_sizepos (tree *expr_p)
5481 tree expr = *expr_p;
5482 if (CONTAINS_PLACEHOLDER_P (expr))
5483 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5487 /* Reset all the fields in a binfo node BINFO. We only keep
5488 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5490 static void
5491 free_lang_data_in_binfo (tree binfo)
5493 unsigned i;
5494 tree t;
5496 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5498 BINFO_VIRTUALS (binfo) = NULL_TREE;
5499 BINFO_BASE_ACCESSES (binfo) = NULL;
5500 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5501 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5502 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
5503 TREE_PUBLIC (binfo) = 0;
5505 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5506 free_lang_data_in_binfo (t);
5510 /* Reset all language specific information still present in TYPE. */
5512 static void
5513 free_lang_data_in_type (tree type, class free_lang_data_d *fld)
5515 gcc_assert (TYPE_P (type));
5517 /* Give the FE a chance to remove its own data first. */
5518 lang_hooks.free_lang_data (type);
5520 TREE_LANG_FLAG_0 (type) = 0;
5521 TREE_LANG_FLAG_1 (type) = 0;
5522 TREE_LANG_FLAG_2 (type) = 0;
5523 TREE_LANG_FLAG_3 (type) = 0;
5524 TREE_LANG_FLAG_4 (type) = 0;
5525 TREE_LANG_FLAG_5 (type) = 0;
5526 TREE_LANG_FLAG_6 (type) = 0;
5528 TYPE_NEEDS_CONSTRUCTING (type) = 0;
5530 /* Purge non-marked variants from the variants chain, so that they
5531 don't reappear in the IL after free_lang_data. */
5532 while (TYPE_NEXT_VARIANT (type)
5533 && !fld->pset.contains (TYPE_NEXT_VARIANT (type)))
5535 tree t = TYPE_NEXT_VARIANT (type);
5536 TYPE_NEXT_VARIANT (type) = TYPE_NEXT_VARIANT (t);
5537 /* Turn the removed types into distinct types. */
5538 TYPE_MAIN_VARIANT (t) = t;
5539 TYPE_NEXT_VARIANT (t) = NULL_TREE;
5542 if (TREE_CODE (type) == FUNCTION_TYPE)
5544 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5545 /* Remove the const and volatile qualifiers from arguments. The
5546 C++ front end removes them, but the C front end does not,
5547 leading to false ODR violation errors when merging two
5548 instances of the same function signature compiled by
5549 different front ends. */
5550 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5552 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5553 tree arg_type = TREE_VALUE (p);
5555 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5557 int quals = TYPE_QUALS (arg_type)
5558 & ~TYPE_QUAL_CONST
5559 & ~TYPE_QUAL_VOLATILE;
5560 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5561 if (!fld->pset.add (TREE_VALUE (p)))
5562 free_lang_data_in_type (TREE_VALUE (p), fld);
5564 /* C++ FE uses TREE_PURPOSE to store initial values. */
5565 TREE_PURPOSE (p) = NULL;
5568 else if (TREE_CODE (type) == METHOD_TYPE)
5570 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5571 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5573 /* C++ FE uses TREE_PURPOSE to store initial values. */
5574 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5575 TREE_PURPOSE (p) = NULL;
5578 else if (RECORD_OR_UNION_TYPE_P (type))
5580 /* Remove members that are not FIELD_DECLs from the field list
5581 of an aggregate. These occur in C++. */
5582 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5583 if (TREE_CODE (member) == FIELD_DECL)
5584 prev = &DECL_CHAIN (member);
5585 else
5586 *prev = DECL_CHAIN (member);
5588 TYPE_VFIELD (type) = NULL_TREE;
5590 if (TYPE_BINFO (type))
5592 free_lang_data_in_binfo (TYPE_BINFO (type));
5593 /* We need to preserve link to bases and virtual table for all
5594 polymorphic types to make devirtualization machinery working. */
5595 if (!BINFO_VTABLE (TYPE_BINFO (type)))
5596 TYPE_BINFO (type) = NULL;
5599 else if (INTEGRAL_TYPE_P (type)
5600 || SCALAR_FLOAT_TYPE_P (type)
5601 || FIXED_POINT_TYPE_P (type))
5603 if (TREE_CODE (type) == ENUMERAL_TYPE)
5605 ENUM_IS_OPAQUE (type) = 0;
5606 ENUM_IS_SCOPED (type) = 0;
5607 /* Type values are used only for C++ ODR checking. Drop them
5608 for all type variants and non-ODR types.
5609 For ODR types the data is freed in free_odr_warning_data. */
5610 if (!TYPE_VALUES (type))
5612 else if (TYPE_MAIN_VARIANT (type) != type
5613 || !type_with_linkage_p (type)
5614 || type_in_anonymous_namespace_p (type))
5615 TYPE_VALUES (type) = NULL;
5616 else
5617 register_odr_enum (type);
5619 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5620 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5623 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5625 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5626 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5628 if (TYPE_CONTEXT (type)
5629 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5631 tree ctx = TYPE_CONTEXT (type);
5634 ctx = BLOCK_SUPERCONTEXT (ctx);
5636 while (ctx && TREE_CODE (ctx) == BLOCK);
5637 TYPE_CONTEXT (type) = ctx;
5640 TYPE_STUB_DECL (type) = NULL;
5641 TYPE_NAME (type) = fld_simplified_type_name (type);
5645 /* Return true if DECL may need an assembler name to be set. */
5647 static inline bool
5648 need_assembler_name_p (tree decl)
5650 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5651 Rule merging. This makes type_odr_p to return true on those types during
5652 LTO and by comparing the mangled name, we can say what types are intended
5653 to be equivalent across compilation unit.
5655 We do not store names of type_in_anonymous_namespace_p.
5657 Record, union and enumeration type have linkage that allows use
5658 to check type_in_anonymous_namespace_p. We do not mangle compound types
5659 that always can be compared structurally.
5661 Similarly for builtin types, we compare properties of their main variant.
5662 A special case are integer types where mangling do make differences
5663 between char/signed char/unsigned char etc. Storing name for these makes
5664 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5665 See cp/mangle.c:write_builtin_type for details. */
5667 if (TREE_CODE (decl) == TYPE_DECL)
5669 if (DECL_NAME (decl)
5670 && decl == TYPE_NAME (TREE_TYPE (decl))
5671 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5672 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5673 && ((TREE_CODE (TREE_TYPE (decl)) != RECORD_TYPE
5674 && TREE_CODE (TREE_TYPE (decl)) != UNION_TYPE)
5675 || TYPE_CXX_ODR_P (TREE_TYPE (decl)))
5676 && (type_with_linkage_p (TREE_TYPE (decl))
5677 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5678 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5679 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5680 return false;
5682 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5683 if (!VAR_OR_FUNCTION_DECL_P (decl))
5684 return false;
5686 /* If DECL already has its assembler name set, it does not need a
5687 new one. */
5688 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5689 || DECL_ASSEMBLER_NAME_SET_P (decl))
5690 return false;
5692 /* Abstract decls do not need an assembler name. */
5693 if (DECL_ABSTRACT_P (decl))
5694 return false;
5696 /* For VAR_DECLs, only static, public and external symbols need an
5697 assembler name. */
5698 if (VAR_P (decl)
5699 && !TREE_STATIC (decl)
5700 && !TREE_PUBLIC (decl)
5701 && !DECL_EXTERNAL (decl))
5702 return false;
5704 if (TREE_CODE (decl) == FUNCTION_DECL)
5706 /* Do not set assembler name on builtins. Allow RTL expansion to
5707 decide whether to expand inline or via a regular call. */
5708 if (fndecl_built_in_p (decl)
5709 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5710 return false;
5712 /* Functions represented in the callgraph need an assembler name. */
5713 if (cgraph_node::get (decl) != NULL)
5714 return true;
5716 /* Unused and not public functions don't need an assembler name. */
5717 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5718 return false;
5721 return true;
5725 /* Reset all language specific information still present in symbol
5726 DECL. */
5728 static void
5729 free_lang_data_in_decl (tree decl, class free_lang_data_d *fld)
5731 gcc_assert (DECL_P (decl));
5733 /* Give the FE a chance to remove its own data first. */
5734 lang_hooks.free_lang_data (decl);
5736 TREE_LANG_FLAG_0 (decl) = 0;
5737 TREE_LANG_FLAG_1 (decl) = 0;
5738 TREE_LANG_FLAG_2 (decl) = 0;
5739 TREE_LANG_FLAG_3 (decl) = 0;
5740 TREE_LANG_FLAG_4 (decl) = 0;
5741 TREE_LANG_FLAG_5 (decl) = 0;
5742 TREE_LANG_FLAG_6 (decl) = 0;
5744 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5745 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5746 if (TREE_CODE (decl) == FIELD_DECL)
5748 DECL_FCONTEXT (decl) = NULL;
5749 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5750 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5751 DECL_QUALIFIER (decl) = NULL_TREE;
5754 if (TREE_CODE (decl) == FUNCTION_DECL)
5756 struct cgraph_node *node;
5757 /* Frontends do not set TREE_ADDRESSABLE on public variables even though
5758 the address may be taken in other unit, so this flag has no practical
5759 use for middle-end.
5761 It would make more sense if frontends set TREE_ADDRESSABLE to 0 only
5762 for public objects that indeed cannot be adressed, but it is not
5763 the case. Set the flag to true so we do not get merge failures for
5764 i.e. virtual tables between units that take address of it and
5765 units that don't. */
5766 if (TREE_PUBLIC (decl))
5767 TREE_ADDRESSABLE (decl) = true;
5768 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5769 if (!(node = cgraph_node::get (decl))
5770 || (!node->definition && !node->clones))
5772 if (node)
5773 node->release_body ();
5774 else
5776 release_function_body (decl);
5777 DECL_ARGUMENTS (decl) = NULL;
5778 DECL_RESULT (decl) = NULL;
5779 DECL_INITIAL (decl) = error_mark_node;
5782 if (gimple_has_body_p (decl) || (node && node->thunk))
5784 tree t;
5786 /* If DECL has a gimple body, then the context for its
5787 arguments must be DECL. Otherwise, it doesn't really
5788 matter, as we will not be emitting any code for DECL. In
5789 general, there may be other instances of DECL created by
5790 the front end and since PARM_DECLs are generally shared,
5791 their DECL_CONTEXT changes as the replicas of DECL are
5792 created. The only time where DECL_CONTEXT is important
5793 is for the FUNCTION_DECLs that have a gimple body (since
5794 the PARM_DECL will be used in the function's body). */
5795 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5796 DECL_CONTEXT (t) = decl;
5797 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5798 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5799 = target_option_default_node;
5800 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5801 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5802 = optimization_default_node;
5805 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5806 At this point, it is not needed anymore. */
5807 DECL_SAVED_TREE (decl) = NULL_TREE;
5809 /* Clear the abstract origin if it refers to a method.
5810 Otherwise dwarf2out.c will ICE as we splice functions out of
5811 TYPE_FIELDS and thus the origin will not be output
5812 correctly. */
5813 if (DECL_ABSTRACT_ORIGIN (decl)
5814 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5815 && RECORD_OR_UNION_TYPE_P
5816 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5817 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5819 DECL_VINDEX (decl) = NULL_TREE;
5821 else if (VAR_P (decl))
5823 /* See comment above why we set the flag for functions. */
5824 if (TREE_PUBLIC (decl))
5825 TREE_ADDRESSABLE (decl) = true;
5826 if ((DECL_EXTERNAL (decl)
5827 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5828 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5829 DECL_INITIAL (decl) = NULL_TREE;
5831 else if (TREE_CODE (decl) == TYPE_DECL)
5833 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5834 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5835 TREE_PUBLIC (decl) = 0;
5836 TREE_PRIVATE (decl) = 0;
5837 DECL_ARTIFICIAL (decl) = 0;
5838 TYPE_DECL_SUPPRESS_DEBUG (decl) = 0;
5839 DECL_INITIAL (decl) = NULL_TREE;
5840 DECL_ORIGINAL_TYPE (decl) = NULL_TREE;
5841 DECL_MODE (decl) = VOIDmode;
5842 SET_DECL_ALIGN (decl, 0);
5843 /* TREE_TYPE is cleared at WPA time in free_odr_warning_data. */
5845 else if (TREE_CODE (decl) == FIELD_DECL)
5847 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5848 DECL_INITIAL (decl) = NULL_TREE;
5850 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5851 && DECL_INITIAL (decl)
5852 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5854 /* Strip builtins from the translation-unit BLOCK. We still have targets
5855 without builtin_decl_explicit support and also builtins are shared
5856 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5857 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5858 while (*nextp)
5860 tree var = *nextp;
5861 if (TREE_CODE (var) == FUNCTION_DECL
5862 && fndecl_built_in_p (var))
5863 *nextp = TREE_CHAIN (var);
5864 else
5865 nextp = &TREE_CHAIN (var);
5868 /* We need to keep field decls associated with their trees. Otherwise tree
5869 merging may merge some fileds and keep others disjoint wich in turn will
5870 not do well with TREE_CHAIN pointers linking them.
5872 Also do not drop containing types for virtual methods and tables because
5873 these are needed by devirtualization.
5874 C++ destructors are special because C++ frontends sometimes produces
5875 virtual destructor as an alias of non-virtual destructor. In
5876 devirutalization code we always walk through aliases and we need
5877 context to be preserved too. See PR89335 */
5878 if (TREE_CODE (decl) != FIELD_DECL
5879 && ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
5880 || (!DECL_VIRTUAL_P (decl)
5881 && (TREE_CODE (decl) != FUNCTION_DECL
5882 || !DECL_CXX_DESTRUCTOR_P (decl)))))
5883 DECL_CONTEXT (decl) = fld_decl_context (DECL_CONTEXT (decl));
5887 /* Operand callback helper for free_lang_data_in_node. *TP is the
5888 subtree operand being considered. */
5890 static tree
5891 find_decls_types_r (tree *tp, int *ws, void *data)
5893 tree t = *tp;
5894 class free_lang_data_d *fld = (class free_lang_data_d *) data;
5896 if (TREE_CODE (t) == TREE_LIST)
5897 return NULL_TREE;
5899 /* Language specific nodes will be removed, so there is no need
5900 to gather anything under them. */
5901 if (is_lang_specific (t))
5903 *ws = 0;
5904 return NULL_TREE;
5907 if (DECL_P (t))
5909 /* Note that walk_tree does not traverse every possible field in
5910 decls, so we have to do our own traversals here. */
5911 add_tree_to_fld_list (t, fld);
5913 fld_worklist_push (DECL_NAME (t), fld);
5914 fld_worklist_push (DECL_CONTEXT (t), fld);
5915 fld_worklist_push (DECL_SIZE (t), fld);
5916 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5918 /* We are going to remove everything under DECL_INITIAL for
5919 TYPE_DECLs. No point walking them. */
5920 if (TREE_CODE (t) != TYPE_DECL)
5921 fld_worklist_push (DECL_INITIAL (t), fld);
5923 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5924 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5926 if (TREE_CODE (t) == FUNCTION_DECL)
5928 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5929 fld_worklist_push (DECL_RESULT (t), fld);
5931 else if (TREE_CODE (t) == FIELD_DECL)
5933 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5934 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5935 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5936 fld_worklist_push (DECL_FCONTEXT (t), fld);
5939 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5940 && DECL_HAS_VALUE_EXPR_P (t))
5941 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5943 if (TREE_CODE (t) != FIELD_DECL
5944 && TREE_CODE (t) != TYPE_DECL)
5945 fld_worklist_push (TREE_CHAIN (t), fld);
5946 *ws = 0;
5948 else if (TYPE_P (t))
5950 /* Note that walk_tree does not traverse every possible field in
5951 types, so we have to do our own traversals here. */
5952 add_tree_to_fld_list (t, fld);
5954 if (!RECORD_OR_UNION_TYPE_P (t))
5955 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5956 fld_worklist_push (TYPE_SIZE (t), fld);
5957 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5958 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5959 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5960 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5961 fld_worklist_push (TYPE_NAME (t), fld);
5962 /* While we do not stream TYPE_POINTER_TO and TYPE_REFERENCE_TO
5963 lists, we may look types up in these lists and use them while
5964 optimizing the function body. Thus we need to free lang data
5965 in them. */
5966 if (TREE_CODE (t) == POINTER_TYPE)
5967 fld_worklist_push (TYPE_NEXT_PTR_TO (t), fld);
5968 if (TREE_CODE (t) == REFERENCE_TYPE)
5969 fld_worklist_push (TYPE_NEXT_REF_TO (t), fld);
5970 if (!POINTER_TYPE_P (t))
5971 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5972 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5973 if (!RECORD_OR_UNION_TYPE_P (t))
5974 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5975 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5976 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5977 do not and want not to reach unused variants this way. */
5978 if (TYPE_CONTEXT (t))
5980 tree ctx = TYPE_CONTEXT (t);
5981 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5982 So push that instead. */
5983 while (ctx && TREE_CODE (ctx) == BLOCK)
5984 ctx = BLOCK_SUPERCONTEXT (ctx);
5985 fld_worklist_push (ctx, fld);
5987 fld_worklist_push (TYPE_CANONICAL (t), fld);
5989 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5991 unsigned i;
5992 tree tem;
5993 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5994 fld_worklist_push (TREE_TYPE (tem), fld);
5995 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
5996 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
5998 if (RECORD_OR_UNION_TYPE_P (t))
6000 tree tem;
6001 /* Push all TYPE_FIELDS - there can be interleaving interesting
6002 and non-interesting things. */
6003 tem = TYPE_FIELDS (t);
6004 while (tem)
6006 if (TREE_CODE (tem) == FIELD_DECL)
6007 fld_worklist_push (tem, fld);
6008 tem = TREE_CHAIN (tem);
6011 if (FUNC_OR_METHOD_TYPE_P (t))
6012 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
6014 fld_worklist_push (TYPE_STUB_DECL (t), fld);
6015 *ws = 0;
6017 else if (TREE_CODE (t) == BLOCK)
6019 for (tree *tem = &BLOCK_VARS (t); *tem; )
6021 if (TREE_CODE (*tem) != LABEL_DECL
6022 && (TREE_CODE (*tem) != VAR_DECL
6023 || !auto_var_in_fn_p (*tem, DECL_CONTEXT (*tem))))
6025 gcc_assert (TREE_CODE (*tem) != RESULT_DECL
6026 && TREE_CODE (*tem) != PARM_DECL);
6027 *tem = TREE_CHAIN (*tem);
6029 else
6031 fld_worklist_push (*tem, fld);
6032 tem = &TREE_CHAIN (*tem);
6035 for (tree tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
6036 fld_worklist_push (tem, fld);
6037 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
6040 if (TREE_CODE (t) != IDENTIFIER_NODE
6041 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
6042 fld_worklist_push (TREE_TYPE (t), fld);
6044 return NULL_TREE;
6048 /* Find decls and types in T. */
6050 static void
6051 find_decls_types (tree t, class free_lang_data_d *fld)
6053 while (1)
6055 if (!fld->pset.contains (t))
6056 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
6057 if (fld->worklist.is_empty ())
6058 break;
6059 t = fld->worklist.pop ();
6063 /* Translate all the types in LIST with the corresponding runtime
6064 types. */
6066 static tree
6067 get_eh_types_for_runtime (tree list)
6069 tree head, prev;
6071 if (list == NULL_TREE)
6072 return NULL_TREE;
6074 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
6075 prev = head;
6076 list = TREE_CHAIN (list);
6077 while (list)
6079 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
6080 TREE_CHAIN (prev) = n;
6081 prev = TREE_CHAIN (prev);
6082 list = TREE_CHAIN (list);
6085 return head;
6089 /* Find decls and types referenced in EH region R and store them in
6090 FLD->DECLS and FLD->TYPES. */
6092 static void
6093 find_decls_types_in_eh_region (eh_region r, class free_lang_data_d *fld)
6095 switch (r->type)
6097 case ERT_CLEANUP:
6098 break;
6100 case ERT_TRY:
6102 eh_catch c;
6104 /* The types referenced in each catch must first be changed to the
6105 EH types used at runtime. This removes references to FE types
6106 in the region. */
6107 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
6109 c->type_list = get_eh_types_for_runtime (c->type_list);
6110 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
6113 break;
6115 case ERT_ALLOWED_EXCEPTIONS:
6116 r->u.allowed.type_list
6117 = get_eh_types_for_runtime (r->u.allowed.type_list);
6118 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
6119 break;
6121 case ERT_MUST_NOT_THROW:
6122 walk_tree (&r->u.must_not_throw.failure_decl,
6123 find_decls_types_r, fld, &fld->pset);
6124 break;
6129 /* Find decls and types referenced in cgraph node N and store them in
6130 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6131 look for *every* kind of DECL and TYPE node reachable from N,
6132 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6133 NAMESPACE_DECLs, etc). */
6135 static void
6136 find_decls_types_in_node (struct cgraph_node *n, class free_lang_data_d *fld)
6138 basic_block bb;
6139 struct function *fn;
6140 unsigned ix;
6141 tree t;
6143 find_decls_types (n->decl, fld);
6145 if (!gimple_has_body_p (n->decl))
6146 return;
6148 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
6150 fn = DECL_STRUCT_FUNCTION (n->decl);
6152 /* Traverse locals. */
6153 FOR_EACH_LOCAL_DECL (fn, ix, t)
6154 find_decls_types (t, fld);
6156 /* Traverse EH regions in FN. */
6158 eh_region r;
6159 FOR_ALL_EH_REGION_FN (r, fn)
6160 find_decls_types_in_eh_region (r, fld);
6163 /* Traverse every statement in FN. */
6164 FOR_EACH_BB_FN (bb, fn)
6166 gphi_iterator psi;
6167 gimple_stmt_iterator si;
6168 unsigned i;
6170 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
6172 gphi *phi = psi.phi ();
6174 for (i = 0; i < gimple_phi_num_args (phi); i++)
6176 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
6177 find_decls_types (*arg_p, fld);
6181 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6183 gimple *stmt = gsi_stmt (si);
6185 if (is_gimple_call (stmt))
6186 find_decls_types (gimple_call_fntype (stmt), fld);
6188 for (i = 0; i < gimple_num_ops (stmt); i++)
6190 tree arg = gimple_op (stmt, i);
6191 find_decls_types (arg, fld);
6192 /* find_decls_types doesn't walk TREE_PURPOSE of TREE_LISTs,
6193 which we need for asm stmts. */
6194 if (arg
6195 && TREE_CODE (arg) == TREE_LIST
6196 && TREE_PURPOSE (arg)
6197 && gimple_code (stmt) == GIMPLE_ASM)
6198 find_decls_types (TREE_PURPOSE (arg), fld);
6205 /* Find decls and types referenced in varpool node N and store them in
6206 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6207 look for *every* kind of DECL and TYPE node reachable from N,
6208 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6209 NAMESPACE_DECLs, etc). */
6211 static void
6212 find_decls_types_in_var (varpool_node *v, class free_lang_data_d *fld)
6214 find_decls_types (v->decl, fld);
6217 /* If T needs an assembler name, have one created for it. */
6219 void
6220 assign_assembler_name_if_needed (tree t)
6222 if (need_assembler_name_p (t))
6224 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
6225 diagnostics that use input_location to show locus
6226 information. The problem here is that, at this point,
6227 input_location is generally anchored to the end of the file
6228 (since the parser is long gone), so we don't have a good
6229 position to pin it to.
6231 To alleviate this problem, this uses the location of T's
6232 declaration. Examples of this are
6233 testsuite/g++.dg/template/cond2.C and
6234 testsuite/g++.dg/template/pr35240.C. */
6235 location_t saved_location = input_location;
6236 input_location = DECL_SOURCE_LOCATION (t);
6238 decl_assembler_name (t);
6240 input_location = saved_location;
6245 /* Free language specific information for every operand and expression
6246 in every node of the call graph. This process operates in three stages:
6248 1- Every callgraph node and varpool node is traversed looking for
6249 decls and types embedded in them. This is a more exhaustive
6250 search than that done by find_referenced_vars, because it will
6251 also collect individual fields, decls embedded in types, etc.
6253 2- All the decls found are sent to free_lang_data_in_decl.
6255 3- All the types found are sent to free_lang_data_in_type.
6257 The ordering between decls and types is important because
6258 free_lang_data_in_decl sets assembler names, which includes
6259 mangling. So types cannot be freed up until assembler names have
6260 been set up. */
6262 static void
6263 free_lang_data_in_cgraph (class free_lang_data_d *fld)
6265 struct cgraph_node *n;
6266 varpool_node *v;
6267 tree t;
6268 unsigned i;
6269 alias_pair *p;
6271 /* Find decls and types in the body of every function in the callgraph. */
6272 FOR_EACH_FUNCTION (n)
6273 find_decls_types_in_node (n, fld);
6275 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
6276 find_decls_types (p->decl, fld);
6278 /* Find decls and types in every varpool symbol. */
6279 FOR_EACH_VARIABLE (v)
6280 find_decls_types_in_var (v, fld);
6282 /* Set the assembler name on every decl found. We need to do this
6283 now because free_lang_data_in_decl will invalidate data needed
6284 for mangling. This breaks mangling on interdependent decls. */
6285 FOR_EACH_VEC_ELT (fld->decls, i, t)
6286 assign_assembler_name_if_needed (t);
6288 /* Traverse every decl found freeing its language data. */
6289 FOR_EACH_VEC_ELT (fld->decls, i, t)
6290 free_lang_data_in_decl (t, fld);
6292 /* Traverse every type found freeing its language data. */
6293 FOR_EACH_VEC_ELT (fld->types, i, t)
6294 free_lang_data_in_type (t, fld);
6298 /* Free resources that are used by FE but are not needed once they are done. */
6300 static unsigned
6301 free_lang_data (void)
6303 unsigned i;
6304 class free_lang_data_d fld;
6306 /* If we are the LTO frontend we have freed lang-specific data already. */
6307 if (in_lto_p
6308 || (!flag_generate_lto && !flag_generate_offload))
6310 /* Rebuild type inheritance graph even when not doing LTO to get
6311 consistent profile data. */
6312 rebuild_type_inheritance_graph ();
6313 return 0;
6316 fld_incomplete_types = new hash_map<tree, tree>;
6317 fld_simplified_types = new hash_map<tree, tree>;
6319 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
6320 if (vec_safe_is_empty (all_translation_units))
6321 build_translation_unit_decl (NULL_TREE);
6323 /* Allocate and assign alias sets to the standard integer types
6324 while the slots are still in the way the frontends generated them. */
6325 for (i = 0; i < itk_none; ++i)
6326 if (integer_types[i])
6327 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
6329 /* Traverse the IL resetting language specific information for
6330 operands, expressions, etc. */
6331 free_lang_data_in_cgraph (&fld);
6333 /* Create gimple variants for common types. */
6334 for (unsigned i = 0;
6335 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
6336 ++i)
6337 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
6339 /* Reset some langhooks. Do not reset types_compatible_p, it may
6340 still be used indirectly via the get_alias_set langhook. */
6341 lang_hooks.dwarf_name = lhd_dwarf_name;
6342 lang_hooks.decl_printable_name = gimple_decl_printable_name;
6343 lang_hooks.gimplify_expr = lhd_gimplify_expr;
6344 lang_hooks.overwrite_decl_assembler_name = lhd_overwrite_decl_assembler_name;
6345 lang_hooks.print_xnode = lhd_print_tree_nothing;
6346 lang_hooks.print_decl = lhd_print_tree_nothing;
6347 lang_hooks.print_type = lhd_print_tree_nothing;
6348 lang_hooks.print_identifier = lhd_print_tree_nothing;
6350 lang_hooks.tree_inlining.var_mod_type_p = hook_bool_tree_tree_false;
6352 if (flag_checking)
6354 int i;
6355 tree t;
6357 FOR_EACH_VEC_ELT (fld.types, i, t)
6358 verify_type (t);
6361 /* We do not want the default decl_assembler_name implementation,
6362 rather if we have fixed everything we want a wrapper around it
6363 asserting that all non-local symbols already got their assembler
6364 name and only produce assembler names for local symbols. Or rather
6365 make sure we never call decl_assembler_name on local symbols and
6366 devise a separate, middle-end private scheme for it. */
6368 /* Reset diagnostic machinery. */
6369 tree_diagnostics_defaults (global_dc);
6371 rebuild_type_inheritance_graph ();
6373 delete fld_incomplete_types;
6374 delete fld_simplified_types;
6376 return 0;
6380 namespace {
6382 const pass_data pass_data_ipa_free_lang_data =
6384 SIMPLE_IPA_PASS, /* type */
6385 "*free_lang_data", /* name */
6386 OPTGROUP_NONE, /* optinfo_flags */
6387 TV_IPA_FREE_LANG_DATA, /* tv_id */
6388 0, /* properties_required */
6389 0, /* properties_provided */
6390 0, /* properties_destroyed */
6391 0, /* todo_flags_start */
6392 0, /* todo_flags_finish */
6395 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
6397 public:
6398 pass_ipa_free_lang_data (gcc::context *ctxt)
6399 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
6402 /* opt_pass methods: */
6403 virtual unsigned int execute (function *) { return free_lang_data (); }
6405 }; // class pass_ipa_free_lang_data
6407 } // anon namespace
6409 simple_ipa_opt_pass *
6410 make_pass_ipa_free_lang_data (gcc::context *ctxt)
6412 return new pass_ipa_free_lang_data (ctxt);
6415 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6416 of the various TYPE_QUAL values. */
6418 static void
6419 set_type_quals (tree type, int type_quals)
6421 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6422 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6423 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6424 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6425 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6428 /* Returns true iff CAND and BASE have equivalent language-specific
6429 qualifiers. */
6431 bool
6432 check_lang_type (const_tree cand, const_tree base)
6434 if (lang_hooks.types.type_hash_eq == NULL)
6435 return true;
6436 /* type_hash_eq currently only applies to these types. */
6437 if (TREE_CODE (cand) != FUNCTION_TYPE
6438 && TREE_CODE (cand) != METHOD_TYPE)
6439 return true;
6440 return lang_hooks.types.type_hash_eq (cand, base);
6443 /* This function checks to see if TYPE matches the size one of the built-in
6444 atomic types, and returns that core atomic type. */
6446 static tree
6447 find_atomic_core_type (const_tree type)
6449 tree base_atomic_type;
6451 /* Only handle complete types. */
6452 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
6453 return NULL_TREE;
6455 switch (tree_to_uhwi (TYPE_SIZE (type)))
6457 case 8:
6458 base_atomic_type = atomicQI_type_node;
6459 break;
6461 case 16:
6462 base_atomic_type = atomicHI_type_node;
6463 break;
6465 case 32:
6466 base_atomic_type = atomicSI_type_node;
6467 break;
6469 case 64:
6470 base_atomic_type = atomicDI_type_node;
6471 break;
6473 case 128:
6474 base_atomic_type = atomicTI_type_node;
6475 break;
6477 default:
6478 base_atomic_type = NULL_TREE;
6481 return base_atomic_type;
6484 /* Returns true iff unqualified CAND and BASE are equivalent. */
6486 bool
6487 check_base_type (const_tree cand, const_tree base)
6489 if (TYPE_NAME (cand) != TYPE_NAME (base)
6490 /* Apparently this is needed for Objective-C. */
6491 || TYPE_CONTEXT (cand) != TYPE_CONTEXT (base)
6492 || !attribute_list_equal (TYPE_ATTRIBUTES (cand),
6493 TYPE_ATTRIBUTES (base)))
6494 return false;
6495 /* Check alignment. */
6496 if (TYPE_ALIGN (cand) == TYPE_ALIGN (base))
6497 return true;
6498 /* Atomic types increase minimal alignment. We must to do so as well
6499 or we get duplicated canonical types. See PR88686. */
6500 if ((TYPE_QUALS (cand) & TYPE_QUAL_ATOMIC))
6502 /* See if this object can map to a basic atomic type. */
6503 tree atomic_type = find_atomic_core_type (cand);
6504 if (atomic_type && TYPE_ALIGN (atomic_type) == TYPE_ALIGN (cand))
6505 return true;
6507 return false;
6510 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6512 bool
6513 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6515 return (TYPE_QUALS (cand) == type_quals
6516 && check_base_type (cand, base)
6517 && check_lang_type (cand, base));
6520 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6522 static bool
6523 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6525 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6526 && TYPE_NAME (cand) == TYPE_NAME (base)
6527 /* Apparently this is needed for Objective-C. */
6528 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6529 /* Check alignment. */
6530 && TYPE_ALIGN (cand) == align
6531 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6532 TYPE_ATTRIBUTES (base))
6533 && check_lang_type (cand, base));
6536 /* Return a version of the TYPE, qualified as indicated by the
6537 TYPE_QUALS, if one exists. If no qualified version exists yet,
6538 return NULL_TREE. */
6540 tree
6541 get_qualified_type (tree type, int type_quals)
6543 if (TYPE_QUALS (type) == type_quals)
6544 return type;
6546 tree mv = TYPE_MAIN_VARIANT (type);
6547 if (check_qualified_type (mv, type, type_quals))
6548 return mv;
6550 /* Search the chain of variants to see if there is already one there just
6551 like the one we need to have. If so, use that existing one. We must
6552 preserve the TYPE_NAME, since there is code that depends on this. */
6553 for (tree *tp = &TYPE_NEXT_VARIANT (mv); *tp; tp = &TYPE_NEXT_VARIANT (*tp))
6554 if (check_qualified_type (*tp, type, type_quals))
6556 /* Put the found variant at the head of the variant list so
6557 frequently searched variants get found faster. The C++ FE
6558 benefits greatly from this. */
6559 tree t = *tp;
6560 *tp = TYPE_NEXT_VARIANT (t);
6561 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
6562 TYPE_NEXT_VARIANT (mv) = t;
6563 return t;
6566 return NULL_TREE;
6569 /* Like get_qualified_type, but creates the type if it does not
6570 exist. This function never returns NULL_TREE. */
6572 tree
6573 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6575 tree t;
6577 /* See if we already have the appropriate qualified variant. */
6578 t = get_qualified_type (type, type_quals);
6580 /* If not, build it. */
6581 if (!t)
6583 t = build_variant_type_copy (type PASS_MEM_STAT);
6584 set_type_quals (t, type_quals);
6586 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6588 /* See if this object can map to a basic atomic type. */
6589 tree atomic_type = find_atomic_core_type (type);
6590 if (atomic_type)
6592 /* Ensure the alignment of this type is compatible with
6593 the required alignment of the atomic type. */
6594 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6595 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6599 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6600 /* Propagate structural equality. */
6601 SET_TYPE_STRUCTURAL_EQUALITY (t);
6602 else if (TYPE_CANONICAL (type) != type)
6603 /* Build the underlying canonical type, since it is different
6604 from TYPE. */
6606 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6607 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6609 else
6610 /* T is its own canonical type. */
6611 TYPE_CANONICAL (t) = t;
6615 return t;
6618 /* Create a variant of type T with alignment ALIGN. */
6620 tree
6621 build_aligned_type (tree type, unsigned int align)
6623 tree t;
6625 if (TYPE_PACKED (type)
6626 || TYPE_ALIGN (type) == align)
6627 return type;
6629 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6630 if (check_aligned_type (t, type, align))
6631 return t;
6633 t = build_variant_type_copy (type);
6634 SET_TYPE_ALIGN (t, align);
6635 TYPE_USER_ALIGN (t) = 1;
6637 return t;
6640 /* Create a new distinct copy of TYPE. The new type is made its own
6641 MAIN_VARIANT. If TYPE requires structural equality checks, the
6642 resulting type requires structural equality checks; otherwise, its
6643 TYPE_CANONICAL points to itself. */
6645 tree
6646 build_distinct_type_copy (tree type MEM_STAT_DECL)
6648 tree t = copy_node (type PASS_MEM_STAT);
6650 TYPE_POINTER_TO (t) = 0;
6651 TYPE_REFERENCE_TO (t) = 0;
6653 /* Set the canonical type either to a new equivalence class, or
6654 propagate the need for structural equality checks. */
6655 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6656 SET_TYPE_STRUCTURAL_EQUALITY (t);
6657 else
6658 TYPE_CANONICAL (t) = t;
6660 /* Make it its own variant. */
6661 TYPE_MAIN_VARIANT (t) = t;
6662 TYPE_NEXT_VARIANT (t) = 0;
6664 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6665 whose TREE_TYPE is not t. This can also happen in the Ada
6666 frontend when using subtypes. */
6668 return t;
6671 /* Create a new variant of TYPE, equivalent but distinct. This is so
6672 the caller can modify it. TYPE_CANONICAL for the return type will
6673 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6674 are considered equal by the language itself (or that both types
6675 require structural equality checks). */
6677 tree
6678 build_variant_type_copy (tree type MEM_STAT_DECL)
6680 tree t, m = TYPE_MAIN_VARIANT (type);
6682 t = build_distinct_type_copy (type PASS_MEM_STAT);
6684 /* Since we're building a variant, assume that it is a non-semantic
6685 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6686 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6687 /* Type variants have no alias set defined. */
6688 TYPE_ALIAS_SET (t) = -1;
6690 /* Add the new type to the chain of variants of TYPE. */
6691 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6692 TYPE_NEXT_VARIANT (m) = t;
6693 TYPE_MAIN_VARIANT (t) = m;
6695 return t;
6698 /* Return true if the from tree in both tree maps are equal. */
6701 tree_map_base_eq (const void *va, const void *vb)
6703 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6704 *const b = (const struct tree_map_base *) vb;
6705 return (a->from == b->from);
6708 /* Hash a from tree in a tree_base_map. */
6710 unsigned int
6711 tree_map_base_hash (const void *item)
6713 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6716 /* Return true if this tree map structure is marked for garbage collection
6717 purposes. We simply return true if the from tree is marked, so that this
6718 structure goes away when the from tree goes away. */
6721 tree_map_base_marked_p (const void *p)
6723 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6726 /* Hash a from tree in a tree_map. */
6728 unsigned int
6729 tree_map_hash (const void *item)
6731 return (((const struct tree_map *) item)->hash);
6734 /* Hash a from tree in a tree_decl_map. */
6736 unsigned int
6737 tree_decl_map_hash (const void *item)
6739 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6742 /* Return the initialization priority for DECL. */
6744 priority_type
6745 decl_init_priority_lookup (tree decl)
6747 symtab_node *snode = symtab_node::get (decl);
6749 if (!snode)
6750 return DEFAULT_INIT_PRIORITY;
6751 return
6752 snode->get_init_priority ();
6755 /* Return the finalization priority for DECL. */
6757 priority_type
6758 decl_fini_priority_lookup (tree decl)
6760 cgraph_node *node = cgraph_node::get (decl);
6762 if (!node)
6763 return DEFAULT_INIT_PRIORITY;
6764 return
6765 node->get_fini_priority ();
6768 /* Set the initialization priority for DECL to PRIORITY. */
6770 void
6771 decl_init_priority_insert (tree decl, priority_type priority)
6773 struct symtab_node *snode;
6775 if (priority == DEFAULT_INIT_PRIORITY)
6777 snode = symtab_node::get (decl);
6778 if (!snode)
6779 return;
6781 else if (VAR_P (decl))
6782 snode = varpool_node::get_create (decl);
6783 else
6784 snode = cgraph_node::get_create (decl);
6785 snode->set_init_priority (priority);
6788 /* Set the finalization priority for DECL to PRIORITY. */
6790 void
6791 decl_fini_priority_insert (tree decl, priority_type priority)
6793 struct cgraph_node *node;
6795 if (priority == DEFAULT_INIT_PRIORITY)
6797 node = cgraph_node::get (decl);
6798 if (!node)
6799 return;
6801 else
6802 node = cgraph_node::get_create (decl);
6803 node->set_fini_priority (priority);
6806 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6808 static void
6809 print_debug_expr_statistics (void)
6811 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6812 (long) debug_expr_for_decl->size (),
6813 (long) debug_expr_for_decl->elements (),
6814 debug_expr_for_decl->collisions ());
6817 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6819 static void
6820 print_value_expr_statistics (void)
6822 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6823 (long) value_expr_for_decl->size (),
6824 (long) value_expr_for_decl->elements (),
6825 value_expr_for_decl->collisions ());
6828 /* Lookup a debug expression for FROM, and return it if we find one. */
6830 tree
6831 decl_debug_expr_lookup (tree from)
6833 struct tree_decl_map *h, in;
6834 in.base.from = from;
6836 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6837 if (h)
6838 return h->to;
6839 return NULL_TREE;
6842 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6844 void
6845 decl_debug_expr_insert (tree from, tree to)
6847 struct tree_decl_map *h;
6849 h = ggc_alloc<tree_decl_map> ();
6850 h->base.from = from;
6851 h->to = to;
6852 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6855 /* Lookup a value expression for FROM, and return it if we find one. */
6857 tree
6858 decl_value_expr_lookup (tree from)
6860 struct tree_decl_map *h, in;
6861 in.base.from = from;
6863 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6864 if (h)
6865 return h->to;
6866 return NULL_TREE;
6869 /* Insert a mapping FROM->TO in the value expression hashtable. */
6871 void
6872 decl_value_expr_insert (tree from, tree to)
6874 struct tree_decl_map *h;
6876 h = ggc_alloc<tree_decl_map> ();
6877 h->base.from = from;
6878 h->to = to;
6879 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6882 /* Lookup a vector of debug arguments for FROM, and return it if we
6883 find one. */
6885 vec<tree, va_gc> **
6886 decl_debug_args_lookup (tree from)
6888 struct tree_vec_map *h, in;
6890 if (!DECL_HAS_DEBUG_ARGS_P (from))
6891 return NULL;
6892 gcc_checking_assert (debug_args_for_decl != NULL);
6893 in.base.from = from;
6894 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6895 if (h)
6896 return &h->to;
6897 return NULL;
6900 /* Insert a mapping FROM->empty vector of debug arguments in the value
6901 expression hashtable. */
6903 vec<tree, va_gc> **
6904 decl_debug_args_insert (tree from)
6906 struct tree_vec_map *h;
6907 tree_vec_map **loc;
6909 if (DECL_HAS_DEBUG_ARGS_P (from))
6910 return decl_debug_args_lookup (from);
6911 if (debug_args_for_decl == NULL)
6912 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6913 h = ggc_alloc<tree_vec_map> ();
6914 h->base.from = from;
6915 h->to = NULL;
6916 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6917 *loc = h;
6918 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6919 return &h->to;
6922 /* Hashing of types so that we don't make duplicates.
6923 The entry point is `type_hash_canon'. */
6925 /* Generate the default hash code for TYPE. This is designed for
6926 speed, rather than maximum entropy. */
6928 hashval_t
6929 type_hash_canon_hash (tree type)
6931 inchash::hash hstate;
6933 hstate.add_int (TREE_CODE (type));
6935 if (TREE_TYPE (type))
6936 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6938 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6939 /* Just the identifier is adequate to distinguish. */
6940 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6942 switch (TREE_CODE (type))
6944 case METHOD_TYPE:
6945 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6946 /* FALLTHROUGH. */
6947 case FUNCTION_TYPE:
6948 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6949 if (TREE_VALUE (t) != error_mark_node)
6950 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6951 break;
6953 case OFFSET_TYPE:
6954 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6955 break;
6957 case ARRAY_TYPE:
6959 if (TYPE_DOMAIN (type))
6960 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6961 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6963 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6964 hstate.add_object (typeless);
6967 break;
6969 case INTEGER_TYPE:
6971 tree t = TYPE_MAX_VALUE (type);
6972 if (!t)
6973 t = TYPE_MIN_VALUE (type);
6974 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6975 hstate.add_object (TREE_INT_CST_ELT (t, i));
6976 break;
6979 case REAL_TYPE:
6980 case FIXED_POINT_TYPE:
6982 unsigned prec = TYPE_PRECISION (type);
6983 hstate.add_object (prec);
6984 break;
6987 case VECTOR_TYPE:
6988 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
6989 break;
6991 default:
6992 break;
6995 return hstate.end ();
6998 /* These are the Hashtable callback functions. */
7000 /* Returns true iff the types are equivalent. */
7002 bool
7003 type_cache_hasher::equal (type_hash *a, type_hash *b)
7005 /* First test the things that are the same for all types. */
7006 if (a->hash != b->hash
7007 || TREE_CODE (a->type) != TREE_CODE (b->type)
7008 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
7009 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
7010 TYPE_ATTRIBUTES (b->type))
7011 || (TREE_CODE (a->type) != COMPLEX_TYPE
7012 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
7013 return 0;
7015 /* Be careful about comparing arrays before and after the element type
7016 has been completed; don't compare TYPE_ALIGN unless both types are
7017 complete. */
7018 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
7019 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
7020 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
7021 return 0;
7023 switch (TREE_CODE (a->type))
7025 case VOID_TYPE:
7026 case COMPLEX_TYPE:
7027 case POINTER_TYPE:
7028 case REFERENCE_TYPE:
7029 case NULLPTR_TYPE:
7030 return 1;
7032 case VECTOR_TYPE:
7033 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
7034 TYPE_VECTOR_SUBPARTS (b->type));
7036 case ENUMERAL_TYPE:
7037 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
7038 && !(TYPE_VALUES (a->type)
7039 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
7040 && TYPE_VALUES (b->type)
7041 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
7042 && type_list_equal (TYPE_VALUES (a->type),
7043 TYPE_VALUES (b->type))))
7044 return 0;
7046 /* fall through */
7048 case INTEGER_TYPE:
7049 case REAL_TYPE:
7050 case BOOLEAN_TYPE:
7051 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
7052 return false;
7053 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
7054 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
7055 TYPE_MAX_VALUE (b->type)))
7056 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
7057 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
7058 TYPE_MIN_VALUE (b->type))));
7060 case FIXED_POINT_TYPE:
7061 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
7063 case OFFSET_TYPE:
7064 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
7066 case METHOD_TYPE:
7067 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
7068 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7069 || (TYPE_ARG_TYPES (a->type)
7070 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7071 && TYPE_ARG_TYPES (b->type)
7072 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7073 && type_list_equal (TYPE_ARG_TYPES (a->type),
7074 TYPE_ARG_TYPES (b->type)))))
7075 break;
7076 return 0;
7077 case ARRAY_TYPE:
7078 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
7079 where the flag should be inherited from the element type
7080 and can change after ARRAY_TYPEs are created; on non-aggregates
7081 compare it and hash it, scalars will never have that flag set
7082 and we need to differentiate between arrays created by different
7083 front-ends or middle-end created arrays. */
7084 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
7085 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
7086 || (TYPE_TYPELESS_STORAGE (a->type)
7087 == TYPE_TYPELESS_STORAGE (b->type))));
7089 case RECORD_TYPE:
7090 case UNION_TYPE:
7091 case QUAL_UNION_TYPE:
7092 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
7093 || (TYPE_FIELDS (a->type)
7094 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
7095 && TYPE_FIELDS (b->type)
7096 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
7097 && type_list_equal (TYPE_FIELDS (a->type),
7098 TYPE_FIELDS (b->type))));
7100 case FUNCTION_TYPE:
7101 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7102 || (TYPE_ARG_TYPES (a->type)
7103 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7104 && TYPE_ARG_TYPES (b->type)
7105 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7106 && type_list_equal (TYPE_ARG_TYPES (a->type),
7107 TYPE_ARG_TYPES (b->type))))
7108 break;
7109 return 0;
7111 default:
7112 return 0;
7115 if (lang_hooks.types.type_hash_eq != NULL)
7116 return lang_hooks.types.type_hash_eq (a->type, b->type);
7118 return 1;
7121 /* Given TYPE, and HASHCODE its hash code, return the canonical
7122 object for an identical type if one already exists.
7123 Otherwise, return TYPE, and record it as the canonical object.
7125 To use this function, first create a type of the sort you want.
7126 Then compute its hash code from the fields of the type that
7127 make it different from other similar types.
7128 Then call this function and use the value. */
7130 tree
7131 type_hash_canon (unsigned int hashcode, tree type)
7133 type_hash in;
7134 type_hash **loc;
7136 /* The hash table only contains main variants, so ensure that's what we're
7137 being passed. */
7138 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7140 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7141 must call that routine before comparing TYPE_ALIGNs. */
7142 layout_type (type);
7144 in.hash = hashcode;
7145 in.type = type;
7147 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7148 if (*loc)
7150 tree t1 = ((type_hash *) *loc)->type;
7151 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
7152 && t1 != type);
7153 if (TYPE_UID (type) + 1 == next_type_uid)
7154 --next_type_uid;
7155 /* Free also min/max values and the cache for integer
7156 types. This can't be done in free_node, as LTO frees
7157 those on its own. */
7158 if (TREE_CODE (type) == INTEGER_TYPE)
7160 if (TYPE_MIN_VALUE (type)
7161 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
7163 /* Zero is always in TYPE_CACHED_VALUES. */
7164 if (! TYPE_UNSIGNED (type))
7165 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
7166 ggc_free (TYPE_MIN_VALUE (type));
7168 if (TYPE_MAX_VALUE (type)
7169 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
7171 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
7172 ggc_free (TYPE_MAX_VALUE (type));
7174 if (TYPE_CACHED_VALUES_P (type))
7175 ggc_free (TYPE_CACHED_VALUES (type));
7177 free_node (type);
7178 return t1;
7180 else
7182 struct type_hash *h;
7184 h = ggc_alloc<type_hash> ();
7185 h->hash = hashcode;
7186 h->type = type;
7187 *loc = h;
7189 return type;
7193 static void
7194 print_type_hash_statistics (void)
7196 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7197 (long) type_hash_table->size (),
7198 (long) type_hash_table->elements (),
7199 type_hash_table->collisions ());
7202 /* Given two lists of types
7203 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7204 return 1 if the lists contain the same types in the same order.
7205 Also, the TREE_PURPOSEs must match. */
7207 bool
7208 type_list_equal (const_tree l1, const_tree l2)
7210 const_tree t1, t2;
7212 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7213 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7214 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7215 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7216 && (TREE_TYPE (TREE_PURPOSE (t1))
7217 == TREE_TYPE (TREE_PURPOSE (t2))))))
7218 return false;
7220 return t1 == t2;
7223 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7224 given by TYPE. If the argument list accepts variable arguments,
7225 then this function counts only the ordinary arguments. */
7228 type_num_arguments (const_tree fntype)
7230 int i = 0;
7232 for (tree t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
7233 /* If the function does not take a variable number of arguments,
7234 the last element in the list will have type `void'. */
7235 if (VOID_TYPE_P (TREE_VALUE (t)))
7236 break;
7237 else
7238 ++i;
7240 return i;
7243 /* Return the type of the function TYPE's argument ARGNO if known.
7244 For vararg function's where ARGNO refers to one of the variadic
7245 arguments return null. Otherwise, return a void_type_node for
7246 out-of-bounds ARGNO. */
7248 tree
7249 type_argument_type (const_tree fntype, unsigned argno)
7251 /* Treat zero the same as an out-of-bounds argument number. */
7252 if (!argno)
7253 return void_type_node;
7255 function_args_iterator iter;
7257 tree argtype;
7258 unsigned i = 1;
7259 FOREACH_FUNCTION_ARGS (fntype, argtype, iter)
7261 /* A vararg function's argument list ends in a null. Otherwise,
7262 an ordinary function's argument list ends with void. Return
7263 null if ARGNO refers to a vararg argument, void_type_node if
7264 it's out of bounds, and the formal argument type otherwise. */
7265 if (!argtype)
7266 break;
7268 if (i == argno || VOID_TYPE_P (argtype))
7269 return argtype;
7271 ++i;
7274 return NULL_TREE;
7277 /* Nonzero if integer constants T1 and T2
7278 represent the same constant value. */
7281 tree_int_cst_equal (const_tree t1, const_tree t2)
7283 if (t1 == t2)
7284 return 1;
7286 if (t1 == 0 || t2 == 0)
7287 return 0;
7289 STRIP_ANY_LOCATION_WRAPPER (t1);
7290 STRIP_ANY_LOCATION_WRAPPER (t2);
7292 if (TREE_CODE (t1) == INTEGER_CST
7293 && TREE_CODE (t2) == INTEGER_CST
7294 && wi::to_widest (t1) == wi::to_widest (t2))
7295 return 1;
7297 return 0;
7300 /* Return true if T is an INTEGER_CST whose numerical value (extended
7301 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7303 bool
7304 tree_fits_shwi_p (const_tree t)
7306 return (t != NULL_TREE
7307 && TREE_CODE (t) == INTEGER_CST
7308 && wi::fits_shwi_p (wi::to_widest (t)));
7311 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7312 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
7314 bool
7315 tree_fits_poly_int64_p (const_tree t)
7317 if (t == NULL_TREE)
7318 return false;
7319 if (POLY_INT_CST_P (t))
7321 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7322 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
7323 return false;
7324 return true;
7326 return (TREE_CODE (t) == INTEGER_CST
7327 && wi::fits_shwi_p (wi::to_widest (t)));
7330 /* Return true if T is an INTEGER_CST whose numerical value (extended
7331 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7333 bool
7334 tree_fits_uhwi_p (const_tree t)
7336 return (t != NULL_TREE
7337 && TREE_CODE (t) == INTEGER_CST
7338 && wi::fits_uhwi_p (wi::to_widest (t)));
7341 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7342 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
7344 bool
7345 tree_fits_poly_uint64_p (const_tree t)
7347 if (t == NULL_TREE)
7348 return false;
7349 if (POLY_INT_CST_P (t))
7351 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7352 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
7353 return false;
7354 return true;
7356 return (TREE_CODE (t) == INTEGER_CST
7357 && wi::fits_uhwi_p (wi::to_widest (t)));
7360 /* T is an INTEGER_CST whose numerical value (extended according to
7361 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7362 HOST_WIDE_INT. */
7364 HOST_WIDE_INT
7365 tree_to_shwi (const_tree t)
7367 gcc_assert (tree_fits_shwi_p (t));
7368 return TREE_INT_CST_LOW (t);
7371 /* T is an INTEGER_CST whose numerical value (extended according to
7372 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7373 HOST_WIDE_INT. */
7375 unsigned HOST_WIDE_INT
7376 tree_to_uhwi (const_tree t)
7378 gcc_assert (tree_fits_uhwi_p (t));
7379 return TREE_INT_CST_LOW (t);
7382 /* Return the most significant (sign) bit of T. */
7385 tree_int_cst_sign_bit (const_tree t)
7387 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7389 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
7392 /* Return an indication of the sign of the integer constant T.
7393 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7394 Note that -1 will never be returned if T's type is unsigned. */
7397 tree_int_cst_sgn (const_tree t)
7399 if (wi::to_wide (t) == 0)
7400 return 0;
7401 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7402 return 1;
7403 else if (wi::neg_p (wi::to_wide (t)))
7404 return -1;
7405 else
7406 return 1;
7409 /* Return the minimum number of bits needed to represent VALUE in a
7410 signed or unsigned type, UNSIGNEDP says which. */
7412 unsigned int
7413 tree_int_cst_min_precision (tree value, signop sgn)
7415 /* If the value is negative, compute its negative minus 1. The latter
7416 adjustment is because the absolute value of the largest negative value
7417 is one larger than the largest positive value. This is equivalent to
7418 a bit-wise negation, so use that operation instead. */
7420 if (tree_int_cst_sgn (value) < 0)
7421 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7423 /* Return the number of bits needed, taking into account the fact
7424 that we need one more bit for a signed than unsigned type.
7425 If value is 0 or -1, the minimum precision is 1 no matter
7426 whether unsignedp is true or false. */
7428 if (integer_zerop (value))
7429 return 1;
7430 else
7431 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7434 /* Return truthvalue of whether T1 is the same tree structure as T2.
7435 Return 1 if they are the same.
7436 Return 0 if they are understandably different.
7437 Return -1 if either contains tree structure not understood by
7438 this function. */
7441 simple_cst_equal (const_tree t1, const_tree t2)
7443 enum tree_code code1, code2;
7444 int cmp;
7445 int i;
7447 if (t1 == t2)
7448 return 1;
7449 if (t1 == 0 || t2 == 0)
7450 return 0;
7452 /* For location wrappers to be the same, they must be at the same
7453 source location (and wrap the same thing). */
7454 if (location_wrapper_p (t1) && location_wrapper_p (t2))
7456 if (EXPR_LOCATION (t1) != EXPR_LOCATION (t2))
7457 return 0;
7458 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7461 code1 = TREE_CODE (t1);
7462 code2 = TREE_CODE (t2);
7464 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7466 if (CONVERT_EXPR_CODE_P (code2)
7467 || code2 == NON_LVALUE_EXPR)
7468 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7469 else
7470 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7473 else if (CONVERT_EXPR_CODE_P (code2)
7474 || code2 == NON_LVALUE_EXPR)
7475 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7477 if (code1 != code2)
7478 return 0;
7480 switch (code1)
7482 case INTEGER_CST:
7483 return wi::to_widest (t1) == wi::to_widest (t2);
7485 case REAL_CST:
7486 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7488 case FIXED_CST:
7489 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7491 case STRING_CST:
7492 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7493 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7494 TREE_STRING_LENGTH (t1)));
7496 case CONSTRUCTOR:
7498 unsigned HOST_WIDE_INT idx;
7499 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7500 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7502 if (vec_safe_length (v1) != vec_safe_length (v2))
7503 return false;
7505 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7506 /* ??? Should we handle also fields here? */
7507 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7508 return false;
7509 return true;
7512 case SAVE_EXPR:
7513 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7515 case CALL_EXPR:
7516 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7517 if (cmp <= 0)
7518 return cmp;
7519 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7520 return 0;
7522 const_tree arg1, arg2;
7523 const_call_expr_arg_iterator iter1, iter2;
7524 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7525 arg2 = first_const_call_expr_arg (t2, &iter2);
7526 arg1 && arg2;
7527 arg1 = next_const_call_expr_arg (&iter1),
7528 arg2 = next_const_call_expr_arg (&iter2))
7530 cmp = simple_cst_equal (arg1, arg2);
7531 if (cmp <= 0)
7532 return cmp;
7534 return arg1 == arg2;
7537 case TARGET_EXPR:
7538 /* Special case: if either target is an unallocated VAR_DECL,
7539 it means that it's going to be unified with whatever the
7540 TARGET_EXPR is really supposed to initialize, so treat it
7541 as being equivalent to anything. */
7542 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7543 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7544 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7545 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7546 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7547 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7548 cmp = 1;
7549 else
7550 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7552 if (cmp <= 0)
7553 return cmp;
7555 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7557 case WITH_CLEANUP_EXPR:
7558 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7559 if (cmp <= 0)
7560 return cmp;
7562 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7564 case COMPONENT_REF:
7565 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7566 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7568 return 0;
7570 case VAR_DECL:
7571 case PARM_DECL:
7572 case CONST_DECL:
7573 case FUNCTION_DECL:
7574 return 0;
7576 default:
7577 if (POLY_INT_CST_P (t1))
7578 /* A false return means maybe_ne rather than known_ne. */
7579 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7580 TYPE_SIGN (TREE_TYPE (t1))),
7581 poly_widest_int::from (poly_int_cst_value (t2),
7582 TYPE_SIGN (TREE_TYPE (t2))));
7583 break;
7586 /* This general rule works for most tree codes. All exceptions should be
7587 handled above. If this is a language-specific tree code, we can't
7588 trust what might be in the operand, so say we don't know
7589 the situation. */
7590 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7591 return -1;
7593 switch (TREE_CODE_CLASS (code1))
7595 case tcc_unary:
7596 case tcc_binary:
7597 case tcc_comparison:
7598 case tcc_expression:
7599 case tcc_reference:
7600 case tcc_statement:
7601 cmp = 1;
7602 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7604 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7605 if (cmp <= 0)
7606 return cmp;
7609 return cmp;
7611 default:
7612 return -1;
7616 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7617 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7618 than U, respectively. */
7621 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7623 if (tree_int_cst_sgn (t) < 0)
7624 return -1;
7625 else if (!tree_fits_uhwi_p (t))
7626 return 1;
7627 else if (TREE_INT_CST_LOW (t) == u)
7628 return 0;
7629 else if (TREE_INT_CST_LOW (t) < u)
7630 return -1;
7631 else
7632 return 1;
7635 /* Return true if SIZE represents a constant size that is in bounds of
7636 what the middle-end and the backend accepts (covering not more than
7637 half of the address-space).
7638 When PERR is non-null, set *PERR on failure to the description of
7639 why SIZE is not valid. */
7641 bool
7642 valid_constant_size_p (const_tree size, cst_size_error *perr /* = NULL */)
7644 if (POLY_INT_CST_P (size))
7646 if (TREE_OVERFLOW (size))
7647 return false;
7648 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7649 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7650 return false;
7651 return true;
7654 cst_size_error error;
7655 if (!perr)
7656 perr = &error;
7658 if (TREE_CODE (size) != INTEGER_CST)
7660 *perr = cst_size_not_constant;
7661 return false;
7664 if (TREE_OVERFLOW_P (size))
7666 *perr = cst_size_overflow;
7667 return false;
7670 if (tree_int_cst_sgn (size) < 0)
7672 *perr = cst_size_negative;
7673 return false;
7675 if (!tree_fits_uhwi_p (size)
7676 || (wi::to_widest (TYPE_MAX_VALUE (sizetype))
7677 < wi::to_widest (size) * 2))
7679 *perr = cst_size_too_big;
7680 return false;
7683 return true;
7686 /* Return the precision of the type, or for a complex or vector type the
7687 precision of the type of its elements. */
7689 unsigned int
7690 element_precision (const_tree type)
7692 if (!TYPE_P (type))
7693 type = TREE_TYPE (type);
7694 enum tree_code code = TREE_CODE (type);
7695 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7696 type = TREE_TYPE (type);
7698 return TYPE_PRECISION (type);
7701 /* Return true if CODE represents an associative tree code. Otherwise
7702 return false. */
7703 bool
7704 associative_tree_code (enum tree_code code)
7706 switch (code)
7708 case BIT_IOR_EXPR:
7709 case BIT_AND_EXPR:
7710 case BIT_XOR_EXPR:
7711 case PLUS_EXPR:
7712 case MULT_EXPR:
7713 case MIN_EXPR:
7714 case MAX_EXPR:
7715 return true;
7717 default:
7718 break;
7720 return false;
7723 /* Return true if CODE represents a commutative tree code. Otherwise
7724 return false. */
7725 bool
7726 commutative_tree_code (enum tree_code code)
7728 switch (code)
7730 case PLUS_EXPR:
7731 case MULT_EXPR:
7732 case MULT_HIGHPART_EXPR:
7733 case MIN_EXPR:
7734 case MAX_EXPR:
7735 case BIT_IOR_EXPR:
7736 case BIT_XOR_EXPR:
7737 case BIT_AND_EXPR:
7738 case NE_EXPR:
7739 case EQ_EXPR:
7740 case UNORDERED_EXPR:
7741 case ORDERED_EXPR:
7742 case UNEQ_EXPR:
7743 case LTGT_EXPR:
7744 case TRUTH_AND_EXPR:
7745 case TRUTH_XOR_EXPR:
7746 case TRUTH_OR_EXPR:
7747 case WIDEN_MULT_EXPR:
7748 case VEC_WIDEN_MULT_HI_EXPR:
7749 case VEC_WIDEN_MULT_LO_EXPR:
7750 case VEC_WIDEN_MULT_EVEN_EXPR:
7751 case VEC_WIDEN_MULT_ODD_EXPR:
7752 return true;
7754 default:
7755 break;
7757 return false;
7760 /* Return true if CODE represents a ternary tree code for which the
7761 first two operands are commutative. Otherwise return false. */
7762 bool
7763 commutative_ternary_tree_code (enum tree_code code)
7765 switch (code)
7767 case WIDEN_MULT_PLUS_EXPR:
7768 case WIDEN_MULT_MINUS_EXPR:
7769 case DOT_PROD_EXPR:
7770 return true;
7772 default:
7773 break;
7775 return false;
7778 /* Returns true if CODE can overflow. */
7780 bool
7781 operation_can_overflow (enum tree_code code)
7783 switch (code)
7785 case PLUS_EXPR:
7786 case MINUS_EXPR:
7787 case MULT_EXPR:
7788 case LSHIFT_EXPR:
7789 /* Can overflow in various ways. */
7790 return true;
7791 case TRUNC_DIV_EXPR:
7792 case EXACT_DIV_EXPR:
7793 case FLOOR_DIV_EXPR:
7794 case CEIL_DIV_EXPR:
7795 /* For INT_MIN / -1. */
7796 return true;
7797 case NEGATE_EXPR:
7798 case ABS_EXPR:
7799 /* For -INT_MIN. */
7800 return true;
7801 default:
7802 /* These operators cannot overflow. */
7803 return false;
7807 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7808 ftrapv doesn't generate trapping insns for CODE. */
7810 bool
7811 operation_no_trapping_overflow (tree type, enum tree_code code)
7813 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7815 /* We don't generate instructions that trap on overflow for complex or vector
7816 types. */
7817 if (!INTEGRAL_TYPE_P (type))
7818 return true;
7820 if (!TYPE_OVERFLOW_TRAPS (type))
7821 return true;
7823 switch (code)
7825 case PLUS_EXPR:
7826 case MINUS_EXPR:
7827 case MULT_EXPR:
7828 case NEGATE_EXPR:
7829 case ABS_EXPR:
7830 /* These operators can overflow, and -ftrapv generates trapping code for
7831 these. */
7832 return false;
7833 case TRUNC_DIV_EXPR:
7834 case EXACT_DIV_EXPR:
7835 case FLOOR_DIV_EXPR:
7836 case CEIL_DIV_EXPR:
7837 case LSHIFT_EXPR:
7838 /* These operators can overflow, but -ftrapv does not generate trapping
7839 code for these. */
7840 return true;
7841 default:
7842 /* These operators cannot overflow. */
7843 return true;
7847 /* Constructors for pointer, array and function types.
7848 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7849 constructed by language-dependent code, not here.) */
7851 /* Construct, lay out and return the type of pointers to TO_TYPE with
7852 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7853 reference all of memory. If such a type has already been
7854 constructed, reuse it. */
7856 tree
7857 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7858 bool can_alias_all)
7860 tree t;
7861 bool could_alias = can_alias_all;
7863 if (to_type == error_mark_node)
7864 return error_mark_node;
7866 /* If the pointed-to type has the may_alias attribute set, force
7867 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7868 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7869 can_alias_all = true;
7871 /* In some cases, languages will have things that aren't a POINTER_TYPE
7872 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7873 In that case, return that type without regard to the rest of our
7874 operands.
7876 ??? This is a kludge, but consistent with the way this function has
7877 always operated and there doesn't seem to be a good way to avoid this
7878 at the moment. */
7879 if (TYPE_POINTER_TO (to_type) != 0
7880 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7881 return TYPE_POINTER_TO (to_type);
7883 /* First, if we already have a type for pointers to TO_TYPE and it's
7884 the proper mode, use it. */
7885 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7886 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7887 return t;
7889 t = make_node (POINTER_TYPE);
7891 TREE_TYPE (t) = to_type;
7892 SET_TYPE_MODE (t, mode);
7893 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7894 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7895 TYPE_POINTER_TO (to_type) = t;
7897 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7898 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7899 SET_TYPE_STRUCTURAL_EQUALITY (t);
7900 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7901 TYPE_CANONICAL (t)
7902 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7903 mode, false);
7905 /* Lay out the type. This function has many callers that are concerned
7906 with expression-construction, and this simplifies them all. */
7907 layout_type (t);
7909 return t;
7912 /* By default build pointers in ptr_mode. */
7914 tree
7915 build_pointer_type (tree to_type)
7917 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7918 : TYPE_ADDR_SPACE (to_type);
7919 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7920 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7923 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7925 tree
7926 build_reference_type_for_mode (tree to_type, machine_mode mode,
7927 bool can_alias_all)
7929 tree t;
7930 bool could_alias = can_alias_all;
7932 if (to_type == error_mark_node)
7933 return error_mark_node;
7935 /* If the pointed-to type has the may_alias attribute set, force
7936 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7937 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7938 can_alias_all = true;
7940 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7941 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7942 In that case, return that type without regard to the rest of our
7943 operands.
7945 ??? This is a kludge, but consistent with the way this function has
7946 always operated and there doesn't seem to be a good way to avoid this
7947 at the moment. */
7948 if (TYPE_REFERENCE_TO (to_type) != 0
7949 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7950 return TYPE_REFERENCE_TO (to_type);
7952 /* First, if we already have a type for pointers to TO_TYPE and it's
7953 the proper mode, use it. */
7954 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7955 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7956 return t;
7958 t = make_node (REFERENCE_TYPE);
7960 TREE_TYPE (t) = to_type;
7961 SET_TYPE_MODE (t, mode);
7962 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7963 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7964 TYPE_REFERENCE_TO (to_type) = t;
7966 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7967 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7968 SET_TYPE_STRUCTURAL_EQUALITY (t);
7969 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7970 TYPE_CANONICAL (t)
7971 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7972 mode, false);
7974 layout_type (t);
7976 return t;
7980 /* Build the node for the type of references-to-TO_TYPE by default
7981 in ptr_mode. */
7983 tree
7984 build_reference_type (tree to_type)
7986 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7987 : TYPE_ADDR_SPACE (to_type);
7988 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7989 return build_reference_type_for_mode (to_type, pointer_mode, false);
7992 #define MAX_INT_CACHED_PREC \
7993 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7994 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7996 /* Builds a signed or unsigned integer type of precision PRECISION.
7997 Used for C bitfields whose precision does not match that of
7998 built-in target types. */
7999 tree
8000 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8001 int unsignedp)
8003 tree itype, ret;
8005 if (unsignedp)
8006 unsignedp = MAX_INT_CACHED_PREC + 1;
8008 if (precision <= MAX_INT_CACHED_PREC)
8010 itype = nonstandard_integer_type_cache[precision + unsignedp];
8011 if (itype)
8012 return itype;
8015 itype = make_node (INTEGER_TYPE);
8016 TYPE_PRECISION (itype) = precision;
8018 if (unsignedp)
8019 fixup_unsigned_type (itype);
8020 else
8021 fixup_signed_type (itype);
8023 inchash::hash hstate;
8024 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8025 ret = type_hash_canon (hstate.end (), itype);
8026 if (precision <= MAX_INT_CACHED_PREC)
8027 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8029 return ret;
8032 #define MAX_BOOL_CACHED_PREC \
8033 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8034 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8036 /* Builds a boolean type of precision PRECISION.
8037 Used for boolean vectors to choose proper vector element size. */
8038 tree
8039 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8041 tree type;
8043 if (precision <= MAX_BOOL_CACHED_PREC)
8045 type = nonstandard_boolean_type_cache[precision];
8046 if (type)
8047 return type;
8050 type = make_node (BOOLEAN_TYPE);
8051 TYPE_PRECISION (type) = precision;
8052 fixup_signed_type (type);
8054 if (precision <= MAX_INT_CACHED_PREC)
8055 nonstandard_boolean_type_cache[precision] = type;
8057 return type;
8060 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8061 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8062 is true, reuse such a type that has already been constructed. */
8064 static tree
8065 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8067 tree itype = make_node (INTEGER_TYPE);
8069 TREE_TYPE (itype) = type;
8071 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8072 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8074 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8075 SET_TYPE_MODE (itype, TYPE_MODE (type));
8076 TYPE_SIZE (itype) = TYPE_SIZE (type);
8077 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8078 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
8079 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8080 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
8082 if (!shared)
8083 return itype;
8085 if ((TYPE_MIN_VALUE (itype)
8086 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8087 || (TYPE_MAX_VALUE (itype)
8088 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8090 /* Since we cannot reliably merge this type, we need to compare it using
8091 structural equality checks. */
8092 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8093 return itype;
8096 hashval_t hash = type_hash_canon_hash (itype);
8097 itype = type_hash_canon (hash, itype);
8099 return itype;
8102 /* Wrapper around build_range_type_1 with SHARED set to true. */
8104 tree
8105 build_range_type (tree type, tree lowval, tree highval)
8107 return build_range_type_1 (type, lowval, highval, true);
8110 /* Wrapper around build_range_type_1 with SHARED set to false. */
8112 tree
8113 build_nonshared_range_type (tree type, tree lowval, tree highval)
8115 return build_range_type_1 (type, lowval, highval, false);
8118 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8119 MAXVAL should be the maximum value in the domain
8120 (one less than the length of the array).
8122 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8123 We don't enforce this limit, that is up to caller (e.g. language front end).
8124 The limit exists because the result is a signed type and we don't handle
8125 sizes that use more than one HOST_WIDE_INT. */
8127 tree
8128 build_index_type (tree maxval)
8130 return build_range_type (sizetype, size_zero_node, maxval);
8133 /* Return true if the debug information for TYPE, a subtype, should be emitted
8134 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8135 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8136 debug info and doesn't reflect the source code. */
8138 bool
8139 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8141 tree base_type = TREE_TYPE (type), low, high;
8143 /* Subrange types have a base type which is an integral type. */
8144 if (!INTEGRAL_TYPE_P (base_type))
8145 return false;
8147 /* Get the real bounds of the subtype. */
8148 if (lang_hooks.types.get_subrange_bounds)
8149 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8150 else
8152 low = TYPE_MIN_VALUE (type);
8153 high = TYPE_MAX_VALUE (type);
8156 /* If the type and its base type have the same representation and the same
8157 name, then the type is not a subrange but a copy of the base type. */
8158 if ((TREE_CODE (base_type) == INTEGER_TYPE
8159 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8160 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8161 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8162 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8163 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8164 return false;
8166 if (lowval)
8167 *lowval = low;
8168 if (highval)
8169 *highval = high;
8170 return true;
8173 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8174 and number of elements specified by the range of values of INDEX_TYPE.
8175 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
8176 If SHARED is true, reuse such a type that has already been constructed.
8177 If SET_CANONICAL is true, compute TYPE_CANONICAL from the element type. */
8179 static tree
8180 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
8181 bool shared, bool set_canonical)
8183 tree t;
8185 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8187 error ("arrays of functions are not meaningful");
8188 elt_type = integer_type_node;
8191 t = make_node (ARRAY_TYPE);
8192 TREE_TYPE (t) = elt_type;
8193 TYPE_DOMAIN (t) = index_type;
8194 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8195 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
8196 layout_type (t);
8198 if (shared)
8200 hashval_t hash = type_hash_canon_hash (t);
8201 t = type_hash_canon (hash, t);
8204 if (TYPE_CANONICAL (t) == t && set_canonical)
8206 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8207 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8208 || in_lto_p)
8209 SET_TYPE_STRUCTURAL_EQUALITY (t);
8210 else if (TYPE_CANONICAL (elt_type) != elt_type
8211 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8212 TYPE_CANONICAL (t)
8213 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8214 index_type
8215 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8216 typeless_storage, shared, set_canonical);
8219 return t;
8222 /* Wrapper around build_array_type_1 with SHARED set to true. */
8224 tree
8225 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
8227 return
8228 build_array_type_1 (elt_type, index_type, typeless_storage, true, true);
8231 /* Wrapper around build_array_type_1 with SHARED set to false. */
8233 tree
8234 build_nonshared_array_type (tree elt_type, tree index_type)
8236 return build_array_type_1 (elt_type, index_type, false, false, true);
8239 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8240 sizetype. */
8242 tree
8243 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
8245 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8248 /* Recursively examines the array elements of TYPE, until a non-array
8249 element type is found. */
8251 tree
8252 strip_array_types (tree type)
8254 while (TREE_CODE (type) == ARRAY_TYPE)
8255 type = TREE_TYPE (type);
8257 return type;
8260 /* Computes the canonical argument types from the argument type list
8261 ARGTYPES.
8263 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8264 on entry to this function, or if any of the ARGTYPES are
8265 structural.
8267 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8268 true on entry to this function, or if any of the ARGTYPES are
8269 non-canonical.
8271 Returns a canonical argument list, which may be ARGTYPES when the
8272 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8273 true) or would not differ from ARGTYPES. */
8275 static tree
8276 maybe_canonicalize_argtypes (tree argtypes,
8277 bool *any_structural_p,
8278 bool *any_noncanonical_p)
8280 tree arg;
8281 bool any_noncanonical_argtypes_p = false;
8283 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8285 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8286 /* Fail gracefully by stating that the type is structural. */
8287 *any_structural_p = true;
8288 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8289 *any_structural_p = true;
8290 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8291 || TREE_PURPOSE (arg))
8292 /* If the argument has a default argument, we consider it
8293 non-canonical even though the type itself is canonical.
8294 That way, different variants of function and method types
8295 with default arguments will all point to the variant with
8296 no defaults as their canonical type. */
8297 any_noncanonical_argtypes_p = true;
8300 if (*any_structural_p)
8301 return argtypes;
8303 if (any_noncanonical_argtypes_p)
8305 /* Build the canonical list of argument types. */
8306 tree canon_argtypes = NULL_TREE;
8307 bool is_void = false;
8309 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8311 if (arg == void_list_node)
8312 is_void = true;
8313 else
8314 canon_argtypes = tree_cons (NULL_TREE,
8315 TYPE_CANONICAL (TREE_VALUE (arg)),
8316 canon_argtypes);
8319 canon_argtypes = nreverse (canon_argtypes);
8320 if (is_void)
8321 canon_argtypes = chainon (canon_argtypes, void_list_node);
8323 /* There is a non-canonical type. */
8324 *any_noncanonical_p = true;
8325 return canon_argtypes;
8328 /* The canonical argument types are the same as ARGTYPES. */
8329 return argtypes;
8332 /* Construct, lay out and return
8333 the type of functions returning type VALUE_TYPE
8334 given arguments of types ARG_TYPES.
8335 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8336 are data type nodes for the arguments of the function.
8337 If such a type has already been constructed, reuse it. */
8339 tree
8340 build_function_type (tree value_type, tree arg_types)
8342 tree t;
8343 inchash::hash hstate;
8344 bool any_structural_p, any_noncanonical_p;
8345 tree canon_argtypes;
8347 gcc_assert (arg_types != error_mark_node);
8349 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8351 error ("function return type cannot be function");
8352 value_type = integer_type_node;
8355 /* Make a node of the sort we want. */
8356 t = make_node (FUNCTION_TYPE);
8357 TREE_TYPE (t) = value_type;
8358 TYPE_ARG_TYPES (t) = arg_types;
8360 /* If we already have such a type, use the old one. */
8361 hashval_t hash = type_hash_canon_hash (t);
8362 t = type_hash_canon (hash, t);
8364 /* Set up the canonical type. */
8365 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8366 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8367 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8368 &any_structural_p,
8369 &any_noncanonical_p);
8370 if (any_structural_p)
8371 SET_TYPE_STRUCTURAL_EQUALITY (t);
8372 else if (any_noncanonical_p)
8373 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8374 canon_argtypes);
8376 if (!COMPLETE_TYPE_P (t))
8377 layout_type (t);
8378 return t;
8381 /* Build a function type. The RETURN_TYPE is the type returned by the
8382 function. If VAARGS is set, no void_type_node is appended to the
8383 list. ARGP must be always be terminated be a NULL_TREE. */
8385 static tree
8386 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8388 tree t, args, last;
8390 t = va_arg (argp, tree);
8391 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8392 args = tree_cons (NULL_TREE, t, args);
8394 if (vaargs)
8396 last = args;
8397 if (args != NULL_TREE)
8398 args = nreverse (args);
8399 gcc_assert (last != void_list_node);
8401 else if (args == NULL_TREE)
8402 args = void_list_node;
8403 else
8405 last = args;
8406 args = nreverse (args);
8407 TREE_CHAIN (last) = void_list_node;
8409 args = build_function_type (return_type, args);
8411 return args;
8414 /* Build a function type. The RETURN_TYPE is the type returned by the
8415 function. If additional arguments are provided, they are
8416 additional argument types. The list of argument types must always
8417 be terminated by NULL_TREE. */
8419 tree
8420 build_function_type_list (tree return_type, ...)
8422 tree args;
8423 va_list p;
8425 va_start (p, return_type);
8426 args = build_function_type_list_1 (false, return_type, p);
8427 va_end (p);
8428 return args;
8431 /* Build a variable argument function type. The RETURN_TYPE is the
8432 type returned by the function. If additional arguments are provided,
8433 they are additional argument types. The list of argument types must
8434 always be terminated by NULL_TREE. */
8436 tree
8437 build_varargs_function_type_list (tree return_type, ...)
8439 tree args;
8440 va_list p;
8442 va_start (p, return_type);
8443 args = build_function_type_list_1 (true, return_type, p);
8444 va_end (p);
8446 return args;
8449 /* Build a function type. RETURN_TYPE is the type returned by the
8450 function; VAARGS indicates whether the function takes varargs. The
8451 function takes N named arguments, the types of which are provided in
8452 ARG_TYPES. */
8454 static tree
8455 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8456 tree *arg_types)
8458 int i;
8459 tree t = vaargs ? NULL_TREE : void_list_node;
8461 for (i = n - 1; i >= 0; i--)
8462 t = tree_cons (NULL_TREE, arg_types[i], t);
8464 return build_function_type (return_type, t);
8467 /* Build a function type. RETURN_TYPE is the type returned by the
8468 function. The function takes N named arguments, the types of which
8469 are provided in ARG_TYPES. */
8471 tree
8472 build_function_type_array (tree return_type, int n, tree *arg_types)
8474 return build_function_type_array_1 (false, return_type, n, arg_types);
8477 /* Build a variable argument function type. RETURN_TYPE is the type
8478 returned by the function. The function takes N named arguments, the
8479 types of which are provided in ARG_TYPES. */
8481 tree
8482 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8484 return build_function_type_array_1 (true, return_type, n, arg_types);
8487 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8488 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8489 for the method. An implicit additional parameter (of type
8490 pointer-to-BASETYPE) is added to the ARGTYPES. */
8492 tree
8493 build_method_type_directly (tree basetype,
8494 tree rettype,
8495 tree argtypes)
8497 tree t;
8498 tree ptype;
8499 bool any_structural_p, any_noncanonical_p;
8500 tree canon_argtypes;
8502 /* Make a node of the sort we want. */
8503 t = make_node (METHOD_TYPE);
8505 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8506 TREE_TYPE (t) = rettype;
8507 ptype = build_pointer_type (basetype);
8509 /* The actual arglist for this function includes a "hidden" argument
8510 which is "this". Put it into the list of argument types. */
8511 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8512 TYPE_ARG_TYPES (t) = argtypes;
8514 /* If we already have such a type, use the old one. */
8515 hashval_t hash = type_hash_canon_hash (t);
8516 t = type_hash_canon (hash, t);
8518 /* Set up the canonical type. */
8519 any_structural_p
8520 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8521 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8522 any_noncanonical_p
8523 = (TYPE_CANONICAL (basetype) != basetype
8524 || TYPE_CANONICAL (rettype) != rettype);
8525 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8526 &any_structural_p,
8527 &any_noncanonical_p);
8528 if (any_structural_p)
8529 SET_TYPE_STRUCTURAL_EQUALITY (t);
8530 else if (any_noncanonical_p)
8531 TYPE_CANONICAL (t)
8532 = build_method_type_directly (TYPE_CANONICAL (basetype),
8533 TYPE_CANONICAL (rettype),
8534 canon_argtypes);
8535 if (!COMPLETE_TYPE_P (t))
8536 layout_type (t);
8538 return t;
8541 /* Construct, lay out and return the type of methods belonging to class
8542 BASETYPE and whose arguments and values are described by TYPE.
8543 If that type exists already, reuse it.
8544 TYPE must be a FUNCTION_TYPE node. */
8546 tree
8547 build_method_type (tree basetype, tree type)
8549 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8551 return build_method_type_directly (basetype,
8552 TREE_TYPE (type),
8553 TYPE_ARG_TYPES (type));
8556 /* Construct, lay out and return the type of offsets to a value
8557 of type TYPE, within an object of type BASETYPE.
8558 If a suitable offset type exists already, reuse it. */
8560 tree
8561 build_offset_type (tree basetype, tree type)
8563 tree t;
8565 /* Make a node of the sort we want. */
8566 t = make_node (OFFSET_TYPE);
8568 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8569 TREE_TYPE (t) = type;
8571 /* If we already have such a type, use the old one. */
8572 hashval_t hash = type_hash_canon_hash (t);
8573 t = type_hash_canon (hash, t);
8575 if (!COMPLETE_TYPE_P (t))
8576 layout_type (t);
8578 if (TYPE_CANONICAL (t) == t)
8580 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8581 || TYPE_STRUCTURAL_EQUALITY_P (type))
8582 SET_TYPE_STRUCTURAL_EQUALITY (t);
8583 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8584 || TYPE_CANONICAL (type) != type)
8585 TYPE_CANONICAL (t)
8586 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8587 TYPE_CANONICAL (type));
8590 return t;
8593 /* Create a complex type whose components are COMPONENT_TYPE.
8595 If NAMED is true, the type is given a TYPE_NAME. We do not always
8596 do so because this creates a DECL node and thus make the DECL_UIDs
8597 dependent on the type canonicalization hashtable, which is GC-ed,
8598 so the DECL_UIDs would not be stable wrt garbage collection. */
8600 tree
8601 build_complex_type (tree component_type, bool named)
8603 gcc_assert (INTEGRAL_TYPE_P (component_type)
8604 || SCALAR_FLOAT_TYPE_P (component_type)
8605 || FIXED_POINT_TYPE_P (component_type));
8607 /* Make a node of the sort we want. */
8608 tree probe = make_node (COMPLEX_TYPE);
8610 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8612 /* If we already have such a type, use the old one. */
8613 hashval_t hash = type_hash_canon_hash (probe);
8614 tree t = type_hash_canon (hash, probe);
8616 if (t == probe)
8618 /* We created a new type. The hash insertion will have laid
8619 out the type. We need to check the canonicalization and
8620 maybe set the name. */
8621 gcc_checking_assert (COMPLETE_TYPE_P (t)
8622 && !TYPE_NAME (t)
8623 && TYPE_CANONICAL (t) == t);
8625 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8626 SET_TYPE_STRUCTURAL_EQUALITY (t);
8627 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8628 TYPE_CANONICAL (t)
8629 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8631 /* We need to create a name, since complex is a fundamental type. */
8632 if (named)
8634 const char *name = NULL;
8636 if (TREE_TYPE (t) == char_type_node)
8637 name = "complex char";
8638 else if (TREE_TYPE (t) == signed_char_type_node)
8639 name = "complex signed char";
8640 else if (TREE_TYPE (t) == unsigned_char_type_node)
8641 name = "complex unsigned char";
8642 else if (TREE_TYPE (t) == short_integer_type_node)
8643 name = "complex short int";
8644 else if (TREE_TYPE (t) == short_unsigned_type_node)
8645 name = "complex short unsigned int";
8646 else if (TREE_TYPE (t) == integer_type_node)
8647 name = "complex int";
8648 else if (TREE_TYPE (t) == unsigned_type_node)
8649 name = "complex unsigned int";
8650 else if (TREE_TYPE (t) == long_integer_type_node)
8651 name = "complex long int";
8652 else if (TREE_TYPE (t) == long_unsigned_type_node)
8653 name = "complex long unsigned int";
8654 else if (TREE_TYPE (t) == long_long_integer_type_node)
8655 name = "complex long long int";
8656 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8657 name = "complex long long unsigned int";
8659 if (name != NULL)
8660 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8661 get_identifier (name), t);
8665 return build_qualified_type (t, TYPE_QUALS (component_type));
8668 /* If TYPE is a real or complex floating-point type and the target
8669 does not directly support arithmetic on TYPE then return the wider
8670 type to be used for arithmetic on TYPE. Otherwise, return
8671 NULL_TREE. */
8673 tree
8674 excess_precision_type (tree type)
8676 /* The target can give two different responses to the question of
8677 which excess precision mode it would like depending on whether we
8678 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8680 enum excess_precision_type requested_type
8681 = (flag_excess_precision == EXCESS_PRECISION_FAST
8682 ? EXCESS_PRECISION_TYPE_FAST
8683 : EXCESS_PRECISION_TYPE_STANDARD);
8685 enum flt_eval_method target_flt_eval_method
8686 = targetm.c.excess_precision (requested_type);
8688 /* The target should not ask for unpredictable float evaluation (though
8689 it might advertise that implicitly the evaluation is unpredictable,
8690 but we don't care about that here, it will have been reported
8691 elsewhere). If it does ask for unpredictable evaluation, we have
8692 nothing to do here. */
8693 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8695 /* Nothing to do. The target has asked for all types we know about
8696 to be computed with their native precision and range. */
8697 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8698 return NULL_TREE;
8700 /* The target will promote this type in a target-dependent way, so excess
8701 precision ought to leave it alone. */
8702 if (targetm.promoted_type (type) != NULL_TREE)
8703 return NULL_TREE;
8705 machine_mode float16_type_mode = (float16_type_node
8706 ? TYPE_MODE (float16_type_node)
8707 : VOIDmode);
8708 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8709 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8711 switch (TREE_CODE (type))
8713 case REAL_TYPE:
8715 machine_mode type_mode = TYPE_MODE (type);
8716 switch (target_flt_eval_method)
8718 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8719 if (type_mode == float16_type_mode)
8720 return float_type_node;
8721 break;
8722 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8723 if (type_mode == float16_type_mode
8724 || type_mode == float_type_mode)
8725 return double_type_node;
8726 break;
8727 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8728 if (type_mode == float16_type_mode
8729 || type_mode == float_type_mode
8730 || type_mode == double_type_mode)
8731 return long_double_type_node;
8732 break;
8733 default:
8734 gcc_unreachable ();
8736 break;
8738 case COMPLEX_TYPE:
8740 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8741 return NULL_TREE;
8742 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8743 switch (target_flt_eval_method)
8745 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8746 if (type_mode == float16_type_mode)
8747 return complex_float_type_node;
8748 break;
8749 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8750 if (type_mode == float16_type_mode
8751 || type_mode == float_type_mode)
8752 return complex_double_type_node;
8753 break;
8754 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8755 if (type_mode == float16_type_mode
8756 || type_mode == float_type_mode
8757 || type_mode == double_type_mode)
8758 return complex_long_double_type_node;
8759 break;
8760 default:
8761 gcc_unreachable ();
8763 break;
8765 default:
8766 break;
8769 return NULL_TREE;
8772 /* Return OP, stripped of any conversions to wider types as much as is safe.
8773 Converting the value back to OP's type makes a value equivalent to OP.
8775 If FOR_TYPE is nonzero, we return a value which, if converted to
8776 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8778 OP must have integer, real or enumeral type. Pointers are not allowed!
8780 There are some cases where the obvious value we could return
8781 would regenerate to OP if converted to OP's type,
8782 but would not extend like OP to wider types.
8783 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8784 For example, if OP is (unsigned short)(signed char)-1,
8785 we avoid returning (signed char)-1 if FOR_TYPE is int,
8786 even though extending that to an unsigned short would regenerate OP,
8787 since the result of extending (signed char)-1 to (int)
8788 is different from (int) OP. */
8790 tree
8791 get_unwidened (tree op, tree for_type)
8793 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8794 tree type = TREE_TYPE (op);
8795 unsigned final_prec
8796 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8797 int uns
8798 = (for_type != 0 && for_type != type
8799 && final_prec > TYPE_PRECISION (type)
8800 && TYPE_UNSIGNED (type));
8801 tree win = op;
8803 while (CONVERT_EXPR_P (op))
8805 int bitschange;
8807 /* TYPE_PRECISION on vector types has different meaning
8808 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8809 so avoid them here. */
8810 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8811 break;
8813 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8814 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8816 /* Truncations are many-one so cannot be removed.
8817 Unless we are later going to truncate down even farther. */
8818 if (bitschange < 0
8819 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8820 break;
8822 /* See what's inside this conversion. If we decide to strip it,
8823 we will set WIN. */
8824 op = TREE_OPERAND (op, 0);
8826 /* If we have not stripped any zero-extensions (uns is 0),
8827 we can strip any kind of extension.
8828 If we have previously stripped a zero-extension,
8829 only zero-extensions can safely be stripped.
8830 Any extension can be stripped if the bits it would produce
8831 are all going to be discarded later by truncating to FOR_TYPE. */
8833 if (bitschange > 0)
8835 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8836 win = op;
8837 /* TYPE_UNSIGNED says whether this is a zero-extension.
8838 Let's avoid computing it if it does not affect WIN
8839 and if UNS will not be needed again. */
8840 if ((uns
8841 || CONVERT_EXPR_P (op))
8842 && TYPE_UNSIGNED (TREE_TYPE (op)))
8844 uns = 1;
8845 win = op;
8850 /* If we finally reach a constant see if it fits in sth smaller and
8851 in that case convert it. */
8852 if (TREE_CODE (win) == INTEGER_CST)
8854 tree wtype = TREE_TYPE (win);
8855 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8856 if (for_type)
8857 prec = MAX (prec, final_prec);
8858 if (prec < TYPE_PRECISION (wtype))
8860 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8861 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8862 win = fold_convert (t, win);
8866 return win;
8869 /* Return OP or a simpler expression for a narrower value
8870 which can be sign-extended or zero-extended to give back OP.
8871 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8872 or 0 if the value should be sign-extended. */
8874 tree
8875 get_narrower (tree op, int *unsignedp_ptr)
8877 int uns = 0;
8878 int first = 1;
8879 tree win = op;
8880 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8882 if (TREE_CODE (op) == COMPOUND_EXPR)
8885 op = TREE_OPERAND (op, 1);
8886 while (TREE_CODE (op) == COMPOUND_EXPR);
8887 tree ret = get_narrower (op, unsignedp_ptr);
8888 if (ret == op)
8889 return win;
8890 auto_vec <tree, 16> v;
8891 unsigned int i;
8892 for (op = win; TREE_CODE (op) == COMPOUND_EXPR;
8893 op = TREE_OPERAND (op, 1))
8894 v.safe_push (op);
8895 FOR_EACH_VEC_ELT_REVERSE (v, i, op)
8896 ret = build2_loc (EXPR_LOCATION (op), COMPOUND_EXPR,
8897 TREE_TYPE (ret), TREE_OPERAND (op, 0),
8898 ret);
8899 return ret;
8901 while (TREE_CODE (op) == NOP_EXPR)
8903 int bitschange
8904 = (TYPE_PRECISION (TREE_TYPE (op))
8905 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8907 /* Truncations are many-one so cannot be removed. */
8908 if (bitschange < 0)
8909 break;
8911 /* See what's inside this conversion. If we decide to strip it,
8912 we will set WIN. */
8914 if (bitschange > 0)
8916 op = TREE_OPERAND (op, 0);
8917 /* An extension: the outermost one can be stripped,
8918 but remember whether it is zero or sign extension. */
8919 if (first)
8920 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8921 /* Otherwise, if a sign extension has been stripped,
8922 only sign extensions can now be stripped;
8923 if a zero extension has been stripped, only zero-extensions. */
8924 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8925 break;
8926 first = 0;
8928 else /* bitschange == 0 */
8930 /* A change in nominal type can always be stripped, but we must
8931 preserve the unsignedness. */
8932 if (first)
8933 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8934 first = 0;
8935 op = TREE_OPERAND (op, 0);
8936 /* Keep trying to narrow, but don't assign op to win if it
8937 would turn an integral type into something else. */
8938 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8939 continue;
8942 win = op;
8945 if (TREE_CODE (op) == COMPONENT_REF
8946 /* Since type_for_size always gives an integer type. */
8947 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8948 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8949 /* Ensure field is laid out already. */
8950 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8951 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8953 unsigned HOST_WIDE_INT innerprec
8954 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8955 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8956 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8957 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8959 /* We can get this structure field in a narrower type that fits it,
8960 but the resulting extension to its nominal type (a fullword type)
8961 must satisfy the same conditions as for other extensions.
8963 Do this only for fields that are aligned (not bit-fields),
8964 because when bit-field insns will be used there is no
8965 advantage in doing this. */
8967 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8968 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8969 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8970 && type != 0)
8972 if (first)
8973 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8974 win = fold_convert (type, op);
8978 *unsignedp_ptr = uns;
8979 return win;
8982 /* Return true if integer constant C has a value that is permissible
8983 for TYPE, an integral type. */
8985 bool
8986 int_fits_type_p (const_tree c, const_tree type)
8988 tree type_low_bound, type_high_bound;
8989 bool ok_for_low_bound, ok_for_high_bound;
8990 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8992 /* Non-standard boolean types can have arbitrary precision but various
8993 transformations assume that they can only take values 0 and +/-1. */
8994 if (TREE_CODE (type) == BOOLEAN_TYPE)
8995 return wi::fits_to_boolean_p (wi::to_wide (c), type);
8997 retry:
8998 type_low_bound = TYPE_MIN_VALUE (type);
8999 type_high_bound = TYPE_MAX_VALUE (type);
9001 /* If at least one bound of the type is a constant integer, we can check
9002 ourselves and maybe make a decision. If no such decision is possible, but
9003 this type is a subtype, try checking against that. Otherwise, use
9004 fits_to_tree_p, which checks against the precision.
9006 Compute the status for each possibly constant bound, and return if we see
9007 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9008 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9009 for "constant known to fit". */
9011 /* Check if c >= type_low_bound. */
9012 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9014 if (tree_int_cst_lt (c, type_low_bound))
9015 return false;
9016 ok_for_low_bound = true;
9018 else
9019 ok_for_low_bound = false;
9021 /* Check if c <= type_high_bound. */
9022 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9024 if (tree_int_cst_lt (type_high_bound, c))
9025 return false;
9026 ok_for_high_bound = true;
9028 else
9029 ok_for_high_bound = false;
9031 /* If the constant fits both bounds, the result is known. */
9032 if (ok_for_low_bound && ok_for_high_bound)
9033 return true;
9035 /* Perform some generic filtering which may allow making a decision
9036 even if the bounds are not constant. First, negative integers
9037 never fit in unsigned types, */
9038 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
9039 return false;
9041 /* Second, narrower types always fit in wider ones. */
9042 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9043 return true;
9045 /* Third, unsigned integers with top bit set never fit signed types. */
9046 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9048 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
9049 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9051 /* When a tree_cst is converted to a wide-int, the precision
9052 is taken from the type. However, if the precision of the
9053 mode underneath the type is smaller than that, it is
9054 possible that the value will not fit. The test below
9055 fails if any bit is set between the sign bit of the
9056 underlying mode and the top bit of the type. */
9057 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
9058 return false;
9060 else if (wi::neg_p (wi::to_wide (c)))
9061 return false;
9064 /* If we haven't been able to decide at this point, there nothing more we
9065 can check ourselves here. Look at the base type if we have one and it
9066 has the same precision. */
9067 if (TREE_CODE (type) == INTEGER_TYPE
9068 && TREE_TYPE (type) != 0
9069 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9071 type = TREE_TYPE (type);
9072 goto retry;
9075 /* Or to fits_to_tree_p, if nothing else. */
9076 return wi::fits_to_tree_p (wi::to_wide (c), type);
9079 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9080 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9081 represented (assuming two's-complement arithmetic) within the bit
9082 precision of the type are returned instead. */
9084 void
9085 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9087 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9088 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9089 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
9090 else
9092 if (TYPE_UNSIGNED (type))
9093 mpz_set_ui (min, 0);
9094 else
9096 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9097 wi::to_mpz (mn, min, SIGNED);
9101 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9102 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9103 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
9104 else
9106 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9107 wi::to_mpz (mn, max, TYPE_SIGN (type));
9111 /* Return true if VAR is an automatic variable. */
9113 bool
9114 auto_var_p (const_tree var)
9116 return ((((VAR_P (var) && ! DECL_EXTERNAL (var))
9117 || TREE_CODE (var) == PARM_DECL)
9118 && ! TREE_STATIC (var))
9119 || TREE_CODE (var) == RESULT_DECL);
9122 /* Return true if VAR is an automatic variable defined in function FN. */
9124 bool
9125 auto_var_in_fn_p (const_tree var, const_tree fn)
9127 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9128 && (auto_var_p (var)
9129 || TREE_CODE (var) == LABEL_DECL));
9132 /* Subprogram of following function. Called by walk_tree.
9134 Return *TP if it is an automatic variable or parameter of the
9135 function passed in as DATA. */
9137 static tree
9138 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9140 tree fn = (tree) data;
9142 if (TYPE_P (*tp))
9143 *walk_subtrees = 0;
9145 else if (DECL_P (*tp)
9146 && auto_var_in_fn_p (*tp, fn))
9147 return *tp;
9149 return NULL_TREE;
9152 /* Returns true if T is, contains, or refers to a type with variable
9153 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9154 arguments, but not the return type. If FN is nonzero, only return
9155 true if a modifier of the type or position of FN is a variable or
9156 parameter inside FN.
9158 This concept is more general than that of C99 'variably modified types':
9159 in C99, a struct type is never variably modified because a VLA may not
9160 appear as a structure member. However, in GNU C code like:
9162 struct S { int i[f()]; };
9164 is valid, and other languages may define similar constructs. */
9166 bool
9167 variably_modified_type_p (tree type, tree fn)
9169 tree t;
9171 /* Test if T is either variable (if FN is zero) or an expression containing
9172 a variable in FN. If TYPE isn't gimplified, return true also if
9173 gimplify_one_sizepos would gimplify the expression into a local
9174 variable. */
9175 #define RETURN_TRUE_IF_VAR(T) \
9176 do { tree _t = (T); \
9177 if (_t != NULL_TREE \
9178 && _t != error_mark_node \
9179 && !CONSTANT_CLASS_P (_t) \
9180 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9181 && (!fn \
9182 || (!TYPE_SIZES_GIMPLIFIED (type) \
9183 && (TREE_CODE (_t) != VAR_DECL \
9184 && !CONTAINS_PLACEHOLDER_P (_t))) \
9185 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9186 return true; } while (0)
9188 if (type == error_mark_node)
9189 return false;
9191 /* If TYPE itself has variable size, it is variably modified. */
9192 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9193 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9195 switch (TREE_CODE (type))
9197 case POINTER_TYPE:
9198 case REFERENCE_TYPE:
9199 case VECTOR_TYPE:
9200 /* Ada can have pointer types refering to themselves indirectly. */
9201 if (TREE_VISITED (type))
9202 return false;
9203 TREE_VISITED (type) = true;
9204 if (variably_modified_type_p (TREE_TYPE (type), fn))
9206 TREE_VISITED (type) = false;
9207 return true;
9209 TREE_VISITED (type) = false;
9210 break;
9212 case FUNCTION_TYPE:
9213 case METHOD_TYPE:
9214 /* If TYPE is a function type, it is variably modified if the
9215 return type is variably modified. */
9216 if (variably_modified_type_p (TREE_TYPE (type), fn))
9217 return true;
9218 break;
9220 case INTEGER_TYPE:
9221 case REAL_TYPE:
9222 case FIXED_POINT_TYPE:
9223 case ENUMERAL_TYPE:
9224 case BOOLEAN_TYPE:
9225 /* Scalar types are variably modified if their end points
9226 aren't constant. */
9227 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9228 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9229 break;
9231 case RECORD_TYPE:
9232 case UNION_TYPE:
9233 case QUAL_UNION_TYPE:
9234 /* We can't see if any of the fields are variably-modified by the
9235 definition we normally use, since that would produce infinite
9236 recursion via pointers. */
9237 /* This is variably modified if some field's type is. */
9238 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9239 if (TREE_CODE (t) == FIELD_DECL)
9241 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9242 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9243 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9245 /* If the type is a qualified union, then the DECL_QUALIFIER
9246 of fields can also be an expression containing a variable. */
9247 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9248 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9250 /* If the field is a qualified union, then it's only a container
9251 for what's inside so we look into it. That's necessary in LTO
9252 mode because the sizes of the field tested above have been set
9253 to PLACEHOLDER_EXPRs by free_lang_data. */
9254 if (TREE_CODE (TREE_TYPE (t)) == QUAL_UNION_TYPE
9255 && variably_modified_type_p (TREE_TYPE (t), fn))
9256 return true;
9258 break;
9260 case ARRAY_TYPE:
9261 /* Do not call ourselves to avoid infinite recursion. This is
9262 variably modified if the element type is. */
9263 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9264 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9265 break;
9267 default:
9268 break;
9271 /* The current language may have other cases to check, but in general,
9272 all other types are not variably modified. */
9273 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9275 #undef RETURN_TRUE_IF_VAR
9278 /* Given a DECL or TYPE, return the scope in which it was declared, or
9279 NULL_TREE if there is no containing scope. */
9281 tree
9282 get_containing_scope (const_tree t)
9284 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9287 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
9289 const_tree
9290 get_ultimate_context (const_tree decl)
9292 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
9294 if (TREE_CODE (decl) == BLOCK)
9295 decl = BLOCK_SUPERCONTEXT (decl);
9296 else
9297 decl = get_containing_scope (decl);
9299 return decl;
9302 /* Return the innermost context enclosing DECL that is
9303 a FUNCTION_DECL, or zero if none. */
9305 tree
9306 decl_function_context (const_tree decl)
9308 tree context;
9310 if (TREE_CODE (decl) == ERROR_MARK)
9311 return 0;
9313 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9314 where we look up the function at runtime. Such functions always take
9315 a first argument of type 'pointer to real context'.
9317 C++ should really be fixed to use DECL_CONTEXT for the real context,
9318 and use something else for the "virtual context". */
9319 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
9320 context
9321 = TYPE_MAIN_VARIANT
9322 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9323 else
9324 context = DECL_CONTEXT (decl);
9326 while (context && TREE_CODE (context) != FUNCTION_DECL)
9328 if (TREE_CODE (context) == BLOCK)
9329 context = BLOCK_SUPERCONTEXT (context);
9330 else
9331 context = get_containing_scope (context);
9334 return context;
9337 /* Return the innermost context enclosing DECL that is
9338 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9339 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9341 tree
9342 decl_type_context (const_tree decl)
9344 tree context = DECL_CONTEXT (decl);
9346 while (context)
9347 switch (TREE_CODE (context))
9349 case NAMESPACE_DECL:
9350 case TRANSLATION_UNIT_DECL:
9351 return NULL_TREE;
9353 case RECORD_TYPE:
9354 case UNION_TYPE:
9355 case QUAL_UNION_TYPE:
9356 return context;
9358 case TYPE_DECL:
9359 case FUNCTION_DECL:
9360 context = DECL_CONTEXT (context);
9361 break;
9363 case BLOCK:
9364 context = BLOCK_SUPERCONTEXT (context);
9365 break;
9367 default:
9368 gcc_unreachable ();
9371 return NULL_TREE;
9374 /* CALL is a CALL_EXPR. Return the declaration for the function
9375 called, or NULL_TREE if the called function cannot be
9376 determined. */
9378 tree
9379 get_callee_fndecl (const_tree call)
9381 tree addr;
9383 if (call == error_mark_node)
9384 return error_mark_node;
9386 /* It's invalid to call this function with anything but a
9387 CALL_EXPR. */
9388 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9390 /* The first operand to the CALL is the address of the function
9391 called. */
9392 addr = CALL_EXPR_FN (call);
9394 /* If there is no function, return early. */
9395 if (addr == NULL_TREE)
9396 return NULL_TREE;
9398 STRIP_NOPS (addr);
9400 /* If this is a readonly function pointer, extract its initial value. */
9401 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9402 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9403 && DECL_INITIAL (addr))
9404 addr = DECL_INITIAL (addr);
9406 /* If the address is just `&f' for some function `f', then we know
9407 that `f' is being called. */
9408 if (TREE_CODE (addr) == ADDR_EXPR
9409 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9410 return TREE_OPERAND (addr, 0);
9412 /* We couldn't figure out what was being called. */
9413 return NULL_TREE;
9416 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9417 return the associated function code, otherwise return CFN_LAST. */
9419 combined_fn
9420 get_call_combined_fn (const_tree call)
9422 /* It's invalid to call this function with anything but a CALL_EXPR. */
9423 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9425 if (!CALL_EXPR_FN (call))
9426 return as_combined_fn (CALL_EXPR_IFN (call));
9428 tree fndecl = get_callee_fndecl (call);
9429 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
9430 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9432 return CFN_LAST;
9435 /* Comparator of indices based on tree_node_counts. */
9437 static int
9438 tree_nodes_cmp (const void *p1, const void *p2)
9440 const unsigned *n1 = (const unsigned *)p1;
9441 const unsigned *n2 = (const unsigned *)p2;
9443 return tree_node_counts[*n1] - tree_node_counts[*n2];
9446 /* Comparator of indices based on tree_code_counts. */
9448 static int
9449 tree_codes_cmp (const void *p1, const void *p2)
9451 const unsigned *n1 = (const unsigned *)p1;
9452 const unsigned *n2 = (const unsigned *)p2;
9454 return tree_code_counts[*n1] - tree_code_counts[*n2];
9457 #define TREE_MEM_USAGE_SPACES 40
9459 /* Print debugging information about tree nodes generated during the compile,
9460 and any language-specific information. */
9462 void
9463 dump_tree_statistics (void)
9465 if (GATHER_STATISTICS)
9467 uint64_t total_nodes, total_bytes;
9468 fprintf (stderr, "\nKind Nodes Bytes\n");
9469 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9470 total_nodes = total_bytes = 0;
9473 auto_vec<unsigned> indices (all_kinds);
9474 for (unsigned i = 0; i < all_kinds; i++)
9475 indices.quick_push (i);
9476 indices.qsort (tree_nodes_cmp);
9478 for (unsigned i = 0; i < (int) all_kinds; i++)
9480 unsigned j = indices[i];
9481 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n",
9482 tree_node_kind_names[j], SIZE_AMOUNT (tree_node_counts[j]),
9483 SIZE_AMOUNT (tree_node_sizes[j]));
9484 total_nodes += tree_node_counts[j];
9485 total_bytes += tree_node_sizes[j];
9487 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9488 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", "Total",
9489 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
9490 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9494 fprintf (stderr, "Code Nodes\n");
9495 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9497 auto_vec<unsigned> indices (MAX_TREE_CODES);
9498 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9499 indices.quick_push (i);
9500 indices.qsort (tree_codes_cmp);
9502 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9504 unsigned j = indices[i];
9505 fprintf (stderr, "%-32s %6" PRIu64 "%c\n",
9506 get_tree_code_name ((enum tree_code) j),
9507 SIZE_AMOUNT (tree_code_counts[j]));
9509 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9510 fprintf (stderr, "\n");
9511 ssanames_print_statistics ();
9512 fprintf (stderr, "\n");
9513 phinodes_print_statistics ();
9514 fprintf (stderr, "\n");
9517 else
9518 fprintf (stderr, "(No per-node statistics)\n");
9520 print_type_hash_statistics ();
9521 print_debug_expr_statistics ();
9522 print_value_expr_statistics ();
9523 lang_hooks.print_statistics ();
9526 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9528 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9530 unsigned
9531 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9533 /* This relies on the raw feedback's top 4 bits being zero. */
9534 #define FEEDBACK(X) ((X) * 0x04c11db7)
9535 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9536 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9537 static const unsigned syndromes[16] =
9539 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9540 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9541 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9542 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9544 #undef FEEDBACK
9545 #undef SYNDROME
9547 value <<= (32 - bytes * 8);
9548 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9550 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9552 chksum = (chksum << 4) ^ feedback;
9555 return chksum;
9558 /* Generate a crc32 of a string. */
9560 unsigned
9561 crc32_string (unsigned chksum, const char *string)
9564 chksum = crc32_byte (chksum, *string);
9565 while (*string++);
9566 return chksum;
9569 /* P is a string that will be used in a symbol. Mask out any characters
9570 that are not valid in that context. */
9572 void
9573 clean_symbol_name (char *p)
9575 for (; *p; p++)
9576 if (! (ISALNUM (*p)
9577 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9578 || *p == '$'
9579 #endif
9580 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9581 || *p == '.'
9582 #endif
9584 *p = '_';
9587 static GTY(()) unsigned anon_cnt = 0; /* Saved for PCH. */
9589 /* Create a unique anonymous identifier. The identifier is still a
9590 valid assembly label. */
9592 tree
9593 make_anon_name ()
9595 const char *fmt =
9596 #if !defined (NO_DOT_IN_LABEL)
9598 #elif !defined (NO_DOLLAR_IN_LABEL)
9600 #else
9602 #endif
9603 "_anon_%d";
9605 char buf[24];
9606 int len = snprintf (buf, sizeof (buf), fmt, anon_cnt++);
9607 gcc_checking_assert (len < int (sizeof (buf)));
9609 tree id = get_identifier_with_length (buf, len);
9610 IDENTIFIER_ANON_P (id) = true;
9612 return id;
9615 /* Generate a name for a special-purpose function.
9616 The generated name may need to be unique across the whole link.
9617 Changes to this function may also require corresponding changes to
9618 xstrdup_mask_random.
9619 TYPE is some string to identify the purpose of this function to the
9620 linker or collect2; it must start with an uppercase letter,
9621 one of:
9622 I - for constructors
9623 D - for destructors
9624 N - for C++ anonymous namespaces
9625 F - for DWARF unwind frame information. */
9627 tree
9628 get_file_function_name (const char *type)
9630 char *buf;
9631 const char *p;
9632 char *q;
9634 /* If we already have a name we know to be unique, just use that. */
9635 if (first_global_object_name)
9636 p = q = ASTRDUP (first_global_object_name);
9637 /* If the target is handling the constructors/destructors, they
9638 will be local to this file and the name is only necessary for
9639 debugging purposes.
9640 We also assign sub_I and sub_D sufixes to constructors called from
9641 the global static constructors. These are always local. */
9642 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9643 || (strncmp (type, "sub_", 4) == 0
9644 && (type[4] == 'I' || type[4] == 'D')))
9646 const char *file = main_input_filename;
9647 if (! file)
9648 file = LOCATION_FILE (input_location);
9649 /* Just use the file's basename, because the full pathname
9650 might be quite long. */
9651 p = q = ASTRDUP (lbasename (file));
9653 else
9655 /* Otherwise, the name must be unique across the entire link.
9656 We don't have anything that we know to be unique to this translation
9657 unit, so use what we do have and throw in some randomness. */
9658 unsigned len;
9659 const char *name = weak_global_object_name;
9660 const char *file = main_input_filename;
9662 if (! name)
9663 name = "";
9664 if (! file)
9665 file = LOCATION_FILE (input_location);
9667 len = strlen (file);
9668 q = (char *) alloca (9 + 19 + len + 1);
9669 memcpy (q, file, len + 1);
9671 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9672 crc32_string (0, name), get_random_seed (false));
9674 p = q;
9677 clean_symbol_name (q);
9678 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9679 + strlen (type));
9681 /* Set up the name of the file-level functions we may need.
9682 Use a global object (which is already required to be unique over
9683 the program) rather than the file name (which imposes extra
9684 constraints). */
9685 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9687 return get_identifier (buf);
9690 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9692 /* Complain that the tree code of NODE does not match the expected 0
9693 terminated list of trailing codes. The trailing code list can be
9694 empty, for a more vague error message. FILE, LINE, and FUNCTION
9695 are of the caller. */
9697 void
9698 tree_check_failed (const_tree node, const char *file,
9699 int line, const char *function, ...)
9701 va_list args;
9702 const char *buffer;
9703 unsigned length = 0;
9704 enum tree_code code;
9706 va_start (args, function);
9707 while ((code = (enum tree_code) va_arg (args, int)))
9708 length += 4 + strlen (get_tree_code_name (code));
9709 va_end (args);
9710 if (length)
9712 char *tmp;
9713 va_start (args, function);
9714 length += strlen ("expected ");
9715 buffer = tmp = (char *) alloca (length);
9716 length = 0;
9717 while ((code = (enum tree_code) va_arg (args, int)))
9719 const char *prefix = length ? " or " : "expected ";
9721 strcpy (tmp + length, prefix);
9722 length += strlen (prefix);
9723 strcpy (tmp + length, get_tree_code_name (code));
9724 length += strlen (get_tree_code_name (code));
9726 va_end (args);
9728 else
9729 buffer = "unexpected node";
9731 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9732 buffer, get_tree_code_name (TREE_CODE (node)),
9733 function, trim_filename (file), line);
9736 /* Complain that the tree code of NODE does match the expected 0
9737 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9738 the caller. */
9740 void
9741 tree_not_check_failed (const_tree node, const char *file,
9742 int line, const char *function, ...)
9744 va_list args;
9745 char *buffer;
9746 unsigned length = 0;
9747 enum tree_code code;
9749 va_start (args, function);
9750 while ((code = (enum tree_code) va_arg (args, int)))
9751 length += 4 + strlen (get_tree_code_name (code));
9752 va_end (args);
9753 va_start (args, function);
9754 buffer = (char *) alloca (length);
9755 length = 0;
9756 while ((code = (enum tree_code) va_arg (args, int)))
9758 if (length)
9760 strcpy (buffer + length, " or ");
9761 length += 4;
9763 strcpy (buffer + length, get_tree_code_name (code));
9764 length += strlen (get_tree_code_name (code));
9766 va_end (args);
9768 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9769 buffer, get_tree_code_name (TREE_CODE (node)),
9770 function, trim_filename (file), line);
9773 /* Similar to tree_check_failed, except that we check for a class of tree
9774 code, given in CL. */
9776 void
9777 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9778 const char *file, int line, const char *function)
9780 internal_error
9781 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9782 TREE_CODE_CLASS_STRING (cl),
9783 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9784 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9787 /* Similar to tree_check_failed, except that instead of specifying a
9788 dozen codes, use the knowledge that they're all sequential. */
9790 void
9791 tree_range_check_failed (const_tree node, const char *file, int line,
9792 const char *function, enum tree_code c1,
9793 enum tree_code c2)
9795 char *buffer;
9796 unsigned length = 0;
9797 unsigned int c;
9799 for (c = c1; c <= c2; ++c)
9800 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9802 length += strlen ("expected ");
9803 buffer = (char *) alloca (length);
9804 length = 0;
9806 for (c = c1; c <= c2; ++c)
9808 const char *prefix = length ? " or " : "expected ";
9810 strcpy (buffer + length, prefix);
9811 length += strlen (prefix);
9812 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9813 length += strlen (get_tree_code_name ((enum tree_code) c));
9816 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9817 buffer, get_tree_code_name (TREE_CODE (node)),
9818 function, trim_filename (file), line);
9822 /* Similar to tree_check_failed, except that we check that a tree does
9823 not have the specified code, given in CL. */
9825 void
9826 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9827 const char *file, int line, const char *function)
9829 internal_error
9830 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9831 TREE_CODE_CLASS_STRING (cl),
9832 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9833 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9837 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9839 void
9840 omp_clause_check_failed (const_tree node, const char *file, int line,
9841 const char *function, enum omp_clause_code code)
9843 internal_error ("tree check: expected %<omp_clause %s%>, have %qs "
9844 "in %s, at %s:%d",
9845 omp_clause_code_name[code],
9846 get_tree_code_name (TREE_CODE (node)),
9847 function, trim_filename (file), line);
9851 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9853 void
9854 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9855 const char *function, enum omp_clause_code c1,
9856 enum omp_clause_code c2)
9858 char *buffer;
9859 unsigned length = 0;
9860 unsigned int c;
9862 for (c = c1; c <= c2; ++c)
9863 length += 4 + strlen (omp_clause_code_name[c]);
9865 length += strlen ("expected ");
9866 buffer = (char *) alloca (length);
9867 length = 0;
9869 for (c = c1; c <= c2; ++c)
9871 const char *prefix = length ? " or " : "expected ";
9873 strcpy (buffer + length, prefix);
9874 length += strlen (prefix);
9875 strcpy (buffer + length, omp_clause_code_name[c]);
9876 length += strlen (omp_clause_code_name[c]);
9879 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9880 buffer, omp_clause_code_name[TREE_CODE (node)],
9881 function, trim_filename (file), line);
9885 #undef DEFTREESTRUCT
9886 #define DEFTREESTRUCT(VAL, NAME) NAME,
9888 static const char *ts_enum_names[] = {
9889 #include "treestruct.def"
9891 #undef DEFTREESTRUCT
9893 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9895 /* Similar to tree_class_check_failed, except that we check for
9896 whether CODE contains the tree structure identified by EN. */
9898 void
9899 tree_contains_struct_check_failed (const_tree node,
9900 const enum tree_node_structure_enum en,
9901 const char *file, int line,
9902 const char *function)
9904 internal_error
9905 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9906 TS_ENUM_NAME (en),
9907 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9911 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9912 (dynamically sized) vector. */
9914 void
9915 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9916 const char *function)
9918 internal_error
9919 ("tree check: accessed elt %d of %<tree_int_cst%> with %d elts in %s, "
9920 "at %s:%d",
9921 idx + 1, len, function, trim_filename (file), line);
9924 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9925 (dynamically sized) vector. */
9927 void
9928 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9929 const char *function)
9931 internal_error
9932 ("tree check: accessed elt %d of %<tree_vec%> with %d elts in %s, at %s:%d",
9933 idx + 1, len, function, trim_filename (file), line);
9936 /* Similar to above, except that the check is for the bounds of the operand
9937 vector of an expression node EXP. */
9939 void
9940 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9941 int line, const char *function)
9943 enum tree_code code = TREE_CODE (exp);
9944 internal_error
9945 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9946 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9947 function, trim_filename (file), line);
9950 /* Similar to above, except that the check is for the number of
9951 operands of an OMP_CLAUSE node. */
9953 void
9954 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9955 int line, const char *function)
9957 internal_error
9958 ("tree check: accessed operand %d of %<omp_clause %s%> with %d operands "
9959 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9960 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9961 trim_filename (file), line);
9963 #endif /* ENABLE_TREE_CHECKING */
9965 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
9966 and mapped to the machine mode MODE. Initialize its fields and build
9967 the information necessary for debugging output. */
9969 static tree
9970 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
9972 tree t;
9973 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9975 t = make_node (VECTOR_TYPE);
9976 TREE_TYPE (t) = mv_innertype;
9977 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9978 SET_TYPE_MODE (t, mode);
9980 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9981 SET_TYPE_STRUCTURAL_EQUALITY (t);
9982 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9983 || mode != VOIDmode)
9984 && !VECTOR_BOOLEAN_TYPE_P (t))
9985 TYPE_CANONICAL (t)
9986 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9988 layout_type (t);
9990 hashval_t hash = type_hash_canon_hash (t);
9991 t = type_hash_canon (hash, t);
9993 /* We have built a main variant, based on the main variant of the
9994 inner type. Use it to build the variant we return. */
9995 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9996 && TREE_TYPE (t) != innertype)
9997 return build_type_attribute_qual_variant (t,
9998 TYPE_ATTRIBUTES (innertype),
9999 TYPE_QUALS (innertype));
10001 return t;
10004 static tree
10005 make_or_reuse_type (unsigned size, int unsignedp)
10007 int i;
10009 if (size == INT_TYPE_SIZE)
10010 return unsignedp ? unsigned_type_node : integer_type_node;
10011 if (size == CHAR_TYPE_SIZE)
10012 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
10013 if (size == SHORT_TYPE_SIZE)
10014 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
10015 if (size == LONG_TYPE_SIZE)
10016 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
10017 if (size == LONG_LONG_TYPE_SIZE)
10018 return (unsignedp ? long_long_unsigned_type_node
10019 : long_long_integer_type_node);
10021 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10022 if (size == int_n_data[i].bitsize
10023 && int_n_enabled_p[i])
10024 return (unsignedp ? int_n_trees[i].unsigned_type
10025 : int_n_trees[i].signed_type);
10027 if (unsignedp)
10028 return make_unsigned_type (size);
10029 else
10030 return make_signed_type (size);
10033 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
10035 static tree
10036 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
10038 if (satp)
10040 if (size == SHORT_FRACT_TYPE_SIZE)
10041 return unsignedp ? sat_unsigned_short_fract_type_node
10042 : sat_short_fract_type_node;
10043 if (size == FRACT_TYPE_SIZE)
10044 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
10045 if (size == LONG_FRACT_TYPE_SIZE)
10046 return unsignedp ? sat_unsigned_long_fract_type_node
10047 : sat_long_fract_type_node;
10048 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10049 return unsignedp ? sat_unsigned_long_long_fract_type_node
10050 : sat_long_long_fract_type_node;
10052 else
10054 if (size == SHORT_FRACT_TYPE_SIZE)
10055 return unsignedp ? unsigned_short_fract_type_node
10056 : short_fract_type_node;
10057 if (size == FRACT_TYPE_SIZE)
10058 return unsignedp ? unsigned_fract_type_node : fract_type_node;
10059 if (size == LONG_FRACT_TYPE_SIZE)
10060 return unsignedp ? unsigned_long_fract_type_node
10061 : long_fract_type_node;
10062 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10063 return unsignedp ? unsigned_long_long_fract_type_node
10064 : long_long_fract_type_node;
10067 return make_fract_type (size, unsignedp, satp);
10070 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
10072 static tree
10073 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
10075 if (satp)
10077 if (size == SHORT_ACCUM_TYPE_SIZE)
10078 return unsignedp ? sat_unsigned_short_accum_type_node
10079 : sat_short_accum_type_node;
10080 if (size == ACCUM_TYPE_SIZE)
10081 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10082 if (size == LONG_ACCUM_TYPE_SIZE)
10083 return unsignedp ? sat_unsigned_long_accum_type_node
10084 : sat_long_accum_type_node;
10085 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10086 return unsignedp ? sat_unsigned_long_long_accum_type_node
10087 : sat_long_long_accum_type_node;
10089 else
10091 if (size == SHORT_ACCUM_TYPE_SIZE)
10092 return unsignedp ? unsigned_short_accum_type_node
10093 : short_accum_type_node;
10094 if (size == ACCUM_TYPE_SIZE)
10095 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10096 if (size == LONG_ACCUM_TYPE_SIZE)
10097 return unsignedp ? unsigned_long_accum_type_node
10098 : long_accum_type_node;
10099 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10100 return unsignedp ? unsigned_long_long_accum_type_node
10101 : long_long_accum_type_node;
10104 return make_accum_type (size, unsignedp, satp);
10108 /* Create an atomic variant node for TYPE. This routine is called
10109 during initialization of data types to create the 5 basic atomic
10110 types. The generic build_variant_type function requires these to
10111 already be set up in order to function properly, so cannot be
10112 called from there. If ALIGN is non-zero, then ensure alignment is
10113 overridden to this value. */
10115 static tree
10116 build_atomic_base (tree type, unsigned int align)
10118 tree t;
10120 /* Make sure its not already registered. */
10121 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10122 return t;
10124 t = build_variant_type_copy (type);
10125 set_type_quals (t, TYPE_QUAL_ATOMIC);
10127 if (align)
10128 SET_TYPE_ALIGN (t, align);
10130 return t;
10133 /* Information about the _FloatN and _FloatNx types. This must be in
10134 the same order as the corresponding TI_* enum values. */
10135 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
10137 { 16, false },
10138 { 32, false },
10139 { 64, false },
10140 { 128, false },
10141 { 32, true },
10142 { 64, true },
10143 { 128, true },
10147 /* Create nodes for all integer types (and error_mark_node) using the sizes
10148 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10150 void
10151 build_common_tree_nodes (bool signed_char)
10153 int i;
10155 error_mark_node = make_node (ERROR_MARK);
10156 TREE_TYPE (error_mark_node) = error_mark_node;
10158 initialize_sizetypes ();
10160 /* Define both `signed char' and `unsigned char'. */
10161 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10162 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10163 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10164 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10166 /* Define `char', which is like either `signed char' or `unsigned char'
10167 but not the same as either. */
10168 char_type_node
10169 = (signed_char
10170 ? make_signed_type (CHAR_TYPE_SIZE)
10171 : make_unsigned_type (CHAR_TYPE_SIZE));
10172 TYPE_STRING_FLAG (char_type_node) = 1;
10174 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10175 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10176 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10177 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10178 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10179 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10180 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10181 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10183 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10185 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10186 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10188 if (int_n_enabled_p[i])
10190 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10191 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10195 /* Define a boolean type. This type only represents boolean values but
10196 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10197 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10198 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10199 TYPE_PRECISION (boolean_type_node) = 1;
10200 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10202 /* Define what type to use for size_t. */
10203 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10204 size_type_node = unsigned_type_node;
10205 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10206 size_type_node = long_unsigned_type_node;
10207 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10208 size_type_node = long_long_unsigned_type_node;
10209 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10210 size_type_node = short_unsigned_type_node;
10211 else
10213 int i;
10215 size_type_node = NULL_TREE;
10216 for (i = 0; i < NUM_INT_N_ENTS; i++)
10217 if (int_n_enabled_p[i])
10219 char name[50], altname[50];
10220 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10221 sprintf (altname, "__int%d__ unsigned", int_n_data[i].bitsize);
10223 if (strcmp (name, SIZE_TYPE) == 0
10224 || strcmp (altname, SIZE_TYPE) == 0)
10226 size_type_node = int_n_trees[i].unsigned_type;
10229 if (size_type_node == NULL_TREE)
10230 gcc_unreachable ();
10233 /* Define what type to use for ptrdiff_t. */
10234 if (strcmp (PTRDIFF_TYPE, "int") == 0)
10235 ptrdiff_type_node = integer_type_node;
10236 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
10237 ptrdiff_type_node = long_integer_type_node;
10238 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
10239 ptrdiff_type_node = long_long_integer_type_node;
10240 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
10241 ptrdiff_type_node = short_integer_type_node;
10242 else
10244 ptrdiff_type_node = NULL_TREE;
10245 for (int i = 0; i < NUM_INT_N_ENTS; i++)
10246 if (int_n_enabled_p[i])
10248 char name[50], altname[50];
10249 sprintf (name, "__int%d", int_n_data[i].bitsize);
10250 sprintf (altname, "__int%d__", int_n_data[i].bitsize);
10252 if (strcmp (name, PTRDIFF_TYPE) == 0
10253 || strcmp (altname, PTRDIFF_TYPE) == 0)
10254 ptrdiff_type_node = int_n_trees[i].signed_type;
10256 if (ptrdiff_type_node == NULL_TREE)
10257 gcc_unreachable ();
10260 /* Fill in the rest of the sized types. Reuse existing type nodes
10261 when possible. */
10262 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10263 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10264 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10265 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10266 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10268 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10269 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10270 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10271 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10272 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10274 /* Don't call build_qualified type for atomics. That routine does
10275 special processing for atomics, and until they are initialized
10276 it's better not to make that call.
10278 Check to see if there is a target override for atomic types. */
10280 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10281 targetm.atomic_align_for_mode (QImode));
10282 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10283 targetm.atomic_align_for_mode (HImode));
10284 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10285 targetm.atomic_align_for_mode (SImode));
10286 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10287 targetm.atomic_align_for_mode (DImode));
10288 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10289 targetm.atomic_align_for_mode (TImode));
10291 access_public_node = get_identifier ("public");
10292 access_protected_node = get_identifier ("protected");
10293 access_private_node = get_identifier ("private");
10295 /* Define these next since types below may used them. */
10296 integer_zero_node = build_int_cst (integer_type_node, 0);
10297 integer_one_node = build_int_cst (integer_type_node, 1);
10298 integer_three_node = build_int_cst (integer_type_node, 3);
10299 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10301 size_zero_node = size_int (0);
10302 size_one_node = size_int (1);
10303 bitsize_zero_node = bitsize_int (0);
10304 bitsize_one_node = bitsize_int (1);
10305 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10307 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10308 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10310 void_type_node = make_node (VOID_TYPE);
10311 layout_type (void_type_node);
10313 /* We are not going to have real types in C with less than byte alignment,
10314 so we might as well not have any types that claim to have it. */
10315 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
10316 TYPE_USER_ALIGN (void_type_node) = 0;
10318 void_node = make_node (VOID_CST);
10319 TREE_TYPE (void_node) = void_type_node;
10321 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10322 layout_type (TREE_TYPE (null_pointer_node));
10324 ptr_type_node = build_pointer_type (void_type_node);
10325 const_ptr_type_node
10326 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10327 for (unsigned i = 0;
10328 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
10329 ++i)
10330 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
10332 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10334 float_type_node = make_node (REAL_TYPE);
10335 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10336 layout_type (float_type_node);
10338 double_type_node = make_node (REAL_TYPE);
10339 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10340 layout_type (double_type_node);
10342 long_double_type_node = make_node (REAL_TYPE);
10343 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10344 layout_type (long_double_type_node);
10346 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10348 int n = floatn_nx_types[i].n;
10349 bool extended = floatn_nx_types[i].extended;
10350 scalar_float_mode mode;
10351 if (!targetm.floatn_mode (n, extended).exists (&mode))
10352 continue;
10353 int precision = GET_MODE_PRECISION (mode);
10354 /* Work around the rs6000 KFmode having precision 113 not
10355 128. */
10356 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
10357 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
10358 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
10359 if (!extended)
10360 gcc_assert (min_precision == n);
10361 if (precision < min_precision)
10362 precision = min_precision;
10363 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
10364 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
10365 layout_type (FLOATN_NX_TYPE_NODE (i));
10366 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
10369 float_ptr_type_node = build_pointer_type (float_type_node);
10370 double_ptr_type_node = build_pointer_type (double_type_node);
10371 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10372 integer_ptr_type_node = build_pointer_type (integer_type_node);
10374 /* Fixed size integer types. */
10375 uint16_type_node = make_or_reuse_type (16, 1);
10376 uint32_type_node = make_or_reuse_type (32, 1);
10377 uint64_type_node = make_or_reuse_type (64, 1);
10378 if (targetm.scalar_mode_supported_p (TImode))
10379 uint128_type_node = make_or_reuse_type (128, 1);
10381 /* Decimal float types. */
10382 if (targetm.decimal_float_supported_p ())
10384 dfloat32_type_node = make_node (REAL_TYPE);
10385 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10386 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10387 layout_type (dfloat32_type_node);
10389 dfloat64_type_node = make_node (REAL_TYPE);
10390 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10391 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10392 layout_type (dfloat64_type_node);
10394 dfloat128_type_node = make_node (REAL_TYPE);
10395 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10396 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10397 layout_type (dfloat128_type_node);
10400 complex_integer_type_node = build_complex_type (integer_type_node, true);
10401 complex_float_type_node = build_complex_type (float_type_node, true);
10402 complex_double_type_node = build_complex_type (double_type_node, true);
10403 complex_long_double_type_node = build_complex_type (long_double_type_node,
10404 true);
10406 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10408 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10409 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10410 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10413 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10414 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10415 sat_ ## KIND ## _type_node = \
10416 make_sat_signed_ ## KIND ## _type (SIZE); \
10417 sat_unsigned_ ## KIND ## _type_node = \
10418 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10419 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10420 unsigned_ ## KIND ## _type_node = \
10421 make_unsigned_ ## KIND ## _type (SIZE);
10423 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10424 sat_ ## WIDTH ## KIND ## _type_node = \
10425 make_sat_signed_ ## KIND ## _type (SIZE); \
10426 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10427 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10428 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10429 unsigned_ ## WIDTH ## KIND ## _type_node = \
10430 make_unsigned_ ## KIND ## _type (SIZE);
10432 /* Make fixed-point type nodes based on four different widths. */
10433 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10434 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10435 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10436 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10437 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10439 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10440 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10441 NAME ## _type_node = \
10442 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10443 u ## NAME ## _type_node = \
10444 make_or_reuse_unsigned_ ## KIND ## _type \
10445 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10446 sat_ ## NAME ## _type_node = \
10447 make_or_reuse_sat_signed_ ## KIND ## _type \
10448 (GET_MODE_BITSIZE (MODE ## mode)); \
10449 sat_u ## NAME ## _type_node = \
10450 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10451 (GET_MODE_BITSIZE (U ## MODE ## mode));
10453 /* Fixed-point type and mode nodes. */
10454 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10455 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10456 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10457 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10458 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10459 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10460 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10461 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10462 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10463 MAKE_FIXED_MODE_NODE (accum, da, DA)
10464 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10467 tree t = targetm.build_builtin_va_list ();
10469 /* Many back-ends define record types without setting TYPE_NAME.
10470 If we copied the record type here, we'd keep the original
10471 record type without a name. This breaks name mangling. So,
10472 don't copy record types and let c_common_nodes_and_builtins()
10473 declare the type to be __builtin_va_list. */
10474 if (TREE_CODE (t) != RECORD_TYPE)
10475 t = build_variant_type_copy (t);
10477 va_list_type_node = t;
10480 /* SCEV analyzer global shared trees. */
10481 chrec_dont_know = make_node (SCEV_NOT_KNOWN);
10482 TREE_TYPE (chrec_dont_know) = void_type_node;
10483 chrec_known = make_node (SCEV_KNOWN);
10484 TREE_TYPE (chrec_known) = void_type_node;
10487 /* Modify DECL for given flags.
10488 TM_PURE attribute is set only on types, so the function will modify
10489 DECL's type when ECF_TM_PURE is used. */
10491 void
10492 set_call_expr_flags (tree decl, int flags)
10494 if (flags & ECF_NOTHROW)
10495 TREE_NOTHROW (decl) = 1;
10496 if (flags & ECF_CONST)
10497 TREE_READONLY (decl) = 1;
10498 if (flags & ECF_PURE)
10499 DECL_PURE_P (decl) = 1;
10500 if (flags & ECF_LOOPING_CONST_OR_PURE)
10501 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10502 if (flags & ECF_NOVOPS)
10503 DECL_IS_NOVOPS (decl) = 1;
10504 if (flags & ECF_NORETURN)
10505 TREE_THIS_VOLATILE (decl) = 1;
10506 if (flags & ECF_MALLOC)
10507 DECL_IS_MALLOC (decl) = 1;
10508 if (flags & ECF_RETURNS_TWICE)
10509 DECL_IS_RETURNS_TWICE (decl) = 1;
10510 if (flags & ECF_LEAF)
10511 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10512 NULL, DECL_ATTRIBUTES (decl));
10513 if (flags & ECF_COLD)
10514 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10515 NULL, DECL_ATTRIBUTES (decl));
10516 if (flags & ECF_RET1)
10517 DECL_ATTRIBUTES (decl)
10518 = tree_cons (get_identifier ("fn spec"),
10519 build_tree_list (NULL_TREE, build_string (2, "1 ")),
10520 DECL_ATTRIBUTES (decl));
10521 if ((flags & ECF_TM_PURE) && flag_tm)
10522 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10523 /* Looping const or pure is implied by noreturn.
10524 There is currently no way to declare looping const or looping pure alone. */
10525 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10526 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10530 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10532 static void
10533 local_define_builtin (const char *name, tree type, enum built_in_function code,
10534 const char *library_name, int ecf_flags)
10536 tree decl;
10538 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10539 library_name, NULL_TREE);
10540 set_call_expr_flags (decl, ecf_flags);
10542 set_builtin_decl (code, decl, true);
10545 /* Call this function after instantiating all builtins that the language
10546 front end cares about. This will build the rest of the builtins
10547 and internal functions that are relied upon by the tree optimizers and
10548 the middle-end. */
10550 void
10551 build_common_builtin_nodes (void)
10553 tree tmp, ftype;
10554 int ecf_flags;
10556 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10557 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10559 ftype = build_function_type (void_type_node, void_list_node);
10560 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10561 local_define_builtin ("__builtin_unreachable", ftype,
10562 BUILT_IN_UNREACHABLE,
10563 "__builtin_unreachable",
10564 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10565 | ECF_CONST | ECF_COLD);
10566 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10567 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10568 "abort",
10569 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10572 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10573 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10575 ftype = build_function_type_list (ptr_type_node,
10576 ptr_type_node, const_ptr_type_node,
10577 size_type_node, NULL_TREE);
10579 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10580 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10581 "memcpy", ECF_NOTHROW | ECF_LEAF);
10582 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10583 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10584 "memmove", ECF_NOTHROW | ECF_LEAF);
10587 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10589 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10590 const_ptr_type_node, size_type_node,
10591 NULL_TREE);
10592 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10593 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10596 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10598 ftype = build_function_type_list (ptr_type_node,
10599 ptr_type_node, integer_type_node,
10600 size_type_node, NULL_TREE);
10601 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10602 "memset", ECF_NOTHROW | ECF_LEAF);
10605 /* If we're checking the stack, `alloca' can throw. */
10606 const int alloca_flags
10607 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10609 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10611 ftype = build_function_type_list (ptr_type_node,
10612 size_type_node, NULL_TREE);
10613 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10614 "alloca", alloca_flags);
10617 ftype = build_function_type_list (ptr_type_node, size_type_node,
10618 size_type_node, NULL_TREE);
10619 local_define_builtin ("__builtin_alloca_with_align", ftype,
10620 BUILT_IN_ALLOCA_WITH_ALIGN,
10621 "__builtin_alloca_with_align",
10622 alloca_flags);
10624 ftype = build_function_type_list (ptr_type_node, size_type_node,
10625 size_type_node, size_type_node, NULL_TREE);
10626 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10627 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10628 "__builtin_alloca_with_align_and_max",
10629 alloca_flags);
10631 ftype = build_function_type_list (void_type_node,
10632 ptr_type_node, ptr_type_node,
10633 ptr_type_node, NULL_TREE);
10634 local_define_builtin ("__builtin_init_trampoline", ftype,
10635 BUILT_IN_INIT_TRAMPOLINE,
10636 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10637 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10638 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10639 "__builtin_init_heap_trampoline",
10640 ECF_NOTHROW | ECF_LEAF);
10641 local_define_builtin ("__builtin_init_descriptor", ftype,
10642 BUILT_IN_INIT_DESCRIPTOR,
10643 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10645 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10646 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10647 BUILT_IN_ADJUST_TRAMPOLINE,
10648 "__builtin_adjust_trampoline",
10649 ECF_CONST | ECF_NOTHROW);
10650 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10651 BUILT_IN_ADJUST_DESCRIPTOR,
10652 "__builtin_adjust_descriptor",
10653 ECF_CONST | ECF_NOTHROW);
10655 ftype = build_function_type_list (void_type_node,
10656 ptr_type_node, ptr_type_node, NULL_TREE);
10657 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10658 BUILT_IN_NONLOCAL_GOTO,
10659 "__builtin_nonlocal_goto",
10660 ECF_NORETURN | ECF_NOTHROW);
10662 ftype = build_function_type_list (void_type_node,
10663 ptr_type_node, ptr_type_node, NULL_TREE);
10664 local_define_builtin ("__builtin_setjmp_setup", ftype,
10665 BUILT_IN_SETJMP_SETUP,
10666 "__builtin_setjmp_setup", ECF_NOTHROW);
10668 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10669 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10670 BUILT_IN_SETJMP_RECEIVER,
10671 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10673 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10674 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10675 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10677 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10678 local_define_builtin ("__builtin_stack_restore", ftype,
10679 BUILT_IN_STACK_RESTORE,
10680 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10682 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10683 const_ptr_type_node, size_type_node,
10684 NULL_TREE);
10685 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10686 "__builtin_memcmp_eq",
10687 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10689 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10690 "__builtin_strncmp_eq",
10691 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10693 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10694 "__builtin_strcmp_eq",
10695 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10697 /* If there's a possibility that we might use the ARM EABI, build the
10698 alternate __cxa_end_cleanup node used to resume from C++. */
10699 if (targetm.arm_eabi_unwinder)
10701 ftype = build_function_type_list (void_type_node, NULL_TREE);
10702 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10703 BUILT_IN_CXA_END_CLEANUP,
10704 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10707 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10708 local_define_builtin ("__builtin_unwind_resume", ftype,
10709 BUILT_IN_UNWIND_RESUME,
10710 ((targetm_common.except_unwind_info (&global_options)
10711 == UI_SJLJ)
10712 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10713 ECF_NORETURN);
10715 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10717 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10718 NULL_TREE);
10719 local_define_builtin ("__builtin_return_address", ftype,
10720 BUILT_IN_RETURN_ADDRESS,
10721 "__builtin_return_address",
10722 ECF_NOTHROW);
10725 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10726 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10728 ftype = build_function_type_list (void_type_node, ptr_type_node,
10729 ptr_type_node, NULL_TREE);
10730 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10731 local_define_builtin ("__cyg_profile_func_enter", ftype,
10732 BUILT_IN_PROFILE_FUNC_ENTER,
10733 "__cyg_profile_func_enter", 0);
10734 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10735 local_define_builtin ("__cyg_profile_func_exit", ftype,
10736 BUILT_IN_PROFILE_FUNC_EXIT,
10737 "__cyg_profile_func_exit", 0);
10740 /* The exception object and filter values from the runtime. The argument
10741 must be zero before exception lowering, i.e. from the front end. After
10742 exception lowering, it will be the region number for the exception
10743 landing pad. These functions are PURE instead of CONST to prevent
10744 them from being hoisted past the exception edge that will initialize
10745 its value in the landing pad. */
10746 ftype = build_function_type_list (ptr_type_node,
10747 integer_type_node, NULL_TREE);
10748 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10749 /* Only use TM_PURE if we have TM language support. */
10750 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10751 ecf_flags |= ECF_TM_PURE;
10752 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10753 "__builtin_eh_pointer", ecf_flags);
10755 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10756 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10757 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10758 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10760 ftype = build_function_type_list (void_type_node,
10761 integer_type_node, integer_type_node,
10762 NULL_TREE);
10763 local_define_builtin ("__builtin_eh_copy_values", ftype,
10764 BUILT_IN_EH_COPY_VALUES,
10765 "__builtin_eh_copy_values", ECF_NOTHROW);
10767 /* Complex multiplication and division. These are handled as builtins
10768 rather than optabs because emit_library_call_value doesn't support
10769 complex. Further, we can do slightly better with folding these
10770 beasties if the real and complex parts of the arguments are separate. */
10772 int mode;
10774 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10776 char mode_name_buf[4], *q;
10777 const char *p;
10778 enum built_in_function mcode, dcode;
10779 tree type, inner_type;
10780 const char *prefix = "__";
10782 if (targetm.libfunc_gnu_prefix)
10783 prefix = "__gnu_";
10785 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10786 if (type == NULL)
10787 continue;
10788 inner_type = TREE_TYPE (type);
10790 ftype = build_function_type_list (type, inner_type, inner_type,
10791 inner_type, inner_type, NULL_TREE);
10793 mcode = ((enum built_in_function)
10794 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10795 dcode = ((enum built_in_function)
10796 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10798 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10799 *q = TOLOWER (*p);
10800 *q = '\0';
10802 /* For -ftrapping-math these should throw from a former
10803 -fnon-call-exception stmt. */
10804 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10805 NULL);
10806 local_define_builtin (built_in_names[mcode], ftype, mcode,
10807 built_in_names[mcode],
10808 ECF_CONST | ECF_LEAF);
10810 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10811 NULL);
10812 local_define_builtin (built_in_names[dcode], ftype, dcode,
10813 built_in_names[dcode],
10814 ECF_CONST | ECF_LEAF);
10818 init_internal_fns ();
10821 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10822 better way.
10824 If we requested a pointer to a vector, build up the pointers that
10825 we stripped off while looking for the inner type. Similarly for
10826 return values from functions.
10828 The argument TYPE is the top of the chain, and BOTTOM is the
10829 new type which we will point to. */
10831 tree
10832 reconstruct_complex_type (tree type, tree bottom)
10834 tree inner, outer;
10836 if (TREE_CODE (type) == POINTER_TYPE)
10838 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10839 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10840 TYPE_REF_CAN_ALIAS_ALL (type));
10842 else if (TREE_CODE (type) == REFERENCE_TYPE)
10844 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10845 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10846 TYPE_REF_CAN_ALIAS_ALL (type));
10848 else if (TREE_CODE (type) == ARRAY_TYPE)
10850 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10851 outer = build_array_type (inner, TYPE_DOMAIN (type));
10853 else if (TREE_CODE (type) == FUNCTION_TYPE)
10855 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10856 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10858 else if (TREE_CODE (type) == METHOD_TYPE)
10860 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10861 /* The build_method_type_directly() routine prepends 'this' to argument list,
10862 so we must compensate by getting rid of it. */
10863 outer
10864 = build_method_type_directly
10865 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10866 inner,
10867 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10869 else if (TREE_CODE (type) == OFFSET_TYPE)
10871 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10872 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10874 else
10875 return bottom;
10877 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10878 TYPE_QUALS (type));
10881 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10882 the inner type. */
10883 tree
10884 build_vector_type_for_mode (tree innertype, machine_mode mode)
10886 poly_int64 nunits;
10887 unsigned int bitsize;
10889 switch (GET_MODE_CLASS (mode))
10891 case MODE_VECTOR_BOOL:
10892 case MODE_VECTOR_INT:
10893 case MODE_VECTOR_FLOAT:
10894 case MODE_VECTOR_FRACT:
10895 case MODE_VECTOR_UFRACT:
10896 case MODE_VECTOR_ACCUM:
10897 case MODE_VECTOR_UACCUM:
10898 nunits = GET_MODE_NUNITS (mode);
10899 break;
10901 case MODE_INT:
10902 /* Check that there are no leftover bits. */
10903 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10904 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10905 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10906 break;
10908 default:
10909 gcc_unreachable ();
10912 return make_vector_type (innertype, nunits, mode);
10915 /* Similarly, but takes the inner type and number of units, which must be
10916 a power of two. */
10918 tree
10919 build_vector_type (tree innertype, poly_int64 nunits)
10921 return make_vector_type (innertype, nunits, VOIDmode);
10924 /* Build a truth vector with NUNITS units, giving it mode MASK_MODE. */
10926 tree
10927 build_truth_vector_type_for_mode (poly_uint64 nunits, machine_mode mask_mode)
10929 gcc_assert (mask_mode != BLKmode);
10931 unsigned HOST_WIDE_INT esize;
10932 if (VECTOR_MODE_P (mask_mode))
10934 poly_uint64 vsize = GET_MODE_BITSIZE (mask_mode);
10935 esize = vector_element_size (vsize, nunits);
10937 else
10938 esize = 1;
10940 tree bool_type = build_nonstandard_boolean_type (esize);
10942 return make_vector_type (bool_type, nunits, mask_mode);
10945 /* Build a vector type that holds one boolean result for each element of
10946 vector type VECTYPE. The public interface for this operation is
10947 truth_type_for. */
10949 static tree
10950 build_truth_vector_type_for (tree vectype)
10952 machine_mode vector_mode = TYPE_MODE (vectype);
10953 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype);
10955 machine_mode mask_mode;
10956 if (VECTOR_MODE_P (vector_mode)
10957 && targetm.vectorize.get_mask_mode (vector_mode).exists (&mask_mode))
10958 return build_truth_vector_type_for_mode (nunits, mask_mode);
10960 poly_uint64 vsize = tree_to_poly_uint64 (TYPE_SIZE (vectype));
10961 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
10962 tree bool_type = build_nonstandard_boolean_type (esize);
10964 return make_vector_type (bool_type, nunits, VOIDmode);
10967 /* Like build_vector_type, but builds a variant type with TYPE_VECTOR_OPAQUE
10968 set. */
10970 tree
10971 build_opaque_vector_type (tree innertype, poly_int64 nunits)
10973 tree t = make_vector_type (innertype, nunits, VOIDmode);
10974 tree cand;
10975 /* We always build the non-opaque variant before the opaque one,
10976 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10977 cand = TYPE_NEXT_VARIANT (t);
10978 if (cand
10979 && TYPE_VECTOR_OPAQUE (cand)
10980 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10981 return cand;
10982 /* Othewise build a variant type and make sure to queue it after
10983 the non-opaque type. */
10984 cand = build_distinct_type_copy (t);
10985 TYPE_VECTOR_OPAQUE (cand) = true;
10986 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10987 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10988 TYPE_NEXT_VARIANT (t) = cand;
10989 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10990 return cand;
10993 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10995 wide_int
10996 vector_cst_int_elt (const_tree t, unsigned int i)
10998 /* First handle elements that are directly encoded. */
10999 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11000 if (i < encoded_nelts)
11001 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
11003 /* Identify the pattern that contains element I and work out the index of
11004 the last encoded element for that pattern. */
11005 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11006 unsigned int pattern = i % npatterns;
11007 unsigned int count = i / npatterns;
11008 unsigned int final_i = encoded_nelts - npatterns + pattern;
11010 /* If there are no steps, the final encoded value is the right one. */
11011 if (!VECTOR_CST_STEPPED_P (t))
11012 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
11014 /* Otherwise work out the value from the last two encoded elements. */
11015 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
11016 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
11017 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
11018 return wi::to_wide (v2) + (count - 2) * diff;
11021 /* Return the value of element I of VECTOR_CST T. */
11023 tree
11024 vector_cst_elt (const_tree t, unsigned int i)
11026 /* First handle elements that are directly encoded. */
11027 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11028 if (i < encoded_nelts)
11029 return VECTOR_CST_ENCODED_ELT (t, i);
11031 /* If there are no steps, the final encoded value is the right one. */
11032 if (!VECTOR_CST_STEPPED_P (t))
11034 /* Identify the pattern that contains element I and work out the index of
11035 the last encoded element for that pattern. */
11036 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11037 unsigned int pattern = i % npatterns;
11038 unsigned int final_i = encoded_nelts - npatterns + pattern;
11039 return VECTOR_CST_ENCODED_ELT (t, final_i);
11042 /* Otherwise work out the value from the last two encoded elements. */
11043 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
11044 vector_cst_int_elt (t, i));
11047 /* Given an initializer INIT, return TRUE if INIT is zero or some
11048 aggregate of zeros. Otherwise return FALSE. If NONZERO is not
11049 null, set *NONZERO if and only if INIT is known not to be all
11050 zeros. The combination of return value of false and *NONZERO
11051 false implies that INIT may but need not be all zeros. Other
11052 combinations indicate definitive answers. */
11054 bool
11055 initializer_zerop (const_tree init, bool *nonzero /* = NULL */)
11057 bool dummy;
11058 if (!nonzero)
11059 nonzero = &dummy;
11061 /* Conservatively clear NONZERO and set it only if INIT is definitely
11062 not all zero. */
11063 *nonzero = false;
11065 STRIP_NOPS (init);
11067 unsigned HOST_WIDE_INT off = 0;
11069 switch (TREE_CODE (init))
11071 case INTEGER_CST:
11072 if (integer_zerop (init))
11073 return true;
11075 *nonzero = true;
11076 return false;
11078 case REAL_CST:
11079 /* ??? Note that this is not correct for C4X float formats. There,
11080 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
11081 negative exponent. */
11082 if (real_zerop (init)
11083 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init)))
11084 return true;
11086 *nonzero = true;
11087 return false;
11089 case FIXED_CST:
11090 if (fixed_zerop (init))
11091 return true;
11093 *nonzero = true;
11094 return false;
11096 case COMPLEX_CST:
11097 if (integer_zerop (init)
11098 || (real_zerop (init)
11099 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
11100 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init)))))
11101 return true;
11103 *nonzero = true;
11104 return false;
11106 case VECTOR_CST:
11107 if (VECTOR_CST_NPATTERNS (init) == 1
11108 && VECTOR_CST_DUPLICATE_P (init)
11109 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)))
11110 return true;
11112 *nonzero = true;
11113 return false;
11115 case CONSTRUCTOR:
11117 if (TREE_CLOBBER_P (init))
11118 return false;
11120 unsigned HOST_WIDE_INT idx;
11121 tree elt;
11123 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
11124 if (!initializer_zerop (elt, nonzero))
11125 return false;
11127 return true;
11130 case MEM_REF:
11132 tree arg = TREE_OPERAND (init, 0);
11133 if (TREE_CODE (arg) != ADDR_EXPR)
11134 return false;
11135 tree offset = TREE_OPERAND (init, 1);
11136 if (TREE_CODE (offset) != INTEGER_CST
11137 || !tree_fits_uhwi_p (offset))
11138 return false;
11139 off = tree_to_uhwi (offset);
11140 if (INT_MAX < off)
11141 return false;
11142 arg = TREE_OPERAND (arg, 0);
11143 if (TREE_CODE (arg) != STRING_CST)
11144 return false;
11145 init = arg;
11147 /* Fall through. */
11149 case STRING_CST:
11151 gcc_assert (off <= INT_MAX);
11153 int i = off;
11154 int n = TREE_STRING_LENGTH (init);
11155 if (n <= i)
11156 return false;
11158 /* We need to loop through all elements to handle cases like
11159 "\0" and "\0foobar". */
11160 for (i = 0; i < n; ++i)
11161 if (TREE_STRING_POINTER (init)[i] != '\0')
11163 *nonzero = true;
11164 return false;
11167 return true;
11170 default:
11171 return false;
11175 /* Return true if EXPR is an initializer expression in which every element
11176 is a constant that is numerically equal to 0 or 1. The elements do not
11177 need to be equal to each other. */
11179 bool
11180 initializer_each_zero_or_onep (const_tree expr)
11182 STRIP_ANY_LOCATION_WRAPPER (expr);
11184 switch (TREE_CODE (expr))
11186 case INTEGER_CST:
11187 return integer_zerop (expr) || integer_onep (expr);
11189 case REAL_CST:
11190 return real_zerop (expr) || real_onep (expr);
11192 case VECTOR_CST:
11194 unsigned HOST_WIDE_INT nelts = vector_cst_encoded_nelts (expr);
11195 if (VECTOR_CST_STEPPED_P (expr)
11196 && !TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr)).is_constant (&nelts))
11197 return false;
11199 for (unsigned int i = 0; i < nelts; ++i)
11201 tree elt = vector_cst_elt (expr, i);
11202 if (!initializer_each_zero_or_onep (elt))
11203 return false;
11206 return true;
11209 default:
11210 return false;
11214 /* Check if vector VEC consists of all the equal elements and
11215 that the number of elements corresponds to the type of VEC.
11216 The function returns first element of the vector
11217 or NULL_TREE if the vector is not uniform. */
11218 tree
11219 uniform_vector_p (const_tree vec)
11221 tree first, t;
11222 unsigned HOST_WIDE_INT i, nelts;
11224 if (vec == NULL_TREE)
11225 return NULL_TREE;
11227 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
11229 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
11230 return TREE_OPERAND (vec, 0);
11232 else if (TREE_CODE (vec) == VECTOR_CST)
11234 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
11235 return VECTOR_CST_ENCODED_ELT (vec, 0);
11236 return NULL_TREE;
11239 else if (TREE_CODE (vec) == CONSTRUCTOR
11240 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
11242 first = error_mark_node;
11244 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
11246 if (i == 0)
11248 first = t;
11249 continue;
11251 if (!operand_equal_p (first, t, 0))
11252 return NULL_TREE;
11254 if (i != nelts)
11255 return NULL_TREE;
11257 return first;
11260 return NULL_TREE;
11263 /* If the argument is INTEGER_CST, return it. If the argument is vector
11264 with all elements the same INTEGER_CST, return that INTEGER_CST. Otherwise
11265 return NULL_TREE.
11266 Look through location wrappers. */
11268 tree
11269 uniform_integer_cst_p (tree t)
11271 STRIP_ANY_LOCATION_WRAPPER (t);
11273 if (TREE_CODE (t) == INTEGER_CST)
11274 return t;
11276 if (VECTOR_TYPE_P (TREE_TYPE (t)))
11278 t = uniform_vector_p (t);
11279 if (t && TREE_CODE (t) == INTEGER_CST)
11280 return t;
11283 return NULL_TREE;
11286 /* If VECTOR_CST T has a single nonzero element, return the index of that
11287 element, otherwise return -1. */
11290 single_nonzero_element (const_tree t)
11292 unsigned HOST_WIDE_INT nelts;
11293 unsigned int repeat_nelts;
11294 if (VECTOR_CST_NELTS (t).is_constant (&nelts))
11295 repeat_nelts = nelts;
11296 else if (VECTOR_CST_NELTS_PER_PATTERN (t) == 2)
11298 nelts = vector_cst_encoded_nelts (t);
11299 repeat_nelts = VECTOR_CST_NPATTERNS (t);
11301 else
11302 return -1;
11304 int res = -1;
11305 for (unsigned int i = 0; i < nelts; ++i)
11307 tree elt = vector_cst_elt (t, i);
11308 if (!integer_zerop (elt) && !real_zerop (elt))
11310 if (res >= 0 || i >= repeat_nelts)
11311 return -1;
11312 res = i;
11315 return res;
11318 /* Build an empty statement at location LOC. */
11320 tree
11321 build_empty_stmt (location_t loc)
11323 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
11324 SET_EXPR_LOCATION (t, loc);
11325 return t;
11329 /* Build an OpenMP clause with code CODE. LOC is the location of the
11330 clause. */
11332 tree
11333 build_omp_clause (location_t loc, enum omp_clause_code code)
11335 tree t;
11336 int size, length;
11338 length = omp_clause_num_ops[code];
11339 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
11341 record_node_allocation_statistics (OMP_CLAUSE, size);
11343 t = (tree) ggc_internal_alloc (size);
11344 memset (t, 0, size);
11345 TREE_SET_CODE (t, OMP_CLAUSE);
11346 OMP_CLAUSE_SET_CODE (t, code);
11347 OMP_CLAUSE_LOCATION (t) = loc;
11349 return t;
11352 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
11353 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
11354 Except for the CODE and operand count field, other storage for the
11355 object is initialized to zeros. */
11357 tree
11358 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
11360 tree t;
11361 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
11363 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
11364 gcc_assert (len >= 1);
11366 record_node_allocation_statistics (code, length);
11368 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
11370 TREE_SET_CODE (t, code);
11372 /* Can't use TREE_OPERAND to store the length because if checking is
11373 enabled, it will try to check the length before we store it. :-P */
11374 t->exp.operands[0] = build_int_cst (sizetype, len);
11376 return t;
11379 /* Helper function for build_call_* functions; build a CALL_EXPR with
11380 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
11381 the argument slots. */
11383 static tree
11384 build_call_1 (tree return_type, tree fn, int nargs)
11386 tree t;
11388 t = build_vl_exp (CALL_EXPR, nargs + 3);
11389 TREE_TYPE (t) = return_type;
11390 CALL_EXPR_FN (t) = fn;
11391 CALL_EXPR_STATIC_CHAIN (t) = NULL;
11393 return t;
11396 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11397 FN and a null static chain slot. NARGS is the number of call arguments
11398 which are specified as "..." arguments. */
11400 tree
11401 build_call_nary (tree return_type, tree fn, int nargs, ...)
11403 tree ret;
11404 va_list args;
11405 va_start (args, nargs);
11406 ret = build_call_valist (return_type, fn, nargs, args);
11407 va_end (args);
11408 return ret;
11411 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11412 FN and a null static chain slot. NARGS is the number of call arguments
11413 which are specified as a va_list ARGS. */
11415 tree
11416 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11418 tree t;
11419 int i;
11421 t = build_call_1 (return_type, fn, nargs);
11422 for (i = 0; i < nargs; i++)
11423 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11424 process_call_operands (t);
11425 return t;
11428 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11429 FN and a null static chain slot. NARGS is the number of call arguments
11430 which are specified as a tree array ARGS. */
11432 tree
11433 build_call_array_loc (location_t loc, tree return_type, tree fn,
11434 int nargs, const tree *args)
11436 tree t;
11437 int i;
11439 t = build_call_1 (return_type, fn, nargs);
11440 for (i = 0; i < nargs; i++)
11441 CALL_EXPR_ARG (t, i) = args[i];
11442 process_call_operands (t);
11443 SET_EXPR_LOCATION (t, loc);
11444 return t;
11447 /* Like build_call_array, but takes a vec. */
11449 tree
11450 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11452 tree ret, t;
11453 unsigned int ix;
11455 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11456 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11457 CALL_EXPR_ARG (ret, ix) = t;
11458 process_call_operands (ret);
11459 return ret;
11462 /* Conveniently construct a function call expression. FNDECL names the
11463 function to be called and N arguments are passed in the array
11464 ARGARRAY. */
11466 tree
11467 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11469 tree fntype = TREE_TYPE (fndecl);
11470 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11472 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11475 /* Conveniently construct a function call expression. FNDECL names the
11476 function to be called and the arguments are passed in the vector
11477 VEC. */
11479 tree
11480 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11482 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11483 vec_safe_address (vec));
11487 /* Conveniently construct a function call expression. FNDECL names the
11488 function to be called, N is the number of arguments, and the "..."
11489 parameters are the argument expressions. */
11491 tree
11492 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11494 va_list ap;
11495 tree *argarray = XALLOCAVEC (tree, n);
11496 int i;
11498 va_start (ap, n);
11499 for (i = 0; i < n; i++)
11500 argarray[i] = va_arg (ap, tree);
11501 va_end (ap);
11502 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11505 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11506 varargs macros aren't supported by all bootstrap compilers. */
11508 tree
11509 build_call_expr (tree fndecl, int n, ...)
11511 va_list ap;
11512 tree *argarray = XALLOCAVEC (tree, n);
11513 int i;
11515 va_start (ap, n);
11516 for (i = 0; i < n; i++)
11517 argarray[i] = va_arg (ap, tree);
11518 va_end (ap);
11519 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11522 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11523 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11524 It will get gimplified later into an ordinary internal function. */
11526 tree
11527 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11528 tree type, int n, const tree *args)
11530 tree t = build_call_1 (type, NULL_TREE, n);
11531 for (int i = 0; i < n; ++i)
11532 CALL_EXPR_ARG (t, i) = args[i];
11533 SET_EXPR_LOCATION (t, loc);
11534 CALL_EXPR_IFN (t) = ifn;
11535 process_call_operands (t);
11536 return t;
11539 /* Build internal call expression. This is just like CALL_EXPR, except
11540 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11541 internal function. */
11543 tree
11544 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11545 tree type, int n, ...)
11547 va_list ap;
11548 tree *argarray = XALLOCAVEC (tree, n);
11549 int i;
11551 va_start (ap, n);
11552 for (i = 0; i < n; i++)
11553 argarray[i] = va_arg (ap, tree);
11554 va_end (ap);
11555 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11558 /* Return a function call to FN, if the target is guaranteed to support it,
11559 or null otherwise.
11561 N is the number of arguments, passed in the "...", and TYPE is the
11562 type of the return value. */
11564 tree
11565 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11566 int n, ...)
11568 va_list ap;
11569 tree *argarray = XALLOCAVEC (tree, n);
11570 int i;
11572 va_start (ap, n);
11573 for (i = 0; i < n; i++)
11574 argarray[i] = va_arg (ap, tree);
11575 va_end (ap);
11576 if (internal_fn_p (fn))
11578 internal_fn ifn = as_internal_fn (fn);
11579 if (direct_internal_fn_p (ifn))
11581 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11582 if (!direct_internal_fn_supported_p (ifn, types,
11583 OPTIMIZE_FOR_BOTH))
11584 return NULL_TREE;
11586 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11588 else
11590 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11591 if (!fndecl)
11592 return NULL_TREE;
11593 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11597 /* Return a function call to the appropriate builtin alloca variant.
11599 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11600 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11601 bound for SIZE in case it is not a fixed value. */
11603 tree
11604 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11606 if (max_size >= 0)
11608 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11609 return
11610 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11612 else if (align > 0)
11614 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11615 return build_call_expr (t, 2, size, size_int (align));
11617 else
11619 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11620 return build_call_expr (t, 1, size);
11624 /* Create a new constant string literal of type ELTYPE[SIZE] (or LEN
11625 if SIZE == -1) and return a tree node representing char* pointer to
11626 it as an ADDR_EXPR (ARRAY_REF (ELTYPE, ...)). When STR is nonnull
11627 the STRING_CST value is the LEN bytes at STR (the representation
11628 of the string, which may be wide). Otherwise it's all zeros. */
11630 tree
11631 build_string_literal (unsigned len, const char *str /* = NULL */,
11632 tree eltype /* = char_type_node */,
11633 unsigned HOST_WIDE_INT size /* = -1 */)
11635 tree t = build_string (len, str);
11636 /* Set the maximum valid index based on the string length or SIZE. */
11637 unsigned HOST_WIDE_INT maxidx
11638 = (size == HOST_WIDE_INT_M1U ? len : size) - 1;
11640 tree index = build_index_type (size_int (maxidx));
11641 eltype = build_type_variant (eltype, 1, 0);
11642 tree type = build_array_type (eltype, index);
11643 TREE_TYPE (t) = type;
11644 TREE_CONSTANT (t) = 1;
11645 TREE_READONLY (t) = 1;
11646 TREE_STATIC (t) = 1;
11648 type = build_pointer_type (eltype);
11649 t = build1 (ADDR_EXPR, type,
11650 build4 (ARRAY_REF, eltype,
11651 t, integer_zero_node, NULL_TREE, NULL_TREE));
11652 return t;
11657 /* Return true if T (assumed to be a DECL) must be assigned a memory
11658 location. */
11660 bool
11661 needs_to_live_in_memory (const_tree t)
11663 return (TREE_ADDRESSABLE (t)
11664 || is_global_var (t)
11665 || (TREE_CODE (t) == RESULT_DECL
11666 && !DECL_BY_REFERENCE (t)
11667 && aggregate_value_p (t, current_function_decl)));
11670 /* Return value of a constant X and sign-extend it. */
11672 HOST_WIDE_INT
11673 int_cst_value (const_tree x)
11675 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11676 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11678 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11679 gcc_assert (cst_and_fits_in_hwi (x));
11681 if (bits < HOST_BITS_PER_WIDE_INT)
11683 bool negative = ((val >> (bits - 1)) & 1) != 0;
11684 if (negative)
11685 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11686 else
11687 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11690 return val;
11693 /* If TYPE is an integral or pointer type, return an integer type with
11694 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11695 if TYPE is already an integer type of signedness UNSIGNEDP.
11696 If TYPE is a floating-point type, return an integer type with the same
11697 bitsize and with the signedness given by UNSIGNEDP; this is useful
11698 when doing bit-level operations on a floating-point value. */
11700 tree
11701 signed_or_unsigned_type_for (int unsignedp, tree type)
11703 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_UNSIGNED (type) == unsignedp)
11704 return type;
11706 if (TREE_CODE (type) == VECTOR_TYPE)
11708 tree inner = TREE_TYPE (type);
11709 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11710 if (!inner2)
11711 return NULL_TREE;
11712 if (inner == inner2)
11713 return type;
11714 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11717 if (TREE_CODE (type) == COMPLEX_TYPE)
11719 tree inner = TREE_TYPE (type);
11720 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11721 if (!inner2)
11722 return NULL_TREE;
11723 if (inner == inner2)
11724 return type;
11725 return build_complex_type (inner2);
11728 unsigned int bits;
11729 if (INTEGRAL_TYPE_P (type)
11730 || POINTER_TYPE_P (type)
11731 || TREE_CODE (type) == OFFSET_TYPE)
11732 bits = TYPE_PRECISION (type);
11733 else if (TREE_CODE (type) == REAL_TYPE)
11734 bits = GET_MODE_BITSIZE (SCALAR_TYPE_MODE (type));
11735 else
11736 return NULL_TREE;
11738 return build_nonstandard_integer_type (bits, unsignedp);
11741 /* If TYPE is an integral or pointer type, return an integer type with
11742 the same precision which is unsigned, or itself if TYPE is already an
11743 unsigned integer type. If TYPE is a floating-point type, return an
11744 unsigned integer type with the same bitsize as TYPE. */
11746 tree
11747 unsigned_type_for (tree type)
11749 return signed_or_unsigned_type_for (1, type);
11752 /* If TYPE is an integral or pointer type, return an integer type with
11753 the same precision which is signed, or itself if TYPE is already a
11754 signed integer type. If TYPE is a floating-point type, return a
11755 signed integer type with the same bitsize as TYPE. */
11757 tree
11758 signed_type_for (tree type)
11760 return signed_or_unsigned_type_for (0, type);
11763 /* If TYPE is a vector type, return a signed integer vector type with the
11764 same width and number of subparts. Otherwise return boolean_type_node. */
11766 tree
11767 truth_type_for (tree type)
11769 if (TREE_CODE (type) == VECTOR_TYPE)
11771 if (VECTOR_BOOLEAN_TYPE_P (type))
11772 return type;
11773 return build_truth_vector_type_for (type);
11775 else
11776 return boolean_type_node;
11779 /* Returns the largest value obtainable by casting something in INNER type to
11780 OUTER type. */
11782 tree
11783 upper_bound_in_type (tree outer, tree inner)
11785 unsigned int det = 0;
11786 unsigned oprec = TYPE_PRECISION (outer);
11787 unsigned iprec = TYPE_PRECISION (inner);
11788 unsigned prec;
11790 /* Compute a unique number for every combination. */
11791 det |= (oprec > iprec) ? 4 : 0;
11792 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11793 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11795 /* Determine the exponent to use. */
11796 switch (det)
11798 case 0:
11799 case 1:
11800 /* oprec <= iprec, outer: signed, inner: don't care. */
11801 prec = oprec - 1;
11802 break;
11803 case 2:
11804 case 3:
11805 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11806 prec = oprec;
11807 break;
11808 case 4:
11809 /* oprec > iprec, outer: signed, inner: signed. */
11810 prec = iprec - 1;
11811 break;
11812 case 5:
11813 /* oprec > iprec, outer: signed, inner: unsigned. */
11814 prec = iprec;
11815 break;
11816 case 6:
11817 /* oprec > iprec, outer: unsigned, inner: signed. */
11818 prec = oprec;
11819 break;
11820 case 7:
11821 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11822 prec = iprec;
11823 break;
11824 default:
11825 gcc_unreachable ();
11828 return wide_int_to_tree (outer,
11829 wi::mask (prec, false, TYPE_PRECISION (outer)));
11832 /* Returns the smallest value obtainable by casting something in INNER type to
11833 OUTER type. */
11835 tree
11836 lower_bound_in_type (tree outer, tree inner)
11838 unsigned oprec = TYPE_PRECISION (outer);
11839 unsigned iprec = TYPE_PRECISION (inner);
11841 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11842 and obtain 0. */
11843 if (TYPE_UNSIGNED (outer)
11844 /* If we are widening something of an unsigned type, OUTER type
11845 contains all values of INNER type. In particular, both INNER
11846 and OUTER types have zero in common. */
11847 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11848 return build_int_cst (outer, 0);
11849 else
11851 /* If we are widening a signed type to another signed type, we
11852 want to obtain -2^^(iprec-1). If we are keeping the
11853 precision or narrowing to a signed type, we want to obtain
11854 -2^(oprec-1). */
11855 unsigned prec = oprec > iprec ? iprec : oprec;
11856 return wide_int_to_tree (outer,
11857 wi::mask (prec - 1, true,
11858 TYPE_PRECISION (outer)));
11862 /* Return nonzero if two operands that are suitable for PHI nodes are
11863 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11864 SSA_NAME or invariant. Note that this is strictly an optimization.
11865 That is, callers of this function can directly call operand_equal_p
11866 and get the same result, only slower. */
11869 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11871 if (arg0 == arg1)
11872 return 1;
11873 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11874 return 0;
11875 return operand_equal_p (arg0, arg1, 0);
11878 /* Returns number of zeros at the end of binary representation of X. */
11880 tree
11881 num_ending_zeros (const_tree x)
11883 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11887 #define WALK_SUBTREE(NODE) \
11888 do \
11890 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11891 if (result) \
11892 return result; \
11894 while (0)
11896 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11897 be walked whenever a type is seen in the tree. Rest of operands and return
11898 value are as for walk_tree. */
11900 static tree
11901 walk_type_fields (tree type, walk_tree_fn func, void *data,
11902 hash_set<tree> *pset, walk_tree_lh lh)
11904 tree result = NULL_TREE;
11906 switch (TREE_CODE (type))
11908 case POINTER_TYPE:
11909 case REFERENCE_TYPE:
11910 case VECTOR_TYPE:
11911 /* We have to worry about mutually recursive pointers. These can't
11912 be written in C. They can in Ada. It's pathological, but
11913 there's an ACATS test (c38102a) that checks it. Deal with this
11914 by checking if we're pointing to another pointer, that one
11915 points to another pointer, that one does too, and we have no htab.
11916 If so, get a hash table. We check three levels deep to avoid
11917 the cost of the hash table if we don't need one. */
11918 if (POINTER_TYPE_P (TREE_TYPE (type))
11919 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11920 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11921 && !pset)
11923 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11924 func, data);
11925 if (result)
11926 return result;
11928 break;
11931 /* fall through */
11933 case COMPLEX_TYPE:
11934 WALK_SUBTREE (TREE_TYPE (type));
11935 break;
11937 case METHOD_TYPE:
11938 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11940 /* Fall through. */
11942 case FUNCTION_TYPE:
11943 WALK_SUBTREE (TREE_TYPE (type));
11945 tree arg;
11947 /* We never want to walk into default arguments. */
11948 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11949 WALK_SUBTREE (TREE_VALUE (arg));
11951 break;
11953 case ARRAY_TYPE:
11954 /* Don't follow this nodes's type if a pointer for fear that
11955 we'll have infinite recursion. If we have a PSET, then we
11956 need not fear. */
11957 if (pset
11958 || (!POINTER_TYPE_P (TREE_TYPE (type))
11959 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11960 WALK_SUBTREE (TREE_TYPE (type));
11961 WALK_SUBTREE (TYPE_DOMAIN (type));
11962 break;
11964 case OFFSET_TYPE:
11965 WALK_SUBTREE (TREE_TYPE (type));
11966 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11967 break;
11969 default:
11970 break;
11973 return NULL_TREE;
11976 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11977 called with the DATA and the address of each sub-tree. If FUNC returns a
11978 non-NULL value, the traversal is stopped, and the value returned by FUNC
11979 is returned. If PSET is non-NULL it is used to record the nodes visited,
11980 and to avoid visiting a node more than once. */
11982 tree
11983 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11984 hash_set<tree> *pset, walk_tree_lh lh)
11986 enum tree_code code;
11987 int walk_subtrees;
11988 tree result;
11990 #define WALK_SUBTREE_TAIL(NODE) \
11991 do \
11993 tp = & (NODE); \
11994 goto tail_recurse; \
11996 while (0)
11998 tail_recurse:
11999 /* Skip empty subtrees. */
12000 if (!*tp)
12001 return NULL_TREE;
12003 /* Don't walk the same tree twice, if the user has requested
12004 that we avoid doing so. */
12005 if (pset && pset->add (*tp))
12006 return NULL_TREE;
12008 /* Call the function. */
12009 walk_subtrees = 1;
12010 result = (*func) (tp, &walk_subtrees, data);
12012 /* If we found something, return it. */
12013 if (result)
12014 return result;
12016 code = TREE_CODE (*tp);
12018 /* Even if we didn't, FUNC may have decided that there was nothing
12019 interesting below this point in the tree. */
12020 if (!walk_subtrees)
12022 /* But we still need to check our siblings. */
12023 if (code == TREE_LIST)
12024 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12025 else if (code == OMP_CLAUSE)
12026 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12027 else
12028 return NULL_TREE;
12031 if (lh)
12033 result = (*lh) (tp, &walk_subtrees, func, data, pset);
12034 if (result || !walk_subtrees)
12035 return result;
12038 switch (code)
12040 case ERROR_MARK:
12041 case IDENTIFIER_NODE:
12042 case INTEGER_CST:
12043 case REAL_CST:
12044 case FIXED_CST:
12045 case VECTOR_CST:
12046 case STRING_CST:
12047 case BLOCK:
12048 case PLACEHOLDER_EXPR:
12049 case SSA_NAME:
12050 case FIELD_DECL:
12051 case RESULT_DECL:
12052 /* None of these have subtrees other than those already walked
12053 above. */
12054 break;
12056 case TREE_LIST:
12057 WALK_SUBTREE (TREE_VALUE (*tp));
12058 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12059 break;
12061 case TREE_VEC:
12063 int len = TREE_VEC_LENGTH (*tp);
12065 if (len == 0)
12066 break;
12068 /* Walk all elements but the first. */
12069 while (--len)
12070 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
12072 /* Now walk the first one as a tail call. */
12073 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
12076 case COMPLEX_CST:
12077 WALK_SUBTREE (TREE_REALPART (*tp));
12078 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
12080 case CONSTRUCTOR:
12082 unsigned HOST_WIDE_INT idx;
12083 constructor_elt *ce;
12085 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
12086 idx++)
12087 WALK_SUBTREE (ce->value);
12089 break;
12091 case SAVE_EXPR:
12092 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
12094 case BIND_EXPR:
12096 tree decl;
12097 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
12099 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
12100 into declarations that are just mentioned, rather than
12101 declared; they don't really belong to this part of the tree.
12102 And, we can see cycles: the initializer for a declaration
12103 can refer to the declaration itself. */
12104 WALK_SUBTREE (DECL_INITIAL (decl));
12105 WALK_SUBTREE (DECL_SIZE (decl));
12106 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
12108 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
12111 case STATEMENT_LIST:
12113 tree_stmt_iterator i;
12114 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
12115 WALK_SUBTREE (*tsi_stmt_ptr (i));
12117 break;
12119 case OMP_CLAUSE:
12120 switch (OMP_CLAUSE_CODE (*tp))
12122 case OMP_CLAUSE_GANG:
12123 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12124 /* FALLTHRU */
12126 case OMP_CLAUSE_ASYNC:
12127 case OMP_CLAUSE_WAIT:
12128 case OMP_CLAUSE_WORKER:
12129 case OMP_CLAUSE_VECTOR:
12130 case OMP_CLAUSE_NUM_GANGS:
12131 case OMP_CLAUSE_NUM_WORKERS:
12132 case OMP_CLAUSE_VECTOR_LENGTH:
12133 case OMP_CLAUSE_PRIVATE:
12134 case OMP_CLAUSE_SHARED:
12135 case OMP_CLAUSE_FIRSTPRIVATE:
12136 case OMP_CLAUSE_COPYIN:
12137 case OMP_CLAUSE_COPYPRIVATE:
12138 case OMP_CLAUSE_FINAL:
12139 case OMP_CLAUSE_IF:
12140 case OMP_CLAUSE_NUM_THREADS:
12141 case OMP_CLAUSE_SCHEDULE:
12142 case OMP_CLAUSE_UNIFORM:
12143 case OMP_CLAUSE_DEPEND:
12144 case OMP_CLAUSE_NONTEMPORAL:
12145 case OMP_CLAUSE_NUM_TEAMS:
12146 case OMP_CLAUSE_THREAD_LIMIT:
12147 case OMP_CLAUSE_DEVICE:
12148 case OMP_CLAUSE_DIST_SCHEDULE:
12149 case OMP_CLAUSE_SAFELEN:
12150 case OMP_CLAUSE_SIMDLEN:
12151 case OMP_CLAUSE_ORDERED:
12152 case OMP_CLAUSE_PRIORITY:
12153 case OMP_CLAUSE_GRAINSIZE:
12154 case OMP_CLAUSE_NUM_TASKS:
12155 case OMP_CLAUSE_HINT:
12156 case OMP_CLAUSE_TO_DECLARE:
12157 case OMP_CLAUSE_LINK:
12158 case OMP_CLAUSE_USE_DEVICE_PTR:
12159 case OMP_CLAUSE_USE_DEVICE_ADDR:
12160 case OMP_CLAUSE_IS_DEVICE_PTR:
12161 case OMP_CLAUSE_INCLUSIVE:
12162 case OMP_CLAUSE_EXCLUSIVE:
12163 case OMP_CLAUSE__LOOPTEMP_:
12164 case OMP_CLAUSE__REDUCTEMP_:
12165 case OMP_CLAUSE__CONDTEMP_:
12166 case OMP_CLAUSE__SCANTEMP_:
12167 case OMP_CLAUSE__SIMDUID_:
12168 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
12169 /* FALLTHRU */
12171 case OMP_CLAUSE_INDEPENDENT:
12172 case OMP_CLAUSE_NOWAIT:
12173 case OMP_CLAUSE_DEFAULT:
12174 case OMP_CLAUSE_UNTIED:
12175 case OMP_CLAUSE_MERGEABLE:
12176 case OMP_CLAUSE_PROC_BIND:
12177 case OMP_CLAUSE_DEVICE_TYPE:
12178 case OMP_CLAUSE_INBRANCH:
12179 case OMP_CLAUSE_NOTINBRANCH:
12180 case OMP_CLAUSE_FOR:
12181 case OMP_CLAUSE_PARALLEL:
12182 case OMP_CLAUSE_SECTIONS:
12183 case OMP_CLAUSE_TASKGROUP:
12184 case OMP_CLAUSE_NOGROUP:
12185 case OMP_CLAUSE_THREADS:
12186 case OMP_CLAUSE_SIMD:
12187 case OMP_CLAUSE_DEFAULTMAP:
12188 case OMP_CLAUSE_ORDER:
12189 case OMP_CLAUSE_BIND:
12190 case OMP_CLAUSE_AUTO:
12191 case OMP_CLAUSE_SEQ:
12192 case OMP_CLAUSE_TILE:
12193 case OMP_CLAUSE__SIMT_:
12194 case OMP_CLAUSE_IF_PRESENT:
12195 case OMP_CLAUSE_FINALIZE:
12196 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12198 case OMP_CLAUSE_LASTPRIVATE:
12199 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12200 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
12201 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12203 case OMP_CLAUSE_COLLAPSE:
12205 int i;
12206 for (i = 0; i < 3; i++)
12207 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12208 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12211 case OMP_CLAUSE_LINEAR:
12212 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12213 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
12214 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
12215 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12217 case OMP_CLAUSE_ALIGNED:
12218 case OMP_CLAUSE_ALLOCATE:
12219 case OMP_CLAUSE_FROM:
12220 case OMP_CLAUSE_TO:
12221 case OMP_CLAUSE_MAP:
12222 case OMP_CLAUSE__CACHE_:
12223 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12224 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12225 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12227 case OMP_CLAUSE_REDUCTION:
12228 case OMP_CLAUSE_TASK_REDUCTION:
12229 case OMP_CLAUSE_IN_REDUCTION:
12231 int i;
12232 for (i = 0; i < 5; i++)
12233 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12234 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12237 default:
12238 gcc_unreachable ();
12240 break;
12242 case TARGET_EXPR:
12244 int i, len;
12246 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
12247 But, we only want to walk once. */
12248 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
12249 for (i = 0; i < len; ++i)
12250 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12251 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
12254 case DECL_EXPR:
12255 /* If this is a TYPE_DECL, walk into the fields of the type that it's
12256 defining. We only want to walk into these fields of a type in this
12257 case and not in the general case of a mere reference to the type.
12259 The criterion is as follows: if the field can be an expression, it
12260 must be walked only here. This should be in keeping with the fields
12261 that are directly gimplified in gimplify_type_sizes in order for the
12262 mark/copy-if-shared/unmark machinery of the gimplifier to work with
12263 variable-sized types.
12265 Note that DECLs get walked as part of processing the BIND_EXPR. */
12266 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
12268 /* Call the function for the decl so e.g. copy_tree_body_r can
12269 replace it with the remapped one. */
12270 result = (*func) (&DECL_EXPR_DECL (*tp), &walk_subtrees, data);
12271 if (result || !walk_subtrees)
12272 return result;
12274 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
12275 if (TREE_CODE (*type_p) == ERROR_MARK)
12276 return NULL_TREE;
12278 /* Call the function for the type. See if it returns anything or
12279 doesn't want us to continue. If we are to continue, walk both
12280 the normal fields and those for the declaration case. */
12281 result = (*func) (type_p, &walk_subtrees, data);
12282 if (result || !walk_subtrees)
12283 return result;
12285 /* But do not walk a pointed-to type since it may itself need to
12286 be walked in the declaration case if it isn't anonymous. */
12287 if (!POINTER_TYPE_P (*type_p))
12289 result = walk_type_fields (*type_p, func, data, pset, lh);
12290 if (result)
12291 return result;
12294 /* If this is a record type, also walk the fields. */
12295 if (RECORD_OR_UNION_TYPE_P (*type_p))
12297 tree field;
12299 for (field = TYPE_FIELDS (*type_p); field;
12300 field = DECL_CHAIN (field))
12302 /* We'd like to look at the type of the field, but we can
12303 easily get infinite recursion. So assume it's pointed
12304 to elsewhere in the tree. Also, ignore things that
12305 aren't fields. */
12306 if (TREE_CODE (field) != FIELD_DECL)
12307 continue;
12309 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
12310 WALK_SUBTREE (DECL_SIZE (field));
12311 WALK_SUBTREE (DECL_SIZE_UNIT (field));
12312 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
12313 WALK_SUBTREE (DECL_QUALIFIER (field));
12317 /* Same for scalar types. */
12318 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
12319 || TREE_CODE (*type_p) == ENUMERAL_TYPE
12320 || TREE_CODE (*type_p) == INTEGER_TYPE
12321 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
12322 || TREE_CODE (*type_p) == REAL_TYPE)
12324 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
12325 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
12328 WALK_SUBTREE (TYPE_SIZE (*type_p));
12329 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
12331 /* FALLTHRU */
12333 default:
12334 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
12336 int i, len;
12338 /* Walk over all the sub-trees of this operand. */
12339 len = TREE_OPERAND_LENGTH (*tp);
12341 /* Go through the subtrees. We need to do this in forward order so
12342 that the scope of a FOR_EXPR is handled properly. */
12343 if (len)
12345 for (i = 0; i < len - 1; ++i)
12346 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12347 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
12350 /* If this is a type, walk the needed fields in the type. */
12351 else if (TYPE_P (*tp))
12352 return walk_type_fields (*tp, func, data, pset, lh);
12353 break;
12356 /* We didn't find what we were looking for. */
12357 return NULL_TREE;
12359 #undef WALK_SUBTREE_TAIL
12361 #undef WALK_SUBTREE
12363 /* Like walk_tree, but does not walk duplicate nodes more than once. */
12365 tree
12366 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
12367 walk_tree_lh lh)
12369 tree result;
12371 hash_set<tree> pset;
12372 result = walk_tree_1 (tp, func, data, &pset, lh);
12373 return result;
12377 tree
12378 tree_block (tree t)
12380 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12382 if (IS_EXPR_CODE_CLASS (c))
12383 return LOCATION_BLOCK (t->exp.locus);
12384 gcc_unreachable ();
12385 return NULL;
12388 void
12389 tree_set_block (tree t, tree b)
12391 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12393 if (IS_EXPR_CODE_CLASS (c))
12395 t->exp.locus = set_block (t->exp.locus, b);
12397 else
12398 gcc_unreachable ();
12401 /* Create a nameless artificial label and put it in the current
12402 function context. The label has a location of LOC. Returns the
12403 newly created label. */
12405 tree
12406 create_artificial_label (location_t loc)
12408 tree lab = build_decl (loc,
12409 LABEL_DECL, NULL_TREE, void_type_node);
12411 DECL_ARTIFICIAL (lab) = 1;
12412 DECL_IGNORED_P (lab) = 1;
12413 DECL_CONTEXT (lab) = current_function_decl;
12414 return lab;
12417 /* Given a tree, try to return a useful variable name that we can use
12418 to prefix a temporary that is being assigned the value of the tree.
12419 I.E. given <temp> = &A, return A. */
12421 const char *
12422 get_name (tree t)
12424 tree stripped_decl;
12426 stripped_decl = t;
12427 STRIP_NOPS (stripped_decl);
12428 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
12429 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
12430 else if (TREE_CODE (stripped_decl) == SSA_NAME)
12432 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
12433 if (!name)
12434 return NULL;
12435 return IDENTIFIER_POINTER (name);
12437 else
12439 switch (TREE_CODE (stripped_decl))
12441 case ADDR_EXPR:
12442 return get_name (TREE_OPERAND (stripped_decl, 0));
12443 default:
12444 return NULL;
12449 /* Return true if TYPE has a variable argument list. */
12451 bool
12452 stdarg_p (const_tree fntype)
12454 function_args_iterator args_iter;
12455 tree n = NULL_TREE, t;
12457 if (!fntype)
12458 return false;
12460 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
12462 n = t;
12465 return n != NULL_TREE && n != void_type_node;
12468 /* Return true if TYPE has a prototype. */
12470 bool
12471 prototype_p (const_tree fntype)
12473 tree t;
12475 gcc_assert (fntype != NULL_TREE);
12477 t = TYPE_ARG_TYPES (fntype);
12478 return (t != NULL_TREE);
12481 /* If BLOCK is inlined from an __attribute__((__artificial__))
12482 routine, return pointer to location from where it has been
12483 called. */
12484 location_t *
12485 block_nonartificial_location (tree block)
12487 location_t *ret = NULL;
12489 while (block && TREE_CODE (block) == BLOCK
12490 && BLOCK_ABSTRACT_ORIGIN (block))
12492 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12493 if (TREE_CODE (ao) == FUNCTION_DECL)
12495 /* If AO is an artificial inline, point RET to the
12496 call site locus at which it has been inlined and continue
12497 the loop, in case AO's caller is also an artificial
12498 inline. */
12499 if (DECL_DECLARED_INLINE_P (ao)
12500 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12501 ret = &BLOCK_SOURCE_LOCATION (block);
12502 else
12503 break;
12505 else if (TREE_CODE (ao) != BLOCK)
12506 break;
12508 block = BLOCK_SUPERCONTEXT (block);
12510 return ret;
12514 /* If EXP is inlined from an __attribute__((__artificial__))
12515 function, return the location of the original call expression. */
12517 location_t
12518 tree_nonartificial_location (tree exp)
12520 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12522 if (loc)
12523 return *loc;
12524 else
12525 return EXPR_LOCATION (exp);
12529 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
12530 nodes. */
12532 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12534 hashval_t
12535 cl_option_hasher::hash (tree x)
12537 const_tree const t = x;
12538 const char *p;
12539 size_t i;
12540 size_t len = 0;
12541 hashval_t hash = 0;
12543 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12545 p = (const char *)TREE_OPTIMIZATION (t);
12546 len = sizeof (struct cl_optimization);
12549 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12550 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12552 else
12553 gcc_unreachable ();
12555 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12556 something else. */
12557 for (i = 0; i < len; i++)
12558 if (p[i])
12559 hash = (hash << 4) ^ ((i << 2) | p[i]);
12561 return hash;
12564 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12565 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12566 same. */
12568 bool
12569 cl_option_hasher::equal (tree x, tree y)
12571 const_tree const xt = x;
12572 const_tree const yt = y;
12574 if (TREE_CODE (xt) != TREE_CODE (yt))
12575 return 0;
12577 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12578 return cl_optimization_option_eq (TREE_OPTIMIZATION (xt),
12579 TREE_OPTIMIZATION (yt));
12580 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12581 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12582 TREE_TARGET_OPTION (yt));
12583 else
12584 gcc_unreachable ();
12587 /* Build an OPTIMIZATION_NODE based on the options in OPTS and OPTS_SET. */
12589 tree
12590 build_optimization_node (struct gcc_options *opts,
12591 struct gcc_options *opts_set)
12593 tree t;
12595 /* Use the cache of optimization nodes. */
12597 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12598 opts, opts_set);
12600 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12601 t = *slot;
12602 if (!t)
12604 /* Insert this one into the hash table. */
12605 t = cl_optimization_node;
12606 *slot = t;
12608 /* Make a new node for next time round. */
12609 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12612 return t;
12615 /* Build a TARGET_OPTION_NODE based on the options in OPTS and OPTS_SET. */
12617 tree
12618 build_target_option_node (struct gcc_options *opts,
12619 struct gcc_options *opts_set)
12621 tree t;
12623 /* Use the cache of optimization nodes. */
12625 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12626 opts, opts_set);
12628 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12629 t = *slot;
12630 if (!t)
12632 /* Insert this one into the hash table. */
12633 t = cl_target_option_node;
12634 *slot = t;
12636 /* Make a new node for next time round. */
12637 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12640 return t;
12643 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12644 so that they aren't saved during PCH writing. */
12646 void
12647 prepare_target_option_nodes_for_pch (void)
12649 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12650 for (; iter != cl_option_hash_table->end (); ++iter)
12651 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12652 TREE_TARGET_GLOBALS (*iter) = NULL;
12655 /* Determine the "ultimate origin" of a block. */
12657 tree
12658 block_ultimate_origin (const_tree block)
12660 tree origin = BLOCK_ABSTRACT_ORIGIN (block);
12662 if (origin == NULL_TREE)
12663 return NULL_TREE;
12664 else
12666 gcc_checking_assert ((DECL_P (origin)
12667 && DECL_ORIGIN (origin) == origin)
12668 || BLOCK_ORIGIN (origin) == origin);
12669 return origin;
12673 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12674 no instruction. */
12676 bool
12677 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12679 /* Do not strip casts into or out of differing address spaces. */
12680 if (POINTER_TYPE_P (outer_type)
12681 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12683 if (!POINTER_TYPE_P (inner_type)
12684 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12685 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12686 return false;
12688 else if (POINTER_TYPE_P (inner_type)
12689 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12691 /* We already know that outer_type is not a pointer with
12692 a non-generic address space. */
12693 return false;
12696 /* Use precision rather then machine mode when we can, which gives
12697 the correct answer even for submode (bit-field) types. */
12698 if ((INTEGRAL_TYPE_P (outer_type)
12699 || POINTER_TYPE_P (outer_type)
12700 || TREE_CODE (outer_type) == OFFSET_TYPE)
12701 && (INTEGRAL_TYPE_P (inner_type)
12702 || POINTER_TYPE_P (inner_type)
12703 || TREE_CODE (inner_type) == OFFSET_TYPE))
12704 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12706 /* Otherwise fall back on comparing machine modes (e.g. for
12707 aggregate types, floats). */
12708 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12711 /* Return true iff conversion in EXP generates no instruction. Mark
12712 it inline so that we fully inline into the stripping functions even
12713 though we have two uses of this function. */
12715 static inline bool
12716 tree_nop_conversion (const_tree exp)
12718 tree outer_type, inner_type;
12720 if (location_wrapper_p (exp))
12721 return true;
12722 if (!CONVERT_EXPR_P (exp)
12723 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12724 return false;
12726 outer_type = TREE_TYPE (exp);
12727 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12728 if (!inner_type || inner_type == error_mark_node)
12729 return false;
12731 return tree_nop_conversion_p (outer_type, inner_type);
12734 /* Return true iff conversion in EXP generates no instruction. Don't
12735 consider conversions changing the signedness. */
12737 static bool
12738 tree_sign_nop_conversion (const_tree exp)
12740 tree outer_type, inner_type;
12742 if (!tree_nop_conversion (exp))
12743 return false;
12745 outer_type = TREE_TYPE (exp);
12746 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12748 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12749 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12752 /* Strip conversions from EXP according to tree_nop_conversion and
12753 return the resulting expression. */
12755 tree
12756 tree_strip_nop_conversions (tree exp)
12758 while (tree_nop_conversion (exp))
12759 exp = TREE_OPERAND (exp, 0);
12760 return exp;
12763 /* Strip conversions from EXP according to tree_sign_nop_conversion
12764 and return the resulting expression. */
12766 tree
12767 tree_strip_sign_nop_conversions (tree exp)
12769 while (tree_sign_nop_conversion (exp))
12770 exp = TREE_OPERAND (exp, 0);
12771 return exp;
12774 /* Avoid any floating point extensions from EXP. */
12775 tree
12776 strip_float_extensions (tree exp)
12778 tree sub, expt, subt;
12780 /* For floating point constant look up the narrowest type that can hold
12781 it properly and handle it like (type)(narrowest_type)constant.
12782 This way we can optimize for instance a=a*2.0 where "a" is float
12783 but 2.0 is double constant. */
12784 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12786 REAL_VALUE_TYPE orig;
12787 tree type = NULL;
12789 orig = TREE_REAL_CST (exp);
12790 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12791 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12792 type = float_type_node;
12793 else if (TYPE_PRECISION (TREE_TYPE (exp))
12794 > TYPE_PRECISION (double_type_node)
12795 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12796 type = double_type_node;
12797 if (type)
12798 return build_real_truncate (type, orig);
12801 if (!CONVERT_EXPR_P (exp))
12802 return exp;
12804 sub = TREE_OPERAND (exp, 0);
12805 subt = TREE_TYPE (sub);
12806 expt = TREE_TYPE (exp);
12808 if (!FLOAT_TYPE_P (subt))
12809 return exp;
12811 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12812 return exp;
12814 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12815 return exp;
12817 return strip_float_extensions (sub);
12820 /* Strip out all handled components that produce invariant
12821 offsets. */
12823 const_tree
12824 strip_invariant_refs (const_tree op)
12826 while (handled_component_p (op))
12828 switch (TREE_CODE (op))
12830 case ARRAY_REF:
12831 case ARRAY_RANGE_REF:
12832 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12833 || TREE_OPERAND (op, 2) != NULL_TREE
12834 || TREE_OPERAND (op, 3) != NULL_TREE)
12835 return NULL;
12836 break;
12838 case COMPONENT_REF:
12839 if (TREE_OPERAND (op, 2) != NULL_TREE)
12840 return NULL;
12841 break;
12843 default:;
12845 op = TREE_OPERAND (op, 0);
12848 return op;
12851 static GTY(()) tree gcc_eh_personality_decl;
12853 /* Return the GCC personality function decl. */
12855 tree
12856 lhd_gcc_personality (void)
12858 if (!gcc_eh_personality_decl)
12859 gcc_eh_personality_decl = build_personality_function ("gcc");
12860 return gcc_eh_personality_decl;
12863 /* TARGET is a call target of GIMPLE call statement
12864 (obtained by gimple_call_fn). Return true if it is
12865 OBJ_TYPE_REF representing an virtual call of C++ method.
12866 (As opposed to OBJ_TYPE_REF representing objc calls
12867 through a cast where middle-end devirtualization machinery
12868 can't apply.) FOR_DUMP_P is true when being called from
12869 the dump routines. */
12871 bool
12872 virtual_method_call_p (const_tree target, bool for_dump_p)
12874 if (TREE_CODE (target) != OBJ_TYPE_REF)
12875 return false;
12876 tree t = TREE_TYPE (target);
12877 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12878 t = TREE_TYPE (t);
12879 if (TREE_CODE (t) == FUNCTION_TYPE)
12880 return false;
12881 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12882 /* If we do not have BINFO associated, it means that type was built
12883 without devirtualization enabled. Do not consider this a virtual
12884 call. */
12885 if (!TYPE_BINFO (obj_type_ref_class (target, for_dump_p)))
12886 return false;
12887 return true;
12890 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12892 static tree
12893 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12895 unsigned int i;
12896 tree base_binfo, b;
12898 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12899 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12900 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12901 return base_binfo;
12902 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12903 return b;
12904 return NULL;
12907 /* Try to find a base info of BINFO that would have its field decl at offset
12908 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12909 found, return, otherwise return NULL_TREE. */
12911 tree
12912 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
12914 tree type = BINFO_TYPE (binfo);
12916 while (true)
12918 HOST_WIDE_INT pos, size;
12919 tree fld;
12920 int i;
12922 if (types_same_for_odr (type, expected_type))
12923 return binfo;
12924 if (maybe_lt (offset, 0))
12925 return NULL_TREE;
12927 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12929 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12930 continue;
12932 pos = int_bit_position (fld);
12933 size = tree_to_uhwi (DECL_SIZE (fld));
12934 if (known_in_range_p (offset, pos, size))
12935 break;
12937 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12938 return NULL_TREE;
12940 /* Offset 0 indicates the primary base, whose vtable contents are
12941 represented in the binfo for the derived class. */
12942 else if (maybe_ne (offset, 0))
12944 tree found_binfo = NULL, base_binfo;
12945 /* Offsets in BINFO are in bytes relative to the whole structure
12946 while POS is in bits relative to the containing field. */
12947 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12948 / BITS_PER_UNIT);
12950 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12951 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12952 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12954 found_binfo = base_binfo;
12955 break;
12957 if (found_binfo)
12958 binfo = found_binfo;
12959 else
12960 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12961 binfo_offset);
12964 type = TREE_TYPE (fld);
12965 offset -= pos;
12969 /* Returns true if X is a typedef decl. */
12971 bool
12972 is_typedef_decl (const_tree x)
12974 return (x && TREE_CODE (x) == TYPE_DECL
12975 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12978 /* Returns true iff TYPE is a type variant created for a typedef. */
12980 bool
12981 typedef_variant_p (const_tree type)
12983 return is_typedef_decl (TYPE_NAME (type));
12986 /* PR 84195: Replace control characters in "unescaped" with their
12987 escaped equivalents. Allow newlines if -fmessage-length has
12988 been set to a non-zero value. This is done here, rather than
12989 where the attribute is recorded as the message length can
12990 change between these two locations. */
12992 void
12993 escaped_string::escape (const char *unescaped)
12995 char *escaped;
12996 size_t i, new_i, len;
12998 if (m_owned)
12999 free (m_str);
13001 m_str = const_cast<char *> (unescaped);
13002 m_owned = false;
13004 if (unescaped == NULL || *unescaped == 0)
13005 return;
13007 len = strlen (unescaped);
13008 escaped = NULL;
13009 new_i = 0;
13011 for (i = 0; i < len; i++)
13013 char c = unescaped[i];
13015 if (!ISCNTRL (c))
13017 if (escaped)
13018 escaped[new_i++] = c;
13019 continue;
13022 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
13024 if (escaped == NULL)
13026 /* We only allocate space for a new string if we
13027 actually encounter a control character that
13028 needs replacing. */
13029 escaped = (char *) xmalloc (len * 2 + 1);
13030 strncpy (escaped, unescaped, i);
13031 new_i = i;
13034 escaped[new_i++] = '\\';
13036 switch (c)
13038 case '\a': escaped[new_i++] = 'a'; break;
13039 case '\b': escaped[new_i++] = 'b'; break;
13040 case '\f': escaped[new_i++] = 'f'; break;
13041 case '\n': escaped[new_i++] = 'n'; break;
13042 case '\r': escaped[new_i++] = 'r'; break;
13043 case '\t': escaped[new_i++] = 't'; break;
13044 case '\v': escaped[new_i++] = 'v'; break;
13045 default: escaped[new_i++] = '?'; break;
13048 else if (escaped)
13049 escaped[new_i++] = c;
13052 if (escaped)
13054 escaped[new_i] = 0;
13055 m_str = escaped;
13056 m_owned = true;
13060 /* Warn about a use of an identifier which was marked deprecated. Returns
13061 whether a warning was given. */
13063 bool
13064 warn_deprecated_use (tree node, tree attr)
13066 escaped_string msg;
13068 if (node == 0 || !warn_deprecated_decl)
13069 return false;
13071 if (!attr)
13073 if (DECL_P (node))
13074 attr = DECL_ATTRIBUTES (node);
13075 else if (TYPE_P (node))
13077 tree decl = TYPE_STUB_DECL (node);
13078 if (decl)
13079 attr = lookup_attribute ("deprecated",
13080 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
13084 if (attr)
13085 attr = lookup_attribute ("deprecated", attr);
13087 if (attr)
13088 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
13090 bool w = false;
13091 if (DECL_P (node))
13093 auto_diagnostic_group d;
13094 if (msg)
13095 w = warning (OPT_Wdeprecated_declarations,
13096 "%qD is deprecated: %s", node, (const char *) msg);
13097 else
13098 w = warning (OPT_Wdeprecated_declarations,
13099 "%qD is deprecated", node);
13100 if (w)
13101 inform (DECL_SOURCE_LOCATION (node), "declared here");
13103 else if (TYPE_P (node))
13105 tree what = NULL_TREE;
13106 tree decl = TYPE_STUB_DECL (node);
13108 if (TYPE_NAME (node))
13110 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
13111 what = TYPE_NAME (node);
13112 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
13113 && DECL_NAME (TYPE_NAME (node)))
13114 what = DECL_NAME (TYPE_NAME (node));
13117 auto_diagnostic_group d;
13118 if (what)
13120 if (msg)
13121 w = warning (OPT_Wdeprecated_declarations,
13122 "%qE is deprecated: %s", what, (const char *) msg);
13123 else
13124 w = warning (OPT_Wdeprecated_declarations,
13125 "%qE is deprecated", what);
13127 else
13129 if (msg)
13130 w = warning (OPT_Wdeprecated_declarations,
13131 "type is deprecated: %s", (const char *) msg);
13132 else
13133 w = warning (OPT_Wdeprecated_declarations,
13134 "type is deprecated");
13137 if (w && decl)
13138 inform (DECL_SOURCE_LOCATION (decl), "declared here");
13141 return w;
13144 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
13145 somewhere in it. */
13147 bool
13148 contains_bitfld_component_ref_p (const_tree ref)
13150 while (handled_component_p (ref))
13152 if (TREE_CODE (ref) == COMPONENT_REF
13153 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
13154 return true;
13155 ref = TREE_OPERAND (ref, 0);
13158 return false;
13161 /* Try to determine whether a TRY_CATCH expression can fall through.
13162 This is a subroutine of block_may_fallthru. */
13164 static bool
13165 try_catch_may_fallthru (const_tree stmt)
13167 tree_stmt_iterator i;
13169 /* If the TRY block can fall through, the whole TRY_CATCH can
13170 fall through. */
13171 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
13172 return true;
13174 i = tsi_start (TREE_OPERAND (stmt, 1));
13175 switch (TREE_CODE (tsi_stmt (i)))
13177 case CATCH_EXPR:
13178 /* We expect to see a sequence of CATCH_EXPR trees, each with a
13179 catch expression and a body. The whole TRY_CATCH may fall
13180 through iff any of the catch bodies falls through. */
13181 for (; !tsi_end_p (i); tsi_next (&i))
13183 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
13184 return true;
13186 return false;
13188 case EH_FILTER_EXPR:
13189 /* The exception filter expression only matters if there is an
13190 exception. If the exception does not match EH_FILTER_TYPES,
13191 we will execute EH_FILTER_FAILURE, and we will fall through
13192 if that falls through. If the exception does match
13193 EH_FILTER_TYPES, the stack unwinder will continue up the
13194 stack, so we will not fall through. We don't know whether we
13195 will throw an exception which matches EH_FILTER_TYPES or not,
13196 so we just ignore EH_FILTER_TYPES and assume that we might
13197 throw an exception which doesn't match. */
13198 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
13200 default:
13201 /* This case represents statements to be executed when an
13202 exception occurs. Those statements are implicitly followed
13203 by a RESX statement to resume execution after the exception.
13204 So in this case the TRY_CATCH never falls through. */
13205 return false;
13209 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
13210 need not be 100% accurate; simply be conservative and return true if we
13211 don't know. This is used only to avoid stupidly generating extra code.
13212 If we're wrong, we'll just delete the extra code later. */
13214 bool
13215 block_may_fallthru (const_tree block)
13217 /* This CONST_CAST is okay because expr_last returns its argument
13218 unmodified and we assign it to a const_tree. */
13219 const_tree stmt = expr_last (CONST_CAST_TREE (block));
13221 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
13223 case GOTO_EXPR:
13224 case RETURN_EXPR:
13225 /* Easy cases. If the last statement of the block implies
13226 control transfer, then we can't fall through. */
13227 return false;
13229 case SWITCH_EXPR:
13230 /* If there is a default: label or case labels cover all possible
13231 SWITCH_COND values, then the SWITCH_EXPR will transfer control
13232 to some case label in all cases and all we care is whether the
13233 SWITCH_BODY falls through. */
13234 if (SWITCH_ALL_CASES_P (stmt))
13235 return block_may_fallthru (SWITCH_BODY (stmt));
13236 return true;
13238 case COND_EXPR:
13239 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
13240 return true;
13241 return block_may_fallthru (COND_EXPR_ELSE (stmt));
13243 case BIND_EXPR:
13244 return block_may_fallthru (BIND_EXPR_BODY (stmt));
13246 case TRY_CATCH_EXPR:
13247 return try_catch_may_fallthru (stmt);
13249 case TRY_FINALLY_EXPR:
13250 /* The finally clause is always executed after the try clause,
13251 so if it does not fall through, then the try-finally will not
13252 fall through. Otherwise, if the try clause does not fall
13253 through, then when the finally clause falls through it will
13254 resume execution wherever the try clause was going. So the
13255 whole try-finally will only fall through if both the try
13256 clause and the finally clause fall through. */
13257 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
13258 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
13260 case EH_ELSE_EXPR:
13261 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13263 case MODIFY_EXPR:
13264 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
13265 stmt = TREE_OPERAND (stmt, 1);
13266 else
13267 return true;
13268 /* FALLTHRU */
13270 case CALL_EXPR:
13271 /* Functions that do not return do not fall through. */
13272 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
13274 case CLEANUP_POINT_EXPR:
13275 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13277 case TARGET_EXPR:
13278 return block_may_fallthru (TREE_OPERAND (stmt, 1));
13280 case ERROR_MARK:
13281 return true;
13283 default:
13284 return lang_hooks.block_may_fallthru (stmt);
13288 /* True if we are using EH to handle cleanups. */
13289 static bool using_eh_for_cleanups_flag = false;
13291 /* This routine is called from front ends to indicate eh should be used for
13292 cleanups. */
13293 void
13294 using_eh_for_cleanups (void)
13296 using_eh_for_cleanups_flag = true;
13299 /* Query whether EH is used for cleanups. */
13300 bool
13301 using_eh_for_cleanups_p (void)
13303 return using_eh_for_cleanups_flag;
13306 /* Wrapper for tree_code_name to ensure that tree code is valid */
13307 const char *
13308 get_tree_code_name (enum tree_code code)
13310 const char *invalid = "<invalid tree code>";
13312 /* The tree_code enum promotes to signed, but we could be getting
13313 invalid values, so force an unsigned comparison. */
13314 if (unsigned (code) >= MAX_TREE_CODES)
13316 if (code == 0xa5a5)
13317 return "ggc_freed";
13318 return invalid;
13321 return tree_code_name[code];
13324 /* Drops the TREE_OVERFLOW flag from T. */
13326 tree
13327 drop_tree_overflow (tree t)
13329 gcc_checking_assert (TREE_OVERFLOW (t));
13331 /* For tree codes with a sharing machinery re-build the result. */
13332 if (poly_int_tree_p (t))
13333 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
13335 /* For VECTOR_CST, remove the overflow bits from the encoded elements
13336 and canonicalize the result. */
13337 if (TREE_CODE (t) == VECTOR_CST)
13339 tree_vector_builder builder;
13340 builder.new_unary_operation (TREE_TYPE (t), t, true);
13341 unsigned int count = builder.encoded_nelts ();
13342 for (unsigned int i = 0; i < count; ++i)
13344 tree elt = VECTOR_CST_ELT (t, i);
13345 if (TREE_OVERFLOW (elt))
13346 elt = drop_tree_overflow (elt);
13347 builder.quick_push (elt);
13349 return builder.build ();
13352 /* Otherwise, as all tcc_constants are possibly shared, copy the node
13353 and drop the flag. */
13354 t = copy_node (t);
13355 TREE_OVERFLOW (t) = 0;
13357 /* For constants that contain nested constants, drop the flag
13358 from those as well. */
13359 if (TREE_CODE (t) == COMPLEX_CST)
13361 if (TREE_OVERFLOW (TREE_REALPART (t)))
13362 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
13363 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
13364 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
13367 return t;
13370 /* Given a memory reference expression T, return its base address.
13371 The base address of a memory reference expression is the main
13372 object being referenced. For instance, the base address for
13373 'array[i].fld[j]' is 'array'. You can think of this as stripping
13374 away the offset part from a memory address.
13376 This function calls handled_component_p to strip away all the inner
13377 parts of the memory reference until it reaches the base object. */
13379 tree
13380 get_base_address (tree t)
13382 while (handled_component_p (t))
13383 t = TREE_OPERAND (t, 0);
13385 if ((TREE_CODE (t) == MEM_REF
13386 || TREE_CODE (t) == TARGET_MEM_REF)
13387 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
13388 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
13390 /* ??? Either the alias oracle or all callers need to properly deal
13391 with WITH_SIZE_EXPRs before we can look through those. */
13392 if (TREE_CODE (t) == WITH_SIZE_EXPR)
13393 return NULL_TREE;
13395 return t;
13398 /* Return a tree of sizetype representing the size, in bytes, of the element
13399 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13401 tree
13402 array_ref_element_size (tree exp)
13404 tree aligned_size = TREE_OPERAND (exp, 3);
13405 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
13406 location_t loc = EXPR_LOCATION (exp);
13408 /* If a size was specified in the ARRAY_REF, it's the size measured
13409 in alignment units of the element type. So multiply by that value. */
13410 if (aligned_size)
13412 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13413 sizetype from another type of the same width and signedness. */
13414 if (TREE_TYPE (aligned_size) != sizetype)
13415 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
13416 return size_binop_loc (loc, MULT_EXPR, aligned_size,
13417 size_int (TYPE_ALIGN_UNIT (elmt_type)));
13420 /* Otherwise, take the size from that of the element type. Substitute
13421 any PLACEHOLDER_EXPR that we have. */
13422 else
13423 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
13426 /* Return a tree representing the lower bound of the array mentioned in
13427 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13429 tree
13430 array_ref_low_bound (tree exp)
13432 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13434 /* If a lower bound is specified in EXP, use it. */
13435 if (TREE_OPERAND (exp, 2))
13436 return TREE_OPERAND (exp, 2);
13438 /* Otherwise, if there is a domain type and it has a lower bound, use it,
13439 substituting for a PLACEHOLDER_EXPR as needed. */
13440 if (domain_type && TYPE_MIN_VALUE (domain_type))
13441 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
13443 /* Otherwise, return a zero of the appropriate type. */
13444 tree idxtype = TREE_TYPE (TREE_OPERAND (exp, 1));
13445 return (idxtype == error_mark_node
13446 ? integer_zero_node : build_int_cst (idxtype, 0));
13449 /* Return a tree representing the upper bound of the array mentioned in
13450 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13452 tree
13453 array_ref_up_bound (tree exp)
13455 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13457 /* If there is a domain type and it has an upper bound, use it, substituting
13458 for a PLACEHOLDER_EXPR as needed. */
13459 if (domain_type && TYPE_MAX_VALUE (domain_type))
13460 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
13462 /* Otherwise fail. */
13463 return NULL_TREE;
13466 /* Returns true if REF is an array reference, component reference,
13467 or memory reference to an array at the end of a structure.
13468 If this is the case, the array may be allocated larger
13469 than its upper bound implies. */
13471 bool
13472 array_at_struct_end_p (tree ref)
13474 tree atype;
13476 if (TREE_CODE (ref) == ARRAY_REF
13477 || TREE_CODE (ref) == ARRAY_RANGE_REF)
13479 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
13480 ref = TREE_OPERAND (ref, 0);
13482 else if (TREE_CODE (ref) == COMPONENT_REF
13483 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
13484 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
13485 else if (TREE_CODE (ref) == MEM_REF)
13487 tree arg = TREE_OPERAND (ref, 0);
13488 if (TREE_CODE (arg) == ADDR_EXPR)
13489 arg = TREE_OPERAND (arg, 0);
13490 tree argtype = TREE_TYPE (arg);
13491 if (TREE_CODE (argtype) == RECORD_TYPE)
13493 if (tree fld = last_field (argtype))
13495 atype = TREE_TYPE (fld);
13496 if (TREE_CODE (atype) != ARRAY_TYPE)
13497 return false;
13498 if (VAR_P (arg) && DECL_SIZE (fld))
13499 return false;
13501 else
13502 return false;
13504 else
13505 return false;
13507 else
13508 return false;
13510 if (TREE_CODE (ref) == STRING_CST)
13511 return false;
13513 tree ref_to_array = ref;
13514 while (handled_component_p (ref))
13516 /* If the reference chain contains a component reference to a
13517 non-union type and there follows another field the reference
13518 is not at the end of a structure. */
13519 if (TREE_CODE (ref) == COMPONENT_REF)
13521 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
13523 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
13524 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
13525 nextf = DECL_CHAIN (nextf);
13526 if (nextf)
13527 return false;
13530 /* If we have a multi-dimensional array we do not consider
13531 a non-innermost dimension as flex array if the whole
13532 multi-dimensional array is at struct end.
13533 Same for an array of aggregates with a trailing array
13534 member. */
13535 else if (TREE_CODE (ref) == ARRAY_REF)
13536 return false;
13537 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
13539 /* If we view an underlying object as sth else then what we
13540 gathered up to now is what we have to rely on. */
13541 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
13542 break;
13543 else
13544 gcc_unreachable ();
13546 ref = TREE_OPERAND (ref, 0);
13549 /* The array now is at struct end. Treat flexible arrays as
13550 always subject to extend, even into just padding constrained by
13551 an underlying decl. */
13552 if (! TYPE_SIZE (atype)
13553 || ! TYPE_DOMAIN (atype)
13554 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13555 return true;
13557 if (TREE_CODE (ref) == MEM_REF
13558 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13559 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13561 /* If the reference is based on a declared entity, the size of the array
13562 is constrained by its given domain. (Do not trust commons PR/69368). */
13563 if (DECL_P (ref)
13564 && !(flag_unconstrained_commons
13565 && VAR_P (ref) && DECL_COMMON (ref))
13566 && DECL_SIZE_UNIT (ref)
13567 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13569 /* Check whether the array domain covers all of the available
13570 padding. */
13571 poly_int64 offset;
13572 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13573 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13574 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13575 return true;
13576 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13577 return true;
13579 /* If at least one extra element fits it is a flexarray. */
13580 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13581 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13582 + 2)
13583 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13584 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13585 return true;
13587 return false;
13590 return true;
13593 /* Return a tree representing the offset, in bytes, of the field referenced
13594 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13596 tree
13597 component_ref_field_offset (tree exp)
13599 tree aligned_offset = TREE_OPERAND (exp, 2);
13600 tree field = TREE_OPERAND (exp, 1);
13601 location_t loc = EXPR_LOCATION (exp);
13603 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13604 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13605 value. */
13606 if (aligned_offset)
13608 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13609 sizetype from another type of the same width and signedness. */
13610 if (TREE_TYPE (aligned_offset) != sizetype)
13611 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13612 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13613 size_int (DECL_OFFSET_ALIGN (field)
13614 / BITS_PER_UNIT));
13617 /* Otherwise, take the offset from that of the field. Substitute
13618 any PLACEHOLDER_EXPR that we have. */
13619 else
13620 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13623 /* Given the initializer INIT, return the initializer for the field
13624 DECL if it exists, otherwise null. Used to obtain the initializer
13625 for a flexible array member and determine its size. */
13627 static tree
13628 get_initializer_for (tree init, tree decl)
13630 STRIP_NOPS (init);
13632 tree fld, fld_init;
13633 unsigned HOST_WIDE_INT i;
13634 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), i, fld, fld_init)
13636 if (decl == fld)
13637 return fld_init;
13639 if (TREE_CODE (fld) == CONSTRUCTOR)
13641 fld_init = get_initializer_for (fld_init, decl);
13642 if (fld_init)
13643 return fld_init;
13647 return NULL_TREE;
13650 /* Determines the size of the member referenced by the COMPONENT_REF
13651 REF, using its initializer expression if necessary in order to
13652 determine the size of an initialized flexible array member.
13653 If non-null, set *ARK when REF refers to an interior zero-length
13654 array or a trailing one-element array.
13655 Returns the size as sizetype (which might be zero for an object
13656 with an uninitialized flexible array member) or null if the size
13657 cannot be determined. */
13659 tree
13660 component_ref_size (tree ref, special_array_member *sam /* = NULL */)
13662 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
13664 special_array_member arkbuf;
13665 if (!sam)
13666 sam = &arkbuf;
13667 *sam = special_array_member::none;
13669 /* The object/argument referenced by the COMPONENT_REF and its type. */
13670 tree arg = TREE_OPERAND (ref, 0);
13671 tree argtype = TREE_TYPE (arg);
13672 /* The referenced member. */
13673 tree member = TREE_OPERAND (ref, 1);
13675 tree memsize = DECL_SIZE_UNIT (member);
13676 if (memsize)
13678 tree memtype = TREE_TYPE (member);
13679 if (TREE_CODE (memtype) != ARRAY_TYPE)
13680 return memsize;
13682 bool trailing = array_at_struct_end_p (ref);
13683 bool zero_length = integer_zerop (memsize);
13684 if (!trailing && !zero_length)
13685 /* MEMBER is either an interior array or is an array with
13686 more than one element. */
13687 return memsize;
13689 if (zero_length)
13691 if (trailing)
13692 *sam = special_array_member::trail_0;
13693 else
13695 *sam = special_array_member::int_0;
13696 memsize = NULL_TREE;
13700 if (!zero_length)
13701 if (tree dom = TYPE_DOMAIN (memtype))
13702 if (tree min = TYPE_MIN_VALUE (dom))
13703 if (tree max = TYPE_MAX_VALUE (dom))
13704 if (TREE_CODE (min) == INTEGER_CST
13705 && TREE_CODE (max) == INTEGER_CST)
13707 offset_int minidx = wi::to_offset (min);
13708 offset_int maxidx = wi::to_offset (max);
13709 offset_int neltsm1 = maxidx - minidx;
13710 if (neltsm1 > 0)
13711 /* MEMBER is an array with more than one element. */
13712 return memsize;
13714 if (neltsm1 == 0)
13715 *sam = special_array_member::trail_1;
13718 /* For a refernce to a zero- or one-element array member of a union
13719 use the size of the union instead of the size of the member. */
13720 if (TREE_CODE (argtype) == UNION_TYPE)
13721 memsize = TYPE_SIZE_UNIT (argtype);
13724 /* MEMBER is either a bona fide flexible array member, or a zero-length
13725 array member, or an array of length one treated as such. */
13727 /* If the reference is to a declared object and the member a true
13728 flexible array, try to determine its size from its initializer. */
13729 poly_int64 baseoff = 0;
13730 tree base = get_addr_base_and_unit_offset (ref, &baseoff);
13731 if (!base || !VAR_P (base))
13733 if (*sam != special_array_member::int_0)
13734 return NULL_TREE;
13736 if (TREE_CODE (arg) != COMPONENT_REF)
13737 return NULL_TREE;
13739 base = arg;
13740 while (TREE_CODE (base) == COMPONENT_REF)
13741 base = TREE_OPERAND (base, 0);
13742 baseoff = tree_to_poly_int64 (byte_position (TREE_OPERAND (ref, 1)));
13745 /* BASE is the declared object of which MEMBER is either a member
13746 or that is cast to ARGTYPE (e.g., a char buffer used to store
13747 an ARGTYPE object). */
13748 tree basetype = TREE_TYPE (base);
13750 /* Determine the base type of the referenced object. If it's
13751 the same as ARGTYPE and MEMBER has a known size, return it. */
13752 tree bt = basetype;
13753 if (*sam != special_array_member::int_0)
13754 while (TREE_CODE (bt) == ARRAY_TYPE)
13755 bt = TREE_TYPE (bt);
13756 bool typematch = useless_type_conversion_p (argtype, bt);
13757 if (memsize && typematch)
13758 return memsize;
13760 memsize = NULL_TREE;
13762 if (typematch)
13763 /* MEMBER is a true flexible array member. Compute its size from
13764 the initializer of the BASE object if it has one. */
13765 if (tree init = DECL_P (base) ? DECL_INITIAL (base) : NULL_TREE)
13766 if (init != error_mark_node)
13768 init = get_initializer_for (init, member);
13769 if (init)
13771 memsize = TYPE_SIZE_UNIT (TREE_TYPE (init));
13772 if (tree refsize = TYPE_SIZE_UNIT (argtype))
13774 /* Use the larger of the initializer size and the tail
13775 padding in the enclosing struct. */
13776 poly_int64 rsz = tree_to_poly_int64 (refsize);
13777 rsz -= baseoff;
13778 if (known_lt (tree_to_poly_int64 (memsize), rsz))
13779 memsize = wide_int_to_tree (TREE_TYPE (memsize), rsz);
13782 baseoff = 0;
13786 if (!memsize)
13788 if (typematch)
13790 if (DECL_P (base)
13791 && DECL_EXTERNAL (base)
13792 && bt == basetype
13793 && *sam != special_array_member::int_0)
13794 /* The size of a flexible array member of an extern struct
13795 with no initializer cannot be determined (it's defined
13796 in another translation unit and can have an initializer
13797 with an arbitrary number of elements). */
13798 return NULL_TREE;
13800 /* Use the size of the base struct or, for interior zero-length
13801 arrays, the size of the enclosing type. */
13802 memsize = TYPE_SIZE_UNIT (bt);
13804 else if (DECL_P (base))
13805 /* Use the size of the BASE object (possibly an array of some
13806 other type such as char used to store the struct). */
13807 memsize = DECL_SIZE_UNIT (base);
13808 else
13809 return NULL_TREE;
13812 /* If the flexible array member has a known size use the greater
13813 of it and the tail padding in the enclosing struct.
13814 Otherwise, when the size of the flexible array member is unknown
13815 and the referenced object is not a struct, use the size of its
13816 type when known. This detects sizes of array buffers when cast
13817 to struct types with flexible array members. */
13818 if (memsize)
13820 poly_int64 memsz64 = memsize ? tree_to_poly_int64 (memsize) : 0;
13821 if (known_lt (baseoff, memsz64))
13823 memsz64 -= baseoff;
13824 return wide_int_to_tree (TREE_TYPE (memsize), memsz64);
13826 return size_zero_node;
13829 /* Return "don't know" for an external non-array object since its
13830 flexible array member can be initialized to have any number of
13831 elements. Otherwise, return zero because the flexible array
13832 member has no elements. */
13833 return (DECL_P (base)
13834 && DECL_EXTERNAL (base)
13835 && (!typematch
13836 || TREE_CODE (basetype) != ARRAY_TYPE)
13837 ? NULL_TREE : size_zero_node);
13840 /* Return the machine mode of T. For vectors, returns the mode of the
13841 inner type. The main use case is to feed the result to HONOR_NANS,
13842 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13844 machine_mode
13845 element_mode (const_tree t)
13847 if (!TYPE_P (t))
13848 t = TREE_TYPE (t);
13849 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13850 t = TREE_TYPE (t);
13851 return TYPE_MODE (t);
13854 /* Vector types need to re-check the target flags each time we report
13855 the machine mode. We need to do this because attribute target can
13856 change the result of vector_mode_supported_p and have_regs_of_mode
13857 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
13858 change on a per-function basis. */
13859 /* ??? Possibly a better solution is to run through all the types
13860 referenced by a function and re-compute the TYPE_MODE once, rather
13861 than make the TYPE_MODE macro call a function. */
13863 machine_mode
13864 vector_type_mode (const_tree t)
13866 machine_mode mode;
13868 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
13870 mode = t->type_common.mode;
13871 if (VECTOR_MODE_P (mode)
13872 && (!targetm.vector_mode_supported_p (mode)
13873 || !have_regs_of_mode[mode]))
13875 scalar_int_mode innermode;
13877 /* For integers, try mapping it to a same-sized scalar mode. */
13878 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
13880 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
13881 * GET_MODE_BITSIZE (innermode));
13882 scalar_int_mode mode;
13883 if (int_mode_for_size (size, 0).exists (&mode)
13884 && have_regs_of_mode[mode])
13885 return mode;
13888 return BLKmode;
13891 return mode;
13894 /* Return the size in bits of each element of vector type TYPE. */
13896 unsigned int
13897 vector_element_bits (const_tree type)
13899 gcc_checking_assert (VECTOR_TYPE_P (type));
13900 if (VECTOR_BOOLEAN_TYPE_P (type))
13901 return vector_element_size (tree_to_poly_uint64 (TYPE_SIZE (type)),
13902 TYPE_VECTOR_SUBPARTS (type));
13903 return tree_to_uhwi (TYPE_SIZE (TREE_TYPE (type)));
13906 /* Calculate the size in bits of each element of vector type TYPE
13907 and return the result as a tree of type bitsizetype. */
13909 tree
13910 vector_element_bits_tree (const_tree type)
13912 gcc_checking_assert (VECTOR_TYPE_P (type));
13913 if (VECTOR_BOOLEAN_TYPE_P (type))
13914 return bitsize_int (vector_element_bits (type));
13915 return TYPE_SIZE (TREE_TYPE (type));
13918 /* Verify that basic properties of T match TV and thus T can be a variant of
13919 TV. TV should be the more specified variant (i.e. the main variant). */
13921 static bool
13922 verify_type_variant (const_tree t, tree tv)
13924 /* Type variant can differ by:
13926 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13927 ENCODE_QUAL_ADDR_SPACE.
13928 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13929 in this case some values may not be set in the variant types
13930 (see TYPE_COMPLETE_P checks).
13931 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13932 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13933 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13934 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13935 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13936 this is necessary to make it possible to merge types form different TUs
13937 - arrays, pointers and references may have TREE_TYPE that is a variant
13938 of TREE_TYPE of their main variants.
13939 - aggregates may have new TYPE_FIELDS list that list variants of
13940 the main variant TYPE_FIELDS.
13941 - vector types may differ by TYPE_VECTOR_OPAQUE
13944 /* Convenience macro for matching individual fields. */
13945 #define verify_variant_match(flag) \
13946 do { \
13947 if (flag (tv) != flag (t)) \
13949 error ("type variant differs by %s", #flag); \
13950 debug_tree (tv); \
13951 return false; \
13953 } while (false)
13955 /* tree_base checks. */
13957 verify_variant_match (TREE_CODE);
13958 /* FIXME: Ada builds non-artificial variants of artificial types. */
13959 if (TYPE_ARTIFICIAL (tv) && 0)
13960 verify_variant_match (TYPE_ARTIFICIAL);
13961 if (POINTER_TYPE_P (tv))
13962 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13963 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13964 verify_variant_match (TYPE_UNSIGNED);
13965 verify_variant_match (TYPE_PACKED);
13966 if (TREE_CODE (t) == REFERENCE_TYPE)
13967 verify_variant_match (TYPE_REF_IS_RVALUE);
13968 if (AGGREGATE_TYPE_P (t))
13969 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13970 else
13971 verify_variant_match (TYPE_SATURATING);
13972 /* FIXME: This check trigger during libstdc++ build. */
13973 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13974 verify_variant_match (TYPE_FINAL_P);
13976 /* tree_type_common checks. */
13978 if (COMPLETE_TYPE_P (t))
13980 verify_variant_match (TYPE_MODE);
13981 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
13982 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
13983 verify_variant_match (TYPE_SIZE);
13984 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
13985 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
13986 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
13988 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
13989 TYPE_SIZE_UNIT (tv), 0));
13990 error ("type variant has different %<TYPE_SIZE_UNIT%>");
13991 debug_tree (tv);
13992 error ("type variant%'s %<TYPE_SIZE_UNIT%>");
13993 debug_tree (TYPE_SIZE_UNIT (tv));
13994 error ("type%'s %<TYPE_SIZE_UNIT%>");
13995 debug_tree (TYPE_SIZE_UNIT (t));
13996 return false;
13998 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
14000 verify_variant_match (TYPE_PRECISION);
14001 if (RECORD_OR_UNION_TYPE_P (t))
14002 verify_variant_match (TYPE_TRANSPARENT_AGGR);
14003 else if (TREE_CODE (t) == ARRAY_TYPE)
14004 verify_variant_match (TYPE_NONALIASED_COMPONENT);
14005 /* During LTO we merge variant lists from diferent translation units
14006 that may differ BY TYPE_CONTEXT that in turn may point
14007 to TRANSLATION_UNIT_DECL.
14008 Ada also builds variants of types with different TYPE_CONTEXT. */
14009 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
14010 verify_variant_match (TYPE_CONTEXT);
14011 if (TREE_CODE (t) == ARRAY_TYPE || TREE_CODE (t) == INTEGER_TYPE)
14012 verify_variant_match (TYPE_STRING_FLAG);
14013 if (TREE_CODE (t) == RECORD_TYPE || TREE_CODE (t) == UNION_TYPE)
14014 verify_variant_match (TYPE_CXX_ODR_P);
14015 if (TYPE_ALIAS_SET_KNOWN_P (t))
14017 error ("type variant with %<TYPE_ALIAS_SET_KNOWN_P%>");
14018 debug_tree (tv);
14019 return false;
14022 /* tree_type_non_common checks. */
14024 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14025 and dangle the pointer from time to time. */
14026 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
14027 && (in_lto_p || !TYPE_VFIELD (tv)
14028 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
14030 error ("type variant has different %<TYPE_VFIELD%>");
14031 debug_tree (tv);
14032 return false;
14034 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
14035 || TREE_CODE (t) == INTEGER_TYPE
14036 || TREE_CODE (t) == BOOLEAN_TYPE
14037 || TREE_CODE (t) == REAL_TYPE
14038 || TREE_CODE (t) == FIXED_POINT_TYPE)
14040 verify_variant_match (TYPE_MAX_VALUE);
14041 verify_variant_match (TYPE_MIN_VALUE);
14043 if (TREE_CODE (t) == METHOD_TYPE)
14044 verify_variant_match (TYPE_METHOD_BASETYPE);
14045 if (TREE_CODE (t) == OFFSET_TYPE)
14046 verify_variant_match (TYPE_OFFSET_BASETYPE);
14047 if (TREE_CODE (t) == ARRAY_TYPE)
14048 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
14049 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
14050 or even type's main variant. This is needed to make bootstrap pass
14051 and the bug seems new in GCC 5.
14052 C++ FE should be updated to make this consistent and we should check
14053 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
14054 is a match with main variant.
14056 Also disable the check for Java for now because of parser hack that builds
14057 first an dummy BINFO and then sometimes replace it by real BINFO in some
14058 of the copies. */
14059 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
14060 && TYPE_BINFO (t) != TYPE_BINFO (tv)
14061 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
14062 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
14063 at LTO time only. */
14064 && (in_lto_p && odr_type_p (t)))
14066 error ("type variant has different %<TYPE_BINFO%>");
14067 debug_tree (tv);
14068 error ("type variant%'s %<TYPE_BINFO%>");
14069 debug_tree (TYPE_BINFO (tv));
14070 error ("type%'s %<TYPE_BINFO%>");
14071 debug_tree (TYPE_BINFO (t));
14072 return false;
14075 /* Check various uses of TYPE_VALUES_RAW. */
14076 if (TREE_CODE (t) == ENUMERAL_TYPE
14077 && TYPE_VALUES (t))
14078 verify_variant_match (TYPE_VALUES);
14079 else if (TREE_CODE (t) == ARRAY_TYPE)
14080 verify_variant_match (TYPE_DOMAIN);
14081 /* Permit incomplete variants of complete type. While FEs may complete
14082 all variants, this does not happen for C++ templates in all cases. */
14083 else if (RECORD_OR_UNION_TYPE_P (t)
14084 && COMPLETE_TYPE_P (t)
14085 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
14087 tree f1, f2;
14089 /* Fortran builds qualified variants as new records with items of
14090 qualified type. Verify that they looks same. */
14091 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
14092 f1 && f2;
14093 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14094 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
14095 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
14096 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
14097 /* FIXME: gfc_nonrestricted_type builds all types as variants
14098 with exception of pointer types. It deeply copies the type
14099 which means that we may end up with a variant type
14100 referring non-variant pointer. We may change it to
14101 produce types as variants, too, like
14102 objc_get_protocol_qualified_type does. */
14103 && !POINTER_TYPE_P (TREE_TYPE (f1)))
14104 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
14105 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
14106 break;
14107 if (f1 || f2)
14109 error ("type variant has different %<TYPE_FIELDS%>");
14110 debug_tree (tv);
14111 error ("first mismatch is field");
14112 debug_tree (f1);
14113 error ("and field");
14114 debug_tree (f2);
14115 return false;
14118 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
14119 verify_variant_match (TYPE_ARG_TYPES);
14120 /* For C++ the qualified variant of array type is really an array type
14121 of qualified TREE_TYPE.
14122 objc builds variants of pointer where pointer to type is a variant, too
14123 in objc_get_protocol_qualified_type. */
14124 if (TREE_TYPE (t) != TREE_TYPE (tv)
14125 && ((TREE_CODE (t) != ARRAY_TYPE
14126 && !POINTER_TYPE_P (t))
14127 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
14128 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
14130 error ("type variant has different %<TREE_TYPE%>");
14131 debug_tree (tv);
14132 error ("type variant%'s %<TREE_TYPE%>");
14133 debug_tree (TREE_TYPE (tv));
14134 error ("type%'s %<TREE_TYPE%>");
14135 debug_tree (TREE_TYPE (t));
14136 return false;
14138 if (type_with_alias_set_p (t)
14139 && !gimple_canonical_types_compatible_p (t, tv, false))
14141 error ("type is not compatible with its variant");
14142 debug_tree (tv);
14143 error ("type variant%'s %<TREE_TYPE%>");
14144 debug_tree (TREE_TYPE (tv));
14145 error ("type%'s %<TREE_TYPE%>");
14146 debug_tree (TREE_TYPE (t));
14147 return false;
14149 return true;
14150 #undef verify_variant_match
14154 /* The TYPE_CANONICAL merging machinery. It should closely resemble
14155 the middle-end types_compatible_p function. It needs to avoid
14156 claiming types are different for types that should be treated
14157 the same with respect to TBAA. Canonical types are also used
14158 for IL consistency checks via the useless_type_conversion_p
14159 predicate which does not handle all type kinds itself but falls
14160 back to pointer-comparison of TYPE_CANONICAL for aggregates
14161 for example. */
14163 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
14164 type calculation because we need to allow inter-operability between signed
14165 and unsigned variants. */
14167 bool
14168 type_with_interoperable_signedness (const_tree type)
14170 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
14171 signed char and unsigned char. Similarly fortran FE builds
14172 C_SIZE_T as signed type, while C defines it unsigned. */
14174 return tree_code_for_canonical_type_merging (TREE_CODE (type))
14175 == INTEGER_TYPE
14176 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
14177 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
14180 /* Return true iff T1 and T2 are structurally identical for what
14181 TBAA is concerned.
14182 This function is used both by lto.c canonical type merging and by the
14183 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
14184 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
14185 only for LTO because only in these cases TYPE_CANONICAL equivalence
14186 correspond to one defined by gimple_canonical_types_compatible_p. */
14188 bool
14189 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
14190 bool trust_type_canonical)
14192 /* Type variants should be same as the main variant. When not doing sanity
14193 checking to verify this fact, go to main variants and save some work. */
14194 if (trust_type_canonical)
14196 t1 = TYPE_MAIN_VARIANT (t1);
14197 t2 = TYPE_MAIN_VARIANT (t2);
14200 /* Check first for the obvious case of pointer identity. */
14201 if (t1 == t2)
14202 return true;
14204 /* Check that we have two types to compare. */
14205 if (t1 == NULL_TREE || t2 == NULL_TREE)
14206 return false;
14208 /* We consider complete types always compatible with incomplete type.
14209 This does not make sense for canonical type calculation and thus we
14210 need to ensure that we are never called on it.
14212 FIXME: For more correctness the function probably should have three modes
14213 1) mode assuming that types are complete mathcing their structure
14214 2) mode allowing incomplete types but producing equivalence classes
14215 and thus ignoring all info from complete types
14216 3) mode allowing incomplete types to match complete but checking
14217 compatibility between complete types.
14219 1 and 2 can be used for canonical type calculation. 3 is the real
14220 definition of type compatibility that can be used i.e. for warnings during
14221 declaration merging. */
14223 gcc_assert (!trust_type_canonical
14224 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
14226 /* If the types have been previously registered and found equal
14227 they still are. */
14229 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
14230 && trust_type_canonical)
14232 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
14233 they are always NULL, but they are set to non-NULL for types
14234 constructed by build_pointer_type and variants. In this case the
14235 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
14236 all pointers are considered equal. Be sure to not return false
14237 negatives. */
14238 gcc_checking_assert (canonical_type_used_p (t1)
14239 && canonical_type_used_p (t2));
14240 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
14243 /* For types where we do ODR based TBAA the canonical type is always
14244 set correctly, so we know that types are different if their
14245 canonical types does not match. */
14246 if (trust_type_canonical
14247 && (odr_type_p (t1) && odr_based_tbaa_p (t1))
14248 != (odr_type_p (t2) && odr_based_tbaa_p (t2)))
14249 return false;
14251 /* Can't be the same type if the types don't have the same code. */
14252 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
14253 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
14254 return false;
14256 /* Qualifiers do not matter for canonical type comparison purposes. */
14258 /* Void types and nullptr types are always the same. */
14259 if (TREE_CODE (t1) == VOID_TYPE
14260 || TREE_CODE (t1) == NULLPTR_TYPE)
14261 return true;
14263 /* Can't be the same type if they have different mode. */
14264 if (TYPE_MODE (t1) != TYPE_MODE (t2))
14265 return false;
14267 /* Non-aggregate types can be handled cheaply. */
14268 if (INTEGRAL_TYPE_P (t1)
14269 || SCALAR_FLOAT_TYPE_P (t1)
14270 || FIXED_POINT_TYPE_P (t1)
14271 || TREE_CODE (t1) == VECTOR_TYPE
14272 || TREE_CODE (t1) == COMPLEX_TYPE
14273 || TREE_CODE (t1) == OFFSET_TYPE
14274 || POINTER_TYPE_P (t1))
14276 /* Can't be the same type if they have different recision. */
14277 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
14278 return false;
14280 /* In some cases the signed and unsigned types are required to be
14281 inter-operable. */
14282 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
14283 && !type_with_interoperable_signedness (t1))
14284 return false;
14286 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
14287 interoperable with "signed char". Unless all frontends are revisited
14288 to agree on these types, we must ignore the flag completely. */
14290 /* Fortran standard define C_PTR type that is compatible with every
14291 C pointer. For this reason we need to glob all pointers into one.
14292 Still pointers in different address spaces are not compatible. */
14293 if (POINTER_TYPE_P (t1))
14295 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
14296 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
14297 return false;
14300 /* Tail-recurse to components. */
14301 if (TREE_CODE (t1) == VECTOR_TYPE
14302 || TREE_CODE (t1) == COMPLEX_TYPE)
14303 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
14304 TREE_TYPE (t2),
14305 trust_type_canonical);
14307 return true;
14310 /* Do type-specific comparisons. */
14311 switch (TREE_CODE (t1))
14313 case ARRAY_TYPE:
14314 /* Array types are the same if the element types are the same and
14315 the number of elements are the same. */
14316 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14317 trust_type_canonical)
14318 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
14319 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
14320 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
14321 return false;
14322 else
14324 tree i1 = TYPE_DOMAIN (t1);
14325 tree i2 = TYPE_DOMAIN (t2);
14327 /* For an incomplete external array, the type domain can be
14328 NULL_TREE. Check this condition also. */
14329 if (i1 == NULL_TREE && i2 == NULL_TREE)
14330 return true;
14331 else if (i1 == NULL_TREE || i2 == NULL_TREE)
14332 return false;
14333 else
14335 tree min1 = TYPE_MIN_VALUE (i1);
14336 tree min2 = TYPE_MIN_VALUE (i2);
14337 tree max1 = TYPE_MAX_VALUE (i1);
14338 tree max2 = TYPE_MAX_VALUE (i2);
14340 /* The minimum/maximum values have to be the same. */
14341 if ((min1 == min2
14342 || (min1 && min2
14343 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
14344 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
14345 || operand_equal_p (min1, min2, 0))))
14346 && (max1 == max2
14347 || (max1 && max2
14348 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
14349 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
14350 || operand_equal_p (max1, max2, 0)))))
14351 return true;
14352 else
14353 return false;
14357 case METHOD_TYPE:
14358 case FUNCTION_TYPE:
14359 /* Function types are the same if the return type and arguments types
14360 are the same. */
14361 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14362 trust_type_canonical))
14363 return false;
14365 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
14366 return true;
14367 else
14369 tree parms1, parms2;
14371 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
14372 parms1 && parms2;
14373 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
14375 if (!gimple_canonical_types_compatible_p
14376 (TREE_VALUE (parms1), TREE_VALUE (parms2),
14377 trust_type_canonical))
14378 return false;
14381 if (parms1 || parms2)
14382 return false;
14384 return true;
14387 case RECORD_TYPE:
14388 case UNION_TYPE:
14389 case QUAL_UNION_TYPE:
14391 tree f1, f2;
14393 /* Don't try to compare variants of an incomplete type, before
14394 TYPE_FIELDS has been copied around. */
14395 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
14396 return true;
14399 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
14400 return false;
14402 /* For aggregate types, all the fields must be the same. */
14403 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
14404 f1 || f2;
14405 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14407 /* Skip non-fields and zero-sized fields. */
14408 while (f1 && (TREE_CODE (f1) != FIELD_DECL
14409 || (DECL_SIZE (f1)
14410 && integer_zerop (DECL_SIZE (f1)))))
14411 f1 = TREE_CHAIN (f1);
14412 while (f2 && (TREE_CODE (f2) != FIELD_DECL
14413 || (DECL_SIZE (f2)
14414 && integer_zerop (DECL_SIZE (f2)))))
14415 f2 = TREE_CHAIN (f2);
14416 if (!f1 || !f2)
14417 break;
14418 /* The fields must have the same name, offset and type. */
14419 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
14420 || !gimple_compare_field_offset (f1, f2)
14421 || !gimple_canonical_types_compatible_p
14422 (TREE_TYPE (f1), TREE_TYPE (f2),
14423 trust_type_canonical))
14424 return false;
14427 /* If one aggregate has more fields than the other, they
14428 are not the same. */
14429 if (f1 || f2)
14430 return false;
14432 return true;
14435 default:
14436 /* Consider all types with language specific trees in them mutually
14437 compatible. This is executed only from verify_type and false
14438 positives can be tolerated. */
14439 gcc_assert (!in_lto_p);
14440 return true;
14444 /* Verify type T. */
14446 void
14447 verify_type (const_tree t)
14449 bool error_found = false;
14450 tree mv = TYPE_MAIN_VARIANT (t);
14451 if (!mv)
14453 error ("main variant is not defined");
14454 error_found = true;
14456 else if (mv != TYPE_MAIN_VARIANT (mv))
14458 error ("%<TYPE_MAIN_VARIANT%> has different %<TYPE_MAIN_VARIANT%>");
14459 debug_tree (mv);
14460 error_found = true;
14462 else if (t != mv && !verify_type_variant (t, mv))
14463 error_found = true;
14465 tree ct = TYPE_CANONICAL (t);
14466 if (!ct)
14468 else if (TYPE_CANONICAL (t) != ct)
14470 error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
14471 debug_tree (ct);
14472 error_found = true;
14474 /* Method and function types cannot be used to address memory and thus
14475 TYPE_CANONICAL really matters only for determining useless conversions.
14477 FIXME: C++ FE produce declarations of builtin functions that are not
14478 compatible with main variants. */
14479 else if (TREE_CODE (t) == FUNCTION_TYPE)
14481 else if (t != ct
14482 /* FIXME: gimple_canonical_types_compatible_p cannot compare types
14483 with variably sized arrays because their sizes possibly
14484 gimplified to different variables. */
14485 && !variably_modified_type_p (ct, NULL)
14486 && !gimple_canonical_types_compatible_p (t, ct, false)
14487 && COMPLETE_TYPE_P (t))
14489 error ("%<TYPE_CANONICAL%> is not compatible");
14490 debug_tree (ct);
14491 error_found = true;
14494 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
14495 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
14497 error ("%<TYPE_MODE%> of %<TYPE_CANONICAL%> is not compatible");
14498 debug_tree (ct);
14499 error_found = true;
14501 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
14503 error ("%<TYPE_CANONICAL%> of main variant is not main variant");
14504 debug_tree (ct);
14505 debug_tree (TYPE_MAIN_VARIANT (ct));
14506 error_found = true;
14510 /* Check various uses of TYPE_MIN_VALUE_RAW. */
14511 if (RECORD_OR_UNION_TYPE_P (t))
14513 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14514 and danagle the pointer from time to time. */
14515 if (TYPE_VFIELD (t)
14516 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
14517 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
14519 error ("%<TYPE_VFIELD%> is not %<FIELD_DECL%> nor %<TREE_LIST%>");
14520 debug_tree (TYPE_VFIELD (t));
14521 error_found = true;
14524 else if (TREE_CODE (t) == POINTER_TYPE)
14526 if (TYPE_NEXT_PTR_TO (t)
14527 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
14529 error ("%<TYPE_NEXT_PTR_TO%> is not %<POINTER_TYPE%>");
14530 debug_tree (TYPE_NEXT_PTR_TO (t));
14531 error_found = true;
14534 else if (TREE_CODE (t) == REFERENCE_TYPE)
14536 if (TYPE_NEXT_REF_TO (t)
14537 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
14539 error ("%<TYPE_NEXT_REF_TO%> is not %<REFERENCE_TYPE%>");
14540 debug_tree (TYPE_NEXT_REF_TO (t));
14541 error_found = true;
14544 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14545 || TREE_CODE (t) == FIXED_POINT_TYPE)
14547 /* FIXME: The following check should pass:
14548 useless_type_conversion_p (const_cast <tree> (t),
14549 TREE_TYPE (TYPE_MIN_VALUE (t))
14550 but does not for C sizetypes in LTO. */
14553 /* Check various uses of TYPE_MAXVAL_RAW. */
14554 if (RECORD_OR_UNION_TYPE_P (t))
14556 if (!TYPE_BINFO (t))
14558 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
14560 error ("%<TYPE_BINFO%> is not %<TREE_BINFO%>");
14561 debug_tree (TYPE_BINFO (t));
14562 error_found = true;
14564 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
14566 error ("%<TYPE_BINFO%> type is not %<TYPE_MAIN_VARIANT%>");
14567 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
14568 error_found = true;
14571 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14573 if (TYPE_METHOD_BASETYPE (t)
14574 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
14575 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
14577 error ("%<TYPE_METHOD_BASETYPE%> is not record nor union");
14578 debug_tree (TYPE_METHOD_BASETYPE (t));
14579 error_found = true;
14582 else if (TREE_CODE (t) == OFFSET_TYPE)
14584 if (TYPE_OFFSET_BASETYPE (t)
14585 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
14586 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
14588 error ("%<TYPE_OFFSET_BASETYPE%> is not record nor union");
14589 debug_tree (TYPE_OFFSET_BASETYPE (t));
14590 error_found = true;
14593 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14594 || TREE_CODE (t) == FIXED_POINT_TYPE)
14596 /* FIXME: The following check should pass:
14597 useless_type_conversion_p (const_cast <tree> (t),
14598 TREE_TYPE (TYPE_MAX_VALUE (t))
14599 but does not for C sizetypes in LTO. */
14601 else if (TREE_CODE (t) == ARRAY_TYPE)
14603 if (TYPE_ARRAY_MAX_SIZE (t)
14604 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
14606 error ("%<TYPE_ARRAY_MAX_SIZE%> not %<INTEGER_CST%>");
14607 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
14608 error_found = true;
14611 else if (TYPE_MAX_VALUE_RAW (t))
14613 error ("%<TYPE_MAX_VALUE_RAW%> non-NULL");
14614 debug_tree (TYPE_MAX_VALUE_RAW (t));
14615 error_found = true;
14618 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
14620 error ("%<TYPE_LANG_SLOT_1 (binfo)%> field is non-NULL");
14621 debug_tree (TYPE_LANG_SLOT_1 (t));
14622 error_found = true;
14625 /* Check various uses of TYPE_VALUES_RAW. */
14626 if (TREE_CODE (t) == ENUMERAL_TYPE)
14627 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
14629 tree value = TREE_VALUE (l);
14630 tree name = TREE_PURPOSE (l);
14632 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
14633 CONST_DECL of ENUMERAL TYPE. */
14634 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
14636 error ("enum value is not %<CONST_DECL%> or %<INTEGER_CST%>");
14637 debug_tree (value);
14638 debug_tree (name);
14639 error_found = true;
14641 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
14642 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
14644 error ("enum value type is not %<INTEGER_TYPE%> nor convertible "
14645 "to the enum");
14646 debug_tree (value);
14647 debug_tree (name);
14648 error_found = true;
14650 if (TREE_CODE (name) != IDENTIFIER_NODE)
14652 error ("enum value name is not %<IDENTIFIER_NODE%>");
14653 debug_tree (value);
14654 debug_tree (name);
14655 error_found = true;
14658 else if (TREE_CODE (t) == ARRAY_TYPE)
14660 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
14662 error ("array %<TYPE_DOMAIN%> is not integer type");
14663 debug_tree (TYPE_DOMAIN (t));
14664 error_found = true;
14667 else if (RECORD_OR_UNION_TYPE_P (t))
14669 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
14671 error ("%<TYPE_FIELDS%> defined in incomplete type");
14672 error_found = true;
14674 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
14676 /* TODO: verify properties of decls. */
14677 if (TREE_CODE (fld) == FIELD_DECL)
14679 else if (TREE_CODE (fld) == TYPE_DECL)
14681 else if (TREE_CODE (fld) == CONST_DECL)
14683 else if (VAR_P (fld))
14685 else if (TREE_CODE (fld) == TEMPLATE_DECL)
14687 else if (TREE_CODE (fld) == USING_DECL)
14689 else if (TREE_CODE (fld) == FUNCTION_DECL)
14691 else
14693 error ("wrong tree in %<TYPE_FIELDS%> list");
14694 debug_tree (fld);
14695 error_found = true;
14699 else if (TREE_CODE (t) == INTEGER_TYPE
14700 || TREE_CODE (t) == BOOLEAN_TYPE
14701 || TREE_CODE (t) == OFFSET_TYPE
14702 || TREE_CODE (t) == REFERENCE_TYPE
14703 || TREE_CODE (t) == NULLPTR_TYPE
14704 || TREE_CODE (t) == POINTER_TYPE)
14706 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
14708 error ("%<TYPE_CACHED_VALUES_P%> is %i while %<TYPE_CACHED_VALUES%> "
14709 "is %p",
14710 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
14711 error_found = true;
14713 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
14715 error ("%<TYPE_CACHED_VALUES%> is not %<TREE_VEC%>");
14716 debug_tree (TYPE_CACHED_VALUES (t));
14717 error_found = true;
14719 /* Verify just enough of cache to ensure that no one copied it to new type.
14720 All copying should go by copy_node that should clear it. */
14721 else if (TYPE_CACHED_VALUES_P (t))
14723 int i;
14724 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
14725 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
14726 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
14728 error ("wrong %<TYPE_CACHED_VALUES%> entry");
14729 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
14730 error_found = true;
14731 break;
14735 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14736 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
14738 /* C++ FE uses TREE_PURPOSE to store initial values. */
14739 if (TREE_PURPOSE (l) && in_lto_p)
14741 error ("%<TREE_PURPOSE%> is non-NULL in %<TYPE_ARG_TYPES%> list");
14742 debug_tree (l);
14743 error_found = true;
14745 if (!TYPE_P (TREE_VALUE (l)))
14747 error ("wrong entry in %<TYPE_ARG_TYPES%> list");
14748 debug_tree (l);
14749 error_found = true;
14752 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
14754 error ("%<TYPE_VALUES_RAW%> field is non-NULL");
14755 debug_tree (TYPE_VALUES_RAW (t));
14756 error_found = true;
14758 if (TREE_CODE (t) != INTEGER_TYPE
14759 && TREE_CODE (t) != BOOLEAN_TYPE
14760 && TREE_CODE (t) != OFFSET_TYPE
14761 && TREE_CODE (t) != REFERENCE_TYPE
14762 && TREE_CODE (t) != NULLPTR_TYPE
14763 && TREE_CODE (t) != POINTER_TYPE
14764 && TYPE_CACHED_VALUES_P (t))
14766 error ("%<TYPE_CACHED_VALUES_P%> is set while it should not be");
14767 error_found = true;
14770 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
14771 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
14772 of a type. */
14773 if (TREE_CODE (t) == METHOD_TYPE
14774 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
14776 error ("%<TYPE_METHOD_BASETYPE%> is not main variant");
14777 error_found = true;
14780 if (error_found)
14782 debug_tree (const_cast <tree> (t));
14783 internal_error ("%qs failed", __func__);
14788 /* Return 1 if ARG interpreted as signed in its precision is known to be
14789 always positive or 2 if ARG is known to be always negative, or 3 if
14790 ARG may be positive or negative. */
14793 get_range_pos_neg (tree arg)
14795 if (arg == error_mark_node)
14796 return 3;
14798 int prec = TYPE_PRECISION (TREE_TYPE (arg));
14799 int cnt = 0;
14800 if (TREE_CODE (arg) == INTEGER_CST)
14802 wide_int w = wi::sext (wi::to_wide (arg), prec);
14803 if (wi::neg_p (w))
14804 return 2;
14805 else
14806 return 1;
14808 while (CONVERT_EXPR_P (arg)
14809 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14810 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14812 arg = TREE_OPERAND (arg, 0);
14813 /* Narrower value zero extended into wider type
14814 will always result in positive values. */
14815 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14816 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14817 return 1;
14818 prec = TYPE_PRECISION (TREE_TYPE (arg));
14819 if (++cnt > 30)
14820 return 3;
14823 if (TREE_CODE (arg) != SSA_NAME)
14824 return 3;
14825 wide_int arg_min, arg_max;
14826 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14828 gimple *g = SSA_NAME_DEF_STMT (arg);
14829 if (is_gimple_assign (g)
14830 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14832 tree t = gimple_assign_rhs1 (g);
14833 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14834 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14836 if (TYPE_UNSIGNED (TREE_TYPE (t))
14837 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14838 return 1;
14839 prec = TYPE_PRECISION (TREE_TYPE (t));
14840 arg = t;
14841 if (++cnt > 30)
14842 return 3;
14843 continue;
14846 return 3;
14848 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14850 /* For unsigned values, the "positive" range comes
14851 below the "negative" range. */
14852 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14853 return 1;
14854 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14855 return 2;
14857 else
14859 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14860 return 1;
14861 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14862 return 2;
14864 return 3;
14870 /* Return true if ARG is marked with the nonnull attribute in the
14871 current function signature. */
14873 bool
14874 nonnull_arg_p (const_tree arg)
14876 tree t, attrs, fntype;
14877 unsigned HOST_WIDE_INT arg_num;
14879 gcc_assert (TREE_CODE (arg) == PARM_DECL
14880 && (POINTER_TYPE_P (TREE_TYPE (arg))
14881 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
14883 /* The static chain decl is always non null. */
14884 if (arg == cfun->static_chain_decl)
14885 return true;
14887 /* THIS argument of method is always non-NULL. */
14888 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
14889 && arg == DECL_ARGUMENTS (cfun->decl)
14890 && flag_delete_null_pointer_checks)
14891 return true;
14893 /* Values passed by reference are always non-NULL. */
14894 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
14895 && flag_delete_null_pointer_checks)
14896 return true;
14898 fntype = TREE_TYPE (cfun->decl);
14899 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
14901 attrs = lookup_attribute ("nonnull", attrs);
14903 /* If "nonnull" wasn't specified, we know nothing about the argument. */
14904 if (attrs == NULL_TREE)
14905 return false;
14907 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
14908 if (TREE_VALUE (attrs) == NULL_TREE)
14909 return true;
14911 /* Get the position number for ARG in the function signature. */
14912 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
14914 t = DECL_CHAIN (t), arg_num++)
14916 if (t == arg)
14917 break;
14920 gcc_assert (t == arg);
14922 /* Now see if ARG_NUM is mentioned in the nonnull list. */
14923 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
14925 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
14926 return true;
14930 return false;
14933 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14934 information. */
14936 location_t
14937 set_block (location_t loc, tree block)
14939 location_t pure_loc = get_pure_location (loc);
14940 source_range src_range = get_range_from_loc (line_table, loc);
14941 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14944 location_t
14945 set_source_range (tree expr, location_t start, location_t finish)
14947 source_range src_range;
14948 src_range.m_start = start;
14949 src_range.m_finish = finish;
14950 return set_source_range (expr, src_range);
14953 location_t
14954 set_source_range (tree expr, source_range src_range)
14956 if (!EXPR_P (expr))
14957 return UNKNOWN_LOCATION;
14959 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14960 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14961 pure_loc,
14962 src_range,
14963 NULL);
14964 SET_EXPR_LOCATION (expr, adhoc);
14965 return adhoc;
14968 /* Return EXPR, potentially wrapped with a node expression LOC,
14969 if !CAN_HAVE_LOCATION_P (expr).
14971 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
14972 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
14974 Wrapper nodes can be identified using location_wrapper_p. */
14976 tree
14977 maybe_wrap_with_location (tree expr, location_t loc)
14979 if (expr == NULL)
14980 return NULL;
14981 if (loc == UNKNOWN_LOCATION)
14982 return expr;
14983 if (CAN_HAVE_LOCATION_P (expr))
14984 return expr;
14985 /* We should only be adding wrappers for constants and for decls,
14986 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
14987 gcc_assert (CONSTANT_CLASS_P (expr)
14988 || DECL_P (expr)
14989 || EXCEPTIONAL_CLASS_P (expr));
14991 /* For now, don't add wrappers to exceptional tree nodes, to minimize
14992 any impact of the wrapper nodes. */
14993 if (EXCEPTIONAL_CLASS_P (expr))
14994 return expr;
14996 /* If any auto_suppress_location_wrappers are active, don't create
14997 wrappers. */
14998 if (suppress_location_wrappers > 0)
14999 return expr;
15001 tree_code code
15002 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
15003 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
15004 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
15005 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
15006 /* Mark this node as being a wrapper. */
15007 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
15008 return wrapper;
15011 int suppress_location_wrappers;
15013 /* Return the name of combined function FN, for debugging purposes. */
15015 const char *
15016 combined_fn_name (combined_fn fn)
15018 if (builtin_fn_p (fn))
15020 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
15021 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
15023 else
15024 return internal_fn_name (as_internal_fn (fn));
15027 /* Return a bitmap with a bit set corresponding to each argument in
15028 a function call type FNTYPE declared with attribute nonnull,
15029 or null if none of the function's argument are nonnull. The caller
15030 must free the bitmap. */
15032 bitmap
15033 get_nonnull_args (const_tree fntype)
15035 if (fntype == NULL_TREE)
15036 return NULL;
15038 bitmap argmap = NULL;
15039 if (TREE_CODE (fntype) == METHOD_TYPE)
15041 /* The this pointer in C++ non-static member functions is
15042 implicitly nonnull whether or not it's declared as such. */
15043 argmap = BITMAP_ALLOC (NULL);
15044 bitmap_set_bit (argmap, 0);
15047 tree attrs = TYPE_ATTRIBUTES (fntype);
15048 if (!attrs)
15049 return argmap;
15051 /* A function declaration can specify multiple attribute nonnull,
15052 each with zero or more arguments. The loop below creates a bitmap
15053 representing a union of all the arguments. An empty (but non-null)
15054 bitmap means that all arguments have been declaraed nonnull. */
15055 for ( ; attrs; attrs = TREE_CHAIN (attrs))
15057 attrs = lookup_attribute ("nonnull", attrs);
15058 if (!attrs)
15059 break;
15061 if (!argmap)
15062 argmap = BITMAP_ALLOC (NULL);
15064 if (!TREE_VALUE (attrs))
15066 /* Clear the bitmap in case a previous attribute nonnull
15067 set it and this one overrides it for all arguments. */
15068 bitmap_clear (argmap);
15069 return argmap;
15072 /* Iterate over the indices of the format arguments declared nonnull
15073 and set a bit for each. */
15074 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
15076 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
15077 bitmap_set_bit (argmap, val);
15081 return argmap;
15084 /* Returns true if TYPE is a type where it and all of its subobjects
15085 (recursively) are of structure, union, or array type. */
15087 static bool
15088 default_is_empty_type (tree type)
15090 if (RECORD_OR_UNION_TYPE_P (type))
15092 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
15093 if (TREE_CODE (field) == FIELD_DECL
15094 && !DECL_PADDING_P (field)
15095 && !default_is_empty_type (TREE_TYPE (field)))
15096 return false;
15097 return true;
15099 else if (TREE_CODE (type) == ARRAY_TYPE)
15100 return (integer_minus_onep (array_type_nelts (type))
15101 || TYPE_DOMAIN (type) == NULL_TREE
15102 || default_is_empty_type (TREE_TYPE (type)));
15103 return false;
15106 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
15107 that shouldn't be passed via stack. */
15109 bool
15110 default_is_empty_record (const_tree type)
15112 if (!abi_version_at_least (12))
15113 return false;
15115 if (type == error_mark_node)
15116 return false;
15118 if (TREE_ADDRESSABLE (type))
15119 return false;
15121 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
15124 /* Determine whether TYPE is a structure with a flexible array member,
15125 or a union containing such a structure (possibly recursively). */
15127 bool
15128 flexible_array_type_p (const_tree type)
15130 tree x, last;
15131 switch (TREE_CODE (type))
15133 case RECORD_TYPE:
15134 last = NULL_TREE;
15135 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15136 if (TREE_CODE (x) == FIELD_DECL)
15137 last = x;
15138 if (last == NULL_TREE)
15139 return false;
15140 if (TREE_CODE (TREE_TYPE (last)) == ARRAY_TYPE
15141 && TYPE_SIZE (TREE_TYPE (last)) == NULL_TREE
15142 && TYPE_DOMAIN (TREE_TYPE (last)) != NULL_TREE
15143 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (last))) == NULL_TREE)
15144 return true;
15145 return false;
15146 case UNION_TYPE:
15147 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15149 if (TREE_CODE (x) == FIELD_DECL
15150 && flexible_array_type_p (TREE_TYPE (x)))
15151 return true;
15153 return false;
15154 default:
15155 return false;
15159 /* Like int_size_in_bytes, but handle empty records specially. */
15161 HOST_WIDE_INT
15162 arg_int_size_in_bytes (const_tree type)
15164 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
15167 /* Like size_in_bytes, but handle empty records specially. */
15169 tree
15170 arg_size_in_bytes (const_tree type)
15172 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
15175 /* Return true if an expression with CODE has to have the same result type as
15176 its first operand. */
15178 bool
15179 expr_type_first_operand_type_p (tree_code code)
15181 switch (code)
15183 case NEGATE_EXPR:
15184 case ABS_EXPR:
15185 case BIT_NOT_EXPR:
15186 case PAREN_EXPR:
15187 case CONJ_EXPR:
15189 case PLUS_EXPR:
15190 case MINUS_EXPR:
15191 case MULT_EXPR:
15192 case TRUNC_DIV_EXPR:
15193 case CEIL_DIV_EXPR:
15194 case FLOOR_DIV_EXPR:
15195 case ROUND_DIV_EXPR:
15196 case TRUNC_MOD_EXPR:
15197 case CEIL_MOD_EXPR:
15198 case FLOOR_MOD_EXPR:
15199 case ROUND_MOD_EXPR:
15200 case RDIV_EXPR:
15201 case EXACT_DIV_EXPR:
15202 case MIN_EXPR:
15203 case MAX_EXPR:
15204 case BIT_IOR_EXPR:
15205 case BIT_XOR_EXPR:
15206 case BIT_AND_EXPR:
15208 case LSHIFT_EXPR:
15209 case RSHIFT_EXPR:
15210 case LROTATE_EXPR:
15211 case RROTATE_EXPR:
15212 return true;
15214 default:
15215 return false;
15219 /* Return a typenode for the "standard" C type with a given name. */
15220 tree
15221 get_typenode_from_name (const char *name)
15223 if (name == NULL || *name == '\0')
15224 return NULL_TREE;
15226 if (strcmp (name, "char") == 0)
15227 return char_type_node;
15228 if (strcmp (name, "unsigned char") == 0)
15229 return unsigned_char_type_node;
15230 if (strcmp (name, "signed char") == 0)
15231 return signed_char_type_node;
15233 if (strcmp (name, "short int") == 0)
15234 return short_integer_type_node;
15235 if (strcmp (name, "short unsigned int") == 0)
15236 return short_unsigned_type_node;
15238 if (strcmp (name, "int") == 0)
15239 return integer_type_node;
15240 if (strcmp (name, "unsigned int") == 0)
15241 return unsigned_type_node;
15243 if (strcmp (name, "long int") == 0)
15244 return long_integer_type_node;
15245 if (strcmp (name, "long unsigned int") == 0)
15246 return long_unsigned_type_node;
15248 if (strcmp (name, "long long int") == 0)
15249 return long_long_integer_type_node;
15250 if (strcmp (name, "long long unsigned int") == 0)
15251 return long_long_unsigned_type_node;
15253 gcc_unreachable ();
15256 /* List of pointer types used to declare builtins before we have seen their
15257 real declaration.
15259 Keep the size up to date in tree.h ! */
15260 const builtin_structptr_type builtin_structptr_types[6] =
15262 { fileptr_type_node, ptr_type_node, "FILE" },
15263 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
15264 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
15265 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
15266 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
15267 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
15270 /* Return the maximum object size. */
15272 tree
15273 max_object_size (void)
15275 /* To do: Make this a configurable parameter. */
15276 return TYPE_MAX_VALUE (ptrdiff_type_node);
15279 /* A wrapper around TARGET_VERIFY_TYPE_CONTEXT that makes the silent_p
15280 parameter default to false and that weeds out error_mark_node. */
15282 bool
15283 verify_type_context (location_t loc, type_context_kind context,
15284 const_tree type, bool silent_p)
15286 if (type == error_mark_node)
15287 return true;
15289 gcc_assert (TYPE_P (type));
15290 return (!targetm.verify_type_context
15291 || targetm.verify_type_context (loc, context, type, silent_p));
15294 #if CHECKING_P
15296 namespace selftest {
15298 /* Selftests for tree. */
15300 /* Verify that integer constants are sane. */
15302 static void
15303 test_integer_constants ()
15305 ASSERT_TRUE (integer_type_node != NULL);
15306 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
15308 tree type = integer_type_node;
15310 tree zero = build_zero_cst (type);
15311 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
15312 ASSERT_EQ (type, TREE_TYPE (zero));
15314 tree one = build_int_cst (type, 1);
15315 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
15316 ASSERT_EQ (type, TREE_TYPE (zero));
15319 /* Verify identifiers. */
15321 static void
15322 test_identifiers ()
15324 tree identifier = get_identifier ("foo");
15325 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
15326 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
15329 /* Verify LABEL_DECL. */
15331 static void
15332 test_labels ()
15334 tree identifier = get_identifier ("err");
15335 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
15336 identifier, void_type_node);
15337 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
15338 ASSERT_FALSE (FORCED_LABEL (label_decl));
15341 /* Return a new VECTOR_CST node whose type is TYPE and whose values
15342 are given by VALS. */
15344 static tree
15345 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
15347 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
15348 tree_vector_builder builder (type, vals.length (), 1);
15349 builder.splice (vals);
15350 return builder.build ();
15353 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
15355 static void
15356 check_vector_cst (vec<tree> expected, tree actual)
15358 ASSERT_KNOWN_EQ (expected.length (),
15359 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
15360 for (unsigned int i = 0; i < expected.length (); ++i)
15361 ASSERT_EQ (wi::to_wide (expected[i]),
15362 wi::to_wide (vector_cst_elt (actual, i)));
15365 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
15366 and that its elements match EXPECTED. */
15368 static void
15369 check_vector_cst_duplicate (vec<tree> expected, tree actual,
15370 unsigned int npatterns)
15372 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15373 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
15374 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
15375 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
15376 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15377 check_vector_cst (expected, actual);
15380 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
15381 and NPATTERNS background elements, and that its elements match
15382 EXPECTED. */
15384 static void
15385 check_vector_cst_fill (vec<tree> expected, tree actual,
15386 unsigned int npatterns)
15388 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15389 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
15390 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
15391 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15392 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15393 check_vector_cst (expected, actual);
15396 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
15397 and that its elements match EXPECTED. */
15399 static void
15400 check_vector_cst_stepped (vec<tree> expected, tree actual,
15401 unsigned int npatterns)
15403 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15404 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
15405 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
15406 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15407 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
15408 check_vector_cst (expected, actual);
15411 /* Test the creation of VECTOR_CSTs. */
15413 static void
15414 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
15416 auto_vec<tree, 8> elements (8);
15417 elements.quick_grow (8);
15418 tree element_type = build_nonstandard_integer_type (16, true);
15419 tree vector_type = build_vector_type (element_type, 8);
15421 /* Test a simple linear series with a base of 0 and a step of 1:
15422 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
15423 for (unsigned int i = 0; i < 8; ++i)
15424 elements[i] = build_int_cst (element_type, i);
15425 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
15426 check_vector_cst_stepped (elements, vector, 1);
15428 /* Try the same with the first element replaced by 100:
15429 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
15430 elements[0] = build_int_cst (element_type, 100);
15431 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15432 check_vector_cst_stepped (elements, vector, 1);
15434 /* Try a series that wraps around.
15435 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
15436 for (unsigned int i = 1; i < 8; ++i)
15437 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
15438 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15439 check_vector_cst_stepped (elements, vector, 1);
15441 /* Try a downward series:
15442 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
15443 for (unsigned int i = 1; i < 8; ++i)
15444 elements[i] = build_int_cst (element_type, 80 - i);
15445 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15446 check_vector_cst_stepped (elements, vector, 1);
15448 /* Try two interleaved series with different bases and steps:
15449 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
15450 elements[1] = build_int_cst (element_type, 53);
15451 for (unsigned int i = 2; i < 8; i += 2)
15453 elements[i] = build_int_cst (element_type, 70 - i * 2);
15454 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
15456 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15457 check_vector_cst_stepped (elements, vector, 2);
15459 /* Try a duplicated value:
15460 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
15461 for (unsigned int i = 1; i < 8; ++i)
15462 elements[i] = elements[0];
15463 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15464 check_vector_cst_duplicate (elements, vector, 1);
15466 /* Try an interleaved duplicated value:
15467 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
15468 elements[1] = build_int_cst (element_type, 55);
15469 for (unsigned int i = 2; i < 8; ++i)
15470 elements[i] = elements[i - 2];
15471 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15472 check_vector_cst_duplicate (elements, vector, 2);
15474 /* Try a duplicated value with 2 exceptions
15475 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
15476 elements[0] = build_int_cst (element_type, 41);
15477 elements[1] = build_int_cst (element_type, 97);
15478 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15479 check_vector_cst_fill (elements, vector, 2);
15481 /* Try with and without a step
15482 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
15483 for (unsigned int i = 3; i < 8; i += 2)
15484 elements[i] = build_int_cst (element_type, i * 7);
15485 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15486 check_vector_cst_stepped (elements, vector, 2);
15488 /* Try a fully-general constant:
15489 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
15490 elements[5] = build_int_cst (element_type, 9990);
15491 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15492 check_vector_cst_fill (elements, vector, 4);
15495 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
15496 Helper function for test_location_wrappers, to deal with STRIP_NOPS
15497 modifying its argument in-place. */
15499 static void
15500 check_strip_nops (tree node, tree expected)
15502 STRIP_NOPS (node);
15503 ASSERT_EQ (expected, node);
15506 /* Verify location wrappers. */
15508 static void
15509 test_location_wrappers ()
15511 location_t loc = BUILTINS_LOCATION;
15513 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
15515 /* Wrapping a constant. */
15516 tree int_cst = build_int_cst (integer_type_node, 42);
15517 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
15518 ASSERT_FALSE (location_wrapper_p (int_cst));
15520 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
15521 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
15522 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
15523 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
15525 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
15526 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
15528 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
15529 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
15530 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
15531 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
15533 /* Wrapping a STRING_CST. */
15534 tree string_cst = build_string (4, "foo");
15535 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
15536 ASSERT_FALSE (location_wrapper_p (string_cst));
15538 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
15539 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
15540 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
15541 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
15542 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
15545 /* Wrapping a variable. */
15546 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
15547 get_identifier ("some_int_var"),
15548 integer_type_node);
15549 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
15550 ASSERT_FALSE (location_wrapper_p (int_var));
15552 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
15553 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
15554 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
15555 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
15557 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
15558 wrapper. */
15559 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
15560 ASSERT_FALSE (location_wrapper_p (r_cast));
15561 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
15563 /* Verify that STRIP_NOPS removes wrappers. */
15564 check_strip_nops (wrapped_int_cst, int_cst);
15565 check_strip_nops (wrapped_string_cst, string_cst);
15566 check_strip_nops (wrapped_int_var, int_var);
15569 /* Test various tree predicates. Verify that location wrappers don't
15570 affect the results. */
15572 static void
15573 test_predicates ()
15575 /* Build various constants and wrappers around them. */
15577 location_t loc = BUILTINS_LOCATION;
15579 tree i_0 = build_int_cst (integer_type_node, 0);
15580 tree wr_i_0 = maybe_wrap_with_location (i_0, loc);
15582 tree i_1 = build_int_cst (integer_type_node, 1);
15583 tree wr_i_1 = maybe_wrap_with_location (i_1, loc);
15585 tree i_m1 = build_int_cst (integer_type_node, -1);
15586 tree wr_i_m1 = maybe_wrap_with_location (i_m1, loc);
15588 tree f_0 = build_real_from_int_cst (float_type_node, i_0);
15589 tree wr_f_0 = maybe_wrap_with_location (f_0, loc);
15590 tree f_1 = build_real_from_int_cst (float_type_node, i_1);
15591 tree wr_f_1 = maybe_wrap_with_location (f_1, loc);
15592 tree f_m1 = build_real_from_int_cst (float_type_node, i_m1);
15593 tree wr_f_m1 = maybe_wrap_with_location (f_m1, loc);
15595 tree c_i_0 = build_complex (NULL_TREE, i_0, i_0);
15596 tree c_i_1 = build_complex (NULL_TREE, i_1, i_0);
15597 tree c_i_m1 = build_complex (NULL_TREE, i_m1, i_0);
15599 tree c_f_0 = build_complex (NULL_TREE, f_0, f_0);
15600 tree c_f_1 = build_complex (NULL_TREE, f_1, f_0);
15601 tree c_f_m1 = build_complex (NULL_TREE, f_m1, f_0);
15603 /* TODO: vector constants. */
15605 /* Test integer_onep. */
15606 ASSERT_FALSE (integer_onep (i_0));
15607 ASSERT_FALSE (integer_onep (wr_i_0));
15608 ASSERT_TRUE (integer_onep (i_1));
15609 ASSERT_TRUE (integer_onep (wr_i_1));
15610 ASSERT_FALSE (integer_onep (i_m1));
15611 ASSERT_FALSE (integer_onep (wr_i_m1));
15612 ASSERT_FALSE (integer_onep (f_0));
15613 ASSERT_FALSE (integer_onep (wr_f_0));
15614 ASSERT_FALSE (integer_onep (f_1));
15615 ASSERT_FALSE (integer_onep (wr_f_1));
15616 ASSERT_FALSE (integer_onep (f_m1));
15617 ASSERT_FALSE (integer_onep (wr_f_m1));
15618 ASSERT_FALSE (integer_onep (c_i_0));
15619 ASSERT_TRUE (integer_onep (c_i_1));
15620 ASSERT_FALSE (integer_onep (c_i_m1));
15621 ASSERT_FALSE (integer_onep (c_f_0));
15622 ASSERT_FALSE (integer_onep (c_f_1));
15623 ASSERT_FALSE (integer_onep (c_f_m1));
15625 /* Test integer_zerop. */
15626 ASSERT_TRUE (integer_zerop (i_0));
15627 ASSERT_TRUE (integer_zerop (wr_i_0));
15628 ASSERT_FALSE (integer_zerop (i_1));
15629 ASSERT_FALSE (integer_zerop (wr_i_1));
15630 ASSERT_FALSE (integer_zerop (i_m1));
15631 ASSERT_FALSE (integer_zerop (wr_i_m1));
15632 ASSERT_FALSE (integer_zerop (f_0));
15633 ASSERT_FALSE (integer_zerop (wr_f_0));
15634 ASSERT_FALSE (integer_zerop (f_1));
15635 ASSERT_FALSE (integer_zerop (wr_f_1));
15636 ASSERT_FALSE (integer_zerop (f_m1));
15637 ASSERT_FALSE (integer_zerop (wr_f_m1));
15638 ASSERT_TRUE (integer_zerop (c_i_0));
15639 ASSERT_FALSE (integer_zerop (c_i_1));
15640 ASSERT_FALSE (integer_zerop (c_i_m1));
15641 ASSERT_FALSE (integer_zerop (c_f_0));
15642 ASSERT_FALSE (integer_zerop (c_f_1));
15643 ASSERT_FALSE (integer_zerop (c_f_m1));
15645 /* Test integer_all_onesp. */
15646 ASSERT_FALSE (integer_all_onesp (i_0));
15647 ASSERT_FALSE (integer_all_onesp (wr_i_0));
15648 ASSERT_FALSE (integer_all_onesp (i_1));
15649 ASSERT_FALSE (integer_all_onesp (wr_i_1));
15650 ASSERT_TRUE (integer_all_onesp (i_m1));
15651 ASSERT_TRUE (integer_all_onesp (wr_i_m1));
15652 ASSERT_FALSE (integer_all_onesp (f_0));
15653 ASSERT_FALSE (integer_all_onesp (wr_f_0));
15654 ASSERT_FALSE (integer_all_onesp (f_1));
15655 ASSERT_FALSE (integer_all_onesp (wr_f_1));
15656 ASSERT_FALSE (integer_all_onesp (f_m1));
15657 ASSERT_FALSE (integer_all_onesp (wr_f_m1));
15658 ASSERT_FALSE (integer_all_onesp (c_i_0));
15659 ASSERT_FALSE (integer_all_onesp (c_i_1));
15660 ASSERT_FALSE (integer_all_onesp (c_i_m1));
15661 ASSERT_FALSE (integer_all_onesp (c_f_0));
15662 ASSERT_FALSE (integer_all_onesp (c_f_1));
15663 ASSERT_FALSE (integer_all_onesp (c_f_m1));
15665 /* Test integer_minus_onep. */
15666 ASSERT_FALSE (integer_minus_onep (i_0));
15667 ASSERT_FALSE (integer_minus_onep (wr_i_0));
15668 ASSERT_FALSE (integer_minus_onep (i_1));
15669 ASSERT_FALSE (integer_minus_onep (wr_i_1));
15670 ASSERT_TRUE (integer_minus_onep (i_m1));
15671 ASSERT_TRUE (integer_minus_onep (wr_i_m1));
15672 ASSERT_FALSE (integer_minus_onep (f_0));
15673 ASSERT_FALSE (integer_minus_onep (wr_f_0));
15674 ASSERT_FALSE (integer_minus_onep (f_1));
15675 ASSERT_FALSE (integer_minus_onep (wr_f_1));
15676 ASSERT_FALSE (integer_minus_onep (f_m1));
15677 ASSERT_FALSE (integer_minus_onep (wr_f_m1));
15678 ASSERT_FALSE (integer_minus_onep (c_i_0));
15679 ASSERT_FALSE (integer_minus_onep (c_i_1));
15680 ASSERT_TRUE (integer_minus_onep (c_i_m1));
15681 ASSERT_FALSE (integer_minus_onep (c_f_0));
15682 ASSERT_FALSE (integer_minus_onep (c_f_1));
15683 ASSERT_FALSE (integer_minus_onep (c_f_m1));
15685 /* Test integer_each_onep. */
15686 ASSERT_FALSE (integer_each_onep (i_0));
15687 ASSERT_FALSE (integer_each_onep (wr_i_0));
15688 ASSERT_TRUE (integer_each_onep (i_1));
15689 ASSERT_TRUE (integer_each_onep (wr_i_1));
15690 ASSERT_FALSE (integer_each_onep (i_m1));
15691 ASSERT_FALSE (integer_each_onep (wr_i_m1));
15692 ASSERT_FALSE (integer_each_onep (f_0));
15693 ASSERT_FALSE (integer_each_onep (wr_f_0));
15694 ASSERT_FALSE (integer_each_onep (f_1));
15695 ASSERT_FALSE (integer_each_onep (wr_f_1));
15696 ASSERT_FALSE (integer_each_onep (f_m1));
15697 ASSERT_FALSE (integer_each_onep (wr_f_m1));
15698 ASSERT_FALSE (integer_each_onep (c_i_0));
15699 ASSERT_FALSE (integer_each_onep (c_i_1));
15700 ASSERT_FALSE (integer_each_onep (c_i_m1));
15701 ASSERT_FALSE (integer_each_onep (c_f_0));
15702 ASSERT_FALSE (integer_each_onep (c_f_1));
15703 ASSERT_FALSE (integer_each_onep (c_f_m1));
15705 /* Test integer_truep. */
15706 ASSERT_FALSE (integer_truep (i_0));
15707 ASSERT_FALSE (integer_truep (wr_i_0));
15708 ASSERT_TRUE (integer_truep (i_1));
15709 ASSERT_TRUE (integer_truep (wr_i_1));
15710 ASSERT_FALSE (integer_truep (i_m1));
15711 ASSERT_FALSE (integer_truep (wr_i_m1));
15712 ASSERT_FALSE (integer_truep (f_0));
15713 ASSERT_FALSE (integer_truep (wr_f_0));
15714 ASSERT_FALSE (integer_truep (f_1));
15715 ASSERT_FALSE (integer_truep (wr_f_1));
15716 ASSERT_FALSE (integer_truep (f_m1));
15717 ASSERT_FALSE (integer_truep (wr_f_m1));
15718 ASSERT_FALSE (integer_truep (c_i_0));
15719 ASSERT_TRUE (integer_truep (c_i_1));
15720 ASSERT_FALSE (integer_truep (c_i_m1));
15721 ASSERT_FALSE (integer_truep (c_f_0));
15722 ASSERT_FALSE (integer_truep (c_f_1));
15723 ASSERT_FALSE (integer_truep (c_f_m1));
15725 /* Test integer_nonzerop. */
15726 ASSERT_FALSE (integer_nonzerop (i_0));
15727 ASSERT_FALSE (integer_nonzerop (wr_i_0));
15728 ASSERT_TRUE (integer_nonzerop (i_1));
15729 ASSERT_TRUE (integer_nonzerop (wr_i_1));
15730 ASSERT_TRUE (integer_nonzerop (i_m1));
15731 ASSERT_TRUE (integer_nonzerop (wr_i_m1));
15732 ASSERT_FALSE (integer_nonzerop (f_0));
15733 ASSERT_FALSE (integer_nonzerop (wr_f_0));
15734 ASSERT_FALSE (integer_nonzerop (f_1));
15735 ASSERT_FALSE (integer_nonzerop (wr_f_1));
15736 ASSERT_FALSE (integer_nonzerop (f_m1));
15737 ASSERT_FALSE (integer_nonzerop (wr_f_m1));
15738 ASSERT_FALSE (integer_nonzerop (c_i_0));
15739 ASSERT_TRUE (integer_nonzerop (c_i_1));
15740 ASSERT_TRUE (integer_nonzerop (c_i_m1));
15741 ASSERT_FALSE (integer_nonzerop (c_f_0));
15742 ASSERT_FALSE (integer_nonzerop (c_f_1));
15743 ASSERT_FALSE (integer_nonzerop (c_f_m1));
15745 /* Test real_zerop. */
15746 ASSERT_FALSE (real_zerop (i_0));
15747 ASSERT_FALSE (real_zerop (wr_i_0));
15748 ASSERT_FALSE (real_zerop (i_1));
15749 ASSERT_FALSE (real_zerop (wr_i_1));
15750 ASSERT_FALSE (real_zerop (i_m1));
15751 ASSERT_FALSE (real_zerop (wr_i_m1));
15752 ASSERT_TRUE (real_zerop (f_0));
15753 ASSERT_TRUE (real_zerop (wr_f_0));
15754 ASSERT_FALSE (real_zerop (f_1));
15755 ASSERT_FALSE (real_zerop (wr_f_1));
15756 ASSERT_FALSE (real_zerop (f_m1));
15757 ASSERT_FALSE (real_zerop (wr_f_m1));
15758 ASSERT_FALSE (real_zerop (c_i_0));
15759 ASSERT_FALSE (real_zerop (c_i_1));
15760 ASSERT_FALSE (real_zerop (c_i_m1));
15761 ASSERT_TRUE (real_zerop (c_f_0));
15762 ASSERT_FALSE (real_zerop (c_f_1));
15763 ASSERT_FALSE (real_zerop (c_f_m1));
15765 /* Test real_onep. */
15766 ASSERT_FALSE (real_onep (i_0));
15767 ASSERT_FALSE (real_onep (wr_i_0));
15768 ASSERT_FALSE (real_onep (i_1));
15769 ASSERT_FALSE (real_onep (wr_i_1));
15770 ASSERT_FALSE (real_onep (i_m1));
15771 ASSERT_FALSE (real_onep (wr_i_m1));
15772 ASSERT_FALSE (real_onep (f_0));
15773 ASSERT_FALSE (real_onep (wr_f_0));
15774 ASSERT_TRUE (real_onep (f_1));
15775 ASSERT_TRUE (real_onep (wr_f_1));
15776 ASSERT_FALSE (real_onep (f_m1));
15777 ASSERT_FALSE (real_onep (wr_f_m1));
15778 ASSERT_FALSE (real_onep (c_i_0));
15779 ASSERT_FALSE (real_onep (c_i_1));
15780 ASSERT_FALSE (real_onep (c_i_m1));
15781 ASSERT_FALSE (real_onep (c_f_0));
15782 ASSERT_TRUE (real_onep (c_f_1));
15783 ASSERT_FALSE (real_onep (c_f_m1));
15785 /* Test real_minus_onep. */
15786 ASSERT_FALSE (real_minus_onep (i_0));
15787 ASSERT_FALSE (real_minus_onep (wr_i_0));
15788 ASSERT_FALSE (real_minus_onep (i_1));
15789 ASSERT_FALSE (real_minus_onep (wr_i_1));
15790 ASSERT_FALSE (real_minus_onep (i_m1));
15791 ASSERT_FALSE (real_minus_onep (wr_i_m1));
15792 ASSERT_FALSE (real_minus_onep (f_0));
15793 ASSERT_FALSE (real_minus_onep (wr_f_0));
15794 ASSERT_FALSE (real_minus_onep (f_1));
15795 ASSERT_FALSE (real_minus_onep (wr_f_1));
15796 ASSERT_TRUE (real_minus_onep (f_m1));
15797 ASSERT_TRUE (real_minus_onep (wr_f_m1));
15798 ASSERT_FALSE (real_minus_onep (c_i_0));
15799 ASSERT_FALSE (real_minus_onep (c_i_1));
15800 ASSERT_FALSE (real_minus_onep (c_i_m1));
15801 ASSERT_FALSE (real_minus_onep (c_f_0));
15802 ASSERT_FALSE (real_minus_onep (c_f_1));
15803 ASSERT_TRUE (real_minus_onep (c_f_m1));
15805 /* Test zerop. */
15806 ASSERT_TRUE (zerop (i_0));
15807 ASSERT_TRUE (zerop (wr_i_0));
15808 ASSERT_FALSE (zerop (i_1));
15809 ASSERT_FALSE (zerop (wr_i_1));
15810 ASSERT_FALSE (zerop (i_m1));
15811 ASSERT_FALSE (zerop (wr_i_m1));
15812 ASSERT_TRUE (zerop (f_0));
15813 ASSERT_TRUE (zerop (wr_f_0));
15814 ASSERT_FALSE (zerop (f_1));
15815 ASSERT_FALSE (zerop (wr_f_1));
15816 ASSERT_FALSE (zerop (f_m1));
15817 ASSERT_FALSE (zerop (wr_f_m1));
15818 ASSERT_TRUE (zerop (c_i_0));
15819 ASSERT_FALSE (zerop (c_i_1));
15820 ASSERT_FALSE (zerop (c_i_m1));
15821 ASSERT_TRUE (zerop (c_f_0));
15822 ASSERT_FALSE (zerop (c_f_1));
15823 ASSERT_FALSE (zerop (c_f_m1));
15825 /* Test tree_expr_nonnegative_p. */
15826 ASSERT_TRUE (tree_expr_nonnegative_p (i_0));
15827 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_0));
15828 ASSERT_TRUE (tree_expr_nonnegative_p (i_1));
15829 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_1));
15830 ASSERT_FALSE (tree_expr_nonnegative_p (i_m1));
15831 ASSERT_FALSE (tree_expr_nonnegative_p (wr_i_m1));
15832 ASSERT_TRUE (tree_expr_nonnegative_p (f_0));
15833 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_0));
15834 ASSERT_TRUE (tree_expr_nonnegative_p (f_1));
15835 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_1));
15836 ASSERT_FALSE (tree_expr_nonnegative_p (f_m1));
15837 ASSERT_FALSE (tree_expr_nonnegative_p (wr_f_m1));
15838 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_0));
15839 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_1));
15840 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_m1));
15841 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_0));
15842 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_1));
15843 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_m1));
15845 /* Test tree_expr_nonzero_p. */
15846 ASSERT_FALSE (tree_expr_nonzero_p (i_0));
15847 ASSERT_FALSE (tree_expr_nonzero_p (wr_i_0));
15848 ASSERT_TRUE (tree_expr_nonzero_p (i_1));
15849 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_1));
15850 ASSERT_TRUE (tree_expr_nonzero_p (i_m1));
15851 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_m1));
15853 /* Test integer_valued_real_p. */
15854 ASSERT_FALSE (integer_valued_real_p (i_0));
15855 ASSERT_TRUE (integer_valued_real_p (f_0));
15856 ASSERT_TRUE (integer_valued_real_p (wr_f_0));
15857 ASSERT_TRUE (integer_valued_real_p (f_1));
15858 ASSERT_TRUE (integer_valued_real_p (wr_f_1));
15860 /* Test integer_pow2p. */
15861 ASSERT_FALSE (integer_pow2p (i_0));
15862 ASSERT_TRUE (integer_pow2p (i_1));
15863 ASSERT_TRUE (integer_pow2p (wr_i_1));
15865 /* Test uniform_integer_cst_p. */
15866 ASSERT_TRUE (uniform_integer_cst_p (i_0));
15867 ASSERT_TRUE (uniform_integer_cst_p (wr_i_0));
15868 ASSERT_TRUE (uniform_integer_cst_p (i_1));
15869 ASSERT_TRUE (uniform_integer_cst_p (wr_i_1));
15870 ASSERT_TRUE (uniform_integer_cst_p (i_m1));
15871 ASSERT_TRUE (uniform_integer_cst_p (wr_i_m1));
15872 ASSERT_FALSE (uniform_integer_cst_p (f_0));
15873 ASSERT_FALSE (uniform_integer_cst_p (wr_f_0));
15874 ASSERT_FALSE (uniform_integer_cst_p (f_1));
15875 ASSERT_FALSE (uniform_integer_cst_p (wr_f_1));
15876 ASSERT_FALSE (uniform_integer_cst_p (f_m1));
15877 ASSERT_FALSE (uniform_integer_cst_p (wr_f_m1));
15878 ASSERT_FALSE (uniform_integer_cst_p (c_i_0));
15879 ASSERT_FALSE (uniform_integer_cst_p (c_i_1));
15880 ASSERT_FALSE (uniform_integer_cst_p (c_i_m1));
15881 ASSERT_FALSE (uniform_integer_cst_p (c_f_0));
15882 ASSERT_FALSE (uniform_integer_cst_p (c_f_1));
15883 ASSERT_FALSE (uniform_integer_cst_p (c_f_m1));
15886 /* Check that string escaping works correctly. */
15888 static void
15889 test_escaped_strings (void)
15891 int saved_cutoff;
15892 escaped_string msg;
15894 msg.escape (NULL);
15895 /* ASSERT_STREQ does not accept NULL as a valid test
15896 result, so we have to use ASSERT_EQ instead. */
15897 ASSERT_EQ (NULL, (const char *) msg);
15899 msg.escape ("");
15900 ASSERT_STREQ ("", (const char *) msg);
15902 msg.escape ("foobar");
15903 ASSERT_STREQ ("foobar", (const char *) msg);
15905 /* Ensure that we have -fmessage-length set to 0. */
15906 saved_cutoff = pp_line_cutoff (global_dc->printer);
15907 pp_line_cutoff (global_dc->printer) = 0;
15909 msg.escape ("foo\nbar");
15910 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
15912 msg.escape ("\a\b\f\n\r\t\v");
15913 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
15915 /* Now repeat the tests with -fmessage-length set to 5. */
15916 pp_line_cutoff (global_dc->printer) = 5;
15918 /* Note that the newline is not translated into an escape. */
15919 msg.escape ("foo\nbar");
15920 ASSERT_STREQ ("foo\nbar", (const char *) msg);
15922 msg.escape ("\a\b\f\n\r\t\v");
15923 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
15925 /* Restore the original message length setting. */
15926 pp_line_cutoff (global_dc->printer) = saved_cutoff;
15929 /* Run all of the selftests within this file. */
15931 void
15932 tree_c_tests ()
15934 test_integer_constants ();
15935 test_identifiers ();
15936 test_labels ();
15937 test_vector_cst_patterns ();
15938 test_location_wrappers ();
15939 test_predicates ();
15940 test_escaped_strings ();
15943 } // namespace selftest
15945 #endif /* CHECKING_P */
15947 #include "gt-tree.h"