middle-end/98793 - properly handle BLKmode vectors in vector_element_bits
[gcc.git] / gcc / tree.c
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2021 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
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.
26
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
29
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"
71
72 /* Tree code classes. */
73
74 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
75 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76
77 const enum tree_code_class tree_code_type[] = {
78 #include "all-tree.def"
79 };
80
81 #undef DEFTREECODE
82 #undef END_OF_BASE_TREE_CODES
83
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. */
87
88 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
89 #define END_OF_BASE_TREE_CODES 0,
90
91 const unsigned char tree_code_length[] = {
92 #include "all-tree.def"
93 };
94
95 #undef DEFTREECODE
96 #undef END_OF_BASE_TREE_CODES
97
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",
102
103 static const char *const tree_code_name[] = {
104 #include "all-tree.def"
105 };
106
107 #undef DEFTREECODE
108 #undef END_OF_BASE_TREE_CODES
109
110 /* Each tree code class has an associated string representation.
111 These must correspond to the tree_code_class entries. */
112
113 const char *const tree_code_class_strings[] =
114 {
115 "exceptional",
116 "constant",
117 "type",
118 "declaration",
119 "reference",
120 "comparison",
121 "unary",
122 "binary",
123 "statement",
124 "vl_exp",
125 "expression"
126 };
127
128 /* obstack.[ch] explicitly declined to prototype this. */
129 extern int _obstack_allocated_p (struct obstack *h, void *obj);
130
131 /* Statistics-gathering stuff. */
132
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];
136
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",
155 };
156
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;
164
165 /* Since we cannot rehash a type after it is in the table, we have to
166 keep the hash code. */
167
168 struct GTY((for_user)) type_hash {
169 unsigned long hash;
170 tree type;
171 };
172
173 /* Initial size of the hash table (rounded to next prime). */
174 #define TYPE_HASH_INITIAL_SIZE 1000
175
176 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
177 {
178 static hashval_t hash (type_hash *t) { return t->hash; }
179 static bool equal (type_hash *a, type_hash *b);
180
181 static int
182 keep_cache_entry (type_hash *&t)
183 {
184 return ggc_marked_p (t->type);
185 }
186 };
187
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. */
194
195 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
196
197 /* Hash table and temporary node for larger integer const values. */
198 static GTY (()) tree int_cst_node;
199
200 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
201 {
202 static hashval_t hash (tree t);
203 static bool equal (tree x, tree y);
204 };
205
206 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
207
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>
211 {
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);
215 };
216
217 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
218
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;
226
227 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
228 {
229 static hashval_t hash (tree t);
230 static bool equal (tree x, tree y);
231 };
232
233 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
234
235 /* General tree->tree mapping structure for use in hash tables. */
236
237
238 static GTY ((cache))
239 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
240
241 static GTY ((cache))
242 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
243
244 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
245 {
246 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
247
248 static bool
249 equal (tree_vec_map *a, tree_vec_map *b)
250 {
251 return a->base.from == b->base.from;
252 }
253
254 static int
255 keep_cache_entry (tree_vec_map *&m)
256 {
257 return ggc_marked_p (m->base.from);
258 }
259 };
260
261 static GTY ((cache))
262 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
263
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);
268
269 static tree build_array_type_1 (tree, tree, bool, bool, bool);
270
271 tree global_trees[TI_MAX];
272 tree integer_types[itk_none];
273
274 bool int_n_enabled_p[NUM_INT_N_ENTS];
275 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
276
277 bool tree_contains_struct[MAX_TREE_CODES][64];
278
279 /* Number of operands for each OpenMP clause. */
280 unsigned const char omp_clause_num_ops[] =
281 {
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 1, /* OMP_CLAUSE_DETACH */
301 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
302 1, /* OMP_CLAUSE_USE_DEVICE_ADDR */
303 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
304 1, /* OMP_CLAUSE_INCLUSIVE */
305 1, /* OMP_CLAUSE_EXCLUSIVE */
306 2, /* OMP_CLAUSE_FROM */
307 2, /* OMP_CLAUSE_TO */
308 2, /* OMP_CLAUSE_MAP */
309 2, /* OMP_CLAUSE__CACHE_ */
310 2, /* OMP_CLAUSE_GANG */
311 1, /* OMP_CLAUSE_ASYNC */
312 1, /* OMP_CLAUSE_WAIT */
313 0, /* OMP_CLAUSE_AUTO */
314 0, /* OMP_CLAUSE_SEQ */
315 1, /* OMP_CLAUSE__LOOPTEMP_ */
316 1, /* OMP_CLAUSE__REDUCTEMP_ */
317 1, /* OMP_CLAUSE__CONDTEMP_ */
318 1, /* OMP_CLAUSE__SCANTEMP_ */
319 1, /* OMP_CLAUSE_IF */
320 1, /* OMP_CLAUSE_NUM_THREADS */
321 1, /* OMP_CLAUSE_SCHEDULE */
322 0, /* OMP_CLAUSE_NOWAIT */
323 1, /* OMP_CLAUSE_ORDERED */
324 0, /* OMP_CLAUSE_DEFAULT */
325 3, /* OMP_CLAUSE_COLLAPSE */
326 0, /* OMP_CLAUSE_UNTIED */
327 1, /* OMP_CLAUSE_FINAL */
328 0, /* OMP_CLAUSE_MERGEABLE */
329 1, /* OMP_CLAUSE_DEVICE */
330 1, /* OMP_CLAUSE_DIST_SCHEDULE */
331 0, /* OMP_CLAUSE_INBRANCH */
332 0, /* OMP_CLAUSE_NOTINBRANCH */
333 1, /* OMP_CLAUSE_NUM_TEAMS */
334 1, /* OMP_CLAUSE_THREAD_LIMIT */
335 0, /* OMP_CLAUSE_PROC_BIND */
336 1, /* OMP_CLAUSE_SAFELEN */
337 1, /* OMP_CLAUSE_SIMDLEN */
338 0, /* OMP_CLAUSE_DEVICE_TYPE */
339 0, /* OMP_CLAUSE_FOR */
340 0, /* OMP_CLAUSE_PARALLEL */
341 0, /* OMP_CLAUSE_SECTIONS */
342 0, /* OMP_CLAUSE_TASKGROUP */
343 1, /* OMP_CLAUSE_PRIORITY */
344 1, /* OMP_CLAUSE_GRAINSIZE */
345 1, /* OMP_CLAUSE_NUM_TASKS */
346 0, /* OMP_CLAUSE_NOGROUP */
347 0, /* OMP_CLAUSE_THREADS */
348 0, /* OMP_CLAUSE_SIMD */
349 1, /* OMP_CLAUSE_HINT */
350 0, /* OMP_CLAUSE_DEFAULTMAP */
351 0, /* OMP_CLAUSE_ORDER */
352 0, /* OMP_CLAUSE_BIND */
353 1, /* OMP_CLAUSE__SIMDUID_ */
354 0, /* OMP_CLAUSE__SIMT_ */
355 0, /* OMP_CLAUSE_INDEPENDENT */
356 1, /* OMP_CLAUSE_WORKER */
357 1, /* OMP_CLAUSE_VECTOR */
358 1, /* OMP_CLAUSE_NUM_GANGS */
359 1, /* OMP_CLAUSE_NUM_WORKERS */
360 1, /* OMP_CLAUSE_VECTOR_LENGTH */
361 3, /* OMP_CLAUSE_TILE */
362 0, /* OMP_CLAUSE_IF_PRESENT */
363 0, /* OMP_CLAUSE_FINALIZE */
364 };
365
366 const char * const omp_clause_code_name[] =
367 {
368 "error_clause",
369 "private",
370 "shared",
371 "firstprivate",
372 "lastprivate",
373 "reduction",
374 "task_reduction",
375 "in_reduction",
376 "copyin",
377 "copyprivate",
378 "linear",
379 "aligned",
380 "allocate",
381 "depend",
382 "nontemporal",
383 "uniform",
384 "to",
385 "link",
386 "detach",
387 "use_device_ptr",
388 "use_device_addr",
389 "is_device_ptr",
390 "inclusive",
391 "exclusive",
392 "from",
393 "to",
394 "map",
395 "_cache_",
396 "gang",
397 "async",
398 "wait",
399 "auto",
400 "seq",
401 "_looptemp_",
402 "_reductemp_",
403 "_condtemp_",
404 "_scantemp_",
405 "if",
406 "num_threads",
407 "schedule",
408 "nowait",
409 "ordered",
410 "default",
411 "collapse",
412 "untied",
413 "final",
414 "mergeable",
415 "device",
416 "dist_schedule",
417 "inbranch",
418 "notinbranch",
419 "num_teams",
420 "thread_limit",
421 "proc_bind",
422 "safelen",
423 "simdlen",
424 "device_type",
425 "for",
426 "parallel",
427 "sections",
428 "taskgroup",
429 "priority",
430 "grainsize",
431 "num_tasks",
432 "nogroup",
433 "threads",
434 "simd",
435 "hint",
436 "defaultmap",
437 "order",
438 "bind",
439 "_simduid_",
440 "_simt_",
441 "independent",
442 "worker",
443 "vector",
444 "num_gangs",
445 "num_workers",
446 "vector_length",
447 "tile",
448 "if_present",
449 "finalize",
450 };
451
452
453 /* Return the tree node structure used by tree code CODE. */
454
455 static inline enum tree_node_structure_enum
456 tree_node_structure_for_code (enum tree_code code)
457 {
458 switch (TREE_CODE_CLASS (code))
459 {
460 case tcc_declaration:
461 switch (code)
462 {
463 case CONST_DECL: return TS_CONST_DECL;
464 case DEBUG_EXPR_DECL: return TS_DECL_WRTL;
465 case FIELD_DECL: return TS_FIELD_DECL;
466 case FUNCTION_DECL: return TS_FUNCTION_DECL;
467 case LABEL_DECL: return TS_LABEL_DECL;
468 case PARM_DECL: return TS_PARM_DECL;
469 case RESULT_DECL: return TS_RESULT_DECL;
470 case TRANSLATION_UNIT_DECL: return TS_TRANSLATION_UNIT_DECL;
471 case TYPE_DECL: return TS_TYPE_DECL;
472 case VAR_DECL: return TS_VAR_DECL;
473 default: return TS_DECL_NON_COMMON;
474 }
475
476 case tcc_type: return TS_TYPE_NON_COMMON;
477
478 case tcc_binary:
479 case tcc_comparison:
480 case tcc_expression:
481 case tcc_reference:
482 case tcc_statement:
483 case tcc_unary:
484 case tcc_vl_exp: return TS_EXP;
485
486 default: /* tcc_constant and tcc_exceptional */
487 break;
488 }
489
490 switch (code)
491 {
492 /* tcc_constant cases. */
493 case COMPLEX_CST: return TS_COMPLEX;
494 case FIXED_CST: return TS_FIXED_CST;
495 case INTEGER_CST: return TS_INT_CST;
496 case POLY_INT_CST: return TS_POLY_INT_CST;
497 case REAL_CST: return TS_REAL_CST;
498 case STRING_CST: return TS_STRING;
499 case VECTOR_CST: return TS_VECTOR;
500 case VOID_CST: return TS_TYPED;
501
502 /* tcc_exceptional cases. */
503 case BLOCK: return TS_BLOCK;
504 case CONSTRUCTOR: return TS_CONSTRUCTOR;
505 case ERROR_MARK: return TS_COMMON;
506 case IDENTIFIER_NODE: return TS_IDENTIFIER;
507 case OMP_CLAUSE: return TS_OMP_CLAUSE;
508 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
509 case PLACEHOLDER_EXPR: return TS_COMMON;
510 case SSA_NAME: return TS_SSA_NAME;
511 case STATEMENT_LIST: return TS_STATEMENT_LIST;
512 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
513 case TREE_BINFO: return TS_BINFO;
514 case TREE_LIST: return TS_LIST;
515 case TREE_VEC: return TS_VEC;
516
517 default:
518 gcc_unreachable ();
519 }
520 }
521
522
523 /* Initialize tree_contains_struct to describe the hierarchy of tree
524 nodes. */
525
526 static void
527 initialize_tree_contains_struct (void)
528 {
529 unsigned i;
530
531 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
532 {
533 enum tree_code code;
534 enum tree_node_structure_enum ts_code;
535
536 code = (enum tree_code) i;
537 ts_code = tree_node_structure_for_code (code);
538
539 /* Mark the TS structure itself. */
540 tree_contains_struct[code][ts_code] = 1;
541
542 /* Mark all the structures that TS is derived from. */
543 switch (ts_code)
544 {
545 case TS_TYPED:
546 case TS_BLOCK:
547 case TS_OPTIMIZATION:
548 case TS_TARGET_OPTION:
549 MARK_TS_BASE (code);
550 break;
551
552 case TS_COMMON:
553 case TS_INT_CST:
554 case TS_POLY_INT_CST:
555 case TS_REAL_CST:
556 case TS_FIXED_CST:
557 case TS_VECTOR:
558 case TS_STRING:
559 case TS_COMPLEX:
560 case TS_SSA_NAME:
561 case TS_CONSTRUCTOR:
562 case TS_EXP:
563 case TS_STATEMENT_LIST:
564 MARK_TS_TYPED (code);
565 break;
566
567 case TS_IDENTIFIER:
568 case TS_DECL_MINIMAL:
569 case TS_TYPE_COMMON:
570 case TS_LIST:
571 case TS_VEC:
572 case TS_BINFO:
573 case TS_OMP_CLAUSE:
574 MARK_TS_COMMON (code);
575 break;
576
577 case TS_TYPE_WITH_LANG_SPECIFIC:
578 MARK_TS_TYPE_COMMON (code);
579 break;
580
581 case TS_TYPE_NON_COMMON:
582 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
583 break;
584
585 case TS_DECL_COMMON:
586 MARK_TS_DECL_MINIMAL (code);
587 break;
588
589 case TS_DECL_WRTL:
590 case TS_CONST_DECL:
591 MARK_TS_DECL_COMMON (code);
592 break;
593
594 case TS_DECL_NON_COMMON:
595 MARK_TS_DECL_WITH_VIS (code);
596 break;
597
598 case TS_DECL_WITH_VIS:
599 case TS_PARM_DECL:
600 case TS_LABEL_DECL:
601 case TS_RESULT_DECL:
602 MARK_TS_DECL_WRTL (code);
603 break;
604
605 case TS_FIELD_DECL:
606 MARK_TS_DECL_COMMON (code);
607 break;
608
609 case TS_VAR_DECL:
610 MARK_TS_DECL_WITH_VIS (code);
611 break;
612
613 case TS_TYPE_DECL:
614 case TS_FUNCTION_DECL:
615 MARK_TS_DECL_NON_COMMON (code);
616 break;
617
618 case TS_TRANSLATION_UNIT_DECL:
619 MARK_TS_DECL_COMMON (code);
620 break;
621
622 default:
623 gcc_unreachable ();
624 }
625 }
626
627 /* Basic consistency checks for attributes used in fold. */
628 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
629 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
630 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
631 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
632 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
633 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
634 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
635 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
636 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
637 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
638 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
639 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
640 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
641 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
642 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
643 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
644 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
645 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
646 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
647 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
648 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
649 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
650 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
651 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
652 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
653 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
654 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
655 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
656 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
657 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
658 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
659 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
660 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
661 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
662 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
663 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
664 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
665 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
666 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
667 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
668 }
669
670
671 /* Init tree.c. */
672
673 void
674 init_ttree (void)
675 {
676 /* Initialize the hash table of types. */
677 type_hash_table
678 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
679
680 debug_expr_for_decl
681 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
682
683 value_expr_for_decl
684 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
685
686 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
687
688 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
689
690 int_cst_node = make_int_cst (1, 1);
691
692 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
693
694 cl_optimization_node = make_node (OPTIMIZATION_NODE);
695 cl_target_option_node = make_node (TARGET_OPTION_NODE);
696
697 /* Initialize the tree_contains_struct array. */
698 initialize_tree_contains_struct ();
699 lang_hooks.init_ts ();
700 }
701
702 \f
703 /* The name of the object as the assembler will see it (but before any
704 translations made by ASM_OUTPUT_LABELREF). Often this is the same
705 as DECL_NAME. It is an IDENTIFIER_NODE. */
706 tree
707 decl_assembler_name (tree decl)
708 {
709 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
710 lang_hooks.set_decl_assembler_name (decl);
711 return DECL_ASSEMBLER_NAME_RAW (decl);
712 }
713
714 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
715 (either of which may be NULL). Inform the FE, if this changes the
716 name. */
717
718 void
719 overwrite_decl_assembler_name (tree decl, tree name)
720 {
721 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
722 lang_hooks.overwrite_decl_assembler_name (decl, name);
723 }
724
725 /* When the target supports COMDAT groups, this indicates which group the
726 DECL is associated with. This can be either an IDENTIFIER_NODE or a
727 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
728 tree
729 decl_comdat_group (const_tree node)
730 {
731 struct symtab_node *snode = symtab_node::get (node);
732 if (!snode)
733 return NULL;
734 return snode->get_comdat_group ();
735 }
736
737 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
738 tree
739 decl_comdat_group_id (const_tree node)
740 {
741 struct symtab_node *snode = symtab_node::get (node);
742 if (!snode)
743 return NULL;
744 return snode->get_comdat_group_id ();
745 }
746
747 /* When the target supports named section, return its name as IDENTIFIER_NODE
748 or NULL if it is in no section. */
749 const char *
750 decl_section_name (const_tree node)
751 {
752 struct symtab_node *snode = symtab_node::get (node);
753 if (!snode)
754 return NULL;
755 return snode->get_section ();
756 }
757
758 /* Set section name of NODE to VALUE (that is expected to be
759 identifier node) */
760 void
761 set_decl_section_name (tree node, const char *value)
762 {
763 struct symtab_node *snode;
764
765 if (value == NULL)
766 {
767 snode = symtab_node::get (node);
768 if (!snode)
769 return;
770 }
771 else if (VAR_P (node))
772 snode = varpool_node::get_create (node);
773 else
774 snode = cgraph_node::get_create (node);
775 snode->set_section (value);
776 }
777
778 /* Set section name of NODE to match the section name of OTHER.
779
780 set_decl_section_name (decl, other) is equivalent to
781 set_decl_section_name (decl, DECL_SECTION_NAME (other)), but possibly more
782 efficient. */
783 void
784 set_decl_section_name (tree decl, const_tree other)
785 {
786 struct symtab_node *other_node = symtab_node::get (other);
787 if (other_node)
788 {
789 struct symtab_node *decl_node;
790 if (VAR_P (decl))
791 decl_node = varpool_node::get_create (decl);
792 else
793 decl_node = cgraph_node::get_create (decl);
794 decl_node->set_section (*other_node);
795 }
796 else
797 {
798 struct symtab_node *decl_node = symtab_node::get (decl);
799 if (!decl_node)
800 return;
801 decl_node->set_section (NULL);
802 }
803 }
804
805 /* Return TLS model of a variable NODE. */
806 enum tls_model
807 decl_tls_model (const_tree node)
808 {
809 struct varpool_node *snode = varpool_node::get (node);
810 if (!snode)
811 return TLS_MODEL_NONE;
812 return snode->tls_model;
813 }
814
815 /* Set TLS model of variable NODE to MODEL. */
816 void
817 set_decl_tls_model (tree node, enum tls_model model)
818 {
819 struct varpool_node *vnode;
820
821 if (model == TLS_MODEL_NONE)
822 {
823 vnode = varpool_node::get (node);
824 if (!vnode)
825 return;
826 }
827 else
828 vnode = varpool_node::get_create (node);
829 vnode->tls_model = model;
830 }
831
832 /* Compute the number of bytes occupied by a tree with code CODE.
833 This function cannot be used for nodes that have variable sizes,
834 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
835 size_t
836 tree_code_size (enum tree_code code)
837 {
838 switch (TREE_CODE_CLASS (code))
839 {
840 case tcc_declaration: /* A decl node */
841 switch (code)
842 {
843 case FIELD_DECL: return sizeof (tree_field_decl);
844 case PARM_DECL: return sizeof (tree_parm_decl);
845 case VAR_DECL: return sizeof (tree_var_decl);
846 case LABEL_DECL: return sizeof (tree_label_decl);
847 case RESULT_DECL: return sizeof (tree_result_decl);
848 case CONST_DECL: return sizeof (tree_const_decl);
849 case TYPE_DECL: return sizeof (tree_type_decl);
850 case FUNCTION_DECL: return sizeof (tree_function_decl);
851 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
852 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
853 case NAMESPACE_DECL:
854 case IMPORTED_DECL:
855 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
856 default:
857 gcc_checking_assert (code >= NUM_TREE_CODES);
858 return lang_hooks.tree_size (code);
859 }
860
861 case tcc_type: /* a type node */
862 switch (code)
863 {
864 case OFFSET_TYPE:
865 case ENUMERAL_TYPE:
866 case BOOLEAN_TYPE:
867 case INTEGER_TYPE:
868 case REAL_TYPE:
869 case OPAQUE_TYPE:
870 case POINTER_TYPE:
871 case REFERENCE_TYPE:
872 case NULLPTR_TYPE:
873 case FIXED_POINT_TYPE:
874 case COMPLEX_TYPE:
875 case VECTOR_TYPE:
876 case ARRAY_TYPE:
877 case RECORD_TYPE:
878 case UNION_TYPE:
879 case QUAL_UNION_TYPE:
880 case VOID_TYPE:
881 case FUNCTION_TYPE:
882 case METHOD_TYPE:
883 case LANG_TYPE: return sizeof (tree_type_non_common);
884 default:
885 gcc_checking_assert (code >= NUM_TREE_CODES);
886 return lang_hooks.tree_size (code);
887 }
888
889 case tcc_reference: /* a reference */
890 case tcc_expression: /* an expression */
891 case tcc_statement: /* an expression with side effects */
892 case tcc_comparison: /* a comparison expression */
893 case tcc_unary: /* a unary arithmetic expression */
894 case tcc_binary: /* a binary arithmetic expression */
895 return (sizeof (struct tree_exp)
896 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
897
898 case tcc_constant: /* a constant */
899 switch (code)
900 {
901 case VOID_CST: return sizeof (tree_typed);
902 case INTEGER_CST: gcc_unreachable ();
903 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
904 case REAL_CST: return sizeof (tree_real_cst);
905 case FIXED_CST: return sizeof (tree_fixed_cst);
906 case COMPLEX_CST: return sizeof (tree_complex);
907 case VECTOR_CST: gcc_unreachable ();
908 case STRING_CST: gcc_unreachable ();
909 default:
910 gcc_checking_assert (code >= NUM_TREE_CODES);
911 return lang_hooks.tree_size (code);
912 }
913
914 case tcc_exceptional: /* something random, like an identifier. */
915 switch (code)
916 {
917 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
918 case TREE_LIST: return sizeof (tree_list);
919
920 case ERROR_MARK:
921 case PLACEHOLDER_EXPR: return sizeof (tree_common);
922
923 case TREE_VEC: gcc_unreachable ();
924 case OMP_CLAUSE: gcc_unreachable ();
925
926 case SSA_NAME: return sizeof (tree_ssa_name);
927
928 case STATEMENT_LIST: return sizeof (tree_statement_list);
929 case BLOCK: return sizeof (struct tree_block);
930 case CONSTRUCTOR: return sizeof (tree_constructor);
931 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
932 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
933
934 default:
935 gcc_checking_assert (code >= NUM_TREE_CODES);
936 return lang_hooks.tree_size (code);
937 }
938
939 default:
940 gcc_unreachable ();
941 }
942 }
943
944 /* Compute the number of bytes occupied by NODE. This routine only
945 looks at TREE_CODE, except for those nodes that have variable sizes. */
946 size_t
947 tree_size (const_tree node)
948 {
949 const enum tree_code code = TREE_CODE (node);
950 switch (code)
951 {
952 case INTEGER_CST:
953 return (sizeof (struct tree_int_cst)
954 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
955
956 case TREE_BINFO:
957 return (offsetof (struct tree_binfo, base_binfos)
958 + vec<tree, va_gc>
959 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
960
961 case TREE_VEC:
962 return (sizeof (struct tree_vec)
963 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
964
965 case VECTOR_CST:
966 return (sizeof (struct tree_vector)
967 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
968
969 case STRING_CST:
970 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
971
972 case OMP_CLAUSE:
973 return (sizeof (struct tree_omp_clause)
974 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
975 * sizeof (tree));
976
977 default:
978 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
979 return (sizeof (struct tree_exp)
980 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
981 else
982 return tree_code_size (code);
983 }
984 }
985
986 /* Return tree node kind based on tree CODE. */
987
988 static tree_node_kind
989 get_stats_node_kind (enum tree_code code)
990 {
991 enum tree_code_class type = TREE_CODE_CLASS (code);
992
993 switch (type)
994 {
995 case tcc_declaration: /* A decl node */
996 return d_kind;
997 case tcc_type: /* a type node */
998 return t_kind;
999 case tcc_statement: /* an expression with side effects */
1000 return s_kind;
1001 case tcc_reference: /* a reference */
1002 return r_kind;
1003 case tcc_expression: /* an expression */
1004 case tcc_comparison: /* a comparison expression */
1005 case tcc_unary: /* a unary arithmetic expression */
1006 case tcc_binary: /* a binary arithmetic expression */
1007 return e_kind;
1008 case tcc_constant: /* a constant */
1009 return c_kind;
1010 case tcc_exceptional: /* something random, like an identifier. */
1011 switch (code)
1012 {
1013 case IDENTIFIER_NODE:
1014 return id_kind;
1015 case TREE_VEC:
1016 return vec_kind;
1017 case TREE_BINFO:
1018 return binfo_kind;
1019 case SSA_NAME:
1020 return ssa_name_kind;
1021 case BLOCK:
1022 return b_kind;
1023 case CONSTRUCTOR:
1024 return constr_kind;
1025 case OMP_CLAUSE:
1026 return omp_clause_kind;
1027 default:
1028 return x_kind;
1029 }
1030 break;
1031 case tcc_vl_exp:
1032 return e_kind;
1033 default:
1034 gcc_unreachable ();
1035 }
1036 }
1037
1038 /* Record interesting allocation statistics for a tree node with CODE
1039 and LENGTH. */
1040
1041 static void
1042 record_node_allocation_statistics (enum tree_code code, size_t length)
1043 {
1044 if (!GATHER_STATISTICS)
1045 return;
1046
1047 tree_node_kind kind = get_stats_node_kind (code);
1048
1049 tree_code_counts[(int) code]++;
1050 tree_node_counts[(int) kind]++;
1051 tree_node_sizes[(int) kind] += length;
1052 }
1053
1054 /* Allocate and return a new UID from the DECL_UID namespace. */
1055
1056 int
1057 allocate_decl_uid (void)
1058 {
1059 return next_decl_uid++;
1060 }
1061
1062 /* Return a newly allocated node of code CODE. For decl and type
1063 nodes, some other fields are initialized. The rest of the node is
1064 initialized to zero. This function cannot be used for TREE_VEC,
1065 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1066 tree_code_size.
1067
1068 Achoo! I got a code in the node. */
1069
1070 tree
1071 make_node (enum tree_code code MEM_STAT_DECL)
1072 {
1073 tree t;
1074 enum tree_code_class type = TREE_CODE_CLASS (code);
1075 size_t length = tree_code_size (code);
1076
1077 record_node_allocation_statistics (code, length);
1078
1079 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1080 TREE_SET_CODE (t, code);
1081
1082 switch (type)
1083 {
1084 case tcc_statement:
1085 if (code != DEBUG_BEGIN_STMT)
1086 TREE_SIDE_EFFECTS (t) = 1;
1087 break;
1088
1089 case tcc_declaration:
1090 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1091 {
1092 if (code == FUNCTION_DECL)
1093 {
1094 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1095 SET_DECL_MODE (t, FUNCTION_MODE);
1096 }
1097 else
1098 SET_DECL_ALIGN (t, 1);
1099 }
1100 DECL_SOURCE_LOCATION (t) = input_location;
1101 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1102 DECL_UID (t) = --next_debug_decl_uid;
1103 else
1104 {
1105 DECL_UID (t) = allocate_decl_uid ();
1106 SET_DECL_PT_UID (t, -1);
1107 }
1108 if (TREE_CODE (t) == LABEL_DECL)
1109 LABEL_DECL_UID (t) = -1;
1110
1111 break;
1112
1113 case tcc_type:
1114 TYPE_UID (t) = next_type_uid++;
1115 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1116 TYPE_USER_ALIGN (t) = 0;
1117 TYPE_MAIN_VARIANT (t) = t;
1118 TYPE_CANONICAL (t) = t;
1119
1120 /* Default to no attributes for type, but let target change that. */
1121 TYPE_ATTRIBUTES (t) = NULL_TREE;
1122 targetm.set_default_type_attributes (t);
1123
1124 /* We have not yet computed the alias set for this type. */
1125 TYPE_ALIAS_SET (t) = -1;
1126 break;
1127
1128 case tcc_constant:
1129 TREE_CONSTANT (t) = 1;
1130 break;
1131
1132 case tcc_expression:
1133 switch (code)
1134 {
1135 case INIT_EXPR:
1136 case MODIFY_EXPR:
1137 case VA_ARG_EXPR:
1138 case PREDECREMENT_EXPR:
1139 case PREINCREMENT_EXPR:
1140 case POSTDECREMENT_EXPR:
1141 case POSTINCREMENT_EXPR:
1142 /* All of these have side-effects, no matter what their
1143 operands are. */
1144 TREE_SIDE_EFFECTS (t) = 1;
1145 break;
1146
1147 default:
1148 break;
1149 }
1150 break;
1151
1152 case tcc_exceptional:
1153 switch (code)
1154 {
1155 case TARGET_OPTION_NODE:
1156 TREE_TARGET_OPTION(t)
1157 = ggc_cleared_alloc<struct cl_target_option> ();
1158 break;
1159
1160 case OPTIMIZATION_NODE:
1161 TREE_OPTIMIZATION (t)
1162 = ggc_cleared_alloc<struct cl_optimization> ();
1163 break;
1164
1165 default:
1166 break;
1167 }
1168 break;
1169
1170 default:
1171 /* Other classes need no special treatment. */
1172 break;
1173 }
1174
1175 return t;
1176 }
1177
1178 /* Free tree node. */
1179
1180 void
1181 free_node (tree node)
1182 {
1183 enum tree_code code = TREE_CODE (node);
1184 if (GATHER_STATISTICS)
1185 {
1186 enum tree_node_kind kind = get_stats_node_kind (code);
1187
1188 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1189 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1190 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1191
1192 tree_code_counts[(int) TREE_CODE (node)]--;
1193 tree_node_counts[(int) kind]--;
1194 tree_node_sizes[(int) kind] -= tree_size (node);
1195 }
1196 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1197 vec_free (CONSTRUCTOR_ELTS (node));
1198 else if (code == BLOCK)
1199 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1200 else if (code == TREE_BINFO)
1201 vec_free (BINFO_BASE_ACCESSES (node));
1202 else if (code == OPTIMIZATION_NODE)
1203 cl_optimization_option_free (TREE_OPTIMIZATION (node));
1204 else if (code == TARGET_OPTION_NODE)
1205 cl_target_option_free (TREE_TARGET_OPTION (node));
1206 ggc_free (node);
1207 }
1208 \f
1209 /* Return a new node with the same contents as NODE except that its
1210 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1211
1212 tree
1213 copy_node (tree node MEM_STAT_DECL)
1214 {
1215 tree t;
1216 enum tree_code code = TREE_CODE (node);
1217 size_t length;
1218
1219 gcc_assert (code != STATEMENT_LIST);
1220
1221 length = tree_size (node);
1222 record_node_allocation_statistics (code, length);
1223 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1224 memcpy (t, node, length);
1225
1226 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1227 TREE_CHAIN (t) = 0;
1228 TREE_ASM_WRITTEN (t) = 0;
1229 TREE_VISITED (t) = 0;
1230
1231 if (TREE_CODE_CLASS (code) == tcc_declaration)
1232 {
1233 if (code == DEBUG_EXPR_DECL)
1234 DECL_UID (t) = --next_debug_decl_uid;
1235 else
1236 {
1237 DECL_UID (t) = allocate_decl_uid ();
1238 if (DECL_PT_UID_SET_P (node))
1239 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1240 }
1241 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1242 && DECL_HAS_VALUE_EXPR_P (node))
1243 {
1244 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1245 DECL_HAS_VALUE_EXPR_P (t) = 1;
1246 }
1247 /* DECL_DEBUG_EXPR is copied explicitly by callers. */
1248 if (VAR_P (node))
1249 {
1250 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1251 t->decl_with_vis.symtab_node = NULL;
1252 }
1253 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1254 {
1255 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1256 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1257 }
1258 if (TREE_CODE (node) == FUNCTION_DECL)
1259 {
1260 DECL_STRUCT_FUNCTION (t) = NULL;
1261 t->decl_with_vis.symtab_node = NULL;
1262 }
1263 }
1264 else if (TREE_CODE_CLASS (code) == tcc_type)
1265 {
1266 TYPE_UID (t) = next_type_uid++;
1267 /* The following is so that the debug code for
1268 the copy is different from the original type.
1269 The two statements usually duplicate each other
1270 (because they clear fields of the same union),
1271 but the optimizer should catch that. */
1272 TYPE_SYMTAB_ADDRESS (t) = 0;
1273 TYPE_SYMTAB_DIE (t) = 0;
1274
1275 /* Do not copy the values cache. */
1276 if (TYPE_CACHED_VALUES_P (t))
1277 {
1278 TYPE_CACHED_VALUES_P (t) = 0;
1279 TYPE_CACHED_VALUES (t) = NULL_TREE;
1280 }
1281 }
1282 else if (code == TARGET_OPTION_NODE)
1283 {
1284 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1285 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1286 sizeof (struct cl_target_option));
1287 }
1288 else if (code == OPTIMIZATION_NODE)
1289 {
1290 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1291 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1292 sizeof (struct cl_optimization));
1293 }
1294
1295 return t;
1296 }
1297
1298 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1299 For example, this can copy a list made of TREE_LIST nodes. */
1300
1301 tree
1302 copy_list (tree list)
1303 {
1304 tree head;
1305 tree prev, next;
1306
1307 if (list == 0)
1308 return 0;
1309
1310 head = prev = copy_node (list);
1311 next = TREE_CHAIN (list);
1312 while (next)
1313 {
1314 TREE_CHAIN (prev) = copy_node (next);
1315 prev = TREE_CHAIN (prev);
1316 next = TREE_CHAIN (next);
1317 }
1318 return head;
1319 }
1320
1321 \f
1322 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1323 INTEGER_CST with value CST and type TYPE. */
1324
1325 static unsigned int
1326 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1327 {
1328 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1329 /* We need extra HWIs if CST is an unsigned integer with its
1330 upper bit set. */
1331 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1332 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1333 return cst.get_len ();
1334 }
1335
1336 /* Return a new INTEGER_CST with value CST and type TYPE. */
1337
1338 static tree
1339 build_new_int_cst (tree type, const wide_int &cst)
1340 {
1341 unsigned int len = cst.get_len ();
1342 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1343 tree nt = make_int_cst (len, ext_len);
1344
1345 if (len < ext_len)
1346 {
1347 --ext_len;
1348 TREE_INT_CST_ELT (nt, ext_len)
1349 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1350 for (unsigned int i = len; i < ext_len; ++i)
1351 TREE_INT_CST_ELT (nt, i) = -1;
1352 }
1353 else if (TYPE_UNSIGNED (type)
1354 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1355 {
1356 len--;
1357 TREE_INT_CST_ELT (nt, len)
1358 = zext_hwi (cst.elt (len),
1359 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1360 }
1361
1362 for (unsigned int i = 0; i < len; i++)
1363 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1364 TREE_TYPE (nt) = type;
1365 return nt;
1366 }
1367
1368 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1369
1370 static tree
1371 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1372 CXX_MEM_STAT_INFO)
1373 {
1374 size_t length = sizeof (struct tree_poly_int_cst);
1375 record_node_allocation_statistics (POLY_INT_CST, length);
1376
1377 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1378
1379 TREE_SET_CODE (t, POLY_INT_CST);
1380 TREE_CONSTANT (t) = 1;
1381 TREE_TYPE (t) = type;
1382 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1383 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1384 return t;
1385 }
1386
1387 /* Create a constant tree that contains CST sign-extended to TYPE. */
1388
1389 tree
1390 build_int_cst (tree type, poly_int64 cst)
1391 {
1392 /* Support legacy code. */
1393 if (!type)
1394 type = integer_type_node;
1395
1396 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1397 }
1398
1399 /* Create a constant tree that contains CST zero-extended to TYPE. */
1400
1401 tree
1402 build_int_cstu (tree type, poly_uint64 cst)
1403 {
1404 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1405 }
1406
1407 /* Create a constant tree that contains CST sign-extended to TYPE. */
1408
1409 tree
1410 build_int_cst_type (tree type, poly_int64 cst)
1411 {
1412 gcc_assert (type);
1413 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1414 }
1415
1416 /* Constructs tree in type TYPE from with value given by CST. Signedness
1417 of CST is assumed to be the same as the signedness of TYPE. */
1418
1419 tree
1420 double_int_to_tree (tree type, double_int cst)
1421 {
1422 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1423 }
1424
1425 /* We force the wide_int CST to the range of the type TYPE by sign or
1426 zero extending it. OVERFLOWABLE indicates if we are interested in
1427 overflow of the value, when >0 we are only interested in signed
1428 overflow, for <0 we are interested in any overflow. OVERFLOWED
1429 indicates whether overflow has already occurred. CONST_OVERFLOWED
1430 indicates whether constant overflow has already occurred. We force
1431 T's value to be within range of T's type (by setting to 0 or 1 all
1432 the bits outside the type's range). We set TREE_OVERFLOWED if,
1433 OVERFLOWED is nonzero,
1434 or OVERFLOWABLE is >0 and signed overflow occurs
1435 or OVERFLOWABLE is <0 and any overflow occurs
1436 We return a new tree node for the extended wide_int. The node
1437 is shared if no overflow flags are set. */
1438
1439
1440 tree
1441 force_fit_type (tree type, const poly_wide_int_ref &cst,
1442 int overflowable, bool overflowed)
1443 {
1444 signop sign = TYPE_SIGN (type);
1445
1446 /* If we need to set overflow flags, return a new unshared node. */
1447 if (overflowed || !wi::fits_to_tree_p (cst, type))
1448 {
1449 if (overflowed
1450 || overflowable < 0
1451 || (overflowable > 0 && sign == SIGNED))
1452 {
1453 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1454 sign);
1455 tree t;
1456 if (tmp.is_constant ())
1457 t = build_new_int_cst (type, tmp.coeffs[0]);
1458 else
1459 {
1460 tree coeffs[NUM_POLY_INT_COEFFS];
1461 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1462 {
1463 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1464 TREE_OVERFLOW (coeffs[i]) = 1;
1465 }
1466 t = build_new_poly_int_cst (type, coeffs);
1467 }
1468 TREE_OVERFLOW (t) = 1;
1469 return t;
1470 }
1471 }
1472
1473 /* Else build a shared node. */
1474 return wide_int_to_tree (type, cst);
1475 }
1476
1477 /* These are the hash table functions for the hash table of INTEGER_CST
1478 nodes of a sizetype. */
1479
1480 /* Return the hash code X, an INTEGER_CST. */
1481
1482 hashval_t
1483 int_cst_hasher::hash (tree x)
1484 {
1485 const_tree const t = x;
1486 hashval_t code = TYPE_UID (TREE_TYPE (t));
1487 int i;
1488
1489 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1490 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1491
1492 return code;
1493 }
1494
1495 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1496 is the same as that given by *Y, which is the same. */
1497
1498 bool
1499 int_cst_hasher::equal (tree x, tree y)
1500 {
1501 const_tree const xt = x;
1502 const_tree const yt = y;
1503
1504 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1505 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1506 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1507 return false;
1508
1509 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1510 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1511 return false;
1512
1513 return true;
1514 }
1515
1516 /* Cache wide_int CST into the TYPE_CACHED_VALUES cache for TYPE.
1517 SLOT is the slot entry to store it in, and MAX_SLOTS is the maximum
1518 number of slots that can be cached for the type. */
1519
1520 static inline tree
1521 cache_wide_int_in_type_cache (tree type, const wide_int &cst,
1522 int slot, int max_slots)
1523 {
1524 gcc_checking_assert (slot >= 0);
1525 /* Initialize cache. */
1526 if (!TYPE_CACHED_VALUES_P (type))
1527 {
1528 TYPE_CACHED_VALUES_P (type) = 1;
1529 TYPE_CACHED_VALUES (type) = make_tree_vec (max_slots);
1530 }
1531 tree t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), slot);
1532 if (!t)
1533 {
1534 /* Create a new shared int. */
1535 t = build_new_int_cst (type, cst);
1536 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), slot) = t;
1537 }
1538 return t;
1539 }
1540
1541 /* Create an INT_CST node of TYPE and value CST.
1542 The returned node is always shared. For small integers we use a
1543 per-type vector cache, for larger ones we use a single hash table.
1544 The value is extended from its precision according to the sign of
1545 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1546 the upper bits and ensures that hashing and value equality based
1547 upon the underlying HOST_WIDE_INTs works without masking. */
1548
1549 static tree
1550 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1551 {
1552 tree t;
1553 int ix = -1;
1554 int limit = 0;
1555
1556 gcc_assert (type);
1557 unsigned int prec = TYPE_PRECISION (type);
1558 signop sgn = TYPE_SIGN (type);
1559
1560 /* Verify that everything is canonical. */
1561 int l = pcst.get_len ();
1562 if (l > 1)
1563 {
1564 if (pcst.elt (l - 1) == 0)
1565 gcc_checking_assert (pcst.elt (l - 2) < 0);
1566 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1567 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1568 }
1569
1570 wide_int cst = wide_int::from (pcst, prec, sgn);
1571 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1572
1573 enum tree_code code = TREE_CODE (type);
1574 if (code == POINTER_TYPE || code == REFERENCE_TYPE)
1575 {
1576 /* Cache NULL pointer and zero bounds. */
1577 if (cst == 0)
1578 ix = 0;
1579 /* Cache upper bounds of pointers. */
1580 else if (cst == wi::max_value (prec, sgn))
1581 ix = 1;
1582 /* Cache 1 which is used for a non-zero range. */
1583 else if (cst == 1)
1584 ix = 2;
1585
1586 if (ix >= 0)
1587 {
1588 t = cache_wide_int_in_type_cache (type, cst, ix, 3);
1589 /* Make sure no one is clobbering the shared constant. */
1590 gcc_checking_assert (TREE_TYPE (t) == type
1591 && cst == wi::to_wide (t));
1592 return t;
1593 }
1594 }
1595 if (ext_len == 1)
1596 {
1597 /* We just need to store a single HOST_WIDE_INT. */
1598 HOST_WIDE_INT hwi;
1599 if (TYPE_UNSIGNED (type))
1600 hwi = cst.to_uhwi ();
1601 else
1602 hwi = cst.to_shwi ();
1603
1604 switch (code)
1605 {
1606 case NULLPTR_TYPE:
1607 gcc_assert (hwi == 0);
1608 /* Fallthru. */
1609
1610 case POINTER_TYPE:
1611 case REFERENCE_TYPE:
1612 /* Ignore pointers, as they were already handled above. */
1613 break;
1614
1615 case BOOLEAN_TYPE:
1616 /* Cache false or true. */
1617 limit = 2;
1618 if (IN_RANGE (hwi, 0, 1))
1619 ix = hwi;
1620 break;
1621
1622 case INTEGER_TYPE:
1623 case OFFSET_TYPE:
1624 if (TYPE_SIGN (type) == UNSIGNED)
1625 {
1626 /* Cache [0, N). */
1627 limit = param_integer_share_limit;
1628 if (IN_RANGE (hwi, 0, param_integer_share_limit - 1))
1629 ix = hwi;
1630 }
1631 else
1632 {
1633 /* Cache [-1, N). */
1634 limit = param_integer_share_limit + 1;
1635 if (IN_RANGE (hwi, -1, param_integer_share_limit - 1))
1636 ix = hwi + 1;
1637 }
1638 break;
1639
1640 case ENUMERAL_TYPE:
1641 break;
1642
1643 default:
1644 gcc_unreachable ();
1645 }
1646
1647 if (ix >= 0)
1648 {
1649 t = cache_wide_int_in_type_cache (type, cst, ix, limit);
1650 /* Make sure no one is clobbering the shared constant. */
1651 gcc_checking_assert (TREE_TYPE (t) == type
1652 && TREE_INT_CST_NUNITS (t) == 1
1653 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1654 && TREE_INT_CST_EXT_NUNITS (t) == 1
1655 && TREE_INT_CST_ELT (t, 0) == hwi);
1656 return t;
1657 }
1658 else
1659 {
1660 /* Use the cache of larger shared ints, using int_cst_node as
1661 a temporary. */
1662
1663 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1664 TREE_TYPE (int_cst_node) = type;
1665
1666 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1667 t = *slot;
1668 if (!t)
1669 {
1670 /* Insert this one into the hash table. */
1671 t = int_cst_node;
1672 *slot = t;
1673 /* Make a new node for next time round. */
1674 int_cst_node = make_int_cst (1, 1);
1675 }
1676 }
1677 }
1678 else
1679 {
1680 /* The value either hashes properly or we drop it on the floor
1681 for the gc to take care of. There will not be enough of them
1682 to worry about. */
1683
1684 tree nt = build_new_int_cst (type, cst);
1685 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1686 t = *slot;
1687 if (!t)
1688 {
1689 /* Insert this one into the hash table. */
1690 t = nt;
1691 *slot = t;
1692 }
1693 else
1694 ggc_free (nt);
1695 }
1696
1697 return t;
1698 }
1699
1700 hashval_t
1701 poly_int_cst_hasher::hash (tree t)
1702 {
1703 inchash::hash hstate;
1704
1705 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1706 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1707 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1708
1709 return hstate.end ();
1710 }
1711
1712 bool
1713 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1714 {
1715 if (TREE_TYPE (x) != y.first)
1716 return false;
1717 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1718 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1719 return false;
1720 return true;
1721 }
1722
1723 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1724 The elements must also have type TYPE. */
1725
1726 tree
1727 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1728 {
1729 unsigned int prec = TYPE_PRECISION (type);
1730 gcc_assert (prec <= values.coeffs[0].get_precision ());
1731 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1732
1733 inchash::hash h;
1734 h.add_int (TYPE_UID (type));
1735 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1736 h.add_wide_int (c.coeffs[i]);
1737 poly_int_cst_hasher::compare_type comp (type, &c);
1738 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1739 INSERT);
1740 if (*slot == NULL_TREE)
1741 {
1742 tree coeffs[NUM_POLY_INT_COEFFS];
1743 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1744 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1745 *slot = build_new_poly_int_cst (type, coeffs);
1746 }
1747 return *slot;
1748 }
1749
1750 /* Create a constant tree with value VALUE in type TYPE. */
1751
1752 tree
1753 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1754 {
1755 if (value.is_constant ())
1756 return wide_int_to_tree_1 (type, value.coeffs[0]);
1757 return build_poly_int_cst (type, value);
1758 }
1759
1760 /* Insert INTEGER_CST T into a cache of integer constants. And return
1761 the cached constant (which may or may not be T). If MIGHT_DUPLICATE
1762 is false, and T falls into the type's 'smaller values' range, there
1763 cannot be an existing entry. Otherwise, if MIGHT_DUPLICATE is true,
1764 or the value is large, should an existing entry exist, it is
1765 returned (rather than inserting T). */
1766
1767 tree
1768 cache_integer_cst (tree t, bool might_duplicate ATTRIBUTE_UNUSED)
1769 {
1770 tree type = TREE_TYPE (t);
1771 int ix = -1;
1772 int limit = 0;
1773 int prec = TYPE_PRECISION (type);
1774
1775 gcc_assert (!TREE_OVERFLOW (t));
1776
1777 /* The caching indices here must match those in
1778 wide_int_to_type_1. */
1779 switch (TREE_CODE (type))
1780 {
1781 case NULLPTR_TYPE:
1782 gcc_checking_assert (integer_zerop (t));
1783 /* Fallthru. */
1784
1785 case POINTER_TYPE:
1786 case REFERENCE_TYPE:
1787 {
1788 if (integer_zerop (t))
1789 ix = 0;
1790 else if (integer_onep (t))
1791 ix = 2;
1792
1793 if (ix >= 0)
1794 limit = 3;
1795 }
1796 break;
1797
1798 case BOOLEAN_TYPE:
1799 /* Cache false or true. */
1800 limit = 2;
1801 if (wi::ltu_p (wi::to_wide (t), 2))
1802 ix = TREE_INT_CST_ELT (t, 0);
1803 break;
1804
1805 case INTEGER_TYPE:
1806 case OFFSET_TYPE:
1807 if (TYPE_UNSIGNED (type))
1808 {
1809 /* Cache 0..N */
1810 limit = param_integer_share_limit;
1811
1812 /* This is a little hokie, but if the prec is smaller than
1813 what is necessary to hold param_integer_share_limit, then the
1814 obvious test will not get the correct answer. */
1815 if (prec < HOST_BITS_PER_WIDE_INT)
1816 {
1817 if (tree_to_uhwi (t)
1818 < (unsigned HOST_WIDE_INT) param_integer_share_limit)
1819 ix = tree_to_uhwi (t);
1820 }
1821 else if (wi::ltu_p (wi::to_wide (t), param_integer_share_limit))
1822 ix = tree_to_uhwi (t);
1823 }
1824 else
1825 {
1826 /* Cache -1..N */
1827 limit = param_integer_share_limit + 1;
1828
1829 if (integer_minus_onep (t))
1830 ix = 0;
1831 else if (!wi::neg_p (wi::to_wide (t)))
1832 {
1833 if (prec < HOST_BITS_PER_WIDE_INT)
1834 {
1835 if (tree_to_shwi (t) < param_integer_share_limit)
1836 ix = tree_to_shwi (t) + 1;
1837 }
1838 else if (wi::ltu_p (wi::to_wide (t), param_integer_share_limit))
1839 ix = tree_to_shwi (t) + 1;
1840 }
1841 }
1842 break;
1843
1844 case ENUMERAL_TYPE:
1845 /* The slot used by TYPE_CACHED_VALUES is used for the enum
1846 members. */
1847 break;
1848
1849 default:
1850 gcc_unreachable ();
1851 }
1852
1853 if (ix >= 0)
1854 {
1855 /* Look for it in the type's vector of small shared ints. */
1856 if (!TYPE_CACHED_VALUES_P (type))
1857 {
1858 TYPE_CACHED_VALUES_P (type) = 1;
1859 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1860 }
1861
1862 if (tree r = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix))
1863 {
1864 gcc_checking_assert (might_duplicate);
1865 t = r;
1866 }
1867 else
1868 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1869 }
1870 else
1871 {
1872 /* Use the cache of larger shared ints. */
1873 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1874 if (tree r = *slot)
1875 {
1876 /* If there is already an entry for the number verify it's the
1877 same value. */
1878 gcc_checking_assert (wi::to_wide (tree (r)) == wi::to_wide (t));
1879 /* And return the cached value. */
1880 t = r;
1881 }
1882 else
1883 /* Otherwise insert this one into the hash table. */
1884 *slot = t;
1885 }
1886
1887 return t;
1888 }
1889
1890
1891 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1892 and the rest are zeros. */
1893
1894 tree
1895 build_low_bits_mask (tree type, unsigned bits)
1896 {
1897 gcc_assert (bits <= TYPE_PRECISION (type));
1898
1899 return wide_int_to_tree (type, wi::mask (bits, false,
1900 TYPE_PRECISION (type)));
1901 }
1902
1903 /* Checks that X is integer constant that can be expressed in (unsigned)
1904 HOST_WIDE_INT without loss of precision. */
1905
1906 bool
1907 cst_and_fits_in_hwi (const_tree x)
1908 {
1909 return (TREE_CODE (x) == INTEGER_CST
1910 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1911 }
1912
1913 /* Build a newly constructed VECTOR_CST with the given values of
1914 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1915
1916 tree
1917 make_vector (unsigned log2_npatterns,
1918 unsigned int nelts_per_pattern MEM_STAT_DECL)
1919 {
1920 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1921 tree t;
1922 unsigned npatterns = 1 << log2_npatterns;
1923 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1924 unsigned length = (sizeof (struct tree_vector)
1925 + (encoded_nelts - 1) * sizeof (tree));
1926
1927 record_node_allocation_statistics (VECTOR_CST, length);
1928
1929 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1930
1931 TREE_SET_CODE (t, VECTOR_CST);
1932 TREE_CONSTANT (t) = 1;
1933 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1934 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1935
1936 return t;
1937 }
1938
1939 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1940 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1941
1942 tree
1943 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1944 {
1945 if (vec_safe_length (v) == 0)
1946 return build_zero_cst (type);
1947
1948 unsigned HOST_WIDE_INT idx, nelts;
1949 tree value;
1950
1951 /* We can't construct a VECTOR_CST for a variable number of elements. */
1952 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1953 tree_vector_builder vec (type, nelts, 1);
1954 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1955 {
1956 if (TREE_CODE (value) == VECTOR_CST)
1957 {
1958 /* If NELTS is constant then this must be too. */
1959 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1960 for (unsigned i = 0; i < sub_nelts; ++i)
1961 vec.quick_push (VECTOR_CST_ELT (value, i));
1962 }
1963 else
1964 vec.quick_push (value);
1965 }
1966 while (vec.length () < nelts)
1967 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1968
1969 return vec.build ();
1970 }
1971
1972 /* Build a vector of type VECTYPE where all the elements are SCs. */
1973 tree
1974 build_vector_from_val (tree vectype, tree sc)
1975 {
1976 unsigned HOST_WIDE_INT i, nunits;
1977
1978 if (sc == error_mark_node)
1979 return sc;
1980
1981 /* Verify that the vector type is suitable for SC. Note that there
1982 is some inconsistency in the type-system with respect to restrict
1983 qualifications of pointers. Vector types always have a main-variant
1984 element type and the qualification is applied to the vector-type.
1985 So TREE_TYPE (vector-type) does not return a properly qualified
1986 vector element-type. */
1987 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1988 TREE_TYPE (vectype)));
1989
1990 if (CONSTANT_CLASS_P (sc))
1991 {
1992 tree_vector_builder v (vectype, 1, 1);
1993 v.quick_push (sc);
1994 return v.build ();
1995 }
1996 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1997 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1998 else
1999 {
2000 vec<constructor_elt, va_gc> *v;
2001 vec_alloc (v, nunits);
2002 for (i = 0; i < nunits; ++i)
2003 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
2004 return build_constructor (vectype, v);
2005 }
2006 }
2007
2008 /* If TYPE is not a vector type, just return SC, otherwise return
2009 build_vector_from_val (TYPE, SC). */
2010
2011 tree
2012 build_uniform_cst (tree type, tree sc)
2013 {
2014 if (!VECTOR_TYPE_P (type))
2015 return sc;
2016
2017 return build_vector_from_val (type, sc);
2018 }
2019
2020 /* Build a vector series of type TYPE in which element I has the value
2021 BASE + I * STEP. The result is a constant if BASE and STEP are constant
2022 and a VEC_SERIES_EXPR otherwise. */
2023
2024 tree
2025 build_vec_series (tree type, tree base, tree step)
2026 {
2027 if (integer_zerop (step))
2028 return build_vector_from_val (type, base);
2029 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
2030 {
2031 tree_vector_builder builder (type, 1, 3);
2032 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
2033 wi::to_wide (base) + wi::to_wide (step));
2034 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
2035 wi::to_wide (elt1) + wi::to_wide (step));
2036 builder.quick_push (base);
2037 builder.quick_push (elt1);
2038 builder.quick_push (elt2);
2039 return builder.build ();
2040 }
2041 return build2 (VEC_SERIES_EXPR, type, base, step);
2042 }
2043
2044 /* Return a vector with the same number of units and number of bits
2045 as VEC_TYPE, but in which the elements are a linear series of unsigned
2046 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
2047
2048 tree
2049 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
2050 {
2051 tree index_vec_type = vec_type;
2052 tree index_elt_type = TREE_TYPE (vec_type);
2053 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
2054 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
2055 {
2056 index_elt_type = build_nonstandard_integer_type
2057 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
2058 index_vec_type = build_vector_type (index_elt_type, nunits);
2059 }
2060
2061 tree_vector_builder v (index_vec_type, 1, 3);
2062 for (unsigned int i = 0; i < 3; ++i)
2063 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
2064 return v.build ();
2065 }
2066
2067 /* Return a VECTOR_CST of type VEC_TYPE in which the first NUM_A
2068 elements are A and the rest are B. */
2069
2070 tree
2071 build_vector_a_then_b (tree vec_type, unsigned int num_a, tree a, tree b)
2072 {
2073 gcc_assert (known_le (num_a, TYPE_VECTOR_SUBPARTS (vec_type)));
2074 unsigned int count = constant_lower_bound (TYPE_VECTOR_SUBPARTS (vec_type));
2075 /* Optimize the constant case. */
2076 if ((count & 1) == 0 && TYPE_VECTOR_SUBPARTS (vec_type).is_constant ())
2077 count /= 2;
2078 tree_vector_builder builder (vec_type, count, 2);
2079 for (unsigned int i = 0; i < count * 2; ++i)
2080 builder.quick_push (i < num_a ? a : b);
2081 return builder.build ();
2082 }
2083
2084 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
2085 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
2086
2087 void
2088 recompute_constructor_flags (tree c)
2089 {
2090 unsigned int i;
2091 tree val;
2092 bool constant_p = true;
2093 bool side_effects_p = false;
2094 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2095
2096 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2097 {
2098 /* Mostly ctors will have elts that don't have side-effects, so
2099 the usual case is to scan all the elements. Hence a single
2100 loop for both const and side effects, rather than one loop
2101 each (with early outs). */
2102 if (!TREE_CONSTANT (val))
2103 constant_p = false;
2104 if (TREE_SIDE_EFFECTS (val))
2105 side_effects_p = true;
2106 }
2107
2108 TREE_SIDE_EFFECTS (c) = side_effects_p;
2109 TREE_CONSTANT (c) = constant_p;
2110 }
2111
2112 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
2113 CONSTRUCTOR C. */
2114
2115 void
2116 verify_constructor_flags (tree c)
2117 {
2118 unsigned int i;
2119 tree val;
2120 bool constant_p = TREE_CONSTANT (c);
2121 bool side_effects_p = TREE_SIDE_EFFECTS (c);
2122 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
2123
2124 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
2125 {
2126 if (constant_p && !TREE_CONSTANT (val))
2127 internal_error ("non-constant element in constant CONSTRUCTOR");
2128 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
2129 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
2130 }
2131 }
2132
2133 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2134 are in the vec pointed to by VALS. */
2135 tree
2136 build_constructor (tree type, vec<constructor_elt, va_gc> *vals MEM_STAT_DECL)
2137 {
2138 tree c = make_node (CONSTRUCTOR PASS_MEM_STAT);
2139
2140 TREE_TYPE (c) = type;
2141 CONSTRUCTOR_ELTS (c) = vals;
2142
2143 recompute_constructor_flags (c);
2144
2145 return c;
2146 }
2147
2148 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2149 INDEX and VALUE. */
2150 tree
2151 build_constructor_single (tree type, tree index, tree value)
2152 {
2153 vec<constructor_elt, va_gc> *v;
2154 constructor_elt elt = {index, value};
2155
2156 vec_alloc (v, 1);
2157 v->quick_push (elt);
2158
2159 return build_constructor (type, v);
2160 }
2161
2162
2163 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2164 are in a list pointed to by VALS. */
2165 tree
2166 build_constructor_from_list (tree type, tree vals)
2167 {
2168 tree t;
2169 vec<constructor_elt, va_gc> *v = NULL;
2170
2171 if (vals)
2172 {
2173 vec_alloc (v, list_length (vals));
2174 for (t = vals; t; t = TREE_CHAIN (t))
2175 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2176 }
2177
2178 return build_constructor (type, v);
2179 }
2180
2181 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2182 are in a vector pointed to by VALS. Note that the TREE_PURPOSE
2183 fields in the constructor remain null. */
2184
2185 tree
2186 build_constructor_from_vec (tree type, const vec<tree, va_gc> *vals)
2187 {
2188 vec<constructor_elt, va_gc> *v = NULL;
2189
2190 for (tree t : vals)
2191 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, t);
2192
2193 return build_constructor (type, v);
2194 }
2195
2196 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2197 of elements, provided as index/value pairs. */
2198
2199 tree
2200 build_constructor_va (tree type, int nelts, ...)
2201 {
2202 vec<constructor_elt, va_gc> *v = NULL;
2203 va_list p;
2204
2205 va_start (p, nelts);
2206 vec_alloc (v, nelts);
2207 while (nelts--)
2208 {
2209 tree index = va_arg (p, tree);
2210 tree value = va_arg (p, tree);
2211 CONSTRUCTOR_APPEND_ELT (v, index, value);
2212 }
2213 va_end (p);
2214 return build_constructor (type, v);
2215 }
2216
2217 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2218
2219 tree
2220 build_clobber (tree type)
2221 {
2222 tree clobber = build_constructor (type, NULL);
2223 TREE_THIS_VOLATILE (clobber) = true;
2224 return clobber;
2225 }
2226
2227 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2228
2229 tree
2230 build_fixed (tree type, FIXED_VALUE_TYPE f)
2231 {
2232 tree v;
2233 FIXED_VALUE_TYPE *fp;
2234
2235 v = make_node (FIXED_CST);
2236 fp = ggc_alloc<fixed_value> ();
2237 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2238
2239 TREE_TYPE (v) = type;
2240 TREE_FIXED_CST_PTR (v) = fp;
2241 return v;
2242 }
2243
2244 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2245
2246 tree
2247 build_real (tree type, REAL_VALUE_TYPE d)
2248 {
2249 tree v;
2250 REAL_VALUE_TYPE *dp;
2251 int overflow = 0;
2252
2253 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2254 Consider doing it via real_convert now. */
2255
2256 v = make_node (REAL_CST);
2257 dp = ggc_alloc<real_value> ();
2258 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2259
2260 TREE_TYPE (v) = type;
2261 TREE_REAL_CST_PTR (v) = dp;
2262 TREE_OVERFLOW (v) = overflow;
2263 return v;
2264 }
2265
2266 /* Like build_real, but first truncate D to the type. */
2267
2268 tree
2269 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2270 {
2271 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2272 }
2273
2274 /* Return a new REAL_CST node whose type is TYPE
2275 and whose value is the integer value of the INTEGER_CST node I. */
2276
2277 REAL_VALUE_TYPE
2278 real_value_from_int_cst (const_tree type, const_tree i)
2279 {
2280 REAL_VALUE_TYPE d;
2281
2282 /* Clear all bits of the real value type so that we can later do
2283 bitwise comparisons to see if two values are the same. */
2284 memset (&d, 0, sizeof d);
2285
2286 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2287 TYPE_SIGN (TREE_TYPE (i)));
2288 return d;
2289 }
2290
2291 /* Given a tree representing an integer constant I, return a tree
2292 representing the same value as a floating-point constant of type TYPE. */
2293
2294 tree
2295 build_real_from_int_cst (tree type, const_tree i)
2296 {
2297 tree v;
2298 int overflow = TREE_OVERFLOW (i);
2299
2300 v = build_real (type, real_value_from_int_cst (type, i));
2301
2302 TREE_OVERFLOW (v) |= overflow;
2303 return v;
2304 }
2305
2306 /* Return a new REAL_CST node whose type is TYPE
2307 and whose value is the integer value I which has sign SGN. */
2308
2309 tree
2310 build_real_from_wide (tree type, const wide_int_ref &i, signop sgn)
2311 {
2312 REAL_VALUE_TYPE d;
2313
2314 /* Clear all bits of the real value type so that we can later do
2315 bitwise comparisons to see if two values are the same. */
2316 memset (&d, 0, sizeof d);
2317
2318 real_from_integer (&d, TYPE_MODE (type), i, sgn);
2319 return build_real (type, d);
2320 }
2321
2322 /* Return a newly constructed STRING_CST node whose value is the LEN
2323 characters at STR when STR is nonnull, or all zeros otherwise.
2324 Note that for a C string literal, LEN should include the trailing NUL.
2325 The TREE_TYPE is not initialized. */
2326
2327 tree
2328 build_string (unsigned len, const char *str /*= NULL */)
2329 {
2330 /* Do not waste bytes provided by padding of struct tree_string. */
2331 unsigned size = len + offsetof (struct tree_string, str) + 1;
2332
2333 record_node_allocation_statistics (STRING_CST, size);
2334
2335 tree s = (tree) ggc_internal_alloc (size);
2336
2337 memset (s, 0, sizeof (struct tree_typed));
2338 TREE_SET_CODE (s, STRING_CST);
2339 TREE_CONSTANT (s) = 1;
2340 TREE_STRING_LENGTH (s) = len;
2341 if (str)
2342 memcpy (s->string.str, str, len);
2343 else
2344 memset (s->string.str, 0, len);
2345 s->string.str[len] = '\0';
2346
2347 return s;
2348 }
2349
2350 /* Return a newly constructed COMPLEX_CST node whose value is
2351 specified by the real and imaginary parts REAL and IMAG.
2352 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2353 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2354
2355 tree
2356 build_complex (tree type, tree real, tree imag)
2357 {
2358 gcc_assert (CONSTANT_CLASS_P (real));
2359 gcc_assert (CONSTANT_CLASS_P (imag));
2360
2361 tree t = make_node (COMPLEX_CST);
2362
2363 TREE_REALPART (t) = real;
2364 TREE_IMAGPART (t) = imag;
2365 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2366 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2367 return t;
2368 }
2369
2370 /* Build a complex (inf +- 0i), such as for the result of cproj.
2371 TYPE is the complex tree type of the result. If NEG is true, the
2372 imaginary zero is negative. */
2373
2374 tree
2375 build_complex_inf (tree type, bool neg)
2376 {
2377 REAL_VALUE_TYPE rinf, rzero = dconst0;
2378
2379 real_inf (&rinf);
2380 rzero.sign = neg;
2381 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2382 build_real (TREE_TYPE (type), rzero));
2383 }
2384
2385 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2386 element is set to 1. In particular, this is 1 + i for complex types. */
2387
2388 tree
2389 build_each_one_cst (tree type)
2390 {
2391 if (TREE_CODE (type) == COMPLEX_TYPE)
2392 {
2393 tree scalar = build_one_cst (TREE_TYPE (type));
2394 return build_complex (type, scalar, scalar);
2395 }
2396 else
2397 return build_one_cst (type);
2398 }
2399
2400 /* Return a constant of arithmetic type TYPE which is the
2401 multiplicative identity of the set TYPE. */
2402
2403 tree
2404 build_one_cst (tree type)
2405 {
2406 switch (TREE_CODE (type))
2407 {
2408 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2409 case POINTER_TYPE: case REFERENCE_TYPE:
2410 case OFFSET_TYPE:
2411 return build_int_cst (type, 1);
2412
2413 case REAL_TYPE:
2414 return build_real (type, dconst1);
2415
2416 case FIXED_POINT_TYPE:
2417 /* We can only generate 1 for accum types. */
2418 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2419 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2420
2421 case VECTOR_TYPE:
2422 {
2423 tree scalar = build_one_cst (TREE_TYPE (type));
2424
2425 return build_vector_from_val (type, scalar);
2426 }
2427
2428 case COMPLEX_TYPE:
2429 return build_complex (type,
2430 build_one_cst (TREE_TYPE (type)),
2431 build_zero_cst (TREE_TYPE (type)));
2432
2433 default:
2434 gcc_unreachable ();
2435 }
2436 }
2437
2438 /* Return an integer of type TYPE containing all 1's in as much precision as
2439 it contains, or a complex or vector whose subparts are such integers. */
2440
2441 tree
2442 build_all_ones_cst (tree type)
2443 {
2444 if (TREE_CODE (type) == COMPLEX_TYPE)
2445 {
2446 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2447 return build_complex (type, scalar, scalar);
2448 }
2449 else
2450 return build_minus_one_cst (type);
2451 }
2452
2453 /* Return a constant of arithmetic type TYPE which is the
2454 opposite of the multiplicative identity of the set TYPE. */
2455
2456 tree
2457 build_minus_one_cst (tree type)
2458 {
2459 switch (TREE_CODE (type))
2460 {
2461 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2462 case POINTER_TYPE: case REFERENCE_TYPE:
2463 case OFFSET_TYPE:
2464 return build_int_cst (type, -1);
2465
2466 case REAL_TYPE:
2467 return build_real (type, dconstm1);
2468
2469 case FIXED_POINT_TYPE:
2470 /* We can only generate 1 for accum types. */
2471 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2472 return build_fixed (type,
2473 fixed_from_double_int (double_int_minus_one,
2474 SCALAR_TYPE_MODE (type)));
2475
2476 case VECTOR_TYPE:
2477 {
2478 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2479
2480 return build_vector_from_val (type, scalar);
2481 }
2482
2483 case COMPLEX_TYPE:
2484 return build_complex (type,
2485 build_minus_one_cst (TREE_TYPE (type)),
2486 build_zero_cst (TREE_TYPE (type)));
2487
2488 default:
2489 gcc_unreachable ();
2490 }
2491 }
2492
2493 /* Build 0 constant of type TYPE. This is used by constructor folding
2494 and thus the constant should be represented in memory by
2495 zero(es). */
2496
2497 tree
2498 build_zero_cst (tree type)
2499 {
2500 switch (TREE_CODE (type))
2501 {
2502 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2503 case POINTER_TYPE: case REFERENCE_TYPE:
2504 case OFFSET_TYPE: case NULLPTR_TYPE:
2505 return build_int_cst (type, 0);
2506
2507 case REAL_TYPE:
2508 return build_real (type, dconst0);
2509
2510 case FIXED_POINT_TYPE:
2511 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2512
2513 case VECTOR_TYPE:
2514 {
2515 tree scalar = build_zero_cst (TREE_TYPE (type));
2516
2517 return build_vector_from_val (type, scalar);
2518 }
2519
2520 case COMPLEX_TYPE:
2521 {
2522 tree zero = build_zero_cst (TREE_TYPE (type));
2523
2524 return build_complex (type, zero, zero);
2525 }
2526
2527 default:
2528 if (!AGGREGATE_TYPE_P (type))
2529 return fold_convert (type, integer_zero_node);
2530 return build_constructor (type, NULL);
2531 }
2532 }
2533
2534
2535 /* Build a BINFO with LEN language slots. */
2536
2537 tree
2538 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2539 {
2540 tree t;
2541 size_t length = (offsetof (struct tree_binfo, base_binfos)
2542 + vec<tree, va_gc>::embedded_size (base_binfos));
2543
2544 record_node_allocation_statistics (TREE_BINFO, length);
2545
2546 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2547
2548 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2549
2550 TREE_SET_CODE (t, TREE_BINFO);
2551
2552 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2553
2554 return t;
2555 }
2556
2557 /* Create a CASE_LABEL_EXPR tree node and return it. */
2558
2559 tree
2560 build_case_label (tree low_value, tree high_value, tree label_decl)
2561 {
2562 tree t = make_node (CASE_LABEL_EXPR);
2563
2564 TREE_TYPE (t) = void_type_node;
2565 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2566
2567 CASE_LOW (t) = low_value;
2568 CASE_HIGH (t) = high_value;
2569 CASE_LABEL (t) = label_decl;
2570 CASE_CHAIN (t) = NULL_TREE;
2571
2572 return t;
2573 }
2574
2575 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2576 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2577 The latter determines the length of the HOST_WIDE_INT vector. */
2578
2579 tree
2580 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2581 {
2582 tree t;
2583 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2584 + sizeof (struct tree_int_cst));
2585
2586 gcc_assert (len);
2587 record_node_allocation_statistics (INTEGER_CST, length);
2588
2589 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2590
2591 TREE_SET_CODE (t, INTEGER_CST);
2592 TREE_INT_CST_NUNITS (t) = len;
2593 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2594 /* to_offset can only be applied to trees that are offset_int-sized
2595 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2596 must be exactly the precision of offset_int and so LEN is correct. */
2597 if (ext_len <= OFFSET_INT_ELTS)
2598 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2599 else
2600 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2601
2602 TREE_CONSTANT (t) = 1;
2603
2604 return t;
2605 }
2606
2607 /* Build a newly constructed TREE_VEC node of length LEN. */
2608
2609 tree
2610 make_tree_vec (int len MEM_STAT_DECL)
2611 {
2612 tree t;
2613 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2614
2615 record_node_allocation_statistics (TREE_VEC, length);
2616
2617 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2618
2619 TREE_SET_CODE (t, TREE_VEC);
2620 TREE_VEC_LENGTH (t) = len;
2621
2622 return t;
2623 }
2624
2625 /* Grow a TREE_VEC node to new length LEN. */
2626
2627 tree
2628 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2629 {
2630 gcc_assert (TREE_CODE (v) == TREE_VEC);
2631
2632 int oldlen = TREE_VEC_LENGTH (v);
2633 gcc_assert (len > oldlen);
2634
2635 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2636 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2637
2638 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2639
2640 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2641
2642 TREE_VEC_LENGTH (v) = len;
2643
2644 return v;
2645 }
2646 \f
2647 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2648 fixed, and scalar, complex or vector. */
2649
2650 bool
2651 zerop (const_tree expr)
2652 {
2653 return (integer_zerop (expr)
2654 || real_zerop (expr)
2655 || fixed_zerop (expr));
2656 }
2657
2658 /* Return 1 if EXPR is the integer constant zero or a complex constant
2659 of zero, or a location wrapper for such a constant. */
2660
2661 bool
2662 integer_zerop (const_tree expr)
2663 {
2664 STRIP_ANY_LOCATION_WRAPPER (expr);
2665
2666 switch (TREE_CODE (expr))
2667 {
2668 case INTEGER_CST:
2669 return wi::to_wide (expr) == 0;
2670 case COMPLEX_CST:
2671 return (integer_zerop (TREE_REALPART (expr))
2672 && integer_zerop (TREE_IMAGPART (expr)));
2673 case VECTOR_CST:
2674 return (VECTOR_CST_NPATTERNS (expr) == 1
2675 && VECTOR_CST_DUPLICATE_P (expr)
2676 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2677 default:
2678 return false;
2679 }
2680 }
2681
2682 /* Return 1 if EXPR is the integer constant one or the corresponding
2683 complex constant, or a location wrapper for such a constant. */
2684
2685 bool
2686 integer_onep (const_tree expr)
2687 {
2688 STRIP_ANY_LOCATION_WRAPPER (expr);
2689
2690 switch (TREE_CODE (expr))
2691 {
2692 case INTEGER_CST:
2693 return wi::eq_p (wi::to_widest (expr), 1);
2694 case COMPLEX_CST:
2695 return (integer_onep (TREE_REALPART (expr))
2696 && integer_zerop (TREE_IMAGPART (expr)));
2697 case VECTOR_CST:
2698 return (VECTOR_CST_NPATTERNS (expr) == 1
2699 && VECTOR_CST_DUPLICATE_P (expr)
2700 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2701 default:
2702 return false;
2703 }
2704 }
2705
2706 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2707 return 1 if every piece is the integer constant one.
2708 Also return 1 for location wrappers for such a constant. */
2709
2710 bool
2711 integer_each_onep (const_tree expr)
2712 {
2713 STRIP_ANY_LOCATION_WRAPPER (expr);
2714
2715 if (TREE_CODE (expr) == COMPLEX_CST)
2716 return (integer_onep (TREE_REALPART (expr))
2717 && integer_onep (TREE_IMAGPART (expr)));
2718 else
2719 return integer_onep (expr);
2720 }
2721
2722 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2723 it contains, or a complex or vector whose subparts are such integers,
2724 or a location wrapper for such a constant. */
2725
2726 bool
2727 integer_all_onesp (const_tree expr)
2728 {
2729 STRIP_ANY_LOCATION_WRAPPER (expr);
2730
2731 if (TREE_CODE (expr) == COMPLEX_CST
2732 && integer_all_onesp (TREE_REALPART (expr))
2733 && integer_all_onesp (TREE_IMAGPART (expr)))
2734 return true;
2735
2736 else if (TREE_CODE (expr) == VECTOR_CST)
2737 return (VECTOR_CST_NPATTERNS (expr) == 1
2738 && VECTOR_CST_DUPLICATE_P (expr)
2739 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2740
2741 else if (TREE_CODE (expr) != INTEGER_CST)
2742 return false;
2743
2744 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2745 == wi::to_wide (expr));
2746 }
2747
2748 /* Return 1 if EXPR is the integer constant minus one, or a location wrapper
2749 for such a constant. */
2750
2751 bool
2752 integer_minus_onep (const_tree expr)
2753 {
2754 STRIP_ANY_LOCATION_WRAPPER (expr);
2755
2756 if (TREE_CODE (expr) == COMPLEX_CST)
2757 return (integer_all_onesp (TREE_REALPART (expr))
2758 && integer_zerop (TREE_IMAGPART (expr)));
2759 else
2760 return integer_all_onesp (expr);
2761 }
2762
2763 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2764 one bit on), or a location wrapper for such a constant. */
2765
2766 bool
2767 integer_pow2p (const_tree expr)
2768 {
2769 STRIP_ANY_LOCATION_WRAPPER (expr);
2770
2771 if (TREE_CODE (expr) == COMPLEX_CST
2772 && integer_pow2p (TREE_REALPART (expr))
2773 && integer_zerop (TREE_IMAGPART (expr)))
2774 return true;
2775
2776 if (TREE_CODE (expr) != INTEGER_CST)
2777 return false;
2778
2779 return wi::popcount (wi::to_wide (expr)) == 1;
2780 }
2781
2782 /* Return 1 if EXPR is an integer constant other than zero or a
2783 complex constant other than zero, or a location wrapper for such a
2784 constant. */
2785
2786 bool
2787 integer_nonzerop (const_tree expr)
2788 {
2789 STRIP_ANY_LOCATION_WRAPPER (expr);
2790
2791 return ((TREE_CODE (expr) == INTEGER_CST
2792 && wi::to_wide (expr) != 0)
2793 || (TREE_CODE (expr) == COMPLEX_CST
2794 && (integer_nonzerop (TREE_REALPART (expr))
2795 || integer_nonzerop (TREE_IMAGPART (expr)))));
2796 }
2797
2798 /* Return 1 if EXPR is the integer constant one. For vector,
2799 return 1 if every piece is the integer constant minus one
2800 (representing the value TRUE).
2801 Also return 1 for location wrappers for such a constant. */
2802
2803 bool
2804 integer_truep (const_tree expr)
2805 {
2806 STRIP_ANY_LOCATION_WRAPPER (expr);
2807
2808 if (TREE_CODE (expr) == VECTOR_CST)
2809 return integer_all_onesp (expr);
2810 return integer_onep (expr);
2811 }
2812
2813 /* Return 1 if EXPR is the fixed-point constant zero, or a location wrapper
2814 for such a constant. */
2815
2816 bool
2817 fixed_zerop (const_tree expr)
2818 {
2819 STRIP_ANY_LOCATION_WRAPPER (expr);
2820
2821 return (TREE_CODE (expr) == FIXED_CST
2822 && TREE_FIXED_CST (expr).data.is_zero ());
2823 }
2824
2825 /* Return the power of two represented by a tree node known to be a
2826 power of two. */
2827
2828 int
2829 tree_log2 (const_tree expr)
2830 {
2831 if (TREE_CODE (expr) == COMPLEX_CST)
2832 return tree_log2 (TREE_REALPART (expr));
2833
2834 return wi::exact_log2 (wi::to_wide (expr));
2835 }
2836
2837 /* Similar, but return the largest integer Y such that 2 ** Y is less
2838 than or equal to EXPR. */
2839
2840 int
2841 tree_floor_log2 (const_tree expr)
2842 {
2843 if (TREE_CODE (expr) == COMPLEX_CST)
2844 return tree_log2 (TREE_REALPART (expr));
2845
2846 return wi::floor_log2 (wi::to_wide (expr));
2847 }
2848
2849 /* Return number of known trailing zero bits in EXPR, or, if the value of
2850 EXPR is known to be zero, the precision of it's type. */
2851
2852 unsigned int
2853 tree_ctz (const_tree expr)
2854 {
2855 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2856 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2857 return 0;
2858
2859 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2860 switch (TREE_CODE (expr))
2861 {
2862 case INTEGER_CST:
2863 ret1 = wi::ctz (wi::to_wide (expr));
2864 return MIN (ret1, prec);
2865 case SSA_NAME:
2866 ret1 = wi::ctz (get_nonzero_bits (expr));
2867 return MIN (ret1, prec);
2868 case PLUS_EXPR:
2869 case MINUS_EXPR:
2870 case BIT_IOR_EXPR:
2871 case BIT_XOR_EXPR:
2872 case MIN_EXPR:
2873 case MAX_EXPR:
2874 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2875 if (ret1 == 0)
2876 return ret1;
2877 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2878 return MIN (ret1, ret2);
2879 case POINTER_PLUS_EXPR:
2880 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2881 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2882 /* Second operand is sizetype, which could be in theory
2883 wider than pointer's precision. Make sure we never
2884 return more than prec. */
2885 ret2 = MIN (ret2, prec);
2886 return MIN (ret1, ret2);
2887 case BIT_AND_EXPR:
2888 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2889 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2890 return MAX (ret1, ret2);
2891 case MULT_EXPR:
2892 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2893 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2894 return MIN (ret1 + ret2, prec);
2895 case LSHIFT_EXPR:
2896 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2897 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2898 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2899 {
2900 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2901 return MIN (ret1 + ret2, prec);
2902 }
2903 return ret1;
2904 case RSHIFT_EXPR:
2905 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2906 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2907 {
2908 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2909 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2910 if (ret1 > ret2)
2911 return ret1 - ret2;
2912 }
2913 return 0;
2914 case TRUNC_DIV_EXPR:
2915 case CEIL_DIV_EXPR:
2916 case FLOOR_DIV_EXPR:
2917 case ROUND_DIV_EXPR:
2918 case EXACT_DIV_EXPR:
2919 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2920 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2921 {
2922 int l = tree_log2 (TREE_OPERAND (expr, 1));
2923 if (l >= 0)
2924 {
2925 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2926 ret2 = l;
2927 if (ret1 > ret2)
2928 return ret1 - ret2;
2929 }
2930 }
2931 return 0;
2932 CASE_CONVERT:
2933 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2934 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2935 ret1 = prec;
2936 return MIN (ret1, prec);
2937 case SAVE_EXPR:
2938 return tree_ctz (TREE_OPERAND (expr, 0));
2939 case COND_EXPR:
2940 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2941 if (ret1 == 0)
2942 return 0;
2943 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2944 return MIN (ret1, ret2);
2945 case COMPOUND_EXPR:
2946 return tree_ctz (TREE_OPERAND (expr, 1));
2947 case ADDR_EXPR:
2948 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2949 if (ret1 > BITS_PER_UNIT)
2950 {
2951 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2952 return MIN (ret1, prec);
2953 }
2954 return 0;
2955 default:
2956 return 0;
2957 }
2958 }
2959
2960 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2961 decimal float constants, so don't return 1 for them.
2962 Also return 1 for location wrappers around such a constant. */
2963
2964 bool
2965 real_zerop (const_tree expr)
2966 {
2967 STRIP_ANY_LOCATION_WRAPPER (expr);
2968
2969 switch (TREE_CODE (expr))
2970 {
2971 case REAL_CST:
2972 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2973 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2974 case COMPLEX_CST:
2975 return real_zerop (TREE_REALPART (expr))
2976 && real_zerop (TREE_IMAGPART (expr));
2977 case VECTOR_CST:
2978 {
2979 /* Don't simply check for a duplicate because the predicate
2980 accepts both +0.0 and -0.0. */
2981 unsigned count = vector_cst_encoded_nelts (expr);
2982 for (unsigned int i = 0; i < count; ++i)
2983 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2984 return false;
2985 return true;
2986 }
2987 default:
2988 return false;
2989 }
2990 }
2991
2992 /* Return 1 if EXPR is the real constant one in real or complex form.
2993 Trailing zeroes matter for decimal float constants, so don't return
2994 1 for them.
2995 Also return 1 for location wrappers around such a constant. */
2996
2997 bool
2998 real_onep (const_tree expr)
2999 {
3000 STRIP_ANY_LOCATION_WRAPPER (expr);
3001
3002 switch (TREE_CODE (expr))
3003 {
3004 case REAL_CST:
3005 return real_equal (&TREE_REAL_CST (expr), &dconst1)
3006 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
3007 case COMPLEX_CST:
3008 return real_onep (TREE_REALPART (expr))
3009 && real_zerop (TREE_IMAGPART (expr));
3010 case VECTOR_CST:
3011 return (VECTOR_CST_NPATTERNS (expr) == 1
3012 && VECTOR_CST_DUPLICATE_P (expr)
3013 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
3014 default:
3015 return false;
3016 }
3017 }
3018
3019 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
3020 matter for decimal float constants, so don't return 1 for them.
3021 Also return 1 for location wrappers around such a constant. */
3022
3023 bool
3024 real_minus_onep (const_tree expr)
3025 {
3026 STRIP_ANY_LOCATION_WRAPPER (expr);
3027
3028 switch (TREE_CODE (expr))
3029 {
3030 case REAL_CST:
3031 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
3032 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
3033 case COMPLEX_CST:
3034 return real_minus_onep (TREE_REALPART (expr))
3035 && real_zerop (TREE_IMAGPART (expr));
3036 case VECTOR_CST:
3037 return (VECTOR_CST_NPATTERNS (expr) == 1
3038 && VECTOR_CST_DUPLICATE_P (expr)
3039 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
3040 default:
3041 return false;
3042 }
3043 }
3044
3045 /* Nonzero if EXP is a constant or a cast of a constant. */
3046
3047 bool
3048 really_constant_p (const_tree exp)
3049 {
3050 /* This is not quite the same as STRIP_NOPS. It does more. */
3051 while (CONVERT_EXPR_P (exp)
3052 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3053 exp = TREE_OPERAND (exp, 0);
3054 return TREE_CONSTANT (exp);
3055 }
3056
3057 /* Return true if T holds a polynomial pointer difference, storing it in
3058 *VALUE if so. A true return means that T's precision is no greater
3059 than 64 bits, which is the largest address space we support, so *VALUE
3060 never loses precision. However, the signedness of the result does
3061 not necessarily match the signedness of T: sometimes an unsigned type
3062 like sizetype is used to encode a value that is actually negative. */
3063
3064 bool
3065 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
3066 {
3067 if (!t)
3068 return false;
3069 if (TREE_CODE (t) == INTEGER_CST)
3070 {
3071 if (!cst_and_fits_in_hwi (t))
3072 return false;
3073 *value = int_cst_value (t);
3074 return true;
3075 }
3076 if (POLY_INT_CST_P (t))
3077 {
3078 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
3079 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
3080 return false;
3081 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
3082 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
3083 return true;
3084 }
3085 return false;
3086 }
3087
3088 poly_int64
3089 tree_to_poly_int64 (const_tree t)
3090 {
3091 gcc_assert (tree_fits_poly_int64_p (t));
3092 if (POLY_INT_CST_P (t))
3093 return poly_int_cst_value (t).force_shwi ();
3094 return TREE_INT_CST_LOW (t);
3095 }
3096
3097 poly_uint64
3098 tree_to_poly_uint64 (const_tree t)
3099 {
3100 gcc_assert (tree_fits_poly_uint64_p (t));
3101 if (POLY_INT_CST_P (t))
3102 return poly_int_cst_value (t).force_uhwi ();
3103 return TREE_INT_CST_LOW (t);
3104 }
3105 \f
3106 /* Return first list element whose TREE_VALUE is ELEM.
3107 Return 0 if ELEM is not in LIST. */
3108
3109 tree
3110 value_member (tree elem, tree list)
3111 {
3112 while (list)
3113 {
3114 if (elem == TREE_VALUE (list))
3115 return list;
3116 list = TREE_CHAIN (list);
3117 }
3118 return NULL_TREE;
3119 }
3120
3121 /* Return first list element whose TREE_PURPOSE is ELEM.
3122 Return 0 if ELEM is not in LIST. */
3123
3124 tree
3125 purpose_member (const_tree elem, tree list)
3126 {
3127 while (list)
3128 {
3129 if (elem == TREE_PURPOSE (list))
3130 return list;
3131 list = TREE_CHAIN (list);
3132 }
3133 return NULL_TREE;
3134 }
3135
3136 /* Return true if ELEM is in V. */
3137
3138 bool
3139 vec_member (const_tree elem, vec<tree, va_gc> *v)
3140 {
3141 unsigned ix;
3142 tree t;
3143 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
3144 if (elem == t)
3145 return true;
3146 return false;
3147 }
3148
3149 /* Returns element number IDX (zero-origin) of chain CHAIN, or
3150 NULL_TREE. */
3151
3152 tree
3153 chain_index (int idx, tree chain)
3154 {
3155 for (; chain && idx > 0; --idx)
3156 chain = TREE_CHAIN (chain);
3157 return chain;
3158 }
3159
3160 /* Return nonzero if ELEM is part of the chain CHAIN. */
3161
3162 bool
3163 chain_member (const_tree elem, const_tree chain)
3164 {
3165 while (chain)
3166 {
3167 if (elem == chain)
3168 return true;
3169 chain = DECL_CHAIN (chain);
3170 }
3171
3172 return false;
3173 }
3174
3175 /* Return the length of a chain of nodes chained through TREE_CHAIN.
3176 We expect a null pointer to mark the end of the chain.
3177 This is the Lisp primitive `length'. */
3178
3179 int
3180 list_length (const_tree t)
3181 {
3182 const_tree p = t;
3183 #ifdef ENABLE_TREE_CHECKING
3184 const_tree q = t;
3185 #endif
3186 int len = 0;
3187
3188 while (p)
3189 {
3190 p = TREE_CHAIN (p);
3191 #ifdef ENABLE_TREE_CHECKING
3192 if (len % 2)
3193 q = TREE_CHAIN (q);
3194 gcc_assert (p != q);
3195 #endif
3196 len++;
3197 }
3198
3199 return len;
3200 }
3201
3202 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3203 UNION_TYPE TYPE, or NULL_TREE if none. */
3204
3205 tree
3206 first_field (const_tree type)
3207 {
3208 tree t = TYPE_FIELDS (type);
3209 while (t && TREE_CODE (t) != FIELD_DECL)
3210 t = TREE_CHAIN (t);
3211 return t;
3212 }
3213
3214 /* Returns the last FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
3215 UNION_TYPE TYPE, or NULL_TREE if none. */
3216
3217 tree
3218 last_field (const_tree type)
3219 {
3220 tree last = NULL_TREE;
3221
3222 for (tree fld = TYPE_FIELDS (type); fld; fld = TREE_CHAIN (fld))
3223 {
3224 if (TREE_CODE (fld) != FIELD_DECL)
3225 continue;
3226
3227 last = fld;
3228 }
3229
3230 return last;
3231 }
3232
3233 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3234 by modifying the last node in chain 1 to point to chain 2.
3235 This is the Lisp primitive `nconc'. */
3236
3237 tree
3238 chainon (tree op1, tree op2)
3239 {
3240 tree t1;
3241
3242 if (!op1)
3243 return op2;
3244 if (!op2)
3245 return op1;
3246
3247 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3248 continue;
3249 TREE_CHAIN (t1) = op2;
3250
3251 #ifdef ENABLE_TREE_CHECKING
3252 {
3253 tree t2;
3254 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3255 gcc_assert (t2 != t1);
3256 }
3257 #endif
3258
3259 return op1;
3260 }
3261
3262 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3263
3264 tree
3265 tree_last (tree chain)
3266 {
3267 tree next;
3268 if (chain)
3269 while ((next = TREE_CHAIN (chain)))
3270 chain = next;
3271 return chain;
3272 }
3273
3274 /* Reverse the order of elements in the chain T,
3275 and return the new head of the chain (old last element). */
3276
3277 tree
3278 nreverse (tree t)
3279 {
3280 tree prev = 0, decl, next;
3281 for (decl = t; decl; decl = next)
3282 {
3283 /* We shouldn't be using this function to reverse BLOCK chains; we
3284 have blocks_nreverse for that. */
3285 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3286 next = TREE_CHAIN (decl);
3287 TREE_CHAIN (decl) = prev;
3288 prev = decl;
3289 }
3290 return prev;
3291 }
3292 \f
3293 /* Return a newly created TREE_LIST node whose
3294 purpose and value fields are PARM and VALUE. */
3295
3296 tree
3297 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3298 {
3299 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3300 TREE_PURPOSE (t) = parm;
3301 TREE_VALUE (t) = value;
3302 return t;
3303 }
3304
3305 /* Build a chain of TREE_LIST nodes from a vector. */
3306
3307 tree
3308 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3309 {
3310 tree ret = NULL_TREE;
3311 tree *pp = &ret;
3312 unsigned int i;
3313 tree t;
3314 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3315 {
3316 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3317 pp = &TREE_CHAIN (*pp);
3318 }
3319 return ret;
3320 }
3321
3322 /* Return a newly created TREE_LIST node whose
3323 purpose and value fields are PURPOSE and VALUE
3324 and whose TREE_CHAIN is CHAIN. */
3325
3326 tree
3327 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3328 {
3329 tree node;
3330
3331 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3332 memset (node, 0, sizeof (struct tree_common));
3333
3334 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3335
3336 TREE_SET_CODE (node, TREE_LIST);
3337 TREE_CHAIN (node) = chain;
3338 TREE_PURPOSE (node) = purpose;
3339 TREE_VALUE (node) = value;
3340 return node;
3341 }
3342
3343 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3344 trees. */
3345
3346 vec<tree, va_gc> *
3347 ctor_to_vec (tree ctor)
3348 {
3349 vec<tree, va_gc> *vec;
3350 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3351 unsigned int ix;
3352 tree val;
3353
3354 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3355 vec->quick_push (val);
3356
3357 return vec;
3358 }
3359 \f
3360 /* Return the size nominally occupied by an object of type TYPE
3361 when it resides in memory. The value is measured in units of bytes,
3362 and its data type is that normally used for type sizes
3363 (which is the first type created by make_signed_type or
3364 make_unsigned_type). */
3365
3366 tree
3367 size_in_bytes_loc (location_t loc, const_tree type)
3368 {
3369 tree t;
3370
3371 if (type == error_mark_node)
3372 return integer_zero_node;
3373
3374 type = TYPE_MAIN_VARIANT (type);
3375 t = TYPE_SIZE_UNIT (type);
3376
3377 if (t == 0)
3378 {
3379 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3380 return size_zero_node;
3381 }
3382
3383 return t;
3384 }
3385
3386 /* Return the size of TYPE (in bytes) as a wide integer
3387 or return -1 if the size can vary or is larger than an integer. */
3388
3389 HOST_WIDE_INT
3390 int_size_in_bytes (const_tree type)
3391 {
3392 tree t;
3393
3394 if (type == error_mark_node)
3395 return 0;
3396
3397 type = TYPE_MAIN_VARIANT (type);
3398 t = TYPE_SIZE_UNIT (type);
3399
3400 if (t && tree_fits_uhwi_p (t))
3401 return TREE_INT_CST_LOW (t);
3402 else
3403 return -1;
3404 }
3405
3406 /* Return the maximum size of TYPE (in bytes) as a wide integer
3407 or return -1 if the size can vary or is larger than an integer. */
3408
3409 HOST_WIDE_INT
3410 max_int_size_in_bytes (const_tree type)
3411 {
3412 HOST_WIDE_INT size = -1;
3413 tree size_tree;
3414
3415 /* If this is an array type, check for a possible MAX_SIZE attached. */
3416
3417 if (TREE_CODE (type) == ARRAY_TYPE)
3418 {
3419 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3420
3421 if (size_tree && tree_fits_uhwi_p (size_tree))
3422 size = tree_to_uhwi (size_tree);
3423 }
3424
3425 /* If we still haven't been able to get a size, see if the language
3426 can compute a maximum size. */
3427
3428 if (size == -1)
3429 {
3430 size_tree = lang_hooks.types.max_size (type);
3431
3432 if (size_tree && tree_fits_uhwi_p (size_tree))
3433 size = tree_to_uhwi (size_tree);
3434 }
3435
3436 return size;
3437 }
3438 \f
3439 /* Return the bit position of FIELD, in bits from the start of the record.
3440 This is a tree of type bitsizetype. */
3441
3442 tree
3443 bit_position (const_tree field)
3444 {
3445 return bit_from_pos (DECL_FIELD_OFFSET (field),
3446 DECL_FIELD_BIT_OFFSET (field));
3447 }
3448 \f
3449 /* Return the byte position of FIELD, in bytes from the start of the record.
3450 This is a tree of type sizetype. */
3451
3452 tree
3453 byte_position (const_tree field)
3454 {
3455 return byte_from_pos (DECL_FIELD_OFFSET (field),
3456 DECL_FIELD_BIT_OFFSET (field));
3457 }
3458
3459 /* Likewise, but return as an integer. It must be representable in
3460 that way (since it could be a signed value, we don't have the
3461 option of returning -1 like int_size_in_byte can. */
3462
3463 HOST_WIDE_INT
3464 int_byte_position (const_tree field)
3465 {
3466 return tree_to_shwi (byte_position (field));
3467 }
3468 \f
3469 /* Return, as a tree node, the number of elements for TYPE (which is an
3470 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3471
3472 tree
3473 array_type_nelts (const_tree type)
3474 {
3475 tree index_type, min, max;
3476
3477 /* If they did it with unspecified bounds, then we should have already
3478 given an error about it before we got here. */
3479 if (! TYPE_DOMAIN (type))
3480 return error_mark_node;
3481
3482 index_type = TYPE_DOMAIN (type);
3483 min = TYPE_MIN_VALUE (index_type);
3484 max = TYPE_MAX_VALUE (index_type);
3485
3486 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3487 if (!max)
3488 {
3489 /* zero sized arrays are represented from C FE as complete types with
3490 NULL TYPE_MAX_VALUE and zero TYPE_SIZE, while C++ FE represents
3491 them as min 0, max -1. */
3492 if (COMPLETE_TYPE_P (type)
3493 && integer_zerop (TYPE_SIZE (type))
3494 && integer_zerop (min))
3495 return build_int_cst (TREE_TYPE (min), -1);
3496
3497 return error_mark_node;
3498 }
3499
3500 return (integer_zerop (min)
3501 ? max
3502 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3503 }
3504 \f
3505 /* If arg is static -- a reference to an object in static storage -- then
3506 return the object. This is not the same as the C meaning of `static'.
3507 If arg isn't static, return NULL. */
3508
3509 tree
3510 staticp (tree arg)
3511 {
3512 switch (TREE_CODE (arg))
3513 {
3514 case FUNCTION_DECL:
3515 /* Nested functions are static, even though taking their address will
3516 involve a trampoline as we unnest the nested function and create
3517 the trampoline on the tree level. */
3518 return arg;
3519
3520 case VAR_DECL:
3521 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3522 && ! DECL_THREAD_LOCAL_P (arg)
3523 && ! DECL_DLLIMPORT_P (arg)
3524 ? arg : NULL);
3525
3526 case CONST_DECL:
3527 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3528 ? arg : NULL);
3529
3530 case CONSTRUCTOR:
3531 return TREE_STATIC (arg) ? arg : NULL;
3532
3533 case LABEL_DECL:
3534 case STRING_CST:
3535 return arg;
3536
3537 case COMPONENT_REF:
3538 /* If the thing being referenced is not a field, then it is
3539 something language specific. */
3540 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3541
3542 /* If we are referencing a bitfield, we can't evaluate an
3543 ADDR_EXPR at compile time and so it isn't a constant. */
3544 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3545 return NULL;
3546
3547 return staticp (TREE_OPERAND (arg, 0));
3548
3549 case BIT_FIELD_REF:
3550 return NULL;
3551
3552 case INDIRECT_REF:
3553 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3554
3555 case ARRAY_REF:
3556 case ARRAY_RANGE_REF:
3557 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3558 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3559 return staticp (TREE_OPERAND (arg, 0));
3560 else
3561 return NULL;
3562
3563 case COMPOUND_LITERAL_EXPR:
3564 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3565
3566 default:
3567 return NULL;
3568 }
3569 }
3570
3571 \f
3572
3573
3574 /* Return whether OP is a DECL whose address is function-invariant. */
3575
3576 bool
3577 decl_address_invariant_p (const_tree op)
3578 {
3579 /* The conditions below are slightly less strict than the one in
3580 staticp. */
3581
3582 switch (TREE_CODE (op))
3583 {
3584 case PARM_DECL:
3585 case RESULT_DECL:
3586 case LABEL_DECL:
3587 case FUNCTION_DECL:
3588 return true;
3589
3590 case VAR_DECL:
3591 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3592 || DECL_THREAD_LOCAL_P (op)
3593 || DECL_CONTEXT (op) == current_function_decl
3594 || decl_function_context (op) == current_function_decl)
3595 return true;
3596 break;
3597
3598 case CONST_DECL:
3599 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3600 || decl_function_context (op) == current_function_decl)
3601 return true;
3602 break;
3603
3604 default:
3605 break;
3606 }
3607
3608 return false;
3609 }
3610
3611 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3612
3613 bool
3614 decl_address_ip_invariant_p (const_tree op)
3615 {
3616 /* The conditions below are slightly less strict than the one in
3617 staticp. */
3618
3619 switch (TREE_CODE (op))
3620 {
3621 case LABEL_DECL:
3622 case FUNCTION_DECL:
3623 case STRING_CST:
3624 return true;
3625
3626 case VAR_DECL:
3627 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3628 && !DECL_DLLIMPORT_P (op))
3629 || DECL_THREAD_LOCAL_P (op))
3630 return true;
3631 break;
3632
3633 case CONST_DECL:
3634 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3635 return true;
3636 break;
3637
3638 default:
3639 break;
3640 }
3641
3642 return false;
3643 }
3644
3645
3646 /* Return true if T is function-invariant (internal function, does
3647 not handle arithmetic; that's handled in skip_simple_arithmetic and
3648 tree_invariant_p). */
3649
3650 static bool
3651 tree_invariant_p_1 (tree t)
3652 {
3653 tree op;
3654
3655 if (TREE_CONSTANT (t)
3656 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3657 return true;
3658
3659 switch (TREE_CODE (t))
3660 {
3661 case SAVE_EXPR:
3662 return true;
3663
3664 case ADDR_EXPR:
3665 op = TREE_OPERAND (t, 0);
3666 while (handled_component_p (op))
3667 {
3668 switch (TREE_CODE (op))
3669 {
3670 case ARRAY_REF:
3671 case ARRAY_RANGE_REF:
3672 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3673 || TREE_OPERAND (op, 2) != NULL_TREE
3674 || TREE_OPERAND (op, 3) != NULL_TREE)
3675 return false;
3676 break;
3677
3678 case COMPONENT_REF:
3679 if (TREE_OPERAND (op, 2) != NULL_TREE)
3680 return false;
3681 break;
3682
3683 default:;
3684 }
3685 op = TREE_OPERAND (op, 0);
3686 }
3687
3688 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3689
3690 default:
3691 break;
3692 }
3693
3694 return false;
3695 }
3696
3697 /* Return true if T is function-invariant. */
3698
3699 bool
3700 tree_invariant_p (tree t)
3701 {
3702 tree inner = skip_simple_arithmetic (t);
3703 return tree_invariant_p_1 (inner);
3704 }
3705
3706 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3707 Do this to any expression which may be used in more than one place,
3708 but must be evaluated only once.
3709
3710 Normally, expand_expr would reevaluate the expression each time.
3711 Calling save_expr produces something that is evaluated and recorded
3712 the first time expand_expr is called on it. Subsequent calls to
3713 expand_expr just reuse the recorded value.
3714
3715 The call to expand_expr that generates code that actually computes
3716 the value is the first call *at compile time*. Subsequent calls
3717 *at compile time* generate code to use the saved value.
3718 This produces correct result provided that *at run time* control
3719 always flows through the insns made by the first expand_expr
3720 before reaching the other places where the save_expr was evaluated.
3721 You, the caller of save_expr, must make sure this is so.
3722
3723 Constants, and certain read-only nodes, are returned with no
3724 SAVE_EXPR because that is safe. Expressions containing placeholders
3725 are not touched; see tree.def for an explanation of what these
3726 are used for. */
3727
3728 tree
3729 save_expr (tree expr)
3730 {
3731 tree inner;
3732
3733 /* If the tree evaluates to a constant, then we don't want to hide that
3734 fact (i.e. this allows further folding, and direct checks for constants).
3735 However, a read-only object that has side effects cannot be bypassed.
3736 Since it is no problem to reevaluate literals, we just return the
3737 literal node. */
3738 inner = skip_simple_arithmetic (expr);
3739 if (TREE_CODE (inner) == ERROR_MARK)
3740 return inner;
3741
3742 if (tree_invariant_p_1 (inner))
3743 return expr;
3744
3745 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3746 it means that the size or offset of some field of an object depends on
3747 the value within another field.
3748
3749 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3750 and some variable since it would then need to be both evaluated once and
3751 evaluated more than once. Front-ends must assure this case cannot
3752 happen by surrounding any such subexpressions in their own SAVE_EXPR
3753 and forcing evaluation at the proper time. */
3754 if (contains_placeholder_p (inner))
3755 return expr;
3756
3757 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3758
3759 /* This expression might be placed ahead of a jump to ensure that the
3760 value was computed on both sides of the jump. So make sure it isn't
3761 eliminated as dead. */
3762 TREE_SIDE_EFFECTS (expr) = 1;
3763 return expr;
3764 }
3765
3766 /* Look inside EXPR into any simple arithmetic operations. Return the
3767 outermost non-arithmetic or non-invariant node. */
3768
3769 tree
3770 skip_simple_arithmetic (tree expr)
3771 {
3772 /* We don't care about whether this can be used as an lvalue in this
3773 context. */
3774 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3775 expr = TREE_OPERAND (expr, 0);
3776
3777 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3778 a constant, it will be more efficient to not make another SAVE_EXPR since
3779 it will allow better simplification and GCSE will be able to merge the
3780 computations if they actually occur. */
3781 while (true)
3782 {
3783 if (UNARY_CLASS_P (expr))
3784 expr = TREE_OPERAND (expr, 0);
3785 else if (BINARY_CLASS_P (expr))
3786 {
3787 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3788 expr = TREE_OPERAND (expr, 0);
3789 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3790 expr = TREE_OPERAND (expr, 1);
3791 else
3792 break;
3793 }
3794 else
3795 break;
3796 }
3797
3798 return expr;
3799 }
3800
3801 /* Look inside EXPR into simple arithmetic operations involving constants.
3802 Return the outermost non-arithmetic or non-constant node. */
3803
3804 tree
3805 skip_simple_constant_arithmetic (tree expr)
3806 {
3807 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3808 expr = TREE_OPERAND (expr, 0);
3809
3810 while (true)
3811 {
3812 if (UNARY_CLASS_P (expr))
3813 expr = TREE_OPERAND (expr, 0);
3814 else if (BINARY_CLASS_P (expr))
3815 {
3816 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3817 expr = TREE_OPERAND (expr, 0);
3818 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3819 expr = TREE_OPERAND (expr, 1);
3820 else
3821 break;
3822 }
3823 else
3824 break;
3825 }
3826
3827 return expr;
3828 }
3829
3830 /* Return which tree structure is used by T. */
3831
3832 enum tree_node_structure_enum
3833 tree_node_structure (const_tree t)
3834 {
3835 const enum tree_code code = TREE_CODE (t);
3836 return tree_node_structure_for_code (code);
3837 }
3838
3839 /* Set various status flags when building a CALL_EXPR object T. */
3840
3841 static void
3842 process_call_operands (tree t)
3843 {
3844 bool side_effects = TREE_SIDE_EFFECTS (t);
3845 bool read_only = false;
3846 int i = call_expr_flags (t);
3847
3848 /* Calls have side-effects, except those to const or pure functions. */
3849 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3850 side_effects = true;
3851 /* Propagate TREE_READONLY of arguments for const functions. */
3852 if (i & ECF_CONST)
3853 read_only = true;
3854
3855 if (!side_effects || read_only)
3856 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3857 {
3858 tree op = TREE_OPERAND (t, i);
3859 if (op && TREE_SIDE_EFFECTS (op))
3860 side_effects = true;
3861 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3862 read_only = false;
3863 }
3864
3865 TREE_SIDE_EFFECTS (t) = side_effects;
3866 TREE_READONLY (t) = read_only;
3867 }
3868 \f
3869 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3870 size or offset that depends on a field within a record. */
3871
3872 bool
3873 contains_placeholder_p (const_tree exp)
3874 {
3875 enum tree_code code;
3876
3877 if (!exp)
3878 return 0;
3879
3880 code = TREE_CODE (exp);
3881 if (code == PLACEHOLDER_EXPR)
3882 return 1;
3883
3884 switch (TREE_CODE_CLASS (code))
3885 {
3886 case tcc_reference:
3887 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3888 position computations since they will be converted into a
3889 WITH_RECORD_EXPR involving the reference, which will assume
3890 here will be valid. */
3891 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3892
3893 case tcc_exceptional:
3894 if (code == TREE_LIST)
3895 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3896 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3897 break;
3898
3899 case tcc_unary:
3900 case tcc_binary:
3901 case tcc_comparison:
3902 case tcc_expression:
3903 switch (code)
3904 {
3905 case COMPOUND_EXPR:
3906 /* Ignoring the first operand isn't quite right, but works best. */
3907 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3908
3909 case COND_EXPR:
3910 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3911 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3912 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3913
3914 case SAVE_EXPR:
3915 /* The save_expr function never wraps anything containing
3916 a PLACEHOLDER_EXPR. */
3917 return 0;
3918
3919 default:
3920 break;
3921 }
3922
3923 switch (TREE_CODE_LENGTH (code))
3924 {
3925 case 1:
3926 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3927 case 2:
3928 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3929 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3930 default:
3931 return 0;
3932 }
3933
3934 case tcc_vl_exp:
3935 switch (code)
3936 {
3937 case CALL_EXPR:
3938 {
3939 const_tree arg;
3940 const_call_expr_arg_iterator iter;
3941 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3942 if (CONTAINS_PLACEHOLDER_P (arg))
3943 return 1;
3944 return 0;
3945 }
3946 default:
3947 return 0;
3948 }
3949
3950 default:
3951 return 0;
3952 }
3953 return 0;
3954 }
3955
3956 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3957 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3958 field positions. */
3959
3960 static bool
3961 type_contains_placeholder_1 (const_tree type)
3962 {
3963 /* If the size contains a placeholder or the parent type (component type in
3964 the case of arrays) type involves a placeholder, this type does. */
3965 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3966 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3967 || (!POINTER_TYPE_P (type)
3968 && TREE_TYPE (type)
3969 && type_contains_placeholder_p (TREE_TYPE (type))))
3970 return true;
3971
3972 /* Now do type-specific checks. Note that the last part of the check above
3973 greatly limits what we have to do below. */
3974 switch (TREE_CODE (type))
3975 {
3976 case VOID_TYPE:
3977 case OPAQUE_TYPE:
3978 case COMPLEX_TYPE:
3979 case ENUMERAL_TYPE:
3980 case BOOLEAN_TYPE:
3981 case POINTER_TYPE:
3982 case OFFSET_TYPE:
3983 case REFERENCE_TYPE:
3984 case METHOD_TYPE:
3985 case FUNCTION_TYPE:
3986 case VECTOR_TYPE:
3987 case NULLPTR_TYPE:
3988 return false;
3989
3990 case INTEGER_TYPE:
3991 case REAL_TYPE:
3992 case FIXED_POINT_TYPE:
3993 /* Here we just check the bounds. */
3994 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3995 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3996
3997 case ARRAY_TYPE:
3998 /* We have already checked the component type above, so just check
3999 the domain type. Flexible array members have a null domain. */
4000 return TYPE_DOMAIN (type) ?
4001 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
4002
4003 case RECORD_TYPE:
4004 case UNION_TYPE:
4005 case QUAL_UNION_TYPE:
4006 {
4007 tree field;
4008
4009 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
4010 if (TREE_CODE (field) == FIELD_DECL
4011 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
4012 || (TREE_CODE (type) == QUAL_UNION_TYPE
4013 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
4014 || type_contains_placeholder_p (TREE_TYPE (field))))
4015 return true;
4016
4017 return false;
4018 }
4019
4020 default:
4021 gcc_unreachable ();
4022 }
4023 }
4024
4025 /* Wrapper around above function used to cache its result. */
4026
4027 bool
4028 type_contains_placeholder_p (tree type)
4029 {
4030 bool result;
4031
4032 /* If the contains_placeholder_bits field has been initialized,
4033 then we know the answer. */
4034 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
4035 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
4036
4037 /* Indicate that we've seen this type node, and the answer is false.
4038 This is what we want to return if we run into recursion via fields. */
4039 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
4040
4041 /* Compute the real value. */
4042 result = type_contains_placeholder_1 (type);
4043
4044 /* Store the real value. */
4045 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
4046
4047 return result;
4048 }
4049 \f
4050 /* Push tree EXP onto vector QUEUE if it is not already present. */
4051
4052 static void
4053 push_without_duplicates (tree exp, vec<tree> *queue)
4054 {
4055 unsigned int i;
4056 tree iter;
4057
4058 FOR_EACH_VEC_ELT (*queue, i, iter)
4059 if (simple_cst_equal (iter, exp) == 1)
4060 break;
4061
4062 if (!iter)
4063 queue->safe_push (exp);
4064 }
4065
4066 /* Given a tree EXP, find all occurrences of references to fields
4067 in a PLACEHOLDER_EXPR and place them in vector REFS without
4068 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
4069 we assume here that EXP contains only arithmetic expressions
4070 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
4071 argument list. */
4072
4073 void
4074 find_placeholder_in_expr (tree exp, vec<tree> *refs)
4075 {
4076 enum tree_code code = TREE_CODE (exp);
4077 tree inner;
4078 int i;
4079
4080 /* We handle TREE_LIST and COMPONENT_REF separately. */
4081 if (code == TREE_LIST)
4082 {
4083 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
4084 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
4085 }
4086 else if (code == COMPONENT_REF)
4087 {
4088 for (inner = TREE_OPERAND (exp, 0);
4089 REFERENCE_CLASS_P (inner);
4090 inner = TREE_OPERAND (inner, 0))
4091 ;
4092
4093 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
4094 push_without_duplicates (exp, refs);
4095 else
4096 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
4097 }
4098 else
4099 switch (TREE_CODE_CLASS (code))
4100 {
4101 case tcc_constant:
4102 break;
4103
4104 case tcc_declaration:
4105 /* Variables allocated to static storage can stay. */
4106 if (!TREE_STATIC (exp))
4107 push_without_duplicates (exp, refs);
4108 break;
4109
4110 case tcc_expression:
4111 /* This is the pattern built in ada/make_aligning_type. */
4112 if (code == ADDR_EXPR
4113 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
4114 {
4115 push_without_duplicates (exp, refs);
4116 break;
4117 }
4118
4119 /* Fall through. */
4120
4121 case tcc_exceptional:
4122 case tcc_unary:
4123 case tcc_binary:
4124 case tcc_comparison:
4125 case tcc_reference:
4126 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
4127 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4128 break;
4129
4130 case tcc_vl_exp:
4131 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4132 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
4133 break;
4134
4135 default:
4136 gcc_unreachable ();
4137 }
4138 }
4139
4140 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
4141 return a tree with all occurrences of references to F in a
4142 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
4143 CONST_DECLs. Note that we assume here that EXP contains only
4144 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
4145 occurring only in their argument list. */
4146
4147 tree
4148 substitute_in_expr (tree exp, tree f, tree r)
4149 {
4150 enum tree_code code = TREE_CODE (exp);
4151 tree op0, op1, op2, op3;
4152 tree new_tree;
4153
4154 /* We handle TREE_LIST and COMPONENT_REF separately. */
4155 if (code == TREE_LIST)
4156 {
4157 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
4158 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
4159 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4160 return exp;
4161
4162 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4163 }
4164 else if (code == COMPONENT_REF)
4165 {
4166 tree inner;
4167
4168 /* If this expression is getting a value from a PLACEHOLDER_EXPR
4169 and it is the right field, replace it with R. */
4170 for (inner = TREE_OPERAND (exp, 0);
4171 REFERENCE_CLASS_P (inner);
4172 inner = TREE_OPERAND (inner, 0))
4173 ;
4174
4175 /* The field. */
4176 op1 = TREE_OPERAND (exp, 1);
4177
4178 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
4179 return r;
4180
4181 /* If this expression hasn't been completed let, leave it alone. */
4182 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
4183 return exp;
4184
4185 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4186 if (op0 == TREE_OPERAND (exp, 0))
4187 return exp;
4188
4189 new_tree
4190 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4191 }
4192 else
4193 switch (TREE_CODE_CLASS (code))
4194 {
4195 case tcc_constant:
4196 return exp;
4197
4198 case tcc_declaration:
4199 if (exp == f)
4200 return r;
4201 else
4202 return exp;
4203
4204 case tcc_expression:
4205 if (exp == f)
4206 return r;
4207
4208 /* Fall through. */
4209
4210 case tcc_exceptional:
4211 case tcc_unary:
4212 case tcc_binary:
4213 case tcc_comparison:
4214 case tcc_reference:
4215 switch (TREE_CODE_LENGTH (code))
4216 {
4217 case 0:
4218 return exp;
4219
4220 case 1:
4221 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4222 if (op0 == TREE_OPERAND (exp, 0))
4223 return exp;
4224
4225 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4226 break;
4227
4228 case 2:
4229 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4230 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4231
4232 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4233 return exp;
4234
4235 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4236 break;
4237
4238 case 3:
4239 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4240 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4241 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4242
4243 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4244 && op2 == TREE_OPERAND (exp, 2))
4245 return exp;
4246
4247 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4248 break;
4249
4250 case 4:
4251 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4252 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4253 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4254 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4255
4256 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4257 && op2 == TREE_OPERAND (exp, 2)
4258 && op3 == TREE_OPERAND (exp, 3))
4259 return exp;
4260
4261 new_tree
4262 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4263 break;
4264
4265 default:
4266 gcc_unreachable ();
4267 }
4268 break;
4269
4270 case tcc_vl_exp:
4271 {
4272 int i;
4273
4274 new_tree = NULL_TREE;
4275
4276 /* If we are trying to replace F with a constant or with another
4277 instance of one of the arguments of the call, inline back
4278 functions which do nothing else than computing a value from
4279 the arguments they are passed. This makes it possible to
4280 fold partially or entirely the replacement expression. */
4281 if (code == CALL_EXPR)
4282 {
4283 bool maybe_inline = false;
4284 if (CONSTANT_CLASS_P (r))
4285 maybe_inline = true;
4286 else
4287 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4288 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4289 {
4290 maybe_inline = true;
4291 break;
4292 }
4293 if (maybe_inline)
4294 {
4295 tree t = maybe_inline_call_in_expr (exp);
4296 if (t)
4297 return SUBSTITUTE_IN_EXPR (t, f, r);
4298 }
4299 }
4300
4301 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4302 {
4303 tree op = TREE_OPERAND (exp, i);
4304 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4305 if (new_op != op)
4306 {
4307 if (!new_tree)
4308 new_tree = copy_node (exp);
4309 TREE_OPERAND (new_tree, i) = new_op;
4310 }
4311 }
4312
4313 if (new_tree)
4314 {
4315 new_tree = fold (new_tree);
4316 if (TREE_CODE (new_tree) == CALL_EXPR)
4317 process_call_operands (new_tree);
4318 }
4319 else
4320 return exp;
4321 }
4322 break;
4323
4324 default:
4325 gcc_unreachable ();
4326 }
4327
4328 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4329
4330 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4331 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4332
4333 return new_tree;
4334 }
4335
4336 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4337 for it within OBJ, a tree that is an object or a chain of references. */
4338
4339 tree
4340 substitute_placeholder_in_expr (tree exp, tree obj)
4341 {
4342 enum tree_code code = TREE_CODE (exp);
4343 tree op0, op1, op2, op3;
4344 tree new_tree;
4345
4346 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4347 in the chain of OBJ. */
4348 if (code == PLACEHOLDER_EXPR)
4349 {
4350 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4351 tree elt;
4352
4353 for (elt = obj; elt != 0;
4354 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4355 || TREE_CODE (elt) == COND_EXPR)
4356 ? TREE_OPERAND (elt, 1)
4357 : (REFERENCE_CLASS_P (elt)
4358 || UNARY_CLASS_P (elt)
4359 || BINARY_CLASS_P (elt)
4360 || VL_EXP_CLASS_P (elt)
4361 || EXPRESSION_CLASS_P (elt))
4362 ? TREE_OPERAND (elt, 0) : 0))
4363 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4364 return elt;
4365
4366 for (elt = obj; elt != 0;
4367 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4368 || TREE_CODE (elt) == COND_EXPR)
4369 ? TREE_OPERAND (elt, 1)
4370 : (REFERENCE_CLASS_P (elt)
4371 || UNARY_CLASS_P (elt)
4372 || BINARY_CLASS_P (elt)
4373 || VL_EXP_CLASS_P (elt)
4374 || EXPRESSION_CLASS_P (elt))
4375 ? TREE_OPERAND (elt, 0) : 0))
4376 if (POINTER_TYPE_P (TREE_TYPE (elt))
4377 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4378 == need_type))
4379 return fold_build1 (INDIRECT_REF, need_type, elt);
4380
4381 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4382 survives until RTL generation, there will be an error. */
4383 return exp;
4384 }
4385
4386 /* TREE_LIST is special because we need to look at TREE_VALUE
4387 and TREE_CHAIN, not TREE_OPERANDS. */
4388 else if (code == TREE_LIST)
4389 {
4390 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4391 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4392 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4393 return exp;
4394
4395 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4396 }
4397 else
4398 switch (TREE_CODE_CLASS (code))
4399 {
4400 case tcc_constant:
4401 case tcc_declaration:
4402 return exp;
4403
4404 case tcc_exceptional:
4405 case tcc_unary:
4406 case tcc_binary:
4407 case tcc_comparison:
4408 case tcc_expression:
4409 case tcc_reference:
4410 case tcc_statement:
4411 switch (TREE_CODE_LENGTH (code))
4412 {
4413 case 0:
4414 return exp;
4415
4416 case 1:
4417 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4418 if (op0 == TREE_OPERAND (exp, 0))
4419 return exp;
4420
4421 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4422 break;
4423
4424 case 2:
4425 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4426 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4427
4428 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4429 return exp;
4430
4431 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4432 break;
4433
4434 case 3:
4435 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4436 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4437 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4438
4439 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4440 && op2 == TREE_OPERAND (exp, 2))
4441 return exp;
4442
4443 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4444 break;
4445
4446 case 4:
4447 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4448 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4449 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4450 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4451
4452 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4453 && op2 == TREE_OPERAND (exp, 2)
4454 && op3 == TREE_OPERAND (exp, 3))
4455 return exp;
4456
4457 new_tree
4458 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4459 break;
4460
4461 default:
4462 gcc_unreachable ();
4463 }
4464 break;
4465
4466 case tcc_vl_exp:
4467 {
4468 int i;
4469
4470 new_tree = NULL_TREE;
4471
4472 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4473 {
4474 tree op = TREE_OPERAND (exp, i);
4475 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4476 if (new_op != op)
4477 {
4478 if (!new_tree)
4479 new_tree = copy_node (exp);
4480 TREE_OPERAND (new_tree, i) = new_op;
4481 }
4482 }
4483
4484 if (new_tree)
4485 {
4486 new_tree = fold (new_tree);
4487 if (TREE_CODE (new_tree) == CALL_EXPR)
4488 process_call_operands (new_tree);
4489 }
4490 else
4491 return exp;
4492 }
4493 break;
4494
4495 default:
4496 gcc_unreachable ();
4497 }
4498
4499 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4500
4501 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4502 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4503
4504 return new_tree;
4505 }
4506 \f
4507
4508 /* Subroutine of stabilize_reference; this is called for subtrees of
4509 references. Any expression with side-effects must be put in a SAVE_EXPR
4510 to ensure that it is only evaluated once.
4511
4512 We don't put SAVE_EXPR nodes around everything, because assigning very
4513 simple expressions to temporaries causes us to miss good opportunities
4514 for optimizations. Among other things, the opportunity to fold in the
4515 addition of a constant into an addressing mode often gets lost, e.g.
4516 "y[i+1] += x;". In general, we take the approach that we should not make
4517 an assignment unless we are forced into it - i.e., that any non-side effect
4518 operator should be allowed, and that cse should take care of coalescing
4519 multiple utterances of the same expression should that prove fruitful. */
4520
4521 static tree
4522 stabilize_reference_1 (tree e)
4523 {
4524 tree result;
4525 enum tree_code code = TREE_CODE (e);
4526
4527 /* We cannot ignore const expressions because it might be a reference
4528 to a const array but whose index contains side-effects. But we can
4529 ignore things that are actual constant or that already have been
4530 handled by this function. */
4531
4532 if (tree_invariant_p (e))
4533 return e;
4534
4535 switch (TREE_CODE_CLASS (code))
4536 {
4537 case tcc_exceptional:
4538 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4539 have side-effects. */
4540 if (code == STATEMENT_LIST)
4541 return save_expr (e);
4542 /* FALLTHRU */
4543 case tcc_type:
4544 case tcc_declaration:
4545 case tcc_comparison:
4546 case tcc_statement:
4547 case tcc_expression:
4548 case tcc_reference:
4549 case tcc_vl_exp:
4550 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4551 so that it will only be evaluated once. */
4552 /* The reference (r) and comparison (<) classes could be handled as
4553 below, but it is generally faster to only evaluate them once. */
4554 if (TREE_SIDE_EFFECTS (e))
4555 return save_expr (e);
4556 return e;
4557
4558 case tcc_constant:
4559 /* Constants need no processing. In fact, we should never reach
4560 here. */
4561 return e;
4562
4563 case tcc_binary:
4564 /* Division is slow and tends to be compiled with jumps,
4565 especially the division by powers of 2 that is often
4566 found inside of an array reference. So do it just once. */
4567 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4568 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4569 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4570 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4571 return save_expr (e);
4572 /* Recursively stabilize each operand. */
4573 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4574 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4575 break;
4576
4577 case tcc_unary:
4578 /* Recursively stabilize each operand. */
4579 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4580 break;
4581
4582 default:
4583 gcc_unreachable ();
4584 }
4585
4586 TREE_TYPE (result) = TREE_TYPE (e);
4587 TREE_READONLY (result) = TREE_READONLY (e);
4588 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4589 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4590
4591 return result;
4592 }
4593
4594 /* Stabilize a reference so that we can use it any number of times
4595 without causing its operands to be evaluated more than once.
4596 Returns the stabilized reference. This works by means of save_expr,
4597 so see the caveats in the comments about save_expr.
4598
4599 Also allows conversion expressions whose operands are references.
4600 Any other kind of expression is returned unchanged. */
4601
4602 tree
4603 stabilize_reference (tree ref)
4604 {
4605 tree result;
4606 enum tree_code code = TREE_CODE (ref);
4607
4608 switch (code)
4609 {
4610 case VAR_DECL:
4611 case PARM_DECL:
4612 case RESULT_DECL:
4613 /* No action is needed in this case. */
4614 return ref;
4615
4616 CASE_CONVERT:
4617 case FLOAT_EXPR:
4618 case FIX_TRUNC_EXPR:
4619 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4620 break;
4621
4622 case INDIRECT_REF:
4623 result = build_nt (INDIRECT_REF,
4624 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4625 break;
4626
4627 case COMPONENT_REF:
4628 result = build_nt (COMPONENT_REF,
4629 stabilize_reference (TREE_OPERAND (ref, 0)),
4630 TREE_OPERAND (ref, 1), NULL_TREE);
4631 break;
4632
4633 case BIT_FIELD_REF:
4634 result = build_nt (BIT_FIELD_REF,
4635 stabilize_reference (TREE_OPERAND (ref, 0)),
4636 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4637 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4638 break;
4639
4640 case ARRAY_REF:
4641 result = build_nt (ARRAY_REF,
4642 stabilize_reference (TREE_OPERAND (ref, 0)),
4643 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4644 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4645 break;
4646
4647 case ARRAY_RANGE_REF:
4648 result = build_nt (ARRAY_RANGE_REF,
4649 stabilize_reference (TREE_OPERAND (ref, 0)),
4650 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4651 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4652 break;
4653
4654 case COMPOUND_EXPR:
4655 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4656 it wouldn't be ignored. This matters when dealing with
4657 volatiles. */
4658 return stabilize_reference_1 (ref);
4659
4660 /* If arg isn't a kind of lvalue we recognize, make no change.
4661 Caller should recognize the error for an invalid lvalue. */
4662 default:
4663 return ref;
4664
4665 case ERROR_MARK:
4666 return error_mark_node;
4667 }
4668
4669 TREE_TYPE (result) = TREE_TYPE (ref);
4670 TREE_READONLY (result) = TREE_READONLY (ref);
4671 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4672 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4673
4674 return result;
4675 }
4676 \f
4677 /* Low-level constructors for expressions. */
4678
4679 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4680 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4681
4682 void
4683 recompute_tree_invariant_for_addr_expr (tree t)
4684 {
4685 tree node;
4686 bool tc = true, se = false;
4687
4688 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4689
4690 /* We started out assuming this address is both invariant and constant, but
4691 does not have side effects. Now go down any handled components and see if
4692 any of them involve offsets that are either non-constant or non-invariant.
4693 Also check for side-effects.
4694
4695 ??? Note that this code makes no attempt to deal with the case where
4696 taking the address of something causes a copy due to misalignment. */
4697
4698 #define UPDATE_FLAGS(NODE) \
4699 do { tree _node = (NODE); \
4700 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4701 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4702
4703 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4704 node = TREE_OPERAND (node, 0))
4705 {
4706 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4707 array reference (probably made temporarily by the G++ front end),
4708 so ignore all the operands. */
4709 if ((TREE_CODE (node) == ARRAY_REF
4710 || TREE_CODE (node) == ARRAY_RANGE_REF)
4711 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4712 {
4713 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4714 if (TREE_OPERAND (node, 2))
4715 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4716 if (TREE_OPERAND (node, 3))
4717 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4718 }
4719 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4720 FIELD_DECL, apparently. The G++ front end can put something else
4721 there, at least temporarily. */
4722 else if (TREE_CODE (node) == COMPONENT_REF
4723 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4724 {
4725 if (TREE_OPERAND (node, 2))
4726 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4727 }
4728 }
4729
4730 node = lang_hooks.expr_to_decl (node, &tc, &se);
4731
4732 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4733 the address, since &(*a)->b is a form of addition. If it's a constant, the
4734 address is constant too. If it's a decl, its address is constant if the
4735 decl is static. Everything else is not constant and, furthermore,
4736 taking the address of a volatile variable is not volatile. */
4737 if (TREE_CODE (node) == INDIRECT_REF
4738 || TREE_CODE (node) == MEM_REF)
4739 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4740 else if (CONSTANT_CLASS_P (node))
4741 ;
4742 else if (DECL_P (node))
4743 tc &= (staticp (node) != NULL_TREE);
4744 else
4745 {
4746 tc = false;
4747 se |= TREE_SIDE_EFFECTS (node);
4748 }
4749
4750
4751 TREE_CONSTANT (t) = tc;
4752 TREE_SIDE_EFFECTS (t) = se;
4753 #undef UPDATE_FLAGS
4754 }
4755
4756 /* Build an expression of code CODE, data type TYPE, and operands as
4757 specified. Expressions and reference nodes can be created this way.
4758 Constants, decls, types and misc nodes cannot be.
4759
4760 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4761 enough for all extant tree codes. */
4762
4763 tree
4764 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4765 {
4766 tree t;
4767
4768 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4769
4770 t = make_node (code PASS_MEM_STAT);
4771 TREE_TYPE (t) = tt;
4772
4773 return t;
4774 }
4775
4776 tree
4777 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4778 {
4779 int length = sizeof (struct tree_exp);
4780 tree t;
4781
4782 record_node_allocation_statistics (code, length);
4783
4784 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4785
4786 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4787
4788 memset (t, 0, sizeof (struct tree_common));
4789
4790 TREE_SET_CODE (t, code);
4791
4792 TREE_TYPE (t) = type;
4793 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4794 TREE_OPERAND (t, 0) = node;
4795 if (node && !TYPE_P (node))
4796 {
4797 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4798 TREE_READONLY (t) = TREE_READONLY (node);
4799 }
4800
4801 if (TREE_CODE_CLASS (code) == tcc_statement)
4802 {
4803 if (code != DEBUG_BEGIN_STMT)
4804 TREE_SIDE_EFFECTS (t) = 1;
4805 }
4806 else switch (code)
4807 {
4808 case VA_ARG_EXPR:
4809 /* All of these have side-effects, no matter what their
4810 operands are. */
4811 TREE_SIDE_EFFECTS (t) = 1;
4812 TREE_READONLY (t) = 0;
4813 break;
4814
4815 case INDIRECT_REF:
4816 /* Whether a dereference is readonly has nothing to do with whether
4817 its operand is readonly. */
4818 TREE_READONLY (t) = 0;
4819 break;
4820
4821 case ADDR_EXPR:
4822 if (node)
4823 recompute_tree_invariant_for_addr_expr (t);
4824 break;
4825
4826 default:
4827 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4828 && node && !TYPE_P (node)
4829 && TREE_CONSTANT (node))
4830 TREE_CONSTANT (t) = 1;
4831 if (TREE_CODE_CLASS (code) == tcc_reference
4832 && node && TREE_THIS_VOLATILE (node))
4833 TREE_THIS_VOLATILE (t) = 1;
4834 break;
4835 }
4836
4837 return t;
4838 }
4839
4840 #define PROCESS_ARG(N) \
4841 do { \
4842 TREE_OPERAND (t, N) = arg##N; \
4843 if (arg##N &&!TYPE_P (arg##N)) \
4844 { \
4845 if (TREE_SIDE_EFFECTS (arg##N)) \
4846 side_effects = 1; \
4847 if (!TREE_READONLY (arg##N) \
4848 && !CONSTANT_CLASS_P (arg##N)) \
4849 (void) (read_only = 0); \
4850 if (!TREE_CONSTANT (arg##N)) \
4851 (void) (constant = 0); \
4852 } \
4853 } while (0)
4854
4855 tree
4856 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4857 {
4858 bool constant, read_only, side_effects, div_by_zero;
4859 tree t;
4860
4861 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4862
4863 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4864 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4865 /* When sizetype precision doesn't match that of pointers
4866 we need to be able to build explicit extensions or truncations
4867 of the offset argument. */
4868 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4869 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4870 && TREE_CODE (arg1) == INTEGER_CST);
4871
4872 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4873 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4874 && ptrofftype_p (TREE_TYPE (arg1)));
4875
4876 t = make_node (code PASS_MEM_STAT);
4877 TREE_TYPE (t) = tt;
4878
4879 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4880 result based on those same flags for the arguments. But if the
4881 arguments aren't really even `tree' expressions, we shouldn't be trying
4882 to do this. */
4883
4884 /* Expressions without side effects may be constant if their
4885 arguments are as well. */
4886 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4887 || TREE_CODE_CLASS (code) == tcc_binary);
4888 read_only = 1;
4889 side_effects = TREE_SIDE_EFFECTS (t);
4890
4891 switch (code)
4892 {
4893 case TRUNC_DIV_EXPR:
4894 case CEIL_DIV_EXPR:
4895 case FLOOR_DIV_EXPR:
4896 case ROUND_DIV_EXPR:
4897 case EXACT_DIV_EXPR:
4898 case CEIL_MOD_EXPR:
4899 case FLOOR_MOD_EXPR:
4900 case ROUND_MOD_EXPR:
4901 case TRUNC_MOD_EXPR:
4902 div_by_zero = integer_zerop (arg1);
4903 break;
4904 default:
4905 div_by_zero = false;
4906 }
4907
4908 PROCESS_ARG (0);
4909 PROCESS_ARG (1);
4910
4911 TREE_SIDE_EFFECTS (t) = side_effects;
4912 if (code == MEM_REF)
4913 {
4914 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4915 {
4916 tree o = TREE_OPERAND (arg0, 0);
4917 TREE_READONLY (t) = TREE_READONLY (o);
4918 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4919 }
4920 }
4921 else
4922 {
4923 TREE_READONLY (t) = read_only;
4924 /* Don't mark X / 0 as constant. */
4925 TREE_CONSTANT (t) = constant && !div_by_zero;
4926 TREE_THIS_VOLATILE (t)
4927 = (TREE_CODE_CLASS (code) == tcc_reference
4928 && arg0 && TREE_THIS_VOLATILE (arg0));
4929 }
4930
4931 return t;
4932 }
4933
4934
4935 tree
4936 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4937 tree arg2 MEM_STAT_DECL)
4938 {
4939 bool constant, read_only, side_effects;
4940 tree t;
4941
4942 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4943 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4944
4945 t = make_node (code PASS_MEM_STAT);
4946 TREE_TYPE (t) = tt;
4947
4948 read_only = 1;
4949
4950 /* As a special exception, if COND_EXPR has NULL branches, we
4951 assume that it is a gimple statement and always consider
4952 it to have side effects. */
4953 if (code == COND_EXPR
4954 && tt == void_type_node
4955 && arg1 == NULL_TREE
4956 && arg2 == NULL_TREE)
4957 side_effects = true;
4958 else
4959 side_effects = TREE_SIDE_EFFECTS (t);
4960
4961 PROCESS_ARG (0);
4962 PROCESS_ARG (1);
4963 PROCESS_ARG (2);
4964
4965 if (code == COND_EXPR)
4966 TREE_READONLY (t) = read_only;
4967
4968 TREE_SIDE_EFFECTS (t) = side_effects;
4969 TREE_THIS_VOLATILE (t)
4970 = (TREE_CODE_CLASS (code) == tcc_reference
4971 && arg0 && TREE_THIS_VOLATILE (arg0));
4972
4973 return t;
4974 }
4975
4976 tree
4977 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4978 tree arg2, tree arg3 MEM_STAT_DECL)
4979 {
4980 bool constant, read_only, side_effects;
4981 tree t;
4982
4983 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4984
4985 t = make_node (code PASS_MEM_STAT);
4986 TREE_TYPE (t) = tt;
4987
4988 side_effects = TREE_SIDE_EFFECTS (t);
4989
4990 PROCESS_ARG (0);
4991 PROCESS_ARG (1);
4992 PROCESS_ARG (2);
4993 PROCESS_ARG (3);
4994
4995 TREE_SIDE_EFFECTS (t) = side_effects;
4996 TREE_THIS_VOLATILE (t)
4997 = (TREE_CODE_CLASS (code) == tcc_reference
4998 && arg0 && TREE_THIS_VOLATILE (arg0));
4999
5000 return t;
5001 }
5002
5003 tree
5004 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
5005 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
5006 {
5007 bool constant, read_only, side_effects;
5008 tree t;
5009
5010 gcc_assert (TREE_CODE_LENGTH (code) == 5);
5011
5012 t = make_node (code PASS_MEM_STAT);
5013 TREE_TYPE (t) = tt;
5014
5015 side_effects = TREE_SIDE_EFFECTS (t);
5016
5017 PROCESS_ARG (0);
5018 PROCESS_ARG (1);
5019 PROCESS_ARG (2);
5020 PROCESS_ARG (3);
5021 PROCESS_ARG (4);
5022
5023 TREE_SIDE_EFFECTS (t) = side_effects;
5024 if (code == TARGET_MEM_REF)
5025 {
5026 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
5027 {
5028 tree o = TREE_OPERAND (arg0, 0);
5029 TREE_READONLY (t) = TREE_READONLY (o);
5030 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
5031 }
5032 }
5033 else
5034 TREE_THIS_VOLATILE (t)
5035 = (TREE_CODE_CLASS (code) == tcc_reference
5036 && arg0 && TREE_THIS_VOLATILE (arg0));
5037
5038 return t;
5039 }
5040
5041 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
5042 on the pointer PTR. */
5043
5044 tree
5045 build_simple_mem_ref_loc (location_t loc, tree ptr)
5046 {
5047 poly_int64 offset = 0;
5048 tree ptype = TREE_TYPE (ptr);
5049 tree tem;
5050 /* For convenience allow addresses that collapse to a simple base
5051 and offset. */
5052 if (TREE_CODE (ptr) == ADDR_EXPR
5053 && (handled_component_p (TREE_OPERAND (ptr, 0))
5054 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
5055 {
5056 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
5057 gcc_assert (ptr);
5058 if (TREE_CODE (ptr) == MEM_REF)
5059 {
5060 offset += mem_ref_offset (ptr).force_shwi ();
5061 ptr = TREE_OPERAND (ptr, 0);
5062 }
5063 else
5064 ptr = build_fold_addr_expr (ptr);
5065 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
5066 }
5067 tem = build2 (MEM_REF, TREE_TYPE (ptype),
5068 ptr, build_int_cst (ptype, offset));
5069 SET_EXPR_LOCATION (tem, loc);
5070 return tem;
5071 }
5072
5073 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
5074
5075 poly_offset_int
5076 mem_ref_offset (const_tree t)
5077 {
5078 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
5079 SIGNED);
5080 }
5081
5082 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
5083 offsetted by OFFSET units. */
5084
5085 tree
5086 build_invariant_address (tree type, tree base, poly_int64 offset)
5087 {
5088 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
5089 build_fold_addr_expr (base),
5090 build_int_cst (ptr_type_node, offset));
5091 tree addr = build1 (ADDR_EXPR, type, ref);
5092 recompute_tree_invariant_for_addr_expr (addr);
5093 return addr;
5094 }
5095
5096 /* Similar except don't specify the TREE_TYPE
5097 and leave the TREE_SIDE_EFFECTS as 0.
5098 It is permissible for arguments to be null,
5099 or even garbage if their values do not matter. */
5100
5101 tree
5102 build_nt (enum tree_code code, ...)
5103 {
5104 tree t;
5105 int length;
5106 int i;
5107 va_list p;
5108
5109 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
5110
5111 va_start (p, code);
5112
5113 t = make_node (code);
5114 length = TREE_CODE_LENGTH (code);
5115
5116 for (i = 0; i < length; i++)
5117 TREE_OPERAND (t, i) = va_arg (p, tree);
5118
5119 va_end (p);
5120 return t;
5121 }
5122
5123 /* Similar to build_nt, but for creating a CALL_EXPR object with a
5124 tree vec. */
5125
5126 tree
5127 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
5128 {
5129 tree ret, t;
5130 unsigned int ix;
5131
5132 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
5133 CALL_EXPR_FN (ret) = fn;
5134 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
5135 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
5136 CALL_EXPR_ARG (ret, ix) = t;
5137 return ret;
5138 }
5139 \f
5140 /* Create a DECL_... node of code CODE, name NAME (if non-null)
5141 and data type TYPE.
5142 We do NOT enter this node in any sort of symbol table.
5143
5144 LOC is the location of the decl.
5145
5146 layout_decl is used to set up the decl's storage layout.
5147 Other slots are initialized to 0 or null pointers. */
5148
5149 tree
5150 build_decl (location_t loc, enum tree_code code, tree name,
5151 tree type MEM_STAT_DECL)
5152 {
5153 tree t;
5154
5155 t = make_node (code PASS_MEM_STAT);
5156 DECL_SOURCE_LOCATION (t) = loc;
5157
5158 /* if (type == error_mark_node)
5159 type = integer_type_node; */
5160 /* That is not done, deliberately, so that having error_mark_node
5161 as the type can suppress useless errors in the use of this variable. */
5162
5163 DECL_NAME (t) = name;
5164 TREE_TYPE (t) = type;
5165
5166 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
5167 layout_decl (t, 0);
5168
5169 return t;
5170 }
5171
5172 /* Builds and returns function declaration with NAME and TYPE. */
5173
5174 tree
5175 build_fn_decl (const char *name, tree type)
5176 {
5177 tree id = get_identifier (name);
5178 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
5179
5180 DECL_EXTERNAL (decl) = 1;
5181 TREE_PUBLIC (decl) = 1;
5182 DECL_ARTIFICIAL (decl) = 1;
5183 TREE_NOTHROW (decl) = 1;
5184
5185 return decl;
5186 }
5187
5188 vec<tree, va_gc> *all_translation_units;
5189
5190 /* Builds a new translation-unit decl with name NAME, queues it in the
5191 global list of translation-unit decls and returns it. */
5192
5193 tree
5194 build_translation_unit_decl (tree name)
5195 {
5196 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5197 name, NULL_TREE);
5198 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5199 vec_safe_push (all_translation_units, tu);
5200 return tu;
5201 }
5202
5203 \f
5204 /* BLOCK nodes are used to represent the structure of binding contours
5205 and declarations, once those contours have been exited and their contents
5206 compiled. This information is used for outputting debugging info. */
5207
5208 tree
5209 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5210 {
5211 tree block = make_node (BLOCK);
5212
5213 BLOCK_VARS (block) = vars;
5214 BLOCK_SUBBLOCKS (block) = subblocks;
5215 BLOCK_SUPERCONTEXT (block) = supercontext;
5216 BLOCK_CHAIN (block) = chain;
5217 return block;
5218 }
5219
5220 \f
5221 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5222
5223 LOC is the location to use in tree T. */
5224
5225 void
5226 protected_set_expr_location (tree t, location_t loc)
5227 {
5228 if (CAN_HAVE_LOCATION_P (t))
5229 SET_EXPR_LOCATION (t, loc);
5230 else if (t && TREE_CODE (t) == STATEMENT_LIST)
5231 {
5232 t = expr_single (t);
5233 if (t && CAN_HAVE_LOCATION_P (t))
5234 SET_EXPR_LOCATION (t, loc);
5235 }
5236 }
5237
5238 /* Like PROTECTED_SET_EXPR_LOCATION, but only do that if T has
5239 UNKNOWN_LOCATION. */
5240
5241 void
5242 protected_set_expr_location_if_unset (tree t, location_t loc)
5243 {
5244 t = expr_single (t);
5245 if (t && !EXPR_HAS_LOCATION (t))
5246 protected_set_expr_location (t, loc);
5247 }
5248
5249 /* Data used when collecting DECLs and TYPEs for language data removal. */
5250
5251 class free_lang_data_d
5252 {
5253 public:
5254 free_lang_data_d () : decls (100), types (100) {}
5255
5256 /* Worklist to avoid excessive recursion. */
5257 auto_vec<tree> worklist;
5258
5259 /* Set of traversed objects. Used to avoid duplicate visits. */
5260 hash_set<tree> pset;
5261
5262 /* Array of symbols to process with free_lang_data_in_decl. */
5263 auto_vec<tree> decls;
5264
5265 /* Array of types to process with free_lang_data_in_type. */
5266 auto_vec<tree> types;
5267 };
5268
5269
5270 /* Add type or decl T to one of the list of tree nodes that need their
5271 language data removed. The lists are held inside FLD. */
5272
5273 static void
5274 add_tree_to_fld_list (tree t, class free_lang_data_d *fld)
5275 {
5276 if (DECL_P (t))
5277 fld->decls.safe_push (t);
5278 else if (TYPE_P (t))
5279 fld->types.safe_push (t);
5280 else
5281 gcc_unreachable ();
5282 }
5283
5284 /* Push tree node T into FLD->WORKLIST. */
5285
5286 static inline void
5287 fld_worklist_push (tree t, class free_lang_data_d *fld)
5288 {
5289 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5290 fld->worklist.safe_push ((t));
5291 }
5292
5293
5294 \f
5295 /* Return simplified TYPE_NAME of TYPE. */
5296
5297 static tree
5298 fld_simplified_type_name (tree type)
5299 {
5300 if (!TYPE_NAME (type) || TREE_CODE (TYPE_NAME (type)) != TYPE_DECL)
5301 return TYPE_NAME (type);
5302 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5303 TYPE_DECL if the type doesn't have linkage.
5304 this must match fld_ */
5305 if (type != TYPE_MAIN_VARIANT (type)
5306 || (!DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type))
5307 && (TREE_CODE (type) != RECORD_TYPE
5308 || !TYPE_BINFO (type)
5309 || !BINFO_VTABLE (TYPE_BINFO (type)))))
5310 return DECL_NAME (TYPE_NAME (type));
5311 return TYPE_NAME (type);
5312 }
5313
5314 /* Do same comparsion as check_qualified_type skipping lang part of type
5315 and be more permissive about type names: we only care that names are
5316 same (for diagnostics) and that ODR names are the same.
5317 If INNER_TYPE is non-NULL, be sure that TREE_TYPE match it. */
5318
5319 static bool
5320 fld_type_variant_equal_p (tree t, tree v, tree inner_type)
5321 {
5322 if (TYPE_QUALS (t) != TYPE_QUALS (v)
5323 /* We want to match incomplete variants with complete types.
5324 In this case we need to ignore alignment. */
5325 || ((!RECORD_OR_UNION_TYPE_P (t) || COMPLETE_TYPE_P (v))
5326 && (TYPE_ALIGN (t) != TYPE_ALIGN (v)
5327 || TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (v)))
5328 || fld_simplified_type_name (t) != fld_simplified_type_name (v)
5329 || !attribute_list_equal (TYPE_ATTRIBUTES (t),
5330 TYPE_ATTRIBUTES (v))
5331 || (inner_type && TREE_TYPE (v) != inner_type))
5332 return false;
5333
5334 return true;
5335 }
5336
5337 /* Find variant of FIRST that match T and create new one if necessary.
5338 Set TREE_TYPE to INNER_TYPE if non-NULL. */
5339
5340 static tree
5341 fld_type_variant (tree first, tree t, class free_lang_data_d *fld,
5342 tree inner_type = NULL)
5343 {
5344 if (first == TYPE_MAIN_VARIANT (t))
5345 return t;
5346 for (tree v = first; v; v = TYPE_NEXT_VARIANT (v))
5347 if (fld_type_variant_equal_p (t, v, inner_type))
5348 return v;
5349 tree v = build_variant_type_copy (first);
5350 TYPE_READONLY (v) = TYPE_READONLY (t);
5351 TYPE_VOLATILE (v) = TYPE_VOLATILE (t);
5352 TYPE_ATOMIC (v) = TYPE_ATOMIC (t);
5353 TYPE_RESTRICT (v) = TYPE_RESTRICT (t);
5354 TYPE_ADDR_SPACE (v) = TYPE_ADDR_SPACE (t);
5355 TYPE_NAME (v) = TYPE_NAME (t);
5356 TYPE_ATTRIBUTES (v) = TYPE_ATTRIBUTES (t);
5357 TYPE_CANONICAL (v) = TYPE_CANONICAL (t);
5358 /* Variants of incomplete types should have alignment
5359 set to BITS_PER_UNIT. Do not copy the actual alignment. */
5360 if (!RECORD_OR_UNION_TYPE_P (v) || COMPLETE_TYPE_P (v))
5361 {
5362 SET_TYPE_ALIGN (v, TYPE_ALIGN (t));
5363 TYPE_USER_ALIGN (v) = TYPE_USER_ALIGN (t);
5364 }
5365 if (inner_type)
5366 TREE_TYPE (v) = inner_type;
5367 gcc_checking_assert (fld_type_variant_equal_p (t,v, inner_type));
5368 if (!fld->pset.add (v))
5369 add_tree_to_fld_list (v, fld);
5370 return v;
5371 }
5372
5373 /* Map complete types to incomplete types. */
5374
5375 static hash_map<tree, tree> *fld_incomplete_types;
5376
5377 /* Map types to simplified types. */
5378
5379 static hash_map<tree, tree> *fld_simplified_types;
5380
5381 /* Produce variant of T whose TREE_TYPE is T2. If it is main variant,
5382 use MAP to prevent duplicates. */
5383
5384 static tree
5385 fld_process_array_type (tree t, tree t2, hash_map<tree, tree> *map,
5386 class free_lang_data_d *fld)
5387 {
5388 if (TREE_TYPE (t) == t2)
5389 return t;
5390
5391 if (TYPE_MAIN_VARIANT (t) != t)
5392 {
5393 return fld_type_variant
5394 (fld_process_array_type (TYPE_MAIN_VARIANT (t),
5395 TYPE_MAIN_VARIANT (t2), map, fld),
5396 t, fld, t2);
5397 }
5398
5399 bool existed;
5400 tree &array
5401 = map->get_or_insert (t, &existed);
5402 if (!existed)
5403 {
5404 array
5405 = build_array_type_1 (t2, TYPE_DOMAIN (t), TYPE_TYPELESS_STORAGE (t),
5406 false, false);
5407 TYPE_CANONICAL (array) = TYPE_CANONICAL (t);
5408 if (!fld->pset.add (array))
5409 add_tree_to_fld_list (array, fld);
5410 }
5411 return array;
5412 }
5413
5414 /* Return CTX after removal of contexts that are not relevant */
5415
5416 static tree
5417 fld_decl_context (tree ctx)
5418 {
5419 /* Variably modified types are needed for tree_is_indexable to decide
5420 whether the type needs to go to local or global section.
5421 This code is semi-broken but for now it is easiest to keep contexts
5422 as expected. */
5423 if (ctx && TYPE_P (ctx)
5424 && !variably_modified_type_p (ctx, NULL_TREE))
5425 {
5426 while (ctx && TYPE_P (ctx))
5427 ctx = TYPE_CONTEXT (ctx);
5428 }
5429 return ctx;
5430 }
5431
5432 /* For T being aggregate type try to turn it into a incomplete variant.
5433 Return T if no simplification is possible. */
5434
5435 static tree
5436 fld_incomplete_type_of (tree t, class free_lang_data_d *fld)
5437 {
5438 if (!t)
5439 return NULL;
5440 if (POINTER_TYPE_P (t))
5441 {
5442 tree t2 = fld_incomplete_type_of (TREE_TYPE (t), fld);
5443 if (t2 != TREE_TYPE (t))
5444 {
5445 tree first;
5446 if (TREE_CODE (t) == POINTER_TYPE)
5447 first = build_pointer_type_for_mode (t2, TYPE_MODE (t),
5448 TYPE_REF_CAN_ALIAS_ALL (t));
5449 else
5450 first = build_reference_type_for_mode (t2, TYPE_MODE (t),
5451 TYPE_REF_CAN_ALIAS_ALL (t));
5452 gcc_assert (TYPE_CANONICAL (t2) != t2
5453 && TYPE_CANONICAL (t2) == TYPE_CANONICAL (TREE_TYPE (t)));
5454 if (!fld->pset.add (first))
5455 add_tree_to_fld_list (first, fld);
5456 return fld_type_variant (first, t, fld);
5457 }
5458 return t;
5459 }
5460 if (TREE_CODE (t) == ARRAY_TYPE)
5461 return fld_process_array_type (t,
5462 fld_incomplete_type_of (TREE_TYPE (t), fld),
5463 fld_incomplete_types, fld);
5464 if ((!RECORD_OR_UNION_TYPE_P (t) && TREE_CODE (t) != ENUMERAL_TYPE)
5465 || !COMPLETE_TYPE_P (t))
5466 return t;
5467 if (TYPE_MAIN_VARIANT (t) == t)
5468 {
5469 bool existed;
5470 tree &copy
5471 = fld_incomplete_types->get_or_insert (t, &existed);
5472
5473 if (!existed)
5474 {
5475 copy = build_distinct_type_copy (t);
5476
5477 /* It is possible that type was not seen by free_lang_data yet. */
5478 if (!fld->pset.add (copy))
5479 add_tree_to_fld_list (copy, fld);
5480 TYPE_SIZE (copy) = NULL;
5481 TYPE_USER_ALIGN (copy) = 0;
5482 TYPE_SIZE_UNIT (copy) = NULL;
5483 TYPE_CANONICAL (copy) = TYPE_CANONICAL (t);
5484 TREE_ADDRESSABLE (copy) = 0;
5485 if (AGGREGATE_TYPE_P (t))
5486 {
5487 SET_TYPE_MODE (copy, VOIDmode);
5488 SET_TYPE_ALIGN (copy, BITS_PER_UNIT);
5489 TYPE_TYPELESS_STORAGE (copy) = 0;
5490 TYPE_FIELDS (copy) = NULL;
5491 TYPE_BINFO (copy) = NULL;
5492 TYPE_FINAL_P (copy) = 0;
5493 TYPE_EMPTY_P (copy) = 0;
5494 }
5495 else
5496 {
5497 TYPE_VALUES (copy) = NULL;
5498 ENUM_IS_OPAQUE (copy) = 0;
5499 ENUM_IS_SCOPED (copy) = 0;
5500 }
5501
5502 /* Build copy of TYPE_DECL in TYPE_NAME if necessary.
5503 This is needed for ODR violation warnings to come out right (we
5504 want duplicate TYPE_DECLs whenever the type is duplicated because
5505 of ODR violation. Because lang data in the TYPE_DECL may not
5506 have been freed yet, rebuild it from scratch and copy relevant
5507 fields. */
5508 TYPE_NAME (copy) = fld_simplified_type_name (copy);
5509 tree name = TYPE_NAME (copy);
5510
5511 if (name && TREE_CODE (name) == TYPE_DECL)
5512 {
5513 gcc_checking_assert (TREE_TYPE (name) == t);
5514 tree name2 = build_decl (DECL_SOURCE_LOCATION (name), TYPE_DECL,
5515 DECL_NAME (name), copy);
5516 if (DECL_ASSEMBLER_NAME_SET_P (name))
5517 SET_DECL_ASSEMBLER_NAME (name2, DECL_ASSEMBLER_NAME (name));
5518 SET_DECL_ALIGN (name2, 0);
5519 DECL_CONTEXT (name2) = fld_decl_context
5520 (DECL_CONTEXT (name));
5521 TYPE_NAME (copy) = name2;
5522 }
5523 }
5524 return copy;
5525 }
5526 return (fld_type_variant
5527 (fld_incomplete_type_of (TYPE_MAIN_VARIANT (t), fld), t, fld));
5528 }
5529
5530 /* Simplify type T for scenarios where we do not need complete pointer
5531 types. */
5532
5533 static tree
5534 fld_simplified_type (tree t, class free_lang_data_d *fld)
5535 {
5536 if (!t)
5537 return t;
5538 if (POINTER_TYPE_P (t))
5539 return fld_incomplete_type_of (t, fld);
5540 /* FIXME: This triggers verification error, see PR88140. */
5541 if (TREE_CODE (t) == ARRAY_TYPE && 0)
5542 return fld_process_array_type (t, fld_simplified_type (TREE_TYPE (t), fld),
5543 fld_simplified_types, fld);
5544 return t;
5545 }
5546
5547 /* Reset the expression *EXPR_P, a size or position.
5548
5549 ??? We could reset all non-constant sizes or positions. But it's cheap
5550 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5551
5552 We need to reset self-referential sizes or positions because they cannot
5553 be gimplified and thus can contain a CALL_EXPR after the gimplification
5554 is finished, which will run afoul of LTO streaming. And they need to be
5555 reset to something essentially dummy but not constant, so as to preserve
5556 the properties of the object they are attached to. */
5557
5558 static inline void
5559 free_lang_data_in_one_sizepos (tree *expr_p)
5560 {
5561 tree expr = *expr_p;
5562 if (CONTAINS_PLACEHOLDER_P (expr))
5563 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5564 }
5565
5566
5567 /* Reset all the fields in a binfo node BINFO. We only keep
5568 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5569
5570 static void
5571 free_lang_data_in_binfo (tree binfo)
5572 {
5573 unsigned i;
5574 tree t;
5575
5576 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5577
5578 BINFO_VIRTUALS (binfo) = NULL_TREE;
5579 BINFO_BASE_ACCESSES (binfo) = NULL;
5580 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5581 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5582 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
5583 TREE_PUBLIC (binfo) = 0;
5584
5585 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5586 free_lang_data_in_binfo (t);
5587 }
5588
5589
5590 /* Reset all language specific information still present in TYPE. */
5591
5592 static void
5593 free_lang_data_in_type (tree type, class free_lang_data_d *fld)
5594 {
5595 gcc_assert (TYPE_P (type));
5596
5597 /* Give the FE a chance to remove its own data first. */
5598 lang_hooks.free_lang_data (type);
5599
5600 TREE_LANG_FLAG_0 (type) = 0;
5601 TREE_LANG_FLAG_1 (type) = 0;
5602 TREE_LANG_FLAG_2 (type) = 0;
5603 TREE_LANG_FLAG_3 (type) = 0;
5604 TREE_LANG_FLAG_4 (type) = 0;
5605 TREE_LANG_FLAG_5 (type) = 0;
5606 TREE_LANG_FLAG_6 (type) = 0;
5607
5608 TYPE_NEEDS_CONSTRUCTING (type) = 0;
5609
5610 /* Purge non-marked variants from the variants chain, so that they
5611 don't reappear in the IL after free_lang_data. */
5612 while (TYPE_NEXT_VARIANT (type)
5613 && !fld->pset.contains (TYPE_NEXT_VARIANT (type)))
5614 {
5615 tree t = TYPE_NEXT_VARIANT (type);
5616 TYPE_NEXT_VARIANT (type) = TYPE_NEXT_VARIANT (t);
5617 /* Turn the removed types into distinct types. */
5618 TYPE_MAIN_VARIANT (t) = t;
5619 TYPE_NEXT_VARIANT (t) = NULL_TREE;
5620 }
5621
5622 if (TREE_CODE (type) == FUNCTION_TYPE)
5623 {
5624 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5625 /* Remove the const and volatile qualifiers from arguments. The
5626 C++ front end removes them, but the C front end does not,
5627 leading to false ODR violation errors when merging two
5628 instances of the same function signature compiled by
5629 different front ends. */
5630 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5631 {
5632 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5633 tree arg_type = TREE_VALUE (p);
5634
5635 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5636 {
5637 int quals = TYPE_QUALS (arg_type)
5638 & ~TYPE_QUAL_CONST
5639 & ~TYPE_QUAL_VOLATILE;
5640 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5641 if (!fld->pset.add (TREE_VALUE (p)))
5642 free_lang_data_in_type (TREE_VALUE (p), fld);
5643 }
5644 /* C++ FE uses TREE_PURPOSE to store initial values. */
5645 TREE_PURPOSE (p) = NULL;
5646 }
5647 }
5648 else if (TREE_CODE (type) == METHOD_TYPE)
5649 {
5650 TREE_TYPE (type) = fld_simplified_type (TREE_TYPE (type), fld);
5651 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5652 {
5653 /* C++ FE uses TREE_PURPOSE to store initial values. */
5654 TREE_VALUE (p) = fld_simplified_type (TREE_VALUE (p), fld);
5655 TREE_PURPOSE (p) = NULL;
5656 }
5657 }
5658 else if (RECORD_OR_UNION_TYPE_P (type))
5659 {
5660 /* Remove members that are not FIELD_DECLs from the field list
5661 of an aggregate. These occur in C++. */
5662 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5663 if (TREE_CODE (member) == FIELD_DECL)
5664 prev = &DECL_CHAIN (member);
5665 else
5666 *prev = DECL_CHAIN (member);
5667
5668 TYPE_VFIELD (type) = NULL_TREE;
5669
5670 if (TYPE_BINFO (type))
5671 {
5672 free_lang_data_in_binfo (TYPE_BINFO (type));
5673 /* We need to preserve link to bases and virtual table for all
5674 polymorphic types to make devirtualization machinery working. */
5675 if (!BINFO_VTABLE (TYPE_BINFO (type)))
5676 TYPE_BINFO (type) = NULL;
5677 }
5678 }
5679 else if (INTEGRAL_TYPE_P (type)
5680 || SCALAR_FLOAT_TYPE_P (type)
5681 || FIXED_POINT_TYPE_P (type))
5682 {
5683 if (TREE_CODE (type) == ENUMERAL_TYPE)
5684 {
5685 ENUM_IS_OPAQUE (type) = 0;
5686 ENUM_IS_SCOPED (type) = 0;
5687 /* Type values are used only for C++ ODR checking. Drop them
5688 for all type variants and non-ODR types.
5689 For ODR types the data is freed in free_odr_warning_data. */
5690 if (!TYPE_VALUES (type))
5691 ;
5692 else if (TYPE_MAIN_VARIANT (type) != type
5693 || !type_with_linkage_p (type)
5694 || type_in_anonymous_namespace_p (type))
5695 TYPE_VALUES (type) = NULL;
5696 else
5697 register_odr_enum (type);
5698 }
5699 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5700 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5701 }
5702
5703 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5704
5705 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5706 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5707
5708 if (TYPE_CONTEXT (type)
5709 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5710 {
5711 tree ctx = TYPE_CONTEXT (type);
5712 do
5713 {
5714 ctx = BLOCK_SUPERCONTEXT (ctx);
5715 }
5716 while (ctx && TREE_CODE (ctx) == BLOCK);
5717 TYPE_CONTEXT (type) = ctx;
5718 }
5719
5720 TYPE_STUB_DECL (type) = NULL;
5721 TYPE_NAME (type) = fld_simplified_type_name (type);
5722 }
5723
5724
5725 /* Return true if DECL may need an assembler name to be set. */
5726
5727 static inline bool
5728 need_assembler_name_p (tree decl)
5729 {
5730 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5731 Rule merging. This makes type_odr_p to return true on those types during
5732 LTO and by comparing the mangled name, we can say what types are intended
5733 to be equivalent across compilation unit.
5734
5735 We do not store names of type_in_anonymous_namespace_p.
5736
5737 Record, union and enumeration type have linkage that allows use
5738 to check type_in_anonymous_namespace_p. We do not mangle compound types
5739 that always can be compared structurally.
5740
5741 Similarly for builtin types, we compare properties of their main variant.
5742 A special case are integer types where mangling do make differences
5743 between char/signed char/unsigned char etc. Storing name for these makes
5744 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5745 See cp/mangle.c:write_builtin_type for details. */
5746
5747 if (TREE_CODE (decl) == TYPE_DECL)
5748 {
5749 if (DECL_NAME (decl)
5750 && decl == TYPE_NAME (TREE_TYPE (decl))
5751 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5752 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5753 && ((TREE_CODE (TREE_TYPE (decl)) != RECORD_TYPE
5754 && TREE_CODE (TREE_TYPE (decl)) != UNION_TYPE)
5755 || TYPE_CXX_ODR_P (TREE_TYPE (decl)))
5756 && (type_with_linkage_p (TREE_TYPE (decl))
5757 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5758 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5759 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5760 return false;
5761 }
5762 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5763 if (!VAR_OR_FUNCTION_DECL_P (decl))
5764 return false;
5765
5766 /* If DECL already has its assembler name set, it does not need a
5767 new one. */
5768 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5769 || DECL_ASSEMBLER_NAME_SET_P (decl))
5770 return false;
5771
5772 /* Abstract decls do not need an assembler name. */
5773 if (DECL_ABSTRACT_P (decl))
5774 return false;
5775
5776 /* For VAR_DECLs, only static, public and external symbols need an
5777 assembler name. */
5778 if (VAR_P (decl)
5779 && !TREE_STATIC (decl)
5780 && !TREE_PUBLIC (decl)
5781 && !DECL_EXTERNAL (decl))
5782 return false;
5783
5784 if (TREE_CODE (decl) == FUNCTION_DECL)
5785 {
5786 /* Do not set assembler name on builtins. Allow RTL expansion to
5787 decide whether to expand inline or via a regular call. */
5788 if (fndecl_built_in_p (decl)
5789 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5790 return false;
5791
5792 /* Functions represented in the callgraph need an assembler name. */
5793 if (cgraph_node::get (decl) != NULL)
5794 return true;
5795
5796 /* Unused and not public functions don't need an assembler name. */
5797 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5798 return false;
5799 }
5800
5801 return true;
5802 }
5803
5804
5805 /* Reset all language specific information still present in symbol
5806 DECL. */
5807
5808 static void
5809 free_lang_data_in_decl (tree decl, class free_lang_data_d *fld)
5810 {
5811 gcc_assert (DECL_P (decl));
5812
5813 /* Give the FE a chance to remove its own data first. */
5814 lang_hooks.free_lang_data (decl);
5815
5816 TREE_LANG_FLAG_0 (decl) = 0;
5817 TREE_LANG_FLAG_1 (decl) = 0;
5818 TREE_LANG_FLAG_2 (decl) = 0;
5819 TREE_LANG_FLAG_3 (decl) = 0;
5820 TREE_LANG_FLAG_4 (decl) = 0;
5821 TREE_LANG_FLAG_5 (decl) = 0;
5822 TREE_LANG_FLAG_6 (decl) = 0;
5823
5824 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5825 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5826 if (TREE_CODE (decl) == FIELD_DECL)
5827 {
5828 DECL_FCONTEXT (decl) = NULL;
5829 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5830 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5831 DECL_QUALIFIER (decl) = NULL_TREE;
5832 }
5833
5834 if (TREE_CODE (decl) == FUNCTION_DECL)
5835 {
5836 struct cgraph_node *node;
5837 /* Frontends do not set TREE_ADDRESSABLE on public variables even though
5838 the address may be taken in other unit, so this flag has no practical
5839 use for middle-end.
5840
5841 It would make more sense if frontends set TREE_ADDRESSABLE to 0 only
5842 for public objects that indeed cannot be adressed, but it is not
5843 the case. Set the flag to true so we do not get merge failures for
5844 i.e. virtual tables between units that take address of it and
5845 units that don't. */
5846 if (TREE_PUBLIC (decl))
5847 TREE_ADDRESSABLE (decl) = true;
5848 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5849 if (!(node = cgraph_node::get (decl))
5850 || (!node->definition && !node->clones))
5851 {
5852 if (node)
5853 node->release_body ();
5854 else
5855 {
5856 release_function_body (decl);
5857 DECL_ARGUMENTS (decl) = NULL;
5858 DECL_RESULT (decl) = NULL;
5859 DECL_INITIAL (decl) = error_mark_node;
5860 }
5861 }
5862 if (gimple_has_body_p (decl) || (node && node->thunk))
5863 {
5864 tree t;
5865
5866 /* If DECL has a gimple body, then the context for its
5867 arguments must be DECL. Otherwise, it doesn't really
5868 matter, as we will not be emitting any code for DECL. In
5869 general, there may be other instances of DECL created by
5870 the front end and since PARM_DECLs are generally shared,
5871 their DECL_CONTEXT changes as the replicas of DECL are
5872 created. The only time where DECL_CONTEXT is important
5873 is for the FUNCTION_DECLs that have a gimple body (since
5874 the PARM_DECL will be used in the function's body). */
5875 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5876 DECL_CONTEXT (t) = decl;
5877 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5878 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5879 = target_option_default_node;
5880 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5881 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5882 = optimization_default_node;
5883 }
5884
5885 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5886 At this point, it is not needed anymore. */
5887 DECL_SAVED_TREE (decl) = NULL_TREE;
5888
5889 /* Clear the abstract origin if it refers to a method.
5890 Otherwise dwarf2out.c will ICE as we splice functions out of
5891 TYPE_FIELDS and thus the origin will not be output
5892 correctly. */
5893 if (DECL_ABSTRACT_ORIGIN (decl)
5894 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5895 && RECORD_OR_UNION_TYPE_P
5896 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5897 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5898
5899 DECL_VINDEX (decl) = NULL_TREE;
5900 }
5901 else if (VAR_P (decl))
5902 {
5903 /* See comment above why we set the flag for functions. */
5904 if (TREE_PUBLIC (decl))
5905 TREE_ADDRESSABLE (decl) = true;
5906 if ((DECL_EXTERNAL (decl)
5907 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5908 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5909 DECL_INITIAL (decl) = NULL_TREE;
5910 }
5911 else if (TREE_CODE (decl) == TYPE_DECL)
5912 {
5913 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5914 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5915 TREE_PUBLIC (decl) = 0;
5916 TREE_PRIVATE (decl) = 0;
5917 DECL_ARTIFICIAL (decl) = 0;
5918 TYPE_DECL_SUPPRESS_DEBUG (decl) = 0;
5919 DECL_INITIAL (decl) = NULL_TREE;
5920 DECL_ORIGINAL_TYPE (decl) = NULL_TREE;
5921 DECL_MODE (decl) = VOIDmode;
5922 SET_DECL_ALIGN (decl, 0);
5923 /* TREE_TYPE is cleared at WPA time in free_odr_warning_data. */
5924 }
5925 else if (TREE_CODE (decl) == FIELD_DECL)
5926 {
5927 TREE_TYPE (decl) = fld_simplified_type (TREE_TYPE (decl), fld);
5928 DECL_INITIAL (decl) = NULL_TREE;
5929 }
5930 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5931 && DECL_INITIAL (decl)
5932 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5933 {
5934 /* Strip builtins from the translation-unit BLOCK. We still have targets
5935 without builtin_decl_explicit support and also builtins are shared
5936 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5937 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5938 while (*nextp)
5939 {
5940 tree var = *nextp;
5941 if (TREE_CODE (var) == FUNCTION_DECL
5942 && fndecl_built_in_p (var))
5943 *nextp = TREE_CHAIN (var);
5944 else
5945 nextp = &TREE_CHAIN (var);
5946 }
5947 }
5948 /* We need to keep field decls associated with their trees. Otherwise tree
5949 merging may merge some fileds and keep others disjoint wich in turn will
5950 not do well with TREE_CHAIN pointers linking them.
5951
5952 Also do not drop containing types for virtual methods and tables because
5953 these are needed by devirtualization.
5954 C++ destructors are special because C++ frontends sometimes produces
5955 virtual destructor as an alias of non-virtual destructor. In
5956 devirutalization code we always walk through aliases and we need
5957 context to be preserved too. See PR89335 */
5958 if (TREE_CODE (decl) != FIELD_DECL
5959 && ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
5960 || (!DECL_VIRTUAL_P (decl)
5961 && (TREE_CODE (decl) != FUNCTION_DECL
5962 || !DECL_CXX_DESTRUCTOR_P (decl)))))
5963 DECL_CONTEXT (decl) = fld_decl_context (DECL_CONTEXT (decl));
5964 }
5965
5966
5967 /* Operand callback helper for free_lang_data_in_node. *TP is the
5968 subtree operand being considered. */
5969
5970 static tree
5971 find_decls_types_r (tree *tp, int *ws, void *data)
5972 {
5973 tree t = *tp;
5974 class free_lang_data_d *fld = (class free_lang_data_d *) data;
5975
5976 if (TREE_CODE (t) == TREE_LIST)
5977 return NULL_TREE;
5978
5979 /* Language specific nodes will be removed, so there is no need
5980 to gather anything under them. */
5981 if (is_lang_specific (t))
5982 {
5983 *ws = 0;
5984 return NULL_TREE;
5985 }
5986
5987 if (DECL_P (t))
5988 {
5989 /* Note that walk_tree does not traverse every possible field in
5990 decls, so we have to do our own traversals here. */
5991 add_tree_to_fld_list (t, fld);
5992
5993 fld_worklist_push (DECL_NAME (t), fld);
5994 fld_worklist_push (DECL_CONTEXT (t), fld);
5995 fld_worklist_push (DECL_SIZE (t), fld);
5996 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5997
5998 /* We are going to remove everything under DECL_INITIAL for
5999 TYPE_DECLs. No point walking them. */
6000 if (TREE_CODE (t) != TYPE_DECL)
6001 fld_worklist_push (DECL_INITIAL (t), fld);
6002
6003 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
6004 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
6005
6006 if (TREE_CODE (t) == FUNCTION_DECL)
6007 {
6008 fld_worklist_push (DECL_ARGUMENTS (t), fld);
6009 fld_worklist_push (DECL_RESULT (t), fld);
6010 }
6011 else if (TREE_CODE (t) == FIELD_DECL)
6012 {
6013 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
6014 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
6015 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
6016 fld_worklist_push (DECL_FCONTEXT (t), fld);
6017 }
6018
6019 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
6020 && DECL_HAS_VALUE_EXPR_P (t))
6021 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
6022
6023 if (TREE_CODE (t) != FIELD_DECL
6024 && TREE_CODE (t) != TYPE_DECL)
6025 fld_worklist_push (TREE_CHAIN (t), fld);
6026 *ws = 0;
6027 }
6028 else if (TYPE_P (t))
6029 {
6030 /* Note that walk_tree does not traverse every possible field in
6031 types, so we have to do our own traversals here. */
6032 add_tree_to_fld_list (t, fld);
6033
6034 if (!RECORD_OR_UNION_TYPE_P (t))
6035 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
6036 fld_worklist_push (TYPE_SIZE (t), fld);
6037 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
6038 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
6039 fld_worklist_push (TYPE_POINTER_TO (t), fld);
6040 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
6041 fld_worklist_push (TYPE_NAME (t), fld);
6042 /* While we do not stream TYPE_POINTER_TO and TYPE_REFERENCE_TO
6043 lists, we may look types up in these lists and use them while
6044 optimizing the function body. Thus we need to free lang data
6045 in them. */
6046 if (TREE_CODE (t) == POINTER_TYPE)
6047 fld_worklist_push (TYPE_NEXT_PTR_TO (t), fld);
6048 if (TREE_CODE (t) == REFERENCE_TYPE)
6049 fld_worklist_push (TYPE_NEXT_REF_TO (t), fld);
6050 if (!POINTER_TYPE_P (t))
6051 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
6052 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
6053 if (!RECORD_OR_UNION_TYPE_P (t))
6054 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
6055 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
6056 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
6057 do not and want not to reach unused variants this way. */
6058 if (TYPE_CONTEXT (t))
6059 {
6060 tree ctx = TYPE_CONTEXT (t);
6061 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
6062 So push that instead. */
6063 while (ctx && TREE_CODE (ctx) == BLOCK)
6064 ctx = BLOCK_SUPERCONTEXT (ctx);
6065 fld_worklist_push (ctx, fld);
6066 }
6067 fld_worklist_push (TYPE_CANONICAL (t), fld);
6068
6069 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
6070 {
6071 unsigned i;
6072 tree tem;
6073 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
6074 fld_worklist_push (TREE_TYPE (tem), fld);
6075 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
6076 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
6077 }
6078 if (RECORD_OR_UNION_TYPE_P (t))
6079 {
6080 tree tem;
6081 /* Push all TYPE_FIELDS - there can be interleaving interesting
6082 and non-interesting things. */
6083 tem = TYPE_FIELDS (t);
6084 while (tem)
6085 {
6086 if (TREE_CODE (tem) == FIELD_DECL)
6087 fld_worklist_push (tem, fld);
6088 tem = TREE_CHAIN (tem);
6089 }
6090 }
6091 if (FUNC_OR_METHOD_TYPE_P (t))
6092 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
6093
6094 fld_worklist_push (TYPE_STUB_DECL (t), fld);
6095 *ws = 0;
6096 }
6097 else if (TREE_CODE (t) == BLOCK)
6098 {
6099 for (tree *tem = &BLOCK_VARS (t); *tem; )
6100 {
6101 if (TREE_CODE (*tem) != LABEL_DECL
6102 && (TREE_CODE (*tem) != VAR_DECL
6103 || !auto_var_in_fn_p (*tem, DECL_CONTEXT (*tem))))
6104 {
6105 gcc_assert (TREE_CODE (*tem) != RESULT_DECL
6106 && TREE_CODE (*tem) != PARM_DECL);
6107 *tem = TREE_CHAIN (*tem);
6108 }
6109 else
6110 {
6111 fld_worklist_push (*tem, fld);
6112 tem = &TREE_CHAIN (*tem);
6113 }
6114 }
6115 for (tree tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
6116 fld_worklist_push (tem, fld);
6117 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
6118 }
6119
6120 if (TREE_CODE (t) != IDENTIFIER_NODE
6121 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
6122 fld_worklist_push (TREE_TYPE (t), fld);
6123
6124 return NULL_TREE;
6125 }
6126
6127
6128 /* Find decls and types in T. */
6129
6130 static void
6131 find_decls_types (tree t, class free_lang_data_d *fld)
6132 {
6133 while (1)
6134 {
6135 if (!fld->pset.contains (t))
6136 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
6137 if (fld->worklist.is_empty ())
6138 break;
6139 t = fld->worklist.pop ();
6140 }
6141 }
6142
6143 /* Translate all the types in LIST with the corresponding runtime
6144 types. */
6145
6146 static tree
6147 get_eh_types_for_runtime (tree list)
6148 {
6149 tree head, prev;
6150
6151 if (list == NULL_TREE)
6152 return NULL_TREE;
6153
6154 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
6155 prev = head;
6156 list = TREE_CHAIN (list);
6157 while (list)
6158 {
6159 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
6160 TREE_CHAIN (prev) = n;
6161 prev = TREE_CHAIN (prev);
6162 list = TREE_CHAIN (list);
6163 }
6164
6165 return head;
6166 }
6167
6168
6169 /* Find decls and types referenced in EH region R and store them in
6170 FLD->DECLS and FLD->TYPES. */
6171
6172 static void
6173 find_decls_types_in_eh_region (eh_region r, class free_lang_data_d *fld)
6174 {
6175 switch (r->type)
6176 {
6177 case ERT_CLEANUP:
6178 break;
6179
6180 case ERT_TRY:
6181 {
6182 eh_catch c;
6183
6184 /* The types referenced in each catch must first be changed to the
6185 EH types used at runtime. This removes references to FE types
6186 in the region. */
6187 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
6188 {
6189 c->type_list = get_eh_types_for_runtime (c->type_list);
6190 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
6191 }
6192 }
6193 break;
6194
6195 case ERT_ALLOWED_EXCEPTIONS:
6196 r->u.allowed.type_list
6197 = get_eh_types_for_runtime (r->u.allowed.type_list);
6198 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
6199 break;
6200
6201 case ERT_MUST_NOT_THROW:
6202 walk_tree (&r->u.must_not_throw.failure_decl,
6203 find_decls_types_r, fld, &fld->pset);
6204 break;
6205 }
6206 }
6207
6208
6209 /* Find decls and types referenced in cgraph node N and store them in
6210 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6211 look for *every* kind of DECL and TYPE node reachable from N,
6212 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6213 NAMESPACE_DECLs, etc). */
6214
6215 static void
6216 find_decls_types_in_node (struct cgraph_node *n, class free_lang_data_d *fld)
6217 {
6218 basic_block bb;
6219 struct function *fn;
6220 unsigned ix;
6221 tree t;
6222
6223 find_decls_types (n->decl, fld);
6224
6225 if (!gimple_has_body_p (n->decl))
6226 return;
6227
6228 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
6229
6230 fn = DECL_STRUCT_FUNCTION (n->decl);
6231
6232 /* Traverse locals. */
6233 FOR_EACH_LOCAL_DECL (fn, ix, t)
6234 find_decls_types (t, fld);
6235
6236 /* Traverse EH regions in FN. */
6237 {
6238 eh_region r;
6239 FOR_ALL_EH_REGION_FN (r, fn)
6240 find_decls_types_in_eh_region (r, fld);
6241 }
6242
6243 /* Traverse every statement in FN. */
6244 FOR_EACH_BB_FN (bb, fn)
6245 {
6246 gphi_iterator psi;
6247 gimple_stmt_iterator si;
6248 unsigned i;
6249
6250 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
6251 {
6252 gphi *phi = psi.phi ();
6253
6254 for (i = 0; i < gimple_phi_num_args (phi); i++)
6255 {
6256 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
6257 find_decls_types (*arg_p, fld);
6258 }
6259 }
6260
6261 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6262 {
6263 gimple *stmt = gsi_stmt (si);
6264
6265 if (is_gimple_call (stmt))
6266 find_decls_types (gimple_call_fntype (stmt), fld);
6267
6268 for (i = 0; i < gimple_num_ops (stmt); i++)
6269 {
6270 tree arg = gimple_op (stmt, i);
6271 find_decls_types (arg, fld);
6272 /* find_decls_types doesn't walk TREE_PURPOSE of TREE_LISTs,
6273 which we need for asm stmts. */
6274 if (arg
6275 && TREE_CODE (arg) == TREE_LIST
6276 && TREE_PURPOSE (arg)
6277 && gimple_code (stmt) == GIMPLE_ASM)
6278 find_decls_types (TREE_PURPOSE (arg), fld);
6279 }
6280 }
6281 }
6282 }
6283
6284
6285 /* Find decls and types referenced in varpool node N and store them in
6286 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
6287 look for *every* kind of DECL and TYPE node reachable from N,
6288 including those embedded inside types and decls (i.e,, TYPE_DECLs,
6289 NAMESPACE_DECLs, etc). */
6290
6291 static void
6292 find_decls_types_in_var (varpool_node *v, class free_lang_data_d *fld)
6293 {
6294 find_decls_types (v->decl, fld);
6295 }
6296
6297 /* If T needs an assembler name, have one created for it. */
6298
6299 void
6300 assign_assembler_name_if_needed (tree t)
6301 {
6302 if (need_assembler_name_p (t))
6303 {
6304 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
6305 diagnostics that use input_location to show locus
6306 information. The problem here is that, at this point,
6307 input_location is generally anchored to the end of the file
6308 (since the parser is long gone), so we don't have a good
6309 position to pin it to.
6310
6311 To alleviate this problem, this uses the location of T's
6312 declaration. Examples of this are
6313 testsuite/g++.dg/template/cond2.C and
6314 testsuite/g++.dg/template/pr35240.C. */
6315 location_t saved_location = input_location;
6316 input_location = DECL_SOURCE_LOCATION (t);
6317
6318 decl_assembler_name (t);
6319
6320 input_location = saved_location;
6321 }
6322 }
6323
6324
6325 /* Free language specific information for every operand and expression
6326 in every node of the call graph. This process operates in three stages:
6327
6328 1- Every callgraph node and varpool node is traversed looking for
6329 decls and types embedded in them. This is a more exhaustive
6330 search than that done by find_referenced_vars, because it will
6331 also collect individual fields, decls embedded in types, etc.
6332
6333 2- All the decls found are sent to free_lang_data_in_decl.
6334
6335 3- All the types found are sent to free_lang_data_in_type.
6336
6337 The ordering between decls and types is important because
6338 free_lang_data_in_decl sets assembler names, which includes
6339 mangling. So types cannot be freed up until assembler names have
6340 been set up. */
6341
6342 static void
6343 free_lang_data_in_cgraph (class free_lang_data_d *fld)
6344 {
6345 struct cgraph_node *n;
6346 varpool_node *v;
6347 tree t;
6348 unsigned i;
6349 alias_pair *p;
6350
6351 /* Find decls and types in the body of every function in the callgraph. */
6352 FOR_EACH_FUNCTION (n)
6353 find_decls_types_in_node (n, fld);
6354
6355 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
6356 find_decls_types (p->decl, fld);
6357
6358 /* Find decls and types in every varpool symbol. */
6359 FOR_EACH_VARIABLE (v)
6360 find_decls_types_in_var (v, fld);
6361
6362 /* Set the assembler name on every decl found. We need to do this
6363 now because free_lang_data_in_decl will invalidate data needed
6364 for mangling. This breaks mangling on interdependent decls. */
6365 FOR_EACH_VEC_ELT (fld->decls, i, t)
6366 assign_assembler_name_if_needed (t);
6367
6368 /* Traverse every decl found freeing its language data. */
6369 FOR_EACH_VEC_ELT (fld->decls, i, t)
6370 free_lang_data_in_decl (t, fld);
6371
6372 /* Traverse every type found freeing its language data. */
6373 FOR_EACH_VEC_ELT (fld->types, i, t)
6374 free_lang_data_in_type (t, fld);
6375 }
6376
6377
6378 /* Free resources that are used by FE but are not needed once they are done. */
6379
6380 static unsigned
6381 free_lang_data (void)
6382 {
6383 unsigned i;
6384 class free_lang_data_d fld;
6385
6386 /* If we are the LTO frontend we have freed lang-specific data already. */
6387 if (in_lto_p
6388 || (!flag_generate_lto && !flag_generate_offload))
6389 {
6390 /* Rebuild type inheritance graph even when not doing LTO to get
6391 consistent profile data. */
6392 rebuild_type_inheritance_graph ();
6393 return 0;
6394 }
6395
6396 fld_incomplete_types = new hash_map<tree, tree>;
6397 fld_simplified_types = new hash_map<tree, tree>;
6398
6399 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
6400 if (vec_safe_is_empty (all_translation_units))
6401 build_translation_unit_decl (NULL_TREE);
6402
6403 /* Allocate and assign alias sets to the standard integer types
6404 while the slots are still in the way the frontends generated them. */
6405 for (i = 0; i < itk_none; ++i)
6406 if (integer_types[i])
6407 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
6408
6409 /* Traverse the IL resetting language specific information for
6410 operands, expressions, etc. */
6411 free_lang_data_in_cgraph (&fld);
6412
6413 /* Create gimple variants for common types. */
6414 for (unsigned i = 0;
6415 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
6416 ++i)
6417 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
6418
6419 /* Reset some langhooks. Do not reset types_compatible_p, it may
6420 still be used indirectly via the get_alias_set langhook. */
6421 lang_hooks.dwarf_name = lhd_dwarf_name;
6422 lang_hooks.decl_printable_name = gimple_decl_printable_name;
6423 lang_hooks.gimplify_expr = lhd_gimplify_expr;
6424 lang_hooks.overwrite_decl_assembler_name = lhd_overwrite_decl_assembler_name;
6425 lang_hooks.print_xnode = lhd_print_tree_nothing;
6426 lang_hooks.print_decl = lhd_print_tree_nothing;
6427 lang_hooks.print_type = lhd_print_tree_nothing;
6428 lang_hooks.print_identifier = lhd_print_tree_nothing;
6429
6430 lang_hooks.tree_inlining.var_mod_type_p = hook_bool_tree_tree_false;
6431
6432 if (flag_checking)
6433 {
6434 int i;
6435 tree t;
6436
6437 FOR_EACH_VEC_ELT (fld.types, i, t)
6438 verify_type (t);
6439 }
6440
6441 /* We do not want the default decl_assembler_name implementation,
6442 rather if we have fixed everything we want a wrapper around it
6443 asserting that all non-local symbols already got their assembler
6444 name and only produce assembler names for local symbols. Or rather
6445 make sure we never call decl_assembler_name on local symbols and
6446 devise a separate, middle-end private scheme for it. */
6447
6448 /* Reset diagnostic machinery. */
6449 tree_diagnostics_defaults (global_dc);
6450
6451 rebuild_type_inheritance_graph ();
6452
6453 delete fld_incomplete_types;
6454 delete fld_simplified_types;
6455
6456 return 0;
6457 }
6458
6459
6460 namespace {
6461
6462 const pass_data pass_data_ipa_free_lang_data =
6463 {
6464 SIMPLE_IPA_PASS, /* type */
6465 "*free_lang_data", /* name */
6466 OPTGROUP_NONE, /* optinfo_flags */
6467 TV_IPA_FREE_LANG_DATA, /* tv_id */
6468 0, /* properties_required */
6469 0, /* properties_provided */
6470 0, /* properties_destroyed */
6471 0, /* todo_flags_start */
6472 0, /* todo_flags_finish */
6473 };
6474
6475 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
6476 {
6477 public:
6478 pass_ipa_free_lang_data (gcc::context *ctxt)
6479 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
6480 {}
6481
6482 /* opt_pass methods: */
6483 virtual unsigned int execute (function *) { return free_lang_data (); }
6484
6485 }; // class pass_ipa_free_lang_data
6486
6487 } // anon namespace
6488
6489 simple_ipa_opt_pass *
6490 make_pass_ipa_free_lang_data (gcc::context *ctxt)
6491 {
6492 return new pass_ipa_free_lang_data (ctxt);
6493 }
6494 \f
6495 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6496 of the various TYPE_QUAL values. */
6497
6498 static void
6499 set_type_quals (tree type, int type_quals)
6500 {
6501 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6502 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6503 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6504 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6505 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6506 }
6507
6508 /* Returns true iff CAND and BASE have equivalent language-specific
6509 qualifiers. */
6510
6511 bool
6512 check_lang_type (const_tree cand, const_tree base)
6513 {
6514 if (lang_hooks.types.type_hash_eq == NULL)
6515 return true;
6516 /* type_hash_eq currently only applies to these types. */
6517 if (TREE_CODE (cand) != FUNCTION_TYPE
6518 && TREE_CODE (cand) != METHOD_TYPE)
6519 return true;
6520 return lang_hooks.types.type_hash_eq (cand, base);
6521 }
6522
6523 /* This function checks to see if TYPE matches the size one of the built-in
6524 atomic types, and returns that core atomic type. */
6525
6526 static tree
6527 find_atomic_core_type (const_tree type)
6528 {
6529 tree base_atomic_type;
6530
6531 /* Only handle complete types. */
6532 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
6533 return NULL_TREE;
6534
6535 switch (tree_to_uhwi (TYPE_SIZE (type)))
6536 {
6537 case 8:
6538 base_atomic_type = atomicQI_type_node;
6539 break;
6540
6541 case 16:
6542 base_atomic_type = atomicHI_type_node;
6543 break;
6544
6545 case 32:
6546 base_atomic_type = atomicSI_type_node;
6547 break;
6548
6549 case 64:
6550 base_atomic_type = atomicDI_type_node;
6551 break;
6552
6553 case 128:
6554 base_atomic_type = atomicTI_type_node;
6555 break;
6556
6557 default:
6558 base_atomic_type = NULL_TREE;
6559 }
6560
6561 return base_atomic_type;
6562 }
6563
6564 /* Returns true iff unqualified CAND and BASE are equivalent. */
6565
6566 bool
6567 check_base_type (const_tree cand, const_tree base)
6568 {
6569 if (TYPE_NAME (cand) != TYPE_NAME (base)
6570 /* Apparently this is needed for Objective-C. */
6571 || TYPE_CONTEXT (cand) != TYPE_CONTEXT (base)
6572 || !attribute_list_equal (TYPE_ATTRIBUTES (cand),
6573 TYPE_ATTRIBUTES (base)))
6574 return false;
6575 /* Check alignment. */
6576 if (TYPE_ALIGN (cand) == TYPE_ALIGN (base))
6577 return true;
6578 /* Atomic types increase minimal alignment. We must to do so as well
6579 or we get duplicated canonical types. See PR88686. */
6580 if ((TYPE_QUALS (cand) & TYPE_QUAL_ATOMIC))
6581 {
6582 /* See if this object can map to a basic atomic type. */
6583 tree atomic_type = find_atomic_core_type (cand);
6584 if (atomic_type && TYPE_ALIGN (atomic_type) == TYPE_ALIGN (cand))
6585 return true;
6586 }
6587 return false;
6588 }
6589
6590 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6591
6592 bool
6593 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6594 {
6595 return (TYPE_QUALS (cand) == type_quals
6596 && check_base_type (cand, base)
6597 && check_lang_type (cand, base));
6598 }
6599
6600 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6601
6602 static bool
6603 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6604 {
6605 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6606 && TYPE_NAME (cand) == TYPE_NAME (base)
6607 /* Apparently this is needed for Objective-C. */
6608 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6609 /* Check alignment. */
6610 && TYPE_ALIGN (cand) == align
6611 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6612 TYPE_ATTRIBUTES (base))
6613 && check_lang_type (cand, base));
6614 }
6615
6616 /* Return a version of the TYPE, qualified as indicated by the
6617 TYPE_QUALS, if one exists. If no qualified version exists yet,
6618 return NULL_TREE. */
6619
6620 tree
6621 get_qualified_type (tree type, int type_quals)
6622 {
6623 if (TYPE_QUALS (type) == type_quals)
6624 return type;
6625
6626 tree mv = TYPE_MAIN_VARIANT (type);
6627 if (check_qualified_type (mv, type, type_quals))
6628 return mv;
6629
6630 /* Search the chain of variants to see if there is already one there just
6631 like the one we need to have. If so, use that existing one. We must
6632 preserve the TYPE_NAME, since there is code that depends on this. */
6633 for (tree *tp = &TYPE_NEXT_VARIANT (mv); *tp; tp = &TYPE_NEXT_VARIANT (*tp))
6634 if (check_qualified_type (*tp, type, type_quals))
6635 {
6636 /* Put the found variant at the head of the variant list so
6637 frequently searched variants get found faster. The C++ FE
6638 benefits greatly from this. */
6639 tree t = *tp;
6640 *tp = TYPE_NEXT_VARIANT (t);
6641 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
6642 TYPE_NEXT_VARIANT (mv) = t;
6643 return t;
6644 }
6645
6646 return NULL_TREE;
6647 }
6648
6649 /* Like get_qualified_type, but creates the type if it does not
6650 exist. This function never returns NULL_TREE. */
6651
6652 tree
6653 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6654 {
6655 tree t;
6656
6657 /* See if we already have the appropriate qualified variant. */
6658 t = get_qualified_type (type, type_quals);
6659
6660 /* If not, build it. */
6661 if (!t)
6662 {
6663 t = build_variant_type_copy (type PASS_MEM_STAT);
6664 set_type_quals (t, type_quals);
6665
6666 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6667 {
6668 /* See if this object can map to a basic atomic type. */
6669 tree atomic_type = find_atomic_core_type (type);
6670 if (atomic_type)
6671 {
6672 /* Ensure the alignment of this type is compatible with
6673 the required alignment of the atomic type. */
6674 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6675 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6676 }
6677 }
6678
6679 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6680 /* Propagate structural equality. */
6681 SET_TYPE_STRUCTURAL_EQUALITY (t);
6682 else if (TYPE_CANONICAL (type) != type)
6683 /* Build the underlying canonical type, since it is different
6684 from TYPE. */
6685 {
6686 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6687 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6688 }
6689 else
6690 /* T is its own canonical type. */
6691 TYPE_CANONICAL (t) = t;
6692
6693 }
6694
6695 return t;
6696 }
6697
6698 /* Create a variant of type T with alignment ALIGN. */
6699
6700 tree
6701 build_aligned_type (tree type, unsigned int align)
6702 {
6703 tree t;
6704
6705 if (TYPE_PACKED (type)
6706 || TYPE_ALIGN (type) == align)
6707 return type;
6708
6709 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6710 if (check_aligned_type (t, type, align))
6711 return t;
6712
6713 t = build_variant_type_copy (type);
6714 SET_TYPE_ALIGN (t, align);
6715 TYPE_USER_ALIGN (t) = 1;
6716
6717 return t;
6718 }
6719
6720 /* Create a new distinct copy of TYPE. The new type is made its own
6721 MAIN_VARIANT. If TYPE requires structural equality checks, the
6722 resulting type requires structural equality checks; otherwise, its
6723 TYPE_CANONICAL points to itself. */
6724
6725 tree
6726 build_distinct_type_copy (tree type MEM_STAT_DECL)
6727 {
6728 tree t = copy_node (type PASS_MEM_STAT);
6729
6730 TYPE_POINTER_TO (t) = 0;
6731 TYPE_REFERENCE_TO (t) = 0;
6732
6733 /* Set the canonical type either to a new equivalence class, or
6734 propagate the need for structural equality checks. */
6735 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6736 SET_TYPE_STRUCTURAL_EQUALITY (t);
6737 else
6738 TYPE_CANONICAL (t) = t;
6739
6740 /* Make it its own variant. */
6741 TYPE_MAIN_VARIANT (t) = t;
6742 TYPE_NEXT_VARIANT (t) = 0;
6743
6744 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6745 whose TREE_TYPE is not t. This can also happen in the Ada
6746 frontend when using subtypes. */
6747
6748 return t;
6749 }
6750
6751 /* Create a new variant of TYPE, equivalent but distinct. This is so
6752 the caller can modify it. TYPE_CANONICAL for the return type will
6753 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6754 are considered equal by the language itself (or that both types
6755 require structural equality checks). */
6756
6757 tree
6758 build_variant_type_copy (tree type MEM_STAT_DECL)
6759 {
6760 tree t, m = TYPE_MAIN_VARIANT (type);
6761
6762 t = build_distinct_type_copy (type PASS_MEM_STAT);
6763
6764 /* Since we're building a variant, assume that it is a non-semantic
6765 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6766 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6767 /* Type variants have no alias set defined. */
6768 TYPE_ALIAS_SET (t) = -1;
6769
6770 /* Add the new type to the chain of variants of TYPE. */
6771 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6772 TYPE_NEXT_VARIANT (m) = t;
6773 TYPE_MAIN_VARIANT (t) = m;
6774
6775 return t;
6776 }
6777 \f
6778 /* Return true if the from tree in both tree maps are equal. */
6779
6780 int
6781 tree_map_base_eq (const void *va, const void *vb)
6782 {
6783 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6784 *const b = (const struct tree_map_base *) vb;
6785 return (a->from == b->from);
6786 }
6787
6788 /* Hash a from tree in a tree_base_map. */
6789
6790 unsigned int
6791 tree_map_base_hash (const void *item)
6792 {
6793 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6794 }
6795
6796 /* Return true if this tree map structure is marked for garbage collection
6797 purposes. We simply return true if the from tree is marked, so that this
6798 structure goes away when the from tree goes away. */
6799
6800 int
6801 tree_map_base_marked_p (const void *p)
6802 {
6803 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6804 }
6805
6806 /* Hash a from tree in a tree_map. */
6807
6808 unsigned int
6809 tree_map_hash (const void *item)
6810 {
6811 return (((const struct tree_map *) item)->hash);
6812 }
6813
6814 /* Hash a from tree in a tree_decl_map. */
6815
6816 unsigned int
6817 tree_decl_map_hash (const void *item)
6818 {
6819 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6820 }
6821
6822 /* Return the initialization priority for DECL. */
6823
6824 priority_type
6825 decl_init_priority_lookup (tree decl)
6826 {
6827 symtab_node *snode = symtab_node::get (decl);
6828
6829 if (!snode)
6830 return DEFAULT_INIT_PRIORITY;
6831 return
6832 snode->get_init_priority ();
6833 }
6834
6835 /* Return the finalization priority for DECL. */
6836
6837 priority_type
6838 decl_fini_priority_lookup (tree decl)
6839 {
6840 cgraph_node *node = cgraph_node::get (decl);
6841
6842 if (!node)
6843 return DEFAULT_INIT_PRIORITY;
6844 return
6845 node->get_fini_priority ();
6846 }
6847
6848 /* Set the initialization priority for DECL to PRIORITY. */
6849
6850 void
6851 decl_init_priority_insert (tree decl, priority_type priority)
6852 {
6853 struct symtab_node *snode;
6854
6855 if (priority == DEFAULT_INIT_PRIORITY)
6856 {
6857 snode = symtab_node::get (decl);
6858 if (!snode)
6859 return;
6860 }
6861 else if (VAR_P (decl))
6862 snode = varpool_node::get_create (decl);
6863 else
6864 snode = cgraph_node::get_create (decl);
6865 snode->set_init_priority (priority);
6866 }
6867
6868 /* Set the finalization priority for DECL to PRIORITY. */
6869
6870 void
6871 decl_fini_priority_insert (tree decl, priority_type priority)
6872 {
6873 struct cgraph_node *node;
6874
6875 if (priority == DEFAULT_INIT_PRIORITY)
6876 {
6877 node = cgraph_node::get (decl);
6878 if (!node)
6879 return;
6880 }
6881 else
6882 node = cgraph_node::get_create (decl);
6883 node->set_fini_priority (priority);
6884 }
6885
6886 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6887
6888 static void
6889 print_debug_expr_statistics (void)
6890 {
6891 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6892 (long) debug_expr_for_decl->size (),
6893 (long) debug_expr_for_decl->elements (),
6894 debug_expr_for_decl->collisions ());
6895 }
6896
6897 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6898
6899 static void
6900 print_value_expr_statistics (void)
6901 {
6902 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6903 (long) value_expr_for_decl->size (),
6904 (long) value_expr_for_decl->elements (),
6905 value_expr_for_decl->collisions ());
6906 }
6907
6908 /* Lookup a debug expression for FROM, and return it if we find one. */
6909
6910 tree
6911 decl_debug_expr_lookup (tree from)
6912 {
6913 struct tree_decl_map *h, in;
6914 in.base.from = from;
6915
6916 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6917 if (h)
6918 return h->to;
6919 return NULL_TREE;
6920 }
6921
6922 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6923
6924 void
6925 decl_debug_expr_insert (tree from, tree to)
6926 {
6927 struct tree_decl_map *h;
6928
6929 h = ggc_alloc<tree_decl_map> ();
6930 h->base.from = from;
6931 h->to = to;
6932 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6933 }
6934
6935 /* Lookup a value expression for FROM, and return it if we find one. */
6936
6937 tree
6938 decl_value_expr_lookup (tree from)
6939 {
6940 struct tree_decl_map *h, in;
6941 in.base.from = from;
6942
6943 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6944 if (h)
6945 return h->to;
6946 return NULL_TREE;
6947 }
6948
6949 /* Insert a mapping FROM->TO in the value expression hashtable. */
6950
6951 void
6952 decl_value_expr_insert (tree from, tree to)
6953 {
6954 struct tree_decl_map *h;
6955
6956 h = ggc_alloc<tree_decl_map> ();
6957 h->base.from = from;
6958 h->to = to;
6959 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6960 }
6961
6962 /* Lookup a vector of debug arguments for FROM, and return it if we
6963 find one. */
6964
6965 vec<tree, va_gc> **
6966 decl_debug_args_lookup (tree from)
6967 {
6968 struct tree_vec_map *h, in;
6969
6970 if (!DECL_HAS_DEBUG_ARGS_P (from))
6971 return NULL;
6972 gcc_checking_assert (debug_args_for_decl != NULL);
6973 in.base.from = from;
6974 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6975 if (h)
6976 return &h->to;
6977 return NULL;
6978 }
6979
6980 /* Insert a mapping FROM->empty vector of debug arguments in the value
6981 expression hashtable. */
6982
6983 vec<tree, va_gc> **
6984 decl_debug_args_insert (tree from)
6985 {
6986 struct tree_vec_map *h;
6987 tree_vec_map **loc;
6988
6989 if (DECL_HAS_DEBUG_ARGS_P (from))
6990 return decl_debug_args_lookup (from);
6991 if (debug_args_for_decl == NULL)
6992 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6993 h = ggc_alloc<tree_vec_map> ();
6994 h->base.from = from;
6995 h->to = NULL;
6996 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6997 *loc = h;
6998 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6999 return &h->to;
7000 }
7001
7002 /* Hashing of types so that we don't make duplicates.
7003 The entry point is `type_hash_canon'. */
7004
7005 /* Generate the default hash code for TYPE. This is designed for
7006 speed, rather than maximum entropy. */
7007
7008 hashval_t
7009 type_hash_canon_hash (tree type)
7010 {
7011 inchash::hash hstate;
7012
7013 hstate.add_int (TREE_CODE (type));
7014
7015 if (TREE_TYPE (type))
7016 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
7017
7018 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
7019 /* Just the identifier is adequate to distinguish. */
7020 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
7021
7022 switch (TREE_CODE (type))
7023 {
7024 case METHOD_TYPE:
7025 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
7026 /* FALLTHROUGH. */
7027 case FUNCTION_TYPE:
7028 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7029 if (TREE_VALUE (t) != error_mark_node)
7030 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
7031 break;
7032
7033 case OFFSET_TYPE:
7034 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
7035 break;
7036
7037 case ARRAY_TYPE:
7038 {
7039 if (TYPE_DOMAIN (type))
7040 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
7041 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
7042 {
7043 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
7044 hstate.add_object (typeless);
7045 }
7046 }
7047 break;
7048
7049 case INTEGER_TYPE:
7050 {
7051 tree t = TYPE_MAX_VALUE (type);
7052 if (!t)
7053 t = TYPE_MIN_VALUE (type);
7054 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
7055 hstate.add_object (TREE_INT_CST_ELT (t, i));
7056 break;
7057 }
7058
7059 case REAL_TYPE:
7060 case FIXED_POINT_TYPE:
7061 {
7062 unsigned prec = TYPE_PRECISION (type);
7063 hstate.add_object (prec);
7064 break;
7065 }
7066
7067 case VECTOR_TYPE:
7068 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
7069 break;
7070
7071 default:
7072 break;
7073 }
7074
7075 return hstate.end ();
7076 }
7077
7078 /* These are the Hashtable callback functions. */
7079
7080 /* Returns true iff the types are equivalent. */
7081
7082 bool
7083 type_cache_hasher::equal (type_hash *a, type_hash *b)
7084 {
7085 /* First test the things that are the same for all types. */
7086 if (a->hash != b->hash
7087 || TREE_CODE (a->type) != TREE_CODE (b->type)
7088 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
7089 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
7090 TYPE_ATTRIBUTES (b->type))
7091 || (TREE_CODE (a->type) != COMPLEX_TYPE
7092 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
7093 return 0;
7094
7095 /* Be careful about comparing arrays before and after the element type
7096 has been completed; don't compare TYPE_ALIGN unless both types are
7097 complete. */
7098 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
7099 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
7100 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
7101 return 0;
7102
7103 switch (TREE_CODE (a->type))
7104 {
7105 case VOID_TYPE:
7106 case OPAQUE_TYPE:
7107 case COMPLEX_TYPE:
7108 case POINTER_TYPE:
7109 case REFERENCE_TYPE:
7110 case NULLPTR_TYPE:
7111 return 1;
7112
7113 case VECTOR_TYPE:
7114 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
7115 TYPE_VECTOR_SUBPARTS (b->type));
7116
7117 case ENUMERAL_TYPE:
7118 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
7119 && !(TYPE_VALUES (a->type)
7120 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
7121 && TYPE_VALUES (b->type)
7122 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
7123 && type_list_equal (TYPE_VALUES (a->type),
7124 TYPE_VALUES (b->type))))
7125 return 0;
7126
7127 /* fall through */
7128
7129 case INTEGER_TYPE:
7130 case REAL_TYPE:
7131 case BOOLEAN_TYPE:
7132 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
7133 return false;
7134 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
7135 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
7136 TYPE_MAX_VALUE (b->type)))
7137 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
7138 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
7139 TYPE_MIN_VALUE (b->type))));
7140
7141 case FIXED_POINT_TYPE:
7142 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
7143
7144 case OFFSET_TYPE:
7145 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
7146
7147 case METHOD_TYPE:
7148 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
7149 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7150 || (TYPE_ARG_TYPES (a->type)
7151 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7152 && TYPE_ARG_TYPES (b->type)
7153 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7154 && type_list_equal (TYPE_ARG_TYPES (a->type),
7155 TYPE_ARG_TYPES (b->type)))))
7156 break;
7157 return 0;
7158 case ARRAY_TYPE:
7159 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
7160 where the flag should be inherited from the element type
7161 and can change after ARRAY_TYPEs are created; on non-aggregates
7162 compare it and hash it, scalars will never have that flag set
7163 and we need to differentiate between arrays created by different
7164 front-ends or middle-end created arrays. */
7165 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
7166 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
7167 || (TYPE_TYPELESS_STORAGE (a->type)
7168 == TYPE_TYPELESS_STORAGE (b->type))));
7169
7170 case RECORD_TYPE:
7171 case UNION_TYPE:
7172 case QUAL_UNION_TYPE:
7173 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
7174 || (TYPE_FIELDS (a->type)
7175 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
7176 && TYPE_FIELDS (b->type)
7177 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
7178 && type_list_equal (TYPE_FIELDS (a->type),
7179 TYPE_FIELDS (b->type))));
7180
7181 case FUNCTION_TYPE:
7182 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7183 || (TYPE_ARG_TYPES (a->type)
7184 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7185 && TYPE_ARG_TYPES (b->type)
7186 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7187 && type_list_equal (TYPE_ARG_TYPES (a->type),
7188 TYPE_ARG_TYPES (b->type))))
7189 break;
7190 return 0;
7191
7192 default:
7193 return 0;
7194 }
7195
7196 if (lang_hooks.types.type_hash_eq != NULL)
7197 return lang_hooks.types.type_hash_eq (a->type, b->type);
7198
7199 return 1;
7200 }
7201
7202 /* Given TYPE, and HASHCODE its hash code, return the canonical
7203 object for an identical type if one already exists.
7204 Otherwise, return TYPE, and record it as the canonical object.
7205
7206 To use this function, first create a type of the sort you want.
7207 Then compute its hash code from the fields of the type that
7208 make it different from other similar types.
7209 Then call this function and use the value. */
7210
7211 tree
7212 type_hash_canon (unsigned int hashcode, tree type)
7213 {
7214 type_hash in;
7215 type_hash **loc;
7216
7217 /* The hash table only contains main variants, so ensure that's what we're
7218 being passed. */
7219 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7220
7221 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7222 must call that routine before comparing TYPE_ALIGNs. */
7223 layout_type (type);
7224
7225 in.hash = hashcode;
7226 in.type = type;
7227
7228 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7229 if (*loc)
7230 {
7231 tree t1 = ((type_hash *) *loc)->type;
7232 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
7233 && t1 != type);
7234 if (TYPE_UID (type) + 1 == next_type_uid)
7235 --next_type_uid;
7236 /* Free also min/max values and the cache for integer
7237 types. This can't be done in free_node, as LTO frees
7238 those on its own. */
7239 if (TREE_CODE (type) == INTEGER_TYPE)
7240 {
7241 if (TYPE_MIN_VALUE (type)
7242 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
7243 {
7244 /* Zero is always in TYPE_CACHED_VALUES. */
7245 if (! TYPE_UNSIGNED (type))
7246 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
7247 ggc_free (TYPE_MIN_VALUE (type));
7248 }
7249 if (TYPE_MAX_VALUE (type)
7250 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
7251 {
7252 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
7253 ggc_free (TYPE_MAX_VALUE (type));
7254 }
7255 if (TYPE_CACHED_VALUES_P (type))
7256 ggc_free (TYPE_CACHED_VALUES (type));
7257 }
7258 free_node (type);
7259 return t1;
7260 }
7261 else
7262 {
7263 struct type_hash *h;
7264
7265 h = ggc_alloc<type_hash> ();
7266 h->hash = hashcode;
7267 h->type = type;
7268 *loc = h;
7269
7270 return type;
7271 }
7272 }
7273
7274 static void
7275 print_type_hash_statistics (void)
7276 {
7277 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7278 (long) type_hash_table->size (),
7279 (long) type_hash_table->elements (),
7280 type_hash_table->collisions ());
7281 }
7282
7283 /* Given two lists of types
7284 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7285 return 1 if the lists contain the same types in the same order.
7286 Also, the TREE_PURPOSEs must match. */
7287
7288 bool
7289 type_list_equal (const_tree l1, const_tree l2)
7290 {
7291 const_tree t1, t2;
7292
7293 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7294 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7295 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7296 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7297 && (TREE_TYPE (TREE_PURPOSE (t1))
7298 == TREE_TYPE (TREE_PURPOSE (t2))))))
7299 return false;
7300
7301 return t1 == t2;
7302 }
7303
7304 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7305 given by TYPE. If the argument list accepts variable arguments,
7306 then this function counts only the ordinary arguments. */
7307
7308 int
7309 type_num_arguments (const_tree fntype)
7310 {
7311 int i = 0;
7312
7313 for (tree t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
7314 /* If the function does not take a variable number of arguments,
7315 the last element in the list will have type `void'. */
7316 if (VOID_TYPE_P (TREE_VALUE (t)))
7317 break;
7318 else
7319 ++i;
7320
7321 return i;
7322 }
7323
7324 /* Return the type of the function TYPE's argument ARGNO if known.
7325 For vararg function's where ARGNO refers to one of the variadic
7326 arguments return null. Otherwise, return a void_type_node for
7327 out-of-bounds ARGNO. */
7328
7329 tree
7330 type_argument_type (const_tree fntype, unsigned argno)
7331 {
7332 /* Treat zero the same as an out-of-bounds argument number. */
7333 if (!argno)
7334 return void_type_node;
7335
7336 function_args_iterator iter;
7337
7338 tree argtype;
7339 unsigned i = 1;
7340 FOREACH_FUNCTION_ARGS (fntype, argtype, iter)
7341 {
7342 /* A vararg function's argument list ends in a null. Otherwise,
7343 an ordinary function's argument list ends with void. Return
7344 null if ARGNO refers to a vararg argument, void_type_node if
7345 it's out of bounds, and the formal argument type otherwise. */
7346 if (!argtype)
7347 break;
7348
7349 if (i == argno || VOID_TYPE_P (argtype))
7350 return argtype;
7351
7352 ++i;
7353 }
7354
7355 return NULL_TREE;
7356 }
7357
7358 /* Nonzero if integer constants T1 and T2
7359 represent the same constant value. */
7360
7361 int
7362 tree_int_cst_equal (const_tree t1, const_tree t2)
7363 {
7364 if (t1 == t2)
7365 return 1;
7366
7367 if (t1 == 0 || t2 == 0)
7368 return 0;
7369
7370 STRIP_ANY_LOCATION_WRAPPER (t1);
7371 STRIP_ANY_LOCATION_WRAPPER (t2);
7372
7373 if (TREE_CODE (t1) == INTEGER_CST
7374 && TREE_CODE (t2) == INTEGER_CST
7375 && wi::to_widest (t1) == wi::to_widest (t2))
7376 return 1;
7377
7378 return 0;
7379 }
7380
7381 /* Return true if T is an INTEGER_CST whose numerical value (extended
7382 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7383
7384 bool
7385 tree_fits_shwi_p (const_tree t)
7386 {
7387 return (t != NULL_TREE
7388 && TREE_CODE (t) == INTEGER_CST
7389 && wi::fits_shwi_p (wi::to_widest (t)));
7390 }
7391
7392 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7393 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
7394
7395 bool
7396 tree_fits_poly_int64_p (const_tree t)
7397 {
7398 if (t == NULL_TREE)
7399 return false;
7400 if (POLY_INT_CST_P (t))
7401 {
7402 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7403 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
7404 return false;
7405 return true;
7406 }
7407 return (TREE_CODE (t) == INTEGER_CST
7408 && wi::fits_shwi_p (wi::to_widest (t)));
7409 }
7410
7411 /* Return true if T is an INTEGER_CST whose numerical value (extended
7412 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7413
7414 bool
7415 tree_fits_uhwi_p (const_tree t)
7416 {
7417 return (t != NULL_TREE
7418 && TREE_CODE (t) == INTEGER_CST
7419 && wi::fits_uhwi_p (wi::to_widest (t)));
7420 }
7421
7422 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7423 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
7424
7425 bool
7426 tree_fits_poly_uint64_p (const_tree t)
7427 {
7428 if (t == NULL_TREE)
7429 return false;
7430 if (POLY_INT_CST_P (t))
7431 {
7432 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7433 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
7434 return false;
7435 return true;
7436 }
7437 return (TREE_CODE (t) == INTEGER_CST
7438 && wi::fits_uhwi_p (wi::to_widest (t)));
7439 }
7440
7441 /* T is an INTEGER_CST whose numerical value (extended according to
7442 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7443 HOST_WIDE_INT. */
7444
7445 HOST_WIDE_INT
7446 tree_to_shwi (const_tree t)
7447 {
7448 gcc_assert (tree_fits_shwi_p (t));
7449 return TREE_INT_CST_LOW (t);
7450 }
7451
7452 /* T is an INTEGER_CST whose numerical value (extended according to
7453 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7454 HOST_WIDE_INT. */
7455
7456 unsigned HOST_WIDE_INT
7457 tree_to_uhwi (const_tree t)
7458 {
7459 gcc_assert (tree_fits_uhwi_p (t));
7460 return TREE_INT_CST_LOW (t);
7461 }
7462
7463 /* Return the most significant (sign) bit of T. */
7464
7465 int
7466 tree_int_cst_sign_bit (const_tree t)
7467 {
7468 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7469
7470 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
7471 }
7472
7473 /* Return an indication of the sign of the integer constant T.
7474 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7475 Note that -1 will never be returned if T's type is unsigned. */
7476
7477 int
7478 tree_int_cst_sgn (const_tree t)
7479 {
7480 if (wi::to_wide (t) == 0)
7481 return 0;
7482 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7483 return 1;
7484 else if (wi::neg_p (wi::to_wide (t)))
7485 return -1;
7486 else
7487 return 1;
7488 }
7489
7490 /* Return the minimum number of bits needed to represent VALUE in a
7491 signed or unsigned type, UNSIGNEDP says which. */
7492
7493 unsigned int
7494 tree_int_cst_min_precision (tree value, signop sgn)
7495 {
7496 /* If the value is negative, compute its negative minus 1. The latter
7497 adjustment is because the absolute value of the largest negative value
7498 is one larger than the largest positive value. This is equivalent to
7499 a bit-wise negation, so use that operation instead. */
7500
7501 if (tree_int_cst_sgn (value) < 0)
7502 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7503
7504 /* Return the number of bits needed, taking into account the fact
7505 that we need one more bit for a signed than unsigned type.
7506 If value is 0 or -1, the minimum precision is 1 no matter
7507 whether unsignedp is true or false. */
7508
7509 if (integer_zerop (value))
7510 return 1;
7511 else
7512 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7513 }
7514
7515 /* Return truthvalue of whether T1 is the same tree structure as T2.
7516 Return 1 if they are the same.
7517 Return 0 if they are understandably different.
7518 Return -1 if either contains tree structure not understood by
7519 this function. */
7520
7521 int
7522 simple_cst_equal (const_tree t1, const_tree t2)
7523 {
7524 enum tree_code code1, code2;
7525 int cmp;
7526 int i;
7527
7528 if (t1 == t2)
7529 return 1;
7530 if (t1 == 0 || t2 == 0)
7531 return 0;
7532
7533 /* For location wrappers to be the same, they must be at the same
7534 source location (and wrap the same thing). */
7535 if (location_wrapper_p (t1) && location_wrapper_p (t2))
7536 {
7537 if (EXPR_LOCATION (t1) != EXPR_LOCATION (t2))
7538 return 0;
7539 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7540 }
7541
7542 code1 = TREE_CODE (t1);
7543 code2 = TREE_CODE (t2);
7544
7545 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7546 {
7547 if (CONVERT_EXPR_CODE_P (code2)
7548 || code2 == NON_LVALUE_EXPR)
7549 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7550 else
7551 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7552 }
7553
7554 else if (CONVERT_EXPR_CODE_P (code2)
7555 || code2 == NON_LVALUE_EXPR)
7556 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7557
7558 if (code1 != code2)
7559 return 0;
7560
7561 switch (code1)
7562 {
7563 case INTEGER_CST:
7564 return wi::to_widest (t1) == wi::to_widest (t2);
7565
7566 case REAL_CST:
7567 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7568
7569 case FIXED_CST:
7570 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7571
7572 case STRING_CST:
7573 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7574 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7575 TREE_STRING_LENGTH (t1)));
7576
7577 case CONSTRUCTOR:
7578 {
7579 unsigned HOST_WIDE_INT idx;
7580 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7581 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7582
7583 if (vec_safe_length (v1) != vec_safe_length (v2))
7584 return false;
7585
7586 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7587 /* ??? Should we handle also fields here? */
7588 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7589 return false;
7590 return true;
7591 }
7592
7593 case SAVE_EXPR:
7594 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7595
7596 case CALL_EXPR:
7597 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7598 if (cmp <= 0)
7599 return cmp;
7600 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7601 return 0;
7602 {
7603 const_tree arg1, arg2;
7604 const_call_expr_arg_iterator iter1, iter2;
7605 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7606 arg2 = first_const_call_expr_arg (t2, &iter2);
7607 arg1 && arg2;
7608 arg1 = next_const_call_expr_arg (&iter1),
7609 arg2 = next_const_call_expr_arg (&iter2))
7610 {
7611 cmp = simple_cst_equal (arg1, arg2);
7612 if (cmp <= 0)
7613 return cmp;
7614 }
7615 return arg1 == arg2;
7616 }
7617
7618 case TARGET_EXPR:
7619 /* Special case: if either target is an unallocated VAR_DECL,
7620 it means that it's going to be unified with whatever the
7621 TARGET_EXPR is really supposed to initialize, so treat it
7622 as being equivalent to anything. */
7623 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7624 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7625 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7626 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7627 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7628 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7629 cmp = 1;
7630 else
7631 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7632
7633 if (cmp <= 0)
7634 return cmp;
7635
7636 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7637
7638 case WITH_CLEANUP_EXPR:
7639 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7640 if (cmp <= 0)
7641 return cmp;
7642
7643 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7644
7645 case COMPONENT_REF:
7646 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7647 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7648
7649 return 0;
7650
7651 case VAR_DECL:
7652 case PARM_DECL:
7653 case CONST_DECL:
7654 case FUNCTION_DECL:
7655 return 0;
7656
7657 default:
7658 if (POLY_INT_CST_P (t1))
7659 /* A false return means maybe_ne rather than known_ne. */
7660 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7661 TYPE_SIGN (TREE_TYPE (t1))),
7662 poly_widest_int::from (poly_int_cst_value (t2),
7663 TYPE_SIGN (TREE_TYPE (t2))));
7664 break;
7665 }
7666
7667 /* This general rule works for most tree codes. All exceptions should be
7668 handled above. If this is a language-specific tree code, we can't
7669 trust what might be in the operand, so say we don't know
7670 the situation. */
7671 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7672 return -1;
7673
7674 switch (TREE_CODE_CLASS (code1))
7675 {
7676 case tcc_unary:
7677 case tcc_binary:
7678 case tcc_comparison:
7679 case tcc_expression:
7680 case tcc_reference:
7681 case tcc_statement:
7682 cmp = 1;
7683 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7684 {
7685 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7686 if (cmp <= 0)
7687 return cmp;
7688 }
7689
7690 return cmp;
7691
7692 default:
7693 return -1;
7694 }
7695 }
7696
7697 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7698 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7699 than U, respectively. */
7700
7701 int
7702 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7703 {
7704 if (tree_int_cst_sgn (t) < 0)
7705 return -1;
7706 else if (!tree_fits_uhwi_p (t))
7707 return 1;
7708 else if (TREE_INT_CST_LOW (t) == u)
7709 return 0;
7710 else if (TREE_INT_CST_LOW (t) < u)
7711 return -1;
7712 else
7713 return 1;
7714 }
7715
7716 /* Return true if SIZE represents a constant size that is in bounds of
7717 what the middle-end and the backend accepts (covering not more than
7718 half of the address-space).
7719 When PERR is non-null, set *PERR on failure to the description of
7720 why SIZE is not valid. */
7721
7722 bool
7723 valid_constant_size_p (const_tree size, cst_size_error *perr /* = NULL */)
7724 {
7725 if (POLY_INT_CST_P (size))
7726 {
7727 if (TREE_OVERFLOW (size))
7728 return false;
7729 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7730 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7731 return false;
7732 return true;
7733 }
7734
7735 cst_size_error error;
7736 if (!perr)
7737 perr = &error;
7738
7739 if (TREE_CODE (size) != INTEGER_CST)
7740 {
7741 *perr = cst_size_not_constant;
7742 return false;
7743 }
7744
7745 if (TREE_OVERFLOW_P (size))
7746 {
7747 *perr = cst_size_overflow;
7748 return false;
7749 }
7750
7751 if (tree_int_cst_sgn (size) < 0)
7752 {
7753 *perr = cst_size_negative;
7754 return false;
7755 }
7756 if (!tree_fits_uhwi_p (size)
7757 || (wi::to_widest (TYPE_MAX_VALUE (sizetype))
7758 < wi::to_widest (size) * 2))
7759 {
7760 *perr = cst_size_too_big;
7761 return false;
7762 }
7763
7764 return true;
7765 }
7766
7767 /* Return the precision of the type, or for a complex or vector type the
7768 precision of the type of its elements. */
7769
7770 unsigned int
7771 element_precision (const_tree type)
7772 {
7773 if (!TYPE_P (type))
7774 type = TREE_TYPE (type);
7775 enum tree_code code = TREE_CODE (type);
7776 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7777 type = TREE_TYPE (type);
7778
7779 return TYPE_PRECISION (type);
7780 }
7781
7782 /* Return true if CODE represents an associative tree code. Otherwise
7783 return false. */
7784 bool
7785 associative_tree_code (enum tree_code code)
7786 {
7787 switch (code)
7788 {
7789 case BIT_IOR_EXPR:
7790 case BIT_AND_EXPR:
7791 case BIT_XOR_EXPR:
7792 case PLUS_EXPR:
7793 case MULT_EXPR:
7794 case MIN_EXPR:
7795 case MAX_EXPR:
7796 return true;
7797
7798 default:
7799 break;
7800 }
7801 return false;
7802 }
7803
7804 /* Return true if CODE represents a commutative tree code. Otherwise
7805 return false. */
7806 bool
7807 commutative_tree_code (enum tree_code code)
7808 {
7809 switch (code)
7810 {
7811 case PLUS_EXPR:
7812 case MULT_EXPR:
7813 case MULT_HIGHPART_EXPR:
7814 case MIN_EXPR:
7815 case MAX_EXPR:
7816 case BIT_IOR_EXPR:
7817 case BIT_XOR_EXPR:
7818 case BIT_AND_EXPR:
7819 case NE_EXPR:
7820 case EQ_EXPR:
7821 case UNORDERED_EXPR:
7822 case ORDERED_EXPR:
7823 case UNEQ_EXPR:
7824 case LTGT_EXPR:
7825 case TRUTH_AND_EXPR:
7826 case TRUTH_XOR_EXPR:
7827 case TRUTH_OR_EXPR:
7828 case WIDEN_MULT_EXPR:
7829 case VEC_WIDEN_MULT_HI_EXPR:
7830 case VEC_WIDEN_MULT_LO_EXPR:
7831 case VEC_WIDEN_MULT_EVEN_EXPR:
7832 case VEC_WIDEN_MULT_ODD_EXPR:
7833 return true;
7834
7835 default:
7836 break;
7837 }
7838 return false;
7839 }
7840
7841 /* Return true if CODE represents a ternary tree code for which the
7842 first two operands are commutative. Otherwise return false. */
7843 bool
7844 commutative_ternary_tree_code (enum tree_code code)
7845 {
7846 switch (code)
7847 {
7848 case WIDEN_MULT_PLUS_EXPR:
7849 case WIDEN_MULT_MINUS_EXPR:
7850 case DOT_PROD_EXPR:
7851 return true;
7852
7853 default:
7854 break;
7855 }
7856 return false;
7857 }
7858
7859 /* Returns true if CODE can overflow. */
7860
7861 bool
7862 operation_can_overflow (enum tree_code code)
7863 {
7864 switch (code)
7865 {
7866 case PLUS_EXPR:
7867 case MINUS_EXPR:
7868 case MULT_EXPR:
7869 case LSHIFT_EXPR:
7870 /* Can overflow in various ways. */
7871 return true;
7872 case TRUNC_DIV_EXPR:
7873 case EXACT_DIV_EXPR:
7874 case FLOOR_DIV_EXPR:
7875 case CEIL_DIV_EXPR:
7876 /* For INT_MIN / -1. */
7877 return true;
7878 case NEGATE_EXPR:
7879 case ABS_EXPR:
7880 /* For -INT_MIN. */
7881 return true;
7882 default:
7883 /* These operators cannot overflow. */
7884 return false;
7885 }
7886 }
7887
7888 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7889 ftrapv doesn't generate trapping insns for CODE. */
7890
7891 bool
7892 operation_no_trapping_overflow (tree type, enum tree_code code)
7893 {
7894 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7895
7896 /* We don't generate instructions that trap on overflow for complex or vector
7897 types. */
7898 if (!INTEGRAL_TYPE_P (type))
7899 return true;
7900
7901 if (!TYPE_OVERFLOW_TRAPS (type))
7902 return true;
7903
7904 switch (code)
7905 {
7906 case PLUS_EXPR:
7907 case MINUS_EXPR:
7908 case MULT_EXPR:
7909 case NEGATE_EXPR:
7910 case ABS_EXPR:
7911 /* These operators can overflow, and -ftrapv generates trapping code for
7912 these. */
7913 return false;
7914 case TRUNC_DIV_EXPR:
7915 case EXACT_DIV_EXPR:
7916 case FLOOR_DIV_EXPR:
7917 case CEIL_DIV_EXPR:
7918 case LSHIFT_EXPR:
7919 /* These operators can overflow, but -ftrapv does not generate trapping
7920 code for these. */
7921 return true;
7922 default:
7923 /* These operators cannot overflow. */
7924 return true;
7925 }
7926 }
7927
7928 /* Constructors for pointer, array and function types.
7929 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7930 constructed by language-dependent code, not here.) */
7931
7932 /* Construct, lay out and return the type of pointers to TO_TYPE with
7933 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7934 reference all of memory. If such a type has already been
7935 constructed, reuse it. */
7936
7937 tree
7938 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7939 bool can_alias_all)
7940 {
7941 tree t;
7942 bool could_alias = can_alias_all;
7943
7944 if (to_type == error_mark_node)
7945 return error_mark_node;
7946
7947 /* If the pointed-to type has the may_alias attribute set, force
7948 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7949 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7950 can_alias_all = true;
7951
7952 /* In some cases, languages will have things that aren't a POINTER_TYPE
7953 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7954 In that case, return that type without regard to the rest of our
7955 operands.
7956
7957 ??? This is a kludge, but consistent with the way this function has
7958 always operated and there doesn't seem to be a good way to avoid this
7959 at the moment. */
7960 if (TYPE_POINTER_TO (to_type) != 0
7961 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7962 return TYPE_POINTER_TO (to_type);
7963
7964 /* First, if we already have a type for pointers to TO_TYPE and it's
7965 the proper mode, use it. */
7966 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7967 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7968 return t;
7969
7970 t = make_node (POINTER_TYPE);
7971
7972 TREE_TYPE (t) = to_type;
7973 SET_TYPE_MODE (t, mode);
7974 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7975 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7976 TYPE_POINTER_TO (to_type) = t;
7977
7978 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7979 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7980 SET_TYPE_STRUCTURAL_EQUALITY (t);
7981 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7982 TYPE_CANONICAL (t)
7983 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7984 mode, false);
7985
7986 /* Lay out the type. This function has many callers that are concerned
7987 with expression-construction, and this simplifies them all. */
7988 layout_type (t);
7989
7990 return t;
7991 }
7992
7993 /* By default build pointers in ptr_mode. */
7994
7995 tree
7996 build_pointer_type (tree to_type)
7997 {
7998 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7999 : TYPE_ADDR_SPACE (to_type);
8000 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8001 return build_pointer_type_for_mode (to_type, pointer_mode, false);
8002 }
8003
8004 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
8005
8006 tree
8007 build_reference_type_for_mode (tree to_type, machine_mode mode,
8008 bool can_alias_all)
8009 {
8010 tree t;
8011 bool could_alias = can_alias_all;
8012
8013 if (to_type == error_mark_node)
8014 return error_mark_node;
8015
8016 /* If the pointed-to type has the may_alias attribute set, force
8017 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
8018 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
8019 can_alias_all = true;
8020
8021 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
8022 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
8023 In that case, return that type without regard to the rest of our
8024 operands.
8025
8026 ??? This is a kludge, but consistent with the way this function has
8027 always operated and there doesn't seem to be a good way to avoid this
8028 at the moment. */
8029 if (TYPE_REFERENCE_TO (to_type) != 0
8030 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
8031 return TYPE_REFERENCE_TO (to_type);
8032
8033 /* First, if we already have a type for pointers to TO_TYPE and it's
8034 the proper mode, use it. */
8035 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
8036 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8037 return t;
8038
8039 t = make_node (REFERENCE_TYPE);
8040
8041 TREE_TYPE (t) = to_type;
8042 SET_TYPE_MODE (t, mode);
8043 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8044 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
8045 TYPE_REFERENCE_TO (to_type) = t;
8046
8047 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8048 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8049 SET_TYPE_STRUCTURAL_EQUALITY (t);
8050 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8051 TYPE_CANONICAL (t)
8052 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
8053 mode, false);
8054
8055 layout_type (t);
8056
8057 return t;
8058 }
8059
8060
8061 /* Build the node for the type of references-to-TO_TYPE by default
8062 in ptr_mode. */
8063
8064 tree
8065 build_reference_type (tree to_type)
8066 {
8067 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8068 : TYPE_ADDR_SPACE (to_type);
8069 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8070 return build_reference_type_for_mode (to_type, pointer_mode, false);
8071 }
8072
8073 #define MAX_INT_CACHED_PREC \
8074 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8075 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
8076
8077 /* Builds a signed or unsigned integer type of precision PRECISION.
8078 Used for C bitfields whose precision does not match that of
8079 built-in target types. */
8080 tree
8081 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8082 int unsignedp)
8083 {
8084 tree itype, ret;
8085
8086 if (unsignedp)
8087 unsignedp = MAX_INT_CACHED_PREC + 1;
8088
8089 if (precision <= MAX_INT_CACHED_PREC)
8090 {
8091 itype = nonstandard_integer_type_cache[precision + unsignedp];
8092 if (itype)
8093 return itype;
8094 }
8095
8096 itype = make_node (INTEGER_TYPE);
8097 TYPE_PRECISION (itype) = precision;
8098
8099 if (unsignedp)
8100 fixup_unsigned_type (itype);
8101 else
8102 fixup_signed_type (itype);
8103
8104 inchash::hash hstate;
8105 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8106 ret = type_hash_canon (hstate.end (), itype);
8107 if (precision <= MAX_INT_CACHED_PREC)
8108 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8109
8110 return ret;
8111 }
8112
8113 #define MAX_BOOL_CACHED_PREC \
8114 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8115 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8116
8117 /* Builds a boolean type of precision PRECISION.
8118 Used for boolean vectors to choose proper vector element size. */
8119 tree
8120 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8121 {
8122 tree type;
8123
8124 if (precision <= MAX_BOOL_CACHED_PREC)
8125 {
8126 type = nonstandard_boolean_type_cache[precision];
8127 if (type)
8128 return type;
8129 }
8130
8131 type = make_node (BOOLEAN_TYPE);
8132 TYPE_PRECISION (type) = precision;
8133 fixup_signed_type (type);
8134
8135 if (precision <= MAX_INT_CACHED_PREC)
8136 nonstandard_boolean_type_cache[precision] = type;
8137
8138 return type;
8139 }
8140
8141 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8142 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8143 is true, reuse such a type that has already been constructed. */
8144
8145 static tree
8146 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8147 {
8148 tree itype = make_node (INTEGER_TYPE);
8149
8150 TREE_TYPE (itype) = type;
8151
8152 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8153 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8154
8155 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8156 SET_TYPE_MODE (itype, TYPE_MODE (type));
8157 TYPE_SIZE (itype) = TYPE_SIZE (type);
8158 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8159 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
8160 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8161 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
8162
8163 if (!shared)
8164 return itype;
8165
8166 if ((TYPE_MIN_VALUE (itype)
8167 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8168 || (TYPE_MAX_VALUE (itype)
8169 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8170 {
8171 /* Since we cannot reliably merge this type, we need to compare it using
8172 structural equality checks. */
8173 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8174 return itype;
8175 }
8176
8177 hashval_t hash = type_hash_canon_hash (itype);
8178 itype = type_hash_canon (hash, itype);
8179
8180 return itype;
8181 }
8182
8183 /* Wrapper around build_range_type_1 with SHARED set to true. */
8184
8185 tree
8186 build_range_type (tree type, tree lowval, tree highval)
8187 {
8188 return build_range_type_1 (type, lowval, highval, true);
8189 }
8190
8191 /* Wrapper around build_range_type_1 with SHARED set to false. */
8192
8193 tree
8194 build_nonshared_range_type (tree type, tree lowval, tree highval)
8195 {
8196 return build_range_type_1 (type, lowval, highval, false);
8197 }
8198
8199 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8200 MAXVAL should be the maximum value in the domain
8201 (one less than the length of the array).
8202
8203 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8204 We don't enforce this limit, that is up to caller (e.g. language front end).
8205 The limit exists because the result is a signed type and we don't handle
8206 sizes that use more than one HOST_WIDE_INT. */
8207
8208 tree
8209 build_index_type (tree maxval)
8210 {
8211 return build_range_type (sizetype, size_zero_node, maxval);
8212 }
8213
8214 /* Return true if the debug information for TYPE, a subtype, should be emitted
8215 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8216 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8217 debug info and doesn't reflect the source code. */
8218
8219 bool
8220 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8221 {
8222 tree base_type = TREE_TYPE (type), low, high;
8223
8224 /* Subrange types have a base type which is an integral type. */
8225 if (!INTEGRAL_TYPE_P (base_type))
8226 return false;
8227
8228 /* Get the real bounds of the subtype. */
8229 if (lang_hooks.types.get_subrange_bounds)
8230 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8231 else
8232 {
8233 low = TYPE_MIN_VALUE (type);
8234 high = TYPE_MAX_VALUE (type);
8235 }
8236
8237 /* If the type and its base type have the same representation and the same
8238 name, then the type is not a subrange but a copy of the base type. */
8239 if ((TREE_CODE (base_type) == INTEGER_TYPE
8240 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8241 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8242 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8243 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8244 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8245 return false;
8246
8247 if (lowval)
8248 *lowval = low;
8249 if (highval)
8250 *highval = high;
8251 return true;
8252 }
8253
8254 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8255 and number of elements specified by the range of values of INDEX_TYPE.
8256 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
8257 If SHARED is true, reuse such a type that has already been constructed.
8258 If SET_CANONICAL is true, compute TYPE_CANONICAL from the element type. */
8259
8260 static tree
8261 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
8262 bool shared, bool set_canonical)
8263 {
8264 tree t;
8265
8266 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8267 {
8268 error ("arrays of functions are not meaningful");
8269 elt_type = integer_type_node;
8270 }
8271
8272 t = make_node (ARRAY_TYPE);
8273 TREE_TYPE (t) = elt_type;
8274 TYPE_DOMAIN (t) = index_type;
8275 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8276 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
8277 layout_type (t);
8278
8279 if (shared)
8280 {
8281 hashval_t hash = type_hash_canon_hash (t);
8282 t = type_hash_canon (hash, t);
8283 }
8284
8285 if (TYPE_CANONICAL (t) == t && set_canonical)
8286 {
8287 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8288 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8289 || in_lto_p)
8290 SET_TYPE_STRUCTURAL_EQUALITY (t);
8291 else if (TYPE_CANONICAL (elt_type) != elt_type
8292 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8293 TYPE_CANONICAL (t)
8294 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8295 index_type
8296 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8297 typeless_storage, shared, set_canonical);
8298 }
8299
8300 return t;
8301 }
8302
8303 /* Wrapper around build_array_type_1 with SHARED set to true. */
8304
8305 tree
8306 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
8307 {
8308 return
8309 build_array_type_1 (elt_type, index_type, typeless_storage, true, true);
8310 }
8311
8312 /* Wrapper around build_array_type_1 with SHARED set to false. */
8313
8314 tree
8315 build_nonshared_array_type (tree elt_type, tree index_type)
8316 {
8317 return build_array_type_1 (elt_type, index_type, false, false, true);
8318 }
8319
8320 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8321 sizetype. */
8322
8323 tree
8324 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
8325 {
8326 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8327 }
8328
8329 /* Recursively examines the array elements of TYPE, until a non-array
8330 element type is found. */
8331
8332 tree
8333 strip_array_types (tree type)
8334 {
8335 while (TREE_CODE (type) == ARRAY_TYPE)
8336 type = TREE_TYPE (type);
8337
8338 return type;
8339 }
8340
8341 /* Computes the canonical argument types from the argument type list
8342 ARGTYPES.
8343
8344 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8345 on entry to this function, or if any of the ARGTYPES are
8346 structural.
8347
8348 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8349 true on entry to this function, or if any of the ARGTYPES are
8350 non-canonical.
8351
8352 Returns a canonical argument list, which may be ARGTYPES when the
8353 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8354 true) or would not differ from ARGTYPES. */
8355
8356 static tree
8357 maybe_canonicalize_argtypes (tree argtypes,
8358 bool *any_structural_p,
8359 bool *any_noncanonical_p)
8360 {
8361 tree arg;
8362 bool any_noncanonical_argtypes_p = false;
8363
8364 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8365 {
8366 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8367 /* Fail gracefully by stating that the type is structural. */
8368 *any_structural_p = true;
8369 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8370 *any_structural_p = true;
8371 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8372 || TREE_PURPOSE (arg))
8373 /* If the argument has a default argument, we consider it
8374 non-canonical even though the type itself is canonical.
8375 That way, different variants of function and method types
8376 with default arguments will all point to the variant with
8377 no defaults as their canonical type. */
8378 any_noncanonical_argtypes_p = true;
8379 }
8380
8381 if (*any_structural_p)
8382 return argtypes;
8383
8384 if (any_noncanonical_argtypes_p)
8385 {
8386 /* Build the canonical list of argument types. */
8387 tree canon_argtypes = NULL_TREE;
8388 bool is_void = false;
8389
8390 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8391 {
8392 if (arg == void_list_node)
8393 is_void = true;
8394 else
8395 canon_argtypes = tree_cons (NULL_TREE,
8396 TYPE_CANONICAL (TREE_VALUE (arg)),
8397 canon_argtypes);
8398 }
8399
8400 canon_argtypes = nreverse (canon_argtypes);
8401 if (is_void)
8402 canon_argtypes = chainon (canon_argtypes, void_list_node);
8403
8404 /* There is a non-canonical type. */
8405 *any_noncanonical_p = true;
8406 return canon_argtypes;
8407 }
8408
8409 /* The canonical argument types are the same as ARGTYPES. */
8410 return argtypes;
8411 }
8412
8413 /* Construct, lay out and return
8414 the type of functions returning type VALUE_TYPE
8415 given arguments of types ARG_TYPES.
8416 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8417 are data type nodes for the arguments of the function.
8418 If such a type has already been constructed, reuse it. */
8419
8420 tree
8421 build_function_type (tree value_type, tree arg_types)
8422 {
8423 tree t;
8424 inchash::hash hstate;
8425 bool any_structural_p, any_noncanonical_p;
8426 tree canon_argtypes;
8427
8428 gcc_assert (arg_types != error_mark_node);
8429
8430 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8431 {
8432 error ("function return type cannot be function");
8433 value_type = integer_type_node;
8434 }
8435
8436 /* Make a node of the sort we want. */
8437 t = make_node (FUNCTION_TYPE);
8438 TREE_TYPE (t) = value_type;
8439 TYPE_ARG_TYPES (t) = arg_types;
8440
8441 /* If we already have such a type, use the old one. */
8442 hashval_t hash = type_hash_canon_hash (t);
8443 t = type_hash_canon (hash, t);
8444
8445 /* Set up the canonical type. */
8446 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8447 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8448 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8449 &any_structural_p,
8450 &any_noncanonical_p);
8451 if (any_structural_p)
8452 SET_TYPE_STRUCTURAL_EQUALITY (t);
8453 else if (any_noncanonical_p)
8454 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8455 canon_argtypes);
8456
8457 if (!COMPLETE_TYPE_P (t))
8458 layout_type (t);
8459 return t;
8460 }
8461
8462 /* Build a function type. The RETURN_TYPE is the type returned by the
8463 function. If VAARGS is set, no void_type_node is appended to the
8464 list. ARGP must be always be terminated be a NULL_TREE. */
8465
8466 static tree
8467 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8468 {
8469 tree t, args, last;
8470
8471 t = va_arg (argp, tree);
8472 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8473 args = tree_cons (NULL_TREE, t, args);
8474
8475 if (vaargs)
8476 {
8477 last = args;
8478 if (args != NULL_TREE)
8479 args = nreverse (args);
8480 gcc_assert (last != void_list_node);
8481 }
8482 else if (args == NULL_TREE)
8483 args = void_list_node;
8484 else
8485 {
8486 last = args;
8487 args = nreverse (args);
8488 TREE_CHAIN (last) = void_list_node;
8489 }
8490 args = build_function_type (return_type, args);
8491
8492 return args;
8493 }
8494
8495 /* Build a function type. The RETURN_TYPE is the type returned by the
8496 function. If additional arguments are provided, they are
8497 additional argument types. The list of argument types must always
8498 be terminated by NULL_TREE. */
8499
8500 tree
8501 build_function_type_list (tree return_type, ...)
8502 {
8503 tree args;
8504 va_list p;
8505
8506 va_start (p, return_type);
8507 args = build_function_type_list_1 (false, return_type, p);
8508 va_end (p);
8509 return args;
8510 }
8511
8512 /* Build a variable argument function type. The RETURN_TYPE is the
8513 type returned by the function. If additional arguments are provided,
8514 they are additional argument types. The list of argument types must
8515 always be terminated by NULL_TREE. */
8516
8517 tree
8518 build_varargs_function_type_list (tree return_type, ...)
8519 {
8520 tree args;
8521 va_list p;
8522
8523 va_start (p, return_type);
8524 args = build_function_type_list_1 (true, return_type, p);
8525 va_end (p);
8526
8527 return args;
8528 }
8529
8530 /* Build a function type. RETURN_TYPE is the type returned by the
8531 function; VAARGS indicates whether the function takes varargs. The
8532 function takes N named arguments, the types of which are provided in
8533 ARG_TYPES. */
8534
8535 static tree
8536 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8537 tree *arg_types)
8538 {
8539 int i;
8540 tree t = vaargs ? NULL_TREE : void_list_node;
8541
8542 for (i = n - 1; i >= 0; i--)
8543 t = tree_cons (NULL_TREE, arg_types[i], t);
8544
8545 return build_function_type (return_type, t);
8546 }
8547
8548 /* Build a function type. RETURN_TYPE is the type returned by the
8549 function. The function takes N named arguments, the types of which
8550 are provided in ARG_TYPES. */
8551
8552 tree
8553 build_function_type_array (tree return_type, int n, tree *arg_types)
8554 {
8555 return build_function_type_array_1 (false, return_type, n, arg_types);
8556 }
8557
8558 /* Build a variable argument function type. RETURN_TYPE is the type
8559 returned by the function. The function takes N named arguments, the
8560 types of which are provided in ARG_TYPES. */
8561
8562 tree
8563 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8564 {
8565 return build_function_type_array_1 (true, return_type, n, arg_types);
8566 }
8567
8568 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8569 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8570 for the method. An implicit additional parameter (of type
8571 pointer-to-BASETYPE) is added to the ARGTYPES. */
8572
8573 tree
8574 build_method_type_directly (tree basetype,
8575 tree rettype,
8576 tree argtypes)
8577 {
8578 tree t;
8579 tree ptype;
8580 bool any_structural_p, any_noncanonical_p;
8581 tree canon_argtypes;
8582
8583 /* Make a node of the sort we want. */
8584 t = make_node (METHOD_TYPE);
8585
8586 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8587 TREE_TYPE (t) = rettype;
8588 ptype = build_pointer_type (basetype);
8589
8590 /* The actual arglist for this function includes a "hidden" argument
8591 which is "this". Put it into the list of argument types. */
8592 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8593 TYPE_ARG_TYPES (t) = argtypes;
8594
8595 /* If we already have such a type, use the old one. */
8596 hashval_t hash = type_hash_canon_hash (t);
8597 t = type_hash_canon (hash, t);
8598
8599 /* Set up the canonical type. */
8600 any_structural_p
8601 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8602 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8603 any_noncanonical_p
8604 = (TYPE_CANONICAL (basetype) != basetype
8605 || TYPE_CANONICAL (rettype) != rettype);
8606 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8607 &any_structural_p,
8608 &any_noncanonical_p);
8609 if (any_structural_p)
8610 SET_TYPE_STRUCTURAL_EQUALITY (t);
8611 else if (any_noncanonical_p)
8612 TYPE_CANONICAL (t)
8613 = build_method_type_directly (TYPE_CANONICAL (basetype),
8614 TYPE_CANONICAL (rettype),
8615 canon_argtypes);
8616 if (!COMPLETE_TYPE_P (t))
8617 layout_type (t);
8618
8619 return t;
8620 }
8621
8622 /* Construct, lay out and return the type of methods belonging to class
8623 BASETYPE and whose arguments and values are described by TYPE.
8624 If that type exists already, reuse it.
8625 TYPE must be a FUNCTION_TYPE node. */
8626
8627 tree
8628 build_method_type (tree basetype, tree type)
8629 {
8630 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8631
8632 return build_method_type_directly (basetype,
8633 TREE_TYPE (type),
8634 TYPE_ARG_TYPES (type));
8635 }
8636
8637 /* Construct, lay out and return the type of offsets to a value
8638 of type TYPE, within an object of type BASETYPE.
8639 If a suitable offset type exists already, reuse it. */
8640
8641 tree
8642 build_offset_type (tree basetype, tree type)
8643 {
8644 tree t;
8645
8646 /* Make a node of the sort we want. */
8647 t = make_node (OFFSET_TYPE);
8648
8649 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8650 TREE_TYPE (t) = type;
8651
8652 /* If we already have such a type, use the old one. */
8653 hashval_t hash = type_hash_canon_hash (t);
8654 t = type_hash_canon (hash, t);
8655
8656 if (!COMPLETE_TYPE_P (t))
8657 layout_type (t);
8658
8659 if (TYPE_CANONICAL (t) == t)
8660 {
8661 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8662 || TYPE_STRUCTURAL_EQUALITY_P (type))
8663 SET_TYPE_STRUCTURAL_EQUALITY (t);
8664 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8665 || TYPE_CANONICAL (type) != type)
8666 TYPE_CANONICAL (t)
8667 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8668 TYPE_CANONICAL (type));
8669 }
8670
8671 return t;
8672 }
8673
8674 /* Create a complex type whose components are COMPONENT_TYPE.
8675
8676 If NAMED is true, the type is given a TYPE_NAME. We do not always
8677 do so because this creates a DECL node and thus make the DECL_UIDs
8678 dependent on the type canonicalization hashtable, which is GC-ed,
8679 so the DECL_UIDs would not be stable wrt garbage collection. */
8680
8681 tree
8682 build_complex_type (tree component_type, bool named)
8683 {
8684 gcc_assert (INTEGRAL_TYPE_P (component_type)
8685 || SCALAR_FLOAT_TYPE_P (component_type)
8686 || FIXED_POINT_TYPE_P (component_type));
8687
8688 /* Make a node of the sort we want. */
8689 tree probe = make_node (COMPLEX_TYPE);
8690
8691 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8692
8693 /* If we already have such a type, use the old one. */
8694 hashval_t hash = type_hash_canon_hash (probe);
8695 tree t = type_hash_canon (hash, probe);
8696
8697 if (t == probe)
8698 {
8699 /* We created a new type. The hash insertion will have laid
8700 out the type. We need to check the canonicalization and
8701 maybe set the name. */
8702 gcc_checking_assert (COMPLETE_TYPE_P (t)
8703 && !TYPE_NAME (t)
8704 && TYPE_CANONICAL (t) == t);
8705
8706 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8707 SET_TYPE_STRUCTURAL_EQUALITY (t);
8708 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8709 TYPE_CANONICAL (t)
8710 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8711
8712 /* We need to create a name, since complex is a fundamental type. */
8713 if (named)
8714 {
8715 const char *name = NULL;
8716
8717 if (TREE_TYPE (t) == char_type_node)
8718 name = "complex char";
8719 else if (TREE_TYPE (t) == signed_char_type_node)
8720 name = "complex signed char";
8721 else if (TREE_TYPE (t) == unsigned_char_type_node)
8722 name = "complex unsigned char";
8723 else if (TREE_TYPE (t) == short_integer_type_node)
8724 name = "complex short int";
8725 else if (TREE_TYPE (t) == short_unsigned_type_node)
8726 name = "complex short unsigned int";
8727 else if (TREE_TYPE (t) == integer_type_node)
8728 name = "complex int";
8729 else if (TREE_TYPE (t) == unsigned_type_node)
8730 name = "complex unsigned int";
8731 else if (TREE_TYPE (t) == long_integer_type_node)
8732 name = "complex long int";
8733 else if (TREE_TYPE (t) == long_unsigned_type_node)
8734 name = "complex long unsigned int";
8735 else if (TREE_TYPE (t) == long_long_integer_type_node)
8736 name = "complex long long int";
8737 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8738 name = "complex long long unsigned int";
8739
8740 if (name != NULL)
8741 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8742 get_identifier (name), t);
8743 }
8744 }
8745
8746 return build_qualified_type (t, TYPE_QUALS (component_type));
8747 }
8748
8749 /* If TYPE is a real or complex floating-point type and the target
8750 does not directly support arithmetic on TYPE then return the wider
8751 type to be used for arithmetic on TYPE. Otherwise, return
8752 NULL_TREE. */
8753
8754 tree
8755 excess_precision_type (tree type)
8756 {
8757 /* The target can give two different responses to the question of
8758 which excess precision mode it would like depending on whether we
8759 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8760
8761 enum excess_precision_type requested_type
8762 = (flag_excess_precision == EXCESS_PRECISION_FAST
8763 ? EXCESS_PRECISION_TYPE_FAST
8764 : EXCESS_PRECISION_TYPE_STANDARD);
8765
8766 enum flt_eval_method target_flt_eval_method
8767 = targetm.c.excess_precision (requested_type);
8768
8769 /* The target should not ask for unpredictable float evaluation (though
8770 it might advertise that implicitly the evaluation is unpredictable,
8771 but we don't care about that here, it will have been reported
8772 elsewhere). If it does ask for unpredictable evaluation, we have
8773 nothing to do here. */
8774 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8775
8776 /* Nothing to do. The target has asked for all types we know about
8777 to be computed with their native precision and range. */
8778 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8779 return NULL_TREE;
8780
8781 /* The target will promote this type in a target-dependent way, so excess
8782 precision ought to leave it alone. */
8783 if (targetm.promoted_type (type) != NULL_TREE)
8784 return NULL_TREE;
8785
8786 machine_mode float16_type_mode = (float16_type_node
8787 ? TYPE_MODE (float16_type_node)
8788 : VOIDmode);
8789 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8790 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8791
8792 switch (TREE_CODE (type))
8793 {
8794 case REAL_TYPE:
8795 {
8796 machine_mode type_mode = TYPE_MODE (type);
8797 switch (target_flt_eval_method)
8798 {
8799 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8800 if (type_mode == float16_type_mode)
8801 return float_type_node;
8802 break;
8803 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8804 if (type_mode == float16_type_mode
8805 || type_mode == float_type_mode)
8806 return double_type_node;
8807 break;
8808 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8809 if (type_mode == float16_type_mode
8810 || type_mode == float_type_mode
8811 || type_mode == double_type_mode)
8812 return long_double_type_node;
8813 break;
8814 default:
8815 gcc_unreachable ();
8816 }
8817 break;
8818 }
8819 case COMPLEX_TYPE:
8820 {
8821 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8822 return NULL_TREE;
8823 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8824 switch (target_flt_eval_method)
8825 {
8826 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8827 if (type_mode == float16_type_mode)
8828 return complex_float_type_node;
8829 break;
8830 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8831 if (type_mode == float16_type_mode
8832 || type_mode == float_type_mode)
8833 return complex_double_type_node;
8834 break;
8835 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8836 if (type_mode == float16_type_mode
8837 || type_mode == float_type_mode
8838 || type_mode == double_type_mode)
8839 return complex_long_double_type_node;
8840 break;
8841 default:
8842 gcc_unreachable ();
8843 }
8844 break;
8845 }
8846 default:
8847 break;
8848 }
8849
8850 return NULL_TREE;
8851 }
8852 \f
8853 /* Return OP, stripped of any conversions to wider types as much as is safe.
8854 Converting the value back to OP's type makes a value equivalent to OP.
8855
8856 If FOR_TYPE is nonzero, we return a value which, if converted to
8857 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8858
8859 OP must have integer, real or enumeral type. Pointers are not allowed!
8860
8861 There are some cases where the obvious value we could return
8862 would regenerate to OP if converted to OP's type,
8863 but would not extend like OP to wider types.
8864 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8865 For example, if OP is (unsigned short)(signed char)-1,
8866 we avoid returning (signed char)-1 if FOR_TYPE is int,
8867 even though extending that to an unsigned short would regenerate OP,
8868 since the result of extending (signed char)-1 to (int)
8869 is different from (int) OP. */
8870
8871 tree
8872 get_unwidened (tree op, tree for_type)
8873 {
8874 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8875 tree type = TREE_TYPE (op);
8876 unsigned final_prec
8877 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8878 int uns
8879 = (for_type != 0 && for_type != type
8880 && final_prec > TYPE_PRECISION (type)
8881 && TYPE_UNSIGNED (type));
8882 tree win = op;
8883
8884 while (CONVERT_EXPR_P (op))
8885 {
8886 int bitschange;
8887
8888 /* TYPE_PRECISION on vector types has different meaning
8889 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8890 so avoid them here. */
8891 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8892 break;
8893
8894 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8895 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8896
8897 /* Truncations are many-one so cannot be removed.
8898 Unless we are later going to truncate down even farther. */
8899 if (bitschange < 0
8900 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8901 break;
8902
8903 /* See what's inside this conversion. If we decide to strip it,
8904 we will set WIN. */
8905 op = TREE_OPERAND (op, 0);
8906
8907 /* If we have not stripped any zero-extensions (uns is 0),
8908 we can strip any kind of extension.
8909 If we have previously stripped a zero-extension,
8910 only zero-extensions can safely be stripped.
8911 Any extension can be stripped if the bits it would produce
8912 are all going to be discarded later by truncating to FOR_TYPE. */
8913
8914 if (bitschange > 0)
8915 {
8916 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8917 win = op;
8918 /* TYPE_UNSIGNED says whether this is a zero-extension.
8919 Let's avoid computing it if it does not affect WIN
8920 and if UNS will not be needed again. */
8921 if ((uns
8922 || CONVERT_EXPR_P (op))
8923 && TYPE_UNSIGNED (TREE_TYPE (op)))
8924 {
8925 uns = 1;
8926 win = op;
8927 }
8928 }
8929 }
8930
8931 /* If we finally reach a constant see if it fits in sth smaller and
8932 in that case convert it. */
8933 if (TREE_CODE (win) == INTEGER_CST)
8934 {
8935 tree wtype = TREE_TYPE (win);
8936 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8937 if (for_type)
8938 prec = MAX (prec, final_prec);
8939 if (prec < TYPE_PRECISION (wtype))
8940 {
8941 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8942 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8943 win = fold_convert (t, win);
8944 }
8945 }
8946
8947 return win;
8948 }
8949 \f
8950 /* Return OP or a simpler expression for a narrower value
8951 which can be sign-extended or zero-extended to give back OP.
8952 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8953 or 0 if the value should be sign-extended. */
8954
8955 tree
8956 get_narrower (tree op, int *unsignedp_ptr)
8957 {
8958 int uns = 0;
8959 int first = 1;
8960 tree win = op;
8961 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8962
8963 if (TREE_CODE (op) == COMPOUND_EXPR)
8964 {
8965 do
8966 op = TREE_OPERAND (op, 1);
8967 while (TREE_CODE (op) == COMPOUND_EXPR);
8968 tree ret = get_narrower (op, unsignedp_ptr);
8969 if (ret == op)
8970 return win;
8971 auto_vec <tree, 16> v;
8972 unsigned int i;
8973 for (op = win; TREE_CODE (op) == COMPOUND_EXPR;
8974 op = TREE_OPERAND (op, 1))
8975 v.safe_push (op);
8976 FOR_EACH_VEC_ELT_REVERSE (v, i, op)
8977 ret = build2_loc (EXPR_LOCATION (op), COMPOUND_EXPR,
8978 TREE_TYPE (ret), TREE_OPERAND (op, 0),
8979 ret);
8980 return ret;
8981 }
8982 while (TREE_CODE (op) == NOP_EXPR)
8983 {
8984 int bitschange
8985 = (TYPE_PRECISION (TREE_TYPE (op))
8986 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8987
8988 /* Truncations are many-one so cannot be removed. */
8989 if (bitschange < 0)
8990 break;
8991
8992 /* See what's inside this conversion. If we decide to strip it,
8993 we will set WIN. */
8994
8995 if (bitschange > 0)
8996 {
8997 op = TREE_OPERAND (op, 0);
8998 /* An extension: the outermost one can be stripped,
8999 but remember whether it is zero or sign extension. */
9000 if (first)
9001 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9002 /* Otherwise, if a sign extension has been stripped,
9003 only sign extensions can now be stripped;
9004 if a zero extension has been stripped, only zero-extensions. */
9005 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
9006 break;
9007 first = 0;
9008 }
9009 else /* bitschange == 0 */
9010 {
9011 /* A change in nominal type can always be stripped, but we must
9012 preserve the unsignedness. */
9013 if (first)
9014 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9015 first = 0;
9016 op = TREE_OPERAND (op, 0);
9017 /* Keep trying to narrow, but don't assign op to win if it
9018 would turn an integral type into something else. */
9019 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
9020 continue;
9021 }
9022
9023 win = op;
9024 }
9025
9026 if (TREE_CODE (op) == COMPONENT_REF
9027 /* Since type_for_size always gives an integer type. */
9028 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
9029 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
9030 /* Ensure field is laid out already. */
9031 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
9032 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
9033 {
9034 unsigned HOST_WIDE_INT innerprec
9035 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
9036 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
9037 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
9038 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
9039
9040 /* We can get this structure field in a narrower type that fits it,
9041 but the resulting extension to its nominal type (a fullword type)
9042 must satisfy the same conditions as for other extensions.
9043
9044 Do this only for fields that are aligned (not bit-fields),
9045 because when bit-field insns will be used there is no
9046 advantage in doing this. */
9047
9048 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
9049 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
9050 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
9051 && type != 0)
9052 {
9053 if (first)
9054 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
9055 win = fold_convert (type, op);
9056 }
9057 }
9058
9059 *unsignedp_ptr = uns;
9060 return win;
9061 }
9062 \f
9063 /* Return true if integer constant C has a value that is permissible
9064 for TYPE, an integral type. */
9065
9066 bool
9067 int_fits_type_p (const_tree c, const_tree type)
9068 {
9069 tree type_low_bound, type_high_bound;
9070 bool ok_for_low_bound, ok_for_high_bound;
9071 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
9072
9073 /* Non-standard boolean types can have arbitrary precision but various
9074 transformations assume that they can only take values 0 and +/-1. */
9075 if (TREE_CODE (type) == BOOLEAN_TYPE)
9076 return wi::fits_to_boolean_p (wi::to_wide (c), type);
9077
9078 retry:
9079 type_low_bound = TYPE_MIN_VALUE (type);
9080 type_high_bound = TYPE_MAX_VALUE (type);
9081
9082 /* If at least one bound of the type is a constant integer, we can check
9083 ourselves and maybe make a decision. If no such decision is possible, but
9084 this type is a subtype, try checking against that. Otherwise, use
9085 fits_to_tree_p, which checks against the precision.
9086
9087 Compute the status for each possibly constant bound, and return if we see
9088 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9089 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9090 for "constant known to fit". */
9091
9092 /* Check if c >= type_low_bound. */
9093 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9094 {
9095 if (tree_int_cst_lt (c, type_low_bound))
9096 return false;
9097 ok_for_low_bound = true;
9098 }
9099 else
9100 ok_for_low_bound = false;
9101
9102 /* Check if c <= type_high_bound. */
9103 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9104 {
9105 if (tree_int_cst_lt (type_high_bound, c))
9106 return false;
9107 ok_for_high_bound = true;
9108 }
9109 else
9110 ok_for_high_bound = false;
9111
9112 /* If the constant fits both bounds, the result is known. */
9113 if (ok_for_low_bound && ok_for_high_bound)
9114 return true;
9115
9116 /* Perform some generic filtering which may allow making a decision
9117 even if the bounds are not constant. First, negative integers
9118 never fit in unsigned types, */
9119 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
9120 return false;
9121
9122 /* Second, narrower types always fit in wider ones. */
9123 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9124 return true;
9125
9126 /* Third, unsigned integers with top bit set never fit signed types. */
9127 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9128 {
9129 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
9130 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9131 {
9132 /* When a tree_cst is converted to a wide-int, the precision
9133 is taken from the type. However, if the precision of the
9134 mode underneath the type is smaller than that, it is
9135 possible that the value will not fit. The test below
9136 fails if any bit is set between the sign bit of the
9137 underlying mode and the top bit of the type. */
9138 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
9139 return false;
9140 }
9141 else if (wi::neg_p (wi::to_wide (c)))
9142 return false;
9143 }
9144
9145 /* If we haven't been able to decide at this point, there nothing more we
9146 can check ourselves here. Look at the base type if we have one and it
9147 has the same precision. */
9148 if (TREE_CODE (type) == INTEGER_TYPE
9149 && TREE_TYPE (type) != 0
9150 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9151 {
9152 type = TREE_TYPE (type);
9153 goto retry;
9154 }
9155
9156 /* Or to fits_to_tree_p, if nothing else. */
9157 return wi::fits_to_tree_p (wi::to_wide (c), type);
9158 }
9159
9160 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9161 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9162 represented (assuming two's-complement arithmetic) within the bit
9163 precision of the type are returned instead. */
9164
9165 void
9166 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9167 {
9168 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9169 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9170 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
9171 else
9172 {
9173 if (TYPE_UNSIGNED (type))
9174 mpz_set_ui (min, 0);
9175 else
9176 {
9177 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9178 wi::to_mpz (mn, min, SIGNED);
9179 }
9180 }
9181
9182 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9183 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9184 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
9185 else
9186 {
9187 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9188 wi::to_mpz (mn, max, TYPE_SIGN (type));
9189 }
9190 }
9191
9192 /* Return true if VAR is an automatic variable. */
9193
9194 bool
9195 auto_var_p (const_tree var)
9196 {
9197 return ((((VAR_P (var) && ! DECL_EXTERNAL (var))
9198 || TREE_CODE (var) == PARM_DECL)
9199 && ! TREE_STATIC (var))
9200 || TREE_CODE (var) == RESULT_DECL);
9201 }
9202
9203 /* Return true if VAR is an automatic variable defined in function FN. */
9204
9205 bool
9206 auto_var_in_fn_p (const_tree var, const_tree fn)
9207 {
9208 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9209 && (auto_var_p (var)
9210 || TREE_CODE (var) == LABEL_DECL));
9211 }
9212
9213 /* Subprogram of following function. Called by walk_tree.
9214
9215 Return *TP if it is an automatic variable or parameter of the
9216 function passed in as DATA. */
9217
9218 static tree
9219 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9220 {
9221 tree fn = (tree) data;
9222
9223 if (TYPE_P (*tp))
9224 *walk_subtrees = 0;
9225
9226 else if (DECL_P (*tp)
9227 && auto_var_in_fn_p (*tp, fn))
9228 return *tp;
9229
9230 return NULL_TREE;
9231 }
9232
9233 /* Returns true if T is, contains, or refers to a type with variable
9234 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9235 arguments, but not the return type. If FN is nonzero, only return
9236 true if a modifier of the type or position of FN is a variable or
9237 parameter inside FN.
9238
9239 This concept is more general than that of C99 'variably modified types':
9240 in C99, a struct type is never variably modified because a VLA may not
9241 appear as a structure member. However, in GNU C code like:
9242
9243 struct S { int i[f()]; };
9244
9245 is valid, and other languages may define similar constructs. */
9246
9247 bool
9248 variably_modified_type_p (tree type, tree fn)
9249 {
9250 tree t;
9251
9252 /* Test if T is either variable (if FN is zero) or an expression containing
9253 a variable in FN. If TYPE isn't gimplified, return true also if
9254 gimplify_one_sizepos would gimplify the expression into a local
9255 variable. */
9256 #define RETURN_TRUE_IF_VAR(T) \
9257 do { tree _t = (T); \
9258 if (_t != NULL_TREE \
9259 && _t != error_mark_node \
9260 && !CONSTANT_CLASS_P (_t) \
9261 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9262 && (!fn \
9263 || (!TYPE_SIZES_GIMPLIFIED (type) \
9264 && (TREE_CODE (_t) != VAR_DECL \
9265 && !CONTAINS_PLACEHOLDER_P (_t))) \
9266 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9267 return true; } while (0)
9268
9269 if (type == error_mark_node)
9270 return false;
9271
9272 /* If TYPE itself has variable size, it is variably modified. */
9273 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9274 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9275
9276 switch (TREE_CODE (type))
9277 {
9278 case POINTER_TYPE:
9279 case REFERENCE_TYPE:
9280 case VECTOR_TYPE:
9281 /* Ada can have pointer types refering to themselves indirectly. */
9282 if (TREE_VISITED (type))
9283 return false;
9284 TREE_VISITED (type) = true;
9285 if (variably_modified_type_p (TREE_TYPE (type), fn))
9286 {
9287 TREE_VISITED (type) = false;
9288 return true;
9289 }
9290 TREE_VISITED (type) = false;
9291 break;
9292
9293 case FUNCTION_TYPE:
9294 case METHOD_TYPE:
9295 /* If TYPE is a function type, it is variably modified if the
9296 return type is variably modified. */
9297 if (variably_modified_type_p (TREE_TYPE (type), fn))
9298 return true;
9299 break;
9300
9301 case INTEGER_TYPE:
9302 case REAL_TYPE:
9303 case FIXED_POINT_TYPE:
9304 case ENUMERAL_TYPE:
9305 case BOOLEAN_TYPE:
9306 /* Scalar types are variably modified if their end points
9307 aren't constant. */
9308 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9309 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9310 break;
9311
9312 case RECORD_TYPE:
9313 case UNION_TYPE:
9314 case QUAL_UNION_TYPE:
9315 /* We can't see if any of the fields are variably-modified by the
9316 definition we normally use, since that would produce infinite
9317 recursion via pointers. */
9318 /* This is variably modified if some field's type is. */
9319 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9320 if (TREE_CODE (t) == FIELD_DECL)
9321 {
9322 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9323 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9324 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9325
9326 /* If the type is a qualified union, then the DECL_QUALIFIER
9327 of fields can also be an expression containing a variable. */
9328 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9329 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9330
9331 /* If the field is a qualified union, then it's only a container
9332 for what's inside so we look into it. That's necessary in LTO
9333 mode because the sizes of the field tested above have been set
9334 to PLACEHOLDER_EXPRs by free_lang_data. */
9335 if (TREE_CODE (TREE_TYPE (t)) == QUAL_UNION_TYPE
9336 && variably_modified_type_p (TREE_TYPE (t), fn))
9337 return true;
9338 }
9339 break;
9340
9341 case ARRAY_TYPE:
9342 /* Do not call ourselves to avoid infinite recursion. This is
9343 variably modified if the element type is. */
9344 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9345 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9346 break;
9347
9348 default:
9349 break;
9350 }
9351
9352 /* The current language may have other cases to check, but in general,
9353 all other types are not variably modified. */
9354 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9355
9356 #undef RETURN_TRUE_IF_VAR
9357 }
9358
9359 /* Given a DECL or TYPE, return the scope in which it was declared, or
9360 NULL_TREE if there is no containing scope. */
9361
9362 tree
9363 get_containing_scope (const_tree t)
9364 {
9365 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9366 }
9367
9368 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
9369
9370 const_tree
9371 get_ultimate_context (const_tree decl)
9372 {
9373 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
9374 {
9375 if (TREE_CODE (decl) == BLOCK)
9376 decl = BLOCK_SUPERCONTEXT (decl);
9377 else
9378 decl = get_containing_scope (decl);
9379 }
9380 return decl;
9381 }
9382
9383 /* Return the innermost context enclosing DECL that is
9384 a FUNCTION_DECL, or zero if none. */
9385
9386 tree
9387 decl_function_context (const_tree decl)
9388 {
9389 tree context;
9390
9391 if (TREE_CODE (decl) == ERROR_MARK)
9392 return 0;
9393
9394 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9395 where we look up the function at runtime. Such functions always take
9396 a first argument of type 'pointer to real context'.
9397
9398 C++ should really be fixed to use DECL_CONTEXT for the real context,
9399 and use something else for the "virtual context". */
9400 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
9401 context
9402 = TYPE_MAIN_VARIANT
9403 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9404 else
9405 context = DECL_CONTEXT (decl);
9406
9407 while (context && TREE_CODE (context) != FUNCTION_DECL)
9408 {
9409 if (TREE_CODE (context) == BLOCK)
9410 context = BLOCK_SUPERCONTEXT (context);
9411 else
9412 context = get_containing_scope (context);
9413 }
9414
9415 return context;
9416 }
9417
9418 /* Return the innermost context enclosing DECL that is
9419 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9420 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9421
9422 tree
9423 decl_type_context (const_tree decl)
9424 {
9425 tree context = DECL_CONTEXT (decl);
9426
9427 while (context)
9428 switch (TREE_CODE (context))
9429 {
9430 case NAMESPACE_DECL:
9431 case TRANSLATION_UNIT_DECL:
9432 return NULL_TREE;
9433
9434 case RECORD_TYPE:
9435 case UNION_TYPE:
9436 case QUAL_UNION_TYPE:
9437 return context;
9438
9439 case TYPE_DECL:
9440 case FUNCTION_DECL:
9441 context = DECL_CONTEXT (context);
9442 break;
9443
9444 case BLOCK:
9445 context = BLOCK_SUPERCONTEXT (context);
9446 break;
9447
9448 default:
9449 gcc_unreachable ();
9450 }
9451
9452 return NULL_TREE;
9453 }
9454
9455 /* CALL is a CALL_EXPR. Return the declaration for the function
9456 called, or NULL_TREE if the called function cannot be
9457 determined. */
9458
9459 tree
9460 get_callee_fndecl (const_tree call)
9461 {
9462 tree addr;
9463
9464 if (call == error_mark_node)
9465 return error_mark_node;
9466
9467 /* It's invalid to call this function with anything but a
9468 CALL_EXPR. */
9469 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9470
9471 /* The first operand to the CALL is the address of the function
9472 called. */
9473 addr = CALL_EXPR_FN (call);
9474
9475 /* If there is no function, return early. */
9476 if (addr == NULL_TREE)
9477 return NULL_TREE;
9478
9479 STRIP_NOPS (addr);
9480
9481 /* If this is a readonly function pointer, extract its initial value. */
9482 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9483 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9484 && DECL_INITIAL (addr))
9485 addr = DECL_INITIAL (addr);
9486
9487 /* If the address is just `&f' for some function `f', then we know
9488 that `f' is being called. */
9489 if (TREE_CODE (addr) == ADDR_EXPR
9490 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9491 return TREE_OPERAND (addr, 0);
9492
9493 /* We couldn't figure out what was being called. */
9494 return NULL_TREE;
9495 }
9496
9497 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9498 return the associated function code, otherwise return CFN_LAST. */
9499
9500 combined_fn
9501 get_call_combined_fn (const_tree call)
9502 {
9503 /* It's invalid to call this function with anything but a CALL_EXPR. */
9504 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9505
9506 if (!CALL_EXPR_FN (call))
9507 return as_combined_fn (CALL_EXPR_IFN (call));
9508
9509 tree fndecl = get_callee_fndecl (call);
9510 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
9511 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9512
9513 return CFN_LAST;
9514 }
9515
9516 /* Comparator of indices based on tree_node_counts. */
9517
9518 static int
9519 tree_nodes_cmp (const void *p1, const void *p2)
9520 {
9521 const unsigned *n1 = (const unsigned *)p1;
9522 const unsigned *n2 = (const unsigned *)p2;
9523
9524 return tree_node_counts[*n1] - tree_node_counts[*n2];
9525 }
9526
9527 /* Comparator of indices based on tree_code_counts. */
9528
9529 static int
9530 tree_codes_cmp (const void *p1, const void *p2)
9531 {
9532 const unsigned *n1 = (const unsigned *)p1;
9533 const unsigned *n2 = (const unsigned *)p2;
9534
9535 return tree_code_counts[*n1] - tree_code_counts[*n2];
9536 }
9537
9538 #define TREE_MEM_USAGE_SPACES 40
9539
9540 /* Print debugging information about tree nodes generated during the compile,
9541 and any language-specific information. */
9542
9543 void
9544 dump_tree_statistics (void)
9545 {
9546 if (GATHER_STATISTICS)
9547 {
9548 uint64_t total_nodes, total_bytes;
9549 fprintf (stderr, "\nKind Nodes Bytes\n");
9550 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9551 total_nodes = total_bytes = 0;
9552
9553 {
9554 auto_vec<unsigned> indices (all_kinds);
9555 for (unsigned i = 0; i < all_kinds; i++)
9556 indices.quick_push (i);
9557 indices.qsort (tree_nodes_cmp);
9558
9559 for (unsigned i = 0; i < (int) all_kinds; i++)
9560 {
9561 unsigned j = indices[i];
9562 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n",
9563 tree_node_kind_names[j], SIZE_AMOUNT (tree_node_counts[j]),
9564 SIZE_AMOUNT (tree_node_sizes[j]));
9565 total_nodes += tree_node_counts[j];
9566 total_bytes += tree_node_sizes[j];
9567 }
9568 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9569 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", "Total",
9570 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
9571 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9572 }
9573
9574 {
9575 fprintf (stderr, "Code Nodes\n");
9576 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9577
9578 auto_vec<unsigned> indices (MAX_TREE_CODES);
9579 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9580 indices.quick_push (i);
9581 indices.qsort (tree_codes_cmp);
9582
9583 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9584 {
9585 unsigned j = indices[i];
9586 fprintf (stderr, "%-32s %6" PRIu64 "%c\n",
9587 get_tree_code_name ((enum tree_code) j),
9588 SIZE_AMOUNT (tree_code_counts[j]));
9589 }
9590 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9591 fprintf (stderr, "\n");
9592 ssanames_print_statistics ();
9593 fprintf (stderr, "\n");
9594 phinodes_print_statistics ();
9595 fprintf (stderr, "\n");
9596 }
9597 }
9598 else
9599 fprintf (stderr, "(No per-node statistics)\n");
9600
9601 print_type_hash_statistics ();
9602 print_debug_expr_statistics ();
9603 print_value_expr_statistics ();
9604 lang_hooks.print_statistics ();
9605 }
9606 \f
9607 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9608
9609 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9610
9611 unsigned
9612 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9613 {
9614 /* This relies on the raw feedback's top 4 bits being zero. */
9615 #define FEEDBACK(X) ((X) * 0x04c11db7)
9616 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9617 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9618 static const unsigned syndromes[16] =
9619 {
9620 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9621 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9622 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9623 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9624 };
9625 #undef FEEDBACK
9626 #undef SYNDROME
9627
9628 value <<= (32 - bytes * 8);
9629 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9630 {
9631 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9632
9633 chksum = (chksum << 4) ^ feedback;
9634 }
9635
9636 return chksum;
9637 }
9638
9639 /* Generate a crc32 of a string. */
9640
9641 unsigned
9642 crc32_string (unsigned chksum, const char *string)
9643 {
9644 do
9645 chksum = crc32_byte (chksum, *string);
9646 while (*string++);
9647 return chksum;
9648 }
9649
9650 /* P is a string that will be used in a symbol. Mask out any characters
9651 that are not valid in that context. */
9652
9653 void
9654 clean_symbol_name (char *p)
9655 {
9656 for (; *p; p++)
9657 if (! (ISALNUM (*p)
9658 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9659 || *p == '$'
9660 #endif
9661 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9662 || *p == '.'
9663 #endif
9664 ))
9665 *p = '_';
9666 }
9667
9668 static GTY(()) unsigned anon_cnt = 0; /* Saved for PCH. */
9669
9670 /* Create a unique anonymous identifier. The identifier is still a
9671 valid assembly label. */
9672
9673 tree
9674 make_anon_name ()
9675 {
9676 const char *fmt =
9677 #if !defined (NO_DOT_IN_LABEL)
9678 "."
9679 #elif !defined (NO_DOLLAR_IN_LABEL)
9680 "$"
9681 #else
9682 "_"
9683 #endif
9684 "_anon_%d";
9685
9686 char buf[24];
9687 int len = snprintf (buf, sizeof (buf), fmt, anon_cnt++);
9688 gcc_checking_assert (len < int (sizeof (buf)));
9689
9690 tree id = get_identifier_with_length (buf, len);
9691 IDENTIFIER_ANON_P (id) = true;
9692
9693 return id;
9694 }
9695
9696 /* Generate a name for a special-purpose function.
9697 The generated name may need to be unique across the whole link.
9698 Changes to this function may also require corresponding changes to
9699 xstrdup_mask_random.
9700 TYPE is some string to identify the purpose of this function to the
9701 linker or collect2; it must start with an uppercase letter,
9702 one of:
9703 I - for constructors
9704 D - for destructors
9705 N - for C++ anonymous namespaces
9706 F - for DWARF unwind frame information. */
9707
9708 tree
9709 get_file_function_name (const char *type)
9710 {
9711 char *buf;
9712 const char *p;
9713 char *q;
9714
9715 /* If we already have a name we know to be unique, just use that. */
9716 if (first_global_object_name)
9717 p = q = ASTRDUP (first_global_object_name);
9718 /* If the target is handling the constructors/destructors, they
9719 will be local to this file and the name is only necessary for
9720 debugging purposes.
9721 We also assign sub_I and sub_D sufixes to constructors called from
9722 the global static constructors. These are always local. */
9723 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9724 || (strncmp (type, "sub_", 4) == 0
9725 && (type[4] == 'I' || type[4] == 'D')))
9726 {
9727 const char *file = main_input_filename;
9728 if (! file)
9729 file = LOCATION_FILE (input_location);
9730 /* Just use the file's basename, because the full pathname
9731 might be quite long. */
9732 p = q = ASTRDUP (lbasename (file));
9733 }
9734 else
9735 {
9736 /* Otherwise, the name must be unique across the entire link.
9737 We don't have anything that we know to be unique to this translation
9738 unit, so use what we do have and throw in some randomness. */
9739 unsigned len;
9740 const char *name = weak_global_object_name;
9741 const char *file = main_input_filename;
9742
9743 if (! name)
9744 name = "";
9745 if (! file)
9746 file = LOCATION_FILE (input_location);
9747
9748 len = strlen (file);
9749 q = (char *) alloca (9 + 19 + len + 1);
9750 memcpy (q, file, len + 1);
9751
9752 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9753 crc32_string (0, name), get_random_seed (false));
9754
9755 p = q;
9756 }
9757
9758 clean_symbol_name (q);
9759 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9760 + strlen (type));
9761
9762 /* Set up the name of the file-level functions we may need.
9763 Use a global object (which is already required to be unique over
9764 the program) rather than the file name (which imposes extra
9765 constraints). */
9766 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9767
9768 return get_identifier (buf);
9769 }
9770 \f
9771 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9772
9773 /* Complain that the tree code of NODE does not match the expected 0
9774 terminated list of trailing codes. The trailing code list can be
9775 empty, for a more vague error message. FILE, LINE, and FUNCTION
9776 are of the caller. */
9777
9778 void
9779 tree_check_failed (const_tree node, const char *file,
9780 int line, const char *function, ...)
9781 {
9782 va_list args;
9783 const char *buffer;
9784 unsigned length = 0;
9785 enum tree_code code;
9786
9787 va_start (args, function);
9788 while ((code = (enum tree_code) va_arg (args, int)))
9789 length += 4 + strlen (get_tree_code_name (code));
9790 va_end (args);
9791 if (length)
9792 {
9793 char *tmp;
9794 va_start (args, function);
9795 length += strlen ("expected ");
9796 buffer = tmp = (char *) alloca (length);
9797 length = 0;
9798 while ((code = (enum tree_code) va_arg (args, int)))
9799 {
9800 const char *prefix = length ? " or " : "expected ";
9801
9802 strcpy (tmp + length, prefix);
9803 length += strlen (prefix);
9804 strcpy (tmp + length, get_tree_code_name (code));
9805 length += strlen (get_tree_code_name (code));
9806 }
9807 va_end (args);
9808 }
9809 else
9810 buffer = "unexpected node";
9811
9812 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9813 buffer, get_tree_code_name (TREE_CODE (node)),
9814 function, trim_filename (file), line);
9815 }
9816
9817 /* Complain that the tree code of NODE does match the expected 0
9818 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9819 the caller. */
9820
9821 void
9822 tree_not_check_failed (const_tree node, const char *file,
9823 int line, const char *function, ...)
9824 {
9825 va_list args;
9826 char *buffer;
9827 unsigned length = 0;
9828 enum tree_code code;
9829
9830 va_start (args, function);
9831 while ((code = (enum tree_code) va_arg (args, int)))
9832 length += 4 + strlen (get_tree_code_name (code));
9833 va_end (args);
9834 va_start (args, function);
9835 buffer = (char *) alloca (length);
9836 length = 0;
9837 while ((code = (enum tree_code) va_arg (args, int)))
9838 {
9839 if (length)
9840 {
9841 strcpy (buffer + length, " or ");
9842 length += 4;
9843 }
9844 strcpy (buffer + length, get_tree_code_name (code));
9845 length += strlen (get_tree_code_name (code));
9846 }
9847 va_end (args);
9848
9849 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9850 buffer, get_tree_code_name (TREE_CODE (node)),
9851 function, trim_filename (file), line);
9852 }
9853
9854 /* Similar to tree_check_failed, except that we check for a class of tree
9855 code, given in CL. */
9856
9857 void
9858 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9859 const char *file, int line, const char *function)
9860 {
9861 internal_error
9862 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9863 TREE_CODE_CLASS_STRING (cl),
9864 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9865 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9866 }
9867
9868 /* Similar to tree_check_failed, except that instead of specifying a
9869 dozen codes, use the knowledge that they're all sequential. */
9870
9871 void
9872 tree_range_check_failed (const_tree node, const char *file, int line,
9873 const char *function, enum tree_code c1,
9874 enum tree_code c2)
9875 {
9876 char *buffer;
9877 unsigned length = 0;
9878 unsigned int c;
9879
9880 for (c = c1; c <= c2; ++c)
9881 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9882
9883 length += strlen ("expected ");
9884 buffer = (char *) alloca (length);
9885 length = 0;
9886
9887 for (c = c1; c <= c2; ++c)
9888 {
9889 const char *prefix = length ? " or " : "expected ";
9890
9891 strcpy (buffer + length, prefix);
9892 length += strlen (prefix);
9893 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9894 length += strlen (get_tree_code_name ((enum tree_code) c));
9895 }
9896
9897 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9898 buffer, get_tree_code_name (TREE_CODE (node)),
9899 function, trim_filename (file), line);
9900 }
9901
9902
9903 /* Similar to tree_check_failed, except that we check that a tree does
9904 not have the specified code, given in CL. */
9905
9906 void
9907 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9908 const char *file, int line, const char *function)
9909 {
9910 internal_error
9911 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9912 TREE_CODE_CLASS_STRING (cl),
9913 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9914 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9915 }
9916
9917
9918 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9919
9920 void
9921 omp_clause_check_failed (const_tree node, const char *file, int line,
9922 const char *function, enum omp_clause_code code)
9923 {
9924 internal_error ("tree check: expected %<omp_clause %s%>, have %qs "
9925 "in %s, at %s:%d",
9926 omp_clause_code_name[code],
9927 get_tree_code_name (TREE_CODE (node)),
9928 function, trim_filename (file), line);
9929 }
9930
9931
9932 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9933
9934 void
9935 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9936 const char *function, enum omp_clause_code c1,
9937 enum omp_clause_code c2)
9938 {
9939 char *buffer;
9940 unsigned length = 0;
9941 unsigned int c;
9942
9943 for (c = c1; c <= c2; ++c)
9944 length += 4 + strlen (omp_clause_code_name[c]);
9945
9946 length += strlen ("expected ");
9947 buffer = (char *) alloca (length);
9948 length = 0;
9949
9950 for (c = c1; c <= c2; ++c)
9951 {
9952 const char *prefix = length ? " or " : "expected ";
9953
9954 strcpy (buffer + length, prefix);
9955 length += strlen (prefix);
9956 strcpy (buffer + length, omp_clause_code_name[c]);
9957 length += strlen (omp_clause_code_name[c]);
9958 }
9959
9960 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9961 buffer, omp_clause_code_name[TREE_CODE (node)],
9962 function, trim_filename (file), line);
9963 }
9964
9965
9966 #undef DEFTREESTRUCT
9967 #define DEFTREESTRUCT(VAL, NAME) NAME,
9968
9969 static const char *ts_enum_names[] = {
9970 #include "treestruct.def"
9971 };
9972 #undef DEFTREESTRUCT
9973
9974 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9975
9976 /* Similar to tree_class_check_failed, except that we check for
9977 whether CODE contains the tree structure identified by EN. */
9978
9979 void
9980 tree_contains_struct_check_failed (const_tree node,
9981 const enum tree_node_structure_enum en,
9982 const char *file, int line,
9983 const char *function)
9984 {
9985 internal_error
9986 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9987 TS_ENUM_NAME (en),
9988 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9989 }
9990
9991
9992 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9993 (dynamically sized) vector. */
9994
9995 void
9996 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9997 const char *function)
9998 {
9999 internal_error
10000 ("tree check: accessed elt %d of %<tree_int_cst%> with %d elts in %s, "
10001 "at %s:%d",
10002 idx + 1, len, function, trim_filename (file), line);
10003 }
10004
10005 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
10006 (dynamically sized) vector. */
10007
10008 void
10009 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
10010 const char *function)
10011 {
10012 internal_error
10013 ("tree check: accessed elt %d of %<tree_vec%> with %d elts in %s, at %s:%d",
10014 idx + 1, len, function, trim_filename (file), line);
10015 }
10016
10017 /* Similar to above, except that the check is for the bounds of the operand
10018 vector of an expression node EXP. */
10019
10020 void
10021 tree_operand_check_failed (int idx, const_tree exp, const char *file,
10022 int line, const char *function)
10023 {
10024 enum tree_code code = TREE_CODE (exp);
10025 internal_error
10026 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
10027 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
10028 function, trim_filename (file), line);
10029 }
10030
10031 /* Similar to above, except that the check is for the number of
10032 operands of an OMP_CLAUSE node. */
10033
10034 void
10035 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
10036 int line, const char *function)
10037 {
10038 internal_error
10039 ("tree check: accessed operand %d of %<omp_clause %s%> with %d operands "
10040 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
10041 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
10042 trim_filename (file), line);
10043 }
10044 #endif /* ENABLE_TREE_CHECKING */
10045 \f
10046 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
10047 and mapped to the machine mode MODE. Initialize its fields and build
10048 the information necessary for debugging output. */
10049
10050 static tree
10051 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
10052 {
10053 tree t;
10054 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
10055
10056 t = make_node (VECTOR_TYPE);
10057 TREE_TYPE (t) = mv_innertype;
10058 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
10059 SET_TYPE_MODE (t, mode);
10060
10061 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
10062 SET_TYPE_STRUCTURAL_EQUALITY (t);
10063 else if ((TYPE_CANONICAL (mv_innertype) != innertype
10064 || mode != VOIDmode)
10065 && !VECTOR_BOOLEAN_TYPE_P (t))
10066 TYPE_CANONICAL (t)
10067 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
10068
10069 layout_type (t);
10070
10071 hashval_t hash = type_hash_canon_hash (t);
10072 t = type_hash_canon (hash, t);
10073
10074 /* We have built a main variant, based on the main variant of the
10075 inner type. Use it to build the variant we return. */
10076 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
10077 && TREE_TYPE (t) != innertype)
10078 return build_type_attribute_qual_variant (t,
10079 TYPE_ATTRIBUTES (innertype),
10080 TYPE_QUALS (innertype));
10081
10082 return t;
10083 }
10084
10085 static tree
10086 make_or_reuse_type (unsigned size, int unsignedp)
10087 {
10088 int i;
10089
10090 if (size == INT_TYPE_SIZE)
10091 return unsignedp ? unsigned_type_node : integer_type_node;
10092 if (size == CHAR_TYPE_SIZE)
10093 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
10094 if (size == SHORT_TYPE_SIZE)
10095 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
10096 if (size == LONG_TYPE_SIZE)
10097 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
10098 if (size == LONG_LONG_TYPE_SIZE)
10099 return (unsignedp ? long_long_unsigned_type_node
10100 : long_long_integer_type_node);
10101
10102 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10103 if (size == int_n_data[i].bitsize
10104 && int_n_enabled_p[i])
10105 return (unsignedp ? int_n_trees[i].unsigned_type
10106 : int_n_trees[i].signed_type);
10107
10108 if (unsignedp)
10109 return make_unsigned_type (size);
10110 else
10111 return make_signed_type (size);
10112 }
10113
10114 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
10115
10116 static tree
10117 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
10118 {
10119 if (satp)
10120 {
10121 if (size == SHORT_FRACT_TYPE_SIZE)
10122 return unsignedp ? sat_unsigned_short_fract_type_node
10123 : sat_short_fract_type_node;
10124 if (size == FRACT_TYPE_SIZE)
10125 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
10126 if (size == LONG_FRACT_TYPE_SIZE)
10127 return unsignedp ? sat_unsigned_long_fract_type_node
10128 : sat_long_fract_type_node;
10129 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10130 return unsignedp ? sat_unsigned_long_long_fract_type_node
10131 : sat_long_long_fract_type_node;
10132 }
10133 else
10134 {
10135 if (size == SHORT_FRACT_TYPE_SIZE)
10136 return unsignedp ? unsigned_short_fract_type_node
10137 : short_fract_type_node;
10138 if (size == FRACT_TYPE_SIZE)
10139 return unsignedp ? unsigned_fract_type_node : fract_type_node;
10140 if (size == LONG_FRACT_TYPE_SIZE)
10141 return unsignedp ? unsigned_long_fract_type_node
10142 : long_fract_type_node;
10143 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10144 return unsignedp ? unsigned_long_long_fract_type_node
10145 : long_long_fract_type_node;
10146 }
10147
10148 return make_fract_type (size, unsignedp, satp);
10149 }
10150
10151 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
10152
10153 static tree
10154 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
10155 {
10156 if (satp)
10157 {
10158 if (size == SHORT_ACCUM_TYPE_SIZE)
10159 return unsignedp ? sat_unsigned_short_accum_type_node
10160 : sat_short_accum_type_node;
10161 if (size == ACCUM_TYPE_SIZE)
10162 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10163 if (size == LONG_ACCUM_TYPE_SIZE)
10164 return unsignedp ? sat_unsigned_long_accum_type_node
10165 : sat_long_accum_type_node;
10166 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10167 return unsignedp ? sat_unsigned_long_long_accum_type_node
10168 : sat_long_long_accum_type_node;
10169 }
10170 else
10171 {
10172 if (size == SHORT_ACCUM_TYPE_SIZE)
10173 return unsignedp ? unsigned_short_accum_type_node
10174 : short_accum_type_node;
10175 if (size == ACCUM_TYPE_SIZE)
10176 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10177 if (size == LONG_ACCUM_TYPE_SIZE)
10178 return unsignedp ? unsigned_long_accum_type_node
10179 : long_accum_type_node;
10180 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10181 return unsignedp ? unsigned_long_long_accum_type_node
10182 : long_long_accum_type_node;
10183 }
10184
10185 return make_accum_type (size, unsignedp, satp);
10186 }
10187
10188
10189 /* Create an atomic variant node for TYPE. This routine is called
10190 during initialization of data types to create the 5 basic atomic
10191 types. The generic build_variant_type function requires these to
10192 already be set up in order to function properly, so cannot be
10193 called from there. If ALIGN is non-zero, then ensure alignment is
10194 overridden to this value. */
10195
10196 static tree
10197 build_atomic_base (tree type, unsigned int align)
10198 {
10199 tree t;
10200
10201 /* Make sure its not already registered. */
10202 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10203 return t;
10204
10205 t = build_variant_type_copy (type);
10206 set_type_quals (t, TYPE_QUAL_ATOMIC);
10207
10208 if (align)
10209 SET_TYPE_ALIGN (t, align);
10210
10211 return t;
10212 }
10213
10214 /* Information about the _FloatN and _FloatNx types. This must be in
10215 the same order as the corresponding TI_* enum values. */
10216 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
10217 {
10218 { 16, false },
10219 { 32, false },
10220 { 64, false },
10221 { 128, false },
10222 { 32, true },
10223 { 64, true },
10224 { 128, true },
10225 };
10226
10227
10228 /* Create nodes for all integer types (and error_mark_node) using the sizes
10229 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10230
10231 void
10232 build_common_tree_nodes (bool signed_char)
10233 {
10234 int i;
10235
10236 error_mark_node = make_node (ERROR_MARK);
10237 TREE_TYPE (error_mark_node) = error_mark_node;
10238
10239 initialize_sizetypes ();
10240
10241 /* Define both `signed char' and `unsigned char'. */
10242 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10243 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10244 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10245 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10246
10247 /* Define `char', which is like either `signed char' or `unsigned char'
10248 but not the same as either. */
10249 char_type_node
10250 = (signed_char
10251 ? make_signed_type (CHAR_TYPE_SIZE)
10252 : make_unsigned_type (CHAR_TYPE_SIZE));
10253 TYPE_STRING_FLAG (char_type_node) = 1;
10254
10255 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10256 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10257 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10258 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10259 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10260 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10261 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10262 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10263
10264 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10265 {
10266 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10267 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10268
10269 if (int_n_enabled_p[i])
10270 {
10271 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10272 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10273 }
10274 }
10275
10276 /* Define a boolean type. This type only represents boolean values but
10277 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10278 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10279 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10280 TYPE_PRECISION (boolean_type_node) = 1;
10281 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10282
10283 /* Define what type to use for size_t. */
10284 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10285 size_type_node = unsigned_type_node;
10286 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10287 size_type_node = long_unsigned_type_node;
10288 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10289 size_type_node = long_long_unsigned_type_node;
10290 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10291 size_type_node = short_unsigned_type_node;
10292 else
10293 {
10294 int i;
10295
10296 size_type_node = NULL_TREE;
10297 for (i = 0; i < NUM_INT_N_ENTS; i++)
10298 if (int_n_enabled_p[i])
10299 {
10300 char name[50], altname[50];
10301 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10302 sprintf (altname, "__int%d__ unsigned", int_n_data[i].bitsize);
10303
10304 if (strcmp (name, SIZE_TYPE) == 0
10305 || strcmp (altname, SIZE_TYPE) == 0)
10306 {
10307 size_type_node = int_n_trees[i].unsigned_type;
10308 }
10309 }
10310 if (size_type_node == NULL_TREE)
10311 gcc_unreachable ();
10312 }
10313
10314 /* Define what type to use for ptrdiff_t. */
10315 if (strcmp (PTRDIFF_TYPE, "int") == 0)
10316 ptrdiff_type_node = integer_type_node;
10317 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
10318 ptrdiff_type_node = long_integer_type_node;
10319 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
10320 ptrdiff_type_node = long_long_integer_type_node;
10321 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
10322 ptrdiff_type_node = short_integer_type_node;
10323 else
10324 {
10325 ptrdiff_type_node = NULL_TREE;
10326 for (int i = 0; i < NUM_INT_N_ENTS; i++)
10327 if (int_n_enabled_p[i])
10328 {
10329 char name[50], altname[50];
10330 sprintf (name, "__int%d", int_n_data[i].bitsize);
10331 sprintf (altname, "__int%d__", int_n_data[i].bitsize);
10332
10333 if (strcmp (name, PTRDIFF_TYPE) == 0
10334 || strcmp (altname, PTRDIFF_TYPE) == 0)
10335 ptrdiff_type_node = int_n_trees[i].signed_type;
10336 }
10337 if (ptrdiff_type_node == NULL_TREE)
10338 gcc_unreachable ();
10339 }
10340
10341 /* Fill in the rest of the sized types. Reuse existing type nodes
10342 when possible. */
10343 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10344 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10345 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10346 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10347 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10348
10349 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10350 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10351 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10352 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10353 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10354
10355 /* Don't call build_qualified type for atomics. That routine does
10356 special processing for atomics, and until they are initialized
10357 it's better not to make that call.
10358
10359 Check to see if there is a target override for atomic types. */
10360
10361 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10362 targetm.atomic_align_for_mode (QImode));
10363 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10364 targetm.atomic_align_for_mode (HImode));
10365 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10366 targetm.atomic_align_for_mode (SImode));
10367 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10368 targetm.atomic_align_for_mode (DImode));
10369 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10370 targetm.atomic_align_for_mode (TImode));
10371
10372 access_public_node = get_identifier ("public");
10373 access_protected_node = get_identifier ("protected");
10374 access_private_node = get_identifier ("private");
10375
10376 /* Define these next since types below may used them. */
10377 integer_zero_node = build_int_cst (integer_type_node, 0);
10378 integer_one_node = build_int_cst (integer_type_node, 1);
10379 integer_three_node = build_int_cst (integer_type_node, 3);
10380 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10381
10382 size_zero_node = size_int (0);
10383 size_one_node = size_int (1);
10384 bitsize_zero_node = bitsize_int (0);
10385 bitsize_one_node = bitsize_int (1);
10386 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10387
10388 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10389 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10390
10391 void_type_node = make_node (VOID_TYPE);
10392 layout_type (void_type_node);
10393
10394 /* We are not going to have real types in C with less than byte alignment,
10395 so we might as well not have any types that claim to have it. */
10396 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
10397 TYPE_USER_ALIGN (void_type_node) = 0;
10398
10399 void_node = make_node (VOID_CST);
10400 TREE_TYPE (void_node) = void_type_node;
10401
10402 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10403 layout_type (TREE_TYPE (null_pointer_node));
10404
10405 ptr_type_node = build_pointer_type (void_type_node);
10406 const_ptr_type_node
10407 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10408 for (unsigned i = 0;
10409 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
10410 ++i)
10411 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
10412
10413 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10414
10415 float_type_node = make_node (REAL_TYPE);
10416 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10417 layout_type (float_type_node);
10418
10419 double_type_node = make_node (REAL_TYPE);
10420 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10421 layout_type (double_type_node);
10422
10423 long_double_type_node = make_node (REAL_TYPE);
10424 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10425 layout_type (long_double_type_node);
10426
10427 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10428 {
10429 int n = floatn_nx_types[i].n;
10430 bool extended = floatn_nx_types[i].extended;
10431 scalar_float_mode mode;
10432 if (!targetm.floatn_mode (n, extended).exists (&mode))
10433 continue;
10434 int precision = GET_MODE_PRECISION (mode);
10435 /* Work around the rs6000 KFmode having precision 113 not
10436 128. */
10437 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
10438 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
10439 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
10440 if (!extended)
10441 gcc_assert (min_precision == n);
10442 if (precision < min_precision)
10443 precision = min_precision;
10444 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
10445 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
10446 layout_type (FLOATN_NX_TYPE_NODE (i));
10447 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
10448 }
10449
10450 float_ptr_type_node = build_pointer_type (float_type_node);
10451 double_ptr_type_node = build_pointer_type (double_type_node);
10452 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10453 integer_ptr_type_node = build_pointer_type (integer_type_node);
10454
10455 /* Fixed size integer types. */
10456 uint16_type_node = make_or_reuse_type (16, 1);
10457 uint32_type_node = make_or_reuse_type (32, 1);
10458 uint64_type_node = make_or_reuse_type (64, 1);
10459 if (targetm.scalar_mode_supported_p (TImode))
10460 uint128_type_node = make_or_reuse_type (128, 1);
10461
10462 /* Decimal float types. */
10463 if (targetm.decimal_float_supported_p ())
10464 {
10465 dfloat32_type_node = make_node (REAL_TYPE);
10466 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10467 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10468 layout_type (dfloat32_type_node);
10469
10470 dfloat64_type_node = make_node (REAL_TYPE);
10471 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10472 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10473 layout_type (dfloat64_type_node);
10474
10475 dfloat128_type_node = make_node (REAL_TYPE);
10476 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10477 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10478 layout_type (dfloat128_type_node);
10479 }
10480
10481 complex_integer_type_node = build_complex_type (integer_type_node, true);
10482 complex_float_type_node = build_complex_type (float_type_node, true);
10483 complex_double_type_node = build_complex_type (double_type_node, true);
10484 complex_long_double_type_node = build_complex_type (long_double_type_node,
10485 true);
10486
10487 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10488 {
10489 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10490 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10491 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10492 }
10493
10494 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10495 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10496 sat_ ## KIND ## _type_node = \
10497 make_sat_signed_ ## KIND ## _type (SIZE); \
10498 sat_unsigned_ ## KIND ## _type_node = \
10499 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10500 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10501 unsigned_ ## KIND ## _type_node = \
10502 make_unsigned_ ## KIND ## _type (SIZE);
10503
10504 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10505 sat_ ## WIDTH ## KIND ## _type_node = \
10506 make_sat_signed_ ## KIND ## _type (SIZE); \
10507 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10508 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10509 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10510 unsigned_ ## WIDTH ## KIND ## _type_node = \
10511 make_unsigned_ ## KIND ## _type (SIZE);
10512
10513 /* Make fixed-point type nodes based on four different widths. */
10514 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10515 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10516 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10517 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10518 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10519
10520 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10521 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10522 NAME ## _type_node = \
10523 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10524 u ## NAME ## _type_node = \
10525 make_or_reuse_unsigned_ ## KIND ## _type \
10526 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10527 sat_ ## NAME ## _type_node = \
10528 make_or_reuse_sat_signed_ ## KIND ## _type \
10529 (GET_MODE_BITSIZE (MODE ## mode)); \
10530 sat_u ## NAME ## _type_node = \
10531 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10532 (GET_MODE_BITSIZE (U ## MODE ## mode));
10533
10534 /* Fixed-point type and mode nodes. */
10535 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10536 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10537 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10538 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10539 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10540 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10541 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10542 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10543 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10544 MAKE_FIXED_MODE_NODE (accum, da, DA)
10545 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10546
10547 {
10548 tree t = targetm.build_builtin_va_list ();
10549
10550 /* Many back-ends define record types without setting TYPE_NAME.
10551 If we copied the record type here, we'd keep the original
10552 record type without a name. This breaks name mangling. So,
10553 don't copy record types and let c_common_nodes_and_builtins()
10554 declare the type to be __builtin_va_list. */
10555 if (TREE_CODE (t) != RECORD_TYPE)
10556 t = build_variant_type_copy (t);
10557
10558 va_list_type_node = t;
10559 }
10560
10561 /* SCEV analyzer global shared trees. */
10562 chrec_dont_know = make_node (SCEV_NOT_KNOWN);
10563 TREE_TYPE (chrec_dont_know) = void_type_node;
10564 chrec_known = make_node (SCEV_KNOWN);
10565 TREE_TYPE (chrec_known) = void_type_node;
10566 }
10567
10568 /* Modify DECL for given flags.
10569 TM_PURE attribute is set only on types, so the function will modify
10570 DECL's type when ECF_TM_PURE is used. */
10571
10572 void
10573 set_call_expr_flags (tree decl, int flags)
10574 {
10575 if (flags & ECF_NOTHROW)
10576 TREE_NOTHROW (decl) = 1;
10577 if (flags & ECF_CONST)
10578 TREE_READONLY (decl) = 1;
10579 if (flags & ECF_PURE)
10580 DECL_PURE_P (decl) = 1;
10581 if (flags & ECF_LOOPING_CONST_OR_PURE)
10582 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10583 if (flags & ECF_NOVOPS)
10584 DECL_IS_NOVOPS (decl) = 1;
10585 if (flags & ECF_NORETURN)
10586 TREE_THIS_VOLATILE (decl) = 1;
10587 if (flags & ECF_MALLOC)
10588 DECL_IS_MALLOC (decl) = 1;
10589 if (flags & ECF_RETURNS_TWICE)
10590 DECL_IS_RETURNS_TWICE (decl) = 1;
10591 if (flags & ECF_LEAF)
10592 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10593 NULL, DECL_ATTRIBUTES (decl));
10594 if (flags & ECF_COLD)
10595 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10596 NULL, DECL_ATTRIBUTES (decl));
10597 if (flags & ECF_RET1)
10598 DECL_ATTRIBUTES (decl)
10599 = tree_cons (get_identifier ("fn spec"),
10600 build_tree_list (NULL_TREE, build_string (2, "1 ")),
10601 DECL_ATTRIBUTES (decl));
10602 if ((flags & ECF_TM_PURE) && flag_tm)
10603 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10604 /* Looping const or pure is implied by noreturn.
10605 There is currently no way to declare looping const or looping pure alone. */
10606 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10607 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10608 }
10609
10610
10611 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10612
10613 static void
10614 local_define_builtin (const char *name, tree type, enum built_in_function code,
10615 const char *library_name, int ecf_flags)
10616 {
10617 tree decl;
10618
10619 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10620 library_name, NULL_TREE);
10621 set_call_expr_flags (decl, ecf_flags);
10622
10623 set_builtin_decl (code, decl, true);
10624 }
10625
10626 /* Call this function after instantiating all builtins that the language
10627 front end cares about. This will build the rest of the builtins
10628 and internal functions that are relied upon by the tree optimizers and
10629 the middle-end. */
10630
10631 void
10632 build_common_builtin_nodes (void)
10633 {
10634 tree tmp, ftype;
10635 int ecf_flags;
10636
10637 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10638 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10639 {
10640 ftype = build_function_type (void_type_node, void_list_node);
10641 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10642 local_define_builtin ("__builtin_unreachable", ftype,
10643 BUILT_IN_UNREACHABLE,
10644 "__builtin_unreachable",
10645 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10646 | ECF_CONST | ECF_COLD);
10647 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10648 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10649 "abort",
10650 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10651 }
10652
10653 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10654 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10655 {
10656 ftype = build_function_type_list (ptr_type_node,
10657 ptr_type_node, const_ptr_type_node,
10658 size_type_node, NULL_TREE);
10659
10660 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10661 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10662 "memcpy", ECF_NOTHROW | ECF_LEAF);
10663 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10664 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10665 "memmove", ECF_NOTHROW | ECF_LEAF);
10666 }
10667
10668 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10669 {
10670 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10671 const_ptr_type_node, size_type_node,
10672 NULL_TREE);
10673 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10674 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10675 }
10676
10677 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10678 {
10679 ftype = build_function_type_list (ptr_type_node,
10680 ptr_type_node, integer_type_node,
10681 size_type_node, NULL_TREE);
10682 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10683 "memset", ECF_NOTHROW | ECF_LEAF);
10684 }
10685
10686 /* If we're checking the stack, `alloca' can throw. */
10687 const int alloca_flags
10688 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10689
10690 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10691 {
10692 ftype = build_function_type_list (ptr_type_node,
10693 size_type_node, NULL_TREE);
10694 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10695 "alloca", alloca_flags);
10696 }
10697
10698 ftype = build_function_type_list (ptr_type_node, size_type_node,
10699 size_type_node, NULL_TREE);
10700 local_define_builtin ("__builtin_alloca_with_align", ftype,
10701 BUILT_IN_ALLOCA_WITH_ALIGN,
10702 "__builtin_alloca_with_align",
10703 alloca_flags);
10704
10705 ftype = build_function_type_list (ptr_type_node, size_type_node,
10706 size_type_node, size_type_node, NULL_TREE);
10707 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10708 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10709 "__builtin_alloca_with_align_and_max",
10710 alloca_flags);
10711
10712 ftype = build_function_type_list (void_type_node,
10713 ptr_type_node, ptr_type_node,
10714 ptr_type_node, NULL_TREE);
10715 local_define_builtin ("__builtin_init_trampoline", ftype,
10716 BUILT_IN_INIT_TRAMPOLINE,
10717 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10718 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10719 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10720 "__builtin_init_heap_trampoline",
10721 ECF_NOTHROW | ECF_LEAF);
10722 local_define_builtin ("__builtin_init_descriptor", ftype,
10723 BUILT_IN_INIT_DESCRIPTOR,
10724 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10725
10726 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10727 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10728 BUILT_IN_ADJUST_TRAMPOLINE,
10729 "__builtin_adjust_trampoline",
10730 ECF_CONST | ECF_NOTHROW);
10731 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10732 BUILT_IN_ADJUST_DESCRIPTOR,
10733 "__builtin_adjust_descriptor",
10734 ECF_CONST | ECF_NOTHROW);
10735
10736 ftype = build_function_type_list (void_type_node,
10737 ptr_type_node, ptr_type_node, NULL_TREE);
10738 if (!builtin_decl_explicit_p (BUILT_IN_CLEAR_CACHE))
10739 local_define_builtin ("__builtin___clear_cache", ftype,
10740 BUILT_IN_CLEAR_CACHE,
10741 "__clear_cache",
10742 ECF_NOTHROW);
10743
10744 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10745 BUILT_IN_NONLOCAL_GOTO,
10746 "__builtin_nonlocal_goto",
10747 ECF_NORETURN | ECF_NOTHROW);
10748
10749 ftype = build_function_type_list (void_type_node,
10750 ptr_type_node, ptr_type_node, NULL_TREE);
10751 local_define_builtin ("__builtin_setjmp_setup", ftype,
10752 BUILT_IN_SETJMP_SETUP,
10753 "__builtin_setjmp_setup", ECF_NOTHROW);
10754
10755 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10756 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10757 BUILT_IN_SETJMP_RECEIVER,
10758 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10759
10760 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10761 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10762 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10763
10764 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10765 local_define_builtin ("__builtin_stack_restore", ftype,
10766 BUILT_IN_STACK_RESTORE,
10767 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10768
10769 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10770 const_ptr_type_node, size_type_node,
10771 NULL_TREE);
10772 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10773 "__builtin_memcmp_eq",
10774 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10775
10776 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10777 "__builtin_strncmp_eq",
10778 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10779
10780 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10781 "__builtin_strcmp_eq",
10782 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10783
10784 /* If there's a possibility that we might use the ARM EABI, build the
10785 alternate __cxa_end_cleanup node used to resume from C++. */
10786 if (targetm.arm_eabi_unwinder)
10787 {
10788 ftype = build_function_type_list (void_type_node, NULL_TREE);
10789 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10790 BUILT_IN_CXA_END_CLEANUP,
10791 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10792 }
10793
10794 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10795 local_define_builtin ("__builtin_unwind_resume", ftype,
10796 BUILT_IN_UNWIND_RESUME,
10797 ((targetm_common.except_unwind_info (&global_options)
10798 == UI_SJLJ)
10799 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10800 ECF_NORETURN);
10801
10802 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10803 {
10804 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10805 NULL_TREE);
10806 local_define_builtin ("__builtin_return_address", ftype,
10807 BUILT_IN_RETURN_ADDRESS,
10808 "__builtin_return_address",
10809 ECF_NOTHROW);
10810 }
10811
10812 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10813 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10814 {
10815 ftype = build_function_type_list (void_type_node, ptr_type_node,
10816 ptr_type_node, NULL_TREE);
10817 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10818 local_define_builtin ("__cyg_profile_func_enter", ftype,
10819 BUILT_IN_PROFILE_FUNC_ENTER,
10820 "__cyg_profile_func_enter", 0);
10821 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10822 local_define_builtin ("__cyg_profile_func_exit", ftype,
10823 BUILT_IN_PROFILE_FUNC_EXIT,
10824 "__cyg_profile_func_exit", 0);
10825 }
10826
10827 /* The exception object and filter values from the runtime. The argument
10828 must be zero before exception lowering, i.e. from the front end. After
10829 exception lowering, it will be the region number for the exception
10830 landing pad. These functions are PURE instead of CONST to prevent
10831 them from being hoisted past the exception edge that will initialize
10832 its value in the landing pad. */
10833 ftype = build_function_type_list (ptr_type_node,
10834 integer_type_node, NULL_TREE);
10835 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10836 /* Only use TM_PURE if we have TM language support. */
10837 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10838 ecf_flags |= ECF_TM_PURE;
10839 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10840 "__builtin_eh_pointer", ecf_flags);
10841
10842 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10843 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10844 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10845 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10846
10847 ftype = build_function_type_list (void_type_node,
10848 integer_type_node, integer_type_node,
10849 NULL_TREE);
10850 local_define_builtin ("__builtin_eh_copy_values", ftype,
10851 BUILT_IN_EH_COPY_VALUES,
10852 "__builtin_eh_copy_values", ECF_NOTHROW);
10853
10854 /* Complex multiplication and division. These are handled as builtins
10855 rather than optabs because emit_library_call_value doesn't support
10856 complex. Further, we can do slightly better with folding these
10857 beasties if the real and complex parts of the arguments are separate. */
10858 {
10859 int mode;
10860
10861 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10862 {
10863 char mode_name_buf[4], *q;
10864 const char *p;
10865 enum built_in_function mcode, dcode;
10866 tree type, inner_type;
10867 const char *prefix = "__";
10868
10869 if (targetm.libfunc_gnu_prefix)
10870 prefix = "__gnu_";
10871
10872 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10873 if (type == NULL)
10874 continue;
10875 inner_type = TREE_TYPE (type);
10876
10877 ftype = build_function_type_list (type, inner_type, inner_type,
10878 inner_type, inner_type, NULL_TREE);
10879
10880 mcode = ((enum built_in_function)
10881 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10882 dcode = ((enum built_in_function)
10883 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10884
10885 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10886 *q = TOLOWER (*p);
10887 *q = '\0';
10888
10889 /* For -ftrapping-math these should throw from a former
10890 -fnon-call-exception stmt. */
10891 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10892 NULL);
10893 local_define_builtin (built_in_names[mcode], ftype, mcode,
10894 built_in_names[mcode],
10895 ECF_CONST | ECF_LEAF);
10896
10897 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10898 NULL);
10899 local_define_builtin (built_in_names[dcode], ftype, dcode,
10900 built_in_names[dcode],
10901 ECF_CONST | ECF_LEAF);
10902 }
10903 }
10904
10905 init_internal_fns ();
10906 }
10907
10908 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10909 better way.
10910
10911 If we requested a pointer to a vector, build up the pointers that
10912 we stripped off while looking for the inner type. Similarly for
10913 return values from functions.
10914
10915 The argument TYPE is the top of the chain, and BOTTOM is the
10916 new type which we will point to. */
10917
10918 tree
10919 reconstruct_complex_type (tree type, tree bottom)
10920 {
10921 tree inner, outer;
10922
10923 if (TREE_CODE (type) == POINTER_TYPE)
10924 {
10925 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10926 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10927 TYPE_REF_CAN_ALIAS_ALL (type));
10928 }
10929 else if (TREE_CODE (type) == REFERENCE_TYPE)
10930 {
10931 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10932 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10933 TYPE_REF_CAN_ALIAS_ALL (type));
10934 }
10935 else if (TREE_CODE (type) == ARRAY_TYPE)
10936 {
10937 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10938 outer = build_array_type (inner, TYPE_DOMAIN (type));
10939 }
10940 else if (TREE_CODE (type) == FUNCTION_TYPE)
10941 {
10942 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10943 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10944 }
10945 else if (TREE_CODE (type) == METHOD_TYPE)
10946 {
10947 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10948 /* The build_method_type_directly() routine prepends 'this' to argument list,
10949 so we must compensate by getting rid of it. */
10950 outer
10951 = build_method_type_directly
10952 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10953 inner,
10954 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10955 }
10956 else if (TREE_CODE (type) == OFFSET_TYPE)
10957 {
10958 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10959 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10960 }
10961 else
10962 return bottom;
10963
10964 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10965 TYPE_QUALS (type));
10966 }
10967
10968 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10969 the inner type. */
10970 tree
10971 build_vector_type_for_mode (tree innertype, machine_mode mode)
10972 {
10973 poly_int64 nunits;
10974 unsigned int bitsize;
10975
10976 switch (GET_MODE_CLASS (mode))
10977 {
10978 case MODE_VECTOR_BOOL:
10979 case MODE_VECTOR_INT:
10980 case MODE_VECTOR_FLOAT:
10981 case MODE_VECTOR_FRACT:
10982 case MODE_VECTOR_UFRACT:
10983 case MODE_VECTOR_ACCUM:
10984 case MODE_VECTOR_UACCUM:
10985 nunits = GET_MODE_NUNITS (mode);
10986 break;
10987
10988 case MODE_INT:
10989 /* Check that there are no leftover bits. */
10990 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10991 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10992 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10993 break;
10994
10995 default:
10996 gcc_unreachable ();
10997 }
10998
10999 return make_vector_type (innertype, nunits, mode);
11000 }
11001
11002 /* Similarly, but takes the inner type and number of units, which must be
11003 a power of two. */
11004
11005 tree
11006 build_vector_type (tree innertype, poly_int64 nunits)
11007 {
11008 return make_vector_type (innertype, nunits, VOIDmode);
11009 }
11010
11011 /* Build a truth vector with NUNITS units, giving it mode MASK_MODE. */
11012
11013 tree
11014 build_truth_vector_type_for_mode (poly_uint64 nunits, machine_mode mask_mode)
11015 {
11016 gcc_assert (mask_mode != BLKmode);
11017
11018 unsigned HOST_WIDE_INT esize;
11019 if (VECTOR_MODE_P (mask_mode))
11020 {
11021 poly_uint64 vsize = GET_MODE_BITSIZE (mask_mode);
11022 esize = vector_element_size (vsize, nunits);
11023 }
11024 else
11025 esize = 1;
11026
11027 tree bool_type = build_nonstandard_boolean_type (esize);
11028
11029 return make_vector_type (bool_type, nunits, mask_mode);
11030 }
11031
11032 /* Build a vector type that holds one boolean result for each element of
11033 vector type VECTYPE. The public interface for this operation is
11034 truth_type_for. */
11035
11036 static tree
11037 build_truth_vector_type_for (tree vectype)
11038 {
11039 machine_mode vector_mode = TYPE_MODE (vectype);
11040 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype);
11041
11042 machine_mode mask_mode;
11043 if (VECTOR_MODE_P (vector_mode)
11044 && targetm.vectorize.get_mask_mode (vector_mode).exists (&mask_mode))
11045 return build_truth_vector_type_for_mode (nunits, mask_mode);
11046
11047 poly_uint64 vsize = tree_to_poly_uint64 (TYPE_SIZE (vectype));
11048 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
11049 tree bool_type = build_nonstandard_boolean_type (esize);
11050
11051 return make_vector_type (bool_type, nunits, VOIDmode);
11052 }
11053
11054 /* Like build_vector_type, but builds a variant type with TYPE_VECTOR_OPAQUE
11055 set. */
11056
11057 tree
11058 build_opaque_vector_type (tree innertype, poly_int64 nunits)
11059 {
11060 tree t = make_vector_type (innertype, nunits, VOIDmode);
11061 tree cand;
11062 /* We always build the non-opaque variant before the opaque one,
11063 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
11064 cand = TYPE_NEXT_VARIANT (t);
11065 if (cand
11066 && TYPE_VECTOR_OPAQUE (cand)
11067 && check_qualified_type (cand, t, TYPE_QUALS (t)))
11068 return cand;
11069 /* Othewise build a variant type and make sure to queue it after
11070 the non-opaque type. */
11071 cand = build_distinct_type_copy (t);
11072 TYPE_VECTOR_OPAQUE (cand) = true;
11073 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
11074 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
11075 TYPE_NEXT_VARIANT (t) = cand;
11076 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
11077 return cand;
11078 }
11079
11080 /* Return the value of element I of VECTOR_CST T as a wide_int. */
11081
11082 wide_int
11083 vector_cst_int_elt (const_tree t, unsigned int i)
11084 {
11085 /* First handle elements that are directly encoded. */
11086 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11087 if (i < encoded_nelts)
11088 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
11089
11090 /* Identify the pattern that contains element I and work out the index of
11091 the last encoded element for that pattern. */
11092 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11093 unsigned int pattern = i % npatterns;
11094 unsigned int count = i / npatterns;
11095 unsigned int final_i = encoded_nelts - npatterns + pattern;
11096
11097 /* If there are no steps, the final encoded value is the right one. */
11098 if (!VECTOR_CST_STEPPED_P (t))
11099 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
11100
11101 /* Otherwise work out the value from the last two encoded elements. */
11102 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
11103 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
11104 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
11105 return wi::to_wide (v2) + (count - 2) * diff;
11106 }
11107
11108 /* Return the value of element I of VECTOR_CST T. */
11109
11110 tree
11111 vector_cst_elt (const_tree t, unsigned int i)
11112 {
11113 /* First handle elements that are directly encoded. */
11114 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11115 if (i < encoded_nelts)
11116 return VECTOR_CST_ENCODED_ELT (t, i);
11117
11118 /* If there are no steps, the final encoded value is the right one. */
11119 if (!VECTOR_CST_STEPPED_P (t))
11120 {
11121 /* Identify the pattern that contains element I and work out the index of
11122 the last encoded element for that pattern. */
11123 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11124 unsigned int pattern = i % npatterns;
11125 unsigned int final_i = encoded_nelts - npatterns + pattern;
11126 return VECTOR_CST_ENCODED_ELT (t, final_i);
11127 }
11128
11129 /* Otherwise work out the value from the last two encoded elements. */
11130 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
11131 vector_cst_int_elt (t, i));
11132 }
11133
11134 /* Given an initializer INIT, return TRUE if INIT is zero or some
11135 aggregate of zeros. Otherwise return FALSE. If NONZERO is not
11136 null, set *NONZERO if and only if INIT is known not to be all
11137 zeros. The combination of return value of false and *NONZERO
11138 false implies that INIT may but need not be all zeros. Other
11139 combinations indicate definitive answers. */
11140
11141 bool
11142 initializer_zerop (const_tree init, bool *nonzero /* = NULL */)
11143 {
11144 bool dummy;
11145 if (!nonzero)
11146 nonzero = &dummy;
11147
11148 /* Conservatively clear NONZERO and set it only if INIT is definitely
11149 not all zero. */
11150 *nonzero = false;
11151
11152 STRIP_NOPS (init);
11153
11154 unsigned HOST_WIDE_INT off = 0;
11155
11156 switch (TREE_CODE (init))
11157 {
11158 case INTEGER_CST:
11159 if (integer_zerop (init))
11160 return true;
11161
11162 *nonzero = true;
11163 return false;
11164
11165 case REAL_CST:
11166 /* ??? Note that this is not correct for C4X float formats. There,
11167 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
11168 negative exponent. */
11169 if (real_zerop (init)
11170 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init)))
11171 return true;
11172
11173 *nonzero = true;
11174 return false;
11175
11176 case FIXED_CST:
11177 if (fixed_zerop (init))
11178 return true;
11179
11180 *nonzero = true;
11181 return false;
11182
11183 case COMPLEX_CST:
11184 if (integer_zerop (init)
11185 || (real_zerop (init)
11186 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
11187 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init)))))
11188 return true;
11189
11190 *nonzero = true;
11191 return false;
11192
11193 case VECTOR_CST:
11194 if (VECTOR_CST_NPATTERNS (init) == 1
11195 && VECTOR_CST_DUPLICATE_P (init)
11196 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)))
11197 return true;
11198
11199 *nonzero = true;
11200 return false;
11201
11202 case CONSTRUCTOR:
11203 {
11204 if (TREE_CLOBBER_P (init))
11205 return false;
11206
11207 unsigned HOST_WIDE_INT idx;
11208 tree elt;
11209
11210 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
11211 if (!initializer_zerop (elt, nonzero))
11212 return false;
11213
11214 return true;
11215 }
11216
11217 case MEM_REF:
11218 {
11219 tree arg = TREE_OPERAND (init, 0);
11220 if (TREE_CODE (arg) != ADDR_EXPR)
11221 return false;
11222 tree offset = TREE_OPERAND (init, 1);
11223 if (TREE_CODE (offset) != INTEGER_CST
11224 || !tree_fits_uhwi_p (offset))
11225 return false;
11226 off = tree_to_uhwi (offset);
11227 if (INT_MAX < off)
11228 return false;
11229 arg = TREE_OPERAND (arg, 0);
11230 if (TREE_CODE (arg) != STRING_CST)
11231 return false;
11232 init = arg;
11233 }
11234 /* Fall through. */
11235
11236 case STRING_CST:
11237 {
11238 gcc_assert (off <= INT_MAX);
11239
11240 int i = off;
11241 int n = TREE_STRING_LENGTH (init);
11242 if (n <= i)
11243 return false;
11244
11245 /* We need to loop through all elements to handle cases like
11246 "\0" and "\0foobar". */
11247 for (i = 0; i < n; ++i)
11248 if (TREE_STRING_POINTER (init)[i] != '\0')
11249 {
11250 *nonzero = true;
11251 return false;
11252 }
11253
11254 return true;
11255 }
11256
11257 default:
11258 return false;
11259 }
11260 }
11261
11262 /* Return true if EXPR is an initializer expression in which every element
11263 is a constant that is numerically equal to 0 or 1. The elements do not
11264 need to be equal to each other. */
11265
11266 bool
11267 initializer_each_zero_or_onep (const_tree expr)
11268 {
11269 STRIP_ANY_LOCATION_WRAPPER (expr);
11270
11271 switch (TREE_CODE (expr))
11272 {
11273 case INTEGER_CST:
11274 return integer_zerop (expr) || integer_onep (expr);
11275
11276 case REAL_CST:
11277 return real_zerop (expr) || real_onep (expr);
11278
11279 case VECTOR_CST:
11280 {
11281 unsigned HOST_WIDE_INT nelts = vector_cst_encoded_nelts (expr);
11282 if (VECTOR_CST_STEPPED_P (expr)
11283 && !TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr)).is_constant (&nelts))
11284 return false;
11285
11286 for (unsigned int i = 0; i < nelts; ++i)
11287 {
11288 tree elt = vector_cst_elt (expr, i);
11289 if (!initializer_each_zero_or_onep (elt))
11290 return false;
11291 }
11292
11293 return true;
11294 }
11295
11296 default:
11297 return false;
11298 }
11299 }
11300
11301 /* Check if vector VEC consists of all the equal elements and
11302 that the number of elements corresponds to the type of VEC.
11303 The function returns first element of the vector
11304 or NULL_TREE if the vector is not uniform. */
11305 tree
11306 uniform_vector_p (const_tree vec)
11307 {
11308 tree first, t;
11309 unsigned HOST_WIDE_INT i, nelts;
11310
11311 if (vec == NULL_TREE)
11312 return NULL_TREE;
11313
11314 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
11315
11316 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
11317 return TREE_OPERAND (vec, 0);
11318
11319 else if (TREE_CODE (vec) == VECTOR_CST)
11320 {
11321 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
11322 return VECTOR_CST_ENCODED_ELT (vec, 0);
11323 return NULL_TREE;
11324 }
11325
11326 else if (TREE_CODE (vec) == CONSTRUCTOR
11327 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
11328 {
11329 first = error_mark_node;
11330
11331 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
11332 {
11333 if (i == 0)
11334 {
11335 first = t;
11336 continue;
11337 }
11338 if (!operand_equal_p (first, t, 0))
11339 return NULL_TREE;
11340 }
11341 if (i != nelts)
11342 return NULL_TREE;
11343
11344 return first;
11345 }
11346
11347 return NULL_TREE;
11348 }
11349
11350 /* If the argument is INTEGER_CST, return it. If the argument is vector
11351 with all elements the same INTEGER_CST, return that INTEGER_CST. Otherwise
11352 return NULL_TREE.
11353 Look through location wrappers. */
11354
11355 tree
11356 uniform_integer_cst_p (tree t)
11357 {
11358 STRIP_ANY_LOCATION_WRAPPER (t);
11359
11360 if (TREE_CODE (t) == INTEGER_CST)
11361 return t;
11362
11363 if (VECTOR_TYPE_P (TREE_TYPE (t)))
11364 {
11365 t = uniform_vector_p (t);
11366 if (t && TREE_CODE (t) == INTEGER_CST)
11367 return t;
11368 }
11369
11370 return NULL_TREE;
11371 }
11372
11373 /* If VECTOR_CST T has a single nonzero element, return the index of that
11374 element, otherwise return -1. */
11375
11376 int
11377 single_nonzero_element (const_tree t)
11378 {
11379 unsigned HOST_WIDE_INT nelts;
11380 unsigned int repeat_nelts;
11381 if (VECTOR_CST_NELTS (t).is_constant (&nelts))
11382 repeat_nelts = nelts;
11383 else if (VECTOR_CST_NELTS_PER_PATTERN (t) == 2)
11384 {
11385 nelts = vector_cst_encoded_nelts (t);
11386 repeat_nelts = VECTOR_CST_NPATTERNS (t);
11387 }
11388 else
11389 return -1;
11390
11391 int res = -1;
11392 for (unsigned int i = 0; i < nelts; ++i)
11393 {
11394 tree elt = vector_cst_elt (t, i);
11395 if (!integer_zerop (elt) && !real_zerop (elt))
11396 {
11397 if (res >= 0 || i >= repeat_nelts)
11398 return -1;
11399 res = i;
11400 }
11401 }
11402 return res;
11403 }
11404
11405 /* Build an empty statement at location LOC. */
11406
11407 tree
11408 build_empty_stmt (location_t loc)
11409 {
11410 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
11411 SET_EXPR_LOCATION (t, loc);
11412 return t;
11413 }
11414
11415
11416 /* Build an OpenMP clause with code CODE. LOC is the location of the
11417 clause. */
11418
11419 tree
11420 build_omp_clause (location_t loc, enum omp_clause_code code)
11421 {
11422 tree t;
11423 int size, length;
11424
11425 length = omp_clause_num_ops[code];
11426 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
11427
11428 record_node_allocation_statistics (OMP_CLAUSE, size);
11429
11430 t = (tree) ggc_internal_alloc (size);
11431 memset (t, 0, size);
11432 TREE_SET_CODE (t, OMP_CLAUSE);
11433 OMP_CLAUSE_SET_CODE (t, code);
11434 OMP_CLAUSE_LOCATION (t) = loc;
11435
11436 return t;
11437 }
11438
11439 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
11440 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
11441 Except for the CODE and operand count field, other storage for the
11442 object is initialized to zeros. */
11443
11444 tree
11445 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
11446 {
11447 tree t;
11448 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
11449
11450 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
11451 gcc_assert (len >= 1);
11452
11453 record_node_allocation_statistics (code, length);
11454
11455 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
11456
11457 TREE_SET_CODE (t, code);
11458
11459 /* Can't use TREE_OPERAND to store the length because if checking is
11460 enabled, it will try to check the length before we store it. :-P */
11461 t->exp.operands[0] = build_int_cst (sizetype, len);
11462
11463 return t;
11464 }
11465
11466 /* Helper function for build_call_* functions; build a CALL_EXPR with
11467 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
11468 the argument slots. */
11469
11470 static tree
11471 build_call_1 (tree return_type, tree fn, int nargs)
11472 {
11473 tree t;
11474
11475 t = build_vl_exp (CALL_EXPR, nargs + 3);
11476 TREE_TYPE (t) = return_type;
11477 CALL_EXPR_FN (t) = fn;
11478 CALL_EXPR_STATIC_CHAIN (t) = NULL;
11479
11480 return t;
11481 }
11482
11483 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11484 FN and a null static chain slot. NARGS is the number of call arguments
11485 which are specified as "..." arguments. */
11486
11487 tree
11488 build_call_nary (tree return_type, tree fn, int nargs, ...)
11489 {
11490 tree ret;
11491 va_list args;
11492 va_start (args, nargs);
11493 ret = build_call_valist (return_type, fn, nargs, args);
11494 va_end (args);
11495 return ret;
11496 }
11497
11498 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11499 FN and a null static chain slot. NARGS is the number of call arguments
11500 which are specified as a va_list ARGS. */
11501
11502 tree
11503 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11504 {
11505 tree t;
11506 int i;
11507
11508 t = build_call_1 (return_type, fn, nargs);
11509 for (i = 0; i < nargs; i++)
11510 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11511 process_call_operands (t);
11512 return t;
11513 }
11514
11515 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11516 FN and a null static chain slot. NARGS is the number of call arguments
11517 which are specified as a tree array ARGS. */
11518
11519 tree
11520 build_call_array_loc (location_t loc, tree return_type, tree fn,
11521 int nargs, const tree *args)
11522 {
11523 tree t;
11524 int i;
11525
11526 t = build_call_1 (return_type, fn, nargs);
11527 for (i = 0; i < nargs; i++)
11528 CALL_EXPR_ARG (t, i) = args[i];
11529 process_call_operands (t);
11530 SET_EXPR_LOCATION (t, loc);
11531 return t;
11532 }
11533
11534 /* Like build_call_array, but takes a vec. */
11535
11536 tree
11537 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11538 {
11539 tree ret, t;
11540 unsigned int ix;
11541
11542 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11543 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11544 CALL_EXPR_ARG (ret, ix) = t;
11545 process_call_operands (ret);
11546 return ret;
11547 }
11548
11549 /* Conveniently construct a function call expression. FNDECL names the
11550 function to be called and N arguments are passed in the array
11551 ARGARRAY. */
11552
11553 tree
11554 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11555 {
11556 tree fntype = TREE_TYPE (fndecl);
11557 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11558
11559 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11560 }
11561
11562 /* Conveniently construct a function call expression. FNDECL names the
11563 function to be called and the arguments are passed in the vector
11564 VEC. */
11565
11566 tree
11567 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11568 {
11569 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11570 vec_safe_address (vec));
11571 }
11572
11573
11574 /* Conveniently construct a function call expression. FNDECL names the
11575 function to be called, N is the number of arguments, and the "..."
11576 parameters are the argument expressions. */
11577
11578 tree
11579 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11580 {
11581 va_list ap;
11582 tree *argarray = XALLOCAVEC (tree, n);
11583 int i;
11584
11585 va_start (ap, n);
11586 for (i = 0; i < n; i++)
11587 argarray[i] = va_arg (ap, tree);
11588 va_end (ap);
11589 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11590 }
11591
11592 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11593 varargs macros aren't supported by all bootstrap compilers. */
11594
11595 tree
11596 build_call_expr (tree fndecl, int n, ...)
11597 {
11598 va_list ap;
11599 tree *argarray = XALLOCAVEC (tree, n);
11600 int i;
11601
11602 va_start (ap, n);
11603 for (i = 0; i < n; i++)
11604 argarray[i] = va_arg (ap, tree);
11605 va_end (ap);
11606 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11607 }
11608
11609 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11610 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11611 It will get gimplified later into an ordinary internal function. */
11612
11613 tree
11614 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11615 tree type, int n, const tree *args)
11616 {
11617 tree t = build_call_1 (type, NULL_TREE, n);
11618 for (int i = 0; i < n; ++i)
11619 CALL_EXPR_ARG (t, i) = args[i];
11620 SET_EXPR_LOCATION (t, loc);
11621 CALL_EXPR_IFN (t) = ifn;
11622 process_call_operands (t);
11623 return t;
11624 }
11625
11626 /* Build internal call expression. This is just like CALL_EXPR, except
11627 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11628 internal function. */
11629
11630 tree
11631 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11632 tree type, int n, ...)
11633 {
11634 va_list ap;
11635 tree *argarray = XALLOCAVEC (tree, n);
11636 int i;
11637
11638 va_start (ap, n);
11639 for (i = 0; i < n; i++)
11640 argarray[i] = va_arg (ap, tree);
11641 va_end (ap);
11642 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11643 }
11644
11645 /* Return a function call to FN, if the target is guaranteed to support it,
11646 or null otherwise.
11647
11648 N is the number of arguments, passed in the "...", and TYPE is the
11649 type of the return value. */
11650
11651 tree
11652 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11653 int n, ...)
11654 {
11655 va_list ap;
11656 tree *argarray = XALLOCAVEC (tree, n);
11657 int i;
11658
11659 va_start (ap, n);
11660 for (i = 0; i < n; i++)
11661 argarray[i] = va_arg (ap, tree);
11662 va_end (ap);
11663 if (internal_fn_p (fn))
11664 {
11665 internal_fn ifn = as_internal_fn (fn);
11666 if (direct_internal_fn_p (ifn))
11667 {
11668 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11669 if (!direct_internal_fn_supported_p (ifn, types,
11670 OPTIMIZE_FOR_BOTH))
11671 return NULL_TREE;
11672 }
11673 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11674 }
11675 else
11676 {
11677 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11678 if (!fndecl)
11679 return NULL_TREE;
11680 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11681 }
11682 }
11683
11684 /* Return a function call to the appropriate builtin alloca variant.
11685
11686 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11687 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11688 bound for SIZE in case it is not a fixed value. */
11689
11690 tree
11691 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11692 {
11693 if (max_size >= 0)
11694 {
11695 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11696 return
11697 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11698 }
11699 else if (align > 0)
11700 {
11701 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11702 return build_call_expr (t, 2, size, size_int (align));
11703 }
11704 else
11705 {
11706 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11707 return build_call_expr (t, 1, size);
11708 }
11709 }
11710
11711 /* Create a new constant string literal of type ELTYPE[SIZE] (or LEN
11712 if SIZE == -1) and return a tree node representing char* pointer to
11713 it as an ADDR_EXPR (ARRAY_REF (ELTYPE, ...)). When STR is nonnull
11714 the STRING_CST value is the LEN bytes at STR (the representation
11715 of the string, which may be wide). Otherwise it's all zeros. */
11716
11717 tree
11718 build_string_literal (unsigned len, const char *str /* = NULL */,
11719 tree eltype /* = char_type_node */,
11720 unsigned HOST_WIDE_INT size /* = -1 */)
11721 {
11722 tree t = build_string (len, str);
11723 /* Set the maximum valid index based on the string length or SIZE. */
11724 unsigned HOST_WIDE_INT maxidx
11725 = (size == HOST_WIDE_INT_M1U ? len : size) - 1;
11726
11727 tree index = build_index_type (size_int (maxidx));
11728 eltype = build_type_variant (eltype, 1, 0);
11729 tree type = build_array_type (eltype, index);
11730 TREE_TYPE (t) = type;
11731 TREE_CONSTANT (t) = 1;
11732 TREE_READONLY (t) = 1;
11733 TREE_STATIC (t) = 1;
11734
11735 type = build_pointer_type (eltype);
11736 t = build1 (ADDR_EXPR, type,
11737 build4 (ARRAY_REF, eltype,
11738 t, integer_zero_node, NULL_TREE, NULL_TREE));
11739 return t;
11740 }
11741
11742
11743
11744 /* Return true if T (assumed to be a DECL) must be assigned a memory
11745 location. */
11746
11747 bool
11748 needs_to_live_in_memory (const_tree t)
11749 {
11750 return (TREE_ADDRESSABLE (t)
11751 || is_global_var (t)
11752 || (TREE_CODE (t) == RESULT_DECL
11753 && !DECL_BY_REFERENCE (t)
11754 && aggregate_value_p (t, current_function_decl)));
11755 }
11756
11757 /* Return value of a constant X and sign-extend it. */
11758
11759 HOST_WIDE_INT
11760 int_cst_value (const_tree x)
11761 {
11762 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11763 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11764
11765 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11766 gcc_assert (cst_and_fits_in_hwi (x));
11767
11768 if (bits < HOST_BITS_PER_WIDE_INT)
11769 {
11770 bool negative = ((val >> (bits - 1)) & 1) != 0;
11771 if (negative)
11772 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11773 else
11774 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11775 }
11776
11777 return val;
11778 }
11779
11780 /* If TYPE is an integral or pointer type, return an integer type with
11781 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11782 if TYPE is already an integer type of signedness UNSIGNEDP.
11783 If TYPE is a floating-point type, return an integer type with the same
11784 bitsize and with the signedness given by UNSIGNEDP; this is useful
11785 when doing bit-level operations on a floating-point value. */
11786
11787 tree
11788 signed_or_unsigned_type_for (int unsignedp, tree type)
11789 {
11790 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_UNSIGNED (type) == unsignedp)
11791 return type;
11792
11793 if (TREE_CODE (type) == VECTOR_TYPE)
11794 {
11795 tree inner = TREE_TYPE (type);
11796 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11797 if (!inner2)
11798 return NULL_TREE;
11799 if (inner == inner2)
11800 return type;
11801 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11802 }
11803
11804 if (TREE_CODE (type) == COMPLEX_TYPE)
11805 {
11806 tree inner = TREE_TYPE (type);
11807 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11808 if (!inner2)
11809 return NULL_TREE;
11810 if (inner == inner2)
11811 return type;
11812 return build_complex_type (inner2);
11813 }
11814
11815 unsigned int bits;
11816 if (INTEGRAL_TYPE_P (type)
11817 || POINTER_TYPE_P (type)
11818 || TREE_CODE (type) == OFFSET_TYPE)
11819 bits = TYPE_PRECISION (type);
11820 else if (TREE_CODE (type) == REAL_TYPE)
11821 bits = GET_MODE_BITSIZE (SCALAR_TYPE_MODE (type));
11822 else
11823 return NULL_TREE;
11824
11825 return build_nonstandard_integer_type (bits, unsignedp);
11826 }
11827
11828 /* If TYPE is an integral or pointer type, return an integer type with
11829 the same precision which is unsigned, or itself if TYPE is already an
11830 unsigned integer type. If TYPE is a floating-point type, return an
11831 unsigned integer type with the same bitsize as TYPE. */
11832
11833 tree
11834 unsigned_type_for (tree type)
11835 {
11836 return signed_or_unsigned_type_for (1, type);
11837 }
11838
11839 /* If TYPE is an integral or pointer type, return an integer type with
11840 the same precision which is signed, or itself if TYPE is already a
11841 signed integer type. If TYPE is a floating-point type, return a
11842 signed integer type with the same bitsize as TYPE. */
11843
11844 tree
11845 signed_type_for (tree type)
11846 {
11847 return signed_or_unsigned_type_for (0, type);
11848 }
11849
11850 /* If TYPE is a vector type, return a signed integer vector type with the
11851 same width and number of subparts. Otherwise return boolean_type_node. */
11852
11853 tree
11854 truth_type_for (tree type)
11855 {
11856 if (TREE_CODE (type) == VECTOR_TYPE)
11857 {
11858 if (VECTOR_BOOLEAN_TYPE_P (type))
11859 return type;
11860 return build_truth_vector_type_for (type);
11861 }
11862 else
11863 return boolean_type_node;
11864 }
11865
11866 /* Returns the largest value obtainable by casting something in INNER type to
11867 OUTER type. */
11868
11869 tree
11870 upper_bound_in_type (tree outer, tree inner)
11871 {
11872 unsigned int det = 0;
11873 unsigned oprec = TYPE_PRECISION (outer);
11874 unsigned iprec = TYPE_PRECISION (inner);
11875 unsigned prec;
11876
11877 /* Compute a unique number for every combination. */
11878 det |= (oprec > iprec) ? 4 : 0;
11879 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11880 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11881
11882 /* Determine the exponent to use. */
11883 switch (det)
11884 {
11885 case 0:
11886 case 1:
11887 /* oprec <= iprec, outer: signed, inner: don't care. */
11888 prec = oprec - 1;
11889 break;
11890 case 2:
11891 case 3:
11892 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11893 prec = oprec;
11894 break;
11895 case 4:
11896 /* oprec > iprec, outer: signed, inner: signed. */
11897 prec = iprec - 1;
11898 break;
11899 case 5:
11900 /* oprec > iprec, outer: signed, inner: unsigned. */
11901 prec = iprec;
11902 break;
11903 case 6:
11904 /* oprec > iprec, outer: unsigned, inner: signed. */
11905 prec = oprec;
11906 break;
11907 case 7:
11908 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11909 prec = iprec;
11910 break;
11911 default:
11912 gcc_unreachable ();
11913 }
11914
11915 return wide_int_to_tree (outer,
11916 wi::mask (prec, false, TYPE_PRECISION (outer)));
11917 }
11918
11919 /* Returns the smallest value obtainable by casting something in INNER type to
11920 OUTER type. */
11921
11922 tree
11923 lower_bound_in_type (tree outer, tree inner)
11924 {
11925 unsigned oprec = TYPE_PRECISION (outer);
11926 unsigned iprec = TYPE_PRECISION (inner);
11927
11928 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11929 and obtain 0. */
11930 if (TYPE_UNSIGNED (outer)
11931 /* If we are widening something of an unsigned type, OUTER type
11932 contains all values of INNER type. In particular, both INNER
11933 and OUTER types have zero in common. */
11934 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11935 return build_int_cst (outer, 0);
11936 else
11937 {
11938 /* If we are widening a signed type to another signed type, we
11939 want to obtain -2^^(iprec-1). If we are keeping the
11940 precision or narrowing to a signed type, we want to obtain
11941 -2^(oprec-1). */
11942 unsigned prec = oprec > iprec ? iprec : oprec;
11943 return wide_int_to_tree (outer,
11944 wi::mask (prec - 1, true,
11945 TYPE_PRECISION (outer)));
11946 }
11947 }
11948
11949 /* Return nonzero if two operands that are suitable for PHI nodes are
11950 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11951 SSA_NAME or invariant. Note that this is strictly an optimization.
11952 That is, callers of this function can directly call operand_equal_p
11953 and get the same result, only slower. */
11954
11955 int
11956 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11957 {
11958 if (arg0 == arg1)
11959 return 1;
11960 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11961 return 0;
11962 return operand_equal_p (arg0, arg1, 0);
11963 }
11964
11965 /* Returns number of zeros at the end of binary representation of X. */
11966
11967 tree
11968 num_ending_zeros (const_tree x)
11969 {
11970 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11971 }
11972
11973
11974 #define WALK_SUBTREE(NODE) \
11975 do \
11976 { \
11977 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11978 if (result) \
11979 return result; \
11980 } \
11981 while (0)
11982
11983 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11984 be walked whenever a type is seen in the tree. Rest of operands and return
11985 value are as for walk_tree. */
11986
11987 static tree
11988 walk_type_fields (tree type, walk_tree_fn func, void *data,
11989 hash_set<tree> *pset, walk_tree_lh lh)
11990 {
11991 tree result = NULL_TREE;
11992
11993 switch (TREE_CODE (type))
11994 {
11995 case POINTER_TYPE:
11996 case REFERENCE_TYPE:
11997 case VECTOR_TYPE:
11998 /* We have to worry about mutually recursive pointers. These can't
11999 be written in C. They can in Ada. It's pathological, but
12000 there's an ACATS test (c38102a) that checks it. Deal with this
12001 by checking if we're pointing to another pointer, that one
12002 points to another pointer, that one does too, and we have no htab.
12003 If so, get a hash table. We check three levels deep to avoid
12004 the cost of the hash table if we don't need one. */
12005 if (POINTER_TYPE_P (TREE_TYPE (type))
12006 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
12007 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
12008 && !pset)
12009 {
12010 result = walk_tree_without_duplicates (&TREE_TYPE (type),
12011 func, data);
12012 if (result)
12013 return result;
12014
12015 break;
12016 }
12017
12018 /* fall through */
12019
12020 case COMPLEX_TYPE:
12021 WALK_SUBTREE (TREE_TYPE (type));
12022 break;
12023
12024 case METHOD_TYPE:
12025 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
12026
12027 /* Fall through. */
12028
12029 case FUNCTION_TYPE:
12030 WALK_SUBTREE (TREE_TYPE (type));
12031 {
12032 tree arg;
12033
12034 /* We never want to walk into default arguments. */
12035 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
12036 WALK_SUBTREE (TREE_VALUE (arg));
12037 }
12038 break;
12039
12040 case ARRAY_TYPE:
12041 /* Don't follow this nodes's type if a pointer for fear that
12042 we'll have infinite recursion. If we have a PSET, then we
12043 need not fear. */
12044 if (pset
12045 || (!POINTER_TYPE_P (TREE_TYPE (type))
12046 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
12047 WALK_SUBTREE (TREE_TYPE (type));
12048 WALK_SUBTREE (TYPE_DOMAIN (type));
12049 break;
12050
12051 case OFFSET_TYPE:
12052 WALK_SUBTREE (TREE_TYPE (type));
12053 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
12054 break;
12055
12056 default:
12057 break;
12058 }
12059
12060 return NULL_TREE;
12061 }
12062
12063 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
12064 called with the DATA and the address of each sub-tree. If FUNC returns a
12065 non-NULL value, the traversal is stopped, and the value returned by FUNC
12066 is returned. If PSET is non-NULL it is used to record the nodes visited,
12067 and to avoid visiting a node more than once. */
12068
12069 tree
12070 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
12071 hash_set<tree> *pset, walk_tree_lh lh)
12072 {
12073 enum tree_code code;
12074 int walk_subtrees;
12075 tree result;
12076
12077 #define WALK_SUBTREE_TAIL(NODE) \
12078 do \
12079 { \
12080 tp = & (NODE); \
12081 goto tail_recurse; \
12082 } \
12083 while (0)
12084
12085 tail_recurse:
12086 /* Skip empty subtrees. */
12087 if (!*tp)
12088 return NULL_TREE;
12089
12090 /* Don't walk the same tree twice, if the user has requested
12091 that we avoid doing so. */
12092 if (pset && pset->add (*tp))
12093 return NULL_TREE;
12094
12095 /* Call the function. */
12096 walk_subtrees = 1;
12097 result = (*func) (tp, &walk_subtrees, data);
12098
12099 /* If we found something, return it. */
12100 if (result)
12101 return result;
12102
12103 code = TREE_CODE (*tp);
12104
12105 /* Even if we didn't, FUNC may have decided that there was nothing
12106 interesting below this point in the tree. */
12107 if (!walk_subtrees)
12108 {
12109 /* But we still need to check our siblings. */
12110 if (code == TREE_LIST)
12111 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12112 else if (code == OMP_CLAUSE)
12113 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12114 else
12115 return NULL_TREE;
12116 }
12117
12118 if (lh)
12119 {
12120 result = (*lh) (tp, &walk_subtrees, func, data, pset);
12121 if (result || !walk_subtrees)
12122 return result;
12123 }
12124
12125 switch (code)
12126 {
12127 case ERROR_MARK:
12128 case IDENTIFIER_NODE:
12129 case INTEGER_CST:
12130 case REAL_CST:
12131 case FIXED_CST:
12132 case VECTOR_CST:
12133 case STRING_CST:
12134 case BLOCK:
12135 case PLACEHOLDER_EXPR:
12136 case SSA_NAME:
12137 case FIELD_DECL:
12138 case RESULT_DECL:
12139 /* None of these have subtrees other than those already walked
12140 above. */
12141 break;
12142
12143 case TREE_LIST:
12144 WALK_SUBTREE (TREE_VALUE (*tp));
12145 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12146 break;
12147
12148 case TREE_VEC:
12149 {
12150 int len = TREE_VEC_LENGTH (*tp);
12151
12152 if (len == 0)
12153 break;
12154
12155 /* Walk all elements but the first. */
12156 while (--len)
12157 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
12158
12159 /* Now walk the first one as a tail call. */
12160 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
12161 }
12162
12163 case COMPLEX_CST:
12164 WALK_SUBTREE (TREE_REALPART (*tp));
12165 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
12166
12167 case CONSTRUCTOR:
12168 {
12169 unsigned HOST_WIDE_INT idx;
12170 constructor_elt *ce;
12171
12172 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
12173 idx++)
12174 WALK_SUBTREE (ce->value);
12175 }
12176 break;
12177
12178 case SAVE_EXPR:
12179 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
12180
12181 case BIND_EXPR:
12182 {
12183 tree decl;
12184 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
12185 {
12186 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
12187 into declarations that are just mentioned, rather than
12188 declared; they don't really belong to this part of the tree.
12189 And, we can see cycles: the initializer for a declaration
12190 can refer to the declaration itself. */
12191 WALK_SUBTREE (DECL_INITIAL (decl));
12192 WALK_SUBTREE (DECL_SIZE (decl));
12193 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
12194 }
12195 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
12196 }
12197
12198 case STATEMENT_LIST:
12199 {
12200 tree_stmt_iterator i;
12201 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
12202 WALK_SUBTREE (*tsi_stmt_ptr (i));
12203 }
12204 break;
12205
12206 case OMP_CLAUSE:
12207 switch (OMP_CLAUSE_CODE (*tp))
12208 {
12209 case OMP_CLAUSE_GANG:
12210 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12211 /* FALLTHRU */
12212
12213 case OMP_CLAUSE_ASYNC:
12214 case OMP_CLAUSE_WAIT:
12215 case OMP_CLAUSE_WORKER:
12216 case OMP_CLAUSE_VECTOR:
12217 case OMP_CLAUSE_NUM_GANGS:
12218 case OMP_CLAUSE_NUM_WORKERS:
12219 case OMP_CLAUSE_VECTOR_LENGTH:
12220 case OMP_CLAUSE_PRIVATE:
12221 case OMP_CLAUSE_SHARED:
12222 case OMP_CLAUSE_FIRSTPRIVATE:
12223 case OMP_CLAUSE_COPYIN:
12224 case OMP_CLAUSE_COPYPRIVATE:
12225 case OMP_CLAUSE_FINAL:
12226 case OMP_CLAUSE_IF:
12227 case OMP_CLAUSE_NUM_THREADS:
12228 case OMP_CLAUSE_SCHEDULE:
12229 case OMP_CLAUSE_UNIFORM:
12230 case OMP_CLAUSE_DEPEND:
12231 case OMP_CLAUSE_NONTEMPORAL:
12232 case OMP_CLAUSE_NUM_TEAMS:
12233 case OMP_CLAUSE_THREAD_LIMIT:
12234 case OMP_CLAUSE_DEVICE:
12235 case OMP_CLAUSE_DIST_SCHEDULE:
12236 case OMP_CLAUSE_SAFELEN:
12237 case OMP_CLAUSE_SIMDLEN:
12238 case OMP_CLAUSE_ORDERED:
12239 case OMP_CLAUSE_PRIORITY:
12240 case OMP_CLAUSE_GRAINSIZE:
12241 case OMP_CLAUSE_NUM_TASKS:
12242 case OMP_CLAUSE_HINT:
12243 case OMP_CLAUSE_TO_DECLARE:
12244 case OMP_CLAUSE_LINK:
12245 case OMP_CLAUSE_DETACH:
12246 case OMP_CLAUSE_USE_DEVICE_PTR:
12247 case OMP_CLAUSE_USE_DEVICE_ADDR:
12248 case OMP_CLAUSE_IS_DEVICE_PTR:
12249 case OMP_CLAUSE_INCLUSIVE:
12250 case OMP_CLAUSE_EXCLUSIVE:
12251 case OMP_CLAUSE__LOOPTEMP_:
12252 case OMP_CLAUSE__REDUCTEMP_:
12253 case OMP_CLAUSE__CONDTEMP_:
12254 case OMP_CLAUSE__SCANTEMP_:
12255 case OMP_CLAUSE__SIMDUID_:
12256 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
12257 /* FALLTHRU */
12258
12259 case OMP_CLAUSE_INDEPENDENT:
12260 case OMP_CLAUSE_NOWAIT:
12261 case OMP_CLAUSE_DEFAULT:
12262 case OMP_CLAUSE_UNTIED:
12263 case OMP_CLAUSE_MERGEABLE:
12264 case OMP_CLAUSE_PROC_BIND:
12265 case OMP_CLAUSE_DEVICE_TYPE:
12266 case OMP_CLAUSE_INBRANCH:
12267 case OMP_CLAUSE_NOTINBRANCH:
12268 case OMP_CLAUSE_FOR:
12269 case OMP_CLAUSE_PARALLEL:
12270 case OMP_CLAUSE_SECTIONS:
12271 case OMP_CLAUSE_TASKGROUP:
12272 case OMP_CLAUSE_NOGROUP:
12273 case OMP_CLAUSE_THREADS:
12274 case OMP_CLAUSE_SIMD:
12275 case OMP_CLAUSE_DEFAULTMAP:
12276 case OMP_CLAUSE_ORDER:
12277 case OMP_CLAUSE_BIND:
12278 case OMP_CLAUSE_AUTO:
12279 case OMP_CLAUSE_SEQ:
12280 case OMP_CLAUSE_TILE:
12281 case OMP_CLAUSE__SIMT_:
12282 case OMP_CLAUSE_IF_PRESENT:
12283 case OMP_CLAUSE_FINALIZE:
12284 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12285
12286 case OMP_CLAUSE_LASTPRIVATE:
12287 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12288 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
12289 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12290
12291 case OMP_CLAUSE_COLLAPSE:
12292 {
12293 int i;
12294 for (i = 0; i < 3; i++)
12295 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12296 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12297 }
12298
12299 case OMP_CLAUSE_LINEAR:
12300 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12301 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
12302 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
12303 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12304
12305 case OMP_CLAUSE_ALIGNED:
12306 case OMP_CLAUSE_ALLOCATE:
12307 case OMP_CLAUSE_FROM:
12308 case OMP_CLAUSE_TO:
12309 case OMP_CLAUSE_MAP:
12310 case OMP_CLAUSE__CACHE_:
12311 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12312 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12313 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12314
12315 case OMP_CLAUSE_REDUCTION:
12316 case OMP_CLAUSE_TASK_REDUCTION:
12317 case OMP_CLAUSE_IN_REDUCTION:
12318 {
12319 int i;
12320 for (i = 0; i < 5; i++)
12321 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12322 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12323 }
12324
12325 default:
12326 gcc_unreachable ();
12327 }
12328 break;
12329
12330 case TARGET_EXPR:
12331 {
12332 int i, len;
12333
12334 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
12335 But, we only want to walk once. */
12336 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
12337 for (i = 0; i < len; ++i)
12338 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12339 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
12340 }
12341
12342 case DECL_EXPR:
12343 /* If this is a TYPE_DECL, walk into the fields of the type that it's
12344 defining. We only want to walk into these fields of a type in this
12345 case and not in the general case of a mere reference to the type.
12346
12347 The criterion is as follows: if the field can be an expression, it
12348 must be walked only here. This should be in keeping with the fields
12349 that are directly gimplified in gimplify_type_sizes in order for the
12350 mark/copy-if-shared/unmark machinery of the gimplifier to work with
12351 variable-sized types.
12352
12353 Note that DECLs get walked as part of processing the BIND_EXPR. */
12354 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
12355 {
12356 /* Call the function for the decl so e.g. copy_tree_body_r can
12357 replace it with the remapped one. */
12358 result = (*func) (&DECL_EXPR_DECL (*tp), &walk_subtrees, data);
12359 if (result || !walk_subtrees)
12360 return result;
12361
12362 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
12363 if (TREE_CODE (*type_p) == ERROR_MARK)
12364 return NULL_TREE;
12365
12366 /* Call the function for the type. See if it returns anything or
12367 doesn't want us to continue. If we are to continue, walk both
12368 the normal fields and those for the declaration case. */
12369 result = (*func) (type_p, &walk_subtrees, data);
12370 if (result || !walk_subtrees)
12371 return result;
12372
12373 /* But do not walk a pointed-to type since it may itself need to
12374 be walked in the declaration case if it isn't anonymous. */
12375 if (!POINTER_TYPE_P (*type_p))
12376 {
12377 result = walk_type_fields (*type_p, func, data, pset, lh);
12378 if (result)
12379 return result;
12380 }
12381
12382 /* If this is a record type, also walk the fields. */
12383 if (RECORD_OR_UNION_TYPE_P (*type_p))
12384 {
12385 tree field;
12386
12387 for (field = TYPE_FIELDS (*type_p); field;
12388 field = DECL_CHAIN (field))
12389 {
12390 /* We'd like to look at the type of the field, but we can
12391 easily get infinite recursion. So assume it's pointed
12392 to elsewhere in the tree. Also, ignore things that
12393 aren't fields. */
12394 if (TREE_CODE (field) != FIELD_DECL)
12395 continue;
12396
12397 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
12398 WALK_SUBTREE (DECL_SIZE (field));
12399 WALK_SUBTREE (DECL_SIZE_UNIT (field));
12400 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
12401 WALK_SUBTREE (DECL_QUALIFIER (field));
12402 }
12403 }
12404
12405 /* Same for scalar types. */
12406 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
12407 || TREE_CODE (*type_p) == ENUMERAL_TYPE
12408 || TREE_CODE (*type_p) == INTEGER_TYPE
12409 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
12410 || TREE_CODE (*type_p) == REAL_TYPE)
12411 {
12412 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
12413 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
12414 }
12415
12416 WALK_SUBTREE (TYPE_SIZE (*type_p));
12417 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
12418 }
12419 /* FALLTHRU */
12420
12421 default:
12422 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
12423 {
12424 int i, len;
12425
12426 /* Walk over all the sub-trees of this operand. */
12427 len = TREE_OPERAND_LENGTH (*tp);
12428
12429 /* Go through the subtrees. We need to do this in forward order so
12430 that the scope of a FOR_EXPR is handled properly. */
12431 if (len)
12432 {
12433 for (i = 0; i < len - 1; ++i)
12434 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12435 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
12436 }
12437 }
12438 /* If this is a type, walk the needed fields in the type. */
12439 else if (TYPE_P (*tp))
12440 return walk_type_fields (*tp, func, data, pset, lh);
12441 break;
12442 }
12443
12444 /* We didn't find what we were looking for. */
12445 return NULL_TREE;
12446
12447 #undef WALK_SUBTREE_TAIL
12448 }
12449 #undef WALK_SUBTREE
12450
12451 /* Like walk_tree, but does not walk duplicate nodes more than once. */
12452
12453 tree
12454 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
12455 walk_tree_lh lh)
12456 {
12457 tree result;
12458
12459 hash_set<tree> pset;
12460 result = walk_tree_1 (tp, func, data, &pset, lh);
12461 return result;
12462 }
12463
12464
12465 tree
12466 tree_block (tree t)
12467 {
12468 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12469
12470 if (IS_EXPR_CODE_CLASS (c))
12471 return LOCATION_BLOCK (t->exp.locus);
12472 gcc_unreachable ();
12473 return NULL;
12474 }
12475
12476 void
12477 tree_set_block (tree t, tree b)
12478 {
12479 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12480
12481 if (IS_EXPR_CODE_CLASS (c))
12482 {
12483 t->exp.locus = set_block (t->exp.locus, b);
12484 }
12485 else
12486 gcc_unreachable ();
12487 }
12488
12489 /* Create a nameless artificial label and put it in the current
12490 function context. The label has a location of LOC. Returns the
12491 newly created label. */
12492
12493 tree
12494 create_artificial_label (location_t loc)
12495 {
12496 tree lab = build_decl (loc,
12497 LABEL_DECL, NULL_TREE, void_type_node);
12498
12499 DECL_ARTIFICIAL (lab) = 1;
12500 DECL_IGNORED_P (lab) = 1;
12501 DECL_CONTEXT (lab) = current_function_decl;
12502 return lab;
12503 }
12504
12505 /* Given a tree, try to return a useful variable name that we can use
12506 to prefix a temporary that is being assigned the value of the tree.
12507 I.E. given <temp> = &A, return A. */
12508
12509 const char *
12510 get_name (tree t)
12511 {
12512 tree stripped_decl;
12513
12514 stripped_decl = t;
12515 STRIP_NOPS (stripped_decl);
12516 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
12517 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
12518 else if (TREE_CODE (stripped_decl) == SSA_NAME)
12519 {
12520 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
12521 if (!name)
12522 return NULL;
12523 return IDENTIFIER_POINTER (name);
12524 }
12525 else
12526 {
12527 switch (TREE_CODE (stripped_decl))
12528 {
12529 case ADDR_EXPR:
12530 return get_name (TREE_OPERAND (stripped_decl, 0));
12531 default:
12532 return NULL;
12533 }
12534 }
12535 }
12536
12537 /* Return true if TYPE has a variable argument list. */
12538
12539 bool
12540 stdarg_p (const_tree fntype)
12541 {
12542 function_args_iterator args_iter;
12543 tree n = NULL_TREE, t;
12544
12545 if (!fntype)
12546 return false;
12547
12548 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
12549 {
12550 n = t;
12551 }
12552
12553 return n != NULL_TREE && n != void_type_node;
12554 }
12555
12556 /* Return true if TYPE has a prototype. */
12557
12558 bool
12559 prototype_p (const_tree fntype)
12560 {
12561 tree t;
12562
12563 gcc_assert (fntype != NULL_TREE);
12564
12565 t = TYPE_ARG_TYPES (fntype);
12566 return (t != NULL_TREE);
12567 }
12568
12569 /* If BLOCK is inlined from an __attribute__((__artificial__))
12570 routine, return pointer to location from where it has been
12571 called. */
12572 location_t *
12573 block_nonartificial_location (tree block)
12574 {
12575 location_t *ret = NULL;
12576
12577 while (block && TREE_CODE (block) == BLOCK
12578 && BLOCK_ABSTRACT_ORIGIN (block))
12579 {
12580 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12581 if (TREE_CODE (ao) == FUNCTION_DECL)
12582 {
12583 /* If AO is an artificial inline, point RET to the
12584 call site locus at which it has been inlined and continue
12585 the loop, in case AO's caller is also an artificial
12586 inline. */
12587 if (DECL_DECLARED_INLINE_P (ao)
12588 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12589 ret = &BLOCK_SOURCE_LOCATION (block);
12590 else
12591 break;
12592 }
12593 else if (TREE_CODE (ao) != BLOCK)
12594 break;
12595
12596 block = BLOCK_SUPERCONTEXT (block);
12597 }
12598 return ret;
12599 }
12600
12601
12602 /* If EXP is inlined from an __attribute__((__artificial__))
12603 function, return the location of the original call expression. */
12604
12605 location_t
12606 tree_nonartificial_location (tree exp)
12607 {
12608 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12609
12610 if (loc)
12611 return *loc;
12612 else
12613 return EXPR_LOCATION (exp);
12614 }
12615
12616 /* Return the location into which EXP has been inlined. Analogous
12617 to tree_nonartificial_location() above but not limited to artificial
12618 functions declared inline. If SYSTEM_HEADER is true, return
12619 the macro expansion point of the location if it's in a system header */
12620
12621 location_t
12622 tree_inlined_location (tree exp, bool system_header /* = true */)
12623 {
12624 location_t loc = UNKNOWN_LOCATION;
12625
12626 tree block = TREE_BLOCK (exp);
12627
12628 while (block && TREE_CODE (block) == BLOCK
12629 && BLOCK_ABSTRACT_ORIGIN (block))
12630 {
12631 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12632 if (TREE_CODE (ao) == FUNCTION_DECL)
12633 loc = BLOCK_SOURCE_LOCATION (block);
12634 else if (TREE_CODE (ao) != BLOCK)
12635 break;
12636
12637 block = BLOCK_SUPERCONTEXT (block);
12638 }
12639
12640 if (loc == UNKNOWN_LOCATION)
12641 {
12642 loc = EXPR_LOCATION (exp);
12643 if (system_header)
12644 /* Only consider macro expansion when the block traversal failed
12645 to find a location. Otherwise it's not relevant. */
12646 return expansion_point_location_if_in_system_header (loc);
12647 }
12648
12649 return loc;
12650 }
12651
12652 /* These are the hash table functions for the hash table of OPTIMIZATION_NODE
12653 nodes. */
12654
12655 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12656
12657 hashval_t
12658 cl_option_hasher::hash (tree x)
12659 {
12660 const_tree const t = x;
12661 const char *p;
12662 size_t i;
12663 size_t len = 0;
12664 hashval_t hash = 0;
12665
12666 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12667 {
12668 p = (const char *)TREE_OPTIMIZATION (t);
12669 len = sizeof (struct cl_optimization);
12670 }
12671
12672 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12673 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12674
12675 else
12676 gcc_unreachable ();
12677
12678 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12679 something else. */
12680 for (i = 0; i < len; i++)
12681 if (p[i])
12682 hash = (hash << 4) ^ ((i << 2) | p[i]);
12683
12684 return hash;
12685 }
12686
12687 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12688 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12689 same. */
12690
12691 bool
12692 cl_option_hasher::equal (tree x, tree y)
12693 {
12694 const_tree const xt = x;
12695 const_tree const yt = y;
12696
12697 if (TREE_CODE (xt) != TREE_CODE (yt))
12698 return 0;
12699
12700 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12701 return cl_optimization_option_eq (TREE_OPTIMIZATION (xt),
12702 TREE_OPTIMIZATION (yt));
12703 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12704 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12705 TREE_TARGET_OPTION (yt));
12706 else
12707 gcc_unreachable ();
12708 }
12709
12710 /* Build an OPTIMIZATION_NODE based on the options in OPTS and OPTS_SET. */
12711
12712 tree
12713 build_optimization_node (struct gcc_options *opts,
12714 struct gcc_options *opts_set)
12715 {
12716 tree t;
12717
12718 /* Use the cache of optimization nodes. */
12719
12720 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12721 opts, opts_set);
12722
12723 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12724 t = *slot;
12725 if (!t)
12726 {
12727 /* Insert this one into the hash table. */
12728 t = cl_optimization_node;
12729 *slot = t;
12730
12731 /* Make a new node for next time round. */
12732 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12733 }
12734
12735 return t;
12736 }
12737
12738 /* Build a TARGET_OPTION_NODE based on the options in OPTS and OPTS_SET. */
12739
12740 tree
12741 build_target_option_node (struct gcc_options *opts,
12742 struct gcc_options *opts_set)
12743 {
12744 tree t;
12745
12746 /* Use the cache of optimization nodes. */
12747
12748 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12749 opts, opts_set);
12750
12751 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12752 t = *slot;
12753 if (!t)
12754 {
12755 /* Insert this one into the hash table. */
12756 t = cl_target_option_node;
12757 *slot = t;
12758
12759 /* Make a new node for next time round. */
12760 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12761 }
12762
12763 return t;
12764 }
12765
12766 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12767 so that they aren't saved during PCH writing. */
12768
12769 void
12770 prepare_target_option_nodes_for_pch (void)
12771 {
12772 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12773 for (; iter != cl_option_hash_table->end (); ++iter)
12774 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12775 TREE_TARGET_GLOBALS (*iter) = NULL;
12776 }
12777
12778 /* Determine the "ultimate origin" of a block. */
12779
12780 tree
12781 block_ultimate_origin (const_tree block)
12782 {
12783 tree origin = BLOCK_ABSTRACT_ORIGIN (block);
12784
12785 if (origin == NULL_TREE)
12786 return NULL_TREE;
12787 else
12788 {
12789 gcc_checking_assert ((DECL_P (origin)
12790 && DECL_ORIGIN (origin) == origin)
12791 || BLOCK_ORIGIN (origin) == origin);
12792 return origin;
12793 }
12794 }
12795
12796 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12797 no instruction. */
12798
12799 bool
12800 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12801 {
12802 /* Do not strip casts into or out of differing address spaces. */
12803 if (POINTER_TYPE_P (outer_type)
12804 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12805 {
12806 if (!POINTER_TYPE_P (inner_type)
12807 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12808 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12809 return false;
12810 }
12811 else if (POINTER_TYPE_P (inner_type)
12812 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12813 {
12814 /* We already know that outer_type is not a pointer with
12815 a non-generic address space. */
12816 return false;
12817 }
12818
12819 /* Use precision rather then machine mode when we can, which gives
12820 the correct answer even for submode (bit-field) types. */
12821 if ((INTEGRAL_TYPE_P (outer_type)
12822 || POINTER_TYPE_P (outer_type)
12823 || TREE_CODE (outer_type) == OFFSET_TYPE)
12824 && (INTEGRAL_TYPE_P (inner_type)
12825 || POINTER_TYPE_P (inner_type)
12826 || TREE_CODE (inner_type) == OFFSET_TYPE))
12827 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12828
12829 /* Otherwise fall back on comparing machine modes (e.g. for
12830 aggregate types, floats). */
12831 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12832 }
12833
12834 /* Return true iff conversion in EXP generates no instruction. Mark
12835 it inline so that we fully inline into the stripping functions even
12836 though we have two uses of this function. */
12837
12838 static inline bool
12839 tree_nop_conversion (const_tree exp)
12840 {
12841 tree outer_type, inner_type;
12842
12843 if (location_wrapper_p (exp))
12844 return true;
12845 if (!CONVERT_EXPR_P (exp)
12846 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12847 return false;
12848
12849 outer_type = TREE_TYPE (exp);
12850 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12851 if (!inner_type || inner_type == error_mark_node)
12852 return false;
12853
12854 return tree_nop_conversion_p (outer_type, inner_type);
12855 }
12856
12857 /* Return true iff conversion in EXP generates no instruction. Don't
12858 consider conversions changing the signedness. */
12859
12860 static bool
12861 tree_sign_nop_conversion (const_tree exp)
12862 {
12863 tree outer_type, inner_type;
12864
12865 if (!tree_nop_conversion (exp))
12866 return false;
12867
12868 outer_type = TREE_TYPE (exp);
12869 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12870
12871 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12872 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12873 }
12874
12875 /* Strip conversions from EXP according to tree_nop_conversion and
12876 return the resulting expression. */
12877
12878 tree
12879 tree_strip_nop_conversions (tree exp)
12880 {
12881 while (tree_nop_conversion (exp))
12882 exp = TREE_OPERAND (exp, 0);
12883 return exp;
12884 }
12885
12886 /* Strip conversions from EXP according to tree_sign_nop_conversion
12887 and return the resulting expression. */
12888
12889 tree
12890 tree_strip_sign_nop_conversions (tree exp)
12891 {
12892 while (tree_sign_nop_conversion (exp))
12893 exp = TREE_OPERAND (exp, 0);
12894 return exp;
12895 }
12896
12897 /* Avoid any floating point extensions from EXP. */
12898 tree
12899 strip_float_extensions (tree exp)
12900 {
12901 tree sub, expt, subt;
12902
12903 /* For floating point constant look up the narrowest type that can hold
12904 it properly and handle it like (type)(narrowest_type)constant.
12905 This way we can optimize for instance a=a*2.0 where "a" is float
12906 but 2.0 is double constant. */
12907 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12908 {
12909 REAL_VALUE_TYPE orig;
12910 tree type = NULL;
12911
12912 orig = TREE_REAL_CST (exp);
12913 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12914 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12915 type = float_type_node;
12916 else if (TYPE_PRECISION (TREE_TYPE (exp))
12917 > TYPE_PRECISION (double_type_node)
12918 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12919 type = double_type_node;
12920 if (type)
12921 return build_real_truncate (type, orig);
12922 }
12923
12924 if (!CONVERT_EXPR_P (exp))
12925 return exp;
12926
12927 sub = TREE_OPERAND (exp, 0);
12928 subt = TREE_TYPE (sub);
12929 expt = TREE_TYPE (exp);
12930
12931 if (!FLOAT_TYPE_P (subt))
12932 return exp;
12933
12934 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12935 return exp;
12936
12937 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12938 return exp;
12939
12940 return strip_float_extensions (sub);
12941 }
12942
12943 /* Strip out all handled components that produce invariant
12944 offsets. */
12945
12946 const_tree
12947 strip_invariant_refs (const_tree op)
12948 {
12949 while (handled_component_p (op))
12950 {
12951 switch (TREE_CODE (op))
12952 {
12953 case ARRAY_REF:
12954 case ARRAY_RANGE_REF:
12955 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12956 || TREE_OPERAND (op, 2) != NULL_TREE
12957 || TREE_OPERAND (op, 3) != NULL_TREE)
12958 return NULL;
12959 break;
12960
12961 case COMPONENT_REF:
12962 if (TREE_OPERAND (op, 2) != NULL_TREE)
12963 return NULL;
12964 break;
12965
12966 default:;
12967 }
12968 op = TREE_OPERAND (op, 0);
12969 }
12970
12971 return op;
12972 }
12973
12974 static GTY(()) tree gcc_eh_personality_decl;
12975
12976 /* Return the GCC personality function decl. */
12977
12978 tree
12979 lhd_gcc_personality (void)
12980 {
12981 if (!gcc_eh_personality_decl)
12982 gcc_eh_personality_decl = build_personality_function ("gcc");
12983 return gcc_eh_personality_decl;
12984 }
12985
12986 /* TARGET is a call target of GIMPLE call statement
12987 (obtained by gimple_call_fn). Return true if it is
12988 OBJ_TYPE_REF representing an virtual call of C++ method.
12989 (As opposed to OBJ_TYPE_REF representing objc calls
12990 through a cast where middle-end devirtualization machinery
12991 can't apply.) FOR_DUMP_P is true when being called from
12992 the dump routines. */
12993
12994 bool
12995 virtual_method_call_p (const_tree target, bool for_dump_p)
12996 {
12997 if (TREE_CODE (target) != OBJ_TYPE_REF)
12998 return false;
12999 tree t = TREE_TYPE (target);
13000 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
13001 t = TREE_TYPE (t);
13002 if (TREE_CODE (t) == FUNCTION_TYPE)
13003 return false;
13004 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
13005 /* If we do not have BINFO associated, it means that type was built
13006 without devirtualization enabled. Do not consider this a virtual
13007 call. */
13008 if (!TYPE_BINFO (obj_type_ref_class (target, for_dump_p)))
13009 return false;
13010 return true;
13011 }
13012
13013 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
13014
13015 static tree
13016 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
13017 {
13018 unsigned int i;
13019 tree base_binfo, b;
13020
13021 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13022 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
13023 && types_same_for_odr (TREE_TYPE (base_binfo), type))
13024 return base_binfo;
13025 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
13026 return b;
13027 return NULL;
13028 }
13029
13030 /* Try to find a base info of BINFO that would have its field decl at offset
13031 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
13032 found, return, otherwise return NULL_TREE. */
13033
13034 tree
13035 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
13036 {
13037 tree type = BINFO_TYPE (binfo);
13038
13039 while (true)
13040 {
13041 HOST_WIDE_INT pos, size;
13042 tree fld;
13043 int i;
13044
13045 if (types_same_for_odr (type, expected_type))
13046 return binfo;
13047 if (maybe_lt (offset, 0))
13048 return NULL_TREE;
13049
13050 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
13051 {
13052 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
13053 continue;
13054
13055 pos = int_bit_position (fld);
13056 size = tree_to_uhwi (DECL_SIZE (fld));
13057 if (known_in_range_p (offset, pos, size))
13058 break;
13059 }
13060 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
13061 return NULL_TREE;
13062
13063 /* Offset 0 indicates the primary base, whose vtable contents are
13064 represented in the binfo for the derived class. */
13065 else if (maybe_ne (offset, 0))
13066 {
13067 tree found_binfo = NULL, base_binfo;
13068 /* Offsets in BINFO are in bytes relative to the whole structure
13069 while POS is in bits relative to the containing field. */
13070 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
13071 / BITS_PER_UNIT);
13072
13073 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13074 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
13075 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
13076 {
13077 found_binfo = base_binfo;
13078 break;
13079 }
13080 if (found_binfo)
13081 binfo = found_binfo;
13082 else
13083 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
13084 binfo_offset);
13085 }
13086
13087 type = TREE_TYPE (fld);
13088 offset -= pos;
13089 }
13090 }
13091
13092 /* Returns true if X is a typedef decl. */
13093
13094 bool
13095 is_typedef_decl (const_tree x)
13096 {
13097 return (x && TREE_CODE (x) == TYPE_DECL
13098 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
13099 }
13100
13101 /* Returns true iff TYPE is a type variant created for a typedef. */
13102
13103 bool
13104 typedef_variant_p (const_tree type)
13105 {
13106 return is_typedef_decl (TYPE_NAME (type));
13107 }
13108
13109 /* PR 84195: Replace control characters in "unescaped" with their
13110 escaped equivalents. Allow newlines if -fmessage-length has
13111 been set to a non-zero value. This is done here, rather than
13112 where the attribute is recorded as the message length can
13113 change between these two locations. */
13114
13115 void
13116 escaped_string::escape (const char *unescaped)
13117 {
13118 char *escaped;
13119 size_t i, new_i, len;
13120
13121 if (m_owned)
13122 free (m_str);
13123
13124 m_str = const_cast<char *> (unescaped);
13125 m_owned = false;
13126
13127 if (unescaped == NULL || *unescaped == 0)
13128 return;
13129
13130 len = strlen (unescaped);
13131 escaped = NULL;
13132 new_i = 0;
13133
13134 for (i = 0; i < len; i++)
13135 {
13136 char c = unescaped[i];
13137
13138 if (!ISCNTRL (c))
13139 {
13140 if (escaped)
13141 escaped[new_i++] = c;
13142 continue;
13143 }
13144
13145 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
13146 {
13147 if (escaped == NULL)
13148 {
13149 /* We only allocate space for a new string if we
13150 actually encounter a control character that
13151 needs replacing. */
13152 escaped = (char *) xmalloc (len * 2 + 1);
13153 strncpy (escaped, unescaped, i);
13154 new_i = i;
13155 }
13156
13157 escaped[new_i++] = '\\';
13158
13159 switch (c)
13160 {
13161 case '\a': escaped[new_i++] = 'a'; break;
13162 case '\b': escaped[new_i++] = 'b'; break;
13163 case '\f': escaped[new_i++] = 'f'; break;
13164 case '\n': escaped[new_i++] = 'n'; break;
13165 case '\r': escaped[new_i++] = 'r'; break;
13166 case '\t': escaped[new_i++] = 't'; break;
13167 case '\v': escaped[new_i++] = 'v'; break;
13168 default: escaped[new_i++] = '?'; break;
13169 }
13170 }
13171 else if (escaped)
13172 escaped[new_i++] = c;
13173 }
13174
13175 if (escaped)
13176 {
13177 escaped[new_i] = 0;
13178 m_str = escaped;
13179 m_owned = true;
13180 }
13181 }
13182
13183 /* Warn about a use of an identifier which was marked deprecated. Returns
13184 whether a warning was given. */
13185
13186 bool
13187 warn_deprecated_use (tree node, tree attr)
13188 {
13189 escaped_string msg;
13190
13191 if (node == 0 || !warn_deprecated_decl)
13192 return false;
13193
13194 if (!attr)
13195 {
13196 if (DECL_P (node))
13197 attr = DECL_ATTRIBUTES (node);
13198 else if (TYPE_P (node))
13199 {
13200 tree decl = TYPE_STUB_DECL (node);
13201 if (decl)
13202 attr = lookup_attribute ("deprecated",
13203 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
13204 }
13205 }
13206
13207 if (attr)
13208 attr = lookup_attribute ("deprecated", attr);
13209
13210 if (attr)
13211 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
13212
13213 bool w = false;
13214 if (DECL_P (node))
13215 {
13216 auto_diagnostic_group d;
13217 if (msg)
13218 w = warning (OPT_Wdeprecated_declarations,
13219 "%qD is deprecated: %s", node, (const char *) msg);
13220 else
13221 w = warning (OPT_Wdeprecated_declarations,
13222 "%qD is deprecated", node);
13223 if (w)
13224 inform (DECL_SOURCE_LOCATION (node), "declared here");
13225 }
13226 else if (TYPE_P (node))
13227 {
13228 tree what = NULL_TREE;
13229 tree decl = TYPE_STUB_DECL (node);
13230
13231 if (TYPE_NAME (node))
13232 {
13233 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
13234 what = TYPE_NAME (node);
13235 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
13236 && DECL_NAME (TYPE_NAME (node)))
13237 what = DECL_NAME (TYPE_NAME (node));
13238 }
13239
13240 auto_diagnostic_group d;
13241 if (what)
13242 {
13243 if (msg)
13244 w = warning (OPT_Wdeprecated_declarations,
13245 "%qE is deprecated: %s", what, (const char *) msg);
13246 else
13247 w = warning (OPT_Wdeprecated_declarations,
13248 "%qE is deprecated", what);
13249 }
13250 else
13251 {
13252 if (msg)
13253 w = warning (OPT_Wdeprecated_declarations,
13254 "type is deprecated: %s", (const char *) msg);
13255 else
13256 w = warning (OPT_Wdeprecated_declarations,
13257 "type is deprecated");
13258 }
13259
13260 if (w && decl)
13261 inform (DECL_SOURCE_LOCATION (decl), "declared here");
13262 }
13263
13264 return w;
13265 }
13266
13267 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
13268 somewhere in it. */
13269
13270 bool
13271 contains_bitfld_component_ref_p (const_tree ref)
13272 {
13273 while (handled_component_p (ref))
13274 {
13275 if (TREE_CODE (ref) == COMPONENT_REF
13276 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
13277 return true;
13278 ref = TREE_OPERAND (ref, 0);
13279 }
13280
13281 return false;
13282 }
13283
13284 /* Try to determine whether a TRY_CATCH expression can fall through.
13285 This is a subroutine of block_may_fallthru. */
13286
13287 static bool
13288 try_catch_may_fallthru (const_tree stmt)
13289 {
13290 tree_stmt_iterator i;
13291
13292 /* If the TRY block can fall through, the whole TRY_CATCH can
13293 fall through. */
13294 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
13295 return true;
13296
13297 i = tsi_start (TREE_OPERAND (stmt, 1));
13298 switch (TREE_CODE (tsi_stmt (i)))
13299 {
13300 case CATCH_EXPR:
13301 /* We expect to see a sequence of CATCH_EXPR trees, each with a
13302 catch expression and a body. The whole TRY_CATCH may fall
13303 through iff any of the catch bodies falls through. */
13304 for (; !tsi_end_p (i); tsi_next (&i))
13305 {
13306 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
13307 return true;
13308 }
13309 return false;
13310
13311 case EH_FILTER_EXPR:
13312 /* The exception filter expression only matters if there is an
13313 exception. If the exception does not match EH_FILTER_TYPES,
13314 we will execute EH_FILTER_FAILURE, and we will fall through
13315 if that falls through. If the exception does match
13316 EH_FILTER_TYPES, the stack unwinder will continue up the
13317 stack, so we will not fall through. We don't know whether we
13318 will throw an exception which matches EH_FILTER_TYPES or not,
13319 so we just ignore EH_FILTER_TYPES and assume that we might
13320 throw an exception which doesn't match. */
13321 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
13322
13323 default:
13324 /* This case represents statements to be executed when an
13325 exception occurs. Those statements are implicitly followed
13326 by a RESX statement to resume execution after the exception.
13327 So in this case the TRY_CATCH never falls through. */
13328 return false;
13329 }
13330 }
13331
13332 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
13333 need not be 100% accurate; simply be conservative and return true if we
13334 don't know. This is used only to avoid stupidly generating extra code.
13335 If we're wrong, we'll just delete the extra code later. */
13336
13337 bool
13338 block_may_fallthru (const_tree block)
13339 {
13340 /* This CONST_CAST is okay because expr_last returns its argument
13341 unmodified and we assign it to a const_tree. */
13342 const_tree stmt = expr_last (CONST_CAST_TREE (block));
13343
13344 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
13345 {
13346 case GOTO_EXPR:
13347 case RETURN_EXPR:
13348 /* Easy cases. If the last statement of the block implies
13349 control transfer, then we can't fall through. */
13350 return false;
13351
13352 case SWITCH_EXPR:
13353 /* If there is a default: label or case labels cover all possible
13354 SWITCH_COND values, then the SWITCH_EXPR will transfer control
13355 to some case label in all cases and all we care is whether the
13356 SWITCH_BODY falls through. */
13357 if (SWITCH_ALL_CASES_P (stmt))
13358 return block_may_fallthru (SWITCH_BODY (stmt));
13359 return true;
13360
13361 case COND_EXPR:
13362 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
13363 return true;
13364 return block_may_fallthru (COND_EXPR_ELSE (stmt));
13365
13366 case BIND_EXPR:
13367 return block_may_fallthru (BIND_EXPR_BODY (stmt));
13368
13369 case TRY_CATCH_EXPR:
13370 return try_catch_may_fallthru (stmt);
13371
13372 case TRY_FINALLY_EXPR:
13373 /* The finally clause is always executed after the try clause,
13374 so if it does not fall through, then the try-finally will not
13375 fall through. Otherwise, if the try clause does not fall
13376 through, then when the finally clause falls through it will
13377 resume execution wherever the try clause was going. So the
13378 whole try-finally will only fall through if both the try
13379 clause and the finally clause fall through. */
13380 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
13381 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
13382
13383 case EH_ELSE_EXPR:
13384 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13385
13386 case MODIFY_EXPR:
13387 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
13388 stmt = TREE_OPERAND (stmt, 1);
13389 else
13390 return true;
13391 /* FALLTHRU */
13392
13393 case CALL_EXPR:
13394 /* Functions that do not return do not fall through. */
13395 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
13396
13397 case CLEANUP_POINT_EXPR:
13398 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13399
13400 case TARGET_EXPR:
13401 return block_may_fallthru (TREE_OPERAND (stmt, 1));
13402
13403 case ERROR_MARK:
13404 return true;
13405
13406 default:
13407 return lang_hooks.block_may_fallthru (stmt);
13408 }
13409 }
13410
13411 /* True if we are using EH to handle cleanups. */
13412 static bool using_eh_for_cleanups_flag = false;
13413
13414 /* This routine is called from front ends to indicate eh should be used for
13415 cleanups. */
13416 void
13417 using_eh_for_cleanups (void)
13418 {
13419 using_eh_for_cleanups_flag = true;
13420 }
13421
13422 /* Query whether EH is used for cleanups. */
13423 bool
13424 using_eh_for_cleanups_p (void)
13425 {
13426 return using_eh_for_cleanups_flag;
13427 }
13428
13429 /* Wrapper for tree_code_name to ensure that tree code is valid */
13430 const char *
13431 get_tree_code_name (enum tree_code code)
13432 {
13433 const char *invalid = "<invalid tree code>";
13434
13435 /* The tree_code enum promotes to signed, but we could be getting
13436 invalid values, so force an unsigned comparison. */
13437 if (unsigned (code) >= MAX_TREE_CODES)
13438 {
13439 if (code == 0xa5a5)
13440 return "ggc_freed";
13441 return invalid;
13442 }
13443
13444 return tree_code_name[code];
13445 }
13446
13447 /* Drops the TREE_OVERFLOW flag from T. */
13448
13449 tree
13450 drop_tree_overflow (tree t)
13451 {
13452 gcc_checking_assert (TREE_OVERFLOW (t));
13453
13454 /* For tree codes with a sharing machinery re-build the result. */
13455 if (poly_int_tree_p (t))
13456 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
13457
13458 /* For VECTOR_CST, remove the overflow bits from the encoded elements
13459 and canonicalize the result. */
13460 if (TREE_CODE (t) == VECTOR_CST)
13461 {
13462 tree_vector_builder builder;
13463 builder.new_unary_operation (TREE_TYPE (t), t, true);
13464 unsigned int count = builder.encoded_nelts ();
13465 for (unsigned int i = 0; i < count; ++i)
13466 {
13467 tree elt = VECTOR_CST_ELT (t, i);
13468 if (TREE_OVERFLOW (elt))
13469 elt = drop_tree_overflow (elt);
13470 builder.quick_push (elt);
13471 }
13472 return builder.build ();
13473 }
13474
13475 /* Otherwise, as all tcc_constants are possibly shared, copy the node
13476 and drop the flag. */
13477 t = copy_node (t);
13478 TREE_OVERFLOW (t) = 0;
13479
13480 /* For constants that contain nested constants, drop the flag
13481 from those as well. */
13482 if (TREE_CODE (t) == COMPLEX_CST)
13483 {
13484 if (TREE_OVERFLOW (TREE_REALPART (t)))
13485 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
13486 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
13487 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
13488 }
13489
13490 return t;
13491 }
13492
13493 /* Given a memory reference expression T, return its base address.
13494 The base address of a memory reference expression is the main
13495 object being referenced. For instance, the base address for
13496 'array[i].fld[j]' is 'array'. You can think of this as stripping
13497 away the offset part from a memory address.
13498
13499 This function calls handled_component_p to strip away all the inner
13500 parts of the memory reference until it reaches the base object. */
13501
13502 tree
13503 get_base_address (tree t)
13504 {
13505 while (handled_component_p (t))
13506 t = TREE_OPERAND (t, 0);
13507
13508 if ((TREE_CODE (t) == MEM_REF
13509 || TREE_CODE (t) == TARGET_MEM_REF)
13510 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
13511 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
13512
13513 /* ??? Either the alias oracle or all callers need to properly deal
13514 with WITH_SIZE_EXPRs before we can look through those. */
13515 if (TREE_CODE (t) == WITH_SIZE_EXPR)
13516 return NULL_TREE;
13517
13518 return t;
13519 }
13520
13521 /* Return a tree of sizetype representing the size, in bytes, of the element
13522 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13523
13524 tree
13525 array_ref_element_size (tree exp)
13526 {
13527 tree aligned_size = TREE_OPERAND (exp, 3);
13528 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
13529 location_t loc = EXPR_LOCATION (exp);
13530
13531 /* If a size was specified in the ARRAY_REF, it's the size measured
13532 in alignment units of the element type. So multiply by that value. */
13533 if (aligned_size)
13534 {
13535 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13536 sizetype from another type of the same width and signedness. */
13537 if (TREE_TYPE (aligned_size) != sizetype)
13538 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
13539 return size_binop_loc (loc, MULT_EXPR, aligned_size,
13540 size_int (TYPE_ALIGN_UNIT (elmt_type)));
13541 }
13542
13543 /* Otherwise, take the size from that of the element type. Substitute
13544 any PLACEHOLDER_EXPR that we have. */
13545 else
13546 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
13547 }
13548
13549 /* Return a tree representing the lower bound of the array mentioned in
13550 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13551
13552 tree
13553 array_ref_low_bound (tree exp)
13554 {
13555 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13556
13557 /* If a lower bound is specified in EXP, use it. */
13558 if (TREE_OPERAND (exp, 2))
13559 return TREE_OPERAND (exp, 2);
13560
13561 /* Otherwise, if there is a domain type and it has a lower bound, use it,
13562 substituting for a PLACEHOLDER_EXPR as needed. */
13563 if (domain_type && TYPE_MIN_VALUE (domain_type))
13564 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
13565
13566 /* Otherwise, return a zero of the appropriate type. */
13567 tree idxtype = TREE_TYPE (TREE_OPERAND (exp, 1));
13568 return (idxtype == error_mark_node
13569 ? integer_zero_node : build_int_cst (idxtype, 0));
13570 }
13571
13572 /* Return a tree representing the upper bound of the array mentioned in
13573 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13574
13575 tree
13576 array_ref_up_bound (tree exp)
13577 {
13578 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13579
13580 /* If there is a domain type and it has an upper bound, use it, substituting
13581 for a PLACEHOLDER_EXPR as needed. */
13582 if (domain_type && TYPE_MAX_VALUE (domain_type))
13583 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
13584
13585 /* Otherwise fail. */
13586 return NULL_TREE;
13587 }
13588
13589 /* Returns true if REF is an array reference, component reference,
13590 or memory reference to an array at the end of a structure.
13591 If this is the case, the array may be allocated larger
13592 than its upper bound implies. */
13593
13594 bool
13595 array_at_struct_end_p (tree ref)
13596 {
13597 tree atype;
13598
13599 if (TREE_CODE (ref) == ARRAY_REF
13600 || TREE_CODE (ref) == ARRAY_RANGE_REF)
13601 {
13602 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
13603 ref = TREE_OPERAND (ref, 0);
13604 }
13605 else if (TREE_CODE (ref) == COMPONENT_REF
13606 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
13607 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
13608 else if (TREE_CODE (ref) == MEM_REF)
13609 {
13610 tree arg = TREE_OPERAND (ref, 0);
13611 if (TREE_CODE (arg) == ADDR_EXPR)
13612 arg = TREE_OPERAND (arg, 0);
13613 tree argtype = TREE_TYPE (arg);
13614 if (TREE_CODE (argtype) == RECORD_TYPE)
13615 {
13616 if (tree fld = last_field (argtype))
13617 {
13618 atype = TREE_TYPE (fld);
13619 if (TREE_CODE (atype) != ARRAY_TYPE)
13620 return false;
13621 if (VAR_P (arg) && DECL_SIZE (fld))
13622 return false;
13623 }
13624 else
13625 return false;
13626 }
13627 else
13628 return false;
13629 }
13630 else
13631 return false;
13632
13633 if (TREE_CODE (ref) == STRING_CST)
13634 return false;
13635
13636 tree ref_to_array = ref;
13637 while (handled_component_p (ref))
13638 {
13639 /* If the reference chain contains a component reference to a
13640 non-union type and there follows another field the reference
13641 is not at the end of a structure. */
13642 if (TREE_CODE (ref) == COMPONENT_REF)
13643 {
13644 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
13645 {
13646 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
13647 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
13648 nextf = DECL_CHAIN (nextf);
13649 if (nextf)
13650 return false;
13651 }
13652 }
13653 /* If we have a multi-dimensional array we do not consider
13654 a non-innermost dimension as flex array if the whole
13655 multi-dimensional array is at struct end.
13656 Same for an array of aggregates with a trailing array
13657 member. */
13658 else if (TREE_CODE (ref) == ARRAY_REF)
13659 return false;
13660 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
13661 ;
13662 /* If we view an underlying object as sth else then what we
13663 gathered up to now is what we have to rely on. */
13664 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
13665 break;
13666 else
13667 gcc_unreachable ();
13668
13669 ref = TREE_OPERAND (ref, 0);
13670 }
13671
13672 /* The array now is at struct end. Treat flexible arrays as
13673 always subject to extend, even into just padding constrained by
13674 an underlying decl. */
13675 if (! TYPE_SIZE (atype)
13676 || ! TYPE_DOMAIN (atype)
13677 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13678 return true;
13679
13680 if (TREE_CODE (ref) == MEM_REF
13681 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13682 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13683
13684 /* If the reference is based on a declared entity, the size of the array
13685 is constrained by its given domain. (Do not trust commons PR/69368). */
13686 if (DECL_P (ref)
13687 && !(flag_unconstrained_commons
13688 && VAR_P (ref) && DECL_COMMON (ref))
13689 && DECL_SIZE_UNIT (ref)
13690 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13691 {
13692 /* Check whether the array domain covers all of the available
13693 padding. */
13694 poly_int64 offset;
13695 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13696 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13697 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13698 return true;
13699 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13700 return true;
13701
13702 /* If at least one extra element fits it is a flexarray. */
13703 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13704 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13705 + 2)
13706 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13707 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13708 return true;
13709
13710 return false;
13711 }
13712
13713 return true;
13714 }
13715
13716 /* Return a tree representing the offset, in bytes, of the field referenced
13717 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13718
13719 tree
13720 component_ref_field_offset (tree exp)
13721 {
13722 tree aligned_offset = TREE_OPERAND (exp, 2);
13723 tree field = TREE_OPERAND (exp, 1);
13724 location_t loc = EXPR_LOCATION (exp);
13725
13726 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13727 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13728 value. */
13729 if (aligned_offset)
13730 {
13731 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13732 sizetype from another type of the same width and signedness. */
13733 if (TREE_TYPE (aligned_offset) != sizetype)
13734 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13735 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13736 size_int (DECL_OFFSET_ALIGN (field)
13737 / BITS_PER_UNIT));
13738 }
13739
13740 /* Otherwise, take the offset from that of the field. Substitute
13741 any PLACEHOLDER_EXPR that we have. */
13742 else
13743 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13744 }
13745
13746 /* Given the initializer INIT, return the initializer for the field
13747 DECL if it exists, otherwise null. Used to obtain the initializer
13748 for a flexible array member and determine its size. */
13749
13750 static tree
13751 get_initializer_for (tree init, tree decl)
13752 {
13753 STRIP_NOPS (init);
13754
13755 tree fld, fld_init;
13756 unsigned HOST_WIDE_INT i;
13757 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), i, fld, fld_init)
13758 {
13759 if (decl == fld)
13760 return fld_init;
13761
13762 if (TREE_CODE (fld) == CONSTRUCTOR)
13763 {
13764 fld_init = get_initializer_for (fld_init, decl);
13765 if (fld_init)
13766 return fld_init;
13767 }
13768 }
13769
13770 return NULL_TREE;
13771 }
13772
13773 /* Determines the size of the member referenced by the COMPONENT_REF
13774 REF, using its initializer expression if necessary in order to
13775 determine the size of an initialized flexible array member.
13776 If non-null, set *ARK when REF refers to an interior zero-length
13777 array or a trailing one-element array.
13778 Returns the size as sizetype (which might be zero for an object
13779 with an uninitialized flexible array member) or null if the size
13780 cannot be determined. */
13781
13782 tree
13783 component_ref_size (tree ref, special_array_member *sam /* = NULL */)
13784 {
13785 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
13786
13787 special_array_member sambuf;
13788 if (!sam)
13789 sam = &sambuf;
13790 *sam = special_array_member::none;
13791
13792 /* The object/argument referenced by the COMPONENT_REF and its type. */
13793 tree arg = TREE_OPERAND (ref, 0);
13794 tree argtype = TREE_TYPE (arg);
13795 /* The referenced member. */
13796 tree member = TREE_OPERAND (ref, 1);
13797
13798 tree memsize = DECL_SIZE_UNIT (member);
13799 if (memsize)
13800 {
13801 tree memtype = TREE_TYPE (member);
13802 if (TREE_CODE (memtype) != ARRAY_TYPE)
13803 /* DECL_SIZE may be less than TYPE_SIZE in C++ when referring
13804 to the type of a class with a virtual base which doesn't
13805 reflect the size of the virtual's members (see pr97595).
13806 If that's the case fail for now and implement something
13807 more robust in the future. */
13808 return (tree_int_cst_equal (memsize, TYPE_SIZE_UNIT (memtype))
13809 ? memsize : NULL_TREE);
13810
13811 bool trailing = array_at_struct_end_p (ref);
13812 bool zero_length = integer_zerop (memsize);
13813 if (!trailing && !zero_length)
13814 /* MEMBER is either an interior array or is an array with
13815 more than one element. */
13816 return memsize;
13817
13818 if (zero_length)
13819 {
13820 if (trailing)
13821 *sam = special_array_member::trail_0;
13822 else
13823 {
13824 *sam = special_array_member::int_0;
13825 memsize = NULL_TREE;
13826 }
13827 }
13828
13829 if (!zero_length)
13830 if (tree dom = TYPE_DOMAIN (memtype))
13831 if (tree min = TYPE_MIN_VALUE (dom))
13832 if (tree max = TYPE_MAX_VALUE (dom))
13833 if (TREE_CODE (min) == INTEGER_CST
13834 && TREE_CODE (max) == INTEGER_CST)
13835 {
13836 offset_int minidx = wi::to_offset (min);
13837 offset_int maxidx = wi::to_offset (max);
13838 offset_int neltsm1 = maxidx - minidx;
13839 if (neltsm1 > 0)
13840 /* MEMBER is an array with more than one element. */
13841 return memsize;
13842
13843 if (neltsm1 == 0)
13844 *sam = special_array_member::trail_1;
13845 }
13846
13847 /* For a refernce to a zero- or one-element array member of a union
13848 use the size of the union instead of the size of the member. */
13849 if (TREE_CODE (argtype) == UNION_TYPE)
13850 memsize = TYPE_SIZE_UNIT (argtype);
13851 }
13852
13853 /* MEMBER is either a bona fide flexible array member, or a zero-length
13854 array member, or an array of length one treated as such. */
13855
13856 /* If the reference is to a declared object and the member a true
13857 flexible array, try to determine its size from its initializer. */
13858 poly_int64 baseoff = 0;
13859 tree base = get_addr_base_and_unit_offset (ref, &baseoff);
13860 if (!base || !VAR_P (base))
13861 {
13862 if (*sam != special_array_member::int_0)
13863 return NULL_TREE;
13864
13865 if (TREE_CODE (arg) != COMPONENT_REF)
13866 return NULL_TREE;
13867
13868 base = arg;
13869 while (TREE_CODE (base) == COMPONENT_REF)
13870 base = TREE_OPERAND (base, 0);
13871 baseoff = tree_to_poly_int64 (byte_position (TREE_OPERAND (ref, 1)));
13872 }
13873
13874 /* BASE is the declared object of which MEMBER is either a member
13875 or that is cast to ARGTYPE (e.g., a char buffer used to store
13876 an ARGTYPE object). */
13877 tree basetype = TREE_TYPE (base);
13878
13879 /* Determine the base type of the referenced object. If it's
13880 the same as ARGTYPE and MEMBER has a known size, return it. */
13881 tree bt = basetype;
13882 if (*sam != special_array_member::int_0)
13883 while (TREE_CODE (bt) == ARRAY_TYPE)
13884 bt = TREE_TYPE (bt);
13885 bool typematch = useless_type_conversion_p (argtype, bt);
13886 if (memsize && typematch)
13887 return memsize;
13888
13889 memsize = NULL_TREE;
13890
13891 if (typematch)
13892 /* MEMBER is a true flexible array member. Compute its size from
13893 the initializer of the BASE object if it has one. */
13894 if (tree init = DECL_P (base) ? DECL_INITIAL (base) : NULL_TREE)
13895 if (init != error_mark_node)
13896 {
13897 init = get_initializer_for (init, member);
13898 if (init)
13899 {
13900 memsize = TYPE_SIZE_UNIT (TREE_TYPE (init));
13901 if (tree refsize = TYPE_SIZE_UNIT (argtype))
13902 {
13903 /* Use the larger of the initializer size and the tail
13904 padding in the enclosing struct. */
13905 poly_int64 rsz = tree_to_poly_int64 (refsize);
13906 rsz -= baseoff;
13907 if (known_lt (tree_to_poly_int64 (memsize), rsz))
13908 memsize = wide_int_to_tree (TREE_TYPE (memsize), rsz);
13909 }
13910
13911 baseoff = 0;
13912 }
13913 }
13914
13915 if (!memsize)
13916 {
13917 if (typematch)
13918 {
13919 if (DECL_P (base)
13920 && DECL_EXTERNAL (base)
13921 && bt == basetype
13922 && *sam != special_array_member::int_0)
13923 /* The size of a flexible array member of an extern struct
13924 with no initializer cannot be determined (it's defined
13925 in another translation unit and can have an initializer
13926 with an arbitrary number of elements). */
13927 return NULL_TREE;
13928
13929 /* Use the size of the base struct or, for interior zero-length
13930 arrays, the size of the enclosing type. */
13931 memsize = TYPE_SIZE_UNIT (bt);
13932 }
13933 else if (DECL_P (base))
13934 /* Use the size of the BASE object (possibly an array of some
13935 other type such as char used to store the struct). */
13936 memsize = DECL_SIZE_UNIT (base);
13937 else
13938 return NULL_TREE;
13939 }
13940
13941 /* If the flexible array member has a known size use the greater
13942 of it and the tail padding in the enclosing struct.
13943 Otherwise, when the size of the flexible array member is unknown
13944 and the referenced object is not a struct, use the size of its
13945 type when known. This detects sizes of array buffers when cast
13946 to struct types with flexible array members. */
13947 if (memsize)
13948 {
13949 poly_int64 memsz64 = memsize ? tree_to_poly_int64 (memsize) : 0;
13950 if (known_lt (baseoff, memsz64))
13951 {
13952 memsz64 -= baseoff;
13953 return wide_int_to_tree (TREE_TYPE (memsize), memsz64);
13954 }
13955 return size_zero_node;
13956 }
13957
13958 /* Return "don't know" for an external non-array object since its
13959 flexible array member can be initialized to have any number of
13960 elements. Otherwise, return zero because the flexible array
13961 member has no elements. */
13962 return (DECL_P (base)
13963 && DECL_EXTERNAL (base)
13964 && (!typematch
13965 || TREE_CODE (basetype) != ARRAY_TYPE)
13966 ? NULL_TREE : size_zero_node);
13967 }
13968
13969 /* Return the machine mode of T. For vectors, returns the mode of the
13970 inner type. The main use case is to feed the result to HONOR_NANS,
13971 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13972
13973 machine_mode
13974 element_mode (const_tree t)
13975 {
13976 if (!TYPE_P (t))
13977 t = TREE_TYPE (t);
13978 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13979 t = TREE_TYPE (t);
13980 return TYPE_MODE (t);
13981 }
13982
13983 /* Vector types need to re-check the target flags each time we report
13984 the machine mode. We need to do this because attribute target can
13985 change the result of vector_mode_supported_p and have_regs_of_mode
13986 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
13987 change on a per-function basis. */
13988 /* ??? Possibly a better solution is to run through all the types
13989 referenced by a function and re-compute the TYPE_MODE once, rather
13990 than make the TYPE_MODE macro call a function. */
13991
13992 machine_mode
13993 vector_type_mode (const_tree t)
13994 {
13995 machine_mode mode;
13996
13997 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
13998
13999 mode = t->type_common.mode;
14000 if (VECTOR_MODE_P (mode)
14001 && (!targetm.vector_mode_supported_p (mode)
14002 || !have_regs_of_mode[mode]))
14003 {
14004 scalar_int_mode innermode;
14005
14006 /* For integers, try mapping it to a same-sized scalar mode. */
14007 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
14008 {
14009 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
14010 * GET_MODE_BITSIZE (innermode));
14011 scalar_int_mode mode;
14012 if (int_mode_for_size (size, 0).exists (&mode)
14013 && have_regs_of_mode[mode])
14014 return mode;
14015 }
14016
14017 return BLKmode;
14018 }
14019
14020 return mode;
14021 }
14022
14023 /* Return the size in bits of each element of vector type TYPE. */
14024
14025 unsigned int
14026 vector_element_bits (const_tree type)
14027 {
14028 gcc_checking_assert (VECTOR_TYPE_P (type));
14029 if (VECTOR_BOOLEAN_TYPE_P (type))
14030 {
14031 if (SCALAR_INT_MODE_P (TYPE_MODE (type)))
14032 return 1;
14033 else
14034 return vector_element_size (tree_to_poly_uint64 (TYPE_SIZE (type)),
14035 TYPE_VECTOR_SUBPARTS (type));
14036 }
14037 return tree_to_uhwi (TYPE_SIZE (TREE_TYPE (type)));
14038 }
14039
14040 /* Calculate the size in bits of each element of vector type TYPE
14041 and return the result as a tree of type bitsizetype. */
14042
14043 tree
14044 vector_element_bits_tree (const_tree type)
14045 {
14046 gcc_checking_assert (VECTOR_TYPE_P (type));
14047 if (VECTOR_BOOLEAN_TYPE_P (type))
14048 return bitsize_int (vector_element_bits (type));
14049 return TYPE_SIZE (TREE_TYPE (type));
14050 }
14051
14052 /* Verify that basic properties of T match TV and thus T can be a variant of
14053 TV. TV should be the more specified variant (i.e. the main variant). */
14054
14055 static bool
14056 verify_type_variant (const_tree t, tree tv)
14057 {
14058 /* Type variant can differ by:
14059
14060 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
14061 ENCODE_QUAL_ADDR_SPACE.
14062 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
14063 in this case some values may not be set in the variant types
14064 (see TYPE_COMPLETE_P checks).
14065 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
14066 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
14067 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
14068 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
14069 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
14070 this is necessary to make it possible to merge types form different TUs
14071 - arrays, pointers and references may have TREE_TYPE that is a variant
14072 of TREE_TYPE of their main variants.
14073 - aggregates may have new TYPE_FIELDS list that list variants of
14074 the main variant TYPE_FIELDS.
14075 - vector types may differ by TYPE_VECTOR_OPAQUE
14076 */
14077
14078 /* Convenience macro for matching individual fields. */
14079 #define verify_variant_match(flag) \
14080 do { \
14081 if (flag (tv) != flag (t)) \
14082 { \
14083 error ("type variant differs by %s", #flag); \
14084 debug_tree (tv); \
14085 return false; \
14086 } \
14087 } while (false)
14088
14089 /* tree_base checks. */
14090
14091 verify_variant_match (TREE_CODE);
14092 /* FIXME: Ada builds non-artificial variants of artificial types. */
14093 if (TYPE_ARTIFICIAL (tv) && 0)
14094 verify_variant_match (TYPE_ARTIFICIAL);
14095 if (POINTER_TYPE_P (tv))
14096 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
14097 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
14098 verify_variant_match (TYPE_UNSIGNED);
14099 verify_variant_match (TYPE_PACKED);
14100 if (TREE_CODE (t) == REFERENCE_TYPE)
14101 verify_variant_match (TYPE_REF_IS_RVALUE);
14102 if (AGGREGATE_TYPE_P (t))
14103 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
14104 else
14105 verify_variant_match (TYPE_SATURATING);
14106 /* FIXME: This check trigger during libstdc++ build. */
14107 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
14108 verify_variant_match (TYPE_FINAL_P);
14109
14110 /* tree_type_common checks. */
14111
14112 if (COMPLETE_TYPE_P (t))
14113 {
14114 verify_variant_match (TYPE_MODE);
14115 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
14116 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
14117 verify_variant_match (TYPE_SIZE);
14118 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
14119 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
14120 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
14121 {
14122 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
14123 TYPE_SIZE_UNIT (tv), 0));
14124 error ("type variant has different %<TYPE_SIZE_UNIT%>");
14125 debug_tree (tv);
14126 error ("type variant%'s %<TYPE_SIZE_UNIT%>");
14127 debug_tree (TYPE_SIZE_UNIT (tv));
14128 error ("type%'s %<TYPE_SIZE_UNIT%>");
14129 debug_tree (TYPE_SIZE_UNIT (t));
14130 return false;
14131 }
14132 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
14133 }
14134 verify_variant_match (TYPE_PRECISION);
14135 if (RECORD_OR_UNION_TYPE_P (t))
14136 verify_variant_match (TYPE_TRANSPARENT_AGGR);
14137 else if (TREE_CODE (t) == ARRAY_TYPE)
14138 verify_variant_match (TYPE_NONALIASED_COMPONENT);
14139 /* During LTO we merge variant lists from diferent translation units
14140 that may differ BY TYPE_CONTEXT that in turn may point
14141 to TRANSLATION_UNIT_DECL.
14142 Ada also builds variants of types with different TYPE_CONTEXT. */
14143 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
14144 verify_variant_match (TYPE_CONTEXT);
14145 if (TREE_CODE (t) == ARRAY_TYPE || TREE_CODE (t) == INTEGER_TYPE)
14146 verify_variant_match (TYPE_STRING_FLAG);
14147 if (TREE_CODE (t) == RECORD_TYPE || TREE_CODE (t) == UNION_TYPE)
14148 verify_variant_match (TYPE_CXX_ODR_P);
14149 if (TYPE_ALIAS_SET_KNOWN_P (t))
14150 {
14151 error ("type variant with %<TYPE_ALIAS_SET_KNOWN_P%>");
14152 debug_tree (tv);
14153 return false;
14154 }
14155
14156 /* tree_type_non_common checks. */
14157
14158 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14159 and dangle the pointer from time to time. */
14160 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
14161 && (in_lto_p || !TYPE_VFIELD (tv)
14162 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
14163 {
14164 error ("type variant has different %<TYPE_VFIELD%>");
14165 debug_tree (tv);
14166 return false;
14167 }
14168 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
14169 || TREE_CODE (t) == INTEGER_TYPE
14170 || TREE_CODE (t) == BOOLEAN_TYPE
14171 || TREE_CODE (t) == REAL_TYPE
14172 || TREE_CODE (t) == FIXED_POINT_TYPE)
14173 {
14174 verify_variant_match (TYPE_MAX_VALUE);
14175 verify_variant_match (TYPE_MIN_VALUE);
14176 }
14177 if (TREE_CODE (t) == METHOD_TYPE)
14178 verify_variant_match (TYPE_METHOD_BASETYPE);
14179 if (TREE_CODE (t) == OFFSET_TYPE)
14180 verify_variant_match (TYPE_OFFSET_BASETYPE);
14181 if (TREE_CODE (t) == ARRAY_TYPE)
14182 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
14183 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
14184 or even type's main variant. This is needed to make bootstrap pass
14185 and the bug seems new in GCC 5.
14186 C++ FE should be updated to make this consistent and we should check
14187 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
14188 is a match with main variant.
14189
14190 Also disable the check for Java for now because of parser hack that builds
14191 first an dummy BINFO and then sometimes replace it by real BINFO in some
14192 of the copies. */
14193 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
14194 && TYPE_BINFO (t) != TYPE_BINFO (tv)
14195 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
14196 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
14197 at LTO time only. */
14198 && (in_lto_p && odr_type_p (t)))
14199 {
14200 error ("type variant has different %<TYPE_BINFO%>");
14201 debug_tree (tv);
14202 error ("type variant%'s %<TYPE_BINFO%>");
14203 debug_tree (TYPE_BINFO (tv));
14204 error ("type%'s %<TYPE_BINFO%>");
14205 debug_tree (TYPE_BINFO (t));
14206 return false;
14207 }
14208
14209 /* Check various uses of TYPE_VALUES_RAW. */
14210 if (TREE_CODE (t) == ENUMERAL_TYPE
14211 && TYPE_VALUES (t))
14212 verify_variant_match (TYPE_VALUES);
14213 else if (TREE_CODE (t) == ARRAY_TYPE)
14214 verify_variant_match (TYPE_DOMAIN);
14215 /* Permit incomplete variants of complete type. While FEs may complete
14216 all variants, this does not happen for C++ templates in all cases. */
14217 else if (RECORD_OR_UNION_TYPE_P (t)
14218 && COMPLETE_TYPE_P (t)
14219 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
14220 {
14221 tree f1, f2;
14222
14223 /* Fortran builds qualified variants as new records with items of
14224 qualified type. Verify that they looks same. */
14225 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
14226 f1 && f2;
14227 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14228 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
14229 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
14230 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
14231 /* FIXME: gfc_nonrestricted_type builds all types as variants
14232 with exception of pointer types. It deeply copies the type
14233 which means that we may end up with a variant type
14234 referring non-variant pointer. We may change it to
14235 produce types as variants, too, like
14236 objc_get_protocol_qualified_type does. */
14237 && !POINTER_TYPE_P (TREE_TYPE (f1)))
14238 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
14239 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
14240 break;
14241 if (f1 || f2)
14242 {
14243 error ("type variant has different %<TYPE_FIELDS%>");
14244 debug_tree (tv);
14245 error ("first mismatch is field");
14246 debug_tree (f1);
14247 error ("and field");
14248 debug_tree (f2);
14249 return false;
14250 }
14251 }
14252 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
14253 verify_variant_match (TYPE_ARG_TYPES);
14254 /* For C++ the qualified variant of array type is really an array type
14255 of qualified TREE_TYPE.
14256 objc builds variants of pointer where pointer to type is a variant, too
14257 in objc_get_protocol_qualified_type. */
14258 if (TREE_TYPE (t) != TREE_TYPE (tv)
14259 && ((TREE_CODE (t) != ARRAY_TYPE
14260 && !POINTER_TYPE_P (t))
14261 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
14262 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
14263 {
14264 error ("type variant has different %<TREE_TYPE%>");
14265 debug_tree (tv);
14266 error ("type variant%'s %<TREE_TYPE%>");
14267 debug_tree (TREE_TYPE (tv));
14268 error ("type%'s %<TREE_TYPE%>");
14269 debug_tree (TREE_TYPE (t));
14270 return false;
14271 }
14272 if (type_with_alias_set_p (t)
14273 && !gimple_canonical_types_compatible_p (t, tv, false))
14274 {
14275 error ("type is not compatible with its variant");
14276 debug_tree (tv);
14277 error ("type variant%'s %<TREE_TYPE%>");
14278 debug_tree (TREE_TYPE (tv));
14279 error ("type%'s %<TREE_TYPE%>");
14280 debug_tree (TREE_TYPE (t));
14281 return false;
14282 }
14283 return true;
14284 #undef verify_variant_match
14285 }
14286
14287
14288 /* The TYPE_CANONICAL merging machinery. It should closely resemble
14289 the middle-end types_compatible_p function. It needs to avoid
14290 claiming types are different for types that should be treated
14291 the same with respect to TBAA. Canonical types are also used
14292 for IL consistency checks via the useless_type_conversion_p
14293 predicate which does not handle all type kinds itself but falls
14294 back to pointer-comparison of TYPE_CANONICAL for aggregates
14295 for example. */
14296
14297 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
14298 type calculation because we need to allow inter-operability between signed
14299 and unsigned variants. */
14300
14301 bool
14302 type_with_interoperable_signedness (const_tree type)
14303 {
14304 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
14305 signed char and unsigned char. Similarly fortran FE builds
14306 C_SIZE_T as signed type, while C defines it unsigned. */
14307
14308 return tree_code_for_canonical_type_merging (TREE_CODE (type))
14309 == INTEGER_TYPE
14310 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
14311 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
14312 }
14313
14314 /* Return true iff T1 and T2 are structurally identical for what
14315 TBAA is concerned.
14316 This function is used both by lto.c canonical type merging and by the
14317 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
14318 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
14319 only for LTO because only in these cases TYPE_CANONICAL equivalence
14320 correspond to one defined by gimple_canonical_types_compatible_p. */
14321
14322 bool
14323 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
14324 bool trust_type_canonical)
14325 {
14326 /* Type variants should be same as the main variant. When not doing sanity
14327 checking to verify this fact, go to main variants and save some work. */
14328 if (trust_type_canonical)
14329 {
14330 t1 = TYPE_MAIN_VARIANT (t1);
14331 t2 = TYPE_MAIN_VARIANT (t2);
14332 }
14333
14334 /* Check first for the obvious case of pointer identity. */
14335 if (t1 == t2)
14336 return true;
14337
14338 /* Check that we have two types to compare. */
14339 if (t1 == NULL_TREE || t2 == NULL_TREE)
14340 return false;
14341
14342 /* We consider complete types always compatible with incomplete type.
14343 This does not make sense for canonical type calculation and thus we
14344 need to ensure that we are never called on it.
14345
14346 FIXME: For more correctness the function probably should have three modes
14347 1) mode assuming that types are complete mathcing their structure
14348 2) mode allowing incomplete types but producing equivalence classes
14349 and thus ignoring all info from complete types
14350 3) mode allowing incomplete types to match complete but checking
14351 compatibility between complete types.
14352
14353 1 and 2 can be used for canonical type calculation. 3 is the real
14354 definition of type compatibility that can be used i.e. for warnings during
14355 declaration merging. */
14356
14357 gcc_assert (!trust_type_canonical
14358 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
14359
14360 /* If the types have been previously registered and found equal
14361 they still are. */
14362
14363 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
14364 && trust_type_canonical)
14365 {
14366 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
14367 they are always NULL, but they are set to non-NULL for types
14368 constructed by build_pointer_type and variants. In this case the
14369 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
14370 all pointers are considered equal. Be sure to not return false
14371 negatives. */
14372 gcc_checking_assert (canonical_type_used_p (t1)
14373 && canonical_type_used_p (t2));
14374 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
14375 }
14376
14377 /* For types where we do ODR based TBAA the canonical type is always
14378 set correctly, so we know that types are different if their
14379 canonical types does not match. */
14380 if (trust_type_canonical
14381 && (odr_type_p (t1) && odr_based_tbaa_p (t1))
14382 != (odr_type_p (t2) && odr_based_tbaa_p (t2)))
14383 return false;
14384
14385 /* Can't be the same type if the types don't have the same code. */
14386 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
14387 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
14388 return false;
14389
14390 /* Qualifiers do not matter for canonical type comparison purposes. */
14391
14392 /* Void types and nullptr types are always the same. */
14393 if (TREE_CODE (t1) == VOID_TYPE
14394 || TREE_CODE (t1) == NULLPTR_TYPE)
14395 return true;
14396
14397 /* Can't be the same type if they have different mode. */
14398 if (TYPE_MODE (t1) != TYPE_MODE (t2))
14399 return false;
14400
14401 /* Non-aggregate types can be handled cheaply. */
14402 if (INTEGRAL_TYPE_P (t1)
14403 || SCALAR_FLOAT_TYPE_P (t1)
14404 || FIXED_POINT_TYPE_P (t1)
14405 || TREE_CODE (t1) == VECTOR_TYPE
14406 || TREE_CODE (t1) == COMPLEX_TYPE
14407 || TREE_CODE (t1) == OFFSET_TYPE
14408 || POINTER_TYPE_P (t1))
14409 {
14410 /* Can't be the same type if they have different recision. */
14411 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
14412 return false;
14413
14414 /* In some cases the signed and unsigned types are required to be
14415 inter-operable. */
14416 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
14417 && !type_with_interoperable_signedness (t1))
14418 return false;
14419
14420 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
14421 interoperable with "signed char". Unless all frontends are revisited
14422 to agree on these types, we must ignore the flag completely. */
14423
14424 /* Fortran standard define C_PTR type that is compatible with every
14425 C pointer. For this reason we need to glob all pointers into one.
14426 Still pointers in different address spaces are not compatible. */
14427 if (POINTER_TYPE_P (t1))
14428 {
14429 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
14430 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
14431 return false;
14432 }
14433
14434 /* Tail-recurse to components. */
14435 if (TREE_CODE (t1) == VECTOR_TYPE
14436 || TREE_CODE (t1) == COMPLEX_TYPE)
14437 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
14438 TREE_TYPE (t2),
14439 trust_type_canonical);
14440
14441 return true;
14442 }
14443
14444 /* Do type-specific comparisons. */
14445 switch (TREE_CODE (t1))
14446 {
14447 case ARRAY_TYPE:
14448 /* Array types are the same if the element types are the same and
14449 the number of elements are the same. */
14450 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14451 trust_type_canonical)
14452 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
14453 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
14454 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
14455 return false;
14456 else
14457 {
14458 tree i1 = TYPE_DOMAIN (t1);
14459 tree i2 = TYPE_DOMAIN (t2);
14460
14461 /* For an incomplete external array, the type domain can be
14462 NULL_TREE. Check this condition also. */
14463 if (i1 == NULL_TREE && i2 == NULL_TREE)
14464 return true;
14465 else if (i1 == NULL_TREE || i2 == NULL_TREE)
14466 return false;
14467 else
14468 {
14469 tree min1 = TYPE_MIN_VALUE (i1);
14470 tree min2 = TYPE_MIN_VALUE (i2);
14471 tree max1 = TYPE_MAX_VALUE (i1);
14472 tree max2 = TYPE_MAX_VALUE (i2);
14473
14474 /* The minimum/maximum values have to be the same. */
14475 if ((min1 == min2
14476 || (min1 && min2
14477 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
14478 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
14479 || operand_equal_p (min1, min2, 0))))
14480 && (max1 == max2
14481 || (max1 && max2
14482 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
14483 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
14484 || operand_equal_p (max1, max2, 0)))))
14485 return true;
14486 else
14487 return false;
14488 }
14489 }
14490
14491 case METHOD_TYPE:
14492 case FUNCTION_TYPE:
14493 /* Function types are the same if the return type and arguments types
14494 are the same. */
14495 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14496 trust_type_canonical))
14497 return false;
14498
14499 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
14500 return true;
14501 else
14502 {
14503 tree parms1, parms2;
14504
14505 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
14506 parms1 && parms2;
14507 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
14508 {
14509 if (!gimple_canonical_types_compatible_p
14510 (TREE_VALUE (parms1), TREE_VALUE (parms2),
14511 trust_type_canonical))
14512 return false;
14513 }
14514
14515 if (parms1 || parms2)
14516 return false;
14517
14518 return true;
14519 }
14520
14521 case RECORD_TYPE:
14522 case UNION_TYPE:
14523 case QUAL_UNION_TYPE:
14524 {
14525 tree f1, f2;
14526
14527 /* Don't try to compare variants of an incomplete type, before
14528 TYPE_FIELDS has been copied around. */
14529 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
14530 return true;
14531
14532
14533 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
14534 return false;
14535
14536 /* For aggregate types, all the fields must be the same. */
14537 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
14538 f1 || f2;
14539 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14540 {
14541 /* Skip non-fields and zero-sized fields. */
14542 while (f1 && (TREE_CODE (f1) != FIELD_DECL
14543 || (DECL_SIZE (f1)
14544 && integer_zerop (DECL_SIZE (f1)))))
14545 f1 = TREE_CHAIN (f1);
14546 while (f2 && (TREE_CODE (f2) != FIELD_DECL
14547 || (DECL_SIZE (f2)
14548 && integer_zerop (DECL_SIZE (f2)))))
14549 f2 = TREE_CHAIN (f2);
14550 if (!f1 || !f2)
14551 break;
14552 /* The fields must have the same name, offset and type. */
14553 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
14554 || !gimple_compare_field_offset (f1, f2)
14555 || !gimple_canonical_types_compatible_p
14556 (TREE_TYPE (f1), TREE_TYPE (f2),
14557 trust_type_canonical))
14558 return false;
14559 }
14560
14561 /* If one aggregate has more fields than the other, they
14562 are not the same. */
14563 if (f1 || f2)
14564 return false;
14565
14566 return true;
14567 }
14568
14569 default:
14570 /* Consider all types with language specific trees in them mutually
14571 compatible. This is executed only from verify_type and false
14572 positives can be tolerated. */
14573 gcc_assert (!in_lto_p);
14574 return true;
14575 }
14576 }
14577
14578 /* Verify type T. */
14579
14580 void
14581 verify_type (const_tree t)
14582 {
14583 bool error_found = false;
14584 tree mv = TYPE_MAIN_VARIANT (t);
14585 if (!mv)
14586 {
14587 error ("main variant is not defined");
14588 error_found = true;
14589 }
14590 else if (mv != TYPE_MAIN_VARIANT (mv))
14591 {
14592 error ("%<TYPE_MAIN_VARIANT%> has different %<TYPE_MAIN_VARIANT%>");
14593 debug_tree (mv);
14594 error_found = true;
14595 }
14596 else if (t != mv && !verify_type_variant (t, mv))
14597 error_found = true;
14598
14599 tree ct = TYPE_CANONICAL (t);
14600 if (!ct)
14601 ;
14602 else if (TYPE_CANONICAL (t) != ct)
14603 {
14604 error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
14605 debug_tree (ct);
14606 error_found = true;
14607 }
14608 /* Method and function types cannot be used to address memory and thus
14609 TYPE_CANONICAL really matters only for determining useless conversions.
14610
14611 FIXME: C++ FE produce declarations of builtin functions that are not
14612 compatible with main variants. */
14613 else if (TREE_CODE (t) == FUNCTION_TYPE)
14614 ;
14615 else if (t != ct
14616 /* FIXME: gimple_canonical_types_compatible_p cannot compare types
14617 with variably sized arrays because their sizes possibly
14618 gimplified to different variables. */
14619 && !variably_modified_type_p (ct, NULL)
14620 && !gimple_canonical_types_compatible_p (t, ct, false)
14621 && COMPLETE_TYPE_P (t))
14622 {
14623 error ("%<TYPE_CANONICAL%> is not compatible");
14624 debug_tree (ct);
14625 error_found = true;
14626 }
14627
14628 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
14629 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
14630 {
14631 error ("%<TYPE_MODE%> of %<TYPE_CANONICAL%> is not compatible");
14632 debug_tree (ct);
14633 error_found = true;
14634 }
14635 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
14636 {
14637 error ("%<TYPE_CANONICAL%> of main variant is not main variant");
14638 debug_tree (ct);
14639 debug_tree (TYPE_MAIN_VARIANT (ct));
14640 error_found = true;
14641 }
14642
14643
14644 /* Check various uses of TYPE_MIN_VALUE_RAW. */
14645 if (RECORD_OR_UNION_TYPE_P (t))
14646 {
14647 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14648 and danagle the pointer from time to time. */
14649 if (TYPE_VFIELD (t)
14650 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
14651 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
14652 {
14653 error ("%<TYPE_VFIELD%> is not %<FIELD_DECL%> nor %<TREE_LIST%>");
14654 debug_tree (TYPE_VFIELD (t));
14655 error_found = true;
14656 }
14657 }
14658 else if (TREE_CODE (t) == POINTER_TYPE)
14659 {
14660 if (TYPE_NEXT_PTR_TO (t)
14661 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
14662 {
14663 error ("%<TYPE_NEXT_PTR_TO%> is not %<POINTER_TYPE%>");
14664 debug_tree (TYPE_NEXT_PTR_TO (t));
14665 error_found = true;
14666 }
14667 }
14668 else if (TREE_CODE (t) == REFERENCE_TYPE)
14669 {
14670 if (TYPE_NEXT_REF_TO (t)
14671 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
14672 {
14673 error ("%<TYPE_NEXT_REF_TO%> is not %<REFERENCE_TYPE%>");
14674 debug_tree (TYPE_NEXT_REF_TO (t));
14675 error_found = true;
14676 }
14677 }
14678 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14679 || TREE_CODE (t) == FIXED_POINT_TYPE)
14680 {
14681 /* FIXME: The following check should pass:
14682 useless_type_conversion_p (const_cast <tree> (t),
14683 TREE_TYPE (TYPE_MIN_VALUE (t))
14684 but does not for C sizetypes in LTO. */
14685 }
14686
14687 /* Check various uses of TYPE_MAXVAL_RAW. */
14688 if (RECORD_OR_UNION_TYPE_P (t))
14689 {
14690 if (!TYPE_BINFO (t))
14691 ;
14692 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
14693 {
14694 error ("%<TYPE_BINFO%> is not %<TREE_BINFO%>");
14695 debug_tree (TYPE_BINFO (t));
14696 error_found = true;
14697 }
14698 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
14699 {
14700 error ("%<TYPE_BINFO%> type is not %<TYPE_MAIN_VARIANT%>");
14701 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
14702 error_found = true;
14703 }
14704 }
14705 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14706 {
14707 if (TYPE_METHOD_BASETYPE (t)
14708 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
14709 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
14710 {
14711 error ("%<TYPE_METHOD_BASETYPE%> is not record nor union");
14712 debug_tree (TYPE_METHOD_BASETYPE (t));
14713 error_found = true;
14714 }
14715 }
14716 else if (TREE_CODE (t) == OFFSET_TYPE)
14717 {
14718 if (TYPE_OFFSET_BASETYPE (t)
14719 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
14720 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
14721 {
14722 error ("%<TYPE_OFFSET_BASETYPE%> is not record nor union");
14723 debug_tree (TYPE_OFFSET_BASETYPE (t));
14724 error_found = true;
14725 }
14726 }
14727 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14728 || TREE_CODE (t) == FIXED_POINT_TYPE)
14729 {
14730 /* FIXME: The following check should pass:
14731 useless_type_conversion_p (const_cast <tree> (t),
14732 TREE_TYPE (TYPE_MAX_VALUE (t))
14733 but does not for C sizetypes in LTO. */
14734 }
14735 else if (TREE_CODE (t) == ARRAY_TYPE)
14736 {
14737 if (TYPE_ARRAY_MAX_SIZE (t)
14738 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
14739 {
14740 error ("%<TYPE_ARRAY_MAX_SIZE%> not %<INTEGER_CST%>");
14741 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
14742 error_found = true;
14743 }
14744 }
14745 else if (TYPE_MAX_VALUE_RAW (t))
14746 {
14747 error ("%<TYPE_MAX_VALUE_RAW%> non-NULL");
14748 debug_tree (TYPE_MAX_VALUE_RAW (t));
14749 error_found = true;
14750 }
14751
14752 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
14753 {
14754 error ("%<TYPE_LANG_SLOT_1 (binfo)%> field is non-NULL");
14755 debug_tree (TYPE_LANG_SLOT_1 (t));
14756 error_found = true;
14757 }
14758
14759 /* Check various uses of TYPE_VALUES_RAW. */
14760 if (TREE_CODE (t) == ENUMERAL_TYPE)
14761 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
14762 {
14763 tree value = TREE_VALUE (l);
14764 tree name = TREE_PURPOSE (l);
14765
14766 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
14767 CONST_DECL of ENUMERAL TYPE. */
14768 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
14769 {
14770 error ("enum value is not %<CONST_DECL%> or %<INTEGER_CST%>");
14771 debug_tree (value);
14772 debug_tree (name);
14773 error_found = true;
14774 }
14775 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
14776 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
14777 {
14778 error ("enum value type is not %<INTEGER_TYPE%> nor convertible "
14779 "to the enum");
14780 debug_tree (value);
14781 debug_tree (name);
14782 error_found = true;
14783 }
14784 if (TREE_CODE (name) != IDENTIFIER_NODE)
14785 {
14786 error ("enum value name is not %<IDENTIFIER_NODE%>");
14787 debug_tree (value);
14788 debug_tree (name);
14789 error_found = true;
14790 }
14791 }
14792 else if (TREE_CODE (t) == ARRAY_TYPE)
14793 {
14794 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
14795 {
14796 error ("array %<TYPE_DOMAIN%> is not integer type");
14797 debug_tree (TYPE_DOMAIN (t));
14798 error_found = true;
14799 }
14800 }
14801 else if (RECORD_OR_UNION_TYPE_P (t))
14802 {
14803 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
14804 {
14805 error ("%<TYPE_FIELDS%> defined in incomplete type");
14806 error_found = true;
14807 }
14808 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
14809 {
14810 /* TODO: verify properties of decls. */
14811 if (TREE_CODE (fld) == FIELD_DECL)
14812 ;
14813 else if (TREE_CODE (fld) == TYPE_DECL)
14814 ;
14815 else if (TREE_CODE (fld) == CONST_DECL)
14816 ;
14817 else if (VAR_P (fld))
14818 ;
14819 else if (TREE_CODE (fld) == TEMPLATE_DECL)
14820 ;
14821 else if (TREE_CODE (fld) == USING_DECL)
14822 ;
14823 else if (TREE_CODE (fld) == FUNCTION_DECL)
14824 ;
14825 else
14826 {
14827 error ("wrong tree in %<TYPE_FIELDS%> list");
14828 debug_tree (fld);
14829 error_found = true;
14830 }
14831 }
14832 }
14833 else if (TREE_CODE (t) == INTEGER_TYPE
14834 || TREE_CODE (t) == BOOLEAN_TYPE
14835 || TREE_CODE (t) == OFFSET_TYPE
14836 || TREE_CODE (t) == REFERENCE_TYPE
14837 || TREE_CODE (t) == NULLPTR_TYPE
14838 || TREE_CODE (t) == POINTER_TYPE)
14839 {
14840 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
14841 {
14842 error ("%<TYPE_CACHED_VALUES_P%> is %i while %<TYPE_CACHED_VALUES%> "
14843 "is %p",
14844 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
14845 error_found = true;
14846 }
14847 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
14848 {
14849 error ("%<TYPE_CACHED_VALUES%> is not %<TREE_VEC%>");
14850 debug_tree (TYPE_CACHED_VALUES (t));
14851 error_found = true;
14852 }
14853 /* Verify just enough of cache to ensure that no one copied it to new type.
14854 All copying should go by copy_node that should clear it. */
14855 else if (TYPE_CACHED_VALUES_P (t))
14856 {
14857 int i;
14858 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
14859 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
14860 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
14861 {
14862 error ("wrong %<TYPE_CACHED_VALUES%> entry");
14863 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
14864 error_found = true;
14865 break;
14866 }
14867 }
14868 }
14869 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14870 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
14871 {
14872 /* C++ FE uses TREE_PURPOSE to store initial values. */
14873 if (TREE_PURPOSE (l) && in_lto_p)
14874 {
14875 error ("%<TREE_PURPOSE%> is non-NULL in %<TYPE_ARG_TYPES%> list");
14876 debug_tree (l);
14877 error_found = true;
14878 }
14879 if (!TYPE_P (TREE_VALUE (l)))
14880 {
14881 error ("wrong entry in %<TYPE_ARG_TYPES%> list");
14882 debug_tree (l);
14883 error_found = true;
14884 }
14885 }
14886 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
14887 {
14888 error ("%<TYPE_VALUES_RAW%> field is non-NULL");
14889 debug_tree (TYPE_VALUES_RAW (t));
14890 error_found = true;
14891 }
14892 if (TREE_CODE (t) != INTEGER_TYPE
14893 && TREE_CODE (t) != BOOLEAN_TYPE
14894 && TREE_CODE (t) != OFFSET_TYPE
14895 && TREE_CODE (t) != REFERENCE_TYPE
14896 && TREE_CODE (t) != NULLPTR_TYPE
14897 && TREE_CODE (t) != POINTER_TYPE
14898 && TYPE_CACHED_VALUES_P (t))
14899 {
14900 error ("%<TYPE_CACHED_VALUES_P%> is set while it should not be");
14901 error_found = true;
14902 }
14903
14904 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
14905 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
14906 of a type. */
14907 if (TREE_CODE (t) == METHOD_TYPE
14908 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
14909 {
14910 error ("%<TYPE_METHOD_BASETYPE%> is not main variant");
14911 error_found = true;
14912 }
14913
14914 if (error_found)
14915 {
14916 debug_tree (const_cast <tree> (t));
14917 internal_error ("%qs failed", __func__);
14918 }
14919 }
14920
14921
14922 /* Return 1 if ARG interpreted as signed in its precision is known to be
14923 always positive or 2 if ARG is known to be always negative, or 3 if
14924 ARG may be positive or negative. */
14925
14926 int
14927 get_range_pos_neg (tree arg)
14928 {
14929 if (arg == error_mark_node)
14930 return 3;
14931
14932 int prec = TYPE_PRECISION (TREE_TYPE (arg));
14933 int cnt = 0;
14934 if (TREE_CODE (arg) == INTEGER_CST)
14935 {
14936 wide_int w = wi::sext (wi::to_wide (arg), prec);
14937 if (wi::neg_p (w))
14938 return 2;
14939 else
14940 return 1;
14941 }
14942 while (CONVERT_EXPR_P (arg)
14943 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14944 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14945 {
14946 arg = TREE_OPERAND (arg, 0);
14947 /* Narrower value zero extended into wider type
14948 will always result in positive values. */
14949 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14950 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14951 return 1;
14952 prec = TYPE_PRECISION (TREE_TYPE (arg));
14953 if (++cnt > 30)
14954 return 3;
14955 }
14956
14957 if (TREE_CODE (arg) != SSA_NAME)
14958 return 3;
14959 wide_int arg_min, arg_max;
14960 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14961 {
14962 gimple *g = SSA_NAME_DEF_STMT (arg);
14963 if (is_gimple_assign (g)
14964 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14965 {
14966 tree t = gimple_assign_rhs1 (g);
14967 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14968 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14969 {
14970 if (TYPE_UNSIGNED (TREE_TYPE (t))
14971 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14972 return 1;
14973 prec = TYPE_PRECISION (TREE_TYPE (t));
14974 arg = t;
14975 if (++cnt > 30)
14976 return 3;
14977 continue;
14978 }
14979 }
14980 return 3;
14981 }
14982 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14983 {
14984 /* For unsigned values, the "positive" range comes
14985 below the "negative" range. */
14986 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14987 return 1;
14988 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14989 return 2;
14990 }
14991 else
14992 {
14993 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14994 return 1;
14995 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14996 return 2;
14997 }
14998 return 3;
14999 }
15000
15001
15002
15003
15004 /* Return true if ARG is marked with the nonnull attribute in the
15005 current function signature. */
15006
15007 bool
15008 nonnull_arg_p (const_tree arg)
15009 {
15010 tree t, attrs, fntype;
15011 unsigned HOST_WIDE_INT arg_num;
15012
15013 gcc_assert (TREE_CODE (arg) == PARM_DECL
15014 && (POINTER_TYPE_P (TREE_TYPE (arg))
15015 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
15016
15017 /* The static chain decl is always non null. */
15018 if (arg == cfun->static_chain_decl)
15019 return true;
15020
15021 /* THIS argument of method is always non-NULL. */
15022 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
15023 && arg == DECL_ARGUMENTS (cfun->decl)
15024 && flag_delete_null_pointer_checks)
15025 return true;
15026
15027 /* Values passed by reference are always non-NULL. */
15028 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
15029 && flag_delete_null_pointer_checks)
15030 return true;
15031
15032 fntype = TREE_TYPE (cfun->decl);
15033 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
15034 {
15035 attrs = lookup_attribute ("nonnull", attrs);
15036
15037 /* If "nonnull" wasn't specified, we know nothing about the argument. */
15038 if (attrs == NULL_TREE)
15039 return false;
15040
15041 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
15042 if (TREE_VALUE (attrs) == NULL_TREE)
15043 return true;
15044
15045 /* Get the position number for ARG in the function signature. */
15046 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
15047 t;
15048 t = DECL_CHAIN (t), arg_num++)
15049 {
15050 if (t == arg)
15051 break;
15052 }
15053
15054 gcc_assert (t == arg);
15055
15056 /* Now see if ARG_NUM is mentioned in the nonnull list. */
15057 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
15058 {
15059 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
15060 return true;
15061 }
15062 }
15063
15064 return false;
15065 }
15066
15067 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
15068 information. */
15069
15070 location_t
15071 set_block (location_t loc, tree block)
15072 {
15073 location_t pure_loc = get_pure_location (loc);
15074 source_range src_range = get_range_from_loc (line_table, loc);
15075 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
15076 }
15077
15078 location_t
15079 set_source_range (tree expr, location_t start, location_t finish)
15080 {
15081 source_range src_range;
15082 src_range.m_start = start;
15083 src_range.m_finish = finish;
15084 return set_source_range (expr, src_range);
15085 }
15086
15087 location_t
15088 set_source_range (tree expr, source_range src_range)
15089 {
15090 if (!EXPR_P (expr))
15091 return UNKNOWN_LOCATION;
15092
15093 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
15094 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
15095 pure_loc,
15096 src_range,
15097 NULL);
15098 SET_EXPR_LOCATION (expr, adhoc);
15099 return adhoc;
15100 }
15101
15102 /* Return EXPR, potentially wrapped with a node expression LOC,
15103 if !CAN_HAVE_LOCATION_P (expr).
15104
15105 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
15106 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
15107
15108 Wrapper nodes can be identified using location_wrapper_p. */
15109
15110 tree
15111 maybe_wrap_with_location (tree expr, location_t loc)
15112 {
15113 if (expr == NULL)
15114 return NULL;
15115 if (loc == UNKNOWN_LOCATION)
15116 return expr;
15117 if (CAN_HAVE_LOCATION_P (expr))
15118 return expr;
15119 /* We should only be adding wrappers for constants and for decls,
15120 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
15121 gcc_assert (CONSTANT_CLASS_P (expr)
15122 || DECL_P (expr)
15123 || EXCEPTIONAL_CLASS_P (expr));
15124
15125 /* For now, don't add wrappers to exceptional tree nodes, to minimize
15126 any impact of the wrapper nodes. */
15127 if (EXCEPTIONAL_CLASS_P (expr))
15128 return expr;
15129
15130 /* Compiler-generated temporary variables don't need a wrapper. */
15131 if (DECL_P (expr) && DECL_ARTIFICIAL (expr) && DECL_IGNORED_P (expr))
15132 return expr;
15133
15134 /* If any auto_suppress_location_wrappers are active, don't create
15135 wrappers. */
15136 if (suppress_location_wrappers > 0)
15137 return expr;
15138
15139 tree_code code
15140 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
15141 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
15142 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
15143 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
15144 /* Mark this node as being a wrapper. */
15145 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
15146 return wrapper;
15147 }
15148
15149 int suppress_location_wrappers;
15150
15151 /* Return the name of combined function FN, for debugging purposes. */
15152
15153 const char *
15154 combined_fn_name (combined_fn fn)
15155 {
15156 if (builtin_fn_p (fn))
15157 {
15158 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
15159 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
15160 }
15161 else
15162 return internal_fn_name (as_internal_fn (fn));
15163 }
15164
15165 /* Return a bitmap with a bit set corresponding to each argument in
15166 a function call type FNTYPE declared with attribute nonnull,
15167 or null if none of the function's argument are nonnull. The caller
15168 must free the bitmap. */
15169
15170 bitmap
15171 get_nonnull_args (const_tree fntype)
15172 {
15173 if (fntype == NULL_TREE)
15174 return NULL;
15175
15176 bitmap argmap = NULL;
15177 if (TREE_CODE (fntype) == METHOD_TYPE)
15178 {
15179 /* The this pointer in C++ non-static member functions is
15180 implicitly nonnull whether or not it's declared as such. */
15181 argmap = BITMAP_ALLOC (NULL);
15182 bitmap_set_bit (argmap, 0);
15183 }
15184
15185 tree attrs = TYPE_ATTRIBUTES (fntype);
15186 if (!attrs)
15187 return argmap;
15188
15189 /* A function declaration can specify multiple attribute nonnull,
15190 each with zero or more arguments. The loop below creates a bitmap
15191 representing a union of all the arguments. An empty (but non-null)
15192 bitmap means that all arguments have been declaraed nonnull. */
15193 for ( ; attrs; attrs = TREE_CHAIN (attrs))
15194 {
15195 attrs = lookup_attribute ("nonnull", attrs);
15196 if (!attrs)
15197 break;
15198
15199 if (!argmap)
15200 argmap = BITMAP_ALLOC (NULL);
15201
15202 if (!TREE_VALUE (attrs))
15203 {
15204 /* Clear the bitmap in case a previous attribute nonnull
15205 set it and this one overrides it for all arguments. */
15206 bitmap_clear (argmap);
15207 return argmap;
15208 }
15209
15210 /* Iterate over the indices of the format arguments declared nonnull
15211 and set a bit for each. */
15212 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
15213 {
15214 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
15215 bitmap_set_bit (argmap, val);
15216 }
15217 }
15218
15219 return argmap;
15220 }
15221
15222 /* Returns true if TYPE is a type where it and all of its subobjects
15223 (recursively) are of structure, union, or array type. */
15224
15225 bool
15226 is_empty_type (const_tree type)
15227 {
15228 if (RECORD_OR_UNION_TYPE_P (type))
15229 {
15230 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
15231 if (TREE_CODE (field) == FIELD_DECL
15232 && !DECL_PADDING_P (field)
15233 && !is_empty_type (TREE_TYPE (field)))
15234 return false;
15235 return true;
15236 }
15237 else if (TREE_CODE (type) == ARRAY_TYPE)
15238 return (integer_minus_onep (array_type_nelts (type))
15239 || TYPE_DOMAIN (type) == NULL_TREE
15240 || is_empty_type (TREE_TYPE (type)));
15241 return false;
15242 }
15243
15244 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
15245 that shouldn't be passed via stack. */
15246
15247 bool
15248 default_is_empty_record (const_tree type)
15249 {
15250 if (!abi_version_at_least (12))
15251 return false;
15252
15253 if (type == error_mark_node)
15254 return false;
15255
15256 if (TREE_ADDRESSABLE (type))
15257 return false;
15258
15259 return is_empty_type (TYPE_MAIN_VARIANT (type));
15260 }
15261
15262 /* Determine whether TYPE is a structure with a flexible array member,
15263 or a union containing such a structure (possibly recursively). */
15264
15265 bool
15266 flexible_array_type_p (const_tree type)
15267 {
15268 tree x, last;
15269 switch (TREE_CODE (type))
15270 {
15271 case RECORD_TYPE:
15272 last = NULL_TREE;
15273 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15274 if (TREE_CODE (x) == FIELD_DECL)
15275 last = x;
15276 if (last == NULL_TREE)
15277 return false;
15278 if (TREE_CODE (TREE_TYPE (last)) == ARRAY_TYPE
15279 && TYPE_SIZE (TREE_TYPE (last)) == NULL_TREE
15280 && TYPE_DOMAIN (TREE_TYPE (last)) != NULL_TREE
15281 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (last))) == NULL_TREE)
15282 return true;
15283 return false;
15284 case UNION_TYPE:
15285 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15286 {
15287 if (TREE_CODE (x) == FIELD_DECL
15288 && flexible_array_type_p (TREE_TYPE (x)))
15289 return true;
15290 }
15291 return false;
15292 default:
15293 return false;
15294 }
15295 }
15296
15297 /* Like int_size_in_bytes, but handle empty records specially. */
15298
15299 HOST_WIDE_INT
15300 arg_int_size_in_bytes (const_tree type)
15301 {
15302 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
15303 }
15304
15305 /* Like size_in_bytes, but handle empty records specially. */
15306
15307 tree
15308 arg_size_in_bytes (const_tree type)
15309 {
15310 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
15311 }
15312
15313 /* Return true if an expression with CODE has to have the same result type as
15314 its first operand. */
15315
15316 bool
15317 expr_type_first_operand_type_p (tree_code code)
15318 {
15319 switch (code)
15320 {
15321 case NEGATE_EXPR:
15322 case ABS_EXPR:
15323 case BIT_NOT_EXPR:
15324 case PAREN_EXPR:
15325 case CONJ_EXPR:
15326
15327 case PLUS_EXPR:
15328 case MINUS_EXPR:
15329 case MULT_EXPR:
15330 case TRUNC_DIV_EXPR:
15331 case CEIL_DIV_EXPR:
15332 case FLOOR_DIV_EXPR:
15333 case ROUND_DIV_EXPR:
15334 case TRUNC_MOD_EXPR:
15335 case CEIL_MOD_EXPR:
15336 case FLOOR_MOD_EXPR:
15337 case ROUND_MOD_EXPR:
15338 case RDIV_EXPR:
15339 case EXACT_DIV_EXPR:
15340 case MIN_EXPR:
15341 case MAX_EXPR:
15342 case BIT_IOR_EXPR:
15343 case BIT_XOR_EXPR:
15344 case BIT_AND_EXPR:
15345
15346 case LSHIFT_EXPR:
15347 case RSHIFT_EXPR:
15348 case LROTATE_EXPR:
15349 case RROTATE_EXPR:
15350 return true;
15351
15352 default:
15353 return false;
15354 }
15355 }
15356
15357 /* Return a typenode for the "standard" C type with a given name. */
15358 tree
15359 get_typenode_from_name (const char *name)
15360 {
15361 if (name == NULL || *name == '\0')
15362 return NULL_TREE;
15363
15364 if (strcmp (name, "char") == 0)
15365 return char_type_node;
15366 if (strcmp (name, "unsigned char") == 0)
15367 return unsigned_char_type_node;
15368 if (strcmp (name, "signed char") == 0)
15369 return signed_char_type_node;
15370
15371 if (strcmp (name, "short int") == 0)
15372 return short_integer_type_node;
15373 if (strcmp (name, "short unsigned int") == 0)
15374 return short_unsigned_type_node;
15375
15376 if (strcmp (name, "int") == 0)
15377 return integer_type_node;
15378 if (strcmp (name, "unsigned int") == 0)
15379 return unsigned_type_node;
15380
15381 if (strcmp (name, "long int") == 0)
15382 return long_integer_type_node;
15383 if (strcmp (name, "long unsigned int") == 0)
15384 return long_unsigned_type_node;
15385
15386 if (strcmp (name, "long long int") == 0)
15387 return long_long_integer_type_node;
15388 if (strcmp (name, "long long unsigned int") == 0)
15389 return long_long_unsigned_type_node;
15390
15391 gcc_unreachable ();
15392 }
15393
15394 /* List of pointer types used to declare builtins before we have seen their
15395 real declaration.
15396
15397 Keep the size up to date in tree.h ! */
15398 const builtin_structptr_type builtin_structptr_types[6] =
15399 {
15400 { fileptr_type_node, ptr_type_node, "FILE" },
15401 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
15402 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
15403 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
15404 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
15405 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
15406 };
15407
15408 /* Return the maximum object size. */
15409
15410 tree
15411 max_object_size (void)
15412 {
15413 /* To do: Make this a configurable parameter. */
15414 return TYPE_MAX_VALUE (ptrdiff_type_node);
15415 }
15416
15417 /* A wrapper around TARGET_VERIFY_TYPE_CONTEXT that makes the silent_p
15418 parameter default to false and that weeds out error_mark_node. */
15419
15420 bool
15421 verify_type_context (location_t loc, type_context_kind context,
15422 const_tree type, bool silent_p)
15423 {
15424 if (type == error_mark_node)
15425 return true;
15426
15427 gcc_assert (TYPE_P (type));
15428 return (!targetm.verify_type_context
15429 || targetm.verify_type_context (loc, context, type, silent_p));
15430 }
15431
15432 /* Return that NEW_ASM and DELETE_ASM name a valid pair of new and
15433 delete operators. */
15434
15435 bool
15436 valid_new_delete_pair_p (tree new_asm, tree delete_asm)
15437 {
15438 const char *new_name = IDENTIFIER_POINTER (new_asm);
15439 const char *delete_name = IDENTIFIER_POINTER (delete_asm);
15440 unsigned int new_len = IDENTIFIER_LENGTH (new_asm);
15441 unsigned int delete_len = IDENTIFIER_LENGTH (delete_asm);
15442
15443 if (new_len < 5 || delete_len < 6)
15444 return false;
15445 if (new_name[0] == '_')
15446 ++new_name, --new_len;
15447 if (new_name[0] == '_')
15448 ++new_name, --new_len;
15449 if (delete_name[0] == '_')
15450 ++delete_name, --delete_len;
15451 if (delete_name[0] == '_')
15452 ++delete_name, --delete_len;
15453 if (new_len < 4 || delete_len < 5)
15454 return false;
15455 /* *_len is now just the length after initial underscores. */
15456 if (new_name[0] != 'Z' || new_name[1] != 'n')
15457 return false;
15458 if (delete_name[0] != 'Z' || delete_name[1] != 'd')
15459 return false;
15460 /* _Znw must match _Zdl, _Zna must match _Zda. */
15461 if ((new_name[2] != 'w' || delete_name[2] != 'l')
15462 && (new_name[2] != 'a' || delete_name[2] != 'a'))
15463 return false;
15464 /* 'j', 'm' and 'y' correspond to size_t. */
15465 if (new_name[3] != 'j' && new_name[3] != 'm' && new_name[3] != 'y')
15466 return false;
15467 if (delete_name[3] != 'P' || delete_name[4] != 'v')
15468 return false;
15469 if (new_len == 4
15470 || (new_len == 18 && !memcmp (new_name + 4, "RKSt9nothrow_t", 14)))
15471 {
15472 /* _ZnXY or _ZnXYRKSt9nothrow_t matches
15473 _ZdXPv, _ZdXPvY and _ZdXPvRKSt9nothrow_t. */
15474 if (delete_len == 5)
15475 return true;
15476 if (delete_len == 6 && delete_name[5] == new_name[3])
15477 return true;
15478 if (delete_len == 19 && !memcmp (delete_name + 5, "RKSt9nothrow_t", 14))
15479 return true;
15480 }
15481 else if ((new_len == 19 && !memcmp (new_name + 4, "St11align_val_t", 15))
15482 || (new_len == 33
15483 && !memcmp (new_name + 4, "St11align_val_tRKSt9nothrow_t", 29)))
15484 {
15485 /* _ZnXYSt11align_val_t or _ZnXYSt11align_val_tRKSt9nothrow_t matches
15486 _ZdXPvSt11align_val_t or _ZdXPvYSt11align_val_t or or
15487 _ZdXPvSt11align_val_tRKSt9nothrow_t. */
15488 if (delete_len == 20 && !memcmp (delete_name + 5, "St11align_val_t", 15))
15489 return true;
15490 if (delete_len == 21
15491 && delete_name[5] == new_name[3]
15492 && !memcmp (delete_name + 6, "St11align_val_t", 15))
15493 return true;
15494 if (delete_len == 34
15495 && !memcmp (delete_name + 5, "St11align_val_tRKSt9nothrow_t", 29))
15496 return true;
15497 }
15498 return false;
15499 }
15500
15501 #if CHECKING_P
15502
15503 namespace selftest {
15504
15505 /* Selftests for tree. */
15506
15507 /* Verify that integer constants are sane. */
15508
15509 static void
15510 test_integer_constants ()
15511 {
15512 ASSERT_TRUE (integer_type_node != NULL);
15513 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
15514
15515 tree type = integer_type_node;
15516
15517 tree zero = build_zero_cst (type);
15518 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
15519 ASSERT_EQ (type, TREE_TYPE (zero));
15520
15521 tree one = build_int_cst (type, 1);
15522 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
15523 ASSERT_EQ (type, TREE_TYPE (zero));
15524 }
15525
15526 /* Verify identifiers. */
15527
15528 static void
15529 test_identifiers ()
15530 {
15531 tree identifier = get_identifier ("foo");
15532 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
15533 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
15534 }
15535
15536 /* Verify LABEL_DECL. */
15537
15538 static void
15539 test_labels ()
15540 {
15541 tree identifier = get_identifier ("err");
15542 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
15543 identifier, void_type_node);
15544 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
15545 ASSERT_FALSE (FORCED_LABEL (label_decl));
15546 }
15547
15548 /* Return a new VECTOR_CST node whose type is TYPE and whose values
15549 are given by VALS. */
15550
15551 static tree
15552 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
15553 {
15554 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
15555 tree_vector_builder builder (type, vals.length (), 1);
15556 builder.splice (vals);
15557 return builder.build ();
15558 }
15559
15560 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
15561
15562 static void
15563 check_vector_cst (vec<tree> expected, tree actual)
15564 {
15565 ASSERT_KNOWN_EQ (expected.length (),
15566 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
15567 for (unsigned int i = 0; i < expected.length (); ++i)
15568 ASSERT_EQ (wi::to_wide (expected[i]),
15569 wi::to_wide (vector_cst_elt (actual, i)));
15570 }
15571
15572 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
15573 and that its elements match EXPECTED. */
15574
15575 static void
15576 check_vector_cst_duplicate (vec<tree> expected, tree actual,
15577 unsigned int npatterns)
15578 {
15579 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15580 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
15581 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
15582 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
15583 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15584 check_vector_cst (expected, actual);
15585 }
15586
15587 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
15588 and NPATTERNS background elements, and that its elements match
15589 EXPECTED. */
15590
15591 static void
15592 check_vector_cst_fill (vec<tree> expected, tree actual,
15593 unsigned int npatterns)
15594 {
15595 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15596 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
15597 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
15598 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15599 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15600 check_vector_cst (expected, actual);
15601 }
15602
15603 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
15604 and that its elements match EXPECTED. */
15605
15606 static void
15607 check_vector_cst_stepped (vec<tree> expected, tree actual,
15608 unsigned int npatterns)
15609 {
15610 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15611 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
15612 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
15613 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15614 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
15615 check_vector_cst (expected, actual);
15616 }
15617
15618 /* Test the creation of VECTOR_CSTs. */
15619
15620 static void
15621 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
15622 {
15623 auto_vec<tree, 8> elements (8);
15624 elements.quick_grow (8);
15625 tree element_type = build_nonstandard_integer_type (16, true);
15626 tree vector_type = build_vector_type (element_type, 8);
15627
15628 /* Test a simple linear series with a base of 0 and a step of 1:
15629 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
15630 for (unsigned int i = 0; i < 8; ++i)
15631 elements[i] = build_int_cst (element_type, i);
15632 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
15633 check_vector_cst_stepped (elements, vector, 1);
15634
15635 /* Try the same with the first element replaced by 100:
15636 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
15637 elements[0] = build_int_cst (element_type, 100);
15638 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15639 check_vector_cst_stepped (elements, vector, 1);
15640
15641 /* Try a series that wraps around.
15642 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
15643 for (unsigned int i = 1; i < 8; ++i)
15644 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
15645 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15646 check_vector_cst_stepped (elements, vector, 1);
15647
15648 /* Try a downward series:
15649 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
15650 for (unsigned int i = 1; i < 8; ++i)
15651 elements[i] = build_int_cst (element_type, 80 - i);
15652 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15653 check_vector_cst_stepped (elements, vector, 1);
15654
15655 /* Try two interleaved series with different bases and steps:
15656 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
15657 elements[1] = build_int_cst (element_type, 53);
15658 for (unsigned int i = 2; i < 8; i += 2)
15659 {
15660 elements[i] = build_int_cst (element_type, 70 - i * 2);
15661 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
15662 }
15663 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15664 check_vector_cst_stepped (elements, vector, 2);
15665
15666 /* Try a duplicated value:
15667 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
15668 for (unsigned int i = 1; i < 8; ++i)
15669 elements[i] = elements[0];
15670 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15671 check_vector_cst_duplicate (elements, vector, 1);
15672
15673 /* Try an interleaved duplicated value:
15674 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
15675 elements[1] = build_int_cst (element_type, 55);
15676 for (unsigned int i = 2; i < 8; ++i)
15677 elements[i] = elements[i - 2];
15678 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15679 check_vector_cst_duplicate (elements, vector, 2);
15680
15681 /* Try a duplicated value with 2 exceptions
15682 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
15683 elements[0] = build_int_cst (element_type, 41);
15684 elements[1] = build_int_cst (element_type, 97);
15685 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15686 check_vector_cst_fill (elements, vector, 2);
15687
15688 /* Try with and without a step
15689 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
15690 for (unsigned int i = 3; i < 8; i += 2)
15691 elements[i] = build_int_cst (element_type, i * 7);
15692 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15693 check_vector_cst_stepped (elements, vector, 2);
15694
15695 /* Try a fully-general constant:
15696 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
15697 elements[5] = build_int_cst (element_type, 9990);
15698 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15699 check_vector_cst_fill (elements, vector, 4);
15700 }
15701
15702 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
15703 Helper function for test_location_wrappers, to deal with STRIP_NOPS
15704 modifying its argument in-place. */
15705
15706 static void
15707 check_strip_nops (tree node, tree expected)
15708 {
15709 STRIP_NOPS (node);
15710 ASSERT_EQ (expected, node);
15711 }
15712
15713 /* Verify location wrappers. */
15714
15715 static void
15716 test_location_wrappers ()
15717 {
15718 location_t loc = BUILTINS_LOCATION;
15719
15720 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
15721
15722 /* Wrapping a constant. */
15723 tree int_cst = build_int_cst (integer_type_node, 42);
15724 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
15725 ASSERT_FALSE (location_wrapper_p (int_cst));
15726
15727 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
15728 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
15729 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
15730 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
15731
15732 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
15733 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
15734
15735 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
15736 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
15737 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
15738 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
15739
15740 /* Wrapping a STRING_CST. */
15741 tree string_cst = build_string (4, "foo");
15742 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
15743 ASSERT_FALSE (location_wrapper_p (string_cst));
15744
15745 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
15746 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
15747 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
15748 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
15749 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
15750
15751
15752 /* Wrapping a variable. */
15753 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
15754 get_identifier ("some_int_var"),
15755 integer_type_node);
15756 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
15757 ASSERT_FALSE (location_wrapper_p (int_var));
15758
15759 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
15760 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
15761 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
15762 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
15763
15764 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
15765 wrapper. */
15766 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
15767 ASSERT_FALSE (location_wrapper_p (r_cast));
15768 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
15769
15770 /* Verify that STRIP_NOPS removes wrappers. */
15771 check_strip_nops (wrapped_int_cst, int_cst);
15772 check_strip_nops (wrapped_string_cst, string_cst);
15773 check_strip_nops (wrapped_int_var, int_var);
15774 }
15775
15776 /* Test various tree predicates. Verify that location wrappers don't
15777 affect the results. */
15778
15779 static void
15780 test_predicates ()
15781 {
15782 /* Build various constants and wrappers around them. */
15783
15784 location_t loc = BUILTINS_LOCATION;
15785
15786 tree i_0 = build_int_cst (integer_type_node, 0);
15787 tree wr_i_0 = maybe_wrap_with_location (i_0, loc);
15788
15789 tree i_1 = build_int_cst (integer_type_node, 1);
15790 tree wr_i_1 = maybe_wrap_with_location (i_1, loc);
15791
15792 tree i_m1 = build_int_cst (integer_type_node, -1);
15793 tree wr_i_m1 = maybe_wrap_with_location (i_m1, loc);
15794
15795 tree f_0 = build_real_from_int_cst (float_type_node, i_0);
15796 tree wr_f_0 = maybe_wrap_with_location (f_0, loc);
15797 tree f_1 = build_real_from_int_cst (float_type_node, i_1);
15798 tree wr_f_1 = maybe_wrap_with_location (f_1, loc);
15799 tree f_m1 = build_real_from_int_cst (float_type_node, i_m1);
15800 tree wr_f_m1 = maybe_wrap_with_location (f_m1, loc);
15801
15802 tree c_i_0 = build_complex (NULL_TREE, i_0, i_0);
15803 tree c_i_1 = build_complex (NULL_TREE, i_1, i_0);
15804 tree c_i_m1 = build_complex (NULL_TREE, i_m1, i_0);
15805
15806 tree c_f_0 = build_complex (NULL_TREE, f_0, f_0);
15807 tree c_f_1 = build_complex (NULL_TREE, f_1, f_0);
15808 tree c_f_m1 = build_complex (NULL_TREE, f_m1, f_0);
15809
15810 /* TODO: vector constants. */
15811
15812 /* Test integer_onep. */
15813 ASSERT_FALSE (integer_onep (i_0));
15814 ASSERT_FALSE (integer_onep (wr_i_0));
15815 ASSERT_TRUE (integer_onep (i_1));
15816 ASSERT_TRUE (integer_onep (wr_i_1));
15817 ASSERT_FALSE (integer_onep (i_m1));
15818 ASSERT_FALSE (integer_onep (wr_i_m1));
15819 ASSERT_FALSE (integer_onep (f_0));
15820 ASSERT_FALSE (integer_onep (wr_f_0));
15821 ASSERT_FALSE (integer_onep (f_1));
15822 ASSERT_FALSE (integer_onep (wr_f_1));
15823 ASSERT_FALSE (integer_onep (f_m1));
15824 ASSERT_FALSE (integer_onep (wr_f_m1));
15825 ASSERT_FALSE (integer_onep (c_i_0));
15826 ASSERT_TRUE (integer_onep (c_i_1));
15827 ASSERT_FALSE (integer_onep (c_i_m1));
15828 ASSERT_FALSE (integer_onep (c_f_0));
15829 ASSERT_FALSE (integer_onep (c_f_1));
15830 ASSERT_FALSE (integer_onep (c_f_m1));
15831
15832 /* Test integer_zerop. */
15833 ASSERT_TRUE (integer_zerop (i_0));
15834 ASSERT_TRUE (integer_zerop (wr_i_0));
15835 ASSERT_FALSE (integer_zerop (i_1));
15836 ASSERT_FALSE (integer_zerop (wr_i_1));
15837 ASSERT_FALSE (integer_zerop (i_m1));
15838 ASSERT_FALSE (integer_zerop (wr_i_m1));
15839 ASSERT_FALSE (integer_zerop (f_0));
15840 ASSERT_FALSE (integer_zerop (wr_f_0));
15841 ASSERT_FALSE (integer_zerop (f_1));
15842 ASSERT_FALSE (integer_zerop (wr_f_1));
15843 ASSERT_FALSE (integer_zerop (f_m1));
15844 ASSERT_FALSE (integer_zerop (wr_f_m1));
15845 ASSERT_TRUE (integer_zerop (c_i_0));
15846 ASSERT_FALSE (integer_zerop (c_i_1));
15847 ASSERT_FALSE (integer_zerop (c_i_m1));
15848 ASSERT_FALSE (integer_zerop (c_f_0));
15849 ASSERT_FALSE (integer_zerop (c_f_1));
15850 ASSERT_FALSE (integer_zerop (c_f_m1));
15851
15852 /* Test integer_all_onesp. */
15853 ASSERT_FALSE (integer_all_onesp (i_0));
15854 ASSERT_FALSE (integer_all_onesp (wr_i_0));
15855 ASSERT_FALSE (integer_all_onesp (i_1));
15856 ASSERT_FALSE (integer_all_onesp (wr_i_1));
15857 ASSERT_TRUE (integer_all_onesp (i_m1));
15858 ASSERT_TRUE (integer_all_onesp (wr_i_m1));
15859 ASSERT_FALSE (integer_all_onesp (f_0));
15860 ASSERT_FALSE (integer_all_onesp (wr_f_0));
15861 ASSERT_FALSE (integer_all_onesp (f_1));
15862 ASSERT_FALSE (integer_all_onesp (wr_f_1));
15863 ASSERT_FALSE (integer_all_onesp (f_m1));
15864 ASSERT_FALSE (integer_all_onesp (wr_f_m1));
15865 ASSERT_FALSE (integer_all_onesp (c_i_0));
15866 ASSERT_FALSE (integer_all_onesp (c_i_1));
15867 ASSERT_FALSE (integer_all_onesp (c_i_m1));
15868 ASSERT_FALSE (integer_all_onesp (c_f_0));
15869 ASSERT_FALSE (integer_all_onesp (c_f_1));
15870 ASSERT_FALSE (integer_all_onesp (c_f_m1));
15871
15872 /* Test integer_minus_onep. */
15873 ASSERT_FALSE (integer_minus_onep (i_0));
15874 ASSERT_FALSE (integer_minus_onep (wr_i_0));
15875 ASSERT_FALSE (integer_minus_onep (i_1));
15876 ASSERT_FALSE (integer_minus_onep (wr_i_1));
15877 ASSERT_TRUE (integer_minus_onep (i_m1));
15878 ASSERT_TRUE (integer_minus_onep (wr_i_m1));
15879 ASSERT_FALSE (integer_minus_onep (f_0));
15880 ASSERT_FALSE (integer_minus_onep (wr_f_0));
15881 ASSERT_FALSE (integer_minus_onep (f_1));
15882 ASSERT_FALSE (integer_minus_onep (wr_f_1));
15883 ASSERT_FALSE (integer_minus_onep (f_m1));
15884 ASSERT_FALSE (integer_minus_onep (wr_f_m1));
15885 ASSERT_FALSE (integer_minus_onep (c_i_0));
15886 ASSERT_FALSE (integer_minus_onep (c_i_1));
15887 ASSERT_TRUE (integer_minus_onep (c_i_m1));
15888 ASSERT_FALSE (integer_minus_onep (c_f_0));
15889 ASSERT_FALSE (integer_minus_onep (c_f_1));
15890 ASSERT_FALSE (integer_minus_onep (c_f_m1));
15891
15892 /* Test integer_each_onep. */
15893 ASSERT_FALSE (integer_each_onep (i_0));
15894 ASSERT_FALSE (integer_each_onep (wr_i_0));
15895 ASSERT_TRUE (integer_each_onep (i_1));
15896 ASSERT_TRUE (integer_each_onep (wr_i_1));
15897 ASSERT_FALSE (integer_each_onep (i_m1));
15898 ASSERT_FALSE (integer_each_onep (wr_i_m1));
15899 ASSERT_FALSE (integer_each_onep (f_0));
15900 ASSERT_FALSE (integer_each_onep (wr_f_0));
15901 ASSERT_FALSE (integer_each_onep (f_1));
15902 ASSERT_FALSE (integer_each_onep (wr_f_1));
15903 ASSERT_FALSE (integer_each_onep (f_m1));
15904 ASSERT_FALSE (integer_each_onep (wr_f_m1));
15905 ASSERT_FALSE (integer_each_onep (c_i_0));
15906 ASSERT_FALSE (integer_each_onep (c_i_1));
15907 ASSERT_FALSE (integer_each_onep (c_i_m1));
15908 ASSERT_FALSE (integer_each_onep (c_f_0));
15909 ASSERT_FALSE (integer_each_onep (c_f_1));
15910 ASSERT_FALSE (integer_each_onep (c_f_m1));
15911
15912 /* Test integer_truep. */
15913 ASSERT_FALSE (integer_truep (i_0));
15914 ASSERT_FALSE (integer_truep (wr_i_0));
15915 ASSERT_TRUE (integer_truep (i_1));
15916 ASSERT_TRUE (integer_truep (wr_i_1));
15917 ASSERT_FALSE (integer_truep (i_m1));
15918 ASSERT_FALSE (integer_truep (wr_i_m1));
15919 ASSERT_FALSE (integer_truep (f_0));
15920 ASSERT_FALSE (integer_truep (wr_f_0));
15921 ASSERT_FALSE (integer_truep (f_1));
15922 ASSERT_FALSE (integer_truep (wr_f_1));
15923 ASSERT_FALSE (integer_truep (f_m1));
15924 ASSERT_FALSE (integer_truep (wr_f_m1));
15925 ASSERT_FALSE (integer_truep (c_i_0));
15926 ASSERT_TRUE (integer_truep (c_i_1));
15927 ASSERT_FALSE (integer_truep (c_i_m1));
15928 ASSERT_FALSE (integer_truep (c_f_0));
15929 ASSERT_FALSE (integer_truep (c_f_1));
15930 ASSERT_FALSE (integer_truep (c_f_m1));
15931
15932 /* Test integer_nonzerop. */
15933 ASSERT_FALSE (integer_nonzerop (i_0));
15934 ASSERT_FALSE (integer_nonzerop (wr_i_0));
15935 ASSERT_TRUE (integer_nonzerop (i_1));
15936 ASSERT_TRUE (integer_nonzerop (wr_i_1));
15937 ASSERT_TRUE (integer_nonzerop (i_m1));
15938 ASSERT_TRUE (integer_nonzerop (wr_i_m1));
15939 ASSERT_FALSE (integer_nonzerop (f_0));
15940 ASSERT_FALSE (integer_nonzerop (wr_f_0));
15941 ASSERT_FALSE (integer_nonzerop (f_1));
15942 ASSERT_FALSE (integer_nonzerop (wr_f_1));
15943 ASSERT_FALSE (integer_nonzerop (f_m1));
15944 ASSERT_FALSE (integer_nonzerop (wr_f_m1));
15945 ASSERT_FALSE (integer_nonzerop (c_i_0));
15946 ASSERT_TRUE (integer_nonzerop (c_i_1));
15947 ASSERT_TRUE (integer_nonzerop (c_i_m1));
15948 ASSERT_FALSE (integer_nonzerop (c_f_0));
15949 ASSERT_FALSE (integer_nonzerop (c_f_1));
15950 ASSERT_FALSE (integer_nonzerop (c_f_m1));
15951
15952 /* Test real_zerop. */
15953 ASSERT_FALSE (real_zerop (i_0));
15954 ASSERT_FALSE (real_zerop (wr_i_0));
15955 ASSERT_FALSE (real_zerop (i_1));
15956 ASSERT_FALSE (real_zerop (wr_i_1));
15957 ASSERT_FALSE (real_zerop (i_m1));
15958 ASSERT_FALSE (real_zerop (wr_i_m1));
15959 ASSERT_TRUE (real_zerop (f_0));
15960 ASSERT_TRUE (real_zerop (wr_f_0));
15961 ASSERT_FALSE (real_zerop (f_1));
15962 ASSERT_FALSE (real_zerop (wr_f_1));
15963 ASSERT_FALSE (real_zerop (f_m1));
15964 ASSERT_FALSE (real_zerop (wr_f_m1));
15965 ASSERT_FALSE (real_zerop (c_i_0));
15966 ASSERT_FALSE (real_zerop (c_i_1));
15967 ASSERT_FALSE (real_zerop (c_i_m1));
15968 ASSERT_TRUE (real_zerop (c_f_0));
15969 ASSERT_FALSE (real_zerop (c_f_1));
15970 ASSERT_FALSE (real_zerop (c_f_m1));
15971
15972 /* Test real_onep. */
15973 ASSERT_FALSE (real_onep (i_0));
15974 ASSERT_FALSE (real_onep (wr_i_0));
15975 ASSERT_FALSE (real_onep (i_1));
15976 ASSERT_FALSE (real_onep (wr_i_1));
15977 ASSERT_FALSE (real_onep (i_m1));
15978 ASSERT_FALSE (real_onep (wr_i_m1));
15979 ASSERT_FALSE (real_onep (f_0));
15980 ASSERT_FALSE (real_onep (wr_f_0));
15981 ASSERT_TRUE (real_onep (f_1));
15982 ASSERT_TRUE (real_onep (wr_f_1));
15983 ASSERT_FALSE (real_onep (f_m1));
15984 ASSERT_FALSE (real_onep (wr_f_m1));
15985 ASSERT_FALSE (real_onep (c_i_0));
15986 ASSERT_FALSE (real_onep (c_i_1));
15987 ASSERT_FALSE (real_onep (c_i_m1));
15988 ASSERT_FALSE (real_onep (c_f_0));
15989 ASSERT_TRUE (real_onep (c_f_1));
15990 ASSERT_FALSE (real_onep (c_f_m1));
15991
15992 /* Test real_minus_onep. */
15993 ASSERT_FALSE (real_minus_onep (i_0));
15994 ASSERT_FALSE (real_minus_onep (wr_i_0));
15995 ASSERT_FALSE (real_minus_onep (i_1));
15996 ASSERT_FALSE (real_minus_onep (wr_i_1));
15997 ASSERT_FALSE (real_minus_onep (i_m1));
15998 ASSERT_FALSE (real_minus_onep (wr_i_m1));
15999 ASSERT_FALSE (real_minus_onep (f_0));
16000 ASSERT_FALSE (real_minus_onep (wr_f_0));
16001 ASSERT_FALSE (real_minus_onep (f_1));
16002 ASSERT_FALSE (real_minus_onep (wr_f_1));
16003 ASSERT_TRUE (real_minus_onep (f_m1));
16004 ASSERT_TRUE (real_minus_onep (wr_f_m1));
16005 ASSERT_FALSE (real_minus_onep (c_i_0));
16006 ASSERT_FALSE (real_minus_onep (c_i_1));
16007 ASSERT_FALSE (real_minus_onep (c_i_m1));
16008 ASSERT_FALSE (real_minus_onep (c_f_0));
16009 ASSERT_FALSE (real_minus_onep (c_f_1));
16010 ASSERT_TRUE (real_minus_onep (c_f_m1));
16011
16012 /* Test zerop. */
16013 ASSERT_TRUE (zerop (i_0));
16014 ASSERT_TRUE (zerop (wr_i_0));
16015 ASSERT_FALSE (zerop (i_1));
16016 ASSERT_FALSE (zerop (wr_i_1));
16017 ASSERT_FALSE (zerop (i_m1));
16018 ASSERT_FALSE (zerop (wr_i_m1));
16019 ASSERT_TRUE (zerop (f_0));
16020 ASSERT_TRUE (zerop (wr_f_0));
16021 ASSERT_FALSE (zerop (f_1));
16022 ASSERT_FALSE (zerop (wr_f_1));
16023 ASSERT_FALSE (zerop (f_m1));
16024 ASSERT_FALSE (zerop (wr_f_m1));
16025 ASSERT_TRUE (zerop (c_i_0));
16026 ASSERT_FALSE (zerop (c_i_1));
16027 ASSERT_FALSE (zerop (c_i_m1));
16028 ASSERT_TRUE (zerop (c_f_0));
16029 ASSERT_FALSE (zerop (c_f_1));
16030 ASSERT_FALSE (zerop (c_f_m1));
16031
16032 /* Test tree_expr_nonnegative_p. */
16033 ASSERT_TRUE (tree_expr_nonnegative_p (i_0));
16034 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_0));
16035 ASSERT_TRUE (tree_expr_nonnegative_p (i_1));
16036 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_1));
16037 ASSERT_FALSE (tree_expr_nonnegative_p (i_m1));
16038 ASSERT_FALSE (tree_expr_nonnegative_p (wr_i_m1));
16039 ASSERT_TRUE (tree_expr_nonnegative_p (f_0));
16040 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_0));
16041 ASSERT_TRUE (tree_expr_nonnegative_p (f_1));
16042 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_1));
16043 ASSERT_FALSE (tree_expr_nonnegative_p (f_m1));
16044 ASSERT_FALSE (tree_expr_nonnegative_p (wr_f_m1));
16045 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_0));
16046 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_1));
16047 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_m1));
16048 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_0));
16049 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_1));
16050 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_m1));
16051
16052 /* Test tree_expr_nonzero_p. */
16053 ASSERT_FALSE (tree_expr_nonzero_p (i_0));
16054 ASSERT_FALSE (tree_expr_nonzero_p (wr_i_0));
16055 ASSERT_TRUE (tree_expr_nonzero_p (i_1));
16056 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_1));
16057 ASSERT_TRUE (tree_expr_nonzero_p (i_m1));
16058 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_m1));
16059
16060 /* Test integer_valued_real_p. */
16061 ASSERT_FALSE (integer_valued_real_p (i_0));
16062 ASSERT_TRUE (integer_valued_real_p (f_0));
16063 ASSERT_TRUE (integer_valued_real_p (wr_f_0));
16064 ASSERT_TRUE (integer_valued_real_p (f_1));
16065 ASSERT_TRUE (integer_valued_real_p (wr_f_1));
16066
16067 /* Test integer_pow2p. */
16068 ASSERT_FALSE (integer_pow2p (i_0));
16069 ASSERT_TRUE (integer_pow2p (i_1));
16070 ASSERT_TRUE (integer_pow2p (wr_i_1));
16071
16072 /* Test uniform_integer_cst_p. */
16073 ASSERT_TRUE (uniform_integer_cst_p (i_0));
16074 ASSERT_TRUE (uniform_integer_cst_p (wr_i_0));
16075 ASSERT_TRUE (uniform_integer_cst_p (i_1));
16076 ASSERT_TRUE (uniform_integer_cst_p (wr_i_1));
16077 ASSERT_TRUE (uniform_integer_cst_p (i_m1));
16078 ASSERT_TRUE (uniform_integer_cst_p (wr_i_m1));
16079 ASSERT_FALSE (uniform_integer_cst_p (f_0));
16080 ASSERT_FALSE (uniform_integer_cst_p (wr_f_0));
16081 ASSERT_FALSE (uniform_integer_cst_p (f_1));
16082 ASSERT_FALSE (uniform_integer_cst_p (wr_f_1));
16083 ASSERT_FALSE (uniform_integer_cst_p (f_m1));
16084 ASSERT_FALSE (uniform_integer_cst_p (wr_f_m1));
16085 ASSERT_FALSE (uniform_integer_cst_p (c_i_0));
16086 ASSERT_FALSE (uniform_integer_cst_p (c_i_1));
16087 ASSERT_FALSE (uniform_integer_cst_p (c_i_m1));
16088 ASSERT_FALSE (uniform_integer_cst_p (c_f_0));
16089 ASSERT_FALSE (uniform_integer_cst_p (c_f_1));
16090 ASSERT_FALSE (uniform_integer_cst_p (c_f_m1));
16091 }
16092
16093 /* Check that string escaping works correctly. */
16094
16095 static void
16096 test_escaped_strings (void)
16097 {
16098 int saved_cutoff;
16099 escaped_string msg;
16100
16101 msg.escape (NULL);
16102 /* ASSERT_STREQ does not accept NULL as a valid test
16103 result, so we have to use ASSERT_EQ instead. */
16104 ASSERT_EQ (NULL, (const char *) msg);
16105
16106 msg.escape ("");
16107 ASSERT_STREQ ("", (const char *) msg);
16108
16109 msg.escape ("foobar");
16110 ASSERT_STREQ ("foobar", (const char *) msg);
16111
16112 /* Ensure that we have -fmessage-length set to 0. */
16113 saved_cutoff = pp_line_cutoff (global_dc->printer);
16114 pp_line_cutoff (global_dc->printer) = 0;
16115
16116 msg.escape ("foo\nbar");
16117 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
16118
16119 msg.escape ("\a\b\f\n\r\t\v");
16120 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
16121
16122 /* Now repeat the tests with -fmessage-length set to 5. */
16123 pp_line_cutoff (global_dc->printer) = 5;
16124
16125 /* Note that the newline is not translated into an escape. */
16126 msg.escape ("foo\nbar");
16127 ASSERT_STREQ ("foo\nbar", (const char *) msg);
16128
16129 msg.escape ("\a\b\f\n\r\t\v");
16130 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
16131
16132 /* Restore the original message length setting. */
16133 pp_line_cutoff (global_dc->printer) = saved_cutoff;
16134 }
16135
16136 /* Run all of the selftests within this file. */
16137
16138 void
16139 tree_c_tests ()
16140 {
16141 test_integer_constants ();
16142 test_identifiers ();
16143 test_labels ();
16144 test_vector_cst_patterns ();
16145 test_location_wrappers ();
16146 test_predicates ();
16147 test_escaped_strings ();
16148 }
16149
16150 } // namespace selftest
16151
16152 #endif /* CHECKING_P */
16153
16154 #include "gt-tree.h"