* pt.c (tsubst) [TEMPLATE_TYPE_PARM]: Use TEMPLATE_PARM_DESCENDANTS.
[official-gcc.git] / gcc / tree.c
blob608ca7e5abd9ebb722cf13bc4f5746ba6c661a08
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
25 nodes of that code.
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "target.h"
35 #include "tree.h"
36 #include "gimple.h"
37 #include "tree-pass.h"
38 #include "ssa.h"
39 #include "cgraph.h"
40 #include "diagnostic.h"
41 #include "flags.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "attribs.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "output.h"
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
55 #include "gimplify.h"
56 #include "tree-dfa.h"
57 #include "params.h"
58 #include "langhooks-def.h"
59 #include "tree-diagnostic.h"
60 #include "except.h"
61 #include "builtins.h"
62 #include "print-tree.h"
63 #include "ipa-utils.h"
64 #include "selftest.h"
65 #include "stringpool.h"
66 #include "attribs.h"
67 #include "rtl.h"
68 #include "regs.h"
69 #include "tree-vector-builder.h"
71 /* Tree code classes. */
73 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
74 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76 const enum tree_code_class tree_code_type[] = {
77 #include "all-tree.def"
80 #undef DEFTREECODE
81 #undef END_OF_BASE_TREE_CODES
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
88 #define END_OF_BASE_TREE_CODES 0,
90 const unsigned char tree_code_length[] = {
91 #include "all-tree.def"
94 #undef DEFTREECODE
95 #undef END_OF_BASE_TREE_CODES
97 /* Names of tree components.
98 Used for printing out the tree and error messages. */
99 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 #define END_OF_BASE_TREE_CODES "@dummy",
102 static const char *const tree_code_name[] = {
103 #include "all-tree.def"
106 #undef DEFTREECODE
107 #undef END_OF_BASE_TREE_CODES
109 /* Each tree code class has an associated string representation.
110 These must correspond to the tree_code_class entries. */
112 const char *const tree_code_class_strings[] =
114 "exceptional",
115 "constant",
116 "type",
117 "declaration",
118 "reference",
119 "comparison",
120 "unary",
121 "binary",
122 "statement",
123 "vl_exp",
124 "expression"
127 /* obstack.[ch] explicitly declined to prototype this. */
128 extern int _obstack_allocated_p (struct obstack *h, void *obj);
130 /* Statistics-gathering stuff. */
132 static uint64_t tree_code_counts[MAX_TREE_CODES];
133 uint64_t tree_node_counts[(int) all_kinds];
134 uint64_t tree_node_sizes[(int) all_kinds];
136 /* Keep in sync with tree.h:enum tree_node_kind. */
137 static const char * const tree_node_kind_names[] = {
138 "decls",
139 "types",
140 "blocks",
141 "stmts",
142 "refs",
143 "exprs",
144 "constants",
145 "identifiers",
146 "vecs",
147 "binfos",
148 "ssa names",
149 "constructors",
150 "random kinds",
151 "lang_decl kinds",
152 "lang_type kinds",
153 "omp clauses",
156 /* Unique id for next decl created. */
157 static GTY(()) int next_decl_uid;
158 /* Unique id for next type created. */
159 static GTY(()) unsigned next_type_uid = 1;
160 /* Unique id for next debug decl created. Use negative numbers,
161 to catch erroneous uses. */
162 static GTY(()) int next_debug_decl_uid;
164 /* Since we cannot rehash a type after it is in the table, we have to
165 keep the hash code. */
167 struct GTY((for_user)) type_hash {
168 unsigned long hash;
169 tree type;
172 /* Initial size of the hash table (rounded to next prime). */
173 #define TYPE_HASH_INITIAL_SIZE 1000
175 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
177 static hashval_t hash (type_hash *t) { return t->hash; }
178 static bool equal (type_hash *a, type_hash *b);
180 static int
181 keep_cache_entry (type_hash *&t)
183 return ggc_marked_p (t->type);
187 /* Now here is the hash table. When recording a type, it is added to
188 the slot whose index is the hash code. Note that the hash table is
189 used for several kinds of types (function types, array types and
190 array index range types, for now). While all these live in the
191 same table, they are completely independent, and the hash code is
192 computed differently for each of these. */
194 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
196 /* Hash table and temporary node for larger integer const values. */
197 static GTY (()) tree int_cst_node;
199 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
201 static hashval_t hash (tree t);
202 static bool equal (tree x, tree y);
205 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
207 /* Class and variable for making sure that there is a single POLY_INT_CST
208 for a given value. */
209 struct poly_int_cst_hasher : ggc_cache_ptr_hash<tree_node>
211 typedef std::pair<tree, const poly_wide_int *> compare_type;
212 static hashval_t hash (tree t);
213 static bool equal (tree x, const compare_type &y);
216 static GTY ((cache)) hash_table<poly_int_cst_hasher> *poly_int_cst_hash_table;
218 /* Hash table for optimization flags and target option flags. Use the same
219 hash table for both sets of options. Nodes for building the current
220 optimization and target option nodes. The assumption is most of the time
221 the options created will already be in the hash table, so we avoid
222 allocating and freeing up a node repeatably. */
223 static GTY (()) tree cl_optimization_node;
224 static GTY (()) tree cl_target_option_node;
226 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
228 static hashval_t hash (tree t);
229 static bool equal (tree x, tree y);
232 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
234 /* General tree->tree mapping structure for use in hash tables. */
237 static GTY ((cache))
238 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
240 static GTY ((cache))
241 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
243 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
245 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
247 static bool
248 equal (tree_vec_map *a, tree_vec_map *b)
250 return a->base.from == b->base.from;
253 static int
254 keep_cache_entry (tree_vec_map *&m)
256 return ggc_marked_p (m->base.from);
260 static GTY ((cache))
261 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
263 static void set_type_quals (tree, int);
264 static void print_type_hash_statistics (void);
265 static void print_debug_expr_statistics (void);
266 static void print_value_expr_statistics (void);
268 tree global_trees[TI_MAX];
269 tree integer_types[itk_none];
271 bool int_n_enabled_p[NUM_INT_N_ENTS];
272 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
274 bool tree_contains_struct[MAX_TREE_CODES][64];
276 /* Number of operands for each OpenMP clause. */
277 unsigned const char omp_clause_num_ops[] =
279 0, /* OMP_CLAUSE_ERROR */
280 1, /* OMP_CLAUSE_PRIVATE */
281 1, /* OMP_CLAUSE_SHARED */
282 1, /* OMP_CLAUSE_FIRSTPRIVATE */
283 2, /* OMP_CLAUSE_LASTPRIVATE */
284 5, /* OMP_CLAUSE_REDUCTION */
285 1, /* OMP_CLAUSE_COPYIN */
286 1, /* OMP_CLAUSE_COPYPRIVATE */
287 3, /* OMP_CLAUSE_LINEAR */
288 2, /* OMP_CLAUSE_ALIGNED */
289 1, /* OMP_CLAUSE_DEPEND */
290 1, /* OMP_CLAUSE_UNIFORM */
291 1, /* OMP_CLAUSE_TO_DECLARE */
292 1, /* OMP_CLAUSE_LINK */
293 2, /* OMP_CLAUSE_FROM */
294 2, /* OMP_CLAUSE_TO */
295 2, /* OMP_CLAUSE_MAP */
296 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
297 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
298 2, /* OMP_CLAUSE__CACHE_ */
299 2, /* OMP_CLAUSE_GANG */
300 1, /* OMP_CLAUSE_ASYNC */
301 1, /* OMP_CLAUSE_WAIT */
302 0, /* OMP_CLAUSE_AUTO */
303 0, /* OMP_CLAUSE_SEQ */
304 1, /* OMP_CLAUSE__LOOPTEMP_ */
305 1, /* OMP_CLAUSE_IF */
306 1, /* OMP_CLAUSE_NUM_THREADS */
307 1, /* OMP_CLAUSE_SCHEDULE */
308 0, /* OMP_CLAUSE_NOWAIT */
309 1, /* OMP_CLAUSE_ORDERED */
310 0, /* OMP_CLAUSE_DEFAULT */
311 3, /* OMP_CLAUSE_COLLAPSE */
312 0, /* OMP_CLAUSE_UNTIED */
313 1, /* OMP_CLAUSE_FINAL */
314 0, /* OMP_CLAUSE_MERGEABLE */
315 1, /* OMP_CLAUSE_DEVICE */
316 1, /* OMP_CLAUSE_DIST_SCHEDULE */
317 0, /* OMP_CLAUSE_INBRANCH */
318 0, /* OMP_CLAUSE_NOTINBRANCH */
319 1, /* OMP_CLAUSE_NUM_TEAMS */
320 1, /* OMP_CLAUSE_THREAD_LIMIT */
321 0, /* OMP_CLAUSE_PROC_BIND */
322 1, /* OMP_CLAUSE_SAFELEN */
323 1, /* OMP_CLAUSE_SIMDLEN */
324 0, /* OMP_CLAUSE_FOR */
325 0, /* OMP_CLAUSE_PARALLEL */
326 0, /* OMP_CLAUSE_SECTIONS */
327 0, /* OMP_CLAUSE_TASKGROUP */
328 1, /* OMP_CLAUSE_PRIORITY */
329 1, /* OMP_CLAUSE_GRAINSIZE */
330 1, /* OMP_CLAUSE_NUM_TASKS */
331 0, /* OMP_CLAUSE_NOGROUP */
332 0, /* OMP_CLAUSE_THREADS */
333 0, /* OMP_CLAUSE_SIMD */
334 1, /* OMP_CLAUSE_HINT */
335 0, /* OMP_CLAUSE_DEFALTMAP */
336 1, /* OMP_CLAUSE__SIMDUID_ */
337 0, /* OMP_CLAUSE__SIMT_ */
338 0, /* OMP_CLAUSE_INDEPENDENT */
339 1, /* OMP_CLAUSE_WORKER */
340 1, /* OMP_CLAUSE_VECTOR */
341 1, /* OMP_CLAUSE_NUM_GANGS */
342 1, /* OMP_CLAUSE_NUM_WORKERS */
343 1, /* OMP_CLAUSE_VECTOR_LENGTH */
344 3, /* OMP_CLAUSE_TILE */
345 2, /* OMP_CLAUSE__GRIDDIM_ */
346 0, /* OMP_CLAUSE_IF_PRESENT */
347 0, /* OMP_CLAUSE_FINALIZE */
350 const char * const omp_clause_code_name[] =
352 "error_clause",
353 "private",
354 "shared",
355 "firstprivate",
356 "lastprivate",
357 "reduction",
358 "copyin",
359 "copyprivate",
360 "linear",
361 "aligned",
362 "depend",
363 "uniform",
364 "to",
365 "link",
366 "from",
367 "to",
368 "map",
369 "use_device_ptr",
370 "is_device_ptr",
371 "_cache_",
372 "gang",
373 "async",
374 "wait",
375 "auto",
376 "seq",
377 "_looptemp_",
378 "if",
379 "num_threads",
380 "schedule",
381 "nowait",
382 "ordered",
383 "default",
384 "collapse",
385 "untied",
386 "final",
387 "mergeable",
388 "device",
389 "dist_schedule",
390 "inbranch",
391 "notinbranch",
392 "num_teams",
393 "thread_limit",
394 "proc_bind",
395 "safelen",
396 "simdlen",
397 "for",
398 "parallel",
399 "sections",
400 "taskgroup",
401 "priority",
402 "grainsize",
403 "num_tasks",
404 "nogroup",
405 "threads",
406 "simd",
407 "hint",
408 "defaultmap",
409 "_simduid_",
410 "_simt_",
411 "independent",
412 "worker",
413 "vector",
414 "num_gangs",
415 "num_workers",
416 "vector_length",
417 "tile",
418 "_griddim_",
419 "if_present",
420 "finalize",
424 /* Return the tree node structure used by tree code CODE. */
426 static inline enum tree_node_structure_enum
427 tree_node_structure_for_code (enum tree_code code)
429 switch (TREE_CODE_CLASS (code))
431 case tcc_declaration:
433 switch (code)
435 case FIELD_DECL:
436 return TS_FIELD_DECL;
437 case PARM_DECL:
438 return TS_PARM_DECL;
439 case VAR_DECL:
440 return TS_VAR_DECL;
441 case LABEL_DECL:
442 return TS_LABEL_DECL;
443 case RESULT_DECL:
444 return TS_RESULT_DECL;
445 case DEBUG_EXPR_DECL:
446 return TS_DECL_WRTL;
447 case CONST_DECL:
448 return TS_CONST_DECL;
449 case TYPE_DECL:
450 return TS_TYPE_DECL;
451 case FUNCTION_DECL:
452 return TS_FUNCTION_DECL;
453 case TRANSLATION_UNIT_DECL:
454 return TS_TRANSLATION_UNIT_DECL;
455 default:
456 return TS_DECL_NON_COMMON;
459 case tcc_type:
460 return TS_TYPE_NON_COMMON;
461 case tcc_reference:
462 case tcc_comparison:
463 case tcc_unary:
464 case tcc_binary:
465 case tcc_expression:
466 case tcc_statement:
467 case tcc_vl_exp:
468 return TS_EXP;
469 default: /* tcc_constant and tcc_exceptional */
470 break;
472 switch (code)
474 /* tcc_constant cases. */
475 case VOID_CST: return TS_TYPED;
476 case INTEGER_CST: return TS_INT_CST;
477 case POLY_INT_CST: return TS_POLY_INT_CST;
478 case REAL_CST: return TS_REAL_CST;
479 case FIXED_CST: return TS_FIXED_CST;
480 case COMPLEX_CST: return TS_COMPLEX;
481 case VECTOR_CST: return TS_VECTOR;
482 case STRING_CST: return TS_STRING;
483 /* tcc_exceptional cases. */
484 case ERROR_MARK: return TS_COMMON;
485 case IDENTIFIER_NODE: return TS_IDENTIFIER;
486 case TREE_LIST: return TS_LIST;
487 case TREE_VEC: return TS_VEC;
488 case SSA_NAME: return TS_SSA_NAME;
489 case PLACEHOLDER_EXPR: return TS_COMMON;
490 case STATEMENT_LIST: return TS_STATEMENT_LIST;
491 case BLOCK: return TS_BLOCK;
492 case CONSTRUCTOR: return TS_CONSTRUCTOR;
493 case TREE_BINFO: return TS_BINFO;
494 case OMP_CLAUSE: return TS_OMP_CLAUSE;
495 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
496 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
498 default:
499 gcc_unreachable ();
504 /* Initialize tree_contains_struct to describe the hierarchy of tree
505 nodes. */
507 static void
508 initialize_tree_contains_struct (void)
510 unsigned i;
512 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
514 enum tree_code code;
515 enum tree_node_structure_enum ts_code;
517 code = (enum tree_code) i;
518 ts_code = tree_node_structure_for_code (code);
520 /* Mark the TS structure itself. */
521 tree_contains_struct[code][ts_code] = 1;
523 /* Mark all the structures that TS is derived from. */
524 switch (ts_code)
526 case TS_TYPED:
527 case TS_BLOCK:
528 case TS_OPTIMIZATION:
529 case TS_TARGET_OPTION:
530 MARK_TS_BASE (code);
531 break;
533 case TS_COMMON:
534 case TS_INT_CST:
535 case TS_POLY_INT_CST:
536 case TS_REAL_CST:
537 case TS_FIXED_CST:
538 case TS_VECTOR:
539 case TS_STRING:
540 case TS_COMPLEX:
541 case TS_SSA_NAME:
542 case TS_CONSTRUCTOR:
543 case TS_EXP:
544 case TS_STATEMENT_LIST:
545 MARK_TS_TYPED (code);
546 break;
548 case TS_IDENTIFIER:
549 case TS_DECL_MINIMAL:
550 case TS_TYPE_COMMON:
551 case TS_LIST:
552 case TS_VEC:
553 case TS_BINFO:
554 case TS_OMP_CLAUSE:
555 MARK_TS_COMMON (code);
556 break;
558 case TS_TYPE_WITH_LANG_SPECIFIC:
559 MARK_TS_TYPE_COMMON (code);
560 break;
562 case TS_TYPE_NON_COMMON:
563 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
564 break;
566 case TS_DECL_COMMON:
567 MARK_TS_DECL_MINIMAL (code);
568 break;
570 case TS_DECL_WRTL:
571 case TS_CONST_DECL:
572 MARK_TS_DECL_COMMON (code);
573 break;
575 case TS_DECL_NON_COMMON:
576 MARK_TS_DECL_WITH_VIS (code);
577 break;
579 case TS_DECL_WITH_VIS:
580 case TS_PARM_DECL:
581 case TS_LABEL_DECL:
582 case TS_RESULT_DECL:
583 MARK_TS_DECL_WRTL (code);
584 break;
586 case TS_FIELD_DECL:
587 MARK_TS_DECL_COMMON (code);
588 break;
590 case TS_VAR_DECL:
591 MARK_TS_DECL_WITH_VIS (code);
592 break;
594 case TS_TYPE_DECL:
595 case TS_FUNCTION_DECL:
596 MARK_TS_DECL_NON_COMMON (code);
597 break;
599 case TS_TRANSLATION_UNIT_DECL:
600 MARK_TS_DECL_COMMON (code);
601 break;
603 default:
604 gcc_unreachable ();
608 /* Basic consistency checks for attributes used in fold. */
609 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
610 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
611 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
612 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
613 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
614 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
615 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
616 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
617 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
618 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
619 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
620 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
621 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
622 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
623 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
624 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
625 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
626 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
627 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
628 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
629 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
630 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
631 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
632 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
633 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
634 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
635 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
636 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
637 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
638 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
639 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
640 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
641 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
642 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
643 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
644 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
645 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
646 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
647 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
648 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
652 /* Init tree.c. */
654 void
655 init_ttree (void)
657 /* Initialize the hash table of types. */
658 type_hash_table
659 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
661 debug_expr_for_decl
662 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
664 value_expr_for_decl
665 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
667 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
669 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
671 int_cst_node = make_int_cst (1, 1);
673 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
675 cl_optimization_node = make_node (OPTIMIZATION_NODE);
676 cl_target_option_node = make_node (TARGET_OPTION_NODE);
678 /* Initialize the tree_contains_struct array. */
679 initialize_tree_contains_struct ();
680 lang_hooks.init_ts ();
684 /* The name of the object as the assembler will see it (but before any
685 translations made by ASM_OUTPUT_LABELREF). Often this is the same
686 as DECL_NAME. It is an IDENTIFIER_NODE. */
687 tree
688 decl_assembler_name (tree decl)
690 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
691 lang_hooks.set_decl_assembler_name (decl);
692 return DECL_ASSEMBLER_NAME_RAW (decl);
695 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
696 (either of which may be NULL). Inform the FE, if this changes the
697 name. */
699 void
700 overwrite_decl_assembler_name (tree decl, tree name)
702 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
703 lang_hooks.overwrite_decl_assembler_name (decl, name);
706 /* When the target supports COMDAT groups, this indicates which group the
707 DECL is associated with. This can be either an IDENTIFIER_NODE or a
708 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
709 tree
710 decl_comdat_group (const_tree node)
712 struct symtab_node *snode = symtab_node::get (node);
713 if (!snode)
714 return NULL;
715 return snode->get_comdat_group ();
718 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
719 tree
720 decl_comdat_group_id (const_tree node)
722 struct symtab_node *snode = symtab_node::get (node);
723 if (!snode)
724 return NULL;
725 return snode->get_comdat_group_id ();
728 /* When the target supports named section, return its name as IDENTIFIER_NODE
729 or NULL if it is in no section. */
730 const char *
731 decl_section_name (const_tree node)
733 struct symtab_node *snode = symtab_node::get (node);
734 if (!snode)
735 return NULL;
736 return snode->get_section ();
739 /* Set section name of NODE to VALUE (that is expected to be
740 identifier node) */
741 void
742 set_decl_section_name (tree node, const char *value)
744 struct symtab_node *snode;
746 if (value == NULL)
748 snode = symtab_node::get (node);
749 if (!snode)
750 return;
752 else if (VAR_P (node))
753 snode = varpool_node::get_create (node);
754 else
755 snode = cgraph_node::get_create (node);
756 snode->set_section (value);
759 /* Return TLS model of a variable NODE. */
760 enum tls_model
761 decl_tls_model (const_tree node)
763 struct varpool_node *snode = varpool_node::get (node);
764 if (!snode)
765 return TLS_MODEL_NONE;
766 return snode->tls_model;
769 /* Set TLS model of variable NODE to MODEL. */
770 void
771 set_decl_tls_model (tree node, enum tls_model model)
773 struct varpool_node *vnode;
775 if (model == TLS_MODEL_NONE)
777 vnode = varpool_node::get (node);
778 if (!vnode)
779 return;
781 else
782 vnode = varpool_node::get_create (node);
783 vnode->tls_model = model;
786 /* Compute the number of bytes occupied by a tree with code CODE.
787 This function cannot be used for nodes that have variable sizes,
788 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
789 size_t
790 tree_code_size (enum tree_code code)
792 switch (TREE_CODE_CLASS (code))
794 case tcc_declaration: /* A decl node */
795 switch (code)
797 case FIELD_DECL: return sizeof (tree_field_decl);
798 case PARM_DECL: return sizeof (tree_parm_decl);
799 case VAR_DECL: return sizeof (tree_var_decl);
800 case LABEL_DECL: return sizeof (tree_label_decl);
801 case RESULT_DECL: return sizeof (tree_result_decl);
802 case CONST_DECL: return sizeof (tree_const_decl);
803 case TYPE_DECL: return sizeof (tree_type_decl);
804 case FUNCTION_DECL: return sizeof (tree_function_decl);
805 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
806 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
807 case NAMESPACE_DECL:
808 case IMPORTED_DECL:
809 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
810 default:
811 gcc_checking_assert (code >= NUM_TREE_CODES);
812 return lang_hooks.tree_size (code);
815 case tcc_type: /* a type node */
816 switch (code)
818 case OFFSET_TYPE:
819 case ENUMERAL_TYPE:
820 case BOOLEAN_TYPE:
821 case INTEGER_TYPE:
822 case REAL_TYPE:
823 case POINTER_TYPE:
824 case REFERENCE_TYPE:
825 case NULLPTR_TYPE:
826 case FIXED_POINT_TYPE:
827 case COMPLEX_TYPE:
828 case VECTOR_TYPE:
829 case ARRAY_TYPE:
830 case RECORD_TYPE:
831 case UNION_TYPE:
832 case QUAL_UNION_TYPE:
833 case VOID_TYPE:
834 case FUNCTION_TYPE:
835 case METHOD_TYPE:
836 case LANG_TYPE: return sizeof (tree_type_non_common);
837 default:
838 gcc_checking_assert (code >= NUM_TREE_CODES);
839 return lang_hooks.tree_size (code);
842 case tcc_reference: /* a reference */
843 case tcc_expression: /* an expression */
844 case tcc_statement: /* an expression with side effects */
845 case tcc_comparison: /* a comparison expression */
846 case tcc_unary: /* a unary arithmetic expression */
847 case tcc_binary: /* a binary arithmetic expression */
848 return (sizeof (struct tree_exp)
849 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
851 case tcc_constant: /* a constant */
852 switch (code)
854 case VOID_CST: return sizeof (tree_typed);
855 case INTEGER_CST: gcc_unreachable ();
856 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
857 case REAL_CST: return sizeof (tree_real_cst);
858 case FIXED_CST: return sizeof (tree_fixed_cst);
859 case COMPLEX_CST: return sizeof (tree_complex);
860 case VECTOR_CST: gcc_unreachable ();
861 case STRING_CST: gcc_unreachable ();
862 default:
863 gcc_checking_assert (code >= NUM_TREE_CODES);
864 return lang_hooks.tree_size (code);
867 case tcc_exceptional: /* something random, like an identifier. */
868 switch (code)
870 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
871 case TREE_LIST: return sizeof (tree_list);
873 case ERROR_MARK:
874 case PLACEHOLDER_EXPR: return sizeof (tree_common);
876 case TREE_VEC: gcc_unreachable ();
877 case OMP_CLAUSE: gcc_unreachable ();
879 case SSA_NAME: return sizeof (tree_ssa_name);
881 case STATEMENT_LIST: return sizeof (tree_statement_list);
882 case BLOCK: return sizeof (struct tree_block);
883 case CONSTRUCTOR: return sizeof (tree_constructor);
884 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
885 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
887 default:
888 gcc_checking_assert (code >= NUM_TREE_CODES);
889 return lang_hooks.tree_size (code);
892 default:
893 gcc_unreachable ();
897 /* Compute the number of bytes occupied by NODE. This routine only
898 looks at TREE_CODE, except for those nodes that have variable sizes. */
899 size_t
900 tree_size (const_tree node)
902 const enum tree_code code = TREE_CODE (node);
903 switch (code)
905 case INTEGER_CST:
906 return (sizeof (struct tree_int_cst)
907 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
909 case TREE_BINFO:
910 return (offsetof (struct tree_binfo, base_binfos)
911 + vec<tree, va_gc>
912 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
914 case TREE_VEC:
915 return (sizeof (struct tree_vec)
916 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
918 case VECTOR_CST:
919 return (sizeof (struct tree_vector)
920 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
922 case STRING_CST:
923 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
925 case OMP_CLAUSE:
926 return (sizeof (struct tree_omp_clause)
927 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
928 * sizeof (tree));
930 default:
931 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
932 return (sizeof (struct tree_exp)
933 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
934 else
935 return tree_code_size (code);
939 /* Return tree node kind based on tree CODE. */
941 static tree_node_kind
942 get_stats_node_kind (enum tree_code code)
944 enum tree_code_class type = TREE_CODE_CLASS (code);
946 switch (type)
948 case tcc_declaration: /* A decl node */
949 return d_kind;
950 case tcc_type: /* a type node */
951 return t_kind;
952 case tcc_statement: /* an expression with side effects */
953 return s_kind;
954 case tcc_reference: /* a reference */
955 return r_kind;
956 case tcc_expression: /* an expression */
957 case tcc_comparison: /* a comparison expression */
958 case tcc_unary: /* a unary arithmetic expression */
959 case tcc_binary: /* a binary arithmetic expression */
960 return e_kind;
961 case tcc_constant: /* a constant */
962 return c_kind;
963 case tcc_exceptional: /* something random, like an identifier. */
964 switch (code)
966 case IDENTIFIER_NODE:
967 return id_kind;
968 case TREE_VEC:
969 return vec_kind;
970 case TREE_BINFO:
971 return binfo_kind;
972 case SSA_NAME:
973 return ssa_name_kind;
974 case BLOCK:
975 return b_kind;
976 case CONSTRUCTOR:
977 return constr_kind;
978 case OMP_CLAUSE:
979 return omp_clause_kind;
980 default:
981 return x_kind;
983 break;
984 case tcc_vl_exp:
985 return e_kind;
986 default:
987 gcc_unreachable ();
991 /* Record interesting allocation statistics for a tree node with CODE
992 and LENGTH. */
994 static void
995 record_node_allocation_statistics (enum tree_code code, size_t length)
997 if (!GATHER_STATISTICS)
998 return;
1000 tree_node_kind kind = get_stats_node_kind (code);
1002 tree_code_counts[(int) code]++;
1003 tree_node_counts[(int) kind]++;
1004 tree_node_sizes[(int) kind] += length;
1007 /* Allocate and return a new UID from the DECL_UID namespace. */
1010 allocate_decl_uid (void)
1012 return next_decl_uid++;
1015 /* Return a newly allocated node of code CODE. For decl and type
1016 nodes, some other fields are initialized. The rest of the node is
1017 initialized to zero. This function cannot be used for TREE_VEC,
1018 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1019 tree_code_size.
1021 Achoo! I got a code in the node. */
1023 tree
1024 make_node (enum tree_code code MEM_STAT_DECL)
1026 tree t;
1027 enum tree_code_class type = TREE_CODE_CLASS (code);
1028 size_t length = tree_code_size (code);
1030 record_node_allocation_statistics (code, length);
1032 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1033 TREE_SET_CODE (t, code);
1035 switch (type)
1037 case tcc_statement:
1038 if (code != DEBUG_BEGIN_STMT)
1039 TREE_SIDE_EFFECTS (t) = 1;
1040 break;
1042 case tcc_declaration:
1043 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1045 if (code == FUNCTION_DECL)
1047 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1048 SET_DECL_MODE (t, FUNCTION_MODE);
1050 else
1051 SET_DECL_ALIGN (t, 1);
1053 DECL_SOURCE_LOCATION (t) = input_location;
1054 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1055 DECL_UID (t) = --next_debug_decl_uid;
1056 else
1058 DECL_UID (t) = allocate_decl_uid ();
1059 SET_DECL_PT_UID (t, -1);
1061 if (TREE_CODE (t) == LABEL_DECL)
1062 LABEL_DECL_UID (t) = -1;
1064 break;
1066 case tcc_type:
1067 TYPE_UID (t) = next_type_uid++;
1068 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1069 TYPE_USER_ALIGN (t) = 0;
1070 TYPE_MAIN_VARIANT (t) = t;
1071 TYPE_CANONICAL (t) = t;
1073 /* Default to no attributes for type, but let target change that. */
1074 TYPE_ATTRIBUTES (t) = NULL_TREE;
1075 targetm.set_default_type_attributes (t);
1077 /* We have not yet computed the alias set for this type. */
1078 TYPE_ALIAS_SET (t) = -1;
1079 break;
1081 case tcc_constant:
1082 TREE_CONSTANT (t) = 1;
1083 break;
1085 case tcc_expression:
1086 switch (code)
1088 case INIT_EXPR:
1089 case MODIFY_EXPR:
1090 case VA_ARG_EXPR:
1091 case PREDECREMENT_EXPR:
1092 case PREINCREMENT_EXPR:
1093 case POSTDECREMENT_EXPR:
1094 case POSTINCREMENT_EXPR:
1095 /* All of these have side-effects, no matter what their
1096 operands are. */
1097 TREE_SIDE_EFFECTS (t) = 1;
1098 break;
1100 default:
1101 break;
1103 break;
1105 case tcc_exceptional:
1106 switch (code)
1108 case TARGET_OPTION_NODE:
1109 TREE_TARGET_OPTION(t)
1110 = ggc_cleared_alloc<struct cl_target_option> ();
1111 break;
1113 case OPTIMIZATION_NODE:
1114 TREE_OPTIMIZATION (t)
1115 = ggc_cleared_alloc<struct cl_optimization> ();
1116 break;
1118 default:
1119 break;
1121 break;
1123 default:
1124 /* Other classes need no special treatment. */
1125 break;
1128 return t;
1131 /* Free tree node. */
1133 void
1134 free_node (tree node)
1136 enum tree_code code = TREE_CODE (node);
1137 if (GATHER_STATISTICS)
1139 enum tree_node_kind kind = get_stats_node_kind (code);
1141 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1142 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1143 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1145 tree_code_counts[(int) TREE_CODE (node)]--;
1146 tree_node_counts[(int) kind]--;
1147 tree_node_sizes[(int) kind] -= tree_size (node);
1149 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1150 vec_free (CONSTRUCTOR_ELTS (node));
1151 else if (code == BLOCK)
1152 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1153 else if (code == TREE_BINFO)
1154 vec_free (BINFO_BASE_ACCESSES (node));
1155 ggc_free (node);
1158 /* Return a new node with the same contents as NODE except that its
1159 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1161 tree
1162 copy_node (tree node MEM_STAT_DECL)
1164 tree t;
1165 enum tree_code code = TREE_CODE (node);
1166 size_t length;
1168 gcc_assert (code != STATEMENT_LIST);
1170 length = tree_size (node);
1171 record_node_allocation_statistics (code, length);
1172 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1173 memcpy (t, node, length);
1175 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1176 TREE_CHAIN (t) = 0;
1177 TREE_ASM_WRITTEN (t) = 0;
1178 TREE_VISITED (t) = 0;
1180 if (TREE_CODE_CLASS (code) == tcc_declaration)
1182 if (code == DEBUG_EXPR_DECL)
1183 DECL_UID (t) = --next_debug_decl_uid;
1184 else
1186 DECL_UID (t) = allocate_decl_uid ();
1187 if (DECL_PT_UID_SET_P (node))
1188 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1190 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1191 && DECL_HAS_VALUE_EXPR_P (node))
1193 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1194 DECL_HAS_VALUE_EXPR_P (t) = 1;
1196 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1197 if (VAR_P (node))
1199 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1200 t->decl_with_vis.symtab_node = NULL;
1202 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1204 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1205 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1207 if (TREE_CODE (node) == FUNCTION_DECL)
1209 DECL_STRUCT_FUNCTION (t) = NULL;
1210 t->decl_with_vis.symtab_node = NULL;
1213 else if (TREE_CODE_CLASS (code) == tcc_type)
1215 TYPE_UID (t) = next_type_uid++;
1216 /* The following is so that the debug code for
1217 the copy is different from the original type.
1218 The two statements usually duplicate each other
1219 (because they clear fields of the same union),
1220 but the optimizer should catch that. */
1221 TYPE_SYMTAB_ADDRESS (t) = 0;
1222 TYPE_SYMTAB_DIE (t) = 0;
1224 /* Do not copy the values cache. */
1225 if (TYPE_CACHED_VALUES_P (t))
1227 TYPE_CACHED_VALUES_P (t) = 0;
1228 TYPE_CACHED_VALUES (t) = NULL_TREE;
1231 else if (code == TARGET_OPTION_NODE)
1233 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1234 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1235 sizeof (struct cl_target_option));
1237 else if (code == OPTIMIZATION_NODE)
1239 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1240 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1241 sizeof (struct cl_optimization));
1244 return t;
1247 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1248 For example, this can copy a list made of TREE_LIST nodes. */
1250 tree
1251 copy_list (tree list)
1253 tree head;
1254 tree prev, next;
1256 if (list == 0)
1257 return 0;
1259 head = prev = copy_node (list);
1260 next = TREE_CHAIN (list);
1261 while (next)
1263 TREE_CHAIN (prev) = copy_node (next);
1264 prev = TREE_CHAIN (prev);
1265 next = TREE_CHAIN (next);
1267 return head;
1271 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1272 INTEGER_CST with value CST and type TYPE. */
1274 static unsigned int
1275 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1277 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1278 /* We need extra HWIs if CST is an unsigned integer with its
1279 upper bit set. */
1280 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1281 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1282 return cst.get_len ();
1285 /* Return a new INTEGER_CST with value CST and type TYPE. */
1287 static tree
1288 build_new_int_cst (tree type, const wide_int &cst)
1290 unsigned int len = cst.get_len ();
1291 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1292 tree nt = make_int_cst (len, ext_len);
1294 if (len < ext_len)
1296 --ext_len;
1297 TREE_INT_CST_ELT (nt, ext_len)
1298 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1299 for (unsigned int i = len; i < ext_len; ++i)
1300 TREE_INT_CST_ELT (nt, i) = -1;
1302 else if (TYPE_UNSIGNED (type)
1303 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1305 len--;
1306 TREE_INT_CST_ELT (nt, len)
1307 = zext_hwi (cst.elt (len),
1308 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1311 for (unsigned int i = 0; i < len; i++)
1312 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1313 TREE_TYPE (nt) = type;
1314 return nt;
1317 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1319 static tree
1320 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1321 CXX_MEM_STAT_INFO)
1323 size_t length = sizeof (struct tree_poly_int_cst);
1324 record_node_allocation_statistics (POLY_INT_CST, length);
1326 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1328 TREE_SET_CODE (t, POLY_INT_CST);
1329 TREE_CONSTANT (t) = 1;
1330 TREE_TYPE (t) = type;
1331 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1332 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1333 return t;
1336 /* Create a constant tree that contains CST sign-extended to TYPE. */
1338 tree
1339 build_int_cst (tree type, poly_int64 cst)
1341 /* Support legacy code. */
1342 if (!type)
1343 type = integer_type_node;
1345 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1348 /* Create a constant tree that contains CST zero-extended to TYPE. */
1350 tree
1351 build_int_cstu (tree type, poly_uint64 cst)
1353 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1356 /* Create a constant tree that contains CST sign-extended to TYPE. */
1358 tree
1359 build_int_cst_type (tree type, poly_int64 cst)
1361 gcc_assert (type);
1362 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1365 /* Constructs tree in type TYPE from with value given by CST. Signedness
1366 of CST is assumed to be the same as the signedness of TYPE. */
1368 tree
1369 double_int_to_tree (tree type, double_int cst)
1371 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1374 /* We force the wide_int CST to the range of the type TYPE by sign or
1375 zero extending it. OVERFLOWABLE indicates if we are interested in
1376 overflow of the value, when >0 we are only interested in signed
1377 overflow, for <0 we are interested in any overflow. OVERFLOWED
1378 indicates whether overflow has already occurred. CONST_OVERFLOWED
1379 indicates whether constant overflow has already occurred. We force
1380 T's value to be within range of T's type (by setting to 0 or 1 all
1381 the bits outside the type's range). We set TREE_OVERFLOWED if,
1382 OVERFLOWED is nonzero,
1383 or OVERFLOWABLE is >0 and signed overflow occurs
1384 or OVERFLOWABLE is <0 and any overflow occurs
1385 We return a new tree node for the extended wide_int. The node
1386 is shared if no overflow flags are set. */
1389 tree
1390 force_fit_type (tree type, const poly_wide_int_ref &cst,
1391 int overflowable, bool overflowed)
1393 signop sign = TYPE_SIGN (type);
1395 /* If we need to set overflow flags, return a new unshared node. */
1396 if (overflowed || !wi::fits_to_tree_p (cst, type))
1398 if (overflowed
1399 || overflowable < 0
1400 || (overflowable > 0 && sign == SIGNED))
1402 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1403 sign);
1404 tree t;
1405 if (tmp.is_constant ())
1406 t = build_new_int_cst (type, tmp.coeffs[0]);
1407 else
1409 tree coeffs[NUM_POLY_INT_COEFFS];
1410 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1412 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1413 TREE_OVERFLOW (coeffs[i]) = 1;
1415 t = build_new_poly_int_cst (type, coeffs);
1417 TREE_OVERFLOW (t) = 1;
1418 return t;
1422 /* Else build a shared node. */
1423 return wide_int_to_tree (type, cst);
1426 /* These are the hash table functions for the hash table of INTEGER_CST
1427 nodes of a sizetype. */
1429 /* Return the hash code X, an INTEGER_CST. */
1431 hashval_t
1432 int_cst_hasher::hash (tree x)
1434 const_tree const t = x;
1435 hashval_t code = TYPE_UID (TREE_TYPE (t));
1436 int i;
1438 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1439 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1441 return code;
1444 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1445 is the same as that given by *Y, which is the same. */
1447 bool
1448 int_cst_hasher::equal (tree x, tree y)
1450 const_tree const xt = x;
1451 const_tree const yt = y;
1453 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1454 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1455 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1456 return false;
1458 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1459 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1460 return false;
1462 return true;
1465 /* Create an INT_CST node of TYPE and value CST.
1466 The returned node is always shared. For small integers we use a
1467 per-type vector cache, for larger ones we use a single hash table.
1468 The value is extended from its precision according to the sign of
1469 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1470 the upper bits and ensures that hashing and value equality based
1471 upon the underlying HOST_WIDE_INTs works without masking. */
1473 static tree
1474 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1476 tree t;
1477 int ix = -1;
1478 int limit = 0;
1480 gcc_assert (type);
1481 unsigned int prec = TYPE_PRECISION (type);
1482 signop sgn = TYPE_SIGN (type);
1484 /* Verify that everything is canonical. */
1485 int l = pcst.get_len ();
1486 if (l > 1)
1488 if (pcst.elt (l - 1) == 0)
1489 gcc_checking_assert (pcst.elt (l - 2) < 0);
1490 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1491 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1494 wide_int cst = wide_int::from (pcst, prec, sgn);
1495 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1497 if (ext_len == 1)
1499 /* We just need to store a single HOST_WIDE_INT. */
1500 HOST_WIDE_INT hwi;
1501 if (TYPE_UNSIGNED (type))
1502 hwi = cst.to_uhwi ();
1503 else
1504 hwi = cst.to_shwi ();
1506 switch (TREE_CODE (type))
1508 case NULLPTR_TYPE:
1509 gcc_assert (hwi == 0);
1510 /* Fallthru. */
1512 case POINTER_TYPE:
1513 case REFERENCE_TYPE:
1514 /* Cache NULL pointer and zero bounds. */
1515 if (hwi == 0)
1517 limit = 1;
1518 ix = 0;
1520 break;
1522 case BOOLEAN_TYPE:
1523 /* Cache false or true. */
1524 limit = 2;
1525 if (IN_RANGE (hwi, 0, 1))
1526 ix = hwi;
1527 break;
1529 case INTEGER_TYPE:
1530 case OFFSET_TYPE:
1531 if (TYPE_SIGN (type) == UNSIGNED)
1533 /* Cache [0, N). */
1534 limit = INTEGER_SHARE_LIMIT;
1535 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1536 ix = hwi;
1538 else
1540 /* Cache [-1, N). */
1541 limit = INTEGER_SHARE_LIMIT + 1;
1542 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1543 ix = hwi + 1;
1545 break;
1547 case ENUMERAL_TYPE:
1548 break;
1550 default:
1551 gcc_unreachable ();
1554 if (ix >= 0)
1556 /* Look for it in the type's vector of small shared ints. */
1557 if (!TYPE_CACHED_VALUES_P (type))
1559 TYPE_CACHED_VALUES_P (type) = 1;
1560 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1563 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1564 if (t)
1565 /* Make sure no one is clobbering the shared constant. */
1566 gcc_checking_assert (TREE_TYPE (t) == type
1567 && TREE_INT_CST_NUNITS (t) == 1
1568 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1569 && TREE_INT_CST_EXT_NUNITS (t) == 1
1570 && TREE_INT_CST_ELT (t, 0) == hwi);
1571 else
1573 /* Create a new shared int. */
1574 t = build_new_int_cst (type, cst);
1575 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1578 else
1580 /* Use the cache of larger shared ints, using int_cst_node as
1581 a temporary. */
1583 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1584 TREE_TYPE (int_cst_node) = type;
1586 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1587 t = *slot;
1588 if (!t)
1590 /* Insert this one into the hash table. */
1591 t = int_cst_node;
1592 *slot = t;
1593 /* Make a new node for next time round. */
1594 int_cst_node = make_int_cst (1, 1);
1598 else
1600 /* The value either hashes properly or we drop it on the floor
1601 for the gc to take care of. There will not be enough of them
1602 to worry about. */
1604 tree nt = build_new_int_cst (type, cst);
1605 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1606 t = *slot;
1607 if (!t)
1609 /* Insert this one into the hash table. */
1610 t = nt;
1611 *slot = t;
1613 else
1614 ggc_free (nt);
1617 return t;
1620 hashval_t
1621 poly_int_cst_hasher::hash (tree t)
1623 inchash::hash hstate;
1625 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1626 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1627 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1629 return hstate.end ();
1632 bool
1633 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1635 if (TREE_TYPE (x) != y.first)
1636 return false;
1637 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1638 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1639 return false;
1640 return true;
1643 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1644 The elements must also have type TYPE. */
1646 tree
1647 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1649 unsigned int prec = TYPE_PRECISION (type);
1650 gcc_assert (prec <= values.coeffs[0].get_precision ());
1651 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1653 inchash::hash h;
1654 h.add_int (TYPE_UID (type));
1655 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1656 h.add_wide_int (c.coeffs[i]);
1657 poly_int_cst_hasher::compare_type comp (type, &c);
1658 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1659 INSERT);
1660 if (*slot == NULL_TREE)
1662 tree coeffs[NUM_POLY_INT_COEFFS];
1663 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1664 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1665 *slot = build_new_poly_int_cst (type, coeffs);
1667 return *slot;
1670 /* Create a constant tree with value VALUE in type TYPE. */
1672 tree
1673 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1675 if (value.is_constant ())
1676 return wide_int_to_tree_1 (type, value.coeffs[0]);
1677 return build_poly_int_cst (type, value);
1680 void
1681 cache_integer_cst (tree t)
1683 tree type = TREE_TYPE (t);
1684 int ix = -1;
1685 int limit = 0;
1686 int prec = TYPE_PRECISION (type);
1688 gcc_assert (!TREE_OVERFLOW (t));
1690 switch (TREE_CODE (type))
1692 case NULLPTR_TYPE:
1693 gcc_assert (integer_zerop (t));
1694 /* Fallthru. */
1696 case POINTER_TYPE:
1697 case REFERENCE_TYPE:
1698 /* Cache NULL pointer. */
1699 if (integer_zerop (t))
1701 limit = 1;
1702 ix = 0;
1704 break;
1706 case BOOLEAN_TYPE:
1707 /* Cache false or true. */
1708 limit = 2;
1709 if (wi::ltu_p (wi::to_wide (t), 2))
1710 ix = TREE_INT_CST_ELT (t, 0);
1711 break;
1713 case INTEGER_TYPE:
1714 case OFFSET_TYPE:
1715 if (TYPE_UNSIGNED (type))
1717 /* Cache 0..N */
1718 limit = INTEGER_SHARE_LIMIT;
1720 /* This is a little hokie, but if the prec is smaller than
1721 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1722 obvious test will not get the correct answer. */
1723 if (prec < HOST_BITS_PER_WIDE_INT)
1725 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1726 ix = tree_to_uhwi (t);
1728 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1729 ix = tree_to_uhwi (t);
1731 else
1733 /* Cache -1..N */
1734 limit = INTEGER_SHARE_LIMIT + 1;
1736 if (integer_minus_onep (t))
1737 ix = 0;
1738 else if (!wi::neg_p (wi::to_wide (t)))
1740 if (prec < HOST_BITS_PER_WIDE_INT)
1742 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1743 ix = tree_to_shwi (t) + 1;
1745 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1746 ix = tree_to_shwi (t) + 1;
1749 break;
1751 case ENUMERAL_TYPE:
1752 break;
1754 default:
1755 gcc_unreachable ();
1758 if (ix >= 0)
1760 /* Look for it in the type's vector of small shared ints. */
1761 if (!TYPE_CACHED_VALUES_P (type))
1763 TYPE_CACHED_VALUES_P (type) = 1;
1764 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1767 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1768 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1770 else
1772 /* Use the cache of larger shared ints. */
1773 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1774 /* If there is already an entry for the number verify it's the
1775 same. */
1776 if (*slot)
1777 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1778 else
1779 /* Otherwise insert this one into the hash table. */
1780 *slot = t;
1785 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1786 and the rest are zeros. */
1788 tree
1789 build_low_bits_mask (tree type, unsigned bits)
1791 gcc_assert (bits <= TYPE_PRECISION (type));
1793 return wide_int_to_tree (type, wi::mask (bits, false,
1794 TYPE_PRECISION (type)));
1797 /* Checks that X is integer constant that can be expressed in (unsigned)
1798 HOST_WIDE_INT without loss of precision. */
1800 bool
1801 cst_and_fits_in_hwi (const_tree x)
1803 return (TREE_CODE (x) == INTEGER_CST
1804 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1807 /* Build a newly constructed VECTOR_CST with the given values of
1808 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1810 tree
1811 make_vector (unsigned log2_npatterns,
1812 unsigned int nelts_per_pattern MEM_STAT_DECL)
1814 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1815 tree t;
1816 unsigned npatterns = 1 << log2_npatterns;
1817 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1818 unsigned length = (sizeof (struct tree_vector)
1819 + (encoded_nelts - 1) * sizeof (tree));
1821 record_node_allocation_statistics (VECTOR_CST, length);
1823 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1825 TREE_SET_CODE (t, VECTOR_CST);
1826 TREE_CONSTANT (t) = 1;
1827 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1828 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1830 return t;
1833 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1834 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1836 tree
1837 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1839 unsigned HOST_WIDE_INT idx, nelts;
1840 tree value;
1842 /* We can't construct a VECTOR_CST for a variable number of elements. */
1843 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1844 tree_vector_builder vec (type, nelts, 1);
1845 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1847 if (TREE_CODE (value) == VECTOR_CST)
1849 /* If NELTS is constant then this must be too. */
1850 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1851 for (unsigned i = 0; i < sub_nelts; ++i)
1852 vec.quick_push (VECTOR_CST_ELT (value, i));
1854 else
1855 vec.quick_push (value);
1857 while (vec.length () < nelts)
1858 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1860 return vec.build ();
1863 /* Build a vector of type VECTYPE where all the elements are SCs. */
1864 tree
1865 build_vector_from_val (tree vectype, tree sc)
1867 unsigned HOST_WIDE_INT i, nunits;
1869 if (sc == error_mark_node)
1870 return sc;
1872 /* Verify that the vector type is suitable for SC. Note that there
1873 is some inconsistency in the type-system with respect to restrict
1874 qualifications of pointers. Vector types always have a main-variant
1875 element type and the qualification is applied to the vector-type.
1876 So TREE_TYPE (vector-type) does not return a properly qualified
1877 vector element-type. */
1878 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1879 TREE_TYPE (vectype)));
1881 if (CONSTANT_CLASS_P (sc))
1883 tree_vector_builder v (vectype, 1, 1);
1884 v.quick_push (sc);
1885 return v.build ();
1887 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1888 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1889 else
1891 vec<constructor_elt, va_gc> *v;
1892 vec_alloc (v, nunits);
1893 for (i = 0; i < nunits; ++i)
1894 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1895 return build_constructor (vectype, v);
1899 /* Build a vector series of type TYPE in which element I has the value
1900 BASE + I * STEP. The result is a constant if BASE and STEP are constant
1901 and a VEC_SERIES_EXPR otherwise. */
1903 tree
1904 build_vec_series (tree type, tree base, tree step)
1906 if (integer_zerop (step))
1907 return build_vector_from_val (type, base);
1908 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
1910 tree_vector_builder builder (type, 1, 3);
1911 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
1912 wi::to_wide (base) + wi::to_wide (step));
1913 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
1914 wi::to_wide (elt1) + wi::to_wide (step));
1915 builder.quick_push (base);
1916 builder.quick_push (elt1);
1917 builder.quick_push (elt2);
1918 return builder.build ();
1920 return build2 (VEC_SERIES_EXPR, type, base, step);
1923 /* Return a vector with the same number of units and number of bits
1924 as VEC_TYPE, but in which the elements are a linear series of unsigned
1925 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
1927 tree
1928 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
1930 tree index_vec_type = vec_type;
1931 tree index_elt_type = TREE_TYPE (vec_type);
1932 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
1933 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
1935 index_elt_type = build_nonstandard_integer_type
1936 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
1937 index_vec_type = build_vector_type (index_elt_type, nunits);
1940 tree_vector_builder v (index_vec_type, 1, 3);
1941 for (unsigned int i = 0; i < 3; ++i)
1942 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
1943 return v.build ();
1946 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1947 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1949 void
1950 recompute_constructor_flags (tree c)
1952 unsigned int i;
1953 tree val;
1954 bool constant_p = true;
1955 bool side_effects_p = false;
1956 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1958 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1960 /* Mostly ctors will have elts that don't have side-effects, so
1961 the usual case is to scan all the elements. Hence a single
1962 loop for both const and side effects, rather than one loop
1963 each (with early outs). */
1964 if (!TREE_CONSTANT (val))
1965 constant_p = false;
1966 if (TREE_SIDE_EFFECTS (val))
1967 side_effects_p = true;
1970 TREE_SIDE_EFFECTS (c) = side_effects_p;
1971 TREE_CONSTANT (c) = constant_p;
1974 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1975 CONSTRUCTOR C. */
1977 void
1978 verify_constructor_flags (tree c)
1980 unsigned int i;
1981 tree val;
1982 bool constant_p = TREE_CONSTANT (c);
1983 bool side_effects_p = TREE_SIDE_EFFECTS (c);
1984 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1986 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1988 if (constant_p && !TREE_CONSTANT (val))
1989 internal_error ("non-constant element in constant CONSTRUCTOR");
1990 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
1991 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1995 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1996 are in the vec pointed to by VALS. */
1997 tree
1998 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
2000 tree c = make_node (CONSTRUCTOR);
2002 TREE_TYPE (c) = type;
2003 CONSTRUCTOR_ELTS (c) = vals;
2005 recompute_constructor_flags (c);
2007 return c;
2010 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2011 INDEX and VALUE. */
2012 tree
2013 build_constructor_single (tree type, tree index, tree value)
2015 vec<constructor_elt, va_gc> *v;
2016 constructor_elt elt = {index, value};
2018 vec_alloc (v, 1);
2019 v->quick_push (elt);
2021 return build_constructor (type, v);
2025 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2026 are in a list pointed to by VALS. */
2027 tree
2028 build_constructor_from_list (tree type, tree vals)
2030 tree t;
2031 vec<constructor_elt, va_gc> *v = NULL;
2033 if (vals)
2035 vec_alloc (v, list_length (vals));
2036 for (t = vals; t; t = TREE_CHAIN (t))
2037 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2040 return build_constructor (type, v);
2043 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2044 of elements, provided as index/value pairs. */
2046 tree
2047 build_constructor_va (tree type, int nelts, ...)
2049 vec<constructor_elt, va_gc> *v = NULL;
2050 va_list p;
2052 va_start (p, nelts);
2053 vec_alloc (v, nelts);
2054 while (nelts--)
2056 tree index = va_arg (p, tree);
2057 tree value = va_arg (p, tree);
2058 CONSTRUCTOR_APPEND_ELT (v, index, value);
2060 va_end (p);
2061 return build_constructor (type, v);
2064 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2066 tree
2067 build_clobber (tree type)
2069 tree clobber = build_constructor (type, NULL);
2070 TREE_THIS_VOLATILE (clobber) = true;
2071 return clobber;
2074 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2076 tree
2077 build_fixed (tree type, FIXED_VALUE_TYPE f)
2079 tree v;
2080 FIXED_VALUE_TYPE *fp;
2082 v = make_node (FIXED_CST);
2083 fp = ggc_alloc<fixed_value> ();
2084 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2086 TREE_TYPE (v) = type;
2087 TREE_FIXED_CST_PTR (v) = fp;
2088 return v;
2091 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2093 tree
2094 build_real (tree type, REAL_VALUE_TYPE d)
2096 tree v;
2097 REAL_VALUE_TYPE *dp;
2098 int overflow = 0;
2100 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2101 Consider doing it via real_convert now. */
2103 v = make_node (REAL_CST);
2104 dp = ggc_alloc<real_value> ();
2105 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2107 TREE_TYPE (v) = type;
2108 TREE_REAL_CST_PTR (v) = dp;
2109 TREE_OVERFLOW (v) = overflow;
2110 return v;
2113 /* Like build_real, but first truncate D to the type. */
2115 tree
2116 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2118 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2121 /* Return a new REAL_CST node whose type is TYPE
2122 and whose value is the integer value of the INTEGER_CST node I. */
2124 REAL_VALUE_TYPE
2125 real_value_from_int_cst (const_tree type, const_tree i)
2127 REAL_VALUE_TYPE d;
2129 /* Clear all bits of the real value type so that we can later do
2130 bitwise comparisons to see if two values are the same. */
2131 memset (&d, 0, sizeof d);
2133 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2134 TYPE_SIGN (TREE_TYPE (i)));
2135 return d;
2138 /* Given a tree representing an integer constant I, return a tree
2139 representing the same value as a floating-point constant of type TYPE. */
2141 tree
2142 build_real_from_int_cst (tree type, const_tree i)
2144 tree v;
2145 int overflow = TREE_OVERFLOW (i);
2147 v = build_real (type, real_value_from_int_cst (type, i));
2149 TREE_OVERFLOW (v) |= overflow;
2150 return v;
2153 /* Return a newly constructed STRING_CST node whose value is
2154 the LEN characters at STR.
2155 Note that for a C string literal, LEN should include the trailing NUL.
2156 The TREE_TYPE is not initialized. */
2158 tree
2159 build_string (int len, const char *str)
2161 tree s;
2162 size_t length;
2164 /* Do not waste bytes provided by padding of struct tree_string. */
2165 length = len + offsetof (struct tree_string, str) + 1;
2167 record_node_allocation_statistics (STRING_CST, length);
2169 s = (tree) ggc_internal_alloc (length);
2171 memset (s, 0, sizeof (struct tree_typed));
2172 TREE_SET_CODE (s, STRING_CST);
2173 TREE_CONSTANT (s) = 1;
2174 TREE_STRING_LENGTH (s) = len;
2175 memcpy (s->string.str, str, len);
2176 s->string.str[len] = '\0';
2178 return s;
2181 /* Return a newly constructed COMPLEX_CST node whose value is
2182 specified by the real and imaginary parts REAL and IMAG.
2183 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2184 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2186 tree
2187 build_complex (tree type, tree real, tree imag)
2189 tree t = make_node (COMPLEX_CST);
2191 TREE_REALPART (t) = real;
2192 TREE_IMAGPART (t) = imag;
2193 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2194 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2195 return t;
2198 /* Build a complex (inf +- 0i), such as for the result of cproj.
2199 TYPE is the complex tree type of the result. If NEG is true, the
2200 imaginary zero is negative. */
2202 tree
2203 build_complex_inf (tree type, bool neg)
2205 REAL_VALUE_TYPE rinf, rzero = dconst0;
2207 real_inf (&rinf);
2208 rzero.sign = neg;
2209 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2210 build_real (TREE_TYPE (type), rzero));
2213 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2214 element is set to 1. In particular, this is 1 + i for complex types. */
2216 tree
2217 build_each_one_cst (tree type)
2219 if (TREE_CODE (type) == COMPLEX_TYPE)
2221 tree scalar = build_one_cst (TREE_TYPE (type));
2222 return build_complex (type, scalar, scalar);
2224 else
2225 return build_one_cst (type);
2228 /* Return a constant of arithmetic type TYPE which is the
2229 multiplicative identity of the set TYPE. */
2231 tree
2232 build_one_cst (tree type)
2234 switch (TREE_CODE (type))
2236 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2237 case POINTER_TYPE: case REFERENCE_TYPE:
2238 case OFFSET_TYPE:
2239 return build_int_cst (type, 1);
2241 case REAL_TYPE:
2242 return build_real (type, dconst1);
2244 case FIXED_POINT_TYPE:
2245 /* We can only generate 1 for accum types. */
2246 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2247 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2249 case VECTOR_TYPE:
2251 tree scalar = build_one_cst (TREE_TYPE (type));
2253 return build_vector_from_val (type, scalar);
2256 case COMPLEX_TYPE:
2257 return build_complex (type,
2258 build_one_cst (TREE_TYPE (type)),
2259 build_zero_cst (TREE_TYPE (type)));
2261 default:
2262 gcc_unreachable ();
2266 /* Return an integer of type TYPE containing all 1's in as much precision as
2267 it contains, or a complex or vector whose subparts are such integers. */
2269 tree
2270 build_all_ones_cst (tree type)
2272 if (TREE_CODE (type) == COMPLEX_TYPE)
2274 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2275 return build_complex (type, scalar, scalar);
2277 else
2278 return build_minus_one_cst (type);
2281 /* Return a constant of arithmetic type TYPE which is the
2282 opposite of the multiplicative identity of the set TYPE. */
2284 tree
2285 build_minus_one_cst (tree type)
2287 switch (TREE_CODE (type))
2289 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2290 case POINTER_TYPE: case REFERENCE_TYPE:
2291 case OFFSET_TYPE:
2292 return build_int_cst (type, -1);
2294 case REAL_TYPE:
2295 return build_real (type, dconstm1);
2297 case FIXED_POINT_TYPE:
2298 /* We can only generate 1 for accum types. */
2299 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2300 return build_fixed (type,
2301 fixed_from_double_int (double_int_minus_one,
2302 SCALAR_TYPE_MODE (type)));
2304 case VECTOR_TYPE:
2306 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2308 return build_vector_from_val (type, scalar);
2311 case COMPLEX_TYPE:
2312 return build_complex (type,
2313 build_minus_one_cst (TREE_TYPE (type)),
2314 build_zero_cst (TREE_TYPE (type)));
2316 default:
2317 gcc_unreachable ();
2321 /* Build 0 constant of type TYPE. This is used by constructor folding
2322 and thus the constant should be represented in memory by
2323 zero(es). */
2325 tree
2326 build_zero_cst (tree type)
2328 switch (TREE_CODE (type))
2330 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2331 case POINTER_TYPE: case REFERENCE_TYPE:
2332 case OFFSET_TYPE: case NULLPTR_TYPE:
2333 return build_int_cst (type, 0);
2335 case REAL_TYPE:
2336 return build_real (type, dconst0);
2338 case FIXED_POINT_TYPE:
2339 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2341 case VECTOR_TYPE:
2343 tree scalar = build_zero_cst (TREE_TYPE (type));
2345 return build_vector_from_val (type, scalar);
2348 case COMPLEX_TYPE:
2350 tree zero = build_zero_cst (TREE_TYPE (type));
2352 return build_complex (type, zero, zero);
2355 default:
2356 if (!AGGREGATE_TYPE_P (type))
2357 return fold_convert (type, integer_zero_node);
2358 return build_constructor (type, NULL);
2363 /* Build a BINFO with LEN language slots. */
2365 tree
2366 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2368 tree t;
2369 size_t length = (offsetof (struct tree_binfo, base_binfos)
2370 + vec<tree, va_gc>::embedded_size (base_binfos));
2372 record_node_allocation_statistics (TREE_BINFO, length);
2374 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2376 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2378 TREE_SET_CODE (t, TREE_BINFO);
2380 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2382 return t;
2385 /* Create a CASE_LABEL_EXPR tree node and return it. */
2387 tree
2388 build_case_label (tree low_value, tree high_value, tree label_decl)
2390 tree t = make_node (CASE_LABEL_EXPR);
2392 TREE_TYPE (t) = void_type_node;
2393 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2395 CASE_LOW (t) = low_value;
2396 CASE_HIGH (t) = high_value;
2397 CASE_LABEL (t) = label_decl;
2398 CASE_CHAIN (t) = NULL_TREE;
2400 return t;
2403 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2404 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2405 The latter determines the length of the HOST_WIDE_INT vector. */
2407 tree
2408 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2410 tree t;
2411 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2412 + sizeof (struct tree_int_cst));
2414 gcc_assert (len);
2415 record_node_allocation_statistics (INTEGER_CST, length);
2417 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2419 TREE_SET_CODE (t, INTEGER_CST);
2420 TREE_INT_CST_NUNITS (t) = len;
2421 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2422 /* to_offset can only be applied to trees that are offset_int-sized
2423 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2424 must be exactly the precision of offset_int and so LEN is correct. */
2425 if (ext_len <= OFFSET_INT_ELTS)
2426 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2427 else
2428 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2430 TREE_CONSTANT (t) = 1;
2432 return t;
2435 /* Build a newly constructed TREE_VEC node of length LEN. */
2437 tree
2438 make_tree_vec (int len MEM_STAT_DECL)
2440 tree t;
2441 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2443 record_node_allocation_statistics (TREE_VEC, length);
2445 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2447 TREE_SET_CODE (t, TREE_VEC);
2448 TREE_VEC_LENGTH (t) = len;
2450 return t;
2453 /* Grow a TREE_VEC node to new length LEN. */
2455 tree
2456 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2458 gcc_assert (TREE_CODE (v) == TREE_VEC);
2460 int oldlen = TREE_VEC_LENGTH (v);
2461 gcc_assert (len > oldlen);
2463 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2464 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2466 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2468 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2470 TREE_VEC_LENGTH (v) = len;
2472 return v;
2475 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2476 fixed, and scalar, complex or vector. */
2479 zerop (const_tree expr)
2481 return (integer_zerop (expr)
2482 || real_zerop (expr)
2483 || fixed_zerop (expr));
2486 /* Return 1 if EXPR is the integer constant zero or a complex constant
2487 of zero. */
2490 integer_zerop (const_tree expr)
2492 switch (TREE_CODE (expr))
2494 case INTEGER_CST:
2495 return wi::to_wide (expr) == 0;
2496 case COMPLEX_CST:
2497 return (integer_zerop (TREE_REALPART (expr))
2498 && integer_zerop (TREE_IMAGPART (expr)));
2499 case VECTOR_CST:
2500 return (VECTOR_CST_NPATTERNS (expr) == 1
2501 && VECTOR_CST_DUPLICATE_P (expr)
2502 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2503 default:
2504 return false;
2508 /* Return 1 if EXPR is the integer constant one or the corresponding
2509 complex constant. */
2512 integer_onep (const_tree expr)
2514 switch (TREE_CODE (expr))
2516 case INTEGER_CST:
2517 return wi::eq_p (wi::to_widest (expr), 1);
2518 case COMPLEX_CST:
2519 return (integer_onep (TREE_REALPART (expr))
2520 && integer_zerop (TREE_IMAGPART (expr)));
2521 case VECTOR_CST:
2522 return (VECTOR_CST_NPATTERNS (expr) == 1
2523 && VECTOR_CST_DUPLICATE_P (expr)
2524 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2525 default:
2526 return false;
2530 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2531 return 1 if every piece is the integer constant one. */
2534 integer_each_onep (const_tree expr)
2536 if (TREE_CODE (expr) == COMPLEX_CST)
2537 return (integer_onep (TREE_REALPART (expr))
2538 && integer_onep (TREE_IMAGPART (expr)));
2539 else
2540 return integer_onep (expr);
2543 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2544 it contains, or a complex or vector whose subparts are such integers. */
2547 integer_all_onesp (const_tree expr)
2549 if (TREE_CODE (expr) == COMPLEX_CST
2550 && integer_all_onesp (TREE_REALPART (expr))
2551 && integer_all_onesp (TREE_IMAGPART (expr)))
2552 return 1;
2554 else if (TREE_CODE (expr) == VECTOR_CST)
2555 return (VECTOR_CST_NPATTERNS (expr) == 1
2556 && VECTOR_CST_DUPLICATE_P (expr)
2557 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2559 else if (TREE_CODE (expr) != INTEGER_CST)
2560 return 0;
2562 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2563 == wi::to_wide (expr));
2566 /* Return 1 if EXPR is the integer constant minus one. */
2569 integer_minus_onep (const_tree expr)
2571 if (TREE_CODE (expr) == COMPLEX_CST)
2572 return (integer_all_onesp (TREE_REALPART (expr))
2573 && integer_zerop (TREE_IMAGPART (expr)));
2574 else
2575 return integer_all_onesp (expr);
2578 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2579 one bit on). */
2582 integer_pow2p (const_tree expr)
2584 if (TREE_CODE (expr) == COMPLEX_CST
2585 && integer_pow2p (TREE_REALPART (expr))
2586 && integer_zerop (TREE_IMAGPART (expr)))
2587 return 1;
2589 if (TREE_CODE (expr) != INTEGER_CST)
2590 return 0;
2592 return wi::popcount (wi::to_wide (expr)) == 1;
2595 /* Return 1 if EXPR is an integer constant other than zero or a
2596 complex constant other than zero. */
2599 integer_nonzerop (const_tree expr)
2601 return ((TREE_CODE (expr) == INTEGER_CST
2602 && wi::to_wide (expr) != 0)
2603 || (TREE_CODE (expr) == COMPLEX_CST
2604 && (integer_nonzerop (TREE_REALPART (expr))
2605 || integer_nonzerop (TREE_IMAGPART (expr)))));
2608 /* Return 1 if EXPR is the integer constant one. For vector,
2609 return 1 if every piece is the integer constant minus one
2610 (representing the value TRUE). */
2613 integer_truep (const_tree expr)
2615 if (TREE_CODE (expr) == VECTOR_CST)
2616 return integer_all_onesp (expr);
2617 return integer_onep (expr);
2620 /* Return 1 if EXPR is the fixed-point constant zero. */
2623 fixed_zerop (const_tree expr)
2625 return (TREE_CODE (expr) == FIXED_CST
2626 && TREE_FIXED_CST (expr).data.is_zero ());
2629 /* Return the power of two represented by a tree node known to be a
2630 power of two. */
2633 tree_log2 (const_tree expr)
2635 if (TREE_CODE (expr) == COMPLEX_CST)
2636 return tree_log2 (TREE_REALPART (expr));
2638 return wi::exact_log2 (wi::to_wide (expr));
2641 /* Similar, but return the largest integer Y such that 2 ** Y is less
2642 than or equal to EXPR. */
2645 tree_floor_log2 (const_tree expr)
2647 if (TREE_CODE (expr) == COMPLEX_CST)
2648 return tree_log2 (TREE_REALPART (expr));
2650 return wi::floor_log2 (wi::to_wide (expr));
2653 /* Return number of known trailing zero bits in EXPR, or, if the value of
2654 EXPR is known to be zero, the precision of it's type. */
2656 unsigned int
2657 tree_ctz (const_tree expr)
2659 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2660 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2661 return 0;
2663 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2664 switch (TREE_CODE (expr))
2666 case INTEGER_CST:
2667 ret1 = wi::ctz (wi::to_wide (expr));
2668 return MIN (ret1, prec);
2669 case SSA_NAME:
2670 ret1 = wi::ctz (get_nonzero_bits (expr));
2671 return MIN (ret1, prec);
2672 case PLUS_EXPR:
2673 case MINUS_EXPR:
2674 case BIT_IOR_EXPR:
2675 case BIT_XOR_EXPR:
2676 case MIN_EXPR:
2677 case MAX_EXPR:
2678 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2679 if (ret1 == 0)
2680 return ret1;
2681 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2682 return MIN (ret1, ret2);
2683 case POINTER_PLUS_EXPR:
2684 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2685 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2686 /* Second operand is sizetype, which could be in theory
2687 wider than pointer's precision. Make sure we never
2688 return more than prec. */
2689 ret2 = MIN (ret2, prec);
2690 return MIN (ret1, ret2);
2691 case BIT_AND_EXPR:
2692 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2693 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2694 return MAX (ret1, ret2);
2695 case MULT_EXPR:
2696 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2697 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2698 return MIN (ret1 + ret2, prec);
2699 case LSHIFT_EXPR:
2700 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2701 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2702 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2704 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2705 return MIN (ret1 + ret2, prec);
2707 return ret1;
2708 case RSHIFT_EXPR:
2709 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2710 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2712 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2713 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2714 if (ret1 > ret2)
2715 return ret1 - ret2;
2717 return 0;
2718 case TRUNC_DIV_EXPR:
2719 case CEIL_DIV_EXPR:
2720 case FLOOR_DIV_EXPR:
2721 case ROUND_DIV_EXPR:
2722 case EXACT_DIV_EXPR:
2723 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2724 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2726 int l = tree_log2 (TREE_OPERAND (expr, 1));
2727 if (l >= 0)
2729 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2730 ret2 = l;
2731 if (ret1 > ret2)
2732 return ret1 - ret2;
2735 return 0;
2736 CASE_CONVERT:
2737 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2738 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2739 ret1 = prec;
2740 return MIN (ret1, prec);
2741 case SAVE_EXPR:
2742 return tree_ctz (TREE_OPERAND (expr, 0));
2743 case COND_EXPR:
2744 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2745 if (ret1 == 0)
2746 return 0;
2747 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2748 return MIN (ret1, ret2);
2749 case COMPOUND_EXPR:
2750 return tree_ctz (TREE_OPERAND (expr, 1));
2751 case ADDR_EXPR:
2752 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2753 if (ret1 > BITS_PER_UNIT)
2755 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2756 return MIN (ret1, prec);
2758 return 0;
2759 default:
2760 return 0;
2764 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2765 decimal float constants, so don't return 1 for them. */
2768 real_zerop (const_tree expr)
2770 switch (TREE_CODE (expr))
2772 case REAL_CST:
2773 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2774 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2775 case COMPLEX_CST:
2776 return real_zerop (TREE_REALPART (expr))
2777 && real_zerop (TREE_IMAGPART (expr));
2778 case VECTOR_CST:
2780 /* Don't simply check for a duplicate because the predicate
2781 accepts both +0.0 and -0.0. */
2782 unsigned count = vector_cst_encoded_nelts (expr);
2783 for (unsigned int i = 0; i < count; ++i)
2784 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2785 return false;
2786 return true;
2788 default:
2789 return false;
2793 /* Return 1 if EXPR is the real constant one in real or complex form.
2794 Trailing zeroes matter for decimal float constants, so don't return
2795 1 for them. */
2798 real_onep (const_tree expr)
2800 switch (TREE_CODE (expr))
2802 case REAL_CST:
2803 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2804 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2805 case COMPLEX_CST:
2806 return real_onep (TREE_REALPART (expr))
2807 && real_zerop (TREE_IMAGPART (expr));
2808 case VECTOR_CST:
2809 return (VECTOR_CST_NPATTERNS (expr) == 1
2810 && VECTOR_CST_DUPLICATE_P (expr)
2811 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2812 default:
2813 return false;
2817 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2818 matter for decimal float constants, so don't return 1 for them. */
2821 real_minus_onep (const_tree expr)
2823 switch (TREE_CODE (expr))
2825 case REAL_CST:
2826 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2827 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2828 case COMPLEX_CST:
2829 return real_minus_onep (TREE_REALPART (expr))
2830 && real_zerop (TREE_IMAGPART (expr));
2831 case VECTOR_CST:
2832 return (VECTOR_CST_NPATTERNS (expr) == 1
2833 && VECTOR_CST_DUPLICATE_P (expr)
2834 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2835 default:
2836 return false;
2840 /* Nonzero if EXP is a constant or a cast of a constant. */
2843 really_constant_p (const_tree exp)
2845 /* This is not quite the same as STRIP_NOPS. It does more. */
2846 while (CONVERT_EXPR_P (exp)
2847 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2848 exp = TREE_OPERAND (exp, 0);
2849 return TREE_CONSTANT (exp);
2852 /* Return true if T holds a polynomial pointer difference, storing it in
2853 *VALUE if so. A true return means that T's precision is no greater
2854 than 64 bits, which is the largest address space we support, so *VALUE
2855 never loses precision. However, the signedness of the result does
2856 not necessarily match the signedness of T: sometimes an unsigned type
2857 like sizetype is used to encode a value that is actually negative. */
2859 bool
2860 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
2862 if (!t)
2863 return false;
2864 if (TREE_CODE (t) == INTEGER_CST)
2866 if (!cst_and_fits_in_hwi (t))
2867 return false;
2868 *value = int_cst_value (t);
2869 return true;
2871 if (POLY_INT_CST_P (t))
2873 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2874 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
2875 return false;
2876 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2877 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
2878 return true;
2880 return false;
2883 poly_int64
2884 tree_to_poly_int64 (const_tree t)
2886 gcc_assert (tree_fits_poly_int64_p (t));
2887 if (POLY_INT_CST_P (t))
2888 return poly_int_cst_value (t).force_shwi ();
2889 return TREE_INT_CST_LOW (t);
2892 poly_uint64
2893 tree_to_poly_uint64 (const_tree t)
2895 gcc_assert (tree_fits_poly_uint64_p (t));
2896 if (POLY_INT_CST_P (t))
2897 return poly_int_cst_value (t).force_uhwi ();
2898 return TREE_INT_CST_LOW (t);
2901 /* Return first list element whose TREE_VALUE is ELEM.
2902 Return 0 if ELEM is not in LIST. */
2904 tree
2905 value_member (tree elem, tree list)
2907 while (list)
2909 if (elem == TREE_VALUE (list))
2910 return list;
2911 list = TREE_CHAIN (list);
2913 return NULL_TREE;
2916 /* Return first list element whose TREE_PURPOSE is ELEM.
2917 Return 0 if ELEM is not in LIST. */
2919 tree
2920 purpose_member (const_tree elem, tree list)
2922 while (list)
2924 if (elem == TREE_PURPOSE (list))
2925 return list;
2926 list = TREE_CHAIN (list);
2928 return NULL_TREE;
2931 /* Return true if ELEM is in V. */
2933 bool
2934 vec_member (const_tree elem, vec<tree, va_gc> *v)
2936 unsigned ix;
2937 tree t;
2938 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2939 if (elem == t)
2940 return true;
2941 return false;
2944 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2945 NULL_TREE. */
2947 tree
2948 chain_index (int idx, tree chain)
2950 for (; chain && idx > 0; --idx)
2951 chain = TREE_CHAIN (chain);
2952 return chain;
2955 /* Return nonzero if ELEM is part of the chain CHAIN. */
2958 chain_member (const_tree elem, const_tree chain)
2960 while (chain)
2962 if (elem == chain)
2963 return 1;
2964 chain = DECL_CHAIN (chain);
2967 return 0;
2970 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2971 We expect a null pointer to mark the end of the chain.
2972 This is the Lisp primitive `length'. */
2975 list_length (const_tree t)
2977 const_tree p = t;
2978 #ifdef ENABLE_TREE_CHECKING
2979 const_tree q = t;
2980 #endif
2981 int len = 0;
2983 while (p)
2985 p = TREE_CHAIN (p);
2986 #ifdef ENABLE_TREE_CHECKING
2987 if (len % 2)
2988 q = TREE_CHAIN (q);
2989 gcc_assert (p != q);
2990 #endif
2991 len++;
2994 return len;
2997 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2998 UNION_TYPE TYPE, or NULL_TREE if none. */
3000 tree
3001 first_field (const_tree type)
3003 tree t = TYPE_FIELDS (type);
3004 while (t && TREE_CODE (t) != FIELD_DECL)
3005 t = TREE_CHAIN (t);
3006 return t;
3009 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3010 by modifying the last node in chain 1 to point to chain 2.
3011 This is the Lisp primitive `nconc'. */
3013 tree
3014 chainon (tree op1, tree op2)
3016 tree t1;
3018 if (!op1)
3019 return op2;
3020 if (!op2)
3021 return op1;
3023 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3024 continue;
3025 TREE_CHAIN (t1) = op2;
3027 #ifdef ENABLE_TREE_CHECKING
3029 tree t2;
3030 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3031 gcc_assert (t2 != t1);
3033 #endif
3035 return op1;
3038 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3040 tree
3041 tree_last (tree chain)
3043 tree next;
3044 if (chain)
3045 while ((next = TREE_CHAIN (chain)))
3046 chain = next;
3047 return chain;
3050 /* Reverse the order of elements in the chain T,
3051 and return the new head of the chain (old last element). */
3053 tree
3054 nreverse (tree t)
3056 tree prev = 0, decl, next;
3057 for (decl = t; decl; decl = next)
3059 /* We shouldn't be using this function to reverse BLOCK chains; we
3060 have blocks_nreverse for that. */
3061 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3062 next = TREE_CHAIN (decl);
3063 TREE_CHAIN (decl) = prev;
3064 prev = decl;
3066 return prev;
3069 /* Return a newly created TREE_LIST node whose
3070 purpose and value fields are PARM and VALUE. */
3072 tree
3073 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3075 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3076 TREE_PURPOSE (t) = parm;
3077 TREE_VALUE (t) = value;
3078 return t;
3081 /* Build a chain of TREE_LIST nodes from a vector. */
3083 tree
3084 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3086 tree ret = NULL_TREE;
3087 tree *pp = &ret;
3088 unsigned int i;
3089 tree t;
3090 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3092 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3093 pp = &TREE_CHAIN (*pp);
3095 return ret;
3098 /* Return a newly created TREE_LIST node whose
3099 purpose and value fields are PURPOSE and VALUE
3100 and whose TREE_CHAIN is CHAIN. */
3102 tree
3103 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3105 tree node;
3107 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3108 memset (node, 0, sizeof (struct tree_common));
3110 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3112 TREE_SET_CODE (node, TREE_LIST);
3113 TREE_CHAIN (node) = chain;
3114 TREE_PURPOSE (node) = purpose;
3115 TREE_VALUE (node) = value;
3116 return node;
3119 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3120 trees. */
3122 vec<tree, va_gc> *
3123 ctor_to_vec (tree ctor)
3125 vec<tree, va_gc> *vec;
3126 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3127 unsigned int ix;
3128 tree val;
3130 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3131 vec->quick_push (val);
3133 return vec;
3136 /* Return the size nominally occupied by an object of type TYPE
3137 when it resides in memory. The value is measured in units of bytes,
3138 and its data type is that normally used for type sizes
3139 (which is the first type created by make_signed_type or
3140 make_unsigned_type). */
3142 tree
3143 size_in_bytes_loc (location_t loc, const_tree type)
3145 tree t;
3147 if (type == error_mark_node)
3148 return integer_zero_node;
3150 type = TYPE_MAIN_VARIANT (type);
3151 t = TYPE_SIZE_UNIT (type);
3153 if (t == 0)
3155 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3156 return size_zero_node;
3159 return t;
3162 /* Return the size of TYPE (in bytes) as a wide integer
3163 or return -1 if the size can vary or is larger than an integer. */
3165 HOST_WIDE_INT
3166 int_size_in_bytes (const_tree type)
3168 tree t;
3170 if (type == error_mark_node)
3171 return 0;
3173 type = TYPE_MAIN_VARIANT (type);
3174 t = TYPE_SIZE_UNIT (type);
3176 if (t && tree_fits_uhwi_p (t))
3177 return TREE_INT_CST_LOW (t);
3178 else
3179 return -1;
3182 /* Return the maximum size of TYPE (in bytes) as a wide integer
3183 or return -1 if the size can vary or is larger than an integer. */
3185 HOST_WIDE_INT
3186 max_int_size_in_bytes (const_tree type)
3188 HOST_WIDE_INT size = -1;
3189 tree size_tree;
3191 /* If this is an array type, check for a possible MAX_SIZE attached. */
3193 if (TREE_CODE (type) == ARRAY_TYPE)
3195 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3197 if (size_tree && tree_fits_uhwi_p (size_tree))
3198 size = tree_to_uhwi (size_tree);
3201 /* If we still haven't been able to get a size, see if the language
3202 can compute a maximum size. */
3204 if (size == -1)
3206 size_tree = lang_hooks.types.max_size (type);
3208 if (size_tree && tree_fits_uhwi_p (size_tree))
3209 size = tree_to_uhwi (size_tree);
3212 return size;
3215 /* Return the bit position of FIELD, in bits from the start of the record.
3216 This is a tree of type bitsizetype. */
3218 tree
3219 bit_position (const_tree field)
3221 return bit_from_pos (DECL_FIELD_OFFSET (field),
3222 DECL_FIELD_BIT_OFFSET (field));
3225 /* Return the byte position of FIELD, in bytes from the start of the record.
3226 This is a tree of type sizetype. */
3228 tree
3229 byte_position (const_tree field)
3231 return byte_from_pos (DECL_FIELD_OFFSET (field),
3232 DECL_FIELD_BIT_OFFSET (field));
3235 /* Likewise, but return as an integer. It must be representable in
3236 that way (since it could be a signed value, we don't have the
3237 option of returning -1 like int_size_in_byte can. */
3239 HOST_WIDE_INT
3240 int_byte_position (const_tree field)
3242 return tree_to_shwi (byte_position (field));
3245 /* Return the strictest alignment, in bits, that T is known to have. */
3247 unsigned int
3248 expr_align (const_tree t)
3250 unsigned int align0, align1;
3252 switch (TREE_CODE (t))
3254 CASE_CONVERT: case NON_LVALUE_EXPR:
3255 /* If we have conversions, we know that the alignment of the
3256 object must meet each of the alignments of the types. */
3257 align0 = expr_align (TREE_OPERAND (t, 0));
3258 align1 = TYPE_ALIGN (TREE_TYPE (t));
3259 return MAX (align0, align1);
3261 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3262 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3263 case CLEANUP_POINT_EXPR:
3264 /* These don't change the alignment of an object. */
3265 return expr_align (TREE_OPERAND (t, 0));
3267 case COND_EXPR:
3268 /* The best we can do is say that the alignment is the least aligned
3269 of the two arms. */
3270 align0 = expr_align (TREE_OPERAND (t, 1));
3271 align1 = expr_align (TREE_OPERAND (t, 2));
3272 return MIN (align0, align1);
3274 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3275 meaningfully, it's always 1. */
3276 case LABEL_DECL: case CONST_DECL:
3277 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3278 case FUNCTION_DECL:
3279 gcc_assert (DECL_ALIGN (t) != 0);
3280 return DECL_ALIGN (t);
3282 default:
3283 break;
3286 /* Otherwise take the alignment from that of the type. */
3287 return TYPE_ALIGN (TREE_TYPE (t));
3290 /* Return, as a tree node, the number of elements for TYPE (which is an
3291 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3293 tree
3294 array_type_nelts (const_tree type)
3296 tree index_type, min, max;
3298 /* If they did it with unspecified bounds, then we should have already
3299 given an error about it before we got here. */
3300 if (! TYPE_DOMAIN (type))
3301 return error_mark_node;
3303 index_type = TYPE_DOMAIN (type);
3304 min = TYPE_MIN_VALUE (index_type);
3305 max = TYPE_MAX_VALUE (index_type);
3307 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3308 if (!max)
3309 return error_mark_node;
3311 return (integer_zerop (min)
3312 ? max
3313 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3316 /* If arg is static -- a reference to an object in static storage -- then
3317 return the object. This is not the same as the C meaning of `static'.
3318 If arg isn't static, return NULL. */
3320 tree
3321 staticp (tree arg)
3323 switch (TREE_CODE (arg))
3325 case FUNCTION_DECL:
3326 /* Nested functions are static, even though taking their address will
3327 involve a trampoline as we unnest the nested function and create
3328 the trampoline on the tree level. */
3329 return arg;
3331 case VAR_DECL:
3332 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3333 && ! DECL_THREAD_LOCAL_P (arg)
3334 && ! DECL_DLLIMPORT_P (arg)
3335 ? arg : NULL);
3337 case CONST_DECL:
3338 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3339 ? arg : NULL);
3341 case CONSTRUCTOR:
3342 return TREE_STATIC (arg) ? arg : NULL;
3344 case LABEL_DECL:
3345 case STRING_CST:
3346 return arg;
3348 case COMPONENT_REF:
3349 /* If the thing being referenced is not a field, then it is
3350 something language specific. */
3351 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3353 /* If we are referencing a bitfield, we can't evaluate an
3354 ADDR_EXPR at compile time and so it isn't a constant. */
3355 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3356 return NULL;
3358 return staticp (TREE_OPERAND (arg, 0));
3360 case BIT_FIELD_REF:
3361 return NULL;
3363 case INDIRECT_REF:
3364 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3366 case ARRAY_REF:
3367 case ARRAY_RANGE_REF:
3368 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3369 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3370 return staticp (TREE_OPERAND (arg, 0));
3371 else
3372 return NULL;
3374 case COMPOUND_LITERAL_EXPR:
3375 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3377 default:
3378 return NULL;
3385 /* Return whether OP is a DECL whose address is function-invariant. */
3387 bool
3388 decl_address_invariant_p (const_tree op)
3390 /* The conditions below are slightly less strict than the one in
3391 staticp. */
3393 switch (TREE_CODE (op))
3395 case PARM_DECL:
3396 case RESULT_DECL:
3397 case LABEL_DECL:
3398 case FUNCTION_DECL:
3399 return true;
3401 case VAR_DECL:
3402 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3403 || DECL_THREAD_LOCAL_P (op)
3404 || DECL_CONTEXT (op) == current_function_decl
3405 || decl_function_context (op) == current_function_decl)
3406 return true;
3407 break;
3409 case CONST_DECL:
3410 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3411 || decl_function_context (op) == current_function_decl)
3412 return true;
3413 break;
3415 default:
3416 break;
3419 return false;
3422 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3424 bool
3425 decl_address_ip_invariant_p (const_tree op)
3427 /* The conditions below are slightly less strict than the one in
3428 staticp. */
3430 switch (TREE_CODE (op))
3432 case LABEL_DECL:
3433 case FUNCTION_DECL:
3434 case STRING_CST:
3435 return true;
3437 case VAR_DECL:
3438 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3439 && !DECL_DLLIMPORT_P (op))
3440 || DECL_THREAD_LOCAL_P (op))
3441 return true;
3442 break;
3444 case CONST_DECL:
3445 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3446 return true;
3447 break;
3449 default:
3450 break;
3453 return false;
3457 /* Return true if T is function-invariant (internal function, does
3458 not handle arithmetic; that's handled in skip_simple_arithmetic and
3459 tree_invariant_p). */
3461 static bool
3462 tree_invariant_p_1 (tree t)
3464 tree op;
3466 if (TREE_CONSTANT (t)
3467 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3468 return true;
3470 switch (TREE_CODE (t))
3472 case SAVE_EXPR:
3473 return true;
3475 case ADDR_EXPR:
3476 op = TREE_OPERAND (t, 0);
3477 while (handled_component_p (op))
3479 switch (TREE_CODE (op))
3481 case ARRAY_REF:
3482 case ARRAY_RANGE_REF:
3483 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3484 || TREE_OPERAND (op, 2) != NULL_TREE
3485 || TREE_OPERAND (op, 3) != NULL_TREE)
3486 return false;
3487 break;
3489 case COMPONENT_REF:
3490 if (TREE_OPERAND (op, 2) != NULL_TREE)
3491 return false;
3492 break;
3494 default:;
3496 op = TREE_OPERAND (op, 0);
3499 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3501 default:
3502 break;
3505 return false;
3508 /* Return true if T is function-invariant. */
3510 bool
3511 tree_invariant_p (tree t)
3513 tree inner = skip_simple_arithmetic (t);
3514 return tree_invariant_p_1 (inner);
3517 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3518 Do this to any expression which may be used in more than one place,
3519 but must be evaluated only once.
3521 Normally, expand_expr would reevaluate the expression each time.
3522 Calling save_expr produces something that is evaluated and recorded
3523 the first time expand_expr is called on it. Subsequent calls to
3524 expand_expr just reuse the recorded value.
3526 The call to expand_expr that generates code that actually computes
3527 the value is the first call *at compile time*. Subsequent calls
3528 *at compile time* generate code to use the saved value.
3529 This produces correct result provided that *at run time* control
3530 always flows through the insns made by the first expand_expr
3531 before reaching the other places where the save_expr was evaluated.
3532 You, the caller of save_expr, must make sure this is so.
3534 Constants, and certain read-only nodes, are returned with no
3535 SAVE_EXPR because that is safe. Expressions containing placeholders
3536 are not touched; see tree.def for an explanation of what these
3537 are used for. */
3539 tree
3540 save_expr (tree expr)
3542 tree inner;
3544 /* If the tree evaluates to a constant, then we don't want to hide that
3545 fact (i.e. this allows further folding, and direct checks for constants).
3546 However, a read-only object that has side effects cannot be bypassed.
3547 Since it is no problem to reevaluate literals, we just return the
3548 literal node. */
3549 inner = skip_simple_arithmetic (expr);
3550 if (TREE_CODE (inner) == ERROR_MARK)
3551 return inner;
3553 if (tree_invariant_p_1 (inner))
3554 return expr;
3556 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3557 it means that the size or offset of some field of an object depends on
3558 the value within another field.
3560 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3561 and some variable since it would then need to be both evaluated once and
3562 evaluated more than once. Front-ends must assure this case cannot
3563 happen by surrounding any such subexpressions in their own SAVE_EXPR
3564 and forcing evaluation at the proper time. */
3565 if (contains_placeholder_p (inner))
3566 return expr;
3568 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3570 /* This expression might be placed ahead of a jump to ensure that the
3571 value was computed on both sides of the jump. So make sure it isn't
3572 eliminated as dead. */
3573 TREE_SIDE_EFFECTS (expr) = 1;
3574 return expr;
3577 /* Look inside EXPR into any simple arithmetic operations. Return the
3578 outermost non-arithmetic or non-invariant node. */
3580 tree
3581 skip_simple_arithmetic (tree expr)
3583 /* We don't care about whether this can be used as an lvalue in this
3584 context. */
3585 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3586 expr = TREE_OPERAND (expr, 0);
3588 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3589 a constant, it will be more efficient to not make another SAVE_EXPR since
3590 it will allow better simplification and GCSE will be able to merge the
3591 computations if they actually occur. */
3592 while (true)
3594 if (UNARY_CLASS_P (expr))
3595 expr = TREE_OPERAND (expr, 0);
3596 else if (BINARY_CLASS_P (expr))
3598 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3599 expr = TREE_OPERAND (expr, 0);
3600 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3601 expr = TREE_OPERAND (expr, 1);
3602 else
3603 break;
3605 else
3606 break;
3609 return expr;
3612 /* Look inside EXPR into simple arithmetic operations involving constants.
3613 Return the outermost non-arithmetic or non-constant node. */
3615 tree
3616 skip_simple_constant_arithmetic (tree expr)
3618 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3619 expr = TREE_OPERAND (expr, 0);
3621 while (true)
3623 if (UNARY_CLASS_P (expr))
3624 expr = TREE_OPERAND (expr, 0);
3625 else if (BINARY_CLASS_P (expr))
3627 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3628 expr = TREE_OPERAND (expr, 0);
3629 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3630 expr = TREE_OPERAND (expr, 1);
3631 else
3632 break;
3634 else
3635 break;
3638 return expr;
3641 /* Return which tree structure is used by T. */
3643 enum tree_node_structure_enum
3644 tree_node_structure (const_tree t)
3646 const enum tree_code code = TREE_CODE (t);
3647 return tree_node_structure_for_code (code);
3650 /* Set various status flags when building a CALL_EXPR object T. */
3652 static void
3653 process_call_operands (tree t)
3655 bool side_effects = TREE_SIDE_EFFECTS (t);
3656 bool read_only = false;
3657 int i = call_expr_flags (t);
3659 /* Calls have side-effects, except those to const or pure functions. */
3660 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3661 side_effects = true;
3662 /* Propagate TREE_READONLY of arguments for const functions. */
3663 if (i & ECF_CONST)
3664 read_only = true;
3666 if (!side_effects || read_only)
3667 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3669 tree op = TREE_OPERAND (t, i);
3670 if (op && TREE_SIDE_EFFECTS (op))
3671 side_effects = true;
3672 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3673 read_only = false;
3676 TREE_SIDE_EFFECTS (t) = side_effects;
3677 TREE_READONLY (t) = read_only;
3680 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3681 size or offset that depends on a field within a record. */
3683 bool
3684 contains_placeholder_p (const_tree exp)
3686 enum tree_code code;
3688 if (!exp)
3689 return 0;
3691 code = TREE_CODE (exp);
3692 if (code == PLACEHOLDER_EXPR)
3693 return 1;
3695 switch (TREE_CODE_CLASS (code))
3697 case tcc_reference:
3698 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3699 position computations since they will be converted into a
3700 WITH_RECORD_EXPR involving the reference, which will assume
3701 here will be valid. */
3702 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3704 case tcc_exceptional:
3705 if (code == TREE_LIST)
3706 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3707 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3708 break;
3710 case tcc_unary:
3711 case tcc_binary:
3712 case tcc_comparison:
3713 case tcc_expression:
3714 switch (code)
3716 case COMPOUND_EXPR:
3717 /* Ignoring the first operand isn't quite right, but works best. */
3718 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3720 case COND_EXPR:
3721 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3722 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3723 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3725 case SAVE_EXPR:
3726 /* The save_expr function never wraps anything containing
3727 a PLACEHOLDER_EXPR. */
3728 return 0;
3730 default:
3731 break;
3734 switch (TREE_CODE_LENGTH (code))
3736 case 1:
3737 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3738 case 2:
3739 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3740 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3741 default:
3742 return 0;
3745 case tcc_vl_exp:
3746 switch (code)
3748 case CALL_EXPR:
3750 const_tree arg;
3751 const_call_expr_arg_iterator iter;
3752 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3753 if (CONTAINS_PLACEHOLDER_P (arg))
3754 return 1;
3755 return 0;
3757 default:
3758 return 0;
3761 default:
3762 return 0;
3764 return 0;
3767 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3768 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3769 field positions. */
3771 static bool
3772 type_contains_placeholder_1 (const_tree type)
3774 /* If the size contains a placeholder or the parent type (component type in
3775 the case of arrays) type involves a placeholder, this type does. */
3776 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3777 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3778 || (!POINTER_TYPE_P (type)
3779 && TREE_TYPE (type)
3780 && type_contains_placeholder_p (TREE_TYPE (type))))
3781 return true;
3783 /* Now do type-specific checks. Note that the last part of the check above
3784 greatly limits what we have to do below. */
3785 switch (TREE_CODE (type))
3787 case VOID_TYPE:
3788 case COMPLEX_TYPE:
3789 case ENUMERAL_TYPE:
3790 case BOOLEAN_TYPE:
3791 case POINTER_TYPE:
3792 case OFFSET_TYPE:
3793 case REFERENCE_TYPE:
3794 case METHOD_TYPE:
3795 case FUNCTION_TYPE:
3796 case VECTOR_TYPE:
3797 case NULLPTR_TYPE:
3798 return false;
3800 case INTEGER_TYPE:
3801 case REAL_TYPE:
3802 case FIXED_POINT_TYPE:
3803 /* Here we just check the bounds. */
3804 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3805 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3807 case ARRAY_TYPE:
3808 /* We have already checked the component type above, so just check
3809 the domain type. Flexible array members have a null domain. */
3810 return TYPE_DOMAIN (type) ?
3811 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3813 case RECORD_TYPE:
3814 case UNION_TYPE:
3815 case QUAL_UNION_TYPE:
3817 tree field;
3819 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3820 if (TREE_CODE (field) == FIELD_DECL
3821 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3822 || (TREE_CODE (type) == QUAL_UNION_TYPE
3823 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3824 || type_contains_placeholder_p (TREE_TYPE (field))))
3825 return true;
3827 return false;
3830 default:
3831 gcc_unreachable ();
3835 /* Wrapper around above function used to cache its result. */
3837 bool
3838 type_contains_placeholder_p (tree type)
3840 bool result;
3842 /* If the contains_placeholder_bits field has been initialized,
3843 then we know the answer. */
3844 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3845 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3847 /* Indicate that we've seen this type node, and the answer is false.
3848 This is what we want to return if we run into recursion via fields. */
3849 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3851 /* Compute the real value. */
3852 result = type_contains_placeholder_1 (type);
3854 /* Store the real value. */
3855 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3857 return result;
3860 /* Push tree EXP onto vector QUEUE if it is not already present. */
3862 static void
3863 push_without_duplicates (tree exp, vec<tree> *queue)
3865 unsigned int i;
3866 tree iter;
3868 FOR_EACH_VEC_ELT (*queue, i, iter)
3869 if (simple_cst_equal (iter, exp) == 1)
3870 break;
3872 if (!iter)
3873 queue->safe_push (exp);
3876 /* Given a tree EXP, find all occurrences of references to fields
3877 in a PLACEHOLDER_EXPR and place them in vector REFS without
3878 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3879 we assume here that EXP contains only arithmetic expressions
3880 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3881 argument list. */
3883 void
3884 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3886 enum tree_code code = TREE_CODE (exp);
3887 tree inner;
3888 int i;
3890 /* We handle TREE_LIST and COMPONENT_REF separately. */
3891 if (code == TREE_LIST)
3893 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3894 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3896 else if (code == COMPONENT_REF)
3898 for (inner = TREE_OPERAND (exp, 0);
3899 REFERENCE_CLASS_P (inner);
3900 inner = TREE_OPERAND (inner, 0))
3903 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3904 push_without_duplicates (exp, refs);
3905 else
3906 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3908 else
3909 switch (TREE_CODE_CLASS (code))
3911 case tcc_constant:
3912 break;
3914 case tcc_declaration:
3915 /* Variables allocated to static storage can stay. */
3916 if (!TREE_STATIC (exp))
3917 push_without_duplicates (exp, refs);
3918 break;
3920 case tcc_expression:
3921 /* This is the pattern built in ada/make_aligning_type. */
3922 if (code == ADDR_EXPR
3923 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3925 push_without_duplicates (exp, refs);
3926 break;
3929 /* Fall through. */
3931 case tcc_exceptional:
3932 case tcc_unary:
3933 case tcc_binary:
3934 case tcc_comparison:
3935 case tcc_reference:
3936 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3937 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3938 break;
3940 case tcc_vl_exp:
3941 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3942 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3943 break;
3945 default:
3946 gcc_unreachable ();
3950 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3951 return a tree with all occurrences of references to F in a
3952 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3953 CONST_DECLs. Note that we assume here that EXP contains only
3954 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3955 occurring only in their argument list. */
3957 tree
3958 substitute_in_expr (tree exp, tree f, tree r)
3960 enum tree_code code = TREE_CODE (exp);
3961 tree op0, op1, op2, op3;
3962 tree new_tree;
3964 /* We handle TREE_LIST and COMPONENT_REF separately. */
3965 if (code == TREE_LIST)
3967 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3968 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3969 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3970 return exp;
3972 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3974 else if (code == COMPONENT_REF)
3976 tree inner;
3978 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3979 and it is the right field, replace it with R. */
3980 for (inner = TREE_OPERAND (exp, 0);
3981 REFERENCE_CLASS_P (inner);
3982 inner = TREE_OPERAND (inner, 0))
3985 /* The field. */
3986 op1 = TREE_OPERAND (exp, 1);
3988 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3989 return r;
3991 /* If this expression hasn't been completed let, leave it alone. */
3992 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3993 return exp;
3995 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3996 if (op0 == TREE_OPERAND (exp, 0))
3997 return exp;
3999 new_tree
4000 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
4002 else
4003 switch (TREE_CODE_CLASS (code))
4005 case tcc_constant:
4006 return exp;
4008 case tcc_declaration:
4009 if (exp == f)
4010 return r;
4011 else
4012 return exp;
4014 case tcc_expression:
4015 if (exp == f)
4016 return r;
4018 /* Fall through. */
4020 case tcc_exceptional:
4021 case tcc_unary:
4022 case tcc_binary:
4023 case tcc_comparison:
4024 case tcc_reference:
4025 switch (TREE_CODE_LENGTH (code))
4027 case 0:
4028 return exp;
4030 case 1:
4031 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4032 if (op0 == TREE_OPERAND (exp, 0))
4033 return exp;
4035 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4036 break;
4038 case 2:
4039 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4040 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4042 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4043 return exp;
4045 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4046 break;
4048 case 3:
4049 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4050 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4051 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4053 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4054 && op2 == TREE_OPERAND (exp, 2))
4055 return exp;
4057 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4058 break;
4060 case 4:
4061 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4062 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4063 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4064 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4066 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4067 && op2 == TREE_OPERAND (exp, 2)
4068 && op3 == TREE_OPERAND (exp, 3))
4069 return exp;
4071 new_tree
4072 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4073 break;
4075 default:
4076 gcc_unreachable ();
4078 break;
4080 case tcc_vl_exp:
4082 int i;
4084 new_tree = NULL_TREE;
4086 /* If we are trying to replace F with a constant or with another
4087 instance of one of the arguments of the call, inline back
4088 functions which do nothing else than computing a value from
4089 the arguments they are passed. This makes it possible to
4090 fold partially or entirely the replacement expression. */
4091 if (code == CALL_EXPR)
4093 bool maybe_inline = false;
4094 if (CONSTANT_CLASS_P (r))
4095 maybe_inline = true;
4096 else
4097 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4098 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4100 maybe_inline = true;
4101 break;
4103 if (maybe_inline)
4105 tree t = maybe_inline_call_in_expr (exp);
4106 if (t)
4107 return SUBSTITUTE_IN_EXPR (t, f, r);
4111 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4113 tree op = TREE_OPERAND (exp, i);
4114 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4115 if (new_op != op)
4117 if (!new_tree)
4118 new_tree = copy_node (exp);
4119 TREE_OPERAND (new_tree, i) = new_op;
4123 if (new_tree)
4125 new_tree = fold (new_tree);
4126 if (TREE_CODE (new_tree) == CALL_EXPR)
4127 process_call_operands (new_tree);
4129 else
4130 return exp;
4132 break;
4134 default:
4135 gcc_unreachable ();
4138 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4140 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4141 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4143 return new_tree;
4146 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4147 for it within OBJ, a tree that is an object or a chain of references. */
4149 tree
4150 substitute_placeholder_in_expr (tree exp, tree obj)
4152 enum tree_code code = TREE_CODE (exp);
4153 tree op0, op1, op2, op3;
4154 tree new_tree;
4156 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4157 in the chain of OBJ. */
4158 if (code == PLACEHOLDER_EXPR)
4160 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4161 tree elt;
4163 for (elt = obj; elt != 0;
4164 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4165 || TREE_CODE (elt) == COND_EXPR)
4166 ? TREE_OPERAND (elt, 1)
4167 : (REFERENCE_CLASS_P (elt)
4168 || UNARY_CLASS_P (elt)
4169 || BINARY_CLASS_P (elt)
4170 || VL_EXP_CLASS_P (elt)
4171 || EXPRESSION_CLASS_P (elt))
4172 ? TREE_OPERAND (elt, 0) : 0))
4173 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4174 return elt;
4176 for (elt = obj; elt != 0;
4177 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4178 || TREE_CODE (elt) == COND_EXPR)
4179 ? TREE_OPERAND (elt, 1)
4180 : (REFERENCE_CLASS_P (elt)
4181 || UNARY_CLASS_P (elt)
4182 || BINARY_CLASS_P (elt)
4183 || VL_EXP_CLASS_P (elt)
4184 || EXPRESSION_CLASS_P (elt))
4185 ? TREE_OPERAND (elt, 0) : 0))
4186 if (POINTER_TYPE_P (TREE_TYPE (elt))
4187 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4188 == need_type))
4189 return fold_build1 (INDIRECT_REF, need_type, elt);
4191 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4192 survives until RTL generation, there will be an error. */
4193 return exp;
4196 /* TREE_LIST is special because we need to look at TREE_VALUE
4197 and TREE_CHAIN, not TREE_OPERANDS. */
4198 else if (code == TREE_LIST)
4200 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4201 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4202 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4203 return exp;
4205 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4207 else
4208 switch (TREE_CODE_CLASS (code))
4210 case tcc_constant:
4211 case tcc_declaration:
4212 return exp;
4214 case tcc_exceptional:
4215 case tcc_unary:
4216 case tcc_binary:
4217 case tcc_comparison:
4218 case tcc_expression:
4219 case tcc_reference:
4220 case tcc_statement:
4221 switch (TREE_CODE_LENGTH (code))
4223 case 0:
4224 return exp;
4226 case 1:
4227 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4228 if (op0 == TREE_OPERAND (exp, 0))
4229 return exp;
4231 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4232 break;
4234 case 2:
4235 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4236 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4238 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4239 return exp;
4241 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4242 break;
4244 case 3:
4245 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4246 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4247 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4249 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4250 && op2 == TREE_OPERAND (exp, 2))
4251 return exp;
4253 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4254 break;
4256 case 4:
4257 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4258 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4259 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4260 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4262 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4263 && op2 == TREE_OPERAND (exp, 2)
4264 && op3 == TREE_OPERAND (exp, 3))
4265 return exp;
4267 new_tree
4268 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4269 break;
4271 default:
4272 gcc_unreachable ();
4274 break;
4276 case tcc_vl_exp:
4278 int i;
4280 new_tree = NULL_TREE;
4282 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4284 tree op = TREE_OPERAND (exp, i);
4285 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4286 if (new_op != op)
4288 if (!new_tree)
4289 new_tree = copy_node (exp);
4290 TREE_OPERAND (new_tree, i) = new_op;
4294 if (new_tree)
4296 new_tree = fold (new_tree);
4297 if (TREE_CODE (new_tree) == CALL_EXPR)
4298 process_call_operands (new_tree);
4300 else
4301 return exp;
4303 break;
4305 default:
4306 gcc_unreachable ();
4309 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4311 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4312 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4314 return new_tree;
4318 /* Subroutine of stabilize_reference; this is called for subtrees of
4319 references. Any expression with side-effects must be put in a SAVE_EXPR
4320 to ensure that it is only evaluated once.
4322 We don't put SAVE_EXPR nodes around everything, because assigning very
4323 simple expressions to temporaries causes us to miss good opportunities
4324 for optimizations. Among other things, the opportunity to fold in the
4325 addition of a constant into an addressing mode often gets lost, e.g.
4326 "y[i+1] += x;". In general, we take the approach that we should not make
4327 an assignment unless we are forced into it - i.e., that any non-side effect
4328 operator should be allowed, and that cse should take care of coalescing
4329 multiple utterances of the same expression should that prove fruitful. */
4331 static tree
4332 stabilize_reference_1 (tree e)
4334 tree result;
4335 enum tree_code code = TREE_CODE (e);
4337 /* We cannot ignore const expressions because it might be a reference
4338 to a const array but whose index contains side-effects. But we can
4339 ignore things that are actual constant or that already have been
4340 handled by this function. */
4342 if (tree_invariant_p (e))
4343 return e;
4345 switch (TREE_CODE_CLASS (code))
4347 case tcc_exceptional:
4348 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4349 have side-effects. */
4350 if (code == STATEMENT_LIST)
4351 return save_expr (e);
4352 /* FALLTHRU */
4353 case tcc_type:
4354 case tcc_declaration:
4355 case tcc_comparison:
4356 case tcc_statement:
4357 case tcc_expression:
4358 case tcc_reference:
4359 case tcc_vl_exp:
4360 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4361 so that it will only be evaluated once. */
4362 /* The reference (r) and comparison (<) classes could be handled as
4363 below, but it is generally faster to only evaluate them once. */
4364 if (TREE_SIDE_EFFECTS (e))
4365 return save_expr (e);
4366 return e;
4368 case tcc_constant:
4369 /* Constants need no processing. In fact, we should never reach
4370 here. */
4371 return e;
4373 case tcc_binary:
4374 /* Division is slow and tends to be compiled with jumps,
4375 especially the division by powers of 2 that is often
4376 found inside of an array reference. So do it just once. */
4377 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4378 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4379 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4380 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4381 return save_expr (e);
4382 /* Recursively stabilize each operand. */
4383 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4384 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4385 break;
4387 case tcc_unary:
4388 /* Recursively stabilize each operand. */
4389 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4390 break;
4392 default:
4393 gcc_unreachable ();
4396 TREE_TYPE (result) = TREE_TYPE (e);
4397 TREE_READONLY (result) = TREE_READONLY (e);
4398 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4399 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4401 return result;
4404 /* Stabilize a reference so that we can use it any number of times
4405 without causing its operands to be evaluated more than once.
4406 Returns the stabilized reference. This works by means of save_expr,
4407 so see the caveats in the comments about save_expr.
4409 Also allows conversion expressions whose operands are references.
4410 Any other kind of expression is returned unchanged. */
4412 tree
4413 stabilize_reference (tree ref)
4415 tree result;
4416 enum tree_code code = TREE_CODE (ref);
4418 switch (code)
4420 case VAR_DECL:
4421 case PARM_DECL:
4422 case RESULT_DECL:
4423 /* No action is needed in this case. */
4424 return ref;
4426 CASE_CONVERT:
4427 case FLOAT_EXPR:
4428 case FIX_TRUNC_EXPR:
4429 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4430 break;
4432 case INDIRECT_REF:
4433 result = build_nt (INDIRECT_REF,
4434 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4435 break;
4437 case COMPONENT_REF:
4438 result = build_nt (COMPONENT_REF,
4439 stabilize_reference (TREE_OPERAND (ref, 0)),
4440 TREE_OPERAND (ref, 1), NULL_TREE);
4441 break;
4443 case BIT_FIELD_REF:
4444 result = build_nt (BIT_FIELD_REF,
4445 stabilize_reference (TREE_OPERAND (ref, 0)),
4446 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4447 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4448 break;
4450 case ARRAY_REF:
4451 result = build_nt (ARRAY_REF,
4452 stabilize_reference (TREE_OPERAND (ref, 0)),
4453 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4454 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4455 break;
4457 case ARRAY_RANGE_REF:
4458 result = build_nt (ARRAY_RANGE_REF,
4459 stabilize_reference (TREE_OPERAND (ref, 0)),
4460 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4461 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4462 break;
4464 case COMPOUND_EXPR:
4465 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4466 it wouldn't be ignored. This matters when dealing with
4467 volatiles. */
4468 return stabilize_reference_1 (ref);
4470 /* If arg isn't a kind of lvalue we recognize, make no change.
4471 Caller should recognize the error for an invalid lvalue. */
4472 default:
4473 return ref;
4475 case ERROR_MARK:
4476 return error_mark_node;
4479 TREE_TYPE (result) = TREE_TYPE (ref);
4480 TREE_READONLY (result) = TREE_READONLY (ref);
4481 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4482 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4484 return result;
4487 /* Low-level constructors for expressions. */
4489 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4490 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4492 void
4493 recompute_tree_invariant_for_addr_expr (tree t)
4495 tree node;
4496 bool tc = true, se = false;
4498 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4500 /* We started out assuming this address is both invariant and constant, but
4501 does not have side effects. Now go down any handled components and see if
4502 any of them involve offsets that are either non-constant or non-invariant.
4503 Also check for side-effects.
4505 ??? Note that this code makes no attempt to deal with the case where
4506 taking the address of something causes a copy due to misalignment. */
4508 #define UPDATE_FLAGS(NODE) \
4509 do { tree _node = (NODE); \
4510 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4511 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4513 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4514 node = TREE_OPERAND (node, 0))
4516 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4517 array reference (probably made temporarily by the G++ front end),
4518 so ignore all the operands. */
4519 if ((TREE_CODE (node) == ARRAY_REF
4520 || TREE_CODE (node) == ARRAY_RANGE_REF)
4521 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4523 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4524 if (TREE_OPERAND (node, 2))
4525 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4526 if (TREE_OPERAND (node, 3))
4527 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4529 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4530 FIELD_DECL, apparently. The G++ front end can put something else
4531 there, at least temporarily. */
4532 else if (TREE_CODE (node) == COMPONENT_REF
4533 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4535 if (TREE_OPERAND (node, 2))
4536 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4540 node = lang_hooks.expr_to_decl (node, &tc, &se);
4542 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4543 the address, since &(*a)->b is a form of addition. If it's a constant, the
4544 address is constant too. If it's a decl, its address is constant if the
4545 decl is static. Everything else is not constant and, furthermore,
4546 taking the address of a volatile variable is not volatile. */
4547 if (TREE_CODE (node) == INDIRECT_REF
4548 || TREE_CODE (node) == MEM_REF)
4549 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4550 else if (CONSTANT_CLASS_P (node))
4552 else if (DECL_P (node))
4553 tc &= (staticp (node) != NULL_TREE);
4554 else
4556 tc = false;
4557 se |= TREE_SIDE_EFFECTS (node);
4561 TREE_CONSTANT (t) = tc;
4562 TREE_SIDE_EFFECTS (t) = se;
4563 #undef UPDATE_FLAGS
4566 /* Build an expression of code CODE, data type TYPE, and operands as
4567 specified. Expressions and reference nodes can be created this way.
4568 Constants, decls, types and misc nodes cannot be.
4570 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4571 enough for all extant tree codes. */
4573 tree
4574 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4576 tree t;
4578 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4580 t = make_node (code PASS_MEM_STAT);
4581 TREE_TYPE (t) = tt;
4583 return t;
4586 tree
4587 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4589 int length = sizeof (struct tree_exp);
4590 tree t;
4592 record_node_allocation_statistics (code, length);
4594 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4596 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4598 memset (t, 0, sizeof (struct tree_common));
4600 TREE_SET_CODE (t, code);
4602 TREE_TYPE (t) = type;
4603 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4604 TREE_OPERAND (t, 0) = node;
4605 if (node && !TYPE_P (node))
4607 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4608 TREE_READONLY (t) = TREE_READONLY (node);
4611 if (TREE_CODE_CLASS (code) == tcc_statement)
4613 if (code != DEBUG_BEGIN_STMT)
4614 TREE_SIDE_EFFECTS (t) = 1;
4616 else switch (code)
4618 case VA_ARG_EXPR:
4619 /* All of these have side-effects, no matter what their
4620 operands are. */
4621 TREE_SIDE_EFFECTS (t) = 1;
4622 TREE_READONLY (t) = 0;
4623 break;
4625 case INDIRECT_REF:
4626 /* Whether a dereference is readonly has nothing to do with whether
4627 its operand is readonly. */
4628 TREE_READONLY (t) = 0;
4629 break;
4631 case ADDR_EXPR:
4632 if (node)
4633 recompute_tree_invariant_for_addr_expr (t);
4634 break;
4636 default:
4637 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4638 && node && !TYPE_P (node)
4639 && TREE_CONSTANT (node))
4640 TREE_CONSTANT (t) = 1;
4641 if (TREE_CODE_CLASS (code) == tcc_reference
4642 && node && TREE_THIS_VOLATILE (node))
4643 TREE_THIS_VOLATILE (t) = 1;
4644 break;
4647 return t;
4650 #define PROCESS_ARG(N) \
4651 do { \
4652 TREE_OPERAND (t, N) = arg##N; \
4653 if (arg##N &&!TYPE_P (arg##N)) \
4655 if (TREE_SIDE_EFFECTS (arg##N)) \
4656 side_effects = 1; \
4657 if (!TREE_READONLY (arg##N) \
4658 && !CONSTANT_CLASS_P (arg##N)) \
4659 (void) (read_only = 0); \
4660 if (!TREE_CONSTANT (arg##N)) \
4661 (void) (constant = 0); \
4663 } while (0)
4665 tree
4666 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4668 bool constant, read_only, side_effects, div_by_zero;
4669 tree t;
4671 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4673 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4674 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4675 /* When sizetype precision doesn't match that of pointers
4676 we need to be able to build explicit extensions or truncations
4677 of the offset argument. */
4678 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4679 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4680 && TREE_CODE (arg1) == INTEGER_CST);
4682 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4683 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4684 && ptrofftype_p (TREE_TYPE (arg1)));
4686 t = make_node (code PASS_MEM_STAT);
4687 TREE_TYPE (t) = tt;
4689 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4690 result based on those same flags for the arguments. But if the
4691 arguments aren't really even `tree' expressions, we shouldn't be trying
4692 to do this. */
4694 /* Expressions without side effects may be constant if their
4695 arguments are as well. */
4696 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4697 || TREE_CODE_CLASS (code) == tcc_binary);
4698 read_only = 1;
4699 side_effects = TREE_SIDE_EFFECTS (t);
4701 switch (code)
4703 case TRUNC_DIV_EXPR:
4704 case CEIL_DIV_EXPR:
4705 case FLOOR_DIV_EXPR:
4706 case ROUND_DIV_EXPR:
4707 case EXACT_DIV_EXPR:
4708 case CEIL_MOD_EXPR:
4709 case FLOOR_MOD_EXPR:
4710 case ROUND_MOD_EXPR:
4711 case TRUNC_MOD_EXPR:
4712 div_by_zero = integer_zerop (arg1);
4713 break;
4714 default:
4715 div_by_zero = false;
4718 PROCESS_ARG (0);
4719 PROCESS_ARG (1);
4721 TREE_SIDE_EFFECTS (t) = side_effects;
4722 if (code == MEM_REF)
4724 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4726 tree o = TREE_OPERAND (arg0, 0);
4727 TREE_READONLY (t) = TREE_READONLY (o);
4728 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4731 else
4733 TREE_READONLY (t) = read_only;
4734 /* Don't mark X / 0 as constant. */
4735 TREE_CONSTANT (t) = constant && !div_by_zero;
4736 TREE_THIS_VOLATILE (t)
4737 = (TREE_CODE_CLASS (code) == tcc_reference
4738 && arg0 && TREE_THIS_VOLATILE (arg0));
4741 return t;
4745 tree
4746 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4747 tree arg2 MEM_STAT_DECL)
4749 bool constant, read_only, side_effects;
4750 tree t;
4752 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4753 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4755 t = make_node (code PASS_MEM_STAT);
4756 TREE_TYPE (t) = tt;
4758 read_only = 1;
4760 /* As a special exception, if COND_EXPR has NULL branches, we
4761 assume that it is a gimple statement and always consider
4762 it to have side effects. */
4763 if (code == COND_EXPR
4764 && tt == void_type_node
4765 && arg1 == NULL_TREE
4766 && arg2 == NULL_TREE)
4767 side_effects = true;
4768 else
4769 side_effects = TREE_SIDE_EFFECTS (t);
4771 PROCESS_ARG (0);
4772 PROCESS_ARG (1);
4773 PROCESS_ARG (2);
4775 if (code == COND_EXPR)
4776 TREE_READONLY (t) = read_only;
4778 TREE_SIDE_EFFECTS (t) = side_effects;
4779 TREE_THIS_VOLATILE (t)
4780 = (TREE_CODE_CLASS (code) == tcc_reference
4781 && arg0 && TREE_THIS_VOLATILE (arg0));
4783 return t;
4786 tree
4787 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4788 tree arg2, tree arg3 MEM_STAT_DECL)
4790 bool constant, read_only, side_effects;
4791 tree t;
4793 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4795 t = make_node (code PASS_MEM_STAT);
4796 TREE_TYPE (t) = tt;
4798 side_effects = TREE_SIDE_EFFECTS (t);
4800 PROCESS_ARG (0);
4801 PROCESS_ARG (1);
4802 PROCESS_ARG (2);
4803 PROCESS_ARG (3);
4805 TREE_SIDE_EFFECTS (t) = side_effects;
4806 TREE_THIS_VOLATILE (t)
4807 = (TREE_CODE_CLASS (code) == tcc_reference
4808 && arg0 && TREE_THIS_VOLATILE (arg0));
4810 return t;
4813 tree
4814 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4815 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4817 bool constant, read_only, side_effects;
4818 tree t;
4820 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4822 t = make_node (code PASS_MEM_STAT);
4823 TREE_TYPE (t) = tt;
4825 side_effects = TREE_SIDE_EFFECTS (t);
4827 PROCESS_ARG (0);
4828 PROCESS_ARG (1);
4829 PROCESS_ARG (2);
4830 PROCESS_ARG (3);
4831 PROCESS_ARG (4);
4833 TREE_SIDE_EFFECTS (t) = side_effects;
4834 if (code == TARGET_MEM_REF)
4836 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4838 tree o = TREE_OPERAND (arg0, 0);
4839 TREE_READONLY (t) = TREE_READONLY (o);
4840 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4843 else
4844 TREE_THIS_VOLATILE (t)
4845 = (TREE_CODE_CLASS (code) == tcc_reference
4846 && arg0 && TREE_THIS_VOLATILE (arg0));
4848 return t;
4851 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4852 on the pointer PTR. */
4854 tree
4855 build_simple_mem_ref_loc (location_t loc, tree ptr)
4857 poly_int64 offset = 0;
4858 tree ptype = TREE_TYPE (ptr);
4859 tree tem;
4860 /* For convenience allow addresses that collapse to a simple base
4861 and offset. */
4862 if (TREE_CODE (ptr) == ADDR_EXPR
4863 && (handled_component_p (TREE_OPERAND (ptr, 0))
4864 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4866 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4867 gcc_assert (ptr);
4868 if (TREE_CODE (ptr) == MEM_REF)
4870 offset += mem_ref_offset (ptr).force_shwi ();
4871 ptr = TREE_OPERAND (ptr, 0);
4873 else
4874 ptr = build_fold_addr_expr (ptr);
4875 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4877 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4878 ptr, build_int_cst (ptype, offset));
4879 SET_EXPR_LOCATION (tem, loc);
4880 return tem;
4883 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4885 poly_offset_int
4886 mem_ref_offset (const_tree t)
4888 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
4889 SIGNED);
4892 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4893 offsetted by OFFSET units. */
4895 tree
4896 build_invariant_address (tree type, tree base, poly_int64 offset)
4898 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4899 build_fold_addr_expr (base),
4900 build_int_cst (ptr_type_node, offset));
4901 tree addr = build1 (ADDR_EXPR, type, ref);
4902 recompute_tree_invariant_for_addr_expr (addr);
4903 return addr;
4906 /* Similar except don't specify the TREE_TYPE
4907 and leave the TREE_SIDE_EFFECTS as 0.
4908 It is permissible for arguments to be null,
4909 or even garbage if their values do not matter. */
4911 tree
4912 build_nt (enum tree_code code, ...)
4914 tree t;
4915 int length;
4916 int i;
4917 va_list p;
4919 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4921 va_start (p, code);
4923 t = make_node (code);
4924 length = TREE_CODE_LENGTH (code);
4926 for (i = 0; i < length; i++)
4927 TREE_OPERAND (t, i) = va_arg (p, tree);
4929 va_end (p);
4930 return t;
4933 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4934 tree vec. */
4936 tree
4937 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4939 tree ret, t;
4940 unsigned int ix;
4942 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4943 CALL_EXPR_FN (ret) = fn;
4944 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4945 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4946 CALL_EXPR_ARG (ret, ix) = t;
4947 return ret;
4950 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4951 We do NOT enter this node in any sort of symbol table.
4953 LOC is the location of the decl.
4955 layout_decl is used to set up the decl's storage layout.
4956 Other slots are initialized to 0 or null pointers. */
4958 tree
4959 build_decl (location_t loc, enum tree_code code, tree name,
4960 tree type MEM_STAT_DECL)
4962 tree t;
4964 t = make_node (code PASS_MEM_STAT);
4965 DECL_SOURCE_LOCATION (t) = loc;
4967 /* if (type == error_mark_node)
4968 type = integer_type_node; */
4969 /* That is not done, deliberately, so that having error_mark_node
4970 as the type can suppress useless errors in the use of this variable. */
4972 DECL_NAME (t) = name;
4973 TREE_TYPE (t) = type;
4975 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4976 layout_decl (t, 0);
4978 return t;
4981 /* Builds and returns function declaration with NAME and TYPE. */
4983 tree
4984 build_fn_decl (const char *name, tree type)
4986 tree id = get_identifier (name);
4987 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4989 DECL_EXTERNAL (decl) = 1;
4990 TREE_PUBLIC (decl) = 1;
4991 DECL_ARTIFICIAL (decl) = 1;
4992 TREE_NOTHROW (decl) = 1;
4994 return decl;
4997 vec<tree, va_gc> *all_translation_units;
4999 /* Builds a new translation-unit decl with name NAME, queues it in the
5000 global list of translation-unit decls and returns it. */
5002 tree
5003 build_translation_unit_decl (tree name)
5005 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5006 name, NULL_TREE);
5007 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5008 vec_safe_push (all_translation_units, tu);
5009 return tu;
5013 /* BLOCK nodes are used to represent the structure of binding contours
5014 and declarations, once those contours have been exited and their contents
5015 compiled. This information is used for outputting debugging info. */
5017 tree
5018 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5020 tree block = make_node (BLOCK);
5022 BLOCK_VARS (block) = vars;
5023 BLOCK_SUBBLOCKS (block) = subblocks;
5024 BLOCK_SUPERCONTEXT (block) = supercontext;
5025 BLOCK_CHAIN (block) = chain;
5026 return block;
5030 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5032 LOC is the location to use in tree T. */
5034 void
5035 protected_set_expr_location (tree t, location_t loc)
5037 if (CAN_HAVE_LOCATION_P (t))
5038 SET_EXPR_LOCATION (t, loc);
5041 /* Reset the expression *EXPR_P, a size or position.
5043 ??? We could reset all non-constant sizes or positions. But it's cheap
5044 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5046 We need to reset self-referential sizes or positions because they cannot
5047 be gimplified and thus can contain a CALL_EXPR after the gimplification
5048 is finished, which will run afoul of LTO streaming. And they need to be
5049 reset to something essentially dummy but not constant, so as to preserve
5050 the properties of the object they are attached to. */
5052 static inline void
5053 free_lang_data_in_one_sizepos (tree *expr_p)
5055 tree expr = *expr_p;
5056 if (CONTAINS_PLACEHOLDER_P (expr))
5057 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5061 /* Reset all the fields in a binfo node BINFO. We only keep
5062 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5064 static void
5065 free_lang_data_in_binfo (tree binfo)
5067 unsigned i;
5068 tree t;
5070 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5072 BINFO_VIRTUALS (binfo) = NULL_TREE;
5073 BINFO_BASE_ACCESSES (binfo) = NULL;
5074 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5075 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5077 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5078 free_lang_data_in_binfo (t);
5082 /* Reset all language specific information still present in TYPE. */
5084 static void
5085 free_lang_data_in_type (tree type)
5087 gcc_assert (TYPE_P (type));
5089 /* Give the FE a chance to remove its own data first. */
5090 lang_hooks.free_lang_data (type);
5092 TREE_LANG_FLAG_0 (type) = 0;
5093 TREE_LANG_FLAG_1 (type) = 0;
5094 TREE_LANG_FLAG_2 (type) = 0;
5095 TREE_LANG_FLAG_3 (type) = 0;
5096 TREE_LANG_FLAG_4 (type) = 0;
5097 TREE_LANG_FLAG_5 (type) = 0;
5098 TREE_LANG_FLAG_6 (type) = 0;
5100 if (TREE_CODE (type) == FUNCTION_TYPE)
5102 /* Remove the const and volatile qualifiers from arguments. The
5103 C++ front end removes them, but the C front end does not,
5104 leading to false ODR violation errors when merging two
5105 instances of the same function signature compiled by
5106 different front ends. */
5107 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5109 tree arg_type = TREE_VALUE (p);
5111 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5113 int quals = TYPE_QUALS (arg_type)
5114 & ~TYPE_QUAL_CONST
5115 & ~TYPE_QUAL_VOLATILE;
5116 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5117 free_lang_data_in_type (TREE_VALUE (p));
5119 /* C++ FE uses TREE_PURPOSE to store initial values. */
5120 TREE_PURPOSE (p) = NULL;
5123 else if (TREE_CODE (type) == METHOD_TYPE)
5124 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5125 /* C++ FE uses TREE_PURPOSE to store initial values. */
5126 TREE_PURPOSE (p) = NULL;
5127 else if (RECORD_OR_UNION_TYPE_P (type))
5129 /* Remove members that are not FIELD_DECLs from the field list
5130 of an aggregate. These occur in C++. */
5131 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5132 if (TREE_CODE (member) == FIELD_DECL)
5133 prev = &DECL_CHAIN (member);
5134 else
5135 *prev = DECL_CHAIN (member);
5137 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
5138 and danagle the pointer from time to time. */
5139 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
5140 TYPE_VFIELD (type) = NULL_TREE;
5142 if (TYPE_BINFO (type))
5144 free_lang_data_in_binfo (TYPE_BINFO (type));
5145 /* We need to preserve link to bases and virtual table for all
5146 polymorphic types to make devirtualization machinery working. */
5147 if (!BINFO_VTABLE (TYPE_BINFO (type))
5148 || !flag_devirtualize)
5149 TYPE_BINFO (type) = NULL;
5152 else if (INTEGRAL_TYPE_P (type)
5153 || SCALAR_FLOAT_TYPE_P (type)
5154 || FIXED_POINT_TYPE_P (type))
5156 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5157 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5160 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5162 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5163 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5165 if (TYPE_CONTEXT (type)
5166 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5168 tree ctx = TYPE_CONTEXT (type);
5171 ctx = BLOCK_SUPERCONTEXT (ctx);
5173 while (ctx && TREE_CODE (ctx) == BLOCK);
5174 TYPE_CONTEXT (type) = ctx;
5177 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5178 TYPE_DECL if the type doesn't have linkage. */
5179 if (! type_with_linkage_p (type))
5181 TYPE_NAME (type) = TYPE_IDENTIFIER (type);
5182 TYPE_STUB_DECL (type) = NULL;
5187 /* Return true if DECL may need an assembler name to be set. */
5189 static inline bool
5190 need_assembler_name_p (tree decl)
5192 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5193 Rule merging. This makes type_odr_p to return true on those types during
5194 LTO and by comparing the mangled name, we can say what types are intended
5195 to be equivalent across compilation unit.
5197 We do not store names of type_in_anonymous_namespace_p.
5199 Record, union and enumeration type have linkage that allows use
5200 to check type_in_anonymous_namespace_p. We do not mangle compound types
5201 that always can be compared structurally.
5203 Similarly for builtin types, we compare properties of their main variant.
5204 A special case are integer types where mangling do make differences
5205 between char/signed char/unsigned char etc. Storing name for these makes
5206 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5207 See cp/mangle.c:write_builtin_type for details. */
5209 if (flag_lto_odr_type_mering
5210 && TREE_CODE (decl) == TYPE_DECL
5211 && DECL_NAME (decl)
5212 && decl == TYPE_NAME (TREE_TYPE (decl))
5213 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5214 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5215 && (type_with_linkage_p (TREE_TYPE (decl))
5216 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5217 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5218 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5219 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5220 if (!VAR_OR_FUNCTION_DECL_P (decl))
5221 return false;
5223 /* If DECL already has its assembler name set, it does not need a
5224 new one. */
5225 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5226 || DECL_ASSEMBLER_NAME_SET_P (decl))
5227 return false;
5229 /* Abstract decls do not need an assembler name. */
5230 if (DECL_ABSTRACT_P (decl))
5231 return false;
5233 /* For VAR_DECLs, only static, public and external symbols need an
5234 assembler name. */
5235 if (VAR_P (decl)
5236 && !TREE_STATIC (decl)
5237 && !TREE_PUBLIC (decl)
5238 && !DECL_EXTERNAL (decl))
5239 return false;
5241 if (TREE_CODE (decl) == FUNCTION_DECL)
5243 /* Do not set assembler name on builtins. Allow RTL expansion to
5244 decide whether to expand inline or via a regular call. */
5245 if (DECL_BUILT_IN (decl)
5246 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5247 return false;
5249 /* Functions represented in the callgraph need an assembler name. */
5250 if (cgraph_node::get (decl) != NULL)
5251 return true;
5253 /* Unused and not public functions don't need an assembler name. */
5254 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5255 return false;
5258 return true;
5262 /* Reset all language specific information still present in symbol
5263 DECL. */
5265 static void
5266 free_lang_data_in_decl (tree decl)
5268 gcc_assert (DECL_P (decl));
5270 /* Give the FE a chance to remove its own data first. */
5271 lang_hooks.free_lang_data (decl);
5273 TREE_LANG_FLAG_0 (decl) = 0;
5274 TREE_LANG_FLAG_1 (decl) = 0;
5275 TREE_LANG_FLAG_2 (decl) = 0;
5276 TREE_LANG_FLAG_3 (decl) = 0;
5277 TREE_LANG_FLAG_4 (decl) = 0;
5278 TREE_LANG_FLAG_5 (decl) = 0;
5279 TREE_LANG_FLAG_6 (decl) = 0;
5281 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5282 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5283 if (TREE_CODE (decl) == FIELD_DECL)
5285 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5286 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5287 DECL_QUALIFIER (decl) = NULL_TREE;
5290 if (TREE_CODE (decl) == FUNCTION_DECL)
5292 struct cgraph_node *node;
5293 if (!(node = cgraph_node::get (decl))
5294 || (!node->definition && !node->clones))
5296 if (node)
5297 node->release_body ();
5298 else
5300 release_function_body (decl);
5301 DECL_ARGUMENTS (decl) = NULL;
5302 DECL_RESULT (decl) = NULL;
5303 DECL_INITIAL (decl) = error_mark_node;
5306 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5308 tree t;
5310 /* If DECL has a gimple body, then the context for its
5311 arguments must be DECL. Otherwise, it doesn't really
5312 matter, as we will not be emitting any code for DECL. In
5313 general, there may be other instances of DECL created by
5314 the front end and since PARM_DECLs are generally shared,
5315 their DECL_CONTEXT changes as the replicas of DECL are
5316 created. The only time where DECL_CONTEXT is important
5317 is for the FUNCTION_DECLs that have a gimple body (since
5318 the PARM_DECL will be used in the function's body). */
5319 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5320 DECL_CONTEXT (t) = decl;
5321 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5322 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5323 = target_option_default_node;
5324 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5325 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5326 = optimization_default_node;
5329 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5330 At this point, it is not needed anymore. */
5331 DECL_SAVED_TREE (decl) = NULL_TREE;
5333 /* Clear the abstract origin if it refers to a method.
5334 Otherwise dwarf2out.c will ICE as we splice functions out of
5335 TYPE_FIELDS and thus the origin will not be output
5336 correctly. */
5337 if (DECL_ABSTRACT_ORIGIN (decl)
5338 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5339 && RECORD_OR_UNION_TYPE_P
5340 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5341 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5343 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5344 DECL_VINDEX referring to itself into a vtable slot number as it
5345 should. Happens with functions that are copied and then forgotten
5346 about. Just clear it, it won't matter anymore. */
5347 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5348 DECL_VINDEX (decl) = NULL_TREE;
5350 else if (VAR_P (decl))
5352 if ((DECL_EXTERNAL (decl)
5353 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5354 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5355 DECL_INITIAL (decl) = NULL_TREE;
5357 else if (TREE_CODE (decl) == TYPE_DECL)
5359 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5360 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5361 DECL_INITIAL (decl) = NULL_TREE;
5363 else if (TREE_CODE (decl) == FIELD_DECL)
5364 DECL_INITIAL (decl) = NULL_TREE;
5365 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5366 && DECL_INITIAL (decl)
5367 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5369 /* Strip builtins from the translation-unit BLOCK. We still have targets
5370 without builtin_decl_explicit support and also builtins are shared
5371 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5372 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5373 while (*nextp)
5375 tree var = *nextp;
5376 if (TREE_CODE (var) == FUNCTION_DECL
5377 && DECL_BUILT_IN (var))
5378 *nextp = TREE_CHAIN (var);
5379 else
5380 nextp = &TREE_CHAIN (var);
5386 /* Data used when collecting DECLs and TYPEs for language data removal. */
5388 struct free_lang_data_d
5390 free_lang_data_d () : decls (100), types (100) {}
5392 /* Worklist to avoid excessive recursion. */
5393 auto_vec<tree> worklist;
5395 /* Set of traversed objects. Used to avoid duplicate visits. */
5396 hash_set<tree> pset;
5398 /* Array of symbols to process with free_lang_data_in_decl. */
5399 auto_vec<tree> decls;
5401 /* Array of types to process with free_lang_data_in_type. */
5402 auto_vec<tree> types;
5406 /* Add type or decl T to one of the list of tree nodes that need their
5407 language data removed. The lists are held inside FLD. */
5409 static void
5410 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5412 if (DECL_P (t))
5413 fld->decls.safe_push (t);
5414 else if (TYPE_P (t))
5415 fld->types.safe_push (t);
5416 else
5417 gcc_unreachable ();
5420 /* Push tree node T into FLD->WORKLIST. */
5422 static inline void
5423 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5425 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5426 fld->worklist.safe_push ((t));
5430 /* Operand callback helper for free_lang_data_in_node. *TP is the
5431 subtree operand being considered. */
5433 static tree
5434 find_decls_types_r (tree *tp, int *ws, void *data)
5436 tree t = *tp;
5437 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5439 if (TREE_CODE (t) == TREE_LIST)
5440 return NULL_TREE;
5442 /* Language specific nodes will be removed, so there is no need
5443 to gather anything under them. */
5444 if (is_lang_specific (t))
5446 *ws = 0;
5447 return NULL_TREE;
5450 if (DECL_P (t))
5452 /* Note that walk_tree does not traverse every possible field in
5453 decls, so we have to do our own traversals here. */
5454 add_tree_to_fld_list (t, fld);
5456 fld_worklist_push (DECL_NAME (t), fld);
5457 fld_worklist_push (DECL_CONTEXT (t), fld);
5458 fld_worklist_push (DECL_SIZE (t), fld);
5459 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5461 /* We are going to remove everything under DECL_INITIAL for
5462 TYPE_DECLs. No point walking them. */
5463 if (TREE_CODE (t) != TYPE_DECL)
5464 fld_worklist_push (DECL_INITIAL (t), fld);
5466 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5467 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5469 if (TREE_CODE (t) == FUNCTION_DECL)
5471 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5472 fld_worklist_push (DECL_RESULT (t), fld);
5474 else if (TREE_CODE (t) == TYPE_DECL)
5476 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5478 else if (TREE_CODE (t) == FIELD_DECL)
5480 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5481 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5482 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5483 fld_worklist_push (DECL_FCONTEXT (t), fld);
5486 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5487 && DECL_HAS_VALUE_EXPR_P (t))
5488 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5490 if (TREE_CODE (t) != FIELD_DECL
5491 && TREE_CODE (t) != TYPE_DECL)
5492 fld_worklist_push (TREE_CHAIN (t), fld);
5493 *ws = 0;
5495 else if (TYPE_P (t))
5497 /* Note that walk_tree does not traverse every possible field in
5498 types, so we have to do our own traversals here. */
5499 add_tree_to_fld_list (t, fld);
5501 if (!RECORD_OR_UNION_TYPE_P (t))
5502 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5503 fld_worklist_push (TYPE_SIZE (t), fld);
5504 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5505 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5506 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5507 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5508 fld_worklist_push (TYPE_NAME (t), fld);
5509 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5510 them and thus do not and want not to reach unused pointer types
5511 this way. */
5512 if (!POINTER_TYPE_P (t))
5513 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5514 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5515 if (!RECORD_OR_UNION_TYPE_P (t))
5516 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5517 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5518 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5519 do not and want not to reach unused variants this way. */
5520 if (TYPE_CONTEXT (t))
5522 tree ctx = TYPE_CONTEXT (t);
5523 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5524 So push that instead. */
5525 while (ctx && TREE_CODE (ctx) == BLOCK)
5526 ctx = BLOCK_SUPERCONTEXT (ctx);
5527 fld_worklist_push (ctx, fld);
5529 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5530 and want not to reach unused types this way. */
5532 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5534 unsigned i;
5535 tree tem;
5536 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5537 fld_worklist_push (TREE_TYPE (tem), fld);
5538 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
5539 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
5541 if (RECORD_OR_UNION_TYPE_P (t))
5543 tree tem;
5544 /* Push all TYPE_FIELDS - there can be interleaving interesting
5545 and non-interesting things. */
5546 tem = TYPE_FIELDS (t);
5547 while (tem)
5549 if (TREE_CODE (tem) == FIELD_DECL
5550 || (TREE_CODE (tem) == TYPE_DECL
5551 && !DECL_IGNORED_P (tem)
5552 && debug_info_level > DINFO_LEVEL_TERSE
5553 && !is_redundant_typedef (tem)))
5554 fld_worklist_push (tem, fld);
5555 tem = TREE_CHAIN (tem);
5558 if (FUNC_OR_METHOD_TYPE_P (t))
5559 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
5561 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5562 *ws = 0;
5564 else if (TREE_CODE (t) == BLOCK)
5566 for (tree *tem = &BLOCK_VARS (t); *tem; )
5568 if (TREE_CODE (*tem) != VAR_DECL
5569 || !auto_var_in_fn_p (*tem, DECL_CONTEXT (*tem)))
5571 gcc_assert (TREE_CODE (*tem) != RESULT_DECL
5572 && TREE_CODE (*tem) != PARM_DECL);
5573 *tem = TREE_CHAIN (*tem);
5575 else
5577 fld_worklist_push (*tem, fld);
5578 tem = &TREE_CHAIN (*tem);
5581 for (tree tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5582 fld_worklist_push (tem, fld);
5583 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5586 if (TREE_CODE (t) != IDENTIFIER_NODE
5587 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5588 fld_worklist_push (TREE_TYPE (t), fld);
5590 return NULL_TREE;
5594 /* Find decls and types in T. */
5596 static void
5597 find_decls_types (tree t, struct free_lang_data_d *fld)
5599 while (1)
5601 if (!fld->pset.contains (t))
5602 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5603 if (fld->worklist.is_empty ())
5604 break;
5605 t = fld->worklist.pop ();
5609 /* Translate all the types in LIST with the corresponding runtime
5610 types. */
5612 static tree
5613 get_eh_types_for_runtime (tree list)
5615 tree head, prev;
5617 if (list == NULL_TREE)
5618 return NULL_TREE;
5620 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5621 prev = head;
5622 list = TREE_CHAIN (list);
5623 while (list)
5625 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5626 TREE_CHAIN (prev) = n;
5627 prev = TREE_CHAIN (prev);
5628 list = TREE_CHAIN (list);
5631 return head;
5635 /* Find decls and types referenced in EH region R and store them in
5636 FLD->DECLS and FLD->TYPES. */
5638 static void
5639 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5641 switch (r->type)
5643 case ERT_CLEANUP:
5644 break;
5646 case ERT_TRY:
5648 eh_catch c;
5650 /* The types referenced in each catch must first be changed to the
5651 EH types used at runtime. This removes references to FE types
5652 in the region. */
5653 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5655 c->type_list = get_eh_types_for_runtime (c->type_list);
5656 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
5659 break;
5661 case ERT_ALLOWED_EXCEPTIONS:
5662 r->u.allowed.type_list
5663 = get_eh_types_for_runtime (r->u.allowed.type_list);
5664 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
5665 break;
5667 case ERT_MUST_NOT_THROW:
5668 walk_tree (&r->u.must_not_throw.failure_decl,
5669 find_decls_types_r, fld, &fld->pset);
5670 break;
5675 /* Find decls and types referenced in cgraph node N and store them in
5676 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5677 look for *every* kind of DECL and TYPE node reachable from N,
5678 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5679 NAMESPACE_DECLs, etc). */
5681 static void
5682 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5684 basic_block bb;
5685 struct function *fn;
5686 unsigned ix;
5687 tree t;
5689 find_decls_types (n->decl, fld);
5691 if (!gimple_has_body_p (n->decl))
5692 return;
5694 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5696 fn = DECL_STRUCT_FUNCTION (n->decl);
5698 /* Traverse locals. */
5699 FOR_EACH_LOCAL_DECL (fn, ix, t)
5700 find_decls_types (t, fld);
5702 /* Traverse EH regions in FN. */
5704 eh_region r;
5705 FOR_ALL_EH_REGION_FN (r, fn)
5706 find_decls_types_in_eh_region (r, fld);
5709 /* Traverse every statement in FN. */
5710 FOR_EACH_BB_FN (bb, fn)
5712 gphi_iterator psi;
5713 gimple_stmt_iterator si;
5714 unsigned i;
5716 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5718 gphi *phi = psi.phi ();
5720 for (i = 0; i < gimple_phi_num_args (phi); i++)
5722 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5723 find_decls_types (*arg_p, fld);
5727 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5729 gimple *stmt = gsi_stmt (si);
5731 if (is_gimple_call (stmt))
5732 find_decls_types (gimple_call_fntype (stmt), fld);
5734 for (i = 0; i < gimple_num_ops (stmt); i++)
5736 tree arg = gimple_op (stmt, i);
5737 find_decls_types (arg, fld);
5744 /* Find decls and types referenced in varpool node N and store them in
5745 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5746 look for *every* kind of DECL and TYPE node reachable from N,
5747 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5748 NAMESPACE_DECLs, etc). */
5750 static void
5751 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5753 find_decls_types (v->decl, fld);
5756 /* If T needs an assembler name, have one created for it. */
5758 void
5759 assign_assembler_name_if_needed (tree t)
5761 if (need_assembler_name_p (t))
5763 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5764 diagnostics that use input_location to show locus
5765 information. The problem here is that, at this point,
5766 input_location is generally anchored to the end of the file
5767 (since the parser is long gone), so we don't have a good
5768 position to pin it to.
5770 To alleviate this problem, this uses the location of T's
5771 declaration. Examples of this are
5772 testsuite/g++.dg/template/cond2.C and
5773 testsuite/g++.dg/template/pr35240.C. */
5774 location_t saved_location = input_location;
5775 input_location = DECL_SOURCE_LOCATION (t);
5777 decl_assembler_name (t);
5779 input_location = saved_location;
5784 /* Free language specific information for every operand and expression
5785 in every node of the call graph. This process operates in three stages:
5787 1- Every callgraph node and varpool node is traversed looking for
5788 decls and types embedded in them. This is a more exhaustive
5789 search than that done by find_referenced_vars, because it will
5790 also collect individual fields, decls embedded in types, etc.
5792 2- All the decls found are sent to free_lang_data_in_decl.
5794 3- All the types found are sent to free_lang_data_in_type.
5796 The ordering between decls and types is important because
5797 free_lang_data_in_decl sets assembler names, which includes
5798 mangling. So types cannot be freed up until assembler names have
5799 been set up. */
5801 static void
5802 free_lang_data_in_cgraph (void)
5804 struct cgraph_node *n;
5805 varpool_node *v;
5806 struct free_lang_data_d fld;
5807 tree t;
5808 unsigned i;
5809 alias_pair *p;
5811 /* Find decls and types in the body of every function in the callgraph. */
5812 FOR_EACH_FUNCTION (n)
5813 find_decls_types_in_node (n, &fld);
5815 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5816 find_decls_types (p->decl, &fld);
5818 /* Find decls and types in every varpool symbol. */
5819 FOR_EACH_VARIABLE (v)
5820 find_decls_types_in_var (v, &fld);
5822 /* Set the assembler name on every decl found. We need to do this
5823 now because free_lang_data_in_decl will invalidate data needed
5824 for mangling. This breaks mangling on interdependent decls. */
5825 FOR_EACH_VEC_ELT (fld.decls, i, t)
5826 assign_assembler_name_if_needed (t);
5828 /* Traverse every decl found freeing its language data. */
5829 FOR_EACH_VEC_ELT (fld.decls, i, t)
5830 free_lang_data_in_decl (t);
5832 /* Traverse every type found freeing its language data. */
5833 FOR_EACH_VEC_ELT (fld.types, i, t)
5834 free_lang_data_in_type (t);
5835 if (flag_checking)
5837 FOR_EACH_VEC_ELT (fld.types, i, t)
5838 verify_type (t);
5843 /* Free resources that are used by FE but are not needed once they are done. */
5845 static unsigned
5846 free_lang_data (void)
5848 unsigned i;
5850 /* If we are the LTO frontend we have freed lang-specific data already. */
5851 if (in_lto_p
5852 || (!flag_generate_lto && !flag_generate_offload))
5853 return 0;
5855 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
5856 if (vec_safe_is_empty (all_translation_units))
5857 build_translation_unit_decl (NULL_TREE);
5859 /* Allocate and assign alias sets to the standard integer types
5860 while the slots are still in the way the frontends generated them. */
5861 for (i = 0; i < itk_none; ++i)
5862 if (integer_types[i])
5863 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5865 /* Traverse the IL resetting language specific information for
5866 operands, expressions, etc. */
5867 free_lang_data_in_cgraph ();
5869 /* Create gimple variants for common types. */
5870 for (unsigned i = 0;
5871 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
5872 ++i)
5873 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
5875 /* Reset some langhooks. Do not reset types_compatible_p, it may
5876 still be used indirectly via the get_alias_set langhook. */
5877 lang_hooks.dwarf_name = lhd_dwarf_name;
5878 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5879 lang_hooks.gimplify_expr = lhd_gimplify_expr;
5881 /* We do not want the default decl_assembler_name implementation,
5882 rather if we have fixed everything we want a wrapper around it
5883 asserting that all non-local symbols already got their assembler
5884 name and only produce assembler names for local symbols. Or rather
5885 make sure we never call decl_assembler_name on local symbols and
5886 devise a separate, middle-end private scheme for it. */
5888 /* Reset diagnostic machinery. */
5889 tree_diagnostics_defaults (global_dc);
5891 rebuild_type_inheritance_graph ();
5893 return 0;
5897 namespace {
5899 const pass_data pass_data_ipa_free_lang_data =
5901 SIMPLE_IPA_PASS, /* type */
5902 "*free_lang_data", /* name */
5903 OPTGROUP_NONE, /* optinfo_flags */
5904 TV_IPA_FREE_LANG_DATA, /* tv_id */
5905 0, /* properties_required */
5906 0, /* properties_provided */
5907 0, /* properties_destroyed */
5908 0, /* todo_flags_start */
5909 0, /* todo_flags_finish */
5912 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5914 public:
5915 pass_ipa_free_lang_data (gcc::context *ctxt)
5916 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5919 /* opt_pass methods: */
5920 virtual unsigned int execute (function *) { return free_lang_data (); }
5922 }; // class pass_ipa_free_lang_data
5924 } // anon namespace
5926 simple_ipa_opt_pass *
5927 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5929 return new pass_ipa_free_lang_data (ctxt);
5932 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5933 of the various TYPE_QUAL values. */
5935 static void
5936 set_type_quals (tree type, int type_quals)
5938 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5939 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5940 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5941 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
5942 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
5945 /* Returns true iff CAND and BASE have equivalent language-specific
5946 qualifiers. */
5948 bool
5949 check_lang_type (const_tree cand, const_tree base)
5951 if (lang_hooks.types.type_hash_eq == NULL)
5952 return true;
5953 /* type_hash_eq currently only applies to these types. */
5954 if (TREE_CODE (cand) != FUNCTION_TYPE
5955 && TREE_CODE (cand) != METHOD_TYPE)
5956 return true;
5957 return lang_hooks.types.type_hash_eq (cand, base);
5960 /* Returns true iff unqualified CAND and BASE are equivalent. */
5962 bool
5963 check_base_type (const_tree cand, const_tree base)
5965 return (TYPE_NAME (cand) == TYPE_NAME (base)
5966 /* Apparently this is needed for Objective-C. */
5967 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5968 /* Check alignment. */
5969 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5970 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5971 TYPE_ATTRIBUTES (base)));
5974 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5976 bool
5977 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5979 return (TYPE_QUALS (cand) == type_quals
5980 && check_base_type (cand, base)
5981 && check_lang_type (cand, base));
5984 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5986 static bool
5987 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5989 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5990 && TYPE_NAME (cand) == TYPE_NAME (base)
5991 /* Apparently this is needed for Objective-C. */
5992 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5993 /* Check alignment. */
5994 && TYPE_ALIGN (cand) == align
5995 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5996 TYPE_ATTRIBUTES (base))
5997 && check_lang_type (cand, base));
6000 /* This function checks to see if TYPE matches the size one of the built-in
6001 atomic types, and returns that core atomic type. */
6003 static tree
6004 find_atomic_core_type (tree type)
6006 tree base_atomic_type;
6008 /* Only handle complete types. */
6009 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
6010 return NULL_TREE;
6012 switch (tree_to_uhwi (TYPE_SIZE (type)))
6014 case 8:
6015 base_atomic_type = atomicQI_type_node;
6016 break;
6018 case 16:
6019 base_atomic_type = atomicHI_type_node;
6020 break;
6022 case 32:
6023 base_atomic_type = atomicSI_type_node;
6024 break;
6026 case 64:
6027 base_atomic_type = atomicDI_type_node;
6028 break;
6030 case 128:
6031 base_atomic_type = atomicTI_type_node;
6032 break;
6034 default:
6035 base_atomic_type = NULL_TREE;
6038 return base_atomic_type;
6041 /* Return a version of the TYPE, qualified as indicated by the
6042 TYPE_QUALS, if one exists. If no qualified version exists yet,
6043 return NULL_TREE. */
6045 tree
6046 get_qualified_type (tree type, int type_quals)
6048 tree t;
6050 if (TYPE_QUALS (type) == type_quals)
6051 return type;
6053 /* Search the chain of variants to see if there is already one there just
6054 like the one we need to have. If so, use that existing one. We must
6055 preserve the TYPE_NAME, since there is code that depends on this. */
6056 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6057 if (check_qualified_type (t, type, type_quals))
6058 return t;
6060 return NULL_TREE;
6063 /* Like get_qualified_type, but creates the type if it does not
6064 exist. This function never returns NULL_TREE. */
6066 tree
6067 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6069 tree t;
6071 /* See if we already have the appropriate qualified variant. */
6072 t = get_qualified_type (type, type_quals);
6074 /* If not, build it. */
6075 if (!t)
6077 t = build_variant_type_copy (type PASS_MEM_STAT);
6078 set_type_quals (t, type_quals);
6080 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6082 /* See if this object can map to a basic atomic type. */
6083 tree atomic_type = find_atomic_core_type (type);
6084 if (atomic_type)
6086 /* Ensure the alignment of this type is compatible with
6087 the required alignment of the atomic type. */
6088 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6089 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6093 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6094 /* Propagate structural equality. */
6095 SET_TYPE_STRUCTURAL_EQUALITY (t);
6096 else if (TYPE_CANONICAL (type) != type)
6097 /* Build the underlying canonical type, since it is different
6098 from TYPE. */
6100 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6101 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6103 else
6104 /* T is its own canonical type. */
6105 TYPE_CANONICAL (t) = t;
6109 return t;
6112 /* Create a variant of type T with alignment ALIGN. */
6114 tree
6115 build_aligned_type (tree type, unsigned int align)
6117 tree t;
6119 if (TYPE_PACKED (type)
6120 || TYPE_ALIGN (type) == align)
6121 return type;
6123 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6124 if (check_aligned_type (t, type, align))
6125 return t;
6127 t = build_variant_type_copy (type);
6128 SET_TYPE_ALIGN (t, align);
6129 TYPE_USER_ALIGN (t) = 1;
6131 return t;
6134 /* Create a new distinct copy of TYPE. The new type is made its own
6135 MAIN_VARIANT. If TYPE requires structural equality checks, the
6136 resulting type requires structural equality checks; otherwise, its
6137 TYPE_CANONICAL points to itself. */
6139 tree
6140 build_distinct_type_copy (tree type MEM_STAT_DECL)
6142 tree t = copy_node (type PASS_MEM_STAT);
6144 TYPE_POINTER_TO (t) = 0;
6145 TYPE_REFERENCE_TO (t) = 0;
6147 /* Set the canonical type either to a new equivalence class, or
6148 propagate the need for structural equality checks. */
6149 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6150 SET_TYPE_STRUCTURAL_EQUALITY (t);
6151 else
6152 TYPE_CANONICAL (t) = t;
6154 /* Make it its own variant. */
6155 TYPE_MAIN_VARIANT (t) = t;
6156 TYPE_NEXT_VARIANT (t) = 0;
6158 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6159 whose TREE_TYPE is not t. This can also happen in the Ada
6160 frontend when using subtypes. */
6162 return t;
6165 /* Create a new variant of TYPE, equivalent but distinct. This is so
6166 the caller can modify it. TYPE_CANONICAL for the return type will
6167 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6168 are considered equal by the language itself (or that both types
6169 require structural equality checks). */
6171 tree
6172 build_variant_type_copy (tree type MEM_STAT_DECL)
6174 tree t, m = TYPE_MAIN_VARIANT (type);
6176 t = build_distinct_type_copy (type PASS_MEM_STAT);
6178 /* Since we're building a variant, assume that it is a non-semantic
6179 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6180 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6181 /* Type variants have no alias set defined. */
6182 TYPE_ALIAS_SET (t) = -1;
6184 /* Add the new type to the chain of variants of TYPE. */
6185 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6186 TYPE_NEXT_VARIANT (m) = t;
6187 TYPE_MAIN_VARIANT (t) = m;
6189 return t;
6192 /* Return true if the from tree in both tree maps are equal. */
6195 tree_map_base_eq (const void *va, const void *vb)
6197 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6198 *const b = (const struct tree_map_base *) vb;
6199 return (a->from == b->from);
6202 /* Hash a from tree in a tree_base_map. */
6204 unsigned int
6205 tree_map_base_hash (const void *item)
6207 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6210 /* Return true if this tree map structure is marked for garbage collection
6211 purposes. We simply return true if the from tree is marked, so that this
6212 structure goes away when the from tree goes away. */
6215 tree_map_base_marked_p (const void *p)
6217 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6220 /* Hash a from tree in a tree_map. */
6222 unsigned int
6223 tree_map_hash (const void *item)
6225 return (((const struct tree_map *) item)->hash);
6228 /* Hash a from tree in a tree_decl_map. */
6230 unsigned int
6231 tree_decl_map_hash (const void *item)
6233 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6236 /* Return the initialization priority for DECL. */
6238 priority_type
6239 decl_init_priority_lookup (tree decl)
6241 symtab_node *snode = symtab_node::get (decl);
6243 if (!snode)
6244 return DEFAULT_INIT_PRIORITY;
6245 return
6246 snode->get_init_priority ();
6249 /* Return the finalization priority for DECL. */
6251 priority_type
6252 decl_fini_priority_lookup (tree decl)
6254 cgraph_node *node = cgraph_node::get (decl);
6256 if (!node)
6257 return DEFAULT_INIT_PRIORITY;
6258 return
6259 node->get_fini_priority ();
6262 /* Set the initialization priority for DECL to PRIORITY. */
6264 void
6265 decl_init_priority_insert (tree decl, priority_type priority)
6267 struct symtab_node *snode;
6269 if (priority == DEFAULT_INIT_PRIORITY)
6271 snode = symtab_node::get (decl);
6272 if (!snode)
6273 return;
6275 else if (VAR_P (decl))
6276 snode = varpool_node::get_create (decl);
6277 else
6278 snode = cgraph_node::get_create (decl);
6279 snode->set_init_priority (priority);
6282 /* Set the finalization priority for DECL to PRIORITY. */
6284 void
6285 decl_fini_priority_insert (tree decl, priority_type priority)
6287 struct cgraph_node *node;
6289 if (priority == DEFAULT_INIT_PRIORITY)
6291 node = cgraph_node::get (decl);
6292 if (!node)
6293 return;
6295 else
6296 node = cgraph_node::get_create (decl);
6297 node->set_fini_priority (priority);
6300 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6302 static void
6303 print_debug_expr_statistics (void)
6305 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6306 (long) debug_expr_for_decl->size (),
6307 (long) debug_expr_for_decl->elements (),
6308 debug_expr_for_decl->collisions ());
6311 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6313 static void
6314 print_value_expr_statistics (void)
6316 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6317 (long) value_expr_for_decl->size (),
6318 (long) value_expr_for_decl->elements (),
6319 value_expr_for_decl->collisions ());
6322 /* Lookup a debug expression for FROM, and return it if we find one. */
6324 tree
6325 decl_debug_expr_lookup (tree from)
6327 struct tree_decl_map *h, in;
6328 in.base.from = from;
6330 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6331 if (h)
6332 return h->to;
6333 return NULL_TREE;
6336 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6338 void
6339 decl_debug_expr_insert (tree from, tree to)
6341 struct tree_decl_map *h;
6343 h = ggc_alloc<tree_decl_map> ();
6344 h->base.from = from;
6345 h->to = to;
6346 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6349 /* Lookup a value expression for FROM, and return it if we find one. */
6351 tree
6352 decl_value_expr_lookup (tree from)
6354 struct tree_decl_map *h, in;
6355 in.base.from = from;
6357 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6358 if (h)
6359 return h->to;
6360 return NULL_TREE;
6363 /* Insert a mapping FROM->TO in the value expression hashtable. */
6365 void
6366 decl_value_expr_insert (tree from, tree to)
6368 struct tree_decl_map *h;
6370 h = ggc_alloc<tree_decl_map> ();
6371 h->base.from = from;
6372 h->to = to;
6373 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6376 /* Lookup a vector of debug arguments for FROM, and return it if we
6377 find one. */
6379 vec<tree, va_gc> **
6380 decl_debug_args_lookup (tree from)
6382 struct tree_vec_map *h, in;
6384 if (!DECL_HAS_DEBUG_ARGS_P (from))
6385 return NULL;
6386 gcc_checking_assert (debug_args_for_decl != NULL);
6387 in.base.from = from;
6388 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6389 if (h)
6390 return &h->to;
6391 return NULL;
6394 /* Insert a mapping FROM->empty vector of debug arguments in the value
6395 expression hashtable. */
6397 vec<tree, va_gc> **
6398 decl_debug_args_insert (tree from)
6400 struct tree_vec_map *h;
6401 tree_vec_map **loc;
6403 if (DECL_HAS_DEBUG_ARGS_P (from))
6404 return decl_debug_args_lookup (from);
6405 if (debug_args_for_decl == NULL)
6406 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6407 h = ggc_alloc<tree_vec_map> ();
6408 h->base.from = from;
6409 h->to = NULL;
6410 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6411 *loc = h;
6412 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6413 return &h->to;
6416 /* Hashing of types so that we don't make duplicates.
6417 The entry point is `type_hash_canon'. */
6419 /* Generate the default hash code for TYPE. This is designed for
6420 speed, rather than maximum entropy. */
6422 hashval_t
6423 type_hash_canon_hash (tree type)
6425 inchash::hash hstate;
6427 hstate.add_int (TREE_CODE (type));
6429 if (TREE_TYPE (type))
6430 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6432 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6433 /* Just the identifier is adequate to distinguish. */
6434 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6436 switch (TREE_CODE (type))
6438 case METHOD_TYPE:
6439 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6440 /* FALLTHROUGH. */
6441 case FUNCTION_TYPE:
6442 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6443 if (TREE_VALUE (t) != error_mark_node)
6444 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6445 break;
6447 case OFFSET_TYPE:
6448 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6449 break;
6451 case ARRAY_TYPE:
6453 if (TYPE_DOMAIN (type))
6454 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6455 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6457 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6458 hstate.add_object (typeless);
6461 break;
6463 case INTEGER_TYPE:
6465 tree t = TYPE_MAX_VALUE (type);
6466 if (!t)
6467 t = TYPE_MIN_VALUE (type);
6468 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6469 hstate.add_object (TREE_INT_CST_ELT (t, i));
6470 break;
6473 case REAL_TYPE:
6474 case FIXED_POINT_TYPE:
6476 unsigned prec = TYPE_PRECISION (type);
6477 hstate.add_object (prec);
6478 break;
6481 case VECTOR_TYPE:
6482 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
6483 break;
6485 default:
6486 break;
6489 return hstate.end ();
6492 /* These are the Hashtable callback functions. */
6494 /* Returns true iff the types are equivalent. */
6496 bool
6497 type_cache_hasher::equal (type_hash *a, type_hash *b)
6499 /* First test the things that are the same for all types. */
6500 if (a->hash != b->hash
6501 || TREE_CODE (a->type) != TREE_CODE (b->type)
6502 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6503 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6504 TYPE_ATTRIBUTES (b->type))
6505 || (TREE_CODE (a->type) != COMPLEX_TYPE
6506 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6507 return 0;
6509 /* Be careful about comparing arrays before and after the element type
6510 has been completed; don't compare TYPE_ALIGN unless both types are
6511 complete. */
6512 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6513 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6514 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6515 return 0;
6517 switch (TREE_CODE (a->type))
6519 case VOID_TYPE:
6520 case COMPLEX_TYPE:
6521 case POINTER_TYPE:
6522 case REFERENCE_TYPE:
6523 case NULLPTR_TYPE:
6524 return 1;
6526 case VECTOR_TYPE:
6527 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
6528 TYPE_VECTOR_SUBPARTS (b->type));
6530 case ENUMERAL_TYPE:
6531 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6532 && !(TYPE_VALUES (a->type)
6533 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6534 && TYPE_VALUES (b->type)
6535 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6536 && type_list_equal (TYPE_VALUES (a->type),
6537 TYPE_VALUES (b->type))))
6538 return 0;
6540 /* fall through */
6542 case INTEGER_TYPE:
6543 case REAL_TYPE:
6544 case BOOLEAN_TYPE:
6545 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6546 return false;
6547 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6548 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6549 TYPE_MAX_VALUE (b->type)))
6550 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6551 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6552 TYPE_MIN_VALUE (b->type))));
6554 case FIXED_POINT_TYPE:
6555 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6557 case OFFSET_TYPE:
6558 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6560 case METHOD_TYPE:
6561 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6562 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6563 || (TYPE_ARG_TYPES (a->type)
6564 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6565 && TYPE_ARG_TYPES (b->type)
6566 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6567 && type_list_equal (TYPE_ARG_TYPES (a->type),
6568 TYPE_ARG_TYPES (b->type)))))
6569 break;
6570 return 0;
6571 case ARRAY_TYPE:
6572 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6573 where the flag should be inherited from the element type
6574 and can change after ARRAY_TYPEs are created; on non-aggregates
6575 compare it and hash it, scalars will never have that flag set
6576 and we need to differentiate between arrays created by different
6577 front-ends or middle-end created arrays. */
6578 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6579 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6580 || (TYPE_TYPELESS_STORAGE (a->type)
6581 == TYPE_TYPELESS_STORAGE (b->type))));
6583 case RECORD_TYPE:
6584 case UNION_TYPE:
6585 case QUAL_UNION_TYPE:
6586 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6587 || (TYPE_FIELDS (a->type)
6588 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6589 && TYPE_FIELDS (b->type)
6590 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6591 && type_list_equal (TYPE_FIELDS (a->type),
6592 TYPE_FIELDS (b->type))));
6594 case FUNCTION_TYPE:
6595 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6596 || (TYPE_ARG_TYPES (a->type)
6597 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6598 && TYPE_ARG_TYPES (b->type)
6599 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6600 && type_list_equal (TYPE_ARG_TYPES (a->type),
6601 TYPE_ARG_TYPES (b->type))))
6602 break;
6603 return 0;
6605 default:
6606 return 0;
6609 if (lang_hooks.types.type_hash_eq != NULL)
6610 return lang_hooks.types.type_hash_eq (a->type, b->type);
6612 return 1;
6615 /* Given TYPE, and HASHCODE its hash code, return the canonical
6616 object for an identical type if one already exists.
6617 Otherwise, return TYPE, and record it as the canonical object.
6619 To use this function, first create a type of the sort you want.
6620 Then compute its hash code from the fields of the type that
6621 make it different from other similar types.
6622 Then call this function and use the value. */
6624 tree
6625 type_hash_canon (unsigned int hashcode, tree type)
6627 type_hash in;
6628 type_hash **loc;
6630 /* The hash table only contains main variants, so ensure that's what we're
6631 being passed. */
6632 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6634 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6635 must call that routine before comparing TYPE_ALIGNs. */
6636 layout_type (type);
6638 in.hash = hashcode;
6639 in.type = type;
6641 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
6642 if (*loc)
6644 tree t1 = ((type_hash *) *loc)->type;
6645 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
6646 && t1 != type);
6647 if (TYPE_UID (type) + 1 == next_type_uid)
6648 --next_type_uid;
6649 /* Free also min/max values and the cache for integer
6650 types. This can't be done in free_node, as LTO frees
6651 those on its own. */
6652 if (TREE_CODE (type) == INTEGER_TYPE)
6654 if (TYPE_MIN_VALUE (type)
6655 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
6657 /* Zero is always in TYPE_CACHED_VALUES. */
6658 if (! TYPE_UNSIGNED (type))
6659 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
6660 ggc_free (TYPE_MIN_VALUE (type));
6662 if (TYPE_MAX_VALUE (type)
6663 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
6665 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
6666 ggc_free (TYPE_MAX_VALUE (type));
6668 if (TYPE_CACHED_VALUES_P (type))
6669 ggc_free (TYPE_CACHED_VALUES (type));
6671 free_node (type);
6672 return t1;
6674 else
6676 struct type_hash *h;
6678 h = ggc_alloc<type_hash> ();
6679 h->hash = hashcode;
6680 h->type = type;
6681 *loc = h;
6683 return type;
6687 static void
6688 print_type_hash_statistics (void)
6690 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6691 (long) type_hash_table->size (),
6692 (long) type_hash_table->elements (),
6693 type_hash_table->collisions ());
6696 /* Given two lists of types
6697 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6698 return 1 if the lists contain the same types in the same order.
6699 Also, the TREE_PURPOSEs must match. */
6702 type_list_equal (const_tree l1, const_tree l2)
6704 const_tree t1, t2;
6706 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6707 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6708 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6709 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6710 && (TREE_TYPE (TREE_PURPOSE (t1))
6711 == TREE_TYPE (TREE_PURPOSE (t2))))))
6712 return 0;
6714 return t1 == t2;
6717 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6718 given by TYPE. If the argument list accepts variable arguments,
6719 then this function counts only the ordinary arguments. */
6722 type_num_arguments (const_tree type)
6724 int i = 0;
6725 tree t;
6727 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6728 /* If the function does not take a variable number of arguments,
6729 the last element in the list will have type `void'. */
6730 if (VOID_TYPE_P (TREE_VALUE (t)))
6731 break;
6732 else
6733 ++i;
6735 return i;
6738 /* Nonzero if integer constants T1 and T2
6739 represent the same constant value. */
6742 tree_int_cst_equal (const_tree t1, const_tree t2)
6744 if (t1 == t2)
6745 return 1;
6747 if (t1 == 0 || t2 == 0)
6748 return 0;
6750 if (TREE_CODE (t1) == INTEGER_CST
6751 && TREE_CODE (t2) == INTEGER_CST
6752 && wi::to_widest (t1) == wi::to_widest (t2))
6753 return 1;
6755 return 0;
6758 /* Return true if T is an INTEGER_CST whose numerical value (extended
6759 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6761 bool
6762 tree_fits_shwi_p (const_tree t)
6764 return (t != NULL_TREE
6765 && TREE_CODE (t) == INTEGER_CST
6766 && wi::fits_shwi_p (wi::to_widest (t)));
6769 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
6770 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
6772 bool
6773 tree_fits_poly_int64_p (const_tree t)
6775 if (t == NULL_TREE)
6776 return false;
6777 if (POLY_INT_CST_P (t))
6779 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
6780 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
6781 return false;
6782 return true;
6784 return (TREE_CODE (t) == INTEGER_CST
6785 && wi::fits_shwi_p (wi::to_widest (t)));
6788 /* Return true if T is an INTEGER_CST whose numerical value (extended
6789 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6791 bool
6792 tree_fits_uhwi_p (const_tree t)
6794 return (t != NULL_TREE
6795 && TREE_CODE (t) == INTEGER_CST
6796 && wi::fits_uhwi_p (wi::to_widest (t)));
6799 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
6800 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
6802 bool
6803 tree_fits_poly_uint64_p (const_tree t)
6805 if (t == NULL_TREE)
6806 return false;
6807 if (POLY_INT_CST_P (t))
6809 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
6810 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
6811 return false;
6812 return true;
6814 return (TREE_CODE (t) == INTEGER_CST
6815 && wi::fits_uhwi_p (wi::to_widest (t)));
6818 /* T is an INTEGER_CST whose numerical value (extended according to
6819 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
6820 HOST_WIDE_INT. */
6822 HOST_WIDE_INT
6823 tree_to_shwi (const_tree t)
6825 gcc_assert (tree_fits_shwi_p (t));
6826 return TREE_INT_CST_LOW (t);
6829 /* T is an INTEGER_CST whose numerical value (extended according to
6830 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
6831 HOST_WIDE_INT. */
6833 unsigned HOST_WIDE_INT
6834 tree_to_uhwi (const_tree t)
6836 gcc_assert (tree_fits_uhwi_p (t));
6837 return TREE_INT_CST_LOW (t);
6840 /* Return the most significant (sign) bit of T. */
6843 tree_int_cst_sign_bit (const_tree t)
6845 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
6847 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
6850 /* Return an indication of the sign of the integer constant T.
6851 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6852 Note that -1 will never be returned if T's type is unsigned. */
6855 tree_int_cst_sgn (const_tree t)
6857 if (wi::to_wide (t) == 0)
6858 return 0;
6859 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6860 return 1;
6861 else if (wi::neg_p (wi::to_wide (t)))
6862 return -1;
6863 else
6864 return 1;
6867 /* Return the minimum number of bits needed to represent VALUE in a
6868 signed or unsigned type, UNSIGNEDP says which. */
6870 unsigned int
6871 tree_int_cst_min_precision (tree value, signop sgn)
6873 /* If the value is negative, compute its negative minus 1. The latter
6874 adjustment is because the absolute value of the largest negative value
6875 is one larger than the largest positive value. This is equivalent to
6876 a bit-wise negation, so use that operation instead. */
6878 if (tree_int_cst_sgn (value) < 0)
6879 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6881 /* Return the number of bits needed, taking into account the fact
6882 that we need one more bit for a signed than unsigned type.
6883 If value is 0 or -1, the minimum precision is 1 no matter
6884 whether unsignedp is true or false. */
6886 if (integer_zerop (value))
6887 return 1;
6888 else
6889 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
6892 /* Return truthvalue of whether T1 is the same tree structure as T2.
6893 Return 1 if they are the same.
6894 Return 0 if they are understandably different.
6895 Return -1 if either contains tree structure not understood by
6896 this function. */
6899 simple_cst_equal (const_tree t1, const_tree t2)
6901 enum tree_code code1, code2;
6902 int cmp;
6903 int i;
6905 if (t1 == t2)
6906 return 1;
6907 if (t1 == 0 || t2 == 0)
6908 return 0;
6910 code1 = TREE_CODE (t1);
6911 code2 = TREE_CODE (t2);
6913 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6915 if (CONVERT_EXPR_CODE_P (code2)
6916 || code2 == NON_LVALUE_EXPR)
6917 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6918 else
6919 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6922 else if (CONVERT_EXPR_CODE_P (code2)
6923 || code2 == NON_LVALUE_EXPR)
6924 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6926 if (code1 != code2)
6927 return 0;
6929 switch (code1)
6931 case INTEGER_CST:
6932 return wi::to_widest (t1) == wi::to_widest (t2);
6934 case REAL_CST:
6935 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
6937 case FIXED_CST:
6938 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6940 case STRING_CST:
6941 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6942 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6943 TREE_STRING_LENGTH (t1)));
6945 case CONSTRUCTOR:
6947 unsigned HOST_WIDE_INT idx;
6948 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
6949 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
6951 if (vec_safe_length (v1) != vec_safe_length (v2))
6952 return false;
6954 for (idx = 0; idx < vec_safe_length (v1); ++idx)
6955 /* ??? Should we handle also fields here? */
6956 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
6957 return false;
6958 return true;
6961 case SAVE_EXPR:
6962 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6964 case CALL_EXPR:
6965 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6966 if (cmp <= 0)
6967 return cmp;
6968 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6969 return 0;
6971 const_tree arg1, arg2;
6972 const_call_expr_arg_iterator iter1, iter2;
6973 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6974 arg2 = first_const_call_expr_arg (t2, &iter2);
6975 arg1 && arg2;
6976 arg1 = next_const_call_expr_arg (&iter1),
6977 arg2 = next_const_call_expr_arg (&iter2))
6979 cmp = simple_cst_equal (arg1, arg2);
6980 if (cmp <= 0)
6981 return cmp;
6983 return arg1 == arg2;
6986 case TARGET_EXPR:
6987 /* Special case: if either target is an unallocated VAR_DECL,
6988 it means that it's going to be unified with whatever the
6989 TARGET_EXPR is really supposed to initialize, so treat it
6990 as being equivalent to anything. */
6991 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6992 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6993 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6994 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6995 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6996 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6997 cmp = 1;
6998 else
6999 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7001 if (cmp <= 0)
7002 return cmp;
7004 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7006 case WITH_CLEANUP_EXPR:
7007 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7008 if (cmp <= 0)
7009 return cmp;
7011 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7013 case COMPONENT_REF:
7014 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7015 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7017 return 0;
7019 case VAR_DECL:
7020 case PARM_DECL:
7021 case CONST_DECL:
7022 case FUNCTION_DECL:
7023 return 0;
7025 default:
7026 if (POLY_INT_CST_P (t1))
7027 /* A false return means maybe_ne rather than known_ne. */
7028 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7029 TYPE_SIGN (TREE_TYPE (t1))),
7030 poly_widest_int::from (poly_int_cst_value (t2),
7031 TYPE_SIGN (TREE_TYPE (t2))));
7032 break;
7035 /* This general rule works for most tree codes. All exceptions should be
7036 handled above. If this is a language-specific tree code, we can't
7037 trust what might be in the operand, so say we don't know
7038 the situation. */
7039 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7040 return -1;
7042 switch (TREE_CODE_CLASS (code1))
7044 case tcc_unary:
7045 case tcc_binary:
7046 case tcc_comparison:
7047 case tcc_expression:
7048 case tcc_reference:
7049 case tcc_statement:
7050 cmp = 1;
7051 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7053 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7054 if (cmp <= 0)
7055 return cmp;
7058 return cmp;
7060 default:
7061 return -1;
7065 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7066 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7067 than U, respectively. */
7070 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7072 if (tree_int_cst_sgn (t) < 0)
7073 return -1;
7074 else if (!tree_fits_uhwi_p (t))
7075 return 1;
7076 else if (TREE_INT_CST_LOW (t) == u)
7077 return 0;
7078 else if (TREE_INT_CST_LOW (t) < u)
7079 return -1;
7080 else
7081 return 1;
7084 /* Return true if SIZE represents a constant size that is in bounds of
7085 what the middle-end and the backend accepts (covering not more than
7086 half of the address-space). */
7088 bool
7089 valid_constant_size_p (const_tree size)
7091 if (POLY_INT_CST_P (size))
7093 if (TREE_OVERFLOW (size))
7094 return false;
7095 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7096 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7097 return false;
7098 return true;
7100 if (! tree_fits_uhwi_p (size)
7101 || TREE_OVERFLOW (size)
7102 || tree_int_cst_sign_bit (size) != 0)
7103 return false;
7104 return true;
7107 /* Return the precision of the type, or for a complex or vector type the
7108 precision of the type of its elements. */
7110 unsigned int
7111 element_precision (const_tree type)
7113 if (!TYPE_P (type))
7114 type = TREE_TYPE (type);
7115 enum tree_code code = TREE_CODE (type);
7116 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7117 type = TREE_TYPE (type);
7119 return TYPE_PRECISION (type);
7122 /* Return true if CODE represents an associative tree code. Otherwise
7123 return false. */
7124 bool
7125 associative_tree_code (enum tree_code code)
7127 switch (code)
7129 case BIT_IOR_EXPR:
7130 case BIT_AND_EXPR:
7131 case BIT_XOR_EXPR:
7132 case PLUS_EXPR:
7133 case MULT_EXPR:
7134 case MIN_EXPR:
7135 case MAX_EXPR:
7136 return true;
7138 default:
7139 break;
7141 return false;
7144 /* Return true if CODE represents a commutative tree code. Otherwise
7145 return false. */
7146 bool
7147 commutative_tree_code (enum tree_code code)
7149 switch (code)
7151 case PLUS_EXPR:
7152 case MULT_EXPR:
7153 case MULT_HIGHPART_EXPR:
7154 case MIN_EXPR:
7155 case MAX_EXPR:
7156 case BIT_IOR_EXPR:
7157 case BIT_XOR_EXPR:
7158 case BIT_AND_EXPR:
7159 case NE_EXPR:
7160 case EQ_EXPR:
7161 case UNORDERED_EXPR:
7162 case ORDERED_EXPR:
7163 case UNEQ_EXPR:
7164 case LTGT_EXPR:
7165 case TRUTH_AND_EXPR:
7166 case TRUTH_XOR_EXPR:
7167 case TRUTH_OR_EXPR:
7168 case WIDEN_MULT_EXPR:
7169 case VEC_WIDEN_MULT_HI_EXPR:
7170 case VEC_WIDEN_MULT_LO_EXPR:
7171 case VEC_WIDEN_MULT_EVEN_EXPR:
7172 case VEC_WIDEN_MULT_ODD_EXPR:
7173 return true;
7175 default:
7176 break;
7178 return false;
7181 /* Return true if CODE represents a ternary tree code for which the
7182 first two operands are commutative. Otherwise return false. */
7183 bool
7184 commutative_ternary_tree_code (enum tree_code code)
7186 switch (code)
7188 case WIDEN_MULT_PLUS_EXPR:
7189 case WIDEN_MULT_MINUS_EXPR:
7190 case DOT_PROD_EXPR:
7191 return true;
7193 default:
7194 break;
7196 return false;
7199 /* Returns true if CODE can overflow. */
7201 bool
7202 operation_can_overflow (enum tree_code code)
7204 switch (code)
7206 case PLUS_EXPR:
7207 case MINUS_EXPR:
7208 case MULT_EXPR:
7209 case LSHIFT_EXPR:
7210 /* Can overflow in various ways. */
7211 return true;
7212 case TRUNC_DIV_EXPR:
7213 case EXACT_DIV_EXPR:
7214 case FLOOR_DIV_EXPR:
7215 case CEIL_DIV_EXPR:
7216 /* For INT_MIN / -1. */
7217 return true;
7218 case NEGATE_EXPR:
7219 case ABS_EXPR:
7220 /* For -INT_MIN. */
7221 return true;
7222 default:
7223 /* These operators cannot overflow. */
7224 return false;
7228 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7229 ftrapv doesn't generate trapping insns for CODE. */
7231 bool
7232 operation_no_trapping_overflow (tree type, enum tree_code code)
7234 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7236 /* We don't generate instructions that trap on overflow for complex or vector
7237 types. */
7238 if (!INTEGRAL_TYPE_P (type))
7239 return true;
7241 if (!TYPE_OVERFLOW_TRAPS (type))
7242 return true;
7244 switch (code)
7246 case PLUS_EXPR:
7247 case MINUS_EXPR:
7248 case MULT_EXPR:
7249 case NEGATE_EXPR:
7250 case ABS_EXPR:
7251 /* These operators can overflow, and -ftrapv generates trapping code for
7252 these. */
7253 return false;
7254 case TRUNC_DIV_EXPR:
7255 case EXACT_DIV_EXPR:
7256 case FLOOR_DIV_EXPR:
7257 case CEIL_DIV_EXPR:
7258 case LSHIFT_EXPR:
7259 /* These operators can overflow, but -ftrapv does not generate trapping
7260 code for these. */
7261 return true;
7262 default:
7263 /* These operators cannot overflow. */
7264 return true;
7268 namespace inchash
7271 /* Generate a hash value for an expression. This can be used iteratively
7272 by passing a previous result as the HSTATE argument.
7274 This function is intended to produce the same hash for expressions which
7275 would compare equal using operand_equal_p. */
7276 void
7277 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7279 int i;
7280 enum tree_code code;
7281 enum tree_code_class tclass;
7283 if (t == NULL_TREE || t == error_mark_node)
7285 hstate.merge_hash (0);
7286 return;
7289 if (!(flags & OEP_ADDRESS_OF))
7290 STRIP_NOPS (t);
7292 code = TREE_CODE (t);
7294 switch (code)
7296 /* Alas, constants aren't shared, so we can't rely on pointer
7297 identity. */
7298 case VOID_CST:
7299 hstate.merge_hash (0);
7300 return;
7301 case INTEGER_CST:
7302 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7303 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7304 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7305 return;
7306 case REAL_CST:
7308 unsigned int val2;
7309 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7310 val2 = rvc_zero;
7311 else
7312 val2 = real_hash (TREE_REAL_CST_PTR (t));
7313 hstate.merge_hash (val2);
7314 return;
7316 case FIXED_CST:
7318 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7319 hstate.merge_hash (val2);
7320 return;
7322 case STRING_CST:
7323 hstate.add ((const void *) TREE_STRING_POINTER (t),
7324 TREE_STRING_LENGTH (t));
7325 return;
7326 case COMPLEX_CST:
7327 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7328 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7329 return;
7330 case VECTOR_CST:
7332 hstate.add_int (VECTOR_CST_NPATTERNS (t));
7333 hstate.add_int (VECTOR_CST_NELTS_PER_PATTERN (t));
7334 unsigned int count = vector_cst_encoded_nelts (t);
7335 for (unsigned int i = 0; i < count; ++i)
7336 inchash::add_expr (VECTOR_CST_ENCODED_ELT (t, i), hstate, flags);
7337 return;
7339 case SSA_NAME:
7340 /* We can just compare by pointer. */
7341 hstate.add_hwi (SSA_NAME_VERSION (t));
7342 return;
7343 case PLACEHOLDER_EXPR:
7344 /* The node itself doesn't matter. */
7345 return;
7346 case BLOCK:
7347 case OMP_CLAUSE:
7348 /* Ignore. */
7349 return;
7350 case TREE_LIST:
7351 /* A list of expressions, for a CALL_EXPR or as the elements of a
7352 VECTOR_CST. */
7353 for (; t; t = TREE_CHAIN (t))
7354 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7355 return;
7356 case CONSTRUCTOR:
7358 unsigned HOST_WIDE_INT idx;
7359 tree field, value;
7360 flags &= ~OEP_ADDRESS_OF;
7361 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7363 inchash::add_expr (field, hstate, flags);
7364 inchash::add_expr (value, hstate, flags);
7366 return;
7368 case STATEMENT_LIST:
7370 tree_stmt_iterator i;
7371 for (i = tsi_start (CONST_CAST_TREE (t));
7372 !tsi_end_p (i); tsi_next (&i))
7373 inchash::add_expr (tsi_stmt (i), hstate, flags);
7374 return;
7376 case TREE_VEC:
7377 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7378 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7379 return;
7380 case IDENTIFIER_NODE:
7381 hstate.add_object (IDENTIFIER_HASH_VALUE (t));
7382 return;
7383 case FUNCTION_DECL:
7384 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7385 Otherwise nodes that compare equal according to operand_equal_p might
7386 get different hash codes. However, don't do this for machine specific
7387 or front end builtins, since the function code is overloaded in those
7388 cases. */
7389 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7390 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7392 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7393 code = TREE_CODE (t);
7395 /* FALL THROUGH */
7396 default:
7397 if (POLY_INT_CST_P (t))
7399 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7400 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
7401 return;
7403 tclass = TREE_CODE_CLASS (code);
7405 if (tclass == tcc_declaration)
7407 /* DECL's have a unique ID */
7408 hstate.add_hwi (DECL_UID (t));
7410 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7412 /* For comparisons that can be swapped, use the lower
7413 tree code. */
7414 enum tree_code ccode = swap_tree_comparison (code);
7415 if (code < ccode)
7416 ccode = code;
7417 hstate.add_object (ccode);
7418 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7419 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7421 else if (CONVERT_EXPR_CODE_P (code))
7423 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7424 operand_equal_p. */
7425 enum tree_code ccode = NOP_EXPR;
7426 hstate.add_object (ccode);
7428 /* Don't hash the type, that can lead to having nodes which
7429 compare equal according to operand_equal_p, but which
7430 have different hash codes. Make sure to include signedness
7431 in the hash computation. */
7432 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7433 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7435 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7436 else if (code == MEM_REF
7437 && (flags & OEP_ADDRESS_OF) != 0
7438 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7439 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7440 && integer_zerop (TREE_OPERAND (t, 1)))
7441 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7442 hstate, flags);
7443 /* Don't ICE on FE specific trees, or their arguments etc.
7444 during operand_equal_p hash verification. */
7445 else if (!IS_EXPR_CODE_CLASS (tclass))
7446 gcc_assert (flags & OEP_HASH_CHECK);
7447 else
7449 unsigned int sflags = flags;
7451 hstate.add_object (code);
7453 switch (code)
7455 case ADDR_EXPR:
7456 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7457 flags |= OEP_ADDRESS_OF;
7458 sflags = flags;
7459 break;
7461 case INDIRECT_REF:
7462 case MEM_REF:
7463 case TARGET_MEM_REF:
7464 flags &= ~OEP_ADDRESS_OF;
7465 sflags = flags;
7466 break;
7468 case ARRAY_REF:
7469 case ARRAY_RANGE_REF:
7470 case COMPONENT_REF:
7471 case BIT_FIELD_REF:
7472 sflags &= ~OEP_ADDRESS_OF;
7473 break;
7475 case COND_EXPR:
7476 flags &= ~OEP_ADDRESS_OF;
7477 break;
7479 case WIDEN_MULT_PLUS_EXPR:
7480 case WIDEN_MULT_MINUS_EXPR:
7482 /* The multiplication operands are commutative. */
7483 inchash::hash one, two;
7484 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7485 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7486 hstate.add_commutative (one, two);
7487 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7488 return;
7491 case CALL_EXPR:
7492 if (CALL_EXPR_FN (t) == NULL_TREE)
7493 hstate.add_int (CALL_EXPR_IFN (t));
7494 break;
7496 case TARGET_EXPR:
7497 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7498 Usually different TARGET_EXPRs just should use
7499 different temporaries in their slots. */
7500 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7501 return;
7503 default:
7504 break;
7507 /* Don't hash the type, that can lead to having nodes which
7508 compare equal according to operand_equal_p, but which
7509 have different hash codes. */
7510 if (code == NON_LVALUE_EXPR)
7512 /* Make sure to include signness in the hash computation. */
7513 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7514 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7517 else if (commutative_tree_code (code))
7519 /* It's a commutative expression. We want to hash it the same
7520 however it appears. We do this by first hashing both operands
7521 and then rehashing based on the order of their independent
7522 hashes. */
7523 inchash::hash one, two;
7524 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7525 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7526 hstate.add_commutative (one, two);
7528 else
7529 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7530 inchash::add_expr (TREE_OPERAND (t, i), hstate,
7531 i == 0 ? flags : sflags);
7533 return;
7539 /* Constructors for pointer, array and function types.
7540 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7541 constructed by language-dependent code, not here.) */
7543 /* Construct, lay out and return the type of pointers to TO_TYPE with
7544 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7545 reference all of memory. If such a type has already been
7546 constructed, reuse it. */
7548 tree
7549 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7550 bool can_alias_all)
7552 tree t;
7553 bool could_alias = can_alias_all;
7555 if (to_type == error_mark_node)
7556 return error_mark_node;
7558 /* If the pointed-to type has the may_alias attribute set, force
7559 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7560 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7561 can_alias_all = true;
7563 /* In some cases, languages will have things that aren't a POINTER_TYPE
7564 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7565 In that case, return that type without regard to the rest of our
7566 operands.
7568 ??? This is a kludge, but consistent with the way this function has
7569 always operated and there doesn't seem to be a good way to avoid this
7570 at the moment. */
7571 if (TYPE_POINTER_TO (to_type) != 0
7572 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7573 return TYPE_POINTER_TO (to_type);
7575 /* First, if we already have a type for pointers to TO_TYPE and it's
7576 the proper mode, use it. */
7577 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7578 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7579 return t;
7581 t = make_node (POINTER_TYPE);
7583 TREE_TYPE (t) = to_type;
7584 SET_TYPE_MODE (t, mode);
7585 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7586 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7587 TYPE_POINTER_TO (to_type) = t;
7589 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7590 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7591 SET_TYPE_STRUCTURAL_EQUALITY (t);
7592 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7593 TYPE_CANONICAL (t)
7594 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7595 mode, false);
7597 /* Lay out the type. This function has many callers that are concerned
7598 with expression-construction, and this simplifies them all. */
7599 layout_type (t);
7601 return t;
7604 /* By default build pointers in ptr_mode. */
7606 tree
7607 build_pointer_type (tree to_type)
7609 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7610 : TYPE_ADDR_SPACE (to_type);
7611 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7612 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7615 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7617 tree
7618 build_reference_type_for_mode (tree to_type, machine_mode mode,
7619 bool can_alias_all)
7621 tree t;
7622 bool could_alias = can_alias_all;
7624 if (to_type == error_mark_node)
7625 return error_mark_node;
7627 /* If the pointed-to type has the may_alias attribute set, force
7628 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7629 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7630 can_alias_all = true;
7632 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7633 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7634 In that case, return that type without regard to the rest of our
7635 operands.
7637 ??? This is a kludge, but consistent with the way this function has
7638 always operated and there doesn't seem to be a good way to avoid this
7639 at the moment. */
7640 if (TYPE_REFERENCE_TO (to_type) != 0
7641 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7642 return TYPE_REFERENCE_TO (to_type);
7644 /* First, if we already have a type for pointers to TO_TYPE and it's
7645 the proper mode, use it. */
7646 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7647 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7648 return t;
7650 t = make_node (REFERENCE_TYPE);
7652 TREE_TYPE (t) = to_type;
7653 SET_TYPE_MODE (t, mode);
7654 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7655 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7656 TYPE_REFERENCE_TO (to_type) = t;
7658 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7659 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7660 SET_TYPE_STRUCTURAL_EQUALITY (t);
7661 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7662 TYPE_CANONICAL (t)
7663 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7664 mode, false);
7666 layout_type (t);
7668 return t;
7672 /* Build the node for the type of references-to-TO_TYPE by default
7673 in ptr_mode. */
7675 tree
7676 build_reference_type (tree to_type)
7678 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7679 : TYPE_ADDR_SPACE (to_type);
7680 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7681 return build_reference_type_for_mode (to_type, pointer_mode, false);
7684 #define MAX_INT_CACHED_PREC \
7685 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7686 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7688 /* Builds a signed or unsigned integer type of precision PRECISION.
7689 Used for C bitfields whose precision does not match that of
7690 built-in target types. */
7691 tree
7692 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7693 int unsignedp)
7695 tree itype, ret;
7697 if (unsignedp)
7698 unsignedp = MAX_INT_CACHED_PREC + 1;
7700 if (precision <= MAX_INT_CACHED_PREC)
7702 itype = nonstandard_integer_type_cache[precision + unsignedp];
7703 if (itype)
7704 return itype;
7707 itype = make_node (INTEGER_TYPE);
7708 TYPE_PRECISION (itype) = precision;
7710 if (unsignedp)
7711 fixup_unsigned_type (itype);
7712 else
7713 fixup_signed_type (itype);
7715 ret = itype;
7717 inchash::hash hstate;
7718 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
7719 ret = type_hash_canon (hstate.end (), itype);
7720 if (precision <= MAX_INT_CACHED_PREC)
7721 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7723 return ret;
7726 #define MAX_BOOL_CACHED_PREC \
7727 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7728 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
7730 /* Builds a boolean type of precision PRECISION.
7731 Used for boolean vectors to choose proper vector element size. */
7732 tree
7733 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
7735 tree type;
7737 if (precision <= MAX_BOOL_CACHED_PREC)
7739 type = nonstandard_boolean_type_cache[precision];
7740 if (type)
7741 return type;
7744 type = make_node (BOOLEAN_TYPE);
7745 TYPE_PRECISION (type) = precision;
7746 fixup_signed_type (type);
7748 if (precision <= MAX_INT_CACHED_PREC)
7749 nonstandard_boolean_type_cache[precision] = type;
7751 return type;
7754 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7755 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7756 is true, reuse such a type that has already been constructed. */
7758 static tree
7759 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7761 tree itype = make_node (INTEGER_TYPE);
7763 TREE_TYPE (itype) = type;
7765 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7766 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7768 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7769 SET_TYPE_MODE (itype, TYPE_MODE (type));
7770 TYPE_SIZE (itype) = TYPE_SIZE (type);
7771 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7772 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
7773 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7774 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
7776 if (!shared)
7777 return itype;
7779 if ((TYPE_MIN_VALUE (itype)
7780 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7781 || (TYPE_MAX_VALUE (itype)
7782 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7784 /* Since we cannot reliably merge this type, we need to compare it using
7785 structural equality checks. */
7786 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7787 return itype;
7790 hashval_t hash = type_hash_canon_hash (itype);
7791 itype = type_hash_canon (hash, itype);
7793 return itype;
7796 /* Wrapper around build_range_type_1 with SHARED set to true. */
7798 tree
7799 build_range_type (tree type, tree lowval, tree highval)
7801 return build_range_type_1 (type, lowval, highval, true);
7804 /* Wrapper around build_range_type_1 with SHARED set to false. */
7806 tree
7807 build_nonshared_range_type (tree type, tree lowval, tree highval)
7809 return build_range_type_1 (type, lowval, highval, false);
7812 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7813 MAXVAL should be the maximum value in the domain
7814 (one less than the length of the array).
7816 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7817 We don't enforce this limit, that is up to caller (e.g. language front end).
7818 The limit exists because the result is a signed type and we don't handle
7819 sizes that use more than one HOST_WIDE_INT. */
7821 tree
7822 build_index_type (tree maxval)
7824 return build_range_type (sizetype, size_zero_node, maxval);
7827 /* Return true if the debug information for TYPE, a subtype, should be emitted
7828 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7829 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7830 debug info and doesn't reflect the source code. */
7832 bool
7833 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7835 tree base_type = TREE_TYPE (type), low, high;
7837 /* Subrange types have a base type which is an integral type. */
7838 if (!INTEGRAL_TYPE_P (base_type))
7839 return false;
7841 /* Get the real bounds of the subtype. */
7842 if (lang_hooks.types.get_subrange_bounds)
7843 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7844 else
7846 low = TYPE_MIN_VALUE (type);
7847 high = TYPE_MAX_VALUE (type);
7850 /* If the type and its base type have the same representation and the same
7851 name, then the type is not a subrange but a copy of the base type. */
7852 if ((TREE_CODE (base_type) == INTEGER_TYPE
7853 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7854 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7855 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7856 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
7857 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
7858 return false;
7860 if (lowval)
7861 *lowval = low;
7862 if (highval)
7863 *highval = high;
7864 return true;
7867 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7868 and number of elements specified by the range of values of INDEX_TYPE.
7869 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
7870 If SHARED is true, reuse such a type that has already been constructed. */
7872 static tree
7873 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
7874 bool shared)
7876 tree t;
7878 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7880 error ("arrays of functions are not meaningful");
7881 elt_type = integer_type_node;
7884 t = make_node (ARRAY_TYPE);
7885 TREE_TYPE (t) = elt_type;
7886 TYPE_DOMAIN (t) = index_type;
7887 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7888 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
7889 layout_type (t);
7891 /* If the element type is incomplete at this point we get marked for
7892 structural equality. Do not record these types in the canonical
7893 type hashtable. */
7894 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7895 return t;
7897 if (shared)
7899 hashval_t hash = type_hash_canon_hash (t);
7900 t = type_hash_canon (hash, t);
7903 if (TYPE_CANONICAL (t) == t)
7905 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7906 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
7907 || in_lto_p)
7908 SET_TYPE_STRUCTURAL_EQUALITY (t);
7909 else if (TYPE_CANONICAL (elt_type) != elt_type
7910 || (index_type && TYPE_CANONICAL (index_type) != index_type))
7911 TYPE_CANONICAL (t)
7912 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7913 index_type
7914 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7915 typeless_storage, shared);
7918 return t;
7921 /* Wrapper around build_array_type_1 with SHARED set to true. */
7923 tree
7924 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
7926 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
7929 /* Wrapper around build_array_type_1 with SHARED set to false. */
7931 tree
7932 build_nonshared_array_type (tree elt_type, tree index_type)
7934 return build_array_type_1 (elt_type, index_type, false, false);
7937 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7938 sizetype. */
7940 tree
7941 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
7943 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7946 /* Recursively examines the array elements of TYPE, until a non-array
7947 element type is found. */
7949 tree
7950 strip_array_types (tree type)
7952 while (TREE_CODE (type) == ARRAY_TYPE)
7953 type = TREE_TYPE (type);
7955 return type;
7958 /* Computes the canonical argument types from the argument type list
7959 ARGTYPES.
7961 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7962 on entry to this function, or if any of the ARGTYPES are
7963 structural.
7965 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7966 true on entry to this function, or if any of the ARGTYPES are
7967 non-canonical.
7969 Returns a canonical argument list, which may be ARGTYPES when the
7970 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7971 true) or would not differ from ARGTYPES. */
7973 static tree
7974 maybe_canonicalize_argtypes (tree argtypes,
7975 bool *any_structural_p,
7976 bool *any_noncanonical_p)
7978 tree arg;
7979 bool any_noncanonical_argtypes_p = false;
7981 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7983 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7984 /* Fail gracefully by stating that the type is structural. */
7985 *any_structural_p = true;
7986 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7987 *any_structural_p = true;
7988 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7989 || TREE_PURPOSE (arg))
7990 /* If the argument has a default argument, we consider it
7991 non-canonical even though the type itself is canonical.
7992 That way, different variants of function and method types
7993 with default arguments will all point to the variant with
7994 no defaults as their canonical type. */
7995 any_noncanonical_argtypes_p = true;
7998 if (*any_structural_p)
7999 return argtypes;
8001 if (any_noncanonical_argtypes_p)
8003 /* Build the canonical list of argument types. */
8004 tree canon_argtypes = NULL_TREE;
8005 bool is_void = false;
8007 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8009 if (arg == void_list_node)
8010 is_void = true;
8011 else
8012 canon_argtypes = tree_cons (NULL_TREE,
8013 TYPE_CANONICAL (TREE_VALUE (arg)),
8014 canon_argtypes);
8017 canon_argtypes = nreverse (canon_argtypes);
8018 if (is_void)
8019 canon_argtypes = chainon (canon_argtypes, void_list_node);
8021 /* There is a non-canonical type. */
8022 *any_noncanonical_p = true;
8023 return canon_argtypes;
8026 /* The canonical argument types are the same as ARGTYPES. */
8027 return argtypes;
8030 /* Construct, lay out and return
8031 the type of functions returning type VALUE_TYPE
8032 given arguments of types ARG_TYPES.
8033 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8034 are data type nodes for the arguments of the function.
8035 If such a type has already been constructed, reuse it. */
8037 tree
8038 build_function_type (tree value_type, tree arg_types)
8040 tree t;
8041 inchash::hash hstate;
8042 bool any_structural_p, any_noncanonical_p;
8043 tree canon_argtypes;
8045 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8047 error ("function return type cannot be function");
8048 value_type = integer_type_node;
8051 /* Make a node of the sort we want. */
8052 t = make_node (FUNCTION_TYPE);
8053 TREE_TYPE (t) = value_type;
8054 TYPE_ARG_TYPES (t) = arg_types;
8056 /* If we already have such a type, use the old one. */
8057 hashval_t hash = type_hash_canon_hash (t);
8058 t = type_hash_canon (hash, t);
8060 /* Set up the canonical type. */
8061 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8062 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8063 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8064 &any_structural_p,
8065 &any_noncanonical_p);
8066 if (any_structural_p)
8067 SET_TYPE_STRUCTURAL_EQUALITY (t);
8068 else if (any_noncanonical_p)
8069 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8070 canon_argtypes);
8072 if (!COMPLETE_TYPE_P (t))
8073 layout_type (t);
8074 return t;
8077 /* Build a function type. The RETURN_TYPE is the type returned by the
8078 function. If VAARGS is set, no void_type_node is appended to the
8079 list. ARGP must be always be terminated be a NULL_TREE. */
8081 static tree
8082 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8084 tree t, args, last;
8086 t = va_arg (argp, tree);
8087 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8088 args = tree_cons (NULL_TREE, t, args);
8090 if (vaargs)
8092 last = args;
8093 if (args != NULL_TREE)
8094 args = nreverse (args);
8095 gcc_assert (last != void_list_node);
8097 else if (args == NULL_TREE)
8098 args = void_list_node;
8099 else
8101 last = args;
8102 args = nreverse (args);
8103 TREE_CHAIN (last) = void_list_node;
8105 args = build_function_type (return_type, args);
8107 return args;
8110 /* Build a function type. The RETURN_TYPE is the type returned by the
8111 function. If additional arguments are provided, they are
8112 additional argument types. The list of argument types must always
8113 be terminated by NULL_TREE. */
8115 tree
8116 build_function_type_list (tree return_type, ...)
8118 tree args;
8119 va_list p;
8121 va_start (p, return_type);
8122 args = build_function_type_list_1 (false, return_type, p);
8123 va_end (p);
8124 return args;
8127 /* Build a variable argument function type. The RETURN_TYPE is the
8128 type returned by the function. If additional arguments are provided,
8129 they are additional argument types. The list of argument types must
8130 always be terminated by NULL_TREE. */
8132 tree
8133 build_varargs_function_type_list (tree return_type, ...)
8135 tree args;
8136 va_list p;
8138 va_start (p, return_type);
8139 args = build_function_type_list_1 (true, return_type, p);
8140 va_end (p);
8142 return args;
8145 /* Build a function type. RETURN_TYPE is the type returned by the
8146 function; VAARGS indicates whether the function takes varargs. The
8147 function takes N named arguments, the types of which are provided in
8148 ARG_TYPES. */
8150 static tree
8151 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8152 tree *arg_types)
8154 int i;
8155 tree t = vaargs ? NULL_TREE : void_list_node;
8157 for (i = n - 1; i >= 0; i--)
8158 t = tree_cons (NULL_TREE, arg_types[i], t);
8160 return build_function_type (return_type, t);
8163 /* Build a function type. RETURN_TYPE is the type returned by the
8164 function. The function takes N named arguments, the types of which
8165 are provided in ARG_TYPES. */
8167 tree
8168 build_function_type_array (tree return_type, int n, tree *arg_types)
8170 return build_function_type_array_1 (false, return_type, n, arg_types);
8173 /* Build a variable argument function type. RETURN_TYPE is the type
8174 returned by the function. The function takes N named arguments, the
8175 types of which are provided in ARG_TYPES. */
8177 tree
8178 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8180 return build_function_type_array_1 (true, return_type, n, arg_types);
8183 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8184 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8185 for the method. An implicit additional parameter (of type
8186 pointer-to-BASETYPE) is added to the ARGTYPES. */
8188 tree
8189 build_method_type_directly (tree basetype,
8190 tree rettype,
8191 tree argtypes)
8193 tree t;
8194 tree ptype;
8195 bool any_structural_p, any_noncanonical_p;
8196 tree canon_argtypes;
8198 /* Make a node of the sort we want. */
8199 t = make_node (METHOD_TYPE);
8201 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8202 TREE_TYPE (t) = rettype;
8203 ptype = build_pointer_type (basetype);
8205 /* The actual arglist for this function includes a "hidden" argument
8206 which is "this". Put it into the list of argument types. */
8207 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8208 TYPE_ARG_TYPES (t) = argtypes;
8210 /* If we already have such a type, use the old one. */
8211 hashval_t hash = type_hash_canon_hash (t);
8212 t = type_hash_canon (hash, t);
8214 /* Set up the canonical type. */
8215 any_structural_p
8216 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8217 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8218 any_noncanonical_p
8219 = (TYPE_CANONICAL (basetype) != basetype
8220 || TYPE_CANONICAL (rettype) != rettype);
8221 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8222 &any_structural_p,
8223 &any_noncanonical_p);
8224 if (any_structural_p)
8225 SET_TYPE_STRUCTURAL_EQUALITY (t);
8226 else if (any_noncanonical_p)
8227 TYPE_CANONICAL (t)
8228 = build_method_type_directly (TYPE_CANONICAL (basetype),
8229 TYPE_CANONICAL (rettype),
8230 canon_argtypes);
8231 if (!COMPLETE_TYPE_P (t))
8232 layout_type (t);
8234 return t;
8237 /* Construct, lay out and return the type of methods belonging to class
8238 BASETYPE and whose arguments and values are described by TYPE.
8239 If that type exists already, reuse it.
8240 TYPE must be a FUNCTION_TYPE node. */
8242 tree
8243 build_method_type (tree basetype, tree type)
8245 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8247 return build_method_type_directly (basetype,
8248 TREE_TYPE (type),
8249 TYPE_ARG_TYPES (type));
8252 /* Construct, lay out and return the type of offsets to a value
8253 of type TYPE, within an object of type BASETYPE.
8254 If a suitable offset type exists already, reuse it. */
8256 tree
8257 build_offset_type (tree basetype, tree type)
8259 tree t;
8261 /* Make a node of the sort we want. */
8262 t = make_node (OFFSET_TYPE);
8264 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8265 TREE_TYPE (t) = type;
8267 /* If we already have such a type, use the old one. */
8268 hashval_t hash = type_hash_canon_hash (t);
8269 t = type_hash_canon (hash, t);
8271 if (!COMPLETE_TYPE_P (t))
8272 layout_type (t);
8274 if (TYPE_CANONICAL (t) == t)
8276 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8277 || TYPE_STRUCTURAL_EQUALITY_P (type))
8278 SET_TYPE_STRUCTURAL_EQUALITY (t);
8279 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8280 || TYPE_CANONICAL (type) != type)
8281 TYPE_CANONICAL (t)
8282 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8283 TYPE_CANONICAL (type));
8286 return t;
8289 /* Create a complex type whose components are COMPONENT_TYPE.
8291 If NAMED is true, the type is given a TYPE_NAME. We do not always
8292 do so because this creates a DECL node and thus make the DECL_UIDs
8293 dependent on the type canonicalization hashtable, which is GC-ed,
8294 so the DECL_UIDs would not be stable wrt garbage collection. */
8296 tree
8297 build_complex_type (tree component_type, bool named)
8299 gcc_assert (INTEGRAL_TYPE_P (component_type)
8300 || SCALAR_FLOAT_TYPE_P (component_type)
8301 || FIXED_POINT_TYPE_P (component_type));
8303 /* Make a node of the sort we want. */
8304 tree probe = make_node (COMPLEX_TYPE);
8306 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8308 /* If we already have such a type, use the old one. */
8309 hashval_t hash = type_hash_canon_hash (probe);
8310 tree t = type_hash_canon (hash, probe);
8312 if (t == probe)
8314 /* We created a new type. The hash insertion will have laid
8315 out the type. We need to check the canonicalization and
8316 maybe set the name. */
8317 gcc_checking_assert (COMPLETE_TYPE_P (t)
8318 && !TYPE_NAME (t)
8319 && TYPE_CANONICAL (t) == t);
8321 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8322 SET_TYPE_STRUCTURAL_EQUALITY (t);
8323 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8324 TYPE_CANONICAL (t)
8325 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8327 /* We need to create a name, since complex is a fundamental type. */
8328 if (named)
8330 const char *name = NULL;
8332 if (TREE_TYPE (t) == char_type_node)
8333 name = "complex char";
8334 else if (TREE_TYPE (t) == signed_char_type_node)
8335 name = "complex signed char";
8336 else if (TREE_TYPE (t) == unsigned_char_type_node)
8337 name = "complex unsigned char";
8338 else if (TREE_TYPE (t) == short_integer_type_node)
8339 name = "complex short int";
8340 else if (TREE_TYPE (t) == short_unsigned_type_node)
8341 name = "complex short unsigned int";
8342 else if (TREE_TYPE (t) == integer_type_node)
8343 name = "complex int";
8344 else if (TREE_TYPE (t) == unsigned_type_node)
8345 name = "complex unsigned int";
8346 else if (TREE_TYPE (t) == long_integer_type_node)
8347 name = "complex long int";
8348 else if (TREE_TYPE (t) == long_unsigned_type_node)
8349 name = "complex long unsigned int";
8350 else if (TREE_TYPE (t) == long_long_integer_type_node)
8351 name = "complex long long int";
8352 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8353 name = "complex long long unsigned int";
8355 if (name != NULL)
8356 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8357 get_identifier (name), t);
8361 return build_qualified_type (t, TYPE_QUALS (component_type));
8364 /* If TYPE is a real or complex floating-point type and the target
8365 does not directly support arithmetic on TYPE then return the wider
8366 type to be used for arithmetic on TYPE. Otherwise, return
8367 NULL_TREE. */
8369 tree
8370 excess_precision_type (tree type)
8372 /* The target can give two different responses to the question of
8373 which excess precision mode it would like depending on whether we
8374 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8376 enum excess_precision_type requested_type
8377 = (flag_excess_precision == EXCESS_PRECISION_FAST
8378 ? EXCESS_PRECISION_TYPE_FAST
8379 : EXCESS_PRECISION_TYPE_STANDARD);
8381 enum flt_eval_method target_flt_eval_method
8382 = targetm.c.excess_precision (requested_type);
8384 /* The target should not ask for unpredictable float evaluation (though
8385 it might advertise that implicitly the evaluation is unpredictable,
8386 but we don't care about that here, it will have been reported
8387 elsewhere). If it does ask for unpredictable evaluation, we have
8388 nothing to do here. */
8389 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8391 /* Nothing to do. The target has asked for all types we know about
8392 to be computed with their native precision and range. */
8393 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8394 return NULL_TREE;
8396 /* The target will promote this type in a target-dependent way, so excess
8397 precision ought to leave it alone. */
8398 if (targetm.promoted_type (type) != NULL_TREE)
8399 return NULL_TREE;
8401 machine_mode float16_type_mode = (float16_type_node
8402 ? TYPE_MODE (float16_type_node)
8403 : VOIDmode);
8404 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8405 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8407 switch (TREE_CODE (type))
8409 case REAL_TYPE:
8411 machine_mode type_mode = TYPE_MODE (type);
8412 switch (target_flt_eval_method)
8414 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8415 if (type_mode == float16_type_mode)
8416 return float_type_node;
8417 break;
8418 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8419 if (type_mode == float16_type_mode
8420 || type_mode == float_type_mode)
8421 return double_type_node;
8422 break;
8423 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8424 if (type_mode == float16_type_mode
8425 || type_mode == float_type_mode
8426 || type_mode == double_type_mode)
8427 return long_double_type_node;
8428 break;
8429 default:
8430 gcc_unreachable ();
8432 break;
8434 case COMPLEX_TYPE:
8436 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8437 return NULL_TREE;
8438 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8439 switch (target_flt_eval_method)
8441 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8442 if (type_mode == float16_type_mode)
8443 return complex_float_type_node;
8444 break;
8445 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8446 if (type_mode == float16_type_mode
8447 || type_mode == float_type_mode)
8448 return complex_double_type_node;
8449 break;
8450 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8451 if (type_mode == float16_type_mode
8452 || type_mode == float_type_mode
8453 || type_mode == double_type_mode)
8454 return complex_long_double_type_node;
8455 break;
8456 default:
8457 gcc_unreachable ();
8459 break;
8461 default:
8462 break;
8465 return NULL_TREE;
8468 /* Return OP, stripped of any conversions to wider types as much as is safe.
8469 Converting the value back to OP's type makes a value equivalent to OP.
8471 If FOR_TYPE is nonzero, we return a value which, if converted to
8472 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8474 OP must have integer, real or enumeral type. Pointers are not allowed!
8476 There are some cases where the obvious value we could return
8477 would regenerate to OP if converted to OP's type,
8478 but would not extend like OP to wider types.
8479 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8480 For example, if OP is (unsigned short)(signed char)-1,
8481 we avoid returning (signed char)-1 if FOR_TYPE is int,
8482 even though extending that to an unsigned short would regenerate OP,
8483 since the result of extending (signed char)-1 to (int)
8484 is different from (int) OP. */
8486 tree
8487 get_unwidened (tree op, tree for_type)
8489 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8490 tree type = TREE_TYPE (op);
8491 unsigned final_prec
8492 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8493 int uns
8494 = (for_type != 0 && for_type != type
8495 && final_prec > TYPE_PRECISION (type)
8496 && TYPE_UNSIGNED (type));
8497 tree win = op;
8499 while (CONVERT_EXPR_P (op))
8501 int bitschange;
8503 /* TYPE_PRECISION on vector types has different meaning
8504 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8505 so avoid them here. */
8506 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8507 break;
8509 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8510 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8512 /* Truncations are many-one so cannot be removed.
8513 Unless we are later going to truncate down even farther. */
8514 if (bitschange < 0
8515 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8516 break;
8518 /* See what's inside this conversion. If we decide to strip it,
8519 we will set WIN. */
8520 op = TREE_OPERAND (op, 0);
8522 /* If we have not stripped any zero-extensions (uns is 0),
8523 we can strip any kind of extension.
8524 If we have previously stripped a zero-extension,
8525 only zero-extensions can safely be stripped.
8526 Any extension can be stripped if the bits it would produce
8527 are all going to be discarded later by truncating to FOR_TYPE. */
8529 if (bitschange > 0)
8531 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8532 win = op;
8533 /* TYPE_UNSIGNED says whether this is a zero-extension.
8534 Let's avoid computing it if it does not affect WIN
8535 and if UNS will not be needed again. */
8536 if ((uns
8537 || CONVERT_EXPR_P (op))
8538 && TYPE_UNSIGNED (TREE_TYPE (op)))
8540 uns = 1;
8541 win = op;
8546 /* If we finally reach a constant see if it fits in sth smaller and
8547 in that case convert it. */
8548 if (TREE_CODE (win) == INTEGER_CST)
8550 tree wtype = TREE_TYPE (win);
8551 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8552 if (for_type)
8553 prec = MAX (prec, final_prec);
8554 if (prec < TYPE_PRECISION (wtype))
8556 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8557 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8558 win = fold_convert (t, win);
8562 return win;
8565 /* Return OP or a simpler expression for a narrower value
8566 which can be sign-extended or zero-extended to give back OP.
8567 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8568 or 0 if the value should be sign-extended. */
8570 tree
8571 get_narrower (tree op, int *unsignedp_ptr)
8573 int uns = 0;
8574 int first = 1;
8575 tree win = op;
8576 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8578 while (TREE_CODE (op) == NOP_EXPR)
8580 int bitschange
8581 = (TYPE_PRECISION (TREE_TYPE (op))
8582 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8584 /* Truncations are many-one so cannot be removed. */
8585 if (bitschange < 0)
8586 break;
8588 /* See what's inside this conversion. If we decide to strip it,
8589 we will set WIN. */
8591 if (bitschange > 0)
8593 op = TREE_OPERAND (op, 0);
8594 /* An extension: the outermost one can be stripped,
8595 but remember whether it is zero or sign extension. */
8596 if (first)
8597 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8598 /* Otherwise, if a sign extension has been stripped,
8599 only sign extensions can now be stripped;
8600 if a zero extension has been stripped, only zero-extensions. */
8601 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8602 break;
8603 first = 0;
8605 else /* bitschange == 0 */
8607 /* A change in nominal type can always be stripped, but we must
8608 preserve the unsignedness. */
8609 if (first)
8610 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8611 first = 0;
8612 op = TREE_OPERAND (op, 0);
8613 /* Keep trying to narrow, but don't assign op to win if it
8614 would turn an integral type into something else. */
8615 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8616 continue;
8619 win = op;
8622 if (TREE_CODE (op) == COMPONENT_REF
8623 /* Since type_for_size always gives an integer type. */
8624 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8625 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8626 /* Ensure field is laid out already. */
8627 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8628 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8630 unsigned HOST_WIDE_INT innerprec
8631 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8632 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8633 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8634 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8636 /* We can get this structure field in a narrower type that fits it,
8637 but the resulting extension to its nominal type (a fullword type)
8638 must satisfy the same conditions as for other extensions.
8640 Do this only for fields that are aligned (not bit-fields),
8641 because when bit-field insns will be used there is no
8642 advantage in doing this. */
8644 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8645 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8646 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8647 && type != 0)
8649 if (first)
8650 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8651 win = fold_convert (type, op);
8655 *unsignedp_ptr = uns;
8656 return win;
8659 /* Return true if integer constant C has a value that is permissible
8660 for TYPE, an integral type. */
8662 bool
8663 int_fits_type_p (const_tree c, const_tree type)
8665 tree type_low_bound, type_high_bound;
8666 bool ok_for_low_bound, ok_for_high_bound;
8667 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8669 /* Non-standard boolean types can have arbitrary precision but various
8670 transformations assume that they can only take values 0 and +/-1. */
8671 if (TREE_CODE (type) == BOOLEAN_TYPE)
8672 return wi::fits_to_boolean_p (wi::to_wide (c), type);
8674 retry:
8675 type_low_bound = TYPE_MIN_VALUE (type);
8676 type_high_bound = TYPE_MAX_VALUE (type);
8678 /* If at least one bound of the type is a constant integer, we can check
8679 ourselves and maybe make a decision. If no such decision is possible, but
8680 this type is a subtype, try checking against that. Otherwise, use
8681 fits_to_tree_p, which checks against the precision.
8683 Compute the status for each possibly constant bound, and return if we see
8684 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8685 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8686 for "constant known to fit". */
8688 /* Check if c >= type_low_bound. */
8689 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8691 if (tree_int_cst_lt (c, type_low_bound))
8692 return false;
8693 ok_for_low_bound = true;
8695 else
8696 ok_for_low_bound = false;
8698 /* Check if c <= type_high_bound. */
8699 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8701 if (tree_int_cst_lt (type_high_bound, c))
8702 return false;
8703 ok_for_high_bound = true;
8705 else
8706 ok_for_high_bound = false;
8708 /* If the constant fits both bounds, the result is known. */
8709 if (ok_for_low_bound && ok_for_high_bound)
8710 return true;
8712 /* Perform some generic filtering which may allow making a decision
8713 even if the bounds are not constant. First, negative integers
8714 never fit in unsigned types, */
8715 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
8716 return false;
8718 /* Second, narrower types always fit in wider ones. */
8719 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8720 return true;
8722 /* Third, unsigned integers with top bit set never fit signed types. */
8723 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8725 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
8726 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8728 /* When a tree_cst is converted to a wide-int, the precision
8729 is taken from the type. However, if the precision of the
8730 mode underneath the type is smaller than that, it is
8731 possible that the value will not fit. The test below
8732 fails if any bit is set between the sign bit of the
8733 underlying mode and the top bit of the type. */
8734 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
8735 return false;
8737 else if (wi::neg_p (wi::to_wide (c)))
8738 return false;
8741 /* If we haven't been able to decide at this point, there nothing more we
8742 can check ourselves here. Look at the base type if we have one and it
8743 has the same precision. */
8744 if (TREE_CODE (type) == INTEGER_TYPE
8745 && TREE_TYPE (type) != 0
8746 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8748 type = TREE_TYPE (type);
8749 goto retry;
8752 /* Or to fits_to_tree_p, if nothing else. */
8753 return wi::fits_to_tree_p (wi::to_wide (c), type);
8756 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8757 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8758 represented (assuming two's-complement arithmetic) within the bit
8759 precision of the type are returned instead. */
8761 void
8762 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8764 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8765 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8766 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
8767 else
8769 if (TYPE_UNSIGNED (type))
8770 mpz_set_ui (min, 0);
8771 else
8773 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8774 wi::to_mpz (mn, min, SIGNED);
8778 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8779 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8780 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
8781 else
8783 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8784 wi::to_mpz (mn, max, TYPE_SIGN (type));
8788 /* Return true if VAR is an automatic variable defined in function FN. */
8790 bool
8791 auto_var_in_fn_p (const_tree var, const_tree fn)
8793 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8794 && ((((VAR_P (var) && ! DECL_EXTERNAL (var))
8795 || TREE_CODE (var) == PARM_DECL)
8796 && ! TREE_STATIC (var))
8797 || TREE_CODE (var) == LABEL_DECL
8798 || TREE_CODE (var) == RESULT_DECL));
8801 /* Subprogram of following function. Called by walk_tree.
8803 Return *TP if it is an automatic variable or parameter of the
8804 function passed in as DATA. */
8806 static tree
8807 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8809 tree fn = (tree) data;
8811 if (TYPE_P (*tp))
8812 *walk_subtrees = 0;
8814 else if (DECL_P (*tp)
8815 && auto_var_in_fn_p (*tp, fn))
8816 return *tp;
8818 return NULL_TREE;
8821 /* Returns true if T is, contains, or refers to a type with variable
8822 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8823 arguments, but not the return type. If FN is nonzero, only return
8824 true if a modifier of the type or position of FN is a variable or
8825 parameter inside FN.
8827 This concept is more general than that of C99 'variably modified types':
8828 in C99, a struct type is never variably modified because a VLA may not
8829 appear as a structure member. However, in GNU C code like:
8831 struct S { int i[f()]; };
8833 is valid, and other languages may define similar constructs. */
8835 bool
8836 variably_modified_type_p (tree type, tree fn)
8838 tree t;
8840 /* Test if T is either variable (if FN is zero) or an expression containing
8841 a variable in FN. If TYPE isn't gimplified, return true also if
8842 gimplify_one_sizepos would gimplify the expression into a local
8843 variable. */
8844 #define RETURN_TRUE_IF_VAR(T) \
8845 do { tree _t = (T); \
8846 if (_t != NULL_TREE \
8847 && _t != error_mark_node \
8848 && !CONSTANT_CLASS_P (_t) \
8849 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8850 && (!fn \
8851 || (!TYPE_SIZES_GIMPLIFIED (type) \
8852 && (TREE_CODE (_t) != VAR_DECL \
8853 && !CONTAINS_PLACEHOLDER_P (_t))) \
8854 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8855 return true; } while (0)
8857 if (type == error_mark_node)
8858 return false;
8860 /* If TYPE itself has variable size, it is variably modified. */
8861 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8862 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8864 switch (TREE_CODE (type))
8866 case POINTER_TYPE:
8867 case REFERENCE_TYPE:
8868 case VECTOR_TYPE:
8869 /* Ada can have pointer types refering to themselves indirectly. */
8870 if (TREE_VISITED (type))
8871 return false;
8872 TREE_VISITED (type) = true;
8873 if (variably_modified_type_p (TREE_TYPE (type), fn))
8875 TREE_VISITED (type) = false;
8876 return true;
8878 TREE_VISITED (type) = false;
8879 break;
8881 case FUNCTION_TYPE:
8882 case METHOD_TYPE:
8883 /* If TYPE is a function type, it is variably modified if the
8884 return type is variably modified. */
8885 if (variably_modified_type_p (TREE_TYPE (type), fn))
8886 return true;
8887 break;
8889 case INTEGER_TYPE:
8890 case REAL_TYPE:
8891 case FIXED_POINT_TYPE:
8892 case ENUMERAL_TYPE:
8893 case BOOLEAN_TYPE:
8894 /* Scalar types are variably modified if their end points
8895 aren't constant. */
8896 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8897 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8898 break;
8900 case RECORD_TYPE:
8901 case UNION_TYPE:
8902 case QUAL_UNION_TYPE:
8903 /* We can't see if any of the fields are variably-modified by the
8904 definition we normally use, since that would produce infinite
8905 recursion via pointers. */
8906 /* This is variably modified if some field's type is. */
8907 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8908 if (TREE_CODE (t) == FIELD_DECL)
8910 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8911 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8912 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8914 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8915 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8917 break;
8919 case ARRAY_TYPE:
8920 /* Do not call ourselves to avoid infinite recursion. This is
8921 variably modified if the element type is. */
8922 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8923 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8924 break;
8926 default:
8927 break;
8930 /* The current language may have other cases to check, but in general,
8931 all other types are not variably modified. */
8932 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8934 #undef RETURN_TRUE_IF_VAR
8937 /* Given a DECL or TYPE, return the scope in which it was declared, or
8938 NULL_TREE if there is no containing scope. */
8940 tree
8941 get_containing_scope (const_tree t)
8943 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8946 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
8948 const_tree
8949 get_ultimate_context (const_tree decl)
8951 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
8953 if (TREE_CODE (decl) == BLOCK)
8954 decl = BLOCK_SUPERCONTEXT (decl);
8955 else
8956 decl = get_containing_scope (decl);
8958 return decl;
8961 /* Return the innermost context enclosing DECL that is
8962 a FUNCTION_DECL, or zero if none. */
8964 tree
8965 decl_function_context (const_tree decl)
8967 tree context;
8969 if (TREE_CODE (decl) == ERROR_MARK)
8970 return 0;
8972 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8973 where we look up the function at runtime. Such functions always take
8974 a first argument of type 'pointer to real context'.
8976 C++ should really be fixed to use DECL_CONTEXT for the real context,
8977 and use something else for the "virtual context". */
8978 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8979 context
8980 = TYPE_MAIN_VARIANT
8981 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8982 else
8983 context = DECL_CONTEXT (decl);
8985 while (context && TREE_CODE (context) != FUNCTION_DECL)
8987 if (TREE_CODE (context) == BLOCK)
8988 context = BLOCK_SUPERCONTEXT (context);
8989 else
8990 context = get_containing_scope (context);
8993 return context;
8996 /* Return the innermost context enclosing DECL that is
8997 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8998 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9000 tree
9001 decl_type_context (const_tree decl)
9003 tree context = DECL_CONTEXT (decl);
9005 while (context)
9006 switch (TREE_CODE (context))
9008 case NAMESPACE_DECL:
9009 case TRANSLATION_UNIT_DECL:
9010 return NULL_TREE;
9012 case RECORD_TYPE:
9013 case UNION_TYPE:
9014 case QUAL_UNION_TYPE:
9015 return context;
9017 case TYPE_DECL:
9018 case FUNCTION_DECL:
9019 context = DECL_CONTEXT (context);
9020 break;
9022 case BLOCK:
9023 context = BLOCK_SUPERCONTEXT (context);
9024 break;
9026 default:
9027 gcc_unreachable ();
9030 return NULL_TREE;
9033 /* CALL is a CALL_EXPR. Return the declaration for the function
9034 called, or NULL_TREE if the called function cannot be
9035 determined. */
9037 tree
9038 get_callee_fndecl (const_tree call)
9040 tree addr;
9042 if (call == error_mark_node)
9043 return error_mark_node;
9045 /* It's invalid to call this function with anything but a
9046 CALL_EXPR. */
9047 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9049 /* The first operand to the CALL is the address of the function
9050 called. */
9051 addr = CALL_EXPR_FN (call);
9053 /* If there is no function, return early. */
9054 if (addr == NULL_TREE)
9055 return NULL_TREE;
9057 STRIP_NOPS (addr);
9059 /* If this is a readonly function pointer, extract its initial value. */
9060 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9061 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9062 && DECL_INITIAL (addr))
9063 addr = DECL_INITIAL (addr);
9065 /* If the address is just `&f' for some function `f', then we know
9066 that `f' is being called. */
9067 if (TREE_CODE (addr) == ADDR_EXPR
9068 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9069 return TREE_OPERAND (addr, 0);
9071 /* We couldn't figure out what was being called. */
9072 return NULL_TREE;
9075 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9076 return the associated function code, otherwise return CFN_LAST. */
9078 combined_fn
9079 get_call_combined_fn (const_tree call)
9081 /* It's invalid to call this function with anything but a CALL_EXPR. */
9082 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9084 if (!CALL_EXPR_FN (call))
9085 return as_combined_fn (CALL_EXPR_IFN (call));
9087 tree fndecl = get_callee_fndecl (call);
9088 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
9089 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9091 return CFN_LAST;
9094 #define TREE_MEM_USAGE_SPACES 40
9096 /* Print debugging information about tree nodes generated during the compile,
9097 and any language-specific information. */
9099 void
9100 dump_tree_statistics (void)
9102 if (GATHER_STATISTICS)
9104 int i;
9105 uint64_t total_nodes, total_bytes;
9106 fprintf (stderr, "\nKind Nodes Bytes\n");
9107 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9108 total_nodes = total_bytes = 0;
9109 for (i = 0; i < (int) all_kinds; i++)
9111 fprintf (stderr, "%-20s %7" PRIu64 " %10" PRIu64 "\n",
9112 tree_node_kind_names[i], tree_node_counts[i],
9113 tree_node_sizes[i]);
9114 total_nodes += tree_node_counts[i];
9115 total_bytes += tree_node_sizes[i];
9117 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9118 fprintf (stderr, "%-20s %7" PRIu64 " %10" PRIu64 "\n", "Total",
9119 total_nodes, total_bytes);
9120 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9121 fprintf (stderr, "Code Nodes\n");
9122 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9123 for (i = 0; i < (int) MAX_TREE_CODES; i++)
9124 fprintf (stderr, "%-32s %7" PRIu64 "\n",
9125 get_tree_code_name ((enum tree_code) i), tree_code_counts[i]);
9126 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9127 fprintf (stderr, "\n");
9128 ssanames_print_statistics ();
9129 fprintf (stderr, "\n");
9130 phinodes_print_statistics ();
9131 fprintf (stderr, "\n");
9133 else
9134 fprintf (stderr, "(No per-node statistics)\n");
9136 print_type_hash_statistics ();
9137 print_debug_expr_statistics ();
9138 print_value_expr_statistics ();
9139 lang_hooks.print_statistics ();
9142 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9144 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9146 unsigned
9147 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9149 /* This relies on the raw feedback's top 4 bits being zero. */
9150 #define FEEDBACK(X) ((X) * 0x04c11db7)
9151 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9152 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9153 static const unsigned syndromes[16] =
9155 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9156 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9157 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9158 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9160 #undef FEEDBACK
9161 #undef SYNDROME
9163 value <<= (32 - bytes * 8);
9164 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9166 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9168 chksum = (chksum << 4) ^ feedback;
9171 return chksum;
9174 /* Generate a crc32 of a string. */
9176 unsigned
9177 crc32_string (unsigned chksum, const char *string)
9180 chksum = crc32_byte (chksum, *string);
9181 while (*string++);
9182 return chksum;
9185 /* P is a string that will be used in a symbol. Mask out any characters
9186 that are not valid in that context. */
9188 void
9189 clean_symbol_name (char *p)
9191 for (; *p; p++)
9192 if (! (ISALNUM (*p)
9193 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9194 || *p == '$'
9195 #endif
9196 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9197 || *p == '.'
9198 #endif
9200 *p = '_';
9203 /* For anonymous aggregate types, we need some sort of name to
9204 hold on to. In practice, this should not appear, but it should
9205 not be harmful if it does. */
9206 bool
9207 anon_aggrname_p(const_tree id_node)
9209 #ifndef NO_DOT_IN_LABEL
9210 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9211 && IDENTIFIER_POINTER (id_node)[1] == '_');
9212 #else /* NO_DOT_IN_LABEL */
9213 #ifndef NO_DOLLAR_IN_LABEL
9214 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9215 && IDENTIFIER_POINTER (id_node)[1] == '_');
9216 #else /* NO_DOLLAR_IN_LABEL */
9217 #define ANON_AGGRNAME_PREFIX "__anon_"
9218 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9219 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9220 #endif /* NO_DOLLAR_IN_LABEL */
9221 #endif /* NO_DOT_IN_LABEL */
9224 /* Return a format for an anonymous aggregate name. */
9225 const char *
9226 anon_aggrname_format()
9228 #ifndef NO_DOT_IN_LABEL
9229 return "._%d";
9230 #else /* NO_DOT_IN_LABEL */
9231 #ifndef NO_DOLLAR_IN_LABEL
9232 return "$_%d";
9233 #else /* NO_DOLLAR_IN_LABEL */
9234 return "__anon_%d";
9235 #endif /* NO_DOLLAR_IN_LABEL */
9236 #endif /* NO_DOT_IN_LABEL */
9239 /* Generate a name for a special-purpose function.
9240 The generated name may need to be unique across the whole link.
9241 Changes to this function may also require corresponding changes to
9242 xstrdup_mask_random.
9243 TYPE is some string to identify the purpose of this function to the
9244 linker or collect2; it must start with an uppercase letter,
9245 one of:
9246 I - for constructors
9247 D - for destructors
9248 N - for C++ anonymous namespaces
9249 F - for DWARF unwind frame information. */
9251 tree
9252 get_file_function_name (const char *type)
9254 char *buf;
9255 const char *p;
9256 char *q;
9258 /* If we already have a name we know to be unique, just use that. */
9259 if (first_global_object_name)
9260 p = q = ASTRDUP (first_global_object_name);
9261 /* If the target is handling the constructors/destructors, they
9262 will be local to this file and the name is only necessary for
9263 debugging purposes.
9264 We also assign sub_I and sub_D sufixes to constructors called from
9265 the global static constructors. These are always local. */
9266 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9267 || (strncmp (type, "sub_", 4) == 0
9268 && (type[4] == 'I' || type[4] == 'D')))
9270 const char *file = main_input_filename;
9271 if (! file)
9272 file = LOCATION_FILE (input_location);
9273 /* Just use the file's basename, because the full pathname
9274 might be quite long. */
9275 p = q = ASTRDUP (lbasename (file));
9277 else
9279 /* Otherwise, the name must be unique across the entire link.
9280 We don't have anything that we know to be unique to this translation
9281 unit, so use what we do have and throw in some randomness. */
9282 unsigned len;
9283 const char *name = weak_global_object_name;
9284 const char *file = main_input_filename;
9286 if (! name)
9287 name = "";
9288 if (! file)
9289 file = LOCATION_FILE (input_location);
9291 len = strlen (file);
9292 q = (char *) alloca (9 + 19 + len + 1);
9293 memcpy (q, file, len + 1);
9295 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9296 crc32_string (0, name), get_random_seed (false));
9298 p = q;
9301 clean_symbol_name (q);
9302 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9303 + strlen (type));
9305 /* Set up the name of the file-level functions we may need.
9306 Use a global object (which is already required to be unique over
9307 the program) rather than the file name (which imposes extra
9308 constraints). */
9309 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9311 return get_identifier (buf);
9314 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9316 /* Complain that the tree code of NODE does not match the expected 0
9317 terminated list of trailing codes. The trailing code list can be
9318 empty, for a more vague error message. FILE, LINE, and FUNCTION
9319 are of the caller. */
9321 void
9322 tree_check_failed (const_tree node, const char *file,
9323 int line, const char *function, ...)
9325 va_list args;
9326 const char *buffer;
9327 unsigned length = 0;
9328 enum tree_code code;
9330 va_start (args, function);
9331 while ((code = (enum tree_code) va_arg (args, int)))
9332 length += 4 + strlen (get_tree_code_name (code));
9333 va_end (args);
9334 if (length)
9336 char *tmp;
9337 va_start (args, function);
9338 length += strlen ("expected ");
9339 buffer = tmp = (char *) alloca (length);
9340 length = 0;
9341 while ((code = (enum tree_code) va_arg (args, int)))
9343 const char *prefix = length ? " or " : "expected ";
9345 strcpy (tmp + length, prefix);
9346 length += strlen (prefix);
9347 strcpy (tmp + length, get_tree_code_name (code));
9348 length += strlen (get_tree_code_name (code));
9350 va_end (args);
9352 else
9353 buffer = "unexpected node";
9355 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9356 buffer, get_tree_code_name (TREE_CODE (node)),
9357 function, trim_filename (file), line);
9360 /* Complain that the tree code of NODE does match the expected 0
9361 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9362 the caller. */
9364 void
9365 tree_not_check_failed (const_tree node, const char *file,
9366 int line, const char *function, ...)
9368 va_list args;
9369 char *buffer;
9370 unsigned length = 0;
9371 enum tree_code code;
9373 va_start (args, function);
9374 while ((code = (enum tree_code) va_arg (args, int)))
9375 length += 4 + strlen (get_tree_code_name (code));
9376 va_end (args);
9377 va_start (args, function);
9378 buffer = (char *) alloca (length);
9379 length = 0;
9380 while ((code = (enum tree_code) va_arg (args, int)))
9382 if (length)
9384 strcpy (buffer + length, " or ");
9385 length += 4;
9387 strcpy (buffer + length, get_tree_code_name (code));
9388 length += strlen (get_tree_code_name (code));
9390 va_end (args);
9392 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9393 buffer, get_tree_code_name (TREE_CODE (node)),
9394 function, trim_filename (file), line);
9397 /* Similar to tree_check_failed, except that we check for a class of tree
9398 code, given in CL. */
9400 void
9401 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9402 const char *file, int line, const char *function)
9404 internal_error
9405 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9406 TREE_CODE_CLASS_STRING (cl),
9407 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9408 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9411 /* Similar to tree_check_failed, except that instead of specifying a
9412 dozen codes, use the knowledge that they're all sequential. */
9414 void
9415 tree_range_check_failed (const_tree node, const char *file, int line,
9416 const char *function, enum tree_code c1,
9417 enum tree_code c2)
9419 char *buffer;
9420 unsigned length = 0;
9421 unsigned int c;
9423 for (c = c1; c <= c2; ++c)
9424 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9426 length += strlen ("expected ");
9427 buffer = (char *) alloca (length);
9428 length = 0;
9430 for (c = c1; c <= c2; ++c)
9432 const char *prefix = length ? " or " : "expected ";
9434 strcpy (buffer + length, prefix);
9435 length += strlen (prefix);
9436 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9437 length += strlen (get_tree_code_name ((enum tree_code) c));
9440 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9441 buffer, get_tree_code_name (TREE_CODE (node)),
9442 function, trim_filename (file), line);
9446 /* Similar to tree_check_failed, except that we check that a tree does
9447 not have the specified code, given in CL. */
9449 void
9450 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9451 const char *file, int line, const char *function)
9453 internal_error
9454 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9455 TREE_CODE_CLASS_STRING (cl),
9456 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9457 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9461 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9463 void
9464 omp_clause_check_failed (const_tree node, const char *file, int line,
9465 const char *function, enum omp_clause_code code)
9467 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9468 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9469 function, trim_filename (file), line);
9473 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9475 void
9476 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9477 const char *function, enum omp_clause_code c1,
9478 enum omp_clause_code c2)
9480 char *buffer;
9481 unsigned length = 0;
9482 unsigned int c;
9484 for (c = c1; c <= c2; ++c)
9485 length += 4 + strlen (omp_clause_code_name[c]);
9487 length += strlen ("expected ");
9488 buffer = (char *) alloca (length);
9489 length = 0;
9491 for (c = c1; c <= c2; ++c)
9493 const char *prefix = length ? " or " : "expected ";
9495 strcpy (buffer + length, prefix);
9496 length += strlen (prefix);
9497 strcpy (buffer + length, omp_clause_code_name[c]);
9498 length += strlen (omp_clause_code_name[c]);
9501 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9502 buffer, omp_clause_code_name[TREE_CODE (node)],
9503 function, trim_filename (file), line);
9507 #undef DEFTREESTRUCT
9508 #define DEFTREESTRUCT(VAL, NAME) NAME,
9510 static const char *ts_enum_names[] = {
9511 #include "treestruct.def"
9513 #undef DEFTREESTRUCT
9515 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9517 /* Similar to tree_class_check_failed, except that we check for
9518 whether CODE contains the tree structure identified by EN. */
9520 void
9521 tree_contains_struct_check_failed (const_tree node,
9522 const enum tree_node_structure_enum en,
9523 const char *file, int line,
9524 const char *function)
9526 internal_error
9527 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9528 TS_ENUM_NAME (en),
9529 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9533 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9534 (dynamically sized) vector. */
9536 void
9537 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9538 const char *function)
9540 internal_error
9541 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9542 idx + 1, len, function, trim_filename (file), line);
9545 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9546 (dynamically sized) vector. */
9548 void
9549 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9550 const char *function)
9552 internal_error
9553 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9554 idx + 1, len, function, trim_filename (file), line);
9557 /* Similar to above, except that the check is for the bounds of the operand
9558 vector of an expression node EXP. */
9560 void
9561 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9562 int line, const char *function)
9564 enum tree_code code = TREE_CODE (exp);
9565 internal_error
9566 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9567 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9568 function, trim_filename (file), line);
9571 /* Similar to above, except that the check is for the number of
9572 operands of an OMP_CLAUSE node. */
9574 void
9575 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9576 int line, const char *function)
9578 internal_error
9579 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9580 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9581 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9582 trim_filename (file), line);
9584 #endif /* ENABLE_TREE_CHECKING */
9586 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
9587 and mapped to the machine mode MODE. Initialize its fields and build
9588 the information necessary for debugging output. */
9590 static tree
9591 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
9593 tree t;
9594 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9596 t = make_node (VECTOR_TYPE);
9597 TREE_TYPE (t) = mv_innertype;
9598 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9599 SET_TYPE_MODE (t, mode);
9601 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9602 SET_TYPE_STRUCTURAL_EQUALITY (t);
9603 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9604 || mode != VOIDmode)
9605 && !VECTOR_BOOLEAN_TYPE_P (t))
9606 TYPE_CANONICAL (t)
9607 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9609 layout_type (t);
9611 hashval_t hash = type_hash_canon_hash (t);
9612 t = type_hash_canon (hash, t);
9614 /* We have built a main variant, based on the main variant of the
9615 inner type. Use it to build the variant we return. */
9616 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9617 && TREE_TYPE (t) != innertype)
9618 return build_type_attribute_qual_variant (t,
9619 TYPE_ATTRIBUTES (innertype),
9620 TYPE_QUALS (innertype));
9622 return t;
9625 static tree
9626 make_or_reuse_type (unsigned size, int unsignedp)
9628 int i;
9630 if (size == INT_TYPE_SIZE)
9631 return unsignedp ? unsigned_type_node : integer_type_node;
9632 if (size == CHAR_TYPE_SIZE)
9633 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9634 if (size == SHORT_TYPE_SIZE)
9635 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9636 if (size == LONG_TYPE_SIZE)
9637 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9638 if (size == LONG_LONG_TYPE_SIZE)
9639 return (unsignedp ? long_long_unsigned_type_node
9640 : long_long_integer_type_node);
9642 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9643 if (size == int_n_data[i].bitsize
9644 && int_n_enabled_p[i])
9645 return (unsignedp ? int_n_trees[i].unsigned_type
9646 : int_n_trees[i].signed_type);
9648 if (unsignedp)
9649 return make_unsigned_type (size);
9650 else
9651 return make_signed_type (size);
9654 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9656 static tree
9657 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9659 if (satp)
9661 if (size == SHORT_FRACT_TYPE_SIZE)
9662 return unsignedp ? sat_unsigned_short_fract_type_node
9663 : sat_short_fract_type_node;
9664 if (size == FRACT_TYPE_SIZE)
9665 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9666 if (size == LONG_FRACT_TYPE_SIZE)
9667 return unsignedp ? sat_unsigned_long_fract_type_node
9668 : sat_long_fract_type_node;
9669 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9670 return unsignedp ? sat_unsigned_long_long_fract_type_node
9671 : sat_long_long_fract_type_node;
9673 else
9675 if (size == SHORT_FRACT_TYPE_SIZE)
9676 return unsignedp ? unsigned_short_fract_type_node
9677 : short_fract_type_node;
9678 if (size == FRACT_TYPE_SIZE)
9679 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9680 if (size == LONG_FRACT_TYPE_SIZE)
9681 return unsignedp ? unsigned_long_fract_type_node
9682 : long_fract_type_node;
9683 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9684 return unsignedp ? unsigned_long_long_fract_type_node
9685 : long_long_fract_type_node;
9688 return make_fract_type (size, unsignedp, satp);
9691 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9693 static tree
9694 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9696 if (satp)
9698 if (size == SHORT_ACCUM_TYPE_SIZE)
9699 return unsignedp ? sat_unsigned_short_accum_type_node
9700 : sat_short_accum_type_node;
9701 if (size == ACCUM_TYPE_SIZE)
9702 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9703 if (size == LONG_ACCUM_TYPE_SIZE)
9704 return unsignedp ? sat_unsigned_long_accum_type_node
9705 : sat_long_accum_type_node;
9706 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9707 return unsignedp ? sat_unsigned_long_long_accum_type_node
9708 : sat_long_long_accum_type_node;
9710 else
9712 if (size == SHORT_ACCUM_TYPE_SIZE)
9713 return unsignedp ? unsigned_short_accum_type_node
9714 : short_accum_type_node;
9715 if (size == ACCUM_TYPE_SIZE)
9716 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9717 if (size == LONG_ACCUM_TYPE_SIZE)
9718 return unsignedp ? unsigned_long_accum_type_node
9719 : long_accum_type_node;
9720 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9721 return unsignedp ? unsigned_long_long_accum_type_node
9722 : long_long_accum_type_node;
9725 return make_accum_type (size, unsignedp, satp);
9729 /* Create an atomic variant node for TYPE. This routine is called
9730 during initialization of data types to create the 5 basic atomic
9731 types. The generic build_variant_type function requires these to
9732 already be set up in order to function properly, so cannot be
9733 called from there. If ALIGN is non-zero, then ensure alignment is
9734 overridden to this value. */
9736 static tree
9737 build_atomic_base (tree type, unsigned int align)
9739 tree t;
9741 /* Make sure its not already registered. */
9742 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9743 return t;
9745 t = build_variant_type_copy (type);
9746 set_type_quals (t, TYPE_QUAL_ATOMIC);
9748 if (align)
9749 SET_TYPE_ALIGN (t, align);
9751 return t;
9754 /* Information about the _FloatN and _FloatNx types. This must be in
9755 the same order as the corresponding TI_* enum values. */
9756 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
9758 { 16, false },
9759 { 32, false },
9760 { 64, false },
9761 { 128, false },
9762 { 32, true },
9763 { 64, true },
9764 { 128, true },
9768 /* Create nodes for all integer types (and error_mark_node) using the sizes
9769 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
9771 void
9772 build_common_tree_nodes (bool signed_char)
9774 int i;
9776 error_mark_node = make_node (ERROR_MARK);
9777 TREE_TYPE (error_mark_node) = error_mark_node;
9779 initialize_sizetypes ();
9781 /* Define both `signed char' and `unsigned char'. */
9782 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9783 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9784 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9785 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9787 /* Define `char', which is like either `signed char' or `unsigned char'
9788 but not the same as either. */
9789 char_type_node
9790 = (signed_char
9791 ? make_signed_type (CHAR_TYPE_SIZE)
9792 : make_unsigned_type (CHAR_TYPE_SIZE));
9793 TYPE_STRING_FLAG (char_type_node) = 1;
9795 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9796 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9797 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9798 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9799 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9800 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9801 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9802 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9804 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9806 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
9807 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
9809 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
9810 && int_n_enabled_p[i])
9812 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
9813 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
9817 /* Define a boolean type. This type only represents boolean values but
9818 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9819 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9820 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9821 TYPE_PRECISION (boolean_type_node) = 1;
9822 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9824 /* Define what type to use for size_t. */
9825 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9826 size_type_node = unsigned_type_node;
9827 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9828 size_type_node = long_unsigned_type_node;
9829 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9830 size_type_node = long_long_unsigned_type_node;
9831 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9832 size_type_node = short_unsigned_type_node;
9833 else
9835 int i;
9837 size_type_node = NULL_TREE;
9838 for (i = 0; i < NUM_INT_N_ENTS; i++)
9839 if (int_n_enabled_p[i])
9841 char name[50];
9842 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
9844 if (strcmp (name, SIZE_TYPE) == 0)
9846 size_type_node = int_n_trees[i].unsigned_type;
9849 if (size_type_node == NULL_TREE)
9850 gcc_unreachable ();
9853 /* Define what type to use for ptrdiff_t. */
9854 if (strcmp (PTRDIFF_TYPE, "int") == 0)
9855 ptrdiff_type_node = integer_type_node;
9856 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
9857 ptrdiff_type_node = long_integer_type_node;
9858 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
9859 ptrdiff_type_node = long_long_integer_type_node;
9860 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
9861 ptrdiff_type_node = short_integer_type_node;
9862 else
9864 ptrdiff_type_node = NULL_TREE;
9865 for (int i = 0; i < NUM_INT_N_ENTS; i++)
9866 if (int_n_enabled_p[i])
9868 char name[50];
9869 sprintf (name, "__int%d", int_n_data[i].bitsize);
9870 if (strcmp (name, PTRDIFF_TYPE) == 0)
9871 ptrdiff_type_node = int_n_trees[i].signed_type;
9873 if (ptrdiff_type_node == NULL_TREE)
9874 gcc_unreachable ();
9877 /* Fill in the rest of the sized types. Reuse existing type nodes
9878 when possible. */
9879 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9880 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9881 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9882 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9883 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9885 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9886 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9887 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9888 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9889 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9891 /* Don't call build_qualified type for atomics. That routine does
9892 special processing for atomics, and until they are initialized
9893 it's better not to make that call.
9895 Check to see if there is a target override for atomic types. */
9897 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9898 targetm.atomic_align_for_mode (QImode));
9899 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9900 targetm.atomic_align_for_mode (HImode));
9901 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9902 targetm.atomic_align_for_mode (SImode));
9903 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9904 targetm.atomic_align_for_mode (DImode));
9905 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9906 targetm.atomic_align_for_mode (TImode));
9908 access_public_node = get_identifier ("public");
9909 access_protected_node = get_identifier ("protected");
9910 access_private_node = get_identifier ("private");
9912 /* Define these next since types below may used them. */
9913 integer_zero_node = build_int_cst (integer_type_node, 0);
9914 integer_one_node = build_int_cst (integer_type_node, 1);
9915 integer_three_node = build_int_cst (integer_type_node, 3);
9916 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9918 size_zero_node = size_int (0);
9919 size_one_node = size_int (1);
9920 bitsize_zero_node = bitsize_int (0);
9921 bitsize_one_node = bitsize_int (1);
9922 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9924 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9925 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9927 void_type_node = make_node (VOID_TYPE);
9928 layout_type (void_type_node);
9930 /* We are not going to have real types in C with less than byte alignment,
9931 so we might as well not have any types that claim to have it. */
9932 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
9933 TYPE_USER_ALIGN (void_type_node) = 0;
9935 void_node = make_node (VOID_CST);
9936 TREE_TYPE (void_node) = void_type_node;
9938 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9939 layout_type (TREE_TYPE (null_pointer_node));
9941 ptr_type_node = build_pointer_type (void_type_node);
9942 const_ptr_type_node
9943 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9944 for (unsigned i = 0;
9945 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
9946 ++i)
9947 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
9949 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9951 float_type_node = make_node (REAL_TYPE);
9952 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9953 layout_type (float_type_node);
9955 double_type_node = make_node (REAL_TYPE);
9956 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9957 layout_type (double_type_node);
9959 long_double_type_node = make_node (REAL_TYPE);
9960 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9961 layout_type (long_double_type_node);
9963 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9965 int n = floatn_nx_types[i].n;
9966 bool extended = floatn_nx_types[i].extended;
9967 scalar_float_mode mode;
9968 if (!targetm.floatn_mode (n, extended).exists (&mode))
9969 continue;
9970 int precision = GET_MODE_PRECISION (mode);
9971 /* Work around the rs6000 KFmode having precision 113 not
9972 128. */
9973 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
9974 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
9975 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
9976 if (!extended)
9977 gcc_assert (min_precision == n);
9978 if (precision < min_precision)
9979 precision = min_precision;
9980 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
9981 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
9982 layout_type (FLOATN_NX_TYPE_NODE (i));
9983 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
9986 float_ptr_type_node = build_pointer_type (float_type_node);
9987 double_ptr_type_node = build_pointer_type (double_type_node);
9988 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9989 integer_ptr_type_node = build_pointer_type (integer_type_node);
9991 /* Fixed size integer types. */
9992 uint16_type_node = make_or_reuse_type (16, 1);
9993 uint32_type_node = make_or_reuse_type (32, 1);
9994 uint64_type_node = make_or_reuse_type (64, 1);
9996 /* Decimal float types. */
9997 dfloat32_type_node = make_node (REAL_TYPE);
9998 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9999 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10000 layout_type (dfloat32_type_node);
10001 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
10003 dfloat64_type_node = make_node (REAL_TYPE);
10004 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10005 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10006 layout_type (dfloat64_type_node);
10007 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
10009 dfloat128_type_node = make_node (REAL_TYPE);
10010 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10011 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10012 layout_type (dfloat128_type_node);
10013 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
10015 complex_integer_type_node = build_complex_type (integer_type_node, true);
10016 complex_float_type_node = build_complex_type (float_type_node, true);
10017 complex_double_type_node = build_complex_type (double_type_node, true);
10018 complex_long_double_type_node = build_complex_type (long_double_type_node,
10019 true);
10021 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10023 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10024 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10025 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10028 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10029 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10030 sat_ ## KIND ## _type_node = \
10031 make_sat_signed_ ## KIND ## _type (SIZE); \
10032 sat_unsigned_ ## KIND ## _type_node = \
10033 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10034 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10035 unsigned_ ## KIND ## _type_node = \
10036 make_unsigned_ ## KIND ## _type (SIZE);
10038 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10039 sat_ ## WIDTH ## KIND ## _type_node = \
10040 make_sat_signed_ ## KIND ## _type (SIZE); \
10041 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10042 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10043 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10044 unsigned_ ## WIDTH ## KIND ## _type_node = \
10045 make_unsigned_ ## KIND ## _type (SIZE);
10047 /* Make fixed-point type nodes based on four different widths. */
10048 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10049 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10050 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10051 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10052 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10054 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10055 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10056 NAME ## _type_node = \
10057 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10058 u ## NAME ## _type_node = \
10059 make_or_reuse_unsigned_ ## KIND ## _type \
10060 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10061 sat_ ## NAME ## _type_node = \
10062 make_or_reuse_sat_signed_ ## KIND ## _type \
10063 (GET_MODE_BITSIZE (MODE ## mode)); \
10064 sat_u ## NAME ## _type_node = \
10065 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10066 (GET_MODE_BITSIZE (U ## MODE ## mode));
10068 /* Fixed-point type and mode nodes. */
10069 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10070 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10071 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10072 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10073 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10074 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10075 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10076 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10077 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10078 MAKE_FIXED_MODE_NODE (accum, da, DA)
10079 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10082 tree t = targetm.build_builtin_va_list ();
10084 /* Many back-ends define record types without setting TYPE_NAME.
10085 If we copied the record type here, we'd keep the original
10086 record type without a name. This breaks name mangling. So,
10087 don't copy record types and let c_common_nodes_and_builtins()
10088 declare the type to be __builtin_va_list. */
10089 if (TREE_CODE (t) != RECORD_TYPE)
10090 t = build_variant_type_copy (t);
10092 va_list_type_node = t;
10096 /* Modify DECL for given flags.
10097 TM_PURE attribute is set only on types, so the function will modify
10098 DECL's type when ECF_TM_PURE is used. */
10100 void
10101 set_call_expr_flags (tree decl, int flags)
10103 if (flags & ECF_NOTHROW)
10104 TREE_NOTHROW (decl) = 1;
10105 if (flags & ECF_CONST)
10106 TREE_READONLY (decl) = 1;
10107 if (flags & ECF_PURE)
10108 DECL_PURE_P (decl) = 1;
10109 if (flags & ECF_LOOPING_CONST_OR_PURE)
10110 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10111 if (flags & ECF_NOVOPS)
10112 DECL_IS_NOVOPS (decl) = 1;
10113 if (flags & ECF_NORETURN)
10114 TREE_THIS_VOLATILE (decl) = 1;
10115 if (flags & ECF_MALLOC)
10116 DECL_IS_MALLOC (decl) = 1;
10117 if (flags & ECF_RETURNS_TWICE)
10118 DECL_IS_RETURNS_TWICE (decl) = 1;
10119 if (flags & ECF_LEAF)
10120 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10121 NULL, DECL_ATTRIBUTES (decl));
10122 if (flags & ECF_COLD)
10123 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10124 NULL, DECL_ATTRIBUTES (decl));
10125 if (flags & ECF_RET1)
10126 DECL_ATTRIBUTES (decl)
10127 = tree_cons (get_identifier ("fn spec"),
10128 build_tree_list (NULL_TREE, build_string (1, "1")),
10129 DECL_ATTRIBUTES (decl));
10130 if ((flags & ECF_TM_PURE) && flag_tm)
10131 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10132 /* Looping const or pure is implied by noreturn.
10133 There is currently no way to declare looping const or looping pure alone. */
10134 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10135 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10139 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10141 static void
10142 local_define_builtin (const char *name, tree type, enum built_in_function code,
10143 const char *library_name, int ecf_flags)
10145 tree decl;
10147 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10148 library_name, NULL_TREE);
10149 set_call_expr_flags (decl, ecf_flags);
10151 set_builtin_decl (code, decl, true);
10154 /* Call this function after instantiating all builtins that the language
10155 front end cares about. This will build the rest of the builtins
10156 and internal functions that are relied upon by the tree optimizers and
10157 the middle-end. */
10159 void
10160 build_common_builtin_nodes (void)
10162 tree tmp, ftype;
10163 int ecf_flags;
10165 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10166 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10168 ftype = build_function_type (void_type_node, void_list_node);
10169 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10170 local_define_builtin ("__builtin_unreachable", ftype,
10171 BUILT_IN_UNREACHABLE,
10172 "__builtin_unreachable",
10173 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10174 | ECF_CONST | ECF_COLD);
10175 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10176 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10177 "abort",
10178 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10181 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10182 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10184 ftype = build_function_type_list (ptr_type_node,
10185 ptr_type_node, const_ptr_type_node,
10186 size_type_node, NULL_TREE);
10188 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10189 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10190 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10191 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10192 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10193 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10196 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10198 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10199 const_ptr_type_node, size_type_node,
10200 NULL_TREE);
10201 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10202 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10205 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10207 ftype = build_function_type_list (ptr_type_node,
10208 ptr_type_node, integer_type_node,
10209 size_type_node, NULL_TREE);
10210 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10211 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10214 /* If we're checking the stack, `alloca' can throw. */
10215 const int alloca_flags
10216 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10218 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10220 ftype = build_function_type_list (ptr_type_node,
10221 size_type_node, NULL_TREE);
10222 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10223 "alloca", alloca_flags);
10226 ftype = build_function_type_list (ptr_type_node, size_type_node,
10227 size_type_node, NULL_TREE);
10228 local_define_builtin ("__builtin_alloca_with_align", ftype,
10229 BUILT_IN_ALLOCA_WITH_ALIGN,
10230 "__builtin_alloca_with_align",
10231 alloca_flags);
10233 ftype = build_function_type_list (ptr_type_node, size_type_node,
10234 size_type_node, size_type_node, NULL_TREE);
10235 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10236 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10237 "__builtin_alloca_with_align_and_max",
10238 alloca_flags);
10240 ftype = build_function_type_list (void_type_node,
10241 ptr_type_node, ptr_type_node,
10242 ptr_type_node, NULL_TREE);
10243 local_define_builtin ("__builtin_init_trampoline", ftype,
10244 BUILT_IN_INIT_TRAMPOLINE,
10245 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10246 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10247 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10248 "__builtin_init_heap_trampoline",
10249 ECF_NOTHROW | ECF_LEAF);
10250 local_define_builtin ("__builtin_init_descriptor", ftype,
10251 BUILT_IN_INIT_DESCRIPTOR,
10252 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10254 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10255 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10256 BUILT_IN_ADJUST_TRAMPOLINE,
10257 "__builtin_adjust_trampoline",
10258 ECF_CONST | ECF_NOTHROW);
10259 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10260 BUILT_IN_ADJUST_DESCRIPTOR,
10261 "__builtin_adjust_descriptor",
10262 ECF_CONST | ECF_NOTHROW);
10264 ftype = build_function_type_list (void_type_node,
10265 ptr_type_node, ptr_type_node, NULL_TREE);
10266 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10267 BUILT_IN_NONLOCAL_GOTO,
10268 "__builtin_nonlocal_goto",
10269 ECF_NORETURN | ECF_NOTHROW);
10271 ftype = build_function_type_list (void_type_node,
10272 ptr_type_node, ptr_type_node, NULL_TREE);
10273 local_define_builtin ("__builtin_setjmp_setup", ftype,
10274 BUILT_IN_SETJMP_SETUP,
10275 "__builtin_setjmp_setup", ECF_NOTHROW);
10277 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10278 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10279 BUILT_IN_SETJMP_RECEIVER,
10280 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10282 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10283 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10284 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10286 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10287 local_define_builtin ("__builtin_stack_restore", ftype,
10288 BUILT_IN_STACK_RESTORE,
10289 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10291 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10292 const_ptr_type_node, size_type_node,
10293 NULL_TREE);
10294 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10295 "__builtin_memcmp_eq",
10296 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10298 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10299 "__builtin_strncmp_eq",
10300 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10302 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10303 "__builtin_strcmp_eq",
10304 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10306 /* If there's a possibility that we might use the ARM EABI, build the
10307 alternate __cxa_end_cleanup node used to resume from C++. */
10308 if (targetm.arm_eabi_unwinder)
10310 ftype = build_function_type_list (void_type_node, NULL_TREE);
10311 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10312 BUILT_IN_CXA_END_CLEANUP,
10313 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10316 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10317 local_define_builtin ("__builtin_unwind_resume", ftype,
10318 BUILT_IN_UNWIND_RESUME,
10319 ((targetm_common.except_unwind_info (&global_options)
10320 == UI_SJLJ)
10321 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10322 ECF_NORETURN);
10324 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10326 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10327 NULL_TREE);
10328 local_define_builtin ("__builtin_return_address", ftype,
10329 BUILT_IN_RETURN_ADDRESS,
10330 "__builtin_return_address",
10331 ECF_NOTHROW);
10334 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10335 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10337 ftype = build_function_type_list (void_type_node, ptr_type_node,
10338 ptr_type_node, NULL_TREE);
10339 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10340 local_define_builtin ("__cyg_profile_func_enter", ftype,
10341 BUILT_IN_PROFILE_FUNC_ENTER,
10342 "__cyg_profile_func_enter", 0);
10343 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10344 local_define_builtin ("__cyg_profile_func_exit", ftype,
10345 BUILT_IN_PROFILE_FUNC_EXIT,
10346 "__cyg_profile_func_exit", 0);
10349 /* The exception object and filter values from the runtime. The argument
10350 must be zero before exception lowering, i.e. from the front end. After
10351 exception lowering, it will be the region number for the exception
10352 landing pad. These functions are PURE instead of CONST to prevent
10353 them from being hoisted past the exception edge that will initialize
10354 its value in the landing pad. */
10355 ftype = build_function_type_list (ptr_type_node,
10356 integer_type_node, NULL_TREE);
10357 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10358 /* Only use TM_PURE if we have TM language support. */
10359 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10360 ecf_flags |= ECF_TM_PURE;
10361 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10362 "__builtin_eh_pointer", ecf_flags);
10364 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10365 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10366 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10367 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10369 ftype = build_function_type_list (void_type_node,
10370 integer_type_node, integer_type_node,
10371 NULL_TREE);
10372 local_define_builtin ("__builtin_eh_copy_values", ftype,
10373 BUILT_IN_EH_COPY_VALUES,
10374 "__builtin_eh_copy_values", ECF_NOTHROW);
10376 /* Complex multiplication and division. These are handled as builtins
10377 rather than optabs because emit_library_call_value doesn't support
10378 complex. Further, we can do slightly better with folding these
10379 beasties if the real and complex parts of the arguments are separate. */
10381 int mode;
10383 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10385 char mode_name_buf[4], *q;
10386 const char *p;
10387 enum built_in_function mcode, dcode;
10388 tree type, inner_type;
10389 const char *prefix = "__";
10391 if (targetm.libfunc_gnu_prefix)
10392 prefix = "__gnu_";
10394 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10395 if (type == NULL)
10396 continue;
10397 inner_type = TREE_TYPE (type);
10399 ftype = build_function_type_list (type, inner_type, inner_type,
10400 inner_type, inner_type, NULL_TREE);
10402 mcode = ((enum built_in_function)
10403 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10404 dcode = ((enum built_in_function)
10405 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10407 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10408 *q = TOLOWER (*p);
10409 *q = '\0';
10411 /* For -ftrapping-math these should throw from a former
10412 -fnon-call-exception stmt. */
10413 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10414 NULL);
10415 local_define_builtin (built_in_names[mcode], ftype, mcode,
10416 built_in_names[mcode],
10417 ECF_CONST | ECF_LEAF);
10419 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10420 NULL);
10421 local_define_builtin (built_in_names[dcode], ftype, dcode,
10422 built_in_names[dcode],
10423 ECF_CONST | ECF_LEAF);
10427 init_internal_fns ();
10430 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10431 better way.
10433 If we requested a pointer to a vector, build up the pointers that
10434 we stripped off while looking for the inner type. Similarly for
10435 return values from functions.
10437 The argument TYPE is the top of the chain, and BOTTOM is the
10438 new type which we will point to. */
10440 tree
10441 reconstruct_complex_type (tree type, tree bottom)
10443 tree inner, outer;
10445 if (TREE_CODE (type) == POINTER_TYPE)
10447 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10448 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10449 TYPE_REF_CAN_ALIAS_ALL (type));
10451 else if (TREE_CODE (type) == REFERENCE_TYPE)
10453 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10454 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10455 TYPE_REF_CAN_ALIAS_ALL (type));
10457 else if (TREE_CODE (type) == ARRAY_TYPE)
10459 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10460 outer = build_array_type (inner, TYPE_DOMAIN (type));
10462 else if (TREE_CODE (type) == FUNCTION_TYPE)
10464 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10465 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10467 else if (TREE_CODE (type) == METHOD_TYPE)
10469 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10470 /* The build_method_type_directly() routine prepends 'this' to argument list,
10471 so we must compensate by getting rid of it. */
10472 outer
10473 = build_method_type_directly
10474 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10475 inner,
10476 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10478 else if (TREE_CODE (type) == OFFSET_TYPE)
10480 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10481 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10483 else
10484 return bottom;
10486 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10487 TYPE_QUALS (type));
10490 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10491 the inner type. */
10492 tree
10493 build_vector_type_for_mode (tree innertype, machine_mode mode)
10495 poly_int64 nunits;
10496 unsigned int bitsize;
10498 switch (GET_MODE_CLASS (mode))
10500 case MODE_VECTOR_BOOL:
10501 case MODE_VECTOR_INT:
10502 case MODE_VECTOR_FLOAT:
10503 case MODE_VECTOR_FRACT:
10504 case MODE_VECTOR_UFRACT:
10505 case MODE_VECTOR_ACCUM:
10506 case MODE_VECTOR_UACCUM:
10507 nunits = GET_MODE_NUNITS (mode);
10508 break;
10510 case MODE_INT:
10511 /* Check that there are no leftover bits. */
10512 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10513 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10514 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10515 break;
10517 default:
10518 gcc_unreachable ();
10521 return make_vector_type (innertype, nunits, mode);
10524 /* Similarly, but takes the inner type and number of units, which must be
10525 a power of two. */
10527 tree
10528 build_vector_type (tree innertype, poly_int64 nunits)
10530 return make_vector_type (innertype, nunits, VOIDmode);
10533 /* Build truth vector with specified length and number of units. */
10535 tree
10536 build_truth_vector_type (poly_uint64 nunits, poly_uint64 vector_size)
10538 machine_mode mask_mode
10539 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
10541 poly_uint64 vsize;
10542 if (mask_mode == BLKmode)
10543 vsize = vector_size * BITS_PER_UNIT;
10544 else
10545 vsize = GET_MODE_BITSIZE (mask_mode);
10547 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
10549 tree bool_type = build_nonstandard_boolean_type (esize);
10551 return make_vector_type (bool_type, nunits, mask_mode);
10554 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10556 tree
10557 build_same_sized_truth_vector_type (tree vectype)
10559 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10560 return vectype;
10562 poly_uint64 size = GET_MODE_SIZE (TYPE_MODE (vectype));
10564 if (known_eq (size, 0U))
10565 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10567 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10570 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10572 tree
10573 build_opaque_vector_type (tree innertype, poly_int64 nunits)
10575 tree t = make_vector_type (innertype, nunits, VOIDmode);
10576 tree cand;
10577 /* We always build the non-opaque variant before the opaque one,
10578 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10579 cand = TYPE_NEXT_VARIANT (t);
10580 if (cand
10581 && TYPE_VECTOR_OPAQUE (cand)
10582 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10583 return cand;
10584 /* Othewise build a variant type and make sure to queue it after
10585 the non-opaque type. */
10586 cand = build_distinct_type_copy (t);
10587 TYPE_VECTOR_OPAQUE (cand) = true;
10588 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10589 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10590 TYPE_NEXT_VARIANT (t) = cand;
10591 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10592 return cand;
10595 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10597 wide_int
10598 vector_cst_int_elt (const_tree t, unsigned int i)
10600 /* First handle elements that are directly encoded. */
10601 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10602 if (i < encoded_nelts)
10603 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
10605 /* Identify the pattern that contains element I and work out the index of
10606 the last encoded element for that pattern. */
10607 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10608 unsigned int pattern = i % npatterns;
10609 unsigned int count = i / npatterns;
10610 unsigned int final_i = encoded_nelts - npatterns + pattern;
10612 /* If there are no steps, the final encoded value is the right one. */
10613 if (!VECTOR_CST_STEPPED_P (t))
10614 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
10616 /* Otherwise work out the value from the last two encoded elements. */
10617 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
10618 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
10619 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
10620 return wi::to_wide (v2) + (count - 2) * diff;
10623 /* Return the value of element I of VECTOR_CST T. */
10625 tree
10626 vector_cst_elt (const_tree t, unsigned int i)
10628 /* First handle elements that are directly encoded. */
10629 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10630 if (i < encoded_nelts)
10631 return VECTOR_CST_ENCODED_ELT (t, i);
10633 /* If there are no steps, the final encoded value is the right one. */
10634 if (!VECTOR_CST_STEPPED_P (t))
10636 /* Identify the pattern that contains element I and work out the index of
10637 the last encoded element for that pattern. */
10638 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10639 unsigned int pattern = i % npatterns;
10640 unsigned int final_i = encoded_nelts - npatterns + pattern;
10641 return VECTOR_CST_ENCODED_ELT (t, final_i);
10644 /* Otherwise work out the value from the last two encoded elements. */
10645 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
10646 vector_cst_int_elt (t, i));
10649 /* Given an initializer INIT, return TRUE if INIT is zero or some
10650 aggregate of zeros. Otherwise return FALSE. */
10651 bool
10652 initializer_zerop (const_tree init)
10654 tree elt;
10656 STRIP_NOPS (init);
10658 switch (TREE_CODE (init))
10660 case INTEGER_CST:
10661 return integer_zerop (init);
10663 case REAL_CST:
10664 /* ??? Note that this is not correct for C4X float formats. There,
10665 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10666 negative exponent. */
10667 return real_zerop (init)
10668 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10670 case FIXED_CST:
10671 return fixed_zerop (init);
10673 case COMPLEX_CST:
10674 return integer_zerop (init)
10675 || (real_zerop (init)
10676 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10677 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10679 case VECTOR_CST:
10680 return (VECTOR_CST_NPATTERNS (init) == 1
10681 && VECTOR_CST_DUPLICATE_P (init)
10682 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)));
10684 case CONSTRUCTOR:
10686 unsigned HOST_WIDE_INT idx;
10688 if (TREE_CLOBBER_P (init))
10689 return false;
10690 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10691 if (!initializer_zerop (elt))
10692 return false;
10693 return true;
10696 case STRING_CST:
10698 int i;
10700 /* We need to loop through all elements to handle cases like
10701 "\0" and "\0foobar". */
10702 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10703 if (TREE_STRING_POINTER (init)[i] != '\0')
10704 return false;
10706 return true;
10709 default:
10710 return false;
10714 /* Check if vector VEC consists of all the equal elements and
10715 that the number of elements corresponds to the type of VEC.
10716 The function returns first element of the vector
10717 or NULL_TREE if the vector is not uniform. */
10718 tree
10719 uniform_vector_p (const_tree vec)
10721 tree first, t;
10722 unsigned HOST_WIDE_INT i, nelts;
10724 if (vec == NULL_TREE)
10725 return NULL_TREE;
10727 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10729 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
10730 return TREE_OPERAND (vec, 0);
10732 else if (TREE_CODE (vec) == VECTOR_CST)
10734 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
10735 return VECTOR_CST_ENCODED_ELT (vec, 0);
10736 return NULL_TREE;
10739 else if (TREE_CODE (vec) == CONSTRUCTOR
10740 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
10742 first = error_mark_node;
10744 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10746 if (i == 0)
10748 first = t;
10749 continue;
10751 if (!operand_equal_p (first, t, 0))
10752 return NULL_TREE;
10754 if (i != nelts)
10755 return NULL_TREE;
10757 return first;
10760 return NULL_TREE;
10763 /* Build an empty statement at location LOC. */
10765 tree
10766 build_empty_stmt (location_t loc)
10768 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10769 SET_EXPR_LOCATION (t, loc);
10770 return t;
10774 /* Build an OpenMP clause with code CODE. LOC is the location of the
10775 clause. */
10777 tree
10778 build_omp_clause (location_t loc, enum omp_clause_code code)
10780 tree t;
10781 int size, length;
10783 length = omp_clause_num_ops[code];
10784 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10786 record_node_allocation_statistics (OMP_CLAUSE, size);
10788 t = (tree) ggc_internal_alloc (size);
10789 memset (t, 0, size);
10790 TREE_SET_CODE (t, OMP_CLAUSE);
10791 OMP_CLAUSE_SET_CODE (t, code);
10792 OMP_CLAUSE_LOCATION (t) = loc;
10794 return t;
10797 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10798 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10799 Except for the CODE and operand count field, other storage for the
10800 object is initialized to zeros. */
10802 tree
10803 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
10805 tree t;
10806 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10808 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10809 gcc_assert (len >= 1);
10811 record_node_allocation_statistics (code, length);
10813 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10815 TREE_SET_CODE (t, code);
10817 /* Can't use TREE_OPERAND to store the length because if checking is
10818 enabled, it will try to check the length before we store it. :-P */
10819 t->exp.operands[0] = build_int_cst (sizetype, len);
10821 return t;
10824 /* Helper function for build_call_* functions; build a CALL_EXPR with
10825 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10826 the argument slots. */
10828 static tree
10829 build_call_1 (tree return_type, tree fn, int nargs)
10831 tree t;
10833 t = build_vl_exp (CALL_EXPR, nargs + 3);
10834 TREE_TYPE (t) = return_type;
10835 CALL_EXPR_FN (t) = fn;
10836 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10838 return t;
10841 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10842 FN and a null static chain slot. NARGS is the number of call arguments
10843 which are specified as "..." arguments. */
10845 tree
10846 build_call_nary (tree return_type, tree fn, int nargs, ...)
10848 tree ret;
10849 va_list args;
10850 va_start (args, nargs);
10851 ret = build_call_valist (return_type, fn, nargs, args);
10852 va_end (args);
10853 return ret;
10856 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10857 FN and a null static chain slot. NARGS is the number of call arguments
10858 which are specified as a va_list ARGS. */
10860 tree
10861 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10863 tree t;
10864 int i;
10866 t = build_call_1 (return_type, fn, nargs);
10867 for (i = 0; i < nargs; i++)
10868 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10869 process_call_operands (t);
10870 return t;
10873 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10874 FN and a null static chain slot. NARGS is the number of call arguments
10875 which are specified as a tree array ARGS. */
10877 tree
10878 build_call_array_loc (location_t loc, tree return_type, tree fn,
10879 int nargs, const tree *args)
10881 tree t;
10882 int i;
10884 t = build_call_1 (return_type, fn, nargs);
10885 for (i = 0; i < nargs; i++)
10886 CALL_EXPR_ARG (t, i) = args[i];
10887 process_call_operands (t);
10888 SET_EXPR_LOCATION (t, loc);
10889 return t;
10892 /* Like build_call_array, but takes a vec. */
10894 tree
10895 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10897 tree ret, t;
10898 unsigned int ix;
10900 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10901 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10902 CALL_EXPR_ARG (ret, ix) = t;
10903 process_call_operands (ret);
10904 return ret;
10907 /* Conveniently construct a function call expression. FNDECL names the
10908 function to be called and N arguments are passed in the array
10909 ARGARRAY. */
10911 tree
10912 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10914 tree fntype = TREE_TYPE (fndecl);
10915 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10917 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
10920 /* Conveniently construct a function call expression. FNDECL names the
10921 function to be called and the arguments are passed in the vector
10922 VEC. */
10924 tree
10925 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10927 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10928 vec_safe_address (vec));
10932 /* Conveniently construct a function call expression. FNDECL names the
10933 function to be called, N is the number of arguments, and the "..."
10934 parameters are the argument expressions. */
10936 tree
10937 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10939 va_list ap;
10940 tree *argarray = XALLOCAVEC (tree, n);
10941 int i;
10943 va_start (ap, n);
10944 for (i = 0; i < n; i++)
10945 argarray[i] = va_arg (ap, tree);
10946 va_end (ap);
10947 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10950 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10951 varargs macros aren't supported by all bootstrap compilers. */
10953 tree
10954 build_call_expr (tree fndecl, int n, ...)
10956 va_list ap;
10957 tree *argarray = XALLOCAVEC (tree, n);
10958 int i;
10960 va_start (ap, n);
10961 for (i = 0; i < n; i++)
10962 argarray[i] = va_arg (ap, tree);
10963 va_end (ap);
10964 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10967 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
10968 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
10969 It will get gimplified later into an ordinary internal function. */
10971 tree
10972 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
10973 tree type, int n, const tree *args)
10975 tree t = build_call_1 (type, NULL_TREE, n);
10976 for (int i = 0; i < n; ++i)
10977 CALL_EXPR_ARG (t, i) = args[i];
10978 SET_EXPR_LOCATION (t, loc);
10979 CALL_EXPR_IFN (t) = ifn;
10980 return t;
10983 /* Build internal call expression. This is just like CALL_EXPR, except
10984 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10985 internal function. */
10987 tree
10988 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
10989 tree type, int n, ...)
10991 va_list ap;
10992 tree *argarray = XALLOCAVEC (tree, n);
10993 int i;
10995 va_start (ap, n);
10996 for (i = 0; i < n; i++)
10997 argarray[i] = va_arg (ap, tree);
10998 va_end (ap);
10999 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11002 /* Return a function call to FN, if the target is guaranteed to support it,
11003 or null otherwise.
11005 N is the number of arguments, passed in the "...", and TYPE is the
11006 type of the return value. */
11008 tree
11009 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11010 int n, ...)
11012 va_list ap;
11013 tree *argarray = XALLOCAVEC (tree, n);
11014 int i;
11016 va_start (ap, n);
11017 for (i = 0; i < n; i++)
11018 argarray[i] = va_arg (ap, tree);
11019 va_end (ap);
11020 if (internal_fn_p (fn))
11022 internal_fn ifn = as_internal_fn (fn);
11023 if (direct_internal_fn_p (ifn))
11025 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11026 if (!direct_internal_fn_supported_p (ifn, types,
11027 OPTIMIZE_FOR_BOTH))
11028 return NULL_TREE;
11030 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11032 else
11034 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11035 if (!fndecl)
11036 return NULL_TREE;
11037 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11041 /* Return a function call to the appropriate builtin alloca variant.
11043 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11044 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11045 bound for SIZE in case it is not a fixed value. */
11047 tree
11048 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11050 if (max_size >= 0)
11052 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11053 return
11054 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11056 else if (align > 0)
11058 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11059 return build_call_expr (t, 2, size, size_int (align));
11061 else
11063 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11064 return build_call_expr (t, 1, size);
11068 /* Create a new constant string literal and return a char* pointer to it.
11069 The STRING_CST value is the LEN characters at STR. */
11070 tree
11071 build_string_literal (int len, const char *str)
11073 tree t, elem, index, type;
11075 t = build_string (len, str);
11076 elem = build_type_variant (char_type_node, 1, 0);
11077 index = build_index_type (size_int (len - 1));
11078 type = build_array_type (elem, index);
11079 TREE_TYPE (t) = type;
11080 TREE_CONSTANT (t) = 1;
11081 TREE_READONLY (t) = 1;
11082 TREE_STATIC (t) = 1;
11084 type = build_pointer_type (elem);
11085 t = build1 (ADDR_EXPR, type,
11086 build4 (ARRAY_REF, elem,
11087 t, integer_zero_node, NULL_TREE, NULL_TREE));
11088 return t;
11093 /* Return true if T (assumed to be a DECL) must be assigned a memory
11094 location. */
11096 bool
11097 needs_to_live_in_memory (const_tree t)
11099 return (TREE_ADDRESSABLE (t)
11100 || is_global_var (t)
11101 || (TREE_CODE (t) == RESULT_DECL
11102 && !DECL_BY_REFERENCE (t)
11103 && aggregate_value_p (t, current_function_decl)));
11106 /* Return value of a constant X and sign-extend it. */
11108 HOST_WIDE_INT
11109 int_cst_value (const_tree x)
11111 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11112 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11114 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11115 gcc_assert (cst_and_fits_in_hwi (x));
11117 if (bits < HOST_BITS_PER_WIDE_INT)
11119 bool negative = ((val >> (bits - 1)) & 1) != 0;
11120 if (negative)
11121 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11122 else
11123 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11126 return val;
11129 /* If TYPE is an integral or pointer type, return an integer type with
11130 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11131 if TYPE is already an integer type of signedness UNSIGNEDP. */
11133 tree
11134 signed_or_unsigned_type_for (int unsignedp, tree type)
11136 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
11137 return type;
11139 if (TREE_CODE (type) == VECTOR_TYPE)
11141 tree inner = TREE_TYPE (type);
11142 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11143 if (!inner2)
11144 return NULL_TREE;
11145 if (inner == inner2)
11146 return type;
11147 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11150 if (!INTEGRAL_TYPE_P (type)
11151 && !POINTER_TYPE_P (type)
11152 && TREE_CODE (type) != OFFSET_TYPE)
11153 return NULL_TREE;
11155 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
11158 /* If TYPE is an integral or pointer type, return an integer type with
11159 the same precision which is unsigned, or itself if TYPE is already an
11160 unsigned integer type. */
11162 tree
11163 unsigned_type_for (tree type)
11165 return signed_or_unsigned_type_for (1, type);
11168 /* If TYPE is an integral or pointer type, return an integer type with
11169 the same precision which is signed, or itself if TYPE is already a
11170 signed integer type. */
11172 tree
11173 signed_type_for (tree type)
11175 return signed_or_unsigned_type_for (0, type);
11178 /* If TYPE is a vector type, return a signed integer vector type with the
11179 same width and number of subparts. Otherwise return boolean_type_node. */
11181 tree
11182 truth_type_for (tree type)
11184 if (TREE_CODE (type) == VECTOR_TYPE)
11186 if (VECTOR_BOOLEAN_TYPE_P (type))
11187 return type;
11188 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
11189 GET_MODE_SIZE (TYPE_MODE (type)));
11191 else
11192 return boolean_type_node;
11195 /* Returns the largest value obtainable by casting something in INNER type to
11196 OUTER type. */
11198 tree
11199 upper_bound_in_type (tree outer, tree inner)
11201 unsigned int det = 0;
11202 unsigned oprec = TYPE_PRECISION (outer);
11203 unsigned iprec = TYPE_PRECISION (inner);
11204 unsigned prec;
11206 /* Compute a unique number for every combination. */
11207 det |= (oprec > iprec) ? 4 : 0;
11208 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11209 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11211 /* Determine the exponent to use. */
11212 switch (det)
11214 case 0:
11215 case 1:
11216 /* oprec <= iprec, outer: signed, inner: don't care. */
11217 prec = oprec - 1;
11218 break;
11219 case 2:
11220 case 3:
11221 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11222 prec = oprec;
11223 break;
11224 case 4:
11225 /* oprec > iprec, outer: signed, inner: signed. */
11226 prec = iprec - 1;
11227 break;
11228 case 5:
11229 /* oprec > iprec, outer: signed, inner: unsigned. */
11230 prec = iprec;
11231 break;
11232 case 6:
11233 /* oprec > iprec, outer: unsigned, inner: signed. */
11234 prec = oprec;
11235 break;
11236 case 7:
11237 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11238 prec = iprec;
11239 break;
11240 default:
11241 gcc_unreachable ();
11244 return wide_int_to_tree (outer,
11245 wi::mask (prec, false, TYPE_PRECISION (outer)));
11248 /* Returns the smallest value obtainable by casting something in INNER type to
11249 OUTER type. */
11251 tree
11252 lower_bound_in_type (tree outer, tree inner)
11254 unsigned oprec = TYPE_PRECISION (outer);
11255 unsigned iprec = TYPE_PRECISION (inner);
11257 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11258 and obtain 0. */
11259 if (TYPE_UNSIGNED (outer)
11260 /* If we are widening something of an unsigned type, OUTER type
11261 contains all values of INNER type. In particular, both INNER
11262 and OUTER types have zero in common. */
11263 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11264 return build_int_cst (outer, 0);
11265 else
11267 /* If we are widening a signed type to another signed type, we
11268 want to obtain -2^^(iprec-1). If we are keeping the
11269 precision or narrowing to a signed type, we want to obtain
11270 -2^(oprec-1). */
11271 unsigned prec = oprec > iprec ? iprec : oprec;
11272 return wide_int_to_tree (outer,
11273 wi::mask (prec - 1, true,
11274 TYPE_PRECISION (outer)));
11278 /* Return nonzero if two operands that are suitable for PHI nodes are
11279 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11280 SSA_NAME or invariant. Note that this is strictly an optimization.
11281 That is, callers of this function can directly call operand_equal_p
11282 and get the same result, only slower. */
11285 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11287 if (arg0 == arg1)
11288 return 1;
11289 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11290 return 0;
11291 return operand_equal_p (arg0, arg1, 0);
11294 /* Returns number of zeros at the end of binary representation of X. */
11296 tree
11297 num_ending_zeros (const_tree x)
11299 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11303 #define WALK_SUBTREE(NODE) \
11304 do \
11306 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11307 if (result) \
11308 return result; \
11310 while (0)
11312 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11313 be walked whenever a type is seen in the tree. Rest of operands and return
11314 value are as for walk_tree. */
11316 static tree
11317 walk_type_fields (tree type, walk_tree_fn func, void *data,
11318 hash_set<tree> *pset, walk_tree_lh lh)
11320 tree result = NULL_TREE;
11322 switch (TREE_CODE (type))
11324 case POINTER_TYPE:
11325 case REFERENCE_TYPE:
11326 case VECTOR_TYPE:
11327 /* We have to worry about mutually recursive pointers. These can't
11328 be written in C. They can in Ada. It's pathological, but
11329 there's an ACATS test (c38102a) that checks it. Deal with this
11330 by checking if we're pointing to another pointer, that one
11331 points to another pointer, that one does too, and we have no htab.
11332 If so, get a hash table. We check three levels deep to avoid
11333 the cost of the hash table if we don't need one. */
11334 if (POINTER_TYPE_P (TREE_TYPE (type))
11335 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11336 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11337 && !pset)
11339 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11340 func, data);
11341 if (result)
11342 return result;
11344 break;
11347 /* fall through */
11349 case COMPLEX_TYPE:
11350 WALK_SUBTREE (TREE_TYPE (type));
11351 break;
11353 case METHOD_TYPE:
11354 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11356 /* Fall through. */
11358 case FUNCTION_TYPE:
11359 WALK_SUBTREE (TREE_TYPE (type));
11361 tree arg;
11363 /* We never want to walk into default arguments. */
11364 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11365 WALK_SUBTREE (TREE_VALUE (arg));
11367 break;
11369 case ARRAY_TYPE:
11370 /* Don't follow this nodes's type if a pointer for fear that
11371 we'll have infinite recursion. If we have a PSET, then we
11372 need not fear. */
11373 if (pset
11374 || (!POINTER_TYPE_P (TREE_TYPE (type))
11375 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11376 WALK_SUBTREE (TREE_TYPE (type));
11377 WALK_SUBTREE (TYPE_DOMAIN (type));
11378 break;
11380 case OFFSET_TYPE:
11381 WALK_SUBTREE (TREE_TYPE (type));
11382 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11383 break;
11385 default:
11386 break;
11389 return NULL_TREE;
11392 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11393 called with the DATA and the address of each sub-tree. If FUNC returns a
11394 non-NULL value, the traversal is stopped, and the value returned by FUNC
11395 is returned. If PSET is non-NULL it is used to record the nodes visited,
11396 and to avoid visiting a node more than once. */
11398 tree
11399 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11400 hash_set<tree> *pset, walk_tree_lh lh)
11402 enum tree_code code;
11403 int walk_subtrees;
11404 tree result;
11406 #define WALK_SUBTREE_TAIL(NODE) \
11407 do \
11409 tp = & (NODE); \
11410 goto tail_recurse; \
11412 while (0)
11414 tail_recurse:
11415 /* Skip empty subtrees. */
11416 if (!*tp)
11417 return NULL_TREE;
11419 /* Don't walk the same tree twice, if the user has requested
11420 that we avoid doing so. */
11421 if (pset && pset->add (*tp))
11422 return NULL_TREE;
11424 /* Call the function. */
11425 walk_subtrees = 1;
11426 result = (*func) (tp, &walk_subtrees, data);
11428 /* If we found something, return it. */
11429 if (result)
11430 return result;
11432 code = TREE_CODE (*tp);
11434 /* Even if we didn't, FUNC may have decided that there was nothing
11435 interesting below this point in the tree. */
11436 if (!walk_subtrees)
11438 /* But we still need to check our siblings. */
11439 if (code == TREE_LIST)
11440 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11441 else if (code == OMP_CLAUSE)
11442 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11443 else
11444 return NULL_TREE;
11447 if (lh)
11449 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11450 if (result || !walk_subtrees)
11451 return result;
11454 switch (code)
11456 case ERROR_MARK:
11457 case IDENTIFIER_NODE:
11458 case INTEGER_CST:
11459 case REAL_CST:
11460 case FIXED_CST:
11461 case VECTOR_CST:
11462 case STRING_CST:
11463 case BLOCK:
11464 case PLACEHOLDER_EXPR:
11465 case SSA_NAME:
11466 case FIELD_DECL:
11467 case RESULT_DECL:
11468 /* None of these have subtrees other than those already walked
11469 above. */
11470 break;
11472 case TREE_LIST:
11473 WALK_SUBTREE (TREE_VALUE (*tp));
11474 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11475 break;
11477 case TREE_VEC:
11479 int len = TREE_VEC_LENGTH (*tp);
11481 if (len == 0)
11482 break;
11484 /* Walk all elements but the first. */
11485 while (--len)
11486 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11488 /* Now walk the first one as a tail call. */
11489 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11492 case COMPLEX_CST:
11493 WALK_SUBTREE (TREE_REALPART (*tp));
11494 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11496 case CONSTRUCTOR:
11498 unsigned HOST_WIDE_INT idx;
11499 constructor_elt *ce;
11501 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11502 idx++)
11503 WALK_SUBTREE (ce->value);
11505 break;
11507 case SAVE_EXPR:
11508 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11510 case BIND_EXPR:
11512 tree decl;
11513 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11515 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11516 into declarations that are just mentioned, rather than
11517 declared; they don't really belong to this part of the tree.
11518 And, we can see cycles: the initializer for a declaration
11519 can refer to the declaration itself. */
11520 WALK_SUBTREE (DECL_INITIAL (decl));
11521 WALK_SUBTREE (DECL_SIZE (decl));
11522 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11524 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11527 case STATEMENT_LIST:
11529 tree_stmt_iterator i;
11530 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11531 WALK_SUBTREE (*tsi_stmt_ptr (i));
11533 break;
11535 case OMP_CLAUSE:
11536 switch (OMP_CLAUSE_CODE (*tp))
11538 case OMP_CLAUSE_GANG:
11539 case OMP_CLAUSE__GRIDDIM_:
11540 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11541 /* FALLTHRU */
11543 case OMP_CLAUSE_ASYNC:
11544 case OMP_CLAUSE_WAIT:
11545 case OMP_CLAUSE_WORKER:
11546 case OMP_CLAUSE_VECTOR:
11547 case OMP_CLAUSE_NUM_GANGS:
11548 case OMP_CLAUSE_NUM_WORKERS:
11549 case OMP_CLAUSE_VECTOR_LENGTH:
11550 case OMP_CLAUSE_PRIVATE:
11551 case OMP_CLAUSE_SHARED:
11552 case OMP_CLAUSE_FIRSTPRIVATE:
11553 case OMP_CLAUSE_COPYIN:
11554 case OMP_CLAUSE_COPYPRIVATE:
11555 case OMP_CLAUSE_FINAL:
11556 case OMP_CLAUSE_IF:
11557 case OMP_CLAUSE_NUM_THREADS:
11558 case OMP_CLAUSE_SCHEDULE:
11559 case OMP_CLAUSE_UNIFORM:
11560 case OMP_CLAUSE_DEPEND:
11561 case OMP_CLAUSE_NUM_TEAMS:
11562 case OMP_CLAUSE_THREAD_LIMIT:
11563 case OMP_CLAUSE_DEVICE:
11564 case OMP_CLAUSE_DIST_SCHEDULE:
11565 case OMP_CLAUSE_SAFELEN:
11566 case OMP_CLAUSE_SIMDLEN:
11567 case OMP_CLAUSE_ORDERED:
11568 case OMP_CLAUSE_PRIORITY:
11569 case OMP_CLAUSE_GRAINSIZE:
11570 case OMP_CLAUSE_NUM_TASKS:
11571 case OMP_CLAUSE_HINT:
11572 case OMP_CLAUSE_TO_DECLARE:
11573 case OMP_CLAUSE_LINK:
11574 case OMP_CLAUSE_USE_DEVICE_PTR:
11575 case OMP_CLAUSE_IS_DEVICE_PTR:
11576 case OMP_CLAUSE__LOOPTEMP_:
11577 case OMP_CLAUSE__SIMDUID_:
11578 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11579 /* FALLTHRU */
11581 case OMP_CLAUSE_INDEPENDENT:
11582 case OMP_CLAUSE_NOWAIT:
11583 case OMP_CLAUSE_DEFAULT:
11584 case OMP_CLAUSE_UNTIED:
11585 case OMP_CLAUSE_MERGEABLE:
11586 case OMP_CLAUSE_PROC_BIND:
11587 case OMP_CLAUSE_INBRANCH:
11588 case OMP_CLAUSE_NOTINBRANCH:
11589 case OMP_CLAUSE_FOR:
11590 case OMP_CLAUSE_PARALLEL:
11591 case OMP_CLAUSE_SECTIONS:
11592 case OMP_CLAUSE_TASKGROUP:
11593 case OMP_CLAUSE_NOGROUP:
11594 case OMP_CLAUSE_THREADS:
11595 case OMP_CLAUSE_SIMD:
11596 case OMP_CLAUSE_DEFAULTMAP:
11597 case OMP_CLAUSE_AUTO:
11598 case OMP_CLAUSE_SEQ:
11599 case OMP_CLAUSE_TILE:
11600 case OMP_CLAUSE__SIMT_:
11601 case OMP_CLAUSE_IF_PRESENT:
11602 case OMP_CLAUSE_FINALIZE:
11603 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11605 case OMP_CLAUSE_LASTPRIVATE:
11606 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11607 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11608 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11610 case OMP_CLAUSE_COLLAPSE:
11612 int i;
11613 for (i = 0; i < 3; i++)
11614 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11615 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11618 case OMP_CLAUSE_LINEAR:
11619 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11620 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11621 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11622 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11624 case OMP_CLAUSE_ALIGNED:
11625 case OMP_CLAUSE_FROM:
11626 case OMP_CLAUSE_TO:
11627 case OMP_CLAUSE_MAP:
11628 case OMP_CLAUSE__CACHE_:
11629 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11630 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11631 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11633 case OMP_CLAUSE_REDUCTION:
11635 int i;
11636 for (i = 0; i < 5; i++)
11637 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11638 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11641 default:
11642 gcc_unreachable ();
11644 break;
11646 case TARGET_EXPR:
11648 int i, len;
11650 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11651 But, we only want to walk once. */
11652 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11653 for (i = 0; i < len; ++i)
11654 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11655 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11658 case DECL_EXPR:
11659 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11660 defining. We only want to walk into these fields of a type in this
11661 case and not in the general case of a mere reference to the type.
11663 The criterion is as follows: if the field can be an expression, it
11664 must be walked only here. This should be in keeping with the fields
11665 that are directly gimplified in gimplify_type_sizes in order for the
11666 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11667 variable-sized types.
11669 Note that DECLs get walked as part of processing the BIND_EXPR. */
11670 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11672 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11673 if (TREE_CODE (*type_p) == ERROR_MARK)
11674 return NULL_TREE;
11676 /* Call the function for the type. See if it returns anything or
11677 doesn't want us to continue. If we are to continue, walk both
11678 the normal fields and those for the declaration case. */
11679 result = (*func) (type_p, &walk_subtrees, data);
11680 if (result || !walk_subtrees)
11681 return result;
11683 /* But do not walk a pointed-to type since it may itself need to
11684 be walked in the declaration case if it isn't anonymous. */
11685 if (!POINTER_TYPE_P (*type_p))
11687 result = walk_type_fields (*type_p, func, data, pset, lh);
11688 if (result)
11689 return result;
11692 /* If this is a record type, also walk the fields. */
11693 if (RECORD_OR_UNION_TYPE_P (*type_p))
11695 tree field;
11697 for (field = TYPE_FIELDS (*type_p); field;
11698 field = DECL_CHAIN (field))
11700 /* We'd like to look at the type of the field, but we can
11701 easily get infinite recursion. So assume it's pointed
11702 to elsewhere in the tree. Also, ignore things that
11703 aren't fields. */
11704 if (TREE_CODE (field) != FIELD_DECL)
11705 continue;
11707 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11708 WALK_SUBTREE (DECL_SIZE (field));
11709 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11710 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11711 WALK_SUBTREE (DECL_QUALIFIER (field));
11715 /* Same for scalar types. */
11716 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11717 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11718 || TREE_CODE (*type_p) == INTEGER_TYPE
11719 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11720 || TREE_CODE (*type_p) == REAL_TYPE)
11722 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11723 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11726 WALK_SUBTREE (TYPE_SIZE (*type_p));
11727 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11729 /* FALLTHRU */
11731 default:
11732 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11734 int i, len;
11736 /* Walk over all the sub-trees of this operand. */
11737 len = TREE_OPERAND_LENGTH (*tp);
11739 /* Go through the subtrees. We need to do this in forward order so
11740 that the scope of a FOR_EXPR is handled properly. */
11741 if (len)
11743 for (i = 0; i < len - 1; ++i)
11744 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11745 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11748 /* If this is a type, walk the needed fields in the type. */
11749 else if (TYPE_P (*tp))
11750 return walk_type_fields (*tp, func, data, pset, lh);
11751 break;
11754 /* We didn't find what we were looking for. */
11755 return NULL_TREE;
11757 #undef WALK_SUBTREE_TAIL
11759 #undef WALK_SUBTREE
11761 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11763 tree
11764 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11765 walk_tree_lh lh)
11767 tree result;
11769 hash_set<tree> pset;
11770 result = walk_tree_1 (tp, func, data, &pset, lh);
11771 return result;
11775 tree
11776 tree_block (tree t)
11778 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11780 if (IS_EXPR_CODE_CLASS (c))
11781 return LOCATION_BLOCK (t->exp.locus);
11782 gcc_unreachable ();
11783 return NULL;
11786 void
11787 tree_set_block (tree t, tree b)
11789 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11791 if (IS_EXPR_CODE_CLASS (c))
11793 t->exp.locus = set_block (t->exp.locus, b);
11795 else
11796 gcc_unreachable ();
11799 /* Create a nameless artificial label and put it in the current
11800 function context. The label has a location of LOC. Returns the
11801 newly created label. */
11803 tree
11804 create_artificial_label (location_t loc)
11806 tree lab = build_decl (loc,
11807 LABEL_DECL, NULL_TREE, void_type_node);
11809 DECL_ARTIFICIAL (lab) = 1;
11810 DECL_IGNORED_P (lab) = 1;
11811 DECL_CONTEXT (lab) = current_function_decl;
11812 return lab;
11815 /* Given a tree, try to return a useful variable name that we can use
11816 to prefix a temporary that is being assigned the value of the tree.
11817 I.E. given <temp> = &A, return A. */
11819 const char *
11820 get_name (tree t)
11822 tree stripped_decl;
11824 stripped_decl = t;
11825 STRIP_NOPS (stripped_decl);
11826 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11827 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11828 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11830 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11831 if (!name)
11832 return NULL;
11833 return IDENTIFIER_POINTER (name);
11835 else
11837 switch (TREE_CODE (stripped_decl))
11839 case ADDR_EXPR:
11840 return get_name (TREE_OPERAND (stripped_decl, 0));
11841 default:
11842 return NULL;
11847 /* Return true if TYPE has a variable argument list. */
11849 bool
11850 stdarg_p (const_tree fntype)
11852 function_args_iterator args_iter;
11853 tree n = NULL_TREE, t;
11855 if (!fntype)
11856 return false;
11858 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11860 n = t;
11863 return n != NULL_TREE && n != void_type_node;
11866 /* Return true if TYPE has a prototype. */
11868 bool
11869 prototype_p (const_tree fntype)
11871 tree t;
11873 gcc_assert (fntype != NULL_TREE);
11875 t = TYPE_ARG_TYPES (fntype);
11876 return (t != NULL_TREE);
11879 /* If BLOCK is inlined from an __attribute__((__artificial__))
11880 routine, return pointer to location from where it has been
11881 called. */
11882 location_t *
11883 block_nonartificial_location (tree block)
11885 location_t *ret = NULL;
11887 while (block && TREE_CODE (block) == BLOCK
11888 && BLOCK_ABSTRACT_ORIGIN (block))
11890 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11892 while (TREE_CODE (ao) == BLOCK
11893 && BLOCK_ABSTRACT_ORIGIN (ao)
11894 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11895 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11897 if (TREE_CODE (ao) == FUNCTION_DECL)
11899 /* If AO is an artificial inline, point RET to the
11900 call site locus at which it has been inlined and continue
11901 the loop, in case AO's caller is also an artificial
11902 inline. */
11903 if (DECL_DECLARED_INLINE_P (ao)
11904 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11905 ret = &BLOCK_SOURCE_LOCATION (block);
11906 else
11907 break;
11909 else if (TREE_CODE (ao) != BLOCK)
11910 break;
11912 block = BLOCK_SUPERCONTEXT (block);
11914 return ret;
11918 /* If EXP is inlined from an __attribute__((__artificial__))
11919 function, return the location of the original call expression. */
11921 location_t
11922 tree_nonartificial_location (tree exp)
11924 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11926 if (loc)
11927 return *loc;
11928 else
11929 return EXPR_LOCATION (exp);
11933 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11934 nodes. */
11936 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11938 hashval_t
11939 cl_option_hasher::hash (tree x)
11941 const_tree const t = x;
11942 const char *p;
11943 size_t i;
11944 size_t len = 0;
11945 hashval_t hash = 0;
11947 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11949 p = (const char *)TREE_OPTIMIZATION (t);
11950 len = sizeof (struct cl_optimization);
11953 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11954 return cl_target_option_hash (TREE_TARGET_OPTION (t));
11956 else
11957 gcc_unreachable ();
11959 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11960 something else. */
11961 for (i = 0; i < len; i++)
11962 if (p[i])
11963 hash = (hash << 4) ^ ((i << 2) | p[i]);
11965 return hash;
11968 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11969 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11970 same. */
11972 bool
11973 cl_option_hasher::equal (tree x, tree y)
11975 const_tree const xt = x;
11976 const_tree const yt = y;
11977 const char *xp;
11978 const char *yp;
11979 size_t len;
11981 if (TREE_CODE (xt) != TREE_CODE (yt))
11982 return 0;
11984 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11986 xp = (const char *)TREE_OPTIMIZATION (xt);
11987 yp = (const char *)TREE_OPTIMIZATION (yt);
11988 len = sizeof (struct cl_optimization);
11991 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11993 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
11994 TREE_TARGET_OPTION (yt));
11997 else
11998 gcc_unreachable ();
12000 return (memcmp (xp, yp, len) == 0);
12003 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
12005 tree
12006 build_optimization_node (struct gcc_options *opts)
12008 tree t;
12010 /* Use the cache of optimization nodes. */
12012 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12013 opts);
12015 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12016 t = *slot;
12017 if (!t)
12019 /* Insert this one into the hash table. */
12020 t = cl_optimization_node;
12021 *slot = t;
12023 /* Make a new node for next time round. */
12024 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12027 return t;
12030 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
12032 tree
12033 build_target_option_node (struct gcc_options *opts)
12035 tree t;
12037 /* Use the cache of optimization nodes. */
12039 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12040 opts);
12042 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12043 t = *slot;
12044 if (!t)
12046 /* Insert this one into the hash table. */
12047 t = cl_target_option_node;
12048 *slot = t;
12050 /* Make a new node for next time round. */
12051 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12054 return t;
12057 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12058 so that they aren't saved during PCH writing. */
12060 void
12061 prepare_target_option_nodes_for_pch (void)
12063 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12064 for (; iter != cl_option_hash_table->end (); ++iter)
12065 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12066 TREE_TARGET_GLOBALS (*iter) = NULL;
12069 /* Determine the "ultimate origin" of a block. The block may be an inlined
12070 instance of an inlined instance of a block which is local to an inline
12071 function, so we have to trace all of the way back through the origin chain
12072 to find out what sort of node actually served as the original seed for the
12073 given block. */
12075 tree
12076 block_ultimate_origin (const_tree block)
12078 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
12080 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
12081 we're trying to output the abstract instance of this function. */
12082 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
12083 return NULL_TREE;
12085 if (immediate_origin == NULL_TREE)
12086 return NULL_TREE;
12087 else
12089 tree ret_val;
12090 tree lookahead = immediate_origin;
12094 ret_val = lookahead;
12095 lookahead = (TREE_CODE (ret_val) == BLOCK
12096 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
12098 while (lookahead != NULL && lookahead != ret_val);
12100 /* The block's abstract origin chain may not be the *ultimate* origin of
12101 the block. It could lead to a DECL that has an abstract origin set.
12102 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
12103 will give us if it has one). Note that DECL's abstract origins are
12104 supposed to be the most distant ancestor (or so decl_ultimate_origin
12105 claims), so we don't need to loop following the DECL origins. */
12106 if (DECL_P (ret_val))
12107 return DECL_ORIGIN (ret_val);
12109 return ret_val;
12113 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12114 no instruction. */
12116 bool
12117 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12119 /* Do not strip casts into or out of differing address spaces. */
12120 if (POINTER_TYPE_P (outer_type)
12121 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12123 if (!POINTER_TYPE_P (inner_type)
12124 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12125 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12126 return false;
12128 else if (POINTER_TYPE_P (inner_type)
12129 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12131 /* We already know that outer_type is not a pointer with
12132 a non-generic address space. */
12133 return false;
12136 /* Use precision rather then machine mode when we can, which gives
12137 the correct answer even for submode (bit-field) types. */
12138 if ((INTEGRAL_TYPE_P (outer_type)
12139 || POINTER_TYPE_P (outer_type)
12140 || TREE_CODE (outer_type) == OFFSET_TYPE)
12141 && (INTEGRAL_TYPE_P (inner_type)
12142 || POINTER_TYPE_P (inner_type)
12143 || TREE_CODE (inner_type) == OFFSET_TYPE))
12144 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12146 /* Otherwise fall back on comparing machine modes (e.g. for
12147 aggregate types, floats). */
12148 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12151 /* Return true iff conversion in EXP generates no instruction. Mark
12152 it inline so that we fully inline into the stripping functions even
12153 though we have two uses of this function. */
12155 static inline bool
12156 tree_nop_conversion (const_tree exp)
12158 tree outer_type, inner_type;
12160 if (location_wrapper_p (exp))
12161 return true;
12162 if (!CONVERT_EXPR_P (exp)
12163 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12164 return false;
12165 if (TREE_OPERAND (exp, 0) == error_mark_node)
12166 return false;
12168 outer_type = TREE_TYPE (exp);
12169 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12171 if (!inner_type)
12172 return false;
12174 return tree_nop_conversion_p (outer_type, inner_type);
12177 /* Return true iff conversion in EXP generates no instruction. Don't
12178 consider conversions changing the signedness. */
12180 static bool
12181 tree_sign_nop_conversion (const_tree exp)
12183 tree outer_type, inner_type;
12185 if (!tree_nop_conversion (exp))
12186 return false;
12188 outer_type = TREE_TYPE (exp);
12189 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12191 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12192 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12195 /* Strip conversions from EXP according to tree_nop_conversion and
12196 return the resulting expression. */
12198 tree
12199 tree_strip_nop_conversions (tree exp)
12201 while (tree_nop_conversion (exp))
12202 exp = TREE_OPERAND (exp, 0);
12203 return exp;
12206 /* Strip conversions from EXP according to tree_sign_nop_conversion
12207 and return the resulting expression. */
12209 tree
12210 tree_strip_sign_nop_conversions (tree exp)
12212 while (tree_sign_nop_conversion (exp))
12213 exp = TREE_OPERAND (exp, 0);
12214 return exp;
12217 /* Avoid any floating point extensions from EXP. */
12218 tree
12219 strip_float_extensions (tree exp)
12221 tree sub, expt, subt;
12223 /* For floating point constant look up the narrowest type that can hold
12224 it properly and handle it like (type)(narrowest_type)constant.
12225 This way we can optimize for instance a=a*2.0 where "a" is float
12226 but 2.0 is double constant. */
12227 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12229 REAL_VALUE_TYPE orig;
12230 tree type = NULL;
12232 orig = TREE_REAL_CST (exp);
12233 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12234 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12235 type = float_type_node;
12236 else if (TYPE_PRECISION (TREE_TYPE (exp))
12237 > TYPE_PRECISION (double_type_node)
12238 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12239 type = double_type_node;
12240 if (type)
12241 return build_real_truncate (type, orig);
12244 if (!CONVERT_EXPR_P (exp))
12245 return exp;
12247 sub = TREE_OPERAND (exp, 0);
12248 subt = TREE_TYPE (sub);
12249 expt = TREE_TYPE (exp);
12251 if (!FLOAT_TYPE_P (subt))
12252 return exp;
12254 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12255 return exp;
12257 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12258 return exp;
12260 return strip_float_extensions (sub);
12263 /* Strip out all handled components that produce invariant
12264 offsets. */
12266 const_tree
12267 strip_invariant_refs (const_tree op)
12269 while (handled_component_p (op))
12271 switch (TREE_CODE (op))
12273 case ARRAY_REF:
12274 case ARRAY_RANGE_REF:
12275 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12276 || TREE_OPERAND (op, 2) != NULL_TREE
12277 || TREE_OPERAND (op, 3) != NULL_TREE)
12278 return NULL;
12279 break;
12281 case COMPONENT_REF:
12282 if (TREE_OPERAND (op, 2) != NULL_TREE)
12283 return NULL;
12284 break;
12286 default:;
12288 op = TREE_OPERAND (op, 0);
12291 return op;
12294 static GTY(()) tree gcc_eh_personality_decl;
12296 /* Return the GCC personality function decl. */
12298 tree
12299 lhd_gcc_personality (void)
12301 if (!gcc_eh_personality_decl)
12302 gcc_eh_personality_decl = build_personality_function ("gcc");
12303 return gcc_eh_personality_decl;
12306 /* TARGET is a call target of GIMPLE call statement
12307 (obtained by gimple_call_fn). Return true if it is
12308 OBJ_TYPE_REF representing an virtual call of C++ method.
12309 (As opposed to OBJ_TYPE_REF representing objc calls
12310 through a cast where middle-end devirtualization machinery
12311 can't apply.) */
12313 bool
12314 virtual_method_call_p (const_tree target)
12316 if (TREE_CODE (target) != OBJ_TYPE_REF)
12317 return false;
12318 tree t = TREE_TYPE (target);
12319 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12320 t = TREE_TYPE (t);
12321 if (TREE_CODE (t) == FUNCTION_TYPE)
12322 return false;
12323 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12324 /* If we do not have BINFO associated, it means that type was built
12325 without devirtualization enabled. Do not consider this a virtual
12326 call. */
12327 if (!TYPE_BINFO (obj_type_ref_class (target)))
12328 return false;
12329 return true;
12332 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12334 tree
12335 obj_type_ref_class (const_tree ref)
12337 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12338 ref = TREE_TYPE (ref);
12339 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12340 ref = TREE_TYPE (ref);
12341 /* We look for type THIS points to. ObjC also builds
12342 OBJ_TYPE_REF with non-method calls, Their first parameter
12343 ID however also corresponds to class type. */
12344 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12345 || TREE_CODE (ref) == FUNCTION_TYPE);
12346 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12347 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12348 return TREE_TYPE (ref);
12351 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12353 static tree
12354 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12356 unsigned int i;
12357 tree base_binfo, b;
12359 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12360 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12361 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12362 return base_binfo;
12363 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12364 return b;
12365 return NULL;
12368 /* Try to find a base info of BINFO that would have its field decl at offset
12369 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12370 found, return, otherwise return NULL_TREE. */
12372 tree
12373 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
12375 tree type = BINFO_TYPE (binfo);
12377 while (true)
12379 HOST_WIDE_INT pos, size;
12380 tree fld;
12381 int i;
12383 if (types_same_for_odr (type, expected_type))
12384 return binfo;
12385 if (maybe_lt (offset, 0))
12386 return NULL_TREE;
12388 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12390 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12391 continue;
12393 pos = int_bit_position (fld);
12394 size = tree_to_uhwi (DECL_SIZE (fld));
12395 if (known_in_range_p (offset, pos, size))
12396 break;
12398 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12399 return NULL_TREE;
12401 /* Offset 0 indicates the primary base, whose vtable contents are
12402 represented in the binfo for the derived class. */
12403 else if (maybe_ne (offset, 0))
12405 tree found_binfo = NULL, base_binfo;
12406 /* Offsets in BINFO are in bytes relative to the whole structure
12407 while POS is in bits relative to the containing field. */
12408 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12409 / BITS_PER_UNIT);
12411 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12412 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12413 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12415 found_binfo = base_binfo;
12416 break;
12418 if (found_binfo)
12419 binfo = found_binfo;
12420 else
12421 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12422 binfo_offset);
12425 type = TREE_TYPE (fld);
12426 offset -= pos;
12430 /* Returns true if X is a typedef decl. */
12432 bool
12433 is_typedef_decl (const_tree x)
12435 return (x && TREE_CODE (x) == TYPE_DECL
12436 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12439 /* Returns true iff TYPE is a type variant created for a typedef. */
12441 bool
12442 typedef_variant_p (const_tree type)
12444 return is_typedef_decl (TYPE_NAME (type));
12447 /* A class to handle converting a string that might contain
12448 control characters, (eg newline, form-feed, etc), into one
12449 in which contains escape sequences instead. */
12451 class escaped_string
12453 public:
12454 escaped_string () { m_owned = false; m_str = NULL; };
12455 ~escaped_string () { if (m_owned) free (m_str); }
12456 operator const char *() const { return (const char *) m_str; }
12457 void escape (const char *);
12458 private:
12459 char *m_str;
12460 bool m_owned;
12463 /* PR 84195: Replace control characters in "unescaped" with their
12464 escaped equivalents. Allow newlines if -fmessage-length has
12465 been set to a non-zero value. This is done here, rather than
12466 where the attribute is recorded as the message length can
12467 change between these two locations. */
12469 void
12470 escaped_string::escape (const char *unescaped)
12472 char *escaped;
12473 size_t i, new_i, len;
12475 if (m_owned)
12476 free (m_str);
12478 m_str = const_cast<char *> (unescaped);
12479 m_owned = false;
12481 if (unescaped == NULL || *unescaped == 0)
12482 return;
12484 len = strlen (unescaped);
12485 escaped = NULL;
12486 new_i = 0;
12488 for (i = 0; i < len; i++)
12490 char c = unescaped[i];
12492 if (!ISCNTRL (c))
12494 if (escaped)
12495 escaped[new_i++] = c;
12496 continue;
12499 if (c != '\n' || !pp_is_wrapping_line (global_dc->printer))
12501 if (escaped == NULL)
12503 /* We only allocate space for a new string if we
12504 actually encounter a control character that
12505 needs replacing. */
12506 escaped = (char *) xmalloc (len * 2 + 1);
12507 strncpy (escaped, unescaped, i);
12508 new_i = i;
12511 escaped[new_i++] = '\\';
12513 switch (c)
12515 case '\a': escaped[new_i++] = 'a'; break;
12516 case '\b': escaped[new_i++] = 'b'; break;
12517 case '\f': escaped[new_i++] = 'f'; break;
12518 case '\n': escaped[new_i++] = 'n'; break;
12519 case '\r': escaped[new_i++] = 'r'; break;
12520 case '\t': escaped[new_i++] = 't'; break;
12521 case '\v': escaped[new_i++] = 'v'; break;
12522 default: escaped[new_i++] = '?'; break;
12525 else if (escaped)
12526 escaped[new_i++] = c;
12529 if (escaped)
12531 escaped[new_i] = 0;
12532 m_str = escaped;
12533 m_owned = true;
12537 /* Warn about a use of an identifier which was marked deprecated. Returns
12538 whether a warning was given. */
12540 bool
12541 warn_deprecated_use (tree node, tree attr)
12543 escaped_string msg;
12545 if (node == 0 || !warn_deprecated_decl)
12546 return false;
12548 if (!attr)
12550 if (DECL_P (node))
12551 attr = DECL_ATTRIBUTES (node);
12552 else if (TYPE_P (node))
12554 tree decl = TYPE_STUB_DECL (node);
12555 if (decl)
12556 attr = lookup_attribute ("deprecated",
12557 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12561 if (attr)
12562 attr = lookup_attribute ("deprecated", attr);
12564 if (attr)
12565 msg.escape (TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr))));
12567 bool w = false;
12568 if (DECL_P (node))
12570 if (msg)
12571 w = warning (OPT_Wdeprecated_declarations,
12572 "%qD is deprecated: %s", node, (const char *) msg);
12573 else
12574 w = warning (OPT_Wdeprecated_declarations,
12575 "%qD is deprecated", node);
12576 if (w)
12577 inform (DECL_SOURCE_LOCATION (node), "declared here");
12579 else if (TYPE_P (node))
12581 tree what = NULL_TREE;
12582 tree decl = TYPE_STUB_DECL (node);
12584 if (TYPE_NAME (node))
12586 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12587 what = TYPE_NAME (node);
12588 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12589 && DECL_NAME (TYPE_NAME (node)))
12590 what = DECL_NAME (TYPE_NAME (node));
12593 if (what)
12595 if (msg)
12596 w = warning (OPT_Wdeprecated_declarations,
12597 "%qE is deprecated: %s", what, (const char *) msg);
12598 else
12599 w = warning (OPT_Wdeprecated_declarations,
12600 "%qE is deprecated", what);
12602 else
12604 if (msg)
12605 w = warning (OPT_Wdeprecated_declarations,
12606 "type is deprecated: %s", (const char *) msg);
12607 else
12608 w = warning (OPT_Wdeprecated_declarations,
12609 "type is deprecated");
12612 if (w && decl)
12613 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12616 return w;
12619 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12620 somewhere in it. */
12622 bool
12623 contains_bitfld_component_ref_p (const_tree ref)
12625 while (handled_component_p (ref))
12627 if (TREE_CODE (ref) == COMPONENT_REF
12628 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12629 return true;
12630 ref = TREE_OPERAND (ref, 0);
12633 return false;
12636 /* Try to determine whether a TRY_CATCH expression can fall through.
12637 This is a subroutine of block_may_fallthru. */
12639 static bool
12640 try_catch_may_fallthru (const_tree stmt)
12642 tree_stmt_iterator i;
12644 /* If the TRY block can fall through, the whole TRY_CATCH can
12645 fall through. */
12646 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12647 return true;
12649 i = tsi_start (TREE_OPERAND (stmt, 1));
12650 switch (TREE_CODE (tsi_stmt (i)))
12652 case CATCH_EXPR:
12653 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12654 catch expression and a body. The whole TRY_CATCH may fall
12655 through iff any of the catch bodies falls through. */
12656 for (; !tsi_end_p (i); tsi_next (&i))
12658 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12659 return true;
12661 return false;
12663 case EH_FILTER_EXPR:
12664 /* The exception filter expression only matters if there is an
12665 exception. If the exception does not match EH_FILTER_TYPES,
12666 we will execute EH_FILTER_FAILURE, and we will fall through
12667 if that falls through. If the exception does match
12668 EH_FILTER_TYPES, the stack unwinder will continue up the
12669 stack, so we will not fall through. We don't know whether we
12670 will throw an exception which matches EH_FILTER_TYPES or not,
12671 so we just ignore EH_FILTER_TYPES and assume that we might
12672 throw an exception which doesn't match. */
12673 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12675 default:
12676 /* This case represents statements to be executed when an
12677 exception occurs. Those statements are implicitly followed
12678 by a RESX statement to resume execution after the exception.
12679 So in this case the TRY_CATCH never falls through. */
12680 return false;
12684 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12685 need not be 100% accurate; simply be conservative and return true if we
12686 don't know. This is used only to avoid stupidly generating extra code.
12687 If we're wrong, we'll just delete the extra code later. */
12689 bool
12690 block_may_fallthru (const_tree block)
12692 /* This CONST_CAST is okay because expr_last returns its argument
12693 unmodified and we assign it to a const_tree. */
12694 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12696 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12698 case GOTO_EXPR:
12699 case RETURN_EXPR:
12700 /* Easy cases. If the last statement of the block implies
12701 control transfer, then we can't fall through. */
12702 return false;
12704 case SWITCH_EXPR:
12705 /* If there is a default: label or case labels cover all possible
12706 SWITCH_COND values, then the SWITCH_EXPR will transfer control
12707 to some case label in all cases and all we care is whether the
12708 SWITCH_BODY falls through. */
12709 if (SWITCH_ALL_CASES_P (stmt))
12710 return block_may_fallthru (SWITCH_BODY (stmt));
12711 return true;
12713 case COND_EXPR:
12714 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12715 return true;
12716 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12718 case BIND_EXPR:
12719 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12721 case TRY_CATCH_EXPR:
12722 return try_catch_may_fallthru (stmt);
12724 case TRY_FINALLY_EXPR:
12725 /* The finally clause is always executed after the try clause,
12726 so if it does not fall through, then the try-finally will not
12727 fall through. Otherwise, if the try clause does not fall
12728 through, then when the finally clause falls through it will
12729 resume execution wherever the try clause was going. So the
12730 whole try-finally will only fall through if both the try
12731 clause and the finally clause fall through. */
12732 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12733 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12735 case MODIFY_EXPR:
12736 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12737 stmt = TREE_OPERAND (stmt, 1);
12738 else
12739 return true;
12740 /* FALLTHRU */
12742 case CALL_EXPR:
12743 /* Functions that do not return do not fall through. */
12744 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12746 case CLEANUP_POINT_EXPR:
12747 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12749 case TARGET_EXPR:
12750 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12752 case ERROR_MARK:
12753 return true;
12755 default:
12756 return lang_hooks.block_may_fallthru (stmt);
12760 /* True if we are using EH to handle cleanups. */
12761 static bool using_eh_for_cleanups_flag = false;
12763 /* This routine is called from front ends to indicate eh should be used for
12764 cleanups. */
12765 void
12766 using_eh_for_cleanups (void)
12768 using_eh_for_cleanups_flag = true;
12771 /* Query whether EH is used for cleanups. */
12772 bool
12773 using_eh_for_cleanups_p (void)
12775 return using_eh_for_cleanups_flag;
12778 /* Wrapper for tree_code_name to ensure that tree code is valid */
12779 const char *
12780 get_tree_code_name (enum tree_code code)
12782 const char *invalid = "<invalid tree code>";
12784 if (code >= MAX_TREE_CODES)
12785 return invalid;
12787 return tree_code_name[code];
12790 /* Drops the TREE_OVERFLOW flag from T. */
12792 tree
12793 drop_tree_overflow (tree t)
12795 gcc_checking_assert (TREE_OVERFLOW (t));
12797 /* For tree codes with a sharing machinery re-build the result. */
12798 if (poly_int_tree_p (t))
12799 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
12801 /* For VECTOR_CST, remove the overflow bits from the encoded elements
12802 and canonicalize the result. */
12803 if (TREE_CODE (t) == VECTOR_CST)
12805 tree_vector_builder builder;
12806 builder.new_unary_operation (TREE_TYPE (t), t, true);
12807 unsigned int count = builder.encoded_nelts ();
12808 for (unsigned int i = 0; i < count; ++i)
12810 tree elt = VECTOR_CST_ELT (t, i);
12811 if (TREE_OVERFLOW (elt))
12812 elt = drop_tree_overflow (elt);
12813 builder.quick_push (elt);
12815 return builder.build ();
12818 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12819 and drop the flag. */
12820 t = copy_node (t);
12821 TREE_OVERFLOW (t) = 0;
12823 /* For constants that contain nested constants, drop the flag
12824 from those as well. */
12825 if (TREE_CODE (t) == COMPLEX_CST)
12827 if (TREE_OVERFLOW (TREE_REALPART (t)))
12828 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
12829 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
12830 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
12833 return t;
12836 /* Given a memory reference expression T, return its base address.
12837 The base address of a memory reference expression is the main
12838 object being referenced. For instance, the base address for
12839 'array[i].fld[j]' is 'array'. You can think of this as stripping
12840 away the offset part from a memory address.
12842 This function calls handled_component_p to strip away all the inner
12843 parts of the memory reference until it reaches the base object. */
12845 tree
12846 get_base_address (tree t)
12848 while (handled_component_p (t))
12849 t = TREE_OPERAND (t, 0);
12851 if ((TREE_CODE (t) == MEM_REF
12852 || TREE_CODE (t) == TARGET_MEM_REF)
12853 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12854 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12856 /* ??? Either the alias oracle or all callers need to properly deal
12857 with WITH_SIZE_EXPRs before we can look through those. */
12858 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12859 return NULL_TREE;
12861 return t;
12864 /* Return a tree of sizetype representing the size, in bytes, of the element
12865 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12867 tree
12868 array_ref_element_size (tree exp)
12870 tree aligned_size = TREE_OPERAND (exp, 3);
12871 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12872 location_t loc = EXPR_LOCATION (exp);
12874 /* If a size was specified in the ARRAY_REF, it's the size measured
12875 in alignment units of the element type. So multiply by that value. */
12876 if (aligned_size)
12878 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12879 sizetype from another type of the same width and signedness. */
12880 if (TREE_TYPE (aligned_size) != sizetype)
12881 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12882 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12883 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12886 /* Otherwise, take the size from that of the element type. Substitute
12887 any PLACEHOLDER_EXPR that we have. */
12888 else
12889 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12892 /* Return a tree representing the lower bound of the array mentioned in
12893 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12895 tree
12896 array_ref_low_bound (tree exp)
12898 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12900 /* If a lower bound is specified in EXP, use it. */
12901 if (TREE_OPERAND (exp, 2))
12902 return TREE_OPERAND (exp, 2);
12904 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12905 substituting for a PLACEHOLDER_EXPR as needed. */
12906 if (domain_type && TYPE_MIN_VALUE (domain_type))
12907 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12909 /* Otherwise, return a zero of the appropriate type. */
12910 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12913 /* Return a tree representing the upper bound of the array mentioned in
12914 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12916 tree
12917 array_ref_up_bound (tree exp)
12919 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12921 /* If there is a domain type and it has an upper bound, use it, substituting
12922 for a PLACEHOLDER_EXPR as needed. */
12923 if (domain_type && TYPE_MAX_VALUE (domain_type))
12924 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12926 /* Otherwise fail. */
12927 return NULL_TREE;
12930 /* Returns true if REF is an array reference or a component reference
12931 to an array at the end of a structure.
12932 If this is the case, the array may be allocated larger
12933 than its upper bound implies. */
12935 bool
12936 array_at_struct_end_p (tree ref)
12938 tree atype;
12940 if (TREE_CODE (ref) == ARRAY_REF
12941 || TREE_CODE (ref) == ARRAY_RANGE_REF)
12943 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
12944 ref = TREE_OPERAND (ref, 0);
12946 else if (TREE_CODE (ref) == COMPONENT_REF
12947 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
12948 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
12949 else
12950 return false;
12952 if (TREE_CODE (ref) == STRING_CST)
12953 return false;
12955 tree ref_to_array = ref;
12956 while (handled_component_p (ref))
12958 /* If the reference chain contains a component reference to a
12959 non-union type and there follows another field the reference
12960 is not at the end of a structure. */
12961 if (TREE_CODE (ref) == COMPONENT_REF)
12963 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12965 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12966 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12967 nextf = DECL_CHAIN (nextf);
12968 if (nextf)
12969 return false;
12972 /* If we have a multi-dimensional array we do not consider
12973 a non-innermost dimension as flex array if the whole
12974 multi-dimensional array is at struct end.
12975 Same for an array of aggregates with a trailing array
12976 member. */
12977 else if (TREE_CODE (ref) == ARRAY_REF)
12978 return false;
12979 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
12981 /* If we view an underlying object as sth else then what we
12982 gathered up to now is what we have to rely on. */
12983 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
12984 break;
12985 else
12986 gcc_unreachable ();
12988 ref = TREE_OPERAND (ref, 0);
12991 /* The array now is at struct end. Treat flexible arrays as
12992 always subject to extend, even into just padding constrained by
12993 an underlying decl. */
12994 if (! TYPE_SIZE (atype)
12995 || ! TYPE_DOMAIN (atype)
12996 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
12997 return true;
12999 if (TREE_CODE (ref) == MEM_REF
13000 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
13001 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
13003 /* If the reference is based on a declared entity, the size of the array
13004 is constrained by its given domain. (Do not trust commons PR/69368). */
13005 if (DECL_P (ref)
13006 && !(flag_unconstrained_commons
13007 && VAR_P (ref) && DECL_COMMON (ref))
13008 && DECL_SIZE_UNIT (ref)
13009 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
13011 /* Check whether the array domain covers all of the available
13012 padding. */
13013 poly_int64 offset;
13014 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
13015 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
13016 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
13017 return true;
13018 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
13019 return true;
13021 /* If at least one extra element fits it is a flexarray. */
13022 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
13023 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
13024 + 2)
13025 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
13026 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
13027 return true;
13029 return false;
13032 return true;
13035 /* Return a tree representing the offset, in bytes, of the field referenced
13036 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
13038 tree
13039 component_ref_field_offset (tree exp)
13041 tree aligned_offset = TREE_OPERAND (exp, 2);
13042 tree field = TREE_OPERAND (exp, 1);
13043 location_t loc = EXPR_LOCATION (exp);
13045 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
13046 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
13047 value. */
13048 if (aligned_offset)
13050 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
13051 sizetype from another type of the same width and signedness. */
13052 if (TREE_TYPE (aligned_offset) != sizetype)
13053 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13054 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13055 size_int (DECL_OFFSET_ALIGN (field)
13056 / BITS_PER_UNIT));
13059 /* Otherwise, take the offset from that of the field. Substitute
13060 any PLACEHOLDER_EXPR that we have. */
13061 else
13062 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13065 /* Return the machine mode of T. For vectors, returns the mode of the
13066 inner type. The main use case is to feed the result to HONOR_NANS,
13067 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13069 machine_mode
13070 element_mode (const_tree t)
13072 if (!TYPE_P (t))
13073 t = TREE_TYPE (t);
13074 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13075 t = TREE_TYPE (t);
13076 return TYPE_MODE (t);
13079 /* Vector types need to re-check the target flags each time we report
13080 the machine mode. We need to do this because attribute target can
13081 change the result of vector_mode_supported_p and have_regs_of_mode
13082 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
13083 change on a per-function basis. */
13084 /* ??? Possibly a better solution is to run through all the types
13085 referenced by a function and re-compute the TYPE_MODE once, rather
13086 than make the TYPE_MODE macro call a function. */
13088 machine_mode
13089 vector_type_mode (const_tree t)
13091 machine_mode mode;
13093 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
13095 mode = t->type_common.mode;
13096 if (VECTOR_MODE_P (mode)
13097 && (!targetm.vector_mode_supported_p (mode)
13098 || !have_regs_of_mode[mode]))
13100 scalar_int_mode innermode;
13102 /* For integers, try mapping it to a same-sized scalar mode. */
13103 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
13105 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
13106 * GET_MODE_BITSIZE (innermode));
13107 scalar_int_mode mode;
13108 if (int_mode_for_size (size, 0).exists (&mode)
13109 && have_regs_of_mode[mode])
13110 return mode;
13113 return BLKmode;
13116 return mode;
13119 /* Verify that basic properties of T match TV and thus T can be a variant of
13120 TV. TV should be the more specified variant (i.e. the main variant). */
13122 static bool
13123 verify_type_variant (const_tree t, tree tv)
13125 /* Type variant can differ by:
13127 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13128 ENCODE_QUAL_ADDR_SPACE.
13129 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13130 in this case some values may not be set in the variant types
13131 (see TYPE_COMPLETE_P checks).
13132 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13133 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13134 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13135 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13136 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13137 this is necessary to make it possible to merge types form different TUs
13138 - arrays, pointers and references may have TREE_TYPE that is a variant
13139 of TREE_TYPE of their main variants.
13140 - aggregates may have new TYPE_FIELDS list that list variants of
13141 the main variant TYPE_FIELDS.
13142 - vector types may differ by TYPE_VECTOR_OPAQUE
13145 /* Convenience macro for matching individual fields. */
13146 #define verify_variant_match(flag) \
13147 do { \
13148 if (flag (tv) != flag (t)) \
13150 error ("type variant differs by %s", #flag); \
13151 debug_tree (tv); \
13152 return false; \
13154 } while (false)
13156 /* tree_base checks. */
13158 verify_variant_match (TREE_CODE);
13159 /* FIXME: Ada builds non-artificial variants of artificial types. */
13160 if (TYPE_ARTIFICIAL (tv) && 0)
13161 verify_variant_match (TYPE_ARTIFICIAL);
13162 if (POINTER_TYPE_P (tv))
13163 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13164 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13165 verify_variant_match (TYPE_UNSIGNED);
13166 verify_variant_match (TYPE_PACKED);
13167 if (TREE_CODE (t) == REFERENCE_TYPE)
13168 verify_variant_match (TYPE_REF_IS_RVALUE);
13169 if (AGGREGATE_TYPE_P (t))
13170 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13171 else
13172 verify_variant_match (TYPE_SATURATING);
13173 /* FIXME: This check trigger during libstdc++ build. */
13174 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13175 verify_variant_match (TYPE_FINAL_P);
13177 /* tree_type_common checks. */
13179 if (COMPLETE_TYPE_P (t))
13181 verify_variant_match (TYPE_MODE);
13182 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
13183 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
13184 verify_variant_match (TYPE_SIZE);
13185 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
13186 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
13187 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
13189 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
13190 TYPE_SIZE_UNIT (tv), 0));
13191 error ("type variant has different TYPE_SIZE_UNIT");
13192 debug_tree (tv);
13193 error ("type variant's TYPE_SIZE_UNIT");
13194 debug_tree (TYPE_SIZE_UNIT (tv));
13195 error ("type's TYPE_SIZE_UNIT");
13196 debug_tree (TYPE_SIZE_UNIT (t));
13197 return false;
13200 verify_variant_match (TYPE_PRECISION);
13201 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
13202 if (RECORD_OR_UNION_TYPE_P (t))
13203 verify_variant_match (TYPE_TRANSPARENT_AGGR);
13204 else if (TREE_CODE (t) == ARRAY_TYPE)
13205 verify_variant_match (TYPE_NONALIASED_COMPONENT);
13206 /* During LTO we merge variant lists from diferent translation units
13207 that may differ BY TYPE_CONTEXT that in turn may point
13208 to TRANSLATION_UNIT_DECL.
13209 Ada also builds variants of types with different TYPE_CONTEXT. */
13210 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
13211 verify_variant_match (TYPE_CONTEXT);
13212 verify_variant_match (TYPE_STRING_FLAG);
13213 if (TYPE_ALIAS_SET_KNOWN_P (t))
13215 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
13216 debug_tree (tv);
13217 return false;
13220 /* tree_type_non_common checks. */
13222 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13223 and dangle the pointer from time to time. */
13224 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
13225 && (in_lto_p || !TYPE_VFIELD (tv)
13226 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
13228 error ("type variant has different TYPE_VFIELD");
13229 debug_tree (tv);
13230 return false;
13232 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
13233 || TREE_CODE (t) == INTEGER_TYPE
13234 || TREE_CODE (t) == BOOLEAN_TYPE
13235 || TREE_CODE (t) == REAL_TYPE
13236 || TREE_CODE (t) == FIXED_POINT_TYPE)
13238 verify_variant_match (TYPE_MAX_VALUE);
13239 verify_variant_match (TYPE_MIN_VALUE);
13241 if (TREE_CODE (t) == METHOD_TYPE)
13242 verify_variant_match (TYPE_METHOD_BASETYPE);
13243 if (TREE_CODE (t) == OFFSET_TYPE)
13244 verify_variant_match (TYPE_OFFSET_BASETYPE);
13245 if (TREE_CODE (t) == ARRAY_TYPE)
13246 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
13247 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
13248 or even type's main variant. This is needed to make bootstrap pass
13249 and the bug seems new in GCC 5.
13250 C++ FE should be updated to make this consistent and we should check
13251 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
13252 is a match with main variant.
13254 Also disable the check for Java for now because of parser hack that builds
13255 first an dummy BINFO and then sometimes replace it by real BINFO in some
13256 of the copies. */
13257 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
13258 && TYPE_BINFO (t) != TYPE_BINFO (tv)
13259 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
13260 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
13261 at LTO time only. */
13262 && (in_lto_p && odr_type_p (t)))
13264 error ("type variant has different TYPE_BINFO");
13265 debug_tree (tv);
13266 error ("type variant's TYPE_BINFO");
13267 debug_tree (TYPE_BINFO (tv));
13268 error ("type's TYPE_BINFO");
13269 debug_tree (TYPE_BINFO (t));
13270 return false;
13273 /* Check various uses of TYPE_VALUES_RAW. */
13274 if (TREE_CODE (t) == ENUMERAL_TYPE)
13275 verify_variant_match (TYPE_VALUES);
13276 else if (TREE_CODE (t) == ARRAY_TYPE)
13277 verify_variant_match (TYPE_DOMAIN);
13278 /* Permit incomplete variants of complete type. While FEs may complete
13279 all variants, this does not happen for C++ templates in all cases. */
13280 else if (RECORD_OR_UNION_TYPE_P (t)
13281 && COMPLETE_TYPE_P (t)
13282 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
13284 tree f1, f2;
13286 /* Fortran builds qualified variants as new records with items of
13287 qualified type. Verify that they looks same. */
13288 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
13289 f1 && f2;
13290 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13291 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
13292 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
13293 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
13294 /* FIXME: gfc_nonrestricted_type builds all types as variants
13295 with exception of pointer types. It deeply copies the type
13296 which means that we may end up with a variant type
13297 referring non-variant pointer. We may change it to
13298 produce types as variants, too, like
13299 objc_get_protocol_qualified_type does. */
13300 && !POINTER_TYPE_P (TREE_TYPE (f1)))
13301 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
13302 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
13303 break;
13304 if (f1 || f2)
13306 error ("type variant has different TYPE_FIELDS");
13307 debug_tree (tv);
13308 error ("first mismatch is field");
13309 debug_tree (f1);
13310 error ("and field");
13311 debug_tree (f2);
13312 return false;
13315 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
13316 verify_variant_match (TYPE_ARG_TYPES);
13317 /* For C++ the qualified variant of array type is really an array type
13318 of qualified TREE_TYPE.
13319 objc builds variants of pointer where pointer to type is a variant, too
13320 in objc_get_protocol_qualified_type. */
13321 if (TREE_TYPE (t) != TREE_TYPE (tv)
13322 && ((TREE_CODE (t) != ARRAY_TYPE
13323 && !POINTER_TYPE_P (t))
13324 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
13325 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13327 error ("type variant has different TREE_TYPE");
13328 debug_tree (tv);
13329 error ("type variant's TREE_TYPE");
13330 debug_tree (TREE_TYPE (tv));
13331 error ("type's TREE_TYPE");
13332 debug_tree (TREE_TYPE (t));
13333 return false;
13335 if (type_with_alias_set_p (t)
13336 && !gimple_canonical_types_compatible_p (t, tv, false))
13338 error ("type is not compatible with its variant");
13339 debug_tree (tv);
13340 error ("type variant's TREE_TYPE");
13341 debug_tree (TREE_TYPE (tv));
13342 error ("type's TREE_TYPE");
13343 debug_tree (TREE_TYPE (t));
13344 return false;
13346 return true;
13347 #undef verify_variant_match
13351 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13352 the middle-end types_compatible_p function. It needs to avoid
13353 claiming types are different for types that should be treated
13354 the same with respect to TBAA. Canonical types are also used
13355 for IL consistency checks via the useless_type_conversion_p
13356 predicate which does not handle all type kinds itself but falls
13357 back to pointer-comparison of TYPE_CANONICAL for aggregates
13358 for example. */
13360 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13361 type calculation because we need to allow inter-operability between signed
13362 and unsigned variants. */
13364 bool
13365 type_with_interoperable_signedness (const_tree type)
13367 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13368 signed char and unsigned char. Similarly fortran FE builds
13369 C_SIZE_T as signed type, while C defines it unsigned. */
13371 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13372 == INTEGER_TYPE
13373 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13374 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13377 /* Return true iff T1 and T2 are structurally identical for what
13378 TBAA is concerned.
13379 This function is used both by lto.c canonical type merging and by the
13380 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13381 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13382 only for LTO because only in these cases TYPE_CANONICAL equivalence
13383 correspond to one defined by gimple_canonical_types_compatible_p. */
13385 bool
13386 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13387 bool trust_type_canonical)
13389 /* Type variants should be same as the main variant. When not doing sanity
13390 checking to verify this fact, go to main variants and save some work. */
13391 if (trust_type_canonical)
13393 t1 = TYPE_MAIN_VARIANT (t1);
13394 t2 = TYPE_MAIN_VARIANT (t2);
13397 /* Check first for the obvious case of pointer identity. */
13398 if (t1 == t2)
13399 return true;
13401 /* Check that we have two types to compare. */
13402 if (t1 == NULL_TREE || t2 == NULL_TREE)
13403 return false;
13405 /* We consider complete types always compatible with incomplete type.
13406 This does not make sense for canonical type calculation and thus we
13407 need to ensure that we are never called on it.
13409 FIXME: For more correctness the function probably should have three modes
13410 1) mode assuming that types are complete mathcing their structure
13411 2) mode allowing incomplete types but producing equivalence classes
13412 and thus ignoring all info from complete types
13413 3) mode allowing incomplete types to match complete but checking
13414 compatibility between complete types.
13416 1 and 2 can be used for canonical type calculation. 3 is the real
13417 definition of type compatibility that can be used i.e. for warnings during
13418 declaration merging. */
13420 gcc_assert (!trust_type_canonical
13421 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13422 /* If the types have been previously registered and found equal
13423 they still are. */
13425 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13426 && trust_type_canonical)
13428 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13429 they are always NULL, but they are set to non-NULL for types
13430 constructed by build_pointer_type and variants. In this case the
13431 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13432 all pointers are considered equal. Be sure to not return false
13433 negatives. */
13434 gcc_checking_assert (canonical_type_used_p (t1)
13435 && canonical_type_used_p (t2));
13436 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13439 /* Can't be the same type if the types don't have the same code. */
13440 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13441 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13442 return false;
13444 /* Qualifiers do not matter for canonical type comparison purposes. */
13446 /* Void types and nullptr types are always the same. */
13447 if (TREE_CODE (t1) == VOID_TYPE
13448 || TREE_CODE (t1) == NULLPTR_TYPE)
13449 return true;
13451 /* Can't be the same type if they have different mode. */
13452 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13453 return false;
13455 /* Non-aggregate types can be handled cheaply. */
13456 if (INTEGRAL_TYPE_P (t1)
13457 || SCALAR_FLOAT_TYPE_P (t1)
13458 || FIXED_POINT_TYPE_P (t1)
13459 || TREE_CODE (t1) == VECTOR_TYPE
13460 || TREE_CODE (t1) == COMPLEX_TYPE
13461 || TREE_CODE (t1) == OFFSET_TYPE
13462 || POINTER_TYPE_P (t1))
13464 /* Can't be the same type if they have different recision. */
13465 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13466 return false;
13468 /* In some cases the signed and unsigned types are required to be
13469 inter-operable. */
13470 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13471 && !type_with_interoperable_signedness (t1))
13472 return false;
13474 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13475 interoperable with "signed char". Unless all frontends are revisited
13476 to agree on these types, we must ignore the flag completely. */
13478 /* Fortran standard define C_PTR type that is compatible with every
13479 C pointer. For this reason we need to glob all pointers into one.
13480 Still pointers in different address spaces are not compatible. */
13481 if (POINTER_TYPE_P (t1))
13483 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13484 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13485 return false;
13488 /* Tail-recurse to components. */
13489 if (TREE_CODE (t1) == VECTOR_TYPE
13490 || TREE_CODE (t1) == COMPLEX_TYPE)
13491 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13492 TREE_TYPE (t2),
13493 trust_type_canonical);
13495 return true;
13498 /* Do type-specific comparisons. */
13499 switch (TREE_CODE (t1))
13501 case ARRAY_TYPE:
13502 /* Array types are the same if the element types are the same and
13503 the number of elements are the same. */
13504 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13505 trust_type_canonical)
13506 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13507 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13508 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13509 return false;
13510 else
13512 tree i1 = TYPE_DOMAIN (t1);
13513 tree i2 = TYPE_DOMAIN (t2);
13515 /* For an incomplete external array, the type domain can be
13516 NULL_TREE. Check this condition also. */
13517 if (i1 == NULL_TREE && i2 == NULL_TREE)
13518 return true;
13519 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13520 return false;
13521 else
13523 tree min1 = TYPE_MIN_VALUE (i1);
13524 tree min2 = TYPE_MIN_VALUE (i2);
13525 tree max1 = TYPE_MAX_VALUE (i1);
13526 tree max2 = TYPE_MAX_VALUE (i2);
13528 /* The minimum/maximum values have to be the same. */
13529 if ((min1 == min2
13530 || (min1 && min2
13531 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13532 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13533 || operand_equal_p (min1, min2, 0))))
13534 && (max1 == max2
13535 || (max1 && max2
13536 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13537 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13538 || operand_equal_p (max1, max2, 0)))))
13539 return true;
13540 else
13541 return false;
13545 case METHOD_TYPE:
13546 case FUNCTION_TYPE:
13547 /* Function types are the same if the return type and arguments types
13548 are the same. */
13549 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13550 trust_type_canonical))
13551 return false;
13553 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13554 return true;
13555 else
13557 tree parms1, parms2;
13559 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13560 parms1 && parms2;
13561 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13563 if (!gimple_canonical_types_compatible_p
13564 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13565 trust_type_canonical))
13566 return false;
13569 if (parms1 || parms2)
13570 return false;
13572 return true;
13575 case RECORD_TYPE:
13576 case UNION_TYPE:
13577 case QUAL_UNION_TYPE:
13579 tree f1, f2;
13581 /* Don't try to compare variants of an incomplete type, before
13582 TYPE_FIELDS has been copied around. */
13583 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
13584 return true;
13587 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
13588 return false;
13590 /* For aggregate types, all the fields must be the same. */
13591 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13592 f1 || f2;
13593 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13595 /* Skip non-fields and zero-sized fields. */
13596 while (f1 && (TREE_CODE (f1) != FIELD_DECL
13597 || (DECL_SIZE (f1)
13598 && integer_zerop (DECL_SIZE (f1)))))
13599 f1 = TREE_CHAIN (f1);
13600 while (f2 && (TREE_CODE (f2) != FIELD_DECL
13601 || (DECL_SIZE (f2)
13602 && integer_zerop (DECL_SIZE (f2)))))
13603 f2 = TREE_CHAIN (f2);
13604 if (!f1 || !f2)
13605 break;
13606 /* The fields must have the same name, offset and type. */
13607 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13608 || !gimple_compare_field_offset (f1, f2)
13609 || !gimple_canonical_types_compatible_p
13610 (TREE_TYPE (f1), TREE_TYPE (f2),
13611 trust_type_canonical))
13612 return false;
13615 /* If one aggregate has more fields than the other, they
13616 are not the same. */
13617 if (f1 || f2)
13618 return false;
13620 return true;
13623 default:
13624 /* Consider all types with language specific trees in them mutually
13625 compatible. This is executed only from verify_type and false
13626 positives can be tolerated. */
13627 gcc_assert (!in_lto_p);
13628 return true;
13632 /* Verify type T. */
13634 void
13635 verify_type (const_tree t)
13637 bool error_found = false;
13638 tree mv = TYPE_MAIN_VARIANT (t);
13639 if (!mv)
13641 error ("Main variant is not defined");
13642 error_found = true;
13644 else if (mv != TYPE_MAIN_VARIANT (mv))
13646 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13647 debug_tree (mv);
13648 error_found = true;
13650 else if (t != mv && !verify_type_variant (t, mv))
13651 error_found = true;
13653 tree ct = TYPE_CANONICAL (t);
13654 if (!ct)
13656 else if (TYPE_CANONICAL (t) != ct)
13658 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13659 debug_tree (ct);
13660 error_found = true;
13662 /* Method and function types can not be used to address memory and thus
13663 TYPE_CANONICAL really matters only for determining useless conversions.
13665 FIXME: C++ FE produce declarations of builtin functions that are not
13666 compatible with main variants. */
13667 else if (TREE_CODE (t) == FUNCTION_TYPE)
13669 else if (t != ct
13670 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13671 with variably sized arrays because their sizes possibly
13672 gimplified to different variables. */
13673 && !variably_modified_type_p (ct, NULL)
13674 && !gimple_canonical_types_compatible_p (t, ct, false))
13676 error ("TYPE_CANONICAL is not compatible");
13677 debug_tree (ct);
13678 error_found = true;
13681 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
13682 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
13684 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13685 debug_tree (ct);
13686 error_found = true;
13688 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
13690 error ("TYPE_CANONICAL of main variant is not main variant");
13691 debug_tree (ct);
13692 debug_tree (TYPE_MAIN_VARIANT (ct));
13693 error_found = true;
13697 /* Check various uses of TYPE_MIN_VALUE_RAW. */
13698 if (RECORD_OR_UNION_TYPE_P (t))
13700 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13701 and danagle the pointer from time to time. */
13702 if (TYPE_VFIELD (t)
13703 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13704 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13706 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13707 debug_tree (TYPE_VFIELD (t));
13708 error_found = true;
13711 else if (TREE_CODE (t) == POINTER_TYPE)
13713 if (TYPE_NEXT_PTR_TO (t)
13714 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13716 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13717 debug_tree (TYPE_NEXT_PTR_TO (t));
13718 error_found = true;
13721 else if (TREE_CODE (t) == REFERENCE_TYPE)
13723 if (TYPE_NEXT_REF_TO (t)
13724 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13726 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13727 debug_tree (TYPE_NEXT_REF_TO (t));
13728 error_found = true;
13731 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13732 || TREE_CODE (t) == FIXED_POINT_TYPE)
13734 /* FIXME: The following check should pass:
13735 useless_type_conversion_p (const_cast <tree> (t),
13736 TREE_TYPE (TYPE_MIN_VALUE (t))
13737 but does not for C sizetypes in LTO. */
13740 /* Check various uses of TYPE_MAXVAL_RAW. */
13741 if (RECORD_OR_UNION_TYPE_P (t))
13743 if (!TYPE_BINFO (t))
13745 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13747 error ("TYPE_BINFO is not TREE_BINFO");
13748 debug_tree (TYPE_BINFO (t));
13749 error_found = true;
13751 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
13753 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13754 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13755 error_found = true;
13758 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13760 if (TYPE_METHOD_BASETYPE (t)
13761 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13762 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13764 error ("TYPE_METHOD_BASETYPE is not record nor union");
13765 debug_tree (TYPE_METHOD_BASETYPE (t));
13766 error_found = true;
13769 else if (TREE_CODE (t) == OFFSET_TYPE)
13771 if (TYPE_OFFSET_BASETYPE (t)
13772 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13773 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13775 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13776 debug_tree (TYPE_OFFSET_BASETYPE (t));
13777 error_found = true;
13780 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13781 || TREE_CODE (t) == FIXED_POINT_TYPE)
13783 /* FIXME: The following check should pass:
13784 useless_type_conversion_p (const_cast <tree> (t),
13785 TREE_TYPE (TYPE_MAX_VALUE (t))
13786 but does not for C sizetypes in LTO. */
13788 else if (TREE_CODE (t) == ARRAY_TYPE)
13790 if (TYPE_ARRAY_MAX_SIZE (t)
13791 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13793 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13794 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13795 error_found = true;
13798 else if (TYPE_MAX_VALUE_RAW (t))
13800 error ("TYPE_MAX_VALUE_RAW non-NULL");
13801 debug_tree (TYPE_MAX_VALUE_RAW (t));
13802 error_found = true;
13805 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13807 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13808 debug_tree (TYPE_LANG_SLOT_1 (t));
13809 error_found = true;
13812 /* Check various uses of TYPE_VALUES_RAW. */
13813 if (TREE_CODE (t) == ENUMERAL_TYPE)
13814 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13816 tree value = TREE_VALUE (l);
13817 tree name = TREE_PURPOSE (l);
13819 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13820 CONST_DECL of ENUMERAL TYPE. */
13821 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13823 error ("Enum value is not CONST_DECL or INTEGER_CST");
13824 debug_tree (value);
13825 debug_tree (name);
13826 error_found = true;
13828 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13829 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13831 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13832 debug_tree (value);
13833 debug_tree (name);
13834 error_found = true;
13836 if (TREE_CODE (name) != IDENTIFIER_NODE)
13838 error ("Enum value name is not IDENTIFIER_NODE");
13839 debug_tree (value);
13840 debug_tree (name);
13841 error_found = true;
13844 else if (TREE_CODE (t) == ARRAY_TYPE)
13846 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13848 error ("Array TYPE_DOMAIN is not integer type");
13849 debug_tree (TYPE_DOMAIN (t));
13850 error_found = true;
13853 else if (RECORD_OR_UNION_TYPE_P (t))
13855 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
13857 error ("TYPE_FIELDS defined in incomplete type");
13858 error_found = true;
13860 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13862 /* TODO: verify properties of decls. */
13863 if (TREE_CODE (fld) == FIELD_DECL)
13865 else if (TREE_CODE (fld) == TYPE_DECL)
13867 else if (TREE_CODE (fld) == CONST_DECL)
13869 else if (VAR_P (fld))
13871 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13873 else if (TREE_CODE (fld) == USING_DECL)
13875 else if (TREE_CODE (fld) == FUNCTION_DECL)
13877 else
13879 error ("Wrong tree in TYPE_FIELDS list");
13880 debug_tree (fld);
13881 error_found = true;
13885 else if (TREE_CODE (t) == INTEGER_TYPE
13886 || TREE_CODE (t) == BOOLEAN_TYPE
13887 || TREE_CODE (t) == OFFSET_TYPE
13888 || TREE_CODE (t) == REFERENCE_TYPE
13889 || TREE_CODE (t) == NULLPTR_TYPE
13890 || TREE_CODE (t) == POINTER_TYPE)
13892 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13894 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13895 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13896 error_found = true;
13898 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13900 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13901 debug_tree (TYPE_CACHED_VALUES (t));
13902 error_found = true;
13904 /* Verify just enough of cache to ensure that no one copied it to new type.
13905 All copying should go by copy_node that should clear it. */
13906 else if (TYPE_CACHED_VALUES_P (t))
13908 int i;
13909 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13910 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13911 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13913 error ("wrong TYPE_CACHED_VALUES entry");
13914 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13915 error_found = true;
13916 break;
13920 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13921 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13923 /* C++ FE uses TREE_PURPOSE to store initial values. */
13924 if (TREE_PURPOSE (l) && in_lto_p)
13926 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13927 debug_tree (l);
13928 error_found = true;
13930 if (!TYPE_P (TREE_VALUE (l)))
13932 error ("Wrong entry in TYPE_ARG_TYPES list");
13933 debug_tree (l);
13934 error_found = true;
13937 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13939 error ("TYPE_VALUES_RAW field is non-NULL");
13940 debug_tree (TYPE_VALUES_RAW (t));
13941 error_found = true;
13943 if (TREE_CODE (t) != INTEGER_TYPE
13944 && TREE_CODE (t) != BOOLEAN_TYPE
13945 && TREE_CODE (t) != OFFSET_TYPE
13946 && TREE_CODE (t) != REFERENCE_TYPE
13947 && TREE_CODE (t) != NULLPTR_TYPE
13948 && TREE_CODE (t) != POINTER_TYPE
13949 && TYPE_CACHED_VALUES_P (t))
13951 error ("TYPE_CACHED_VALUES_P is set while it should not");
13952 error_found = true;
13954 if (TYPE_STRING_FLAG (t)
13955 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13957 error ("TYPE_STRING_FLAG is set on wrong type code");
13958 error_found = true;
13961 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13962 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13963 of a type. */
13964 if (TREE_CODE (t) == METHOD_TYPE
13965 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13967 error ("TYPE_METHOD_BASETYPE is not main variant");
13968 error_found = true;
13971 if (error_found)
13973 debug_tree (const_cast <tree> (t));
13974 internal_error ("verify_type failed");
13979 /* Return 1 if ARG interpreted as signed in its precision is known to be
13980 always positive or 2 if ARG is known to be always negative, or 3 if
13981 ARG may be positive or negative. */
13984 get_range_pos_neg (tree arg)
13986 if (arg == error_mark_node)
13987 return 3;
13989 int prec = TYPE_PRECISION (TREE_TYPE (arg));
13990 int cnt = 0;
13991 if (TREE_CODE (arg) == INTEGER_CST)
13993 wide_int w = wi::sext (wi::to_wide (arg), prec);
13994 if (wi::neg_p (w))
13995 return 2;
13996 else
13997 return 1;
13999 while (CONVERT_EXPR_P (arg)
14000 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
14001 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
14003 arg = TREE_OPERAND (arg, 0);
14004 /* Narrower value zero extended into wider type
14005 will always result in positive values. */
14006 if (TYPE_UNSIGNED (TREE_TYPE (arg))
14007 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
14008 return 1;
14009 prec = TYPE_PRECISION (TREE_TYPE (arg));
14010 if (++cnt > 30)
14011 return 3;
14014 if (TREE_CODE (arg) != SSA_NAME)
14015 return 3;
14016 wide_int arg_min, arg_max;
14017 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
14019 gimple *g = SSA_NAME_DEF_STMT (arg);
14020 if (is_gimple_assign (g)
14021 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
14023 tree t = gimple_assign_rhs1 (g);
14024 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
14025 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
14027 if (TYPE_UNSIGNED (TREE_TYPE (t))
14028 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
14029 return 1;
14030 prec = TYPE_PRECISION (TREE_TYPE (t));
14031 arg = t;
14032 if (++cnt > 30)
14033 return 3;
14034 continue;
14037 return 3;
14039 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
14041 /* For unsigned values, the "positive" range comes
14042 below the "negative" range. */
14043 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14044 return 1;
14045 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14046 return 2;
14048 else
14050 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
14051 return 1;
14052 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
14053 return 2;
14055 return 3;
14061 /* Return true if ARG is marked with the nonnull attribute in the
14062 current function signature. */
14064 bool
14065 nonnull_arg_p (const_tree arg)
14067 tree t, attrs, fntype;
14068 unsigned HOST_WIDE_INT arg_num;
14070 gcc_assert (TREE_CODE (arg) == PARM_DECL
14071 && (POINTER_TYPE_P (TREE_TYPE (arg))
14072 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
14074 /* The static chain decl is always non null. */
14075 if (arg == cfun->static_chain_decl)
14076 return true;
14078 /* THIS argument of method is always non-NULL. */
14079 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
14080 && arg == DECL_ARGUMENTS (cfun->decl)
14081 && flag_delete_null_pointer_checks)
14082 return true;
14084 /* Values passed by reference are always non-NULL. */
14085 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
14086 && flag_delete_null_pointer_checks)
14087 return true;
14089 fntype = TREE_TYPE (cfun->decl);
14090 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
14092 attrs = lookup_attribute ("nonnull", attrs);
14094 /* If "nonnull" wasn't specified, we know nothing about the argument. */
14095 if (attrs == NULL_TREE)
14096 return false;
14098 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
14099 if (TREE_VALUE (attrs) == NULL_TREE)
14100 return true;
14102 /* Get the position number for ARG in the function signature. */
14103 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
14105 t = DECL_CHAIN (t), arg_num++)
14107 if (t == arg)
14108 break;
14111 gcc_assert (t == arg);
14113 /* Now see if ARG_NUM is mentioned in the nonnull list. */
14114 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
14116 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
14117 return true;
14121 return false;
14124 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14125 information. */
14127 location_t
14128 set_block (location_t loc, tree block)
14130 location_t pure_loc = get_pure_location (loc);
14131 source_range src_range = get_range_from_loc (line_table, loc);
14132 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14135 location_t
14136 set_source_range (tree expr, location_t start, location_t finish)
14138 source_range src_range;
14139 src_range.m_start = start;
14140 src_range.m_finish = finish;
14141 return set_source_range (expr, src_range);
14144 location_t
14145 set_source_range (tree expr, source_range src_range)
14147 if (!EXPR_P (expr))
14148 return UNKNOWN_LOCATION;
14150 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14151 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14152 pure_loc,
14153 src_range,
14154 NULL);
14155 SET_EXPR_LOCATION (expr, adhoc);
14156 return adhoc;
14159 /* Return EXPR, potentially wrapped with a node expression LOC,
14160 if !CAN_HAVE_LOCATION_P (expr).
14162 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
14163 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
14165 Wrapper nodes can be identified using location_wrapper_p. */
14167 tree
14168 maybe_wrap_with_location (tree expr, location_t loc)
14170 if (expr == NULL)
14171 return NULL;
14172 if (loc == UNKNOWN_LOCATION)
14173 return expr;
14174 if (CAN_HAVE_LOCATION_P (expr))
14175 return expr;
14176 /* We should only be adding wrappers for constants and for decls,
14177 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
14178 gcc_assert (CONSTANT_CLASS_P (expr)
14179 || DECL_P (expr)
14180 || EXCEPTIONAL_CLASS_P (expr));
14182 /* For now, don't add wrappers to exceptional tree nodes, to minimize
14183 any impact of the wrapper nodes. */
14184 if (EXCEPTIONAL_CLASS_P (expr))
14185 return expr;
14187 tree_code code
14188 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
14189 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
14190 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
14191 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
14192 /* Mark this node as being a wrapper. */
14193 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
14194 return wrapper;
14197 /* Return the name of combined function FN, for debugging purposes. */
14199 const char *
14200 combined_fn_name (combined_fn fn)
14202 if (builtin_fn_p (fn))
14204 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
14205 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
14207 else
14208 return internal_fn_name (as_internal_fn (fn));
14211 /* Return a bitmap with a bit set corresponding to each argument in
14212 a function call type FNTYPE declared with attribute nonnull,
14213 or null if none of the function's argument are nonnull. The caller
14214 must free the bitmap. */
14216 bitmap
14217 get_nonnull_args (const_tree fntype)
14219 if (fntype == NULL_TREE)
14220 return NULL;
14222 tree attrs = TYPE_ATTRIBUTES (fntype);
14223 if (!attrs)
14224 return NULL;
14226 bitmap argmap = NULL;
14228 /* A function declaration can specify multiple attribute nonnull,
14229 each with zero or more arguments. The loop below creates a bitmap
14230 representing a union of all the arguments. An empty (but non-null)
14231 bitmap means that all arguments have been declaraed nonnull. */
14232 for ( ; attrs; attrs = TREE_CHAIN (attrs))
14234 attrs = lookup_attribute ("nonnull", attrs);
14235 if (!attrs)
14236 break;
14238 if (!argmap)
14239 argmap = BITMAP_ALLOC (NULL);
14241 if (!TREE_VALUE (attrs))
14243 /* Clear the bitmap in case a previous attribute nonnull
14244 set it and this one overrides it for all arguments. */
14245 bitmap_clear (argmap);
14246 return argmap;
14249 /* Iterate over the indices of the format arguments declared nonnull
14250 and set a bit for each. */
14251 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
14253 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
14254 bitmap_set_bit (argmap, val);
14258 return argmap;
14261 /* Returns true if TYPE is a type where it and all of its subobjects
14262 (recursively) are of structure, union, or array type. */
14264 static bool
14265 default_is_empty_type (tree type)
14267 if (RECORD_OR_UNION_TYPE_P (type))
14269 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
14270 if (TREE_CODE (field) == FIELD_DECL
14271 && !DECL_PADDING_P (field)
14272 && !default_is_empty_type (TREE_TYPE (field)))
14273 return false;
14274 return true;
14276 else if (TREE_CODE (type) == ARRAY_TYPE)
14277 return (integer_minus_onep (array_type_nelts (type))
14278 || TYPE_DOMAIN (type) == NULL_TREE
14279 || default_is_empty_type (TREE_TYPE (type)));
14280 return false;
14283 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
14284 that shouldn't be passed via stack. */
14286 bool
14287 default_is_empty_record (const_tree type)
14289 if (!abi_version_at_least (12))
14290 return false;
14292 if (type == error_mark_node)
14293 return false;
14295 if (TREE_ADDRESSABLE (type))
14296 return false;
14298 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
14301 /* Like int_size_in_bytes, but handle empty records specially. */
14303 HOST_WIDE_INT
14304 arg_int_size_in_bytes (const_tree type)
14306 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
14309 /* Like size_in_bytes, but handle empty records specially. */
14311 tree
14312 arg_size_in_bytes (const_tree type)
14314 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
14317 /* Return true if an expression with CODE has to have the same result type as
14318 its first operand. */
14320 bool
14321 expr_type_first_operand_type_p (tree_code code)
14323 switch (code)
14325 case NEGATE_EXPR:
14326 case ABS_EXPR:
14327 case BIT_NOT_EXPR:
14328 case PAREN_EXPR:
14329 case CONJ_EXPR:
14331 case PLUS_EXPR:
14332 case MINUS_EXPR:
14333 case MULT_EXPR:
14334 case TRUNC_DIV_EXPR:
14335 case CEIL_DIV_EXPR:
14336 case FLOOR_DIV_EXPR:
14337 case ROUND_DIV_EXPR:
14338 case TRUNC_MOD_EXPR:
14339 case CEIL_MOD_EXPR:
14340 case FLOOR_MOD_EXPR:
14341 case ROUND_MOD_EXPR:
14342 case RDIV_EXPR:
14343 case EXACT_DIV_EXPR:
14344 case MIN_EXPR:
14345 case MAX_EXPR:
14346 case BIT_IOR_EXPR:
14347 case BIT_XOR_EXPR:
14348 case BIT_AND_EXPR:
14350 case LSHIFT_EXPR:
14351 case RSHIFT_EXPR:
14352 case LROTATE_EXPR:
14353 case RROTATE_EXPR:
14354 return true;
14356 default:
14357 return false;
14361 /* List of pointer types used to declare builtins before we have seen their
14362 real declaration.
14364 Keep the size up to date in tree.h ! */
14365 const builtin_structptr_type builtin_structptr_types[6] =
14367 { fileptr_type_node, ptr_type_node, "FILE" },
14368 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
14369 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
14370 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
14371 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
14372 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
14375 #if CHECKING_P
14377 namespace selftest {
14379 /* Selftests for tree. */
14381 /* Verify that integer constants are sane. */
14383 static void
14384 test_integer_constants ()
14386 ASSERT_TRUE (integer_type_node != NULL);
14387 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
14389 tree type = integer_type_node;
14391 tree zero = build_zero_cst (type);
14392 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
14393 ASSERT_EQ (type, TREE_TYPE (zero));
14395 tree one = build_int_cst (type, 1);
14396 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
14397 ASSERT_EQ (type, TREE_TYPE (zero));
14400 /* Verify identifiers. */
14402 static void
14403 test_identifiers ()
14405 tree identifier = get_identifier ("foo");
14406 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
14407 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
14410 /* Verify LABEL_DECL. */
14412 static void
14413 test_labels ()
14415 tree identifier = get_identifier ("err");
14416 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
14417 identifier, void_type_node);
14418 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
14419 ASSERT_FALSE (FORCED_LABEL (label_decl));
14422 /* Return a new VECTOR_CST node whose type is TYPE and whose values
14423 are given by VALS. */
14425 static tree
14426 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
14428 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
14429 tree_vector_builder builder (type, vals.length (), 1);
14430 builder.splice (vals);
14431 return builder.build ();
14434 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
14436 static void
14437 check_vector_cst (vec<tree> expected, tree actual)
14439 ASSERT_KNOWN_EQ (expected.length (),
14440 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
14441 for (unsigned int i = 0; i < expected.length (); ++i)
14442 ASSERT_EQ (wi::to_wide (expected[i]),
14443 wi::to_wide (vector_cst_elt (actual, i)));
14446 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
14447 and that its elements match EXPECTED. */
14449 static void
14450 check_vector_cst_duplicate (vec<tree> expected, tree actual,
14451 unsigned int npatterns)
14453 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14454 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
14455 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
14456 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
14457 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14458 check_vector_cst (expected, actual);
14461 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
14462 and NPATTERNS background elements, and that its elements match
14463 EXPECTED. */
14465 static void
14466 check_vector_cst_fill (vec<tree> expected, tree actual,
14467 unsigned int npatterns)
14469 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14470 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
14471 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
14472 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14473 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14474 check_vector_cst (expected, actual);
14477 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
14478 and that its elements match EXPECTED. */
14480 static void
14481 check_vector_cst_stepped (vec<tree> expected, tree actual,
14482 unsigned int npatterns)
14484 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14485 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
14486 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
14487 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14488 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
14489 check_vector_cst (expected, actual);
14492 /* Test the creation of VECTOR_CSTs. */
14494 static void
14495 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
14497 auto_vec<tree, 8> elements (8);
14498 elements.quick_grow (8);
14499 tree element_type = build_nonstandard_integer_type (16, true);
14500 tree vector_type = build_vector_type (element_type, 8);
14502 /* Test a simple linear series with a base of 0 and a step of 1:
14503 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
14504 for (unsigned int i = 0; i < 8; ++i)
14505 elements[i] = build_int_cst (element_type, i);
14506 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
14507 check_vector_cst_stepped (elements, vector, 1);
14509 /* Try the same with the first element replaced by 100:
14510 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
14511 elements[0] = build_int_cst (element_type, 100);
14512 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14513 check_vector_cst_stepped (elements, vector, 1);
14515 /* Try a series that wraps around.
14516 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
14517 for (unsigned int i = 1; i < 8; ++i)
14518 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
14519 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14520 check_vector_cst_stepped (elements, vector, 1);
14522 /* Try a downward series:
14523 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
14524 for (unsigned int i = 1; i < 8; ++i)
14525 elements[i] = build_int_cst (element_type, 80 - i);
14526 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14527 check_vector_cst_stepped (elements, vector, 1);
14529 /* Try two interleaved series with different bases and steps:
14530 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
14531 elements[1] = build_int_cst (element_type, 53);
14532 for (unsigned int i = 2; i < 8; i += 2)
14534 elements[i] = build_int_cst (element_type, 70 - i * 2);
14535 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
14537 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14538 check_vector_cst_stepped (elements, vector, 2);
14540 /* Try a duplicated value:
14541 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
14542 for (unsigned int i = 1; i < 8; ++i)
14543 elements[i] = elements[0];
14544 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14545 check_vector_cst_duplicate (elements, vector, 1);
14547 /* Try an interleaved duplicated value:
14548 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
14549 elements[1] = build_int_cst (element_type, 55);
14550 for (unsigned int i = 2; i < 8; ++i)
14551 elements[i] = elements[i - 2];
14552 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14553 check_vector_cst_duplicate (elements, vector, 2);
14555 /* Try a duplicated value with 2 exceptions
14556 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
14557 elements[0] = build_int_cst (element_type, 41);
14558 elements[1] = build_int_cst (element_type, 97);
14559 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14560 check_vector_cst_fill (elements, vector, 2);
14562 /* Try with and without a step
14563 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
14564 for (unsigned int i = 3; i < 8; i += 2)
14565 elements[i] = build_int_cst (element_type, i * 7);
14566 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14567 check_vector_cst_stepped (elements, vector, 2);
14569 /* Try a fully-general constant:
14570 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
14571 elements[5] = build_int_cst (element_type, 9990);
14572 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14573 check_vector_cst_fill (elements, vector, 4);
14576 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
14577 Helper function for test_location_wrappers, to deal with STRIP_NOPS
14578 modifying its argument in-place. */
14580 static void
14581 check_strip_nops (tree node, tree expected)
14583 STRIP_NOPS (node);
14584 ASSERT_EQ (expected, node);
14587 /* Verify location wrappers. */
14589 static void
14590 test_location_wrappers ()
14592 location_t loc = BUILTINS_LOCATION;
14594 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
14596 /* Wrapping a constant. */
14597 tree int_cst = build_int_cst (integer_type_node, 42);
14598 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
14599 ASSERT_FALSE (location_wrapper_p (int_cst));
14601 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
14602 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
14603 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
14604 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
14606 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
14607 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
14609 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
14610 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
14611 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
14612 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
14614 /* Wrapping a STRING_CST. */
14615 tree string_cst = build_string (4, "foo");
14616 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
14617 ASSERT_FALSE (location_wrapper_p (string_cst));
14619 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
14620 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
14621 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
14622 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
14623 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
14626 /* Wrapping a variable. */
14627 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
14628 get_identifier ("some_int_var"),
14629 integer_type_node);
14630 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
14631 ASSERT_FALSE (location_wrapper_p (int_var));
14633 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
14634 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
14635 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
14636 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
14638 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
14639 wrapper. */
14640 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
14641 ASSERT_FALSE (location_wrapper_p (r_cast));
14642 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
14644 /* Verify that STRIP_NOPS removes wrappers. */
14645 check_strip_nops (wrapped_int_cst, int_cst);
14646 check_strip_nops (wrapped_string_cst, string_cst);
14647 check_strip_nops (wrapped_int_var, int_var);
14650 /* Check that string escaping works correctly. */
14652 static void
14653 test_escaped_strings (void)
14655 int saved_cutoff;
14656 escaped_string msg;
14658 msg.escape (NULL);
14659 /* ASSERT_STREQ does not accept NULL as a valid test
14660 result, so we have to use ASSERT_EQ instead. */
14661 ASSERT_EQ (NULL, (const char *) msg);
14663 msg.escape ("");
14664 ASSERT_STREQ ("", (const char *) msg);
14666 msg.escape ("foobar");
14667 ASSERT_STREQ ("foobar", (const char *) msg);
14669 /* Ensure that we have -fmessage-length set to 0. */
14670 saved_cutoff = pp_line_cutoff (global_dc->printer);
14671 pp_line_cutoff (global_dc->printer) = 0;
14673 msg.escape ("foo\nbar");
14674 ASSERT_STREQ ("foo\\nbar", (const char *) msg);
14676 msg.escape ("\a\b\f\n\r\t\v");
14677 ASSERT_STREQ ("\\a\\b\\f\\n\\r\\t\\v", (const char *) msg);
14679 /* Now repeat the tests with -fmessage-length set to 5. */
14680 pp_line_cutoff (global_dc->printer) = 5;
14682 /* Note that the newline is not translated into an escape. */
14683 msg.escape ("foo\nbar");
14684 ASSERT_STREQ ("foo\nbar", (const char *) msg);
14686 msg.escape ("\a\b\f\n\r\t\v");
14687 ASSERT_STREQ ("\\a\\b\\f\n\\r\\t\\v", (const char *) msg);
14689 /* Restore the original message length setting. */
14690 pp_line_cutoff (global_dc->printer) = saved_cutoff;
14693 /* Run all of the selftests within this file. */
14695 void
14696 tree_c_tests ()
14698 test_integer_constants ();
14699 test_identifiers ();
14700 test_labels ();
14701 test_vector_cst_patterns ();
14702 test_location_wrappers ();
14703 test_escaped_strings ();
14706 } // namespace selftest
14708 #endif /* CHECKING_P */
14710 #include "gt-tree.h"