]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/tree.c
Do not release body of declare_variant_alt
[thirdparty/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 && !node->declare_variant_alt)
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 && TYPE_USER_ALIGN (cand) == TYPE_USER_ALIGN (base))
6578 return true;
6579 /* Atomic types increase minimal alignment. We must to do so as well
6580 or we get duplicated canonical types. See PR88686. */
6581 if ((TYPE_QUALS (cand) & TYPE_QUAL_ATOMIC))
6582 {
6583 /* See if this object can map to a basic atomic type. */
6584 tree atomic_type = find_atomic_core_type (cand);
6585 if (atomic_type && TYPE_ALIGN (atomic_type) == TYPE_ALIGN (cand))
6586 return true;
6587 }
6588 return false;
6589 }
6590
6591 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6592
6593 bool
6594 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6595 {
6596 return (TYPE_QUALS (cand) == type_quals
6597 && check_base_type (cand, base)
6598 && check_lang_type (cand, base));
6599 }
6600
6601 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6602
6603 static bool
6604 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6605 {
6606 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6607 && TYPE_NAME (cand) == TYPE_NAME (base)
6608 /* Apparently this is needed for Objective-C. */
6609 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6610 /* Check alignment. */
6611 && TYPE_ALIGN (cand) == align
6612 /* Check this is a user-aligned type as build_aligned_type
6613 would create. */
6614 && TYPE_USER_ALIGN (cand)
6615 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6616 TYPE_ATTRIBUTES (base))
6617 && check_lang_type (cand, base));
6618 }
6619
6620 /* Return a version of the TYPE, qualified as indicated by the
6621 TYPE_QUALS, if one exists. If no qualified version exists yet,
6622 return NULL_TREE. */
6623
6624 tree
6625 get_qualified_type (tree type, int type_quals)
6626 {
6627 if (TYPE_QUALS (type) == type_quals)
6628 return type;
6629
6630 tree mv = TYPE_MAIN_VARIANT (type);
6631 if (check_qualified_type (mv, type, type_quals))
6632 return mv;
6633
6634 /* Search the chain of variants to see if there is already one there just
6635 like the one we need to have. If so, use that existing one. We must
6636 preserve the TYPE_NAME, since there is code that depends on this. */
6637 for (tree *tp = &TYPE_NEXT_VARIANT (mv); *tp; tp = &TYPE_NEXT_VARIANT (*tp))
6638 if (check_qualified_type (*tp, type, type_quals))
6639 {
6640 /* Put the found variant at the head of the variant list so
6641 frequently searched variants get found faster. The C++ FE
6642 benefits greatly from this. */
6643 tree t = *tp;
6644 *tp = TYPE_NEXT_VARIANT (t);
6645 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
6646 TYPE_NEXT_VARIANT (mv) = t;
6647 return t;
6648 }
6649
6650 return NULL_TREE;
6651 }
6652
6653 /* Like get_qualified_type, but creates the type if it does not
6654 exist. This function never returns NULL_TREE. */
6655
6656 tree
6657 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6658 {
6659 tree t;
6660
6661 /* See if we already have the appropriate qualified variant. */
6662 t = get_qualified_type (type, type_quals);
6663
6664 /* If not, build it. */
6665 if (!t)
6666 {
6667 t = build_variant_type_copy (type PASS_MEM_STAT);
6668 set_type_quals (t, type_quals);
6669
6670 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6671 {
6672 /* See if this object can map to a basic atomic type. */
6673 tree atomic_type = find_atomic_core_type (type);
6674 if (atomic_type)
6675 {
6676 /* Ensure the alignment of this type is compatible with
6677 the required alignment of the atomic type. */
6678 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6679 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6680 }
6681 }
6682
6683 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6684 /* Propagate structural equality. */
6685 SET_TYPE_STRUCTURAL_EQUALITY (t);
6686 else if (TYPE_CANONICAL (type) != type)
6687 /* Build the underlying canonical type, since it is different
6688 from TYPE. */
6689 {
6690 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6691 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6692 }
6693 else
6694 /* T is its own canonical type. */
6695 TYPE_CANONICAL (t) = t;
6696
6697 }
6698
6699 return t;
6700 }
6701
6702 /* Create a variant of type T with alignment ALIGN. */
6703
6704 tree
6705 build_aligned_type (tree type, unsigned int align)
6706 {
6707 tree t;
6708
6709 if (TYPE_PACKED (type)
6710 || TYPE_ALIGN (type) == align)
6711 return type;
6712
6713 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6714 if (check_aligned_type (t, type, align))
6715 return t;
6716
6717 t = build_variant_type_copy (type);
6718 SET_TYPE_ALIGN (t, align);
6719 TYPE_USER_ALIGN (t) = 1;
6720
6721 return t;
6722 }
6723
6724 /* Create a new distinct copy of TYPE. The new type is made its own
6725 MAIN_VARIANT. If TYPE requires structural equality checks, the
6726 resulting type requires structural equality checks; otherwise, its
6727 TYPE_CANONICAL points to itself. */
6728
6729 tree
6730 build_distinct_type_copy (tree type MEM_STAT_DECL)
6731 {
6732 tree t = copy_node (type PASS_MEM_STAT);
6733
6734 TYPE_POINTER_TO (t) = 0;
6735 TYPE_REFERENCE_TO (t) = 0;
6736
6737 /* Set the canonical type either to a new equivalence class, or
6738 propagate the need for structural equality checks. */
6739 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6740 SET_TYPE_STRUCTURAL_EQUALITY (t);
6741 else
6742 TYPE_CANONICAL (t) = t;
6743
6744 /* Make it its own variant. */
6745 TYPE_MAIN_VARIANT (t) = t;
6746 TYPE_NEXT_VARIANT (t) = 0;
6747
6748 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6749 whose TREE_TYPE is not t. This can also happen in the Ada
6750 frontend when using subtypes. */
6751
6752 return t;
6753 }
6754
6755 /* Create a new variant of TYPE, equivalent but distinct. This is so
6756 the caller can modify it. TYPE_CANONICAL for the return type will
6757 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6758 are considered equal by the language itself (or that both types
6759 require structural equality checks). */
6760
6761 tree
6762 build_variant_type_copy (tree type MEM_STAT_DECL)
6763 {
6764 tree t, m = TYPE_MAIN_VARIANT (type);
6765
6766 t = build_distinct_type_copy (type PASS_MEM_STAT);
6767
6768 /* Since we're building a variant, assume that it is a non-semantic
6769 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6770 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6771 /* Type variants have no alias set defined. */
6772 TYPE_ALIAS_SET (t) = -1;
6773
6774 /* Add the new type to the chain of variants of TYPE. */
6775 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6776 TYPE_NEXT_VARIANT (m) = t;
6777 TYPE_MAIN_VARIANT (t) = m;
6778
6779 return t;
6780 }
6781 \f
6782 /* Return true if the from tree in both tree maps are equal. */
6783
6784 int
6785 tree_map_base_eq (const void *va, const void *vb)
6786 {
6787 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6788 *const b = (const struct tree_map_base *) vb;
6789 return (a->from == b->from);
6790 }
6791
6792 /* Hash a from tree in a tree_base_map. */
6793
6794 unsigned int
6795 tree_map_base_hash (const void *item)
6796 {
6797 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6798 }
6799
6800 /* Return true if this tree map structure is marked for garbage collection
6801 purposes. We simply return true if the from tree is marked, so that this
6802 structure goes away when the from tree goes away. */
6803
6804 int
6805 tree_map_base_marked_p (const void *p)
6806 {
6807 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6808 }
6809
6810 /* Hash a from tree in a tree_map. */
6811
6812 unsigned int
6813 tree_map_hash (const void *item)
6814 {
6815 return (((const struct tree_map *) item)->hash);
6816 }
6817
6818 /* Hash a from tree in a tree_decl_map. */
6819
6820 unsigned int
6821 tree_decl_map_hash (const void *item)
6822 {
6823 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6824 }
6825
6826 /* Return the initialization priority for DECL. */
6827
6828 priority_type
6829 decl_init_priority_lookup (tree decl)
6830 {
6831 symtab_node *snode = symtab_node::get (decl);
6832
6833 if (!snode)
6834 return DEFAULT_INIT_PRIORITY;
6835 return
6836 snode->get_init_priority ();
6837 }
6838
6839 /* Return the finalization priority for DECL. */
6840
6841 priority_type
6842 decl_fini_priority_lookup (tree decl)
6843 {
6844 cgraph_node *node = cgraph_node::get (decl);
6845
6846 if (!node)
6847 return DEFAULT_INIT_PRIORITY;
6848 return
6849 node->get_fini_priority ();
6850 }
6851
6852 /* Set the initialization priority for DECL to PRIORITY. */
6853
6854 void
6855 decl_init_priority_insert (tree decl, priority_type priority)
6856 {
6857 struct symtab_node *snode;
6858
6859 if (priority == DEFAULT_INIT_PRIORITY)
6860 {
6861 snode = symtab_node::get (decl);
6862 if (!snode)
6863 return;
6864 }
6865 else if (VAR_P (decl))
6866 snode = varpool_node::get_create (decl);
6867 else
6868 snode = cgraph_node::get_create (decl);
6869 snode->set_init_priority (priority);
6870 }
6871
6872 /* Set the finalization priority for DECL to PRIORITY. */
6873
6874 void
6875 decl_fini_priority_insert (tree decl, priority_type priority)
6876 {
6877 struct cgraph_node *node;
6878
6879 if (priority == DEFAULT_INIT_PRIORITY)
6880 {
6881 node = cgraph_node::get (decl);
6882 if (!node)
6883 return;
6884 }
6885 else
6886 node = cgraph_node::get_create (decl);
6887 node->set_fini_priority (priority);
6888 }
6889
6890 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6891
6892 static void
6893 print_debug_expr_statistics (void)
6894 {
6895 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6896 (long) debug_expr_for_decl->size (),
6897 (long) debug_expr_for_decl->elements (),
6898 debug_expr_for_decl->collisions ());
6899 }
6900
6901 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6902
6903 static void
6904 print_value_expr_statistics (void)
6905 {
6906 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6907 (long) value_expr_for_decl->size (),
6908 (long) value_expr_for_decl->elements (),
6909 value_expr_for_decl->collisions ());
6910 }
6911
6912 /* Lookup a debug expression for FROM, and return it if we find one. */
6913
6914 tree
6915 decl_debug_expr_lookup (tree from)
6916 {
6917 struct tree_decl_map *h, in;
6918 in.base.from = from;
6919
6920 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6921 if (h)
6922 return h->to;
6923 return NULL_TREE;
6924 }
6925
6926 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6927
6928 void
6929 decl_debug_expr_insert (tree from, tree to)
6930 {
6931 struct tree_decl_map *h;
6932
6933 h = ggc_alloc<tree_decl_map> ();
6934 h->base.from = from;
6935 h->to = to;
6936 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6937 }
6938
6939 /* Lookup a value expression for FROM, and return it if we find one. */
6940
6941 tree
6942 decl_value_expr_lookup (tree from)
6943 {
6944 struct tree_decl_map *h, in;
6945 in.base.from = from;
6946
6947 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6948 if (h)
6949 return h->to;
6950 return NULL_TREE;
6951 }
6952
6953 /* Insert a mapping FROM->TO in the value expression hashtable. */
6954
6955 void
6956 decl_value_expr_insert (tree from, tree to)
6957 {
6958 struct tree_decl_map *h;
6959
6960 h = ggc_alloc<tree_decl_map> ();
6961 h->base.from = from;
6962 h->to = to;
6963 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6964 }
6965
6966 /* Lookup a vector of debug arguments for FROM, and return it if we
6967 find one. */
6968
6969 vec<tree, va_gc> **
6970 decl_debug_args_lookup (tree from)
6971 {
6972 struct tree_vec_map *h, in;
6973
6974 if (!DECL_HAS_DEBUG_ARGS_P (from))
6975 return NULL;
6976 gcc_checking_assert (debug_args_for_decl != NULL);
6977 in.base.from = from;
6978 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6979 if (h)
6980 return &h->to;
6981 return NULL;
6982 }
6983
6984 /* Insert a mapping FROM->empty vector of debug arguments in the value
6985 expression hashtable. */
6986
6987 vec<tree, va_gc> **
6988 decl_debug_args_insert (tree from)
6989 {
6990 struct tree_vec_map *h;
6991 tree_vec_map **loc;
6992
6993 if (DECL_HAS_DEBUG_ARGS_P (from))
6994 return decl_debug_args_lookup (from);
6995 if (debug_args_for_decl == NULL)
6996 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6997 h = ggc_alloc<tree_vec_map> ();
6998 h->base.from = from;
6999 h->to = NULL;
7000 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
7001 *loc = h;
7002 DECL_HAS_DEBUG_ARGS_P (from) = 1;
7003 return &h->to;
7004 }
7005
7006 /* Hashing of types so that we don't make duplicates.
7007 The entry point is `type_hash_canon'. */
7008
7009 /* Generate the default hash code for TYPE. This is designed for
7010 speed, rather than maximum entropy. */
7011
7012 hashval_t
7013 type_hash_canon_hash (tree type)
7014 {
7015 inchash::hash hstate;
7016
7017 hstate.add_int (TREE_CODE (type));
7018
7019 if (TREE_TYPE (type))
7020 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
7021
7022 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
7023 /* Just the identifier is adequate to distinguish. */
7024 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
7025
7026 switch (TREE_CODE (type))
7027 {
7028 case METHOD_TYPE:
7029 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
7030 /* FALLTHROUGH. */
7031 case FUNCTION_TYPE:
7032 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7033 if (TREE_VALUE (t) != error_mark_node)
7034 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
7035 break;
7036
7037 case OFFSET_TYPE:
7038 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
7039 break;
7040
7041 case ARRAY_TYPE:
7042 {
7043 if (TYPE_DOMAIN (type))
7044 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
7045 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
7046 {
7047 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
7048 hstate.add_object (typeless);
7049 }
7050 }
7051 break;
7052
7053 case INTEGER_TYPE:
7054 {
7055 tree t = TYPE_MAX_VALUE (type);
7056 if (!t)
7057 t = TYPE_MIN_VALUE (type);
7058 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
7059 hstate.add_object (TREE_INT_CST_ELT (t, i));
7060 break;
7061 }
7062
7063 case REAL_TYPE:
7064 case FIXED_POINT_TYPE:
7065 {
7066 unsigned prec = TYPE_PRECISION (type);
7067 hstate.add_object (prec);
7068 break;
7069 }
7070
7071 case VECTOR_TYPE:
7072 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
7073 break;
7074
7075 default:
7076 break;
7077 }
7078
7079 return hstate.end ();
7080 }
7081
7082 /* These are the Hashtable callback functions. */
7083
7084 /* Returns true iff the types are equivalent. */
7085
7086 bool
7087 type_cache_hasher::equal (type_hash *a, type_hash *b)
7088 {
7089 /* First test the things that are the same for all types. */
7090 if (a->hash != b->hash
7091 || TREE_CODE (a->type) != TREE_CODE (b->type)
7092 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
7093 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
7094 TYPE_ATTRIBUTES (b->type))
7095 || (TREE_CODE (a->type) != COMPLEX_TYPE
7096 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
7097 return 0;
7098
7099 /* Be careful about comparing arrays before and after the element type
7100 has been completed; don't compare TYPE_ALIGN unless both types are
7101 complete. */
7102 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
7103 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
7104 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
7105 return 0;
7106
7107 switch (TREE_CODE (a->type))
7108 {
7109 case VOID_TYPE:
7110 case OPAQUE_TYPE:
7111 case COMPLEX_TYPE:
7112 case POINTER_TYPE:
7113 case REFERENCE_TYPE:
7114 case NULLPTR_TYPE:
7115 return 1;
7116
7117 case VECTOR_TYPE:
7118 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
7119 TYPE_VECTOR_SUBPARTS (b->type));
7120
7121 case ENUMERAL_TYPE:
7122 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
7123 && !(TYPE_VALUES (a->type)
7124 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
7125 && TYPE_VALUES (b->type)
7126 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
7127 && type_list_equal (TYPE_VALUES (a->type),
7128 TYPE_VALUES (b->type))))
7129 return 0;
7130
7131 /* fall through */
7132
7133 case INTEGER_TYPE:
7134 case REAL_TYPE:
7135 case BOOLEAN_TYPE:
7136 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
7137 return false;
7138 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
7139 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
7140 TYPE_MAX_VALUE (b->type)))
7141 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
7142 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
7143 TYPE_MIN_VALUE (b->type))));
7144
7145 case FIXED_POINT_TYPE:
7146 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
7147
7148 case OFFSET_TYPE:
7149 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
7150
7151 case METHOD_TYPE:
7152 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
7153 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7154 || (TYPE_ARG_TYPES (a->type)
7155 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7156 && TYPE_ARG_TYPES (b->type)
7157 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7158 && type_list_equal (TYPE_ARG_TYPES (a->type),
7159 TYPE_ARG_TYPES (b->type)))))
7160 break;
7161 return 0;
7162 case ARRAY_TYPE:
7163 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
7164 where the flag should be inherited from the element type
7165 and can change after ARRAY_TYPEs are created; on non-aggregates
7166 compare it and hash it, scalars will never have that flag set
7167 and we need to differentiate between arrays created by different
7168 front-ends or middle-end created arrays. */
7169 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
7170 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
7171 || (TYPE_TYPELESS_STORAGE (a->type)
7172 == TYPE_TYPELESS_STORAGE (b->type))));
7173
7174 case RECORD_TYPE:
7175 case UNION_TYPE:
7176 case QUAL_UNION_TYPE:
7177 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
7178 || (TYPE_FIELDS (a->type)
7179 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
7180 && TYPE_FIELDS (b->type)
7181 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
7182 && type_list_equal (TYPE_FIELDS (a->type),
7183 TYPE_FIELDS (b->type))));
7184
7185 case FUNCTION_TYPE:
7186 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7187 || (TYPE_ARG_TYPES (a->type)
7188 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7189 && TYPE_ARG_TYPES (b->type)
7190 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7191 && type_list_equal (TYPE_ARG_TYPES (a->type),
7192 TYPE_ARG_TYPES (b->type))))
7193 break;
7194 return 0;
7195
7196 default:
7197 return 0;
7198 }
7199
7200 if (lang_hooks.types.type_hash_eq != NULL)
7201 return lang_hooks.types.type_hash_eq (a->type, b->type);
7202
7203 return 1;
7204 }
7205
7206 /* Given TYPE, and HASHCODE its hash code, return the canonical
7207 object for an identical type if one already exists.
7208 Otherwise, return TYPE, and record it as the canonical object.
7209
7210 To use this function, first create a type of the sort you want.
7211 Then compute its hash code from the fields of the type that
7212 make it different from other similar types.
7213 Then call this function and use the value. */
7214
7215 tree
7216 type_hash_canon (unsigned int hashcode, tree type)
7217 {
7218 type_hash in;
7219 type_hash **loc;
7220
7221 /* The hash table only contains main variants, so ensure that's what we're
7222 being passed. */
7223 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7224
7225 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7226 must call that routine before comparing TYPE_ALIGNs. */
7227 layout_type (type);
7228
7229 in.hash = hashcode;
7230 in.type = type;
7231
7232 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7233 if (*loc)
7234 {
7235 tree t1 = ((type_hash *) *loc)->type;
7236 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
7237 && t1 != type);
7238 if (TYPE_UID (type) + 1 == next_type_uid)
7239 --next_type_uid;
7240 /* Free also min/max values and the cache for integer
7241 types. This can't be done in free_node, as LTO frees
7242 those on its own. */
7243 if (TREE_CODE (type) == INTEGER_TYPE)
7244 {
7245 if (TYPE_MIN_VALUE (type)
7246 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
7247 {
7248 /* Zero is always in TYPE_CACHED_VALUES. */
7249 if (! TYPE_UNSIGNED (type))
7250 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
7251 ggc_free (TYPE_MIN_VALUE (type));
7252 }
7253 if (TYPE_MAX_VALUE (type)
7254 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
7255 {
7256 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
7257 ggc_free (TYPE_MAX_VALUE (type));
7258 }
7259 if (TYPE_CACHED_VALUES_P (type))
7260 ggc_free (TYPE_CACHED_VALUES (type));
7261 }
7262 free_node (type);
7263 return t1;
7264 }
7265 else
7266 {
7267 struct type_hash *h;
7268
7269 h = ggc_alloc<type_hash> ();
7270 h->hash = hashcode;
7271 h->type = type;
7272 *loc = h;
7273
7274 return type;
7275 }
7276 }
7277
7278 static void
7279 print_type_hash_statistics (void)
7280 {
7281 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7282 (long) type_hash_table->size (),
7283 (long) type_hash_table->elements (),
7284 type_hash_table->collisions ());
7285 }
7286
7287 /* Given two lists of types
7288 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7289 return 1 if the lists contain the same types in the same order.
7290 Also, the TREE_PURPOSEs must match. */
7291
7292 bool
7293 type_list_equal (const_tree l1, const_tree l2)
7294 {
7295 const_tree t1, t2;
7296
7297 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7298 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7299 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7300 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7301 && (TREE_TYPE (TREE_PURPOSE (t1))
7302 == TREE_TYPE (TREE_PURPOSE (t2))))))
7303 return false;
7304
7305 return t1 == t2;
7306 }
7307
7308 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7309 given by TYPE. If the argument list accepts variable arguments,
7310 then this function counts only the ordinary arguments. */
7311
7312 int
7313 type_num_arguments (const_tree fntype)
7314 {
7315 int i = 0;
7316
7317 for (tree t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
7318 /* If the function does not take a variable number of arguments,
7319 the last element in the list will have type `void'. */
7320 if (VOID_TYPE_P (TREE_VALUE (t)))
7321 break;
7322 else
7323 ++i;
7324
7325 return i;
7326 }
7327
7328 /* Return the type of the function TYPE's argument ARGNO if known.
7329 For vararg function's where ARGNO refers to one of the variadic
7330 arguments return null. Otherwise, return a void_type_node for
7331 out-of-bounds ARGNO. */
7332
7333 tree
7334 type_argument_type (const_tree fntype, unsigned argno)
7335 {
7336 /* Treat zero the same as an out-of-bounds argument number. */
7337 if (!argno)
7338 return void_type_node;
7339
7340 function_args_iterator iter;
7341
7342 tree argtype;
7343 unsigned i = 1;
7344 FOREACH_FUNCTION_ARGS (fntype, argtype, iter)
7345 {
7346 /* A vararg function's argument list ends in a null. Otherwise,
7347 an ordinary function's argument list ends with void. Return
7348 null if ARGNO refers to a vararg argument, void_type_node if
7349 it's out of bounds, and the formal argument type otherwise. */
7350 if (!argtype)
7351 break;
7352
7353 if (i == argno || VOID_TYPE_P (argtype))
7354 return argtype;
7355
7356 ++i;
7357 }
7358
7359 return NULL_TREE;
7360 }
7361
7362 /* Nonzero if integer constants T1 and T2
7363 represent the same constant value. */
7364
7365 int
7366 tree_int_cst_equal (const_tree t1, const_tree t2)
7367 {
7368 if (t1 == t2)
7369 return 1;
7370
7371 if (t1 == 0 || t2 == 0)
7372 return 0;
7373
7374 STRIP_ANY_LOCATION_WRAPPER (t1);
7375 STRIP_ANY_LOCATION_WRAPPER (t2);
7376
7377 if (TREE_CODE (t1) == INTEGER_CST
7378 && TREE_CODE (t2) == INTEGER_CST
7379 && wi::to_widest (t1) == wi::to_widest (t2))
7380 return 1;
7381
7382 return 0;
7383 }
7384
7385 /* Return true if T is an INTEGER_CST whose numerical value (extended
7386 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7387
7388 bool
7389 tree_fits_shwi_p (const_tree t)
7390 {
7391 return (t != NULL_TREE
7392 && TREE_CODE (t) == INTEGER_CST
7393 && wi::fits_shwi_p (wi::to_widest (t)));
7394 }
7395
7396 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7397 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
7398
7399 bool
7400 tree_fits_poly_int64_p (const_tree t)
7401 {
7402 if (t == NULL_TREE)
7403 return false;
7404 if (POLY_INT_CST_P (t))
7405 {
7406 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7407 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
7408 return false;
7409 return true;
7410 }
7411 return (TREE_CODE (t) == INTEGER_CST
7412 && wi::fits_shwi_p (wi::to_widest (t)));
7413 }
7414
7415 /* Return true if T is an INTEGER_CST whose numerical value (extended
7416 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7417
7418 bool
7419 tree_fits_uhwi_p (const_tree t)
7420 {
7421 return (t != NULL_TREE
7422 && TREE_CODE (t) == INTEGER_CST
7423 && wi::fits_uhwi_p (wi::to_widest (t)));
7424 }
7425
7426 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
7427 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
7428
7429 bool
7430 tree_fits_poly_uint64_p (const_tree t)
7431 {
7432 if (t == NULL_TREE)
7433 return false;
7434 if (POLY_INT_CST_P (t))
7435 {
7436 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
7437 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
7438 return false;
7439 return true;
7440 }
7441 return (TREE_CODE (t) == INTEGER_CST
7442 && wi::fits_uhwi_p (wi::to_widest (t)));
7443 }
7444
7445 /* T is an INTEGER_CST whose numerical value (extended according to
7446 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7447 HOST_WIDE_INT. */
7448
7449 HOST_WIDE_INT
7450 tree_to_shwi (const_tree t)
7451 {
7452 gcc_assert (tree_fits_shwi_p (t));
7453 return TREE_INT_CST_LOW (t);
7454 }
7455
7456 /* T is an INTEGER_CST whose numerical value (extended according to
7457 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7458 HOST_WIDE_INT. */
7459
7460 unsigned HOST_WIDE_INT
7461 tree_to_uhwi (const_tree t)
7462 {
7463 gcc_assert (tree_fits_uhwi_p (t));
7464 return TREE_INT_CST_LOW (t);
7465 }
7466
7467 /* Return the most significant (sign) bit of T. */
7468
7469 int
7470 tree_int_cst_sign_bit (const_tree t)
7471 {
7472 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7473
7474 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
7475 }
7476
7477 /* Return an indication of the sign of the integer constant T.
7478 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7479 Note that -1 will never be returned if T's type is unsigned. */
7480
7481 int
7482 tree_int_cst_sgn (const_tree t)
7483 {
7484 if (wi::to_wide (t) == 0)
7485 return 0;
7486 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7487 return 1;
7488 else if (wi::neg_p (wi::to_wide (t)))
7489 return -1;
7490 else
7491 return 1;
7492 }
7493
7494 /* Return the minimum number of bits needed to represent VALUE in a
7495 signed or unsigned type, UNSIGNEDP says which. */
7496
7497 unsigned int
7498 tree_int_cst_min_precision (tree value, signop sgn)
7499 {
7500 /* If the value is negative, compute its negative minus 1. The latter
7501 adjustment is because the absolute value of the largest negative value
7502 is one larger than the largest positive value. This is equivalent to
7503 a bit-wise negation, so use that operation instead. */
7504
7505 if (tree_int_cst_sgn (value) < 0)
7506 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7507
7508 /* Return the number of bits needed, taking into account the fact
7509 that we need one more bit for a signed than unsigned type.
7510 If value is 0 or -1, the minimum precision is 1 no matter
7511 whether unsignedp is true or false. */
7512
7513 if (integer_zerop (value))
7514 return 1;
7515 else
7516 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7517 }
7518
7519 /* Return truthvalue of whether T1 is the same tree structure as T2.
7520 Return 1 if they are the same.
7521 Return 0 if they are understandably different.
7522 Return -1 if either contains tree structure not understood by
7523 this function. */
7524
7525 int
7526 simple_cst_equal (const_tree t1, const_tree t2)
7527 {
7528 enum tree_code code1, code2;
7529 int cmp;
7530 int i;
7531
7532 if (t1 == t2)
7533 return 1;
7534 if (t1 == 0 || t2 == 0)
7535 return 0;
7536
7537 /* For location wrappers to be the same, they must be at the same
7538 source location (and wrap the same thing). */
7539 if (location_wrapper_p (t1) && location_wrapper_p (t2))
7540 {
7541 if (EXPR_LOCATION (t1) != EXPR_LOCATION (t2))
7542 return 0;
7543 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7544 }
7545
7546 code1 = TREE_CODE (t1);
7547 code2 = TREE_CODE (t2);
7548
7549 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7550 {
7551 if (CONVERT_EXPR_CODE_P (code2)
7552 || code2 == NON_LVALUE_EXPR)
7553 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7554 else
7555 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7556 }
7557
7558 else if (CONVERT_EXPR_CODE_P (code2)
7559 || code2 == NON_LVALUE_EXPR)
7560 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7561
7562 if (code1 != code2)
7563 return 0;
7564
7565 switch (code1)
7566 {
7567 case INTEGER_CST:
7568 return wi::to_widest (t1) == wi::to_widest (t2);
7569
7570 case REAL_CST:
7571 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7572
7573 case FIXED_CST:
7574 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7575
7576 case STRING_CST:
7577 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7578 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7579 TREE_STRING_LENGTH (t1)));
7580
7581 case CONSTRUCTOR:
7582 {
7583 unsigned HOST_WIDE_INT idx;
7584 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7585 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7586
7587 if (vec_safe_length (v1) != vec_safe_length (v2))
7588 return false;
7589
7590 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7591 /* ??? Should we handle also fields here? */
7592 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7593 return false;
7594 return true;
7595 }
7596
7597 case SAVE_EXPR:
7598 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7599
7600 case CALL_EXPR:
7601 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7602 if (cmp <= 0)
7603 return cmp;
7604 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7605 return 0;
7606 {
7607 const_tree arg1, arg2;
7608 const_call_expr_arg_iterator iter1, iter2;
7609 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7610 arg2 = first_const_call_expr_arg (t2, &iter2);
7611 arg1 && arg2;
7612 arg1 = next_const_call_expr_arg (&iter1),
7613 arg2 = next_const_call_expr_arg (&iter2))
7614 {
7615 cmp = simple_cst_equal (arg1, arg2);
7616 if (cmp <= 0)
7617 return cmp;
7618 }
7619 return arg1 == arg2;
7620 }
7621
7622 case TARGET_EXPR:
7623 /* Special case: if either target is an unallocated VAR_DECL,
7624 it means that it's going to be unified with whatever the
7625 TARGET_EXPR is really supposed to initialize, so treat it
7626 as being equivalent to anything. */
7627 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7628 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7629 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7630 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7631 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7632 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7633 cmp = 1;
7634 else
7635 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7636
7637 if (cmp <= 0)
7638 return cmp;
7639
7640 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7641
7642 case WITH_CLEANUP_EXPR:
7643 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7644 if (cmp <= 0)
7645 return cmp;
7646
7647 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7648
7649 case COMPONENT_REF:
7650 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7651 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7652
7653 return 0;
7654
7655 case VAR_DECL:
7656 case PARM_DECL:
7657 case CONST_DECL:
7658 case FUNCTION_DECL:
7659 return 0;
7660
7661 default:
7662 if (POLY_INT_CST_P (t1))
7663 /* A false return means maybe_ne rather than known_ne. */
7664 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7665 TYPE_SIGN (TREE_TYPE (t1))),
7666 poly_widest_int::from (poly_int_cst_value (t2),
7667 TYPE_SIGN (TREE_TYPE (t2))));
7668 break;
7669 }
7670
7671 /* This general rule works for most tree codes. All exceptions should be
7672 handled above. If this is a language-specific tree code, we can't
7673 trust what might be in the operand, so say we don't know
7674 the situation. */
7675 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7676 return -1;
7677
7678 switch (TREE_CODE_CLASS (code1))
7679 {
7680 case tcc_unary:
7681 case tcc_binary:
7682 case tcc_comparison:
7683 case tcc_expression:
7684 case tcc_reference:
7685 case tcc_statement:
7686 cmp = 1;
7687 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7688 {
7689 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7690 if (cmp <= 0)
7691 return cmp;
7692 }
7693
7694 return cmp;
7695
7696 default:
7697 return -1;
7698 }
7699 }
7700
7701 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7702 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7703 than U, respectively. */
7704
7705 int
7706 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7707 {
7708 if (tree_int_cst_sgn (t) < 0)
7709 return -1;
7710 else if (!tree_fits_uhwi_p (t))
7711 return 1;
7712 else if (TREE_INT_CST_LOW (t) == u)
7713 return 0;
7714 else if (TREE_INT_CST_LOW (t) < u)
7715 return -1;
7716 else
7717 return 1;
7718 }
7719
7720 /* Return true if SIZE represents a constant size that is in bounds of
7721 what the middle-end and the backend accepts (covering not more than
7722 half of the address-space).
7723 When PERR is non-null, set *PERR on failure to the description of
7724 why SIZE is not valid. */
7725
7726 bool
7727 valid_constant_size_p (const_tree size, cst_size_error *perr /* = NULL */)
7728 {
7729 if (POLY_INT_CST_P (size))
7730 {
7731 if (TREE_OVERFLOW (size))
7732 return false;
7733 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7734 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7735 return false;
7736 return true;
7737 }
7738
7739 cst_size_error error;
7740 if (!perr)
7741 perr = &error;
7742
7743 if (TREE_CODE (size) != INTEGER_CST)
7744 {
7745 *perr = cst_size_not_constant;
7746 return false;
7747 }
7748
7749 if (TREE_OVERFLOW_P (size))
7750 {
7751 *perr = cst_size_overflow;
7752 return false;
7753 }
7754
7755 if (tree_int_cst_sgn (size) < 0)
7756 {
7757 *perr = cst_size_negative;
7758 return false;
7759 }
7760 if (!tree_fits_uhwi_p (size)
7761 || (wi::to_widest (TYPE_MAX_VALUE (sizetype))
7762 < wi::to_widest (size) * 2))
7763 {
7764 *perr = cst_size_too_big;
7765 return false;
7766 }
7767
7768 return true;
7769 }
7770
7771 /* Return the precision of the type, or for a complex or vector type the
7772 precision of the type of its elements. */
7773
7774 unsigned int
7775 element_precision (const_tree type)
7776 {
7777 if (!TYPE_P (type))
7778 type = TREE_TYPE (type);
7779 enum tree_code code = TREE_CODE (type);
7780 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7781 type = TREE_TYPE (type);
7782
7783 return TYPE_PRECISION (type);
7784 }
7785
7786 /* Return true if CODE represents an associative tree code. Otherwise
7787 return false. */
7788 bool
7789 associative_tree_code (enum tree_code code)
7790 {
7791 switch (code)
7792 {
7793 case BIT_IOR_EXPR:
7794 case BIT_AND_EXPR:
7795 case BIT_XOR_EXPR:
7796 case PLUS_EXPR:
7797 case MULT_EXPR:
7798 case MIN_EXPR:
7799 case MAX_EXPR:
7800 return true;
7801
7802 default:
7803 break;
7804 }
7805 return false;
7806 }
7807
7808 /* Return true if CODE represents a commutative tree code. Otherwise
7809 return false. */
7810 bool
7811 commutative_tree_code (enum tree_code code)
7812 {
7813 switch (code)
7814 {
7815 case PLUS_EXPR:
7816 case MULT_EXPR:
7817 case MULT_HIGHPART_EXPR:
7818 case MIN_EXPR:
7819 case MAX_EXPR:
7820 case BIT_IOR_EXPR:
7821 case BIT_XOR_EXPR:
7822 case BIT_AND_EXPR:
7823 case NE_EXPR:
7824 case EQ_EXPR:
7825 case UNORDERED_EXPR:
7826 case ORDERED_EXPR:
7827 case UNEQ_EXPR:
7828 case LTGT_EXPR:
7829 case TRUTH_AND_EXPR:
7830 case TRUTH_XOR_EXPR:
7831 case TRUTH_OR_EXPR:
7832 case WIDEN_MULT_EXPR:
7833 case VEC_WIDEN_MULT_HI_EXPR:
7834 case VEC_WIDEN_MULT_LO_EXPR:
7835 case VEC_WIDEN_MULT_EVEN_EXPR:
7836 case VEC_WIDEN_MULT_ODD_EXPR:
7837 return true;
7838
7839 default:
7840 break;
7841 }
7842 return false;
7843 }
7844
7845 /* Return true if CODE represents a ternary tree code for which the
7846 first two operands are commutative. Otherwise return false. */
7847 bool
7848 commutative_ternary_tree_code (enum tree_code code)
7849 {
7850 switch (code)
7851 {
7852 case WIDEN_MULT_PLUS_EXPR:
7853 case WIDEN_MULT_MINUS_EXPR:
7854 case DOT_PROD_EXPR:
7855 return true;
7856
7857 default:
7858 break;
7859 }
7860 return false;
7861 }
7862
7863 /* Returns true if CODE can overflow. */
7864
7865 bool
7866 operation_can_overflow (enum tree_code code)
7867 {
7868 switch (code)
7869 {
7870 case PLUS_EXPR:
7871 case MINUS_EXPR:
7872 case MULT_EXPR:
7873 case LSHIFT_EXPR:
7874 /* Can overflow in various ways. */
7875 return true;
7876 case TRUNC_DIV_EXPR:
7877 case EXACT_DIV_EXPR:
7878 case FLOOR_DIV_EXPR:
7879 case CEIL_DIV_EXPR:
7880 /* For INT_MIN / -1. */
7881 return true;
7882 case NEGATE_EXPR:
7883 case ABS_EXPR:
7884 /* For -INT_MIN. */
7885 return true;
7886 default:
7887 /* These operators cannot overflow. */
7888 return false;
7889 }
7890 }
7891
7892 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7893 ftrapv doesn't generate trapping insns for CODE. */
7894
7895 bool
7896 operation_no_trapping_overflow (tree type, enum tree_code code)
7897 {
7898 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7899
7900 /* We don't generate instructions that trap on overflow for complex or vector
7901 types. */
7902 if (!INTEGRAL_TYPE_P (type))
7903 return true;
7904
7905 if (!TYPE_OVERFLOW_TRAPS (type))
7906 return true;
7907
7908 switch (code)
7909 {
7910 case PLUS_EXPR:
7911 case MINUS_EXPR:
7912 case MULT_EXPR:
7913 case NEGATE_EXPR:
7914 case ABS_EXPR:
7915 /* These operators can overflow, and -ftrapv generates trapping code for
7916 these. */
7917 return false;
7918 case TRUNC_DIV_EXPR:
7919 case EXACT_DIV_EXPR:
7920 case FLOOR_DIV_EXPR:
7921 case CEIL_DIV_EXPR:
7922 case LSHIFT_EXPR:
7923 /* These operators can overflow, but -ftrapv does not generate trapping
7924 code for these. */
7925 return true;
7926 default:
7927 /* These operators cannot overflow. */
7928 return true;
7929 }
7930 }
7931
7932 /* Constructors for pointer, array and function types.
7933 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7934 constructed by language-dependent code, not here.) */
7935
7936 /* Construct, lay out and return the type of pointers to TO_TYPE with
7937 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7938 reference all of memory. If such a type has already been
7939 constructed, reuse it. */
7940
7941 tree
7942 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7943 bool can_alias_all)
7944 {
7945 tree t;
7946 bool could_alias = can_alias_all;
7947
7948 if (to_type == error_mark_node)
7949 return error_mark_node;
7950
7951 /* If the pointed-to type has the may_alias attribute set, force
7952 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7953 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7954 can_alias_all = true;
7955
7956 /* In some cases, languages will have things that aren't a POINTER_TYPE
7957 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7958 In that case, return that type without regard to the rest of our
7959 operands.
7960
7961 ??? This is a kludge, but consistent with the way this function has
7962 always operated and there doesn't seem to be a good way to avoid this
7963 at the moment. */
7964 if (TYPE_POINTER_TO (to_type) != 0
7965 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7966 return TYPE_POINTER_TO (to_type);
7967
7968 /* First, if we already have a type for pointers to TO_TYPE and it's
7969 the proper mode, use it. */
7970 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7971 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7972 return t;
7973
7974 t = make_node (POINTER_TYPE);
7975
7976 TREE_TYPE (t) = to_type;
7977 SET_TYPE_MODE (t, mode);
7978 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7979 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7980 TYPE_POINTER_TO (to_type) = t;
7981
7982 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7983 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7984 SET_TYPE_STRUCTURAL_EQUALITY (t);
7985 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7986 TYPE_CANONICAL (t)
7987 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7988 mode, false);
7989
7990 /* Lay out the type. This function has many callers that are concerned
7991 with expression-construction, and this simplifies them all. */
7992 layout_type (t);
7993
7994 return t;
7995 }
7996
7997 /* By default build pointers in ptr_mode. */
7998
7999 tree
8000 build_pointer_type (tree to_type)
8001 {
8002 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8003 : TYPE_ADDR_SPACE (to_type);
8004 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8005 return build_pointer_type_for_mode (to_type, pointer_mode, false);
8006 }
8007
8008 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
8009
8010 tree
8011 build_reference_type_for_mode (tree to_type, machine_mode mode,
8012 bool can_alias_all)
8013 {
8014 tree t;
8015 bool could_alias = can_alias_all;
8016
8017 if (to_type == error_mark_node)
8018 return error_mark_node;
8019
8020 /* If the pointed-to type has the may_alias attribute set, force
8021 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
8022 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
8023 can_alias_all = true;
8024
8025 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
8026 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
8027 In that case, return that type without regard to the rest of our
8028 operands.
8029
8030 ??? This is a kludge, but consistent with the way this function has
8031 always operated and there doesn't seem to be a good way to avoid this
8032 at the moment. */
8033 if (TYPE_REFERENCE_TO (to_type) != 0
8034 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
8035 return TYPE_REFERENCE_TO (to_type);
8036
8037 /* First, if we already have a type for pointers to TO_TYPE and it's
8038 the proper mode, use it. */
8039 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
8040 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8041 return t;
8042
8043 t = make_node (REFERENCE_TYPE);
8044
8045 TREE_TYPE (t) = to_type;
8046 SET_TYPE_MODE (t, mode);
8047 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8048 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
8049 TYPE_REFERENCE_TO (to_type) = t;
8050
8051 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8052 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8053 SET_TYPE_STRUCTURAL_EQUALITY (t);
8054 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8055 TYPE_CANONICAL (t)
8056 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
8057 mode, false);
8058
8059 layout_type (t);
8060
8061 return t;
8062 }
8063
8064
8065 /* Build the node for the type of references-to-TO_TYPE by default
8066 in ptr_mode. */
8067
8068 tree
8069 build_reference_type (tree to_type)
8070 {
8071 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8072 : TYPE_ADDR_SPACE (to_type);
8073 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8074 return build_reference_type_for_mode (to_type, pointer_mode, false);
8075 }
8076
8077 #define MAX_INT_CACHED_PREC \
8078 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8079 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
8080
8081 /* Builds a signed or unsigned integer type of precision PRECISION.
8082 Used for C bitfields whose precision does not match that of
8083 built-in target types. */
8084 tree
8085 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8086 int unsignedp)
8087 {
8088 tree itype, ret;
8089
8090 if (unsignedp)
8091 unsignedp = MAX_INT_CACHED_PREC + 1;
8092
8093 if (precision <= MAX_INT_CACHED_PREC)
8094 {
8095 itype = nonstandard_integer_type_cache[precision + unsignedp];
8096 if (itype)
8097 return itype;
8098 }
8099
8100 itype = make_node (INTEGER_TYPE);
8101 TYPE_PRECISION (itype) = precision;
8102
8103 if (unsignedp)
8104 fixup_unsigned_type (itype);
8105 else
8106 fixup_signed_type (itype);
8107
8108 inchash::hash hstate;
8109 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8110 ret = type_hash_canon (hstate.end (), itype);
8111 if (precision <= MAX_INT_CACHED_PREC)
8112 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8113
8114 return ret;
8115 }
8116
8117 #define MAX_BOOL_CACHED_PREC \
8118 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8119 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8120
8121 /* Builds a boolean type of precision PRECISION.
8122 Used for boolean vectors to choose proper vector element size. */
8123 tree
8124 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8125 {
8126 tree type;
8127
8128 if (precision <= MAX_BOOL_CACHED_PREC)
8129 {
8130 type = nonstandard_boolean_type_cache[precision];
8131 if (type)
8132 return type;
8133 }
8134
8135 type = make_node (BOOLEAN_TYPE);
8136 TYPE_PRECISION (type) = precision;
8137 fixup_signed_type (type);
8138
8139 if (precision <= MAX_INT_CACHED_PREC)
8140 nonstandard_boolean_type_cache[precision] = type;
8141
8142 return type;
8143 }
8144
8145 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8146 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8147 is true, reuse such a type that has already been constructed. */
8148
8149 static tree
8150 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8151 {
8152 tree itype = make_node (INTEGER_TYPE);
8153
8154 TREE_TYPE (itype) = type;
8155
8156 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8157 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8158
8159 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8160 SET_TYPE_MODE (itype, TYPE_MODE (type));
8161 TYPE_SIZE (itype) = TYPE_SIZE (type);
8162 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8163 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
8164 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8165 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
8166
8167 if (!shared)
8168 return itype;
8169
8170 if ((TYPE_MIN_VALUE (itype)
8171 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8172 || (TYPE_MAX_VALUE (itype)
8173 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8174 {
8175 /* Since we cannot reliably merge this type, we need to compare it using
8176 structural equality checks. */
8177 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8178 return itype;
8179 }
8180
8181 hashval_t hash = type_hash_canon_hash (itype);
8182 itype = type_hash_canon (hash, itype);
8183
8184 return itype;
8185 }
8186
8187 /* Wrapper around build_range_type_1 with SHARED set to true. */
8188
8189 tree
8190 build_range_type (tree type, tree lowval, tree highval)
8191 {
8192 return build_range_type_1 (type, lowval, highval, true);
8193 }
8194
8195 /* Wrapper around build_range_type_1 with SHARED set to false. */
8196
8197 tree
8198 build_nonshared_range_type (tree type, tree lowval, tree highval)
8199 {
8200 return build_range_type_1 (type, lowval, highval, false);
8201 }
8202
8203 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8204 MAXVAL should be the maximum value in the domain
8205 (one less than the length of the array).
8206
8207 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8208 We don't enforce this limit, that is up to caller (e.g. language front end).
8209 The limit exists because the result is a signed type and we don't handle
8210 sizes that use more than one HOST_WIDE_INT. */
8211
8212 tree
8213 build_index_type (tree maxval)
8214 {
8215 return build_range_type (sizetype, size_zero_node, maxval);
8216 }
8217
8218 /* Return true if the debug information for TYPE, a subtype, should be emitted
8219 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8220 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8221 debug info and doesn't reflect the source code. */
8222
8223 bool
8224 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8225 {
8226 tree base_type = TREE_TYPE (type), low, high;
8227
8228 /* Subrange types have a base type which is an integral type. */
8229 if (!INTEGRAL_TYPE_P (base_type))
8230 return false;
8231
8232 /* Get the real bounds of the subtype. */
8233 if (lang_hooks.types.get_subrange_bounds)
8234 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8235 else
8236 {
8237 low = TYPE_MIN_VALUE (type);
8238 high = TYPE_MAX_VALUE (type);
8239 }
8240
8241 /* If the type and its base type have the same representation and the same
8242 name, then the type is not a subrange but a copy of the base type. */
8243 if ((TREE_CODE (base_type) == INTEGER_TYPE
8244 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8245 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8246 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8247 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8248 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8249 return false;
8250
8251 if (lowval)
8252 *lowval = low;
8253 if (highval)
8254 *highval = high;
8255 return true;
8256 }
8257
8258 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8259 and number of elements specified by the range of values of INDEX_TYPE.
8260 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
8261 If SHARED is true, reuse such a type that has already been constructed.
8262 If SET_CANONICAL is true, compute TYPE_CANONICAL from the element type. */
8263
8264 static tree
8265 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
8266 bool shared, bool set_canonical)
8267 {
8268 tree t;
8269
8270 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8271 {
8272 error ("arrays of functions are not meaningful");
8273 elt_type = integer_type_node;
8274 }
8275
8276 t = make_node (ARRAY_TYPE);
8277 TREE_TYPE (t) = elt_type;
8278 TYPE_DOMAIN (t) = index_type;
8279 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8280 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
8281 layout_type (t);
8282
8283 if (shared)
8284 {
8285 hashval_t hash = type_hash_canon_hash (t);
8286 t = type_hash_canon (hash, t);
8287 }
8288
8289 if (TYPE_CANONICAL (t) == t && set_canonical)
8290 {
8291 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8292 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8293 || in_lto_p)
8294 SET_TYPE_STRUCTURAL_EQUALITY (t);
8295 else if (TYPE_CANONICAL (elt_type) != elt_type
8296 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8297 TYPE_CANONICAL (t)
8298 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8299 index_type
8300 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8301 typeless_storage, shared, set_canonical);
8302 }
8303
8304 return t;
8305 }
8306
8307 /* Wrapper around build_array_type_1 with SHARED set to true. */
8308
8309 tree
8310 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
8311 {
8312 return
8313 build_array_type_1 (elt_type, index_type, typeless_storage, true, true);
8314 }
8315
8316 /* Wrapper around build_array_type_1 with SHARED set to false. */
8317
8318 tree
8319 build_nonshared_array_type (tree elt_type, tree index_type)
8320 {
8321 return build_array_type_1 (elt_type, index_type, false, false, true);
8322 }
8323
8324 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8325 sizetype. */
8326
8327 tree
8328 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
8329 {
8330 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8331 }
8332
8333 /* Recursively examines the array elements of TYPE, until a non-array
8334 element type is found. */
8335
8336 tree
8337 strip_array_types (tree type)
8338 {
8339 while (TREE_CODE (type) == ARRAY_TYPE)
8340 type = TREE_TYPE (type);
8341
8342 return type;
8343 }
8344
8345 /* Computes the canonical argument types from the argument type list
8346 ARGTYPES.
8347
8348 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8349 on entry to this function, or if any of the ARGTYPES are
8350 structural.
8351
8352 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8353 true on entry to this function, or if any of the ARGTYPES are
8354 non-canonical.
8355
8356 Returns a canonical argument list, which may be ARGTYPES when the
8357 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8358 true) or would not differ from ARGTYPES. */
8359
8360 static tree
8361 maybe_canonicalize_argtypes (tree argtypes,
8362 bool *any_structural_p,
8363 bool *any_noncanonical_p)
8364 {
8365 tree arg;
8366 bool any_noncanonical_argtypes_p = false;
8367
8368 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8369 {
8370 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8371 /* Fail gracefully by stating that the type is structural. */
8372 *any_structural_p = true;
8373 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8374 *any_structural_p = true;
8375 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8376 || TREE_PURPOSE (arg))
8377 /* If the argument has a default argument, we consider it
8378 non-canonical even though the type itself is canonical.
8379 That way, different variants of function and method types
8380 with default arguments will all point to the variant with
8381 no defaults as their canonical type. */
8382 any_noncanonical_argtypes_p = true;
8383 }
8384
8385 if (*any_structural_p)
8386 return argtypes;
8387
8388 if (any_noncanonical_argtypes_p)
8389 {
8390 /* Build the canonical list of argument types. */
8391 tree canon_argtypes = NULL_TREE;
8392 bool is_void = false;
8393
8394 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8395 {
8396 if (arg == void_list_node)
8397 is_void = true;
8398 else
8399 canon_argtypes = tree_cons (NULL_TREE,
8400 TYPE_CANONICAL (TREE_VALUE (arg)),
8401 canon_argtypes);
8402 }
8403
8404 canon_argtypes = nreverse (canon_argtypes);
8405 if (is_void)
8406 canon_argtypes = chainon (canon_argtypes, void_list_node);
8407
8408 /* There is a non-canonical type. */
8409 *any_noncanonical_p = true;
8410 return canon_argtypes;
8411 }
8412
8413 /* The canonical argument types are the same as ARGTYPES. */
8414 return argtypes;
8415 }
8416
8417 /* Construct, lay out and return
8418 the type of functions returning type VALUE_TYPE
8419 given arguments of types ARG_TYPES.
8420 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8421 are data type nodes for the arguments of the function.
8422 If such a type has already been constructed, reuse it. */
8423
8424 tree
8425 build_function_type (tree value_type, tree arg_types)
8426 {
8427 tree t;
8428 inchash::hash hstate;
8429 bool any_structural_p, any_noncanonical_p;
8430 tree canon_argtypes;
8431
8432 gcc_assert (arg_types != error_mark_node);
8433
8434 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8435 {
8436 error ("function return type cannot be function");
8437 value_type = integer_type_node;
8438 }
8439
8440 /* Make a node of the sort we want. */
8441 t = make_node (FUNCTION_TYPE);
8442 TREE_TYPE (t) = value_type;
8443 TYPE_ARG_TYPES (t) = arg_types;
8444
8445 /* If we already have such a type, use the old one. */
8446 hashval_t hash = type_hash_canon_hash (t);
8447 t = type_hash_canon (hash, t);
8448
8449 /* Set up the canonical type. */
8450 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8451 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8452 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8453 &any_structural_p,
8454 &any_noncanonical_p);
8455 if (any_structural_p)
8456 SET_TYPE_STRUCTURAL_EQUALITY (t);
8457 else if (any_noncanonical_p)
8458 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8459 canon_argtypes);
8460
8461 if (!COMPLETE_TYPE_P (t))
8462 layout_type (t);
8463 return t;
8464 }
8465
8466 /* Build a function type. The RETURN_TYPE is the type returned by the
8467 function. If VAARGS is set, no void_type_node is appended to the
8468 list. ARGP must be always be terminated be a NULL_TREE. */
8469
8470 static tree
8471 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8472 {
8473 tree t, args, last;
8474
8475 t = va_arg (argp, tree);
8476 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8477 args = tree_cons (NULL_TREE, t, args);
8478
8479 if (vaargs)
8480 {
8481 last = args;
8482 if (args != NULL_TREE)
8483 args = nreverse (args);
8484 gcc_assert (last != void_list_node);
8485 }
8486 else if (args == NULL_TREE)
8487 args = void_list_node;
8488 else
8489 {
8490 last = args;
8491 args = nreverse (args);
8492 TREE_CHAIN (last) = void_list_node;
8493 }
8494 args = build_function_type (return_type, args);
8495
8496 return args;
8497 }
8498
8499 /* Build a function type. The RETURN_TYPE is the type returned by the
8500 function. If additional arguments are provided, they are
8501 additional argument types. The list of argument types must always
8502 be terminated by NULL_TREE. */
8503
8504 tree
8505 build_function_type_list (tree return_type, ...)
8506 {
8507 tree args;
8508 va_list p;
8509
8510 va_start (p, return_type);
8511 args = build_function_type_list_1 (false, return_type, p);
8512 va_end (p);
8513 return args;
8514 }
8515
8516 /* Build a variable argument function type. The RETURN_TYPE is the
8517 type returned by the function. If additional arguments are provided,
8518 they are additional argument types. The list of argument types must
8519 always be terminated by NULL_TREE. */
8520
8521 tree
8522 build_varargs_function_type_list (tree return_type, ...)
8523 {
8524 tree args;
8525 va_list p;
8526
8527 va_start (p, return_type);
8528 args = build_function_type_list_1 (true, return_type, p);
8529 va_end (p);
8530
8531 return args;
8532 }
8533
8534 /* Build a function type. RETURN_TYPE is the type returned by the
8535 function; VAARGS indicates whether the function takes varargs. The
8536 function takes N named arguments, the types of which are provided in
8537 ARG_TYPES. */
8538
8539 static tree
8540 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8541 tree *arg_types)
8542 {
8543 int i;
8544 tree t = vaargs ? NULL_TREE : void_list_node;
8545
8546 for (i = n - 1; i >= 0; i--)
8547 t = tree_cons (NULL_TREE, arg_types[i], t);
8548
8549 return build_function_type (return_type, t);
8550 }
8551
8552 /* Build a function type. RETURN_TYPE is the type returned by the
8553 function. The function takes N named arguments, the types of which
8554 are provided in ARG_TYPES. */
8555
8556 tree
8557 build_function_type_array (tree return_type, int n, tree *arg_types)
8558 {
8559 return build_function_type_array_1 (false, return_type, n, arg_types);
8560 }
8561
8562 /* Build a variable argument function type. RETURN_TYPE is the type
8563 returned by the function. The function takes N named arguments, the
8564 types of which are provided in ARG_TYPES. */
8565
8566 tree
8567 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8568 {
8569 return build_function_type_array_1 (true, return_type, n, arg_types);
8570 }
8571
8572 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8573 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8574 for the method. An implicit additional parameter (of type
8575 pointer-to-BASETYPE) is added to the ARGTYPES. */
8576
8577 tree
8578 build_method_type_directly (tree basetype,
8579 tree rettype,
8580 tree argtypes)
8581 {
8582 tree t;
8583 tree ptype;
8584 bool any_structural_p, any_noncanonical_p;
8585 tree canon_argtypes;
8586
8587 /* Make a node of the sort we want. */
8588 t = make_node (METHOD_TYPE);
8589
8590 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8591 TREE_TYPE (t) = rettype;
8592 ptype = build_pointer_type (basetype);
8593
8594 /* The actual arglist for this function includes a "hidden" argument
8595 which is "this". Put it into the list of argument types. */
8596 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8597 TYPE_ARG_TYPES (t) = argtypes;
8598
8599 /* If we already have such a type, use the old one. */
8600 hashval_t hash = type_hash_canon_hash (t);
8601 t = type_hash_canon (hash, t);
8602
8603 /* Set up the canonical type. */
8604 any_structural_p
8605 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8606 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8607 any_noncanonical_p
8608 = (TYPE_CANONICAL (basetype) != basetype
8609 || TYPE_CANONICAL (rettype) != rettype);
8610 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8611 &any_structural_p,
8612 &any_noncanonical_p);
8613 if (any_structural_p)
8614 SET_TYPE_STRUCTURAL_EQUALITY (t);
8615 else if (any_noncanonical_p)
8616 TYPE_CANONICAL (t)
8617 = build_method_type_directly (TYPE_CANONICAL (basetype),
8618 TYPE_CANONICAL (rettype),
8619 canon_argtypes);
8620 if (!COMPLETE_TYPE_P (t))
8621 layout_type (t);
8622
8623 return t;
8624 }
8625
8626 /* Construct, lay out and return the type of methods belonging to class
8627 BASETYPE and whose arguments and values are described by TYPE.
8628 If that type exists already, reuse it.
8629 TYPE must be a FUNCTION_TYPE node. */
8630
8631 tree
8632 build_method_type (tree basetype, tree type)
8633 {
8634 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8635
8636 return build_method_type_directly (basetype,
8637 TREE_TYPE (type),
8638 TYPE_ARG_TYPES (type));
8639 }
8640
8641 /* Construct, lay out and return the type of offsets to a value
8642 of type TYPE, within an object of type BASETYPE.
8643 If a suitable offset type exists already, reuse it. */
8644
8645 tree
8646 build_offset_type (tree basetype, tree type)
8647 {
8648 tree t;
8649
8650 /* Make a node of the sort we want. */
8651 t = make_node (OFFSET_TYPE);
8652
8653 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8654 TREE_TYPE (t) = type;
8655
8656 /* If we already have such a type, use the old one. */
8657 hashval_t hash = type_hash_canon_hash (t);
8658 t = type_hash_canon (hash, t);
8659
8660 if (!COMPLETE_TYPE_P (t))
8661 layout_type (t);
8662
8663 if (TYPE_CANONICAL (t) == t)
8664 {
8665 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8666 || TYPE_STRUCTURAL_EQUALITY_P (type))
8667 SET_TYPE_STRUCTURAL_EQUALITY (t);
8668 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8669 || TYPE_CANONICAL (type) != type)
8670 TYPE_CANONICAL (t)
8671 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8672 TYPE_CANONICAL (type));
8673 }
8674
8675 return t;
8676 }
8677
8678 /* Create a complex type whose components are COMPONENT_TYPE.
8679
8680 If NAMED is true, the type is given a TYPE_NAME. We do not always
8681 do so because this creates a DECL node and thus make the DECL_UIDs
8682 dependent on the type canonicalization hashtable, which is GC-ed,
8683 so the DECL_UIDs would not be stable wrt garbage collection. */
8684
8685 tree
8686 build_complex_type (tree component_type, bool named)
8687 {
8688 gcc_assert (INTEGRAL_TYPE_P (component_type)
8689 || SCALAR_FLOAT_TYPE_P (component_type)
8690 || FIXED_POINT_TYPE_P (component_type));
8691
8692 /* Make a node of the sort we want. */
8693 tree probe = make_node (COMPLEX_TYPE);
8694
8695 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8696
8697 /* If we already have such a type, use the old one. */
8698 hashval_t hash = type_hash_canon_hash (probe);
8699 tree t = type_hash_canon (hash, probe);
8700
8701 if (t == probe)
8702 {
8703 /* We created a new type. The hash insertion will have laid
8704 out the type. We need to check the canonicalization and
8705 maybe set the name. */
8706 gcc_checking_assert (COMPLETE_TYPE_P (t)
8707 && !TYPE_NAME (t)
8708 && TYPE_CANONICAL (t) == t);
8709
8710 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8711 SET_TYPE_STRUCTURAL_EQUALITY (t);
8712 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8713 TYPE_CANONICAL (t)
8714 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8715
8716 /* We need to create a name, since complex is a fundamental type. */
8717 if (named)
8718 {
8719 const char *name = NULL;
8720
8721 if (TREE_TYPE (t) == char_type_node)
8722 name = "complex char";
8723 else if (TREE_TYPE (t) == signed_char_type_node)
8724 name = "complex signed char";
8725 else if (TREE_TYPE (t) == unsigned_char_type_node)
8726 name = "complex unsigned char";
8727 else if (TREE_TYPE (t) == short_integer_type_node)
8728 name = "complex short int";
8729 else if (TREE_TYPE (t) == short_unsigned_type_node)
8730 name = "complex short unsigned int";
8731 else if (TREE_TYPE (t) == integer_type_node)
8732 name = "complex int";
8733 else if (TREE_TYPE (t) == unsigned_type_node)
8734 name = "complex unsigned int";
8735 else if (TREE_TYPE (t) == long_integer_type_node)
8736 name = "complex long int";
8737 else if (TREE_TYPE (t) == long_unsigned_type_node)
8738 name = "complex long unsigned int";
8739 else if (TREE_TYPE (t) == long_long_integer_type_node)
8740 name = "complex long long int";
8741 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8742 name = "complex long long unsigned int";
8743
8744 if (name != NULL)
8745 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8746 get_identifier (name), t);
8747 }
8748 }
8749
8750 return build_qualified_type (t, TYPE_QUALS (component_type));
8751 }
8752
8753 /* If TYPE is a real or complex floating-point type and the target
8754 does not directly support arithmetic on TYPE then return the wider
8755 type to be used for arithmetic on TYPE. Otherwise, return
8756 NULL_TREE. */
8757
8758 tree
8759 excess_precision_type (tree type)
8760 {
8761 /* The target can give two different responses to the question of
8762 which excess precision mode it would like depending on whether we
8763 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8764
8765 enum excess_precision_type requested_type
8766 = (flag_excess_precision == EXCESS_PRECISION_FAST
8767 ? EXCESS_PRECISION_TYPE_FAST
8768 : EXCESS_PRECISION_TYPE_STANDARD);
8769
8770 enum flt_eval_method target_flt_eval_method
8771 = targetm.c.excess_precision (requested_type);
8772
8773 /* The target should not ask for unpredictable float evaluation (though
8774 it might advertise that implicitly the evaluation is unpredictable,
8775 but we don't care about that here, it will have been reported
8776 elsewhere). If it does ask for unpredictable evaluation, we have
8777 nothing to do here. */
8778 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8779
8780 /* Nothing to do. The target has asked for all types we know about
8781 to be computed with their native precision and range. */
8782 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8783 return NULL_TREE;
8784
8785 /* The target will promote this type in a target-dependent way, so excess
8786 precision ought to leave it alone. */
8787 if (targetm.promoted_type (type) != NULL_TREE)
8788 return NULL_TREE;
8789
8790 machine_mode float16_type_mode = (float16_type_node
8791 ? TYPE_MODE (float16_type_node)
8792 : VOIDmode);
8793 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8794 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8795
8796 switch (TREE_CODE (type))
8797 {
8798 case REAL_TYPE:
8799 {
8800 machine_mode type_mode = TYPE_MODE (type);
8801 switch (target_flt_eval_method)
8802 {
8803 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8804 if (type_mode == float16_type_mode)
8805 return float_type_node;
8806 break;
8807 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8808 if (type_mode == float16_type_mode
8809 || type_mode == float_type_mode)
8810 return double_type_node;
8811 break;
8812 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8813 if (type_mode == float16_type_mode
8814 || type_mode == float_type_mode
8815 || type_mode == double_type_mode)
8816 return long_double_type_node;
8817 break;
8818 default:
8819 gcc_unreachable ();
8820 }
8821 break;
8822 }
8823 case COMPLEX_TYPE:
8824 {
8825 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8826 return NULL_TREE;
8827 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8828 switch (target_flt_eval_method)
8829 {
8830 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8831 if (type_mode == float16_type_mode)
8832 return complex_float_type_node;
8833 break;
8834 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8835 if (type_mode == float16_type_mode
8836 || type_mode == float_type_mode)
8837 return complex_double_type_node;
8838 break;
8839 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8840 if (type_mode == float16_type_mode
8841 || type_mode == float_type_mode
8842 || type_mode == double_type_mode)
8843 return complex_long_double_type_node;
8844 break;
8845 default:
8846 gcc_unreachable ();
8847 }
8848 break;
8849 }
8850 default:
8851 break;
8852 }
8853
8854 return NULL_TREE;
8855 }
8856 \f
8857 /* Return OP, stripped of any conversions to wider types as much as is safe.
8858 Converting the value back to OP's type makes a value equivalent to OP.
8859
8860 If FOR_TYPE is nonzero, we return a value which, if converted to
8861 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8862
8863 OP must have integer, real or enumeral type. Pointers are not allowed!
8864
8865 There are some cases where the obvious value we could return
8866 would regenerate to OP if converted to OP's type,
8867 but would not extend like OP to wider types.
8868 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8869 For example, if OP is (unsigned short)(signed char)-1,
8870 we avoid returning (signed char)-1 if FOR_TYPE is int,
8871 even though extending that to an unsigned short would regenerate OP,
8872 since the result of extending (signed char)-1 to (int)
8873 is different from (int) OP. */
8874
8875 tree
8876 get_unwidened (tree op, tree for_type)
8877 {
8878 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8879 tree type = TREE_TYPE (op);
8880 unsigned final_prec
8881 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8882 int uns
8883 = (for_type != 0 && for_type != type
8884 && final_prec > TYPE_PRECISION (type)
8885 && TYPE_UNSIGNED (type));
8886 tree win = op;
8887
8888 while (CONVERT_EXPR_P (op))
8889 {
8890 int bitschange;
8891
8892 /* TYPE_PRECISION on vector types has different meaning
8893 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8894 so avoid them here. */
8895 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8896 break;
8897
8898 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8899 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8900
8901 /* Truncations are many-one so cannot be removed.
8902 Unless we are later going to truncate down even farther. */
8903 if (bitschange < 0
8904 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8905 break;
8906
8907 /* See what's inside this conversion. If we decide to strip it,
8908 we will set WIN. */
8909 op = TREE_OPERAND (op, 0);
8910
8911 /* If we have not stripped any zero-extensions (uns is 0),
8912 we can strip any kind of extension.
8913 If we have previously stripped a zero-extension,
8914 only zero-extensions can safely be stripped.
8915 Any extension can be stripped if the bits it would produce
8916 are all going to be discarded later by truncating to FOR_TYPE. */
8917
8918 if (bitschange > 0)
8919 {
8920 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8921 win = op;
8922 /* TYPE_UNSIGNED says whether this is a zero-extension.
8923 Let's avoid computing it if it does not affect WIN
8924 and if UNS will not be needed again. */
8925 if ((uns
8926 || CONVERT_EXPR_P (op))
8927 && TYPE_UNSIGNED (TREE_TYPE (op)))
8928 {
8929 uns = 1;
8930 win = op;
8931 }
8932 }
8933 }
8934
8935 /* If we finally reach a constant see if it fits in sth smaller and
8936 in that case convert it. */
8937 if (TREE_CODE (win) == INTEGER_CST)
8938 {
8939 tree wtype = TREE_TYPE (win);
8940 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8941 if (for_type)
8942 prec = MAX (prec, final_prec);
8943 if (prec < TYPE_PRECISION (wtype))
8944 {
8945 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8946 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8947 win = fold_convert (t, win);
8948 }
8949 }
8950
8951 return win;
8952 }
8953 \f
8954 /* Return OP or a simpler expression for a narrower value
8955 which can be sign-extended or zero-extended to give back OP.
8956 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8957 or 0 if the value should be sign-extended. */
8958
8959 tree
8960 get_narrower (tree op, int *unsignedp_ptr)
8961 {
8962 int uns = 0;
8963 int first = 1;
8964 tree win = op;
8965 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8966
8967 if (TREE_CODE (op) == COMPOUND_EXPR)
8968 {
8969 do
8970 op = TREE_OPERAND (op, 1);
8971 while (TREE_CODE (op) == COMPOUND_EXPR);
8972 tree ret = get_narrower (op, unsignedp_ptr);
8973 if (ret == op)
8974 return win;
8975 auto_vec <tree, 16> v;
8976 unsigned int i;
8977 for (op = win; TREE_CODE (op) == COMPOUND_EXPR;
8978 op = TREE_OPERAND (op, 1))
8979 v.safe_push (op);
8980 FOR_EACH_VEC_ELT_REVERSE (v, i, op)
8981 ret = build2_loc (EXPR_LOCATION (op), COMPOUND_EXPR,
8982 TREE_TYPE (ret), TREE_OPERAND (op, 0),
8983 ret);
8984 return ret;
8985 }
8986 while (TREE_CODE (op) == NOP_EXPR)
8987 {
8988 int bitschange
8989 = (TYPE_PRECISION (TREE_TYPE (op))
8990 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8991
8992 /* Truncations are many-one so cannot be removed. */
8993 if (bitschange < 0)
8994 break;
8995
8996 /* See what's inside this conversion. If we decide to strip it,
8997 we will set WIN. */
8998
8999 if (bitschange > 0)
9000 {
9001 op = TREE_OPERAND (op, 0);
9002 /* An extension: the outermost one can be stripped,
9003 but remember whether it is zero or sign extension. */
9004 if (first)
9005 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9006 /* Otherwise, if a sign extension has been stripped,
9007 only sign extensions can now be stripped;
9008 if a zero extension has been stripped, only zero-extensions. */
9009 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
9010 break;
9011 first = 0;
9012 }
9013 else /* bitschange == 0 */
9014 {
9015 /* A change in nominal type can always be stripped, but we must
9016 preserve the unsignedness. */
9017 if (first)
9018 uns = TYPE_UNSIGNED (TREE_TYPE (op));
9019 first = 0;
9020 op = TREE_OPERAND (op, 0);
9021 /* Keep trying to narrow, but don't assign op to win if it
9022 would turn an integral type into something else. */
9023 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
9024 continue;
9025 }
9026
9027 win = op;
9028 }
9029
9030 if (TREE_CODE (op) == COMPONENT_REF
9031 /* Since type_for_size always gives an integer type. */
9032 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
9033 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
9034 /* Ensure field is laid out already. */
9035 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
9036 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
9037 {
9038 unsigned HOST_WIDE_INT innerprec
9039 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
9040 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
9041 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
9042 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
9043
9044 /* We can get this structure field in a narrower type that fits it,
9045 but the resulting extension to its nominal type (a fullword type)
9046 must satisfy the same conditions as for other extensions.
9047
9048 Do this only for fields that are aligned (not bit-fields),
9049 because when bit-field insns will be used there is no
9050 advantage in doing this. */
9051
9052 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
9053 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
9054 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
9055 && type != 0)
9056 {
9057 if (first)
9058 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
9059 win = fold_convert (type, op);
9060 }
9061 }
9062
9063 *unsignedp_ptr = uns;
9064 return win;
9065 }
9066 \f
9067 /* Return true if integer constant C has a value that is permissible
9068 for TYPE, an integral type. */
9069
9070 bool
9071 int_fits_type_p (const_tree c, const_tree type)
9072 {
9073 tree type_low_bound, type_high_bound;
9074 bool ok_for_low_bound, ok_for_high_bound;
9075 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
9076
9077 /* Non-standard boolean types can have arbitrary precision but various
9078 transformations assume that they can only take values 0 and +/-1. */
9079 if (TREE_CODE (type) == BOOLEAN_TYPE)
9080 return wi::fits_to_boolean_p (wi::to_wide (c), type);
9081
9082 retry:
9083 type_low_bound = TYPE_MIN_VALUE (type);
9084 type_high_bound = TYPE_MAX_VALUE (type);
9085
9086 /* If at least one bound of the type is a constant integer, we can check
9087 ourselves and maybe make a decision. If no such decision is possible, but
9088 this type is a subtype, try checking against that. Otherwise, use
9089 fits_to_tree_p, which checks against the precision.
9090
9091 Compute the status for each possibly constant bound, and return if we see
9092 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9093 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9094 for "constant known to fit". */
9095
9096 /* Check if c >= type_low_bound. */
9097 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9098 {
9099 if (tree_int_cst_lt (c, type_low_bound))
9100 return false;
9101 ok_for_low_bound = true;
9102 }
9103 else
9104 ok_for_low_bound = false;
9105
9106 /* Check if c <= type_high_bound. */
9107 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9108 {
9109 if (tree_int_cst_lt (type_high_bound, c))
9110 return false;
9111 ok_for_high_bound = true;
9112 }
9113 else
9114 ok_for_high_bound = false;
9115
9116 /* If the constant fits both bounds, the result is known. */
9117 if (ok_for_low_bound && ok_for_high_bound)
9118 return true;
9119
9120 /* Perform some generic filtering which may allow making a decision
9121 even if the bounds are not constant. First, negative integers
9122 never fit in unsigned types, */
9123 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
9124 return false;
9125
9126 /* Second, narrower types always fit in wider ones. */
9127 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9128 return true;
9129
9130 /* Third, unsigned integers with top bit set never fit signed types. */
9131 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9132 {
9133 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
9134 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9135 {
9136 /* When a tree_cst is converted to a wide-int, the precision
9137 is taken from the type. However, if the precision of the
9138 mode underneath the type is smaller than that, it is
9139 possible that the value will not fit. The test below
9140 fails if any bit is set between the sign bit of the
9141 underlying mode and the top bit of the type. */
9142 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
9143 return false;
9144 }
9145 else if (wi::neg_p (wi::to_wide (c)))
9146 return false;
9147 }
9148
9149 /* If we haven't been able to decide at this point, there nothing more we
9150 can check ourselves here. Look at the base type if we have one and it
9151 has the same precision. */
9152 if (TREE_CODE (type) == INTEGER_TYPE
9153 && TREE_TYPE (type) != 0
9154 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9155 {
9156 type = TREE_TYPE (type);
9157 goto retry;
9158 }
9159
9160 /* Or to fits_to_tree_p, if nothing else. */
9161 return wi::fits_to_tree_p (wi::to_wide (c), type);
9162 }
9163
9164 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9165 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9166 represented (assuming two's-complement arithmetic) within the bit
9167 precision of the type are returned instead. */
9168
9169 void
9170 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9171 {
9172 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9173 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9174 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
9175 else
9176 {
9177 if (TYPE_UNSIGNED (type))
9178 mpz_set_ui (min, 0);
9179 else
9180 {
9181 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9182 wi::to_mpz (mn, min, SIGNED);
9183 }
9184 }
9185
9186 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9187 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9188 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
9189 else
9190 {
9191 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9192 wi::to_mpz (mn, max, TYPE_SIGN (type));
9193 }
9194 }
9195
9196 /* Return true if VAR is an automatic variable. */
9197
9198 bool
9199 auto_var_p (const_tree var)
9200 {
9201 return ((((VAR_P (var) && ! DECL_EXTERNAL (var))
9202 || TREE_CODE (var) == PARM_DECL)
9203 && ! TREE_STATIC (var))
9204 || TREE_CODE (var) == RESULT_DECL);
9205 }
9206
9207 /* Return true if VAR is an automatic variable defined in function FN. */
9208
9209 bool
9210 auto_var_in_fn_p (const_tree var, const_tree fn)
9211 {
9212 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9213 && (auto_var_p (var)
9214 || TREE_CODE (var) == LABEL_DECL));
9215 }
9216
9217 /* Subprogram of following function. Called by walk_tree.
9218
9219 Return *TP if it is an automatic variable or parameter of the
9220 function passed in as DATA. */
9221
9222 static tree
9223 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9224 {
9225 tree fn = (tree) data;
9226
9227 if (TYPE_P (*tp))
9228 *walk_subtrees = 0;
9229
9230 else if (DECL_P (*tp)
9231 && auto_var_in_fn_p (*tp, fn))
9232 return *tp;
9233
9234 return NULL_TREE;
9235 }
9236
9237 /* Returns true if T is, contains, or refers to a type with variable
9238 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9239 arguments, but not the return type. If FN is nonzero, only return
9240 true if a modifier of the type or position of FN is a variable or
9241 parameter inside FN.
9242
9243 This concept is more general than that of C99 'variably modified types':
9244 in C99, a struct type is never variably modified because a VLA may not
9245 appear as a structure member. However, in GNU C code like:
9246
9247 struct S { int i[f()]; };
9248
9249 is valid, and other languages may define similar constructs. */
9250
9251 bool
9252 variably_modified_type_p (tree type, tree fn)
9253 {
9254 tree t;
9255
9256 /* Test if T is either variable (if FN is zero) or an expression containing
9257 a variable in FN. If TYPE isn't gimplified, return true also if
9258 gimplify_one_sizepos would gimplify the expression into a local
9259 variable. */
9260 #define RETURN_TRUE_IF_VAR(T) \
9261 do { tree _t = (T); \
9262 if (_t != NULL_TREE \
9263 && _t != error_mark_node \
9264 && !CONSTANT_CLASS_P (_t) \
9265 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9266 && (!fn \
9267 || (!TYPE_SIZES_GIMPLIFIED (type) \
9268 && (TREE_CODE (_t) != VAR_DECL \
9269 && !CONTAINS_PLACEHOLDER_P (_t))) \
9270 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9271 return true; } while (0)
9272
9273 if (type == error_mark_node)
9274 return false;
9275
9276 /* If TYPE itself has variable size, it is variably modified. */
9277 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9278 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9279
9280 switch (TREE_CODE (type))
9281 {
9282 case POINTER_TYPE:
9283 case REFERENCE_TYPE:
9284 case VECTOR_TYPE:
9285 /* Ada can have pointer types refering to themselves indirectly. */
9286 if (TREE_VISITED (type))
9287 return false;
9288 TREE_VISITED (type) = true;
9289 if (variably_modified_type_p (TREE_TYPE (type), fn))
9290 {
9291 TREE_VISITED (type) = false;
9292 return true;
9293 }
9294 TREE_VISITED (type) = false;
9295 break;
9296
9297 case FUNCTION_TYPE:
9298 case METHOD_TYPE:
9299 /* If TYPE is a function type, it is variably modified if the
9300 return type is variably modified. */
9301 if (variably_modified_type_p (TREE_TYPE (type), fn))
9302 return true;
9303 break;
9304
9305 case INTEGER_TYPE:
9306 case REAL_TYPE:
9307 case FIXED_POINT_TYPE:
9308 case ENUMERAL_TYPE:
9309 case BOOLEAN_TYPE:
9310 /* Scalar types are variably modified if their end points
9311 aren't constant. */
9312 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9313 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9314 break;
9315
9316 case RECORD_TYPE:
9317 case UNION_TYPE:
9318 case QUAL_UNION_TYPE:
9319 /* We can't see if any of the fields are variably-modified by the
9320 definition we normally use, since that would produce infinite
9321 recursion via pointers. */
9322 /* This is variably modified if some field's type is. */
9323 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9324 if (TREE_CODE (t) == FIELD_DECL)
9325 {
9326 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9327 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9328 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9329
9330 /* If the type is a qualified union, then the DECL_QUALIFIER
9331 of fields can also be an expression containing a variable. */
9332 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9333 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9334
9335 /* If the field is a qualified union, then it's only a container
9336 for what's inside so we look into it. That's necessary in LTO
9337 mode because the sizes of the field tested above have been set
9338 to PLACEHOLDER_EXPRs by free_lang_data. */
9339 if (TREE_CODE (TREE_TYPE (t)) == QUAL_UNION_TYPE
9340 && variably_modified_type_p (TREE_TYPE (t), fn))
9341 return true;
9342 }
9343 break;
9344
9345 case ARRAY_TYPE:
9346 /* Do not call ourselves to avoid infinite recursion. This is
9347 variably modified if the element type is. */
9348 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9349 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9350 break;
9351
9352 default:
9353 break;
9354 }
9355
9356 /* The current language may have other cases to check, but in general,
9357 all other types are not variably modified. */
9358 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9359
9360 #undef RETURN_TRUE_IF_VAR
9361 }
9362
9363 /* Given a DECL or TYPE, return the scope in which it was declared, or
9364 NULL_TREE if there is no containing scope. */
9365
9366 tree
9367 get_containing_scope (const_tree t)
9368 {
9369 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9370 }
9371
9372 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
9373
9374 const_tree
9375 get_ultimate_context (const_tree decl)
9376 {
9377 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
9378 {
9379 if (TREE_CODE (decl) == BLOCK)
9380 decl = BLOCK_SUPERCONTEXT (decl);
9381 else
9382 decl = get_containing_scope (decl);
9383 }
9384 return decl;
9385 }
9386
9387 /* Return the innermost context enclosing DECL that is
9388 a FUNCTION_DECL, or zero if none. */
9389
9390 tree
9391 decl_function_context (const_tree decl)
9392 {
9393 tree context;
9394
9395 if (TREE_CODE (decl) == ERROR_MARK)
9396 return 0;
9397
9398 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9399 where we look up the function at runtime. Such functions always take
9400 a first argument of type 'pointer to real context'.
9401
9402 C++ should really be fixed to use DECL_CONTEXT for the real context,
9403 and use something else for the "virtual context". */
9404 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
9405 context
9406 = TYPE_MAIN_VARIANT
9407 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9408 else
9409 context = DECL_CONTEXT (decl);
9410
9411 while (context && TREE_CODE (context) != FUNCTION_DECL)
9412 {
9413 if (TREE_CODE (context) == BLOCK)
9414 context = BLOCK_SUPERCONTEXT (context);
9415 else
9416 context = get_containing_scope (context);
9417 }
9418
9419 return context;
9420 }
9421
9422 /* Return the innermost context enclosing DECL that is
9423 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9424 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9425
9426 tree
9427 decl_type_context (const_tree decl)
9428 {
9429 tree context = DECL_CONTEXT (decl);
9430
9431 while (context)
9432 switch (TREE_CODE (context))
9433 {
9434 case NAMESPACE_DECL:
9435 case TRANSLATION_UNIT_DECL:
9436 return NULL_TREE;
9437
9438 case RECORD_TYPE:
9439 case UNION_TYPE:
9440 case QUAL_UNION_TYPE:
9441 return context;
9442
9443 case TYPE_DECL:
9444 case FUNCTION_DECL:
9445 context = DECL_CONTEXT (context);
9446 break;
9447
9448 case BLOCK:
9449 context = BLOCK_SUPERCONTEXT (context);
9450 break;
9451
9452 default:
9453 gcc_unreachable ();
9454 }
9455
9456 return NULL_TREE;
9457 }
9458
9459 /* CALL is a CALL_EXPR. Return the declaration for the function
9460 called, or NULL_TREE if the called function cannot be
9461 determined. */
9462
9463 tree
9464 get_callee_fndecl (const_tree call)
9465 {
9466 tree addr;
9467
9468 if (call == error_mark_node)
9469 return error_mark_node;
9470
9471 /* It's invalid to call this function with anything but a
9472 CALL_EXPR. */
9473 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9474
9475 /* The first operand to the CALL is the address of the function
9476 called. */
9477 addr = CALL_EXPR_FN (call);
9478
9479 /* If there is no function, return early. */
9480 if (addr == NULL_TREE)
9481 return NULL_TREE;
9482
9483 STRIP_NOPS (addr);
9484
9485 /* If this is a readonly function pointer, extract its initial value. */
9486 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9487 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9488 && DECL_INITIAL (addr))
9489 addr = DECL_INITIAL (addr);
9490
9491 /* If the address is just `&f' for some function `f', then we know
9492 that `f' is being called. */
9493 if (TREE_CODE (addr) == ADDR_EXPR
9494 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9495 return TREE_OPERAND (addr, 0);
9496
9497 /* We couldn't figure out what was being called. */
9498 return NULL_TREE;
9499 }
9500
9501 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9502 return the associated function code, otherwise return CFN_LAST. */
9503
9504 combined_fn
9505 get_call_combined_fn (const_tree call)
9506 {
9507 /* It's invalid to call this function with anything but a CALL_EXPR. */
9508 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9509
9510 if (!CALL_EXPR_FN (call))
9511 return as_combined_fn (CALL_EXPR_IFN (call));
9512
9513 tree fndecl = get_callee_fndecl (call);
9514 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
9515 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9516
9517 return CFN_LAST;
9518 }
9519
9520 /* Comparator of indices based on tree_node_counts. */
9521
9522 static int
9523 tree_nodes_cmp (const void *p1, const void *p2)
9524 {
9525 const unsigned *n1 = (const unsigned *)p1;
9526 const unsigned *n2 = (const unsigned *)p2;
9527
9528 return tree_node_counts[*n1] - tree_node_counts[*n2];
9529 }
9530
9531 /* Comparator of indices based on tree_code_counts. */
9532
9533 static int
9534 tree_codes_cmp (const void *p1, const void *p2)
9535 {
9536 const unsigned *n1 = (const unsigned *)p1;
9537 const unsigned *n2 = (const unsigned *)p2;
9538
9539 return tree_code_counts[*n1] - tree_code_counts[*n2];
9540 }
9541
9542 #define TREE_MEM_USAGE_SPACES 40
9543
9544 /* Print debugging information about tree nodes generated during the compile,
9545 and any language-specific information. */
9546
9547 void
9548 dump_tree_statistics (void)
9549 {
9550 if (GATHER_STATISTICS)
9551 {
9552 uint64_t total_nodes, total_bytes;
9553 fprintf (stderr, "\nKind Nodes Bytes\n");
9554 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9555 total_nodes = total_bytes = 0;
9556
9557 {
9558 auto_vec<unsigned> indices (all_kinds);
9559 for (unsigned i = 0; i < all_kinds; i++)
9560 indices.quick_push (i);
9561 indices.qsort (tree_nodes_cmp);
9562
9563 for (unsigned i = 0; i < (int) all_kinds; i++)
9564 {
9565 unsigned j = indices[i];
9566 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n",
9567 tree_node_kind_names[j], SIZE_AMOUNT (tree_node_counts[j]),
9568 SIZE_AMOUNT (tree_node_sizes[j]));
9569 total_nodes += tree_node_counts[j];
9570 total_bytes += tree_node_sizes[j];
9571 }
9572 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9573 fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", "Total",
9574 SIZE_AMOUNT (total_nodes), SIZE_AMOUNT (total_bytes));
9575 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9576 }
9577
9578 {
9579 fprintf (stderr, "Code Nodes\n");
9580 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9581
9582 auto_vec<unsigned> indices (MAX_TREE_CODES);
9583 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9584 indices.quick_push (i);
9585 indices.qsort (tree_codes_cmp);
9586
9587 for (unsigned i = 0; i < MAX_TREE_CODES; i++)
9588 {
9589 unsigned j = indices[i];
9590 fprintf (stderr, "%-32s %6" PRIu64 "%c\n",
9591 get_tree_code_name ((enum tree_code) j),
9592 SIZE_AMOUNT (tree_code_counts[j]));
9593 }
9594 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9595 fprintf (stderr, "\n");
9596 ssanames_print_statistics ();
9597 fprintf (stderr, "\n");
9598 phinodes_print_statistics ();
9599 fprintf (stderr, "\n");
9600 }
9601 }
9602 else
9603 fprintf (stderr, "(No per-node statistics)\n");
9604
9605 print_type_hash_statistics ();
9606 print_debug_expr_statistics ();
9607 print_value_expr_statistics ();
9608 lang_hooks.print_statistics ();
9609 }
9610 \f
9611 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9612
9613 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9614
9615 unsigned
9616 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9617 {
9618 /* This relies on the raw feedback's top 4 bits being zero. */
9619 #define FEEDBACK(X) ((X) * 0x04c11db7)
9620 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9621 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9622 static const unsigned syndromes[16] =
9623 {
9624 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9625 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9626 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9627 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9628 };
9629 #undef FEEDBACK
9630 #undef SYNDROME
9631
9632 value <<= (32 - bytes * 8);
9633 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9634 {
9635 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9636
9637 chksum = (chksum << 4) ^ feedback;
9638 }
9639
9640 return chksum;
9641 }
9642
9643 /* Generate a crc32 of a string. */
9644
9645 unsigned
9646 crc32_string (unsigned chksum, const char *string)
9647 {
9648 do
9649 chksum = crc32_byte (chksum, *string);
9650 while (*string++);
9651 return chksum;
9652 }
9653
9654 /* P is a string that will be used in a symbol. Mask out any characters
9655 that are not valid in that context. */
9656
9657 void
9658 clean_symbol_name (char *p)
9659 {
9660 for (; *p; p++)
9661 if (! (ISALNUM (*p)
9662 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9663 || *p == '$'
9664 #endif
9665 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9666 || *p == '.'
9667 #endif
9668 ))
9669 *p = '_';
9670 }
9671
9672 static GTY(()) unsigned anon_cnt = 0; /* Saved for PCH. */
9673
9674 /* Create a unique anonymous identifier. The identifier is still a
9675 valid assembly label. */
9676
9677 tree
9678 make_anon_name ()
9679 {
9680 const char *fmt =
9681 #if !defined (NO_DOT_IN_LABEL)
9682 "."
9683 #elif !defined (NO_DOLLAR_IN_LABEL)
9684 "$"
9685 #else
9686 "_"
9687 #endif
9688 "_anon_%d";
9689
9690 char buf[24];
9691 int len = snprintf (buf, sizeof (buf), fmt, anon_cnt++);
9692 gcc_checking_assert (len < int (sizeof (buf)));
9693
9694 tree id = get_identifier_with_length (buf, len);
9695 IDENTIFIER_ANON_P (id) = true;
9696
9697 return id;
9698 }
9699
9700 /* Generate a name for a special-purpose function.
9701 The generated name may need to be unique across the whole link.
9702 Changes to this function may also require corresponding changes to
9703 xstrdup_mask_random.
9704 TYPE is some string to identify the purpose of this function to the
9705 linker or collect2; it must start with an uppercase letter,
9706 one of:
9707 I - for constructors
9708 D - for destructors
9709 N - for C++ anonymous namespaces
9710 F - for DWARF unwind frame information. */
9711
9712 tree
9713 get_file_function_name (const char *type)
9714 {
9715 char *buf;
9716 const char *p;
9717 char *q;
9718
9719 /* If we already have a name we know to be unique, just use that. */
9720 if (first_global_object_name)
9721 p = q = ASTRDUP (first_global_object_name);
9722 /* If the target is handling the constructors/destructors, they
9723 will be local to this file and the name is only necessary for
9724 debugging purposes.
9725 We also assign sub_I and sub_D sufixes to constructors called from
9726 the global static constructors. These are always local. */
9727 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9728 || (strncmp (type, "sub_", 4) == 0
9729 && (type[4] == 'I' || type[4] == 'D')))
9730 {
9731 const char *file = main_input_filename;
9732 if (! file)
9733 file = LOCATION_FILE (input_location);
9734 /* Just use the file's basename, because the full pathname
9735 might be quite long. */
9736 p = q = ASTRDUP (lbasename (file));
9737 }
9738 else
9739 {
9740 /* Otherwise, the name must be unique across the entire link.
9741 We don't have anything that we know to be unique to this translation
9742 unit, so use what we do have and throw in some randomness. */
9743 unsigned len;
9744 const char *name = weak_global_object_name;
9745 const char *file = main_input_filename;
9746
9747 if (! name)
9748 name = "";
9749 if (! file)
9750 file = LOCATION_FILE (input_location);
9751
9752 len = strlen (file);
9753 q = (char *) alloca (9 + 19 + len + 1);
9754 memcpy (q, file, len + 1);
9755
9756 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9757 crc32_string (0, name), get_random_seed (false));
9758
9759 p = q;
9760 }
9761
9762 clean_symbol_name (q);
9763 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9764 + strlen (type));
9765
9766 /* Set up the name of the file-level functions we may need.
9767 Use a global object (which is already required to be unique over
9768 the program) rather than the file name (which imposes extra
9769 constraints). */
9770 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9771
9772 return get_identifier (buf);
9773 }
9774 \f
9775 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9776
9777 /* Complain that the tree code of NODE does not match the expected 0
9778 terminated list of trailing codes. The trailing code list can be
9779 empty, for a more vague error message. FILE, LINE, and FUNCTION
9780 are of the caller. */
9781
9782 void
9783 tree_check_failed (const_tree node, const char *file,
9784 int line, const char *function, ...)
9785 {
9786 va_list args;
9787 const char *buffer;
9788 unsigned length = 0;
9789 enum tree_code code;
9790
9791 va_start (args, function);
9792 while ((code = (enum tree_code) va_arg (args, int)))
9793 length += 4 + strlen (get_tree_code_name (code));
9794 va_end (args);
9795 if (length)
9796 {
9797 char *tmp;
9798 va_start (args, function);
9799 length += strlen ("expected ");
9800 buffer = tmp = (char *) alloca (length);
9801 length = 0;
9802 while ((code = (enum tree_code) va_arg (args, int)))
9803 {
9804 const char *prefix = length ? " or " : "expected ";
9805
9806 strcpy (tmp + length, prefix);
9807 length += strlen (prefix);
9808 strcpy (tmp + length, get_tree_code_name (code));
9809 length += strlen (get_tree_code_name (code));
9810 }
9811 va_end (args);
9812 }
9813 else
9814 buffer = "unexpected node";
9815
9816 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9817 buffer, get_tree_code_name (TREE_CODE (node)),
9818 function, trim_filename (file), line);
9819 }
9820
9821 /* Complain that the tree code of NODE does match the expected 0
9822 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9823 the caller. */
9824
9825 void
9826 tree_not_check_failed (const_tree node, const char *file,
9827 int line, const char *function, ...)
9828 {
9829 va_list args;
9830 char *buffer;
9831 unsigned length = 0;
9832 enum tree_code code;
9833
9834 va_start (args, function);
9835 while ((code = (enum tree_code) va_arg (args, int)))
9836 length += 4 + strlen (get_tree_code_name (code));
9837 va_end (args);
9838 va_start (args, function);
9839 buffer = (char *) alloca (length);
9840 length = 0;
9841 while ((code = (enum tree_code) va_arg (args, int)))
9842 {
9843 if (length)
9844 {
9845 strcpy (buffer + length, " or ");
9846 length += 4;
9847 }
9848 strcpy (buffer + length, get_tree_code_name (code));
9849 length += strlen (get_tree_code_name (code));
9850 }
9851 va_end (args);
9852
9853 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9854 buffer, get_tree_code_name (TREE_CODE (node)),
9855 function, trim_filename (file), line);
9856 }
9857
9858 /* Similar to tree_check_failed, except that we check for a class of tree
9859 code, given in CL. */
9860
9861 void
9862 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9863 const char *file, int line, const char *function)
9864 {
9865 internal_error
9866 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9867 TREE_CODE_CLASS_STRING (cl),
9868 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9869 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9870 }
9871
9872 /* Similar to tree_check_failed, except that instead of specifying a
9873 dozen codes, use the knowledge that they're all sequential. */
9874
9875 void
9876 tree_range_check_failed (const_tree node, const char *file, int line,
9877 const char *function, enum tree_code c1,
9878 enum tree_code c2)
9879 {
9880 char *buffer;
9881 unsigned length = 0;
9882 unsigned int c;
9883
9884 for (c = c1; c <= c2; ++c)
9885 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9886
9887 length += strlen ("expected ");
9888 buffer = (char *) alloca (length);
9889 length = 0;
9890
9891 for (c = c1; c <= c2; ++c)
9892 {
9893 const char *prefix = length ? " or " : "expected ";
9894
9895 strcpy (buffer + length, prefix);
9896 length += strlen (prefix);
9897 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9898 length += strlen (get_tree_code_name ((enum tree_code) c));
9899 }
9900
9901 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9902 buffer, get_tree_code_name (TREE_CODE (node)),
9903 function, trim_filename (file), line);
9904 }
9905
9906
9907 /* Similar to tree_check_failed, except that we check that a tree does
9908 not have the specified code, given in CL. */
9909
9910 void
9911 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9912 const char *file, int line, const char *function)
9913 {
9914 internal_error
9915 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9916 TREE_CODE_CLASS_STRING (cl),
9917 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9918 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9919 }
9920
9921
9922 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9923
9924 void
9925 omp_clause_check_failed (const_tree node, const char *file, int line,
9926 const char *function, enum omp_clause_code code)
9927 {
9928 internal_error ("tree check: expected %<omp_clause %s%>, have %qs "
9929 "in %s, at %s:%d",
9930 omp_clause_code_name[code],
9931 get_tree_code_name (TREE_CODE (node)),
9932 function, trim_filename (file), line);
9933 }
9934
9935
9936 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9937
9938 void
9939 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9940 const char *function, enum omp_clause_code c1,
9941 enum omp_clause_code c2)
9942 {
9943 char *buffer;
9944 unsigned length = 0;
9945 unsigned int c;
9946
9947 for (c = c1; c <= c2; ++c)
9948 length += 4 + strlen (omp_clause_code_name[c]);
9949
9950 length += strlen ("expected ");
9951 buffer = (char *) alloca (length);
9952 length = 0;
9953
9954 for (c = c1; c <= c2; ++c)
9955 {
9956 const char *prefix = length ? " or " : "expected ";
9957
9958 strcpy (buffer + length, prefix);
9959 length += strlen (prefix);
9960 strcpy (buffer + length, omp_clause_code_name[c]);
9961 length += strlen (omp_clause_code_name[c]);
9962 }
9963
9964 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9965 buffer, omp_clause_code_name[TREE_CODE (node)],
9966 function, trim_filename (file), line);
9967 }
9968
9969
9970 #undef DEFTREESTRUCT
9971 #define DEFTREESTRUCT(VAL, NAME) NAME,
9972
9973 static const char *ts_enum_names[] = {
9974 #include "treestruct.def"
9975 };
9976 #undef DEFTREESTRUCT
9977
9978 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9979
9980 /* Similar to tree_class_check_failed, except that we check for
9981 whether CODE contains the tree structure identified by EN. */
9982
9983 void
9984 tree_contains_struct_check_failed (const_tree node,
9985 const enum tree_node_structure_enum en,
9986 const char *file, int line,
9987 const char *function)
9988 {
9989 internal_error
9990 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9991 TS_ENUM_NAME (en),
9992 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9993 }
9994
9995
9996 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9997 (dynamically sized) vector. */
9998
9999 void
10000 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
10001 const char *function)
10002 {
10003 internal_error
10004 ("tree check: accessed elt %d of %<tree_int_cst%> with %d elts in %s, "
10005 "at %s:%d",
10006 idx + 1, len, function, trim_filename (file), line);
10007 }
10008
10009 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
10010 (dynamically sized) vector. */
10011
10012 void
10013 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
10014 const char *function)
10015 {
10016 internal_error
10017 ("tree check: accessed elt %d of %<tree_vec%> with %d elts in %s, at %s:%d",
10018 idx + 1, len, function, trim_filename (file), line);
10019 }
10020
10021 /* Similar to above, except that the check is for the bounds of the operand
10022 vector of an expression node EXP. */
10023
10024 void
10025 tree_operand_check_failed (int idx, const_tree exp, const char *file,
10026 int line, const char *function)
10027 {
10028 enum tree_code code = TREE_CODE (exp);
10029 internal_error
10030 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
10031 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
10032 function, trim_filename (file), line);
10033 }
10034
10035 /* Similar to above, except that the check is for the number of
10036 operands of an OMP_CLAUSE node. */
10037
10038 void
10039 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
10040 int line, const char *function)
10041 {
10042 internal_error
10043 ("tree check: accessed operand %d of %<omp_clause %s%> with %d operands "
10044 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
10045 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
10046 trim_filename (file), line);
10047 }
10048 #endif /* ENABLE_TREE_CHECKING */
10049 \f
10050 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
10051 and mapped to the machine mode MODE. Initialize its fields and build
10052 the information necessary for debugging output. */
10053
10054 static tree
10055 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
10056 {
10057 tree t;
10058 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
10059
10060 t = make_node (VECTOR_TYPE);
10061 TREE_TYPE (t) = mv_innertype;
10062 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
10063 SET_TYPE_MODE (t, mode);
10064
10065 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
10066 SET_TYPE_STRUCTURAL_EQUALITY (t);
10067 else if ((TYPE_CANONICAL (mv_innertype) != innertype
10068 || mode != VOIDmode)
10069 && !VECTOR_BOOLEAN_TYPE_P (t))
10070 TYPE_CANONICAL (t)
10071 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
10072
10073 layout_type (t);
10074
10075 hashval_t hash = type_hash_canon_hash (t);
10076 t = type_hash_canon (hash, t);
10077
10078 /* We have built a main variant, based on the main variant of the
10079 inner type. Use it to build the variant we return. */
10080 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
10081 && TREE_TYPE (t) != innertype)
10082 return build_type_attribute_qual_variant (t,
10083 TYPE_ATTRIBUTES (innertype),
10084 TYPE_QUALS (innertype));
10085
10086 return t;
10087 }
10088
10089 static tree
10090 make_or_reuse_type (unsigned size, int unsignedp)
10091 {
10092 int i;
10093
10094 if (size == INT_TYPE_SIZE)
10095 return unsignedp ? unsigned_type_node : integer_type_node;
10096 if (size == CHAR_TYPE_SIZE)
10097 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
10098 if (size == SHORT_TYPE_SIZE)
10099 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
10100 if (size == LONG_TYPE_SIZE)
10101 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
10102 if (size == LONG_LONG_TYPE_SIZE)
10103 return (unsignedp ? long_long_unsigned_type_node
10104 : long_long_integer_type_node);
10105
10106 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10107 if (size == int_n_data[i].bitsize
10108 && int_n_enabled_p[i])
10109 return (unsignedp ? int_n_trees[i].unsigned_type
10110 : int_n_trees[i].signed_type);
10111
10112 if (unsignedp)
10113 return make_unsigned_type (size);
10114 else
10115 return make_signed_type (size);
10116 }
10117
10118 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
10119
10120 static tree
10121 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
10122 {
10123 if (satp)
10124 {
10125 if (size == SHORT_FRACT_TYPE_SIZE)
10126 return unsignedp ? sat_unsigned_short_fract_type_node
10127 : sat_short_fract_type_node;
10128 if (size == FRACT_TYPE_SIZE)
10129 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
10130 if (size == LONG_FRACT_TYPE_SIZE)
10131 return unsignedp ? sat_unsigned_long_fract_type_node
10132 : sat_long_fract_type_node;
10133 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10134 return unsignedp ? sat_unsigned_long_long_fract_type_node
10135 : sat_long_long_fract_type_node;
10136 }
10137 else
10138 {
10139 if (size == SHORT_FRACT_TYPE_SIZE)
10140 return unsignedp ? unsigned_short_fract_type_node
10141 : short_fract_type_node;
10142 if (size == FRACT_TYPE_SIZE)
10143 return unsignedp ? unsigned_fract_type_node : fract_type_node;
10144 if (size == LONG_FRACT_TYPE_SIZE)
10145 return unsignedp ? unsigned_long_fract_type_node
10146 : long_fract_type_node;
10147 if (size == LONG_LONG_FRACT_TYPE_SIZE)
10148 return unsignedp ? unsigned_long_long_fract_type_node
10149 : long_long_fract_type_node;
10150 }
10151
10152 return make_fract_type (size, unsignedp, satp);
10153 }
10154
10155 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
10156
10157 static tree
10158 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
10159 {
10160 if (satp)
10161 {
10162 if (size == SHORT_ACCUM_TYPE_SIZE)
10163 return unsignedp ? sat_unsigned_short_accum_type_node
10164 : sat_short_accum_type_node;
10165 if (size == ACCUM_TYPE_SIZE)
10166 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10167 if (size == LONG_ACCUM_TYPE_SIZE)
10168 return unsignedp ? sat_unsigned_long_accum_type_node
10169 : sat_long_accum_type_node;
10170 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10171 return unsignedp ? sat_unsigned_long_long_accum_type_node
10172 : sat_long_long_accum_type_node;
10173 }
10174 else
10175 {
10176 if (size == SHORT_ACCUM_TYPE_SIZE)
10177 return unsignedp ? unsigned_short_accum_type_node
10178 : short_accum_type_node;
10179 if (size == ACCUM_TYPE_SIZE)
10180 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10181 if (size == LONG_ACCUM_TYPE_SIZE)
10182 return unsignedp ? unsigned_long_accum_type_node
10183 : long_accum_type_node;
10184 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10185 return unsignedp ? unsigned_long_long_accum_type_node
10186 : long_long_accum_type_node;
10187 }
10188
10189 return make_accum_type (size, unsignedp, satp);
10190 }
10191
10192
10193 /* Create an atomic variant node for TYPE. This routine is called
10194 during initialization of data types to create the 5 basic atomic
10195 types. The generic build_variant_type function requires these to
10196 already be set up in order to function properly, so cannot be
10197 called from there. If ALIGN is non-zero, then ensure alignment is
10198 overridden to this value. */
10199
10200 static tree
10201 build_atomic_base (tree type, unsigned int align)
10202 {
10203 tree t;
10204
10205 /* Make sure its not already registered. */
10206 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10207 return t;
10208
10209 t = build_variant_type_copy (type);
10210 set_type_quals (t, TYPE_QUAL_ATOMIC);
10211
10212 if (align)
10213 SET_TYPE_ALIGN (t, align);
10214
10215 return t;
10216 }
10217
10218 /* Information about the _FloatN and _FloatNx types. This must be in
10219 the same order as the corresponding TI_* enum values. */
10220 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
10221 {
10222 { 16, false },
10223 { 32, false },
10224 { 64, false },
10225 { 128, false },
10226 { 32, true },
10227 { 64, true },
10228 { 128, true },
10229 };
10230
10231
10232 /* Create nodes for all integer types (and error_mark_node) using the sizes
10233 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10234
10235 void
10236 build_common_tree_nodes (bool signed_char)
10237 {
10238 int i;
10239
10240 error_mark_node = make_node (ERROR_MARK);
10241 TREE_TYPE (error_mark_node) = error_mark_node;
10242
10243 initialize_sizetypes ();
10244
10245 /* Define both `signed char' and `unsigned char'. */
10246 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10247 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10248 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10249 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10250
10251 /* Define `char', which is like either `signed char' or `unsigned char'
10252 but not the same as either. */
10253 char_type_node
10254 = (signed_char
10255 ? make_signed_type (CHAR_TYPE_SIZE)
10256 : make_unsigned_type (CHAR_TYPE_SIZE));
10257 TYPE_STRING_FLAG (char_type_node) = 1;
10258
10259 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10260 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10261 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10262 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10263 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10264 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10265 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10266 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10267
10268 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10269 {
10270 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10271 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10272
10273 if (int_n_enabled_p[i])
10274 {
10275 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10276 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10277 }
10278 }
10279
10280 /* Define a boolean type. This type only represents boolean values but
10281 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10282 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10283 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10284 TYPE_PRECISION (boolean_type_node) = 1;
10285 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10286
10287 /* Define what type to use for size_t. */
10288 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10289 size_type_node = unsigned_type_node;
10290 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10291 size_type_node = long_unsigned_type_node;
10292 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10293 size_type_node = long_long_unsigned_type_node;
10294 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10295 size_type_node = short_unsigned_type_node;
10296 else
10297 {
10298 int i;
10299
10300 size_type_node = NULL_TREE;
10301 for (i = 0; i < NUM_INT_N_ENTS; i++)
10302 if (int_n_enabled_p[i])
10303 {
10304 char name[50], altname[50];
10305 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10306 sprintf (altname, "__int%d__ unsigned", int_n_data[i].bitsize);
10307
10308 if (strcmp (name, SIZE_TYPE) == 0
10309 || strcmp (altname, SIZE_TYPE) == 0)
10310 {
10311 size_type_node = int_n_trees[i].unsigned_type;
10312 }
10313 }
10314 if (size_type_node == NULL_TREE)
10315 gcc_unreachable ();
10316 }
10317
10318 /* Define what type to use for ptrdiff_t. */
10319 if (strcmp (PTRDIFF_TYPE, "int") == 0)
10320 ptrdiff_type_node = integer_type_node;
10321 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
10322 ptrdiff_type_node = long_integer_type_node;
10323 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
10324 ptrdiff_type_node = long_long_integer_type_node;
10325 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
10326 ptrdiff_type_node = short_integer_type_node;
10327 else
10328 {
10329 ptrdiff_type_node = NULL_TREE;
10330 for (int i = 0; i < NUM_INT_N_ENTS; i++)
10331 if (int_n_enabled_p[i])
10332 {
10333 char name[50], altname[50];
10334 sprintf (name, "__int%d", int_n_data[i].bitsize);
10335 sprintf (altname, "__int%d__", int_n_data[i].bitsize);
10336
10337 if (strcmp (name, PTRDIFF_TYPE) == 0
10338 || strcmp (altname, PTRDIFF_TYPE) == 0)
10339 ptrdiff_type_node = int_n_trees[i].signed_type;
10340 }
10341 if (ptrdiff_type_node == NULL_TREE)
10342 gcc_unreachable ();
10343 }
10344
10345 /* Fill in the rest of the sized types. Reuse existing type nodes
10346 when possible. */
10347 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10348 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10349 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10350 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10351 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10352
10353 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10354 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10355 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10356 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10357 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10358
10359 /* Don't call build_qualified type for atomics. That routine does
10360 special processing for atomics, and until they are initialized
10361 it's better not to make that call.
10362
10363 Check to see if there is a target override for atomic types. */
10364
10365 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10366 targetm.atomic_align_for_mode (QImode));
10367 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10368 targetm.atomic_align_for_mode (HImode));
10369 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10370 targetm.atomic_align_for_mode (SImode));
10371 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10372 targetm.atomic_align_for_mode (DImode));
10373 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10374 targetm.atomic_align_for_mode (TImode));
10375
10376 access_public_node = get_identifier ("public");
10377 access_protected_node = get_identifier ("protected");
10378 access_private_node = get_identifier ("private");
10379
10380 /* Define these next since types below may used them. */
10381 integer_zero_node = build_int_cst (integer_type_node, 0);
10382 integer_one_node = build_int_cst (integer_type_node, 1);
10383 integer_three_node = build_int_cst (integer_type_node, 3);
10384 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10385
10386 size_zero_node = size_int (0);
10387 size_one_node = size_int (1);
10388 bitsize_zero_node = bitsize_int (0);
10389 bitsize_one_node = bitsize_int (1);
10390 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10391
10392 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10393 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10394
10395 void_type_node = make_node (VOID_TYPE);
10396 layout_type (void_type_node);
10397
10398 /* We are not going to have real types in C with less than byte alignment,
10399 so we might as well not have any types that claim to have it. */
10400 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
10401 TYPE_USER_ALIGN (void_type_node) = 0;
10402
10403 void_node = make_node (VOID_CST);
10404 TREE_TYPE (void_node) = void_type_node;
10405
10406 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10407 layout_type (TREE_TYPE (null_pointer_node));
10408
10409 ptr_type_node = build_pointer_type (void_type_node);
10410 const_ptr_type_node
10411 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10412 for (unsigned i = 0;
10413 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
10414 ++i)
10415 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
10416
10417 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10418
10419 float_type_node = make_node (REAL_TYPE);
10420 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10421 layout_type (float_type_node);
10422
10423 double_type_node = make_node (REAL_TYPE);
10424 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10425 layout_type (double_type_node);
10426
10427 long_double_type_node = make_node (REAL_TYPE);
10428 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10429 layout_type (long_double_type_node);
10430
10431 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10432 {
10433 int n = floatn_nx_types[i].n;
10434 bool extended = floatn_nx_types[i].extended;
10435 scalar_float_mode mode;
10436 if (!targetm.floatn_mode (n, extended).exists (&mode))
10437 continue;
10438 int precision = GET_MODE_PRECISION (mode);
10439 /* Work around the rs6000 KFmode having precision 113 not
10440 128. */
10441 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
10442 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
10443 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
10444 if (!extended)
10445 gcc_assert (min_precision == n);
10446 if (precision < min_precision)
10447 precision = min_precision;
10448 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
10449 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
10450 layout_type (FLOATN_NX_TYPE_NODE (i));
10451 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
10452 }
10453
10454 float_ptr_type_node = build_pointer_type (float_type_node);
10455 double_ptr_type_node = build_pointer_type (double_type_node);
10456 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10457 integer_ptr_type_node = build_pointer_type (integer_type_node);
10458
10459 /* Fixed size integer types. */
10460 uint16_type_node = make_or_reuse_type (16, 1);
10461 uint32_type_node = make_or_reuse_type (32, 1);
10462 uint64_type_node = make_or_reuse_type (64, 1);
10463 if (targetm.scalar_mode_supported_p (TImode))
10464 uint128_type_node = make_or_reuse_type (128, 1);
10465
10466 /* Decimal float types. */
10467 if (targetm.decimal_float_supported_p ())
10468 {
10469 dfloat32_type_node = make_node (REAL_TYPE);
10470 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10471 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10472 layout_type (dfloat32_type_node);
10473
10474 dfloat64_type_node = make_node (REAL_TYPE);
10475 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10476 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10477 layout_type (dfloat64_type_node);
10478
10479 dfloat128_type_node = make_node (REAL_TYPE);
10480 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10481 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10482 layout_type (dfloat128_type_node);
10483 }
10484
10485 complex_integer_type_node = build_complex_type (integer_type_node, true);
10486 complex_float_type_node = build_complex_type (float_type_node, true);
10487 complex_double_type_node = build_complex_type (double_type_node, true);
10488 complex_long_double_type_node = build_complex_type (long_double_type_node,
10489 true);
10490
10491 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10492 {
10493 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10494 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10495 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10496 }
10497
10498 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10499 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10500 sat_ ## KIND ## _type_node = \
10501 make_sat_signed_ ## KIND ## _type (SIZE); \
10502 sat_unsigned_ ## KIND ## _type_node = \
10503 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10504 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10505 unsigned_ ## KIND ## _type_node = \
10506 make_unsigned_ ## KIND ## _type (SIZE);
10507
10508 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10509 sat_ ## WIDTH ## KIND ## _type_node = \
10510 make_sat_signed_ ## KIND ## _type (SIZE); \
10511 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10512 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10513 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10514 unsigned_ ## WIDTH ## KIND ## _type_node = \
10515 make_unsigned_ ## KIND ## _type (SIZE);
10516
10517 /* Make fixed-point type nodes based on four different widths. */
10518 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10519 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10520 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10521 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10522 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10523
10524 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10525 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10526 NAME ## _type_node = \
10527 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10528 u ## NAME ## _type_node = \
10529 make_or_reuse_unsigned_ ## KIND ## _type \
10530 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10531 sat_ ## NAME ## _type_node = \
10532 make_or_reuse_sat_signed_ ## KIND ## _type \
10533 (GET_MODE_BITSIZE (MODE ## mode)); \
10534 sat_u ## NAME ## _type_node = \
10535 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10536 (GET_MODE_BITSIZE (U ## MODE ## mode));
10537
10538 /* Fixed-point type and mode nodes. */
10539 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10540 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10541 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10542 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10543 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10544 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10545 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10546 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10547 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10548 MAKE_FIXED_MODE_NODE (accum, da, DA)
10549 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10550
10551 {
10552 tree t = targetm.build_builtin_va_list ();
10553
10554 /* Many back-ends define record types without setting TYPE_NAME.
10555 If we copied the record type here, we'd keep the original
10556 record type without a name. This breaks name mangling. So,
10557 don't copy record types and let c_common_nodes_and_builtins()
10558 declare the type to be __builtin_va_list. */
10559 if (TREE_CODE (t) != RECORD_TYPE)
10560 t = build_variant_type_copy (t);
10561
10562 va_list_type_node = t;
10563 }
10564
10565 /* SCEV analyzer global shared trees. */
10566 chrec_dont_know = make_node (SCEV_NOT_KNOWN);
10567 TREE_TYPE (chrec_dont_know) = void_type_node;
10568 chrec_known = make_node (SCEV_KNOWN);
10569 TREE_TYPE (chrec_known) = void_type_node;
10570 }
10571
10572 /* Modify DECL for given flags.
10573 TM_PURE attribute is set only on types, so the function will modify
10574 DECL's type when ECF_TM_PURE is used. */
10575
10576 void
10577 set_call_expr_flags (tree decl, int flags)
10578 {
10579 if (flags & ECF_NOTHROW)
10580 TREE_NOTHROW (decl) = 1;
10581 if (flags & ECF_CONST)
10582 TREE_READONLY (decl) = 1;
10583 if (flags & ECF_PURE)
10584 DECL_PURE_P (decl) = 1;
10585 if (flags & ECF_LOOPING_CONST_OR_PURE)
10586 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10587 if (flags & ECF_NOVOPS)
10588 DECL_IS_NOVOPS (decl) = 1;
10589 if (flags & ECF_NORETURN)
10590 TREE_THIS_VOLATILE (decl) = 1;
10591 if (flags & ECF_MALLOC)
10592 DECL_IS_MALLOC (decl) = 1;
10593 if (flags & ECF_RETURNS_TWICE)
10594 DECL_IS_RETURNS_TWICE (decl) = 1;
10595 if (flags & ECF_LEAF)
10596 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10597 NULL, DECL_ATTRIBUTES (decl));
10598 if (flags & ECF_COLD)
10599 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10600 NULL, DECL_ATTRIBUTES (decl));
10601 if (flags & ECF_RET1)
10602 DECL_ATTRIBUTES (decl)
10603 = tree_cons (get_identifier ("fn spec"),
10604 build_tree_list (NULL_TREE, build_string (2, "1 ")),
10605 DECL_ATTRIBUTES (decl));
10606 if ((flags & ECF_TM_PURE) && flag_tm)
10607 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10608 /* Looping const or pure is implied by noreturn.
10609 There is currently no way to declare looping const or looping pure alone. */
10610 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10611 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10612 }
10613
10614
10615 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10616
10617 static void
10618 local_define_builtin (const char *name, tree type, enum built_in_function code,
10619 const char *library_name, int ecf_flags)
10620 {
10621 tree decl;
10622
10623 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10624 library_name, NULL_TREE);
10625 set_call_expr_flags (decl, ecf_flags);
10626
10627 set_builtin_decl (code, decl, true);
10628 }
10629
10630 /* Call this function after instantiating all builtins that the language
10631 front end cares about. This will build the rest of the builtins
10632 and internal functions that are relied upon by the tree optimizers and
10633 the middle-end. */
10634
10635 void
10636 build_common_builtin_nodes (void)
10637 {
10638 tree tmp, ftype;
10639 int ecf_flags;
10640
10641 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10642 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10643 {
10644 ftype = build_function_type (void_type_node, void_list_node);
10645 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10646 local_define_builtin ("__builtin_unreachable", ftype,
10647 BUILT_IN_UNREACHABLE,
10648 "__builtin_unreachable",
10649 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10650 | ECF_CONST | ECF_COLD);
10651 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10652 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10653 "abort",
10654 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10655 }
10656
10657 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10658 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10659 {
10660 ftype = build_function_type_list (ptr_type_node,
10661 ptr_type_node, const_ptr_type_node,
10662 size_type_node, NULL_TREE);
10663
10664 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10665 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10666 "memcpy", ECF_NOTHROW | ECF_LEAF);
10667 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10668 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10669 "memmove", ECF_NOTHROW | ECF_LEAF);
10670 }
10671
10672 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10673 {
10674 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10675 const_ptr_type_node, size_type_node,
10676 NULL_TREE);
10677 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10678 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10679 }
10680
10681 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10682 {
10683 ftype = build_function_type_list (ptr_type_node,
10684 ptr_type_node, integer_type_node,
10685 size_type_node, NULL_TREE);
10686 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10687 "memset", ECF_NOTHROW | ECF_LEAF);
10688 }
10689
10690 /* If we're checking the stack, `alloca' can throw. */
10691 const int alloca_flags
10692 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10693
10694 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10695 {
10696 ftype = build_function_type_list (ptr_type_node,
10697 size_type_node, NULL_TREE);
10698 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10699 "alloca", alloca_flags);
10700 }
10701
10702 ftype = build_function_type_list (ptr_type_node, size_type_node,
10703 size_type_node, NULL_TREE);
10704 local_define_builtin ("__builtin_alloca_with_align", ftype,
10705 BUILT_IN_ALLOCA_WITH_ALIGN,
10706 "__builtin_alloca_with_align",
10707 alloca_flags);
10708
10709 ftype = build_function_type_list (ptr_type_node, size_type_node,
10710 size_type_node, size_type_node, NULL_TREE);
10711 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10712 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10713 "__builtin_alloca_with_align_and_max",
10714 alloca_flags);
10715
10716 ftype = build_function_type_list (void_type_node,
10717 ptr_type_node, ptr_type_node,
10718 ptr_type_node, NULL_TREE);
10719 local_define_builtin ("__builtin_init_trampoline", ftype,
10720 BUILT_IN_INIT_TRAMPOLINE,
10721 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10722 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10723 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10724 "__builtin_init_heap_trampoline",
10725 ECF_NOTHROW | ECF_LEAF);
10726 local_define_builtin ("__builtin_init_descriptor", ftype,
10727 BUILT_IN_INIT_DESCRIPTOR,
10728 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10729
10730 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10731 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10732 BUILT_IN_ADJUST_TRAMPOLINE,
10733 "__builtin_adjust_trampoline",
10734 ECF_CONST | ECF_NOTHROW);
10735 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10736 BUILT_IN_ADJUST_DESCRIPTOR,
10737 "__builtin_adjust_descriptor",
10738 ECF_CONST | ECF_NOTHROW);
10739
10740 ftype = build_function_type_list (void_type_node,
10741 ptr_type_node, ptr_type_node, NULL_TREE);
10742 if (!builtin_decl_explicit_p (BUILT_IN_CLEAR_CACHE))
10743 local_define_builtin ("__builtin___clear_cache", ftype,
10744 BUILT_IN_CLEAR_CACHE,
10745 "__clear_cache",
10746 ECF_NOTHROW);
10747
10748 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10749 BUILT_IN_NONLOCAL_GOTO,
10750 "__builtin_nonlocal_goto",
10751 ECF_NORETURN | ECF_NOTHROW);
10752
10753 ftype = build_function_type_list (void_type_node,
10754 ptr_type_node, ptr_type_node, NULL_TREE);
10755 local_define_builtin ("__builtin_setjmp_setup", ftype,
10756 BUILT_IN_SETJMP_SETUP,
10757 "__builtin_setjmp_setup", ECF_NOTHROW);
10758
10759 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10760 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10761 BUILT_IN_SETJMP_RECEIVER,
10762 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10763
10764 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10765 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10766 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10767
10768 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10769 local_define_builtin ("__builtin_stack_restore", ftype,
10770 BUILT_IN_STACK_RESTORE,
10771 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10772
10773 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10774 const_ptr_type_node, size_type_node,
10775 NULL_TREE);
10776 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10777 "__builtin_memcmp_eq",
10778 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10779
10780 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10781 "__builtin_strncmp_eq",
10782 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10783
10784 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10785 "__builtin_strcmp_eq",
10786 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10787
10788 /* If there's a possibility that we might use the ARM EABI, build the
10789 alternate __cxa_end_cleanup node used to resume from C++. */
10790 if (targetm.arm_eabi_unwinder)
10791 {
10792 ftype = build_function_type_list (void_type_node, NULL_TREE);
10793 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10794 BUILT_IN_CXA_END_CLEANUP,
10795 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10796 }
10797
10798 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10799 local_define_builtin ("__builtin_unwind_resume", ftype,
10800 BUILT_IN_UNWIND_RESUME,
10801 ((targetm_common.except_unwind_info (&global_options)
10802 == UI_SJLJ)
10803 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10804 ECF_NORETURN);
10805
10806 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10807 {
10808 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10809 NULL_TREE);
10810 local_define_builtin ("__builtin_return_address", ftype,
10811 BUILT_IN_RETURN_ADDRESS,
10812 "__builtin_return_address",
10813 ECF_NOTHROW);
10814 }
10815
10816 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10817 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10818 {
10819 ftype = build_function_type_list (void_type_node, ptr_type_node,
10820 ptr_type_node, NULL_TREE);
10821 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10822 local_define_builtin ("__cyg_profile_func_enter", ftype,
10823 BUILT_IN_PROFILE_FUNC_ENTER,
10824 "__cyg_profile_func_enter", 0);
10825 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10826 local_define_builtin ("__cyg_profile_func_exit", ftype,
10827 BUILT_IN_PROFILE_FUNC_EXIT,
10828 "__cyg_profile_func_exit", 0);
10829 }
10830
10831 /* The exception object and filter values from the runtime. The argument
10832 must be zero before exception lowering, i.e. from the front end. After
10833 exception lowering, it will be the region number for the exception
10834 landing pad. These functions are PURE instead of CONST to prevent
10835 them from being hoisted past the exception edge that will initialize
10836 its value in the landing pad. */
10837 ftype = build_function_type_list (ptr_type_node,
10838 integer_type_node, NULL_TREE);
10839 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10840 /* Only use TM_PURE if we have TM language support. */
10841 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10842 ecf_flags |= ECF_TM_PURE;
10843 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10844 "__builtin_eh_pointer", ecf_flags);
10845
10846 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10847 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10848 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10849 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10850
10851 ftype = build_function_type_list (void_type_node,
10852 integer_type_node, integer_type_node,
10853 NULL_TREE);
10854 local_define_builtin ("__builtin_eh_copy_values", ftype,
10855 BUILT_IN_EH_COPY_VALUES,
10856 "__builtin_eh_copy_values", ECF_NOTHROW);
10857
10858 /* Complex multiplication and division. These are handled as builtins
10859 rather than optabs because emit_library_call_value doesn't support
10860 complex. Further, we can do slightly better with folding these
10861 beasties if the real and complex parts of the arguments are separate. */
10862 {
10863 int mode;
10864
10865 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10866 {
10867 char mode_name_buf[4], *q;
10868 const char *p;
10869 enum built_in_function mcode, dcode;
10870 tree type, inner_type;
10871 const char *prefix = "__";
10872
10873 if (targetm.libfunc_gnu_prefix)
10874 prefix = "__gnu_";
10875
10876 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10877 if (type == NULL)
10878 continue;
10879 inner_type = TREE_TYPE (type);
10880
10881 ftype = build_function_type_list (type, inner_type, inner_type,
10882 inner_type, inner_type, NULL_TREE);
10883
10884 mcode = ((enum built_in_function)
10885 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10886 dcode = ((enum built_in_function)
10887 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10888
10889 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10890 *q = TOLOWER (*p);
10891 *q = '\0';
10892
10893 /* For -ftrapping-math these should throw from a former
10894 -fnon-call-exception stmt. */
10895 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10896 NULL);
10897 local_define_builtin (built_in_names[mcode], ftype, mcode,
10898 built_in_names[mcode],
10899 ECF_CONST | ECF_LEAF);
10900
10901 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10902 NULL);
10903 local_define_builtin (built_in_names[dcode], ftype, dcode,
10904 built_in_names[dcode],
10905 ECF_CONST | ECF_LEAF);
10906 }
10907 }
10908
10909 init_internal_fns ();
10910 }
10911
10912 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10913 better way.
10914
10915 If we requested a pointer to a vector, build up the pointers that
10916 we stripped off while looking for the inner type. Similarly for
10917 return values from functions.
10918
10919 The argument TYPE is the top of the chain, and BOTTOM is the
10920 new type which we will point to. */
10921
10922 tree
10923 reconstruct_complex_type (tree type, tree bottom)
10924 {
10925 tree inner, outer;
10926
10927 if (TREE_CODE (type) == POINTER_TYPE)
10928 {
10929 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10930 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10931 TYPE_REF_CAN_ALIAS_ALL (type));
10932 }
10933 else if (TREE_CODE (type) == REFERENCE_TYPE)
10934 {
10935 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10936 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10937 TYPE_REF_CAN_ALIAS_ALL (type));
10938 }
10939 else if (TREE_CODE (type) == ARRAY_TYPE)
10940 {
10941 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10942 outer = build_array_type (inner, TYPE_DOMAIN (type));
10943 }
10944 else if (TREE_CODE (type) == FUNCTION_TYPE)
10945 {
10946 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10947 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10948 }
10949 else if (TREE_CODE (type) == METHOD_TYPE)
10950 {
10951 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10952 /* The build_method_type_directly() routine prepends 'this' to argument list,
10953 so we must compensate by getting rid of it. */
10954 outer
10955 = build_method_type_directly
10956 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10957 inner,
10958 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10959 }
10960 else if (TREE_CODE (type) == OFFSET_TYPE)
10961 {
10962 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10963 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10964 }
10965 else
10966 return bottom;
10967
10968 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10969 TYPE_QUALS (type));
10970 }
10971
10972 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10973 the inner type. */
10974 tree
10975 build_vector_type_for_mode (tree innertype, machine_mode mode)
10976 {
10977 poly_int64 nunits;
10978 unsigned int bitsize;
10979
10980 switch (GET_MODE_CLASS (mode))
10981 {
10982 case MODE_VECTOR_BOOL:
10983 case MODE_VECTOR_INT:
10984 case MODE_VECTOR_FLOAT:
10985 case MODE_VECTOR_FRACT:
10986 case MODE_VECTOR_UFRACT:
10987 case MODE_VECTOR_ACCUM:
10988 case MODE_VECTOR_UACCUM:
10989 nunits = GET_MODE_NUNITS (mode);
10990 break;
10991
10992 case MODE_INT:
10993 /* Check that there are no leftover bits. */
10994 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10995 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10996 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10997 break;
10998
10999 default:
11000 gcc_unreachable ();
11001 }
11002
11003 return make_vector_type (innertype, nunits, mode);
11004 }
11005
11006 /* Similarly, but takes the inner type and number of units, which must be
11007 a power of two. */
11008
11009 tree
11010 build_vector_type (tree innertype, poly_int64 nunits)
11011 {
11012 return make_vector_type (innertype, nunits, VOIDmode);
11013 }
11014
11015 /* Build a truth vector with NUNITS units, giving it mode MASK_MODE. */
11016
11017 tree
11018 build_truth_vector_type_for_mode (poly_uint64 nunits, machine_mode mask_mode)
11019 {
11020 gcc_assert (mask_mode != BLKmode);
11021
11022 unsigned HOST_WIDE_INT esize;
11023 if (VECTOR_MODE_P (mask_mode))
11024 {
11025 poly_uint64 vsize = GET_MODE_BITSIZE (mask_mode);
11026 esize = vector_element_size (vsize, nunits);
11027 }
11028 else
11029 esize = 1;
11030
11031 tree bool_type = build_nonstandard_boolean_type (esize);
11032
11033 return make_vector_type (bool_type, nunits, mask_mode);
11034 }
11035
11036 /* Build a vector type that holds one boolean result for each element of
11037 vector type VECTYPE. The public interface for this operation is
11038 truth_type_for. */
11039
11040 static tree
11041 build_truth_vector_type_for (tree vectype)
11042 {
11043 machine_mode vector_mode = TYPE_MODE (vectype);
11044 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype);
11045
11046 machine_mode mask_mode;
11047 if (VECTOR_MODE_P (vector_mode)
11048 && targetm.vectorize.get_mask_mode (vector_mode).exists (&mask_mode))
11049 return build_truth_vector_type_for_mode (nunits, mask_mode);
11050
11051 poly_uint64 vsize = tree_to_poly_uint64 (TYPE_SIZE (vectype));
11052 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
11053 tree bool_type = build_nonstandard_boolean_type (esize);
11054
11055 return make_vector_type (bool_type, nunits, VOIDmode);
11056 }
11057
11058 /* Like build_vector_type, but builds a variant type with TYPE_VECTOR_OPAQUE
11059 set. */
11060
11061 tree
11062 build_opaque_vector_type (tree innertype, poly_int64 nunits)
11063 {
11064 tree t = make_vector_type (innertype, nunits, VOIDmode);
11065 tree cand;
11066 /* We always build the non-opaque variant before the opaque one,
11067 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
11068 cand = TYPE_NEXT_VARIANT (t);
11069 if (cand
11070 && TYPE_VECTOR_OPAQUE (cand)
11071 && check_qualified_type (cand, t, TYPE_QUALS (t)))
11072 return cand;
11073 /* Othewise build a variant type and make sure to queue it after
11074 the non-opaque type. */
11075 cand = build_distinct_type_copy (t);
11076 TYPE_VECTOR_OPAQUE (cand) = true;
11077 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
11078 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
11079 TYPE_NEXT_VARIANT (t) = cand;
11080 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
11081 return cand;
11082 }
11083
11084 /* Return the value of element I of VECTOR_CST T as a wide_int. */
11085
11086 static poly_wide_int
11087 vector_cst_int_elt (const_tree t, unsigned int i)
11088 {
11089 /* First handle elements that are directly encoded. */
11090 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11091 if (i < encoded_nelts)
11092 return wi::to_poly_wide (VECTOR_CST_ENCODED_ELT (t, i));
11093
11094 /* Identify the pattern that contains element I and work out the index of
11095 the last encoded element for that pattern. */
11096 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11097 unsigned int pattern = i % npatterns;
11098 unsigned int count = i / npatterns;
11099 unsigned int final_i = encoded_nelts - npatterns + pattern;
11100
11101 /* If there are no steps, the final encoded value is the right one. */
11102 if (!VECTOR_CST_STEPPED_P (t))
11103 return wi::to_poly_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
11104
11105 /* Otherwise work out the value from the last two encoded elements. */
11106 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
11107 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
11108 poly_wide_int diff = wi::to_poly_wide (v2) - wi::to_poly_wide (v1);
11109 return wi::to_poly_wide (v2) + (count - 2) * diff;
11110 }
11111
11112 /* Return the value of element I of VECTOR_CST T. */
11113
11114 tree
11115 vector_cst_elt (const_tree t, unsigned int i)
11116 {
11117 /* First handle elements that are directly encoded. */
11118 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
11119 if (i < encoded_nelts)
11120 return VECTOR_CST_ENCODED_ELT (t, i);
11121
11122 /* If there are no steps, the final encoded value is the right one. */
11123 if (!VECTOR_CST_STEPPED_P (t))
11124 {
11125 /* Identify the pattern that contains element I and work out the index of
11126 the last encoded element for that pattern. */
11127 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
11128 unsigned int pattern = i % npatterns;
11129 unsigned int final_i = encoded_nelts - npatterns + pattern;
11130 return VECTOR_CST_ENCODED_ELT (t, final_i);
11131 }
11132
11133 /* Otherwise work out the value from the last two encoded elements. */
11134 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
11135 vector_cst_int_elt (t, i));
11136 }
11137
11138 /* Given an initializer INIT, return TRUE if INIT is zero or some
11139 aggregate of zeros. Otherwise return FALSE. If NONZERO is not
11140 null, set *NONZERO if and only if INIT is known not to be all
11141 zeros. The combination of return value of false and *NONZERO
11142 false implies that INIT may but need not be all zeros. Other
11143 combinations indicate definitive answers. */
11144
11145 bool
11146 initializer_zerop (const_tree init, bool *nonzero /* = NULL */)
11147 {
11148 bool dummy;
11149 if (!nonzero)
11150 nonzero = &dummy;
11151
11152 /* Conservatively clear NONZERO and set it only if INIT is definitely
11153 not all zero. */
11154 *nonzero = false;
11155
11156 STRIP_NOPS (init);
11157
11158 unsigned HOST_WIDE_INT off = 0;
11159
11160 switch (TREE_CODE (init))
11161 {
11162 case INTEGER_CST:
11163 if (integer_zerop (init))
11164 return true;
11165
11166 *nonzero = true;
11167 return false;
11168
11169 case REAL_CST:
11170 /* ??? Note that this is not correct for C4X float formats. There,
11171 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
11172 negative exponent. */
11173 if (real_zerop (init)
11174 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init)))
11175 return true;
11176
11177 *nonzero = true;
11178 return false;
11179
11180 case FIXED_CST:
11181 if (fixed_zerop (init))
11182 return true;
11183
11184 *nonzero = true;
11185 return false;
11186
11187 case COMPLEX_CST:
11188 if (integer_zerop (init)
11189 || (real_zerop (init)
11190 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
11191 && !REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init)))))
11192 return true;
11193
11194 *nonzero = true;
11195 return false;
11196
11197 case VECTOR_CST:
11198 if (VECTOR_CST_NPATTERNS (init) == 1
11199 && VECTOR_CST_DUPLICATE_P (init)
11200 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)))
11201 return true;
11202
11203 *nonzero = true;
11204 return false;
11205
11206 case CONSTRUCTOR:
11207 {
11208 if (TREE_CLOBBER_P (init))
11209 return false;
11210
11211 unsigned HOST_WIDE_INT idx;
11212 tree elt;
11213
11214 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
11215 if (!initializer_zerop (elt, nonzero))
11216 return false;
11217
11218 return true;
11219 }
11220
11221 case MEM_REF:
11222 {
11223 tree arg = TREE_OPERAND (init, 0);
11224 if (TREE_CODE (arg) != ADDR_EXPR)
11225 return false;
11226 tree offset = TREE_OPERAND (init, 1);
11227 if (TREE_CODE (offset) != INTEGER_CST
11228 || !tree_fits_uhwi_p (offset))
11229 return false;
11230 off = tree_to_uhwi (offset);
11231 if (INT_MAX < off)
11232 return false;
11233 arg = TREE_OPERAND (arg, 0);
11234 if (TREE_CODE (arg) != STRING_CST)
11235 return false;
11236 init = arg;
11237 }
11238 /* Fall through. */
11239
11240 case STRING_CST:
11241 {
11242 gcc_assert (off <= INT_MAX);
11243
11244 int i = off;
11245 int n = TREE_STRING_LENGTH (init);
11246 if (n <= i)
11247 return false;
11248
11249 /* We need to loop through all elements to handle cases like
11250 "\0" and "\0foobar". */
11251 for (i = 0; i < n; ++i)
11252 if (TREE_STRING_POINTER (init)[i] != '\0')
11253 {
11254 *nonzero = true;
11255 return false;
11256 }
11257
11258 return true;
11259 }
11260
11261 default:
11262 return false;
11263 }
11264 }
11265
11266 /* Return true if EXPR is an initializer expression in which every element
11267 is a constant that is numerically equal to 0 or 1. The elements do not
11268 need to be equal to each other. */
11269
11270 bool
11271 initializer_each_zero_or_onep (const_tree expr)
11272 {
11273 STRIP_ANY_LOCATION_WRAPPER (expr);
11274
11275 switch (TREE_CODE (expr))
11276 {
11277 case INTEGER_CST:
11278 return integer_zerop (expr) || integer_onep (expr);
11279
11280 case REAL_CST:
11281 return real_zerop (expr) || real_onep (expr);
11282
11283 case VECTOR_CST:
11284 {
11285 unsigned HOST_WIDE_INT nelts = vector_cst_encoded_nelts (expr);
11286 if (VECTOR_CST_STEPPED_P (expr)
11287 && !TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr)).is_constant (&nelts))
11288 return false;
11289
11290 for (unsigned int i = 0; i < nelts; ++i)
11291 {
11292 tree elt = vector_cst_elt (expr, i);
11293 if (!initializer_each_zero_or_onep (elt))
11294 return false;
11295 }
11296
11297 return true;
11298 }
11299
11300 default:
11301 return false;
11302 }
11303 }
11304
11305 /* Check if vector VEC consists of all the equal elements and
11306 that the number of elements corresponds to the type of VEC.
11307 The function returns first element of the vector
11308 or NULL_TREE if the vector is not uniform. */
11309 tree
11310 uniform_vector_p (const_tree vec)
11311 {
11312 tree first, t;
11313 unsigned HOST_WIDE_INT i, nelts;
11314
11315 if (vec == NULL_TREE)
11316 return NULL_TREE;
11317
11318 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
11319
11320 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
11321 return TREE_OPERAND (vec, 0);
11322
11323 else if (TREE_CODE (vec) == VECTOR_CST)
11324 {
11325 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
11326 return VECTOR_CST_ENCODED_ELT (vec, 0);
11327 return NULL_TREE;
11328 }
11329
11330 else if (TREE_CODE (vec) == CONSTRUCTOR
11331 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
11332 {
11333 first = error_mark_node;
11334
11335 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
11336 {
11337 if (i == 0)
11338 {
11339 first = t;
11340 continue;
11341 }
11342 if (!operand_equal_p (first, t, 0))
11343 return NULL_TREE;
11344 }
11345 if (i != nelts)
11346 return NULL_TREE;
11347
11348 return first;
11349 }
11350
11351 return NULL_TREE;
11352 }
11353
11354 /* If the argument is INTEGER_CST, return it. If the argument is vector
11355 with all elements the same INTEGER_CST, return that INTEGER_CST. Otherwise
11356 return NULL_TREE.
11357 Look through location wrappers. */
11358
11359 tree
11360 uniform_integer_cst_p (tree t)
11361 {
11362 STRIP_ANY_LOCATION_WRAPPER (t);
11363
11364 if (TREE_CODE (t) == INTEGER_CST)
11365 return t;
11366
11367 if (VECTOR_TYPE_P (TREE_TYPE (t)))
11368 {
11369 t = uniform_vector_p (t);
11370 if (t && TREE_CODE (t) == INTEGER_CST)
11371 return t;
11372 }
11373
11374 return NULL_TREE;
11375 }
11376
11377 /* If VECTOR_CST T has a single nonzero element, return the index of that
11378 element, otherwise return -1. */
11379
11380 int
11381 single_nonzero_element (const_tree t)
11382 {
11383 unsigned HOST_WIDE_INT nelts;
11384 unsigned int repeat_nelts;
11385 if (VECTOR_CST_NELTS (t).is_constant (&nelts))
11386 repeat_nelts = nelts;
11387 else if (VECTOR_CST_NELTS_PER_PATTERN (t) == 2)
11388 {
11389 nelts = vector_cst_encoded_nelts (t);
11390 repeat_nelts = VECTOR_CST_NPATTERNS (t);
11391 }
11392 else
11393 return -1;
11394
11395 int res = -1;
11396 for (unsigned int i = 0; i < nelts; ++i)
11397 {
11398 tree elt = vector_cst_elt (t, i);
11399 if (!integer_zerop (elt) && !real_zerop (elt))
11400 {
11401 if (res >= 0 || i >= repeat_nelts)
11402 return -1;
11403 res = i;
11404 }
11405 }
11406 return res;
11407 }
11408
11409 /* Build an empty statement at location LOC. */
11410
11411 tree
11412 build_empty_stmt (location_t loc)
11413 {
11414 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
11415 SET_EXPR_LOCATION (t, loc);
11416 return t;
11417 }
11418
11419
11420 /* Build an OpenMP clause with code CODE. LOC is the location of the
11421 clause. */
11422
11423 tree
11424 build_omp_clause (location_t loc, enum omp_clause_code code)
11425 {
11426 tree t;
11427 int size, length;
11428
11429 length = omp_clause_num_ops[code];
11430 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
11431
11432 record_node_allocation_statistics (OMP_CLAUSE, size);
11433
11434 t = (tree) ggc_internal_alloc (size);
11435 memset (t, 0, size);
11436 TREE_SET_CODE (t, OMP_CLAUSE);
11437 OMP_CLAUSE_SET_CODE (t, code);
11438 OMP_CLAUSE_LOCATION (t) = loc;
11439
11440 return t;
11441 }
11442
11443 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
11444 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
11445 Except for the CODE and operand count field, other storage for the
11446 object is initialized to zeros. */
11447
11448 tree
11449 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
11450 {
11451 tree t;
11452 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
11453
11454 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
11455 gcc_assert (len >= 1);
11456
11457 record_node_allocation_statistics (code, length);
11458
11459 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
11460
11461 TREE_SET_CODE (t, code);
11462
11463 /* Can't use TREE_OPERAND to store the length because if checking is
11464 enabled, it will try to check the length before we store it. :-P */
11465 t->exp.operands[0] = build_int_cst (sizetype, len);
11466
11467 return t;
11468 }
11469
11470 /* Helper function for build_call_* functions; build a CALL_EXPR with
11471 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
11472 the argument slots. */
11473
11474 static tree
11475 build_call_1 (tree return_type, tree fn, int nargs)
11476 {
11477 tree t;
11478
11479 t = build_vl_exp (CALL_EXPR, nargs + 3);
11480 TREE_TYPE (t) = return_type;
11481 CALL_EXPR_FN (t) = fn;
11482 CALL_EXPR_STATIC_CHAIN (t) = NULL;
11483
11484 return t;
11485 }
11486
11487 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11488 FN and a null static chain slot. NARGS is the number of call arguments
11489 which are specified as "..." arguments. */
11490
11491 tree
11492 build_call_nary (tree return_type, tree fn, int nargs, ...)
11493 {
11494 tree ret;
11495 va_list args;
11496 va_start (args, nargs);
11497 ret = build_call_valist (return_type, fn, nargs, args);
11498 va_end (args);
11499 return ret;
11500 }
11501
11502 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11503 FN and a null static chain slot. NARGS is the number of call arguments
11504 which are specified as a va_list ARGS. */
11505
11506 tree
11507 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11508 {
11509 tree t;
11510 int i;
11511
11512 t = build_call_1 (return_type, fn, nargs);
11513 for (i = 0; i < nargs; i++)
11514 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11515 process_call_operands (t);
11516 return t;
11517 }
11518
11519 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11520 FN and a null static chain slot. NARGS is the number of call arguments
11521 which are specified as a tree array ARGS. */
11522
11523 tree
11524 build_call_array_loc (location_t loc, tree return_type, tree fn,
11525 int nargs, const tree *args)
11526 {
11527 tree t;
11528 int i;
11529
11530 t = build_call_1 (return_type, fn, nargs);
11531 for (i = 0; i < nargs; i++)
11532 CALL_EXPR_ARG (t, i) = args[i];
11533 process_call_operands (t);
11534 SET_EXPR_LOCATION (t, loc);
11535 return t;
11536 }
11537
11538 /* Like build_call_array, but takes a vec. */
11539
11540 tree
11541 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11542 {
11543 tree ret, t;
11544 unsigned int ix;
11545
11546 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11547 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11548 CALL_EXPR_ARG (ret, ix) = t;
11549 process_call_operands (ret);
11550 return ret;
11551 }
11552
11553 /* Conveniently construct a function call expression. FNDECL names the
11554 function to be called and N arguments are passed in the array
11555 ARGARRAY. */
11556
11557 tree
11558 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11559 {
11560 tree fntype = TREE_TYPE (fndecl);
11561 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11562
11563 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11564 }
11565
11566 /* Conveniently construct a function call expression. FNDECL names the
11567 function to be called and the arguments are passed in the vector
11568 VEC. */
11569
11570 tree
11571 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11572 {
11573 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11574 vec_safe_address (vec));
11575 }
11576
11577
11578 /* Conveniently construct a function call expression. FNDECL names the
11579 function to be called, N is the number of arguments, and the "..."
11580 parameters are the argument expressions. */
11581
11582 tree
11583 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11584 {
11585 va_list ap;
11586 tree *argarray = XALLOCAVEC (tree, n);
11587 int i;
11588
11589 va_start (ap, n);
11590 for (i = 0; i < n; i++)
11591 argarray[i] = va_arg (ap, tree);
11592 va_end (ap);
11593 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11594 }
11595
11596 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11597 varargs macros aren't supported by all bootstrap compilers. */
11598
11599 tree
11600 build_call_expr (tree fndecl, int n, ...)
11601 {
11602 va_list ap;
11603 tree *argarray = XALLOCAVEC (tree, n);
11604 int i;
11605
11606 va_start (ap, n);
11607 for (i = 0; i < n; i++)
11608 argarray[i] = va_arg (ap, tree);
11609 va_end (ap);
11610 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11611 }
11612
11613 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11614 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11615 It will get gimplified later into an ordinary internal function. */
11616
11617 tree
11618 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11619 tree type, int n, const tree *args)
11620 {
11621 tree t = build_call_1 (type, NULL_TREE, n);
11622 for (int i = 0; i < n; ++i)
11623 CALL_EXPR_ARG (t, i) = args[i];
11624 SET_EXPR_LOCATION (t, loc);
11625 CALL_EXPR_IFN (t) = ifn;
11626 process_call_operands (t);
11627 return t;
11628 }
11629
11630 /* Build internal call expression. This is just like CALL_EXPR, except
11631 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11632 internal function. */
11633
11634 tree
11635 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11636 tree type, int n, ...)
11637 {
11638 va_list ap;
11639 tree *argarray = XALLOCAVEC (tree, n);
11640 int i;
11641
11642 va_start (ap, n);
11643 for (i = 0; i < n; i++)
11644 argarray[i] = va_arg (ap, tree);
11645 va_end (ap);
11646 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11647 }
11648
11649 /* Return a function call to FN, if the target is guaranteed to support it,
11650 or null otherwise.
11651
11652 N is the number of arguments, passed in the "...", and TYPE is the
11653 type of the return value. */
11654
11655 tree
11656 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11657 int n, ...)
11658 {
11659 va_list ap;
11660 tree *argarray = XALLOCAVEC (tree, n);
11661 int i;
11662
11663 va_start (ap, n);
11664 for (i = 0; i < n; i++)
11665 argarray[i] = va_arg (ap, tree);
11666 va_end (ap);
11667 if (internal_fn_p (fn))
11668 {
11669 internal_fn ifn = as_internal_fn (fn);
11670 if (direct_internal_fn_p (ifn))
11671 {
11672 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11673 if (!direct_internal_fn_supported_p (ifn, types,
11674 OPTIMIZE_FOR_BOTH))
11675 return NULL_TREE;
11676 }
11677 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11678 }
11679 else
11680 {
11681 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11682 if (!fndecl)
11683 return NULL_TREE;
11684 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11685 }
11686 }
11687
11688 /* Return a function call to the appropriate builtin alloca variant.
11689
11690 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11691 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11692 bound for SIZE in case it is not a fixed value. */
11693
11694 tree
11695 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11696 {
11697 if (max_size >= 0)
11698 {
11699 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11700 return
11701 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11702 }
11703 else if (align > 0)
11704 {
11705 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11706 return build_call_expr (t, 2, size, size_int (align));
11707 }
11708 else
11709 {
11710 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11711 return build_call_expr (t, 1, size);
11712 }
11713 }
11714
11715 /* Create a new constant string literal of type ELTYPE[SIZE] (or LEN
11716 if SIZE == -1) and return a tree node representing char* pointer to
11717 it as an ADDR_EXPR (ARRAY_REF (ELTYPE, ...)). When STR is nonnull
11718 the STRING_CST value is the LEN bytes at STR (the representation
11719 of the string, which may be wide). Otherwise it's all zeros. */
11720
11721 tree
11722 build_string_literal (unsigned len, const char *str /* = NULL */,
11723 tree eltype /* = char_type_node */,
11724 unsigned HOST_WIDE_INT size /* = -1 */)
11725 {
11726 tree t = build_string (len, str);
11727 /* Set the maximum valid index based on the string length or SIZE. */
11728 unsigned HOST_WIDE_INT maxidx
11729 = (size == HOST_WIDE_INT_M1U ? len : size) - 1;
11730
11731 tree index = build_index_type (size_int (maxidx));
11732 eltype = build_type_variant (eltype, 1, 0);
11733 tree type = build_array_type (eltype, index);
11734 TREE_TYPE (t) = type;
11735 TREE_CONSTANT (t) = 1;
11736 TREE_READONLY (t) = 1;
11737 TREE_STATIC (t) = 1;
11738
11739 type = build_pointer_type (eltype);
11740 t = build1 (ADDR_EXPR, type,
11741 build4 (ARRAY_REF, eltype,
11742 t, integer_zero_node, NULL_TREE, NULL_TREE));
11743 return t;
11744 }
11745
11746
11747
11748 /* Return true if T (assumed to be a DECL) must be assigned a memory
11749 location. */
11750
11751 bool
11752 needs_to_live_in_memory (const_tree t)
11753 {
11754 return (TREE_ADDRESSABLE (t)
11755 || is_global_var (t)
11756 || (TREE_CODE (t) == RESULT_DECL
11757 && !DECL_BY_REFERENCE (t)
11758 && aggregate_value_p (t, current_function_decl)));
11759 }
11760
11761 /* Return value of a constant X and sign-extend it. */
11762
11763 HOST_WIDE_INT
11764 int_cst_value (const_tree x)
11765 {
11766 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11767 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11768
11769 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11770 gcc_assert (cst_and_fits_in_hwi (x));
11771
11772 if (bits < HOST_BITS_PER_WIDE_INT)
11773 {
11774 bool negative = ((val >> (bits - 1)) & 1) != 0;
11775 if (negative)
11776 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11777 else
11778 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11779 }
11780
11781 return val;
11782 }
11783
11784 /* If TYPE is an integral or pointer type, return an integer type with
11785 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11786 if TYPE is already an integer type of signedness UNSIGNEDP.
11787 If TYPE is a floating-point type, return an integer type with the same
11788 bitsize and with the signedness given by UNSIGNEDP; this is useful
11789 when doing bit-level operations on a floating-point value. */
11790
11791 tree
11792 signed_or_unsigned_type_for (int unsignedp, tree type)
11793 {
11794 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_UNSIGNED (type) == unsignedp)
11795 return type;
11796
11797 if (TREE_CODE (type) == VECTOR_TYPE)
11798 {
11799 tree inner = TREE_TYPE (type);
11800 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11801 if (!inner2)
11802 return NULL_TREE;
11803 if (inner == inner2)
11804 return type;
11805 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11806 }
11807
11808 if (TREE_CODE (type) == COMPLEX_TYPE)
11809 {
11810 tree inner = TREE_TYPE (type);
11811 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11812 if (!inner2)
11813 return NULL_TREE;
11814 if (inner == inner2)
11815 return type;
11816 return build_complex_type (inner2);
11817 }
11818
11819 unsigned int bits;
11820 if (INTEGRAL_TYPE_P (type)
11821 || POINTER_TYPE_P (type)
11822 || TREE_CODE (type) == OFFSET_TYPE)
11823 bits = TYPE_PRECISION (type);
11824 else if (TREE_CODE (type) == REAL_TYPE)
11825 bits = GET_MODE_BITSIZE (SCALAR_TYPE_MODE (type));
11826 else
11827 return NULL_TREE;
11828
11829 return build_nonstandard_integer_type (bits, unsignedp);
11830 }
11831
11832 /* If TYPE is an integral or pointer type, return an integer type with
11833 the same precision which is unsigned, or itself if TYPE is already an
11834 unsigned integer type. If TYPE is a floating-point type, return an
11835 unsigned integer type with the same bitsize as TYPE. */
11836
11837 tree
11838 unsigned_type_for (tree type)
11839 {
11840 return signed_or_unsigned_type_for (1, type);
11841 }
11842
11843 /* If TYPE is an integral or pointer type, return an integer type with
11844 the same precision which is signed, or itself if TYPE is already a
11845 signed integer type. If TYPE is a floating-point type, return a
11846 signed integer type with the same bitsize as TYPE. */
11847
11848 tree
11849 signed_type_for (tree type)
11850 {
11851 return signed_or_unsigned_type_for (0, type);
11852 }
11853
11854 /* If TYPE is a vector type, return a signed integer vector type with the
11855 same width and number of subparts. Otherwise return boolean_type_node. */
11856
11857 tree
11858 truth_type_for (tree type)
11859 {
11860 if (TREE_CODE (type) == VECTOR_TYPE)
11861 {
11862 if (VECTOR_BOOLEAN_TYPE_P (type))
11863 return type;
11864 return build_truth_vector_type_for (type);
11865 }
11866 else
11867 return boolean_type_node;
11868 }
11869
11870 /* Returns the largest value obtainable by casting something in INNER type to
11871 OUTER type. */
11872
11873 tree
11874 upper_bound_in_type (tree outer, tree inner)
11875 {
11876 unsigned int det = 0;
11877 unsigned oprec = TYPE_PRECISION (outer);
11878 unsigned iprec = TYPE_PRECISION (inner);
11879 unsigned prec;
11880
11881 /* Compute a unique number for every combination. */
11882 det |= (oprec > iprec) ? 4 : 0;
11883 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11884 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11885
11886 /* Determine the exponent to use. */
11887 switch (det)
11888 {
11889 case 0:
11890 case 1:
11891 /* oprec <= iprec, outer: signed, inner: don't care. */
11892 prec = oprec - 1;
11893 break;
11894 case 2:
11895 case 3:
11896 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11897 prec = oprec;
11898 break;
11899 case 4:
11900 /* oprec > iprec, outer: signed, inner: signed. */
11901 prec = iprec - 1;
11902 break;
11903 case 5:
11904 /* oprec > iprec, outer: signed, inner: unsigned. */
11905 prec = iprec;
11906 break;
11907 case 6:
11908 /* oprec > iprec, outer: unsigned, inner: signed. */
11909 prec = oprec;
11910 break;
11911 case 7:
11912 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11913 prec = iprec;
11914 break;
11915 default:
11916 gcc_unreachable ();
11917 }
11918
11919 return wide_int_to_tree (outer,
11920 wi::mask (prec, false, TYPE_PRECISION (outer)));
11921 }
11922
11923 /* Returns the smallest value obtainable by casting something in INNER type to
11924 OUTER type. */
11925
11926 tree
11927 lower_bound_in_type (tree outer, tree inner)
11928 {
11929 unsigned oprec = TYPE_PRECISION (outer);
11930 unsigned iprec = TYPE_PRECISION (inner);
11931
11932 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11933 and obtain 0. */
11934 if (TYPE_UNSIGNED (outer)
11935 /* If we are widening something of an unsigned type, OUTER type
11936 contains all values of INNER type. In particular, both INNER
11937 and OUTER types have zero in common. */
11938 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11939 return build_int_cst (outer, 0);
11940 else
11941 {
11942 /* If we are widening a signed type to another signed type, we
11943 want to obtain -2^^(iprec-1). If we are keeping the
11944 precision or narrowing to a signed type, we want to obtain
11945 -2^(oprec-1). */
11946 unsigned prec = oprec > iprec ? iprec : oprec;
11947 return wide_int_to_tree (outer,
11948 wi::mask (prec - 1, true,
11949 TYPE_PRECISION (outer)));
11950 }
11951 }
11952
11953 /* Return nonzero if two operands that are suitable for PHI nodes are
11954 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11955 SSA_NAME or invariant. Note that this is strictly an optimization.
11956 That is, callers of this function can directly call operand_equal_p
11957 and get the same result, only slower. */
11958
11959 int
11960 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11961 {
11962 if (arg0 == arg1)
11963 return 1;
11964 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11965 return 0;
11966 return operand_equal_p (arg0, arg1, 0);
11967 }
11968
11969 /* Returns number of zeros at the end of binary representation of X. */
11970
11971 tree
11972 num_ending_zeros (const_tree x)
11973 {
11974 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11975 }
11976
11977
11978 #define WALK_SUBTREE(NODE) \
11979 do \
11980 { \
11981 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11982 if (result) \
11983 return result; \
11984 } \
11985 while (0)
11986
11987 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11988 be walked whenever a type is seen in the tree. Rest of operands and return
11989 value are as for walk_tree. */
11990
11991 static tree
11992 walk_type_fields (tree type, walk_tree_fn func, void *data,
11993 hash_set<tree> *pset, walk_tree_lh lh)
11994 {
11995 tree result = NULL_TREE;
11996
11997 switch (TREE_CODE (type))
11998 {
11999 case POINTER_TYPE:
12000 case REFERENCE_TYPE:
12001 case VECTOR_TYPE:
12002 /* We have to worry about mutually recursive pointers. These can't
12003 be written in C. They can in Ada. It's pathological, but
12004 there's an ACATS test (c38102a) that checks it. Deal with this
12005 by checking if we're pointing to another pointer, that one
12006 points to another pointer, that one does too, and we have no htab.
12007 If so, get a hash table. We check three levels deep to avoid
12008 the cost of the hash table if we don't need one. */
12009 if (POINTER_TYPE_P (TREE_TYPE (type))
12010 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
12011 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
12012 && !pset)
12013 {
12014 result = walk_tree_without_duplicates (&TREE_TYPE (type),
12015 func, data);
12016 if (result)
12017 return result;
12018
12019 break;
12020 }
12021
12022 /* fall through */
12023
12024 case COMPLEX_TYPE:
12025 WALK_SUBTREE (TREE_TYPE (type));
12026 break;
12027
12028 case METHOD_TYPE:
12029 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
12030
12031 /* Fall through. */
12032
12033 case FUNCTION_TYPE:
12034 WALK_SUBTREE (TREE_TYPE (type));
12035 {
12036 tree arg;
12037
12038 /* We never want to walk into default arguments. */
12039 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
12040 WALK_SUBTREE (TREE_VALUE (arg));
12041 }
12042 break;
12043
12044 case ARRAY_TYPE:
12045 /* Don't follow this nodes's type if a pointer for fear that
12046 we'll have infinite recursion. If we have a PSET, then we
12047 need not fear. */
12048 if (pset
12049 || (!POINTER_TYPE_P (TREE_TYPE (type))
12050 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
12051 WALK_SUBTREE (TREE_TYPE (type));
12052 WALK_SUBTREE (TYPE_DOMAIN (type));
12053 break;
12054
12055 case OFFSET_TYPE:
12056 WALK_SUBTREE (TREE_TYPE (type));
12057 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
12058 break;
12059
12060 default:
12061 break;
12062 }
12063
12064 return NULL_TREE;
12065 }
12066
12067 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
12068 called with the DATA and the address of each sub-tree. If FUNC returns a
12069 non-NULL value, the traversal is stopped, and the value returned by FUNC
12070 is returned. If PSET is non-NULL it is used to record the nodes visited,
12071 and to avoid visiting a node more than once. */
12072
12073 tree
12074 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
12075 hash_set<tree> *pset, walk_tree_lh lh)
12076 {
12077 enum tree_code code;
12078 int walk_subtrees;
12079 tree result;
12080
12081 #define WALK_SUBTREE_TAIL(NODE) \
12082 do \
12083 { \
12084 tp = & (NODE); \
12085 goto tail_recurse; \
12086 } \
12087 while (0)
12088
12089 tail_recurse:
12090 /* Skip empty subtrees. */
12091 if (!*tp)
12092 return NULL_TREE;
12093
12094 /* Don't walk the same tree twice, if the user has requested
12095 that we avoid doing so. */
12096 if (pset && pset->add (*tp))
12097 return NULL_TREE;
12098
12099 /* Call the function. */
12100 walk_subtrees = 1;
12101 result = (*func) (tp, &walk_subtrees, data);
12102
12103 /* If we found something, return it. */
12104 if (result)
12105 return result;
12106
12107 code = TREE_CODE (*tp);
12108
12109 /* Even if we didn't, FUNC may have decided that there was nothing
12110 interesting below this point in the tree. */
12111 if (!walk_subtrees)
12112 {
12113 /* But we still need to check our siblings. */
12114 if (code == TREE_LIST)
12115 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12116 else if (code == OMP_CLAUSE)
12117 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12118 else
12119 return NULL_TREE;
12120 }
12121
12122 if (lh)
12123 {
12124 result = (*lh) (tp, &walk_subtrees, func, data, pset);
12125 if (result || !walk_subtrees)
12126 return result;
12127 }
12128
12129 switch (code)
12130 {
12131 case ERROR_MARK:
12132 case IDENTIFIER_NODE:
12133 case INTEGER_CST:
12134 case REAL_CST:
12135 case FIXED_CST:
12136 case STRING_CST:
12137 case BLOCK:
12138 case PLACEHOLDER_EXPR:
12139 case SSA_NAME:
12140 case FIELD_DECL:
12141 case RESULT_DECL:
12142 /* None of these have subtrees other than those already walked
12143 above. */
12144 break;
12145
12146 case TREE_LIST:
12147 WALK_SUBTREE (TREE_VALUE (*tp));
12148 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
12149 break;
12150
12151 case TREE_VEC:
12152 {
12153 int len = TREE_VEC_LENGTH (*tp);
12154
12155 if (len == 0)
12156 break;
12157
12158 /* Walk all elements but the first. */
12159 while (--len)
12160 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
12161
12162 /* Now walk the first one as a tail call. */
12163 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
12164 }
12165
12166 case VECTOR_CST:
12167 {
12168 unsigned len = vector_cst_encoded_nelts (*tp);
12169 if (len == 0)
12170 break;
12171 /* Walk all elements but the first. */
12172 while (--len)
12173 WALK_SUBTREE (VECTOR_CST_ENCODED_ELT (*tp, len));
12174 /* Now walk the first one as a tail call. */
12175 WALK_SUBTREE_TAIL (VECTOR_CST_ENCODED_ELT (*tp, 0));
12176 }
12177
12178 case COMPLEX_CST:
12179 WALK_SUBTREE (TREE_REALPART (*tp));
12180 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
12181
12182 case CONSTRUCTOR:
12183 {
12184 unsigned HOST_WIDE_INT idx;
12185 constructor_elt *ce;
12186
12187 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
12188 idx++)
12189 WALK_SUBTREE (ce->value);
12190 }
12191 break;
12192
12193 case SAVE_EXPR:
12194 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
12195
12196 case BIND_EXPR:
12197 {
12198 tree decl;
12199 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
12200 {
12201 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
12202 into declarations that are just mentioned, rather than
12203 declared; they don't really belong to this part of the tree.
12204 And, we can see cycles: the initializer for a declaration
12205 can refer to the declaration itself. */
12206 WALK_SUBTREE (DECL_INITIAL (decl));
12207 WALK_SUBTREE (DECL_SIZE (decl));
12208 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
12209 }
12210 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
12211 }
12212
12213 case STATEMENT_LIST:
12214 {
12215 tree_stmt_iterator i;
12216 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
12217 WALK_SUBTREE (*tsi_stmt_ptr (i));
12218 }
12219 break;
12220
12221 case OMP_CLAUSE:
12222 switch (OMP_CLAUSE_CODE (*tp))
12223 {
12224 case OMP_CLAUSE_GANG:
12225 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12226 /* FALLTHRU */
12227
12228 case OMP_CLAUSE_ASYNC:
12229 case OMP_CLAUSE_WAIT:
12230 case OMP_CLAUSE_WORKER:
12231 case OMP_CLAUSE_VECTOR:
12232 case OMP_CLAUSE_NUM_GANGS:
12233 case OMP_CLAUSE_NUM_WORKERS:
12234 case OMP_CLAUSE_VECTOR_LENGTH:
12235 case OMP_CLAUSE_PRIVATE:
12236 case OMP_CLAUSE_SHARED:
12237 case OMP_CLAUSE_FIRSTPRIVATE:
12238 case OMP_CLAUSE_COPYIN:
12239 case OMP_CLAUSE_COPYPRIVATE:
12240 case OMP_CLAUSE_FINAL:
12241 case OMP_CLAUSE_IF:
12242 case OMP_CLAUSE_NUM_THREADS:
12243 case OMP_CLAUSE_SCHEDULE:
12244 case OMP_CLAUSE_UNIFORM:
12245 case OMP_CLAUSE_DEPEND:
12246 case OMP_CLAUSE_NONTEMPORAL:
12247 case OMP_CLAUSE_NUM_TEAMS:
12248 case OMP_CLAUSE_THREAD_LIMIT:
12249 case OMP_CLAUSE_DEVICE:
12250 case OMP_CLAUSE_DIST_SCHEDULE:
12251 case OMP_CLAUSE_SAFELEN:
12252 case OMP_CLAUSE_SIMDLEN:
12253 case OMP_CLAUSE_ORDERED:
12254 case OMP_CLAUSE_PRIORITY:
12255 case OMP_CLAUSE_GRAINSIZE:
12256 case OMP_CLAUSE_NUM_TASKS:
12257 case OMP_CLAUSE_HINT:
12258 case OMP_CLAUSE_TO_DECLARE:
12259 case OMP_CLAUSE_LINK:
12260 case OMP_CLAUSE_DETACH:
12261 case OMP_CLAUSE_USE_DEVICE_PTR:
12262 case OMP_CLAUSE_USE_DEVICE_ADDR:
12263 case OMP_CLAUSE_IS_DEVICE_PTR:
12264 case OMP_CLAUSE_INCLUSIVE:
12265 case OMP_CLAUSE_EXCLUSIVE:
12266 case OMP_CLAUSE__LOOPTEMP_:
12267 case OMP_CLAUSE__REDUCTEMP_:
12268 case OMP_CLAUSE__CONDTEMP_:
12269 case OMP_CLAUSE__SCANTEMP_:
12270 case OMP_CLAUSE__SIMDUID_:
12271 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
12272 /* FALLTHRU */
12273
12274 case OMP_CLAUSE_INDEPENDENT:
12275 case OMP_CLAUSE_NOWAIT:
12276 case OMP_CLAUSE_DEFAULT:
12277 case OMP_CLAUSE_UNTIED:
12278 case OMP_CLAUSE_MERGEABLE:
12279 case OMP_CLAUSE_PROC_BIND:
12280 case OMP_CLAUSE_DEVICE_TYPE:
12281 case OMP_CLAUSE_INBRANCH:
12282 case OMP_CLAUSE_NOTINBRANCH:
12283 case OMP_CLAUSE_FOR:
12284 case OMP_CLAUSE_PARALLEL:
12285 case OMP_CLAUSE_SECTIONS:
12286 case OMP_CLAUSE_TASKGROUP:
12287 case OMP_CLAUSE_NOGROUP:
12288 case OMP_CLAUSE_THREADS:
12289 case OMP_CLAUSE_SIMD:
12290 case OMP_CLAUSE_DEFAULTMAP:
12291 case OMP_CLAUSE_ORDER:
12292 case OMP_CLAUSE_BIND:
12293 case OMP_CLAUSE_AUTO:
12294 case OMP_CLAUSE_SEQ:
12295 case OMP_CLAUSE_TILE:
12296 case OMP_CLAUSE__SIMT_:
12297 case OMP_CLAUSE_IF_PRESENT:
12298 case OMP_CLAUSE_FINALIZE:
12299 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12300
12301 case OMP_CLAUSE_LASTPRIVATE:
12302 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12303 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
12304 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12305
12306 case OMP_CLAUSE_COLLAPSE:
12307 {
12308 int i;
12309 for (i = 0; i < 3; i++)
12310 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12311 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12312 }
12313
12314 case OMP_CLAUSE_LINEAR:
12315 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12316 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
12317 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
12318 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12319
12320 case OMP_CLAUSE_ALIGNED:
12321 case OMP_CLAUSE_ALLOCATE:
12322 case OMP_CLAUSE_FROM:
12323 case OMP_CLAUSE_TO:
12324 case OMP_CLAUSE_MAP:
12325 case OMP_CLAUSE__CACHE_:
12326 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
12327 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
12328 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12329
12330 case OMP_CLAUSE_REDUCTION:
12331 case OMP_CLAUSE_TASK_REDUCTION:
12332 case OMP_CLAUSE_IN_REDUCTION:
12333 {
12334 int i;
12335 for (i = 0; i < 5; i++)
12336 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
12337 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
12338 }
12339
12340 default:
12341 gcc_unreachable ();
12342 }
12343 break;
12344
12345 case TARGET_EXPR:
12346 {
12347 int i, len;
12348
12349 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
12350 But, we only want to walk once. */
12351 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
12352 for (i = 0; i < len; ++i)
12353 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12354 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
12355 }
12356
12357 case DECL_EXPR:
12358 /* If this is a TYPE_DECL, walk into the fields of the type that it's
12359 defining. We only want to walk into these fields of a type in this
12360 case and not in the general case of a mere reference to the type.
12361
12362 The criterion is as follows: if the field can be an expression, it
12363 must be walked only here. This should be in keeping with the fields
12364 that are directly gimplified in gimplify_type_sizes in order for the
12365 mark/copy-if-shared/unmark machinery of the gimplifier to work with
12366 variable-sized types.
12367
12368 Note that DECLs get walked as part of processing the BIND_EXPR. */
12369 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
12370 {
12371 /* Call the function for the decl so e.g. copy_tree_body_r can
12372 replace it with the remapped one. */
12373 result = (*func) (&DECL_EXPR_DECL (*tp), &walk_subtrees, data);
12374 if (result || !walk_subtrees)
12375 return result;
12376
12377 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
12378 if (TREE_CODE (*type_p) == ERROR_MARK)
12379 return NULL_TREE;
12380
12381 /* Call the function for the type. See if it returns anything or
12382 doesn't want us to continue. If we are to continue, walk both
12383 the normal fields and those for the declaration case. */
12384 result = (*func) (type_p, &walk_subtrees, data);
12385 if (result || !walk_subtrees)
12386 return result;
12387
12388 /* But do not walk a pointed-to type since it may itself need to
12389 be walked in the declaration case if it isn't anonymous. */
12390 if (!POINTER_TYPE_P (*type_p))
12391 {
12392 result = walk_type_fields (*type_p, func, data, pset, lh);
12393 if (result)
12394 return result;
12395 }
12396
12397 /* If this is a record type, also walk the fields. */
12398 if (RECORD_OR_UNION_TYPE_P (*type_p))
12399 {
12400 tree field;
12401
12402 for (field = TYPE_FIELDS (*type_p); field;
12403 field = DECL_CHAIN (field))
12404 {
12405 /* We'd like to look at the type of the field, but we can
12406 easily get infinite recursion. So assume it's pointed
12407 to elsewhere in the tree. Also, ignore things that
12408 aren't fields. */
12409 if (TREE_CODE (field) != FIELD_DECL)
12410 continue;
12411
12412 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
12413 WALK_SUBTREE (DECL_SIZE (field));
12414 WALK_SUBTREE (DECL_SIZE_UNIT (field));
12415 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
12416 WALK_SUBTREE (DECL_QUALIFIER (field));
12417 }
12418 }
12419
12420 /* Same for scalar types. */
12421 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
12422 || TREE_CODE (*type_p) == ENUMERAL_TYPE
12423 || TREE_CODE (*type_p) == INTEGER_TYPE
12424 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
12425 || TREE_CODE (*type_p) == REAL_TYPE)
12426 {
12427 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
12428 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
12429 }
12430
12431 WALK_SUBTREE (TYPE_SIZE (*type_p));
12432 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
12433 }
12434 /* FALLTHRU */
12435
12436 default:
12437 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
12438 {
12439 int i, len;
12440
12441 /* Walk over all the sub-trees of this operand. */
12442 len = TREE_OPERAND_LENGTH (*tp);
12443
12444 /* Go through the subtrees. We need to do this in forward order so
12445 that the scope of a FOR_EXPR is handled properly. */
12446 if (len)
12447 {
12448 for (i = 0; i < len - 1; ++i)
12449 WALK_SUBTREE (TREE_OPERAND (*tp, i));
12450 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
12451 }
12452 }
12453 /* If this is a type, walk the needed fields in the type. */
12454 else if (TYPE_P (*tp))
12455 return walk_type_fields (*tp, func, data, pset, lh);
12456 break;
12457 }
12458
12459 /* We didn't find what we were looking for. */
12460 return NULL_TREE;
12461
12462 #undef WALK_SUBTREE_TAIL
12463 }
12464 #undef WALK_SUBTREE
12465
12466 /* Like walk_tree, but does not walk duplicate nodes more than once. */
12467
12468 tree
12469 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
12470 walk_tree_lh lh)
12471 {
12472 tree result;
12473
12474 hash_set<tree> pset;
12475 result = walk_tree_1 (tp, func, data, &pset, lh);
12476 return result;
12477 }
12478
12479
12480 tree
12481 tree_block (tree t)
12482 {
12483 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12484
12485 if (IS_EXPR_CODE_CLASS (c))
12486 return LOCATION_BLOCK (t->exp.locus);
12487 gcc_unreachable ();
12488 return NULL;
12489 }
12490
12491 void
12492 tree_set_block (tree t, tree b)
12493 {
12494 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
12495
12496 if (IS_EXPR_CODE_CLASS (c))
12497 {
12498 t->exp.locus = set_block (t->exp.locus, b);
12499 }
12500 else
12501 gcc_unreachable ();
12502 }
12503
12504 /* Create a nameless artificial label and put it in the current
12505 function context. The label has a location of LOC. Returns the
12506 newly created label. */
12507
12508 tree
12509 create_artificial_label (location_t loc)
12510 {
12511 tree lab = build_decl (loc,
12512 LABEL_DECL, NULL_TREE, void_type_node);
12513
12514 DECL_ARTIFICIAL (lab) = 1;
12515 DECL_IGNORED_P (lab) = 1;
12516 DECL_CONTEXT (lab) = current_function_decl;
12517 return lab;
12518 }
12519
12520 /* Given a tree, try to return a useful variable name that we can use
12521 to prefix a temporary that is being assigned the value of the tree.
12522 I.E. given <temp> = &A, return A. */
12523
12524 const char *
12525 get_name (tree t)
12526 {
12527 tree stripped_decl;
12528
12529 stripped_decl = t;
12530 STRIP_NOPS (stripped_decl);
12531 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
12532 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
12533 else if (TREE_CODE (stripped_decl) == SSA_NAME)
12534 {
12535 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
12536 if (!name)
12537 return NULL;
12538 return IDENTIFIER_POINTER (name);
12539 }
12540 else
12541 {
12542 switch (TREE_CODE (stripped_decl))
12543 {
12544 case ADDR_EXPR:
12545 return get_name (TREE_OPERAND (stripped_decl, 0));
12546 default:
12547 return NULL;
12548 }
12549 }
12550 }
12551
12552 /* Return true if TYPE has a variable argument list. */
12553
12554 bool
12555 stdarg_p (const_tree fntype)
12556 {
12557 function_args_iterator args_iter;
12558 tree n = NULL_TREE, t;
12559
12560 if (!fntype)
12561 return false;
12562
12563 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
12564 {
12565 n = t;
12566 }
12567
12568 return n != NULL_TREE && n != void_type_node;
12569 }
12570
12571 /* Return true if TYPE has a prototype. */
12572
12573 bool
12574 prototype_p (const_tree fntype)
12575 {
12576 tree t;
12577
12578 gcc_assert (fntype != NULL_TREE);
12579
12580 t = TYPE_ARG_TYPES (fntype);
12581 return (t != NULL_TREE);
12582 }
12583
12584 /* If BLOCK is inlined from an __attribute__((__artificial__))
12585 routine, return pointer to location from where it has been
12586 called. */
12587 location_t *
12588 block_nonartificial_location (tree block)
12589 {
12590 location_t *ret = NULL;
12591
12592 while (block && TREE_CODE (block) == BLOCK
12593 && BLOCK_ABSTRACT_ORIGIN (block))
12594 {
12595 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12596 if (TREE_CODE (ao) == FUNCTION_DECL)
12597 {
12598 /* If AO is an artificial inline, point RET to the
12599 call site locus at which it has been inlined and continue
12600 the loop, in case AO's caller is also an artificial
12601 inline. */
12602 if (DECL_DECLARED_INLINE_P (ao)
12603 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12604 ret = &BLOCK_SOURCE_LOCATION (block);
12605 else
12606 break;
12607 }
12608 else if (TREE_CODE (ao) != BLOCK)
12609 break;
12610
12611 block = BLOCK_SUPERCONTEXT (block);
12612 }
12613 return ret;
12614 }
12615
12616
12617 /* If EXP is inlined from an __attribute__((__artificial__))
12618 function, return the location of the original call expression. */
12619
12620 location_t
12621 tree_nonartificial_location (tree exp)
12622 {
12623 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12624
12625 if (loc)
12626 return *loc;
12627 else
12628 return EXPR_LOCATION (exp);
12629 }
12630
12631 /* Return the location into which EXP has been inlined. Analogous
12632 to tree_nonartificial_location() above but not limited to artificial
12633 functions declared inline. If SYSTEM_HEADER is true, return
12634 the macro expansion point of the location if it's in a system header */
12635
12636 location_t
12637 tree_inlined_location (tree exp, bool system_header /* = true */)
12638 {
12639 location_t loc = UNKNOWN_LOCATION;
12640
12641 tree block = TREE_BLOCK (exp);
12642
12643 while (block && TREE_CODE (block) == BLOCK
12644 && BLOCK_ABSTRACT_ORIGIN (block))
12645 {
12646 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12647 if (TREE_CODE (ao) == FUNCTION_DECL)
12648 loc = BLOCK_SOURCE_LOCATION (block);
12649 else if (TREE_CODE (ao) != BLOCK)
12650 break;
12651
12652 block = BLOCK_SUPERCONTEXT (block);
12653 }
12654
12655 if (loc == UNKNOWN_LOCATION)
12656 {
12657 loc = EXPR_LOCATION (exp);
12658 if (system_header)
12659 /* Only consider macro expansion when the block traversal failed
12660 to find a location. Otherwise it's not relevant. */
12661 return expansion_point_location_if_in_system_header (loc);
12662 }
12663
12664 return loc;
12665 }
12666
12667 /* These are the hash table functions for the hash table of OPTIMIZATION_NODE
12668 nodes. */
12669
12670 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12671
12672 hashval_t
12673 cl_option_hasher::hash (tree x)
12674 {
12675 const_tree const t = x;
12676 const char *p;
12677 size_t i;
12678 size_t len = 0;
12679 hashval_t hash = 0;
12680
12681 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12682 {
12683 p = (const char *)TREE_OPTIMIZATION (t);
12684 len = sizeof (struct cl_optimization);
12685 }
12686
12687 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12688 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12689
12690 else
12691 gcc_unreachable ();
12692
12693 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12694 something else. */
12695 for (i = 0; i < len; i++)
12696 if (p[i])
12697 hash = (hash << 4) ^ ((i << 2) | p[i]);
12698
12699 return hash;
12700 }
12701
12702 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12703 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12704 same. */
12705
12706 bool
12707 cl_option_hasher::equal (tree x, tree y)
12708 {
12709 const_tree const xt = x;
12710 const_tree const yt = y;
12711
12712 if (TREE_CODE (xt) != TREE_CODE (yt))
12713 return 0;
12714
12715 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12716 return cl_optimization_option_eq (TREE_OPTIMIZATION (xt),
12717 TREE_OPTIMIZATION (yt));
12718 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12719 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12720 TREE_TARGET_OPTION (yt));
12721 else
12722 gcc_unreachable ();
12723 }
12724
12725 /* Build an OPTIMIZATION_NODE based on the options in OPTS and OPTS_SET. */
12726
12727 tree
12728 build_optimization_node (struct gcc_options *opts,
12729 struct gcc_options *opts_set)
12730 {
12731 tree t;
12732
12733 /* Use the cache of optimization nodes. */
12734
12735 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12736 opts, opts_set);
12737
12738 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12739 t = *slot;
12740 if (!t)
12741 {
12742 /* Insert this one into the hash table. */
12743 t = cl_optimization_node;
12744 *slot = t;
12745
12746 /* Make a new node for next time round. */
12747 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12748 }
12749
12750 return t;
12751 }
12752
12753 /* Build a TARGET_OPTION_NODE based on the options in OPTS and OPTS_SET. */
12754
12755 tree
12756 build_target_option_node (struct gcc_options *opts,
12757 struct gcc_options *opts_set)
12758 {
12759 tree t;
12760
12761 /* Use the cache of optimization nodes. */
12762
12763 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12764 opts, opts_set);
12765
12766 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12767 t = *slot;
12768 if (!t)
12769 {
12770 /* Insert this one into the hash table. */
12771 t = cl_target_option_node;
12772 *slot = t;
12773
12774 /* Make a new node for next time round. */
12775 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12776 }
12777
12778 return t;
12779 }
12780
12781 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12782 so that they aren't saved during PCH writing. */
12783
12784 void
12785 prepare_target_option_nodes_for_pch (void)
12786 {
12787 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12788 for (; iter != cl_option_hash_table->end (); ++iter)
12789 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12790 TREE_TARGET_GLOBALS (*iter) = NULL;
12791 }
12792
12793 /* Determine the "ultimate origin" of a block. */
12794
12795 tree
12796 block_ultimate_origin (const_tree block)
12797 {
12798 tree origin = BLOCK_ABSTRACT_ORIGIN (block);
12799
12800 if (origin == NULL_TREE)
12801 return NULL_TREE;
12802 else
12803 {
12804 gcc_checking_assert ((DECL_P (origin)
12805 && DECL_ORIGIN (origin) == origin)
12806 || BLOCK_ORIGIN (origin) == origin);
12807 return origin;
12808 }
12809 }
12810
12811 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12812 no instruction. */
12813
12814 bool
12815 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12816 {
12817 /* Do not strip casts into or out of differing address spaces. */
12818 if (POINTER_TYPE_P (outer_type)
12819 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12820 {
12821 if (!POINTER_TYPE_P (inner_type)
12822 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12823 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12824 return false;
12825 }
12826 else if (POINTER_TYPE_P (inner_type)
12827 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12828 {
12829 /* We already know that outer_type is not a pointer with
12830 a non-generic address space. */
12831 return false;
12832 }
12833
12834 /* Use precision rather then machine mode when we can, which gives
12835 the correct answer even for submode (bit-field) types. */
12836 if ((INTEGRAL_TYPE_P (outer_type)
12837 || POINTER_TYPE_P (outer_type)
12838 || TREE_CODE (outer_type) == OFFSET_TYPE)
12839 && (INTEGRAL_TYPE_P (inner_type)
12840 || POINTER_TYPE_P (inner_type)
12841 || TREE_CODE (inner_type) == OFFSET_TYPE))
12842 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12843
12844 /* Otherwise fall back on comparing machine modes (e.g. for
12845 aggregate types, floats). */
12846 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12847 }
12848
12849 /* Return true iff conversion in EXP generates no instruction. Mark
12850 it inline so that we fully inline into the stripping functions even
12851 though we have two uses of this function. */
12852
12853 static inline bool
12854 tree_nop_conversion (const_tree exp)
12855 {
12856 tree outer_type, inner_type;
12857
12858 if (location_wrapper_p (exp))
12859 return true;
12860 if (!CONVERT_EXPR_P (exp)
12861 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12862 return false;
12863
12864 outer_type = TREE_TYPE (exp);
12865 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12866 if (!inner_type || inner_type == error_mark_node)
12867 return false;
12868
12869 return tree_nop_conversion_p (outer_type, inner_type);
12870 }
12871
12872 /* Return true iff conversion in EXP generates no instruction. Don't
12873 consider conversions changing the signedness. */
12874
12875 static bool
12876 tree_sign_nop_conversion (const_tree exp)
12877 {
12878 tree outer_type, inner_type;
12879
12880 if (!tree_nop_conversion (exp))
12881 return false;
12882
12883 outer_type = TREE_TYPE (exp);
12884 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12885
12886 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12887 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12888 }
12889
12890 /* Strip conversions from EXP according to tree_nop_conversion and
12891 return the resulting expression. */
12892
12893 tree
12894 tree_strip_nop_conversions (tree exp)
12895 {
12896 while (tree_nop_conversion (exp))
12897 exp = TREE_OPERAND (exp, 0);
12898 return exp;
12899 }
12900
12901 /* Strip conversions from EXP according to tree_sign_nop_conversion
12902 and return the resulting expression. */
12903
12904 tree
12905 tree_strip_sign_nop_conversions (tree exp)
12906 {
12907 while (tree_sign_nop_conversion (exp))
12908 exp = TREE_OPERAND (exp, 0);
12909 return exp;
12910 }
12911
12912 /* Avoid any floating point extensions from EXP. */
12913 tree
12914 strip_float_extensions (tree exp)
12915 {
12916 tree sub, expt, subt;
12917
12918 /* For floating point constant look up the narrowest type that can hold
12919 it properly and handle it like (type)(narrowest_type)constant.
12920 This way we can optimize for instance a=a*2.0 where "a" is float
12921 but 2.0 is double constant. */
12922 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12923 {
12924 REAL_VALUE_TYPE orig;
12925 tree type = NULL;
12926
12927 orig = TREE_REAL_CST (exp);
12928 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12929 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12930 type = float_type_node;
12931 else if (TYPE_PRECISION (TREE_TYPE (exp))
12932 > TYPE_PRECISION (double_type_node)
12933 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12934 type = double_type_node;
12935 if (type)
12936 return build_real_truncate (type, orig);
12937 }
12938
12939 if (!CONVERT_EXPR_P (exp))
12940 return exp;
12941
12942 sub = TREE_OPERAND (exp, 0);
12943 subt = TREE_TYPE (sub);
12944 expt = TREE_TYPE (exp);
12945
12946 if (!FLOAT_TYPE_P (subt))
12947 return exp;
12948
12949 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12950 return exp;
12951
12952 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12953 return exp;
12954
12955 return strip_float_extensions (sub);
12956 }
12957
12958 /* Strip out all handled components that produce invariant
12959 offsets. */
12960
12961 const_tree
12962 strip_invariant_refs (const_tree op)
12963 {
12964 while (handled_component_p (op))
12965 {
12966 switch (TREE_CODE (op))
12967 {
12968 case ARRAY_REF:
12969 case ARRAY_RANGE_REF:
12970 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12971 || TREE_OPERAND (op, 2) != NULL_TREE
12972 || TREE_OPERAND (op, 3) != NULL_TREE)
12973 return NULL;
12974 break;
12975
12976 case COMPONENT_REF:
12977 if (TREE_OPERAND (op, 2) != NULL_TREE)
12978 return NULL;
12979 break;
12980
12981 default:;
12982 }
12983 op = TREE_OPERAND (op, 0);
12984 }
12985
12986 return op;
12987 }
12988
12989 static GTY(()) tree gcc_eh_personality_decl;
12990
12991 /* Return the GCC personality function decl. */
12992
12993 tree
12994 lhd_gcc_personality (void)
12995 {
12996 if (!gcc_eh_personality_decl)
12997 gcc_eh_personality_decl = build_personality_function ("gcc");
12998 return gcc_eh_personality_decl;
12999 }
13000
13001 /* TARGET is a call target of GIMPLE call statement
13002 (obtained by gimple_call_fn). Return true if it is
13003 OBJ_TYPE_REF representing an virtual call of C++ method.
13004 (As opposed to OBJ_TYPE_REF representing objc calls
13005 through a cast where middle-end devirtualization machinery
13006 can't apply.) FOR_DUMP_P is true when being called from
13007 the dump routines. */
13008
13009 bool
13010 virtual_method_call_p (const_tree target, bool for_dump_p)
13011 {
13012 if (TREE_CODE (target) != OBJ_TYPE_REF)
13013 return false;
13014 tree t = TREE_TYPE (target);
13015 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
13016 t = TREE_TYPE (t);
13017 if (TREE_CODE (t) == FUNCTION_TYPE)
13018 return false;
13019 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
13020 /* If we do not have BINFO associated, it means that type was built
13021 without devirtualization enabled. Do not consider this a virtual
13022 call. */
13023 if (!TYPE_BINFO (obj_type_ref_class (target, for_dump_p)))
13024 return false;
13025 return true;
13026 }
13027
13028 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
13029
13030 static tree
13031 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
13032 {
13033 unsigned int i;
13034 tree base_binfo, b;
13035
13036 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13037 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
13038 && types_same_for_odr (TREE_TYPE (base_binfo), type))
13039 return base_binfo;
13040 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
13041 return b;
13042 return NULL;
13043 }
13044
13045 /* Try to find a base info of BINFO that would have its field decl at offset
13046 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
13047 found, return, otherwise return NULL_TREE. */
13048
13049 tree
13050 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
13051 {
13052 tree type = BINFO_TYPE (binfo);
13053
13054 while (true)
13055 {
13056 HOST_WIDE_INT pos, size;
13057 tree fld;
13058 int i;
13059
13060 if (types_same_for_odr (type, expected_type))
13061 return binfo;
13062 if (maybe_lt (offset, 0))
13063 return NULL_TREE;
13064
13065 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
13066 {
13067 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
13068 continue;
13069
13070 pos = int_bit_position (fld);
13071 size = tree_to_uhwi (DECL_SIZE (fld));
13072 if (known_in_range_p (offset, pos, size))
13073 break;
13074 }
13075 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
13076 return NULL_TREE;
13077
13078 /* Offset 0 indicates the primary base, whose vtable contents are
13079 represented in the binfo for the derived class. */
13080 else if (maybe_ne (offset, 0))
13081 {
13082 tree found_binfo = NULL, base_binfo;
13083 /* Offsets in BINFO are in bytes relative to the whole structure
13084 while POS is in bits relative to the containing field. */
13085 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
13086 / BITS_PER_UNIT);
13087
13088 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13089 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
13090 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
13091 {
13092 found_binfo = base_binfo;
13093 break;
13094 }
13095 if (found_binfo)
13096 binfo = found_binfo;
13097 else
13098 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
13099 binfo_offset);
13100 }
13101
13102 type = TREE_TYPE (fld);
13103 offset -= pos;
13104 }
13105 }
13106
13107 /* Returns true if X is a typedef decl. */
13108
13109 bool
13110 is_typedef_decl (const_tree x)
13111 {
13112 return (x && TREE_CODE (x) == TYPE_DECL
13113 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
13114 }
13115
13116 /* Returns true iff TYPE is a type variant created for a typedef. */
13117
13118 bool
13119 typedef_variant_p (const_tree type)
13120 {
13121 return is_typedef_decl (TYPE_NAME (type));
13122 }
13123
13124 /* PR 84195: Replace control characters in "unescaped" with their
13125 escaped equivalents. Allow newlines if -fmessage-length has
13126 been set to a non-zero value. This is done here, rather than
13127 where the attribute is recorded as the message length can
13128 change between these two locations. */
13129
13130 void
13131 escaped_string::escape (const char *unescaped)
13132 {
13133 char *escaped;
13134 size_t i, new_i, len;
13135
13136 if (m_owned)
13137 free (m_str);
13138
13139 m_str = const_cast<char *> (unescaped);
13140 m_owned = false;
13141
13142 if (unescaped == NULL || *unescaped == 0)
13143 return;
13144
13145 len = strlen (unescaped);
13146 escaped = NULL;
13147 new_i = 0;
13148
13149 for (i = 0; i < len; i++)
13150 {
13151 char c = unescaped[i];
13152
13153 if (!ISCNTRL (c))
13154 {
13155 if (escaped)
13156 escaped[new_i++] = c;
13157 continue;
13158 }
13159
13160 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
13161 {
13162 if (escaped == NULL)
13163 {
13164 /* We only allocate space for a new string if we
13165 actually encounter a control character that
13166 needs replacing. */
13167 escaped = (char *) xmalloc (len * 2 + 1);
13168 strncpy (escaped, unescaped, i);
13169 new_i = i;
13170 }
13171
13172 escaped[new_i++] = '\\';
13173
13174 switch (c)
13175 {
13176 case '\a': escaped[new_i++] = 'a'; break;
13177 case '\b': escaped[new_i++] = 'b'; break;
13178 case '\f': escaped[new_i++] = 'f'; break;
13179 case '\n': escaped[new_i++] = 'n'; break;
13180 case '\r': escaped[new_i++] = 'r'; break;
13181 case '\t': escaped[new_i++] = 't'; break;
13182 case '\v': escaped[new_i++] = 'v'; break;
13183 default: escaped[new_i++] = '?'; break;
13184 }
13185 }
13186 else if (escaped)
13187 escaped[new_i++] = c;
13188 }
13189
13190 if (escaped)
13191 {
13192 escaped[new_i] = 0;
13193 m_str = escaped;
13194 m_owned = true;
13195 }
13196 }
13197
13198 /* Warn about a use of an identifier which was marked deprecated. Returns
13199 whether a warning was given. */
13200
13201 bool
13202 warn_deprecated_use (tree node, tree attr)
13203 {
13204 escaped_string msg;
13205
13206 if (node == 0 || !warn_deprecated_decl)
13207 return false;
13208
13209 if (!attr)
13210 {
13211 if (DECL_P (node))
13212 attr = DECL_ATTRIBUTES (node);
13213 else if (TYPE_P (node))
13214 {
13215 tree decl = TYPE_STUB_DECL (node);
13216 if (decl)
13217 attr = lookup_attribute ("deprecated",
13218 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
13219 }
13220 }
13221
13222 if (attr)
13223 attr = lookup_attribute ("deprecated", attr);
13224
13225 if (attr)
13226 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
13227
13228 bool w = false;
13229 if (DECL_P (node))
13230 {
13231 auto_diagnostic_group d;
13232 if (msg)
13233 w = warning (OPT_Wdeprecated_declarations,
13234 "%qD is deprecated: %s", node, (const char *) msg);
13235 else
13236 w = warning (OPT_Wdeprecated_declarations,
13237 "%qD is deprecated", node);
13238 if (w)
13239 inform (DECL_SOURCE_LOCATION (node), "declared here");
13240 }
13241 else if (TYPE_P (node))
13242 {
13243 tree what = NULL_TREE;
13244 tree decl = TYPE_STUB_DECL (node);
13245
13246 if (TYPE_NAME (node))
13247 {
13248 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
13249 what = TYPE_NAME (node);
13250 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
13251 && DECL_NAME (TYPE_NAME (node)))
13252 what = DECL_NAME (TYPE_NAME (node));
13253 }
13254
13255 auto_diagnostic_group d;
13256 if (what)
13257 {
13258 if (msg)
13259 w = warning (OPT_Wdeprecated_declarations,
13260 "%qE is deprecated: %s", what, (const char *) msg);
13261 else
13262 w = warning (OPT_Wdeprecated_declarations,
13263 "%qE is deprecated", what);
13264 }
13265 else
13266 {
13267 if (msg)
13268 w = warning (OPT_Wdeprecated_declarations,
13269 "type is deprecated: %s", (const char *) msg);
13270 else
13271 w = warning (OPT_Wdeprecated_declarations,
13272 "type is deprecated");
13273 }
13274
13275 if (w && decl)
13276 inform (DECL_SOURCE_LOCATION (decl), "declared here");
13277 }
13278
13279 return w;
13280 }
13281
13282 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
13283 somewhere in it. */
13284
13285 bool
13286 contains_bitfld_component_ref_p (const_tree ref)
13287 {
13288 while (handled_component_p (ref))
13289 {
13290 if (TREE_CODE (ref) == COMPONENT_REF
13291 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
13292 return true;
13293 ref = TREE_OPERAND (ref, 0);
13294 }
13295
13296 return false;
13297 }
13298
13299 /* Try to determine whether a TRY_CATCH expression can fall through.
13300 This is a subroutine of block_may_fallthru. */
13301
13302 static bool
13303 try_catch_may_fallthru (const_tree stmt)
13304 {
13305 tree_stmt_iterator i;
13306
13307 /* If the TRY block can fall through, the whole TRY_CATCH can
13308 fall through. */
13309 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
13310 return true;
13311
13312 i = tsi_start (TREE_OPERAND (stmt, 1));
13313 switch (TREE_CODE (tsi_stmt (i)))
13314 {
13315 case CATCH_EXPR:
13316 /* We expect to see a sequence of CATCH_EXPR trees, each with a
13317 catch expression and a body. The whole TRY_CATCH may fall
13318 through iff any of the catch bodies falls through. */
13319 for (; !tsi_end_p (i); tsi_next (&i))
13320 {
13321 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
13322 return true;
13323 }
13324 return false;
13325
13326 case EH_FILTER_EXPR:
13327 /* The exception filter expression only matters if there is an
13328 exception. If the exception does not match EH_FILTER_TYPES,
13329 we will execute EH_FILTER_FAILURE, and we will fall through
13330 if that falls through. If the exception does match
13331 EH_FILTER_TYPES, the stack unwinder will continue up the
13332 stack, so we will not fall through. We don't know whether we
13333 will throw an exception which matches EH_FILTER_TYPES or not,
13334 so we just ignore EH_FILTER_TYPES and assume that we might
13335 throw an exception which doesn't match. */
13336 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
13337
13338 default:
13339 /* This case represents statements to be executed when an
13340 exception occurs. Those statements are implicitly followed
13341 by a RESX statement to resume execution after the exception.
13342 So in this case the TRY_CATCH never falls through. */
13343 return false;
13344 }
13345 }
13346
13347 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
13348 need not be 100% accurate; simply be conservative and return true if we
13349 don't know. This is used only to avoid stupidly generating extra code.
13350 If we're wrong, we'll just delete the extra code later. */
13351
13352 bool
13353 block_may_fallthru (const_tree block)
13354 {
13355 /* This CONST_CAST is okay because expr_last returns its argument
13356 unmodified and we assign it to a const_tree. */
13357 const_tree stmt = expr_last (CONST_CAST_TREE (block));
13358
13359 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
13360 {
13361 case GOTO_EXPR:
13362 case RETURN_EXPR:
13363 /* Easy cases. If the last statement of the block implies
13364 control transfer, then we can't fall through. */
13365 return false;
13366
13367 case SWITCH_EXPR:
13368 /* If there is a default: label or case labels cover all possible
13369 SWITCH_COND values, then the SWITCH_EXPR will transfer control
13370 to some case label in all cases and all we care is whether the
13371 SWITCH_BODY falls through. */
13372 if (SWITCH_ALL_CASES_P (stmt))
13373 return block_may_fallthru (SWITCH_BODY (stmt));
13374 return true;
13375
13376 case COND_EXPR:
13377 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
13378 return true;
13379 return block_may_fallthru (COND_EXPR_ELSE (stmt));
13380
13381 case BIND_EXPR:
13382 return block_may_fallthru (BIND_EXPR_BODY (stmt));
13383
13384 case TRY_CATCH_EXPR:
13385 return try_catch_may_fallthru (stmt);
13386
13387 case TRY_FINALLY_EXPR:
13388 /* The finally clause is always executed after the try clause,
13389 so if it does not fall through, then the try-finally will not
13390 fall through. Otherwise, if the try clause does not fall
13391 through, then when the finally clause falls through it will
13392 resume execution wherever the try clause was going. So the
13393 whole try-finally will only fall through if both the try
13394 clause and the finally clause fall through. */
13395 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
13396 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
13397
13398 case EH_ELSE_EXPR:
13399 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13400
13401 case MODIFY_EXPR:
13402 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
13403 stmt = TREE_OPERAND (stmt, 1);
13404 else
13405 return true;
13406 /* FALLTHRU */
13407
13408 case CALL_EXPR:
13409 /* Functions that do not return do not fall through. */
13410 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
13411
13412 case CLEANUP_POINT_EXPR:
13413 return block_may_fallthru (TREE_OPERAND (stmt, 0));
13414
13415 case TARGET_EXPR:
13416 return block_may_fallthru (TREE_OPERAND (stmt, 1));
13417
13418 case ERROR_MARK:
13419 return true;
13420
13421 default:
13422 return lang_hooks.block_may_fallthru (stmt);
13423 }
13424 }
13425
13426 /* True if we are using EH to handle cleanups. */
13427 static bool using_eh_for_cleanups_flag = false;
13428
13429 /* This routine is called from front ends to indicate eh should be used for
13430 cleanups. */
13431 void
13432 using_eh_for_cleanups (void)
13433 {
13434 using_eh_for_cleanups_flag = true;
13435 }
13436
13437 /* Query whether EH is used for cleanups. */
13438 bool
13439 using_eh_for_cleanups_p (void)
13440 {
13441 return using_eh_for_cleanups_flag;
13442 }
13443
13444 /* Wrapper for tree_code_name to ensure that tree code is valid */
13445 const char *
13446 get_tree_code_name (enum tree_code code)
13447 {
13448 const char *invalid = "<invalid tree code>";
13449
13450 /* The tree_code enum promotes to signed, but we could be getting
13451 invalid values, so force an unsigned comparison. */
13452 if (unsigned (code) >= MAX_TREE_CODES)
13453 {
13454 if (code == 0xa5a5)
13455 return "ggc_freed";
13456 return invalid;
13457 }
13458
13459 return tree_code_name[code];
13460 }
13461
13462 /* Drops the TREE_OVERFLOW flag from T. */
13463
13464 tree
13465 drop_tree_overflow (tree t)
13466 {
13467 gcc_checking_assert (TREE_OVERFLOW (t));
13468
13469 /* For tree codes with a sharing machinery re-build the result. */
13470 if (poly_int_tree_p (t))
13471 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
13472
13473 /* For VECTOR_CST, remove the overflow bits from the encoded elements
13474 and canonicalize the result. */
13475 if (TREE_CODE (t) == VECTOR_CST)
13476 {
13477 tree_vector_builder builder;
13478 builder.new_unary_operation (TREE_TYPE (t), t, true);
13479 unsigned int count = builder.encoded_nelts ();
13480 for (unsigned int i = 0; i < count; ++i)
13481 {
13482 tree elt = VECTOR_CST_ELT (t, i);
13483 if (TREE_OVERFLOW (elt))
13484 elt = drop_tree_overflow (elt);
13485 builder.quick_push (elt);
13486 }
13487 return builder.build ();
13488 }
13489
13490 /* Otherwise, as all tcc_constants are possibly shared, copy the node
13491 and drop the flag. */
13492 t = copy_node (t);
13493 TREE_OVERFLOW (t) = 0;
13494
13495 /* For constants that contain nested constants, drop the flag
13496 from those as well. */
13497 if (TREE_CODE (t) == COMPLEX_CST)
13498 {
13499 if (TREE_OVERFLOW (TREE_REALPART (t)))
13500 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
13501 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
13502 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
13503 }
13504
13505 return t;
13506 }
13507
13508 /* Given a memory reference expression T, return its base address.
13509 The base address of a memory reference expression is the main
13510 object being referenced. For instance, the base address for
13511 'array[i].fld[j]' is 'array'. You can think of this as stripping
13512 away the offset part from a memory address.
13513
13514 This function calls handled_component_p to strip away all the inner
13515 parts of the memory reference until it reaches the base object. */
13516
13517 tree
13518 get_base_address (tree t)
13519 {
13520 while (handled_component_p (t))
13521 t = TREE_OPERAND (t, 0);
13522
13523 if ((TREE_CODE (t) == MEM_REF
13524 || TREE_CODE (t) == TARGET_MEM_REF)
13525 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
13526 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
13527
13528 /* ??? Either the alias oracle or all callers need to properly deal
13529 with WITH_SIZE_EXPRs before we can look through those. */
13530 if (TREE_CODE (t) == WITH_SIZE_EXPR)
13531 return NULL_TREE;
13532
13533 return t;
13534 }
13535
13536 /* Return a tree of sizetype representing the size, in bytes, of the element
13537 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13538
13539 tree
13540 array_ref_element_size (tree exp)
13541 {
13542 tree aligned_size = TREE_OPERAND (exp, 3);
13543 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
13544 location_t loc = EXPR_LOCATION (exp);
13545
13546 /* If a size was specified in the ARRAY_REF, it's the size measured
13547 in alignment units of the element type. So multiply by that value. */
13548 if (aligned_size)
13549 {
13550 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13551 sizetype from another type of the same width and signedness. */
13552 if (TREE_TYPE (aligned_size) != sizetype)
13553 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
13554 return size_binop_loc (loc, MULT_EXPR, aligned_size,
13555 size_int (TYPE_ALIGN_UNIT (elmt_type)));
13556 }
13557
13558 /* Otherwise, take the size from that of the element type. Substitute
13559 any PLACEHOLDER_EXPR that we have. */
13560 else
13561 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
13562 }
13563
13564 /* Return a tree representing the lower bound of the array mentioned in
13565 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13566
13567 tree
13568 array_ref_low_bound (tree exp)
13569 {
13570 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13571
13572 /* If a lower bound is specified in EXP, use it. */
13573 if (TREE_OPERAND (exp, 2))
13574 return TREE_OPERAND (exp, 2);
13575
13576 /* Otherwise, if there is a domain type and it has a lower bound, use it,
13577 substituting for a PLACEHOLDER_EXPR as needed. */
13578 if (domain_type && TYPE_MIN_VALUE (domain_type))
13579 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
13580
13581 /* Otherwise, return a zero of the appropriate type. */
13582 tree idxtype = TREE_TYPE (TREE_OPERAND (exp, 1));
13583 return (idxtype == error_mark_node
13584 ? integer_zero_node : build_int_cst (idxtype, 0));
13585 }
13586
13587 /* Return a tree representing the upper bound of the array mentioned in
13588 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
13589
13590 tree
13591 array_ref_up_bound (tree exp)
13592 {
13593 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
13594
13595 /* If there is a domain type and it has an upper bound, use it, substituting
13596 for a PLACEHOLDER_EXPR as needed. */
13597 if (domain_type && TYPE_MAX_VALUE (domain_type))
13598 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
13599
13600 /* Otherwise fail. */
13601 return NULL_TREE;
13602 }
13603
13604 /* Returns true if REF is an array reference, component reference,
13605 or memory reference to an array at the end of a structure.
13606 If this is the case, the array may be allocated larger
13607 than its upper bound implies. */
13608
13609 bool
13610 array_at_struct_end_p (tree ref)
13611 {
13612 tree atype;
13613
13614 if (TREE_CODE (ref) == ARRAY_REF
13615 || TREE_CODE (ref) == ARRAY_RANGE_REF)
13616 {
13617 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
13618 ref = TREE_OPERAND (ref, 0);
13619 }
13620 else if (TREE_CODE (ref) == COMPONENT_REF
13621 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
13622 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
13623 else if (TREE_CODE (ref) == MEM_REF)
13624 {
13625 tree arg = TREE_OPERAND (ref, 0);
13626 if (TREE_CODE (arg) == ADDR_EXPR)
13627 arg = TREE_OPERAND (arg, 0);
13628 tree argtype = TREE_TYPE (arg);
13629 if (TREE_CODE (argtype) == RECORD_TYPE)
13630 {
13631 if (tree fld = last_field (argtype))
13632 {
13633 atype = TREE_TYPE (fld);
13634 if (TREE_CODE (atype) != ARRAY_TYPE)
13635 return false;
13636 if (VAR_P (arg) && DECL_SIZE (fld))
13637 return false;
13638 }
13639 else
13640 return false;
13641 }
13642 else
13643 return false;
13644 }
13645 else
13646 return false;
13647
13648 if (TREE_CODE (ref) == STRING_CST)
13649 return false;
13650
13651 tree ref_to_array = ref;
13652 while (handled_component_p (ref))
13653 {
13654 /* If the reference chain contains a component reference to a
13655 non-union type and there follows another field the reference
13656 is not at the end of a structure. */
13657 if (TREE_CODE (ref) == COMPONENT_REF)
13658 {
13659 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
13660 {
13661 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
13662 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
13663 nextf = DECL_CHAIN (nextf);
13664 if (nextf)
13665 return false;
13666 }
13667 }
13668 /* If we have a multi-dimensional array we do not consider
13669 a non-innermost dimension as flex array if the whole
13670 multi-dimensional array is at struct end.
13671 Same for an array of aggregates with a trailing array
13672 member. */
13673 else if (TREE_CODE (ref) == ARRAY_REF)
13674 return false;
13675 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
13676 ;
13677 /* If we view an underlying object as sth else then what we
13678 gathered up to now is what we have to rely on. */
13679 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
13680 break;
13681 else
13682 gcc_unreachable ();
13683
13684 ref = TREE_OPERAND (ref, 0);
13685 }
13686
13687 /* The array now is at struct end. Treat flexible arrays as
13688 always subject to extend, even into just padding constrained by
13689 an underlying decl. */
13690 if (! TYPE_SIZE (atype)
13691 || ! TYPE_DOMAIN (atype)
13692 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13693 return true;
13694
13695 if (TREE_CODE (ref) == MEM_REF
13696 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13697 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13698
13699 /* If the reference is based on a declared entity, the size of the array
13700 is constrained by its given domain. (Do not trust commons PR/69368). */
13701 if (DECL_P (ref)
13702 && !(flag_unconstrained_commons
13703 && VAR_P (ref) && DECL_COMMON (ref))
13704 && DECL_SIZE_UNIT (ref)
13705 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13706 {
13707 /* Check whether the array domain covers all of the available
13708 padding. */
13709 poly_int64 offset;
13710 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13711 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13712 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13713 return true;
13714 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13715 return true;
13716
13717 /* If at least one extra element fits it is a flexarray. */
13718 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13719 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13720 + 2)
13721 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13722 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13723 return true;
13724
13725 return false;
13726 }
13727
13728 return true;
13729 }
13730
13731 /* Return a tree representing the offset, in bytes, of the field referenced
13732 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13733
13734 tree
13735 component_ref_field_offset (tree exp)
13736 {
13737 tree aligned_offset = TREE_OPERAND (exp, 2);
13738 tree field = TREE_OPERAND (exp, 1);
13739 location_t loc = EXPR_LOCATION (exp);
13740
13741 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13742 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13743 value. */
13744 if (aligned_offset)
13745 {
13746 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13747 sizetype from another type of the same width and signedness. */
13748 if (TREE_TYPE (aligned_offset) != sizetype)
13749 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13750 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13751 size_int (DECL_OFFSET_ALIGN (field)
13752 / BITS_PER_UNIT));
13753 }
13754
13755 /* Otherwise, take the offset from that of the field. Substitute
13756 any PLACEHOLDER_EXPR that we have. */
13757 else
13758 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13759 }
13760
13761 /* Given the initializer INIT, return the initializer for the field
13762 DECL if it exists, otherwise null. Used to obtain the initializer
13763 for a flexible array member and determine its size. */
13764
13765 static tree
13766 get_initializer_for (tree init, tree decl)
13767 {
13768 STRIP_NOPS (init);
13769
13770 tree fld, fld_init;
13771 unsigned HOST_WIDE_INT i;
13772 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), i, fld, fld_init)
13773 {
13774 if (decl == fld)
13775 return fld_init;
13776
13777 if (TREE_CODE (fld) == CONSTRUCTOR)
13778 {
13779 fld_init = get_initializer_for (fld_init, decl);
13780 if (fld_init)
13781 return fld_init;
13782 }
13783 }
13784
13785 return NULL_TREE;
13786 }
13787
13788 /* Determines the size of the member referenced by the COMPONENT_REF
13789 REF, using its initializer expression if necessary in order to
13790 determine the size of an initialized flexible array member.
13791 If non-null, set *ARK when REF refers to an interior zero-length
13792 array or a trailing one-element array.
13793 Returns the size as sizetype (which might be zero for an object
13794 with an uninitialized flexible array member) or null if the size
13795 cannot be determined. */
13796
13797 tree
13798 component_ref_size (tree ref, special_array_member *sam /* = NULL */)
13799 {
13800 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
13801
13802 special_array_member sambuf;
13803 if (!sam)
13804 sam = &sambuf;
13805 *sam = special_array_member::none;
13806
13807 /* The object/argument referenced by the COMPONENT_REF and its type. */
13808 tree arg = TREE_OPERAND (ref, 0);
13809 tree argtype = TREE_TYPE (arg);
13810 /* The referenced member. */
13811 tree member = TREE_OPERAND (ref, 1);
13812
13813 tree memsize = DECL_SIZE_UNIT (member);
13814 if (memsize)
13815 {
13816 tree memtype = TREE_TYPE (member);
13817 if (TREE_CODE (memtype) != ARRAY_TYPE)
13818 /* DECL_SIZE may be less than TYPE_SIZE in C++ when referring
13819 to the type of a class with a virtual base which doesn't
13820 reflect the size of the virtual's members (see pr97595).
13821 If that's the case fail for now and implement something
13822 more robust in the future. */
13823 return (tree_int_cst_equal (memsize, TYPE_SIZE_UNIT (memtype))
13824 ? memsize : NULL_TREE);
13825
13826 bool trailing = array_at_struct_end_p (ref);
13827 bool zero_length = integer_zerop (memsize);
13828 if (!trailing && !zero_length)
13829 /* MEMBER is either an interior array or is an array with
13830 more than one element. */
13831 return memsize;
13832
13833 if (zero_length)
13834 {
13835 if (trailing)
13836 *sam = special_array_member::trail_0;
13837 else
13838 {
13839 *sam = special_array_member::int_0;
13840 memsize = NULL_TREE;
13841 }
13842 }
13843
13844 if (!zero_length)
13845 if (tree dom = TYPE_DOMAIN (memtype))
13846 if (tree min = TYPE_MIN_VALUE (dom))
13847 if (tree max = TYPE_MAX_VALUE (dom))
13848 if (TREE_CODE (min) == INTEGER_CST
13849 && TREE_CODE (max) == INTEGER_CST)
13850 {
13851 offset_int minidx = wi::to_offset (min);
13852 offset_int maxidx = wi::to_offset (max);
13853 offset_int neltsm1 = maxidx - minidx;
13854 if (neltsm1 > 0)
13855 /* MEMBER is an array with more than one element. */
13856 return memsize;
13857
13858 if (neltsm1 == 0)
13859 *sam = special_array_member::trail_1;
13860 }
13861
13862 /* For a reference to a zero- or one-element array member of a union
13863 use the size of the union instead of the size of the member. */
13864 if (TREE_CODE (argtype) == UNION_TYPE)
13865 memsize = TYPE_SIZE_UNIT (argtype);
13866 }
13867
13868 /* MEMBER is either a bona fide flexible array member, or a zero-length
13869 array member, or an array of length one treated as such. */
13870
13871 /* If the reference is to a declared object and the member a true
13872 flexible array, try to determine its size from its initializer. */
13873 poly_int64 baseoff = 0;
13874 tree base = get_addr_base_and_unit_offset (ref, &baseoff);
13875 if (!base || !VAR_P (base))
13876 {
13877 if (*sam != special_array_member::int_0)
13878 return NULL_TREE;
13879
13880 if (TREE_CODE (arg) != COMPONENT_REF)
13881 return NULL_TREE;
13882
13883 base = arg;
13884 while (TREE_CODE (base) == COMPONENT_REF)
13885 base = TREE_OPERAND (base, 0);
13886 baseoff = tree_to_poly_int64 (byte_position (TREE_OPERAND (ref, 1)));
13887 }
13888
13889 /* BASE is the declared object of which MEMBER is either a member
13890 or that is cast to ARGTYPE (e.g., a char buffer used to store
13891 an ARGTYPE object). */
13892 tree basetype = TREE_TYPE (base);
13893
13894 /* Determine the base type of the referenced object. If it's
13895 the same as ARGTYPE and MEMBER has a known size, return it. */
13896 tree bt = basetype;
13897 if (*sam != special_array_member::int_0)
13898 while (TREE_CODE (bt) == ARRAY_TYPE)
13899 bt = TREE_TYPE (bt);
13900 bool typematch = useless_type_conversion_p (argtype, bt);
13901 if (memsize && typematch)
13902 return memsize;
13903
13904 memsize = NULL_TREE;
13905
13906 if (typematch)
13907 /* MEMBER is a true flexible array member. Compute its size from
13908 the initializer of the BASE object if it has one. */
13909 if (tree init = DECL_P (base) ? DECL_INITIAL (base) : NULL_TREE)
13910 if (init != error_mark_node)
13911 {
13912 init = get_initializer_for (init, member);
13913 if (init)
13914 {
13915 memsize = TYPE_SIZE_UNIT (TREE_TYPE (init));
13916 if (tree refsize = TYPE_SIZE_UNIT (argtype))
13917 {
13918 /* Use the larger of the initializer size and the tail
13919 padding in the enclosing struct. */
13920 poly_int64 rsz = tree_to_poly_int64 (refsize);
13921 rsz -= baseoff;
13922 if (known_lt (tree_to_poly_int64 (memsize), rsz))
13923 memsize = wide_int_to_tree (TREE_TYPE (memsize), rsz);
13924 }
13925
13926 baseoff = 0;
13927 }
13928 }
13929
13930 if (!memsize)
13931 {
13932 if (typematch)
13933 {
13934 if (DECL_P (base)
13935 && DECL_EXTERNAL (base)
13936 && bt == basetype
13937 && *sam != special_array_member::int_0)
13938 /* The size of a flexible array member of an extern struct
13939 with no initializer cannot be determined (it's defined
13940 in another translation unit and can have an initializer
13941 with an arbitrary number of elements). */
13942 return NULL_TREE;
13943
13944 /* Use the size of the base struct or, for interior zero-length
13945 arrays, the size of the enclosing type. */
13946 memsize = TYPE_SIZE_UNIT (bt);
13947 }
13948 else if (DECL_P (base))
13949 /* Use the size of the BASE object (possibly an array of some
13950 other type such as char used to store the struct). */
13951 memsize = DECL_SIZE_UNIT (base);
13952 else
13953 return NULL_TREE;
13954 }
13955
13956 /* If the flexible array member has a known size use the greater
13957 of it and the tail padding in the enclosing struct.
13958 Otherwise, when the size of the flexible array member is unknown
13959 and the referenced object is not a struct, use the size of its
13960 type when known. This detects sizes of array buffers when cast
13961 to struct types with flexible array members. */
13962 if (memsize)
13963 {
13964 poly_int64 memsz64 = memsize ? tree_to_poly_int64 (memsize) : 0;
13965 if (known_lt (baseoff, memsz64))
13966 {
13967 memsz64 -= baseoff;
13968 return wide_int_to_tree (TREE_TYPE (memsize), memsz64);
13969 }
13970 return size_zero_node;
13971 }
13972
13973 /* Return "don't know" for an external non-array object since its
13974 flexible array member can be initialized to have any number of
13975 elements. Otherwise, return zero because the flexible array
13976 member has no elements. */
13977 return (DECL_P (base)
13978 && DECL_EXTERNAL (base)
13979 && (!typematch
13980 || TREE_CODE (basetype) != ARRAY_TYPE)
13981 ? NULL_TREE : size_zero_node);
13982 }
13983
13984 /* Return the machine mode of T. For vectors, returns the mode of the
13985 inner type. The main use case is to feed the result to HONOR_NANS,
13986 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13987
13988 machine_mode
13989 element_mode (const_tree t)
13990 {
13991 if (!TYPE_P (t))
13992 t = TREE_TYPE (t);
13993 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13994 t = TREE_TYPE (t);
13995 return TYPE_MODE (t);
13996 }
13997
13998 /* Vector types need to re-check the target flags each time we report
13999 the machine mode. We need to do this because attribute target can
14000 change the result of vector_mode_supported_p and have_regs_of_mode
14001 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
14002 change on a per-function basis. */
14003 /* ??? Possibly a better solution is to run through all the types
14004 referenced by a function and re-compute the TYPE_MODE once, rather
14005 than make the TYPE_MODE macro call a function. */
14006
14007 machine_mode
14008 vector_type_mode (const_tree t)
14009 {
14010 machine_mode mode;
14011
14012 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
14013
14014 mode = t->type_common.mode;
14015 if (VECTOR_MODE_P (mode)
14016 && (!targetm.vector_mode_supported_p (mode)
14017 || !have_regs_of_mode[mode]))
14018 {
14019 scalar_int_mode innermode;
14020
14021 /* For integers, try mapping it to a same-sized scalar mode. */
14022 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
14023 {
14024 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
14025 * GET_MODE_BITSIZE (innermode));
14026 scalar_int_mode mode;
14027 if (int_mode_for_size (size, 0).exists (&mode)
14028 && have_regs_of_mode[mode])
14029 return mode;
14030 }
14031
14032 return BLKmode;
14033 }
14034
14035 return mode;
14036 }
14037
14038 /* Return the size in bits of each element of vector type TYPE. */
14039
14040 unsigned int
14041 vector_element_bits (const_tree type)
14042 {
14043 gcc_checking_assert (VECTOR_TYPE_P (type));
14044 if (VECTOR_BOOLEAN_TYPE_P (type))
14045 return TYPE_PRECISION (TREE_TYPE (type));
14046 return tree_to_uhwi (TYPE_SIZE (TREE_TYPE (type)));
14047 }
14048
14049 /* Calculate the size in bits of each element of vector type TYPE
14050 and return the result as a tree of type bitsizetype. */
14051
14052 tree
14053 vector_element_bits_tree (const_tree type)
14054 {
14055 gcc_checking_assert (VECTOR_TYPE_P (type));
14056 if (VECTOR_BOOLEAN_TYPE_P (type))
14057 return bitsize_int (vector_element_bits (type));
14058 return TYPE_SIZE (TREE_TYPE (type));
14059 }
14060
14061 /* Verify that basic properties of T match TV and thus T can be a variant of
14062 TV. TV should be the more specified variant (i.e. the main variant). */
14063
14064 static bool
14065 verify_type_variant (const_tree t, tree tv)
14066 {
14067 /* Type variant can differ by:
14068
14069 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
14070 ENCODE_QUAL_ADDR_SPACE.
14071 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
14072 in this case some values may not be set in the variant types
14073 (see TYPE_COMPLETE_P checks).
14074 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
14075 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
14076 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
14077 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
14078 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
14079 this is necessary to make it possible to merge types form different TUs
14080 - arrays, pointers and references may have TREE_TYPE that is a variant
14081 of TREE_TYPE of their main variants.
14082 - aggregates may have new TYPE_FIELDS list that list variants of
14083 the main variant TYPE_FIELDS.
14084 - vector types may differ by TYPE_VECTOR_OPAQUE
14085 */
14086
14087 /* Convenience macro for matching individual fields. */
14088 #define verify_variant_match(flag) \
14089 do { \
14090 if (flag (tv) != flag (t)) \
14091 { \
14092 error ("type variant differs by %s", #flag); \
14093 debug_tree (tv); \
14094 return false; \
14095 } \
14096 } while (false)
14097
14098 /* tree_base checks. */
14099
14100 verify_variant_match (TREE_CODE);
14101 /* FIXME: Ada builds non-artificial variants of artificial types. */
14102 if (TYPE_ARTIFICIAL (tv) && 0)
14103 verify_variant_match (TYPE_ARTIFICIAL);
14104 if (POINTER_TYPE_P (tv))
14105 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
14106 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
14107 verify_variant_match (TYPE_UNSIGNED);
14108 verify_variant_match (TYPE_PACKED);
14109 if (TREE_CODE (t) == REFERENCE_TYPE)
14110 verify_variant_match (TYPE_REF_IS_RVALUE);
14111 if (AGGREGATE_TYPE_P (t))
14112 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
14113 else
14114 verify_variant_match (TYPE_SATURATING);
14115 /* FIXME: This check trigger during libstdc++ build. */
14116 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
14117 verify_variant_match (TYPE_FINAL_P);
14118
14119 /* tree_type_common checks. */
14120
14121 if (COMPLETE_TYPE_P (t))
14122 {
14123 verify_variant_match (TYPE_MODE);
14124 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
14125 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
14126 verify_variant_match (TYPE_SIZE);
14127 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
14128 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
14129 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
14130 {
14131 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
14132 TYPE_SIZE_UNIT (tv), 0));
14133 error ("type variant has different %<TYPE_SIZE_UNIT%>");
14134 debug_tree (tv);
14135 error ("type variant%'s %<TYPE_SIZE_UNIT%>");
14136 debug_tree (TYPE_SIZE_UNIT (tv));
14137 error ("type%'s %<TYPE_SIZE_UNIT%>");
14138 debug_tree (TYPE_SIZE_UNIT (t));
14139 return false;
14140 }
14141 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
14142 }
14143 verify_variant_match (TYPE_PRECISION);
14144 if (RECORD_OR_UNION_TYPE_P (t))
14145 verify_variant_match (TYPE_TRANSPARENT_AGGR);
14146 else if (TREE_CODE (t) == ARRAY_TYPE)
14147 verify_variant_match (TYPE_NONALIASED_COMPONENT);
14148 /* During LTO we merge variant lists from diferent translation units
14149 that may differ BY TYPE_CONTEXT that in turn may point
14150 to TRANSLATION_UNIT_DECL.
14151 Ada also builds variants of types with different TYPE_CONTEXT. */
14152 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
14153 verify_variant_match (TYPE_CONTEXT);
14154 if (TREE_CODE (t) == ARRAY_TYPE || TREE_CODE (t) == INTEGER_TYPE)
14155 verify_variant_match (TYPE_STRING_FLAG);
14156 if (TREE_CODE (t) == RECORD_TYPE || TREE_CODE (t) == UNION_TYPE)
14157 verify_variant_match (TYPE_CXX_ODR_P);
14158 if (TYPE_ALIAS_SET_KNOWN_P (t))
14159 {
14160 error ("type variant with %<TYPE_ALIAS_SET_KNOWN_P%>");
14161 debug_tree (tv);
14162 return false;
14163 }
14164
14165 /* tree_type_non_common checks. */
14166
14167 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14168 and dangle the pointer from time to time. */
14169 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
14170 && (in_lto_p || !TYPE_VFIELD (tv)
14171 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
14172 {
14173 error ("type variant has different %<TYPE_VFIELD%>");
14174 debug_tree (tv);
14175 return false;
14176 }
14177 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
14178 || TREE_CODE (t) == INTEGER_TYPE
14179 || TREE_CODE (t) == BOOLEAN_TYPE
14180 || TREE_CODE (t) == REAL_TYPE
14181 || TREE_CODE (t) == FIXED_POINT_TYPE)
14182 {
14183 verify_variant_match (TYPE_MAX_VALUE);
14184 verify_variant_match (TYPE_MIN_VALUE);
14185 }
14186 if (TREE_CODE (t) == METHOD_TYPE)
14187 verify_variant_match (TYPE_METHOD_BASETYPE);
14188 if (TREE_CODE (t) == OFFSET_TYPE)
14189 verify_variant_match (TYPE_OFFSET_BASETYPE);
14190 if (TREE_CODE (t) == ARRAY_TYPE)
14191 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
14192 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
14193 or even type's main variant. This is needed to make bootstrap pass
14194 and the bug seems new in GCC 5.
14195 C++ FE should be updated to make this consistent and we should check
14196 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
14197 is a match with main variant.
14198
14199 Also disable the check for Java for now because of parser hack that builds
14200 first an dummy BINFO and then sometimes replace it by real BINFO in some
14201 of the copies. */
14202 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
14203 && TYPE_BINFO (t) != TYPE_BINFO (tv)
14204 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
14205 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
14206 at LTO time only. */
14207 && (in_lto_p && odr_type_p (t)))
14208 {
14209 error ("type variant has different %<TYPE_BINFO%>");
14210 debug_tree (tv);
14211 error ("type variant%'s %<TYPE_BINFO%>");
14212 debug_tree (TYPE_BINFO (tv));
14213 error ("type%'s %<TYPE_BINFO%>");
14214 debug_tree (TYPE_BINFO (t));
14215 return false;
14216 }
14217
14218 /* Check various uses of TYPE_VALUES_RAW. */
14219 if (TREE_CODE (t) == ENUMERAL_TYPE
14220 && TYPE_VALUES (t))
14221 verify_variant_match (TYPE_VALUES);
14222 else if (TREE_CODE (t) == ARRAY_TYPE)
14223 verify_variant_match (TYPE_DOMAIN);
14224 /* Permit incomplete variants of complete type. While FEs may complete
14225 all variants, this does not happen for C++ templates in all cases. */
14226 else if (RECORD_OR_UNION_TYPE_P (t)
14227 && COMPLETE_TYPE_P (t)
14228 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
14229 {
14230 tree f1, f2;
14231
14232 /* Fortran builds qualified variants as new records with items of
14233 qualified type. Verify that they looks same. */
14234 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
14235 f1 && f2;
14236 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14237 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
14238 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
14239 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
14240 /* FIXME: gfc_nonrestricted_type builds all types as variants
14241 with exception of pointer types. It deeply copies the type
14242 which means that we may end up with a variant type
14243 referring non-variant pointer. We may change it to
14244 produce types as variants, too, like
14245 objc_get_protocol_qualified_type does. */
14246 && !POINTER_TYPE_P (TREE_TYPE (f1)))
14247 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
14248 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
14249 break;
14250 if (f1 || f2)
14251 {
14252 error ("type variant has different %<TYPE_FIELDS%>");
14253 debug_tree (tv);
14254 error ("first mismatch is field");
14255 debug_tree (f1);
14256 error ("and field");
14257 debug_tree (f2);
14258 return false;
14259 }
14260 }
14261 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
14262 verify_variant_match (TYPE_ARG_TYPES);
14263 /* For C++ the qualified variant of array type is really an array type
14264 of qualified TREE_TYPE.
14265 objc builds variants of pointer where pointer to type is a variant, too
14266 in objc_get_protocol_qualified_type. */
14267 if (TREE_TYPE (t) != TREE_TYPE (tv)
14268 && ((TREE_CODE (t) != ARRAY_TYPE
14269 && !POINTER_TYPE_P (t))
14270 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
14271 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
14272 {
14273 error ("type variant has different %<TREE_TYPE%>");
14274 debug_tree (tv);
14275 error ("type variant%'s %<TREE_TYPE%>");
14276 debug_tree (TREE_TYPE (tv));
14277 error ("type%'s %<TREE_TYPE%>");
14278 debug_tree (TREE_TYPE (t));
14279 return false;
14280 }
14281 if (type_with_alias_set_p (t)
14282 && !gimple_canonical_types_compatible_p (t, tv, false))
14283 {
14284 error ("type is not compatible with its variant");
14285 debug_tree (tv);
14286 error ("type variant%'s %<TREE_TYPE%>");
14287 debug_tree (TREE_TYPE (tv));
14288 error ("type%'s %<TREE_TYPE%>");
14289 debug_tree (TREE_TYPE (t));
14290 return false;
14291 }
14292 return true;
14293 #undef verify_variant_match
14294 }
14295
14296
14297 /* The TYPE_CANONICAL merging machinery. It should closely resemble
14298 the middle-end types_compatible_p function. It needs to avoid
14299 claiming types are different for types that should be treated
14300 the same with respect to TBAA. Canonical types are also used
14301 for IL consistency checks via the useless_type_conversion_p
14302 predicate which does not handle all type kinds itself but falls
14303 back to pointer-comparison of TYPE_CANONICAL for aggregates
14304 for example. */
14305
14306 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
14307 type calculation because we need to allow inter-operability between signed
14308 and unsigned variants. */
14309
14310 bool
14311 type_with_interoperable_signedness (const_tree type)
14312 {
14313 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
14314 signed char and unsigned char. Similarly fortran FE builds
14315 C_SIZE_T as signed type, while C defines it unsigned. */
14316
14317 return tree_code_for_canonical_type_merging (TREE_CODE (type))
14318 == INTEGER_TYPE
14319 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
14320 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
14321 }
14322
14323 /* Return true iff T1 and T2 are structurally identical for what
14324 TBAA is concerned.
14325 This function is used both by lto.c canonical type merging and by the
14326 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
14327 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
14328 only for LTO because only in these cases TYPE_CANONICAL equivalence
14329 correspond to one defined by gimple_canonical_types_compatible_p. */
14330
14331 bool
14332 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
14333 bool trust_type_canonical)
14334 {
14335 /* Type variants should be same as the main variant. When not doing sanity
14336 checking to verify this fact, go to main variants and save some work. */
14337 if (trust_type_canonical)
14338 {
14339 t1 = TYPE_MAIN_VARIANT (t1);
14340 t2 = TYPE_MAIN_VARIANT (t2);
14341 }
14342
14343 /* Check first for the obvious case of pointer identity. */
14344 if (t1 == t2)
14345 return true;
14346
14347 /* Check that we have two types to compare. */
14348 if (t1 == NULL_TREE || t2 == NULL_TREE)
14349 return false;
14350
14351 /* We consider complete types always compatible with incomplete type.
14352 This does not make sense for canonical type calculation and thus we
14353 need to ensure that we are never called on it.
14354
14355 FIXME: For more correctness the function probably should have three modes
14356 1) mode assuming that types are complete mathcing their structure
14357 2) mode allowing incomplete types but producing equivalence classes
14358 and thus ignoring all info from complete types
14359 3) mode allowing incomplete types to match complete but checking
14360 compatibility between complete types.
14361
14362 1 and 2 can be used for canonical type calculation. 3 is the real
14363 definition of type compatibility that can be used i.e. for warnings during
14364 declaration merging. */
14365
14366 gcc_assert (!trust_type_canonical
14367 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
14368
14369 /* If the types have been previously registered and found equal
14370 they still are. */
14371
14372 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
14373 && trust_type_canonical)
14374 {
14375 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
14376 they are always NULL, but they are set to non-NULL for types
14377 constructed by build_pointer_type and variants. In this case the
14378 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
14379 all pointers are considered equal. Be sure to not return false
14380 negatives. */
14381 gcc_checking_assert (canonical_type_used_p (t1)
14382 && canonical_type_used_p (t2));
14383 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
14384 }
14385
14386 /* For types where we do ODR based TBAA the canonical type is always
14387 set correctly, so we know that types are different if their
14388 canonical types does not match. */
14389 if (trust_type_canonical
14390 && (odr_type_p (t1) && odr_based_tbaa_p (t1))
14391 != (odr_type_p (t2) && odr_based_tbaa_p (t2)))
14392 return false;
14393
14394 /* Can't be the same type if the types don't have the same code. */
14395 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
14396 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
14397 return false;
14398
14399 /* Qualifiers do not matter for canonical type comparison purposes. */
14400
14401 /* Void types and nullptr types are always the same. */
14402 if (TREE_CODE (t1) == VOID_TYPE
14403 || TREE_CODE (t1) == NULLPTR_TYPE)
14404 return true;
14405
14406 /* Can't be the same type if they have different mode. */
14407 if (TYPE_MODE (t1) != TYPE_MODE (t2))
14408 return false;
14409
14410 /* Non-aggregate types can be handled cheaply. */
14411 if (INTEGRAL_TYPE_P (t1)
14412 || SCALAR_FLOAT_TYPE_P (t1)
14413 || FIXED_POINT_TYPE_P (t1)
14414 || TREE_CODE (t1) == VECTOR_TYPE
14415 || TREE_CODE (t1) == COMPLEX_TYPE
14416 || TREE_CODE (t1) == OFFSET_TYPE
14417 || POINTER_TYPE_P (t1))
14418 {
14419 /* Can't be the same type if they have different recision. */
14420 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
14421 return false;
14422
14423 /* In some cases the signed and unsigned types are required to be
14424 inter-operable. */
14425 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
14426 && !type_with_interoperable_signedness (t1))
14427 return false;
14428
14429 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
14430 interoperable with "signed char". Unless all frontends are revisited
14431 to agree on these types, we must ignore the flag completely. */
14432
14433 /* Fortran standard define C_PTR type that is compatible with every
14434 C pointer. For this reason we need to glob all pointers into one.
14435 Still pointers in different address spaces are not compatible. */
14436 if (POINTER_TYPE_P (t1))
14437 {
14438 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
14439 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
14440 return false;
14441 }
14442
14443 /* Tail-recurse to components. */
14444 if (TREE_CODE (t1) == VECTOR_TYPE
14445 || TREE_CODE (t1) == COMPLEX_TYPE)
14446 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
14447 TREE_TYPE (t2),
14448 trust_type_canonical);
14449
14450 return true;
14451 }
14452
14453 /* Do type-specific comparisons. */
14454 switch (TREE_CODE (t1))
14455 {
14456 case ARRAY_TYPE:
14457 /* Array types are the same if the element types are the same and
14458 the number of elements are the same. */
14459 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14460 trust_type_canonical)
14461 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
14462 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
14463 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
14464 return false;
14465 else
14466 {
14467 tree i1 = TYPE_DOMAIN (t1);
14468 tree i2 = TYPE_DOMAIN (t2);
14469
14470 /* For an incomplete external array, the type domain can be
14471 NULL_TREE. Check this condition also. */
14472 if (i1 == NULL_TREE && i2 == NULL_TREE)
14473 return true;
14474 else if (i1 == NULL_TREE || i2 == NULL_TREE)
14475 return false;
14476 else
14477 {
14478 tree min1 = TYPE_MIN_VALUE (i1);
14479 tree min2 = TYPE_MIN_VALUE (i2);
14480 tree max1 = TYPE_MAX_VALUE (i1);
14481 tree max2 = TYPE_MAX_VALUE (i2);
14482
14483 /* The minimum/maximum values have to be the same. */
14484 if ((min1 == min2
14485 || (min1 && min2
14486 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
14487 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
14488 || operand_equal_p (min1, min2, 0))))
14489 && (max1 == max2
14490 || (max1 && max2
14491 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
14492 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
14493 || operand_equal_p (max1, max2, 0)))))
14494 return true;
14495 else
14496 return false;
14497 }
14498 }
14499
14500 case METHOD_TYPE:
14501 case FUNCTION_TYPE:
14502 /* Function types are the same if the return type and arguments types
14503 are the same. */
14504 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
14505 trust_type_canonical))
14506 return false;
14507
14508 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
14509 return true;
14510 else
14511 {
14512 tree parms1, parms2;
14513
14514 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
14515 parms1 && parms2;
14516 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
14517 {
14518 if (!gimple_canonical_types_compatible_p
14519 (TREE_VALUE (parms1), TREE_VALUE (parms2),
14520 trust_type_canonical))
14521 return false;
14522 }
14523
14524 if (parms1 || parms2)
14525 return false;
14526
14527 return true;
14528 }
14529
14530 case RECORD_TYPE:
14531 case UNION_TYPE:
14532 case QUAL_UNION_TYPE:
14533 {
14534 tree f1, f2;
14535
14536 /* Don't try to compare variants of an incomplete type, before
14537 TYPE_FIELDS has been copied around. */
14538 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
14539 return true;
14540
14541
14542 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
14543 return false;
14544
14545 /* For aggregate types, all the fields must be the same. */
14546 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
14547 f1 || f2;
14548 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
14549 {
14550 /* Skip non-fields and zero-sized fields. */
14551 while (f1 && (TREE_CODE (f1) != FIELD_DECL
14552 || (DECL_SIZE (f1)
14553 && integer_zerop (DECL_SIZE (f1)))))
14554 f1 = TREE_CHAIN (f1);
14555 while (f2 && (TREE_CODE (f2) != FIELD_DECL
14556 || (DECL_SIZE (f2)
14557 && integer_zerop (DECL_SIZE (f2)))))
14558 f2 = TREE_CHAIN (f2);
14559 if (!f1 || !f2)
14560 break;
14561 /* The fields must have the same name, offset and type. */
14562 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
14563 || !gimple_compare_field_offset (f1, f2)
14564 || !gimple_canonical_types_compatible_p
14565 (TREE_TYPE (f1), TREE_TYPE (f2),
14566 trust_type_canonical))
14567 return false;
14568 }
14569
14570 /* If one aggregate has more fields than the other, they
14571 are not the same. */
14572 if (f1 || f2)
14573 return false;
14574
14575 return true;
14576 }
14577
14578 default:
14579 /* Consider all types with language specific trees in them mutually
14580 compatible. This is executed only from verify_type and false
14581 positives can be tolerated. */
14582 gcc_assert (!in_lto_p);
14583 return true;
14584 }
14585 }
14586
14587 /* Verify type T. */
14588
14589 void
14590 verify_type (const_tree t)
14591 {
14592 bool error_found = false;
14593 tree mv = TYPE_MAIN_VARIANT (t);
14594 if (!mv)
14595 {
14596 error ("main variant is not defined");
14597 error_found = true;
14598 }
14599 else if (mv != TYPE_MAIN_VARIANT (mv))
14600 {
14601 error ("%<TYPE_MAIN_VARIANT%> has different %<TYPE_MAIN_VARIANT%>");
14602 debug_tree (mv);
14603 error_found = true;
14604 }
14605 else if (t != mv && !verify_type_variant (t, mv))
14606 error_found = true;
14607
14608 tree ct = TYPE_CANONICAL (t);
14609 if (!ct)
14610 ;
14611 else if (TYPE_CANONICAL (t) != ct)
14612 {
14613 error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
14614 debug_tree (ct);
14615 error_found = true;
14616 }
14617 /* Method and function types cannot be used to address memory and thus
14618 TYPE_CANONICAL really matters only for determining useless conversions.
14619
14620 FIXME: C++ FE produce declarations of builtin functions that are not
14621 compatible with main variants. */
14622 else if (TREE_CODE (t) == FUNCTION_TYPE)
14623 ;
14624 else if (t != ct
14625 /* FIXME: gimple_canonical_types_compatible_p cannot compare types
14626 with variably sized arrays because their sizes possibly
14627 gimplified to different variables. */
14628 && !variably_modified_type_p (ct, NULL)
14629 && !gimple_canonical_types_compatible_p (t, ct, false)
14630 && COMPLETE_TYPE_P (t))
14631 {
14632 error ("%<TYPE_CANONICAL%> is not compatible");
14633 debug_tree (ct);
14634 error_found = true;
14635 }
14636
14637 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
14638 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
14639 {
14640 error ("%<TYPE_MODE%> of %<TYPE_CANONICAL%> is not compatible");
14641 debug_tree (ct);
14642 error_found = true;
14643 }
14644 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
14645 {
14646 error ("%<TYPE_CANONICAL%> of main variant is not main variant");
14647 debug_tree (ct);
14648 debug_tree (TYPE_MAIN_VARIANT (ct));
14649 error_found = true;
14650 }
14651
14652
14653 /* Check various uses of TYPE_MIN_VALUE_RAW. */
14654 if (RECORD_OR_UNION_TYPE_P (t))
14655 {
14656 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
14657 and danagle the pointer from time to time. */
14658 if (TYPE_VFIELD (t)
14659 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
14660 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
14661 {
14662 error ("%<TYPE_VFIELD%> is not %<FIELD_DECL%> nor %<TREE_LIST%>");
14663 debug_tree (TYPE_VFIELD (t));
14664 error_found = true;
14665 }
14666 }
14667 else if (TREE_CODE (t) == POINTER_TYPE)
14668 {
14669 if (TYPE_NEXT_PTR_TO (t)
14670 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
14671 {
14672 error ("%<TYPE_NEXT_PTR_TO%> is not %<POINTER_TYPE%>");
14673 debug_tree (TYPE_NEXT_PTR_TO (t));
14674 error_found = true;
14675 }
14676 }
14677 else if (TREE_CODE (t) == REFERENCE_TYPE)
14678 {
14679 if (TYPE_NEXT_REF_TO (t)
14680 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
14681 {
14682 error ("%<TYPE_NEXT_REF_TO%> is not %<REFERENCE_TYPE%>");
14683 debug_tree (TYPE_NEXT_REF_TO (t));
14684 error_found = true;
14685 }
14686 }
14687 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14688 || TREE_CODE (t) == FIXED_POINT_TYPE)
14689 {
14690 /* FIXME: The following check should pass:
14691 useless_type_conversion_p (const_cast <tree> (t),
14692 TREE_TYPE (TYPE_MIN_VALUE (t))
14693 but does not for C sizetypes in LTO. */
14694 }
14695
14696 /* Check various uses of TYPE_MAXVAL_RAW. */
14697 if (RECORD_OR_UNION_TYPE_P (t))
14698 {
14699 if (!TYPE_BINFO (t))
14700 ;
14701 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
14702 {
14703 error ("%<TYPE_BINFO%> is not %<TREE_BINFO%>");
14704 debug_tree (TYPE_BINFO (t));
14705 error_found = true;
14706 }
14707 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
14708 {
14709 error ("%<TYPE_BINFO%> type is not %<TYPE_MAIN_VARIANT%>");
14710 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
14711 error_found = true;
14712 }
14713 }
14714 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14715 {
14716 if (TYPE_METHOD_BASETYPE (t)
14717 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
14718 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
14719 {
14720 error ("%<TYPE_METHOD_BASETYPE%> is not record nor union");
14721 debug_tree (TYPE_METHOD_BASETYPE (t));
14722 error_found = true;
14723 }
14724 }
14725 else if (TREE_CODE (t) == OFFSET_TYPE)
14726 {
14727 if (TYPE_OFFSET_BASETYPE (t)
14728 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
14729 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
14730 {
14731 error ("%<TYPE_OFFSET_BASETYPE%> is not record nor union");
14732 debug_tree (TYPE_OFFSET_BASETYPE (t));
14733 error_found = true;
14734 }
14735 }
14736 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
14737 || TREE_CODE (t) == FIXED_POINT_TYPE)
14738 {
14739 /* FIXME: The following check should pass:
14740 useless_type_conversion_p (const_cast <tree> (t),
14741 TREE_TYPE (TYPE_MAX_VALUE (t))
14742 but does not for C sizetypes in LTO. */
14743 }
14744 else if (TREE_CODE (t) == ARRAY_TYPE)
14745 {
14746 if (TYPE_ARRAY_MAX_SIZE (t)
14747 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
14748 {
14749 error ("%<TYPE_ARRAY_MAX_SIZE%> not %<INTEGER_CST%>");
14750 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
14751 error_found = true;
14752 }
14753 }
14754 else if (TYPE_MAX_VALUE_RAW (t))
14755 {
14756 error ("%<TYPE_MAX_VALUE_RAW%> non-NULL");
14757 debug_tree (TYPE_MAX_VALUE_RAW (t));
14758 error_found = true;
14759 }
14760
14761 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
14762 {
14763 error ("%<TYPE_LANG_SLOT_1 (binfo)%> field is non-NULL");
14764 debug_tree (TYPE_LANG_SLOT_1 (t));
14765 error_found = true;
14766 }
14767
14768 /* Check various uses of TYPE_VALUES_RAW. */
14769 if (TREE_CODE (t) == ENUMERAL_TYPE)
14770 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
14771 {
14772 tree value = TREE_VALUE (l);
14773 tree name = TREE_PURPOSE (l);
14774
14775 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
14776 CONST_DECL of ENUMERAL TYPE. */
14777 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
14778 {
14779 error ("enum value is not %<CONST_DECL%> or %<INTEGER_CST%>");
14780 debug_tree (value);
14781 debug_tree (name);
14782 error_found = true;
14783 }
14784 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
14785 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
14786 {
14787 error ("enum value type is not %<INTEGER_TYPE%> nor convertible "
14788 "to the enum");
14789 debug_tree (value);
14790 debug_tree (name);
14791 error_found = true;
14792 }
14793 if (TREE_CODE (name) != IDENTIFIER_NODE)
14794 {
14795 error ("enum value name is not %<IDENTIFIER_NODE%>");
14796 debug_tree (value);
14797 debug_tree (name);
14798 error_found = true;
14799 }
14800 }
14801 else if (TREE_CODE (t) == ARRAY_TYPE)
14802 {
14803 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
14804 {
14805 error ("array %<TYPE_DOMAIN%> is not integer type");
14806 debug_tree (TYPE_DOMAIN (t));
14807 error_found = true;
14808 }
14809 }
14810 else if (RECORD_OR_UNION_TYPE_P (t))
14811 {
14812 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
14813 {
14814 error ("%<TYPE_FIELDS%> defined in incomplete type");
14815 error_found = true;
14816 }
14817 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
14818 {
14819 /* TODO: verify properties of decls. */
14820 if (TREE_CODE (fld) == FIELD_DECL)
14821 ;
14822 else if (TREE_CODE (fld) == TYPE_DECL)
14823 ;
14824 else if (TREE_CODE (fld) == CONST_DECL)
14825 ;
14826 else if (VAR_P (fld))
14827 ;
14828 else if (TREE_CODE (fld) == TEMPLATE_DECL)
14829 ;
14830 else if (TREE_CODE (fld) == USING_DECL)
14831 ;
14832 else if (TREE_CODE (fld) == FUNCTION_DECL)
14833 ;
14834 else
14835 {
14836 error ("wrong tree in %<TYPE_FIELDS%> list");
14837 debug_tree (fld);
14838 error_found = true;
14839 }
14840 }
14841 }
14842 else if (TREE_CODE (t) == INTEGER_TYPE
14843 || TREE_CODE (t) == BOOLEAN_TYPE
14844 || TREE_CODE (t) == OFFSET_TYPE
14845 || TREE_CODE (t) == REFERENCE_TYPE
14846 || TREE_CODE (t) == NULLPTR_TYPE
14847 || TREE_CODE (t) == POINTER_TYPE)
14848 {
14849 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
14850 {
14851 error ("%<TYPE_CACHED_VALUES_P%> is %i while %<TYPE_CACHED_VALUES%> "
14852 "is %p",
14853 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
14854 error_found = true;
14855 }
14856 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
14857 {
14858 error ("%<TYPE_CACHED_VALUES%> is not %<TREE_VEC%>");
14859 debug_tree (TYPE_CACHED_VALUES (t));
14860 error_found = true;
14861 }
14862 /* Verify just enough of cache to ensure that no one copied it to new type.
14863 All copying should go by copy_node that should clear it. */
14864 else if (TYPE_CACHED_VALUES_P (t))
14865 {
14866 int i;
14867 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
14868 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
14869 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
14870 {
14871 error ("wrong %<TYPE_CACHED_VALUES%> entry");
14872 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
14873 error_found = true;
14874 break;
14875 }
14876 }
14877 }
14878 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
14879 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
14880 {
14881 /* C++ FE uses TREE_PURPOSE to store initial values. */
14882 if (TREE_PURPOSE (l) && in_lto_p)
14883 {
14884 error ("%<TREE_PURPOSE%> is non-NULL in %<TYPE_ARG_TYPES%> list");
14885 debug_tree (l);
14886 error_found = true;
14887 }
14888 if (!TYPE_P (TREE_VALUE (l)))
14889 {
14890 error ("wrong entry in %<TYPE_ARG_TYPES%> list");
14891 debug_tree (l);
14892 error_found = true;
14893 }
14894 }
14895 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
14896 {
14897 error ("%<TYPE_VALUES_RAW%> field is non-NULL");
14898 debug_tree (TYPE_VALUES_RAW (t));
14899 error_found = true;
14900 }
14901 if (TREE_CODE (t) != INTEGER_TYPE
14902 && TREE_CODE (t) != BOOLEAN_TYPE
14903 && TREE_CODE (t) != OFFSET_TYPE
14904 && TREE_CODE (t) != REFERENCE_TYPE
14905 && TREE_CODE (t) != NULLPTR_TYPE
14906 && TREE_CODE (t) != POINTER_TYPE
14907 && TYPE_CACHED_VALUES_P (t))
14908 {
14909 error ("%<TYPE_CACHED_VALUES_P%> is set while it should not be");
14910 error_found = true;
14911 }
14912
14913 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
14914 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
14915 of a type. */
14916 if (TREE_CODE (t) == METHOD_TYPE
14917 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
14918 {
14919 error ("%<TYPE_METHOD_BASETYPE%> is not main variant");
14920 error_found = true;
14921 }
14922
14923 if (error_found)
14924 {
14925 debug_tree (const_cast <tree> (t));
14926 internal_error ("%qs failed", __func__);
14927 }
14928 }
14929
14930
14931 /* Return 1 if ARG interpreted as signed in its precision is known to be
14932 always positive or 2 if ARG is known to be always negative, or 3 if
14933 ARG may be positive or negative. */
14934
14935 int
14936 get_range_pos_neg (tree arg)
14937 {
14938 if (arg == error_mark_node)
14939 return 3;
14940
14941 int prec = TYPE_PRECISION (TREE_TYPE (arg));
14942 int cnt = 0;
14943 if (TREE_CODE (arg) == INTEGER_CST)
14944 {
14945 wide_int w = wi::sext (wi::to_wide (arg), prec);
14946 if (wi::neg_p (w))
14947 return 2;
14948 else
14949 return 1;
14950 }
14951 while (CONVERT_EXPR_P (arg)
14952 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14953 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14954 {
14955 arg = TREE_OPERAND (arg, 0);
14956 /* Narrower value zero extended into wider type
14957 will always result in positive values. */
14958 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14959 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14960 return 1;
14961 prec = TYPE_PRECISION (TREE_TYPE (arg));
14962 if (++cnt > 30)
14963 return 3;
14964 }
14965
14966 if (TREE_CODE (arg) != SSA_NAME)
14967 return 3;
14968 wide_int arg_min, arg_max;
14969 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14970 {
14971 gimple *g = SSA_NAME_DEF_STMT (arg);
14972 if (is_gimple_assign (g)
14973 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14974 {
14975 tree t = gimple_assign_rhs1 (g);
14976 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14977 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14978 {
14979 if (TYPE_UNSIGNED (TREE_TYPE (t))
14980 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14981 return 1;
14982 prec = TYPE_PRECISION (TREE_TYPE (t));
14983 arg = t;
14984 if (++cnt > 30)
14985 return 3;
14986 continue;
14987 }
14988 }
14989 return 3;
14990 }
14991 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14992 {
14993 /* For unsigned values, the "positive" range comes
14994 below the "negative" range. */
14995 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14996 return 1;
14997 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14998 return 2;
14999 }
15000 else
15001 {
15002 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
15003 return 1;
15004 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
15005 return 2;
15006 }
15007 return 3;
15008 }
15009
15010
15011
15012
15013 /* Return true if ARG is marked with the nonnull attribute in the
15014 current function signature. */
15015
15016 bool
15017 nonnull_arg_p (const_tree arg)
15018 {
15019 tree t, attrs, fntype;
15020 unsigned HOST_WIDE_INT arg_num;
15021
15022 gcc_assert (TREE_CODE (arg) == PARM_DECL
15023 && (POINTER_TYPE_P (TREE_TYPE (arg))
15024 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
15025
15026 /* The static chain decl is always non null. */
15027 if (arg == cfun->static_chain_decl)
15028 return true;
15029
15030 /* THIS argument of method is always non-NULL. */
15031 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
15032 && arg == DECL_ARGUMENTS (cfun->decl)
15033 && flag_delete_null_pointer_checks)
15034 return true;
15035
15036 /* Values passed by reference are always non-NULL. */
15037 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
15038 && flag_delete_null_pointer_checks)
15039 return true;
15040
15041 fntype = TREE_TYPE (cfun->decl);
15042 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
15043 {
15044 attrs = lookup_attribute ("nonnull", attrs);
15045
15046 /* If "nonnull" wasn't specified, we know nothing about the argument. */
15047 if (attrs == NULL_TREE)
15048 return false;
15049
15050 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
15051 if (TREE_VALUE (attrs) == NULL_TREE)
15052 return true;
15053
15054 /* Get the position number for ARG in the function signature. */
15055 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
15056 t;
15057 t = DECL_CHAIN (t), arg_num++)
15058 {
15059 if (t == arg)
15060 break;
15061 }
15062
15063 gcc_assert (t == arg);
15064
15065 /* Now see if ARG_NUM is mentioned in the nonnull list. */
15066 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
15067 {
15068 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
15069 return true;
15070 }
15071 }
15072
15073 return false;
15074 }
15075
15076 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
15077 information. */
15078
15079 location_t
15080 set_block (location_t loc, tree block)
15081 {
15082 location_t pure_loc = get_pure_location (loc);
15083 source_range src_range = get_range_from_loc (line_table, loc);
15084 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
15085 }
15086
15087 location_t
15088 set_source_range (tree expr, location_t start, location_t finish)
15089 {
15090 source_range src_range;
15091 src_range.m_start = start;
15092 src_range.m_finish = finish;
15093 return set_source_range (expr, src_range);
15094 }
15095
15096 location_t
15097 set_source_range (tree expr, source_range src_range)
15098 {
15099 if (!EXPR_P (expr))
15100 return UNKNOWN_LOCATION;
15101
15102 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
15103 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
15104 pure_loc,
15105 src_range,
15106 NULL);
15107 SET_EXPR_LOCATION (expr, adhoc);
15108 return adhoc;
15109 }
15110
15111 /* Return EXPR, potentially wrapped with a node expression LOC,
15112 if !CAN_HAVE_LOCATION_P (expr).
15113
15114 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
15115 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
15116
15117 Wrapper nodes can be identified using location_wrapper_p. */
15118
15119 tree
15120 maybe_wrap_with_location (tree expr, location_t loc)
15121 {
15122 if (expr == NULL)
15123 return NULL;
15124 if (loc == UNKNOWN_LOCATION)
15125 return expr;
15126 if (CAN_HAVE_LOCATION_P (expr))
15127 return expr;
15128 /* We should only be adding wrappers for constants and for decls,
15129 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
15130 gcc_assert (CONSTANT_CLASS_P (expr)
15131 || DECL_P (expr)
15132 || EXCEPTIONAL_CLASS_P (expr));
15133
15134 /* For now, don't add wrappers to exceptional tree nodes, to minimize
15135 any impact of the wrapper nodes. */
15136 if (EXCEPTIONAL_CLASS_P (expr))
15137 return expr;
15138
15139 /* Compiler-generated temporary variables don't need a wrapper. */
15140 if (DECL_P (expr) && DECL_ARTIFICIAL (expr) && DECL_IGNORED_P (expr))
15141 return expr;
15142
15143 /* If any auto_suppress_location_wrappers are active, don't create
15144 wrappers. */
15145 if (suppress_location_wrappers > 0)
15146 return expr;
15147
15148 tree_code code
15149 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
15150 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
15151 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
15152 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
15153 /* Mark this node as being a wrapper. */
15154 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
15155 return wrapper;
15156 }
15157
15158 int suppress_location_wrappers;
15159
15160 /* Return the name of combined function FN, for debugging purposes. */
15161
15162 const char *
15163 combined_fn_name (combined_fn fn)
15164 {
15165 if (builtin_fn_p (fn))
15166 {
15167 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
15168 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
15169 }
15170 else
15171 return internal_fn_name (as_internal_fn (fn));
15172 }
15173
15174 /* Return a bitmap with a bit set corresponding to each argument in
15175 a function call type FNTYPE declared with attribute nonnull,
15176 or null if none of the function's argument are nonnull. The caller
15177 must free the bitmap. */
15178
15179 bitmap
15180 get_nonnull_args (const_tree fntype)
15181 {
15182 if (fntype == NULL_TREE)
15183 return NULL;
15184
15185 bitmap argmap = NULL;
15186 if (TREE_CODE (fntype) == METHOD_TYPE)
15187 {
15188 /* The this pointer in C++ non-static member functions is
15189 implicitly nonnull whether or not it's declared as such. */
15190 argmap = BITMAP_ALLOC (NULL);
15191 bitmap_set_bit (argmap, 0);
15192 }
15193
15194 tree attrs = TYPE_ATTRIBUTES (fntype);
15195 if (!attrs)
15196 return argmap;
15197
15198 /* A function declaration can specify multiple attribute nonnull,
15199 each with zero or more arguments. The loop below creates a bitmap
15200 representing a union of all the arguments. An empty (but non-null)
15201 bitmap means that all arguments have been declaraed nonnull. */
15202 for ( ; attrs; attrs = TREE_CHAIN (attrs))
15203 {
15204 attrs = lookup_attribute ("nonnull", attrs);
15205 if (!attrs)
15206 break;
15207
15208 if (!argmap)
15209 argmap = BITMAP_ALLOC (NULL);
15210
15211 if (!TREE_VALUE (attrs))
15212 {
15213 /* Clear the bitmap in case a previous attribute nonnull
15214 set it and this one overrides it for all arguments. */
15215 bitmap_clear (argmap);
15216 return argmap;
15217 }
15218
15219 /* Iterate over the indices of the format arguments declared nonnull
15220 and set a bit for each. */
15221 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
15222 {
15223 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
15224 bitmap_set_bit (argmap, val);
15225 }
15226 }
15227
15228 return argmap;
15229 }
15230
15231 /* Returns true if TYPE is a type where it and all of its subobjects
15232 (recursively) are of structure, union, or array type. */
15233
15234 bool
15235 is_empty_type (const_tree type)
15236 {
15237 if (RECORD_OR_UNION_TYPE_P (type))
15238 {
15239 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
15240 if (TREE_CODE (field) == FIELD_DECL
15241 && !DECL_PADDING_P (field)
15242 && !is_empty_type (TREE_TYPE (field)))
15243 return false;
15244 return true;
15245 }
15246 else if (TREE_CODE (type) == ARRAY_TYPE)
15247 return (integer_minus_onep (array_type_nelts (type))
15248 || TYPE_DOMAIN (type) == NULL_TREE
15249 || is_empty_type (TREE_TYPE (type)));
15250 return false;
15251 }
15252
15253 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
15254 that shouldn't be passed via stack. */
15255
15256 bool
15257 default_is_empty_record (const_tree type)
15258 {
15259 if (!abi_version_at_least (12))
15260 return false;
15261
15262 if (type == error_mark_node)
15263 return false;
15264
15265 if (TREE_ADDRESSABLE (type))
15266 return false;
15267
15268 return is_empty_type (TYPE_MAIN_VARIANT (type));
15269 }
15270
15271 /* Determine whether TYPE is a structure with a flexible array member,
15272 or a union containing such a structure (possibly recursively). */
15273
15274 bool
15275 flexible_array_type_p (const_tree type)
15276 {
15277 tree x, last;
15278 switch (TREE_CODE (type))
15279 {
15280 case RECORD_TYPE:
15281 last = NULL_TREE;
15282 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15283 if (TREE_CODE (x) == FIELD_DECL)
15284 last = x;
15285 if (last == NULL_TREE)
15286 return false;
15287 if (TREE_CODE (TREE_TYPE (last)) == ARRAY_TYPE
15288 && TYPE_SIZE (TREE_TYPE (last)) == NULL_TREE
15289 && TYPE_DOMAIN (TREE_TYPE (last)) != NULL_TREE
15290 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (last))) == NULL_TREE)
15291 return true;
15292 return false;
15293 case UNION_TYPE:
15294 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
15295 {
15296 if (TREE_CODE (x) == FIELD_DECL
15297 && flexible_array_type_p (TREE_TYPE (x)))
15298 return true;
15299 }
15300 return false;
15301 default:
15302 return false;
15303 }
15304 }
15305
15306 /* Like int_size_in_bytes, but handle empty records specially. */
15307
15308 HOST_WIDE_INT
15309 arg_int_size_in_bytes (const_tree type)
15310 {
15311 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
15312 }
15313
15314 /* Like size_in_bytes, but handle empty records specially. */
15315
15316 tree
15317 arg_size_in_bytes (const_tree type)
15318 {
15319 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
15320 }
15321
15322 /* Return true if an expression with CODE has to have the same result type as
15323 its first operand. */
15324
15325 bool
15326 expr_type_first_operand_type_p (tree_code code)
15327 {
15328 switch (code)
15329 {
15330 case NEGATE_EXPR:
15331 case ABS_EXPR:
15332 case BIT_NOT_EXPR:
15333 case PAREN_EXPR:
15334 case CONJ_EXPR:
15335
15336 case PLUS_EXPR:
15337 case MINUS_EXPR:
15338 case MULT_EXPR:
15339 case TRUNC_DIV_EXPR:
15340 case CEIL_DIV_EXPR:
15341 case FLOOR_DIV_EXPR:
15342 case ROUND_DIV_EXPR:
15343 case TRUNC_MOD_EXPR:
15344 case CEIL_MOD_EXPR:
15345 case FLOOR_MOD_EXPR:
15346 case ROUND_MOD_EXPR:
15347 case RDIV_EXPR:
15348 case EXACT_DIV_EXPR:
15349 case MIN_EXPR:
15350 case MAX_EXPR:
15351 case BIT_IOR_EXPR:
15352 case BIT_XOR_EXPR:
15353 case BIT_AND_EXPR:
15354
15355 case LSHIFT_EXPR:
15356 case RSHIFT_EXPR:
15357 case LROTATE_EXPR:
15358 case RROTATE_EXPR:
15359 return true;
15360
15361 default:
15362 return false;
15363 }
15364 }
15365
15366 /* Return a typenode for the "standard" C type with a given name. */
15367 tree
15368 get_typenode_from_name (const char *name)
15369 {
15370 if (name == NULL || *name == '\0')
15371 return NULL_TREE;
15372
15373 if (strcmp (name, "char") == 0)
15374 return char_type_node;
15375 if (strcmp (name, "unsigned char") == 0)
15376 return unsigned_char_type_node;
15377 if (strcmp (name, "signed char") == 0)
15378 return signed_char_type_node;
15379
15380 if (strcmp (name, "short int") == 0)
15381 return short_integer_type_node;
15382 if (strcmp (name, "short unsigned int") == 0)
15383 return short_unsigned_type_node;
15384
15385 if (strcmp (name, "int") == 0)
15386 return integer_type_node;
15387 if (strcmp (name, "unsigned int") == 0)
15388 return unsigned_type_node;
15389
15390 if (strcmp (name, "long int") == 0)
15391 return long_integer_type_node;
15392 if (strcmp (name, "long unsigned int") == 0)
15393 return long_unsigned_type_node;
15394
15395 if (strcmp (name, "long long int") == 0)
15396 return long_long_integer_type_node;
15397 if (strcmp (name, "long long unsigned int") == 0)
15398 return long_long_unsigned_type_node;
15399
15400 gcc_unreachable ();
15401 }
15402
15403 /* List of pointer types used to declare builtins before we have seen their
15404 real declaration.
15405
15406 Keep the size up to date in tree.h ! */
15407 const builtin_structptr_type builtin_structptr_types[6] =
15408 {
15409 { fileptr_type_node, ptr_type_node, "FILE" },
15410 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
15411 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
15412 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
15413 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
15414 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
15415 };
15416
15417 /* Return the maximum object size. */
15418
15419 tree
15420 max_object_size (void)
15421 {
15422 /* To do: Make this a configurable parameter. */
15423 return TYPE_MAX_VALUE (ptrdiff_type_node);
15424 }
15425
15426 /* A wrapper around TARGET_VERIFY_TYPE_CONTEXT that makes the silent_p
15427 parameter default to false and that weeds out error_mark_node. */
15428
15429 bool
15430 verify_type_context (location_t loc, type_context_kind context,
15431 const_tree type, bool silent_p)
15432 {
15433 if (type == error_mark_node)
15434 return true;
15435
15436 gcc_assert (TYPE_P (type));
15437 return (!targetm.verify_type_context
15438 || targetm.verify_type_context (loc, context, type, silent_p));
15439 }
15440
15441 /* Return that NEW_ASM and DELETE_ASM name a valid pair of new and
15442 delete operators. */
15443
15444 bool
15445 valid_new_delete_pair_p (tree new_asm, tree delete_asm)
15446 {
15447 const char *new_name = IDENTIFIER_POINTER (new_asm);
15448 const char *delete_name = IDENTIFIER_POINTER (delete_asm);
15449 unsigned int new_len = IDENTIFIER_LENGTH (new_asm);
15450 unsigned int delete_len = IDENTIFIER_LENGTH (delete_asm);
15451
15452 if (new_len < 5 || delete_len < 6)
15453 return false;
15454 if (new_name[0] == '_')
15455 ++new_name, --new_len;
15456 if (new_name[0] == '_')
15457 ++new_name, --new_len;
15458 if (delete_name[0] == '_')
15459 ++delete_name, --delete_len;
15460 if (delete_name[0] == '_')
15461 ++delete_name, --delete_len;
15462 if (new_len < 4 || delete_len < 5)
15463 return false;
15464 /* *_len is now just the length after initial underscores. */
15465 if (new_name[0] != 'Z' || new_name[1] != 'n')
15466 return false;
15467 if (delete_name[0] != 'Z' || delete_name[1] != 'd')
15468 return false;
15469 /* _Znw must match _Zdl, _Zna must match _Zda. */
15470 if ((new_name[2] != 'w' || delete_name[2] != 'l')
15471 && (new_name[2] != 'a' || delete_name[2] != 'a'))
15472 return false;
15473 /* 'j', 'm' and 'y' correspond to size_t. */
15474 if (new_name[3] != 'j' && new_name[3] != 'm' && new_name[3] != 'y')
15475 return false;
15476 if (delete_name[3] != 'P' || delete_name[4] != 'v')
15477 return false;
15478 if (new_len == 4
15479 || (new_len == 18 && !memcmp (new_name + 4, "RKSt9nothrow_t", 14)))
15480 {
15481 /* _ZnXY or _ZnXYRKSt9nothrow_t matches
15482 _ZdXPv, _ZdXPvY and _ZdXPvRKSt9nothrow_t. */
15483 if (delete_len == 5)
15484 return true;
15485 if (delete_len == 6 && delete_name[5] == new_name[3])
15486 return true;
15487 if (delete_len == 19 && !memcmp (delete_name + 5, "RKSt9nothrow_t", 14))
15488 return true;
15489 }
15490 else if ((new_len == 19 && !memcmp (new_name + 4, "St11align_val_t", 15))
15491 || (new_len == 33
15492 && !memcmp (new_name + 4, "St11align_val_tRKSt9nothrow_t", 29)))
15493 {
15494 /* _ZnXYSt11align_val_t or _ZnXYSt11align_val_tRKSt9nothrow_t matches
15495 _ZdXPvSt11align_val_t or _ZdXPvYSt11align_val_t or or
15496 _ZdXPvSt11align_val_tRKSt9nothrow_t. */
15497 if (delete_len == 20 && !memcmp (delete_name + 5, "St11align_val_t", 15))
15498 return true;
15499 if (delete_len == 21
15500 && delete_name[5] == new_name[3]
15501 && !memcmp (delete_name + 6, "St11align_val_t", 15))
15502 return true;
15503 if (delete_len == 34
15504 && !memcmp (delete_name + 5, "St11align_val_tRKSt9nothrow_t", 29))
15505 return true;
15506 }
15507 return false;
15508 }
15509
15510 #if CHECKING_P
15511
15512 namespace selftest {
15513
15514 /* Selftests for tree. */
15515
15516 /* Verify that integer constants are sane. */
15517
15518 static void
15519 test_integer_constants ()
15520 {
15521 ASSERT_TRUE (integer_type_node != NULL);
15522 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
15523
15524 tree type = integer_type_node;
15525
15526 tree zero = build_zero_cst (type);
15527 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
15528 ASSERT_EQ (type, TREE_TYPE (zero));
15529
15530 tree one = build_int_cst (type, 1);
15531 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
15532 ASSERT_EQ (type, TREE_TYPE (zero));
15533 }
15534
15535 /* Verify identifiers. */
15536
15537 static void
15538 test_identifiers ()
15539 {
15540 tree identifier = get_identifier ("foo");
15541 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
15542 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
15543 }
15544
15545 /* Verify LABEL_DECL. */
15546
15547 static void
15548 test_labels ()
15549 {
15550 tree identifier = get_identifier ("err");
15551 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
15552 identifier, void_type_node);
15553 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
15554 ASSERT_FALSE (FORCED_LABEL (label_decl));
15555 }
15556
15557 /* Return a new VECTOR_CST node whose type is TYPE and whose values
15558 are given by VALS. */
15559
15560 static tree
15561 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
15562 {
15563 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
15564 tree_vector_builder builder (type, vals.length (), 1);
15565 builder.splice (vals);
15566 return builder.build ();
15567 }
15568
15569 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
15570
15571 static void
15572 check_vector_cst (vec<tree> expected, tree actual)
15573 {
15574 ASSERT_KNOWN_EQ (expected.length (),
15575 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
15576 for (unsigned int i = 0; i < expected.length (); ++i)
15577 ASSERT_EQ (wi::to_wide (expected[i]),
15578 wi::to_wide (vector_cst_elt (actual, i)));
15579 }
15580
15581 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
15582 and that its elements match EXPECTED. */
15583
15584 static void
15585 check_vector_cst_duplicate (vec<tree> expected, tree actual,
15586 unsigned int npatterns)
15587 {
15588 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15589 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
15590 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
15591 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
15592 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15593 check_vector_cst (expected, actual);
15594 }
15595
15596 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
15597 and NPATTERNS background elements, and that its elements match
15598 EXPECTED. */
15599
15600 static void
15601 check_vector_cst_fill (vec<tree> expected, tree actual,
15602 unsigned int npatterns)
15603 {
15604 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15605 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
15606 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
15607 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15608 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
15609 check_vector_cst (expected, actual);
15610 }
15611
15612 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
15613 and that its elements match EXPECTED. */
15614
15615 static void
15616 check_vector_cst_stepped (vec<tree> expected, tree actual,
15617 unsigned int npatterns)
15618 {
15619 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
15620 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
15621 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
15622 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
15623 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
15624 check_vector_cst (expected, actual);
15625 }
15626
15627 /* Test the creation of VECTOR_CSTs. */
15628
15629 static void
15630 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
15631 {
15632 auto_vec<tree, 8> elements (8);
15633 elements.quick_grow (8);
15634 tree element_type = build_nonstandard_integer_type (16, true);
15635 tree vector_type = build_vector_type (element_type, 8);
15636
15637 /* Test a simple linear series with a base of 0 and a step of 1:
15638 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
15639 for (unsigned int i = 0; i < 8; ++i)
15640 elements[i] = build_int_cst (element_type, i);
15641 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
15642 check_vector_cst_stepped (elements, vector, 1);
15643
15644 /* Try the same with the first element replaced by 100:
15645 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
15646 elements[0] = build_int_cst (element_type, 100);
15647 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15648 check_vector_cst_stepped (elements, vector, 1);
15649
15650 /* Try a series that wraps around.
15651 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
15652 for (unsigned int i = 1; i < 8; ++i)
15653 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
15654 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15655 check_vector_cst_stepped (elements, vector, 1);
15656
15657 /* Try a downward series:
15658 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
15659 for (unsigned int i = 1; i < 8; ++i)
15660 elements[i] = build_int_cst (element_type, 80 - i);
15661 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15662 check_vector_cst_stepped (elements, vector, 1);
15663
15664 /* Try two interleaved series with different bases and steps:
15665 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
15666 elements[1] = build_int_cst (element_type, 53);
15667 for (unsigned int i = 2; i < 8; i += 2)
15668 {
15669 elements[i] = build_int_cst (element_type, 70 - i * 2);
15670 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
15671 }
15672 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15673 check_vector_cst_stepped (elements, vector, 2);
15674
15675 /* Try a duplicated value:
15676 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
15677 for (unsigned int i = 1; i < 8; ++i)
15678 elements[i] = elements[0];
15679 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15680 check_vector_cst_duplicate (elements, vector, 1);
15681
15682 /* Try an interleaved duplicated value:
15683 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
15684 elements[1] = build_int_cst (element_type, 55);
15685 for (unsigned int i = 2; i < 8; ++i)
15686 elements[i] = elements[i - 2];
15687 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15688 check_vector_cst_duplicate (elements, vector, 2);
15689
15690 /* Try a duplicated value with 2 exceptions
15691 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
15692 elements[0] = build_int_cst (element_type, 41);
15693 elements[1] = build_int_cst (element_type, 97);
15694 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15695 check_vector_cst_fill (elements, vector, 2);
15696
15697 /* Try with and without a step
15698 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
15699 for (unsigned int i = 3; i < 8; i += 2)
15700 elements[i] = build_int_cst (element_type, i * 7);
15701 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15702 check_vector_cst_stepped (elements, vector, 2);
15703
15704 /* Try a fully-general constant:
15705 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
15706 elements[5] = build_int_cst (element_type, 9990);
15707 vector = build_vector (vector_type, elements PASS_MEM_STAT);
15708 check_vector_cst_fill (elements, vector, 4);
15709 }
15710
15711 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
15712 Helper function for test_location_wrappers, to deal with STRIP_NOPS
15713 modifying its argument in-place. */
15714
15715 static void
15716 check_strip_nops (tree node, tree expected)
15717 {
15718 STRIP_NOPS (node);
15719 ASSERT_EQ (expected, node);
15720 }
15721
15722 /* Verify location wrappers. */
15723
15724 static void
15725 test_location_wrappers ()
15726 {
15727 location_t loc = BUILTINS_LOCATION;
15728
15729 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
15730
15731 /* Wrapping a constant. */
15732 tree int_cst = build_int_cst (integer_type_node, 42);
15733 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
15734 ASSERT_FALSE (location_wrapper_p (int_cst));
15735
15736 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
15737 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
15738 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
15739 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
15740
15741 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
15742 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
15743
15744 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
15745 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
15746 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
15747 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
15748
15749 /* Wrapping a STRING_CST. */
15750 tree string_cst = build_string (4, "foo");
15751 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
15752 ASSERT_FALSE (location_wrapper_p (string_cst));
15753
15754 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
15755 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
15756 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
15757 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
15758 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
15759
15760
15761 /* Wrapping a variable. */
15762 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
15763 get_identifier ("some_int_var"),
15764 integer_type_node);
15765 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
15766 ASSERT_FALSE (location_wrapper_p (int_var));
15767
15768 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
15769 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
15770 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
15771 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
15772
15773 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
15774 wrapper. */
15775 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
15776 ASSERT_FALSE (location_wrapper_p (r_cast));
15777 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
15778
15779 /* Verify that STRIP_NOPS removes wrappers. */
15780 check_strip_nops (wrapped_int_cst, int_cst);
15781 check_strip_nops (wrapped_string_cst, string_cst);
15782 check_strip_nops (wrapped_int_var, int_var);
15783 }
15784
15785 /* Test various tree predicates. Verify that location wrappers don't
15786 affect the results. */
15787
15788 static void
15789 test_predicates ()
15790 {
15791 /* Build various constants and wrappers around them. */
15792
15793 location_t loc = BUILTINS_LOCATION;
15794
15795 tree i_0 = build_int_cst (integer_type_node, 0);
15796 tree wr_i_0 = maybe_wrap_with_location (i_0, loc);
15797
15798 tree i_1 = build_int_cst (integer_type_node, 1);
15799 tree wr_i_1 = maybe_wrap_with_location (i_1, loc);
15800
15801 tree i_m1 = build_int_cst (integer_type_node, -1);
15802 tree wr_i_m1 = maybe_wrap_with_location (i_m1, loc);
15803
15804 tree f_0 = build_real_from_int_cst (float_type_node, i_0);
15805 tree wr_f_0 = maybe_wrap_with_location (f_0, loc);
15806 tree f_1 = build_real_from_int_cst (float_type_node, i_1);
15807 tree wr_f_1 = maybe_wrap_with_location (f_1, loc);
15808 tree f_m1 = build_real_from_int_cst (float_type_node, i_m1);
15809 tree wr_f_m1 = maybe_wrap_with_location (f_m1, loc);
15810
15811 tree c_i_0 = build_complex (NULL_TREE, i_0, i_0);
15812 tree c_i_1 = build_complex (NULL_TREE, i_1, i_0);
15813 tree c_i_m1 = build_complex (NULL_TREE, i_m1, i_0);
15814
15815 tree c_f_0 = build_complex (NULL_TREE, f_0, f_0);
15816 tree c_f_1 = build_complex (NULL_TREE, f_1, f_0);
15817 tree c_f_m1 = build_complex (NULL_TREE, f_m1, f_0);
15818
15819 /* TODO: vector constants. */
15820
15821 /* Test integer_onep. */
15822 ASSERT_FALSE (integer_onep (i_0));
15823 ASSERT_FALSE (integer_onep (wr_i_0));
15824 ASSERT_TRUE (integer_onep (i_1));
15825 ASSERT_TRUE (integer_onep (wr_i_1));
15826 ASSERT_FALSE (integer_onep (i_m1));
15827 ASSERT_FALSE (integer_onep (wr_i_m1));
15828 ASSERT_FALSE (integer_onep (f_0));
15829 ASSERT_FALSE (integer_onep (wr_f_0));
15830 ASSERT_FALSE (integer_onep (f_1));
15831 ASSERT_FALSE (integer_onep (wr_f_1));
15832 ASSERT_FALSE (integer_onep (f_m1));
15833 ASSERT_FALSE (integer_onep (wr_f_m1));
15834 ASSERT_FALSE (integer_onep (c_i_0));
15835 ASSERT_TRUE (integer_onep (c_i_1));
15836 ASSERT_FALSE (integer_onep (c_i_m1));
15837 ASSERT_FALSE (integer_onep (c_f_0));
15838 ASSERT_FALSE (integer_onep (c_f_1));
15839 ASSERT_FALSE (integer_onep (c_f_m1));
15840
15841 /* Test integer_zerop. */
15842 ASSERT_TRUE (integer_zerop (i_0));
15843 ASSERT_TRUE (integer_zerop (wr_i_0));
15844 ASSERT_FALSE (integer_zerop (i_1));
15845 ASSERT_FALSE (integer_zerop (wr_i_1));
15846 ASSERT_FALSE (integer_zerop (i_m1));
15847 ASSERT_FALSE (integer_zerop (wr_i_m1));
15848 ASSERT_FALSE (integer_zerop (f_0));
15849 ASSERT_FALSE (integer_zerop (wr_f_0));
15850 ASSERT_FALSE (integer_zerop (f_1));
15851 ASSERT_FALSE (integer_zerop (wr_f_1));
15852 ASSERT_FALSE (integer_zerop (f_m1));
15853 ASSERT_FALSE (integer_zerop (wr_f_m1));
15854 ASSERT_TRUE (integer_zerop (c_i_0));
15855 ASSERT_FALSE (integer_zerop (c_i_1));
15856 ASSERT_FALSE (integer_zerop (c_i_m1));
15857 ASSERT_FALSE (integer_zerop (c_f_0));
15858 ASSERT_FALSE (integer_zerop (c_f_1));
15859 ASSERT_FALSE (integer_zerop (c_f_m1));
15860
15861 /* Test integer_all_onesp. */
15862 ASSERT_FALSE (integer_all_onesp (i_0));
15863 ASSERT_FALSE (integer_all_onesp (wr_i_0));
15864 ASSERT_FALSE (integer_all_onesp (i_1));
15865 ASSERT_FALSE (integer_all_onesp (wr_i_1));
15866 ASSERT_TRUE (integer_all_onesp (i_m1));
15867 ASSERT_TRUE (integer_all_onesp (wr_i_m1));
15868 ASSERT_FALSE (integer_all_onesp (f_0));
15869 ASSERT_FALSE (integer_all_onesp (wr_f_0));
15870 ASSERT_FALSE (integer_all_onesp (f_1));
15871 ASSERT_FALSE (integer_all_onesp (wr_f_1));
15872 ASSERT_FALSE (integer_all_onesp (f_m1));
15873 ASSERT_FALSE (integer_all_onesp (wr_f_m1));
15874 ASSERT_FALSE (integer_all_onesp (c_i_0));
15875 ASSERT_FALSE (integer_all_onesp (c_i_1));
15876 ASSERT_FALSE (integer_all_onesp (c_i_m1));
15877 ASSERT_FALSE (integer_all_onesp (c_f_0));
15878 ASSERT_FALSE (integer_all_onesp (c_f_1));
15879 ASSERT_FALSE (integer_all_onesp (c_f_m1));
15880
15881 /* Test integer_minus_onep. */
15882 ASSERT_FALSE (integer_minus_onep (i_0));
15883 ASSERT_FALSE (integer_minus_onep (wr_i_0));
15884 ASSERT_FALSE (integer_minus_onep (i_1));
15885 ASSERT_FALSE (integer_minus_onep (wr_i_1));
15886 ASSERT_TRUE (integer_minus_onep (i_m1));
15887 ASSERT_TRUE (integer_minus_onep (wr_i_m1));
15888 ASSERT_FALSE (integer_minus_onep (f_0));
15889 ASSERT_FALSE (integer_minus_onep (wr_f_0));
15890 ASSERT_FALSE (integer_minus_onep (f_1));
15891 ASSERT_FALSE (integer_minus_onep (wr_f_1));
15892 ASSERT_FALSE (integer_minus_onep (f_m1));
15893 ASSERT_FALSE (integer_minus_onep (wr_f_m1));
15894 ASSERT_FALSE (integer_minus_onep (c_i_0));
15895 ASSERT_FALSE (integer_minus_onep (c_i_1));
15896 ASSERT_TRUE (integer_minus_onep (c_i_m1));
15897 ASSERT_FALSE (integer_minus_onep (c_f_0));
15898 ASSERT_FALSE (integer_minus_onep (c_f_1));
15899 ASSERT_FALSE (integer_minus_onep (c_f_m1));
15900
15901 /* Test integer_each_onep. */
15902 ASSERT_FALSE (integer_each_onep (i_0));
15903 ASSERT_FALSE (integer_each_onep (wr_i_0));
15904 ASSERT_TRUE (integer_each_onep (i_1));
15905 ASSERT_TRUE (integer_each_onep (wr_i_1));
15906 ASSERT_FALSE (integer_each_onep (i_m1));
15907 ASSERT_FALSE (integer_each_onep (wr_i_m1));
15908 ASSERT_FALSE (integer_each_onep (f_0));
15909 ASSERT_FALSE (integer_each_onep (wr_f_0));
15910 ASSERT_FALSE (integer_each_onep (f_1));
15911 ASSERT_FALSE (integer_each_onep (wr_f_1));
15912 ASSERT_FALSE (integer_each_onep (f_m1));
15913 ASSERT_FALSE (integer_each_onep (wr_f_m1));
15914 ASSERT_FALSE (integer_each_onep (c_i_0));
15915 ASSERT_FALSE (integer_each_onep (c_i_1));
15916 ASSERT_FALSE (integer_each_onep (c_i_m1));
15917 ASSERT_FALSE (integer_each_onep (c_f_0));
15918 ASSERT_FALSE (integer_each_onep (c_f_1));
15919 ASSERT_FALSE (integer_each_onep (c_f_m1));
15920
15921 /* Test integer_truep. */
15922 ASSERT_FALSE (integer_truep (i_0));
15923 ASSERT_FALSE (integer_truep (wr_i_0));
15924 ASSERT_TRUE (integer_truep (i_1));
15925 ASSERT_TRUE (integer_truep (wr_i_1));
15926 ASSERT_FALSE (integer_truep (i_m1));
15927 ASSERT_FALSE (integer_truep (wr_i_m1));
15928 ASSERT_FALSE (integer_truep (f_0));
15929 ASSERT_FALSE (integer_truep (wr_f_0));
15930 ASSERT_FALSE (integer_truep (f_1));
15931 ASSERT_FALSE (integer_truep (wr_f_1));
15932 ASSERT_FALSE (integer_truep (f_m1));
15933 ASSERT_FALSE (integer_truep (wr_f_m1));
15934 ASSERT_FALSE (integer_truep (c_i_0));
15935 ASSERT_TRUE (integer_truep (c_i_1));
15936 ASSERT_FALSE (integer_truep (c_i_m1));
15937 ASSERT_FALSE (integer_truep (c_f_0));
15938 ASSERT_FALSE (integer_truep (c_f_1));
15939 ASSERT_FALSE (integer_truep (c_f_m1));
15940
15941 /* Test integer_nonzerop. */
15942 ASSERT_FALSE (integer_nonzerop (i_0));
15943 ASSERT_FALSE (integer_nonzerop (wr_i_0));
15944 ASSERT_TRUE (integer_nonzerop (i_1));
15945 ASSERT_TRUE (integer_nonzerop (wr_i_1));
15946 ASSERT_TRUE (integer_nonzerop (i_m1));
15947 ASSERT_TRUE (integer_nonzerop (wr_i_m1));
15948 ASSERT_FALSE (integer_nonzerop (f_0));
15949 ASSERT_FALSE (integer_nonzerop (wr_f_0));
15950 ASSERT_FALSE (integer_nonzerop (f_1));
15951 ASSERT_FALSE (integer_nonzerop (wr_f_1));
15952 ASSERT_FALSE (integer_nonzerop (f_m1));
15953 ASSERT_FALSE (integer_nonzerop (wr_f_m1));
15954 ASSERT_FALSE (integer_nonzerop (c_i_0));
15955 ASSERT_TRUE (integer_nonzerop (c_i_1));
15956 ASSERT_TRUE (integer_nonzerop (c_i_m1));
15957 ASSERT_FALSE (integer_nonzerop (c_f_0));
15958 ASSERT_FALSE (integer_nonzerop (c_f_1));
15959 ASSERT_FALSE (integer_nonzerop (c_f_m1));
15960
15961 /* Test real_zerop. */
15962 ASSERT_FALSE (real_zerop (i_0));
15963 ASSERT_FALSE (real_zerop (wr_i_0));
15964 ASSERT_FALSE (real_zerop (i_1));
15965 ASSERT_FALSE (real_zerop (wr_i_1));
15966 ASSERT_FALSE (real_zerop (i_m1));
15967 ASSERT_FALSE (real_zerop (wr_i_m1));
15968 ASSERT_TRUE (real_zerop (f_0));
15969 ASSERT_TRUE (real_zerop (wr_f_0));
15970 ASSERT_FALSE (real_zerop (f_1));
15971 ASSERT_FALSE (real_zerop (wr_f_1));
15972 ASSERT_FALSE (real_zerop (f_m1));
15973 ASSERT_FALSE (real_zerop (wr_f_m1));
15974 ASSERT_FALSE (real_zerop (c_i_0));
15975 ASSERT_FALSE (real_zerop (c_i_1));
15976 ASSERT_FALSE (real_zerop (c_i_m1));
15977 ASSERT_TRUE (real_zerop (c_f_0));
15978 ASSERT_FALSE (real_zerop (c_f_1));
15979 ASSERT_FALSE (real_zerop (c_f_m1));
15980
15981 /* Test real_onep. */
15982 ASSERT_FALSE (real_onep (i_0));
15983 ASSERT_FALSE (real_onep (wr_i_0));
15984 ASSERT_FALSE (real_onep (i_1));
15985 ASSERT_FALSE (real_onep (wr_i_1));
15986 ASSERT_FALSE (real_onep (i_m1));
15987 ASSERT_FALSE (real_onep (wr_i_m1));
15988 ASSERT_FALSE (real_onep (f_0));
15989 ASSERT_FALSE (real_onep (wr_f_0));
15990 ASSERT_TRUE (real_onep (f_1));
15991 ASSERT_TRUE (real_onep (wr_f_1));
15992 ASSERT_FALSE (real_onep (f_m1));
15993 ASSERT_FALSE (real_onep (wr_f_m1));
15994 ASSERT_FALSE (real_onep (c_i_0));
15995 ASSERT_FALSE (real_onep (c_i_1));
15996 ASSERT_FALSE (real_onep (c_i_m1));
15997 ASSERT_FALSE (real_onep (c_f_0));
15998 ASSERT_TRUE (real_onep (c_f_1));
15999 ASSERT_FALSE (real_onep (c_f_m1));
16000
16001 /* Test real_minus_onep. */
16002 ASSERT_FALSE (real_minus_onep (i_0));
16003 ASSERT_FALSE (real_minus_onep (wr_i_0));
16004 ASSERT_FALSE (real_minus_onep (i_1));
16005 ASSERT_FALSE (real_minus_onep (wr_i_1));
16006 ASSERT_FALSE (real_minus_onep (i_m1));
16007 ASSERT_FALSE (real_minus_onep (wr_i_m1));
16008 ASSERT_FALSE (real_minus_onep (f_0));
16009 ASSERT_FALSE (real_minus_onep (wr_f_0));
16010 ASSERT_FALSE (real_minus_onep (f_1));
16011 ASSERT_FALSE (real_minus_onep (wr_f_1));
16012 ASSERT_TRUE (real_minus_onep (f_m1));
16013 ASSERT_TRUE (real_minus_onep (wr_f_m1));
16014 ASSERT_FALSE (real_minus_onep (c_i_0));
16015 ASSERT_FALSE (real_minus_onep (c_i_1));
16016 ASSERT_FALSE (real_minus_onep (c_i_m1));
16017 ASSERT_FALSE (real_minus_onep (c_f_0));
16018 ASSERT_FALSE (real_minus_onep (c_f_1));
16019 ASSERT_TRUE (real_minus_onep (c_f_m1));
16020
16021 /* Test zerop. */
16022 ASSERT_TRUE (zerop (i_0));
16023 ASSERT_TRUE (zerop (wr_i_0));
16024 ASSERT_FALSE (zerop (i_1));
16025 ASSERT_FALSE (zerop (wr_i_1));
16026 ASSERT_FALSE (zerop (i_m1));
16027 ASSERT_FALSE (zerop (wr_i_m1));
16028 ASSERT_TRUE (zerop (f_0));
16029 ASSERT_TRUE (zerop (wr_f_0));
16030 ASSERT_FALSE (zerop (f_1));
16031 ASSERT_FALSE (zerop (wr_f_1));
16032 ASSERT_FALSE (zerop (f_m1));
16033 ASSERT_FALSE (zerop (wr_f_m1));
16034 ASSERT_TRUE (zerop (c_i_0));
16035 ASSERT_FALSE (zerop (c_i_1));
16036 ASSERT_FALSE (zerop (c_i_m1));
16037 ASSERT_TRUE (zerop (c_f_0));
16038 ASSERT_FALSE (zerop (c_f_1));
16039 ASSERT_FALSE (zerop (c_f_m1));
16040
16041 /* Test tree_expr_nonnegative_p. */
16042 ASSERT_TRUE (tree_expr_nonnegative_p (i_0));
16043 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_0));
16044 ASSERT_TRUE (tree_expr_nonnegative_p (i_1));
16045 ASSERT_TRUE (tree_expr_nonnegative_p (wr_i_1));
16046 ASSERT_FALSE (tree_expr_nonnegative_p (i_m1));
16047 ASSERT_FALSE (tree_expr_nonnegative_p (wr_i_m1));
16048 ASSERT_TRUE (tree_expr_nonnegative_p (f_0));
16049 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_0));
16050 ASSERT_TRUE (tree_expr_nonnegative_p (f_1));
16051 ASSERT_TRUE (tree_expr_nonnegative_p (wr_f_1));
16052 ASSERT_FALSE (tree_expr_nonnegative_p (f_m1));
16053 ASSERT_FALSE (tree_expr_nonnegative_p (wr_f_m1));
16054 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_0));
16055 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_1));
16056 ASSERT_FALSE (tree_expr_nonnegative_p (c_i_m1));
16057 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_0));
16058 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_1));
16059 ASSERT_FALSE (tree_expr_nonnegative_p (c_f_m1));
16060
16061 /* Test tree_expr_nonzero_p. */
16062 ASSERT_FALSE (tree_expr_nonzero_p (i_0));
16063 ASSERT_FALSE (tree_expr_nonzero_p (wr_i_0));
16064 ASSERT_TRUE (tree_expr_nonzero_p (i_1));
16065 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_1));
16066 ASSERT_TRUE (tree_expr_nonzero_p (i_m1));
16067 ASSERT_TRUE (tree_expr_nonzero_p (wr_i_m1));
16068
16069 /* Test integer_valued_real_p. */
16070 ASSERT_FALSE (integer_valued_real_p (i_0));
16071 ASSERT_TRUE (integer_valued_real_p (f_0));
16072 ASSERT_TRUE (integer_valued_real_p (wr_f_0));
16073 ASSERT_TRUE (integer_valued_real_p (f_1));
16074 ASSERT_TRUE (integer_valued_real_p (wr_f_1));
16075
16076 /* Test integer_pow2p. */
16077 ASSERT_FALSE (integer_pow2p (i_0));
16078 ASSERT_TRUE (integer_pow2p (i_1));
16079 ASSERT_TRUE (integer_pow2p (wr_i_1));
16080
16081 /* Test uniform_integer_cst_p. */
16082 ASSERT_TRUE (uniform_integer_cst_p (i_0));
16083 ASSERT_TRUE (uniform_integer_cst_p (wr_i_0));
16084 ASSERT_TRUE (uniform_integer_cst_p (i_1));
16085 ASSERT_TRUE (uniform_integer_cst_p (wr_i_1));
16086 ASSERT_TRUE (uniform_integer_cst_p (i_m1));
16087 ASSERT_TRUE (uniform_integer_cst_p (wr_i_m1));
16088 ASSERT_FALSE (uniform_integer_cst_p (f_0));
16089 ASSERT_FALSE (uniform_integer_cst_p (wr_f_0));
16090 ASSERT_FALSE (uniform_integer_cst_p (f_1));
16091 ASSERT_FALSE (uniform_integer_cst_p (wr_f_1));
16092 ASSERT_FALSE (uniform_integer_cst_p (f_m1));
16093 ASSERT_FALSE (uniform_integer_cst_p (wr_f_m1));
16094 ASSERT_FALSE (uniform_integer_cst_p (c_i_0));
16095 ASSERT_FALSE (uniform_integer_cst_p (c_i_1));
16096 ASSERT_FALSE (uniform_integer_cst_p (c_i_m1));
16097 ASSERT_FALSE (uniform_integer_cst_p (c_f_0));
16098 ASSERT_FALSE (uniform_integer_cst_p (c_f_1));
16099 ASSERT_FALSE (uniform_integer_cst_p (c_f_m1));
16100 }
16101
16102 /* Check that string escaping works correctly. */
16103
16104 static void
16105 test_escaped_strings (void)
16106 {
16107 int saved_cutoff;
16108 escaped_string msg;
16109
16110 msg.escape (NULL);
16111 /* ASSERT_STREQ does not accept NULL as a valid test
16112 result, so we have to use ASSERT_EQ instead. */
16113 ASSERT_EQ (NULL, (const char *) msg);
16114
16115 msg.escape ("");
16116 ASSERT_STREQ ("", (const char *) msg);
16117
16118 msg.escape ("foobar");
16119 ASSERT_STREQ ("foobar", (const char *) msg);
16120
16121 /* Ensure that we have -fmessage-length set to 0. */
16122 saved_cutoff = pp_line_cutoff (global_dc->printer);
16123 pp_line_cutoff (global_dc->printer) = 0;
16124
16125 msg.escape ("foo\nbar");
16126 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
16127
16128 msg.escape ("\a\b\f\n\r\t\v");
16129 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
16130
16131 /* Now repeat the tests with -fmessage-length set to 5. */
16132 pp_line_cutoff (global_dc->printer) = 5;
16133
16134 /* Note that the newline is not translated into an escape. */
16135 msg.escape ("foo\nbar");
16136 ASSERT_STREQ ("foo\nbar", (const char *) msg);
16137
16138 msg.escape ("\a\b\f\n\r\t\v");
16139 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
16140
16141 /* Restore the original message length setting. */
16142 pp_line_cutoff (global_dc->printer) = saved_cutoff;
16143 }
16144
16145 /* Run all of the selftests within this file. */
16146
16147 void
16148 tree_c_tests ()
16149 {
16150 test_integer_constants ();
16151 test_identifiers ();
16152 test_labels ();
16153 test_vector_cst_patterns ();
16154 test_location_wrappers ();
16155 test_predicates ();
16156 test_escaped_strings ();
16157 }
16158
16159 } // namespace selftest
16160
16161 #endif /* CHECKING_P */
16162
16163 #include "gt-tree.h"