2018-06-14 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / tree.c
blob2d3b26ed66b29df68bab3835b4a7dea8a3116ebf
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_ */
348 const char * const omp_clause_code_name[] =
350 "error_clause",
351 "private",
352 "shared",
353 "firstprivate",
354 "lastprivate",
355 "reduction",
356 "copyin",
357 "copyprivate",
358 "linear",
359 "aligned",
360 "depend",
361 "uniform",
362 "to",
363 "link",
364 "from",
365 "to",
366 "map",
367 "use_device_ptr",
368 "is_device_ptr",
369 "_cache_",
370 "gang",
371 "async",
372 "wait",
373 "auto",
374 "seq",
375 "_looptemp_",
376 "if",
377 "num_threads",
378 "schedule",
379 "nowait",
380 "ordered",
381 "default",
382 "collapse",
383 "untied",
384 "final",
385 "mergeable",
386 "device",
387 "dist_schedule",
388 "inbranch",
389 "notinbranch",
390 "num_teams",
391 "thread_limit",
392 "proc_bind",
393 "safelen",
394 "simdlen",
395 "for",
396 "parallel",
397 "sections",
398 "taskgroup",
399 "priority",
400 "grainsize",
401 "num_tasks",
402 "nogroup",
403 "threads",
404 "simd",
405 "hint",
406 "defaultmap",
407 "_simduid_",
408 "_simt_",
409 "independent",
410 "worker",
411 "vector",
412 "num_gangs",
413 "num_workers",
414 "vector_length",
415 "tile",
416 "_griddim_"
420 /* Return the tree node structure used by tree code CODE. */
422 static inline enum tree_node_structure_enum
423 tree_node_structure_for_code (enum tree_code code)
425 switch (TREE_CODE_CLASS (code))
427 case tcc_declaration:
429 switch (code)
431 case FIELD_DECL:
432 return TS_FIELD_DECL;
433 case PARM_DECL:
434 return TS_PARM_DECL;
435 case VAR_DECL:
436 return TS_VAR_DECL;
437 case LABEL_DECL:
438 return TS_LABEL_DECL;
439 case RESULT_DECL:
440 return TS_RESULT_DECL;
441 case DEBUG_EXPR_DECL:
442 return TS_DECL_WRTL;
443 case CONST_DECL:
444 return TS_CONST_DECL;
445 case TYPE_DECL:
446 return TS_TYPE_DECL;
447 case FUNCTION_DECL:
448 return TS_FUNCTION_DECL;
449 case TRANSLATION_UNIT_DECL:
450 return TS_TRANSLATION_UNIT_DECL;
451 default:
452 return TS_DECL_NON_COMMON;
455 case tcc_type:
456 return TS_TYPE_NON_COMMON;
457 case tcc_reference:
458 case tcc_comparison:
459 case tcc_unary:
460 case tcc_binary:
461 case tcc_expression:
462 case tcc_statement:
463 case tcc_vl_exp:
464 return TS_EXP;
465 default: /* tcc_constant and tcc_exceptional */
466 break;
468 switch (code)
470 /* tcc_constant cases. */
471 case VOID_CST: return TS_TYPED;
472 case INTEGER_CST: return TS_INT_CST;
473 case POLY_INT_CST: return TS_POLY_INT_CST;
474 case REAL_CST: return TS_REAL_CST;
475 case FIXED_CST: return TS_FIXED_CST;
476 case COMPLEX_CST: return TS_COMPLEX;
477 case VECTOR_CST: return TS_VECTOR;
478 case STRING_CST: return TS_STRING;
479 /* tcc_exceptional cases. */
480 case ERROR_MARK: return TS_COMMON;
481 case IDENTIFIER_NODE: return TS_IDENTIFIER;
482 case TREE_LIST: return TS_LIST;
483 case TREE_VEC: return TS_VEC;
484 case SSA_NAME: return TS_SSA_NAME;
485 case PLACEHOLDER_EXPR: return TS_COMMON;
486 case STATEMENT_LIST: return TS_STATEMENT_LIST;
487 case BLOCK: return TS_BLOCK;
488 case CONSTRUCTOR: return TS_CONSTRUCTOR;
489 case TREE_BINFO: return TS_BINFO;
490 case OMP_CLAUSE: return TS_OMP_CLAUSE;
491 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
492 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
494 default:
495 gcc_unreachable ();
500 /* Initialize tree_contains_struct to describe the hierarchy of tree
501 nodes. */
503 static void
504 initialize_tree_contains_struct (void)
506 unsigned i;
508 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
510 enum tree_code code;
511 enum tree_node_structure_enum ts_code;
513 code = (enum tree_code) i;
514 ts_code = tree_node_structure_for_code (code);
516 /* Mark the TS structure itself. */
517 tree_contains_struct[code][ts_code] = 1;
519 /* Mark all the structures that TS is derived from. */
520 switch (ts_code)
522 case TS_TYPED:
523 case TS_BLOCK:
524 case TS_OPTIMIZATION:
525 case TS_TARGET_OPTION:
526 MARK_TS_BASE (code);
527 break;
529 case TS_COMMON:
530 case TS_INT_CST:
531 case TS_POLY_INT_CST:
532 case TS_REAL_CST:
533 case TS_FIXED_CST:
534 case TS_VECTOR:
535 case TS_STRING:
536 case TS_COMPLEX:
537 case TS_SSA_NAME:
538 case TS_CONSTRUCTOR:
539 case TS_EXP:
540 case TS_STATEMENT_LIST:
541 MARK_TS_TYPED (code);
542 break;
544 case TS_IDENTIFIER:
545 case TS_DECL_MINIMAL:
546 case TS_TYPE_COMMON:
547 case TS_LIST:
548 case TS_VEC:
549 case TS_BINFO:
550 case TS_OMP_CLAUSE:
551 MARK_TS_COMMON (code);
552 break;
554 case TS_TYPE_WITH_LANG_SPECIFIC:
555 MARK_TS_TYPE_COMMON (code);
556 break;
558 case TS_TYPE_NON_COMMON:
559 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
560 break;
562 case TS_DECL_COMMON:
563 MARK_TS_DECL_MINIMAL (code);
564 break;
566 case TS_DECL_WRTL:
567 case TS_CONST_DECL:
568 MARK_TS_DECL_COMMON (code);
569 break;
571 case TS_DECL_NON_COMMON:
572 MARK_TS_DECL_WITH_VIS (code);
573 break;
575 case TS_DECL_WITH_VIS:
576 case TS_PARM_DECL:
577 case TS_LABEL_DECL:
578 case TS_RESULT_DECL:
579 MARK_TS_DECL_WRTL (code);
580 break;
582 case TS_FIELD_DECL:
583 MARK_TS_DECL_COMMON (code);
584 break;
586 case TS_VAR_DECL:
587 MARK_TS_DECL_WITH_VIS (code);
588 break;
590 case TS_TYPE_DECL:
591 case TS_FUNCTION_DECL:
592 MARK_TS_DECL_NON_COMMON (code);
593 break;
595 case TS_TRANSLATION_UNIT_DECL:
596 MARK_TS_DECL_COMMON (code);
597 break;
599 default:
600 gcc_unreachable ();
604 /* Basic consistency checks for attributes used in fold. */
605 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
606 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
607 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
608 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
609 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
610 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
611 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
612 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
613 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
614 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
615 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
616 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
617 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
618 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
619 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
620 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
621 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
622 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
623 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
624 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
625 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
626 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
627 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
628 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
629 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
630 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
631 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
632 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
633 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
634 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
635 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
636 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
637 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
638 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
639 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
640 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
641 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
642 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
643 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
644 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
648 /* Init tree.c. */
650 void
651 init_ttree (void)
653 /* Initialize the hash table of types. */
654 type_hash_table
655 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
657 debug_expr_for_decl
658 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
660 value_expr_for_decl
661 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
663 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
665 poly_int_cst_hash_table = hash_table<poly_int_cst_hasher>::create_ggc (64);
667 int_cst_node = make_int_cst (1, 1);
669 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
671 cl_optimization_node = make_node (OPTIMIZATION_NODE);
672 cl_target_option_node = make_node (TARGET_OPTION_NODE);
674 /* Initialize the tree_contains_struct array. */
675 initialize_tree_contains_struct ();
676 lang_hooks.init_ts ();
680 /* The name of the object as the assembler will see it (but before any
681 translations made by ASM_OUTPUT_LABELREF). Often this is the same
682 as DECL_NAME. It is an IDENTIFIER_NODE. */
683 tree
684 decl_assembler_name (tree decl)
686 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
687 lang_hooks.set_decl_assembler_name (decl);
688 return DECL_ASSEMBLER_NAME_RAW (decl);
691 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
692 (either of which may be NULL). Inform the FE, if this changes the
693 name. */
695 void
696 overwrite_decl_assembler_name (tree decl, tree name)
698 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
699 lang_hooks.overwrite_decl_assembler_name (decl, name);
702 /* When the target supports COMDAT groups, this indicates which group the
703 DECL is associated with. This can be either an IDENTIFIER_NODE or a
704 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
705 tree
706 decl_comdat_group (const_tree node)
708 struct symtab_node *snode = symtab_node::get (node);
709 if (!snode)
710 return NULL;
711 return snode->get_comdat_group ();
714 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
715 tree
716 decl_comdat_group_id (const_tree node)
718 struct symtab_node *snode = symtab_node::get (node);
719 if (!snode)
720 return NULL;
721 return snode->get_comdat_group_id ();
724 /* When the target supports named section, return its name as IDENTIFIER_NODE
725 or NULL if it is in no section. */
726 const char *
727 decl_section_name (const_tree node)
729 struct symtab_node *snode = symtab_node::get (node);
730 if (!snode)
731 return NULL;
732 return snode->get_section ();
735 /* Set section name of NODE to VALUE (that is expected to be
736 identifier node) */
737 void
738 set_decl_section_name (tree node, const char *value)
740 struct symtab_node *snode;
742 if (value == NULL)
744 snode = symtab_node::get (node);
745 if (!snode)
746 return;
748 else if (VAR_P (node))
749 snode = varpool_node::get_create (node);
750 else
751 snode = cgraph_node::get_create (node);
752 snode->set_section (value);
755 /* Return TLS model of a variable NODE. */
756 enum tls_model
757 decl_tls_model (const_tree node)
759 struct varpool_node *snode = varpool_node::get (node);
760 if (!snode)
761 return TLS_MODEL_NONE;
762 return snode->tls_model;
765 /* Set TLS model of variable NODE to MODEL. */
766 void
767 set_decl_tls_model (tree node, enum tls_model model)
769 struct varpool_node *vnode;
771 if (model == TLS_MODEL_NONE)
773 vnode = varpool_node::get (node);
774 if (!vnode)
775 return;
777 else
778 vnode = varpool_node::get_create (node);
779 vnode->tls_model = model;
782 /* Compute the number of bytes occupied by a tree with code CODE.
783 This function cannot be used for nodes that have variable sizes,
784 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
785 size_t
786 tree_code_size (enum tree_code code)
788 switch (TREE_CODE_CLASS (code))
790 case tcc_declaration: /* A decl node */
791 switch (code)
793 case FIELD_DECL: return sizeof (tree_field_decl);
794 case PARM_DECL: return sizeof (tree_parm_decl);
795 case VAR_DECL: return sizeof (tree_var_decl);
796 case LABEL_DECL: return sizeof (tree_label_decl);
797 case RESULT_DECL: return sizeof (tree_result_decl);
798 case CONST_DECL: return sizeof (tree_const_decl);
799 case TYPE_DECL: return sizeof (tree_type_decl);
800 case FUNCTION_DECL: return sizeof (tree_function_decl);
801 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
802 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
803 case NAMESPACE_DECL:
804 case IMPORTED_DECL:
805 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
806 default:
807 gcc_checking_assert (code >= NUM_TREE_CODES);
808 return lang_hooks.tree_size (code);
811 case tcc_type: /* a type node */
812 switch (code)
814 case OFFSET_TYPE:
815 case ENUMERAL_TYPE:
816 case BOOLEAN_TYPE:
817 case INTEGER_TYPE:
818 case REAL_TYPE:
819 case POINTER_TYPE:
820 case REFERENCE_TYPE:
821 case NULLPTR_TYPE:
822 case FIXED_POINT_TYPE:
823 case COMPLEX_TYPE:
824 case VECTOR_TYPE:
825 case ARRAY_TYPE:
826 case RECORD_TYPE:
827 case UNION_TYPE:
828 case QUAL_UNION_TYPE:
829 case VOID_TYPE:
830 case FUNCTION_TYPE:
831 case METHOD_TYPE:
832 case LANG_TYPE: return sizeof (tree_type_non_common);
833 default:
834 gcc_checking_assert (code >= NUM_TREE_CODES);
835 return lang_hooks.tree_size (code);
838 case tcc_reference: /* a reference */
839 case tcc_expression: /* an expression */
840 case tcc_statement: /* an expression with side effects */
841 case tcc_comparison: /* a comparison expression */
842 case tcc_unary: /* a unary arithmetic expression */
843 case tcc_binary: /* a binary arithmetic expression */
844 return (sizeof (struct tree_exp)
845 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
847 case tcc_constant: /* a constant */
848 switch (code)
850 case VOID_CST: return sizeof (tree_typed);
851 case INTEGER_CST: gcc_unreachable ();
852 case POLY_INT_CST: return sizeof (tree_poly_int_cst);
853 case REAL_CST: return sizeof (tree_real_cst);
854 case FIXED_CST: return sizeof (tree_fixed_cst);
855 case COMPLEX_CST: return sizeof (tree_complex);
856 case VECTOR_CST: gcc_unreachable ();
857 case STRING_CST: gcc_unreachable ();
858 default:
859 gcc_checking_assert (code >= NUM_TREE_CODES);
860 return lang_hooks.tree_size (code);
863 case tcc_exceptional: /* something random, like an identifier. */
864 switch (code)
866 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
867 case TREE_LIST: return sizeof (tree_list);
869 case ERROR_MARK:
870 case PLACEHOLDER_EXPR: return sizeof (tree_common);
872 case TREE_VEC: gcc_unreachable ();
873 case OMP_CLAUSE: gcc_unreachable ();
875 case SSA_NAME: return sizeof (tree_ssa_name);
877 case STATEMENT_LIST: return sizeof (tree_statement_list);
878 case BLOCK: return sizeof (struct tree_block);
879 case CONSTRUCTOR: return sizeof (tree_constructor);
880 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
881 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
883 default:
884 gcc_checking_assert (code >= NUM_TREE_CODES);
885 return lang_hooks.tree_size (code);
888 default:
889 gcc_unreachable ();
893 /* Compute the number of bytes occupied by NODE. This routine only
894 looks at TREE_CODE, except for those nodes that have variable sizes. */
895 size_t
896 tree_size (const_tree node)
898 const enum tree_code code = TREE_CODE (node);
899 switch (code)
901 case INTEGER_CST:
902 return (sizeof (struct tree_int_cst)
903 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
905 case TREE_BINFO:
906 return (offsetof (struct tree_binfo, base_binfos)
907 + vec<tree, va_gc>
908 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
910 case TREE_VEC:
911 return (sizeof (struct tree_vec)
912 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
914 case VECTOR_CST:
915 return (sizeof (struct tree_vector)
916 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
918 case STRING_CST:
919 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
921 case OMP_CLAUSE:
922 return (sizeof (struct tree_omp_clause)
923 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
924 * sizeof (tree));
926 default:
927 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
928 return (sizeof (struct tree_exp)
929 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
930 else
931 return tree_code_size (code);
935 /* Return tree node kind based on tree CODE. */
937 static tree_node_kind
938 get_stats_node_kind (enum tree_code code)
940 enum tree_code_class type = TREE_CODE_CLASS (code);
942 switch (type)
944 case tcc_declaration: /* A decl node */
945 return d_kind;
946 case tcc_type: /* a type node */
947 return t_kind;
948 case tcc_statement: /* an expression with side effects */
949 return s_kind;
950 case tcc_reference: /* a reference */
951 return r_kind;
952 case tcc_expression: /* an expression */
953 case tcc_comparison: /* a comparison expression */
954 case tcc_unary: /* a unary arithmetic expression */
955 case tcc_binary: /* a binary arithmetic expression */
956 return e_kind;
957 case tcc_constant: /* a constant */
958 return c_kind;
959 case tcc_exceptional: /* something random, like an identifier. */
960 switch (code)
962 case IDENTIFIER_NODE:
963 return id_kind;
964 case TREE_VEC:
965 return vec_kind;
966 case TREE_BINFO:
967 return binfo_kind;
968 case SSA_NAME:
969 return ssa_name_kind;
970 case BLOCK:
971 return b_kind;
972 case CONSTRUCTOR:
973 return constr_kind;
974 case OMP_CLAUSE:
975 return omp_clause_kind;
976 default:
977 return x_kind;
979 break;
980 case tcc_vl_exp:
981 return e_kind;
982 default:
983 gcc_unreachable ();
987 /* Record interesting allocation statistics for a tree node with CODE
988 and LENGTH. */
990 static void
991 record_node_allocation_statistics (enum tree_code code, size_t length)
993 if (!GATHER_STATISTICS)
994 return;
996 tree_node_kind kind = get_stats_node_kind (code);
998 tree_code_counts[(int) code]++;
999 tree_node_counts[(int) kind]++;
1000 tree_node_sizes[(int) kind] += length;
1003 /* Allocate and return a new UID from the DECL_UID namespace. */
1006 allocate_decl_uid (void)
1008 return next_decl_uid++;
1011 /* Return a newly allocated node of code CODE. For decl and type
1012 nodes, some other fields are initialized. The rest of the node is
1013 initialized to zero. This function cannot be used for TREE_VEC,
1014 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1015 tree_code_size.
1017 Achoo! I got a code in the node. */
1019 tree
1020 make_node (enum tree_code code MEM_STAT_DECL)
1022 tree t;
1023 enum tree_code_class type = TREE_CODE_CLASS (code);
1024 size_t length = tree_code_size (code);
1026 record_node_allocation_statistics (code, length);
1028 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1029 TREE_SET_CODE (t, code);
1031 switch (type)
1033 case tcc_statement:
1034 if (code != DEBUG_BEGIN_STMT)
1035 TREE_SIDE_EFFECTS (t) = 1;
1036 break;
1038 case tcc_declaration:
1039 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1041 if (code == FUNCTION_DECL)
1043 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1044 SET_DECL_MODE (t, FUNCTION_MODE);
1046 else
1047 SET_DECL_ALIGN (t, 1);
1049 DECL_SOURCE_LOCATION (t) = input_location;
1050 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1051 DECL_UID (t) = --next_debug_decl_uid;
1052 else
1054 DECL_UID (t) = allocate_decl_uid ();
1055 SET_DECL_PT_UID (t, -1);
1057 if (TREE_CODE (t) == LABEL_DECL)
1058 LABEL_DECL_UID (t) = -1;
1060 break;
1062 case tcc_type:
1063 TYPE_UID (t) = next_type_uid++;
1064 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1065 TYPE_USER_ALIGN (t) = 0;
1066 TYPE_MAIN_VARIANT (t) = t;
1067 TYPE_CANONICAL (t) = t;
1069 /* Default to no attributes for type, but let target change that. */
1070 TYPE_ATTRIBUTES (t) = NULL_TREE;
1071 targetm.set_default_type_attributes (t);
1073 /* We have not yet computed the alias set for this type. */
1074 TYPE_ALIAS_SET (t) = -1;
1075 break;
1077 case tcc_constant:
1078 TREE_CONSTANT (t) = 1;
1079 break;
1081 case tcc_expression:
1082 switch (code)
1084 case INIT_EXPR:
1085 case MODIFY_EXPR:
1086 case VA_ARG_EXPR:
1087 case PREDECREMENT_EXPR:
1088 case PREINCREMENT_EXPR:
1089 case POSTDECREMENT_EXPR:
1090 case POSTINCREMENT_EXPR:
1091 /* All of these have side-effects, no matter what their
1092 operands are. */
1093 TREE_SIDE_EFFECTS (t) = 1;
1094 break;
1096 default:
1097 break;
1099 break;
1101 case tcc_exceptional:
1102 switch (code)
1104 case TARGET_OPTION_NODE:
1105 TREE_TARGET_OPTION(t)
1106 = ggc_cleared_alloc<struct cl_target_option> ();
1107 break;
1109 case OPTIMIZATION_NODE:
1110 TREE_OPTIMIZATION (t)
1111 = ggc_cleared_alloc<struct cl_optimization> ();
1112 break;
1114 default:
1115 break;
1117 break;
1119 default:
1120 /* Other classes need no special treatment. */
1121 break;
1124 return t;
1127 /* Free tree node. */
1129 void
1130 free_node (tree node)
1132 enum tree_code code = TREE_CODE (node);
1133 if (GATHER_STATISTICS)
1135 enum tree_node_kind kind = get_stats_node_kind (code);
1137 gcc_checking_assert (tree_code_counts[(int) TREE_CODE (node)] != 0);
1138 gcc_checking_assert (tree_node_counts[(int) kind] != 0);
1139 gcc_checking_assert (tree_node_sizes[(int) kind] >= tree_size (node));
1141 tree_code_counts[(int) TREE_CODE (node)]--;
1142 tree_node_counts[(int) kind]--;
1143 tree_node_sizes[(int) kind] -= tree_size (node);
1145 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1146 vec_free (CONSTRUCTOR_ELTS (node));
1147 else if (code == BLOCK)
1148 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1149 else if (code == TREE_BINFO)
1150 vec_free (BINFO_BASE_ACCESSES (node));
1151 ggc_free (node);
1154 /* Return a new node with the same contents as NODE except that its
1155 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1157 tree
1158 copy_node (tree node MEM_STAT_DECL)
1160 tree t;
1161 enum tree_code code = TREE_CODE (node);
1162 size_t length;
1164 gcc_assert (code != STATEMENT_LIST);
1166 length = tree_size (node);
1167 record_node_allocation_statistics (code, length);
1168 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1169 memcpy (t, node, length);
1171 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1172 TREE_CHAIN (t) = 0;
1173 TREE_ASM_WRITTEN (t) = 0;
1174 TREE_VISITED (t) = 0;
1176 if (TREE_CODE_CLASS (code) == tcc_declaration)
1178 if (code == DEBUG_EXPR_DECL)
1179 DECL_UID (t) = --next_debug_decl_uid;
1180 else
1182 DECL_UID (t) = allocate_decl_uid ();
1183 if (DECL_PT_UID_SET_P (node))
1184 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1186 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1187 && DECL_HAS_VALUE_EXPR_P (node))
1189 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1190 DECL_HAS_VALUE_EXPR_P (t) = 1;
1192 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1193 if (VAR_P (node))
1195 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1196 t->decl_with_vis.symtab_node = NULL;
1198 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1200 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1201 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1203 if (TREE_CODE (node) == FUNCTION_DECL)
1205 DECL_STRUCT_FUNCTION (t) = NULL;
1206 t->decl_with_vis.symtab_node = NULL;
1209 else if (TREE_CODE_CLASS (code) == tcc_type)
1211 TYPE_UID (t) = next_type_uid++;
1212 /* The following is so that the debug code for
1213 the copy is different from the original type.
1214 The two statements usually duplicate each other
1215 (because they clear fields of the same union),
1216 but the optimizer should catch that. */
1217 TYPE_SYMTAB_ADDRESS (t) = 0;
1218 TYPE_SYMTAB_DIE (t) = 0;
1220 /* Do not copy the values cache. */
1221 if (TYPE_CACHED_VALUES_P (t))
1223 TYPE_CACHED_VALUES_P (t) = 0;
1224 TYPE_CACHED_VALUES (t) = NULL_TREE;
1227 else if (code == TARGET_OPTION_NODE)
1229 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1230 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1231 sizeof (struct cl_target_option));
1233 else if (code == OPTIMIZATION_NODE)
1235 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1236 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1237 sizeof (struct cl_optimization));
1240 return t;
1243 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1244 For example, this can copy a list made of TREE_LIST nodes. */
1246 tree
1247 copy_list (tree list)
1249 tree head;
1250 tree prev, next;
1252 if (list == 0)
1253 return 0;
1255 head = prev = copy_node (list);
1256 next = TREE_CHAIN (list);
1257 while (next)
1259 TREE_CHAIN (prev) = copy_node (next);
1260 prev = TREE_CHAIN (prev);
1261 next = TREE_CHAIN (next);
1263 return head;
1267 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1268 INTEGER_CST with value CST and type TYPE. */
1270 static unsigned int
1271 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1273 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1274 /* We need extra HWIs if CST is an unsigned integer with its
1275 upper bit set. */
1276 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1277 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1278 return cst.get_len ();
1281 /* Return a new INTEGER_CST with value CST and type TYPE. */
1283 static tree
1284 build_new_int_cst (tree type, const wide_int &cst)
1286 unsigned int len = cst.get_len ();
1287 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1288 tree nt = make_int_cst (len, ext_len);
1290 if (len < ext_len)
1292 --ext_len;
1293 TREE_INT_CST_ELT (nt, ext_len)
1294 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1295 for (unsigned int i = len; i < ext_len; ++i)
1296 TREE_INT_CST_ELT (nt, i) = -1;
1298 else if (TYPE_UNSIGNED (type)
1299 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1301 len--;
1302 TREE_INT_CST_ELT (nt, len)
1303 = zext_hwi (cst.elt (len),
1304 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1307 for (unsigned int i = 0; i < len; i++)
1308 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1309 TREE_TYPE (nt) = type;
1310 return nt;
1313 /* Return a new POLY_INT_CST with coefficients COEFFS and type TYPE. */
1315 static tree
1316 build_new_poly_int_cst (tree type, tree (&coeffs)[NUM_POLY_INT_COEFFS]
1317 CXX_MEM_STAT_INFO)
1319 size_t length = sizeof (struct tree_poly_int_cst);
1320 record_node_allocation_statistics (POLY_INT_CST, length);
1322 tree t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1324 TREE_SET_CODE (t, POLY_INT_CST);
1325 TREE_CONSTANT (t) = 1;
1326 TREE_TYPE (t) = type;
1327 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1328 POLY_INT_CST_COEFF (t, i) = coeffs[i];
1329 return t;
1332 /* Create a constant tree that contains CST sign-extended to TYPE. */
1334 tree
1335 build_int_cst (tree type, poly_int64 cst)
1337 /* Support legacy code. */
1338 if (!type)
1339 type = integer_type_node;
1341 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1344 /* Create a constant tree that contains CST zero-extended to TYPE. */
1346 tree
1347 build_int_cstu (tree type, poly_uint64 cst)
1349 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1352 /* Create a constant tree that contains CST sign-extended to TYPE. */
1354 tree
1355 build_int_cst_type (tree type, poly_int64 cst)
1357 gcc_assert (type);
1358 return wide_int_to_tree (type, wi::shwi (cst, TYPE_PRECISION (type)));
1361 /* Constructs tree in type TYPE from with value given by CST. Signedness
1362 of CST is assumed to be the same as the signedness of TYPE. */
1364 tree
1365 double_int_to_tree (tree type, double_int cst)
1367 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1370 /* We force the wide_int CST to the range of the type TYPE by sign or
1371 zero extending it. OVERFLOWABLE indicates if we are interested in
1372 overflow of the value, when >0 we are only interested in signed
1373 overflow, for <0 we are interested in any overflow. OVERFLOWED
1374 indicates whether overflow has already occurred. CONST_OVERFLOWED
1375 indicates whether constant overflow has already occurred. We force
1376 T's value to be within range of T's type (by setting to 0 or 1 all
1377 the bits outside the type's range). We set TREE_OVERFLOWED if,
1378 OVERFLOWED is nonzero,
1379 or OVERFLOWABLE is >0 and signed overflow occurs
1380 or OVERFLOWABLE is <0 and any overflow occurs
1381 We return a new tree node for the extended wide_int. The node
1382 is shared if no overflow flags are set. */
1385 tree
1386 force_fit_type (tree type, const poly_wide_int_ref &cst,
1387 int overflowable, bool overflowed)
1389 signop sign = TYPE_SIGN (type);
1391 /* If we need to set overflow flags, return a new unshared node. */
1392 if (overflowed || !wi::fits_to_tree_p (cst, type))
1394 if (overflowed
1395 || overflowable < 0
1396 || (overflowable > 0 && sign == SIGNED))
1398 poly_wide_int tmp = poly_wide_int::from (cst, TYPE_PRECISION (type),
1399 sign);
1400 tree t;
1401 if (tmp.is_constant ())
1402 t = build_new_int_cst (type, tmp.coeffs[0]);
1403 else
1405 tree coeffs[NUM_POLY_INT_COEFFS];
1406 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1408 coeffs[i] = build_new_int_cst (type, tmp.coeffs[i]);
1409 TREE_OVERFLOW (coeffs[i]) = 1;
1411 t = build_new_poly_int_cst (type, coeffs);
1413 TREE_OVERFLOW (t) = 1;
1414 return t;
1418 /* Else build a shared node. */
1419 return wide_int_to_tree (type, cst);
1422 /* These are the hash table functions for the hash table of INTEGER_CST
1423 nodes of a sizetype. */
1425 /* Return the hash code X, an INTEGER_CST. */
1427 hashval_t
1428 int_cst_hasher::hash (tree x)
1430 const_tree const t = x;
1431 hashval_t code = TYPE_UID (TREE_TYPE (t));
1432 int i;
1434 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1435 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1437 return code;
1440 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1441 is the same as that given by *Y, which is the same. */
1443 bool
1444 int_cst_hasher::equal (tree x, tree y)
1446 const_tree const xt = x;
1447 const_tree const yt = y;
1449 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1450 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1451 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1452 return false;
1454 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1455 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1456 return false;
1458 return true;
1461 /* Create an INT_CST node of TYPE and value CST.
1462 The returned node is always shared. For small integers we use a
1463 per-type vector cache, for larger ones we use a single hash table.
1464 The value is extended from its precision according to the sign of
1465 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1466 the upper bits and ensures that hashing and value equality based
1467 upon the underlying HOST_WIDE_INTs works without masking. */
1469 static tree
1470 wide_int_to_tree_1 (tree type, const wide_int_ref &pcst)
1472 tree t;
1473 int ix = -1;
1474 int limit = 0;
1476 gcc_assert (type);
1477 unsigned int prec = TYPE_PRECISION (type);
1478 signop sgn = TYPE_SIGN (type);
1480 /* Verify that everything is canonical. */
1481 int l = pcst.get_len ();
1482 if (l > 1)
1484 if (pcst.elt (l - 1) == 0)
1485 gcc_checking_assert (pcst.elt (l - 2) < 0);
1486 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1487 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1490 wide_int cst = wide_int::from (pcst, prec, sgn);
1491 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1493 if (ext_len == 1)
1495 /* We just need to store a single HOST_WIDE_INT. */
1496 HOST_WIDE_INT hwi;
1497 if (TYPE_UNSIGNED (type))
1498 hwi = cst.to_uhwi ();
1499 else
1500 hwi = cst.to_shwi ();
1502 switch (TREE_CODE (type))
1504 case NULLPTR_TYPE:
1505 gcc_assert (hwi == 0);
1506 /* Fallthru. */
1508 case POINTER_TYPE:
1509 case REFERENCE_TYPE:
1510 /* Cache NULL pointer and zero bounds. */
1511 if (hwi == 0)
1513 limit = 1;
1514 ix = 0;
1516 break;
1518 case BOOLEAN_TYPE:
1519 /* Cache false or true. */
1520 limit = 2;
1521 if (IN_RANGE (hwi, 0, 1))
1522 ix = hwi;
1523 break;
1525 case INTEGER_TYPE:
1526 case OFFSET_TYPE:
1527 if (TYPE_SIGN (type) == UNSIGNED)
1529 /* Cache [0, N). */
1530 limit = INTEGER_SHARE_LIMIT;
1531 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1532 ix = hwi;
1534 else
1536 /* Cache [-1, N). */
1537 limit = INTEGER_SHARE_LIMIT + 1;
1538 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1539 ix = hwi + 1;
1541 break;
1543 case ENUMERAL_TYPE:
1544 break;
1546 default:
1547 gcc_unreachable ();
1550 if (ix >= 0)
1552 /* Look for it in the type's vector of small shared ints. */
1553 if (!TYPE_CACHED_VALUES_P (type))
1555 TYPE_CACHED_VALUES_P (type) = 1;
1556 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1559 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1560 if (t)
1561 /* Make sure no one is clobbering the shared constant. */
1562 gcc_checking_assert (TREE_TYPE (t) == type
1563 && TREE_INT_CST_NUNITS (t) == 1
1564 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1565 && TREE_INT_CST_EXT_NUNITS (t) == 1
1566 && TREE_INT_CST_ELT (t, 0) == hwi);
1567 else
1569 /* Create a new shared int. */
1570 t = build_new_int_cst (type, cst);
1571 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1574 else
1576 /* Use the cache of larger shared ints, using int_cst_node as
1577 a temporary. */
1579 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1580 TREE_TYPE (int_cst_node) = type;
1582 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1583 t = *slot;
1584 if (!t)
1586 /* Insert this one into the hash table. */
1587 t = int_cst_node;
1588 *slot = t;
1589 /* Make a new node for next time round. */
1590 int_cst_node = make_int_cst (1, 1);
1594 else
1596 /* The value either hashes properly or we drop it on the floor
1597 for the gc to take care of. There will not be enough of them
1598 to worry about. */
1600 tree nt = build_new_int_cst (type, cst);
1601 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1602 t = *slot;
1603 if (!t)
1605 /* Insert this one into the hash table. */
1606 t = nt;
1607 *slot = t;
1609 else
1610 ggc_free (nt);
1613 return t;
1616 hashval_t
1617 poly_int_cst_hasher::hash (tree t)
1619 inchash::hash hstate;
1621 hstate.add_int (TYPE_UID (TREE_TYPE (t)));
1622 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1623 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
1625 return hstate.end ();
1628 bool
1629 poly_int_cst_hasher::equal (tree x, const compare_type &y)
1631 if (TREE_TYPE (x) != y.first)
1632 return false;
1633 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1634 if (wi::to_wide (POLY_INT_CST_COEFF (x, i)) != y.second->coeffs[i])
1635 return false;
1636 return true;
1639 /* Build a POLY_INT_CST node with type TYPE and with the elements in VALUES.
1640 The elements must also have type TYPE. */
1642 tree
1643 build_poly_int_cst (tree type, const poly_wide_int_ref &values)
1645 unsigned int prec = TYPE_PRECISION (type);
1646 gcc_assert (prec <= values.coeffs[0].get_precision ());
1647 poly_wide_int c = poly_wide_int::from (values, prec, SIGNED);
1649 inchash::hash h;
1650 h.add_int (TYPE_UID (type));
1651 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1652 h.add_wide_int (c.coeffs[i]);
1653 poly_int_cst_hasher::compare_type comp (type, &c);
1654 tree *slot = poly_int_cst_hash_table->find_slot_with_hash (comp, h.end (),
1655 INSERT);
1656 if (*slot == NULL_TREE)
1658 tree coeffs[NUM_POLY_INT_COEFFS];
1659 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1660 coeffs[i] = wide_int_to_tree_1 (type, c.coeffs[i]);
1661 *slot = build_new_poly_int_cst (type, coeffs);
1663 return *slot;
1666 /* Create a constant tree with value VALUE in type TYPE. */
1668 tree
1669 wide_int_to_tree (tree type, const poly_wide_int_ref &value)
1671 if (value.is_constant ())
1672 return wide_int_to_tree_1 (type, value.coeffs[0]);
1673 return build_poly_int_cst (type, value);
1676 void
1677 cache_integer_cst (tree t)
1679 tree type = TREE_TYPE (t);
1680 int ix = -1;
1681 int limit = 0;
1682 int prec = TYPE_PRECISION (type);
1684 gcc_assert (!TREE_OVERFLOW (t));
1686 switch (TREE_CODE (type))
1688 case NULLPTR_TYPE:
1689 gcc_assert (integer_zerop (t));
1690 /* Fallthru. */
1692 case POINTER_TYPE:
1693 case REFERENCE_TYPE:
1694 /* Cache NULL pointer. */
1695 if (integer_zerop (t))
1697 limit = 1;
1698 ix = 0;
1700 break;
1702 case BOOLEAN_TYPE:
1703 /* Cache false or true. */
1704 limit = 2;
1705 if (wi::ltu_p (wi::to_wide (t), 2))
1706 ix = TREE_INT_CST_ELT (t, 0);
1707 break;
1709 case INTEGER_TYPE:
1710 case OFFSET_TYPE:
1711 if (TYPE_UNSIGNED (type))
1713 /* Cache 0..N */
1714 limit = INTEGER_SHARE_LIMIT;
1716 /* This is a little hokie, but if the prec is smaller than
1717 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1718 obvious test will not get the correct answer. */
1719 if (prec < HOST_BITS_PER_WIDE_INT)
1721 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1722 ix = tree_to_uhwi (t);
1724 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1725 ix = tree_to_uhwi (t);
1727 else
1729 /* Cache -1..N */
1730 limit = INTEGER_SHARE_LIMIT + 1;
1732 if (integer_minus_onep (t))
1733 ix = 0;
1734 else if (!wi::neg_p (wi::to_wide (t)))
1736 if (prec < HOST_BITS_PER_WIDE_INT)
1738 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1739 ix = tree_to_shwi (t) + 1;
1741 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1742 ix = tree_to_shwi (t) + 1;
1745 break;
1747 case ENUMERAL_TYPE:
1748 break;
1750 default:
1751 gcc_unreachable ();
1754 if (ix >= 0)
1756 /* Look for it in the type's vector of small shared ints. */
1757 if (!TYPE_CACHED_VALUES_P (type))
1759 TYPE_CACHED_VALUES_P (type) = 1;
1760 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1763 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1764 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1766 else
1768 /* Use the cache of larger shared ints. */
1769 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1770 /* If there is already an entry for the number verify it's the
1771 same. */
1772 if (*slot)
1773 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1774 else
1775 /* Otherwise insert this one into the hash table. */
1776 *slot = t;
1781 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1782 and the rest are zeros. */
1784 tree
1785 build_low_bits_mask (tree type, unsigned bits)
1787 gcc_assert (bits <= TYPE_PRECISION (type));
1789 return wide_int_to_tree (type, wi::mask (bits, false,
1790 TYPE_PRECISION (type)));
1793 /* Checks that X is integer constant that can be expressed in (unsigned)
1794 HOST_WIDE_INT without loss of precision. */
1796 bool
1797 cst_and_fits_in_hwi (const_tree x)
1799 return (TREE_CODE (x) == INTEGER_CST
1800 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1803 /* Build a newly constructed VECTOR_CST with the given values of
1804 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1806 tree
1807 make_vector (unsigned log2_npatterns,
1808 unsigned int nelts_per_pattern MEM_STAT_DECL)
1810 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1811 tree t;
1812 unsigned npatterns = 1 << log2_npatterns;
1813 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1814 unsigned length = (sizeof (struct tree_vector)
1815 + (encoded_nelts - 1) * sizeof (tree));
1817 record_node_allocation_statistics (VECTOR_CST, length);
1819 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1821 TREE_SET_CODE (t, VECTOR_CST);
1822 TREE_CONSTANT (t) = 1;
1823 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1824 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1826 return t;
1829 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1830 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1832 tree
1833 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1835 unsigned HOST_WIDE_INT idx, nelts;
1836 tree value;
1838 /* We can't construct a VECTOR_CST for a variable number of elements. */
1839 nelts = TYPE_VECTOR_SUBPARTS (type).to_constant ();
1840 tree_vector_builder vec (type, nelts, 1);
1841 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1843 if (TREE_CODE (value) == VECTOR_CST)
1845 /* If NELTS is constant then this must be too. */
1846 unsigned int sub_nelts = VECTOR_CST_NELTS (value).to_constant ();
1847 for (unsigned i = 0; i < sub_nelts; ++i)
1848 vec.quick_push (VECTOR_CST_ELT (value, i));
1850 else
1851 vec.quick_push (value);
1853 while (vec.length () < nelts)
1854 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1856 return vec.build ();
1859 /* Build a vector of type VECTYPE where all the elements are SCs. */
1860 tree
1861 build_vector_from_val (tree vectype, tree sc)
1863 unsigned HOST_WIDE_INT i, nunits;
1865 if (sc == error_mark_node)
1866 return sc;
1868 /* Verify that the vector type is suitable for SC. Note that there
1869 is some inconsistency in the type-system with respect to restrict
1870 qualifications of pointers. Vector types always have a main-variant
1871 element type and the qualification is applied to the vector-type.
1872 So TREE_TYPE (vector-type) does not return a properly qualified
1873 vector element-type. */
1874 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1875 TREE_TYPE (vectype)));
1877 if (CONSTANT_CLASS_P (sc))
1879 tree_vector_builder v (vectype, 1, 1);
1880 v.quick_push (sc);
1881 return v.build ();
1883 else if (!TYPE_VECTOR_SUBPARTS (vectype).is_constant (&nunits))
1884 return fold_build1 (VEC_DUPLICATE_EXPR, vectype, sc);
1885 else
1887 vec<constructor_elt, va_gc> *v;
1888 vec_alloc (v, nunits);
1889 for (i = 0; i < nunits; ++i)
1890 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1891 return build_constructor (vectype, v);
1895 /* Build a vector series of type TYPE in which element I has the value
1896 BASE + I * STEP. The result is a constant if BASE and STEP are constant
1897 and a VEC_SERIES_EXPR otherwise. */
1899 tree
1900 build_vec_series (tree type, tree base, tree step)
1902 if (integer_zerop (step))
1903 return build_vector_from_val (type, base);
1904 if (TREE_CODE (base) == INTEGER_CST && TREE_CODE (step) == INTEGER_CST)
1906 tree_vector_builder builder (type, 1, 3);
1907 tree elt1 = wide_int_to_tree (TREE_TYPE (base),
1908 wi::to_wide (base) + wi::to_wide (step));
1909 tree elt2 = wide_int_to_tree (TREE_TYPE (base),
1910 wi::to_wide (elt1) + wi::to_wide (step));
1911 builder.quick_push (base);
1912 builder.quick_push (elt1);
1913 builder.quick_push (elt2);
1914 return builder.build ();
1916 return build2 (VEC_SERIES_EXPR, type, base, step);
1919 /* Return a vector with the same number of units and number of bits
1920 as VEC_TYPE, but in which the elements are a linear series of unsigned
1921 integers { BASE, BASE + STEP, BASE + STEP * 2, ... }. */
1923 tree
1924 build_index_vector (tree vec_type, poly_uint64 base, poly_uint64 step)
1926 tree index_vec_type = vec_type;
1927 tree index_elt_type = TREE_TYPE (vec_type);
1928 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vec_type);
1929 if (!INTEGRAL_TYPE_P (index_elt_type) || !TYPE_UNSIGNED (index_elt_type))
1931 index_elt_type = build_nonstandard_integer_type
1932 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (index_elt_type)), true);
1933 index_vec_type = build_vector_type (index_elt_type, nunits);
1936 tree_vector_builder v (index_vec_type, 1, 3);
1937 for (unsigned int i = 0; i < 3; ++i)
1938 v.quick_push (build_int_cstu (index_elt_type, base + i * step));
1939 return v.build ();
1942 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1943 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1945 void
1946 recompute_constructor_flags (tree c)
1948 unsigned int i;
1949 tree val;
1950 bool constant_p = true;
1951 bool side_effects_p = false;
1952 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1954 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1956 /* Mostly ctors will have elts that don't have side-effects, so
1957 the usual case is to scan all the elements. Hence a single
1958 loop for both const and side effects, rather than one loop
1959 each (with early outs). */
1960 if (!TREE_CONSTANT (val))
1961 constant_p = false;
1962 if (TREE_SIDE_EFFECTS (val))
1963 side_effects_p = true;
1966 TREE_SIDE_EFFECTS (c) = side_effects_p;
1967 TREE_CONSTANT (c) = constant_p;
1970 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1971 CONSTRUCTOR C. */
1973 void
1974 verify_constructor_flags (tree c)
1976 unsigned int i;
1977 tree val;
1978 bool constant_p = TREE_CONSTANT (c);
1979 bool side_effects_p = TREE_SIDE_EFFECTS (c);
1980 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1982 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1984 if (constant_p && !TREE_CONSTANT (val))
1985 internal_error ("non-constant element in constant CONSTRUCTOR");
1986 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
1987 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1991 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1992 are in the vec pointed to by VALS. */
1993 tree
1994 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1996 tree c = make_node (CONSTRUCTOR);
1998 TREE_TYPE (c) = type;
1999 CONSTRUCTOR_ELTS (c) = vals;
2001 recompute_constructor_flags (c);
2003 return c;
2006 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
2007 INDEX and VALUE. */
2008 tree
2009 build_constructor_single (tree type, tree index, tree value)
2011 vec<constructor_elt, va_gc> *v;
2012 constructor_elt elt = {index, value};
2014 vec_alloc (v, 1);
2015 v->quick_push (elt);
2017 return build_constructor (type, v);
2021 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
2022 are in a list pointed to by VALS. */
2023 tree
2024 build_constructor_from_list (tree type, tree vals)
2026 tree t;
2027 vec<constructor_elt, va_gc> *v = NULL;
2029 if (vals)
2031 vec_alloc (v, list_length (vals));
2032 for (t = vals; t; t = TREE_CHAIN (t))
2033 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
2036 return build_constructor (type, v);
2039 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
2040 of elements, provided as index/value pairs. */
2042 tree
2043 build_constructor_va (tree type, int nelts, ...)
2045 vec<constructor_elt, va_gc> *v = NULL;
2046 va_list p;
2048 va_start (p, nelts);
2049 vec_alloc (v, nelts);
2050 while (nelts--)
2052 tree index = va_arg (p, tree);
2053 tree value = va_arg (p, tree);
2054 CONSTRUCTOR_APPEND_ELT (v, index, value);
2056 va_end (p);
2057 return build_constructor (type, v);
2060 /* Return a node of type TYPE for which TREE_CLOBBER_P is true. */
2062 tree
2063 build_clobber (tree type)
2065 tree clobber = build_constructor (type, NULL);
2066 TREE_THIS_VOLATILE (clobber) = true;
2067 return clobber;
2070 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
2072 tree
2073 build_fixed (tree type, FIXED_VALUE_TYPE f)
2075 tree v;
2076 FIXED_VALUE_TYPE *fp;
2078 v = make_node (FIXED_CST);
2079 fp = ggc_alloc<fixed_value> ();
2080 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
2082 TREE_TYPE (v) = type;
2083 TREE_FIXED_CST_PTR (v) = fp;
2084 return v;
2087 /* Return a new REAL_CST node whose type is TYPE and value is D. */
2089 tree
2090 build_real (tree type, REAL_VALUE_TYPE d)
2092 tree v;
2093 REAL_VALUE_TYPE *dp;
2094 int overflow = 0;
2096 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
2097 Consider doing it via real_convert now. */
2099 v = make_node (REAL_CST);
2100 dp = ggc_alloc<real_value> ();
2101 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
2103 TREE_TYPE (v) = type;
2104 TREE_REAL_CST_PTR (v) = dp;
2105 TREE_OVERFLOW (v) = overflow;
2106 return v;
2109 /* Like build_real, but first truncate D to the type. */
2111 tree
2112 build_real_truncate (tree type, REAL_VALUE_TYPE d)
2114 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
2117 /* Return a new REAL_CST node whose type is TYPE
2118 and whose value is the integer value of the INTEGER_CST node I. */
2120 REAL_VALUE_TYPE
2121 real_value_from_int_cst (const_tree type, const_tree i)
2123 REAL_VALUE_TYPE d;
2125 /* Clear all bits of the real value type so that we can later do
2126 bitwise comparisons to see if two values are the same. */
2127 memset (&d, 0, sizeof d);
2129 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
2130 TYPE_SIGN (TREE_TYPE (i)));
2131 return d;
2134 /* Given a tree representing an integer constant I, return a tree
2135 representing the same value as a floating-point constant of type TYPE. */
2137 tree
2138 build_real_from_int_cst (tree type, const_tree i)
2140 tree v;
2141 int overflow = TREE_OVERFLOW (i);
2143 v = build_real (type, real_value_from_int_cst (type, i));
2145 TREE_OVERFLOW (v) |= overflow;
2146 return v;
2149 /* Return a newly constructed STRING_CST node whose value is
2150 the LEN characters at STR.
2151 Note that for a C string literal, LEN should include the trailing NUL.
2152 The TREE_TYPE is not initialized. */
2154 tree
2155 build_string (int len, const char *str)
2157 tree s;
2158 size_t length;
2160 /* Do not waste bytes provided by padding of struct tree_string. */
2161 length = len + offsetof (struct tree_string, str) + 1;
2163 record_node_allocation_statistics (STRING_CST, length);
2165 s = (tree) ggc_internal_alloc (length);
2167 memset (s, 0, sizeof (struct tree_typed));
2168 TREE_SET_CODE (s, STRING_CST);
2169 TREE_CONSTANT (s) = 1;
2170 TREE_STRING_LENGTH (s) = len;
2171 memcpy (s->string.str, str, len);
2172 s->string.str[len] = '\0';
2174 return s;
2177 /* Return a newly constructed COMPLEX_CST node whose value is
2178 specified by the real and imaginary parts REAL and IMAG.
2179 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2180 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2182 tree
2183 build_complex (tree type, tree real, tree imag)
2185 tree t = make_node (COMPLEX_CST);
2187 TREE_REALPART (t) = real;
2188 TREE_IMAGPART (t) = imag;
2189 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2190 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2191 return t;
2194 /* Build a complex (inf +- 0i), such as for the result of cproj.
2195 TYPE is the complex tree type of the result. If NEG is true, the
2196 imaginary zero is negative. */
2198 tree
2199 build_complex_inf (tree type, bool neg)
2201 REAL_VALUE_TYPE rinf, rzero = dconst0;
2203 real_inf (&rinf);
2204 rzero.sign = neg;
2205 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2206 build_real (TREE_TYPE (type), rzero));
2209 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2210 element is set to 1. In particular, this is 1 + i for complex types. */
2212 tree
2213 build_each_one_cst (tree type)
2215 if (TREE_CODE (type) == COMPLEX_TYPE)
2217 tree scalar = build_one_cst (TREE_TYPE (type));
2218 return build_complex (type, scalar, scalar);
2220 else
2221 return build_one_cst (type);
2224 /* Return a constant of arithmetic type TYPE which is the
2225 multiplicative identity of the set TYPE. */
2227 tree
2228 build_one_cst (tree type)
2230 switch (TREE_CODE (type))
2232 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2233 case POINTER_TYPE: case REFERENCE_TYPE:
2234 case OFFSET_TYPE:
2235 return build_int_cst (type, 1);
2237 case REAL_TYPE:
2238 return build_real (type, dconst1);
2240 case FIXED_POINT_TYPE:
2241 /* We can only generate 1 for accum types. */
2242 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2243 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2245 case VECTOR_TYPE:
2247 tree scalar = build_one_cst (TREE_TYPE (type));
2249 return build_vector_from_val (type, scalar);
2252 case COMPLEX_TYPE:
2253 return build_complex (type,
2254 build_one_cst (TREE_TYPE (type)),
2255 build_zero_cst (TREE_TYPE (type)));
2257 default:
2258 gcc_unreachable ();
2262 /* Return an integer of type TYPE containing all 1's in as much precision as
2263 it contains, or a complex or vector whose subparts are such integers. */
2265 tree
2266 build_all_ones_cst (tree type)
2268 if (TREE_CODE (type) == COMPLEX_TYPE)
2270 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2271 return build_complex (type, scalar, scalar);
2273 else
2274 return build_minus_one_cst (type);
2277 /* Return a constant of arithmetic type TYPE which is the
2278 opposite of the multiplicative identity of the set TYPE. */
2280 tree
2281 build_minus_one_cst (tree type)
2283 switch (TREE_CODE (type))
2285 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2286 case POINTER_TYPE: case REFERENCE_TYPE:
2287 case OFFSET_TYPE:
2288 return build_int_cst (type, -1);
2290 case REAL_TYPE:
2291 return build_real (type, dconstm1);
2293 case FIXED_POINT_TYPE:
2294 /* We can only generate 1 for accum types. */
2295 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2296 return build_fixed (type,
2297 fixed_from_double_int (double_int_minus_one,
2298 SCALAR_TYPE_MODE (type)));
2300 case VECTOR_TYPE:
2302 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2304 return build_vector_from_val (type, scalar);
2307 case COMPLEX_TYPE:
2308 return build_complex (type,
2309 build_minus_one_cst (TREE_TYPE (type)),
2310 build_zero_cst (TREE_TYPE (type)));
2312 default:
2313 gcc_unreachable ();
2317 /* Build 0 constant of type TYPE. This is used by constructor folding
2318 and thus the constant should be represented in memory by
2319 zero(es). */
2321 tree
2322 build_zero_cst (tree type)
2324 switch (TREE_CODE (type))
2326 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2327 case POINTER_TYPE: case REFERENCE_TYPE:
2328 case OFFSET_TYPE: case NULLPTR_TYPE:
2329 return build_int_cst (type, 0);
2331 case REAL_TYPE:
2332 return build_real (type, dconst0);
2334 case FIXED_POINT_TYPE:
2335 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2337 case VECTOR_TYPE:
2339 tree scalar = build_zero_cst (TREE_TYPE (type));
2341 return build_vector_from_val (type, scalar);
2344 case COMPLEX_TYPE:
2346 tree zero = build_zero_cst (TREE_TYPE (type));
2348 return build_complex (type, zero, zero);
2351 default:
2352 if (!AGGREGATE_TYPE_P (type))
2353 return fold_convert (type, integer_zero_node);
2354 return build_constructor (type, NULL);
2359 /* Build a BINFO with LEN language slots. */
2361 tree
2362 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2364 tree t;
2365 size_t length = (offsetof (struct tree_binfo, base_binfos)
2366 + vec<tree, va_gc>::embedded_size (base_binfos));
2368 record_node_allocation_statistics (TREE_BINFO, length);
2370 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2372 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2374 TREE_SET_CODE (t, TREE_BINFO);
2376 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2378 return t;
2381 /* Create a CASE_LABEL_EXPR tree node and return it. */
2383 tree
2384 build_case_label (tree low_value, tree high_value, tree label_decl)
2386 tree t = make_node (CASE_LABEL_EXPR);
2388 TREE_TYPE (t) = void_type_node;
2389 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2391 CASE_LOW (t) = low_value;
2392 CASE_HIGH (t) = high_value;
2393 CASE_LABEL (t) = label_decl;
2394 CASE_CHAIN (t) = NULL_TREE;
2396 return t;
2399 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2400 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2401 The latter determines the length of the HOST_WIDE_INT vector. */
2403 tree
2404 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2406 tree t;
2407 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2408 + sizeof (struct tree_int_cst));
2410 gcc_assert (len);
2411 record_node_allocation_statistics (INTEGER_CST, length);
2413 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2415 TREE_SET_CODE (t, INTEGER_CST);
2416 TREE_INT_CST_NUNITS (t) = len;
2417 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2418 /* to_offset can only be applied to trees that are offset_int-sized
2419 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2420 must be exactly the precision of offset_int and so LEN is correct. */
2421 if (ext_len <= OFFSET_INT_ELTS)
2422 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2423 else
2424 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2426 TREE_CONSTANT (t) = 1;
2428 return t;
2431 /* Build a newly constructed TREE_VEC node of length LEN. */
2433 tree
2434 make_tree_vec (int len MEM_STAT_DECL)
2436 tree t;
2437 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2439 record_node_allocation_statistics (TREE_VEC, length);
2441 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2443 TREE_SET_CODE (t, TREE_VEC);
2444 TREE_VEC_LENGTH (t) = len;
2446 return t;
2449 /* Grow a TREE_VEC node to new length LEN. */
2451 tree
2452 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2454 gcc_assert (TREE_CODE (v) == TREE_VEC);
2456 int oldlen = TREE_VEC_LENGTH (v);
2457 gcc_assert (len > oldlen);
2459 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2460 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2462 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2464 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2466 TREE_VEC_LENGTH (v) = len;
2468 return v;
2471 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2472 fixed, and scalar, complex or vector. */
2475 zerop (const_tree expr)
2477 return (integer_zerop (expr)
2478 || real_zerop (expr)
2479 || fixed_zerop (expr));
2482 /* Return 1 if EXPR is the integer constant zero or a complex constant
2483 of zero. */
2486 integer_zerop (const_tree expr)
2488 switch (TREE_CODE (expr))
2490 case INTEGER_CST:
2491 return wi::to_wide (expr) == 0;
2492 case COMPLEX_CST:
2493 return (integer_zerop (TREE_REALPART (expr))
2494 && integer_zerop (TREE_IMAGPART (expr)));
2495 case VECTOR_CST:
2496 return (VECTOR_CST_NPATTERNS (expr) == 1
2497 && VECTOR_CST_DUPLICATE_P (expr)
2498 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr, 0)));
2499 default:
2500 return false;
2504 /* Return 1 if EXPR is the integer constant one or the corresponding
2505 complex constant. */
2508 integer_onep (const_tree expr)
2510 switch (TREE_CODE (expr))
2512 case INTEGER_CST:
2513 return wi::eq_p (wi::to_widest (expr), 1);
2514 case COMPLEX_CST:
2515 return (integer_onep (TREE_REALPART (expr))
2516 && integer_zerop (TREE_IMAGPART (expr)));
2517 case VECTOR_CST:
2518 return (VECTOR_CST_NPATTERNS (expr) == 1
2519 && VECTOR_CST_DUPLICATE_P (expr)
2520 && integer_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2521 default:
2522 return false;
2526 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2527 return 1 if every piece is the integer constant one. */
2530 integer_each_onep (const_tree expr)
2532 if (TREE_CODE (expr) == COMPLEX_CST)
2533 return (integer_onep (TREE_REALPART (expr))
2534 && integer_onep (TREE_IMAGPART (expr)));
2535 else
2536 return integer_onep (expr);
2539 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2540 it contains, or a complex or vector whose subparts are such integers. */
2543 integer_all_onesp (const_tree expr)
2545 if (TREE_CODE (expr) == COMPLEX_CST
2546 && integer_all_onesp (TREE_REALPART (expr))
2547 && integer_all_onesp (TREE_IMAGPART (expr)))
2548 return 1;
2550 else if (TREE_CODE (expr) == VECTOR_CST)
2551 return (VECTOR_CST_NPATTERNS (expr) == 1
2552 && VECTOR_CST_DUPLICATE_P (expr)
2553 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr, 0)));
2555 else if (TREE_CODE (expr) != INTEGER_CST)
2556 return 0;
2558 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2559 == wi::to_wide (expr));
2562 /* Return 1 if EXPR is the integer constant minus one. */
2565 integer_minus_onep (const_tree expr)
2567 if (TREE_CODE (expr) == COMPLEX_CST)
2568 return (integer_all_onesp (TREE_REALPART (expr))
2569 && integer_zerop (TREE_IMAGPART (expr)));
2570 else
2571 return integer_all_onesp (expr);
2574 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2575 one bit on). */
2578 integer_pow2p (const_tree expr)
2580 if (TREE_CODE (expr) == COMPLEX_CST
2581 && integer_pow2p (TREE_REALPART (expr))
2582 && integer_zerop (TREE_IMAGPART (expr)))
2583 return 1;
2585 if (TREE_CODE (expr) != INTEGER_CST)
2586 return 0;
2588 return wi::popcount (wi::to_wide (expr)) == 1;
2591 /* Return 1 if EXPR is an integer constant other than zero or a
2592 complex constant other than zero. */
2595 integer_nonzerop (const_tree expr)
2597 return ((TREE_CODE (expr) == INTEGER_CST
2598 && wi::to_wide (expr) != 0)
2599 || (TREE_CODE (expr) == COMPLEX_CST
2600 && (integer_nonzerop (TREE_REALPART (expr))
2601 || integer_nonzerop (TREE_IMAGPART (expr)))));
2604 /* Return 1 if EXPR is the integer constant one. For vector,
2605 return 1 if every piece is the integer constant minus one
2606 (representing the value TRUE). */
2609 integer_truep (const_tree expr)
2611 if (TREE_CODE (expr) == VECTOR_CST)
2612 return integer_all_onesp (expr);
2613 return integer_onep (expr);
2616 /* Return 1 if EXPR is the fixed-point constant zero. */
2619 fixed_zerop (const_tree expr)
2621 return (TREE_CODE (expr) == FIXED_CST
2622 && TREE_FIXED_CST (expr).data.is_zero ());
2625 /* Return the power of two represented by a tree node known to be a
2626 power of two. */
2629 tree_log2 (const_tree expr)
2631 if (TREE_CODE (expr) == COMPLEX_CST)
2632 return tree_log2 (TREE_REALPART (expr));
2634 return wi::exact_log2 (wi::to_wide (expr));
2637 /* Similar, but return the largest integer Y such that 2 ** Y is less
2638 than or equal to EXPR. */
2641 tree_floor_log2 (const_tree expr)
2643 if (TREE_CODE (expr) == COMPLEX_CST)
2644 return tree_log2 (TREE_REALPART (expr));
2646 return wi::floor_log2 (wi::to_wide (expr));
2649 /* Return number of known trailing zero bits in EXPR, or, if the value of
2650 EXPR is known to be zero, the precision of it's type. */
2652 unsigned int
2653 tree_ctz (const_tree expr)
2655 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2656 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2657 return 0;
2659 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2660 switch (TREE_CODE (expr))
2662 case INTEGER_CST:
2663 ret1 = wi::ctz (wi::to_wide (expr));
2664 return MIN (ret1, prec);
2665 case SSA_NAME:
2666 ret1 = wi::ctz (get_nonzero_bits (expr));
2667 return MIN (ret1, prec);
2668 case PLUS_EXPR:
2669 case MINUS_EXPR:
2670 case BIT_IOR_EXPR:
2671 case BIT_XOR_EXPR:
2672 case MIN_EXPR:
2673 case MAX_EXPR:
2674 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2675 if (ret1 == 0)
2676 return ret1;
2677 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2678 return MIN (ret1, ret2);
2679 case POINTER_PLUS_EXPR:
2680 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2681 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2682 /* Second operand is sizetype, which could be in theory
2683 wider than pointer's precision. Make sure we never
2684 return more than prec. */
2685 ret2 = MIN (ret2, prec);
2686 return MIN (ret1, ret2);
2687 case BIT_AND_EXPR:
2688 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2689 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2690 return MAX (ret1, ret2);
2691 case MULT_EXPR:
2692 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2693 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2694 return MIN (ret1 + ret2, prec);
2695 case LSHIFT_EXPR:
2696 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2697 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2698 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2700 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2701 return MIN (ret1 + ret2, prec);
2703 return ret1;
2704 case RSHIFT_EXPR:
2705 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2706 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2708 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2709 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2710 if (ret1 > ret2)
2711 return ret1 - ret2;
2713 return 0;
2714 case TRUNC_DIV_EXPR:
2715 case CEIL_DIV_EXPR:
2716 case FLOOR_DIV_EXPR:
2717 case ROUND_DIV_EXPR:
2718 case EXACT_DIV_EXPR:
2719 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2720 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2722 int l = tree_log2 (TREE_OPERAND (expr, 1));
2723 if (l >= 0)
2725 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2726 ret2 = l;
2727 if (ret1 > ret2)
2728 return ret1 - ret2;
2731 return 0;
2732 CASE_CONVERT:
2733 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2734 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2735 ret1 = prec;
2736 return MIN (ret1, prec);
2737 case SAVE_EXPR:
2738 return tree_ctz (TREE_OPERAND (expr, 0));
2739 case COND_EXPR:
2740 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2741 if (ret1 == 0)
2742 return 0;
2743 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2744 return MIN (ret1, ret2);
2745 case COMPOUND_EXPR:
2746 return tree_ctz (TREE_OPERAND (expr, 1));
2747 case ADDR_EXPR:
2748 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2749 if (ret1 > BITS_PER_UNIT)
2751 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2752 return MIN (ret1, prec);
2754 return 0;
2755 default:
2756 return 0;
2760 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2761 decimal float constants, so don't return 1 for them. */
2764 real_zerop (const_tree expr)
2766 switch (TREE_CODE (expr))
2768 case REAL_CST:
2769 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2770 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2771 case COMPLEX_CST:
2772 return real_zerop (TREE_REALPART (expr))
2773 && real_zerop (TREE_IMAGPART (expr));
2774 case VECTOR_CST:
2776 /* Don't simply check for a duplicate because the predicate
2777 accepts both +0.0 and -0.0. */
2778 unsigned count = vector_cst_encoded_nelts (expr);
2779 for (unsigned int i = 0; i < count; ++i)
2780 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
2781 return false;
2782 return true;
2784 default:
2785 return false;
2789 /* Return 1 if EXPR is the real constant one in real or complex form.
2790 Trailing zeroes matter for decimal float constants, so don't return
2791 1 for them. */
2794 real_onep (const_tree expr)
2796 switch (TREE_CODE (expr))
2798 case REAL_CST:
2799 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2800 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2801 case COMPLEX_CST:
2802 return real_onep (TREE_REALPART (expr))
2803 && real_zerop (TREE_IMAGPART (expr));
2804 case VECTOR_CST:
2805 return (VECTOR_CST_NPATTERNS (expr) == 1
2806 && VECTOR_CST_DUPLICATE_P (expr)
2807 && real_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2808 default:
2809 return false;
2813 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2814 matter for decimal float constants, so don't return 1 for them. */
2817 real_minus_onep (const_tree expr)
2819 switch (TREE_CODE (expr))
2821 case REAL_CST:
2822 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2823 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2824 case COMPLEX_CST:
2825 return real_minus_onep (TREE_REALPART (expr))
2826 && real_zerop (TREE_IMAGPART (expr));
2827 case VECTOR_CST:
2828 return (VECTOR_CST_NPATTERNS (expr) == 1
2829 && VECTOR_CST_DUPLICATE_P (expr)
2830 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr, 0)));
2831 default:
2832 return false;
2836 /* Nonzero if EXP is a constant or a cast of a constant. */
2839 really_constant_p (const_tree exp)
2841 /* This is not quite the same as STRIP_NOPS. It does more. */
2842 while (CONVERT_EXPR_P (exp)
2843 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2844 exp = TREE_OPERAND (exp, 0);
2845 return TREE_CONSTANT (exp);
2848 /* Return true if T holds a polynomial pointer difference, storing it in
2849 *VALUE if so. A true return means that T's precision is no greater
2850 than 64 bits, which is the largest address space we support, so *VALUE
2851 never loses precision. However, the signedness of the result does
2852 not necessarily match the signedness of T: sometimes an unsigned type
2853 like sizetype is used to encode a value that is actually negative. */
2855 bool
2856 ptrdiff_tree_p (const_tree t, poly_int64_pod *value)
2858 if (!t)
2859 return false;
2860 if (TREE_CODE (t) == INTEGER_CST)
2862 if (!cst_and_fits_in_hwi (t))
2863 return false;
2864 *value = int_cst_value (t);
2865 return true;
2867 if (POLY_INT_CST_P (t))
2869 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2870 if (!cst_and_fits_in_hwi (POLY_INT_CST_COEFF (t, i)))
2871 return false;
2872 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
2873 value->coeffs[i] = int_cst_value (POLY_INT_CST_COEFF (t, i));
2874 return true;
2876 return false;
2879 poly_int64
2880 tree_to_poly_int64 (const_tree t)
2882 gcc_assert (tree_fits_poly_int64_p (t));
2883 if (POLY_INT_CST_P (t))
2884 return poly_int_cst_value (t).force_shwi ();
2885 return TREE_INT_CST_LOW (t);
2888 poly_uint64
2889 tree_to_poly_uint64 (const_tree t)
2891 gcc_assert (tree_fits_poly_uint64_p (t));
2892 if (POLY_INT_CST_P (t))
2893 return poly_int_cst_value (t).force_uhwi ();
2894 return TREE_INT_CST_LOW (t);
2897 /* Return first list element whose TREE_VALUE is ELEM.
2898 Return 0 if ELEM is not in LIST. */
2900 tree
2901 value_member (tree elem, tree list)
2903 while (list)
2905 if (elem == TREE_VALUE (list))
2906 return list;
2907 list = TREE_CHAIN (list);
2909 return NULL_TREE;
2912 /* Return first list element whose TREE_PURPOSE is ELEM.
2913 Return 0 if ELEM is not in LIST. */
2915 tree
2916 purpose_member (const_tree elem, tree list)
2918 while (list)
2920 if (elem == TREE_PURPOSE (list))
2921 return list;
2922 list = TREE_CHAIN (list);
2924 return NULL_TREE;
2927 /* Return true if ELEM is in V. */
2929 bool
2930 vec_member (const_tree elem, vec<tree, va_gc> *v)
2932 unsigned ix;
2933 tree t;
2934 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2935 if (elem == t)
2936 return true;
2937 return false;
2940 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2941 NULL_TREE. */
2943 tree
2944 chain_index (int idx, tree chain)
2946 for (; chain && idx > 0; --idx)
2947 chain = TREE_CHAIN (chain);
2948 return chain;
2951 /* Return nonzero if ELEM is part of the chain CHAIN. */
2954 chain_member (const_tree elem, const_tree chain)
2956 while (chain)
2958 if (elem == chain)
2959 return 1;
2960 chain = DECL_CHAIN (chain);
2963 return 0;
2966 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2967 We expect a null pointer to mark the end of the chain.
2968 This is the Lisp primitive `length'. */
2971 list_length (const_tree t)
2973 const_tree p = t;
2974 #ifdef ENABLE_TREE_CHECKING
2975 const_tree q = t;
2976 #endif
2977 int len = 0;
2979 while (p)
2981 p = TREE_CHAIN (p);
2982 #ifdef ENABLE_TREE_CHECKING
2983 if (len % 2)
2984 q = TREE_CHAIN (q);
2985 gcc_assert (p != q);
2986 #endif
2987 len++;
2990 return len;
2993 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2994 UNION_TYPE TYPE, or NULL_TREE if none. */
2996 tree
2997 first_field (const_tree type)
2999 tree t = TYPE_FIELDS (type);
3000 while (t && TREE_CODE (t) != FIELD_DECL)
3001 t = TREE_CHAIN (t);
3002 return t;
3005 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
3006 by modifying the last node in chain 1 to point to chain 2.
3007 This is the Lisp primitive `nconc'. */
3009 tree
3010 chainon (tree op1, tree op2)
3012 tree t1;
3014 if (!op1)
3015 return op2;
3016 if (!op2)
3017 return op1;
3019 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
3020 continue;
3021 TREE_CHAIN (t1) = op2;
3023 #ifdef ENABLE_TREE_CHECKING
3025 tree t2;
3026 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
3027 gcc_assert (t2 != t1);
3029 #endif
3031 return op1;
3034 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
3036 tree
3037 tree_last (tree chain)
3039 tree next;
3040 if (chain)
3041 while ((next = TREE_CHAIN (chain)))
3042 chain = next;
3043 return chain;
3046 /* Reverse the order of elements in the chain T,
3047 and return the new head of the chain (old last element). */
3049 tree
3050 nreverse (tree t)
3052 tree prev = 0, decl, next;
3053 for (decl = t; decl; decl = next)
3055 /* We shouldn't be using this function to reverse BLOCK chains; we
3056 have blocks_nreverse for that. */
3057 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
3058 next = TREE_CHAIN (decl);
3059 TREE_CHAIN (decl) = prev;
3060 prev = decl;
3062 return prev;
3065 /* Return a newly created TREE_LIST node whose
3066 purpose and value fields are PARM and VALUE. */
3068 tree
3069 build_tree_list (tree parm, tree value MEM_STAT_DECL)
3071 tree t = make_node (TREE_LIST PASS_MEM_STAT);
3072 TREE_PURPOSE (t) = parm;
3073 TREE_VALUE (t) = value;
3074 return t;
3077 /* Build a chain of TREE_LIST nodes from a vector. */
3079 tree
3080 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
3082 tree ret = NULL_TREE;
3083 tree *pp = &ret;
3084 unsigned int i;
3085 tree t;
3086 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
3088 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
3089 pp = &TREE_CHAIN (*pp);
3091 return ret;
3094 /* Return a newly created TREE_LIST node whose
3095 purpose and value fields are PURPOSE and VALUE
3096 and whose TREE_CHAIN is CHAIN. */
3098 tree
3099 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
3101 tree node;
3103 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
3104 memset (node, 0, sizeof (struct tree_common));
3106 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
3108 TREE_SET_CODE (node, TREE_LIST);
3109 TREE_CHAIN (node) = chain;
3110 TREE_PURPOSE (node) = purpose;
3111 TREE_VALUE (node) = value;
3112 return node;
3115 /* Return the values of the elements of a CONSTRUCTOR as a vector of
3116 trees. */
3118 vec<tree, va_gc> *
3119 ctor_to_vec (tree ctor)
3121 vec<tree, va_gc> *vec;
3122 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
3123 unsigned int ix;
3124 tree val;
3126 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
3127 vec->quick_push (val);
3129 return vec;
3132 /* Return the size nominally occupied by an object of type TYPE
3133 when it resides in memory. The value is measured in units of bytes,
3134 and its data type is that normally used for type sizes
3135 (which is the first type created by make_signed_type or
3136 make_unsigned_type). */
3138 tree
3139 size_in_bytes_loc (location_t loc, const_tree type)
3141 tree t;
3143 if (type == error_mark_node)
3144 return integer_zero_node;
3146 type = TYPE_MAIN_VARIANT (type);
3147 t = TYPE_SIZE_UNIT (type);
3149 if (t == 0)
3151 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
3152 return size_zero_node;
3155 return t;
3158 /* Return the size of TYPE (in bytes) as a wide integer
3159 or return -1 if the size can vary or is larger than an integer. */
3161 HOST_WIDE_INT
3162 int_size_in_bytes (const_tree type)
3164 tree t;
3166 if (type == error_mark_node)
3167 return 0;
3169 type = TYPE_MAIN_VARIANT (type);
3170 t = TYPE_SIZE_UNIT (type);
3172 if (t && tree_fits_uhwi_p (t))
3173 return TREE_INT_CST_LOW (t);
3174 else
3175 return -1;
3178 /* Return the maximum size of TYPE (in bytes) as a wide integer
3179 or return -1 if the size can vary or is larger than an integer. */
3181 HOST_WIDE_INT
3182 max_int_size_in_bytes (const_tree type)
3184 HOST_WIDE_INT size = -1;
3185 tree size_tree;
3187 /* If this is an array type, check for a possible MAX_SIZE attached. */
3189 if (TREE_CODE (type) == ARRAY_TYPE)
3191 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3193 if (size_tree && tree_fits_uhwi_p (size_tree))
3194 size = tree_to_uhwi (size_tree);
3197 /* If we still haven't been able to get a size, see if the language
3198 can compute a maximum size. */
3200 if (size == -1)
3202 size_tree = lang_hooks.types.max_size (type);
3204 if (size_tree && tree_fits_uhwi_p (size_tree))
3205 size = tree_to_uhwi (size_tree);
3208 return size;
3211 /* Return the bit position of FIELD, in bits from the start of the record.
3212 This is a tree of type bitsizetype. */
3214 tree
3215 bit_position (const_tree field)
3217 return bit_from_pos (DECL_FIELD_OFFSET (field),
3218 DECL_FIELD_BIT_OFFSET (field));
3221 /* Return the byte position of FIELD, in bytes from the start of the record.
3222 This is a tree of type sizetype. */
3224 tree
3225 byte_position (const_tree field)
3227 return byte_from_pos (DECL_FIELD_OFFSET (field),
3228 DECL_FIELD_BIT_OFFSET (field));
3231 /* Likewise, but return as an integer. It must be representable in
3232 that way (since it could be a signed value, we don't have the
3233 option of returning -1 like int_size_in_byte can. */
3235 HOST_WIDE_INT
3236 int_byte_position (const_tree field)
3238 return tree_to_shwi (byte_position (field));
3241 /* Return the strictest alignment, in bits, that T is known to have. */
3243 unsigned int
3244 expr_align (const_tree t)
3246 unsigned int align0, align1;
3248 switch (TREE_CODE (t))
3250 CASE_CONVERT: case NON_LVALUE_EXPR:
3251 /* If we have conversions, we know that the alignment of the
3252 object must meet each of the alignments of the types. */
3253 align0 = expr_align (TREE_OPERAND (t, 0));
3254 align1 = TYPE_ALIGN (TREE_TYPE (t));
3255 return MAX (align0, align1);
3257 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3258 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3259 case CLEANUP_POINT_EXPR:
3260 /* These don't change the alignment of an object. */
3261 return expr_align (TREE_OPERAND (t, 0));
3263 case COND_EXPR:
3264 /* The best we can do is say that the alignment is the least aligned
3265 of the two arms. */
3266 align0 = expr_align (TREE_OPERAND (t, 1));
3267 align1 = expr_align (TREE_OPERAND (t, 2));
3268 return MIN (align0, align1);
3270 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3271 meaningfully, it's always 1. */
3272 case LABEL_DECL: case CONST_DECL:
3273 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3274 case FUNCTION_DECL:
3275 gcc_assert (DECL_ALIGN (t) != 0);
3276 return DECL_ALIGN (t);
3278 default:
3279 break;
3282 /* Otherwise take the alignment from that of the type. */
3283 return TYPE_ALIGN (TREE_TYPE (t));
3286 /* Return, as a tree node, the number of elements for TYPE (which is an
3287 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3289 tree
3290 array_type_nelts (const_tree type)
3292 tree index_type, min, max;
3294 /* If they did it with unspecified bounds, then we should have already
3295 given an error about it before we got here. */
3296 if (! TYPE_DOMAIN (type))
3297 return error_mark_node;
3299 index_type = TYPE_DOMAIN (type);
3300 min = TYPE_MIN_VALUE (index_type);
3301 max = TYPE_MAX_VALUE (index_type);
3303 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3304 if (!max)
3305 return error_mark_node;
3307 return (integer_zerop (min)
3308 ? max
3309 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3312 /* If arg is static -- a reference to an object in static storage -- then
3313 return the object. This is not the same as the C meaning of `static'.
3314 If arg isn't static, return NULL. */
3316 tree
3317 staticp (tree arg)
3319 switch (TREE_CODE (arg))
3321 case FUNCTION_DECL:
3322 /* Nested functions are static, even though taking their address will
3323 involve a trampoline as we unnest the nested function and create
3324 the trampoline on the tree level. */
3325 return arg;
3327 case VAR_DECL:
3328 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3329 && ! DECL_THREAD_LOCAL_P (arg)
3330 && ! DECL_DLLIMPORT_P (arg)
3331 ? arg : NULL);
3333 case CONST_DECL:
3334 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3335 ? arg : NULL);
3337 case CONSTRUCTOR:
3338 return TREE_STATIC (arg) ? arg : NULL;
3340 case LABEL_DECL:
3341 case STRING_CST:
3342 return arg;
3344 case COMPONENT_REF:
3345 /* If the thing being referenced is not a field, then it is
3346 something language specific. */
3347 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3349 /* If we are referencing a bitfield, we can't evaluate an
3350 ADDR_EXPR at compile time and so it isn't a constant. */
3351 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3352 return NULL;
3354 return staticp (TREE_OPERAND (arg, 0));
3356 case BIT_FIELD_REF:
3357 return NULL;
3359 case INDIRECT_REF:
3360 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3362 case ARRAY_REF:
3363 case ARRAY_RANGE_REF:
3364 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3365 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3366 return staticp (TREE_OPERAND (arg, 0));
3367 else
3368 return NULL;
3370 case COMPOUND_LITERAL_EXPR:
3371 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3373 default:
3374 return NULL;
3381 /* Return whether OP is a DECL whose address is function-invariant. */
3383 bool
3384 decl_address_invariant_p (const_tree op)
3386 /* The conditions below are slightly less strict than the one in
3387 staticp. */
3389 switch (TREE_CODE (op))
3391 case PARM_DECL:
3392 case RESULT_DECL:
3393 case LABEL_DECL:
3394 case FUNCTION_DECL:
3395 return true;
3397 case VAR_DECL:
3398 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3399 || DECL_THREAD_LOCAL_P (op)
3400 || DECL_CONTEXT (op) == current_function_decl
3401 || decl_function_context (op) == current_function_decl)
3402 return true;
3403 break;
3405 case CONST_DECL:
3406 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3407 || decl_function_context (op) == current_function_decl)
3408 return true;
3409 break;
3411 default:
3412 break;
3415 return false;
3418 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3420 bool
3421 decl_address_ip_invariant_p (const_tree op)
3423 /* The conditions below are slightly less strict than the one in
3424 staticp. */
3426 switch (TREE_CODE (op))
3428 case LABEL_DECL:
3429 case FUNCTION_DECL:
3430 case STRING_CST:
3431 return true;
3433 case VAR_DECL:
3434 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3435 && !DECL_DLLIMPORT_P (op))
3436 || DECL_THREAD_LOCAL_P (op))
3437 return true;
3438 break;
3440 case CONST_DECL:
3441 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3442 return true;
3443 break;
3445 default:
3446 break;
3449 return false;
3453 /* Return true if T is function-invariant (internal function, does
3454 not handle arithmetic; that's handled in skip_simple_arithmetic and
3455 tree_invariant_p). */
3457 static bool
3458 tree_invariant_p_1 (tree t)
3460 tree op;
3462 if (TREE_CONSTANT (t)
3463 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3464 return true;
3466 switch (TREE_CODE (t))
3468 case SAVE_EXPR:
3469 return true;
3471 case ADDR_EXPR:
3472 op = TREE_OPERAND (t, 0);
3473 while (handled_component_p (op))
3475 switch (TREE_CODE (op))
3477 case ARRAY_REF:
3478 case ARRAY_RANGE_REF:
3479 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3480 || TREE_OPERAND (op, 2) != NULL_TREE
3481 || TREE_OPERAND (op, 3) != NULL_TREE)
3482 return false;
3483 break;
3485 case COMPONENT_REF:
3486 if (TREE_OPERAND (op, 2) != NULL_TREE)
3487 return false;
3488 break;
3490 default:;
3492 op = TREE_OPERAND (op, 0);
3495 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3497 default:
3498 break;
3501 return false;
3504 /* Return true if T is function-invariant. */
3506 bool
3507 tree_invariant_p (tree t)
3509 tree inner = skip_simple_arithmetic (t);
3510 return tree_invariant_p_1 (inner);
3513 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3514 Do this to any expression which may be used in more than one place,
3515 but must be evaluated only once.
3517 Normally, expand_expr would reevaluate the expression each time.
3518 Calling save_expr produces something that is evaluated and recorded
3519 the first time expand_expr is called on it. Subsequent calls to
3520 expand_expr just reuse the recorded value.
3522 The call to expand_expr that generates code that actually computes
3523 the value is the first call *at compile time*. Subsequent calls
3524 *at compile time* generate code to use the saved value.
3525 This produces correct result provided that *at run time* control
3526 always flows through the insns made by the first expand_expr
3527 before reaching the other places where the save_expr was evaluated.
3528 You, the caller of save_expr, must make sure this is so.
3530 Constants, and certain read-only nodes, are returned with no
3531 SAVE_EXPR because that is safe. Expressions containing placeholders
3532 are not touched; see tree.def for an explanation of what these
3533 are used for. */
3535 tree
3536 save_expr (tree expr)
3538 tree inner;
3540 /* If the tree evaluates to a constant, then we don't want to hide that
3541 fact (i.e. this allows further folding, and direct checks for constants).
3542 However, a read-only object that has side effects cannot be bypassed.
3543 Since it is no problem to reevaluate literals, we just return the
3544 literal node. */
3545 inner = skip_simple_arithmetic (expr);
3546 if (TREE_CODE (inner) == ERROR_MARK)
3547 return inner;
3549 if (tree_invariant_p_1 (inner))
3550 return expr;
3552 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3553 it means that the size or offset of some field of an object depends on
3554 the value within another field.
3556 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3557 and some variable since it would then need to be both evaluated once and
3558 evaluated more than once. Front-ends must assure this case cannot
3559 happen by surrounding any such subexpressions in their own SAVE_EXPR
3560 and forcing evaluation at the proper time. */
3561 if (contains_placeholder_p (inner))
3562 return expr;
3564 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3566 /* This expression might be placed ahead of a jump to ensure that the
3567 value was computed on both sides of the jump. So make sure it isn't
3568 eliminated as dead. */
3569 TREE_SIDE_EFFECTS (expr) = 1;
3570 return expr;
3573 /* Look inside EXPR into any simple arithmetic operations. Return the
3574 outermost non-arithmetic or non-invariant node. */
3576 tree
3577 skip_simple_arithmetic (tree expr)
3579 /* We don't care about whether this can be used as an lvalue in this
3580 context. */
3581 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3582 expr = TREE_OPERAND (expr, 0);
3584 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3585 a constant, it will be more efficient to not make another SAVE_EXPR since
3586 it will allow better simplification and GCSE will be able to merge the
3587 computations if they actually occur. */
3588 while (true)
3590 if (UNARY_CLASS_P (expr))
3591 expr = TREE_OPERAND (expr, 0);
3592 else if (BINARY_CLASS_P (expr))
3594 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3595 expr = TREE_OPERAND (expr, 0);
3596 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3597 expr = TREE_OPERAND (expr, 1);
3598 else
3599 break;
3601 else
3602 break;
3605 return expr;
3608 /* Look inside EXPR into simple arithmetic operations involving constants.
3609 Return the outermost non-arithmetic or non-constant node. */
3611 tree
3612 skip_simple_constant_arithmetic (tree expr)
3614 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3615 expr = TREE_OPERAND (expr, 0);
3617 while (true)
3619 if (UNARY_CLASS_P (expr))
3620 expr = TREE_OPERAND (expr, 0);
3621 else if (BINARY_CLASS_P (expr))
3623 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3624 expr = TREE_OPERAND (expr, 0);
3625 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3626 expr = TREE_OPERAND (expr, 1);
3627 else
3628 break;
3630 else
3631 break;
3634 return expr;
3637 /* Return which tree structure is used by T. */
3639 enum tree_node_structure_enum
3640 tree_node_structure (const_tree t)
3642 const enum tree_code code = TREE_CODE (t);
3643 return tree_node_structure_for_code (code);
3646 /* Set various status flags when building a CALL_EXPR object T. */
3648 static void
3649 process_call_operands (tree t)
3651 bool side_effects = TREE_SIDE_EFFECTS (t);
3652 bool read_only = false;
3653 int i = call_expr_flags (t);
3655 /* Calls have side-effects, except those to const or pure functions. */
3656 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3657 side_effects = true;
3658 /* Propagate TREE_READONLY of arguments for const functions. */
3659 if (i & ECF_CONST)
3660 read_only = true;
3662 if (!side_effects || read_only)
3663 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3665 tree op = TREE_OPERAND (t, i);
3666 if (op && TREE_SIDE_EFFECTS (op))
3667 side_effects = true;
3668 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3669 read_only = false;
3672 TREE_SIDE_EFFECTS (t) = side_effects;
3673 TREE_READONLY (t) = read_only;
3676 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3677 size or offset that depends on a field within a record. */
3679 bool
3680 contains_placeholder_p (const_tree exp)
3682 enum tree_code code;
3684 if (!exp)
3685 return 0;
3687 code = TREE_CODE (exp);
3688 if (code == PLACEHOLDER_EXPR)
3689 return 1;
3691 switch (TREE_CODE_CLASS (code))
3693 case tcc_reference:
3694 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3695 position computations since they will be converted into a
3696 WITH_RECORD_EXPR involving the reference, which will assume
3697 here will be valid. */
3698 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3700 case tcc_exceptional:
3701 if (code == TREE_LIST)
3702 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3703 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3704 break;
3706 case tcc_unary:
3707 case tcc_binary:
3708 case tcc_comparison:
3709 case tcc_expression:
3710 switch (code)
3712 case COMPOUND_EXPR:
3713 /* Ignoring the first operand isn't quite right, but works best. */
3714 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3716 case COND_EXPR:
3717 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3718 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3719 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3721 case SAVE_EXPR:
3722 /* The save_expr function never wraps anything containing
3723 a PLACEHOLDER_EXPR. */
3724 return 0;
3726 default:
3727 break;
3730 switch (TREE_CODE_LENGTH (code))
3732 case 1:
3733 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3734 case 2:
3735 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3736 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3737 default:
3738 return 0;
3741 case tcc_vl_exp:
3742 switch (code)
3744 case CALL_EXPR:
3746 const_tree arg;
3747 const_call_expr_arg_iterator iter;
3748 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3749 if (CONTAINS_PLACEHOLDER_P (arg))
3750 return 1;
3751 return 0;
3753 default:
3754 return 0;
3757 default:
3758 return 0;
3760 return 0;
3763 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3764 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3765 field positions. */
3767 static bool
3768 type_contains_placeholder_1 (const_tree type)
3770 /* If the size contains a placeholder or the parent type (component type in
3771 the case of arrays) type involves a placeholder, this type does. */
3772 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3773 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3774 || (!POINTER_TYPE_P (type)
3775 && TREE_TYPE (type)
3776 && type_contains_placeholder_p (TREE_TYPE (type))))
3777 return true;
3779 /* Now do type-specific checks. Note that the last part of the check above
3780 greatly limits what we have to do below. */
3781 switch (TREE_CODE (type))
3783 case VOID_TYPE:
3784 case COMPLEX_TYPE:
3785 case ENUMERAL_TYPE:
3786 case BOOLEAN_TYPE:
3787 case POINTER_TYPE:
3788 case OFFSET_TYPE:
3789 case REFERENCE_TYPE:
3790 case METHOD_TYPE:
3791 case FUNCTION_TYPE:
3792 case VECTOR_TYPE:
3793 case NULLPTR_TYPE:
3794 return false;
3796 case INTEGER_TYPE:
3797 case REAL_TYPE:
3798 case FIXED_POINT_TYPE:
3799 /* Here we just check the bounds. */
3800 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3801 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3803 case ARRAY_TYPE:
3804 /* We have already checked the component type above, so just check
3805 the domain type. Flexible array members have a null domain. */
3806 return TYPE_DOMAIN (type) ?
3807 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3809 case RECORD_TYPE:
3810 case UNION_TYPE:
3811 case QUAL_UNION_TYPE:
3813 tree field;
3815 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3816 if (TREE_CODE (field) == FIELD_DECL
3817 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3818 || (TREE_CODE (type) == QUAL_UNION_TYPE
3819 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3820 || type_contains_placeholder_p (TREE_TYPE (field))))
3821 return true;
3823 return false;
3826 default:
3827 gcc_unreachable ();
3831 /* Wrapper around above function used to cache its result. */
3833 bool
3834 type_contains_placeholder_p (tree type)
3836 bool result;
3838 /* If the contains_placeholder_bits field has been initialized,
3839 then we know the answer. */
3840 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3841 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3843 /* Indicate that we've seen this type node, and the answer is false.
3844 This is what we want to return if we run into recursion via fields. */
3845 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3847 /* Compute the real value. */
3848 result = type_contains_placeholder_1 (type);
3850 /* Store the real value. */
3851 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3853 return result;
3856 /* Push tree EXP onto vector QUEUE if it is not already present. */
3858 static void
3859 push_without_duplicates (tree exp, vec<tree> *queue)
3861 unsigned int i;
3862 tree iter;
3864 FOR_EACH_VEC_ELT (*queue, i, iter)
3865 if (simple_cst_equal (iter, exp) == 1)
3866 break;
3868 if (!iter)
3869 queue->safe_push (exp);
3872 /* Given a tree EXP, find all occurrences of references to fields
3873 in a PLACEHOLDER_EXPR and place them in vector REFS without
3874 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3875 we assume here that EXP contains only arithmetic expressions
3876 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3877 argument list. */
3879 void
3880 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3882 enum tree_code code = TREE_CODE (exp);
3883 tree inner;
3884 int i;
3886 /* We handle TREE_LIST and COMPONENT_REF separately. */
3887 if (code == TREE_LIST)
3889 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3890 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3892 else if (code == COMPONENT_REF)
3894 for (inner = TREE_OPERAND (exp, 0);
3895 REFERENCE_CLASS_P (inner);
3896 inner = TREE_OPERAND (inner, 0))
3899 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3900 push_without_duplicates (exp, refs);
3901 else
3902 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3904 else
3905 switch (TREE_CODE_CLASS (code))
3907 case tcc_constant:
3908 break;
3910 case tcc_declaration:
3911 /* Variables allocated to static storage can stay. */
3912 if (!TREE_STATIC (exp))
3913 push_without_duplicates (exp, refs);
3914 break;
3916 case tcc_expression:
3917 /* This is the pattern built in ada/make_aligning_type. */
3918 if (code == ADDR_EXPR
3919 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3921 push_without_duplicates (exp, refs);
3922 break;
3925 /* Fall through. */
3927 case tcc_exceptional:
3928 case tcc_unary:
3929 case tcc_binary:
3930 case tcc_comparison:
3931 case tcc_reference:
3932 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3933 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3934 break;
3936 case tcc_vl_exp:
3937 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3938 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3939 break;
3941 default:
3942 gcc_unreachable ();
3946 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3947 return a tree with all occurrences of references to F in a
3948 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3949 CONST_DECLs. Note that we assume here that EXP contains only
3950 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3951 occurring only in their argument list. */
3953 tree
3954 substitute_in_expr (tree exp, tree f, tree r)
3956 enum tree_code code = TREE_CODE (exp);
3957 tree op0, op1, op2, op3;
3958 tree new_tree;
3960 /* We handle TREE_LIST and COMPONENT_REF separately. */
3961 if (code == TREE_LIST)
3963 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3964 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3965 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3966 return exp;
3968 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3970 else if (code == COMPONENT_REF)
3972 tree inner;
3974 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3975 and it is the right field, replace it with R. */
3976 for (inner = TREE_OPERAND (exp, 0);
3977 REFERENCE_CLASS_P (inner);
3978 inner = TREE_OPERAND (inner, 0))
3981 /* The field. */
3982 op1 = TREE_OPERAND (exp, 1);
3984 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3985 return r;
3987 /* If this expression hasn't been completed let, leave it alone. */
3988 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3989 return exp;
3991 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3992 if (op0 == TREE_OPERAND (exp, 0))
3993 return exp;
3995 new_tree
3996 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3998 else
3999 switch (TREE_CODE_CLASS (code))
4001 case tcc_constant:
4002 return exp;
4004 case tcc_declaration:
4005 if (exp == f)
4006 return r;
4007 else
4008 return exp;
4010 case tcc_expression:
4011 if (exp == f)
4012 return r;
4014 /* Fall through. */
4016 case tcc_exceptional:
4017 case tcc_unary:
4018 case tcc_binary:
4019 case tcc_comparison:
4020 case tcc_reference:
4021 switch (TREE_CODE_LENGTH (code))
4023 case 0:
4024 return exp;
4026 case 1:
4027 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4028 if (op0 == TREE_OPERAND (exp, 0))
4029 return exp;
4031 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4032 break;
4034 case 2:
4035 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4036 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4038 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4039 return exp;
4041 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4042 break;
4044 case 3:
4045 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4046 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4047 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4049 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4050 && op2 == TREE_OPERAND (exp, 2))
4051 return exp;
4053 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4054 break;
4056 case 4:
4057 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
4058 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
4059 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
4060 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
4062 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4063 && op2 == TREE_OPERAND (exp, 2)
4064 && op3 == TREE_OPERAND (exp, 3))
4065 return exp;
4067 new_tree
4068 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4069 break;
4071 default:
4072 gcc_unreachable ();
4074 break;
4076 case tcc_vl_exp:
4078 int i;
4080 new_tree = NULL_TREE;
4082 /* If we are trying to replace F with a constant or with another
4083 instance of one of the arguments of the call, inline back
4084 functions which do nothing else than computing a value from
4085 the arguments they are passed. This makes it possible to
4086 fold partially or entirely the replacement expression. */
4087 if (code == CALL_EXPR)
4089 bool maybe_inline = false;
4090 if (CONSTANT_CLASS_P (r))
4091 maybe_inline = true;
4092 else
4093 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
4094 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
4096 maybe_inline = true;
4097 break;
4099 if (maybe_inline)
4101 tree t = maybe_inline_call_in_expr (exp);
4102 if (t)
4103 return SUBSTITUTE_IN_EXPR (t, f, r);
4107 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4109 tree op = TREE_OPERAND (exp, i);
4110 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
4111 if (new_op != op)
4113 if (!new_tree)
4114 new_tree = copy_node (exp);
4115 TREE_OPERAND (new_tree, i) = new_op;
4119 if (new_tree)
4121 new_tree = fold (new_tree);
4122 if (TREE_CODE (new_tree) == CALL_EXPR)
4123 process_call_operands (new_tree);
4125 else
4126 return exp;
4128 break;
4130 default:
4131 gcc_unreachable ();
4134 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4136 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4137 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4139 return new_tree;
4142 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
4143 for it within OBJ, a tree that is an object or a chain of references. */
4145 tree
4146 substitute_placeholder_in_expr (tree exp, tree obj)
4148 enum tree_code code = TREE_CODE (exp);
4149 tree op0, op1, op2, op3;
4150 tree new_tree;
4152 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
4153 in the chain of OBJ. */
4154 if (code == PLACEHOLDER_EXPR)
4156 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
4157 tree elt;
4159 for (elt = obj; elt != 0;
4160 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4161 || TREE_CODE (elt) == COND_EXPR)
4162 ? TREE_OPERAND (elt, 1)
4163 : (REFERENCE_CLASS_P (elt)
4164 || UNARY_CLASS_P (elt)
4165 || BINARY_CLASS_P (elt)
4166 || VL_EXP_CLASS_P (elt)
4167 || EXPRESSION_CLASS_P (elt))
4168 ? TREE_OPERAND (elt, 0) : 0))
4169 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4170 return elt;
4172 for (elt = obj; elt != 0;
4173 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4174 || TREE_CODE (elt) == COND_EXPR)
4175 ? TREE_OPERAND (elt, 1)
4176 : (REFERENCE_CLASS_P (elt)
4177 || UNARY_CLASS_P (elt)
4178 || BINARY_CLASS_P (elt)
4179 || VL_EXP_CLASS_P (elt)
4180 || EXPRESSION_CLASS_P (elt))
4181 ? TREE_OPERAND (elt, 0) : 0))
4182 if (POINTER_TYPE_P (TREE_TYPE (elt))
4183 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4184 == need_type))
4185 return fold_build1 (INDIRECT_REF, need_type, elt);
4187 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4188 survives until RTL generation, there will be an error. */
4189 return exp;
4192 /* TREE_LIST is special because we need to look at TREE_VALUE
4193 and TREE_CHAIN, not TREE_OPERANDS. */
4194 else if (code == TREE_LIST)
4196 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4197 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4198 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4199 return exp;
4201 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4203 else
4204 switch (TREE_CODE_CLASS (code))
4206 case tcc_constant:
4207 case tcc_declaration:
4208 return exp;
4210 case tcc_exceptional:
4211 case tcc_unary:
4212 case tcc_binary:
4213 case tcc_comparison:
4214 case tcc_expression:
4215 case tcc_reference:
4216 case tcc_statement:
4217 switch (TREE_CODE_LENGTH (code))
4219 case 0:
4220 return exp;
4222 case 1:
4223 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4224 if (op0 == TREE_OPERAND (exp, 0))
4225 return exp;
4227 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4228 break;
4230 case 2:
4231 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4232 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4234 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4235 return exp;
4237 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4238 break;
4240 case 3:
4241 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4242 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4243 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4245 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4246 && op2 == TREE_OPERAND (exp, 2))
4247 return exp;
4249 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4250 break;
4252 case 4:
4253 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4254 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4255 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4256 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4258 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4259 && op2 == TREE_OPERAND (exp, 2)
4260 && op3 == TREE_OPERAND (exp, 3))
4261 return exp;
4263 new_tree
4264 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4265 break;
4267 default:
4268 gcc_unreachable ();
4270 break;
4272 case tcc_vl_exp:
4274 int i;
4276 new_tree = NULL_TREE;
4278 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4280 tree op = TREE_OPERAND (exp, i);
4281 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4282 if (new_op != op)
4284 if (!new_tree)
4285 new_tree = copy_node (exp);
4286 TREE_OPERAND (new_tree, i) = new_op;
4290 if (new_tree)
4292 new_tree = fold (new_tree);
4293 if (TREE_CODE (new_tree) == CALL_EXPR)
4294 process_call_operands (new_tree);
4296 else
4297 return exp;
4299 break;
4301 default:
4302 gcc_unreachable ();
4305 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4307 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4308 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4310 return new_tree;
4314 /* Subroutine of stabilize_reference; this is called for subtrees of
4315 references. Any expression with side-effects must be put in a SAVE_EXPR
4316 to ensure that it is only evaluated once.
4318 We don't put SAVE_EXPR nodes around everything, because assigning very
4319 simple expressions to temporaries causes us to miss good opportunities
4320 for optimizations. Among other things, the opportunity to fold in the
4321 addition of a constant into an addressing mode often gets lost, e.g.
4322 "y[i+1] += x;". In general, we take the approach that we should not make
4323 an assignment unless we are forced into it - i.e., that any non-side effect
4324 operator should be allowed, and that cse should take care of coalescing
4325 multiple utterances of the same expression should that prove fruitful. */
4327 static tree
4328 stabilize_reference_1 (tree e)
4330 tree result;
4331 enum tree_code code = TREE_CODE (e);
4333 /* We cannot ignore const expressions because it might be a reference
4334 to a const array but whose index contains side-effects. But we can
4335 ignore things that are actual constant or that already have been
4336 handled by this function. */
4338 if (tree_invariant_p (e))
4339 return e;
4341 switch (TREE_CODE_CLASS (code))
4343 case tcc_exceptional:
4344 /* Always wrap STATEMENT_LIST into SAVE_EXPR, even if it doesn't
4345 have side-effects. */
4346 if (code == STATEMENT_LIST)
4347 return save_expr (e);
4348 /* FALLTHRU */
4349 case tcc_type:
4350 case tcc_declaration:
4351 case tcc_comparison:
4352 case tcc_statement:
4353 case tcc_expression:
4354 case tcc_reference:
4355 case tcc_vl_exp:
4356 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4357 so that it will only be evaluated once. */
4358 /* The reference (r) and comparison (<) classes could be handled as
4359 below, but it is generally faster to only evaluate them once. */
4360 if (TREE_SIDE_EFFECTS (e))
4361 return save_expr (e);
4362 return e;
4364 case tcc_constant:
4365 /* Constants need no processing. In fact, we should never reach
4366 here. */
4367 return e;
4369 case tcc_binary:
4370 /* Division is slow and tends to be compiled with jumps,
4371 especially the division by powers of 2 that is often
4372 found inside of an array reference. So do it just once. */
4373 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4374 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4375 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4376 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4377 return save_expr (e);
4378 /* Recursively stabilize each operand. */
4379 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4380 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4381 break;
4383 case tcc_unary:
4384 /* Recursively stabilize each operand. */
4385 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4386 break;
4388 default:
4389 gcc_unreachable ();
4392 TREE_TYPE (result) = TREE_TYPE (e);
4393 TREE_READONLY (result) = TREE_READONLY (e);
4394 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4395 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4397 return result;
4400 /* Stabilize a reference so that we can use it any number of times
4401 without causing its operands to be evaluated more than once.
4402 Returns the stabilized reference. This works by means of save_expr,
4403 so see the caveats in the comments about save_expr.
4405 Also allows conversion expressions whose operands are references.
4406 Any other kind of expression is returned unchanged. */
4408 tree
4409 stabilize_reference (tree ref)
4411 tree result;
4412 enum tree_code code = TREE_CODE (ref);
4414 switch (code)
4416 case VAR_DECL:
4417 case PARM_DECL:
4418 case RESULT_DECL:
4419 /* No action is needed in this case. */
4420 return ref;
4422 CASE_CONVERT:
4423 case FLOAT_EXPR:
4424 case FIX_TRUNC_EXPR:
4425 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4426 break;
4428 case INDIRECT_REF:
4429 result = build_nt (INDIRECT_REF,
4430 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4431 break;
4433 case COMPONENT_REF:
4434 result = build_nt (COMPONENT_REF,
4435 stabilize_reference (TREE_OPERAND (ref, 0)),
4436 TREE_OPERAND (ref, 1), NULL_TREE);
4437 break;
4439 case BIT_FIELD_REF:
4440 result = build_nt (BIT_FIELD_REF,
4441 stabilize_reference (TREE_OPERAND (ref, 0)),
4442 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4443 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4444 break;
4446 case ARRAY_REF:
4447 result = build_nt (ARRAY_REF,
4448 stabilize_reference (TREE_OPERAND (ref, 0)),
4449 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4450 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4451 break;
4453 case ARRAY_RANGE_REF:
4454 result = build_nt (ARRAY_RANGE_REF,
4455 stabilize_reference (TREE_OPERAND (ref, 0)),
4456 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4457 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4458 break;
4460 case COMPOUND_EXPR:
4461 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4462 it wouldn't be ignored. This matters when dealing with
4463 volatiles. */
4464 return stabilize_reference_1 (ref);
4466 /* If arg isn't a kind of lvalue we recognize, make no change.
4467 Caller should recognize the error for an invalid lvalue. */
4468 default:
4469 return ref;
4471 case ERROR_MARK:
4472 return error_mark_node;
4475 TREE_TYPE (result) = TREE_TYPE (ref);
4476 TREE_READONLY (result) = TREE_READONLY (ref);
4477 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4478 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4480 return result;
4483 /* Low-level constructors for expressions. */
4485 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4486 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4488 void
4489 recompute_tree_invariant_for_addr_expr (tree t)
4491 tree node;
4492 bool tc = true, se = false;
4494 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4496 /* We started out assuming this address is both invariant and constant, but
4497 does not have side effects. Now go down any handled components and see if
4498 any of them involve offsets that are either non-constant or non-invariant.
4499 Also check for side-effects.
4501 ??? Note that this code makes no attempt to deal with the case where
4502 taking the address of something causes a copy due to misalignment. */
4504 #define UPDATE_FLAGS(NODE) \
4505 do { tree _node = (NODE); \
4506 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4507 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4509 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4510 node = TREE_OPERAND (node, 0))
4512 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4513 array reference (probably made temporarily by the G++ front end),
4514 so ignore all the operands. */
4515 if ((TREE_CODE (node) == ARRAY_REF
4516 || TREE_CODE (node) == ARRAY_RANGE_REF)
4517 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4519 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4520 if (TREE_OPERAND (node, 2))
4521 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4522 if (TREE_OPERAND (node, 3))
4523 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4525 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4526 FIELD_DECL, apparently. The G++ front end can put something else
4527 there, at least temporarily. */
4528 else if (TREE_CODE (node) == COMPONENT_REF
4529 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4531 if (TREE_OPERAND (node, 2))
4532 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4536 node = lang_hooks.expr_to_decl (node, &tc, &se);
4538 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4539 the address, since &(*a)->b is a form of addition. If it's a constant, the
4540 address is constant too. If it's a decl, its address is constant if the
4541 decl is static. Everything else is not constant and, furthermore,
4542 taking the address of a volatile variable is not volatile. */
4543 if (TREE_CODE (node) == INDIRECT_REF
4544 || TREE_CODE (node) == MEM_REF)
4545 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4546 else if (CONSTANT_CLASS_P (node))
4548 else if (DECL_P (node))
4549 tc &= (staticp (node) != NULL_TREE);
4550 else
4552 tc = false;
4553 se |= TREE_SIDE_EFFECTS (node);
4557 TREE_CONSTANT (t) = tc;
4558 TREE_SIDE_EFFECTS (t) = se;
4559 #undef UPDATE_FLAGS
4562 /* Build an expression of code CODE, data type TYPE, and operands as
4563 specified. Expressions and reference nodes can be created this way.
4564 Constants, decls, types and misc nodes cannot be.
4566 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4567 enough for all extant tree codes. */
4569 tree
4570 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4572 tree t;
4574 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4576 t = make_node (code PASS_MEM_STAT);
4577 TREE_TYPE (t) = tt;
4579 return t;
4582 tree
4583 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4585 int length = sizeof (struct tree_exp);
4586 tree t;
4588 record_node_allocation_statistics (code, length);
4590 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4592 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4594 memset (t, 0, sizeof (struct tree_common));
4596 TREE_SET_CODE (t, code);
4598 TREE_TYPE (t) = type;
4599 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4600 TREE_OPERAND (t, 0) = node;
4601 if (node && !TYPE_P (node))
4603 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4604 TREE_READONLY (t) = TREE_READONLY (node);
4607 if (TREE_CODE_CLASS (code) == tcc_statement)
4609 if (code != DEBUG_BEGIN_STMT)
4610 TREE_SIDE_EFFECTS (t) = 1;
4612 else switch (code)
4614 case VA_ARG_EXPR:
4615 /* All of these have side-effects, no matter what their
4616 operands are. */
4617 TREE_SIDE_EFFECTS (t) = 1;
4618 TREE_READONLY (t) = 0;
4619 break;
4621 case INDIRECT_REF:
4622 /* Whether a dereference is readonly has nothing to do with whether
4623 its operand is readonly. */
4624 TREE_READONLY (t) = 0;
4625 break;
4627 case ADDR_EXPR:
4628 if (node)
4629 recompute_tree_invariant_for_addr_expr (t);
4630 break;
4632 default:
4633 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4634 && node && !TYPE_P (node)
4635 && TREE_CONSTANT (node))
4636 TREE_CONSTANT (t) = 1;
4637 if (TREE_CODE_CLASS (code) == tcc_reference
4638 && node && TREE_THIS_VOLATILE (node))
4639 TREE_THIS_VOLATILE (t) = 1;
4640 break;
4643 return t;
4646 #define PROCESS_ARG(N) \
4647 do { \
4648 TREE_OPERAND (t, N) = arg##N; \
4649 if (arg##N &&!TYPE_P (arg##N)) \
4651 if (TREE_SIDE_EFFECTS (arg##N)) \
4652 side_effects = 1; \
4653 if (!TREE_READONLY (arg##N) \
4654 && !CONSTANT_CLASS_P (arg##N)) \
4655 (void) (read_only = 0); \
4656 if (!TREE_CONSTANT (arg##N)) \
4657 (void) (constant = 0); \
4659 } while (0)
4661 tree
4662 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4664 bool constant, read_only, side_effects, div_by_zero;
4665 tree t;
4667 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4669 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4670 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4671 /* When sizetype precision doesn't match that of pointers
4672 we need to be able to build explicit extensions or truncations
4673 of the offset argument. */
4674 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4675 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4676 && TREE_CODE (arg1) == INTEGER_CST);
4678 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4679 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4680 && ptrofftype_p (TREE_TYPE (arg1)));
4682 t = make_node (code PASS_MEM_STAT);
4683 TREE_TYPE (t) = tt;
4685 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4686 result based on those same flags for the arguments. But if the
4687 arguments aren't really even `tree' expressions, we shouldn't be trying
4688 to do this. */
4690 /* Expressions without side effects may be constant if their
4691 arguments are as well. */
4692 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4693 || TREE_CODE_CLASS (code) == tcc_binary);
4694 read_only = 1;
4695 side_effects = TREE_SIDE_EFFECTS (t);
4697 switch (code)
4699 case TRUNC_DIV_EXPR:
4700 case CEIL_DIV_EXPR:
4701 case FLOOR_DIV_EXPR:
4702 case ROUND_DIV_EXPR:
4703 case EXACT_DIV_EXPR:
4704 case CEIL_MOD_EXPR:
4705 case FLOOR_MOD_EXPR:
4706 case ROUND_MOD_EXPR:
4707 case TRUNC_MOD_EXPR:
4708 div_by_zero = integer_zerop (arg1);
4709 break;
4710 default:
4711 div_by_zero = false;
4714 PROCESS_ARG (0);
4715 PROCESS_ARG (1);
4717 TREE_SIDE_EFFECTS (t) = side_effects;
4718 if (code == MEM_REF)
4720 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4722 tree o = TREE_OPERAND (arg0, 0);
4723 TREE_READONLY (t) = TREE_READONLY (o);
4724 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4727 else
4729 TREE_READONLY (t) = read_only;
4730 /* Don't mark X / 0 as constant. */
4731 TREE_CONSTANT (t) = constant && !div_by_zero;
4732 TREE_THIS_VOLATILE (t)
4733 = (TREE_CODE_CLASS (code) == tcc_reference
4734 && arg0 && TREE_THIS_VOLATILE (arg0));
4737 return t;
4741 tree
4742 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4743 tree arg2 MEM_STAT_DECL)
4745 bool constant, read_only, side_effects;
4746 tree t;
4748 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4749 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4751 t = make_node (code PASS_MEM_STAT);
4752 TREE_TYPE (t) = tt;
4754 read_only = 1;
4756 /* As a special exception, if COND_EXPR has NULL branches, we
4757 assume that it is a gimple statement and always consider
4758 it to have side effects. */
4759 if (code == COND_EXPR
4760 && tt == void_type_node
4761 && arg1 == NULL_TREE
4762 && arg2 == NULL_TREE)
4763 side_effects = true;
4764 else
4765 side_effects = TREE_SIDE_EFFECTS (t);
4767 PROCESS_ARG (0);
4768 PROCESS_ARG (1);
4769 PROCESS_ARG (2);
4771 if (code == COND_EXPR)
4772 TREE_READONLY (t) = read_only;
4774 TREE_SIDE_EFFECTS (t) = side_effects;
4775 TREE_THIS_VOLATILE (t)
4776 = (TREE_CODE_CLASS (code) == tcc_reference
4777 && arg0 && TREE_THIS_VOLATILE (arg0));
4779 return t;
4782 tree
4783 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4784 tree arg2, tree arg3 MEM_STAT_DECL)
4786 bool constant, read_only, side_effects;
4787 tree t;
4789 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4791 t = make_node (code PASS_MEM_STAT);
4792 TREE_TYPE (t) = tt;
4794 side_effects = TREE_SIDE_EFFECTS (t);
4796 PROCESS_ARG (0);
4797 PROCESS_ARG (1);
4798 PROCESS_ARG (2);
4799 PROCESS_ARG (3);
4801 TREE_SIDE_EFFECTS (t) = side_effects;
4802 TREE_THIS_VOLATILE (t)
4803 = (TREE_CODE_CLASS (code) == tcc_reference
4804 && arg0 && TREE_THIS_VOLATILE (arg0));
4806 return t;
4809 tree
4810 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4811 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4813 bool constant, read_only, side_effects;
4814 tree t;
4816 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4818 t = make_node (code PASS_MEM_STAT);
4819 TREE_TYPE (t) = tt;
4821 side_effects = TREE_SIDE_EFFECTS (t);
4823 PROCESS_ARG (0);
4824 PROCESS_ARG (1);
4825 PROCESS_ARG (2);
4826 PROCESS_ARG (3);
4827 PROCESS_ARG (4);
4829 TREE_SIDE_EFFECTS (t) = side_effects;
4830 if (code == TARGET_MEM_REF)
4832 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4834 tree o = TREE_OPERAND (arg0, 0);
4835 TREE_READONLY (t) = TREE_READONLY (o);
4836 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4839 else
4840 TREE_THIS_VOLATILE (t)
4841 = (TREE_CODE_CLASS (code) == tcc_reference
4842 && arg0 && TREE_THIS_VOLATILE (arg0));
4844 return t;
4847 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4848 on the pointer PTR. */
4850 tree
4851 build_simple_mem_ref_loc (location_t loc, tree ptr)
4853 poly_int64 offset = 0;
4854 tree ptype = TREE_TYPE (ptr);
4855 tree tem;
4856 /* For convenience allow addresses that collapse to a simple base
4857 and offset. */
4858 if (TREE_CODE (ptr) == ADDR_EXPR
4859 && (handled_component_p (TREE_OPERAND (ptr, 0))
4860 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4862 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4863 gcc_assert (ptr);
4864 if (TREE_CODE (ptr) == MEM_REF)
4866 offset += mem_ref_offset (ptr).force_shwi ();
4867 ptr = TREE_OPERAND (ptr, 0);
4869 else
4870 ptr = build_fold_addr_expr (ptr);
4871 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4873 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4874 ptr, build_int_cst (ptype, offset));
4875 SET_EXPR_LOCATION (tem, loc);
4876 return tem;
4879 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4881 poly_offset_int
4882 mem_ref_offset (const_tree t)
4884 return poly_offset_int::from (wi::to_poly_wide (TREE_OPERAND (t, 1)),
4885 SIGNED);
4888 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4889 offsetted by OFFSET units. */
4891 tree
4892 build_invariant_address (tree type, tree base, poly_int64 offset)
4894 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4895 build_fold_addr_expr (base),
4896 build_int_cst (ptr_type_node, offset));
4897 tree addr = build1 (ADDR_EXPR, type, ref);
4898 recompute_tree_invariant_for_addr_expr (addr);
4899 return addr;
4902 /* Similar except don't specify the TREE_TYPE
4903 and leave the TREE_SIDE_EFFECTS as 0.
4904 It is permissible for arguments to be null,
4905 or even garbage if their values do not matter. */
4907 tree
4908 build_nt (enum tree_code code, ...)
4910 tree t;
4911 int length;
4912 int i;
4913 va_list p;
4915 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4917 va_start (p, code);
4919 t = make_node (code);
4920 length = TREE_CODE_LENGTH (code);
4922 for (i = 0; i < length; i++)
4923 TREE_OPERAND (t, i) = va_arg (p, tree);
4925 va_end (p);
4926 return t;
4929 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4930 tree vec. */
4932 tree
4933 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4935 tree ret, t;
4936 unsigned int ix;
4938 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4939 CALL_EXPR_FN (ret) = fn;
4940 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4941 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4942 CALL_EXPR_ARG (ret, ix) = t;
4943 return ret;
4946 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4947 We do NOT enter this node in any sort of symbol table.
4949 LOC is the location of the decl.
4951 layout_decl is used to set up the decl's storage layout.
4952 Other slots are initialized to 0 or null pointers. */
4954 tree
4955 build_decl (location_t loc, enum tree_code code, tree name,
4956 tree type MEM_STAT_DECL)
4958 tree t;
4960 t = make_node (code PASS_MEM_STAT);
4961 DECL_SOURCE_LOCATION (t) = loc;
4963 /* if (type == error_mark_node)
4964 type = integer_type_node; */
4965 /* That is not done, deliberately, so that having error_mark_node
4966 as the type can suppress useless errors in the use of this variable. */
4968 DECL_NAME (t) = name;
4969 TREE_TYPE (t) = type;
4971 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4972 layout_decl (t, 0);
4974 return t;
4977 /* Builds and returns function declaration with NAME and TYPE. */
4979 tree
4980 build_fn_decl (const char *name, tree type)
4982 tree id = get_identifier (name);
4983 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4985 DECL_EXTERNAL (decl) = 1;
4986 TREE_PUBLIC (decl) = 1;
4987 DECL_ARTIFICIAL (decl) = 1;
4988 TREE_NOTHROW (decl) = 1;
4990 return decl;
4993 vec<tree, va_gc> *all_translation_units;
4995 /* Builds a new translation-unit decl with name NAME, queues it in the
4996 global list of translation-unit decls and returns it. */
4998 tree
4999 build_translation_unit_decl (tree name)
5001 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5002 name, NULL_TREE);
5003 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5004 vec_safe_push (all_translation_units, tu);
5005 return tu;
5009 /* BLOCK nodes are used to represent the structure of binding contours
5010 and declarations, once those contours have been exited and their contents
5011 compiled. This information is used for outputting debugging info. */
5013 tree
5014 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
5016 tree block = make_node (BLOCK);
5018 BLOCK_VARS (block) = vars;
5019 BLOCK_SUBBLOCKS (block) = subblocks;
5020 BLOCK_SUPERCONTEXT (block) = supercontext;
5021 BLOCK_CHAIN (block) = chain;
5022 return block;
5026 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
5028 LOC is the location to use in tree T. */
5030 void
5031 protected_set_expr_location (tree t, location_t loc)
5033 if (CAN_HAVE_LOCATION_P (t))
5034 SET_EXPR_LOCATION (t, loc);
5037 /* Reset the expression *EXPR_P, a size or position.
5039 ??? We could reset all non-constant sizes or positions. But it's cheap
5040 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5042 We need to reset self-referential sizes or positions because they cannot
5043 be gimplified and thus can contain a CALL_EXPR after the gimplification
5044 is finished, which will run afoul of LTO streaming. And they need to be
5045 reset to something essentially dummy but not constant, so as to preserve
5046 the properties of the object they are attached to. */
5048 static inline void
5049 free_lang_data_in_one_sizepos (tree *expr_p)
5051 tree expr = *expr_p;
5052 if (CONTAINS_PLACEHOLDER_P (expr))
5053 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5057 /* Reset all the fields in a binfo node BINFO. We only keep
5058 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5060 static void
5061 free_lang_data_in_binfo (tree binfo)
5063 unsigned i;
5064 tree t;
5066 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5068 BINFO_VIRTUALS (binfo) = NULL_TREE;
5069 BINFO_BASE_ACCESSES (binfo) = NULL;
5070 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5071 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5073 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5074 free_lang_data_in_binfo (t);
5078 /* Reset all language specific information still present in TYPE. */
5080 static void
5081 free_lang_data_in_type (tree type)
5083 gcc_assert (TYPE_P (type));
5085 /* Give the FE a chance to remove its own data first. */
5086 lang_hooks.free_lang_data (type);
5088 TREE_LANG_FLAG_0 (type) = 0;
5089 TREE_LANG_FLAG_1 (type) = 0;
5090 TREE_LANG_FLAG_2 (type) = 0;
5091 TREE_LANG_FLAG_3 (type) = 0;
5092 TREE_LANG_FLAG_4 (type) = 0;
5093 TREE_LANG_FLAG_5 (type) = 0;
5094 TREE_LANG_FLAG_6 (type) = 0;
5096 if (TREE_CODE (type) == FUNCTION_TYPE)
5098 /* Remove the const and volatile qualifiers from arguments. The
5099 C++ front end removes them, but the C front end does not,
5100 leading to false ODR violation errors when merging two
5101 instances of the same function signature compiled by
5102 different front ends. */
5103 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5105 tree arg_type = TREE_VALUE (p);
5107 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5109 int quals = TYPE_QUALS (arg_type)
5110 & ~TYPE_QUAL_CONST
5111 & ~TYPE_QUAL_VOLATILE;
5112 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5113 free_lang_data_in_type (TREE_VALUE (p));
5115 /* C++ FE uses TREE_PURPOSE to store initial values. */
5116 TREE_PURPOSE (p) = NULL;
5119 else if (TREE_CODE (type) == METHOD_TYPE)
5120 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5121 /* C++ FE uses TREE_PURPOSE to store initial values. */
5122 TREE_PURPOSE (p) = NULL;
5123 else if (RECORD_OR_UNION_TYPE_P (type))
5125 /* Remove members that are not FIELD_DECLs from the field list
5126 of an aggregate. These occur in C++. */
5127 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
5128 if (TREE_CODE (member) == FIELD_DECL)
5129 prev = &DECL_CHAIN (member);
5130 else
5131 *prev = DECL_CHAIN (member);
5133 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
5134 and danagle the pointer from time to time. */
5135 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
5136 TYPE_VFIELD (type) = NULL_TREE;
5138 if (TYPE_BINFO (type))
5140 free_lang_data_in_binfo (TYPE_BINFO (type));
5141 /* We need to preserve link to bases and virtual table for all
5142 polymorphic types to make devirtualization machinery working. */
5143 if (!BINFO_VTABLE (TYPE_BINFO (type))
5144 || !flag_devirtualize)
5145 TYPE_BINFO (type) = NULL;
5148 else if (INTEGRAL_TYPE_P (type)
5149 || SCALAR_FLOAT_TYPE_P (type)
5150 || FIXED_POINT_TYPE_P (type))
5152 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5153 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5156 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5158 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5159 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5161 if (TYPE_CONTEXT (type)
5162 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5164 tree ctx = TYPE_CONTEXT (type);
5167 ctx = BLOCK_SUPERCONTEXT (ctx);
5169 while (ctx && TREE_CODE (ctx) == BLOCK);
5170 TYPE_CONTEXT (type) = ctx;
5173 /* Drop TYPE_DECLs in TYPE_NAME in favor of the identifier in the
5174 TYPE_DECL if the type doesn't have linkage. */
5175 if (! type_with_linkage_p (type))
5176 TYPE_NAME (type) = TYPE_IDENTIFIER (type);
5180 /* Return true if DECL may need an assembler name to be set. */
5182 static inline bool
5183 need_assembler_name_p (tree decl)
5185 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5186 Rule merging. This makes type_odr_p to return true on those types during
5187 LTO and by comparing the mangled name, we can say what types are intended
5188 to be equivalent across compilation unit.
5190 We do not store names of type_in_anonymous_namespace_p.
5192 Record, union and enumeration type have linkage that allows use
5193 to check type_in_anonymous_namespace_p. We do not mangle compound types
5194 that always can be compared structurally.
5196 Similarly for builtin types, we compare properties of their main variant.
5197 A special case are integer types where mangling do make differences
5198 between char/signed char/unsigned char etc. Storing name for these makes
5199 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5200 See cp/mangle.c:write_builtin_type for details. */
5202 if (flag_lto_odr_type_mering
5203 && TREE_CODE (decl) == TYPE_DECL
5204 && DECL_NAME (decl)
5205 && decl == TYPE_NAME (TREE_TYPE (decl))
5206 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5207 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5208 && (type_with_linkage_p (TREE_TYPE (decl))
5209 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5210 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5211 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5212 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5213 if (!VAR_OR_FUNCTION_DECL_P (decl))
5214 return false;
5216 /* If DECL already has its assembler name set, it does not need a
5217 new one. */
5218 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5219 || DECL_ASSEMBLER_NAME_SET_P (decl))
5220 return false;
5222 /* Abstract decls do not need an assembler name. */
5223 if (DECL_ABSTRACT_P (decl))
5224 return false;
5226 /* For VAR_DECLs, only static, public and external symbols need an
5227 assembler name. */
5228 if (VAR_P (decl)
5229 && !TREE_STATIC (decl)
5230 && !TREE_PUBLIC (decl)
5231 && !DECL_EXTERNAL (decl))
5232 return false;
5234 if (TREE_CODE (decl) == FUNCTION_DECL)
5236 /* Do not set assembler name on builtins. Allow RTL expansion to
5237 decide whether to expand inline or via a regular call. */
5238 if (DECL_BUILT_IN (decl)
5239 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5240 return false;
5242 /* Functions represented in the callgraph need an assembler name. */
5243 if (cgraph_node::get (decl) != NULL)
5244 return true;
5246 /* Unused and not public functions don't need an assembler name. */
5247 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5248 return false;
5251 return true;
5255 /* Reset all language specific information still present in symbol
5256 DECL. */
5258 static void
5259 free_lang_data_in_decl (tree decl)
5261 gcc_assert (DECL_P (decl));
5263 /* Give the FE a chance to remove its own data first. */
5264 lang_hooks.free_lang_data (decl);
5266 TREE_LANG_FLAG_0 (decl) = 0;
5267 TREE_LANG_FLAG_1 (decl) = 0;
5268 TREE_LANG_FLAG_2 (decl) = 0;
5269 TREE_LANG_FLAG_3 (decl) = 0;
5270 TREE_LANG_FLAG_4 (decl) = 0;
5271 TREE_LANG_FLAG_5 (decl) = 0;
5272 TREE_LANG_FLAG_6 (decl) = 0;
5274 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5275 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5276 if (TREE_CODE (decl) == FIELD_DECL)
5278 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5279 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5280 DECL_QUALIFIER (decl) = NULL_TREE;
5283 if (TREE_CODE (decl) == FUNCTION_DECL)
5285 struct cgraph_node *node;
5286 if (!(node = cgraph_node::get (decl))
5287 || (!node->definition && !node->clones))
5289 if (node)
5290 node->release_body ();
5291 else
5293 release_function_body (decl);
5294 DECL_ARGUMENTS (decl) = NULL;
5295 DECL_RESULT (decl) = NULL;
5296 DECL_INITIAL (decl) = error_mark_node;
5299 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5301 tree t;
5303 /* If DECL has a gimple body, then the context for its
5304 arguments must be DECL. Otherwise, it doesn't really
5305 matter, as we will not be emitting any code for DECL. In
5306 general, there may be other instances of DECL created by
5307 the front end and since PARM_DECLs are generally shared,
5308 their DECL_CONTEXT changes as the replicas of DECL are
5309 created. The only time where DECL_CONTEXT is important
5310 is for the FUNCTION_DECLs that have a gimple body (since
5311 the PARM_DECL will be used in the function's body). */
5312 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5313 DECL_CONTEXT (t) = decl;
5314 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5315 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5316 = target_option_default_node;
5317 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5318 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5319 = optimization_default_node;
5322 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5323 At this point, it is not needed anymore. */
5324 DECL_SAVED_TREE (decl) = NULL_TREE;
5326 /* Clear the abstract origin if it refers to a method.
5327 Otherwise dwarf2out.c will ICE as we splice functions out of
5328 TYPE_FIELDS and thus the origin will not be output
5329 correctly. */
5330 if (DECL_ABSTRACT_ORIGIN (decl)
5331 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5332 && RECORD_OR_UNION_TYPE_P
5333 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5334 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5336 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5337 DECL_VINDEX referring to itself into a vtable slot number as it
5338 should. Happens with functions that are copied and then forgotten
5339 about. Just clear it, it won't matter anymore. */
5340 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5341 DECL_VINDEX (decl) = NULL_TREE;
5343 else if (VAR_P (decl))
5345 if ((DECL_EXTERNAL (decl)
5346 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5347 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5348 DECL_INITIAL (decl) = NULL_TREE;
5350 else if (TREE_CODE (decl) == TYPE_DECL)
5352 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5353 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5354 DECL_INITIAL (decl) = NULL_TREE;
5356 else if (TREE_CODE (decl) == FIELD_DECL)
5357 DECL_INITIAL (decl) = NULL_TREE;
5358 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5359 && DECL_INITIAL (decl)
5360 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5362 /* Strip builtins from the translation-unit BLOCK. We still have targets
5363 without builtin_decl_explicit support and also builtins are shared
5364 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5365 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5366 while (*nextp)
5368 tree var = *nextp;
5369 if (TREE_CODE (var) == FUNCTION_DECL
5370 && DECL_BUILT_IN (var))
5371 *nextp = TREE_CHAIN (var);
5372 else
5373 nextp = &TREE_CHAIN (var);
5379 /* Data used when collecting DECLs and TYPEs for language data removal. */
5381 struct free_lang_data_d
5383 free_lang_data_d () : decls (100), types (100) {}
5385 /* Worklist to avoid excessive recursion. */
5386 auto_vec<tree> worklist;
5388 /* Set of traversed objects. Used to avoid duplicate visits. */
5389 hash_set<tree> pset;
5391 /* Array of symbols to process with free_lang_data_in_decl. */
5392 auto_vec<tree> decls;
5394 /* Array of types to process with free_lang_data_in_type. */
5395 auto_vec<tree> types;
5399 /* Add type or decl T to one of the list of tree nodes that need their
5400 language data removed. The lists are held inside FLD. */
5402 static void
5403 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5405 if (DECL_P (t))
5406 fld->decls.safe_push (t);
5407 else if (TYPE_P (t))
5408 fld->types.safe_push (t);
5409 else
5410 gcc_unreachable ();
5413 /* Push tree node T into FLD->WORKLIST. */
5415 static inline void
5416 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5418 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5419 fld->worklist.safe_push ((t));
5423 /* Operand callback helper for free_lang_data_in_node. *TP is the
5424 subtree operand being considered. */
5426 static tree
5427 find_decls_types_r (tree *tp, int *ws, void *data)
5429 tree t = *tp;
5430 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5432 if (TREE_CODE (t) == TREE_LIST)
5433 return NULL_TREE;
5435 /* Language specific nodes will be removed, so there is no need
5436 to gather anything under them. */
5437 if (is_lang_specific (t))
5439 *ws = 0;
5440 return NULL_TREE;
5443 if (DECL_P (t))
5445 /* Note that walk_tree does not traverse every possible field in
5446 decls, so we have to do our own traversals here. */
5447 add_tree_to_fld_list (t, fld);
5449 fld_worklist_push (DECL_NAME (t), fld);
5450 fld_worklist_push (DECL_CONTEXT (t), fld);
5451 fld_worklist_push (DECL_SIZE (t), fld);
5452 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5454 /* We are going to remove everything under DECL_INITIAL for
5455 TYPE_DECLs. No point walking them. */
5456 if (TREE_CODE (t) != TYPE_DECL)
5457 fld_worklist_push (DECL_INITIAL (t), fld);
5459 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5460 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5462 if (TREE_CODE (t) == FUNCTION_DECL)
5464 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5465 fld_worklist_push (DECL_RESULT (t), fld);
5467 else if (TREE_CODE (t) == TYPE_DECL)
5469 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5471 else if (TREE_CODE (t) == FIELD_DECL)
5473 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5474 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5475 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5476 fld_worklist_push (DECL_FCONTEXT (t), fld);
5479 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5480 && DECL_HAS_VALUE_EXPR_P (t))
5481 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5483 if (TREE_CODE (t) != FIELD_DECL
5484 && TREE_CODE (t) != TYPE_DECL)
5485 fld_worklist_push (TREE_CHAIN (t), fld);
5486 *ws = 0;
5488 else if (TYPE_P (t))
5490 /* Note that walk_tree does not traverse every possible field in
5491 types, so we have to do our own traversals here. */
5492 add_tree_to_fld_list (t, fld);
5494 if (!RECORD_OR_UNION_TYPE_P (t))
5495 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5496 fld_worklist_push (TYPE_SIZE (t), fld);
5497 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5498 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5499 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5500 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5501 fld_worklist_push (TYPE_NAME (t), fld);
5502 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5503 them and thus do not and want not to reach unused pointer types
5504 this way. */
5505 if (!POINTER_TYPE_P (t))
5506 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5507 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5508 if (!RECORD_OR_UNION_TYPE_P (t))
5509 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5510 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5511 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5512 do not and want not to reach unused variants this way. */
5513 if (TYPE_CONTEXT (t))
5515 tree ctx = TYPE_CONTEXT (t);
5516 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5517 So push that instead. */
5518 while (ctx && TREE_CODE (ctx) == BLOCK)
5519 ctx = BLOCK_SUPERCONTEXT (ctx);
5520 fld_worklist_push (ctx, fld);
5522 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5523 and want not to reach unused types this way. */
5525 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5527 unsigned i;
5528 tree tem;
5529 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5530 fld_worklist_push (TREE_TYPE (tem), fld);
5531 fld_worklist_push (BINFO_TYPE (TYPE_BINFO (t)), fld);
5532 fld_worklist_push (BINFO_VTABLE (TYPE_BINFO (t)), fld);
5534 if (RECORD_OR_UNION_TYPE_P (t))
5536 tree tem;
5537 /* Push all TYPE_FIELDS - there can be interleaving interesting
5538 and non-interesting things. */
5539 tem = TYPE_FIELDS (t);
5540 while (tem)
5542 if (TREE_CODE (tem) == FIELD_DECL
5543 || (TREE_CODE (tem) == TYPE_DECL
5544 && !DECL_IGNORED_P (tem)
5545 && debug_info_level > DINFO_LEVEL_TERSE
5546 && !is_redundant_typedef (tem)))
5547 fld_worklist_push (tem, fld);
5548 tem = TREE_CHAIN (tem);
5551 if (FUNC_OR_METHOD_TYPE_P (t))
5552 fld_worklist_push (TYPE_METHOD_BASETYPE (t), fld);
5554 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5555 *ws = 0;
5557 else if (TREE_CODE (t) == BLOCK)
5559 tree tem;
5560 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5561 fld_worklist_push (tem, fld);
5562 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5563 fld_worklist_push (tem, fld);
5564 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5567 if (TREE_CODE (t) != IDENTIFIER_NODE
5568 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5569 fld_worklist_push (TREE_TYPE (t), fld);
5571 return NULL_TREE;
5575 /* Find decls and types in T. */
5577 static void
5578 find_decls_types (tree t, struct free_lang_data_d *fld)
5580 while (1)
5582 if (!fld->pset.contains (t))
5583 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5584 if (fld->worklist.is_empty ())
5585 break;
5586 t = fld->worklist.pop ();
5590 /* Translate all the types in LIST with the corresponding runtime
5591 types. */
5593 static tree
5594 get_eh_types_for_runtime (tree list)
5596 tree head, prev;
5598 if (list == NULL_TREE)
5599 return NULL_TREE;
5601 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5602 prev = head;
5603 list = TREE_CHAIN (list);
5604 while (list)
5606 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5607 TREE_CHAIN (prev) = n;
5608 prev = TREE_CHAIN (prev);
5609 list = TREE_CHAIN (list);
5612 return head;
5616 /* Find decls and types referenced in EH region R and store them in
5617 FLD->DECLS and FLD->TYPES. */
5619 static void
5620 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5622 switch (r->type)
5624 case ERT_CLEANUP:
5625 break;
5627 case ERT_TRY:
5629 eh_catch c;
5631 /* The types referenced in each catch must first be changed to the
5632 EH types used at runtime. This removes references to FE types
5633 in the region. */
5634 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5636 c->type_list = get_eh_types_for_runtime (c->type_list);
5637 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
5640 break;
5642 case ERT_ALLOWED_EXCEPTIONS:
5643 r->u.allowed.type_list
5644 = get_eh_types_for_runtime (r->u.allowed.type_list);
5645 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
5646 break;
5648 case ERT_MUST_NOT_THROW:
5649 walk_tree (&r->u.must_not_throw.failure_decl,
5650 find_decls_types_r, fld, &fld->pset);
5651 break;
5656 /* Find decls and types referenced in cgraph node N and store them in
5657 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5658 look for *every* kind of DECL and TYPE node reachable from N,
5659 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5660 NAMESPACE_DECLs, etc). */
5662 static void
5663 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5665 basic_block bb;
5666 struct function *fn;
5667 unsigned ix;
5668 tree t;
5670 find_decls_types (n->decl, fld);
5672 if (!gimple_has_body_p (n->decl))
5673 return;
5675 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5677 fn = DECL_STRUCT_FUNCTION (n->decl);
5679 /* Traverse locals. */
5680 FOR_EACH_LOCAL_DECL (fn, ix, t)
5681 find_decls_types (t, fld);
5683 /* Traverse EH regions in FN. */
5685 eh_region r;
5686 FOR_ALL_EH_REGION_FN (r, fn)
5687 find_decls_types_in_eh_region (r, fld);
5690 /* Traverse every statement in FN. */
5691 FOR_EACH_BB_FN (bb, fn)
5693 gphi_iterator psi;
5694 gimple_stmt_iterator si;
5695 unsigned i;
5697 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5699 gphi *phi = psi.phi ();
5701 for (i = 0; i < gimple_phi_num_args (phi); i++)
5703 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5704 find_decls_types (*arg_p, fld);
5708 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5710 gimple *stmt = gsi_stmt (si);
5712 if (is_gimple_call (stmt))
5713 find_decls_types (gimple_call_fntype (stmt), fld);
5715 for (i = 0; i < gimple_num_ops (stmt); i++)
5717 tree arg = gimple_op (stmt, i);
5718 find_decls_types (arg, fld);
5725 /* Find decls and types referenced in varpool node N and store them in
5726 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5727 look for *every* kind of DECL and TYPE node reachable from N,
5728 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5729 NAMESPACE_DECLs, etc). */
5731 static void
5732 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5734 find_decls_types (v->decl, fld);
5737 /* If T needs an assembler name, have one created for it. */
5739 void
5740 assign_assembler_name_if_needed (tree t)
5742 if (need_assembler_name_p (t))
5744 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5745 diagnostics that use input_location to show locus
5746 information. The problem here is that, at this point,
5747 input_location is generally anchored to the end of the file
5748 (since the parser is long gone), so we don't have a good
5749 position to pin it to.
5751 To alleviate this problem, this uses the location of T's
5752 declaration. Examples of this are
5753 testsuite/g++.dg/template/cond2.C and
5754 testsuite/g++.dg/template/pr35240.C. */
5755 location_t saved_location = input_location;
5756 input_location = DECL_SOURCE_LOCATION (t);
5758 decl_assembler_name (t);
5760 input_location = saved_location;
5765 /* Free language specific information for every operand and expression
5766 in every node of the call graph. This process operates in three stages:
5768 1- Every callgraph node and varpool node is traversed looking for
5769 decls and types embedded in them. This is a more exhaustive
5770 search than that done by find_referenced_vars, because it will
5771 also collect individual fields, decls embedded in types, etc.
5773 2- All the decls found are sent to free_lang_data_in_decl.
5775 3- All the types found are sent to free_lang_data_in_type.
5777 The ordering between decls and types is important because
5778 free_lang_data_in_decl sets assembler names, which includes
5779 mangling. So types cannot be freed up until assembler names have
5780 been set up. */
5782 static void
5783 free_lang_data_in_cgraph (void)
5785 struct cgraph_node *n;
5786 varpool_node *v;
5787 struct free_lang_data_d fld;
5788 tree t;
5789 unsigned i;
5790 alias_pair *p;
5792 /* Find decls and types in the body of every function in the callgraph. */
5793 FOR_EACH_FUNCTION (n)
5794 find_decls_types_in_node (n, &fld);
5796 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5797 find_decls_types (p->decl, &fld);
5799 /* Find decls and types in every varpool symbol. */
5800 FOR_EACH_VARIABLE (v)
5801 find_decls_types_in_var (v, &fld);
5803 /* Set the assembler name on every decl found. We need to do this
5804 now because free_lang_data_in_decl will invalidate data needed
5805 for mangling. This breaks mangling on interdependent decls. */
5806 FOR_EACH_VEC_ELT (fld.decls, i, t)
5807 assign_assembler_name_if_needed (t);
5809 /* Traverse every decl found freeing its language data. */
5810 FOR_EACH_VEC_ELT (fld.decls, i, t)
5811 free_lang_data_in_decl (t);
5813 /* Traverse every type found freeing its language data. */
5814 FOR_EACH_VEC_ELT (fld.types, i, t)
5815 free_lang_data_in_type (t);
5816 if (flag_checking)
5818 FOR_EACH_VEC_ELT (fld.types, i, t)
5819 verify_type (t);
5824 /* Free resources that are used by FE but are not needed once they are done. */
5826 static unsigned
5827 free_lang_data (void)
5829 unsigned i;
5831 /* If we are the LTO frontend we have freed lang-specific data already. */
5832 if (in_lto_p
5833 || (!flag_generate_lto && !flag_generate_offload))
5834 return 0;
5836 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
5837 if (vec_safe_is_empty (all_translation_units))
5838 build_translation_unit_decl (NULL_TREE);
5840 /* Allocate and assign alias sets to the standard integer types
5841 while the slots are still in the way the frontends generated them. */
5842 for (i = 0; i < itk_none; ++i)
5843 if (integer_types[i])
5844 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5846 /* Traverse the IL resetting language specific information for
5847 operands, expressions, etc. */
5848 free_lang_data_in_cgraph ();
5850 /* Create gimple variants for common types. */
5851 for (unsigned i = 0;
5852 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
5853 ++i)
5854 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
5856 /* Reset some langhooks. Do not reset types_compatible_p, it may
5857 still be used indirectly via the get_alias_set langhook. */
5858 lang_hooks.dwarf_name = lhd_dwarf_name;
5859 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5860 lang_hooks.gimplify_expr = lhd_gimplify_expr;
5862 /* We do not want the default decl_assembler_name implementation,
5863 rather if we have fixed everything we want a wrapper around it
5864 asserting that all non-local symbols already got their assembler
5865 name and only produce assembler names for local symbols. Or rather
5866 make sure we never call decl_assembler_name on local symbols and
5867 devise a separate, middle-end private scheme for it. */
5869 /* Reset diagnostic machinery. */
5870 tree_diagnostics_defaults (global_dc);
5872 rebuild_type_inheritance_graph ();
5874 return 0;
5878 namespace {
5880 const pass_data pass_data_ipa_free_lang_data =
5882 SIMPLE_IPA_PASS, /* type */
5883 "*free_lang_data", /* name */
5884 OPTGROUP_NONE, /* optinfo_flags */
5885 TV_IPA_FREE_LANG_DATA, /* tv_id */
5886 0, /* properties_required */
5887 0, /* properties_provided */
5888 0, /* properties_destroyed */
5889 0, /* todo_flags_start */
5890 0, /* todo_flags_finish */
5893 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5895 public:
5896 pass_ipa_free_lang_data (gcc::context *ctxt)
5897 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5900 /* opt_pass methods: */
5901 virtual unsigned int execute (function *) { return free_lang_data (); }
5903 }; // class pass_ipa_free_lang_data
5905 } // anon namespace
5907 simple_ipa_opt_pass *
5908 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5910 return new pass_ipa_free_lang_data (ctxt);
5913 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5914 of the various TYPE_QUAL values. */
5916 static void
5917 set_type_quals (tree type, int type_quals)
5919 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5920 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5921 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5922 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
5923 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
5926 /* Returns true iff CAND and BASE have equivalent language-specific
5927 qualifiers. */
5929 bool
5930 check_lang_type (const_tree cand, const_tree base)
5932 if (lang_hooks.types.type_hash_eq == NULL)
5933 return true;
5934 /* type_hash_eq currently only applies to these types. */
5935 if (TREE_CODE (cand) != FUNCTION_TYPE
5936 && TREE_CODE (cand) != METHOD_TYPE)
5937 return true;
5938 return lang_hooks.types.type_hash_eq (cand, base);
5941 /* Returns true iff unqualified CAND and BASE are equivalent. */
5943 bool
5944 check_base_type (const_tree cand, const_tree base)
5946 return (TYPE_NAME (cand) == TYPE_NAME (base)
5947 /* Apparently this is needed for Objective-C. */
5948 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5949 /* Check alignment. */
5950 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5951 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5952 TYPE_ATTRIBUTES (base)));
5955 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5957 bool
5958 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5960 return (TYPE_QUALS (cand) == type_quals
5961 && check_base_type (cand, base)
5962 && check_lang_type (cand, base));
5965 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5967 static bool
5968 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5970 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5971 && TYPE_NAME (cand) == TYPE_NAME (base)
5972 /* Apparently this is needed for Objective-C. */
5973 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5974 /* Check alignment. */
5975 && TYPE_ALIGN (cand) == align
5976 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5977 TYPE_ATTRIBUTES (base))
5978 && check_lang_type (cand, base));
5981 /* This function checks to see if TYPE matches the size one of the built-in
5982 atomic types, and returns that core atomic type. */
5984 static tree
5985 find_atomic_core_type (tree type)
5987 tree base_atomic_type;
5989 /* Only handle complete types. */
5990 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
5991 return NULL_TREE;
5993 switch (tree_to_uhwi (TYPE_SIZE (type)))
5995 case 8:
5996 base_atomic_type = atomicQI_type_node;
5997 break;
5999 case 16:
6000 base_atomic_type = atomicHI_type_node;
6001 break;
6003 case 32:
6004 base_atomic_type = atomicSI_type_node;
6005 break;
6007 case 64:
6008 base_atomic_type = atomicDI_type_node;
6009 break;
6011 case 128:
6012 base_atomic_type = atomicTI_type_node;
6013 break;
6015 default:
6016 base_atomic_type = NULL_TREE;
6019 return base_atomic_type;
6022 /* Return a version of the TYPE, qualified as indicated by the
6023 TYPE_QUALS, if one exists. If no qualified version exists yet,
6024 return NULL_TREE. */
6026 tree
6027 get_qualified_type (tree type, int type_quals)
6029 tree t;
6031 if (TYPE_QUALS (type) == type_quals)
6032 return type;
6034 /* Search the chain of variants to see if there is already one there just
6035 like the one we need to have. If so, use that existing one. We must
6036 preserve the TYPE_NAME, since there is code that depends on this. */
6037 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6038 if (check_qualified_type (t, type, type_quals))
6039 return t;
6041 return NULL_TREE;
6044 /* Like get_qualified_type, but creates the type if it does not
6045 exist. This function never returns NULL_TREE. */
6047 tree
6048 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
6050 tree t;
6052 /* See if we already have the appropriate qualified variant. */
6053 t = get_qualified_type (type, type_quals);
6055 /* If not, build it. */
6056 if (!t)
6058 t = build_variant_type_copy (type PASS_MEM_STAT);
6059 set_type_quals (t, type_quals);
6061 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6063 /* See if this object can map to a basic atomic type. */
6064 tree atomic_type = find_atomic_core_type (type);
6065 if (atomic_type)
6067 /* Ensure the alignment of this type is compatible with
6068 the required alignment of the atomic type. */
6069 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6070 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
6074 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6075 /* Propagate structural equality. */
6076 SET_TYPE_STRUCTURAL_EQUALITY (t);
6077 else if (TYPE_CANONICAL (type) != type)
6078 /* Build the underlying canonical type, since it is different
6079 from TYPE. */
6081 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6082 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6084 else
6085 /* T is its own canonical type. */
6086 TYPE_CANONICAL (t) = t;
6090 return t;
6093 /* Create a variant of type T with alignment ALIGN. */
6095 tree
6096 build_aligned_type (tree type, unsigned int align)
6098 tree t;
6100 if (TYPE_PACKED (type)
6101 || TYPE_ALIGN (type) == align)
6102 return type;
6104 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6105 if (check_aligned_type (t, type, align))
6106 return t;
6108 t = build_variant_type_copy (type);
6109 SET_TYPE_ALIGN (t, align);
6110 TYPE_USER_ALIGN (t) = 1;
6112 return t;
6115 /* Create a new distinct copy of TYPE. The new type is made its own
6116 MAIN_VARIANT. If TYPE requires structural equality checks, the
6117 resulting type requires structural equality checks; otherwise, its
6118 TYPE_CANONICAL points to itself. */
6120 tree
6121 build_distinct_type_copy (tree type MEM_STAT_DECL)
6123 tree t = copy_node (type PASS_MEM_STAT);
6125 TYPE_POINTER_TO (t) = 0;
6126 TYPE_REFERENCE_TO (t) = 0;
6128 /* Set the canonical type either to a new equivalence class, or
6129 propagate the need for structural equality checks. */
6130 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6131 SET_TYPE_STRUCTURAL_EQUALITY (t);
6132 else
6133 TYPE_CANONICAL (t) = t;
6135 /* Make it its own variant. */
6136 TYPE_MAIN_VARIANT (t) = t;
6137 TYPE_NEXT_VARIANT (t) = 0;
6139 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6140 whose TREE_TYPE is not t. This can also happen in the Ada
6141 frontend when using subtypes. */
6143 return t;
6146 /* Create a new variant of TYPE, equivalent but distinct. This is so
6147 the caller can modify it. TYPE_CANONICAL for the return type will
6148 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6149 are considered equal by the language itself (or that both types
6150 require structural equality checks). */
6152 tree
6153 build_variant_type_copy (tree type MEM_STAT_DECL)
6155 tree t, m = TYPE_MAIN_VARIANT (type);
6157 t = build_distinct_type_copy (type PASS_MEM_STAT);
6159 /* Since we're building a variant, assume that it is a non-semantic
6160 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6161 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6162 /* Type variants have no alias set defined. */
6163 TYPE_ALIAS_SET (t) = -1;
6165 /* Add the new type to the chain of variants of TYPE. */
6166 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6167 TYPE_NEXT_VARIANT (m) = t;
6168 TYPE_MAIN_VARIANT (t) = m;
6170 return t;
6173 /* Return true if the from tree in both tree maps are equal. */
6176 tree_map_base_eq (const void *va, const void *vb)
6178 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6179 *const b = (const struct tree_map_base *) vb;
6180 return (a->from == b->from);
6183 /* Hash a from tree in a tree_base_map. */
6185 unsigned int
6186 tree_map_base_hash (const void *item)
6188 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6191 /* Return true if this tree map structure is marked for garbage collection
6192 purposes. We simply return true if the from tree is marked, so that this
6193 structure goes away when the from tree goes away. */
6196 tree_map_base_marked_p (const void *p)
6198 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6201 /* Hash a from tree in a tree_map. */
6203 unsigned int
6204 tree_map_hash (const void *item)
6206 return (((const struct tree_map *) item)->hash);
6209 /* Hash a from tree in a tree_decl_map. */
6211 unsigned int
6212 tree_decl_map_hash (const void *item)
6214 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6217 /* Return the initialization priority for DECL. */
6219 priority_type
6220 decl_init_priority_lookup (tree decl)
6222 symtab_node *snode = symtab_node::get (decl);
6224 if (!snode)
6225 return DEFAULT_INIT_PRIORITY;
6226 return
6227 snode->get_init_priority ();
6230 /* Return the finalization priority for DECL. */
6232 priority_type
6233 decl_fini_priority_lookup (tree decl)
6235 cgraph_node *node = cgraph_node::get (decl);
6237 if (!node)
6238 return DEFAULT_INIT_PRIORITY;
6239 return
6240 node->get_fini_priority ();
6243 /* Set the initialization priority for DECL to PRIORITY. */
6245 void
6246 decl_init_priority_insert (tree decl, priority_type priority)
6248 struct symtab_node *snode;
6250 if (priority == DEFAULT_INIT_PRIORITY)
6252 snode = symtab_node::get (decl);
6253 if (!snode)
6254 return;
6256 else if (VAR_P (decl))
6257 snode = varpool_node::get_create (decl);
6258 else
6259 snode = cgraph_node::get_create (decl);
6260 snode->set_init_priority (priority);
6263 /* Set the finalization priority for DECL to PRIORITY. */
6265 void
6266 decl_fini_priority_insert (tree decl, priority_type priority)
6268 struct cgraph_node *node;
6270 if (priority == DEFAULT_INIT_PRIORITY)
6272 node = cgraph_node::get (decl);
6273 if (!node)
6274 return;
6276 else
6277 node = cgraph_node::get_create (decl);
6278 node->set_fini_priority (priority);
6281 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6283 static void
6284 print_debug_expr_statistics (void)
6286 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6287 (long) debug_expr_for_decl->size (),
6288 (long) debug_expr_for_decl->elements (),
6289 debug_expr_for_decl->collisions ());
6292 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6294 static void
6295 print_value_expr_statistics (void)
6297 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6298 (long) value_expr_for_decl->size (),
6299 (long) value_expr_for_decl->elements (),
6300 value_expr_for_decl->collisions ());
6303 /* Lookup a debug expression for FROM, and return it if we find one. */
6305 tree
6306 decl_debug_expr_lookup (tree from)
6308 struct tree_decl_map *h, in;
6309 in.base.from = from;
6311 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6312 if (h)
6313 return h->to;
6314 return NULL_TREE;
6317 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6319 void
6320 decl_debug_expr_insert (tree from, tree to)
6322 struct tree_decl_map *h;
6324 h = ggc_alloc<tree_decl_map> ();
6325 h->base.from = from;
6326 h->to = to;
6327 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6330 /* Lookup a value expression for FROM, and return it if we find one. */
6332 tree
6333 decl_value_expr_lookup (tree from)
6335 struct tree_decl_map *h, in;
6336 in.base.from = from;
6338 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6339 if (h)
6340 return h->to;
6341 return NULL_TREE;
6344 /* Insert a mapping FROM->TO in the value expression hashtable. */
6346 void
6347 decl_value_expr_insert (tree from, tree to)
6349 struct tree_decl_map *h;
6351 h = ggc_alloc<tree_decl_map> ();
6352 h->base.from = from;
6353 h->to = to;
6354 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6357 /* Lookup a vector of debug arguments for FROM, and return it if we
6358 find one. */
6360 vec<tree, va_gc> **
6361 decl_debug_args_lookup (tree from)
6363 struct tree_vec_map *h, in;
6365 if (!DECL_HAS_DEBUG_ARGS_P (from))
6366 return NULL;
6367 gcc_checking_assert (debug_args_for_decl != NULL);
6368 in.base.from = from;
6369 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6370 if (h)
6371 return &h->to;
6372 return NULL;
6375 /* Insert a mapping FROM->empty vector of debug arguments in the value
6376 expression hashtable. */
6378 vec<tree, va_gc> **
6379 decl_debug_args_insert (tree from)
6381 struct tree_vec_map *h;
6382 tree_vec_map **loc;
6384 if (DECL_HAS_DEBUG_ARGS_P (from))
6385 return decl_debug_args_lookup (from);
6386 if (debug_args_for_decl == NULL)
6387 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6388 h = ggc_alloc<tree_vec_map> ();
6389 h->base.from = from;
6390 h->to = NULL;
6391 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6392 *loc = h;
6393 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6394 return &h->to;
6397 /* Hashing of types so that we don't make duplicates.
6398 The entry point is `type_hash_canon'. */
6400 /* Generate the default hash code for TYPE. This is designed for
6401 speed, rather than maximum entropy. */
6403 hashval_t
6404 type_hash_canon_hash (tree type)
6406 inchash::hash hstate;
6408 hstate.add_int (TREE_CODE (type));
6410 if (TREE_TYPE (type))
6411 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6413 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6414 /* Just the identifier is adequate to distinguish. */
6415 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6417 switch (TREE_CODE (type))
6419 case METHOD_TYPE:
6420 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6421 /* FALLTHROUGH. */
6422 case FUNCTION_TYPE:
6423 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6424 if (TREE_VALUE (t) != error_mark_node)
6425 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6426 break;
6428 case OFFSET_TYPE:
6429 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6430 break;
6432 case ARRAY_TYPE:
6434 if (TYPE_DOMAIN (type))
6435 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6436 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6438 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6439 hstate.add_object (typeless);
6442 break;
6444 case INTEGER_TYPE:
6446 tree t = TYPE_MAX_VALUE (type);
6447 if (!t)
6448 t = TYPE_MIN_VALUE (type);
6449 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6450 hstate.add_object (TREE_INT_CST_ELT (t, i));
6451 break;
6454 case REAL_TYPE:
6455 case FIXED_POINT_TYPE:
6457 unsigned prec = TYPE_PRECISION (type);
6458 hstate.add_object (prec);
6459 break;
6462 case VECTOR_TYPE:
6463 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
6464 break;
6466 default:
6467 break;
6470 return hstate.end ();
6473 /* These are the Hashtable callback functions. */
6475 /* Returns true iff the types are equivalent. */
6477 bool
6478 type_cache_hasher::equal (type_hash *a, type_hash *b)
6480 /* First test the things that are the same for all types. */
6481 if (a->hash != b->hash
6482 || TREE_CODE (a->type) != TREE_CODE (b->type)
6483 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6484 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6485 TYPE_ATTRIBUTES (b->type))
6486 || (TREE_CODE (a->type) != COMPLEX_TYPE
6487 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6488 return 0;
6490 /* Be careful about comparing arrays before and after the element type
6491 has been completed; don't compare TYPE_ALIGN unless both types are
6492 complete. */
6493 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6494 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6495 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6496 return 0;
6498 switch (TREE_CODE (a->type))
6500 case VOID_TYPE:
6501 case COMPLEX_TYPE:
6502 case POINTER_TYPE:
6503 case REFERENCE_TYPE:
6504 case NULLPTR_TYPE:
6505 return 1;
6507 case VECTOR_TYPE:
6508 return known_eq (TYPE_VECTOR_SUBPARTS (a->type),
6509 TYPE_VECTOR_SUBPARTS (b->type));
6511 case ENUMERAL_TYPE:
6512 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6513 && !(TYPE_VALUES (a->type)
6514 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6515 && TYPE_VALUES (b->type)
6516 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6517 && type_list_equal (TYPE_VALUES (a->type),
6518 TYPE_VALUES (b->type))))
6519 return 0;
6521 /* fall through */
6523 case INTEGER_TYPE:
6524 case REAL_TYPE:
6525 case BOOLEAN_TYPE:
6526 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6527 return false;
6528 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6529 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6530 TYPE_MAX_VALUE (b->type)))
6531 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6532 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6533 TYPE_MIN_VALUE (b->type))));
6535 case FIXED_POINT_TYPE:
6536 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6538 case OFFSET_TYPE:
6539 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6541 case METHOD_TYPE:
6542 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6543 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6544 || (TYPE_ARG_TYPES (a->type)
6545 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6546 && TYPE_ARG_TYPES (b->type)
6547 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6548 && type_list_equal (TYPE_ARG_TYPES (a->type),
6549 TYPE_ARG_TYPES (b->type)))))
6550 break;
6551 return 0;
6552 case ARRAY_TYPE:
6553 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6554 where the flag should be inherited from the element type
6555 and can change after ARRAY_TYPEs are created; on non-aggregates
6556 compare it and hash it, scalars will never have that flag set
6557 and we need to differentiate between arrays created by different
6558 front-ends or middle-end created arrays. */
6559 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6560 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6561 || (TYPE_TYPELESS_STORAGE (a->type)
6562 == TYPE_TYPELESS_STORAGE (b->type))));
6564 case RECORD_TYPE:
6565 case UNION_TYPE:
6566 case QUAL_UNION_TYPE:
6567 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6568 || (TYPE_FIELDS (a->type)
6569 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6570 && TYPE_FIELDS (b->type)
6571 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6572 && type_list_equal (TYPE_FIELDS (a->type),
6573 TYPE_FIELDS (b->type))));
6575 case FUNCTION_TYPE:
6576 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6577 || (TYPE_ARG_TYPES (a->type)
6578 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6579 && TYPE_ARG_TYPES (b->type)
6580 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6581 && type_list_equal (TYPE_ARG_TYPES (a->type),
6582 TYPE_ARG_TYPES (b->type))))
6583 break;
6584 return 0;
6586 default:
6587 return 0;
6590 if (lang_hooks.types.type_hash_eq != NULL)
6591 return lang_hooks.types.type_hash_eq (a->type, b->type);
6593 return 1;
6596 /* Given TYPE, and HASHCODE its hash code, return the canonical
6597 object for an identical type if one already exists.
6598 Otherwise, return TYPE, and record it as the canonical object.
6600 To use this function, first create a type of the sort you want.
6601 Then compute its hash code from the fields of the type that
6602 make it different from other similar types.
6603 Then call this function and use the value. */
6605 tree
6606 type_hash_canon (unsigned int hashcode, tree type)
6608 type_hash in;
6609 type_hash **loc;
6611 /* The hash table only contains main variants, so ensure that's what we're
6612 being passed. */
6613 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6615 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6616 must call that routine before comparing TYPE_ALIGNs. */
6617 layout_type (type);
6619 in.hash = hashcode;
6620 in.type = type;
6622 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
6623 if (*loc)
6625 tree t1 = ((type_hash *) *loc)->type;
6626 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1
6627 && t1 != type);
6628 if (TYPE_UID (type) + 1 == next_type_uid)
6629 --next_type_uid;
6630 /* Free also min/max values and the cache for integer
6631 types. This can't be done in free_node, as LTO frees
6632 those on its own. */
6633 if (TREE_CODE (type) == INTEGER_TYPE)
6635 if (TYPE_MIN_VALUE (type)
6636 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
6638 /* Zero is always in TYPE_CACHED_VALUES. */
6639 if (! TYPE_UNSIGNED (type))
6640 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
6641 ggc_free (TYPE_MIN_VALUE (type));
6643 if (TYPE_MAX_VALUE (type)
6644 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
6646 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
6647 ggc_free (TYPE_MAX_VALUE (type));
6649 if (TYPE_CACHED_VALUES_P (type))
6650 ggc_free (TYPE_CACHED_VALUES (type));
6652 free_node (type);
6653 return t1;
6655 else
6657 struct type_hash *h;
6659 h = ggc_alloc<type_hash> ();
6660 h->hash = hashcode;
6661 h->type = type;
6662 *loc = h;
6664 return type;
6668 static void
6669 print_type_hash_statistics (void)
6671 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6672 (long) type_hash_table->size (),
6673 (long) type_hash_table->elements (),
6674 type_hash_table->collisions ());
6677 /* Given two lists of types
6678 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6679 return 1 if the lists contain the same types in the same order.
6680 Also, the TREE_PURPOSEs must match. */
6683 type_list_equal (const_tree l1, const_tree l2)
6685 const_tree t1, t2;
6687 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6688 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6689 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6690 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6691 && (TREE_TYPE (TREE_PURPOSE (t1))
6692 == TREE_TYPE (TREE_PURPOSE (t2))))))
6693 return 0;
6695 return t1 == t2;
6698 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6699 given by TYPE. If the argument list accepts variable arguments,
6700 then this function counts only the ordinary arguments. */
6703 type_num_arguments (const_tree type)
6705 int i = 0;
6706 tree t;
6708 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6709 /* If the function does not take a variable number of arguments,
6710 the last element in the list will have type `void'. */
6711 if (VOID_TYPE_P (TREE_VALUE (t)))
6712 break;
6713 else
6714 ++i;
6716 return i;
6719 /* Nonzero if integer constants T1 and T2
6720 represent the same constant value. */
6723 tree_int_cst_equal (const_tree t1, const_tree t2)
6725 if (t1 == t2)
6726 return 1;
6728 if (t1 == 0 || t2 == 0)
6729 return 0;
6731 if (TREE_CODE (t1) == INTEGER_CST
6732 && TREE_CODE (t2) == INTEGER_CST
6733 && wi::to_widest (t1) == wi::to_widest (t2))
6734 return 1;
6736 return 0;
6739 /* Return true if T is an INTEGER_CST whose numerical value (extended
6740 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6742 bool
6743 tree_fits_shwi_p (const_tree t)
6745 return (t != NULL_TREE
6746 && TREE_CODE (t) == INTEGER_CST
6747 && wi::fits_shwi_p (wi::to_widest (t)));
6750 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
6751 value (extended according to TYPE_UNSIGNED) fits in a poly_int64. */
6753 bool
6754 tree_fits_poly_int64_p (const_tree t)
6756 if (t == NULL_TREE)
6757 return false;
6758 if (POLY_INT_CST_P (t))
6760 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
6761 if (!wi::fits_shwi_p (wi::to_wide (POLY_INT_CST_COEFF (t, i))))
6762 return false;
6763 return true;
6765 return (TREE_CODE (t) == INTEGER_CST
6766 && wi::fits_shwi_p (wi::to_widest (t)));
6769 /* Return true if T is an INTEGER_CST whose numerical value (extended
6770 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6772 bool
6773 tree_fits_uhwi_p (const_tree t)
6775 return (t != NULL_TREE
6776 && TREE_CODE (t) == INTEGER_CST
6777 && wi::fits_uhwi_p (wi::to_widest (t)));
6780 /* Return true if T is an INTEGER_CST or POLY_INT_CST whose numerical
6781 value (extended according to TYPE_UNSIGNED) fits in a poly_uint64. */
6783 bool
6784 tree_fits_poly_uint64_p (const_tree t)
6786 if (t == NULL_TREE)
6787 return false;
6788 if (POLY_INT_CST_P (t))
6790 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; i++)
6791 if (!wi::fits_uhwi_p (wi::to_widest (POLY_INT_CST_COEFF (t, i))))
6792 return false;
6793 return true;
6795 return (TREE_CODE (t) == INTEGER_CST
6796 && wi::fits_uhwi_p (wi::to_widest (t)));
6799 /* T is an INTEGER_CST whose numerical value (extended according to
6800 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
6801 HOST_WIDE_INT. */
6803 HOST_WIDE_INT
6804 tree_to_shwi (const_tree t)
6806 gcc_assert (tree_fits_shwi_p (t));
6807 return TREE_INT_CST_LOW (t);
6810 /* T is an INTEGER_CST whose numerical value (extended according to
6811 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
6812 HOST_WIDE_INT. */
6814 unsigned HOST_WIDE_INT
6815 tree_to_uhwi (const_tree t)
6817 gcc_assert (tree_fits_uhwi_p (t));
6818 return TREE_INT_CST_LOW (t);
6821 /* Return the most significant (sign) bit of T. */
6824 tree_int_cst_sign_bit (const_tree t)
6826 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
6828 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
6831 /* Return an indication of the sign of the integer constant T.
6832 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6833 Note that -1 will never be returned if T's type is unsigned. */
6836 tree_int_cst_sgn (const_tree t)
6838 if (wi::to_wide (t) == 0)
6839 return 0;
6840 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6841 return 1;
6842 else if (wi::neg_p (wi::to_wide (t)))
6843 return -1;
6844 else
6845 return 1;
6848 /* Return the minimum number of bits needed to represent VALUE in a
6849 signed or unsigned type, UNSIGNEDP says which. */
6851 unsigned int
6852 tree_int_cst_min_precision (tree value, signop sgn)
6854 /* If the value is negative, compute its negative minus 1. The latter
6855 adjustment is because the absolute value of the largest negative value
6856 is one larger than the largest positive value. This is equivalent to
6857 a bit-wise negation, so use that operation instead. */
6859 if (tree_int_cst_sgn (value) < 0)
6860 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6862 /* Return the number of bits needed, taking into account the fact
6863 that we need one more bit for a signed than unsigned type.
6864 If value is 0 or -1, the minimum precision is 1 no matter
6865 whether unsignedp is true or false. */
6867 if (integer_zerop (value))
6868 return 1;
6869 else
6870 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
6873 /* Return truthvalue of whether T1 is the same tree structure as T2.
6874 Return 1 if they are the same.
6875 Return 0 if they are understandably different.
6876 Return -1 if either contains tree structure not understood by
6877 this function. */
6880 simple_cst_equal (const_tree t1, const_tree t2)
6882 enum tree_code code1, code2;
6883 int cmp;
6884 int i;
6886 if (t1 == t2)
6887 return 1;
6888 if (t1 == 0 || t2 == 0)
6889 return 0;
6891 code1 = TREE_CODE (t1);
6892 code2 = TREE_CODE (t2);
6894 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6896 if (CONVERT_EXPR_CODE_P (code2)
6897 || code2 == NON_LVALUE_EXPR)
6898 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6899 else
6900 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6903 else if (CONVERT_EXPR_CODE_P (code2)
6904 || code2 == NON_LVALUE_EXPR)
6905 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6907 if (code1 != code2)
6908 return 0;
6910 switch (code1)
6912 case INTEGER_CST:
6913 return wi::to_widest (t1) == wi::to_widest (t2);
6915 case REAL_CST:
6916 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
6918 case FIXED_CST:
6919 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6921 case STRING_CST:
6922 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6923 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6924 TREE_STRING_LENGTH (t1)));
6926 case CONSTRUCTOR:
6928 unsigned HOST_WIDE_INT idx;
6929 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
6930 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
6932 if (vec_safe_length (v1) != vec_safe_length (v2))
6933 return false;
6935 for (idx = 0; idx < vec_safe_length (v1); ++idx)
6936 /* ??? Should we handle also fields here? */
6937 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
6938 return false;
6939 return true;
6942 case SAVE_EXPR:
6943 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6945 case CALL_EXPR:
6946 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6947 if (cmp <= 0)
6948 return cmp;
6949 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6950 return 0;
6952 const_tree arg1, arg2;
6953 const_call_expr_arg_iterator iter1, iter2;
6954 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6955 arg2 = first_const_call_expr_arg (t2, &iter2);
6956 arg1 && arg2;
6957 arg1 = next_const_call_expr_arg (&iter1),
6958 arg2 = next_const_call_expr_arg (&iter2))
6960 cmp = simple_cst_equal (arg1, arg2);
6961 if (cmp <= 0)
6962 return cmp;
6964 return arg1 == arg2;
6967 case TARGET_EXPR:
6968 /* Special case: if either target is an unallocated VAR_DECL,
6969 it means that it's going to be unified with whatever the
6970 TARGET_EXPR is really supposed to initialize, so treat it
6971 as being equivalent to anything. */
6972 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6973 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6974 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6975 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6976 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6977 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6978 cmp = 1;
6979 else
6980 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6982 if (cmp <= 0)
6983 return cmp;
6985 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6987 case WITH_CLEANUP_EXPR:
6988 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6989 if (cmp <= 0)
6990 return cmp;
6992 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6994 case COMPONENT_REF:
6995 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6996 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6998 return 0;
7000 case VAR_DECL:
7001 case PARM_DECL:
7002 case CONST_DECL:
7003 case FUNCTION_DECL:
7004 return 0;
7006 default:
7007 if (POLY_INT_CST_P (t1))
7008 /* A false return means maybe_ne rather than known_ne. */
7009 return known_eq (poly_widest_int::from (poly_int_cst_value (t1),
7010 TYPE_SIGN (TREE_TYPE (t1))),
7011 poly_widest_int::from (poly_int_cst_value (t2),
7012 TYPE_SIGN (TREE_TYPE (t2))));
7013 break;
7016 /* This general rule works for most tree codes. All exceptions should be
7017 handled above. If this is a language-specific tree code, we can't
7018 trust what might be in the operand, so say we don't know
7019 the situation. */
7020 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7021 return -1;
7023 switch (TREE_CODE_CLASS (code1))
7025 case tcc_unary:
7026 case tcc_binary:
7027 case tcc_comparison:
7028 case tcc_expression:
7029 case tcc_reference:
7030 case tcc_statement:
7031 cmp = 1;
7032 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7034 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7035 if (cmp <= 0)
7036 return cmp;
7039 return cmp;
7041 default:
7042 return -1;
7046 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7047 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7048 than U, respectively. */
7051 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7053 if (tree_int_cst_sgn (t) < 0)
7054 return -1;
7055 else if (!tree_fits_uhwi_p (t))
7056 return 1;
7057 else if (TREE_INT_CST_LOW (t) == u)
7058 return 0;
7059 else if (TREE_INT_CST_LOW (t) < u)
7060 return -1;
7061 else
7062 return 1;
7065 /* Return true if SIZE represents a constant size that is in bounds of
7066 what the middle-end and the backend accepts (covering not more than
7067 half of the address-space). */
7069 bool
7070 valid_constant_size_p (const_tree size)
7072 if (POLY_INT_CST_P (size))
7074 if (TREE_OVERFLOW (size))
7075 return false;
7076 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7077 if (!valid_constant_size_p (POLY_INT_CST_COEFF (size, i)))
7078 return false;
7079 return true;
7081 if (! tree_fits_uhwi_p (size)
7082 || TREE_OVERFLOW (size)
7083 || tree_int_cst_sign_bit (size) != 0)
7084 return false;
7085 return true;
7088 /* Return the precision of the type, or for a complex or vector type the
7089 precision of the type of its elements. */
7091 unsigned int
7092 element_precision (const_tree type)
7094 if (!TYPE_P (type))
7095 type = TREE_TYPE (type);
7096 enum tree_code code = TREE_CODE (type);
7097 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7098 type = TREE_TYPE (type);
7100 return TYPE_PRECISION (type);
7103 /* Return true if CODE represents an associative tree code. Otherwise
7104 return false. */
7105 bool
7106 associative_tree_code (enum tree_code code)
7108 switch (code)
7110 case BIT_IOR_EXPR:
7111 case BIT_AND_EXPR:
7112 case BIT_XOR_EXPR:
7113 case PLUS_EXPR:
7114 case MULT_EXPR:
7115 case MIN_EXPR:
7116 case MAX_EXPR:
7117 return true;
7119 default:
7120 break;
7122 return false;
7125 /* Return true if CODE represents a commutative tree code. Otherwise
7126 return false. */
7127 bool
7128 commutative_tree_code (enum tree_code code)
7130 switch (code)
7132 case PLUS_EXPR:
7133 case MULT_EXPR:
7134 case MULT_HIGHPART_EXPR:
7135 case MIN_EXPR:
7136 case MAX_EXPR:
7137 case BIT_IOR_EXPR:
7138 case BIT_XOR_EXPR:
7139 case BIT_AND_EXPR:
7140 case NE_EXPR:
7141 case EQ_EXPR:
7142 case UNORDERED_EXPR:
7143 case ORDERED_EXPR:
7144 case UNEQ_EXPR:
7145 case LTGT_EXPR:
7146 case TRUTH_AND_EXPR:
7147 case TRUTH_XOR_EXPR:
7148 case TRUTH_OR_EXPR:
7149 case WIDEN_MULT_EXPR:
7150 case VEC_WIDEN_MULT_HI_EXPR:
7151 case VEC_WIDEN_MULT_LO_EXPR:
7152 case VEC_WIDEN_MULT_EVEN_EXPR:
7153 case VEC_WIDEN_MULT_ODD_EXPR:
7154 return true;
7156 default:
7157 break;
7159 return false;
7162 /* Return true if CODE represents a ternary tree code for which the
7163 first two operands are commutative. Otherwise return false. */
7164 bool
7165 commutative_ternary_tree_code (enum tree_code code)
7167 switch (code)
7169 case WIDEN_MULT_PLUS_EXPR:
7170 case WIDEN_MULT_MINUS_EXPR:
7171 case DOT_PROD_EXPR:
7172 return true;
7174 default:
7175 break;
7177 return false;
7180 /* Returns true if CODE can overflow. */
7182 bool
7183 operation_can_overflow (enum tree_code code)
7185 switch (code)
7187 case PLUS_EXPR:
7188 case MINUS_EXPR:
7189 case MULT_EXPR:
7190 case LSHIFT_EXPR:
7191 /* Can overflow in various ways. */
7192 return true;
7193 case TRUNC_DIV_EXPR:
7194 case EXACT_DIV_EXPR:
7195 case FLOOR_DIV_EXPR:
7196 case CEIL_DIV_EXPR:
7197 /* For INT_MIN / -1. */
7198 return true;
7199 case NEGATE_EXPR:
7200 case ABS_EXPR:
7201 /* For -INT_MIN. */
7202 return true;
7203 default:
7204 /* These operators cannot overflow. */
7205 return false;
7209 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7210 ftrapv doesn't generate trapping insns for CODE. */
7212 bool
7213 operation_no_trapping_overflow (tree type, enum tree_code code)
7215 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7217 /* We don't generate instructions that trap on overflow for complex or vector
7218 types. */
7219 if (!INTEGRAL_TYPE_P (type))
7220 return true;
7222 if (!TYPE_OVERFLOW_TRAPS (type))
7223 return true;
7225 switch (code)
7227 case PLUS_EXPR:
7228 case MINUS_EXPR:
7229 case MULT_EXPR:
7230 case NEGATE_EXPR:
7231 case ABS_EXPR:
7232 /* These operators can overflow, and -ftrapv generates trapping code for
7233 these. */
7234 return false;
7235 case TRUNC_DIV_EXPR:
7236 case EXACT_DIV_EXPR:
7237 case FLOOR_DIV_EXPR:
7238 case CEIL_DIV_EXPR:
7239 case LSHIFT_EXPR:
7240 /* These operators can overflow, but -ftrapv does not generate trapping
7241 code for these. */
7242 return true;
7243 default:
7244 /* These operators cannot overflow. */
7245 return true;
7249 namespace inchash
7252 /* Generate a hash value for an expression. This can be used iteratively
7253 by passing a previous result as the HSTATE argument.
7255 This function is intended to produce the same hash for expressions which
7256 would compare equal using operand_equal_p. */
7257 void
7258 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7260 int i;
7261 enum tree_code code;
7262 enum tree_code_class tclass;
7264 if (t == NULL_TREE || t == error_mark_node)
7266 hstate.merge_hash (0);
7267 return;
7270 if (!(flags & OEP_ADDRESS_OF))
7271 STRIP_NOPS (t);
7273 code = TREE_CODE (t);
7275 switch (code)
7277 /* Alas, constants aren't shared, so we can't rely on pointer
7278 identity. */
7279 case VOID_CST:
7280 hstate.merge_hash (0);
7281 return;
7282 case INTEGER_CST:
7283 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7284 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7285 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7286 return;
7287 case REAL_CST:
7289 unsigned int val2;
7290 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7291 val2 = rvc_zero;
7292 else
7293 val2 = real_hash (TREE_REAL_CST_PTR (t));
7294 hstate.merge_hash (val2);
7295 return;
7297 case FIXED_CST:
7299 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7300 hstate.merge_hash (val2);
7301 return;
7303 case STRING_CST:
7304 hstate.add ((const void *) TREE_STRING_POINTER (t),
7305 TREE_STRING_LENGTH (t));
7306 return;
7307 case COMPLEX_CST:
7308 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7309 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7310 return;
7311 case VECTOR_CST:
7313 hstate.add_int (VECTOR_CST_NPATTERNS (t));
7314 hstate.add_int (VECTOR_CST_NELTS_PER_PATTERN (t));
7315 unsigned int count = vector_cst_encoded_nelts (t);
7316 for (unsigned int i = 0; i < count; ++i)
7317 inchash::add_expr (VECTOR_CST_ENCODED_ELT (t, i), hstate, flags);
7318 return;
7320 case SSA_NAME:
7321 /* We can just compare by pointer. */
7322 hstate.add_hwi (SSA_NAME_VERSION (t));
7323 return;
7324 case PLACEHOLDER_EXPR:
7325 /* The node itself doesn't matter. */
7326 return;
7327 case BLOCK:
7328 case OMP_CLAUSE:
7329 /* Ignore. */
7330 return;
7331 case TREE_LIST:
7332 /* A list of expressions, for a CALL_EXPR or as the elements of a
7333 VECTOR_CST. */
7334 for (; t; t = TREE_CHAIN (t))
7335 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7336 return;
7337 case CONSTRUCTOR:
7339 unsigned HOST_WIDE_INT idx;
7340 tree field, value;
7341 flags &= ~OEP_ADDRESS_OF;
7342 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7344 inchash::add_expr (field, hstate, flags);
7345 inchash::add_expr (value, hstate, flags);
7347 return;
7349 case STATEMENT_LIST:
7351 tree_stmt_iterator i;
7352 for (i = tsi_start (CONST_CAST_TREE (t));
7353 !tsi_end_p (i); tsi_next (&i))
7354 inchash::add_expr (tsi_stmt (i), hstate, flags);
7355 return;
7357 case TREE_VEC:
7358 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7359 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7360 return;
7361 case IDENTIFIER_NODE:
7362 hstate.add_object (IDENTIFIER_HASH_VALUE (t));
7363 return;
7364 case FUNCTION_DECL:
7365 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7366 Otherwise nodes that compare equal according to operand_equal_p might
7367 get different hash codes. However, don't do this for machine specific
7368 or front end builtins, since the function code is overloaded in those
7369 cases. */
7370 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7371 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7373 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7374 code = TREE_CODE (t);
7376 /* FALL THROUGH */
7377 default:
7378 if (POLY_INT_CST_P (t))
7380 for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
7381 hstate.add_wide_int (wi::to_wide (POLY_INT_CST_COEFF (t, i)));
7382 return;
7384 tclass = TREE_CODE_CLASS (code);
7386 if (tclass == tcc_declaration)
7388 /* DECL's have a unique ID */
7389 hstate.add_hwi (DECL_UID (t));
7391 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7393 /* For comparisons that can be swapped, use the lower
7394 tree code. */
7395 enum tree_code ccode = swap_tree_comparison (code);
7396 if (code < ccode)
7397 ccode = code;
7398 hstate.add_object (ccode);
7399 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7400 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7402 else if (CONVERT_EXPR_CODE_P (code))
7404 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7405 operand_equal_p. */
7406 enum tree_code ccode = NOP_EXPR;
7407 hstate.add_object (ccode);
7409 /* Don't hash the type, that can lead to having nodes which
7410 compare equal according to operand_equal_p, but which
7411 have different hash codes. Make sure to include signedness
7412 in the hash computation. */
7413 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7414 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7416 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7417 else if (code == MEM_REF
7418 && (flags & OEP_ADDRESS_OF) != 0
7419 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7420 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7421 && integer_zerop (TREE_OPERAND (t, 1)))
7422 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7423 hstate, flags);
7424 /* Don't ICE on FE specific trees, or their arguments etc.
7425 during operand_equal_p hash verification. */
7426 else if (!IS_EXPR_CODE_CLASS (tclass))
7427 gcc_assert (flags & OEP_HASH_CHECK);
7428 else
7430 unsigned int sflags = flags;
7432 hstate.add_object (code);
7434 switch (code)
7436 case ADDR_EXPR:
7437 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7438 flags |= OEP_ADDRESS_OF;
7439 sflags = flags;
7440 break;
7442 case INDIRECT_REF:
7443 case MEM_REF:
7444 case TARGET_MEM_REF:
7445 flags &= ~OEP_ADDRESS_OF;
7446 sflags = flags;
7447 break;
7449 case ARRAY_REF:
7450 case ARRAY_RANGE_REF:
7451 case COMPONENT_REF:
7452 case BIT_FIELD_REF:
7453 sflags &= ~OEP_ADDRESS_OF;
7454 break;
7456 case COND_EXPR:
7457 flags &= ~OEP_ADDRESS_OF;
7458 break;
7460 case WIDEN_MULT_PLUS_EXPR:
7461 case WIDEN_MULT_MINUS_EXPR:
7463 /* The multiplication operands are commutative. */
7464 inchash::hash one, two;
7465 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7466 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7467 hstate.add_commutative (one, two);
7468 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7469 return;
7472 case CALL_EXPR:
7473 if (CALL_EXPR_FN (t) == NULL_TREE)
7474 hstate.add_int (CALL_EXPR_IFN (t));
7475 break;
7477 case TARGET_EXPR:
7478 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7479 Usually different TARGET_EXPRs just should use
7480 different temporaries in their slots. */
7481 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7482 return;
7484 default:
7485 break;
7488 /* Don't hash the type, that can lead to having nodes which
7489 compare equal according to operand_equal_p, but which
7490 have different hash codes. */
7491 if (code == NON_LVALUE_EXPR)
7493 /* Make sure to include signness in the hash computation. */
7494 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7495 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7498 else if (commutative_tree_code (code))
7500 /* It's a commutative expression. We want to hash it the same
7501 however it appears. We do this by first hashing both operands
7502 and then rehashing based on the order of their independent
7503 hashes. */
7504 inchash::hash one, two;
7505 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7506 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7507 hstate.add_commutative (one, two);
7509 else
7510 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7511 inchash::add_expr (TREE_OPERAND (t, i), hstate,
7512 i == 0 ? flags : sflags);
7514 return;
7520 /* Constructors for pointer, array and function types.
7521 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7522 constructed by language-dependent code, not here.) */
7524 /* Construct, lay out and return the type of pointers to TO_TYPE with
7525 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7526 reference all of memory. If such a type has already been
7527 constructed, reuse it. */
7529 tree
7530 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7531 bool can_alias_all)
7533 tree t;
7534 bool could_alias = can_alias_all;
7536 if (to_type == error_mark_node)
7537 return error_mark_node;
7539 /* If the pointed-to type has the may_alias attribute set, force
7540 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7541 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7542 can_alias_all = true;
7544 /* In some cases, languages will have things that aren't a POINTER_TYPE
7545 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7546 In that case, return that type without regard to the rest of our
7547 operands.
7549 ??? This is a kludge, but consistent with the way this function has
7550 always operated and there doesn't seem to be a good way to avoid this
7551 at the moment. */
7552 if (TYPE_POINTER_TO (to_type) != 0
7553 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7554 return TYPE_POINTER_TO (to_type);
7556 /* First, if we already have a type for pointers to TO_TYPE and it's
7557 the proper mode, use it. */
7558 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7559 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7560 return t;
7562 t = make_node (POINTER_TYPE);
7564 TREE_TYPE (t) = to_type;
7565 SET_TYPE_MODE (t, mode);
7566 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7567 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7568 TYPE_POINTER_TO (to_type) = t;
7570 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7571 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7572 SET_TYPE_STRUCTURAL_EQUALITY (t);
7573 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7574 TYPE_CANONICAL (t)
7575 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7576 mode, false);
7578 /* Lay out the type. This function has many callers that are concerned
7579 with expression-construction, and this simplifies them all. */
7580 layout_type (t);
7582 return t;
7585 /* By default build pointers in ptr_mode. */
7587 tree
7588 build_pointer_type (tree to_type)
7590 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7591 : TYPE_ADDR_SPACE (to_type);
7592 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7593 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7596 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7598 tree
7599 build_reference_type_for_mode (tree to_type, machine_mode mode,
7600 bool can_alias_all)
7602 tree t;
7603 bool could_alias = can_alias_all;
7605 if (to_type == error_mark_node)
7606 return error_mark_node;
7608 /* If the pointed-to type has the may_alias attribute set, force
7609 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7610 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7611 can_alias_all = true;
7613 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7614 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7615 In that case, return that type without regard to the rest of our
7616 operands.
7618 ??? This is a kludge, but consistent with the way this function has
7619 always operated and there doesn't seem to be a good way to avoid this
7620 at the moment. */
7621 if (TYPE_REFERENCE_TO (to_type) != 0
7622 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7623 return TYPE_REFERENCE_TO (to_type);
7625 /* First, if we already have a type for pointers to TO_TYPE and it's
7626 the proper mode, use it. */
7627 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7628 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7629 return t;
7631 t = make_node (REFERENCE_TYPE);
7633 TREE_TYPE (t) = to_type;
7634 SET_TYPE_MODE (t, mode);
7635 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7636 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7637 TYPE_REFERENCE_TO (to_type) = t;
7639 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7640 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7641 SET_TYPE_STRUCTURAL_EQUALITY (t);
7642 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7643 TYPE_CANONICAL (t)
7644 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7645 mode, false);
7647 layout_type (t);
7649 return t;
7653 /* Build the node for the type of references-to-TO_TYPE by default
7654 in ptr_mode. */
7656 tree
7657 build_reference_type (tree to_type)
7659 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7660 : TYPE_ADDR_SPACE (to_type);
7661 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7662 return build_reference_type_for_mode (to_type, pointer_mode, false);
7665 #define MAX_INT_CACHED_PREC \
7666 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7667 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7669 /* Builds a signed or unsigned integer type of precision PRECISION.
7670 Used for C bitfields whose precision does not match that of
7671 built-in target types. */
7672 tree
7673 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7674 int unsignedp)
7676 tree itype, ret;
7678 if (unsignedp)
7679 unsignedp = MAX_INT_CACHED_PREC + 1;
7681 if (precision <= MAX_INT_CACHED_PREC)
7683 itype = nonstandard_integer_type_cache[precision + unsignedp];
7684 if (itype)
7685 return itype;
7688 itype = make_node (INTEGER_TYPE);
7689 TYPE_PRECISION (itype) = precision;
7691 if (unsignedp)
7692 fixup_unsigned_type (itype);
7693 else
7694 fixup_signed_type (itype);
7696 ret = itype;
7698 inchash::hash hstate;
7699 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
7700 ret = type_hash_canon (hstate.end (), itype);
7701 if (precision <= MAX_INT_CACHED_PREC)
7702 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7704 return ret;
7707 #define MAX_BOOL_CACHED_PREC \
7708 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7709 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
7711 /* Builds a boolean type of precision PRECISION.
7712 Used for boolean vectors to choose proper vector element size. */
7713 tree
7714 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
7716 tree type;
7718 if (precision <= MAX_BOOL_CACHED_PREC)
7720 type = nonstandard_boolean_type_cache[precision];
7721 if (type)
7722 return type;
7725 type = make_node (BOOLEAN_TYPE);
7726 TYPE_PRECISION (type) = precision;
7727 fixup_signed_type (type);
7729 if (precision <= MAX_INT_CACHED_PREC)
7730 nonstandard_boolean_type_cache[precision] = type;
7732 return type;
7735 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7736 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7737 is true, reuse such a type that has already been constructed. */
7739 static tree
7740 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7742 tree itype = make_node (INTEGER_TYPE);
7744 TREE_TYPE (itype) = type;
7746 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7747 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7749 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7750 SET_TYPE_MODE (itype, TYPE_MODE (type));
7751 TYPE_SIZE (itype) = TYPE_SIZE (type);
7752 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7753 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
7754 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7755 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
7757 if (!shared)
7758 return itype;
7760 if ((TYPE_MIN_VALUE (itype)
7761 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7762 || (TYPE_MAX_VALUE (itype)
7763 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7765 /* Since we cannot reliably merge this type, we need to compare it using
7766 structural equality checks. */
7767 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7768 return itype;
7771 hashval_t hash = type_hash_canon_hash (itype);
7772 itype = type_hash_canon (hash, itype);
7774 return itype;
7777 /* Wrapper around build_range_type_1 with SHARED set to true. */
7779 tree
7780 build_range_type (tree type, tree lowval, tree highval)
7782 return build_range_type_1 (type, lowval, highval, true);
7785 /* Wrapper around build_range_type_1 with SHARED set to false. */
7787 tree
7788 build_nonshared_range_type (tree type, tree lowval, tree highval)
7790 return build_range_type_1 (type, lowval, highval, false);
7793 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7794 MAXVAL should be the maximum value in the domain
7795 (one less than the length of the array).
7797 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7798 We don't enforce this limit, that is up to caller (e.g. language front end).
7799 The limit exists because the result is a signed type and we don't handle
7800 sizes that use more than one HOST_WIDE_INT. */
7802 tree
7803 build_index_type (tree maxval)
7805 return build_range_type (sizetype, size_zero_node, maxval);
7808 /* Return true if the debug information for TYPE, a subtype, should be emitted
7809 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7810 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7811 debug info and doesn't reflect the source code. */
7813 bool
7814 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7816 tree base_type = TREE_TYPE (type), low, high;
7818 /* Subrange types have a base type which is an integral type. */
7819 if (!INTEGRAL_TYPE_P (base_type))
7820 return false;
7822 /* Get the real bounds of the subtype. */
7823 if (lang_hooks.types.get_subrange_bounds)
7824 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7825 else
7827 low = TYPE_MIN_VALUE (type);
7828 high = TYPE_MAX_VALUE (type);
7831 /* If the type and its base type have the same representation and the same
7832 name, then the type is not a subrange but a copy of the base type. */
7833 if ((TREE_CODE (base_type) == INTEGER_TYPE
7834 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7835 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7836 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7837 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
7838 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
7839 return false;
7841 if (lowval)
7842 *lowval = low;
7843 if (highval)
7844 *highval = high;
7845 return true;
7848 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7849 and number of elements specified by the range of values of INDEX_TYPE.
7850 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
7851 If SHARED is true, reuse such a type that has already been constructed. */
7853 static tree
7854 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
7855 bool shared)
7857 tree t;
7859 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7861 error ("arrays of functions are not meaningful");
7862 elt_type = integer_type_node;
7865 t = make_node (ARRAY_TYPE);
7866 TREE_TYPE (t) = elt_type;
7867 TYPE_DOMAIN (t) = index_type;
7868 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7869 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
7870 layout_type (t);
7872 /* If the element type is incomplete at this point we get marked for
7873 structural equality. Do not record these types in the canonical
7874 type hashtable. */
7875 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7876 return t;
7878 if (shared)
7880 hashval_t hash = type_hash_canon_hash (t);
7881 t = type_hash_canon (hash, t);
7884 if (TYPE_CANONICAL (t) == t)
7886 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7887 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
7888 || in_lto_p)
7889 SET_TYPE_STRUCTURAL_EQUALITY (t);
7890 else if (TYPE_CANONICAL (elt_type) != elt_type
7891 || (index_type && TYPE_CANONICAL (index_type) != index_type))
7892 TYPE_CANONICAL (t)
7893 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7894 index_type
7895 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7896 typeless_storage, shared);
7899 return t;
7902 /* Wrapper around build_array_type_1 with SHARED set to true. */
7904 tree
7905 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
7907 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
7910 /* Wrapper around build_array_type_1 with SHARED set to false. */
7912 tree
7913 build_nonshared_array_type (tree elt_type, tree index_type)
7915 return build_array_type_1 (elt_type, index_type, false, false);
7918 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7919 sizetype. */
7921 tree
7922 build_array_type_nelts (tree elt_type, poly_uint64 nelts)
7924 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7927 /* Recursively examines the array elements of TYPE, until a non-array
7928 element type is found. */
7930 tree
7931 strip_array_types (tree type)
7933 while (TREE_CODE (type) == ARRAY_TYPE)
7934 type = TREE_TYPE (type);
7936 return type;
7939 /* Computes the canonical argument types from the argument type list
7940 ARGTYPES.
7942 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7943 on entry to this function, or if any of the ARGTYPES are
7944 structural.
7946 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7947 true on entry to this function, or if any of the ARGTYPES are
7948 non-canonical.
7950 Returns a canonical argument list, which may be ARGTYPES when the
7951 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7952 true) or would not differ from ARGTYPES. */
7954 static tree
7955 maybe_canonicalize_argtypes (tree argtypes,
7956 bool *any_structural_p,
7957 bool *any_noncanonical_p)
7959 tree arg;
7960 bool any_noncanonical_argtypes_p = false;
7962 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7964 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7965 /* Fail gracefully by stating that the type is structural. */
7966 *any_structural_p = true;
7967 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7968 *any_structural_p = true;
7969 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7970 || TREE_PURPOSE (arg))
7971 /* If the argument has a default argument, we consider it
7972 non-canonical even though the type itself is canonical.
7973 That way, different variants of function and method types
7974 with default arguments will all point to the variant with
7975 no defaults as their canonical type. */
7976 any_noncanonical_argtypes_p = true;
7979 if (*any_structural_p)
7980 return argtypes;
7982 if (any_noncanonical_argtypes_p)
7984 /* Build the canonical list of argument types. */
7985 tree canon_argtypes = NULL_TREE;
7986 bool is_void = false;
7988 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7990 if (arg == void_list_node)
7991 is_void = true;
7992 else
7993 canon_argtypes = tree_cons (NULL_TREE,
7994 TYPE_CANONICAL (TREE_VALUE (arg)),
7995 canon_argtypes);
7998 canon_argtypes = nreverse (canon_argtypes);
7999 if (is_void)
8000 canon_argtypes = chainon (canon_argtypes, void_list_node);
8002 /* There is a non-canonical type. */
8003 *any_noncanonical_p = true;
8004 return canon_argtypes;
8007 /* The canonical argument types are the same as ARGTYPES. */
8008 return argtypes;
8011 /* Construct, lay out and return
8012 the type of functions returning type VALUE_TYPE
8013 given arguments of types ARG_TYPES.
8014 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8015 are data type nodes for the arguments of the function.
8016 If such a type has already been constructed, reuse it. */
8018 tree
8019 build_function_type (tree value_type, tree arg_types)
8021 tree t;
8022 inchash::hash hstate;
8023 bool any_structural_p, any_noncanonical_p;
8024 tree canon_argtypes;
8026 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8028 error ("function return type cannot be function");
8029 value_type = integer_type_node;
8032 /* Make a node of the sort we want. */
8033 t = make_node (FUNCTION_TYPE);
8034 TREE_TYPE (t) = value_type;
8035 TYPE_ARG_TYPES (t) = arg_types;
8037 /* If we already have such a type, use the old one. */
8038 hashval_t hash = type_hash_canon_hash (t);
8039 t = type_hash_canon (hash, t);
8041 /* Set up the canonical type. */
8042 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8043 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8044 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8045 &any_structural_p,
8046 &any_noncanonical_p);
8047 if (any_structural_p)
8048 SET_TYPE_STRUCTURAL_EQUALITY (t);
8049 else if (any_noncanonical_p)
8050 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8051 canon_argtypes);
8053 if (!COMPLETE_TYPE_P (t))
8054 layout_type (t);
8055 return t;
8058 /* Build a function type. The RETURN_TYPE is the type returned by the
8059 function. If VAARGS is set, no void_type_node is appended to the
8060 list. ARGP must be always be terminated be a NULL_TREE. */
8062 static tree
8063 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8065 tree t, args, last;
8067 t = va_arg (argp, tree);
8068 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8069 args = tree_cons (NULL_TREE, t, args);
8071 if (vaargs)
8073 last = args;
8074 if (args != NULL_TREE)
8075 args = nreverse (args);
8076 gcc_assert (last != void_list_node);
8078 else if (args == NULL_TREE)
8079 args = void_list_node;
8080 else
8082 last = args;
8083 args = nreverse (args);
8084 TREE_CHAIN (last) = void_list_node;
8086 args = build_function_type (return_type, args);
8088 return args;
8091 /* Build a function type. The RETURN_TYPE is the type returned by the
8092 function. If additional arguments are provided, they are
8093 additional argument types. The list of argument types must always
8094 be terminated by NULL_TREE. */
8096 tree
8097 build_function_type_list (tree return_type, ...)
8099 tree args;
8100 va_list p;
8102 va_start (p, return_type);
8103 args = build_function_type_list_1 (false, return_type, p);
8104 va_end (p);
8105 return args;
8108 /* Build a variable argument function type. The RETURN_TYPE is the
8109 type returned by the function. If additional arguments are provided,
8110 they are additional argument types. The list of argument types must
8111 always be terminated by NULL_TREE. */
8113 tree
8114 build_varargs_function_type_list (tree return_type, ...)
8116 tree args;
8117 va_list p;
8119 va_start (p, return_type);
8120 args = build_function_type_list_1 (true, return_type, p);
8121 va_end (p);
8123 return args;
8126 /* Build a function type. RETURN_TYPE is the type returned by the
8127 function; VAARGS indicates whether the function takes varargs. The
8128 function takes N named arguments, the types of which are provided in
8129 ARG_TYPES. */
8131 static tree
8132 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8133 tree *arg_types)
8135 int i;
8136 tree t = vaargs ? NULL_TREE : void_list_node;
8138 for (i = n - 1; i >= 0; i--)
8139 t = tree_cons (NULL_TREE, arg_types[i], t);
8141 return build_function_type (return_type, t);
8144 /* Build a function type. RETURN_TYPE is the type returned by the
8145 function. The function takes N named arguments, the types of which
8146 are provided in ARG_TYPES. */
8148 tree
8149 build_function_type_array (tree return_type, int n, tree *arg_types)
8151 return build_function_type_array_1 (false, return_type, n, arg_types);
8154 /* Build a variable argument function type. RETURN_TYPE is the type
8155 returned by the function. The function takes N named arguments, the
8156 types of which are provided in ARG_TYPES. */
8158 tree
8159 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8161 return build_function_type_array_1 (true, return_type, n, arg_types);
8164 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8165 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8166 for the method. An implicit additional parameter (of type
8167 pointer-to-BASETYPE) is added to the ARGTYPES. */
8169 tree
8170 build_method_type_directly (tree basetype,
8171 tree rettype,
8172 tree argtypes)
8174 tree t;
8175 tree ptype;
8176 bool any_structural_p, any_noncanonical_p;
8177 tree canon_argtypes;
8179 /* Make a node of the sort we want. */
8180 t = make_node (METHOD_TYPE);
8182 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8183 TREE_TYPE (t) = rettype;
8184 ptype = build_pointer_type (basetype);
8186 /* The actual arglist for this function includes a "hidden" argument
8187 which is "this". Put it into the list of argument types. */
8188 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8189 TYPE_ARG_TYPES (t) = argtypes;
8191 /* If we already have such a type, use the old one. */
8192 hashval_t hash = type_hash_canon_hash (t);
8193 t = type_hash_canon (hash, t);
8195 /* Set up the canonical type. */
8196 any_structural_p
8197 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8198 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8199 any_noncanonical_p
8200 = (TYPE_CANONICAL (basetype) != basetype
8201 || TYPE_CANONICAL (rettype) != rettype);
8202 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8203 &any_structural_p,
8204 &any_noncanonical_p);
8205 if (any_structural_p)
8206 SET_TYPE_STRUCTURAL_EQUALITY (t);
8207 else if (any_noncanonical_p)
8208 TYPE_CANONICAL (t)
8209 = build_method_type_directly (TYPE_CANONICAL (basetype),
8210 TYPE_CANONICAL (rettype),
8211 canon_argtypes);
8212 if (!COMPLETE_TYPE_P (t))
8213 layout_type (t);
8215 return t;
8218 /* Construct, lay out and return the type of methods belonging to class
8219 BASETYPE and whose arguments and values are described by TYPE.
8220 If that type exists already, reuse it.
8221 TYPE must be a FUNCTION_TYPE node. */
8223 tree
8224 build_method_type (tree basetype, tree type)
8226 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8228 return build_method_type_directly (basetype,
8229 TREE_TYPE (type),
8230 TYPE_ARG_TYPES (type));
8233 /* Construct, lay out and return the type of offsets to a value
8234 of type TYPE, within an object of type BASETYPE.
8235 If a suitable offset type exists already, reuse it. */
8237 tree
8238 build_offset_type (tree basetype, tree type)
8240 tree t;
8242 /* Make a node of the sort we want. */
8243 t = make_node (OFFSET_TYPE);
8245 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8246 TREE_TYPE (t) = type;
8248 /* If we already have such a type, use the old one. */
8249 hashval_t hash = type_hash_canon_hash (t);
8250 t = type_hash_canon (hash, t);
8252 if (!COMPLETE_TYPE_P (t))
8253 layout_type (t);
8255 if (TYPE_CANONICAL (t) == t)
8257 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8258 || TYPE_STRUCTURAL_EQUALITY_P (type))
8259 SET_TYPE_STRUCTURAL_EQUALITY (t);
8260 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8261 || TYPE_CANONICAL (type) != type)
8262 TYPE_CANONICAL (t)
8263 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8264 TYPE_CANONICAL (type));
8267 return t;
8270 /* Create a complex type whose components are COMPONENT_TYPE.
8272 If NAMED is true, the type is given a TYPE_NAME. We do not always
8273 do so because this creates a DECL node and thus make the DECL_UIDs
8274 dependent on the type canonicalization hashtable, which is GC-ed,
8275 so the DECL_UIDs would not be stable wrt garbage collection. */
8277 tree
8278 build_complex_type (tree component_type, bool named)
8280 gcc_assert (INTEGRAL_TYPE_P (component_type)
8281 || SCALAR_FLOAT_TYPE_P (component_type)
8282 || FIXED_POINT_TYPE_P (component_type));
8284 /* Make a node of the sort we want. */
8285 tree probe = make_node (COMPLEX_TYPE);
8287 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8289 /* If we already have such a type, use the old one. */
8290 hashval_t hash = type_hash_canon_hash (probe);
8291 tree t = type_hash_canon (hash, probe);
8293 if (t == probe)
8295 /* We created a new type. The hash insertion will have laid
8296 out the type. We need to check the canonicalization and
8297 maybe set the name. */
8298 gcc_checking_assert (COMPLETE_TYPE_P (t)
8299 && !TYPE_NAME (t)
8300 && TYPE_CANONICAL (t) == t);
8302 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8303 SET_TYPE_STRUCTURAL_EQUALITY (t);
8304 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8305 TYPE_CANONICAL (t)
8306 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8308 /* We need to create a name, since complex is a fundamental type. */
8309 if (named)
8311 const char *name = NULL;
8313 if (TREE_TYPE (t) == char_type_node)
8314 name = "complex char";
8315 else if (TREE_TYPE (t) == signed_char_type_node)
8316 name = "complex signed char";
8317 else if (TREE_TYPE (t) == unsigned_char_type_node)
8318 name = "complex unsigned char";
8319 else if (TREE_TYPE (t) == short_integer_type_node)
8320 name = "complex short int";
8321 else if (TREE_TYPE (t) == short_unsigned_type_node)
8322 name = "complex short unsigned int";
8323 else if (TREE_TYPE (t) == integer_type_node)
8324 name = "complex int";
8325 else if (TREE_TYPE (t) == unsigned_type_node)
8326 name = "complex unsigned int";
8327 else if (TREE_TYPE (t) == long_integer_type_node)
8328 name = "complex long int";
8329 else if (TREE_TYPE (t) == long_unsigned_type_node)
8330 name = "complex long unsigned int";
8331 else if (TREE_TYPE (t) == long_long_integer_type_node)
8332 name = "complex long long int";
8333 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8334 name = "complex long long unsigned int";
8336 if (name != NULL)
8337 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8338 get_identifier (name), t);
8342 return build_qualified_type (t, TYPE_QUALS (component_type));
8345 /* If TYPE is a real or complex floating-point type and the target
8346 does not directly support arithmetic on TYPE then return the wider
8347 type to be used for arithmetic on TYPE. Otherwise, return
8348 NULL_TREE. */
8350 tree
8351 excess_precision_type (tree type)
8353 /* The target can give two different responses to the question of
8354 which excess precision mode it would like depending on whether we
8355 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8357 enum excess_precision_type requested_type
8358 = (flag_excess_precision == EXCESS_PRECISION_FAST
8359 ? EXCESS_PRECISION_TYPE_FAST
8360 : EXCESS_PRECISION_TYPE_STANDARD);
8362 enum flt_eval_method target_flt_eval_method
8363 = targetm.c.excess_precision (requested_type);
8365 /* The target should not ask for unpredictable float evaluation (though
8366 it might advertise that implicitly the evaluation is unpredictable,
8367 but we don't care about that here, it will have been reported
8368 elsewhere). If it does ask for unpredictable evaluation, we have
8369 nothing to do here. */
8370 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8372 /* Nothing to do. The target has asked for all types we know about
8373 to be computed with their native precision and range. */
8374 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8375 return NULL_TREE;
8377 /* The target will promote this type in a target-dependent way, so excess
8378 precision ought to leave it alone. */
8379 if (targetm.promoted_type (type) != NULL_TREE)
8380 return NULL_TREE;
8382 machine_mode float16_type_mode = (float16_type_node
8383 ? TYPE_MODE (float16_type_node)
8384 : VOIDmode);
8385 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8386 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8388 switch (TREE_CODE (type))
8390 case REAL_TYPE:
8392 machine_mode type_mode = TYPE_MODE (type);
8393 switch (target_flt_eval_method)
8395 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8396 if (type_mode == float16_type_mode)
8397 return float_type_node;
8398 break;
8399 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8400 if (type_mode == float16_type_mode
8401 || type_mode == float_type_mode)
8402 return double_type_node;
8403 break;
8404 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8405 if (type_mode == float16_type_mode
8406 || type_mode == float_type_mode
8407 || type_mode == double_type_mode)
8408 return long_double_type_node;
8409 break;
8410 default:
8411 gcc_unreachable ();
8413 break;
8415 case COMPLEX_TYPE:
8417 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8418 return NULL_TREE;
8419 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8420 switch (target_flt_eval_method)
8422 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8423 if (type_mode == float16_type_mode)
8424 return complex_float_type_node;
8425 break;
8426 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8427 if (type_mode == float16_type_mode
8428 || type_mode == float_type_mode)
8429 return complex_double_type_node;
8430 break;
8431 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8432 if (type_mode == float16_type_mode
8433 || type_mode == float_type_mode
8434 || type_mode == double_type_mode)
8435 return complex_long_double_type_node;
8436 break;
8437 default:
8438 gcc_unreachable ();
8440 break;
8442 default:
8443 break;
8446 return NULL_TREE;
8449 /* Return OP, stripped of any conversions to wider types as much as is safe.
8450 Converting the value back to OP's type makes a value equivalent to OP.
8452 If FOR_TYPE is nonzero, we return a value which, if converted to
8453 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8455 OP must have integer, real or enumeral type. Pointers are not allowed!
8457 There are some cases where the obvious value we could return
8458 would regenerate to OP if converted to OP's type,
8459 but would not extend like OP to wider types.
8460 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8461 For example, if OP is (unsigned short)(signed char)-1,
8462 we avoid returning (signed char)-1 if FOR_TYPE is int,
8463 even though extending that to an unsigned short would regenerate OP,
8464 since the result of extending (signed char)-1 to (int)
8465 is different from (int) OP. */
8467 tree
8468 get_unwidened (tree op, tree for_type)
8470 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8471 tree type = TREE_TYPE (op);
8472 unsigned final_prec
8473 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8474 int uns
8475 = (for_type != 0 && for_type != type
8476 && final_prec > TYPE_PRECISION (type)
8477 && TYPE_UNSIGNED (type));
8478 tree win = op;
8480 while (CONVERT_EXPR_P (op))
8482 int bitschange;
8484 /* TYPE_PRECISION on vector types has different meaning
8485 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8486 so avoid them here. */
8487 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8488 break;
8490 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8491 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8493 /* Truncations are many-one so cannot be removed.
8494 Unless we are later going to truncate down even farther. */
8495 if (bitschange < 0
8496 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8497 break;
8499 /* See what's inside this conversion. If we decide to strip it,
8500 we will set WIN. */
8501 op = TREE_OPERAND (op, 0);
8503 /* If we have not stripped any zero-extensions (uns is 0),
8504 we can strip any kind of extension.
8505 If we have previously stripped a zero-extension,
8506 only zero-extensions can safely be stripped.
8507 Any extension can be stripped if the bits it would produce
8508 are all going to be discarded later by truncating to FOR_TYPE. */
8510 if (bitschange > 0)
8512 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8513 win = op;
8514 /* TYPE_UNSIGNED says whether this is a zero-extension.
8515 Let's avoid computing it if it does not affect WIN
8516 and if UNS will not be needed again. */
8517 if ((uns
8518 || CONVERT_EXPR_P (op))
8519 && TYPE_UNSIGNED (TREE_TYPE (op)))
8521 uns = 1;
8522 win = op;
8527 /* If we finally reach a constant see if it fits in sth smaller and
8528 in that case convert it. */
8529 if (TREE_CODE (win) == INTEGER_CST)
8531 tree wtype = TREE_TYPE (win);
8532 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8533 if (for_type)
8534 prec = MAX (prec, final_prec);
8535 if (prec < TYPE_PRECISION (wtype))
8537 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8538 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8539 win = fold_convert (t, win);
8543 return win;
8546 /* Return OP or a simpler expression for a narrower value
8547 which can be sign-extended or zero-extended to give back OP.
8548 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8549 or 0 if the value should be sign-extended. */
8551 tree
8552 get_narrower (tree op, int *unsignedp_ptr)
8554 int uns = 0;
8555 int first = 1;
8556 tree win = op;
8557 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8559 while (TREE_CODE (op) == NOP_EXPR)
8561 int bitschange
8562 = (TYPE_PRECISION (TREE_TYPE (op))
8563 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8565 /* Truncations are many-one so cannot be removed. */
8566 if (bitschange < 0)
8567 break;
8569 /* See what's inside this conversion. If we decide to strip it,
8570 we will set WIN. */
8572 if (bitschange > 0)
8574 op = TREE_OPERAND (op, 0);
8575 /* An extension: the outermost one can be stripped,
8576 but remember whether it is zero or sign extension. */
8577 if (first)
8578 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8579 /* Otherwise, if a sign extension has been stripped,
8580 only sign extensions can now be stripped;
8581 if a zero extension has been stripped, only zero-extensions. */
8582 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8583 break;
8584 first = 0;
8586 else /* bitschange == 0 */
8588 /* A change in nominal type can always be stripped, but we must
8589 preserve the unsignedness. */
8590 if (first)
8591 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8592 first = 0;
8593 op = TREE_OPERAND (op, 0);
8594 /* Keep trying to narrow, but don't assign op to win if it
8595 would turn an integral type into something else. */
8596 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8597 continue;
8600 win = op;
8603 if (TREE_CODE (op) == COMPONENT_REF
8604 /* Since type_for_size always gives an integer type. */
8605 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8606 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8607 /* Ensure field is laid out already. */
8608 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8609 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8611 unsigned HOST_WIDE_INT innerprec
8612 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8613 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8614 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8615 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8617 /* We can get this structure field in a narrower type that fits it,
8618 but the resulting extension to its nominal type (a fullword type)
8619 must satisfy the same conditions as for other extensions.
8621 Do this only for fields that are aligned (not bit-fields),
8622 because when bit-field insns will be used there is no
8623 advantage in doing this. */
8625 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8626 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8627 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8628 && type != 0)
8630 if (first)
8631 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8632 win = fold_convert (type, op);
8636 *unsignedp_ptr = uns;
8637 return win;
8640 /* Return true if integer constant C has a value that is permissible
8641 for TYPE, an integral type. */
8643 bool
8644 int_fits_type_p (const_tree c, const_tree type)
8646 tree type_low_bound, type_high_bound;
8647 bool ok_for_low_bound, ok_for_high_bound;
8648 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8650 /* Non-standard boolean types can have arbitrary precision but various
8651 transformations assume that they can only take values 0 and +/-1. */
8652 if (TREE_CODE (type) == BOOLEAN_TYPE)
8653 return wi::fits_to_boolean_p (wi::to_wide (c), type);
8655 retry:
8656 type_low_bound = TYPE_MIN_VALUE (type);
8657 type_high_bound = TYPE_MAX_VALUE (type);
8659 /* If at least one bound of the type is a constant integer, we can check
8660 ourselves and maybe make a decision. If no such decision is possible, but
8661 this type is a subtype, try checking against that. Otherwise, use
8662 fits_to_tree_p, which checks against the precision.
8664 Compute the status for each possibly constant bound, and return if we see
8665 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8666 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8667 for "constant known to fit". */
8669 /* Check if c >= type_low_bound. */
8670 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8672 if (tree_int_cst_lt (c, type_low_bound))
8673 return false;
8674 ok_for_low_bound = true;
8676 else
8677 ok_for_low_bound = false;
8679 /* Check if c <= type_high_bound. */
8680 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8682 if (tree_int_cst_lt (type_high_bound, c))
8683 return false;
8684 ok_for_high_bound = true;
8686 else
8687 ok_for_high_bound = false;
8689 /* If the constant fits both bounds, the result is known. */
8690 if (ok_for_low_bound && ok_for_high_bound)
8691 return true;
8693 /* Perform some generic filtering which may allow making a decision
8694 even if the bounds are not constant. First, negative integers
8695 never fit in unsigned types, */
8696 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
8697 return false;
8699 /* Second, narrower types always fit in wider ones. */
8700 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8701 return true;
8703 /* Third, unsigned integers with top bit set never fit signed types. */
8704 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8706 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
8707 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8709 /* When a tree_cst is converted to a wide-int, the precision
8710 is taken from the type. However, if the precision of the
8711 mode underneath the type is smaller than that, it is
8712 possible that the value will not fit. The test below
8713 fails if any bit is set between the sign bit of the
8714 underlying mode and the top bit of the type. */
8715 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
8716 return false;
8718 else if (wi::neg_p (wi::to_wide (c)))
8719 return false;
8722 /* If we haven't been able to decide at this point, there nothing more we
8723 can check ourselves here. Look at the base type if we have one and it
8724 has the same precision. */
8725 if (TREE_CODE (type) == INTEGER_TYPE
8726 && TREE_TYPE (type) != 0
8727 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8729 type = TREE_TYPE (type);
8730 goto retry;
8733 /* Or to fits_to_tree_p, if nothing else. */
8734 return wi::fits_to_tree_p (wi::to_wide (c), type);
8737 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8738 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8739 represented (assuming two's-complement arithmetic) within the bit
8740 precision of the type are returned instead. */
8742 void
8743 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8745 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8746 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8747 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
8748 else
8750 if (TYPE_UNSIGNED (type))
8751 mpz_set_ui (min, 0);
8752 else
8754 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8755 wi::to_mpz (mn, min, SIGNED);
8759 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8760 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8761 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
8762 else
8764 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8765 wi::to_mpz (mn, max, TYPE_SIGN (type));
8769 /* Return true if VAR is an automatic variable defined in function FN. */
8771 bool
8772 auto_var_in_fn_p (const_tree var, const_tree fn)
8774 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8775 && ((((VAR_P (var) && ! DECL_EXTERNAL (var))
8776 || TREE_CODE (var) == PARM_DECL)
8777 && ! TREE_STATIC (var))
8778 || TREE_CODE (var) == LABEL_DECL
8779 || TREE_CODE (var) == RESULT_DECL));
8782 /* Subprogram of following function. Called by walk_tree.
8784 Return *TP if it is an automatic variable or parameter of the
8785 function passed in as DATA. */
8787 static tree
8788 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8790 tree fn = (tree) data;
8792 if (TYPE_P (*tp))
8793 *walk_subtrees = 0;
8795 else if (DECL_P (*tp)
8796 && auto_var_in_fn_p (*tp, fn))
8797 return *tp;
8799 return NULL_TREE;
8802 /* Returns true if T is, contains, or refers to a type with variable
8803 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8804 arguments, but not the return type. If FN is nonzero, only return
8805 true if a modifier of the type or position of FN is a variable or
8806 parameter inside FN.
8808 This concept is more general than that of C99 'variably modified types':
8809 in C99, a struct type is never variably modified because a VLA may not
8810 appear as a structure member. However, in GNU C code like:
8812 struct S { int i[f()]; };
8814 is valid, and other languages may define similar constructs. */
8816 bool
8817 variably_modified_type_p (tree type, tree fn)
8819 tree t;
8821 /* Test if T is either variable (if FN is zero) or an expression containing
8822 a variable in FN. If TYPE isn't gimplified, return true also if
8823 gimplify_one_sizepos would gimplify the expression into a local
8824 variable. */
8825 #define RETURN_TRUE_IF_VAR(T) \
8826 do { tree _t = (T); \
8827 if (_t != NULL_TREE \
8828 && _t != error_mark_node \
8829 && !CONSTANT_CLASS_P (_t) \
8830 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8831 && (!fn \
8832 || (!TYPE_SIZES_GIMPLIFIED (type) \
8833 && (TREE_CODE (_t) != VAR_DECL \
8834 && !CONTAINS_PLACEHOLDER_P (_t))) \
8835 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8836 return true; } while (0)
8838 if (type == error_mark_node)
8839 return false;
8841 /* If TYPE itself has variable size, it is variably modified. */
8842 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8843 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8845 switch (TREE_CODE (type))
8847 case POINTER_TYPE:
8848 case REFERENCE_TYPE:
8849 case VECTOR_TYPE:
8850 /* Ada can have pointer types refering to themselves indirectly. */
8851 if (TREE_VISITED (type))
8852 return false;
8853 TREE_VISITED (type) = true;
8854 if (variably_modified_type_p (TREE_TYPE (type), fn))
8856 TREE_VISITED (type) = false;
8857 return true;
8859 TREE_VISITED (type) = false;
8860 break;
8862 case FUNCTION_TYPE:
8863 case METHOD_TYPE:
8864 /* If TYPE is a function type, it is variably modified if the
8865 return type is variably modified. */
8866 if (variably_modified_type_p (TREE_TYPE (type), fn))
8867 return true;
8868 break;
8870 case INTEGER_TYPE:
8871 case REAL_TYPE:
8872 case FIXED_POINT_TYPE:
8873 case ENUMERAL_TYPE:
8874 case BOOLEAN_TYPE:
8875 /* Scalar types are variably modified if their end points
8876 aren't constant. */
8877 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8878 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8879 break;
8881 case RECORD_TYPE:
8882 case UNION_TYPE:
8883 case QUAL_UNION_TYPE:
8884 /* We can't see if any of the fields are variably-modified by the
8885 definition we normally use, since that would produce infinite
8886 recursion via pointers. */
8887 /* This is variably modified if some field's type is. */
8888 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8889 if (TREE_CODE (t) == FIELD_DECL)
8891 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8892 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8893 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8895 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8896 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8898 break;
8900 case ARRAY_TYPE:
8901 /* Do not call ourselves to avoid infinite recursion. This is
8902 variably modified if the element type is. */
8903 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8904 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8905 break;
8907 default:
8908 break;
8911 /* The current language may have other cases to check, but in general,
8912 all other types are not variably modified. */
8913 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8915 #undef RETURN_TRUE_IF_VAR
8918 /* Given a DECL or TYPE, return the scope in which it was declared, or
8919 NULL_TREE if there is no containing scope. */
8921 tree
8922 get_containing_scope (const_tree t)
8924 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8927 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
8929 const_tree
8930 get_ultimate_context (const_tree decl)
8932 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
8934 if (TREE_CODE (decl) == BLOCK)
8935 decl = BLOCK_SUPERCONTEXT (decl);
8936 else
8937 decl = get_containing_scope (decl);
8939 return decl;
8942 /* Return the innermost context enclosing DECL that is
8943 a FUNCTION_DECL, or zero if none. */
8945 tree
8946 decl_function_context (const_tree decl)
8948 tree context;
8950 if (TREE_CODE (decl) == ERROR_MARK)
8951 return 0;
8953 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8954 where we look up the function at runtime. Such functions always take
8955 a first argument of type 'pointer to real context'.
8957 C++ should really be fixed to use DECL_CONTEXT for the real context,
8958 and use something else for the "virtual context". */
8959 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8960 context
8961 = TYPE_MAIN_VARIANT
8962 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8963 else
8964 context = DECL_CONTEXT (decl);
8966 while (context && TREE_CODE (context) != FUNCTION_DECL)
8968 if (TREE_CODE (context) == BLOCK)
8969 context = BLOCK_SUPERCONTEXT (context);
8970 else
8971 context = get_containing_scope (context);
8974 return context;
8977 /* Return the innermost context enclosing DECL that is
8978 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8979 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8981 tree
8982 decl_type_context (const_tree decl)
8984 tree context = DECL_CONTEXT (decl);
8986 while (context)
8987 switch (TREE_CODE (context))
8989 case NAMESPACE_DECL:
8990 case TRANSLATION_UNIT_DECL:
8991 return NULL_TREE;
8993 case RECORD_TYPE:
8994 case UNION_TYPE:
8995 case QUAL_UNION_TYPE:
8996 return context;
8998 case TYPE_DECL:
8999 case FUNCTION_DECL:
9000 context = DECL_CONTEXT (context);
9001 break;
9003 case BLOCK:
9004 context = BLOCK_SUPERCONTEXT (context);
9005 break;
9007 default:
9008 gcc_unreachable ();
9011 return NULL_TREE;
9014 /* CALL is a CALL_EXPR. Return the declaration for the function
9015 called, or NULL_TREE if the called function cannot be
9016 determined. */
9018 tree
9019 get_callee_fndecl (const_tree call)
9021 tree addr;
9023 if (call == error_mark_node)
9024 return error_mark_node;
9026 /* It's invalid to call this function with anything but a
9027 CALL_EXPR. */
9028 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9030 /* The first operand to the CALL is the address of the function
9031 called. */
9032 addr = CALL_EXPR_FN (call);
9034 /* If there is no function, return early. */
9035 if (addr == NULL_TREE)
9036 return NULL_TREE;
9038 STRIP_NOPS (addr);
9040 /* If this is a readonly function pointer, extract its initial value. */
9041 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9042 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9043 && DECL_INITIAL (addr))
9044 addr = DECL_INITIAL (addr);
9046 /* If the address is just `&f' for some function `f', then we know
9047 that `f' is being called. */
9048 if (TREE_CODE (addr) == ADDR_EXPR
9049 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9050 return TREE_OPERAND (addr, 0);
9052 /* We couldn't figure out what was being called. */
9053 return NULL_TREE;
9056 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9057 return the associated function code, otherwise return CFN_LAST. */
9059 combined_fn
9060 get_call_combined_fn (const_tree call)
9062 /* It's invalid to call this function with anything but a CALL_EXPR. */
9063 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9065 if (!CALL_EXPR_FN (call))
9066 return as_combined_fn (CALL_EXPR_IFN (call));
9068 tree fndecl = get_callee_fndecl (call);
9069 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
9070 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9072 return CFN_LAST;
9075 #define TREE_MEM_USAGE_SPACES 40
9077 /* Print debugging information about tree nodes generated during the compile,
9078 and any language-specific information. */
9080 void
9081 dump_tree_statistics (void)
9083 if (GATHER_STATISTICS)
9085 int i;
9086 uint64_t total_nodes, total_bytes;
9087 fprintf (stderr, "\nKind Nodes Bytes\n");
9088 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9089 total_nodes = total_bytes = 0;
9090 for (i = 0; i < (int) all_kinds; i++)
9092 fprintf (stderr, "%-20s %7" PRIu64 " %10" PRIu64 "\n",
9093 tree_node_kind_names[i], tree_node_counts[i],
9094 tree_node_sizes[i]);
9095 total_nodes += tree_node_counts[i];
9096 total_bytes += tree_node_sizes[i];
9098 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9099 fprintf (stderr, "%-20s %7" PRIu64 " %10" PRIu64 "\n", "Total",
9100 total_nodes, total_bytes);
9101 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9102 fprintf (stderr, "Code Nodes\n");
9103 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9104 for (i = 0; i < (int) MAX_TREE_CODES; i++)
9105 fprintf (stderr, "%-32s %7" PRIu64 "\n",
9106 get_tree_code_name ((enum tree_code) i), tree_code_counts[i]);
9107 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9108 fprintf (stderr, "\n");
9109 ssanames_print_statistics ();
9110 fprintf (stderr, "\n");
9111 phinodes_print_statistics ();
9112 fprintf (stderr, "\n");
9114 else
9115 fprintf (stderr, "(No per-node statistics)\n");
9117 print_type_hash_statistics ();
9118 print_debug_expr_statistics ();
9119 print_value_expr_statistics ();
9120 lang_hooks.print_statistics ();
9123 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9125 /* Generate a crc32 of the low BYTES bytes of VALUE. */
9127 unsigned
9128 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
9130 /* This relies on the raw feedback's top 4 bits being zero. */
9131 #define FEEDBACK(X) ((X) * 0x04c11db7)
9132 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
9133 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
9134 static const unsigned syndromes[16] =
9136 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
9137 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
9138 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
9139 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
9141 #undef FEEDBACK
9142 #undef SYNDROME
9144 value <<= (32 - bytes * 8);
9145 for (unsigned ix = bytes * 2; ix--; value <<= 4)
9147 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
9149 chksum = (chksum << 4) ^ feedback;
9152 return chksum;
9155 /* Generate a crc32 of a string. */
9157 unsigned
9158 crc32_string (unsigned chksum, const char *string)
9161 chksum = crc32_byte (chksum, *string);
9162 while (*string++);
9163 return chksum;
9166 /* P is a string that will be used in a symbol. Mask out any characters
9167 that are not valid in that context. */
9169 void
9170 clean_symbol_name (char *p)
9172 for (; *p; p++)
9173 if (! (ISALNUM (*p)
9174 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9175 || *p == '$'
9176 #endif
9177 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9178 || *p == '.'
9179 #endif
9181 *p = '_';
9184 /* For anonymous aggregate types, we need some sort of name to
9185 hold on to. In practice, this should not appear, but it should
9186 not be harmful if it does. */
9187 bool
9188 anon_aggrname_p(const_tree id_node)
9190 #ifndef NO_DOT_IN_LABEL
9191 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9192 && IDENTIFIER_POINTER (id_node)[1] == '_');
9193 #else /* NO_DOT_IN_LABEL */
9194 #ifndef NO_DOLLAR_IN_LABEL
9195 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9196 && IDENTIFIER_POINTER (id_node)[1] == '_');
9197 #else /* NO_DOLLAR_IN_LABEL */
9198 #define ANON_AGGRNAME_PREFIX "__anon_"
9199 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9200 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9201 #endif /* NO_DOLLAR_IN_LABEL */
9202 #endif /* NO_DOT_IN_LABEL */
9205 /* Return a format for an anonymous aggregate name. */
9206 const char *
9207 anon_aggrname_format()
9209 #ifndef NO_DOT_IN_LABEL
9210 return "._%d";
9211 #else /* NO_DOT_IN_LABEL */
9212 #ifndef NO_DOLLAR_IN_LABEL
9213 return "$_%d";
9214 #else /* NO_DOLLAR_IN_LABEL */
9215 return "__anon_%d";
9216 #endif /* NO_DOLLAR_IN_LABEL */
9217 #endif /* NO_DOT_IN_LABEL */
9220 /* Generate a name for a special-purpose function.
9221 The generated name may need to be unique across the whole link.
9222 Changes to this function may also require corresponding changes to
9223 xstrdup_mask_random.
9224 TYPE is some string to identify the purpose of this function to the
9225 linker or collect2; it must start with an uppercase letter,
9226 one of:
9227 I - for constructors
9228 D - for destructors
9229 N - for C++ anonymous namespaces
9230 F - for DWARF unwind frame information. */
9232 tree
9233 get_file_function_name (const char *type)
9235 char *buf;
9236 const char *p;
9237 char *q;
9239 /* If we already have a name we know to be unique, just use that. */
9240 if (first_global_object_name)
9241 p = q = ASTRDUP (first_global_object_name);
9242 /* If the target is handling the constructors/destructors, they
9243 will be local to this file and the name is only necessary for
9244 debugging purposes.
9245 We also assign sub_I and sub_D sufixes to constructors called from
9246 the global static constructors. These are always local. */
9247 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9248 || (strncmp (type, "sub_", 4) == 0
9249 && (type[4] == 'I' || type[4] == 'D')))
9251 const char *file = main_input_filename;
9252 if (! file)
9253 file = LOCATION_FILE (input_location);
9254 /* Just use the file's basename, because the full pathname
9255 might be quite long. */
9256 p = q = ASTRDUP (lbasename (file));
9258 else
9260 /* Otherwise, the name must be unique across the entire link.
9261 We don't have anything that we know to be unique to this translation
9262 unit, so use what we do have and throw in some randomness. */
9263 unsigned len;
9264 const char *name = weak_global_object_name;
9265 const char *file = main_input_filename;
9267 if (! name)
9268 name = "";
9269 if (! file)
9270 file = LOCATION_FILE (input_location);
9272 len = strlen (file);
9273 q = (char *) alloca (9 + 19 + len + 1);
9274 memcpy (q, file, len + 1);
9276 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9277 crc32_string (0, name), get_random_seed (false));
9279 p = q;
9282 clean_symbol_name (q);
9283 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9284 + strlen (type));
9286 /* Set up the name of the file-level functions we may need.
9287 Use a global object (which is already required to be unique over
9288 the program) rather than the file name (which imposes extra
9289 constraints). */
9290 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9292 return get_identifier (buf);
9295 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9297 /* Complain that the tree code of NODE does not match the expected 0
9298 terminated list of trailing codes. The trailing code list can be
9299 empty, for a more vague error message. FILE, LINE, and FUNCTION
9300 are of the caller. */
9302 void
9303 tree_check_failed (const_tree node, const char *file,
9304 int line, const char *function, ...)
9306 va_list args;
9307 const char *buffer;
9308 unsigned length = 0;
9309 enum tree_code code;
9311 va_start (args, function);
9312 while ((code = (enum tree_code) va_arg (args, int)))
9313 length += 4 + strlen (get_tree_code_name (code));
9314 va_end (args);
9315 if (length)
9317 char *tmp;
9318 va_start (args, function);
9319 length += strlen ("expected ");
9320 buffer = tmp = (char *) alloca (length);
9321 length = 0;
9322 while ((code = (enum tree_code) va_arg (args, int)))
9324 const char *prefix = length ? " or " : "expected ";
9326 strcpy (tmp + length, prefix);
9327 length += strlen (prefix);
9328 strcpy (tmp + length, get_tree_code_name (code));
9329 length += strlen (get_tree_code_name (code));
9331 va_end (args);
9333 else
9334 buffer = "unexpected node";
9336 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9337 buffer, get_tree_code_name (TREE_CODE (node)),
9338 function, trim_filename (file), line);
9341 /* Complain that the tree code of NODE does match the expected 0
9342 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9343 the caller. */
9345 void
9346 tree_not_check_failed (const_tree node, const char *file,
9347 int line, const char *function, ...)
9349 va_list args;
9350 char *buffer;
9351 unsigned length = 0;
9352 enum tree_code code;
9354 va_start (args, function);
9355 while ((code = (enum tree_code) va_arg (args, int)))
9356 length += 4 + strlen (get_tree_code_name (code));
9357 va_end (args);
9358 va_start (args, function);
9359 buffer = (char *) alloca (length);
9360 length = 0;
9361 while ((code = (enum tree_code) va_arg (args, int)))
9363 if (length)
9365 strcpy (buffer + length, " or ");
9366 length += 4;
9368 strcpy (buffer + length, get_tree_code_name (code));
9369 length += strlen (get_tree_code_name (code));
9371 va_end (args);
9373 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9374 buffer, get_tree_code_name (TREE_CODE (node)),
9375 function, trim_filename (file), line);
9378 /* Similar to tree_check_failed, except that we check for a class of tree
9379 code, given in CL. */
9381 void
9382 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9383 const char *file, int line, const char *function)
9385 internal_error
9386 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9387 TREE_CODE_CLASS_STRING (cl),
9388 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9389 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9392 /* Similar to tree_check_failed, except that instead of specifying a
9393 dozen codes, use the knowledge that they're all sequential. */
9395 void
9396 tree_range_check_failed (const_tree node, const char *file, int line,
9397 const char *function, enum tree_code c1,
9398 enum tree_code c2)
9400 char *buffer;
9401 unsigned length = 0;
9402 unsigned int c;
9404 for (c = c1; c <= c2; ++c)
9405 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9407 length += strlen ("expected ");
9408 buffer = (char *) alloca (length);
9409 length = 0;
9411 for (c = c1; c <= c2; ++c)
9413 const char *prefix = length ? " or " : "expected ";
9415 strcpy (buffer + length, prefix);
9416 length += strlen (prefix);
9417 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9418 length += strlen (get_tree_code_name ((enum tree_code) c));
9421 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9422 buffer, get_tree_code_name (TREE_CODE (node)),
9423 function, trim_filename (file), line);
9427 /* Similar to tree_check_failed, except that we check that a tree does
9428 not have the specified code, given in CL. */
9430 void
9431 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9432 const char *file, int line, const char *function)
9434 internal_error
9435 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9436 TREE_CODE_CLASS_STRING (cl),
9437 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9438 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9442 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9444 void
9445 omp_clause_check_failed (const_tree node, const char *file, int line,
9446 const char *function, enum omp_clause_code code)
9448 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9449 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9450 function, trim_filename (file), line);
9454 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9456 void
9457 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9458 const char *function, enum omp_clause_code c1,
9459 enum omp_clause_code c2)
9461 char *buffer;
9462 unsigned length = 0;
9463 unsigned int c;
9465 for (c = c1; c <= c2; ++c)
9466 length += 4 + strlen (omp_clause_code_name[c]);
9468 length += strlen ("expected ");
9469 buffer = (char *) alloca (length);
9470 length = 0;
9472 for (c = c1; c <= c2; ++c)
9474 const char *prefix = length ? " or " : "expected ";
9476 strcpy (buffer + length, prefix);
9477 length += strlen (prefix);
9478 strcpy (buffer + length, omp_clause_code_name[c]);
9479 length += strlen (omp_clause_code_name[c]);
9482 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9483 buffer, omp_clause_code_name[TREE_CODE (node)],
9484 function, trim_filename (file), line);
9488 #undef DEFTREESTRUCT
9489 #define DEFTREESTRUCT(VAL, NAME) NAME,
9491 static const char *ts_enum_names[] = {
9492 #include "treestruct.def"
9494 #undef DEFTREESTRUCT
9496 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9498 /* Similar to tree_class_check_failed, except that we check for
9499 whether CODE contains the tree structure identified by EN. */
9501 void
9502 tree_contains_struct_check_failed (const_tree node,
9503 const enum tree_node_structure_enum en,
9504 const char *file, int line,
9505 const char *function)
9507 internal_error
9508 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9509 TS_ENUM_NAME (en),
9510 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9514 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9515 (dynamically sized) vector. */
9517 void
9518 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9519 const char *function)
9521 internal_error
9522 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9523 idx + 1, len, function, trim_filename (file), line);
9526 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9527 (dynamically sized) vector. */
9529 void
9530 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9531 const char *function)
9533 internal_error
9534 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9535 idx + 1, len, function, trim_filename (file), line);
9538 /* Similar to above, except that the check is for the bounds of the operand
9539 vector of an expression node EXP. */
9541 void
9542 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9543 int line, const char *function)
9545 enum tree_code code = TREE_CODE (exp);
9546 internal_error
9547 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9548 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9549 function, trim_filename (file), line);
9552 /* Similar to above, except that the check is for the number of
9553 operands of an OMP_CLAUSE node. */
9555 void
9556 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9557 int line, const char *function)
9559 internal_error
9560 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9561 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9562 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9563 trim_filename (file), line);
9565 #endif /* ENABLE_TREE_CHECKING */
9567 /* Create a new vector type node holding NUNITS units of type INNERTYPE,
9568 and mapped to the machine mode MODE. Initialize its fields and build
9569 the information necessary for debugging output. */
9571 static tree
9572 make_vector_type (tree innertype, poly_int64 nunits, machine_mode mode)
9574 tree t;
9575 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9577 t = make_node (VECTOR_TYPE);
9578 TREE_TYPE (t) = mv_innertype;
9579 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9580 SET_TYPE_MODE (t, mode);
9582 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9583 SET_TYPE_STRUCTURAL_EQUALITY (t);
9584 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9585 || mode != VOIDmode)
9586 && !VECTOR_BOOLEAN_TYPE_P (t))
9587 TYPE_CANONICAL (t)
9588 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9590 layout_type (t);
9592 hashval_t hash = type_hash_canon_hash (t);
9593 t = type_hash_canon (hash, t);
9595 /* We have built a main variant, based on the main variant of the
9596 inner type. Use it to build the variant we return. */
9597 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9598 && TREE_TYPE (t) != innertype)
9599 return build_type_attribute_qual_variant (t,
9600 TYPE_ATTRIBUTES (innertype),
9601 TYPE_QUALS (innertype));
9603 return t;
9606 static tree
9607 make_or_reuse_type (unsigned size, int unsignedp)
9609 int i;
9611 if (size == INT_TYPE_SIZE)
9612 return unsignedp ? unsigned_type_node : integer_type_node;
9613 if (size == CHAR_TYPE_SIZE)
9614 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9615 if (size == SHORT_TYPE_SIZE)
9616 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9617 if (size == LONG_TYPE_SIZE)
9618 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9619 if (size == LONG_LONG_TYPE_SIZE)
9620 return (unsignedp ? long_long_unsigned_type_node
9621 : long_long_integer_type_node);
9623 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9624 if (size == int_n_data[i].bitsize
9625 && int_n_enabled_p[i])
9626 return (unsignedp ? int_n_trees[i].unsigned_type
9627 : int_n_trees[i].signed_type);
9629 if (unsignedp)
9630 return make_unsigned_type (size);
9631 else
9632 return make_signed_type (size);
9635 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9637 static tree
9638 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9640 if (satp)
9642 if (size == SHORT_FRACT_TYPE_SIZE)
9643 return unsignedp ? sat_unsigned_short_fract_type_node
9644 : sat_short_fract_type_node;
9645 if (size == FRACT_TYPE_SIZE)
9646 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9647 if (size == LONG_FRACT_TYPE_SIZE)
9648 return unsignedp ? sat_unsigned_long_fract_type_node
9649 : sat_long_fract_type_node;
9650 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9651 return unsignedp ? sat_unsigned_long_long_fract_type_node
9652 : sat_long_long_fract_type_node;
9654 else
9656 if (size == SHORT_FRACT_TYPE_SIZE)
9657 return unsignedp ? unsigned_short_fract_type_node
9658 : short_fract_type_node;
9659 if (size == FRACT_TYPE_SIZE)
9660 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9661 if (size == LONG_FRACT_TYPE_SIZE)
9662 return unsignedp ? unsigned_long_fract_type_node
9663 : long_fract_type_node;
9664 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9665 return unsignedp ? unsigned_long_long_fract_type_node
9666 : long_long_fract_type_node;
9669 return make_fract_type (size, unsignedp, satp);
9672 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9674 static tree
9675 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9677 if (satp)
9679 if (size == SHORT_ACCUM_TYPE_SIZE)
9680 return unsignedp ? sat_unsigned_short_accum_type_node
9681 : sat_short_accum_type_node;
9682 if (size == ACCUM_TYPE_SIZE)
9683 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9684 if (size == LONG_ACCUM_TYPE_SIZE)
9685 return unsignedp ? sat_unsigned_long_accum_type_node
9686 : sat_long_accum_type_node;
9687 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9688 return unsignedp ? sat_unsigned_long_long_accum_type_node
9689 : sat_long_long_accum_type_node;
9691 else
9693 if (size == SHORT_ACCUM_TYPE_SIZE)
9694 return unsignedp ? unsigned_short_accum_type_node
9695 : short_accum_type_node;
9696 if (size == ACCUM_TYPE_SIZE)
9697 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9698 if (size == LONG_ACCUM_TYPE_SIZE)
9699 return unsignedp ? unsigned_long_accum_type_node
9700 : long_accum_type_node;
9701 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9702 return unsignedp ? unsigned_long_long_accum_type_node
9703 : long_long_accum_type_node;
9706 return make_accum_type (size, unsignedp, satp);
9710 /* Create an atomic variant node for TYPE. This routine is called
9711 during initialization of data types to create the 5 basic atomic
9712 types. The generic build_variant_type function requires these to
9713 already be set up in order to function properly, so cannot be
9714 called from there. If ALIGN is non-zero, then ensure alignment is
9715 overridden to this value. */
9717 static tree
9718 build_atomic_base (tree type, unsigned int align)
9720 tree t;
9722 /* Make sure its not already registered. */
9723 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9724 return t;
9726 t = build_variant_type_copy (type);
9727 set_type_quals (t, TYPE_QUAL_ATOMIC);
9729 if (align)
9730 SET_TYPE_ALIGN (t, align);
9732 return t;
9735 /* Information about the _FloatN and _FloatNx types. This must be in
9736 the same order as the corresponding TI_* enum values. */
9737 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
9739 { 16, false },
9740 { 32, false },
9741 { 64, false },
9742 { 128, false },
9743 { 32, true },
9744 { 64, true },
9745 { 128, true },
9749 /* Create nodes for all integer types (and error_mark_node) using the sizes
9750 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
9752 void
9753 build_common_tree_nodes (bool signed_char)
9755 int i;
9757 error_mark_node = make_node (ERROR_MARK);
9758 TREE_TYPE (error_mark_node) = error_mark_node;
9760 initialize_sizetypes ();
9762 /* Define both `signed char' and `unsigned char'. */
9763 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9764 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9765 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9766 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9768 /* Define `char', which is like either `signed char' or `unsigned char'
9769 but not the same as either. */
9770 char_type_node
9771 = (signed_char
9772 ? make_signed_type (CHAR_TYPE_SIZE)
9773 : make_unsigned_type (CHAR_TYPE_SIZE));
9774 TYPE_STRING_FLAG (char_type_node) = 1;
9776 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9777 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9778 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9779 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9780 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9781 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9782 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9783 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9785 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9787 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
9788 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
9790 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
9791 && int_n_enabled_p[i])
9793 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
9794 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
9798 /* Define a boolean type. This type only represents boolean values but
9799 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9800 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9801 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9802 TYPE_PRECISION (boolean_type_node) = 1;
9803 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9805 /* Define what type to use for size_t. */
9806 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9807 size_type_node = unsigned_type_node;
9808 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9809 size_type_node = long_unsigned_type_node;
9810 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9811 size_type_node = long_long_unsigned_type_node;
9812 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9813 size_type_node = short_unsigned_type_node;
9814 else
9816 int i;
9818 size_type_node = NULL_TREE;
9819 for (i = 0; i < NUM_INT_N_ENTS; i++)
9820 if (int_n_enabled_p[i])
9822 char name[50];
9823 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
9825 if (strcmp (name, SIZE_TYPE) == 0)
9827 size_type_node = int_n_trees[i].unsigned_type;
9830 if (size_type_node == NULL_TREE)
9831 gcc_unreachable ();
9834 /* Define what type to use for ptrdiff_t. */
9835 if (strcmp (PTRDIFF_TYPE, "int") == 0)
9836 ptrdiff_type_node = integer_type_node;
9837 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
9838 ptrdiff_type_node = long_integer_type_node;
9839 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
9840 ptrdiff_type_node = long_long_integer_type_node;
9841 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
9842 ptrdiff_type_node = short_integer_type_node;
9843 else
9845 ptrdiff_type_node = NULL_TREE;
9846 for (int i = 0; i < NUM_INT_N_ENTS; i++)
9847 if (int_n_enabled_p[i])
9849 char name[50];
9850 sprintf (name, "__int%d", int_n_data[i].bitsize);
9851 if (strcmp (name, PTRDIFF_TYPE) == 0)
9852 ptrdiff_type_node = int_n_trees[i].signed_type;
9854 if (ptrdiff_type_node == NULL_TREE)
9855 gcc_unreachable ();
9858 /* Fill in the rest of the sized types. Reuse existing type nodes
9859 when possible. */
9860 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9861 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9862 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9863 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9864 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9866 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9867 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9868 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9869 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9870 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9872 /* Don't call build_qualified type for atomics. That routine does
9873 special processing for atomics, and until they are initialized
9874 it's better not to make that call.
9876 Check to see if there is a target override for atomic types. */
9878 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9879 targetm.atomic_align_for_mode (QImode));
9880 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9881 targetm.atomic_align_for_mode (HImode));
9882 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9883 targetm.atomic_align_for_mode (SImode));
9884 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9885 targetm.atomic_align_for_mode (DImode));
9886 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9887 targetm.atomic_align_for_mode (TImode));
9889 access_public_node = get_identifier ("public");
9890 access_protected_node = get_identifier ("protected");
9891 access_private_node = get_identifier ("private");
9893 /* Define these next since types below may used them. */
9894 integer_zero_node = build_int_cst (integer_type_node, 0);
9895 integer_one_node = build_int_cst (integer_type_node, 1);
9896 integer_three_node = build_int_cst (integer_type_node, 3);
9897 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9899 size_zero_node = size_int (0);
9900 size_one_node = size_int (1);
9901 bitsize_zero_node = bitsize_int (0);
9902 bitsize_one_node = bitsize_int (1);
9903 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9905 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9906 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9908 void_type_node = make_node (VOID_TYPE);
9909 layout_type (void_type_node);
9911 /* We are not going to have real types in C with less than byte alignment,
9912 so we might as well not have any types that claim to have it. */
9913 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
9914 TYPE_USER_ALIGN (void_type_node) = 0;
9916 void_node = make_node (VOID_CST);
9917 TREE_TYPE (void_node) = void_type_node;
9919 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9920 layout_type (TREE_TYPE (null_pointer_node));
9922 ptr_type_node = build_pointer_type (void_type_node);
9923 const_ptr_type_node
9924 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9925 for (unsigned i = 0;
9926 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
9927 ++i)
9928 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
9930 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9932 float_type_node = make_node (REAL_TYPE);
9933 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9934 layout_type (float_type_node);
9936 double_type_node = make_node (REAL_TYPE);
9937 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9938 layout_type (double_type_node);
9940 long_double_type_node = make_node (REAL_TYPE);
9941 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9942 layout_type (long_double_type_node);
9944 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9946 int n = floatn_nx_types[i].n;
9947 bool extended = floatn_nx_types[i].extended;
9948 scalar_float_mode mode;
9949 if (!targetm.floatn_mode (n, extended).exists (&mode))
9950 continue;
9951 int precision = GET_MODE_PRECISION (mode);
9952 /* Work around the rs6000 KFmode having precision 113 not
9953 128. */
9954 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
9955 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
9956 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
9957 if (!extended)
9958 gcc_assert (min_precision == n);
9959 if (precision < min_precision)
9960 precision = min_precision;
9961 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
9962 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
9963 layout_type (FLOATN_NX_TYPE_NODE (i));
9964 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
9967 float_ptr_type_node = build_pointer_type (float_type_node);
9968 double_ptr_type_node = build_pointer_type (double_type_node);
9969 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9970 integer_ptr_type_node = build_pointer_type (integer_type_node);
9972 /* Fixed size integer types. */
9973 uint16_type_node = make_or_reuse_type (16, 1);
9974 uint32_type_node = make_or_reuse_type (32, 1);
9975 uint64_type_node = make_or_reuse_type (64, 1);
9977 /* Decimal float types. */
9978 dfloat32_type_node = make_node (REAL_TYPE);
9979 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9980 SET_TYPE_MODE (dfloat32_type_node, SDmode);
9981 layout_type (dfloat32_type_node);
9982 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9984 dfloat64_type_node = make_node (REAL_TYPE);
9985 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9986 SET_TYPE_MODE (dfloat64_type_node, DDmode);
9987 layout_type (dfloat64_type_node);
9988 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9990 dfloat128_type_node = make_node (REAL_TYPE);
9991 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9992 SET_TYPE_MODE (dfloat128_type_node, TDmode);
9993 layout_type (dfloat128_type_node);
9994 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
9996 complex_integer_type_node = build_complex_type (integer_type_node, true);
9997 complex_float_type_node = build_complex_type (float_type_node, true);
9998 complex_double_type_node = build_complex_type (double_type_node, true);
9999 complex_long_double_type_node = build_complex_type (long_double_type_node,
10000 true);
10002 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
10004 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
10005 COMPLEX_FLOATN_NX_TYPE_NODE (i)
10006 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
10009 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10010 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10011 sat_ ## KIND ## _type_node = \
10012 make_sat_signed_ ## KIND ## _type (SIZE); \
10013 sat_unsigned_ ## KIND ## _type_node = \
10014 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10015 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10016 unsigned_ ## KIND ## _type_node = \
10017 make_unsigned_ ## KIND ## _type (SIZE);
10019 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10020 sat_ ## WIDTH ## KIND ## _type_node = \
10021 make_sat_signed_ ## KIND ## _type (SIZE); \
10022 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10023 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10024 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10025 unsigned_ ## WIDTH ## KIND ## _type_node = \
10026 make_unsigned_ ## KIND ## _type (SIZE);
10028 /* Make fixed-point type nodes based on four different widths. */
10029 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10030 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10031 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10032 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10033 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10035 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10036 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10037 NAME ## _type_node = \
10038 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10039 u ## NAME ## _type_node = \
10040 make_or_reuse_unsigned_ ## KIND ## _type \
10041 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10042 sat_ ## NAME ## _type_node = \
10043 make_or_reuse_sat_signed_ ## KIND ## _type \
10044 (GET_MODE_BITSIZE (MODE ## mode)); \
10045 sat_u ## NAME ## _type_node = \
10046 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10047 (GET_MODE_BITSIZE (U ## MODE ## mode));
10049 /* Fixed-point type and mode nodes. */
10050 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10051 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10052 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10053 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10054 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10055 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10056 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10057 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10058 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10059 MAKE_FIXED_MODE_NODE (accum, da, DA)
10060 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10063 tree t = targetm.build_builtin_va_list ();
10065 /* Many back-ends define record types without setting TYPE_NAME.
10066 If we copied the record type here, we'd keep the original
10067 record type without a name. This breaks name mangling. So,
10068 don't copy record types and let c_common_nodes_and_builtins()
10069 declare the type to be __builtin_va_list. */
10070 if (TREE_CODE (t) != RECORD_TYPE)
10071 t = build_variant_type_copy (t);
10073 va_list_type_node = t;
10077 /* Modify DECL for given flags.
10078 TM_PURE attribute is set only on types, so the function will modify
10079 DECL's type when ECF_TM_PURE is used. */
10081 void
10082 set_call_expr_flags (tree decl, int flags)
10084 if (flags & ECF_NOTHROW)
10085 TREE_NOTHROW (decl) = 1;
10086 if (flags & ECF_CONST)
10087 TREE_READONLY (decl) = 1;
10088 if (flags & ECF_PURE)
10089 DECL_PURE_P (decl) = 1;
10090 if (flags & ECF_LOOPING_CONST_OR_PURE)
10091 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10092 if (flags & ECF_NOVOPS)
10093 DECL_IS_NOVOPS (decl) = 1;
10094 if (flags & ECF_NORETURN)
10095 TREE_THIS_VOLATILE (decl) = 1;
10096 if (flags & ECF_MALLOC)
10097 DECL_IS_MALLOC (decl) = 1;
10098 if (flags & ECF_RETURNS_TWICE)
10099 DECL_IS_RETURNS_TWICE (decl) = 1;
10100 if (flags & ECF_LEAF)
10101 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10102 NULL, DECL_ATTRIBUTES (decl));
10103 if (flags & ECF_COLD)
10104 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
10105 NULL, DECL_ATTRIBUTES (decl));
10106 if (flags & ECF_RET1)
10107 DECL_ATTRIBUTES (decl)
10108 = tree_cons (get_identifier ("fn spec"),
10109 build_tree_list (NULL_TREE, build_string (1, "1")),
10110 DECL_ATTRIBUTES (decl));
10111 if ((flags & ECF_TM_PURE) && flag_tm)
10112 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10113 /* Looping const or pure is implied by noreturn.
10114 There is currently no way to declare looping const or looping pure alone. */
10115 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10116 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10120 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10122 static void
10123 local_define_builtin (const char *name, tree type, enum built_in_function code,
10124 const char *library_name, int ecf_flags)
10126 tree decl;
10128 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10129 library_name, NULL_TREE);
10130 set_call_expr_flags (decl, ecf_flags);
10132 set_builtin_decl (code, decl, true);
10135 /* Call this function after instantiating all builtins that the language
10136 front end cares about. This will build the rest of the builtins
10137 and internal functions that are relied upon by the tree optimizers and
10138 the middle-end. */
10140 void
10141 build_common_builtin_nodes (void)
10143 tree tmp, ftype;
10144 int ecf_flags;
10146 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
10147 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
10149 ftype = build_function_type (void_type_node, void_list_node);
10150 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10151 local_define_builtin ("__builtin_unreachable", ftype,
10152 BUILT_IN_UNREACHABLE,
10153 "__builtin_unreachable",
10154 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10155 | ECF_CONST | ECF_COLD);
10156 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
10157 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
10158 "abort",
10159 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
10162 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10163 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10165 ftype = build_function_type_list (ptr_type_node,
10166 ptr_type_node, const_ptr_type_node,
10167 size_type_node, NULL_TREE);
10169 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10170 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10171 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10172 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10173 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10174 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10177 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10179 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10180 const_ptr_type_node, size_type_node,
10181 NULL_TREE);
10182 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10183 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10186 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10188 ftype = build_function_type_list (ptr_type_node,
10189 ptr_type_node, integer_type_node,
10190 size_type_node, NULL_TREE);
10191 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10192 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10195 /* If we're checking the stack, `alloca' can throw. */
10196 const int alloca_flags
10197 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10199 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10201 ftype = build_function_type_list (ptr_type_node,
10202 size_type_node, NULL_TREE);
10203 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10204 "alloca", alloca_flags);
10207 ftype = build_function_type_list (ptr_type_node, size_type_node,
10208 size_type_node, NULL_TREE);
10209 local_define_builtin ("__builtin_alloca_with_align", ftype,
10210 BUILT_IN_ALLOCA_WITH_ALIGN,
10211 "__builtin_alloca_with_align",
10212 alloca_flags);
10214 ftype = build_function_type_list (ptr_type_node, size_type_node,
10215 size_type_node, size_type_node, NULL_TREE);
10216 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10217 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10218 "__builtin_alloca_with_align_and_max",
10219 alloca_flags);
10221 ftype = build_function_type_list (void_type_node,
10222 ptr_type_node, ptr_type_node,
10223 ptr_type_node, NULL_TREE);
10224 local_define_builtin ("__builtin_init_trampoline", ftype,
10225 BUILT_IN_INIT_TRAMPOLINE,
10226 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10227 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10228 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10229 "__builtin_init_heap_trampoline",
10230 ECF_NOTHROW | ECF_LEAF);
10231 local_define_builtin ("__builtin_init_descriptor", ftype,
10232 BUILT_IN_INIT_DESCRIPTOR,
10233 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10235 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10236 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10237 BUILT_IN_ADJUST_TRAMPOLINE,
10238 "__builtin_adjust_trampoline",
10239 ECF_CONST | ECF_NOTHROW);
10240 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10241 BUILT_IN_ADJUST_DESCRIPTOR,
10242 "__builtin_adjust_descriptor",
10243 ECF_CONST | ECF_NOTHROW);
10245 ftype = build_function_type_list (void_type_node,
10246 ptr_type_node, ptr_type_node, NULL_TREE);
10247 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10248 BUILT_IN_NONLOCAL_GOTO,
10249 "__builtin_nonlocal_goto",
10250 ECF_NORETURN | ECF_NOTHROW);
10252 ftype = build_function_type_list (void_type_node,
10253 ptr_type_node, ptr_type_node, NULL_TREE);
10254 local_define_builtin ("__builtin_setjmp_setup", ftype,
10255 BUILT_IN_SETJMP_SETUP,
10256 "__builtin_setjmp_setup", ECF_NOTHROW);
10258 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10259 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10260 BUILT_IN_SETJMP_RECEIVER,
10261 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10263 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10264 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10265 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10267 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10268 local_define_builtin ("__builtin_stack_restore", ftype,
10269 BUILT_IN_STACK_RESTORE,
10270 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10272 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10273 const_ptr_type_node, size_type_node,
10274 NULL_TREE);
10275 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10276 "__builtin_memcmp_eq",
10277 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10279 local_define_builtin ("__builtin_strncmp_eq", ftype, BUILT_IN_STRNCMP_EQ,
10280 "__builtin_strncmp_eq",
10281 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10283 local_define_builtin ("__builtin_strcmp_eq", ftype, BUILT_IN_STRCMP_EQ,
10284 "__builtin_strcmp_eq",
10285 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10287 /* If there's a possibility that we might use the ARM EABI, build the
10288 alternate __cxa_end_cleanup node used to resume from C++. */
10289 if (targetm.arm_eabi_unwinder)
10291 ftype = build_function_type_list (void_type_node, NULL_TREE);
10292 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10293 BUILT_IN_CXA_END_CLEANUP,
10294 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10297 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10298 local_define_builtin ("__builtin_unwind_resume", ftype,
10299 BUILT_IN_UNWIND_RESUME,
10300 ((targetm_common.except_unwind_info (&global_options)
10301 == UI_SJLJ)
10302 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10303 ECF_NORETURN);
10305 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10307 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10308 NULL_TREE);
10309 local_define_builtin ("__builtin_return_address", ftype,
10310 BUILT_IN_RETURN_ADDRESS,
10311 "__builtin_return_address",
10312 ECF_NOTHROW);
10315 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10316 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10318 ftype = build_function_type_list (void_type_node, ptr_type_node,
10319 ptr_type_node, NULL_TREE);
10320 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10321 local_define_builtin ("__cyg_profile_func_enter", ftype,
10322 BUILT_IN_PROFILE_FUNC_ENTER,
10323 "__cyg_profile_func_enter", 0);
10324 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10325 local_define_builtin ("__cyg_profile_func_exit", ftype,
10326 BUILT_IN_PROFILE_FUNC_EXIT,
10327 "__cyg_profile_func_exit", 0);
10330 /* The exception object and filter values from the runtime. The argument
10331 must be zero before exception lowering, i.e. from the front end. After
10332 exception lowering, it will be the region number for the exception
10333 landing pad. These functions are PURE instead of CONST to prevent
10334 them from being hoisted past the exception edge that will initialize
10335 its value in the landing pad. */
10336 ftype = build_function_type_list (ptr_type_node,
10337 integer_type_node, NULL_TREE);
10338 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10339 /* Only use TM_PURE if we have TM language support. */
10340 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10341 ecf_flags |= ECF_TM_PURE;
10342 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10343 "__builtin_eh_pointer", ecf_flags);
10345 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10346 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10347 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10348 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10350 ftype = build_function_type_list (void_type_node,
10351 integer_type_node, integer_type_node,
10352 NULL_TREE);
10353 local_define_builtin ("__builtin_eh_copy_values", ftype,
10354 BUILT_IN_EH_COPY_VALUES,
10355 "__builtin_eh_copy_values", ECF_NOTHROW);
10357 /* Complex multiplication and division. These are handled as builtins
10358 rather than optabs because emit_library_call_value doesn't support
10359 complex. Further, we can do slightly better with folding these
10360 beasties if the real and complex parts of the arguments are separate. */
10362 int mode;
10364 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10366 char mode_name_buf[4], *q;
10367 const char *p;
10368 enum built_in_function mcode, dcode;
10369 tree type, inner_type;
10370 const char *prefix = "__";
10372 if (targetm.libfunc_gnu_prefix)
10373 prefix = "__gnu_";
10375 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10376 if (type == NULL)
10377 continue;
10378 inner_type = TREE_TYPE (type);
10380 ftype = build_function_type_list (type, inner_type, inner_type,
10381 inner_type, inner_type, NULL_TREE);
10383 mcode = ((enum built_in_function)
10384 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10385 dcode = ((enum built_in_function)
10386 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10388 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10389 *q = TOLOWER (*p);
10390 *q = '\0';
10392 /* For -ftrapping-math these should throw from a former
10393 -fnon-call-exception stmt. */
10394 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10395 NULL);
10396 local_define_builtin (built_in_names[mcode], ftype, mcode,
10397 built_in_names[mcode],
10398 ECF_CONST | ECF_LEAF);
10400 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10401 NULL);
10402 local_define_builtin (built_in_names[dcode], ftype, dcode,
10403 built_in_names[dcode],
10404 ECF_CONST | ECF_LEAF);
10408 init_internal_fns ();
10411 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10412 better way.
10414 If we requested a pointer to a vector, build up the pointers that
10415 we stripped off while looking for the inner type. Similarly for
10416 return values from functions.
10418 The argument TYPE is the top of the chain, and BOTTOM is the
10419 new type which we will point to. */
10421 tree
10422 reconstruct_complex_type (tree type, tree bottom)
10424 tree inner, outer;
10426 if (TREE_CODE (type) == POINTER_TYPE)
10428 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10429 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10430 TYPE_REF_CAN_ALIAS_ALL (type));
10432 else if (TREE_CODE (type) == REFERENCE_TYPE)
10434 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10435 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10436 TYPE_REF_CAN_ALIAS_ALL (type));
10438 else if (TREE_CODE (type) == ARRAY_TYPE)
10440 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10441 outer = build_array_type (inner, TYPE_DOMAIN (type));
10443 else if (TREE_CODE (type) == FUNCTION_TYPE)
10445 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10446 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10448 else if (TREE_CODE (type) == METHOD_TYPE)
10450 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10451 /* The build_method_type_directly() routine prepends 'this' to argument list,
10452 so we must compensate by getting rid of it. */
10453 outer
10454 = build_method_type_directly
10455 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10456 inner,
10457 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10459 else if (TREE_CODE (type) == OFFSET_TYPE)
10461 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10462 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10464 else
10465 return bottom;
10467 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10468 TYPE_QUALS (type));
10471 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10472 the inner type. */
10473 tree
10474 build_vector_type_for_mode (tree innertype, machine_mode mode)
10476 poly_int64 nunits;
10477 unsigned int bitsize;
10479 switch (GET_MODE_CLASS (mode))
10481 case MODE_VECTOR_BOOL:
10482 case MODE_VECTOR_INT:
10483 case MODE_VECTOR_FLOAT:
10484 case MODE_VECTOR_FRACT:
10485 case MODE_VECTOR_UFRACT:
10486 case MODE_VECTOR_ACCUM:
10487 case MODE_VECTOR_UACCUM:
10488 nunits = GET_MODE_NUNITS (mode);
10489 break;
10491 case MODE_INT:
10492 /* Check that there are no leftover bits. */
10493 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10494 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10495 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10496 break;
10498 default:
10499 gcc_unreachable ();
10502 return make_vector_type (innertype, nunits, mode);
10505 /* Similarly, but takes the inner type and number of units, which must be
10506 a power of two. */
10508 tree
10509 build_vector_type (tree innertype, poly_int64 nunits)
10511 return make_vector_type (innertype, nunits, VOIDmode);
10514 /* Build truth vector with specified length and number of units. */
10516 tree
10517 build_truth_vector_type (poly_uint64 nunits, poly_uint64 vector_size)
10519 machine_mode mask_mode
10520 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
10522 poly_uint64 vsize;
10523 if (mask_mode == BLKmode)
10524 vsize = vector_size * BITS_PER_UNIT;
10525 else
10526 vsize = GET_MODE_BITSIZE (mask_mode);
10528 unsigned HOST_WIDE_INT esize = vector_element_size (vsize, nunits);
10530 tree bool_type = build_nonstandard_boolean_type (esize);
10532 return make_vector_type (bool_type, nunits, mask_mode);
10535 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10537 tree
10538 build_same_sized_truth_vector_type (tree vectype)
10540 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10541 return vectype;
10543 poly_uint64 size = GET_MODE_SIZE (TYPE_MODE (vectype));
10545 if (known_eq (size, 0U))
10546 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10548 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10551 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10553 tree
10554 build_opaque_vector_type (tree innertype, poly_int64 nunits)
10556 tree t = make_vector_type (innertype, nunits, VOIDmode);
10557 tree cand;
10558 /* We always build the non-opaque variant before the opaque one,
10559 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10560 cand = TYPE_NEXT_VARIANT (t);
10561 if (cand
10562 && TYPE_VECTOR_OPAQUE (cand)
10563 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10564 return cand;
10565 /* Othewise build a variant type and make sure to queue it after
10566 the non-opaque type. */
10567 cand = build_distinct_type_copy (t);
10568 TYPE_VECTOR_OPAQUE (cand) = true;
10569 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10570 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10571 TYPE_NEXT_VARIANT (t) = cand;
10572 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10573 return cand;
10576 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10578 wide_int
10579 vector_cst_int_elt (const_tree t, unsigned int i)
10581 /* First handle elements that are directly encoded. */
10582 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10583 if (i < encoded_nelts)
10584 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
10586 /* Identify the pattern that contains element I and work out the index of
10587 the last encoded element for that pattern. */
10588 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10589 unsigned int pattern = i % npatterns;
10590 unsigned int count = i / npatterns;
10591 unsigned int final_i = encoded_nelts - npatterns + pattern;
10593 /* If there are no steps, the final encoded value is the right one. */
10594 if (!VECTOR_CST_STEPPED_P (t))
10595 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
10597 /* Otherwise work out the value from the last two encoded elements. */
10598 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
10599 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
10600 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
10601 return wi::to_wide (v2) + (count - 2) * diff;
10604 /* Return the value of element I of VECTOR_CST T. */
10606 tree
10607 vector_cst_elt (const_tree t, unsigned int i)
10609 /* First handle elements that are directly encoded. */
10610 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10611 if (i < encoded_nelts)
10612 return VECTOR_CST_ENCODED_ELT (t, i);
10614 /* If there are no steps, the final encoded value is the right one. */
10615 if (!VECTOR_CST_STEPPED_P (t))
10617 /* Identify the pattern that contains element I and work out the index of
10618 the last encoded element for that pattern. */
10619 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10620 unsigned int pattern = i % npatterns;
10621 unsigned int final_i = encoded_nelts - npatterns + pattern;
10622 return VECTOR_CST_ENCODED_ELT (t, final_i);
10625 /* Otherwise work out the value from the last two encoded elements. */
10626 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
10627 vector_cst_int_elt (t, i));
10630 /* Given an initializer INIT, return TRUE if INIT is zero or some
10631 aggregate of zeros. Otherwise return FALSE. */
10632 bool
10633 initializer_zerop (const_tree init)
10635 tree elt;
10637 STRIP_NOPS (init);
10639 switch (TREE_CODE (init))
10641 case INTEGER_CST:
10642 return integer_zerop (init);
10644 case REAL_CST:
10645 /* ??? Note that this is not correct for C4X float formats. There,
10646 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10647 negative exponent. */
10648 return real_zerop (init)
10649 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10651 case FIXED_CST:
10652 return fixed_zerop (init);
10654 case COMPLEX_CST:
10655 return integer_zerop (init)
10656 || (real_zerop (init)
10657 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10658 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10660 case VECTOR_CST:
10661 return (VECTOR_CST_NPATTERNS (init) == 1
10662 && VECTOR_CST_DUPLICATE_P (init)
10663 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init, 0)));
10665 case CONSTRUCTOR:
10667 unsigned HOST_WIDE_INT idx;
10669 if (TREE_CLOBBER_P (init))
10670 return false;
10671 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10672 if (!initializer_zerop (elt))
10673 return false;
10674 return true;
10677 case STRING_CST:
10679 int i;
10681 /* We need to loop through all elements to handle cases like
10682 "\0" and "\0foobar". */
10683 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10684 if (TREE_STRING_POINTER (init)[i] != '\0')
10685 return false;
10687 return true;
10690 default:
10691 return false;
10695 /* Check if vector VEC consists of all the equal elements and
10696 that the number of elements corresponds to the type of VEC.
10697 The function returns first element of the vector
10698 or NULL_TREE if the vector is not uniform. */
10699 tree
10700 uniform_vector_p (const_tree vec)
10702 tree first, t;
10703 unsigned HOST_WIDE_INT i, nelts;
10705 if (vec == NULL_TREE)
10706 return NULL_TREE;
10708 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10710 if (TREE_CODE (vec) == VEC_DUPLICATE_EXPR)
10711 return TREE_OPERAND (vec, 0);
10713 else if (TREE_CODE (vec) == VECTOR_CST)
10715 if (VECTOR_CST_NPATTERNS (vec) == 1 && VECTOR_CST_DUPLICATE_P (vec))
10716 return VECTOR_CST_ENCODED_ELT (vec, 0);
10717 return NULL_TREE;
10720 else if (TREE_CODE (vec) == CONSTRUCTOR
10721 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)).is_constant (&nelts))
10723 first = error_mark_node;
10725 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10727 if (i == 0)
10729 first = t;
10730 continue;
10732 if (!operand_equal_p (first, t, 0))
10733 return NULL_TREE;
10735 if (i != nelts)
10736 return NULL_TREE;
10738 return first;
10741 return NULL_TREE;
10744 /* Build an empty statement at location LOC. */
10746 tree
10747 build_empty_stmt (location_t loc)
10749 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10750 SET_EXPR_LOCATION (t, loc);
10751 return t;
10755 /* Build an OpenMP clause with code CODE. LOC is the location of the
10756 clause. */
10758 tree
10759 build_omp_clause (location_t loc, enum omp_clause_code code)
10761 tree t;
10762 int size, length;
10764 length = omp_clause_num_ops[code];
10765 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10767 record_node_allocation_statistics (OMP_CLAUSE, size);
10769 t = (tree) ggc_internal_alloc (size);
10770 memset (t, 0, size);
10771 TREE_SET_CODE (t, OMP_CLAUSE);
10772 OMP_CLAUSE_SET_CODE (t, code);
10773 OMP_CLAUSE_LOCATION (t) = loc;
10775 return t;
10778 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10779 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10780 Except for the CODE and operand count field, other storage for the
10781 object is initialized to zeros. */
10783 tree
10784 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
10786 tree t;
10787 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10789 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10790 gcc_assert (len >= 1);
10792 record_node_allocation_statistics (code, length);
10794 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10796 TREE_SET_CODE (t, code);
10798 /* Can't use TREE_OPERAND to store the length because if checking is
10799 enabled, it will try to check the length before we store it. :-P */
10800 t->exp.operands[0] = build_int_cst (sizetype, len);
10802 return t;
10805 /* Helper function for build_call_* functions; build a CALL_EXPR with
10806 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10807 the argument slots. */
10809 static tree
10810 build_call_1 (tree return_type, tree fn, int nargs)
10812 tree t;
10814 t = build_vl_exp (CALL_EXPR, nargs + 3);
10815 TREE_TYPE (t) = return_type;
10816 CALL_EXPR_FN (t) = fn;
10817 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10819 return t;
10822 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10823 FN and a null static chain slot. NARGS is the number of call arguments
10824 which are specified as "..." arguments. */
10826 tree
10827 build_call_nary (tree return_type, tree fn, int nargs, ...)
10829 tree ret;
10830 va_list args;
10831 va_start (args, nargs);
10832 ret = build_call_valist (return_type, fn, nargs, args);
10833 va_end (args);
10834 return ret;
10837 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10838 FN and a null static chain slot. NARGS is the number of call arguments
10839 which are specified as a va_list ARGS. */
10841 tree
10842 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10844 tree t;
10845 int i;
10847 t = build_call_1 (return_type, fn, nargs);
10848 for (i = 0; i < nargs; i++)
10849 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10850 process_call_operands (t);
10851 return t;
10854 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10855 FN and a null static chain slot. NARGS is the number of call arguments
10856 which are specified as a tree array ARGS. */
10858 tree
10859 build_call_array_loc (location_t loc, tree return_type, tree fn,
10860 int nargs, const tree *args)
10862 tree t;
10863 int i;
10865 t = build_call_1 (return_type, fn, nargs);
10866 for (i = 0; i < nargs; i++)
10867 CALL_EXPR_ARG (t, i) = args[i];
10868 process_call_operands (t);
10869 SET_EXPR_LOCATION (t, loc);
10870 return t;
10873 /* Like build_call_array, but takes a vec. */
10875 tree
10876 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10878 tree ret, t;
10879 unsigned int ix;
10881 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10882 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10883 CALL_EXPR_ARG (ret, ix) = t;
10884 process_call_operands (ret);
10885 return ret;
10888 /* Conveniently construct a function call expression. FNDECL names the
10889 function to be called and N arguments are passed in the array
10890 ARGARRAY. */
10892 tree
10893 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10895 tree fntype = TREE_TYPE (fndecl);
10896 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10898 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
10901 /* Conveniently construct a function call expression. FNDECL names the
10902 function to be called and the arguments are passed in the vector
10903 VEC. */
10905 tree
10906 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10908 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10909 vec_safe_address (vec));
10913 /* Conveniently construct a function call expression. FNDECL names the
10914 function to be called, N is the number of arguments, and the "..."
10915 parameters are the argument expressions. */
10917 tree
10918 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10920 va_list ap;
10921 tree *argarray = XALLOCAVEC (tree, n);
10922 int i;
10924 va_start (ap, n);
10925 for (i = 0; i < n; i++)
10926 argarray[i] = va_arg (ap, tree);
10927 va_end (ap);
10928 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10931 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10932 varargs macros aren't supported by all bootstrap compilers. */
10934 tree
10935 build_call_expr (tree fndecl, int n, ...)
10937 va_list ap;
10938 tree *argarray = XALLOCAVEC (tree, n);
10939 int i;
10941 va_start (ap, n);
10942 for (i = 0; i < n; i++)
10943 argarray[i] = va_arg (ap, tree);
10944 va_end (ap);
10945 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10948 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
10949 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
10950 It will get gimplified later into an ordinary internal function. */
10952 tree
10953 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
10954 tree type, int n, const tree *args)
10956 tree t = build_call_1 (type, NULL_TREE, n);
10957 for (int i = 0; i < n; ++i)
10958 CALL_EXPR_ARG (t, i) = args[i];
10959 SET_EXPR_LOCATION (t, loc);
10960 CALL_EXPR_IFN (t) = ifn;
10961 return t;
10964 /* Build internal call expression. This is just like CALL_EXPR, except
10965 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10966 internal function. */
10968 tree
10969 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
10970 tree type, int n, ...)
10972 va_list ap;
10973 tree *argarray = XALLOCAVEC (tree, n);
10974 int i;
10976 va_start (ap, n);
10977 for (i = 0; i < n; i++)
10978 argarray[i] = va_arg (ap, tree);
10979 va_end (ap);
10980 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
10983 /* Return a function call to FN, if the target is guaranteed to support it,
10984 or null otherwise.
10986 N is the number of arguments, passed in the "...", and TYPE is the
10987 type of the return value. */
10989 tree
10990 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
10991 int n, ...)
10993 va_list ap;
10994 tree *argarray = XALLOCAVEC (tree, n);
10995 int i;
10997 va_start (ap, n);
10998 for (i = 0; i < n; i++)
10999 argarray[i] = va_arg (ap, tree);
11000 va_end (ap);
11001 if (internal_fn_p (fn))
11003 internal_fn ifn = as_internal_fn (fn);
11004 if (direct_internal_fn_p (ifn))
11006 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11007 if (!direct_internal_fn_supported_p (ifn, types,
11008 OPTIMIZE_FOR_BOTH))
11009 return NULL_TREE;
11011 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11013 else
11015 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11016 if (!fndecl)
11017 return NULL_TREE;
11018 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11022 /* Return a function call to the appropriate builtin alloca variant.
11024 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
11025 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
11026 bound for SIZE in case it is not a fixed value. */
11028 tree
11029 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
11031 if (max_size >= 0)
11033 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
11034 return
11035 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
11037 else if (align > 0)
11039 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
11040 return build_call_expr (t, 2, size, size_int (align));
11042 else
11044 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
11045 return build_call_expr (t, 1, size);
11049 /* Create a new constant string literal and return a char* pointer to it.
11050 The STRING_CST value is the LEN characters at STR. */
11051 tree
11052 build_string_literal (int len, const char *str)
11054 tree t, elem, index, type;
11056 t = build_string (len, str);
11057 elem = build_type_variant (char_type_node, 1, 0);
11058 index = build_index_type (size_int (len - 1));
11059 type = build_array_type (elem, index);
11060 TREE_TYPE (t) = type;
11061 TREE_CONSTANT (t) = 1;
11062 TREE_READONLY (t) = 1;
11063 TREE_STATIC (t) = 1;
11065 type = build_pointer_type (elem);
11066 t = build1 (ADDR_EXPR, type,
11067 build4 (ARRAY_REF, elem,
11068 t, integer_zero_node, NULL_TREE, NULL_TREE));
11069 return t;
11074 /* Return true if T (assumed to be a DECL) must be assigned a memory
11075 location. */
11077 bool
11078 needs_to_live_in_memory (const_tree t)
11080 return (TREE_ADDRESSABLE (t)
11081 || is_global_var (t)
11082 || (TREE_CODE (t) == RESULT_DECL
11083 && !DECL_BY_REFERENCE (t)
11084 && aggregate_value_p (t, current_function_decl)));
11087 /* Return value of a constant X and sign-extend it. */
11089 HOST_WIDE_INT
11090 int_cst_value (const_tree x)
11092 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11093 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11095 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11096 gcc_assert (cst_and_fits_in_hwi (x));
11098 if (bits < HOST_BITS_PER_WIDE_INT)
11100 bool negative = ((val >> (bits - 1)) & 1) != 0;
11101 if (negative)
11102 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
11103 else
11104 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
11107 return val;
11110 /* If TYPE is an integral or pointer type, return an integer type with
11111 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11112 if TYPE is already an integer type of signedness UNSIGNEDP. */
11114 tree
11115 signed_or_unsigned_type_for (int unsignedp, tree type)
11117 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
11118 return type;
11120 if (TREE_CODE (type) == VECTOR_TYPE)
11122 tree inner = TREE_TYPE (type);
11123 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11124 if (!inner2)
11125 return NULL_TREE;
11126 if (inner == inner2)
11127 return type;
11128 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11131 if (!INTEGRAL_TYPE_P (type)
11132 && !POINTER_TYPE_P (type)
11133 && TREE_CODE (type) != OFFSET_TYPE)
11134 return NULL_TREE;
11136 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
11139 /* If TYPE is an integral or pointer type, return an integer type with
11140 the same precision which is unsigned, or itself if TYPE is already an
11141 unsigned integer type. */
11143 tree
11144 unsigned_type_for (tree type)
11146 return signed_or_unsigned_type_for (1, type);
11149 /* If TYPE is an integral or pointer type, return an integer type with
11150 the same precision which is signed, or itself if TYPE is already a
11151 signed integer type. */
11153 tree
11154 signed_type_for (tree type)
11156 return signed_or_unsigned_type_for (0, type);
11159 /* If TYPE is a vector type, return a signed integer vector type with the
11160 same width and number of subparts. Otherwise return boolean_type_node. */
11162 tree
11163 truth_type_for (tree type)
11165 if (TREE_CODE (type) == VECTOR_TYPE)
11167 if (VECTOR_BOOLEAN_TYPE_P (type))
11168 return type;
11169 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
11170 GET_MODE_SIZE (TYPE_MODE (type)));
11172 else
11173 return boolean_type_node;
11176 /* Returns the largest value obtainable by casting something in INNER type to
11177 OUTER type. */
11179 tree
11180 upper_bound_in_type (tree outer, tree inner)
11182 unsigned int det = 0;
11183 unsigned oprec = TYPE_PRECISION (outer);
11184 unsigned iprec = TYPE_PRECISION (inner);
11185 unsigned prec;
11187 /* Compute a unique number for every combination. */
11188 det |= (oprec > iprec) ? 4 : 0;
11189 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11190 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11192 /* Determine the exponent to use. */
11193 switch (det)
11195 case 0:
11196 case 1:
11197 /* oprec <= iprec, outer: signed, inner: don't care. */
11198 prec = oprec - 1;
11199 break;
11200 case 2:
11201 case 3:
11202 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11203 prec = oprec;
11204 break;
11205 case 4:
11206 /* oprec > iprec, outer: signed, inner: signed. */
11207 prec = iprec - 1;
11208 break;
11209 case 5:
11210 /* oprec > iprec, outer: signed, inner: unsigned. */
11211 prec = iprec;
11212 break;
11213 case 6:
11214 /* oprec > iprec, outer: unsigned, inner: signed. */
11215 prec = oprec;
11216 break;
11217 case 7:
11218 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11219 prec = iprec;
11220 break;
11221 default:
11222 gcc_unreachable ();
11225 return wide_int_to_tree (outer,
11226 wi::mask (prec, false, TYPE_PRECISION (outer)));
11229 /* Returns the smallest value obtainable by casting something in INNER type to
11230 OUTER type. */
11232 tree
11233 lower_bound_in_type (tree outer, tree inner)
11235 unsigned oprec = TYPE_PRECISION (outer);
11236 unsigned iprec = TYPE_PRECISION (inner);
11238 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11239 and obtain 0. */
11240 if (TYPE_UNSIGNED (outer)
11241 /* If we are widening something of an unsigned type, OUTER type
11242 contains all values of INNER type. In particular, both INNER
11243 and OUTER types have zero in common. */
11244 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11245 return build_int_cst (outer, 0);
11246 else
11248 /* If we are widening a signed type to another signed type, we
11249 want to obtain -2^^(iprec-1). If we are keeping the
11250 precision or narrowing to a signed type, we want to obtain
11251 -2^(oprec-1). */
11252 unsigned prec = oprec > iprec ? iprec : oprec;
11253 return wide_int_to_tree (outer,
11254 wi::mask (prec - 1, true,
11255 TYPE_PRECISION (outer)));
11259 /* Return nonzero if two operands that are suitable for PHI nodes are
11260 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11261 SSA_NAME or invariant. Note that this is strictly an optimization.
11262 That is, callers of this function can directly call operand_equal_p
11263 and get the same result, only slower. */
11266 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11268 if (arg0 == arg1)
11269 return 1;
11270 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11271 return 0;
11272 return operand_equal_p (arg0, arg1, 0);
11275 /* Returns number of zeros at the end of binary representation of X. */
11277 tree
11278 num_ending_zeros (const_tree x)
11280 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11284 #define WALK_SUBTREE(NODE) \
11285 do \
11287 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11288 if (result) \
11289 return result; \
11291 while (0)
11293 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11294 be walked whenever a type is seen in the tree. Rest of operands and return
11295 value are as for walk_tree. */
11297 static tree
11298 walk_type_fields (tree type, walk_tree_fn func, void *data,
11299 hash_set<tree> *pset, walk_tree_lh lh)
11301 tree result = NULL_TREE;
11303 switch (TREE_CODE (type))
11305 case POINTER_TYPE:
11306 case REFERENCE_TYPE:
11307 case VECTOR_TYPE:
11308 /* We have to worry about mutually recursive pointers. These can't
11309 be written in C. They can in Ada. It's pathological, but
11310 there's an ACATS test (c38102a) that checks it. Deal with this
11311 by checking if we're pointing to another pointer, that one
11312 points to another pointer, that one does too, and we have no htab.
11313 If so, get a hash table. We check three levels deep to avoid
11314 the cost of the hash table if we don't need one. */
11315 if (POINTER_TYPE_P (TREE_TYPE (type))
11316 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11317 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11318 && !pset)
11320 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11321 func, data);
11322 if (result)
11323 return result;
11325 break;
11328 /* fall through */
11330 case COMPLEX_TYPE:
11331 WALK_SUBTREE (TREE_TYPE (type));
11332 break;
11334 case METHOD_TYPE:
11335 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11337 /* Fall through. */
11339 case FUNCTION_TYPE:
11340 WALK_SUBTREE (TREE_TYPE (type));
11342 tree arg;
11344 /* We never want to walk into default arguments. */
11345 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11346 WALK_SUBTREE (TREE_VALUE (arg));
11348 break;
11350 case ARRAY_TYPE:
11351 /* Don't follow this nodes's type if a pointer for fear that
11352 we'll have infinite recursion. If we have a PSET, then we
11353 need not fear. */
11354 if (pset
11355 || (!POINTER_TYPE_P (TREE_TYPE (type))
11356 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11357 WALK_SUBTREE (TREE_TYPE (type));
11358 WALK_SUBTREE (TYPE_DOMAIN (type));
11359 break;
11361 case OFFSET_TYPE:
11362 WALK_SUBTREE (TREE_TYPE (type));
11363 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11364 break;
11366 default:
11367 break;
11370 return NULL_TREE;
11373 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11374 called with the DATA and the address of each sub-tree. If FUNC returns a
11375 non-NULL value, the traversal is stopped, and the value returned by FUNC
11376 is returned. If PSET is non-NULL it is used to record the nodes visited,
11377 and to avoid visiting a node more than once. */
11379 tree
11380 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11381 hash_set<tree> *pset, walk_tree_lh lh)
11383 enum tree_code code;
11384 int walk_subtrees;
11385 tree result;
11387 #define WALK_SUBTREE_TAIL(NODE) \
11388 do \
11390 tp = & (NODE); \
11391 goto tail_recurse; \
11393 while (0)
11395 tail_recurse:
11396 /* Skip empty subtrees. */
11397 if (!*tp)
11398 return NULL_TREE;
11400 /* Don't walk the same tree twice, if the user has requested
11401 that we avoid doing so. */
11402 if (pset && pset->add (*tp))
11403 return NULL_TREE;
11405 /* Call the function. */
11406 walk_subtrees = 1;
11407 result = (*func) (tp, &walk_subtrees, data);
11409 /* If we found something, return it. */
11410 if (result)
11411 return result;
11413 code = TREE_CODE (*tp);
11415 /* Even if we didn't, FUNC may have decided that there was nothing
11416 interesting below this point in the tree. */
11417 if (!walk_subtrees)
11419 /* But we still need to check our siblings. */
11420 if (code == TREE_LIST)
11421 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11422 else if (code == OMP_CLAUSE)
11423 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11424 else
11425 return NULL_TREE;
11428 if (lh)
11430 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11431 if (result || !walk_subtrees)
11432 return result;
11435 switch (code)
11437 case ERROR_MARK:
11438 case IDENTIFIER_NODE:
11439 case INTEGER_CST:
11440 case REAL_CST:
11441 case FIXED_CST:
11442 case VECTOR_CST:
11443 case STRING_CST:
11444 case BLOCK:
11445 case PLACEHOLDER_EXPR:
11446 case SSA_NAME:
11447 case FIELD_DECL:
11448 case RESULT_DECL:
11449 /* None of these have subtrees other than those already walked
11450 above. */
11451 break;
11453 case TREE_LIST:
11454 WALK_SUBTREE (TREE_VALUE (*tp));
11455 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11456 break;
11458 case TREE_VEC:
11460 int len = TREE_VEC_LENGTH (*tp);
11462 if (len == 0)
11463 break;
11465 /* Walk all elements but the first. */
11466 while (--len)
11467 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11469 /* Now walk the first one as a tail call. */
11470 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11473 case COMPLEX_CST:
11474 WALK_SUBTREE (TREE_REALPART (*tp));
11475 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11477 case CONSTRUCTOR:
11479 unsigned HOST_WIDE_INT idx;
11480 constructor_elt *ce;
11482 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11483 idx++)
11484 WALK_SUBTREE (ce->value);
11486 break;
11488 case SAVE_EXPR:
11489 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11491 case BIND_EXPR:
11493 tree decl;
11494 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11496 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11497 into declarations that are just mentioned, rather than
11498 declared; they don't really belong to this part of the tree.
11499 And, we can see cycles: the initializer for a declaration
11500 can refer to the declaration itself. */
11501 WALK_SUBTREE (DECL_INITIAL (decl));
11502 WALK_SUBTREE (DECL_SIZE (decl));
11503 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11505 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11508 case STATEMENT_LIST:
11510 tree_stmt_iterator i;
11511 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11512 WALK_SUBTREE (*tsi_stmt_ptr (i));
11514 break;
11516 case OMP_CLAUSE:
11517 switch (OMP_CLAUSE_CODE (*tp))
11519 case OMP_CLAUSE_GANG:
11520 case OMP_CLAUSE__GRIDDIM_:
11521 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11522 /* FALLTHRU */
11524 case OMP_CLAUSE_ASYNC:
11525 case OMP_CLAUSE_WAIT:
11526 case OMP_CLAUSE_WORKER:
11527 case OMP_CLAUSE_VECTOR:
11528 case OMP_CLAUSE_NUM_GANGS:
11529 case OMP_CLAUSE_NUM_WORKERS:
11530 case OMP_CLAUSE_VECTOR_LENGTH:
11531 case OMP_CLAUSE_PRIVATE:
11532 case OMP_CLAUSE_SHARED:
11533 case OMP_CLAUSE_FIRSTPRIVATE:
11534 case OMP_CLAUSE_COPYIN:
11535 case OMP_CLAUSE_COPYPRIVATE:
11536 case OMP_CLAUSE_FINAL:
11537 case OMP_CLAUSE_IF:
11538 case OMP_CLAUSE_NUM_THREADS:
11539 case OMP_CLAUSE_SCHEDULE:
11540 case OMP_CLAUSE_UNIFORM:
11541 case OMP_CLAUSE_DEPEND:
11542 case OMP_CLAUSE_NUM_TEAMS:
11543 case OMP_CLAUSE_THREAD_LIMIT:
11544 case OMP_CLAUSE_DEVICE:
11545 case OMP_CLAUSE_DIST_SCHEDULE:
11546 case OMP_CLAUSE_SAFELEN:
11547 case OMP_CLAUSE_SIMDLEN:
11548 case OMP_CLAUSE_ORDERED:
11549 case OMP_CLAUSE_PRIORITY:
11550 case OMP_CLAUSE_GRAINSIZE:
11551 case OMP_CLAUSE_NUM_TASKS:
11552 case OMP_CLAUSE_HINT:
11553 case OMP_CLAUSE_TO_DECLARE:
11554 case OMP_CLAUSE_LINK:
11555 case OMP_CLAUSE_USE_DEVICE_PTR:
11556 case OMP_CLAUSE_IS_DEVICE_PTR:
11557 case OMP_CLAUSE__LOOPTEMP_:
11558 case OMP_CLAUSE__SIMDUID_:
11559 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11560 /* FALLTHRU */
11562 case OMP_CLAUSE_INDEPENDENT:
11563 case OMP_CLAUSE_NOWAIT:
11564 case OMP_CLAUSE_DEFAULT:
11565 case OMP_CLAUSE_UNTIED:
11566 case OMP_CLAUSE_MERGEABLE:
11567 case OMP_CLAUSE_PROC_BIND:
11568 case OMP_CLAUSE_INBRANCH:
11569 case OMP_CLAUSE_NOTINBRANCH:
11570 case OMP_CLAUSE_FOR:
11571 case OMP_CLAUSE_PARALLEL:
11572 case OMP_CLAUSE_SECTIONS:
11573 case OMP_CLAUSE_TASKGROUP:
11574 case OMP_CLAUSE_NOGROUP:
11575 case OMP_CLAUSE_THREADS:
11576 case OMP_CLAUSE_SIMD:
11577 case OMP_CLAUSE_DEFAULTMAP:
11578 case OMP_CLAUSE_AUTO:
11579 case OMP_CLAUSE_SEQ:
11580 case OMP_CLAUSE_TILE:
11581 case OMP_CLAUSE__SIMT_:
11582 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11584 case OMP_CLAUSE_LASTPRIVATE:
11585 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11586 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11587 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11589 case OMP_CLAUSE_COLLAPSE:
11591 int i;
11592 for (i = 0; i < 3; i++)
11593 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11594 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11597 case OMP_CLAUSE_LINEAR:
11598 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11599 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11600 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11601 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11603 case OMP_CLAUSE_ALIGNED:
11604 case OMP_CLAUSE_FROM:
11605 case OMP_CLAUSE_TO:
11606 case OMP_CLAUSE_MAP:
11607 case OMP_CLAUSE__CACHE_:
11608 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11609 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11610 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11612 case OMP_CLAUSE_REDUCTION:
11614 int i;
11615 for (i = 0; i < 5; i++)
11616 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11617 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11620 default:
11621 gcc_unreachable ();
11623 break;
11625 case TARGET_EXPR:
11627 int i, len;
11629 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11630 But, we only want to walk once. */
11631 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11632 for (i = 0; i < len; ++i)
11633 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11634 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11637 case DECL_EXPR:
11638 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11639 defining. We only want to walk into these fields of a type in this
11640 case and not in the general case of a mere reference to the type.
11642 The criterion is as follows: if the field can be an expression, it
11643 must be walked only here. This should be in keeping with the fields
11644 that are directly gimplified in gimplify_type_sizes in order for the
11645 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11646 variable-sized types.
11648 Note that DECLs get walked as part of processing the BIND_EXPR. */
11649 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11651 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11652 if (TREE_CODE (*type_p) == ERROR_MARK)
11653 return NULL_TREE;
11655 /* Call the function for the type. See if it returns anything or
11656 doesn't want us to continue. If we are to continue, walk both
11657 the normal fields and those for the declaration case. */
11658 result = (*func) (type_p, &walk_subtrees, data);
11659 if (result || !walk_subtrees)
11660 return result;
11662 /* But do not walk a pointed-to type since it may itself need to
11663 be walked in the declaration case if it isn't anonymous. */
11664 if (!POINTER_TYPE_P (*type_p))
11666 result = walk_type_fields (*type_p, func, data, pset, lh);
11667 if (result)
11668 return result;
11671 /* If this is a record type, also walk the fields. */
11672 if (RECORD_OR_UNION_TYPE_P (*type_p))
11674 tree field;
11676 for (field = TYPE_FIELDS (*type_p); field;
11677 field = DECL_CHAIN (field))
11679 /* We'd like to look at the type of the field, but we can
11680 easily get infinite recursion. So assume it's pointed
11681 to elsewhere in the tree. Also, ignore things that
11682 aren't fields. */
11683 if (TREE_CODE (field) != FIELD_DECL)
11684 continue;
11686 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11687 WALK_SUBTREE (DECL_SIZE (field));
11688 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11689 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11690 WALK_SUBTREE (DECL_QUALIFIER (field));
11694 /* Same for scalar types. */
11695 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11696 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11697 || TREE_CODE (*type_p) == INTEGER_TYPE
11698 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11699 || TREE_CODE (*type_p) == REAL_TYPE)
11701 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11702 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11705 WALK_SUBTREE (TYPE_SIZE (*type_p));
11706 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11708 /* FALLTHRU */
11710 default:
11711 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11713 int i, len;
11715 /* Walk over all the sub-trees of this operand. */
11716 len = TREE_OPERAND_LENGTH (*tp);
11718 /* Go through the subtrees. We need to do this in forward order so
11719 that the scope of a FOR_EXPR is handled properly. */
11720 if (len)
11722 for (i = 0; i < len - 1; ++i)
11723 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11724 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11727 /* If this is a type, walk the needed fields in the type. */
11728 else if (TYPE_P (*tp))
11729 return walk_type_fields (*tp, func, data, pset, lh);
11730 break;
11733 /* We didn't find what we were looking for. */
11734 return NULL_TREE;
11736 #undef WALK_SUBTREE_TAIL
11738 #undef WALK_SUBTREE
11740 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11742 tree
11743 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11744 walk_tree_lh lh)
11746 tree result;
11748 hash_set<tree> pset;
11749 result = walk_tree_1 (tp, func, data, &pset, lh);
11750 return result;
11754 tree
11755 tree_block (tree t)
11757 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11759 if (IS_EXPR_CODE_CLASS (c))
11760 return LOCATION_BLOCK (t->exp.locus);
11761 gcc_unreachable ();
11762 return NULL;
11765 void
11766 tree_set_block (tree t, tree b)
11768 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11770 if (IS_EXPR_CODE_CLASS (c))
11772 t->exp.locus = set_block (t->exp.locus, b);
11774 else
11775 gcc_unreachable ();
11778 /* Create a nameless artificial label and put it in the current
11779 function context. The label has a location of LOC. Returns the
11780 newly created label. */
11782 tree
11783 create_artificial_label (location_t loc)
11785 tree lab = build_decl (loc,
11786 LABEL_DECL, NULL_TREE, void_type_node);
11788 DECL_ARTIFICIAL (lab) = 1;
11789 DECL_IGNORED_P (lab) = 1;
11790 DECL_CONTEXT (lab) = current_function_decl;
11791 return lab;
11794 /* Given a tree, try to return a useful variable name that we can use
11795 to prefix a temporary that is being assigned the value of the tree.
11796 I.E. given <temp> = &A, return A. */
11798 const char *
11799 get_name (tree t)
11801 tree stripped_decl;
11803 stripped_decl = t;
11804 STRIP_NOPS (stripped_decl);
11805 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11806 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11807 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11809 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11810 if (!name)
11811 return NULL;
11812 return IDENTIFIER_POINTER (name);
11814 else
11816 switch (TREE_CODE (stripped_decl))
11818 case ADDR_EXPR:
11819 return get_name (TREE_OPERAND (stripped_decl, 0));
11820 default:
11821 return NULL;
11826 /* Return true if TYPE has a variable argument list. */
11828 bool
11829 stdarg_p (const_tree fntype)
11831 function_args_iterator args_iter;
11832 tree n = NULL_TREE, t;
11834 if (!fntype)
11835 return false;
11837 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11839 n = t;
11842 return n != NULL_TREE && n != void_type_node;
11845 /* Return true if TYPE has a prototype. */
11847 bool
11848 prototype_p (const_tree fntype)
11850 tree t;
11852 gcc_assert (fntype != NULL_TREE);
11854 t = TYPE_ARG_TYPES (fntype);
11855 return (t != NULL_TREE);
11858 /* If BLOCK is inlined from an __attribute__((__artificial__))
11859 routine, return pointer to location from where it has been
11860 called. */
11861 location_t *
11862 block_nonartificial_location (tree block)
11864 location_t *ret = NULL;
11866 while (block && TREE_CODE (block) == BLOCK
11867 && BLOCK_ABSTRACT_ORIGIN (block))
11869 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11871 while (TREE_CODE (ao) == BLOCK
11872 && BLOCK_ABSTRACT_ORIGIN (ao)
11873 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11874 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11876 if (TREE_CODE (ao) == FUNCTION_DECL)
11878 /* If AO is an artificial inline, point RET to the
11879 call site locus at which it has been inlined and continue
11880 the loop, in case AO's caller is also an artificial
11881 inline. */
11882 if (DECL_DECLARED_INLINE_P (ao)
11883 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11884 ret = &BLOCK_SOURCE_LOCATION (block);
11885 else
11886 break;
11888 else if (TREE_CODE (ao) != BLOCK)
11889 break;
11891 block = BLOCK_SUPERCONTEXT (block);
11893 return ret;
11897 /* If EXP is inlined from an __attribute__((__artificial__))
11898 function, return the location of the original call expression. */
11900 location_t
11901 tree_nonartificial_location (tree exp)
11903 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11905 if (loc)
11906 return *loc;
11907 else
11908 return EXPR_LOCATION (exp);
11912 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11913 nodes. */
11915 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11917 hashval_t
11918 cl_option_hasher::hash (tree x)
11920 const_tree const t = x;
11921 const char *p;
11922 size_t i;
11923 size_t len = 0;
11924 hashval_t hash = 0;
11926 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11928 p = (const char *)TREE_OPTIMIZATION (t);
11929 len = sizeof (struct cl_optimization);
11932 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11933 return cl_target_option_hash (TREE_TARGET_OPTION (t));
11935 else
11936 gcc_unreachable ();
11938 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11939 something else. */
11940 for (i = 0; i < len; i++)
11941 if (p[i])
11942 hash = (hash << 4) ^ ((i << 2) | p[i]);
11944 return hash;
11947 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11948 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11949 same. */
11951 bool
11952 cl_option_hasher::equal (tree x, tree y)
11954 const_tree const xt = x;
11955 const_tree const yt = y;
11956 const char *xp;
11957 const char *yp;
11958 size_t len;
11960 if (TREE_CODE (xt) != TREE_CODE (yt))
11961 return 0;
11963 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11965 xp = (const char *)TREE_OPTIMIZATION (xt);
11966 yp = (const char *)TREE_OPTIMIZATION (yt);
11967 len = sizeof (struct cl_optimization);
11970 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11972 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
11973 TREE_TARGET_OPTION (yt));
11976 else
11977 gcc_unreachable ();
11979 return (memcmp (xp, yp, len) == 0);
11982 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11984 tree
11985 build_optimization_node (struct gcc_options *opts)
11987 tree t;
11989 /* Use the cache of optimization nodes. */
11991 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
11992 opts);
11994 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
11995 t = *slot;
11996 if (!t)
11998 /* Insert this one into the hash table. */
11999 t = cl_optimization_node;
12000 *slot = t;
12002 /* Make a new node for next time round. */
12003 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12006 return t;
12009 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
12011 tree
12012 build_target_option_node (struct gcc_options *opts)
12014 tree t;
12016 /* Use the cache of optimization nodes. */
12018 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12019 opts);
12021 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12022 t = *slot;
12023 if (!t)
12025 /* Insert this one into the hash table. */
12026 t = cl_target_option_node;
12027 *slot = t;
12029 /* Make a new node for next time round. */
12030 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12033 return t;
12036 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12037 so that they aren't saved during PCH writing. */
12039 void
12040 prepare_target_option_nodes_for_pch (void)
12042 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12043 for (; iter != cl_option_hash_table->end (); ++iter)
12044 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12045 TREE_TARGET_GLOBALS (*iter) = NULL;
12048 /* Determine the "ultimate origin" of a block. The block may be an inlined
12049 instance of an inlined instance of a block which is local to an inline
12050 function, so we have to trace all of the way back through the origin chain
12051 to find out what sort of node actually served as the original seed for the
12052 given block. */
12054 tree
12055 block_ultimate_origin (const_tree block)
12057 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
12059 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
12060 we're trying to output the abstract instance of this function. */
12061 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
12062 return NULL_TREE;
12064 if (immediate_origin == NULL_TREE)
12065 return NULL_TREE;
12066 else
12068 tree ret_val;
12069 tree lookahead = immediate_origin;
12073 ret_val = lookahead;
12074 lookahead = (TREE_CODE (ret_val) == BLOCK
12075 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
12077 while (lookahead != NULL && lookahead != ret_val);
12079 /* The block's abstract origin chain may not be the *ultimate* origin of
12080 the block. It could lead to a DECL that has an abstract origin set.
12081 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
12082 will give us if it has one). Note that DECL's abstract origins are
12083 supposed to be the most distant ancestor (or so decl_ultimate_origin
12084 claims), so we don't need to loop following the DECL origins. */
12085 if (DECL_P (ret_val))
12086 return DECL_ORIGIN (ret_val);
12088 return ret_val;
12092 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12093 no instruction. */
12095 bool
12096 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12098 /* Do not strip casts into or out of differing address spaces. */
12099 if (POINTER_TYPE_P (outer_type)
12100 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12102 if (!POINTER_TYPE_P (inner_type)
12103 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12104 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12105 return false;
12107 else if (POINTER_TYPE_P (inner_type)
12108 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12110 /* We already know that outer_type is not a pointer with
12111 a non-generic address space. */
12112 return false;
12115 /* Use precision rather then machine mode when we can, which gives
12116 the correct answer even for submode (bit-field) types. */
12117 if ((INTEGRAL_TYPE_P (outer_type)
12118 || POINTER_TYPE_P (outer_type)
12119 || TREE_CODE (outer_type) == OFFSET_TYPE)
12120 && (INTEGRAL_TYPE_P (inner_type)
12121 || POINTER_TYPE_P (inner_type)
12122 || TREE_CODE (inner_type) == OFFSET_TYPE))
12123 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12125 /* Otherwise fall back on comparing machine modes (e.g. for
12126 aggregate types, floats). */
12127 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12130 /* Return true iff conversion in EXP generates no instruction. Mark
12131 it inline so that we fully inline into the stripping functions even
12132 though we have two uses of this function. */
12134 static inline bool
12135 tree_nop_conversion (const_tree exp)
12137 tree outer_type, inner_type;
12139 if (location_wrapper_p (exp))
12140 return true;
12141 if (!CONVERT_EXPR_P (exp)
12142 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12143 return false;
12144 if (TREE_OPERAND (exp, 0) == error_mark_node)
12145 return false;
12147 outer_type = TREE_TYPE (exp);
12148 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12150 if (!inner_type)
12151 return false;
12153 return tree_nop_conversion_p (outer_type, inner_type);
12156 /* Return true iff conversion in EXP generates no instruction. Don't
12157 consider conversions changing the signedness. */
12159 static bool
12160 tree_sign_nop_conversion (const_tree exp)
12162 tree outer_type, inner_type;
12164 if (!tree_nop_conversion (exp))
12165 return false;
12167 outer_type = TREE_TYPE (exp);
12168 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12170 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12171 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12174 /* Strip conversions from EXP according to tree_nop_conversion and
12175 return the resulting expression. */
12177 tree
12178 tree_strip_nop_conversions (tree exp)
12180 while (tree_nop_conversion (exp))
12181 exp = TREE_OPERAND (exp, 0);
12182 return exp;
12185 /* Strip conversions from EXP according to tree_sign_nop_conversion
12186 and return the resulting expression. */
12188 tree
12189 tree_strip_sign_nop_conversions (tree exp)
12191 while (tree_sign_nop_conversion (exp))
12192 exp = TREE_OPERAND (exp, 0);
12193 return exp;
12196 /* Avoid any floating point extensions from EXP. */
12197 tree
12198 strip_float_extensions (tree exp)
12200 tree sub, expt, subt;
12202 /* For floating point constant look up the narrowest type that can hold
12203 it properly and handle it like (type)(narrowest_type)constant.
12204 This way we can optimize for instance a=a*2.0 where "a" is float
12205 but 2.0 is double constant. */
12206 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12208 REAL_VALUE_TYPE orig;
12209 tree type = NULL;
12211 orig = TREE_REAL_CST (exp);
12212 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12213 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12214 type = float_type_node;
12215 else if (TYPE_PRECISION (TREE_TYPE (exp))
12216 > TYPE_PRECISION (double_type_node)
12217 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12218 type = double_type_node;
12219 if (type)
12220 return build_real_truncate (type, orig);
12223 if (!CONVERT_EXPR_P (exp))
12224 return exp;
12226 sub = TREE_OPERAND (exp, 0);
12227 subt = TREE_TYPE (sub);
12228 expt = TREE_TYPE (exp);
12230 if (!FLOAT_TYPE_P (subt))
12231 return exp;
12233 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12234 return exp;
12236 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12237 return exp;
12239 return strip_float_extensions (sub);
12242 /* Strip out all handled components that produce invariant
12243 offsets. */
12245 const_tree
12246 strip_invariant_refs (const_tree op)
12248 while (handled_component_p (op))
12250 switch (TREE_CODE (op))
12252 case ARRAY_REF:
12253 case ARRAY_RANGE_REF:
12254 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12255 || TREE_OPERAND (op, 2) != NULL_TREE
12256 || TREE_OPERAND (op, 3) != NULL_TREE)
12257 return NULL;
12258 break;
12260 case COMPONENT_REF:
12261 if (TREE_OPERAND (op, 2) != NULL_TREE)
12262 return NULL;
12263 break;
12265 default:;
12267 op = TREE_OPERAND (op, 0);
12270 return op;
12273 static GTY(()) tree gcc_eh_personality_decl;
12275 /* Return the GCC personality function decl. */
12277 tree
12278 lhd_gcc_personality (void)
12280 if (!gcc_eh_personality_decl)
12281 gcc_eh_personality_decl = build_personality_function ("gcc");
12282 return gcc_eh_personality_decl;
12285 /* TARGET is a call target of GIMPLE call statement
12286 (obtained by gimple_call_fn). Return true if it is
12287 OBJ_TYPE_REF representing an virtual call of C++ method.
12288 (As opposed to OBJ_TYPE_REF representing objc calls
12289 through a cast where middle-end devirtualization machinery
12290 can't apply.) */
12292 bool
12293 virtual_method_call_p (const_tree target)
12295 if (TREE_CODE (target) != OBJ_TYPE_REF)
12296 return false;
12297 tree t = TREE_TYPE (target);
12298 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12299 t = TREE_TYPE (t);
12300 if (TREE_CODE (t) == FUNCTION_TYPE)
12301 return false;
12302 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12303 /* If we do not have BINFO associated, it means that type was built
12304 without devirtualization enabled. Do not consider this a virtual
12305 call. */
12306 if (!TYPE_BINFO (obj_type_ref_class (target)))
12307 return false;
12308 return true;
12311 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12313 tree
12314 obj_type_ref_class (const_tree ref)
12316 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12317 ref = TREE_TYPE (ref);
12318 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12319 ref = TREE_TYPE (ref);
12320 /* We look for type THIS points to. ObjC also builds
12321 OBJ_TYPE_REF with non-method calls, Their first parameter
12322 ID however also corresponds to class type. */
12323 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12324 || TREE_CODE (ref) == FUNCTION_TYPE);
12325 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12326 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12327 return TREE_TYPE (ref);
12330 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12332 static tree
12333 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12335 unsigned int i;
12336 tree base_binfo, b;
12338 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12339 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12340 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12341 return base_binfo;
12342 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12343 return b;
12344 return NULL;
12347 /* Try to find a base info of BINFO that would have its field decl at offset
12348 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12349 found, return, otherwise return NULL_TREE. */
12351 tree
12352 get_binfo_at_offset (tree binfo, poly_int64 offset, tree expected_type)
12354 tree type = BINFO_TYPE (binfo);
12356 while (true)
12358 HOST_WIDE_INT pos, size;
12359 tree fld;
12360 int i;
12362 if (types_same_for_odr (type, expected_type))
12363 return binfo;
12364 if (maybe_lt (offset, 0))
12365 return NULL_TREE;
12367 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12369 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12370 continue;
12372 pos = int_bit_position (fld);
12373 size = tree_to_uhwi (DECL_SIZE (fld));
12374 if (known_in_range_p (offset, pos, size))
12375 break;
12377 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12378 return NULL_TREE;
12380 /* Offset 0 indicates the primary base, whose vtable contents are
12381 represented in the binfo for the derived class. */
12382 else if (maybe_ne (offset, 0))
12384 tree found_binfo = NULL, base_binfo;
12385 /* Offsets in BINFO are in bytes relative to the whole structure
12386 while POS is in bits relative to the containing field. */
12387 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12388 / BITS_PER_UNIT);
12390 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12391 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12392 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12394 found_binfo = base_binfo;
12395 break;
12397 if (found_binfo)
12398 binfo = found_binfo;
12399 else
12400 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12401 binfo_offset);
12404 type = TREE_TYPE (fld);
12405 offset -= pos;
12409 /* Returns true if X is a typedef decl. */
12411 bool
12412 is_typedef_decl (const_tree x)
12414 return (x && TREE_CODE (x) == TYPE_DECL
12415 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12418 /* Returns true iff TYPE is a type variant created for a typedef. */
12420 bool
12421 typedef_variant_p (const_tree type)
12423 return is_typedef_decl (TYPE_NAME (type));
12426 /* Warn about a use of an identifier which was marked deprecated. Returns
12427 whether a warning was given. */
12429 bool
12430 warn_deprecated_use (tree node, tree attr)
12432 const char *msg;
12434 if (node == 0 || !warn_deprecated_decl)
12435 return false;
12437 if (!attr)
12439 if (DECL_P (node))
12440 attr = DECL_ATTRIBUTES (node);
12441 else if (TYPE_P (node))
12443 tree decl = TYPE_STUB_DECL (node);
12444 if (decl)
12445 attr = lookup_attribute ("deprecated",
12446 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12450 if (attr)
12451 attr = lookup_attribute ("deprecated", attr);
12453 if (attr)
12454 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12455 else
12456 msg = NULL;
12458 bool w = false;
12459 if (DECL_P (node))
12461 if (msg)
12462 w = warning (OPT_Wdeprecated_declarations,
12463 "%qD is deprecated: %s", node, msg);
12464 else
12465 w = warning (OPT_Wdeprecated_declarations,
12466 "%qD is deprecated", node);
12467 if (w)
12468 inform (DECL_SOURCE_LOCATION (node), "declared here");
12470 else if (TYPE_P (node))
12472 tree what = NULL_TREE;
12473 tree decl = TYPE_STUB_DECL (node);
12475 if (TYPE_NAME (node))
12477 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12478 what = TYPE_NAME (node);
12479 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12480 && DECL_NAME (TYPE_NAME (node)))
12481 what = DECL_NAME (TYPE_NAME (node));
12484 if (what)
12486 if (msg)
12487 w = warning (OPT_Wdeprecated_declarations,
12488 "%qE is deprecated: %s", what, msg);
12489 else
12490 w = warning (OPT_Wdeprecated_declarations,
12491 "%qE is deprecated", what);
12493 else
12495 if (msg)
12496 w = warning (OPT_Wdeprecated_declarations,
12497 "type is deprecated: %s", msg);
12498 else
12499 w = warning (OPT_Wdeprecated_declarations,
12500 "type is deprecated");
12502 if (w && decl)
12503 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12506 return w;
12509 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12510 somewhere in it. */
12512 bool
12513 contains_bitfld_component_ref_p (const_tree ref)
12515 while (handled_component_p (ref))
12517 if (TREE_CODE (ref) == COMPONENT_REF
12518 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12519 return true;
12520 ref = TREE_OPERAND (ref, 0);
12523 return false;
12526 /* Try to determine whether a TRY_CATCH expression can fall through.
12527 This is a subroutine of block_may_fallthru. */
12529 static bool
12530 try_catch_may_fallthru (const_tree stmt)
12532 tree_stmt_iterator i;
12534 /* If the TRY block can fall through, the whole TRY_CATCH can
12535 fall through. */
12536 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12537 return true;
12539 i = tsi_start (TREE_OPERAND (stmt, 1));
12540 switch (TREE_CODE (tsi_stmt (i)))
12542 case CATCH_EXPR:
12543 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12544 catch expression and a body. The whole TRY_CATCH may fall
12545 through iff any of the catch bodies falls through. */
12546 for (; !tsi_end_p (i); tsi_next (&i))
12548 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12549 return true;
12551 return false;
12553 case EH_FILTER_EXPR:
12554 /* The exception filter expression only matters if there is an
12555 exception. If the exception does not match EH_FILTER_TYPES,
12556 we will execute EH_FILTER_FAILURE, and we will fall through
12557 if that falls through. If the exception does match
12558 EH_FILTER_TYPES, the stack unwinder will continue up the
12559 stack, so we will not fall through. We don't know whether we
12560 will throw an exception which matches EH_FILTER_TYPES or not,
12561 so we just ignore EH_FILTER_TYPES and assume that we might
12562 throw an exception which doesn't match. */
12563 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12565 default:
12566 /* This case represents statements to be executed when an
12567 exception occurs. Those statements are implicitly followed
12568 by a RESX statement to resume execution after the exception.
12569 So in this case the TRY_CATCH never falls through. */
12570 return false;
12574 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12575 need not be 100% accurate; simply be conservative and return true if we
12576 don't know. This is used only to avoid stupidly generating extra code.
12577 If we're wrong, we'll just delete the extra code later. */
12579 bool
12580 block_may_fallthru (const_tree block)
12582 /* This CONST_CAST is okay because expr_last returns its argument
12583 unmodified and we assign it to a const_tree. */
12584 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12586 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12588 case GOTO_EXPR:
12589 case RETURN_EXPR:
12590 /* Easy cases. If the last statement of the block implies
12591 control transfer, then we can't fall through. */
12592 return false;
12594 case SWITCH_EXPR:
12595 /* If there is a default: label or case labels cover all possible
12596 SWITCH_COND values, then the SWITCH_EXPR will transfer control
12597 to some case label in all cases and all we care is whether the
12598 SWITCH_BODY falls through. */
12599 if (SWITCH_ALL_CASES_P (stmt))
12600 return block_may_fallthru (SWITCH_BODY (stmt));
12601 return true;
12603 case COND_EXPR:
12604 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12605 return true;
12606 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12608 case BIND_EXPR:
12609 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12611 case TRY_CATCH_EXPR:
12612 return try_catch_may_fallthru (stmt);
12614 case TRY_FINALLY_EXPR:
12615 /* The finally clause is always executed after the try clause,
12616 so if it does not fall through, then the try-finally will not
12617 fall through. Otherwise, if the try clause does not fall
12618 through, then when the finally clause falls through it will
12619 resume execution wherever the try clause was going. So the
12620 whole try-finally will only fall through if both the try
12621 clause and the finally clause fall through. */
12622 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12623 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12625 case MODIFY_EXPR:
12626 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12627 stmt = TREE_OPERAND (stmt, 1);
12628 else
12629 return true;
12630 /* FALLTHRU */
12632 case CALL_EXPR:
12633 /* Functions that do not return do not fall through. */
12634 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12636 case CLEANUP_POINT_EXPR:
12637 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12639 case TARGET_EXPR:
12640 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12642 case ERROR_MARK:
12643 return true;
12645 default:
12646 return lang_hooks.block_may_fallthru (stmt);
12650 /* True if we are using EH to handle cleanups. */
12651 static bool using_eh_for_cleanups_flag = false;
12653 /* This routine is called from front ends to indicate eh should be used for
12654 cleanups. */
12655 void
12656 using_eh_for_cleanups (void)
12658 using_eh_for_cleanups_flag = true;
12661 /* Query whether EH is used for cleanups. */
12662 bool
12663 using_eh_for_cleanups_p (void)
12665 return using_eh_for_cleanups_flag;
12668 /* Wrapper for tree_code_name to ensure that tree code is valid */
12669 const char *
12670 get_tree_code_name (enum tree_code code)
12672 const char *invalid = "<invalid tree code>";
12674 if (code >= MAX_TREE_CODES)
12675 return invalid;
12677 return tree_code_name[code];
12680 /* Drops the TREE_OVERFLOW flag from T. */
12682 tree
12683 drop_tree_overflow (tree t)
12685 gcc_checking_assert (TREE_OVERFLOW (t));
12687 /* For tree codes with a sharing machinery re-build the result. */
12688 if (poly_int_tree_p (t))
12689 return wide_int_to_tree (TREE_TYPE (t), wi::to_poly_wide (t));
12691 /* For VECTOR_CST, remove the overflow bits from the encoded elements
12692 and canonicalize the result. */
12693 if (TREE_CODE (t) == VECTOR_CST)
12695 tree_vector_builder builder;
12696 builder.new_unary_operation (TREE_TYPE (t), t, true);
12697 unsigned int count = builder.encoded_nelts ();
12698 for (unsigned int i = 0; i < count; ++i)
12700 tree elt = VECTOR_CST_ELT (t, i);
12701 if (TREE_OVERFLOW (elt))
12702 elt = drop_tree_overflow (elt);
12703 builder.quick_push (elt);
12705 return builder.build ();
12708 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12709 and drop the flag. */
12710 t = copy_node (t);
12711 TREE_OVERFLOW (t) = 0;
12713 /* For constants that contain nested constants, drop the flag
12714 from those as well. */
12715 if (TREE_CODE (t) == COMPLEX_CST)
12717 if (TREE_OVERFLOW (TREE_REALPART (t)))
12718 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
12719 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
12720 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
12723 return t;
12726 /* Given a memory reference expression T, return its base address.
12727 The base address of a memory reference expression is the main
12728 object being referenced. For instance, the base address for
12729 'array[i].fld[j]' is 'array'. You can think of this as stripping
12730 away the offset part from a memory address.
12732 This function calls handled_component_p to strip away all the inner
12733 parts of the memory reference until it reaches the base object. */
12735 tree
12736 get_base_address (tree t)
12738 while (handled_component_p (t))
12739 t = TREE_OPERAND (t, 0);
12741 if ((TREE_CODE (t) == MEM_REF
12742 || TREE_CODE (t) == TARGET_MEM_REF)
12743 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12744 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12746 /* ??? Either the alias oracle or all callers need to properly deal
12747 with WITH_SIZE_EXPRs before we can look through those. */
12748 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12749 return NULL_TREE;
12751 return t;
12754 /* Return a tree of sizetype representing the size, in bytes, of the element
12755 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12757 tree
12758 array_ref_element_size (tree exp)
12760 tree aligned_size = TREE_OPERAND (exp, 3);
12761 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12762 location_t loc = EXPR_LOCATION (exp);
12764 /* If a size was specified in the ARRAY_REF, it's the size measured
12765 in alignment units of the element type. So multiply by that value. */
12766 if (aligned_size)
12768 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12769 sizetype from another type of the same width and signedness. */
12770 if (TREE_TYPE (aligned_size) != sizetype)
12771 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12772 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12773 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12776 /* Otherwise, take the size from that of the element type. Substitute
12777 any PLACEHOLDER_EXPR that we have. */
12778 else
12779 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12782 /* Return a tree representing the lower bound of the array mentioned in
12783 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12785 tree
12786 array_ref_low_bound (tree exp)
12788 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12790 /* If a lower bound is specified in EXP, use it. */
12791 if (TREE_OPERAND (exp, 2))
12792 return TREE_OPERAND (exp, 2);
12794 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12795 substituting for a PLACEHOLDER_EXPR as needed. */
12796 if (domain_type && TYPE_MIN_VALUE (domain_type))
12797 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12799 /* Otherwise, return a zero of the appropriate type. */
12800 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12803 /* Return a tree representing the upper bound of the array mentioned in
12804 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12806 tree
12807 array_ref_up_bound (tree exp)
12809 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12811 /* If there is a domain type and it has an upper bound, use it, substituting
12812 for a PLACEHOLDER_EXPR as needed. */
12813 if (domain_type && TYPE_MAX_VALUE (domain_type))
12814 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12816 /* Otherwise fail. */
12817 return NULL_TREE;
12820 /* Returns true if REF is an array reference or a component reference
12821 to an array at the end of a structure.
12822 If this is the case, the array may be allocated larger
12823 than its upper bound implies. */
12825 bool
12826 array_at_struct_end_p (tree ref)
12828 tree atype;
12830 if (TREE_CODE (ref) == ARRAY_REF
12831 || TREE_CODE (ref) == ARRAY_RANGE_REF)
12833 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
12834 ref = TREE_OPERAND (ref, 0);
12836 else if (TREE_CODE (ref) == COMPONENT_REF
12837 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
12838 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
12839 else
12840 return false;
12842 if (TREE_CODE (ref) == STRING_CST)
12843 return false;
12845 tree ref_to_array = ref;
12846 while (handled_component_p (ref))
12848 /* If the reference chain contains a component reference to a
12849 non-union type and there follows another field the reference
12850 is not at the end of a structure. */
12851 if (TREE_CODE (ref) == COMPONENT_REF)
12853 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12855 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12856 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12857 nextf = DECL_CHAIN (nextf);
12858 if (nextf)
12859 return false;
12862 /* If we have a multi-dimensional array we do not consider
12863 a non-innermost dimension as flex array if the whole
12864 multi-dimensional array is at struct end.
12865 Same for an array of aggregates with a trailing array
12866 member. */
12867 else if (TREE_CODE (ref) == ARRAY_REF)
12868 return false;
12869 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
12871 /* If we view an underlying object as sth else then what we
12872 gathered up to now is what we have to rely on. */
12873 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
12874 break;
12875 else
12876 gcc_unreachable ();
12878 ref = TREE_OPERAND (ref, 0);
12881 /* The array now is at struct end. Treat flexible arrays as
12882 always subject to extend, even into just padding constrained by
12883 an underlying decl. */
12884 if (! TYPE_SIZE (atype)
12885 || ! TYPE_DOMAIN (atype)
12886 || ! TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
12887 return true;
12889 if (TREE_CODE (ref) == MEM_REF
12890 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
12891 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
12893 /* If the reference is based on a declared entity, the size of the array
12894 is constrained by its given domain. (Do not trust commons PR/69368). */
12895 if (DECL_P (ref)
12896 && !(flag_unconstrained_commons
12897 && VAR_P (ref) && DECL_COMMON (ref))
12898 && DECL_SIZE_UNIT (ref)
12899 && TREE_CODE (DECL_SIZE_UNIT (ref)) == INTEGER_CST)
12901 /* Check whether the array domain covers all of the available
12902 padding. */
12903 poly_int64 offset;
12904 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (atype))) != INTEGER_CST
12905 || TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST
12906 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (atype))) != INTEGER_CST)
12907 return true;
12908 if (! get_addr_base_and_unit_offset (ref_to_array, &offset))
12909 return true;
12911 /* If at least one extra element fits it is a flexarray. */
12912 if (known_le ((wi::to_offset (TYPE_MAX_VALUE (TYPE_DOMAIN (atype)))
12913 - wi::to_offset (TYPE_MIN_VALUE (TYPE_DOMAIN (atype)))
12914 + 2)
12915 * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (atype))),
12916 wi::to_offset (DECL_SIZE_UNIT (ref)) - offset))
12917 return true;
12919 return false;
12922 return true;
12925 /* Return a tree representing the offset, in bytes, of the field referenced
12926 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12928 tree
12929 component_ref_field_offset (tree exp)
12931 tree aligned_offset = TREE_OPERAND (exp, 2);
12932 tree field = TREE_OPERAND (exp, 1);
12933 location_t loc = EXPR_LOCATION (exp);
12935 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12936 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12937 value. */
12938 if (aligned_offset)
12940 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12941 sizetype from another type of the same width and signedness. */
12942 if (TREE_TYPE (aligned_offset) != sizetype)
12943 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
12944 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
12945 size_int (DECL_OFFSET_ALIGN (field)
12946 / BITS_PER_UNIT));
12949 /* Otherwise, take the offset from that of the field. Substitute
12950 any PLACEHOLDER_EXPR that we have. */
12951 else
12952 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
12955 /* Return the machine mode of T. For vectors, returns the mode of the
12956 inner type. The main use case is to feed the result to HONOR_NANS,
12957 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12959 machine_mode
12960 element_mode (const_tree t)
12962 if (!TYPE_P (t))
12963 t = TREE_TYPE (t);
12964 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
12965 t = TREE_TYPE (t);
12966 return TYPE_MODE (t);
12969 /* Vector types need to re-check the target flags each time we report
12970 the machine mode. We need to do this because attribute target can
12971 change the result of vector_mode_supported_p and have_regs_of_mode
12972 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
12973 change on a per-function basis. */
12974 /* ??? Possibly a better solution is to run through all the types
12975 referenced by a function and re-compute the TYPE_MODE once, rather
12976 than make the TYPE_MODE macro call a function. */
12978 machine_mode
12979 vector_type_mode (const_tree t)
12981 machine_mode mode;
12983 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
12985 mode = t->type_common.mode;
12986 if (VECTOR_MODE_P (mode)
12987 && (!targetm.vector_mode_supported_p (mode)
12988 || !have_regs_of_mode[mode]))
12990 scalar_int_mode innermode;
12992 /* For integers, try mapping it to a same-sized scalar mode. */
12993 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
12995 poly_int64 size = (TYPE_VECTOR_SUBPARTS (t)
12996 * GET_MODE_BITSIZE (innermode));
12997 scalar_int_mode mode;
12998 if (int_mode_for_size (size, 0).exists (&mode)
12999 && have_regs_of_mode[mode])
13000 return mode;
13003 return BLKmode;
13006 return mode;
13009 /* Verify that basic properties of T match TV and thus T can be a variant of
13010 TV. TV should be the more specified variant (i.e. the main variant). */
13012 static bool
13013 verify_type_variant (const_tree t, tree tv)
13015 /* Type variant can differ by:
13017 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13018 ENCODE_QUAL_ADDR_SPACE.
13019 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13020 in this case some values may not be set in the variant types
13021 (see TYPE_COMPLETE_P checks).
13022 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13023 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13024 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13025 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13026 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13027 this is necessary to make it possible to merge types form different TUs
13028 - arrays, pointers and references may have TREE_TYPE that is a variant
13029 of TREE_TYPE of their main variants.
13030 - aggregates may have new TYPE_FIELDS list that list variants of
13031 the main variant TYPE_FIELDS.
13032 - vector types may differ by TYPE_VECTOR_OPAQUE
13035 /* Convenience macro for matching individual fields. */
13036 #define verify_variant_match(flag) \
13037 do { \
13038 if (flag (tv) != flag (t)) \
13040 error ("type variant differs by %s", #flag); \
13041 debug_tree (tv); \
13042 return false; \
13044 } while (false)
13046 /* tree_base checks. */
13048 verify_variant_match (TREE_CODE);
13049 /* FIXME: Ada builds non-artificial variants of artificial types. */
13050 if (TYPE_ARTIFICIAL (tv) && 0)
13051 verify_variant_match (TYPE_ARTIFICIAL);
13052 if (POINTER_TYPE_P (tv))
13053 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13054 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13055 verify_variant_match (TYPE_UNSIGNED);
13056 verify_variant_match (TYPE_PACKED);
13057 if (TREE_CODE (t) == REFERENCE_TYPE)
13058 verify_variant_match (TYPE_REF_IS_RVALUE);
13059 if (AGGREGATE_TYPE_P (t))
13060 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13061 else
13062 verify_variant_match (TYPE_SATURATING);
13063 /* FIXME: This check trigger during libstdc++ build. */
13064 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13065 verify_variant_match (TYPE_FINAL_P);
13067 /* tree_type_common checks. */
13069 if (COMPLETE_TYPE_P (t))
13071 verify_variant_match (TYPE_MODE);
13072 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
13073 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
13074 verify_variant_match (TYPE_SIZE);
13075 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
13076 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
13077 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
13079 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
13080 TYPE_SIZE_UNIT (tv), 0));
13081 error ("type variant has different TYPE_SIZE_UNIT");
13082 debug_tree (tv);
13083 error ("type variant's TYPE_SIZE_UNIT");
13084 debug_tree (TYPE_SIZE_UNIT (tv));
13085 error ("type's TYPE_SIZE_UNIT");
13086 debug_tree (TYPE_SIZE_UNIT (t));
13087 return false;
13090 verify_variant_match (TYPE_PRECISION);
13091 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
13092 if (RECORD_OR_UNION_TYPE_P (t))
13093 verify_variant_match (TYPE_TRANSPARENT_AGGR);
13094 else if (TREE_CODE (t) == ARRAY_TYPE)
13095 verify_variant_match (TYPE_NONALIASED_COMPONENT);
13096 /* During LTO we merge variant lists from diferent translation units
13097 that may differ BY TYPE_CONTEXT that in turn may point
13098 to TRANSLATION_UNIT_DECL.
13099 Ada also builds variants of types with different TYPE_CONTEXT. */
13100 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
13101 verify_variant_match (TYPE_CONTEXT);
13102 verify_variant_match (TYPE_STRING_FLAG);
13103 if (TYPE_ALIAS_SET_KNOWN_P (t))
13105 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
13106 debug_tree (tv);
13107 return false;
13110 /* tree_type_non_common checks. */
13112 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13113 and dangle the pointer from time to time. */
13114 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
13115 && (in_lto_p || !TYPE_VFIELD (tv)
13116 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
13118 error ("type variant has different TYPE_VFIELD");
13119 debug_tree (tv);
13120 return false;
13122 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
13123 || TREE_CODE (t) == INTEGER_TYPE
13124 || TREE_CODE (t) == BOOLEAN_TYPE
13125 || TREE_CODE (t) == REAL_TYPE
13126 || TREE_CODE (t) == FIXED_POINT_TYPE)
13128 verify_variant_match (TYPE_MAX_VALUE);
13129 verify_variant_match (TYPE_MIN_VALUE);
13131 if (TREE_CODE (t) == METHOD_TYPE)
13132 verify_variant_match (TYPE_METHOD_BASETYPE);
13133 if (TREE_CODE (t) == OFFSET_TYPE)
13134 verify_variant_match (TYPE_OFFSET_BASETYPE);
13135 if (TREE_CODE (t) == ARRAY_TYPE)
13136 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
13137 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
13138 or even type's main variant. This is needed to make bootstrap pass
13139 and the bug seems new in GCC 5.
13140 C++ FE should be updated to make this consistent and we should check
13141 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
13142 is a match with main variant.
13144 Also disable the check for Java for now because of parser hack that builds
13145 first an dummy BINFO and then sometimes replace it by real BINFO in some
13146 of the copies. */
13147 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
13148 && TYPE_BINFO (t) != TYPE_BINFO (tv)
13149 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
13150 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
13151 at LTO time only. */
13152 && (in_lto_p && odr_type_p (t)))
13154 error ("type variant has different TYPE_BINFO");
13155 debug_tree (tv);
13156 error ("type variant's TYPE_BINFO");
13157 debug_tree (TYPE_BINFO (tv));
13158 error ("type's TYPE_BINFO");
13159 debug_tree (TYPE_BINFO (t));
13160 return false;
13163 /* Check various uses of TYPE_VALUES_RAW. */
13164 if (TREE_CODE (t) == ENUMERAL_TYPE)
13165 verify_variant_match (TYPE_VALUES);
13166 else if (TREE_CODE (t) == ARRAY_TYPE)
13167 verify_variant_match (TYPE_DOMAIN);
13168 /* Permit incomplete variants of complete type. While FEs may complete
13169 all variants, this does not happen for C++ templates in all cases. */
13170 else if (RECORD_OR_UNION_TYPE_P (t)
13171 && COMPLETE_TYPE_P (t)
13172 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
13174 tree f1, f2;
13176 /* Fortran builds qualified variants as new records with items of
13177 qualified type. Verify that they looks same. */
13178 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
13179 f1 && f2;
13180 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13181 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
13182 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
13183 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
13184 /* FIXME: gfc_nonrestricted_type builds all types as variants
13185 with exception of pointer types. It deeply copies the type
13186 which means that we may end up with a variant type
13187 referring non-variant pointer. We may change it to
13188 produce types as variants, too, like
13189 objc_get_protocol_qualified_type does. */
13190 && !POINTER_TYPE_P (TREE_TYPE (f1)))
13191 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
13192 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
13193 break;
13194 if (f1 || f2)
13196 error ("type variant has different TYPE_FIELDS");
13197 debug_tree (tv);
13198 error ("first mismatch is field");
13199 debug_tree (f1);
13200 error ("and field");
13201 debug_tree (f2);
13202 return false;
13205 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
13206 verify_variant_match (TYPE_ARG_TYPES);
13207 /* For C++ the qualified variant of array type is really an array type
13208 of qualified TREE_TYPE.
13209 objc builds variants of pointer where pointer to type is a variant, too
13210 in objc_get_protocol_qualified_type. */
13211 if (TREE_TYPE (t) != TREE_TYPE (tv)
13212 && ((TREE_CODE (t) != ARRAY_TYPE
13213 && !POINTER_TYPE_P (t))
13214 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
13215 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13217 error ("type variant has different TREE_TYPE");
13218 debug_tree (tv);
13219 error ("type variant's TREE_TYPE");
13220 debug_tree (TREE_TYPE (tv));
13221 error ("type's TREE_TYPE");
13222 debug_tree (TREE_TYPE (t));
13223 return false;
13225 if (type_with_alias_set_p (t)
13226 && !gimple_canonical_types_compatible_p (t, tv, false))
13228 error ("type is not compatible with its variant");
13229 debug_tree (tv);
13230 error ("type variant's TREE_TYPE");
13231 debug_tree (TREE_TYPE (tv));
13232 error ("type's TREE_TYPE");
13233 debug_tree (TREE_TYPE (t));
13234 return false;
13236 return true;
13237 #undef verify_variant_match
13241 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13242 the middle-end types_compatible_p function. It needs to avoid
13243 claiming types are different for types that should be treated
13244 the same with respect to TBAA. Canonical types are also used
13245 for IL consistency checks via the useless_type_conversion_p
13246 predicate which does not handle all type kinds itself but falls
13247 back to pointer-comparison of TYPE_CANONICAL for aggregates
13248 for example. */
13250 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13251 type calculation because we need to allow inter-operability between signed
13252 and unsigned variants. */
13254 bool
13255 type_with_interoperable_signedness (const_tree type)
13257 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13258 signed char and unsigned char. Similarly fortran FE builds
13259 C_SIZE_T as signed type, while C defines it unsigned. */
13261 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13262 == INTEGER_TYPE
13263 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13264 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13267 /* Return true iff T1 and T2 are structurally identical for what
13268 TBAA is concerned.
13269 This function is used both by lto.c canonical type merging and by the
13270 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13271 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13272 only for LTO because only in these cases TYPE_CANONICAL equivalence
13273 correspond to one defined by gimple_canonical_types_compatible_p. */
13275 bool
13276 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13277 bool trust_type_canonical)
13279 /* Type variants should be same as the main variant. When not doing sanity
13280 checking to verify this fact, go to main variants and save some work. */
13281 if (trust_type_canonical)
13283 t1 = TYPE_MAIN_VARIANT (t1);
13284 t2 = TYPE_MAIN_VARIANT (t2);
13287 /* Check first for the obvious case of pointer identity. */
13288 if (t1 == t2)
13289 return true;
13291 /* Check that we have two types to compare. */
13292 if (t1 == NULL_TREE || t2 == NULL_TREE)
13293 return false;
13295 /* We consider complete types always compatible with incomplete type.
13296 This does not make sense for canonical type calculation and thus we
13297 need to ensure that we are never called on it.
13299 FIXME: For more correctness the function probably should have three modes
13300 1) mode assuming that types are complete mathcing their structure
13301 2) mode allowing incomplete types but producing equivalence classes
13302 and thus ignoring all info from complete types
13303 3) mode allowing incomplete types to match complete but checking
13304 compatibility between complete types.
13306 1 and 2 can be used for canonical type calculation. 3 is the real
13307 definition of type compatibility that can be used i.e. for warnings during
13308 declaration merging. */
13310 gcc_assert (!trust_type_canonical
13311 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13312 /* If the types have been previously registered and found equal
13313 they still are. */
13315 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13316 && trust_type_canonical)
13318 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13319 they are always NULL, but they are set to non-NULL for types
13320 constructed by build_pointer_type and variants. In this case the
13321 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13322 all pointers are considered equal. Be sure to not return false
13323 negatives. */
13324 gcc_checking_assert (canonical_type_used_p (t1)
13325 && canonical_type_used_p (t2));
13326 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13329 /* Can't be the same type if the types don't have the same code. */
13330 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13331 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13332 return false;
13334 /* Qualifiers do not matter for canonical type comparison purposes. */
13336 /* Void types and nullptr types are always the same. */
13337 if (TREE_CODE (t1) == VOID_TYPE
13338 || TREE_CODE (t1) == NULLPTR_TYPE)
13339 return true;
13341 /* Can't be the same type if they have different mode. */
13342 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13343 return false;
13345 /* Non-aggregate types can be handled cheaply. */
13346 if (INTEGRAL_TYPE_P (t1)
13347 || SCALAR_FLOAT_TYPE_P (t1)
13348 || FIXED_POINT_TYPE_P (t1)
13349 || TREE_CODE (t1) == VECTOR_TYPE
13350 || TREE_CODE (t1) == COMPLEX_TYPE
13351 || TREE_CODE (t1) == OFFSET_TYPE
13352 || POINTER_TYPE_P (t1))
13354 /* Can't be the same type if they have different recision. */
13355 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13356 return false;
13358 /* In some cases the signed and unsigned types are required to be
13359 inter-operable. */
13360 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13361 && !type_with_interoperable_signedness (t1))
13362 return false;
13364 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13365 interoperable with "signed char". Unless all frontends are revisited
13366 to agree on these types, we must ignore the flag completely. */
13368 /* Fortran standard define C_PTR type that is compatible with every
13369 C pointer. For this reason we need to glob all pointers into one.
13370 Still pointers in different address spaces are not compatible. */
13371 if (POINTER_TYPE_P (t1))
13373 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13374 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13375 return false;
13378 /* Tail-recurse to components. */
13379 if (TREE_CODE (t1) == VECTOR_TYPE
13380 || TREE_CODE (t1) == COMPLEX_TYPE)
13381 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13382 TREE_TYPE (t2),
13383 trust_type_canonical);
13385 return true;
13388 /* Do type-specific comparisons. */
13389 switch (TREE_CODE (t1))
13391 case ARRAY_TYPE:
13392 /* Array types are the same if the element types are the same and
13393 the number of elements are the same. */
13394 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13395 trust_type_canonical)
13396 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13397 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13398 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13399 return false;
13400 else
13402 tree i1 = TYPE_DOMAIN (t1);
13403 tree i2 = TYPE_DOMAIN (t2);
13405 /* For an incomplete external array, the type domain can be
13406 NULL_TREE. Check this condition also. */
13407 if (i1 == NULL_TREE && i2 == NULL_TREE)
13408 return true;
13409 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13410 return false;
13411 else
13413 tree min1 = TYPE_MIN_VALUE (i1);
13414 tree min2 = TYPE_MIN_VALUE (i2);
13415 tree max1 = TYPE_MAX_VALUE (i1);
13416 tree max2 = TYPE_MAX_VALUE (i2);
13418 /* The minimum/maximum values have to be the same. */
13419 if ((min1 == min2
13420 || (min1 && min2
13421 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13422 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13423 || operand_equal_p (min1, min2, 0))))
13424 && (max1 == max2
13425 || (max1 && max2
13426 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13427 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13428 || operand_equal_p (max1, max2, 0)))))
13429 return true;
13430 else
13431 return false;
13435 case METHOD_TYPE:
13436 case FUNCTION_TYPE:
13437 /* Function types are the same if the return type and arguments types
13438 are the same. */
13439 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13440 trust_type_canonical))
13441 return false;
13443 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13444 return true;
13445 else
13447 tree parms1, parms2;
13449 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13450 parms1 && parms2;
13451 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13453 if (!gimple_canonical_types_compatible_p
13454 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13455 trust_type_canonical))
13456 return false;
13459 if (parms1 || parms2)
13460 return false;
13462 return true;
13465 case RECORD_TYPE:
13466 case UNION_TYPE:
13467 case QUAL_UNION_TYPE:
13469 tree f1, f2;
13471 /* Don't try to compare variants of an incomplete type, before
13472 TYPE_FIELDS has been copied around. */
13473 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
13474 return true;
13477 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
13478 return false;
13480 /* For aggregate types, all the fields must be the same. */
13481 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13482 f1 || f2;
13483 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13485 /* Skip non-fields and zero-sized fields. */
13486 while (f1 && (TREE_CODE (f1) != FIELD_DECL
13487 || (DECL_SIZE (f1)
13488 && integer_zerop (DECL_SIZE (f1)))))
13489 f1 = TREE_CHAIN (f1);
13490 while (f2 && (TREE_CODE (f2) != FIELD_DECL
13491 || (DECL_SIZE (f2)
13492 && integer_zerop (DECL_SIZE (f2)))))
13493 f2 = TREE_CHAIN (f2);
13494 if (!f1 || !f2)
13495 break;
13496 /* The fields must have the same name, offset and type. */
13497 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13498 || !gimple_compare_field_offset (f1, f2)
13499 || !gimple_canonical_types_compatible_p
13500 (TREE_TYPE (f1), TREE_TYPE (f2),
13501 trust_type_canonical))
13502 return false;
13505 /* If one aggregate has more fields than the other, they
13506 are not the same. */
13507 if (f1 || f2)
13508 return false;
13510 return true;
13513 default:
13514 /* Consider all types with language specific trees in them mutually
13515 compatible. This is executed only from verify_type and false
13516 positives can be tolerated. */
13517 gcc_assert (!in_lto_p);
13518 return true;
13522 /* Verify type T. */
13524 void
13525 verify_type (const_tree t)
13527 bool error_found = false;
13528 tree mv = TYPE_MAIN_VARIANT (t);
13529 if (!mv)
13531 error ("Main variant is not defined");
13532 error_found = true;
13534 else if (mv != TYPE_MAIN_VARIANT (mv))
13536 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13537 debug_tree (mv);
13538 error_found = true;
13540 else if (t != mv && !verify_type_variant (t, mv))
13541 error_found = true;
13543 tree ct = TYPE_CANONICAL (t);
13544 if (!ct)
13546 else if (TYPE_CANONICAL (t) != ct)
13548 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13549 debug_tree (ct);
13550 error_found = true;
13552 /* Method and function types can not be used to address memory and thus
13553 TYPE_CANONICAL really matters only for determining useless conversions.
13555 FIXME: C++ FE produce declarations of builtin functions that are not
13556 compatible with main variants. */
13557 else if (TREE_CODE (t) == FUNCTION_TYPE)
13559 else if (t != ct
13560 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13561 with variably sized arrays because their sizes possibly
13562 gimplified to different variables. */
13563 && !variably_modified_type_p (ct, NULL)
13564 && !gimple_canonical_types_compatible_p (t, ct, false))
13566 error ("TYPE_CANONICAL is not compatible");
13567 debug_tree (ct);
13568 error_found = true;
13571 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
13572 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
13574 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13575 debug_tree (ct);
13576 error_found = true;
13578 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
13580 error ("TYPE_CANONICAL of main variant is not main variant");
13581 debug_tree (ct);
13582 debug_tree (TYPE_MAIN_VARIANT (ct));
13583 error_found = true;
13587 /* Check various uses of TYPE_MIN_VALUE_RAW. */
13588 if (RECORD_OR_UNION_TYPE_P (t))
13590 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13591 and danagle the pointer from time to time. */
13592 if (TYPE_VFIELD (t)
13593 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13594 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13596 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13597 debug_tree (TYPE_VFIELD (t));
13598 error_found = true;
13601 else if (TREE_CODE (t) == POINTER_TYPE)
13603 if (TYPE_NEXT_PTR_TO (t)
13604 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13606 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13607 debug_tree (TYPE_NEXT_PTR_TO (t));
13608 error_found = true;
13611 else if (TREE_CODE (t) == REFERENCE_TYPE)
13613 if (TYPE_NEXT_REF_TO (t)
13614 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13616 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13617 debug_tree (TYPE_NEXT_REF_TO (t));
13618 error_found = true;
13621 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13622 || TREE_CODE (t) == FIXED_POINT_TYPE)
13624 /* FIXME: The following check should pass:
13625 useless_type_conversion_p (const_cast <tree> (t),
13626 TREE_TYPE (TYPE_MIN_VALUE (t))
13627 but does not for C sizetypes in LTO. */
13630 /* Check various uses of TYPE_MAXVAL_RAW. */
13631 if (RECORD_OR_UNION_TYPE_P (t))
13633 if (!TYPE_BINFO (t))
13635 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13637 error ("TYPE_BINFO is not TREE_BINFO");
13638 debug_tree (TYPE_BINFO (t));
13639 error_found = true;
13641 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
13643 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13644 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13645 error_found = true;
13648 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13650 if (TYPE_METHOD_BASETYPE (t)
13651 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13652 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13654 error ("TYPE_METHOD_BASETYPE is not record nor union");
13655 debug_tree (TYPE_METHOD_BASETYPE (t));
13656 error_found = true;
13659 else if (TREE_CODE (t) == OFFSET_TYPE)
13661 if (TYPE_OFFSET_BASETYPE (t)
13662 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13663 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13665 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13666 debug_tree (TYPE_OFFSET_BASETYPE (t));
13667 error_found = true;
13670 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13671 || TREE_CODE (t) == FIXED_POINT_TYPE)
13673 /* FIXME: The following check should pass:
13674 useless_type_conversion_p (const_cast <tree> (t),
13675 TREE_TYPE (TYPE_MAX_VALUE (t))
13676 but does not for C sizetypes in LTO. */
13678 else if (TREE_CODE (t) == ARRAY_TYPE)
13680 if (TYPE_ARRAY_MAX_SIZE (t)
13681 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13683 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13684 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13685 error_found = true;
13688 else if (TYPE_MAX_VALUE_RAW (t))
13690 error ("TYPE_MAX_VALUE_RAW non-NULL");
13691 debug_tree (TYPE_MAX_VALUE_RAW (t));
13692 error_found = true;
13695 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13697 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13698 debug_tree (TYPE_LANG_SLOT_1 (t));
13699 error_found = true;
13702 /* Check various uses of TYPE_VALUES_RAW. */
13703 if (TREE_CODE (t) == ENUMERAL_TYPE)
13704 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13706 tree value = TREE_VALUE (l);
13707 tree name = TREE_PURPOSE (l);
13709 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13710 CONST_DECL of ENUMERAL TYPE. */
13711 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13713 error ("Enum value is not CONST_DECL or INTEGER_CST");
13714 debug_tree (value);
13715 debug_tree (name);
13716 error_found = true;
13718 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13719 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13721 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13722 debug_tree (value);
13723 debug_tree (name);
13724 error_found = true;
13726 if (TREE_CODE (name) != IDENTIFIER_NODE)
13728 error ("Enum value name is not IDENTIFIER_NODE");
13729 debug_tree (value);
13730 debug_tree (name);
13731 error_found = true;
13734 else if (TREE_CODE (t) == ARRAY_TYPE)
13736 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13738 error ("Array TYPE_DOMAIN is not integer type");
13739 debug_tree (TYPE_DOMAIN (t));
13740 error_found = true;
13743 else if (RECORD_OR_UNION_TYPE_P (t))
13745 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
13747 error ("TYPE_FIELDS defined in incomplete type");
13748 error_found = true;
13750 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13752 /* TODO: verify properties of decls. */
13753 if (TREE_CODE (fld) == FIELD_DECL)
13755 else if (TREE_CODE (fld) == TYPE_DECL)
13757 else if (TREE_CODE (fld) == CONST_DECL)
13759 else if (VAR_P (fld))
13761 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13763 else if (TREE_CODE (fld) == USING_DECL)
13765 else if (TREE_CODE (fld) == FUNCTION_DECL)
13767 else
13769 error ("Wrong tree in TYPE_FIELDS list");
13770 debug_tree (fld);
13771 error_found = true;
13775 else if (TREE_CODE (t) == INTEGER_TYPE
13776 || TREE_CODE (t) == BOOLEAN_TYPE
13777 || TREE_CODE (t) == OFFSET_TYPE
13778 || TREE_CODE (t) == REFERENCE_TYPE
13779 || TREE_CODE (t) == NULLPTR_TYPE
13780 || TREE_CODE (t) == POINTER_TYPE)
13782 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13784 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13785 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13786 error_found = true;
13788 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13790 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13791 debug_tree (TYPE_CACHED_VALUES (t));
13792 error_found = true;
13794 /* Verify just enough of cache to ensure that no one copied it to new type.
13795 All copying should go by copy_node that should clear it. */
13796 else if (TYPE_CACHED_VALUES_P (t))
13798 int i;
13799 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13800 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13801 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13803 error ("wrong TYPE_CACHED_VALUES entry");
13804 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13805 error_found = true;
13806 break;
13810 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13811 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13813 /* C++ FE uses TREE_PURPOSE to store initial values. */
13814 if (TREE_PURPOSE (l) && in_lto_p)
13816 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13817 debug_tree (l);
13818 error_found = true;
13820 if (!TYPE_P (TREE_VALUE (l)))
13822 error ("Wrong entry in TYPE_ARG_TYPES list");
13823 debug_tree (l);
13824 error_found = true;
13827 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13829 error ("TYPE_VALUES_RAW field is non-NULL");
13830 debug_tree (TYPE_VALUES_RAW (t));
13831 error_found = true;
13833 if (TREE_CODE (t) != INTEGER_TYPE
13834 && TREE_CODE (t) != BOOLEAN_TYPE
13835 && TREE_CODE (t) != OFFSET_TYPE
13836 && TREE_CODE (t) != REFERENCE_TYPE
13837 && TREE_CODE (t) != NULLPTR_TYPE
13838 && TREE_CODE (t) != POINTER_TYPE
13839 && TYPE_CACHED_VALUES_P (t))
13841 error ("TYPE_CACHED_VALUES_P is set while it should not");
13842 error_found = true;
13844 if (TYPE_STRING_FLAG (t)
13845 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13847 error ("TYPE_STRING_FLAG is set on wrong type code");
13848 error_found = true;
13851 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13852 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13853 of a type. */
13854 if (TREE_CODE (t) == METHOD_TYPE
13855 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13857 error ("TYPE_METHOD_BASETYPE is not main variant");
13858 error_found = true;
13861 if (error_found)
13863 debug_tree (const_cast <tree> (t));
13864 internal_error ("verify_type failed");
13869 /* Return 1 if ARG interpreted as signed in its precision is known to be
13870 always positive or 2 if ARG is known to be always negative, or 3 if
13871 ARG may be positive or negative. */
13874 get_range_pos_neg (tree arg)
13876 if (arg == error_mark_node)
13877 return 3;
13879 int prec = TYPE_PRECISION (TREE_TYPE (arg));
13880 int cnt = 0;
13881 if (TREE_CODE (arg) == INTEGER_CST)
13883 wide_int w = wi::sext (wi::to_wide (arg), prec);
13884 if (wi::neg_p (w))
13885 return 2;
13886 else
13887 return 1;
13889 while (CONVERT_EXPR_P (arg)
13890 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
13891 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
13893 arg = TREE_OPERAND (arg, 0);
13894 /* Narrower value zero extended into wider type
13895 will always result in positive values. */
13896 if (TYPE_UNSIGNED (TREE_TYPE (arg))
13897 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
13898 return 1;
13899 prec = TYPE_PRECISION (TREE_TYPE (arg));
13900 if (++cnt > 30)
13901 return 3;
13904 if (TREE_CODE (arg) != SSA_NAME)
13905 return 3;
13906 wide_int arg_min, arg_max;
13907 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
13909 gimple *g = SSA_NAME_DEF_STMT (arg);
13910 if (is_gimple_assign (g)
13911 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
13913 tree t = gimple_assign_rhs1 (g);
13914 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
13915 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
13917 if (TYPE_UNSIGNED (TREE_TYPE (t))
13918 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
13919 return 1;
13920 prec = TYPE_PRECISION (TREE_TYPE (t));
13921 arg = t;
13922 if (++cnt > 30)
13923 return 3;
13924 continue;
13927 return 3;
13929 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
13931 /* For unsigned values, the "positive" range comes
13932 below the "negative" range. */
13933 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13934 return 1;
13935 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13936 return 2;
13938 else
13940 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13941 return 1;
13942 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13943 return 2;
13945 return 3;
13951 /* Return true if ARG is marked with the nonnull attribute in the
13952 current function signature. */
13954 bool
13955 nonnull_arg_p (const_tree arg)
13957 tree t, attrs, fntype;
13958 unsigned HOST_WIDE_INT arg_num;
13960 gcc_assert (TREE_CODE (arg) == PARM_DECL
13961 && (POINTER_TYPE_P (TREE_TYPE (arg))
13962 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
13964 /* The static chain decl is always non null. */
13965 if (arg == cfun->static_chain_decl)
13966 return true;
13968 /* THIS argument of method is always non-NULL. */
13969 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
13970 && arg == DECL_ARGUMENTS (cfun->decl)
13971 && flag_delete_null_pointer_checks)
13972 return true;
13974 /* Values passed by reference are always non-NULL. */
13975 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
13976 && flag_delete_null_pointer_checks)
13977 return true;
13979 fntype = TREE_TYPE (cfun->decl);
13980 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
13982 attrs = lookup_attribute ("nonnull", attrs);
13984 /* If "nonnull" wasn't specified, we know nothing about the argument. */
13985 if (attrs == NULL_TREE)
13986 return false;
13988 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
13989 if (TREE_VALUE (attrs) == NULL_TREE)
13990 return true;
13992 /* Get the position number for ARG in the function signature. */
13993 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
13995 t = DECL_CHAIN (t), arg_num++)
13997 if (t == arg)
13998 break;
14001 gcc_assert (t == arg);
14003 /* Now see if ARG_NUM is mentioned in the nonnull list. */
14004 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
14006 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
14007 return true;
14011 return false;
14014 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14015 information. */
14017 location_t
14018 set_block (location_t loc, tree block)
14020 location_t pure_loc = get_pure_location (loc);
14021 source_range src_range = get_range_from_loc (line_table, loc);
14022 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14025 location_t
14026 set_source_range (tree expr, location_t start, location_t finish)
14028 source_range src_range;
14029 src_range.m_start = start;
14030 src_range.m_finish = finish;
14031 return set_source_range (expr, src_range);
14034 location_t
14035 set_source_range (tree expr, source_range src_range)
14037 if (!EXPR_P (expr))
14038 return UNKNOWN_LOCATION;
14040 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14041 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14042 pure_loc,
14043 src_range,
14044 NULL);
14045 SET_EXPR_LOCATION (expr, adhoc);
14046 return adhoc;
14049 /* Return EXPR, potentially wrapped with a node expression LOC,
14050 if !CAN_HAVE_LOCATION_P (expr).
14052 NON_LVALUE_EXPR is used for wrapping constants, apart from STRING_CST.
14053 VIEW_CONVERT_EXPR is used for wrapping non-constants and STRING_CST.
14055 Wrapper nodes can be identified using location_wrapper_p. */
14057 tree
14058 maybe_wrap_with_location (tree expr, location_t loc)
14060 if (expr == NULL)
14061 return NULL;
14062 if (loc == UNKNOWN_LOCATION)
14063 return expr;
14064 if (CAN_HAVE_LOCATION_P (expr))
14065 return expr;
14066 /* We should only be adding wrappers for constants and for decls,
14067 or for some exceptional tree nodes (e.g. BASELINK in the C++ FE). */
14068 gcc_assert (CONSTANT_CLASS_P (expr)
14069 || DECL_P (expr)
14070 || EXCEPTIONAL_CLASS_P (expr));
14072 /* For now, don't add wrappers to exceptional tree nodes, to minimize
14073 any impact of the wrapper nodes. */
14074 if (EXCEPTIONAL_CLASS_P (expr))
14075 return expr;
14077 tree_code code
14078 = (((CONSTANT_CLASS_P (expr) && TREE_CODE (expr) != STRING_CST)
14079 || (TREE_CODE (expr) == CONST_DECL && !TREE_STATIC (expr)))
14080 ? NON_LVALUE_EXPR : VIEW_CONVERT_EXPR);
14081 tree wrapper = build1_loc (loc, code, TREE_TYPE (expr), expr);
14082 /* Mark this node as being a wrapper. */
14083 EXPR_LOCATION_WRAPPER_P (wrapper) = 1;
14084 return wrapper;
14087 /* Return the name of combined function FN, for debugging purposes. */
14089 const char *
14090 combined_fn_name (combined_fn fn)
14092 if (builtin_fn_p (fn))
14094 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
14095 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
14097 else
14098 return internal_fn_name (as_internal_fn (fn));
14101 /* Return a bitmap with a bit set corresponding to each argument in
14102 a function call type FNTYPE declared with attribute nonnull,
14103 or null if none of the function's argument are nonnull. The caller
14104 must free the bitmap. */
14106 bitmap
14107 get_nonnull_args (const_tree fntype)
14109 if (fntype == NULL_TREE)
14110 return NULL;
14112 tree attrs = TYPE_ATTRIBUTES (fntype);
14113 if (!attrs)
14114 return NULL;
14116 bitmap argmap = NULL;
14118 /* A function declaration can specify multiple attribute nonnull,
14119 each with zero or more arguments. The loop below creates a bitmap
14120 representing a union of all the arguments. An empty (but non-null)
14121 bitmap means that all arguments have been declaraed nonnull. */
14122 for ( ; attrs; attrs = TREE_CHAIN (attrs))
14124 attrs = lookup_attribute ("nonnull", attrs);
14125 if (!attrs)
14126 break;
14128 if (!argmap)
14129 argmap = BITMAP_ALLOC (NULL);
14131 if (!TREE_VALUE (attrs))
14133 /* Clear the bitmap in case a previous attribute nonnull
14134 set it and this one overrides it for all arguments. */
14135 bitmap_clear (argmap);
14136 return argmap;
14139 /* Iterate over the indices of the format arguments declared nonnull
14140 and set a bit for each. */
14141 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
14143 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
14144 bitmap_set_bit (argmap, val);
14148 return argmap;
14151 /* Returns true if TYPE is a type where it and all of its subobjects
14152 (recursively) are of structure, union, or array type. */
14154 static bool
14155 default_is_empty_type (tree type)
14157 if (RECORD_OR_UNION_TYPE_P (type))
14159 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
14160 if (TREE_CODE (field) == FIELD_DECL
14161 && !DECL_PADDING_P (field)
14162 && !default_is_empty_type (TREE_TYPE (field)))
14163 return false;
14164 return true;
14166 else if (TREE_CODE (type) == ARRAY_TYPE)
14167 return (integer_minus_onep (array_type_nelts (type))
14168 || TYPE_DOMAIN (type) == NULL_TREE
14169 || default_is_empty_type (TREE_TYPE (type)));
14170 return false;
14173 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
14174 that shouldn't be passed via stack. */
14176 bool
14177 default_is_empty_record (const_tree type)
14179 if (!abi_version_at_least (12))
14180 return false;
14182 if (type == error_mark_node)
14183 return false;
14185 if (TREE_ADDRESSABLE (type))
14186 return false;
14188 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
14191 /* Like int_size_in_bytes, but handle empty records specially. */
14193 HOST_WIDE_INT
14194 arg_int_size_in_bytes (const_tree type)
14196 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
14199 /* Like size_in_bytes, but handle empty records specially. */
14201 tree
14202 arg_size_in_bytes (const_tree type)
14204 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
14207 /* Return true if an expression with CODE has to have the same result type as
14208 its first operand. */
14210 bool
14211 expr_type_first_operand_type_p (tree_code code)
14213 switch (code)
14215 case NEGATE_EXPR:
14216 case ABS_EXPR:
14217 case BIT_NOT_EXPR:
14218 case PAREN_EXPR:
14219 case CONJ_EXPR:
14221 case PLUS_EXPR:
14222 case MINUS_EXPR:
14223 case MULT_EXPR:
14224 case TRUNC_DIV_EXPR:
14225 case CEIL_DIV_EXPR:
14226 case FLOOR_DIV_EXPR:
14227 case ROUND_DIV_EXPR:
14228 case TRUNC_MOD_EXPR:
14229 case CEIL_MOD_EXPR:
14230 case FLOOR_MOD_EXPR:
14231 case ROUND_MOD_EXPR:
14232 case RDIV_EXPR:
14233 case EXACT_DIV_EXPR:
14234 case MIN_EXPR:
14235 case MAX_EXPR:
14236 case BIT_IOR_EXPR:
14237 case BIT_XOR_EXPR:
14238 case BIT_AND_EXPR:
14240 case LSHIFT_EXPR:
14241 case RSHIFT_EXPR:
14242 case LROTATE_EXPR:
14243 case RROTATE_EXPR:
14244 return true;
14246 default:
14247 return false;
14251 /* List of pointer types used to declare builtins before we have seen their
14252 real declaration.
14254 Keep the size up to date in tree.h ! */
14255 const builtin_structptr_type builtin_structptr_types[6] =
14257 { fileptr_type_node, ptr_type_node, "FILE" },
14258 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
14259 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
14260 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
14261 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
14262 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
14265 #if CHECKING_P
14267 namespace selftest {
14269 /* Selftests for tree. */
14271 /* Verify that integer constants are sane. */
14273 static void
14274 test_integer_constants ()
14276 ASSERT_TRUE (integer_type_node != NULL);
14277 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
14279 tree type = integer_type_node;
14281 tree zero = build_zero_cst (type);
14282 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
14283 ASSERT_EQ (type, TREE_TYPE (zero));
14285 tree one = build_int_cst (type, 1);
14286 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
14287 ASSERT_EQ (type, TREE_TYPE (zero));
14290 /* Verify identifiers. */
14292 static void
14293 test_identifiers ()
14295 tree identifier = get_identifier ("foo");
14296 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
14297 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
14300 /* Verify LABEL_DECL. */
14302 static void
14303 test_labels ()
14305 tree identifier = get_identifier ("err");
14306 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
14307 identifier, void_type_node);
14308 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
14309 ASSERT_FALSE (FORCED_LABEL (label_decl));
14312 /* Return a new VECTOR_CST node whose type is TYPE and whose values
14313 are given by VALS. */
14315 static tree
14316 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
14318 gcc_assert (known_eq (vals.length (), TYPE_VECTOR_SUBPARTS (type)));
14319 tree_vector_builder builder (type, vals.length (), 1);
14320 builder.splice (vals);
14321 return builder.build ();
14324 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
14326 static void
14327 check_vector_cst (vec<tree> expected, tree actual)
14329 ASSERT_KNOWN_EQ (expected.length (),
14330 TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
14331 for (unsigned int i = 0; i < expected.length (); ++i)
14332 ASSERT_EQ (wi::to_wide (expected[i]),
14333 wi::to_wide (vector_cst_elt (actual, i)));
14336 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
14337 and that its elements match EXPECTED. */
14339 static void
14340 check_vector_cst_duplicate (vec<tree> expected, tree actual,
14341 unsigned int npatterns)
14343 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14344 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
14345 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
14346 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
14347 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14348 check_vector_cst (expected, actual);
14351 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
14352 and NPATTERNS background elements, and that its elements match
14353 EXPECTED. */
14355 static void
14356 check_vector_cst_fill (vec<tree> expected, tree actual,
14357 unsigned int npatterns)
14359 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14360 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
14361 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
14362 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14363 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14364 check_vector_cst (expected, actual);
14367 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
14368 and that its elements match EXPECTED. */
14370 static void
14371 check_vector_cst_stepped (vec<tree> expected, tree actual,
14372 unsigned int npatterns)
14374 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14375 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
14376 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
14377 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14378 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
14379 check_vector_cst (expected, actual);
14382 /* Test the creation of VECTOR_CSTs. */
14384 static void
14385 test_vector_cst_patterns (ALONE_CXX_MEM_STAT_INFO)
14387 auto_vec<tree, 8> elements (8);
14388 elements.quick_grow (8);
14389 tree element_type = build_nonstandard_integer_type (16, true);
14390 tree vector_type = build_vector_type (element_type, 8);
14392 /* Test a simple linear series with a base of 0 and a step of 1:
14393 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
14394 for (unsigned int i = 0; i < 8; ++i)
14395 elements[i] = build_int_cst (element_type, i);
14396 tree vector = build_vector (vector_type, elements PASS_MEM_STAT);
14397 check_vector_cst_stepped (elements, vector, 1);
14399 /* Try the same with the first element replaced by 100:
14400 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
14401 elements[0] = build_int_cst (element_type, 100);
14402 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14403 check_vector_cst_stepped (elements, vector, 1);
14405 /* Try a series that wraps around.
14406 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
14407 for (unsigned int i = 1; i < 8; ++i)
14408 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
14409 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14410 check_vector_cst_stepped (elements, vector, 1);
14412 /* Try a downward series:
14413 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
14414 for (unsigned int i = 1; i < 8; ++i)
14415 elements[i] = build_int_cst (element_type, 80 - i);
14416 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14417 check_vector_cst_stepped (elements, vector, 1);
14419 /* Try two interleaved series with different bases and steps:
14420 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
14421 elements[1] = build_int_cst (element_type, 53);
14422 for (unsigned int i = 2; i < 8; i += 2)
14424 elements[i] = build_int_cst (element_type, 70 - i * 2);
14425 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
14427 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14428 check_vector_cst_stepped (elements, vector, 2);
14430 /* Try a duplicated value:
14431 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
14432 for (unsigned int i = 1; i < 8; ++i)
14433 elements[i] = elements[0];
14434 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14435 check_vector_cst_duplicate (elements, vector, 1);
14437 /* Try an interleaved duplicated value:
14438 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
14439 elements[1] = build_int_cst (element_type, 55);
14440 for (unsigned int i = 2; i < 8; ++i)
14441 elements[i] = elements[i - 2];
14442 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14443 check_vector_cst_duplicate (elements, vector, 2);
14445 /* Try a duplicated value with 2 exceptions
14446 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
14447 elements[0] = build_int_cst (element_type, 41);
14448 elements[1] = build_int_cst (element_type, 97);
14449 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14450 check_vector_cst_fill (elements, vector, 2);
14452 /* Try with and without a step
14453 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
14454 for (unsigned int i = 3; i < 8; i += 2)
14455 elements[i] = build_int_cst (element_type, i * 7);
14456 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14457 check_vector_cst_stepped (elements, vector, 2);
14459 /* Try a fully-general constant:
14460 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
14461 elements[5] = build_int_cst (element_type, 9990);
14462 vector = build_vector (vector_type, elements PASS_MEM_STAT);
14463 check_vector_cst_fill (elements, vector, 4);
14466 /* Verify that STRIP_NOPS (NODE) is EXPECTED.
14467 Helper function for test_location_wrappers, to deal with STRIP_NOPS
14468 modifying its argument in-place. */
14470 static void
14471 check_strip_nops (tree node, tree expected)
14473 STRIP_NOPS (node);
14474 ASSERT_EQ (expected, node);
14477 /* Verify location wrappers. */
14479 static void
14480 test_location_wrappers ()
14482 location_t loc = BUILTINS_LOCATION;
14484 ASSERT_EQ (NULL_TREE, maybe_wrap_with_location (NULL_TREE, loc));
14486 /* Wrapping a constant. */
14487 tree int_cst = build_int_cst (integer_type_node, 42);
14488 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst));
14489 ASSERT_FALSE (location_wrapper_p (int_cst));
14491 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
14492 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
14493 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_cst));
14494 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst));
14496 /* We shouldn't add wrapper nodes for UNKNOWN_LOCATION. */
14497 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION));
14499 /* We shouldn't add wrapper nodes for nodes that CAN_HAVE_LOCATION_P. */
14500 tree cast = build1 (NOP_EXPR, char_type_node, int_cst);
14501 ASSERT_TRUE (CAN_HAVE_LOCATION_P (cast));
14502 ASSERT_EQ (cast, maybe_wrap_with_location (cast, loc));
14504 /* Wrapping a STRING_CST. */
14505 tree string_cst = build_string (4, "foo");
14506 ASSERT_FALSE (CAN_HAVE_LOCATION_P (string_cst));
14507 ASSERT_FALSE (location_wrapper_p (string_cst));
14509 tree wrapped_string_cst = maybe_wrap_with_location (string_cst, loc);
14510 ASSERT_TRUE (location_wrapper_p (wrapped_string_cst));
14511 ASSERT_EQ (VIEW_CONVERT_EXPR, TREE_CODE (wrapped_string_cst));
14512 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_string_cst));
14513 ASSERT_EQ (string_cst, tree_strip_any_location_wrapper (wrapped_string_cst));
14516 /* Wrapping a variable. */
14517 tree int_var = build_decl (UNKNOWN_LOCATION, VAR_DECL,
14518 get_identifier ("some_int_var"),
14519 integer_type_node);
14520 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_var));
14521 ASSERT_FALSE (location_wrapper_p (int_var));
14523 tree wrapped_int_var = maybe_wrap_with_location (int_var, loc);
14524 ASSERT_TRUE (location_wrapper_p (wrapped_int_var));
14525 ASSERT_EQ (loc, EXPR_LOCATION (wrapped_int_var));
14526 ASSERT_EQ (int_var, tree_strip_any_location_wrapper (wrapped_int_var));
14528 /* Verify that "reinterpret_cast<int>(some_int_var)" is not a location
14529 wrapper. */
14530 tree r_cast = build1 (NON_LVALUE_EXPR, integer_type_node, int_var);
14531 ASSERT_FALSE (location_wrapper_p (r_cast));
14532 ASSERT_EQ (r_cast, tree_strip_any_location_wrapper (r_cast));
14534 /* Verify that STRIP_NOPS removes wrappers. */
14535 check_strip_nops (wrapped_int_cst, int_cst);
14536 check_strip_nops (wrapped_string_cst, string_cst);
14537 check_strip_nops (wrapped_int_var, int_var);
14540 /* Run all of the selftests within this file. */
14542 void
14543 tree_c_tests ()
14545 test_integer_constants ();
14546 test_identifiers ();
14547 test_labels ();
14548 test_vector_cst_patterns ();
14549 test_location_wrappers ();
14552 } // namespace selftest
14554 #endif /* CHECKING_P */
14556 #include "gt-tree.h"