PR ada/66205
[official-gcc.git] / gcc / tree.c
blob5416866a644a42686a0fdf46d5684b554f7c9f36
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2017 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"
70 /* Tree code classes. */
72 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
73 #define END_OF_BASE_TREE_CODES tcc_exceptional,
75 const enum tree_code_class tree_code_type[] = {
76 #include "all-tree.def"
79 #undef DEFTREECODE
80 #undef END_OF_BASE_TREE_CODES
82 /* Table indexed by tree code giving number of expression
83 operands beyond the fixed part of the node structure.
84 Not used for types or decls. */
86 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
87 #define END_OF_BASE_TREE_CODES 0,
89 const unsigned char tree_code_length[] = {
90 #include "all-tree.def"
93 #undef DEFTREECODE
94 #undef END_OF_BASE_TREE_CODES
96 /* Names of tree components.
97 Used for printing out the tree and error messages. */
98 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
99 #define END_OF_BASE_TREE_CODES "@dummy",
101 static const char *const tree_code_name[] = {
102 #include "all-tree.def"
105 #undef DEFTREECODE
106 #undef END_OF_BASE_TREE_CODES
108 /* Each tree code class has an associated string representation.
109 These must correspond to the tree_code_class entries. */
111 const char *const tree_code_class_strings[] =
113 "exceptional",
114 "constant",
115 "type",
116 "declaration",
117 "reference",
118 "comparison",
119 "unary",
120 "binary",
121 "statement",
122 "vl_exp",
123 "expression"
126 /* obstack.[ch] explicitly declined to prototype this. */
127 extern int _obstack_allocated_p (struct obstack *h, void *obj);
129 /* Statistics-gathering stuff. */
131 static int tree_code_counts[MAX_TREE_CODES];
132 int tree_node_counts[(int) all_kinds];
133 int tree_node_sizes[(int) all_kinds];
135 /* Keep in sync with tree.h:enum tree_node_kind. */
136 static const char * const tree_node_kind_names[] = {
137 "decls",
138 "types",
139 "blocks",
140 "stmts",
141 "refs",
142 "exprs",
143 "constants",
144 "identifiers",
145 "vecs",
146 "binfos",
147 "ssa names",
148 "constructors",
149 "random kinds",
150 "lang_decl kinds",
151 "lang_type kinds",
152 "omp clauses",
155 /* Unique id for next decl created. */
156 static GTY(()) int next_decl_uid;
157 /* Unique id for next type created. */
158 static GTY(()) unsigned next_type_uid = 1;
159 /* Unique id for next debug decl created. Use negative numbers,
160 to catch erroneous uses. */
161 static GTY(()) int next_debug_decl_uid;
163 /* Since we cannot rehash a type after it is in the table, we have to
164 keep the hash code. */
166 struct GTY((for_user)) type_hash {
167 unsigned long hash;
168 tree type;
171 /* Initial size of the hash table (rounded to next prime). */
172 #define TYPE_HASH_INITIAL_SIZE 1000
174 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
176 static hashval_t hash (type_hash *t) { return t->hash; }
177 static bool equal (type_hash *a, type_hash *b);
179 static int
180 keep_cache_entry (type_hash *&t)
182 return ggc_marked_p (t->type);
186 /* Now here is the hash table. When recording a type, it is added to
187 the slot whose index is the hash code. Note that the hash table is
188 used for several kinds of types (function types, array types and
189 array index range types, for now). While all these live in the
190 same table, they are completely independent, and the hash code is
191 computed differently for each of these. */
193 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
195 /* Hash table and temporary node for larger integer const values. */
196 static GTY (()) tree int_cst_node;
198 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
200 static hashval_t hash (tree t);
201 static bool equal (tree x, tree y);
204 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
206 /* Hash table for optimization flags and target option flags. Use the same
207 hash table for both sets of options. Nodes for building the current
208 optimization and target option nodes. The assumption is most of the time
209 the options created will already be in the hash table, so we avoid
210 allocating and freeing up a node repeatably. */
211 static GTY (()) tree cl_optimization_node;
212 static GTY (()) tree cl_target_option_node;
214 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
216 static hashval_t hash (tree t);
217 static bool equal (tree x, tree y);
220 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
222 /* General tree->tree mapping structure for use in hash tables. */
225 static GTY ((cache))
226 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
228 static GTY ((cache))
229 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
231 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
233 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
235 static bool
236 equal (tree_vec_map *a, tree_vec_map *b)
238 return a->base.from == b->base.from;
241 static int
242 keep_cache_entry (tree_vec_map *&m)
244 return ggc_marked_p (m->base.from);
248 static GTY ((cache))
249 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
251 static void set_type_quals (tree, int);
252 static void print_type_hash_statistics (void);
253 static void print_debug_expr_statistics (void);
254 static void print_value_expr_statistics (void);
256 tree global_trees[TI_MAX];
257 tree integer_types[itk_none];
259 bool int_n_enabled_p[NUM_INT_N_ENTS];
260 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
262 bool tree_contains_struct[MAX_TREE_CODES][64];
264 /* Number of operands for each OpenMP clause. */
265 unsigned const char omp_clause_num_ops[] =
267 0, /* OMP_CLAUSE_ERROR */
268 1, /* OMP_CLAUSE_PRIVATE */
269 1, /* OMP_CLAUSE_SHARED */
270 1, /* OMP_CLAUSE_FIRSTPRIVATE */
271 2, /* OMP_CLAUSE_LASTPRIVATE */
272 5, /* OMP_CLAUSE_REDUCTION */
273 1, /* OMP_CLAUSE_COPYIN */
274 1, /* OMP_CLAUSE_COPYPRIVATE */
275 3, /* OMP_CLAUSE_LINEAR */
276 2, /* OMP_CLAUSE_ALIGNED */
277 1, /* OMP_CLAUSE_DEPEND */
278 1, /* OMP_CLAUSE_UNIFORM */
279 1, /* OMP_CLAUSE_TO_DECLARE */
280 1, /* OMP_CLAUSE_LINK */
281 2, /* OMP_CLAUSE_FROM */
282 2, /* OMP_CLAUSE_TO */
283 2, /* OMP_CLAUSE_MAP */
284 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
285 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
286 2, /* OMP_CLAUSE__CACHE_ */
287 2, /* OMP_CLAUSE_GANG */
288 1, /* OMP_CLAUSE_ASYNC */
289 1, /* OMP_CLAUSE_WAIT */
290 0, /* OMP_CLAUSE_AUTO */
291 0, /* OMP_CLAUSE_SEQ */
292 1, /* OMP_CLAUSE__LOOPTEMP_ */
293 1, /* OMP_CLAUSE_IF */
294 1, /* OMP_CLAUSE_NUM_THREADS */
295 1, /* OMP_CLAUSE_SCHEDULE */
296 0, /* OMP_CLAUSE_NOWAIT */
297 1, /* OMP_CLAUSE_ORDERED */
298 0, /* OMP_CLAUSE_DEFAULT */
299 3, /* OMP_CLAUSE_COLLAPSE */
300 0, /* OMP_CLAUSE_UNTIED */
301 1, /* OMP_CLAUSE_FINAL */
302 0, /* OMP_CLAUSE_MERGEABLE */
303 1, /* OMP_CLAUSE_DEVICE */
304 1, /* OMP_CLAUSE_DIST_SCHEDULE */
305 0, /* OMP_CLAUSE_INBRANCH */
306 0, /* OMP_CLAUSE_NOTINBRANCH */
307 1, /* OMP_CLAUSE_NUM_TEAMS */
308 1, /* OMP_CLAUSE_THREAD_LIMIT */
309 0, /* OMP_CLAUSE_PROC_BIND */
310 1, /* OMP_CLAUSE_SAFELEN */
311 1, /* OMP_CLAUSE_SIMDLEN */
312 0, /* OMP_CLAUSE_FOR */
313 0, /* OMP_CLAUSE_PARALLEL */
314 0, /* OMP_CLAUSE_SECTIONS */
315 0, /* OMP_CLAUSE_TASKGROUP */
316 1, /* OMP_CLAUSE_PRIORITY */
317 1, /* OMP_CLAUSE_GRAINSIZE */
318 1, /* OMP_CLAUSE_NUM_TASKS */
319 0, /* OMP_CLAUSE_NOGROUP */
320 0, /* OMP_CLAUSE_THREADS */
321 0, /* OMP_CLAUSE_SIMD */
322 1, /* OMP_CLAUSE_HINT */
323 0, /* OMP_CLAUSE_DEFALTMAP */
324 1, /* OMP_CLAUSE__SIMDUID_ */
325 0, /* OMP_CLAUSE__SIMT_ */
326 0, /* OMP_CLAUSE_INDEPENDENT */
327 1, /* OMP_CLAUSE_WORKER */
328 1, /* OMP_CLAUSE_VECTOR */
329 1, /* OMP_CLAUSE_NUM_GANGS */
330 1, /* OMP_CLAUSE_NUM_WORKERS */
331 1, /* OMP_CLAUSE_VECTOR_LENGTH */
332 3, /* OMP_CLAUSE_TILE */
333 2, /* OMP_CLAUSE__GRIDDIM_ */
336 const char * const omp_clause_code_name[] =
338 "error_clause",
339 "private",
340 "shared",
341 "firstprivate",
342 "lastprivate",
343 "reduction",
344 "copyin",
345 "copyprivate",
346 "linear",
347 "aligned",
348 "depend",
349 "uniform",
350 "to",
351 "link",
352 "from",
353 "to",
354 "map",
355 "use_device_ptr",
356 "is_device_ptr",
357 "_cache_",
358 "gang",
359 "async",
360 "wait",
361 "auto",
362 "seq",
363 "_looptemp_",
364 "if",
365 "num_threads",
366 "schedule",
367 "nowait",
368 "ordered",
369 "default",
370 "collapse",
371 "untied",
372 "final",
373 "mergeable",
374 "device",
375 "dist_schedule",
376 "inbranch",
377 "notinbranch",
378 "num_teams",
379 "thread_limit",
380 "proc_bind",
381 "safelen",
382 "simdlen",
383 "for",
384 "parallel",
385 "sections",
386 "taskgroup",
387 "priority",
388 "grainsize",
389 "num_tasks",
390 "nogroup",
391 "threads",
392 "simd",
393 "hint",
394 "defaultmap",
395 "_simduid_",
396 "_simt_",
397 "independent",
398 "worker",
399 "vector",
400 "num_gangs",
401 "num_workers",
402 "vector_length",
403 "tile",
404 "_griddim_"
408 /* Return the tree node structure used by tree code CODE. */
410 static inline enum tree_node_structure_enum
411 tree_node_structure_for_code (enum tree_code code)
413 switch (TREE_CODE_CLASS (code))
415 case tcc_declaration:
417 switch (code)
419 case FIELD_DECL:
420 return TS_FIELD_DECL;
421 case PARM_DECL:
422 return TS_PARM_DECL;
423 case VAR_DECL:
424 return TS_VAR_DECL;
425 case LABEL_DECL:
426 return TS_LABEL_DECL;
427 case RESULT_DECL:
428 return TS_RESULT_DECL;
429 case DEBUG_EXPR_DECL:
430 return TS_DECL_WRTL;
431 case CONST_DECL:
432 return TS_CONST_DECL;
433 case TYPE_DECL:
434 return TS_TYPE_DECL;
435 case FUNCTION_DECL:
436 return TS_FUNCTION_DECL;
437 case TRANSLATION_UNIT_DECL:
438 return TS_TRANSLATION_UNIT_DECL;
439 default:
440 return TS_DECL_NON_COMMON;
443 case tcc_type:
444 return TS_TYPE_NON_COMMON;
445 case tcc_reference:
446 case tcc_comparison:
447 case tcc_unary:
448 case tcc_binary:
449 case tcc_expression:
450 case tcc_statement:
451 case tcc_vl_exp:
452 return TS_EXP;
453 default: /* tcc_constant and tcc_exceptional */
454 break;
456 switch (code)
458 /* tcc_constant cases. */
459 case VOID_CST: return TS_TYPED;
460 case INTEGER_CST: return TS_INT_CST;
461 case REAL_CST: return TS_REAL_CST;
462 case FIXED_CST: return TS_FIXED_CST;
463 case COMPLEX_CST: return TS_COMPLEX;
464 case VECTOR_CST: return TS_VECTOR;
465 case STRING_CST: return TS_STRING;
466 /* tcc_exceptional cases. */
467 case ERROR_MARK: return TS_COMMON;
468 case IDENTIFIER_NODE: return TS_IDENTIFIER;
469 case TREE_LIST: return TS_LIST;
470 case TREE_VEC: return TS_VEC;
471 case SSA_NAME: return TS_SSA_NAME;
472 case PLACEHOLDER_EXPR: return TS_COMMON;
473 case STATEMENT_LIST: return TS_STATEMENT_LIST;
474 case BLOCK: return TS_BLOCK;
475 case CONSTRUCTOR: return TS_CONSTRUCTOR;
476 case TREE_BINFO: return TS_BINFO;
477 case OMP_CLAUSE: return TS_OMP_CLAUSE;
478 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
479 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
481 default:
482 gcc_unreachable ();
487 /* Initialize tree_contains_struct to describe the hierarchy of tree
488 nodes. */
490 static void
491 initialize_tree_contains_struct (void)
493 unsigned i;
495 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
497 enum tree_code code;
498 enum tree_node_structure_enum ts_code;
500 code = (enum tree_code) i;
501 ts_code = tree_node_structure_for_code (code);
503 /* Mark the TS structure itself. */
504 tree_contains_struct[code][ts_code] = 1;
506 /* Mark all the structures that TS is derived from. */
507 switch (ts_code)
509 case TS_TYPED:
510 case TS_BLOCK:
511 case TS_OPTIMIZATION:
512 case TS_TARGET_OPTION:
513 MARK_TS_BASE (code);
514 break;
516 case TS_COMMON:
517 case TS_INT_CST:
518 case TS_REAL_CST:
519 case TS_FIXED_CST:
520 case TS_VECTOR:
521 case TS_STRING:
522 case TS_COMPLEX:
523 case TS_SSA_NAME:
524 case TS_CONSTRUCTOR:
525 case TS_EXP:
526 case TS_STATEMENT_LIST:
527 MARK_TS_TYPED (code);
528 break;
530 case TS_IDENTIFIER:
531 case TS_DECL_MINIMAL:
532 case TS_TYPE_COMMON:
533 case TS_LIST:
534 case TS_VEC:
535 case TS_BINFO:
536 case TS_OMP_CLAUSE:
537 MARK_TS_COMMON (code);
538 break;
540 case TS_TYPE_WITH_LANG_SPECIFIC:
541 MARK_TS_TYPE_COMMON (code);
542 break;
544 case TS_TYPE_NON_COMMON:
545 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
546 break;
548 case TS_DECL_COMMON:
549 MARK_TS_DECL_MINIMAL (code);
550 break;
552 case TS_DECL_WRTL:
553 case TS_CONST_DECL:
554 MARK_TS_DECL_COMMON (code);
555 break;
557 case TS_DECL_NON_COMMON:
558 MARK_TS_DECL_WITH_VIS (code);
559 break;
561 case TS_DECL_WITH_VIS:
562 case TS_PARM_DECL:
563 case TS_LABEL_DECL:
564 case TS_RESULT_DECL:
565 MARK_TS_DECL_WRTL (code);
566 break;
568 case TS_FIELD_DECL:
569 MARK_TS_DECL_COMMON (code);
570 break;
572 case TS_VAR_DECL:
573 MARK_TS_DECL_WITH_VIS (code);
574 break;
576 case TS_TYPE_DECL:
577 case TS_FUNCTION_DECL:
578 MARK_TS_DECL_NON_COMMON (code);
579 break;
581 case TS_TRANSLATION_UNIT_DECL:
582 MARK_TS_DECL_COMMON (code);
583 break;
585 default:
586 gcc_unreachable ();
590 /* Basic consistency checks for attributes used in fold. */
591 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
592 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
593 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
594 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
595 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
596 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
597 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
598 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
599 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
600 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
601 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
602 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
603 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
604 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
605 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
606 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
607 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
608 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
609 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
610 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
611 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
612 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
613 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
614 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
615 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
616 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
617 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
618 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
619 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
620 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
621 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
622 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
623 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
624 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
625 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
626 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
627 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
628 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
629 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
630 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
634 /* Init tree.c. */
636 void
637 init_ttree (void)
639 /* Initialize the hash table of types. */
640 type_hash_table
641 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
643 debug_expr_for_decl
644 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
646 value_expr_for_decl
647 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
649 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
651 int_cst_node = make_int_cst (1, 1);
653 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
655 cl_optimization_node = make_node (OPTIMIZATION_NODE);
656 cl_target_option_node = make_node (TARGET_OPTION_NODE);
658 /* Initialize the tree_contains_struct array. */
659 initialize_tree_contains_struct ();
660 lang_hooks.init_ts ();
664 /* The name of the object as the assembler will see it (but before any
665 translations made by ASM_OUTPUT_LABELREF). Often this is the same
666 as DECL_NAME. It is an IDENTIFIER_NODE. */
667 tree
668 decl_assembler_name (tree decl)
670 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
671 lang_hooks.set_decl_assembler_name (decl);
672 return DECL_ASSEMBLER_NAME_RAW (decl);
675 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
676 (either of which may be NULL). Inform the FE, if this changes the
677 name. */
679 void
680 overwrite_decl_assembler_name (tree decl, tree name)
682 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
683 lang_hooks.overwrite_decl_assembler_name (decl, name);
686 /* When the target supports COMDAT groups, this indicates which group the
687 DECL is associated with. This can be either an IDENTIFIER_NODE or a
688 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
689 tree
690 decl_comdat_group (const_tree node)
692 struct symtab_node *snode = symtab_node::get (node);
693 if (!snode)
694 return NULL;
695 return snode->get_comdat_group ();
698 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
699 tree
700 decl_comdat_group_id (const_tree node)
702 struct symtab_node *snode = symtab_node::get (node);
703 if (!snode)
704 return NULL;
705 return snode->get_comdat_group_id ();
708 /* When the target supports named section, return its name as IDENTIFIER_NODE
709 or NULL if it is in no section. */
710 const char *
711 decl_section_name (const_tree node)
713 struct symtab_node *snode = symtab_node::get (node);
714 if (!snode)
715 return NULL;
716 return snode->get_section ();
719 /* Set section name of NODE to VALUE (that is expected to be
720 identifier node) */
721 void
722 set_decl_section_name (tree node, const char *value)
724 struct symtab_node *snode;
726 if (value == NULL)
728 snode = symtab_node::get (node);
729 if (!snode)
730 return;
732 else if (VAR_P (node))
733 snode = varpool_node::get_create (node);
734 else
735 snode = cgraph_node::get_create (node);
736 snode->set_section (value);
739 /* Return TLS model of a variable NODE. */
740 enum tls_model
741 decl_tls_model (const_tree node)
743 struct varpool_node *snode = varpool_node::get (node);
744 if (!snode)
745 return TLS_MODEL_NONE;
746 return snode->tls_model;
749 /* Set TLS model of variable NODE to MODEL. */
750 void
751 set_decl_tls_model (tree node, enum tls_model model)
753 struct varpool_node *vnode;
755 if (model == TLS_MODEL_NONE)
757 vnode = varpool_node::get (node);
758 if (!vnode)
759 return;
761 else
762 vnode = varpool_node::get_create (node);
763 vnode->tls_model = model;
766 /* Compute the number of bytes occupied by a tree with code CODE.
767 This function cannot be used for nodes that have variable sizes,
768 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
769 size_t
770 tree_code_size (enum tree_code code)
772 switch (TREE_CODE_CLASS (code))
774 case tcc_declaration: /* A decl node */
775 switch (code)
777 case FIELD_DECL: return sizeof (tree_field_decl);
778 case PARM_DECL: return sizeof (tree_parm_decl);
779 case VAR_DECL: return sizeof (tree_var_decl);
780 case LABEL_DECL: return sizeof (tree_label_decl);
781 case RESULT_DECL: return sizeof (tree_result_decl);
782 case CONST_DECL: return sizeof (tree_const_decl);
783 case TYPE_DECL: return sizeof (tree_type_decl);
784 case FUNCTION_DECL: return sizeof (tree_function_decl);
785 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
786 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
787 case NAMESPACE_DECL:
788 case IMPORTED_DECL:
789 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
790 default:
791 gcc_checking_assert (code >= NUM_TREE_CODES);
792 return lang_hooks.tree_size (code);
795 case tcc_type: /* a type node */
796 switch (code)
798 case OFFSET_TYPE:
799 case ENUMERAL_TYPE:
800 case BOOLEAN_TYPE:
801 case INTEGER_TYPE:
802 case REAL_TYPE:
803 case POINTER_TYPE:
804 case REFERENCE_TYPE:
805 case NULLPTR_TYPE:
806 case FIXED_POINT_TYPE:
807 case COMPLEX_TYPE:
808 case VECTOR_TYPE:
809 case ARRAY_TYPE:
810 case RECORD_TYPE:
811 case UNION_TYPE:
812 case QUAL_UNION_TYPE:
813 case VOID_TYPE:
814 case POINTER_BOUNDS_TYPE:
815 case FUNCTION_TYPE:
816 case METHOD_TYPE:
817 case LANG_TYPE: return sizeof (tree_type_non_common);
818 default:
819 gcc_checking_assert (code >= NUM_TREE_CODES);
820 return lang_hooks.tree_size (code);
823 case tcc_reference: /* a reference */
824 case tcc_expression: /* an expression */
825 case tcc_statement: /* an expression with side effects */
826 case tcc_comparison: /* a comparison expression */
827 case tcc_unary: /* a unary arithmetic expression */
828 case tcc_binary: /* a binary arithmetic expression */
829 return (sizeof (struct tree_exp)
830 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
832 case tcc_constant: /* a constant */
833 switch (code)
835 case VOID_CST: return sizeof (tree_typed);
836 case INTEGER_CST: gcc_unreachable ();
837 case REAL_CST: return sizeof (tree_real_cst);
838 case FIXED_CST: return sizeof (tree_fixed_cst);
839 case COMPLEX_CST: return sizeof (tree_complex);
840 case VECTOR_CST: return sizeof (tree_vector);
841 case STRING_CST: gcc_unreachable ();
842 default:
843 gcc_checking_assert (code >= NUM_TREE_CODES);
844 return lang_hooks.tree_size (code);
847 case tcc_exceptional: /* something random, like an identifier. */
848 switch (code)
850 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
851 case TREE_LIST: return sizeof (tree_list);
853 case ERROR_MARK:
854 case PLACEHOLDER_EXPR: return sizeof (tree_common);
856 case TREE_VEC: gcc_unreachable ();
857 case OMP_CLAUSE: gcc_unreachable ();
859 case SSA_NAME: return sizeof (tree_ssa_name);
861 case STATEMENT_LIST: return sizeof (tree_statement_list);
862 case BLOCK: return sizeof (struct tree_block);
863 case CONSTRUCTOR: return sizeof (tree_constructor);
864 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
865 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
867 default:
868 gcc_checking_assert (code >= NUM_TREE_CODES);
869 return lang_hooks.tree_size (code);
872 default:
873 gcc_unreachable ();
877 /* Compute the number of bytes occupied by NODE. This routine only
878 looks at TREE_CODE, except for those nodes that have variable sizes. */
879 size_t
880 tree_size (const_tree node)
882 const enum tree_code code = TREE_CODE (node);
883 switch (code)
885 case INTEGER_CST:
886 return (sizeof (struct tree_int_cst)
887 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
889 case TREE_BINFO:
890 return (offsetof (struct tree_binfo, base_binfos)
891 + vec<tree, va_gc>
892 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
894 case TREE_VEC:
895 return (sizeof (struct tree_vec)
896 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
898 case VECTOR_CST:
899 return (sizeof (struct tree_vector)
900 + (VECTOR_CST_NELTS (node) - 1) * sizeof (tree));
902 case STRING_CST:
903 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
905 case OMP_CLAUSE:
906 return (sizeof (struct tree_omp_clause)
907 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
908 * sizeof (tree));
910 default:
911 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
912 return (sizeof (struct tree_exp)
913 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
914 else
915 return tree_code_size (code);
919 /* Record interesting allocation statistics for a tree node with CODE
920 and LENGTH. */
922 static void
923 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED,
924 size_t length ATTRIBUTE_UNUSED)
926 enum tree_code_class type = TREE_CODE_CLASS (code);
927 tree_node_kind kind;
929 if (!GATHER_STATISTICS)
930 return;
932 switch (type)
934 case tcc_declaration: /* A decl node */
935 kind = d_kind;
936 break;
938 case tcc_type: /* a type node */
939 kind = t_kind;
940 break;
942 case tcc_statement: /* an expression with side effects */
943 kind = s_kind;
944 break;
946 case tcc_reference: /* a reference */
947 kind = r_kind;
948 break;
950 case tcc_expression: /* an expression */
951 case tcc_comparison: /* a comparison expression */
952 case tcc_unary: /* a unary arithmetic expression */
953 case tcc_binary: /* a binary arithmetic expression */
954 kind = e_kind;
955 break;
957 case tcc_constant: /* a constant */
958 kind = c_kind;
959 break;
961 case tcc_exceptional: /* something random, like an identifier. */
962 switch (code)
964 case IDENTIFIER_NODE:
965 kind = id_kind;
966 break;
968 case TREE_VEC:
969 kind = vec_kind;
970 break;
972 case TREE_BINFO:
973 kind = binfo_kind;
974 break;
976 case SSA_NAME:
977 kind = ssa_name_kind;
978 break;
980 case BLOCK:
981 kind = b_kind;
982 break;
984 case CONSTRUCTOR:
985 kind = constr_kind;
986 break;
988 case OMP_CLAUSE:
989 kind = omp_clause_kind;
990 break;
992 default:
993 kind = x_kind;
994 break;
996 break;
998 case tcc_vl_exp:
999 kind = e_kind;
1000 break;
1002 default:
1003 gcc_unreachable ();
1006 tree_code_counts[(int) code]++;
1007 tree_node_counts[(int) kind]++;
1008 tree_node_sizes[(int) kind] += length;
1011 /* Allocate and return a new UID from the DECL_UID namespace. */
1014 allocate_decl_uid (void)
1016 return next_decl_uid++;
1019 /* Return a newly allocated node of code CODE. For decl and type
1020 nodes, some other fields are initialized. The rest of the node is
1021 initialized to zero. This function cannot be used for TREE_VEC,
1022 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1023 tree_code_size.
1025 Achoo! I got a code in the node. */
1027 tree
1028 make_node (enum tree_code code MEM_STAT_DECL)
1030 tree t;
1031 enum tree_code_class type = TREE_CODE_CLASS (code);
1032 size_t length = tree_code_size (code);
1034 record_node_allocation_statistics (code, length);
1036 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1037 TREE_SET_CODE (t, code);
1039 switch (type)
1041 case tcc_statement:
1042 TREE_SIDE_EFFECTS (t) = 1;
1043 break;
1045 case tcc_declaration:
1046 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1048 if (code == FUNCTION_DECL)
1050 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1051 SET_DECL_MODE (t, FUNCTION_MODE);
1053 else
1054 SET_DECL_ALIGN (t, 1);
1056 DECL_SOURCE_LOCATION (t) = input_location;
1057 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1058 DECL_UID (t) = --next_debug_decl_uid;
1059 else
1061 DECL_UID (t) = allocate_decl_uid ();
1062 SET_DECL_PT_UID (t, -1);
1064 if (TREE_CODE (t) == LABEL_DECL)
1065 LABEL_DECL_UID (t) = -1;
1067 break;
1069 case tcc_type:
1070 TYPE_UID (t) = next_type_uid++;
1071 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1072 TYPE_USER_ALIGN (t) = 0;
1073 TYPE_MAIN_VARIANT (t) = t;
1074 TYPE_CANONICAL (t) = t;
1076 /* Default to no attributes for type, but let target change that. */
1077 TYPE_ATTRIBUTES (t) = NULL_TREE;
1078 targetm.set_default_type_attributes (t);
1080 /* We have not yet computed the alias set for this type. */
1081 TYPE_ALIAS_SET (t) = -1;
1082 break;
1084 case tcc_constant:
1085 TREE_CONSTANT (t) = 1;
1086 break;
1088 case tcc_expression:
1089 switch (code)
1091 case INIT_EXPR:
1092 case MODIFY_EXPR:
1093 case VA_ARG_EXPR:
1094 case PREDECREMENT_EXPR:
1095 case PREINCREMENT_EXPR:
1096 case POSTDECREMENT_EXPR:
1097 case POSTINCREMENT_EXPR:
1098 /* All of these have side-effects, no matter what their
1099 operands are. */
1100 TREE_SIDE_EFFECTS (t) = 1;
1101 break;
1103 default:
1104 break;
1106 break;
1108 case tcc_exceptional:
1109 switch (code)
1111 case TARGET_OPTION_NODE:
1112 TREE_TARGET_OPTION(t)
1113 = ggc_cleared_alloc<struct cl_target_option> ();
1114 break;
1116 case OPTIMIZATION_NODE:
1117 TREE_OPTIMIZATION (t)
1118 = ggc_cleared_alloc<struct cl_optimization> ();
1119 break;
1121 default:
1122 break;
1124 break;
1126 default:
1127 /* Other classes need no special treatment. */
1128 break;
1131 return t;
1134 /* Free tree node. */
1136 void
1137 free_node (tree node)
1139 enum tree_code code = TREE_CODE (node);
1140 if (GATHER_STATISTICS)
1142 tree_code_counts[(int) TREE_CODE (node)]--;
1143 tree_node_counts[(int) t_kind]--;
1144 tree_node_sizes[(int) t_kind] -= tree_size (node);
1146 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1147 vec_free (CONSTRUCTOR_ELTS (node));
1148 else if (code == BLOCK)
1149 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1150 else if (code == TREE_BINFO)
1151 vec_free (BINFO_BASE_ACCESSES (node));
1152 ggc_free (node);
1155 /* Return a new node with the same contents as NODE except that its
1156 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1158 tree
1159 copy_node (tree node MEM_STAT_DECL)
1161 tree t;
1162 enum tree_code code = TREE_CODE (node);
1163 size_t length;
1165 gcc_assert (code != STATEMENT_LIST);
1167 length = tree_size (node);
1168 record_node_allocation_statistics (code, length);
1169 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1170 memcpy (t, node, length);
1172 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1173 TREE_CHAIN (t) = 0;
1174 TREE_ASM_WRITTEN (t) = 0;
1175 TREE_VISITED (t) = 0;
1177 if (TREE_CODE_CLASS (code) == tcc_declaration)
1179 if (code == DEBUG_EXPR_DECL)
1180 DECL_UID (t) = --next_debug_decl_uid;
1181 else
1183 DECL_UID (t) = allocate_decl_uid ();
1184 if (DECL_PT_UID_SET_P (node))
1185 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1187 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1188 && DECL_HAS_VALUE_EXPR_P (node))
1190 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1191 DECL_HAS_VALUE_EXPR_P (t) = 1;
1193 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1194 if (VAR_P (node))
1196 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1197 t->decl_with_vis.symtab_node = NULL;
1199 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1201 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1202 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1204 if (TREE_CODE (node) == FUNCTION_DECL)
1206 DECL_STRUCT_FUNCTION (t) = NULL;
1207 t->decl_with_vis.symtab_node = NULL;
1210 else if (TREE_CODE_CLASS (code) == tcc_type)
1212 TYPE_UID (t) = next_type_uid++;
1213 /* The following is so that the debug code for
1214 the copy is different from the original type.
1215 The two statements usually duplicate each other
1216 (because they clear fields of the same union),
1217 but the optimizer should catch that. */
1218 TYPE_SYMTAB_ADDRESS (t) = 0;
1219 TYPE_SYMTAB_DIE (t) = 0;
1221 /* Do not copy the values cache. */
1222 if (TYPE_CACHED_VALUES_P (t))
1224 TYPE_CACHED_VALUES_P (t) = 0;
1225 TYPE_CACHED_VALUES (t) = NULL_TREE;
1228 else if (code == TARGET_OPTION_NODE)
1230 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1231 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1232 sizeof (struct cl_target_option));
1234 else if (code == OPTIMIZATION_NODE)
1236 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1237 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1238 sizeof (struct cl_optimization));
1241 return t;
1244 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1245 For example, this can copy a list made of TREE_LIST nodes. */
1247 tree
1248 copy_list (tree list)
1250 tree head;
1251 tree prev, next;
1253 if (list == 0)
1254 return 0;
1256 head = prev = copy_node (list);
1257 next = TREE_CHAIN (list);
1258 while (next)
1260 TREE_CHAIN (prev) = copy_node (next);
1261 prev = TREE_CHAIN (prev);
1262 next = TREE_CHAIN (next);
1264 return head;
1268 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1269 INTEGER_CST with value CST and type TYPE. */
1271 static unsigned int
1272 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1274 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1275 /* We need extra HWIs if CST is an unsigned integer with its
1276 upper bit set. */
1277 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1278 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1279 return cst.get_len ();
1282 /* Return a new INTEGER_CST with value CST and type TYPE. */
1284 static tree
1285 build_new_int_cst (tree type, const wide_int &cst)
1287 unsigned int len = cst.get_len ();
1288 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1289 tree nt = make_int_cst (len, ext_len);
1291 if (len < ext_len)
1293 --ext_len;
1294 TREE_INT_CST_ELT (nt, ext_len)
1295 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1296 for (unsigned int i = len; i < ext_len; ++i)
1297 TREE_INT_CST_ELT (nt, i) = -1;
1299 else if (TYPE_UNSIGNED (type)
1300 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1302 len--;
1303 TREE_INT_CST_ELT (nt, len)
1304 = zext_hwi (cst.elt (len),
1305 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1308 for (unsigned int i = 0; i < len; i++)
1309 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1310 TREE_TYPE (nt) = type;
1311 return nt;
1314 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1316 tree
1317 build_int_cst (tree type, HOST_WIDE_INT low)
1319 /* Support legacy code. */
1320 if (!type)
1321 type = integer_type_node;
1323 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1326 tree
1327 build_int_cstu (tree type, unsigned HOST_WIDE_INT cst)
1329 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1332 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1334 tree
1335 build_int_cst_type (tree type, HOST_WIDE_INT low)
1337 gcc_assert (type);
1338 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1341 /* Constructs tree in type TYPE from with value given by CST. Signedness
1342 of CST is assumed to be the same as the signedness of TYPE. */
1344 tree
1345 double_int_to_tree (tree type, double_int cst)
1347 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1350 /* We force the wide_int CST to the range of the type TYPE by sign or
1351 zero extending it. OVERFLOWABLE indicates if we are interested in
1352 overflow of the value, when >0 we are only interested in signed
1353 overflow, for <0 we are interested in any overflow. OVERFLOWED
1354 indicates whether overflow has already occurred. CONST_OVERFLOWED
1355 indicates whether constant overflow has already occurred. We force
1356 T's value to be within range of T's type (by setting to 0 or 1 all
1357 the bits outside the type's range). We set TREE_OVERFLOWED if,
1358 OVERFLOWED is nonzero,
1359 or OVERFLOWABLE is >0 and signed overflow occurs
1360 or OVERFLOWABLE is <0 and any overflow occurs
1361 We return a new tree node for the extended wide_int. The node
1362 is shared if no overflow flags are set. */
1365 tree
1366 force_fit_type (tree type, const wide_int_ref &cst,
1367 int overflowable, bool overflowed)
1369 signop sign = TYPE_SIGN (type);
1371 /* If we need to set overflow flags, return a new unshared node. */
1372 if (overflowed || !wi::fits_to_tree_p (cst, type))
1374 if (overflowed
1375 || overflowable < 0
1376 || (overflowable > 0 && sign == SIGNED))
1378 wide_int tmp = wide_int::from (cst, TYPE_PRECISION (type), sign);
1379 tree t = build_new_int_cst (type, tmp);
1380 TREE_OVERFLOW (t) = 1;
1381 return t;
1385 /* Else build a shared node. */
1386 return wide_int_to_tree (type, cst);
1389 /* These are the hash table functions for the hash table of INTEGER_CST
1390 nodes of a sizetype. */
1392 /* Return the hash code X, an INTEGER_CST. */
1394 hashval_t
1395 int_cst_hasher::hash (tree x)
1397 const_tree const t = x;
1398 hashval_t code = TYPE_UID (TREE_TYPE (t));
1399 int i;
1401 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1402 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1404 return code;
1407 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1408 is the same as that given by *Y, which is the same. */
1410 bool
1411 int_cst_hasher::equal (tree x, tree y)
1413 const_tree const xt = x;
1414 const_tree const yt = y;
1416 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1417 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1418 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1419 return false;
1421 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1422 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1423 return false;
1425 return true;
1428 /* Create an INT_CST node of TYPE and value CST.
1429 The returned node is always shared. For small integers we use a
1430 per-type vector cache, for larger ones we use a single hash table.
1431 The value is extended from its precision according to the sign of
1432 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1433 the upper bits and ensures that hashing and value equality based
1434 upon the underlying HOST_WIDE_INTs works without masking. */
1436 tree
1437 wide_int_to_tree (tree type, const wide_int_ref &pcst)
1439 tree t;
1440 int ix = -1;
1441 int limit = 0;
1443 gcc_assert (type);
1444 unsigned int prec = TYPE_PRECISION (type);
1445 signop sgn = TYPE_SIGN (type);
1447 /* Verify that everything is canonical. */
1448 int l = pcst.get_len ();
1449 if (l > 1)
1451 if (pcst.elt (l - 1) == 0)
1452 gcc_checking_assert (pcst.elt (l - 2) < 0);
1453 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1454 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1457 wide_int cst = wide_int::from (pcst, prec, sgn);
1458 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1460 if (ext_len == 1)
1462 /* We just need to store a single HOST_WIDE_INT. */
1463 HOST_WIDE_INT hwi;
1464 if (TYPE_UNSIGNED (type))
1465 hwi = cst.to_uhwi ();
1466 else
1467 hwi = cst.to_shwi ();
1469 switch (TREE_CODE (type))
1471 case NULLPTR_TYPE:
1472 gcc_assert (hwi == 0);
1473 /* Fallthru. */
1475 case POINTER_TYPE:
1476 case REFERENCE_TYPE:
1477 case POINTER_BOUNDS_TYPE:
1478 /* Cache NULL pointer and zero bounds. */
1479 if (hwi == 0)
1481 limit = 1;
1482 ix = 0;
1484 break;
1486 case BOOLEAN_TYPE:
1487 /* Cache false or true. */
1488 limit = 2;
1489 if (IN_RANGE (hwi, 0, 1))
1490 ix = hwi;
1491 break;
1493 case INTEGER_TYPE:
1494 case OFFSET_TYPE:
1495 if (TYPE_SIGN (type) == UNSIGNED)
1497 /* Cache [0, N). */
1498 limit = INTEGER_SHARE_LIMIT;
1499 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1500 ix = hwi;
1502 else
1504 /* Cache [-1, N). */
1505 limit = INTEGER_SHARE_LIMIT + 1;
1506 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1507 ix = hwi + 1;
1509 break;
1511 case ENUMERAL_TYPE:
1512 break;
1514 default:
1515 gcc_unreachable ();
1518 if (ix >= 0)
1520 /* Look for it in the type's vector of small shared ints. */
1521 if (!TYPE_CACHED_VALUES_P (type))
1523 TYPE_CACHED_VALUES_P (type) = 1;
1524 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1527 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1528 if (t)
1529 /* Make sure no one is clobbering the shared constant. */
1530 gcc_checking_assert (TREE_TYPE (t) == type
1531 && TREE_INT_CST_NUNITS (t) == 1
1532 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1533 && TREE_INT_CST_EXT_NUNITS (t) == 1
1534 && TREE_INT_CST_ELT (t, 0) == hwi);
1535 else
1537 /* Create a new shared int. */
1538 t = build_new_int_cst (type, cst);
1539 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1542 else
1544 /* Use the cache of larger shared ints, using int_cst_node as
1545 a temporary. */
1547 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1548 TREE_TYPE (int_cst_node) = type;
1550 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1551 t = *slot;
1552 if (!t)
1554 /* Insert this one into the hash table. */
1555 t = int_cst_node;
1556 *slot = t;
1557 /* Make a new node for next time round. */
1558 int_cst_node = make_int_cst (1, 1);
1562 else
1564 /* The value either hashes properly or we drop it on the floor
1565 for the gc to take care of. There will not be enough of them
1566 to worry about. */
1568 tree nt = build_new_int_cst (type, cst);
1569 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1570 t = *slot;
1571 if (!t)
1573 /* Insert this one into the hash table. */
1574 t = nt;
1575 *slot = t;
1577 else
1578 ggc_free (nt);
1581 return t;
1584 void
1585 cache_integer_cst (tree t)
1587 tree type = TREE_TYPE (t);
1588 int ix = -1;
1589 int limit = 0;
1590 int prec = TYPE_PRECISION (type);
1592 gcc_assert (!TREE_OVERFLOW (t));
1594 switch (TREE_CODE (type))
1596 case NULLPTR_TYPE:
1597 gcc_assert (integer_zerop (t));
1598 /* Fallthru. */
1600 case POINTER_TYPE:
1601 case REFERENCE_TYPE:
1602 /* Cache NULL pointer. */
1603 if (integer_zerop (t))
1605 limit = 1;
1606 ix = 0;
1608 break;
1610 case BOOLEAN_TYPE:
1611 /* Cache false or true. */
1612 limit = 2;
1613 if (wi::ltu_p (wi::to_wide (t), 2))
1614 ix = TREE_INT_CST_ELT (t, 0);
1615 break;
1617 case INTEGER_TYPE:
1618 case OFFSET_TYPE:
1619 if (TYPE_UNSIGNED (type))
1621 /* Cache 0..N */
1622 limit = INTEGER_SHARE_LIMIT;
1624 /* This is a little hokie, but if the prec is smaller than
1625 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1626 obvious test will not get the correct answer. */
1627 if (prec < HOST_BITS_PER_WIDE_INT)
1629 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1630 ix = tree_to_uhwi (t);
1632 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1633 ix = tree_to_uhwi (t);
1635 else
1637 /* Cache -1..N */
1638 limit = INTEGER_SHARE_LIMIT + 1;
1640 if (integer_minus_onep (t))
1641 ix = 0;
1642 else if (!wi::neg_p (wi::to_wide (t)))
1644 if (prec < HOST_BITS_PER_WIDE_INT)
1646 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1647 ix = tree_to_shwi (t) + 1;
1649 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1650 ix = tree_to_shwi (t) + 1;
1653 break;
1655 case ENUMERAL_TYPE:
1656 break;
1658 default:
1659 gcc_unreachable ();
1662 if (ix >= 0)
1664 /* Look for it in the type's vector of small shared ints. */
1665 if (!TYPE_CACHED_VALUES_P (type))
1667 TYPE_CACHED_VALUES_P (type) = 1;
1668 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1671 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1672 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1674 else
1676 /* Use the cache of larger shared ints. */
1677 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1678 /* If there is already an entry for the number verify it's the
1679 same. */
1680 if (*slot)
1681 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1682 else
1683 /* Otherwise insert this one into the hash table. */
1684 *slot = t;
1689 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1690 and the rest are zeros. */
1692 tree
1693 build_low_bits_mask (tree type, unsigned bits)
1695 gcc_assert (bits <= TYPE_PRECISION (type));
1697 return wide_int_to_tree (type, wi::mask (bits, false,
1698 TYPE_PRECISION (type)));
1701 /* Checks that X is integer constant that can be expressed in (unsigned)
1702 HOST_WIDE_INT without loss of precision. */
1704 bool
1705 cst_and_fits_in_hwi (const_tree x)
1707 return (TREE_CODE (x) == INTEGER_CST
1708 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1711 /* Build a newly constructed VECTOR_CST node of length LEN. */
1713 tree
1714 make_vector (unsigned len MEM_STAT_DECL)
1716 tree t;
1717 unsigned length = (len - 1) * sizeof (tree) + sizeof (struct tree_vector);
1719 record_node_allocation_statistics (VECTOR_CST, length);
1721 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1723 TREE_SET_CODE (t, VECTOR_CST);
1724 TREE_CONSTANT (t) = 1;
1725 VECTOR_CST_NELTS (t) = len;
1727 return t;
1730 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1731 are given by VALS. */
1733 tree
1734 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
1736 unsigned int nelts = vals.length ();
1737 gcc_assert (nelts == TYPE_VECTOR_SUBPARTS (type));
1738 int over = 0;
1739 unsigned cnt = 0;
1740 tree v = make_vector (nelts);
1741 TREE_TYPE (v) = type;
1743 /* Iterate through elements and check for overflow. */
1744 for (cnt = 0; cnt < nelts; ++cnt)
1746 tree value = vals[cnt];
1748 VECTOR_CST_ELT (v, cnt) = value;
1750 /* Don't crash if we get an address constant. */
1751 if (!CONSTANT_CLASS_P (value))
1752 continue;
1754 over |= TREE_OVERFLOW (value);
1757 TREE_OVERFLOW (v) = over;
1758 return v;
1761 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1762 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1764 tree
1765 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1767 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type);
1768 unsigned HOST_WIDE_INT idx;
1769 tree value;
1771 auto_vec<tree, 32> vec (nelts);
1772 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1774 if (TREE_CODE (value) == VECTOR_CST)
1775 for (unsigned i = 0; i < VECTOR_CST_NELTS (value); ++i)
1776 vec.quick_push (VECTOR_CST_ELT (value, i));
1777 else
1778 vec.quick_push (value);
1780 while (vec.length () < nelts)
1781 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1783 return build_vector (type, vec);
1786 /* Build a vector of type VECTYPE where all the elements are SCs. */
1787 tree
1788 build_vector_from_val (tree vectype, tree sc)
1790 int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1792 if (sc == error_mark_node)
1793 return sc;
1795 /* Verify that the vector type is suitable for SC. Note that there
1796 is some inconsistency in the type-system with respect to restrict
1797 qualifications of pointers. Vector types always have a main-variant
1798 element type and the qualification is applied to the vector-type.
1799 So TREE_TYPE (vector-type) does not return a properly qualified
1800 vector element-type. */
1801 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1802 TREE_TYPE (vectype)));
1804 if (CONSTANT_CLASS_P (sc))
1806 auto_vec<tree, 32> v (nunits);
1807 for (i = 0; i < nunits; ++i)
1808 v.quick_push (sc);
1809 return build_vector (vectype, v);
1811 else
1813 vec<constructor_elt, va_gc> *v;
1814 vec_alloc (v, nunits);
1815 for (i = 0; i < nunits; ++i)
1816 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1817 return build_constructor (vectype, v);
1821 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1822 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1824 void
1825 recompute_constructor_flags (tree c)
1827 unsigned int i;
1828 tree val;
1829 bool constant_p = true;
1830 bool side_effects_p = false;
1831 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1833 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1835 /* Mostly ctors will have elts that don't have side-effects, so
1836 the usual case is to scan all the elements. Hence a single
1837 loop for both const and side effects, rather than one loop
1838 each (with early outs). */
1839 if (!TREE_CONSTANT (val))
1840 constant_p = false;
1841 if (TREE_SIDE_EFFECTS (val))
1842 side_effects_p = true;
1845 TREE_SIDE_EFFECTS (c) = side_effects_p;
1846 TREE_CONSTANT (c) = constant_p;
1849 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1850 CONSTRUCTOR C. */
1852 void
1853 verify_constructor_flags (tree c)
1855 unsigned int i;
1856 tree val;
1857 bool constant_p = TREE_CONSTANT (c);
1858 bool side_effects_p = TREE_SIDE_EFFECTS (c);
1859 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1861 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1863 if (constant_p && !TREE_CONSTANT (val))
1864 internal_error ("non-constant element in constant CONSTRUCTOR");
1865 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
1866 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1870 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1871 are in the vec pointed to by VALS. */
1872 tree
1873 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1875 tree c = make_node (CONSTRUCTOR);
1877 TREE_TYPE (c) = type;
1878 CONSTRUCTOR_ELTS (c) = vals;
1880 recompute_constructor_flags (c);
1882 return c;
1885 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1886 INDEX and VALUE. */
1887 tree
1888 build_constructor_single (tree type, tree index, tree value)
1890 vec<constructor_elt, va_gc> *v;
1891 constructor_elt elt = {index, value};
1893 vec_alloc (v, 1);
1894 v->quick_push (elt);
1896 return build_constructor (type, v);
1900 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1901 are in a list pointed to by VALS. */
1902 tree
1903 build_constructor_from_list (tree type, tree vals)
1905 tree t;
1906 vec<constructor_elt, va_gc> *v = NULL;
1908 if (vals)
1910 vec_alloc (v, list_length (vals));
1911 for (t = vals; t; t = TREE_CHAIN (t))
1912 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
1915 return build_constructor (type, v);
1918 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1919 of elements, provided as index/value pairs. */
1921 tree
1922 build_constructor_va (tree type, int nelts, ...)
1924 vec<constructor_elt, va_gc> *v = NULL;
1925 va_list p;
1927 va_start (p, nelts);
1928 vec_alloc (v, nelts);
1929 while (nelts--)
1931 tree index = va_arg (p, tree);
1932 tree value = va_arg (p, tree);
1933 CONSTRUCTOR_APPEND_ELT (v, index, value);
1935 va_end (p);
1936 return build_constructor (type, v);
1939 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1941 tree
1942 build_fixed (tree type, FIXED_VALUE_TYPE f)
1944 tree v;
1945 FIXED_VALUE_TYPE *fp;
1947 v = make_node (FIXED_CST);
1948 fp = ggc_alloc<fixed_value> ();
1949 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1951 TREE_TYPE (v) = type;
1952 TREE_FIXED_CST_PTR (v) = fp;
1953 return v;
1956 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1958 tree
1959 build_real (tree type, REAL_VALUE_TYPE d)
1961 tree v;
1962 REAL_VALUE_TYPE *dp;
1963 int overflow = 0;
1965 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1966 Consider doing it via real_convert now. */
1968 v = make_node (REAL_CST);
1969 dp = ggc_alloc<real_value> ();
1970 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1972 TREE_TYPE (v) = type;
1973 TREE_REAL_CST_PTR (v) = dp;
1974 TREE_OVERFLOW (v) = overflow;
1975 return v;
1978 /* Like build_real, but first truncate D to the type. */
1980 tree
1981 build_real_truncate (tree type, REAL_VALUE_TYPE d)
1983 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
1986 /* Return a new REAL_CST node whose type is TYPE
1987 and whose value is the integer value of the INTEGER_CST node I. */
1989 REAL_VALUE_TYPE
1990 real_value_from_int_cst (const_tree type, const_tree i)
1992 REAL_VALUE_TYPE d;
1994 /* Clear all bits of the real value type so that we can later do
1995 bitwise comparisons to see if two values are the same. */
1996 memset (&d, 0, sizeof d);
1998 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
1999 TYPE_SIGN (TREE_TYPE (i)));
2000 return d;
2003 /* Given a tree representing an integer constant I, return a tree
2004 representing the same value as a floating-point constant of type TYPE. */
2006 tree
2007 build_real_from_int_cst (tree type, const_tree i)
2009 tree v;
2010 int overflow = TREE_OVERFLOW (i);
2012 v = build_real (type, real_value_from_int_cst (type, i));
2014 TREE_OVERFLOW (v) |= overflow;
2015 return v;
2018 /* Return a newly constructed STRING_CST node whose value is
2019 the LEN characters at STR.
2020 Note that for a C string literal, LEN should include the trailing NUL.
2021 The TREE_TYPE is not initialized. */
2023 tree
2024 build_string (int len, const char *str)
2026 tree s;
2027 size_t length;
2029 /* Do not waste bytes provided by padding of struct tree_string. */
2030 length = len + offsetof (struct tree_string, str) + 1;
2032 record_node_allocation_statistics (STRING_CST, length);
2034 s = (tree) ggc_internal_alloc (length);
2036 memset (s, 0, sizeof (struct tree_typed));
2037 TREE_SET_CODE (s, STRING_CST);
2038 TREE_CONSTANT (s) = 1;
2039 TREE_STRING_LENGTH (s) = len;
2040 memcpy (s->string.str, str, len);
2041 s->string.str[len] = '\0';
2043 return s;
2046 /* Return a newly constructed COMPLEX_CST node whose value is
2047 specified by the real and imaginary parts REAL and IMAG.
2048 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2049 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2051 tree
2052 build_complex (tree type, tree real, tree imag)
2054 tree t = make_node (COMPLEX_CST);
2056 TREE_REALPART (t) = real;
2057 TREE_IMAGPART (t) = imag;
2058 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2059 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2060 return t;
2063 /* Build a complex (inf +- 0i), such as for the result of cproj.
2064 TYPE is the complex tree type of the result. If NEG is true, the
2065 imaginary zero is negative. */
2067 tree
2068 build_complex_inf (tree type, bool neg)
2070 REAL_VALUE_TYPE rinf, rzero = dconst0;
2072 real_inf (&rinf);
2073 rzero.sign = neg;
2074 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2075 build_real (TREE_TYPE (type), rzero));
2078 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2079 element is set to 1. In particular, this is 1 + i for complex types. */
2081 tree
2082 build_each_one_cst (tree type)
2084 if (TREE_CODE (type) == COMPLEX_TYPE)
2086 tree scalar = build_one_cst (TREE_TYPE (type));
2087 return build_complex (type, scalar, scalar);
2089 else
2090 return build_one_cst (type);
2093 /* Return a constant of arithmetic type TYPE which is the
2094 multiplicative identity of the set TYPE. */
2096 tree
2097 build_one_cst (tree type)
2099 switch (TREE_CODE (type))
2101 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2102 case POINTER_TYPE: case REFERENCE_TYPE:
2103 case OFFSET_TYPE:
2104 return build_int_cst (type, 1);
2106 case REAL_TYPE:
2107 return build_real (type, dconst1);
2109 case FIXED_POINT_TYPE:
2110 /* We can only generate 1 for accum types. */
2111 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2112 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2114 case VECTOR_TYPE:
2116 tree scalar = build_one_cst (TREE_TYPE (type));
2118 return build_vector_from_val (type, scalar);
2121 case COMPLEX_TYPE:
2122 return build_complex (type,
2123 build_one_cst (TREE_TYPE (type)),
2124 build_zero_cst (TREE_TYPE (type)));
2126 default:
2127 gcc_unreachable ();
2131 /* Return an integer of type TYPE containing all 1's in as much precision as
2132 it contains, or a complex or vector whose subparts are such integers. */
2134 tree
2135 build_all_ones_cst (tree type)
2137 if (TREE_CODE (type) == COMPLEX_TYPE)
2139 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2140 return build_complex (type, scalar, scalar);
2142 else
2143 return build_minus_one_cst (type);
2146 /* Return a constant of arithmetic type TYPE which is the
2147 opposite of the multiplicative identity of the set TYPE. */
2149 tree
2150 build_minus_one_cst (tree type)
2152 switch (TREE_CODE (type))
2154 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2155 case POINTER_TYPE: case REFERENCE_TYPE:
2156 case OFFSET_TYPE:
2157 return build_int_cst (type, -1);
2159 case REAL_TYPE:
2160 return build_real (type, dconstm1);
2162 case FIXED_POINT_TYPE:
2163 /* We can only generate 1 for accum types. */
2164 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2165 return build_fixed (type,
2166 fixed_from_double_int (double_int_minus_one,
2167 SCALAR_TYPE_MODE (type)));
2169 case VECTOR_TYPE:
2171 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2173 return build_vector_from_val (type, scalar);
2176 case COMPLEX_TYPE:
2177 return build_complex (type,
2178 build_minus_one_cst (TREE_TYPE (type)),
2179 build_zero_cst (TREE_TYPE (type)));
2181 default:
2182 gcc_unreachable ();
2186 /* Build 0 constant of type TYPE. This is used by constructor folding
2187 and thus the constant should be represented in memory by
2188 zero(es). */
2190 tree
2191 build_zero_cst (tree type)
2193 switch (TREE_CODE (type))
2195 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2196 case POINTER_TYPE: case REFERENCE_TYPE:
2197 case OFFSET_TYPE: case NULLPTR_TYPE:
2198 return build_int_cst (type, 0);
2200 case REAL_TYPE:
2201 return build_real (type, dconst0);
2203 case FIXED_POINT_TYPE:
2204 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2206 case VECTOR_TYPE:
2208 tree scalar = build_zero_cst (TREE_TYPE (type));
2210 return build_vector_from_val (type, scalar);
2213 case COMPLEX_TYPE:
2215 tree zero = build_zero_cst (TREE_TYPE (type));
2217 return build_complex (type, zero, zero);
2220 default:
2221 if (!AGGREGATE_TYPE_P (type))
2222 return fold_convert (type, integer_zero_node);
2223 return build_constructor (type, NULL);
2228 /* Build a BINFO with LEN language slots. */
2230 tree
2231 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2233 tree t;
2234 size_t length = (offsetof (struct tree_binfo, base_binfos)
2235 + vec<tree, va_gc>::embedded_size (base_binfos));
2237 record_node_allocation_statistics (TREE_BINFO, length);
2239 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2241 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2243 TREE_SET_CODE (t, TREE_BINFO);
2245 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2247 return t;
2250 /* Create a CASE_LABEL_EXPR tree node and return it. */
2252 tree
2253 build_case_label (tree low_value, tree high_value, tree label_decl)
2255 tree t = make_node (CASE_LABEL_EXPR);
2257 TREE_TYPE (t) = void_type_node;
2258 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2260 CASE_LOW (t) = low_value;
2261 CASE_HIGH (t) = high_value;
2262 CASE_LABEL (t) = label_decl;
2263 CASE_CHAIN (t) = NULL_TREE;
2265 return t;
2268 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2269 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2270 The latter determines the length of the HOST_WIDE_INT vector. */
2272 tree
2273 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2275 tree t;
2276 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2277 + sizeof (struct tree_int_cst));
2279 gcc_assert (len);
2280 record_node_allocation_statistics (INTEGER_CST, length);
2282 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2284 TREE_SET_CODE (t, INTEGER_CST);
2285 TREE_INT_CST_NUNITS (t) = len;
2286 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2287 /* to_offset can only be applied to trees that are offset_int-sized
2288 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2289 must be exactly the precision of offset_int and so LEN is correct. */
2290 if (ext_len <= OFFSET_INT_ELTS)
2291 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2292 else
2293 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2295 TREE_CONSTANT (t) = 1;
2297 return t;
2300 /* Build a newly constructed TREE_VEC node of length LEN. */
2302 tree
2303 make_tree_vec (int len MEM_STAT_DECL)
2305 tree t;
2306 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2308 record_node_allocation_statistics (TREE_VEC, length);
2310 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2312 TREE_SET_CODE (t, TREE_VEC);
2313 TREE_VEC_LENGTH (t) = len;
2315 return t;
2318 /* Grow a TREE_VEC node to new length LEN. */
2320 tree
2321 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2323 gcc_assert (TREE_CODE (v) == TREE_VEC);
2325 int oldlen = TREE_VEC_LENGTH (v);
2326 gcc_assert (len > oldlen);
2328 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2329 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2331 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2333 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2335 TREE_VEC_LENGTH (v) = len;
2337 return v;
2340 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2341 fixed, and scalar, complex or vector. */
2344 zerop (const_tree expr)
2346 return (integer_zerop (expr)
2347 || real_zerop (expr)
2348 || fixed_zerop (expr));
2351 /* Return 1 if EXPR is the integer constant zero or a complex constant
2352 of zero. */
2355 integer_zerop (const_tree expr)
2357 switch (TREE_CODE (expr))
2359 case INTEGER_CST:
2360 return wi::to_wide (expr) == 0;
2361 case COMPLEX_CST:
2362 return (integer_zerop (TREE_REALPART (expr))
2363 && integer_zerop (TREE_IMAGPART (expr)));
2364 case VECTOR_CST:
2366 unsigned i;
2367 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2368 if (!integer_zerop (VECTOR_CST_ELT (expr, i)))
2369 return false;
2370 return true;
2372 default:
2373 return false;
2377 /* Return 1 if EXPR is the integer constant one or the corresponding
2378 complex constant. */
2381 integer_onep (const_tree expr)
2383 switch (TREE_CODE (expr))
2385 case INTEGER_CST:
2386 return wi::eq_p (wi::to_widest (expr), 1);
2387 case COMPLEX_CST:
2388 return (integer_onep (TREE_REALPART (expr))
2389 && integer_zerop (TREE_IMAGPART (expr)));
2390 case VECTOR_CST:
2392 unsigned i;
2393 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2394 if (!integer_onep (VECTOR_CST_ELT (expr, i)))
2395 return false;
2396 return true;
2398 default:
2399 return false;
2403 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2404 return 1 if every piece is the integer constant one. */
2407 integer_each_onep (const_tree expr)
2409 if (TREE_CODE (expr) == COMPLEX_CST)
2410 return (integer_onep (TREE_REALPART (expr))
2411 && integer_onep (TREE_IMAGPART (expr)));
2412 else
2413 return integer_onep (expr);
2416 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2417 it contains, or a complex or vector whose subparts are such integers. */
2420 integer_all_onesp (const_tree expr)
2422 if (TREE_CODE (expr) == COMPLEX_CST
2423 && integer_all_onesp (TREE_REALPART (expr))
2424 && integer_all_onesp (TREE_IMAGPART (expr)))
2425 return 1;
2427 else if (TREE_CODE (expr) == VECTOR_CST)
2429 unsigned i;
2430 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2431 if (!integer_all_onesp (VECTOR_CST_ELT (expr, i)))
2432 return 0;
2433 return 1;
2436 else if (TREE_CODE (expr) != INTEGER_CST)
2437 return 0;
2439 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2440 == wi::to_wide (expr));
2443 /* Return 1 if EXPR is the integer constant minus one. */
2446 integer_minus_onep (const_tree expr)
2448 if (TREE_CODE (expr) == COMPLEX_CST)
2449 return (integer_all_onesp (TREE_REALPART (expr))
2450 && integer_zerop (TREE_IMAGPART (expr)));
2451 else
2452 return integer_all_onesp (expr);
2455 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2456 one bit on). */
2459 integer_pow2p (const_tree expr)
2461 if (TREE_CODE (expr) == COMPLEX_CST
2462 && integer_pow2p (TREE_REALPART (expr))
2463 && integer_zerop (TREE_IMAGPART (expr)))
2464 return 1;
2466 if (TREE_CODE (expr) != INTEGER_CST)
2467 return 0;
2469 return wi::popcount (wi::to_wide (expr)) == 1;
2472 /* Return 1 if EXPR is an integer constant other than zero or a
2473 complex constant other than zero. */
2476 integer_nonzerop (const_tree expr)
2478 return ((TREE_CODE (expr) == INTEGER_CST
2479 && wi::to_wide (expr) != 0)
2480 || (TREE_CODE (expr) == COMPLEX_CST
2481 && (integer_nonzerop (TREE_REALPART (expr))
2482 || integer_nonzerop (TREE_IMAGPART (expr)))));
2485 /* Return 1 if EXPR is the integer constant one. For vector,
2486 return 1 if every piece is the integer constant minus one
2487 (representing the value TRUE). */
2490 integer_truep (const_tree expr)
2492 if (TREE_CODE (expr) == VECTOR_CST)
2493 return integer_all_onesp (expr);
2494 return integer_onep (expr);
2497 /* Return 1 if EXPR is the fixed-point constant zero. */
2500 fixed_zerop (const_tree expr)
2502 return (TREE_CODE (expr) == FIXED_CST
2503 && TREE_FIXED_CST (expr).data.is_zero ());
2506 /* Return the power of two represented by a tree node known to be a
2507 power of two. */
2510 tree_log2 (const_tree expr)
2512 if (TREE_CODE (expr) == COMPLEX_CST)
2513 return tree_log2 (TREE_REALPART (expr));
2515 return wi::exact_log2 (wi::to_wide (expr));
2518 /* Similar, but return the largest integer Y such that 2 ** Y is less
2519 than or equal to EXPR. */
2522 tree_floor_log2 (const_tree expr)
2524 if (TREE_CODE (expr) == COMPLEX_CST)
2525 return tree_log2 (TREE_REALPART (expr));
2527 return wi::floor_log2 (wi::to_wide (expr));
2530 /* Return number of known trailing zero bits in EXPR, or, if the value of
2531 EXPR is known to be zero, the precision of it's type. */
2533 unsigned int
2534 tree_ctz (const_tree expr)
2536 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2537 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2538 return 0;
2540 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2541 switch (TREE_CODE (expr))
2543 case INTEGER_CST:
2544 ret1 = wi::ctz (wi::to_wide (expr));
2545 return MIN (ret1, prec);
2546 case SSA_NAME:
2547 ret1 = wi::ctz (get_nonzero_bits (expr));
2548 return MIN (ret1, prec);
2549 case PLUS_EXPR:
2550 case MINUS_EXPR:
2551 case BIT_IOR_EXPR:
2552 case BIT_XOR_EXPR:
2553 case MIN_EXPR:
2554 case MAX_EXPR:
2555 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2556 if (ret1 == 0)
2557 return ret1;
2558 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2559 return MIN (ret1, ret2);
2560 case POINTER_PLUS_EXPR:
2561 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2562 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2563 /* Second operand is sizetype, which could be in theory
2564 wider than pointer's precision. Make sure we never
2565 return more than prec. */
2566 ret2 = MIN (ret2, prec);
2567 return MIN (ret1, ret2);
2568 case BIT_AND_EXPR:
2569 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2570 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2571 return MAX (ret1, ret2);
2572 case MULT_EXPR:
2573 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2574 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2575 return MIN (ret1 + ret2, prec);
2576 case LSHIFT_EXPR:
2577 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2578 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2579 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2581 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2582 return MIN (ret1 + ret2, prec);
2584 return ret1;
2585 case RSHIFT_EXPR:
2586 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2587 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2589 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2590 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2591 if (ret1 > ret2)
2592 return ret1 - ret2;
2594 return 0;
2595 case TRUNC_DIV_EXPR:
2596 case CEIL_DIV_EXPR:
2597 case FLOOR_DIV_EXPR:
2598 case ROUND_DIV_EXPR:
2599 case EXACT_DIV_EXPR:
2600 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2601 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2603 int l = tree_log2 (TREE_OPERAND (expr, 1));
2604 if (l >= 0)
2606 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2607 ret2 = l;
2608 if (ret1 > ret2)
2609 return ret1 - ret2;
2612 return 0;
2613 CASE_CONVERT:
2614 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2615 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2616 ret1 = prec;
2617 return MIN (ret1, prec);
2618 case SAVE_EXPR:
2619 return tree_ctz (TREE_OPERAND (expr, 0));
2620 case COND_EXPR:
2621 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2622 if (ret1 == 0)
2623 return 0;
2624 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2625 return MIN (ret1, ret2);
2626 case COMPOUND_EXPR:
2627 return tree_ctz (TREE_OPERAND (expr, 1));
2628 case ADDR_EXPR:
2629 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2630 if (ret1 > BITS_PER_UNIT)
2632 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2633 return MIN (ret1, prec);
2635 return 0;
2636 default:
2637 return 0;
2641 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2642 decimal float constants, so don't return 1 for them. */
2645 real_zerop (const_tree expr)
2647 switch (TREE_CODE (expr))
2649 case REAL_CST:
2650 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2651 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2652 case COMPLEX_CST:
2653 return real_zerop (TREE_REALPART (expr))
2654 && real_zerop (TREE_IMAGPART (expr));
2655 case VECTOR_CST:
2657 unsigned i;
2658 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2659 if (!real_zerop (VECTOR_CST_ELT (expr, i)))
2660 return false;
2661 return true;
2663 default:
2664 return false;
2668 /* Return 1 if EXPR is the real constant one in real or complex form.
2669 Trailing zeroes matter for decimal float constants, so don't return
2670 1 for them. */
2673 real_onep (const_tree expr)
2675 switch (TREE_CODE (expr))
2677 case REAL_CST:
2678 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2679 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2680 case COMPLEX_CST:
2681 return real_onep (TREE_REALPART (expr))
2682 && real_zerop (TREE_IMAGPART (expr));
2683 case VECTOR_CST:
2685 unsigned i;
2686 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2687 if (!real_onep (VECTOR_CST_ELT (expr, i)))
2688 return false;
2689 return true;
2691 default:
2692 return false;
2696 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2697 matter for decimal float constants, so don't return 1 for them. */
2700 real_minus_onep (const_tree expr)
2702 switch (TREE_CODE (expr))
2704 case REAL_CST:
2705 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2706 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2707 case COMPLEX_CST:
2708 return real_minus_onep (TREE_REALPART (expr))
2709 && real_zerop (TREE_IMAGPART (expr));
2710 case VECTOR_CST:
2712 unsigned i;
2713 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2714 if (!real_minus_onep (VECTOR_CST_ELT (expr, i)))
2715 return false;
2716 return true;
2718 default:
2719 return false;
2723 /* Nonzero if EXP is a constant or a cast of a constant. */
2726 really_constant_p (const_tree exp)
2728 /* This is not quite the same as STRIP_NOPS. It does more. */
2729 while (CONVERT_EXPR_P (exp)
2730 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2731 exp = TREE_OPERAND (exp, 0);
2732 return TREE_CONSTANT (exp);
2735 /* Return first list element whose TREE_VALUE is ELEM.
2736 Return 0 if ELEM is not in LIST. */
2738 tree
2739 value_member (tree elem, tree list)
2741 while (list)
2743 if (elem == TREE_VALUE (list))
2744 return list;
2745 list = TREE_CHAIN (list);
2747 return NULL_TREE;
2750 /* Return first list element whose TREE_PURPOSE is ELEM.
2751 Return 0 if ELEM is not in LIST. */
2753 tree
2754 purpose_member (const_tree elem, tree list)
2756 while (list)
2758 if (elem == TREE_PURPOSE (list))
2759 return list;
2760 list = TREE_CHAIN (list);
2762 return NULL_TREE;
2765 /* Return true if ELEM is in V. */
2767 bool
2768 vec_member (const_tree elem, vec<tree, va_gc> *v)
2770 unsigned ix;
2771 tree t;
2772 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2773 if (elem == t)
2774 return true;
2775 return false;
2778 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2779 NULL_TREE. */
2781 tree
2782 chain_index (int idx, tree chain)
2784 for (; chain && idx > 0; --idx)
2785 chain = TREE_CHAIN (chain);
2786 return chain;
2789 /* Return nonzero if ELEM is part of the chain CHAIN. */
2792 chain_member (const_tree elem, const_tree chain)
2794 while (chain)
2796 if (elem == chain)
2797 return 1;
2798 chain = DECL_CHAIN (chain);
2801 return 0;
2804 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2805 We expect a null pointer to mark the end of the chain.
2806 This is the Lisp primitive `length'. */
2809 list_length (const_tree t)
2811 const_tree p = t;
2812 #ifdef ENABLE_TREE_CHECKING
2813 const_tree q = t;
2814 #endif
2815 int len = 0;
2817 while (p)
2819 p = TREE_CHAIN (p);
2820 #ifdef ENABLE_TREE_CHECKING
2821 if (len % 2)
2822 q = TREE_CHAIN (q);
2823 gcc_assert (p != q);
2824 #endif
2825 len++;
2828 return len;
2831 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2832 UNION_TYPE TYPE, or NULL_TREE if none. */
2834 tree
2835 first_field (const_tree type)
2837 tree t = TYPE_FIELDS (type);
2838 while (t && TREE_CODE (t) != FIELD_DECL)
2839 t = TREE_CHAIN (t);
2840 return t;
2843 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2844 by modifying the last node in chain 1 to point to chain 2.
2845 This is the Lisp primitive `nconc'. */
2847 tree
2848 chainon (tree op1, tree op2)
2850 tree t1;
2852 if (!op1)
2853 return op2;
2854 if (!op2)
2855 return op1;
2857 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2858 continue;
2859 TREE_CHAIN (t1) = op2;
2861 #ifdef ENABLE_TREE_CHECKING
2863 tree t2;
2864 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2865 gcc_assert (t2 != t1);
2867 #endif
2869 return op1;
2872 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2874 tree
2875 tree_last (tree chain)
2877 tree next;
2878 if (chain)
2879 while ((next = TREE_CHAIN (chain)))
2880 chain = next;
2881 return chain;
2884 /* Reverse the order of elements in the chain T,
2885 and return the new head of the chain (old last element). */
2887 tree
2888 nreverse (tree t)
2890 tree prev = 0, decl, next;
2891 for (decl = t; decl; decl = next)
2893 /* We shouldn't be using this function to reverse BLOCK chains; we
2894 have blocks_nreverse for that. */
2895 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
2896 next = TREE_CHAIN (decl);
2897 TREE_CHAIN (decl) = prev;
2898 prev = decl;
2900 return prev;
2903 /* Return a newly created TREE_LIST node whose
2904 purpose and value fields are PARM and VALUE. */
2906 tree
2907 build_tree_list (tree parm, tree value MEM_STAT_DECL)
2909 tree t = make_node (TREE_LIST PASS_MEM_STAT);
2910 TREE_PURPOSE (t) = parm;
2911 TREE_VALUE (t) = value;
2912 return t;
2915 /* Build a chain of TREE_LIST nodes from a vector. */
2917 tree
2918 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
2920 tree ret = NULL_TREE;
2921 tree *pp = &ret;
2922 unsigned int i;
2923 tree t;
2924 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
2926 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
2927 pp = &TREE_CHAIN (*pp);
2929 return ret;
2932 /* Return a newly created TREE_LIST node whose
2933 purpose and value fields are PURPOSE and VALUE
2934 and whose TREE_CHAIN is CHAIN. */
2936 tree
2937 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
2939 tree node;
2941 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
2942 memset (node, 0, sizeof (struct tree_common));
2944 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
2946 TREE_SET_CODE (node, TREE_LIST);
2947 TREE_CHAIN (node) = chain;
2948 TREE_PURPOSE (node) = purpose;
2949 TREE_VALUE (node) = value;
2950 return node;
2953 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2954 trees. */
2956 vec<tree, va_gc> *
2957 ctor_to_vec (tree ctor)
2959 vec<tree, va_gc> *vec;
2960 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
2961 unsigned int ix;
2962 tree val;
2964 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2965 vec->quick_push (val);
2967 return vec;
2970 /* Return the size nominally occupied by an object of type TYPE
2971 when it resides in memory. The value is measured in units of bytes,
2972 and its data type is that normally used for type sizes
2973 (which is the first type created by make_signed_type or
2974 make_unsigned_type). */
2976 tree
2977 size_in_bytes_loc (location_t loc, const_tree type)
2979 tree t;
2981 if (type == error_mark_node)
2982 return integer_zero_node;
2984 type = TYPE_MAIN_VARIANT (type);
2985 t = TYPE_SIZE_UNIT (type);
2987 if (t == 0)
2989 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
2990 return size_zero_node;
2993 return t;
2996 /* Return the size of TYPE (in bytes) as a wide integer
2997 or return -1 if the size can vary or is larger than an integer. */
2999 HOST_WIDE_INT
3000 int_size_in_bytes (const_tree type)
3002 tree t;
3004 if (type == error_mark_node)
3005 return 0;
3007 type = TYPE_MAIN_VARIANT (type);
3008 t = TYPE_SIZE_UNIT (type);
3010 if (t && tree_fits_uhwi_p (t))
3011 return TREE_INT_CST_LOW (t);
3012 else
3013 return -1;
3016 /* Return the maximum size of TYPE (in bytes) as a wide integer
3017 or return -1 if the size can vary or is larger than an integer. */
3019 HOST_WIDE_INT
3020 max_int_size_in_bytes (const_tree type)
3022 HOST_WIDE_INT size = -1;
3023 tree size_tree;
3025 /* If this is an array type, check for a possible MAX_SIZE attached. */
3027 if (TREE_CODE (type) == ARRAY_TYPE)
3029 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3031 if (size_tree && tree_fits_uhwi_p (size_tree))
3032 size = tree_to_uhwi (size_tree);
3035 /* If we still haven't been able to get a size, see if the language
3036 can compute a maximum size. */
3038 if (size == -1)
3040 size_tree = lang_hooks.types.max_size (type);
3042 if (size_tree && tree_fits_uhwi_p (size_tree))
3043 size = tree_to_uhwi (size_tree);
3046 return size;
3049 /* Return the bit position of FIELD, in bits from the start of the record.
3050 This is a tree of type bitsizetype. */
3052 tree
3053 bit_position (const_tree field)
3055 return bit_from_pos (DECL_FIELD_OFFSET (field),
3056 DECL_FIELD_BIT_OFFSET (field));
3059 /* Return the byte position of FIELD, in bytes from the start of the record.
3060 This is a tree of type sizetype. */
3062 tree
3063 byte_position (const_tree field)
3065 return byte_from_pos (DECL_FIELD_OFFSET (field),
3066 DECL_FIELD_BIT_OFFSET (field));
3069 /* Likewise, but return as an integer. It must be representable in
3070 that way (since it could be a signed value, we don't have the
3071 option of returning -1 like int_size_in_byte can. */
3073 HOST_WIDE_INT
3074 int_byte_position (const_tree field)
3076 return tree_to_shwi (byte_position (field));
3079 /* Return the strictest alignment, in bits, that T is known to have. */
3081 unsigned int
3082 expr_align (const_tree t)
3084 unsigned int align0, align1;
3086 switch (TREE_CODE (t))
3088 CASE_CONVERT: case NON_LVALUE_EXPR:
3089 /* If we have conversions, we know that the alignment of the
3090 object must meet each of the alignments of the types. */
3091 align0 = expr_align (TREE_OPERAND (t, 0));
3092 align1 = TYPE_ALIGN (TREE_TYPE (t));
3093 return MAX (align0, align1);
3095 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3096 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3097 case CLEANUP_POINT_EXPR:
3098 /* These don't change the alignment of an object. */
3099 return expr_align (TREE_OPERAND (t, 0));
3101 case COND_EXPR:
3102 /* The best we can do is say that the alignment is the least aligned
3103 of the two arms. */
3104 align0 = expr_align (TREE_OPERAND (t, 1));
3105 align1 = expr_align (TREE_OPERAND (t, 2));
3106 return MIN (align0, align1);
3108 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3109 meaningfully, it's always 1. */
3110 case LABEL_DECL: case CONST_DECL:
3111 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3112 case FUNCTION_DECL:
3113 gcc_assert (DECL_ALIGN (t) != 0);
3114 return DECL_ALIGN (t);
3116 default:
3117 break;
3120 /* Otherwise take the alignment from that of the type. */
3121 return TYPE_ALIGN (TREE_TYPE (t));
3124 /* Return, as a tree node, the number of elements for TYPE (which is an
3125 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3127 tree
3128 array_type_nelts (const_tree type)
3130 tree index_type, min, max;
3132 /* If they did it with unspecified bounds, then we should have already
3133 given an error about it before we got here. */
3134 if (! TYPE_DOMAIN (type))
3135 return error_mark_node;
3137 index_type = TYPE_DOMAIN (type);
3138 min = TYPE_MIN_VALUE (index_type);
3139 max = TYPE_MAX_VALUE (index_type);
3141 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3142 if (!max)
3143 return error_mark_node;
3145 return (integer_zerop (min)
3146 ? max
3147 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3150 /* If arg is static -- a reference to an object in static storage -- then
3151 return the object. This is not the same as the C meaning of `static'.
3152 If arg isn't static, return NULL. */
3154 tree
3155 staticp (tree arg)
3157 switch (TREE_CODE (arg))
3159 case FUNCTION_DECL:
3160 /* Nested functions are static, even though taking their address will
3161 involve a trampoline as we unnest the nested function and create
3162 the trampoline on the tree level. */
3163 return arg;
3165 case VAR_DECL:
3166 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3167 && ! DECL_THREAD_LOCAL_P (arg)
3168 && ! DECL_DLLIMPORT_P (arg)
3169 ? arg : NULL);
3171 case CONST_DECL:
3172 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3173 ? arg : NULL);
3175 case CONSTRUCTOR:
3176 return TREE_STATIC (arg) ? arg : NULL;
3178 case LABEL_DECL:
3179 case STRING_CST:
3180 return arg;
3182 case COMPONENT_REF:
3183 /* If the thing being referenced is not a field, then it is
3184 something language specific. */
3185 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3187 /* If we are referencing a bitfield, we can't evaluate an
3188 ADDR_EXPR at compile time and so it isn't a constant. */
3189 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3190 return NULL;
3192 return staticp (TREE_OPERAND (arg, 0));
3194 case BIT_FIELD_REF:
3195 return NULL;
3197 case INDIRECT_REF:
3198 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3200 case ARRAY_REF:
3201 case ARRAY_RANGE_REF:
3202 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3203 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3204 return staticp (TREE_OPERAND (arg, 0));
3205 else
3206 return NULL;
3208 case COMPOUND_LITERAL_EXPR:
3209 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3211 default:
3212 return NULL;
3219 /* Return whether OP is a DECL whose address is function-invariant. */
3221 bool
3222 decl_address_invariant_p (const_tree op)
3224 /* The conditions below are slightly less strict than the one in
3225 staticp. */
3227 switch (TREE_CODE (op))
3229 case PARM_DECL:
3230 case RESULT_DECL:
3231 case LABEL_DECL:
3232 case FUNCTION_DECL:
3233 return true;
3235 case VAR_DECL:
3236 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3237 || DECL_THREAD_LOCAL_P (op)
3238 || DECL_CONTEXT (op) == current_function_decl
3239 || decl_function_context (op) == current_function_decl)
3240 return true;
3241 break;
3243 case CONST_DECL:
3244 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3245 || decl_function_context (op) == current_function_decl)
3246 return true;
3247 break;
3249 default:
3250 break;
3253 return false;
3256 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3258 bool
3259 decl_address_ip_invariant_p (const_tree op)
3261 /* The conditions below are slightly less strict than the one in
3262 staticp. */
3264 switch (TREE_CODE (op))
3266 case LABEL_DECL:
3267 case FUNCTION_DECL:
3268 case STRING_CST:
3269 return true;
3271 case VAR_DECL:
3272 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3273 && !DECL_DLLIMPORT_P (op))
3274 || DECL_THREAD_LOCAL_P (op))
3275 return true;
3276 break;
3278 case CONST_DECL:
3279 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3280 return true;
3281 break;
3283 default:
3284 break;
3287 return false;
3291 /* Return true if T is function-invariant (internal function, does
3292 not handle arithmetic; that's handled in skip_simple_arithmetic and
3293 tree_invariant_p). */
3295 static bool
3296 tree_invariant_p_1 (tree t)
3298 tree op;
3300 if (TREE_CONSTANT (t)
3301 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3302 return true;
3304 switch (TREE_CODE (t))
3306 case SAVE_EXPR:
3307 return true;
3309 case ADDR_EXPR:
3310 op = TREE_OPERAND (t, 0);
3311 while (handled_component_p (op))
3313 switch (TREE_CODE (op))
3315 case ARRAY_REF:
3316 case ARRAY_RANGE_REF:
3317 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3318 || TREE_OPERAND (op, 2) != NULL_TREE
3319 || TREE_OPERAND (op, 3) != NULL_TREE)
3320 return false;
3321 break;
3323 case COMPONENT_REF:
3324 if (TREE_OPERAND (op, 2) != NULL_TREE)
3325 return false;
3326 break;
3328 default:;
3330 op = TREE_OPERAND (op, 0);
3333 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3335 default:
3336 break;
3339 return false;
3342 /* Return true if T is function-invariant. */
3344 bool
3345 tree_invariant_p (tree t)
3347 tree inner = skip_simple_arithmetic (t);
3348 return tree_invariant_p_1 (inner);
3351 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3352 Do this to any expression which may be used in more than one place,
3353 but must be evaluated only once.
3355 Normally, expand_expr would reevaluate the expression each time.
3356 Calling save_expr produces something that is evaluated and recorded
3357 the first time expand_expr is called on it. Subsequent calls to
3358 expand_expr just reuse the recorded value.
3360 The call to expand_expr that generates code that actually computes
3361 the value is the first call *at compile time*. Subsequent calls
3362 *at compile time* generate code to use the saved value.
3363 This produces correct result provided that *at run time* control
3364 always flows through the insns made by the first expand_expr
3365 before reaching the other places where the save_expr was evaluated.
3366 You, the caller of save_expr, must make sure this is so.
3368 Constants, and certain read-only nodes, are returned with no
3369 SAVE_EXPR because that is safe. Expressions containing placeholders
3370 are not touched; see tree.def for an explanation of what these
3371 are used for. */
3373 tree
3374 save_expr (tree expr)
3376 tree inner;
3378 /* If the tree evaluates to a constant, then we don't want to hide that
3379 fact (i.e. this allows further folding, and direct checks for constants).
3380 However, a read-only object that has side effects cannot be bypassed.
3381 Since it is no problem to reevaluate literals, we just return the
3382 literal node. */
3383 inner = skip_simple_arithmetic (expr);
3384 if (TREE_CODE (inner) == ERROR_MARK)
3385 return inner;
3387 if (tree_invariant_p_1 (inner))
3388 return expr;
3390 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3391 it means that the size or offset of some field of an object depends on
3392 the value within another field.
3394 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3395 and some variable since it would then need to be both evaluated once and
3396 evaluated more than once. Front-ends must assure this case cannot
3397 happen by surrounding any such subexpressions in their own SAVE_EXPR
3398 and forcing evaluation at the proper time. */
3399 if (contains_placeholder_p (inner))
3400 return expr;
3402 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3404 /* This expression might be placed ahead of a jump to ensure that the
3405 value was computed on both sides of the jump. So make sure it isn't
3406 eliminated as dead. */
3407 TREE_SIDE_EFFECTS (expr) = 1;
3408 return expr;
3411 /* Look inside EXPR into any simple arithmetic operations. Return the
3412 outermost non-arithmetic or non-invariant node. */
3414 tree
3415 skip_simple_arithmetic (tree expr)
3417 /* We don't care about whether this can be used as an lvalue in this
3418 context. */
3419 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3420 expr = TREE_OPERAND (expr, 0);
3422 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3423 a constant, it will be more efficient to not make another SAVE_EXPR since
3424 it will allow better simplification and GCSE will be able to merge the
3425 computations if they actually occur. */
3426 while (true)
3428 if (UNARY_CLASS_P (expr))
3429 expr = TREE_OPERAND (expr, 0);
3430 else if (BINARY_CLASS_P (expr))
3432 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3433 expr = TREE_OPERAND (expr, 0);
3434 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3435 expr = TREE_OPERAND (expr, 1);
3436 else
3437 break;
3439 else
3440 break;
3443 return expr;
3446 /* Look inside EXPR into simple arithmetic operations involving constants.
3447 Return the outermost non-arithmetic or non-constant node. */
3449 tree
3450 skip_simple_constant_arithmetic (tree expr)
3452 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3453 expr = TREE_OPERAND (expr, 0);
3455 while (true)
3457 if (UNARY_CLASS_P (expr))
3458 expr = TREE_OPERAND (expr, 0);
3459 else if (BINARY_CLASS_P (expr))
3461 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3462 expr = TREE_OPERAND (expr, 0);
3463 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3464 expr = TREE_OPERAND (expr, 1);
3465 else
3466 break;
3468 else
3469 break;
3472 return expr;
3475 /* Return which tree structure is used by T. */
3477 enum tree_node_structure_enum
3478 tree_node_structure (const_tree t)
3480 const enum tree_code code = TREE_CODE (t);
3481 return tree_node_structure_for_code (code);
3484 /* Set various status flags when building a CALL_EXPR object T. */
3486 static void
3487 process_call_operands (tree t)
3489 bool side_effects = TREE_SIDE_EFFECTS (t);
3490 bool read_only = false;
3491 int i = call_expr_flags (t);
3493 /* Calls have side-effects, except those to const or pure functions. */
3494 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3495 side_effects = true;
3496 /* Propagate TREE_READONLY of arguments for const functions. */
3497 if (i & ECF_CONST)
3498 read_only = true;
3500 if (!side_effects || read_only)
3501 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3503 tree op = TREE_OPERAND (t, i);
3504 if (op && TREE_SIDE_EFFECTS (op))
3505 side_effects = true;
3506 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3507 read_only = false;
3510 TREE_SIDE_EFFECTS (t) = side_effects;
3511 TREE_READONLY (t) = read_only;
3514 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3515 size or offset that depends on a field within a record. */
3517 bool
3518 contains_placeholder_p (const_tree exp)
3520 enum tree_code code;
3522 if (!exp)
3523 return 0;
3525 code = TREE_CODE (exp);
3526 if (code == PLACEHOLDER_EXPR)
3527 return 1;
3529 switch (TREE_CODE_CLASS (code))
3531 case tcc_reference:
3532 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3533 position computations since they will be converted into a
3534 WITH_RECORD_EXPR involving the reference, which will assume
3535 here will be valid. */
3536 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3538 case tcc_exceptional:
3539 if (code == TREE_LIST)
3540 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3541 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3542 break;
3544 case tcc_unary:
3545 case tcc_binary:
3546 case tcc_comparison:
3547 case tcc_expression:
3548 switch (code)
3550 case COMPOUND_EXPR:
3551 /* Ignoring the first operand isn't quite right, but works best. */
3552 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3554 case COND_EXPR:
3555 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3556 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3557 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3559 case SAVE_EXPR:
3560 /* The save_expr function never wraps anything containing
3561 a PLACEHOLDER_EXPR. */
3562 return 0;
3564 default:
3565 break;
3568 switch (TREE_CODE_LENGTH (code))
3570 case 1:
3571 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3572 case 2:
3573 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3574 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3575 default:
3576 return 0;
3579 case tcc_vl_exp:
3580 switch (code)
3582 case CALL_EXPR:
3584 const_tree arg;
3585 const_call_expr_arg_iterator iter;
3586 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3587 if (CONTAINS_PLACEHOLDER_P (arg))
3588 return 1;
3589 return 0;
3591 default:
3592 return 0;
3595 default:
3596 return 0;
3598 return 0;
3601 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3602 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3603 field positions. */
3605 static bool
3606 type_contains_placeholder_1 (const_tree type)
3608 /* If the size contains a placeholder or the parent type (component type in
3609 the case of arrays) type involves a placeholder, this type does. */
3610 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3611 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3612 || (!POINTER_TYPE_P (type)
3613 && TREE_TYPE (type)
3614 && type_contains_placeholder_p (TREE_TYPE (type))))
3615 return true;
3617 /* Now do type-specific checks. Note that the last part of the check above
3618 greatly limits what we have to do below. */
3619 switch (TREE_CODE (type))
3621 case VOID_TYPE:
3622 case POINTER_BOUNDS_TYPE:
3623 case COMPLEX_TYPE:
3624 case ENUMERAL_TYPE:
3625 case BOOLEAN_TYPE:
3626 case POINTER_TYPE:
3627 case OFFSET_TYPE:
3628 case REFERENCE_TYPE:
3629 case METHOD_TYPE:
3630 case FUNCTION_TYPE:
3631 case VECTOR_TYPE:
3632 case NULLPTR_TYPE:
3633 return false;
3635 case INTEGER_TYPE:
3636 case REAL_TYPE:
3637 case FIXED_POINT_TYPE:
3638 /* Here we just check the bounds. */
3639 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3640 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3642 case ARRAY_TYPE:
3643 /* We have already checked the component type above, so just check
3644 the domain type. Flexible array members have a null domain. */
3645 return TYPE_DOMAIN (type) ?
3646 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3648 case RECORD_TYPE:
3649 case UNION_TYPE:
3650 case QUAL_UNION_TYPE:
3652 tree field;
3654 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3655 if (TREE_CODE (field) == FIELD_DECL
3656 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3657 || (TREE_CODE (type) == QUAL_UNION_TYPE
3658 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3659 || type_contains_placeholder_p (TREE_TYPE (field))))
3660 return true;
3662 return false;
3665 default:
3666 gcc_unreachable ();
3670 /* Wrapper around above function used to cache its result. */
3672 bool
3673 type_contains_placeholder_p (tree type)
3675 bool result;
3677 /* If the contains_placeholder_bits field has been initialized,
3678 then we know the answer. */
3679 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3680 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3682 /* Indicate that we've seen this type node, and the answer is false.
3683 This is what we want to return if we run into recursion via fields. */
3684 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3686 /* Compute the real value. */
3687 result = type_contains_placeholder_1 (type);
3689 /* Store the real value. */
3690 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3692 return result;
3695 /* Push tree EXP onto vector QUEUE if it is not already present. */
3697 static void
3698 push_without_duplicates (tree exp, vec<tree> *queue)
3700 unsigned int i;
3701 tree iter;
3703 FOR_EACH_VEC_ELT (*queue, i, iter)
3704 if (simple_cst_equal (iter, exp) == 1)
3705 break;
3707 if (!iter)
3708 queue->safe_push (exp);
3711 /* Given a tree EXP, find all occurrences of references to fields
3712 in a PLACEHOLDER_EXPR and place them in vector REFS without
3713 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3714 we assume here that EXP contains only arithmetic expressions
3715 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3716 argument list. */
3718 void
3719 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3721 enum tree_code code = TREE_CODE (exp);
3722 tree inner;
3723 int i;
3725 /* We handle TREE_LIST and COMPONENT_REF separately. */
3726 if (code == TREE_LIST)
3728 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3729 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3731 else if (code == COMPONENT_REF)
3733 for (inner = TREE_OPERAND (exp, 0);
3734 REFERENCE_CLASS_P (inner);
3735 inner = TREE_OPERAND (inner, 0))
3738 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3739 push_without_duplicates (exp, refs);
3740 else
3741 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3743 else
3744 switch (TREE_CODE_CLASS (code))
3746 case tcc_constant:
3747 break;
3749 case tcc_declaration:
3750 /* Variables allocated to static storage can stay. */
3751 if (!TREE_STATIC (exp))
3752 push_without_duplicates (exp, refs);
3753 break;
3755 case tcc_expression:
3756 /* This is the pattern built in ada/make_aligning_type. */
3757 if (code == ADDR_EXPR
3758 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3760 push_without_duplicates (exp, refs);
3761 break;
3764 /* Fall through. */
3766 case tcc_exceptional:
3767 case tcc_unary:
3768 case tcc_binary:
3769 case tcc_comparison:
3770 case tcc_reference:
3771 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3772 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3773 break;
3775 case tcc_vl_exp:
3776 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3777 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3778 break;
3780 default:
3781 gcc_unreachable ();
3785 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3786 return a tree with all occurrences of references to F in a
3787 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3788 CONST_DECLs. Note that we assume here that EXP contains only
3789 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3790 occurring only in their argument list. */
3792 tree
3793 substitute_in_expr (tree exp, tree f, tree r)
3795 enum tree_code code = TREE_CODE (exp);
3796 tree op0, op1, op2, op3;
3797 tree new_tree;
3799 /* We handle TREE_LIST and COMPONENT_REF separately. */
3800 if (code == TREE_LIST)
3802 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3803 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3804 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3805 return exp;
3807 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3809 else if (code == COMPONENT_REF)
3811 tree inner;
3813 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3814 and it is the right field, replace it with R. */
3815 for (inner = TREE_OPERAND (exp, 0);
3816 REFERENCE_CLASS_P (inner);
3817 inner = TREE_OPERAND (inner, 0))
3820 /* The field. */
3821 op1 = TREE_OPERAND (exp, 1);
3823 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3824 return r;
3826 /* If this expression hasn't been completed let, leave it alone. */
3827 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3828 return exp;
3830 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3831 if (op0 == TREE_OPERAND (exp, 0))
3832 return exp;
3834 new_tree
3835 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3837 else
3838 switch (TREE_CODE_CLASS (code))
3840 case tcc_constant:
3841 return exp;
3843 case tcc_declaration:
3844 if (exp == f)
3845 return r;
3846 else
3847 return exp;
3849 case tcc_expression:
3850 if (exp == f)
3851 return r;
3853 /* Fall through. */
3855 case tcc_exceptional:
3856 case tcc_unary:
3857 case tcc_binary:
3858 case tcc_comparison:
3859 case tcc_reference:
3860 switch (TREE_CODE_LENGTH (code))
3862 case 0:
3863 return exp;
3865 case 1:
3866 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3867 if (op0 == TREE_OPERAND (exp, 0))
3868 return exp;
3870 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3871 break;
3873 case 2:
3874 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3875 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3877 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3878 return exp;
3880 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3881 break;
3883 case 3:
3884 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3885 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3886 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3888 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3889 && op2 == TREE_OPERAND (exp, 2))
3890 return exp;
3892 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3893 break;
3895 case 4:
3896 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3897 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3898 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3899 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3901 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3902 && op2 == TREE_OPERAND (exp, 2)
3903 && op3 == TREE_OPERAND (exp, 3))
3904 return exp;
3906 new_tree
3907 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3908 break;
3910 default:
3911 gcc_unreachable ();
3913 break;
3915 case tcc_vl_exp:
3917 int i;
3919 new_tree = NULL_TREE;
3921 /* If we are trying to replace F with a constant or with another
3922 instance of one of the arguments of the call, inline back
3923 functions which do nothing else than computing a value from
3924 the arguments they are passed. This makes it possible to
3925 fold partially or entirely the replacement expression. */
3926 if (code == CALL_EXPR)
3928 bool maybe_inline = false;
3929 if (CONSTANT_CLASS_P (r))
3930 maybe_inline = true;
3931 else
3932 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
3933 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
3935 maybe_inline = true;
3936 break;
3938 if (maybe_inline)
3940 tree t = maybe_inline_call_in_expr (exp);
3941 if (t)
3942 return SUBSTITUTE_IN_EXPR (t, f, r);
3946 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3948 tree op = TREE_OPERAND (exp, i);
3949 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3950 if (new_op != op)
3952 if (!new_tree)
3953 new_tree = copy_node (exp);
3954 TREE_OPERAND (new_tree, i) = new_op;
3958 if (new_tree)
3960 new_tree = fold (new_tree);
3961 if (TREE_CODE (new_tree) == CALL_EXPR)
3962 process_call_operands (new_tree);
3964 else
3965 return exp;
3967 break;
3969 default:
3970 gcc_unreachable ();
3973 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3975 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3976 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3978 return new_tree;
3981 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3982 for it within OBJ, a tree that is an object or a chain of references. */
3984 tree
3985 substitute_placeholder_in_expr (tree exp, tree obj)
3987 enum tree_code code = TREE_CODE (exp);
3988 tree op0, op1, op2, op3;
3989 tree new_tree;
3991 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3992 in the chain of OBJ. */
3993 if (code == PLACEHOLDER_EXPR)
3995 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3996 tree elt;
3998 for (elt = obj; elt != 0;
3999 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4000 || TREE_CODE (elt) == COND_EXPR)
4001 ? TREE_OPERAND (elt, 1)
4002 : (REFERENCE_CLASS_P (elt)
4003 || UNARY_CLASS_P (elt)
4004 || BINARY_CLASS_P (elt)
4005 || VL_EXP_CLASS_P (elt)
4006 || EXPRESSION_CLASS_P (elt))
4007 ? TREE_OPERAND (elt, 0) : 0))
4008 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
4009 return elt;
4011 for (elt = obj; elt != 0;
4012 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
4013 || TREE_CODE (elt) == COND_EXPR)
4014 ? TREE_OPERAND (elt, 1)
4015 : (REFERENCE_CLASS_P (elt)
4016 || UNARY_CLASS_P (elt)
4017 || BINARY_CLASS_P (elt)
4018 || VL_EXP_CLASS_P (elt)
4019 || EXPRESSION_CLASS_P (elt))
4020 ? TREE_OPERAND (elt, 0) : 0))
4021 if (POINTER_TYPE_P (TREE_TYPE (elt))
4022 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
4023 == need_type))
4024 return fold_build1 (INDIRECT_REF, need_type, elt);
4026 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4027 survives until RTL generation, there will be an error. */
4028 return exp;
4031 /* TREE_LIST is special because we need to look at TREE_VALUE
4032 and TREE_CHAIN, not TREE_OPERANDS. */
4033 else if (code == TREE_LIST)
4035 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4036 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4037 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4038 return exp;
4040 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4042 else
4043 switch (TREE_CODE_CLASS (code))
4045 case tcc_constant:
4046 case tcc_declaration:
4047 return exp;
4049 case tcc_exceptional:
4050 case tcc_unary:
4051 case tcc_binary:
4052 case tcc_comparison:
4053 case tcc_expression:
4054 case tcc_reference:
4055 case tcc_statement:
4056 switch (TREE_CODE_LENGTH (code))
4058 case 0:
4059 return exp;
4061 case 1:
4062 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4063 if (op0 == TREE_OPERAND (exp, 0))
4064 return exp;
4066 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4067 break;
4069 case 2:
4070 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4071 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4073 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4074 return exp;
4076 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4077 break;
4079 case 3:
4080 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4081 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4082 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4084 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4085 && op2 == TREE_OPERAND (exp, 2))
4086 return exp;
4088 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4089 break;
4091 case 4:
4092 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4093 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4094 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4095 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4097 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4098 && op2 == TREE_OPERAND (exp, 2)
4099 && op3 == TREE_OPERAND (exp, 3))
4100 return exp;
4102 new_tree
4103 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4104 break;
4106 default:
4107 gcc_unreachable ();
4109 break;
4111 case tcc_vl_exp:
4113 int i;
4115 new_tree = NULL_TREE;
4117 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4119 tree op = TREE_OPERAND (exp, i);
4120 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4121 if (new_op != op)
4123 if (!new_tree)
4124 new_tree = copy_node (exp);
4125 TREE_OPERAND (new_tree, i) = new_op;
4129 if (new_tree)
4131 new_tree = fold (new_tree);
4132 if (TREE_CODE (new_tree) == CALL_EXPR)
4133 process_call_operands (new_tree);
4135 else
4136 return exp;
4138 break;
4140 default:
4141 gcc_unreachable ();
4144 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4146 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4147 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4149 return new_tree;
4153 /* Subroutine of stabilize_reference; this is called for subtrees of
4154 references. Any expression with side-effects must be put in a SAVE_EXPR
4155 to ensure that it is only evaluated once.
4157 We don't put SAVE_EXPR nodes around everything, because assigning very
4158 simple expressions to temporaries causes us to miss good opportunities
4159 for optimizations. Among other things, the opportunity to fold in the
4160 addition of a constant into an addressing mode often gets lost, e.g.
4161 "y[i+1] += x;". In general, we take the approach that we should not make
4162 an assignment unless we are forced into it - i.e., that any non-side effect
4163 operator should be allowed, and that cse should take care of coalescing
4164 multiple utterances of the same expression should that prove fruitful. */
4166 static tree
4167 stabilize_reference_1 (tree e)
4169 tree result;
4170 enum tree_code code = TREE_CODE (e);
4172 /* We cannot ignore const expressions because it might be a reference
4173 to a const array but whose index contains side-effects. But we can
4174 ignore things that are actual constant or that already have been
4175 handled by this function. */
4177 if (tree_invariant_p (e))
4178 return e;
4180 switch (TREE_CODE_CLASS (code))
4182 case tcc_exceptional:
4183 case tcc_type:
4184 case tcc_declaration:
4185 case tcc_comparison:
4186 case tcc_statement:
4187 case tcc_expression:
4188 case tcc_reference:
4189 case tcc_vl_exp:
4190 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4191 so that it will only be evaluated once. */
4192 /* The reference (r) and comparison (<) classes could be handled as
4193 below, but it is generally faster to only evaluate them once. */
4194 if (TREE_SIDE_EFFECTS (e))
4195 return save_expr (e);
4196 return e;
4198 case tcc_constant:
4199 /* Constants need no processing. In fact, we should never reach
4200 here. */
4201 return e;
4203 case tcc_binary:
4204 /* Division is slow and tends to be compiled with jumps,
4205 especially the division by powers of 2 that is often
4206 found inside of an array reference. So do it just once. */
4207 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4208 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4209 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4210 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4211 return save_expr (e);
4212 /* Recursively stabilize each operand. */
4213 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4214 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4215 break;
4217 case tcc_unary:
4218 /* Recursively stabilize each operand. */
4219 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4220 break;
4222 default:
4223 gcc_unreachable ();
4226 TREE_TYPE (result) = TREE_TYPE (e);
4227 TREE_READONLY (result) = TREE_READONLY (e);
4228 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4229 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4231 return result;
4234 /* Stabilize a reference so that we can use it any number of times
4235 without causing its operands to be evaluated more than once.
4236 Returns the stabilized reference. This works by means of save_expr,
4237 so see the caveats in the comments about save_expr.
4239 Also allows conversion expressions whose operands are references.
4240 Any other kind of expression is returned unchanged. */
4242 tree
4243 stabilize_reference (tree ref)
4245 tree result;
4246 enum tree_code code = TREE_CODE (ref);
4248 switch (code)
4250 case VAR_DECL:
4251 case PARM_DECL:
4252 case RESULT_DECL:
4253 /* No action is needed in this case. */
4254 return ref;
4256 CASE_CONVERT:
4257 case FLOAT_EXPR:
4258 case FIX_TRUNC_EXPR:
4259 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4260 break;
4262 case INDIRECT_REF:
4263 result = build_nt (INDIRECT_REF,
4264 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4265 break;
4267 case COMPONENT_REF:
4268 result = build_nt (COMPONENT_REF,
4269 stabilize_reference (TREE_OPERAND (ref, 0)),
4270 TREE_OPERAND (ref, 1), NULL_TREE);
4271 break;
4273 case BIT_FIELD_REF:
4274 result = build_nt (BIT_FIELD_REF,
4275 stabilize_reference (TREE_OPERAND (ref, 0)),
4276 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4277 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4278 break;
4280 case ARRAY_REF:
4281 result = build_nt (ARRAY_REF,
4282 stabilize_reference (TREE_OPERAND (ref, 0)),
4283 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4284 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4285 break;
4287 case ARRAY_RANGE_REF:
4288 result = build_nt (ARRAY_RANGE_REF,
4289 stabilize_reference (TREE_OPERAND (ref, 0)),
4290 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4291 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4292 break;
4294 case COMPOUND_EXPR:
4295 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4296 it wouldn't be ignored. This matters when dealing with
4297 volatiles. */
4298 return stabilize_reference_1 (ref);
4300 /* If arg isn't a kind of lvalue we recognize, make no change.
4301 Caller should recognize the error for an invalid lvalue. */
4302 default:
4303 return ref;
4305 case ERROR_MARK:
4306 return error_mark_node;
4309 TREE_TYPE (result) = TREE_TYPE (ref);
4310 TREE_READONLY (result) = TREE_READONLY (ref);
4311 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4312 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4314 return result;
4317 /* Low-level constructors for expressions. */
4319 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4320 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4322 void
4323 recompute_tree_invariant_for_addr_expr (tree t)
4325 tree node;
4326 bool tc = true, se = false;
4328 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4330 /* We started out assuming this address is both invariant and constant, but
4331 does not have side effects. Now go down any handled components and see if
4332 any of them involve offsets that are either non-constant or non-invariant.
4333 Also check for side-effects.
4335 ??? Note that this code makes no attempt to deal with the case where
4336 taking the address of something causes a copy due to misalignment. */
4338 #define UPDATE_FLAGS(NODE) \
4339 do { tree _node = (NODE); \
4340 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4341 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4343 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4344 node = TREE_OPERAND (node, 0))
4346 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4347 array reference (probably made temporarily by the G++ front end),
4348 so ignore all the operands. */
4349 if ((TREE_CODE (node) == ARRAY_REF
4350 || TREE_CODE (node) == ARRAY_RANGE_REF)
4351 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4353 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4354 if (TREE_OPERAND (node, 2))
4355 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4356 if (TREE_OPERAND (node, 3))
4357 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4359 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4360 FIELD_DECL, apparently. The G++ front end can put something else
4361 there, at least temporarily. */
4362 else if (TREE_CODE (node) == COMPONENT_REF
4363 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4365 if (TREE_OPERAND (node, 2))
4366 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4370 node = lang_hooks.expr_to_decl (node, &tc, &se);
4372 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4373 the address, since &(*a)->b is a form of addition. If it's a constant, the
4374 address is constant too. If it's a decl, its address is constant if the
4375 decl is static. Everything else is not constant and, furthermore,
4376 taking the address of a volatile variable is not volatile. */
4377 if (TREE_CODE (node) == INDIRECT_REF
4378 || TREE_CODE (node) == MEM_REF)
4379 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4380 else if (CONSTANT_CLASS_P (node))
4382 else if (DECL_P (node))
4383 tc &= (staticp (node) != NULL_TREE);
4384 else
4386 tc = false;
4387 se |= TREE_SIDE_EFFECTS (node);
4391 TREE_CONSTANT (t) = tc;
4392 TREE_SIDE_EFFECTS (t) = se;
4393 #undef UPDATE_FLAGS
4396 /* Build an expression of code CODE, data type TYPE, and operands as
4397 specified. Expressions and reference nodes can be created this way.
4398 Constants, decls, types and misc nodes cannot be.
4400 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4401 enough for all extant tree codes. */
4403 tree
4404 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4406 tree t;
4408 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4410 t = make_node (code PASS_MEM_STAT);
4411 TREE_TYPE (t) = tt;
4413 return t;
4416 tree
4417 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4419 int length = sizeof (struct tree_exp);
4420 tree t;
4422 record_node_allocation_statistics (code, length);
4424 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4426 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4428 memset (t, 0, sizeof (struct tree_common));
4430 TREE_SET_CODE (t, code);
4432 TREE_TYPE (t) = type;
4433 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4434 TREE_OPERAND (t, 0) = node;
4435 if (node && !TYPE_P (node))
4437 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4438 TREE_READONLY (t) = TREE_READONLY (node);
4441 if (TREE_CODE_CLASS (code) == tcc_statement)
4442 TREE_SIDE_EFFECTS (t) = 1;
4443 else switch (code)
4445 case VA_ARG_EXPR:
4446 /* All of these have side-effects, no matter what their
4447 operands are. */
4448 TREE_SIDE_EFFECTS (t) = 1;
4449 TREE_READONLY (t) = 0;
4450 break;
4452 case INDIRECT_REF:
4453 /* Whether a dereference is readonly has nothing to do with whether
4454 its operand is readonly. */
4455 TREE_READONLY (t) = 0;
4456 break;
4458 case ADDR_EXPR:
4459 if (node)
4460 recompute_tree_invariant_for_addr_expr (t);
4461 break;
4463 default:
4464 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4465 && node && !TYPE_P (node)
4466 && TREE_CONSTANT (node))
4467 TREE_CONSTANT (t) = 1;
4468 if (TREE_CODE_CLASS (code) == tcc_reference
4469 && node && TREE_THIS_VOLATILE (node))
4470 TREE_THIS_VOLATILE (t) = 1;
4471 break;
4474 return t;
4477 #define PROCESS_ARG(N) \
4478 do { \
4479 TREE_OPERAND (t, N) = arg##N; \
4480 if (arg##N &&!TYPE_P (arg##N)) \
4482 if (TREE_SIDE_EFFECTS (arg##N)) \
4483 side_effects = 1; \
4484 if (!TREE_READONLY (arg##N) \
4485 && !CONSTANT_CLASS_P (arg##N)) \
4486 (void) (read_only = 0); \
4487 if (!TREE_CONSTANT (arg##N)) \
4488 (void) (constant = 0); \
4490 } while (0)
4492 tree
4493 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4495 bool constant, read_only, side_effects, div_by_zero;
4496 tree t;
4498 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4500 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4501 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4502 /* When sizetype precision doesn't match that of pointers
4503 we need to be able to build explicit extensions or truncations
4504 of the offset argument. */
4505 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4506 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4507 && TREE_CODE (arg1) == INTEGER_CST);
4509 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4510 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4511 && ptrofftype_p (TREE_TYPE (arg1)));
4513 t = make_node (code PASS_MEM_STAT);
4514 TREE_TYPE (t) = tt;
4516 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4517 result based on those same flags for the arguments. But if the
4518 arguments aren't really even `tree' expressions, we shouldn't be trying
4519 to do this. */
4521 /* Expressions without side effects may be constant if their
4522 arguments are as well. */
4523 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4524 || TREE_CODE_CLASS (code) == tcc_binary);
4525 read_only = 1;
4526 side_effects = TREE_SIDE_EFFECTS (t);
4528 switch (code)
4530 case TRUNC_DIV_EXPR:
4531 case CEIL_DIV_EXPR:
4532 case FLOOR_DIV_EXPR:
4533 case ROUND_DIV_EXPR:
4534 case EXACT_DIV_EXPR:
4535 case CEIL_MOD_EXPR:
4536 case FLOOR_MOD_EXPR:
4537 case ROUND_MOD_EXPR:
4538 case TRUNC_MOD_EXPR:
4539 div_by_zero = integer_zerop (arg1);
4540 break;
4541 default:
4542 div_by_zero = false;
4545 PROCESS_ARG (0);
4546 PROCESS_ARG (1);
4548 TREE_SIDE_EFFECTS (t) = side_effects;
4549 if (code == MEM_REF)
4551 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4553 tree o = TREE_OPERAND (arg0, 0);
4554 TREE_READONLY (t) = TREE_READONLY (o);
4555 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4558 else
4560 TREE_READONLY (t) = read_only;
4561 /* Don't mark X / 0 as constant. */
4562 TREE_CONSTANT (t) = constant && !div_by_zero;
4563 TREE_THIS_VOLATILE (t)
4564 = (TREE_CODE_CLASS (code) == tcc_reference
4565 && arg0 && TREE_THIS_VOLATILE (arg0));
4568 return t;
4572 tree
4573 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4574 tree arg2 MEM_STAT_DECL)
4576 bool constant, read_only, side_effects;
4577 tree t;
4579 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4580 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4582 t = make_node (code PASS_MEM_STAT);
4583 TREE_TYPE (t) = tt;
4585 read_only = 1;
4587 /* As a special exception, if COND_EXPR has NULL branches, we
4588 assume that it is a gimple statement and always consider
4589 it to have side effects. */
4590 if (code == COND_EXPR
4591 && tt == void_type_node
4592 && arg1 == NULL_TREE
4593 && arg2 == NULL_TREE)
4594 side_effects = true;
4595 else
4596 side_effects = TREE_SIDE_EFFECTS (t);
4598 PROCESS_ARG (0);
4599 PROCESS_ARG (1);
4600 PROCESS_ARG (2);
4602 if (code == COND_EXPR)
4603 TREE_READONLY (t) = read_only;
4605 TREE_SIDE_EFFECTS (t) = side_effects;
4606 TREE_THIS_VOLATILE (t)
4607 = (TREE_CODE_CLASS (code) == tcc_reference
4608 && arg0 && TREE_THIS_VOLATILE (arg0));
4610 return t;
4613 tree
4614 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4615 tree arg2, tree arg3 MEM_STAT_DECL)
4617 bool constant, read_only, side_effects;
4618 tree t;
4620 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4622 t = make_node (code PASS_MEM_STAT);
4623 TREE_TYPE (t) = tt;
4625 side_effects = TREE_SIDE_EFFECTS (t);
4627 PROCESS_ARG (0);
4628 PROCESS_ARG (1);
4629 PROCESS_ARG (2);
4630 PROCESS_ARG (3);
4632 TREE_SIDE_EFFECTS (t) = side_effects;
4633 TREE_THIS_VOLATILE (t)
4634 = (TREE_CODE_CLASS (code) == tcc_reference
4635 && arg0 && TREE_THIS_VOLATILE (arg0));
4637 return t;
4640 tree
4641 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4642 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4644 bool constant, read_only, side_effects;
4645 tree t;
4647 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4649 t = make_node (code PASS_MEM_STAT);
4650 TREE_TYPE (t) = tt;
4652 side_effects = TREE_SIDE_EFFECTS (t);
4654 PROCESS_ARG (0);
4655 PROCESS_ARG (1);
4656 PROCESS_ARG (2);
4657 PROCESS_ARG (3);
4658 PROCESS_ARG (4);
4660 TREE_SIDE_EFFECTS (t) = side_effects;
4661 if (code == TARGET_MEM_REF)
4663 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4665 tree o = TREE_OPERAND (arg0, 0);
4666 TREE_READONLY (t) = TREE_READONLY (o);
4667 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4670 else
4671 TREE_THIS_VOLATILE (t)
4672 = (TREE_CODE_CLASS (code) == tcc_reference
4673 && arg0 && TREE_THIS_VOLATILE (arg0));
4675 return t;
4678 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4679 on the pointer PTR. */
4681 tree
4682 build_simple_mem_ref_loc (location_t loc, tree ptr)
4684 HOST_WIDE_INT offset = 0;
4685 tree ptype = TREE_TYPE (ptr);
4686 tree tem;
4687 /* For convenience allow addresses that collapse to a simple base
4688 and offset. */
4689 if (TREE_CODE (ptr) == ADDR_EXPR
4690 && (handled_component_p (TREE_OPERAND (ptr, 0))
4691 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4693 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4694 gcc_assert (ptr);
4695 if (TREE_CODE (ptr) == MEM_REF)
4697 offset += mem_ref_offset (ptr).to_short_addr ();
4698 ptr = TREE_OPERAND (ptr, 0);
4700 else
4701 ptr = build_fold_addr_expr (ptr);
4702 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4704 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4705 ptr, build_int_cst (ptype, offset));
4706 SET_EXPR_LOCATION (tem, loc);
4707 return tem;
4710 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4712 offset_int
4713 mem_ref_offset (const_tree t)
4715 return offset_int::from (wi::to_wide (TREE_OPERAND (t, 1)), SIGNED);
4718 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4719 offsetted by OFFSET units. */
4721 tree
4722 build_invariant_address (tree type, tree base, HOST_WIDE_INT offset)
4724 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4725 build_fold_addr_expr (base),
4726 build_int_cst (ptr_type_node, offset));
4727 tree addr = build1 (ADDR_EXPR, type, ref);
4728 recompute_tree_invariant_for_addr_expr (addr);
4729 return addr;
4732 /* Similar except don't specify the TREE_TYPE
4733 and leave the TREE_SIDE_EFFECTS as 0.
4734 It is permissible for arguments to be null,
4735 or even garbage if their values do not matter. */
4737 tree
4738 build_nt (enum tree_code code, ...)
4740 tree t;
4741 int length;
4742 int i;
4743 va_list p;
4745 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4747 va_start (p, code);
4749 t = make_node (code);
4750 length = TREE_CODE_LENGTH (code);
4752 for (i = 0; i < length; i++)
4753 TREE_OPERAND (t, i) = va_arg (p, tree);
4755 va_end (p);
4756 return t;
4759 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4760 tree vec. */
4762 tree
4763 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4765 tree ret, t;
4766 unsigned int ix;
4768 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4769 CALL_EXPR_FN (ret) = fn;
4770 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4771 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4772 CALL_EXPR_ARG (ret, ix) = t;
4773 return ret;
4776 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4777 We do NOT enter this node in any sort of symbol table.
4779 LOC is the location of the decl.
4781 layout_decl is used to set up the decl's storage layout.
4782 Other slots are initialized to 0 or null pointers. */
4784 tree
4785 build_decl (location_t loc, enum tree_code code, tree name,
4786 tree type MEM_STAT_DECL)
4788 tree t;
4790 t = make_node (code PASS_MEM_STAT);
4791 DECL_SOURCE_LOCATION (t) = loc;
4793 /* if (type == error_mark_node)
4794 type = integer_type_node; */
4795 /* That is not done, deliberately, so that having error_mark_node
4796 as the type can suppress useless errors in the use of this variable. */
4798 DECL_NAME (t) = name;
4799 TREE_TYPE (t) = type;
4801 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4802 layout_decl (t, 0);
4804 return t;
4807 /* Builds and returns function declaration with NAME and TYPE. */
4809 tree
4810 build_fn_decl (const char *name, tree type)
4812 tree id = get_identifier (name);
4813 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4815 DECL_EXTERNAL (decl) = 1;
4816 TREE_PUBLIC (decl) = 1;
4817 DECL_ARTIFICIAL (decl) = 1;
4818 TREE_NOTHROW (decl) = 1;
4820 return decl;
4823 vec<tree, va_gc> *all_translation_units;
4825 /* Builds a new translation-unit decl with name NAME, queues it in the
4826 global list of translation-unit decls and returns it. */
4828 tree
4829 build_translation_unit_decl (tree name)
4831 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4832 name, NULL_TREE);
4833 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4834 vec_safe_push (all_translation_units, tu);
4835 return tu;
4839 /* BLOCK nodes are used to represent the structure of binding contours
4840 and declarations, once those contours have been exited and their contents
4841 compiled. This information is used for outputting debugging info. */
4843 tree
4844 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
4846 tree block = make_node (BLOCK);
4848 BLOCK_VARS (block) = vars;
4849 BLOCK_SUBBLOCKS (block) = subblocks;
4850 BLOCK_SUPERCONTEXT (block) = supercontext;
4851 BLOCK_CHAIN (block) = chain;
4852 return block;
4856 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4858 LOC is the location to use in tree T. */
4860 void
4861 protected_set_expr_location (tree t, location_t loc)
4863 if (CAN_HAVE_LOCATION_P (t))
4864 SET_EXPR_LOCATION (t, loc);
4867 /* Reset the expression *EXPR_P, a size or position.
4869 ??? We could reset all non-constant sizes or positions. But it's cheap
4870 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4872 We need to reset self-referential sizes or positions because they cannot
4873 be gimplified and thus can contain a CALL_EXPR after the gimplification
4874 is finished, which will run afoul of LTO streaming. And they need to be
4875 reset to something essentially dummy but not constant, so as to preserve
4876 the properties of the object they are attached to. */
4878 static inline void
4879 free_lang_data_in_one_sizepos (tree *expr_p)
4881 tree expr = *expr_p;
4882 if (CONTAINS_PLACEHOLDER_P (expr))
4883 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
4887 /* Reset all the fields in a binfo node BINFO. We only keep
4888 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4890 static void
4891 free_lang_data_in_binfo (tree binfo)
4893 unsigned i;
4894 tree t;
4896 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
4898 BINFO_VIRTUALS (binfo) = NULL_TREE;
4899 BINFO_BASE_ACCESSES (binfo) = NULL;
4900 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4901 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
4903 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
4904 free_lang_data_in_binfo (t);
4908 /* Reset all language specific information still present in TYPE. */
4910 static void
4911 free_lang_data_in_type (tree type)
4913 gcc_assert (TYPE_P (type));
4915 /* Give the FE a chance to remove its own data first. */
4916 lang_hooks.free_lang_data (type);
4918 TREE_LANG_FLAG_0 (type) = 0;
4919 TREE_LANG_FLAG_1 (type) = 0;
4920 TREE_LANG_FLAG_2 (type) = 0;
4921 TREE_LANG_FLAG_3 (type) = 0;
4922 TREE_LANG_FLAG_4 (type) = 0;
4923 TREE_LANG_FLAG_5 (type) = 0;
4924 TREE_LANG_FLAG_6 (type) = 0;
4926 if (TREE_CODE (type) == FUNCTION_TYPE)
4928 /* Remove the const and volatile qualifiers from arguments. The
4929 C++ front end removes them, but the C front end does not,
4930 leading to false ODR violation errors when merging two
4931 instances of the same function signature compiled by
4932 different front ends. */
4933 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4935 tree arg_type = TREE_VALUE (p);
4937 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4939 int quals = TYPE_QUALS (arg_type)
4940 & ~TYPE_QUAL_CONST
4941 & ~TYPE_QUAL_VOLATILE;
4942 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4943 free_lang_data_in_type (TREE_VALUE (p));
4945 /* C++ FE uses TREE_PURPOSE to store initial values. */
4946 TREE_PURPOSE (p) = NULL;
4949 else if (TREE_CODE (type) == METHOD_TYPE)
4950 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4951 /* C++ FE uses TREE_PURPOSE to store initial values. */
4952 TREE_PURPOSE (p) = NULL;
4953 else if (RECORD_OR_UNION_TYPE_P (type))
4955 /* Remove members that are not FIELD_DECLs (and maybe
4956 TYPE_DECLs) from the field list of an aggregate. These occur
4957 in C++. */
4958 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
4959 if (TREE_CODE (member) == FIELD_DECL
4960 || (TREE_CODE (member) == TYPE_DECL
4961 && !DECL_IGNORED_P (member)
4962 && debug_info_level > DINFO_LEVEL_TERSE
4963 && !is_redundant_typedef (member)))
4964 prev = &DECL_CHAIN (member);
4965 else
4966 *prev = DECL_CHAIN (member);
4968 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
4969 and danagle the pointer from time to time. */
4970 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
4971 TYPE_VFIELD (type) = NULL_TREE;
4973 if (TYPE_BINFO (type))
4975 free_lang_data_in_binfo (TYPE_BINFO (type));
4976 /* We need to preserve link to bases and virtual table for all
4977 polymorphic types to make devirtualization machinery working.
4978 Debug output cares only about bases, but output also
4979 virtual table pointers so merging of -fdevirtualize and
4980 -fno-devirtualize units is easier. */
4981 if ((!BINFO_VTABLE (TYPE_BINFO (type))
4982 || !flag_devirtualize)
4983 && ((!BINFO_N_BASE_BINFOS (TYPE_BINFO (type))
4984 && !BINFO_VTABLE (TYPE_BINFO (type)))
4985 || debug_info_level != DINFO_LEVEL_NONE))
4986 TYPE_BINFO (type) = NULL;
4989 else if (INTEGRAL_TYPE_P (type)
4990 || SCALAR_FLOAT_TYPE_P (type)
4991 || FIXED_POINT_TYPE_P (type))
4993 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
4994 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
4997 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
4999 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5000 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5002 if (TYPE_CONTEXT (type)
5003 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5005 tree ctx = TYPE_CONTEXT (type);
5008 ctx = BLOCK_SUPERCONTEXT (ctx);
5010 while (ctx && TREE_CODE (ctx) == BLOCK);
5011 TYPE_CONTEXT (type) = ctx;
5016 /* Return true if DECL may need an assembler name to be set. */
5018 static inline bool
5019 need_assembler_name_p (tree decl)
5021 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5022 Rule merging. This makes type_odr_p to return true on those types during
5023 LTO and by comparing the mangled name, we can say what types are intended
5024 to be equivalent across compilation unit.
5026 We do not store names of type_in_anonymous_namespace_p.
5028 Record, union and enumeration type have linkage that allows use
5029 to check type_in_anonymous_namespace_p. We do not mangle compound types
5030 that always can be compared structurally.
5032 Similarly for builtin types, we compare properties of their main variant.
5033 A special case are integer types where mangling do make differences
5034 between char/signed char/unsigned char etc. Storing name for these makes
5035 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5036 See cp/mangle.c:write_builtin_type for details. */
5038 if (flag_lto_odr_type_mering
5039 && TREE_CODE (decl) == TYPE_DECL
5040 && DECL_NAME (decl)
5041 && decl == TYPE_NAME (TREE_TYPE (decl))
5042 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5043 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5044 && (type_with_linkage_p (TREE_TYPE (decl))
5045 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5046 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5047 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5048 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5049 if (!VAR_OR_FUNCTION_DECL_P (decl))
5050 return false;
5052 /* If DECL already has its assembler name set, it does not need a
5053 new one. */
5054 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5055 || DECL_ASSEMBLER_NAME_SET_P (decl))
5056 return false;
5058 /* Abstract decls do not need an assembler name. */
5059 if (DECL_ABSTRACT_P (decl))
5060 return false;
5062 /* For VAR_DECLs, only static, public and external symbols need an
5063 assembler name. */
5064 if (VAR_P (decl)
5065 && !TREE_STATIC (decl)
5066 && !TREE_PUBLIC (decl)
5067 && !DECL_EXTERNAL (decl))
5068 return false;
5070 if (TREE_CODE (decl) == FUNCTION_DECL)
5072 /* Do not set assembler name on builtins. Allow RTL expansion to
5073 decide whether to expand inline or via a regular call. */
5074 if (DECL_BUILT_IN (decl)
5075 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5076 return false;
5078 /* Functions represented in the callgraph need an assembler name. */
5079 if (cgraph_node::get (decl) != NULL)
5080 return true;
5082 /* Unused and not public functions don't need an assembler name. */
5083 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5084 return false;
5087 return true;
5091 /* Reset all language specific information still present in symbol
5092 DECL. */
5094 static void
5095 free_lang_data_in_decl (tree decl)
5097 gcc_assert (DECL_P (decl));
5099 /* Give the FE a chance to remove its own data first. */
5100 lang_hooks.free_lang_data (decl);
5102 TREE_LANG_FLAG_0 (decl) = 0;
5103 TREE_LANG_FLAG_1 (decl) = 0;
5104 TREE_LANG_FLAG_2 (decl) = 0;
5105 TREE_LANG_FLAG_3 (decl) = 0;
5106 TREE_LANG_FLAG_4 (decl) = 0;
5107 TREE_LANG_FLAG_5 (decl) = 0;
5108 TREE_LANG_FLAG_6 (decl) = 0;
5110 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5111 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5112 if (TREE_CODE (decl) == FIELD_DECL)
5114 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5115 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5116 DECL_QUALIFIER (decl) = NULL_TREE;
5119 if (TREE_CODE (decl) == FUNCTION_DECL)
5121 struct cgraph_node *node;
5122 if (!(node = cgraph_node::get (decl))
5123 || (!node->definition && !node->clones))
5125 if (node)
5126 node->release_body ();
5127 else
5129 release_function_body (decl);
5130 DECL_ARGUMENTS (decl) = NULL;
5131 DECL_RESULT (decl) = NULL;
5132 DECL_INITIAL (decl) = error_mark_node;
5135 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5137 tree t;
5139 /* If DECL has a gimple body, then the context for its
5140 arguments must be DECL. Otherwise, it doesn't really
5141 matter, as we will not be emitting any code for DECL. In
5142 general, there may be other instances of DECL created by
5143 the front end and since PARM_DECLs are generally shared,
5144 their DECL_CONTEXT changes as the replicas of DECL are
5145 created. The only time where DECL_CONTEXT is important
5146 is for the FUNCTION_DECLs that have a gimple body (since
5147 the PARM_DECL will be used in the function's body). */
5148 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5149 DECL_CONTEXT (t) = decl;
5150 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5151 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5152 = target_option_default_node;
5153 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5154 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5155 = optimization_default_node;
5158 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5159 At this point, it is not needed anymore. */
5160 DECL_SAVED_TREE (decl) = NULL_TREE;
5162 /* Clear the abstract origin if it refers to a method.
5163 Otherwise dwarf2out.c will ICE as we splice functions out of
5164 TYPE_FIELDS and thus the origin will not be output
5165 correctly. */
5166 if (DECL_ABSTRACT_ORIGIN (decl)
5167 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5168 && RECORD_OR_UNION_TYPE_P
5169 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5170 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5172 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5173 DECL_VINDEX referring to itself into a vtable slot number as it
5174 should. Happens with functions that are copied and then forgotten
5175 about. Just clear it, it won't matter anymore. */
5176 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5177 DECL_VINDEX (decl) = NULL_TREE;
5179 else if (VAR_P (decl))
5181 if ((DECL_EXTERNAL (decl)
5182 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5183 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5184 DECL_INITIAL (decl) = NULL_TREE;
5186 else if (TREE_CODE (decl) == TYPE_DECL)
5188 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5189 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5190 DECL_INITIAL (decl) = NULL_TREE;
5192 else if (TREE_CODE (decl) == FIELD_DECL)
5193 DECL_INITIAL (decl) = NULL_TREE;
5194 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5195 && DECL_INITIAL (decl)
5196 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5198 /* Strip builtins from the translation-unit BLOCK. We still have targets
5199 without builtin_decl_explicit support and also builtins are shared
5200 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5201 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5202 while (*nextp)
5204 tree var = *nextp;
5205 if (TREE_CODE (var) == FUNCTION_DECL
5206 && DECL_BUILT_IN (var))
5207 *nextp = TREE_CHAIN (var);
5208 else
5209 nextp = &TREE_CHAIN (var);
5215 /* Data used when collecting DECLs and TYPEs for language data removal. */
5217 struct free_lang_data_d
5219 free_lang_data_d () : decls (100), types (100) {}
5221 /* Worklist to avoid excessive recursion. */
5222 auto_vec<tree> worklist;
5224 /* Set of traversed objects. Used to avoid duplicate visits. */
5225 hash_set<tree> pset;
5227 /* Array of symbols to process with free_lang_data_in_decl. */
5228 auto_vec<tree> decls;
5230 /* Array of types to process with free_lang_data_in_type. */
5231 auto_vec<tree> types;
5235 /* Save all language fields needed to generate proper debug information
5236 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5238 static void
5239 save_debug_info_for_decl (tree t)
5241 /*struct saved_debug_info_d *sdi;*/
5243 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
5245 /* FIXME. Partial implementation for saving debug info removed. */
5249 /* Save all language fields needed to generate proper debug information
5250 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5252 static void
5253 save_debug_info_for_type (tree t)
5255 /*struct saved_debug_info_d *sdi;*/
5257 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
5259 /* FIXME. Partial implementation for saving debug info removed. */
5263 /* Add type or decl T to one of the list of tree nodes that need their
5264 language data removed. The lists are held inside FLD. */
5266 static void
5267 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5269 if (DECL_P (t))
5271 fld->decls.safe_push (t);
5272 if (debug_info_level > DINFO_LEVEL_TERSE)
5273 save_debug_info_for_decl (t);
5275 else if (TYPE_P (t))
5277 fld->types.safe_push (t);
5278 if (debug_info_level > DINFO_LEVEL_TERSE)
5279 save_debug_info_for_type (t);
5281 else
5282 gcc_unreachable ();
5285 /* Push tree node T into FLD->WORKLIST. */
5287 static inline void
5288 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5290 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5291 fld->worklist.safe_push ((t));
5295 /* Operand callback helper for free_lang_data_in_node. *TP is the
5296 subtree operand being considered. */
5298 static tree
5299 find_decls_types_r (tree *tp, int *ws, void *data)
5301 tree t = *tp;
5302 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5304 if (TREE_CODE (t) == TREE_LIST)
5305 return NULL_TREE;
5307 /* Language specific nodes will be removed, so there is no need
5308 to gather anything under them. */
5309 if (is_lang_specific (t))
5311 *ws = 0;
5312 return NULL_TREE;
5315 if (DECL_P (t))
5317 /* Note that walk_tree does not traverse every possible field in
5318 decls, so we have to do our own traversals here. */
5319 add_tree_to_fld_list (t, fld);
5321 fld_worklist_push (DECL_NAME (t), fld);
5322 fld_worklist_push (DECL_CONTEXT (t), fld);
5323 fld_worklist_push (DECL_SIZE (t), fld);
5324 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5326 /* We are going to remove everything under DECL_INITIAL for
5327 TYPE_DECLs. No point walking them. */
5328 if (TREE_CODE (t) != TYPE_DECL)
5329 fld_worklist_push (DECL_INITIAL (t), fld);
5331 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5332 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5334 if (TREE_CODE (t) == FUNCTION_DECL)
5336 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5337 fld_worklist_push (DECL_RESULT (t), fld);
5339 else if (TREE_CODE (t) == TYPE_DECL)
5341 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5343 else if (TREE_CODE (t) == FIELD_DECL)
5345 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5346 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5347 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5348 fld_worklist_push (DECL_FCONTEXT (t), fld);
5351 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5352 && DECL_HAS_VALUE_EXPR_P (t))
5353 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5355 if (TREE_CODE (t) != FIELD_DECL
5356 && TREE_CODE (t) != TYPE_DECL)
5357 fld_worklist_push (TREE_CHAIN (t), fld);
5358 *ws = 0;
5360 else if (TYPE_P (t))
5362 /* Note that walk_tree does not traverse every possible field in
5363 types, so we have to do our own traversals here. */
5364 add_tree_to_fld_list (t, fld);
5366 if (!RECORD_OR_UNION_TYPE_P (t))
5367 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5368 fld_worklist_push (TYPE_SIZE (t), fld);
5369 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5370 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5371 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5372 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5373 fld_worklist_push (TYPE_NAME (t), fld);
5374 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5375 them and thus do not and want not to reach unused pointer types
5376 this way. */
5377 if (!POINTER_TYPE_P (t))
5378 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5379 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5380 if (!RECORD_OR_UNION_TYPE_P (t))
5381 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5382 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5383 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5384 do not and want not to reach unused variants this way. */
5385 if (TYPE_CONTEXT (t))
5387 tree ctx = TYPE_CONTEXT (t);
5388 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5389 So push that instead. */
5390 while (ctx && TREE_CODE (ctx) == BLOCK)
5391 ctx = BLOCK_SUPERCONTEXT (ctx);
5392 fld_worklist_push (ctx, fld);
5394 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5395 and want not to reach unused types this way. */
5397 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5399 unsigned i;
5400 tree tem;
5401 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5402 fld_worklist_push (TREE_TYPE (tem), fld);
5403 fld_worklist_push (BINFO_VIRTUALS (TYPE_BINFO (t)), fld);
5405 if (RECORD_OR_UNION_TYPE_P (t))
5407 tree tem;
5408 /* Push all TYPE_FIELDS - there can be interleaving interesting
5409 and non-interesting things. */
5410 tem = TYPE_FIELDS (t);
5411 while (tem)
5413 if (TREE_CODE (tem) == FIELD_DECL
5414 || (TREE_CODE (tem) == TYPE_DECL
5415 && !DECL_IGNORED_P (tem)
5416 && debug_info_level > DINFO_LEVEL_TERSE
5417 && !is_redundant_typedef (tem)))
5418 fld_worklist_push (tem, fld);
5419 tem = TREE_CHAIN (tem);
5423 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5424 *ws = 0;
5426 else if (TREE_CODE (t) == BLOCK)
5428 tree tem;
5429 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5430 fld_worklist_push (tem, fld);
5431 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5432 fld_worklist_push (tem, fld);
5433 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5436 if (TREE_CODE (t) != IDENTIFIER_NODE
5437 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5438 fld_worklist_push (TREE_TYPE (t), fld);
5440 return NULL_TREE;
5444 /* Find decls and types in T. */
5446 static void
5447 find_decls_types (tree t, struct free_lang_data_d *fld)
5449 while (1)
5451 if (!fld->pset.contains (t))
5452 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5453 if (fld->worklist.is_empty ())
5454 break;
5455 t = fld->worklist.pop ();
5459 /* Translate all the types in LIST with the corresponding runtime
5460 types. */
5462 static tree
5463 get_eh_types_for_runtime (tree list)
5465 tree head, prev;
5467 if (list == NULL_TREE)
5468 return NULL_TREE;
5470 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5471 prev = head;
5472 list = TREE_CHAIN (list);
5473 while (list)
5475 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5476 TREE_CHAIN (prev) = n;
5477 prev = TREE_CHAIN (prev);
5478 list = TREE_CHAIN (list);
5481 return head;
5485 /* Find decls and types referenced in EH region R and store them in
5486 FLD->DECLS and FLD->TYPES. */
5488 static void
5489 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5491 switch (r->type)
5493 case ERT_CLEANUP:
5494 break;
5496 case ERT_TRY:
5498 eh_catch c;
5500 /* The types referenced in each catch must first be changed to the
5501 EH types used at runtime. This removes references to FE types
5502 in the region. */
5503 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5505 c->type_list = get_eh_types_for_runtime (c->type_list);
5506 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
5509 break;
5511 case ERT_ALLOWED_EXCEPTIONS:
5512 r->u.allowed.type_list
5513 = get_eh_types_for_runtime (r->u.allowed.type_list);
5514 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
5515 break;
5517 case ERT_MUST_NOT_THROW:
5518 walk_tree (&r->u.must_not_throw.failure_decl,
5519 find_decls_types_r, fld, &fld->pset);
5520 break;
5525 /* Find decls and types referenced in cgraph node N and store them in
5526 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5527 look for *every* kind of DECL and TYPE node reachable from N,
5528 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5529 NAMESPACE_DECLs, etc). */
5531 static void
5532 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5534 basic_block bb;
5535 struct function *fn;
5536 unsigned ix;
5537 tree t;
5539 find_decls_types (n->decl, fld);
5541 if (!gimple_has_body_p (n->decl))
5542 return;
5544 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5546 fn = DECL_STRUCT_FUNCTION (n->decl);
5548 /* Traverse locals. */
5549 FOR_EACH_LOCAL_DECL (fn, ix, t)
5550 find_decls_types (t, fld);
5552 /* Traverse EH regions in FN. */
5554 eh_region r;
5555 FOR_ALL_EH_REGION_FN (r, fn)
5556 find_decls_types_in_eh_region (r, fld);
5559 /* Traverse every statement in FN. */
5560 FOR_EACH_BB_FN (bb, fn)
5562 gphi_iterator psi;
5563 gimple_stmt_iterator si;
5564 unsigned i;
5566 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5568 gphi *phi = psi.phi ();
5570 for (i = 0; i < gimple_phi_num_args (phi); i++)
5572 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5573 find_decls_types (*arg_p, fld);
5577 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5579 gimple *stmt = gsi_stmt (si);
5581 if (is_gimple_call (stmt))
5582 find_decls_types (gimple_call_fntype (stmt), fld);
5584 for (i = 0; i < gimple_num_ops (stmt); i++)
5586 tree arg = gimple_op (stmt, i);
5587 find_decls_types (arg, fld);
5594 /* Find decls and types referenced in varpool node N and store them in
5595 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5596 look for *every* kind of DECL and TYPE node reachable from N,
5597 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5598 NAMESPACE_DECLs, etc). */
5600 static void
5601 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5603 find_decls_types (v->decl, fld);
5606 /* If T needs an assembler name, have one created for it. */
5608 void
5609 assign_assembler_name_if_needed (tree t)
5611 if (need_assembler_name_p (t))
5613 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5614 diagnostics that use input_location to show locus
5615 information. The problem here is that, at this point,
5616 input_location is generally anchored to the end of the file
5617 (since the parser is long gone), so we don't have a good
5618 position to pin it to.
5620 To alleviate this problem, this uses the location of T's
5621 declaration. Examples of this are
5622 testsuite/g++.dg/template/cond2.C and
5623 testsuite/g++.dg/template/pr35240.C. */
5624 location_t saved_location = input_location;
5625 input_location = DECL_SOURCE_LOCATION (t);
5627 decl_assembler_name (t);
5629 input_location = saved_location;
5634 /* Free language specific information for every operand and expression
5635 in every node of the call graph. This process operates in three stages:
5637 1- Every callgraph node and varpool node is traversed looking for
5638 decls and types embedded in them. This is a more exhaustive
5639 search than that done by find_referenced_vars, because it will
5640 also collect individual fields, decls embedded in types, etc.
5642 2- All the decls found are sent to free_lang_data_in_decl.
5644 3- All the types found are sent to free_lang_data_in_type.
5646 The ordering between decls and types is important because
5647 free_lang_data_in_decl sets assembler names, which includes
5648 mangling. So types cannot be freed up until assembler names have
5649 been set up. */
5651 static void
5652 free_lang_data_in_cgraph (void)
5654 struct cgraph_node *n;
5655 varpool_node *v;
5656 struct free_lang_data_d fld;
5657 tree t;
5658 unsigned i;
5659 alias_pair *p;
5661 /* Find decls and types in the body of every function in the callgraph. */
5662 FOR_EACH_FUNCTION (n)
5663 find_decls_types_in_node (n, &fld);
5665 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5666 find_decls_types (p->decl, &fld);
5668 /* Find decls and types in every varpool symbol. */
5669 FOR_EACH_VARIABLE (v)
5670 find_decls_types_in_var (v, &fld);
5672 /* Set the assembler name on every decl found. We need to do this
5673 now because free_lang_data_in_decl will invalidate data needed
5674 for mangling. This breaks mangling on interdependent decls. */
5675 FOR_EACH_VEC_ELT (fld.decls, i, t)
5676 assign_assembler_name_if_needed (t);
5678 /* Traverse every decl found freeing its language data. */
5679 FOR_EACH_VEC_ELT (fld.decls, i, t)
5680 free_lang_data_in_decl (t);
5682 /* Traverse every type found freeing its language data. */
5683 FOR_EACH_VEC_ELT (fld.types, i, t)
5684 free_lang_data_in_type (t);
5685 if (flag_checking)
5687 FOR_EACH_VEC_ELT (fld.types, i, t)
5688 verify_type (t);
5693 /* Free resources that are used by FE but are not needed once they are done. */
5695 static unsigned
5696 free_lang_data (void)
5698 unsigned i;
5700 /* If we are the LTO frontend we have freed lang-specific data already. */
5701 if (in_lto_p
5702 || (!flag_generate_lto && !flag_generate_offload))
5703 return 0;
5705 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
5706 if (vec_safe_is_empty (all_translation_units))
5707 build_translation_unit_decl (NULL_TREE);
5709 /* Allocate and assign alias sets to the standard integer types
5710 while the slots are still in the way the frontends generated them. */
5711 for (i = 0; i < itk_none; ++i)
5712 if (integer_types[i])
5713 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5715 /* Traverse the IL resetting language specific information for
5716 operands, expressions, etc. */
5717 free_lang_data_in_cgraph ();
5719 /* Create gimple variants for common types. */
5720 for (unsigned i = 0;
5721 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
5722 ++i)
5723 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
5725 /* Reset some langhooks. Do not reset types_compatible_p, it may
5726 still be used indirectly via the get_alias_set langhook. */
5727 lang_hooks.dwarf_name = lhd_dwarf_name;
5728 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5729 lang_hooks.gimplify_expr = lhd_gimplify_expr;
5731 /* We do not want the default decl_assembler_name implementation,
5732 rather if we have fixed everything we want a wrapper around it
5733 asserting that all non-local symbols already got their assembler
5734 name and only produce assembler names for local symbols. Or rather
5735 make sure we never call decl_assembler_name on local symbols and
5736 devise a separate, middle-end private scheme for it. */
5738 /* Reset diagnostic machinery. */
5739 tree_diagnostics_defaults (global_dc);
5741 return 0;
5745 namespace {
5747 const pass_data pass_data_ipa_free_lang_data =
5749 SIMPLE_IPA_PASS, /* type */
5750 "*free_lang_data", /* name */
5751 OPTGROUP_NONE, /* optinfo_flags */
5752 TV_IPA_FREE_LANG_DATA, /* tv_id */
5753 0, /* properties_required */
5754 0, /* properties_provided */
5755 0, /* properties_destroyed */
5756 0, /* todo_flags_start */
5757 0, /* todo_flags_finish */
5760 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5762 public:
5763 pass_ipa_free_lang_data (gcc::context *ctxt)
5764 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5767 /* opt_pass methods: */
5768 virtual unsigned int execute (function *) { return free_lang_data (); }
5770 }; // class pass_ipa_free_lang_data
5772 } // anon namespace
5774 simple_ipa_opt_pass *
5775 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5777 return new pass_ipa_free_lang_data (ctxt);
5780 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5781 of the various TYPE_QUAL values. */
5783 static void
5784 set_type_quals (tree type, int type_quals)
5786 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5787 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5788 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5789 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
5790 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
5793 /* Returns true iff CAND and BASE have equivalent language-specific
5794 qualifiers. */
5796 bool
5797 check_lang_type (const_tree cand, const_tree base)
5799 if (lang_hooks.types.type_hash_eq == NULL)
5800 return true;
5801 /* type_hash_eq currently only applies to these types. */
5802 if (TREE_CODE (cand) != FUNCTION_TYPE
5803 && TREE_CODE (cand) != METHOD_TYPE)
5804 return true;
5805 return lang_hooks.types.type_hash_eq (cand, base);
5808 /* Returns true iff unqualified CAND and BASE are equivalent. */
5810 bool
5811 check_base_type (const_tree cand, const_tree base)
5813 return (TYPE_NAME (cand) == TYPE_NAME (base)
5814 /* Apparently this is needed for Objective-C. */
5815 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5816 /* Check alignment. */
5817 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5818 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5819 TYPE_ATTRIBUTES (base)));
5822 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5824 bool
5825 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5827 return (TYPE_QUALS (cand) == type_quals
5828 && check_base_type (cand, base)
5829 && check_lang_type (cand, base));
5832 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5834 static bool
5835 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5837 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5838 && TYPE_NAME (cand) == TYPE_NAME (base)
5839 /* Apparently this is needed for Objective-C. */
5840 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5841 /* Check alignment. */
5842 && TYPE_ALIGN (cand) == align
5843 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5844 TYPE_ATTRIBUTES (base))
5845 && check_lang_type (cand, base));
5848 /* This function checks to see if TYPE matches the size one of the built-in
5849 atomic types, and returns that core atomic type. */
5851 static tree
5852 find_atomic_core_type (tree type)
5854 tree base_atomic_type;
5856 /* Only handle complete types. */
5857 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
5858 return NULL_TREE;
5860 switch (tree_to_uhwi (TYPE_SIZE (type)))
5862 case 8:
5863 base_atomic_type = atomicQI_type_node;
5864 break;
5866 case 16:
5867 base_atomic_type = atomicHI_type_node;
5868 break;
5870 case 32:
5871 base_atomic_type = atomicSI_type_node;
5872 break;
5874 case 64:
5875 base_atomic_type = atomicDI_type_node;
5876 break;
5878 case 128:
5879 base_atomic_type = atomicTI_type_node;
5880 break;
5882 default:
5883 base_atomic_type = NULL_TREE;
5886 return base_atomic_type;
5889 /* Return a version of the TYPE, qualified as indicated by the
5890 TYPE_QUALS, if one exists. If no qualified version exists yet,
5891 return NULL_TREE. */
5893 tree
5894 get_qualified_type (tree type, int type_quals)
5896 tree t;
5898 if (TYPE_QUALS (type) == type_quals)
5899 return type;
5901 /* Search the chain of variants to see if there is already one there just
5902 like the one we need to have. If so, use that existing one. We must
5903 preserve the TYPE_NAME, since there is code that depends on this. */
5904 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5905 if (check_qualified_type (t, type, type_quals))
5906 return t;
5908 return NULL_TREE;
5911 /* Like get_qualified_type, but creates the type if it does not
5912 exist. This function never returns NULL_TREE. */
5914 tree
5915 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
5917 tree t;
5919 /* See if we already have the appropriate qualified variant. */
5920 t = get_qualified_type (type, type_quals);
5922 /* If not, build it. */
5923 if (!t)
5925 t = build_variant_type_copy (type PASS_MEM_STAT);
5926 set_type_quals (t, type_quals);
5928 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
5930 /* See if this object can map to a basic atomic type. */
5931 tree atomic_type = find_atomic_core_type (type);
5932 if (atomic_type)
5934 /* Ensure the alignment of this type is compatible with
5935 the required alignment of the atomic type. */
5936 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
5937 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
5941 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5942 /* Propagate structural equality. */
5943 SET_TYPE_STRUCTURAL_EQUALITY (t);
5944 else if (TYPE_CANONICAL (type) != type)
5945 /* Build the underlying canonical type, since it is different
5946 from TYPE. */
5948 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
5949 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
5951 else
5952 /* T is its own canonical type. */
5953 TYPE_CANONICAL (t) = t;
5957 return t;
5960 /* Create a variant of type T with alignment ALIGN. */
5962 tree
5963 build_aligned_type (tree type, unsigned int align)
5965 tree t;
5967 if (TYPE_PACKED (type)
5968 || TYPE_ALIGN (type) == align)
5969 return type;
5971 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5972 if (check_aligned_type (t, type, align))
5973 return t;
5975 t = build_variant_type_copy (type);
5976 SET_TYPE_ALIGN (t, align);
5977 TYPE_USER_ALIGN (t) = 1;
5979 return t;
5982 /* Create a new distinct copy of TYPE. The new type is made its own
5983 MAIN_VARIANT. If TYPE requires structural equality checks, the
5984 resulting type requires structural equality checks; otherwise, its
5985 TYPE_CANONICAL points to itself. */
5987 tree
5988 build_distinct_type_copy (tree type MEM_STAT_DECL)
5990 tree t = copy_node (type PASS_MEM_STAT);
5992 TYPE_POINTER_TO (t) = 0;
5993 TYPE_REFERENCE_TO (t) = 0;
5995 /* Set the canonical type either to a new equivalence class, or
5996 propagate the need for structural equality checks. */
5997 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5998 SET_TYPE_STRUCTURAL_EQUALITY (t);
5999 else
6000 TYPE_CANONICAL (t) = t;
6002 /* Make it its own variant. */
6003 TYPE_MAIN_VARIANT (t) = t;
6004 TYPE_NEXT_VARIANT (t) = 0;
6006 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6007 whose TREE_TYPE is not t. This can also happen in the Ada
6008 frontend when using subtypes. */
6010 return t;
6013 /* Create a new variant of TYPE, equivalent but distinct. This is so
6014 the caller can modify it. TYPE_CANONICAL for the return type will
6015 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6016 are considered equal by the language itself (or that both types
6017 require structural equality checks). */
6019 tree
6020 build_variant_type_copy (tree type MEM_STAT_DECL)
6022 tree t, m = TYPE_MAIN_VARIANT (type);
6024 t = build_distinct_type_copy (type PASS_MEM_STAT);
6026 /* Since we're building a variant, assume that it is a non-semantic
6027 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6028 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6029 /* Type variants have no alias set defined. */
6030 TYPE_ALIAS_SET (t) = -1;
6032 /* Add the new type to the chain of variants of TYPE. */
6033 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6034 TYPE_NEXT_VARIANT (m) = t;
6035 TYPE_MAIN_VARIANT (t) = m;
6037 return t;
6040 /* Return true if the from tree in both tree maps are equal. */
6043 tree_map_base_eq (const void *va, const void *vb)
6045 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6046 *const b = (const struct tree_map_base *) vb;
6047 return (a->from == b->from);
6050 /* Hash a from tree in a tree_base_map. */
6052 unsigned int
6053 tree_map_base_hash (const void *item)
6055 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6058 /* Return true if this tree map structure is marked for garbage collection
6059 purposes. We simply return true if the from tree is marked, so that this
6060 structure goes away when the from tree goes away. */
6063 tree_map_base_marked_p (const void *p)
6065 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6068 /* Hash a from tree in a tree_map. */
6070 unsigned int
6071 tree_map_hash (const void *item)
6073 return (((const struct tree_map *) item)->hash);
6076 /* Hash a from tree in a tree_decl_map. */
6078 unsigned int
6079 tree_decl_map_hash (const void *item)
6081 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6084 /* Return the initialization priority for DECL. */
6086 priority_type
6087 decl_init_priority_lookup (tree decl)
6089 symtab_node *snode = symtab_node::get (decl);
6091 if (!snode)
6092 return DEFAULT_INIT_PRIORITY;
6093 return
6094 snode->get_init_priority ();
6097 /* Return the finalization priority for DECL. */
6099 priority_type
6100 decl_fini_priority_lookup (tree decl)
6102 cgraph_node *node = cgraph_node::get (decl);
6104 if (!node)
6105 return DEFAULT_INIT_PRIORITY;
6106 return
6107 node->get_fini_priority ();
6110 /* Set the initialization priority for DECL to PRIORITY. */
6112 void
6113 decl_init_priority_insert (tree decl, priority_type priority)
6115 struct symtab_node *snode;
6117 if (priority == DEFAULT_INIT_PRIORITY)
6119 snode = symtab_node::get (decl);
6120 if (!snode)
6121 return;
6123 else if (VAR_P (decl))
6124 snode = varpool_node::get_create (decl);
6125 else
6126 snode = cgraph_node::get_create (decl);
6127 snode->set_init_priority (priority);
6130 /* Set the finalization priority for DECL to PRIORITY. */
6132 void
6133 decl_fini_priority_insert (tree decl, priority_type priority)
6135 struct cgraph_node *node;
6137 if (priority == DEFAULT_INIT_PRIORITY)
6139 node = cgraph_node::get (decl);
6140 if (!node)
6141 return;
6143 else
6144 node = cgraph_node::get_create (decl);
6145 node->set_fini_priority (priority);
6148 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6150 static void
6151 print_debug_expr_statistics (void)
6153 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6154 (long) debug_expr_for_decl->size (),
6155 (long) debug_expr_for_decl->elements (),
6156 debug_expr_for_decl->collisions ());
6159 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6161 static void
6162 print_value_expr_statistics (void)
6164 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6165 (long) value_expr_for_decl->size (),
6166 (long) value_expr_for_decl->elements (),
6167 value_expr_for_decl->collisions ());
6170 /* Lookup a debug expression for FROM, and return it if we find one. */
6172 tree
6173 decl_debug_expr_lookup (tree from)
6175 struct tree_decl_map *h, in;
6176 in.base.from = from;
6178 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6179 if (h)
6180 return h->to;
6181 return NULL_TREE;
6184 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6186 void
6187 decl_debug_expr_insert (tree from, tree to)
6189 struct tree_decl_map *h;
6191 h = ggc_alloc<tree_decl_map> ();
6192 h->base.from = from;
6193 h->to = to;
6194 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6197 /* Lookup a value expression for FROM, and return it if we find one. */
6199 tree
6200 decl_value_expr_lookup (tree from)
6202 struct tree_decl_map *h, in;
6203 in.base.from = from;
6205 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6206 if (h)
6207 return h->to;
6208 return NULL_TREE;
6211 /* Insert a mapping FROM->TO in the value expression hashtable. */
6213 void
6214 decl_value_expr_insert (tree from, tree to)
6216 struct tree_decl_map *h;
6218 h = ggc_alloc<tree_decl_map> ();
6219 h->base.from = from;
6220 h->to = to;
6221 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6224 /* Lookup a vector of debug arguments for FROM, and return it if we
6225 find one. */
6227 vec<tree, va_gc> **
6228 decl_debug_args_lookup (tree from)
6230 struct tree_vec_map *h, in;
6232 if (!DECL_HAS_DEBUG_ARGS_P (from))
6233 return NULL;
6234 gcc_checking_assert (debug_args_for_decl != NULL);
6235 in.base.from = from;
6236 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6237 if (h)
6238 return &h->to;
6239 return NULL;
6242 /* Insert a mapping FROM->empty vector of debug arguments in the value
6243 expression hashtable. */
6245 vec<tree, va_gc> **
6246 decl_debug_args_insert (tree from)
6248 struct tree_vec_map *h;
6249 tree_vec_map **loc;
6251 if (DECL_HAS_DEBUG_ARGS_P (from))
6252 return decl_debug_args_lookup (from);
6253 if (debug_args_for_decl == NULL)
6254 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6255 h = ggc_alloc<tree_vec_map> ();
6256 h->base.from = from;
6257 h->to = NULL;
6258 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6259 *loc = h;
6260 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6261 return &h->to;
6264 /* Hashing of types so that we don't make duplicates.
6265 The entry point is `type_hash_canon'. */
6267 /* Generate the default hash code for TYPE. This is designed for
6268 speed, rather than maximum entropy. */
6270 hashval_t
6271 type_hash_canon_hash (tree type)
6273 inchash::hash hstate;
6275 hstate.add_int (TREE_CODE (type));
6277 if (TREE_TYPE (type))
6278 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6280 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6281 /* Just the identifier is adequate to distinguish. */
6282 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6284 switch (TREE_CODE (type))
6286 case METHOD_TYPE:
6287 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6288 /* FALLTHROUGH. */
6289 case FUNCTION_TYPE:
6290 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6291 if (TREE_VALUE (t) != error_mark_node)
6292 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6293 break;
6295 case OFFSET_TYPE:
6296 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6297 break;
6299 case ARRAY_TYPE:
6301 if (TYPE_DOMAIN (type))
6302 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6303 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6305 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6306 hstate.add_object (typeless);
6309 break;
6311 case INTEGER_TYPE:
6313 tree t = TYPE_MAX_VALUE (type);
6314 if (!t)
6315 t = TYPE_MIN_VALUE (type);
6316 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6317 hstate.add_object (TREE_INT_CST_ELT (t, i));
6318 break;
6321 case REAL_TYPE:
6322 case FIXED_POINT_TYPE:
6324 unsigned prec = TYPE_PRECISION (type);
6325 hstate.add_object (prec);
6326 break;
6329 case VECTOR_TYPE:
6331 unsigned nunits = TYPE_VECTOR_SUBPARTS (type);
6332 hstate.add_object (nunits);
6333 break;
6336 default:
6337 break;
6340 return hstate.end ();
6343 /* These are the Hashtable callback functions. */
6345 /* Returns true iff the types are equivalent. */
6347 bool
6348 type_cache_hasher::equal (type_hash *a, type_hash *b)
6350 /* First test the things that are the same for all types. */
6351 if (a->hash != b->hash
6352 || TREE_CODE (a->type) != TREE_CODE (b->type)
6353 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6354 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6355 TYPE_ATTRIBUTES (b->type))
6356 || (TREE_CODE (a->type) != COMPLEX_TYPE
6357 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6358 return 0;
6360 /* Be careful about comparing arrays before and after the element type
6361 has been completed; don't compare TYPE_ALIGN unless both types are
6362 complete. */
6363 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6364 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6365 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6366 return 0;
6368 switch (TREE_CODE (a->type))
6370 case VOID_TYPE:
6371 case COMPLEX_TYPE:
6372 case POINTER_TYPE:
6373 case REFERENCE_TYPE:
6374 case NULLPTR_TYPE:
6375 return 1;
6377 case VECTOR_TYPE:
6378 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
6380 case ENUMERAL_TYPE:
6381 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6382 && !(TYPE_VALUES (a->type)
6383 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6384 && TYPE_VALUES (b->type)
6385 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6386 && type_list_equal (TYPE_VALUES (a->type),
6387 TYPE_VALUES (b->type))))
6388 return 0;
6390 /* fall through */
6392 case INTEGER_TYPE:
6393 case REAL_TYPE:
6394 case BOOLEAN_TYPE:
6395 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6396 return false;
6397 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6398 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6399 TYPE_MAX_VALUE (b->type)))
6400 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6401 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6402 TYPE_MIN_VALUE (b->type))));
6404 case FIXED_POINT_TYPE:
6405 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6407 case OFFSET_TYPE:
6408 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6410 case METHOD_TYPE:
6411 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6412 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6413 || (TYPE_ARG_TYPES (a->type)
6414 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6415 && TYPE_ARG_TYPES (b->type)
6416 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6417 && type_list_equal (TYPE_ARG_TYPES (a->type),
6418 TYPE_ARG_TYPES (b->type)))))
6419 break;
6420 return 0;
6421 case ARRAY_TYPE:
6422 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6423 where the flag should be inherited from the element type
6424 and can change after ARRAY_TYPEs are created; on non-aggregates
6425 compare it and hash it, scalars will never have that flag set
6426 and we need to differentiate between arrays created by different
6427 front-ends or middle-end created arrays. */
6428 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6429 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6430 || (TYPE_TYPELESS_STORAGE (a->type)
6431 == TYPE_TYPELESS_STORAGE (b->type))));
6433 case RECORD_TYPE:
6434 case UNION_TYPE:
6435 case QUAL_UNION_TYPE:
6436 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6437 || (TYPE_FIELDS (a->type)
6438 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6439 && TYPE_FIELDS (b->type)
6440 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6441 && type_list_equal (TYPE_FIELDS (a->type),
6442 TYPE_FIELDS (b->type))));
6444 case FUNCTION_TYPE:
6445 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6446 || (TYPE_ARG_TYPES (a->type)
6447 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6448 && TYPE_ARG_TYPES (b->type)
6449 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6450 && type_list_equal (TYPE_ARG_TYPES (a->type),
6451 TYPE_ARG_TYPES (b->type))))
6452 break;
6453 return 0;
6455 default:
6456 return 0;
6459 if (lang_hooks.types.type_hash_eq != NULL)
6460 return lang_hooks.types.type_hash_eq (a->type, b->type);
6462 return 1;
6465 /* Given TYPE, and HASHCODE its hash code, return the canonical
6466 object for an identical type if one already exists.
6467 Otherwise, return TYPE, and record it as the canonical object.
6469 To use this function, first create a type of the sort you want.
6470 Then compute its hash code from the fields of the type that
6471 make it different from other similar types.
6472 Then call this function and use the value. */
6474 tree
6475 type_hash_canon (unsigned int hashcode, tree type)
6477 type_hash in;
6478 type_hash **loc;
6480 /* The hash table only contains main variants, so ensure that's what we're
6481 being passed. */
6482 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6484 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6485 must call that routine before comparing TYPE_ALIGNs. */
6486 layout_type (type);
6488 in.hash = hashcode;
6489 in.type = type;
6491 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
6492 if (*loc)
6494 tree t1 = ((type_hash *) *loc)->type;
6495 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1);
6496 if (TYPE_UID (type) + 1 == next_type_uid)
6497 --next_type_uid;
6498 /* Free also min/max values and the cache for integer
6499 types. This can't be done in free_node, as LTO frees
6500 those on its own. */
6501 if (TREE_CODE (type) == INTEGER_TYPE)
6503 if (TYPE_MIN_VALUE (type)
6504 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
6506 /* Zero is always in TYPE_CACHED_VALUES. */
6507 if (! TYPE_UNSIGNED (type))
6508 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
6509 ggc_free (TYPE_MIN_VALUE (type));
6511 if (TYPE_MAX_VALUE (type)
6512 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
6514 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
6515 ggc_free (TYPE_MAX_VALUE (type));
6517 if (TYPE_CACHED_VALUES_P (type))
6518 ggc_free (TYPE_CACHED_VALUES (type));
6520 free_node (type);
6521 return t1;
6523 else
6525 struct type_hash *h;
6527 h = ggc_alloc<type_hash> ();
6528 h->hash = hashcode;
6529 h->type = type;
6530 *loc = h;
6532 return type;
6536 static void
6537 print_type_hash_statistics (void)
6539 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6540 (long) type_hash_table->size (),
6541 (long) type_hash_table->elements (),
6542 type_hash_table->collisions ());
6545 /* Given two lists of types
6546 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6547 return 1 if the lists contain the same types in the same order.
6548 Also, the TREE_PURPOSEs must match. */
6551 type_list_equal (const_tree l1, const_tree l2)
6553 const_tree t1, t2;
6555 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6556 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6557 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6558 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6559 && (TREE_TYPE (TREE_PURPOSE (t1))
6560 == TREE_TYPE (TREE_PURPOSE (t2))))))
6561 return 0;
6563 return t1 == t2;
6566 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6567 given by TYPE. If the argument list accepts variable arguments,
6568 then this function counts only the ordinary arguments. */
6571 type_num_arguments (const_tree type)
6573 int i = 0;
6574 tree t;
6576 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6577 /* If the function does not take a variable number of arguments,
6578 the last element in the list will have type `void'. */
6579 if (VOID_TYPE_P (TREE_VALUE (t)))
6580 break;
6581 else
6582 ++i;
6584 return i;
6587 /* Nonzero if integer constants T1 and T2
6588 represent the same constant value. */
6591 tree_int_cst_equal (const_tree t1, const_tree t2)
6593 if (t1 == t2)
6594 return 1;
6596 if (t1 == 0 || t2 == 0)
6597 return 0;
6599 if (TREE_CODE (t1) == INTEGER_CST
6600 && TREE_CODE (t2) == INTEGER_CST
6601 && wi::to_widest (t1) == wi::to_widest (t2))
6602 return 1;
6604 return 0;
6607 /* Return true if T is an INTEGER_CST whose numerical value (extended
6608 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6610 bool
6611 tree_fits_shwi_p (const_tree t)
6613 return (t != NULL_TREE
6614 && TREE_CODE (t) == INTEGER_CST
6615 && wi::fits_shwi_p (wi::to_widest (t)));
6618 /* Return true if T is an INTEGER_CST whose numerical value (extended
6619 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6621 bool
6622 tree_fits_uhwi_p (const_tree t)
6624 return (t != NULL_TREE
6625 && TREE_CODE (t) == INTEGER_CST
6626 && wi::fits_uhwi_p (wi::to_widest (t)));
6629 /* T is an INTEGER_CST whose numerical value (extended according to
6630 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
6631 HOST_WIDE_INT. */
6633 HOST_WIDE_INT
6634 tree_to_shwi (const_tree t)
6636 gcc_assert (tree_fits_shwi_p (t));
6637 return TREE_INT_CST_LOW (t);
6640 /* T is an INTEGER_CST whose numerical value (extended according to
6641 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
6642 HOST_WIDE_INT. */
6644 unsigned HOST_WIDE_INT
6645 tree_to_uhwi (const_tree t)
6647 gcc_assert (tree_fits_uhwi_p (t));
6648 return TREE_INT_CST_LOW (t);
6651 /* Return the most significant (sign) bit of T. */
6654 tree_int_cst_sign_bit (const_tree t)
6656 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
6658 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
6661 /* Return an indication of the sign of the integer constant T.
6662 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6663 Note that -1 will never be returned if T's type is unsigned. */
6666 tree_int_cst_sgn (const_tree t)
6668 if (wi::to_wide (t) == 0)
6669 return 0;
6670 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6671 return 1;
6672 else if (wi::neg_p (wi::to_wide (t)))
6673 return -1;
6674 else
6675 return 1;
6678 /* Return the minimum number of bits needed to represent VALUE in a
6679 signed or unsigned type, UNSIGNEDP says which. */
6681 unsigned int
6682 tree_int_cst_min_precision (tree value, signop sgn)
6684 /* If the value is negative, compute its negative minus 1. The latter
6685 adjustment is because the absolute value of the largest negative value
6686 is one larger than the largest positive value. This is equivalent to
6687 a bit-wise negation, so use that operation instead. */
6689 if (tree_int_cst_sgn (value) < 0)
6690 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6692 /* Return the number of bits needed, taking into account the fact
6693 that we need one more bit for a signed than unsigned type.
6694 If value is 0 or -1, the minimum precision is 1 no matter
6695 whether unsignedp is true or false. */
6697 if (integer_zerop (value))
6698 return 1;
6699 else
6700 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
6703 /* Return truthvalue of whether T1 is the same tree structure as T2.
6704 Return 1 if they are the same.
6705 Return 0 if they are understandably different.
6706 Return -1 if either contains tree structure not understood by
6707 this function. */
6710 simple_cst_equal (const_tree t1, const_tree t2)
6712 enum tree_code code1, code2;
6713 int cmp;
6714 int i;
6716 if (t1 == t2)
6717 return 1;
6718 if (t1 == 0 || t2 == 0)
6719 return 0;
6721 code1 = TREE_CODE (t1);
6722 code2 = TREE_CODE (t2);
6724 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6726 if (CONVERT_EXPR_CODE_P (code2)
6727 || code2 == NON_LVALUE_EXPR)
6728 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6729 else
6730 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6733 else if (CONVERT_EXPR_CODE_P (code2)
6734 || code2 == NON_LVALUE_EXPR)
6735 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6737 if (code1 != code2)
6738 return 0;
6740 switch (code1)
6742 case INTEGER_CST:
6743 return wi::to_widest (t1) == wi::to_widest (t2);
6745 case REAL_CST:
6746 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
6748 case FIXED_CST:
6749 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6751 case STRING_CST:
6752 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6753 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6754 TREE_STRING_LENGTH (t1)));
6756 case CONSTRUCTOR:
6758 unsigned HOST_WIDE_INT idx;
6759 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
6760 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
6762 if (vec_safe_length (v1) != vec_safe_length (v2))
6763 return false;
6765 for (idx = 0; idx < vec_safe_length (v1); ++idx)
6766 /* ??? Should we handle also fields here? */
6767 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
6768 return false;
6769 return true;
6772 case SAVE_EXPR:
6773 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6775 case CALL_EXPR:
6776 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6777 if (cmp <= 0)
6778 return cmp;
6779 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6780 return 0;
6782 const_tree arg1, arg2;
6783 const_call_expr_arg_iterator iter1, iter2;
6784 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6785 arg2 = first_const_call_expr_arg (t2, &iter2);
6786 arg1 && arg2;
6787 arg1 = next_const_call_expr_arg (&iter1),
6788 arg2 = next_const_call_expr_arg (&iter2))
6790 cmp = simple_cst_equal (arg1, arg2);
6791 if (cmp <= 0)
6792 return cmp;
6794 return arg1 == arg2;
6797 case TARGET_EXPR:
6798 /* Special case: if either target is an unallocated VAR_DECL,
6799 it means that it's going to be unified with whatever the
6800 TARGET_EXPR is really supposed to initialize, so treat it
6801 as being equivalent to anything. */
6802 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6803 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6804 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6805 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6806 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6807 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6808 cmp = 1;
6809 else
6810 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6812 if (cmp <= 0)
6813 return cmp;
6815 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6817 case WITH_CLEANUP_EXPR:
6818 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6819 if (cmp <= 0)
6820 return cmp;
6822 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6824 case COMPONENT_REF:
6825 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6826 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6828 return 0;
6830 case VAR_DECL:
6831 case PARM_DECL:
6832 case CONST_DECL:
6833 case FUNCTION_DECL:
6834 return 0;
6836 default:
6837 break;
6840 /* This general rule works for most tree codes. All exceptions should be
6841 handled above. If this is a language-specific tree code, we can't
6842 trust what might be in the operand, so say we don't know
6843 the situation. */
6844 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
6845 return -1;
6847 switch (TREE_CODE_CLASS (code1))
6849 case tcc_unary:
6850 case tcc_binary:
6851 case tcc_comparison:
6852 case tcc_expression:
6853 case tcc_reference:
6854 case tcc_statement:
6855 cmp = 1;
6856 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
6858 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
6859 if (cmp <= 0)
6860 return cmp;
6863 return cmp;
6865 default:
6866 return -1;
6870 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6871 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6872 than U, respectively. */
6875 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
6877 if (tree_int_cst_sgn (t) < 0)
6878 return -1;
6879 else if (!tree_fits_uhwi_p (t))
6880 return 1;
6881 else if (TREE_INT_CST_LOW (t) == u)
6882 return 0;
6883 else if (TREE_INT_CST_LOW (t) < u)
6884 return -1;
6885 else
6886 return 1;
6889 /* Return true if SIZE represents a constant size that is in bounds of
6890 what the middle-end and the backend accepts (covering not more than
6891 half of the address-space). */
6893 bool
6894 valid_constant_size_p (const_tree size)
6896 if (! tree_fits_uhwi_p (size)
6897 || TREE_OVERFLOW (size)
6898 || tree_int_cst_sign_bit (size) != 0)
6899 return false;
6900 return true;
6903 /* Return the precision of the type, or for a complex or vector type the
6904 precision of the type of its elements. */
6906 unsigned int
6907 element_precision (const_tree type)
6909 if (!TYPE_P (type))
6910 type = TREE_TYPE (type);
6911 enum tree_code code = TREE_CODE (type);
6912 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
6913 type = TREE_TYPE (type);
6915 return TYPE_PRECISION (type);
6918 /* Return true if CODE represents an associative tree code. Otherwise
6919 return false. */
6920 bool
6921 associative_tree_code (enum tree_code code)
6923 switch (code)
6925 case BIT_IOR_EXPR:
6926 case BIT_AND_EXPR:
6927 case BIT_XOR_EXPR:
6928 case PLUS_EXPR:
6929 case MULT_EXPR:
6930 case MIN_EXPR:
6931 case MAX_EXPR:
6932 return true;
6934 default:
6935 break;
6937 return false;
6940 /* Return true if CODE represents a commutative tree code. Otherwise
6941 return false. */
6942 bool
6943 commutative_tree_code (enum tree_code code)
6945 switch (code)
6947 case PLUS_EXPR:
6948 case MULT_EXPR:
6949 case MULT_HIGHPART_EXPR:
6950 case MIN_EXPR:
6951 case MAX_EXPR:
6952 case BIT_IOR_EXPR:
6953 case BIT_XOR_EXPR:
6954 case BIT_AND_EXPR:
6955 case NE_EXPR:
6956 case EQ_EXPR:
6957 case UNORDERED_EXPR:
6958 case ORDERED_EXPR:
6959 case UNEQ_EXPR:
6960 case LTGT_EXPR:
6961 case TRUTH_AND_EXPR:
6962 case TRUTH_XOR_EXPR:
6963 case TRUTH_OR_EXPR:
6964 case WIDEN_MULT_EXPR:
6965 case VEC_WIDEN_MULT_HI_EXPR:
6966 case VEC_WIDEN_MULT_LO_EXPR:
6967 case VEC_WIDEN_MULT_EVEN_EXPR:
6968 case VEC_WIDEN_MULT_ODD_EXPR:
6969 return true;
6971 default:
6972 break;
6974 return false;
6977 /* Return true if CODE represents a ternary tree code for which the
6978 first two operands are commutative. Otherwise return false. */
6979 bool
6980 commutative_ternary_tree_code (enum tree_code code)
6982 switch (code)
6984 case WIDEN_MULT_PLUS_EXPR:
6985 case WIDEN_MULT_MINUS_EXPR:
6986 case DOT_PROD_EXPR:
6987 case FMA_EXPR:
6988 return true;
6990 default:
6991 break;
6993 return false;
6996 /* Returns true if CODE can overflow. */
6998 bool
6999 operation_can_overflow (enum tree_code code)
7001 switch (code)
7003 case PLUS_EXPR:
7004 case MINUS_EXPR:
7005 case MULT_EXPR:
7006 case LSHIFT_EXPR:
7007 /* Can overflow in various ways. */
7008 return true;
7009 case TRUNC_DIV_EXPR:
7010 case EXACT_DIV_EXPR:
7011 case FLOOR_DIV_EXPR:
7012 case CEIL_DIV_EXPR:
7013 /* For INT_MIN / -1. */
7014 return true;
7015 case NEGATE_EXPR:
7016 case ABS_EXPR:
7017 /* For -INT_MIN. */
7018 return true;
7019 default:
7020 /* These operators cannot overflow. */
7021 return false;
7025 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7026 ftrapv doesn't generate trapping insns for CODE. */
7028 bool
7029 operation_no_trapping_overflow (tree type, enum tree_code code)
7031 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7033 /* We don't generate instructions that trap on overflow for complex or vector
7034 types. */
7035 if (!INTEGRAL_TYPE_P (type))
7036 return true;
7038 if (!TYPE_OVERFLOW_TRAPS (type))
7039 return true;
7041 switch (code)
7043 case PLUS_EXPR:
7044 case MINUS_EXPR:
7045 case MULT_EXPR:
7046 case NEGATE_EXPR:
7047 case ABS_EXPR:
7048 /* These operators can overflow, and -ftrapv generates trapping code for
7049 these. */
7050 return false;
7051 case TRUNC_DIV_EXPR:
7052 case EXACT_DIV_EXPR:
7053 case FLOOR_DIV_EXPR:
7054 case CEIL_DIV_EXPR:
7055 case LSHIFT_EXPR:
7056 /* These operators can overflow, but -ftrapv does not generate trapping
7057 code for these. */
7058 return true;
7059 default:
7060 /* These operators cannot overflow. */
7061 return true;
7065 namespace inchash
7068 /* Generate a hash value for an expression. This can be used iteratively
7069 by passing a previous result as the HSTATE argument.
7071 This function is intended to produce the same hash for expressions which
7072 would compare equal using operand_equal_p. */
7073 void
7074 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7076 int i;
7077 enum tree_code code;
7078 enum tree_code_class tclass;
7080 if (t == NULL_TREE || t == error_mark_node)
7082 hstate.merge_hash (0);
7083 return;
7086 if (!(flags & OEP_ADDRESS_OF))
7087 STRIP_NOPS (t);
7089 code = TREE_CODE (t);
7091 switch (code)
7093 /* Alas, constants aren't shared, so we can't rely on pointer
7094 identity. */
7095 case VOID_CST:
7096 hstate.merge_hash (0);
7097 return;
7098 case INTEGER_CST:
7099 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7100 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7101 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7102 return;
7103 case REAL_CST:
7105 unsigned int val2;
7106 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7107 val2 = rvc_zero;
7108 else
7109 val2 = real_hash (TREE_REAL_CST_PTR (t));
7110 hstate.merge_hash (val2);
7111 return;
7113 case FIXED_CST:
7115 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7116 hstate.merge_hash (val2);
7117 return;
7119 case STRING_CST:
7120 hstate.add ((const void *) TREE_STRING_POINTER (t),
7121 TREE_STRING_LENGTH (t));
7122 return;
7123 case COMPLEX_CST:
7124 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7125 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7126 return;
7127 case VECTOR_CST:
7129 unsigned i;
7130 for (i = 0; i < VECTOR_CST_NELTS (t); ++i)
7131 inchash::add_expr (VECTOR_CST_ELT (t, i), hstate, flags);
7132 return;
7134 case SSA_NAME:
7135 /* We can just compare by pointer. */
7136 hstate.add_hwi (SSA_NAME_VERSION (t));
7137 return;
7138 case PLACEHOLDER_EXPR:
7139 /* The node itself doesn't matter. */
7140 return;
7141 case BLOCK:
7142 case OMP_CLAUSE:
7143 /* Ignore. */
7144 return;
7145 case TREE_LIST:
7146 /* A list of expressions, for a CALL_EXPR or as the elements of a
7147 VECTOR_CST. */
7148 for (; t; t = TREE_CHAIN (t))
7149 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7150 return;
7151 case CONSTRUCTOR:
7153 unsigned HOST_WIDE_INT idx;
7154 tree field, value;
7155 flags &= ~OEP_ADDRESS_OF;
7156 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7158 inchash::add_expr (field, hstate, flags);
7159 inchash::add_expr (value, hstate, flags);
7161 return;
7163 case STATEMENT_LIST:
7165 tree_stmt_iterator i;
7166 for (i = tsi_start (CONST_CAST_TREE (t));
7167 !tsi_end_p (i); tsi_next (&i))
7168 inchash::add_expr (tsi_stmt (i), hstate, flags);
7169 return;
7171 case TREE_VEC:
7172 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7173 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7174 return;
7175 case FUNCTION_DECL:
7176 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7177 Otherwise nodes that compare equal according to operand_equal_p might
7178 get different hash codes. However, don't do this for machine specific
7179 or front end builtins, since the function code is overloaded in those
7180 cases. */
7181 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7182 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7184 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7185 code = TREE_CODE (t);
7187 /* FALL THROUGH */
7188 default:
7189 tclass = TREE_CODE_CLASS (code);
7191 if (tclass == tcc_declaration)
7193 /* DECL's have a unique ID */
7194 hstate.add_hwi (DECL_UID (t));
7196 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7198 /* For comparisons that can be swapped, use the lower
7199 tree code. */
7200 enum tree_code ccode = swap_tree_comparison (code);
7201 if (code < ccode)
7202 ccode = code;
7203 hstate.add_object (ccode);
7204 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7205 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7207 else if (CONVERT_EXPR_CODE_P (code))
7209 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7210 operand_equal_p. */
7211 enum tree_code ccode = NOP_EXPR;
7212 hstate.add_object (ccode);
7214 /* Don't hash the type, that can lead to having nodes which
7215 compare equal according to operand_equal_p, but which
7216 have different hash codes. Make sure to include signedness
7217 in the hash computation. */
7218 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7219 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7221 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7222 else if (code == MEM_REF
7223 && (flags & OEP_ADDRESS_OF) != 0
7224 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7225 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7226 && integer_zerop (TREE_OPERAND (t, 1)))
7227 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7228 hstate, flags);
7229 /* Don't ICE on FE specific trees, or their arguments etc.
7230 during operand_equal_p hash verification. */
7231 else if (!IS_EXPR_CODE_CLASS (tclass))
7232 gcc_assert (flags & OEP_HASH_CHECK);
7233 else
7235 unsigned int sflags = flags;
7237 hstate.add_object (code);
7239 switch (code)
7241 case ADDR_EXPR:
7242 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7243 flags |= OEP_ADDRESS_OF;
7244 sflags = flags;
7245 break;
7247 case INDIRECT_REF:
7248 case MEM_REF:
7249 case TARGET_MEM_REF:
7250 flags &= ~OEP_ADDRESS_OF;
7251 sflags = flags;
7252 break;
7254 case ARRAY_REF:
7255 case ARRAY_RANGE_REF:
7256 case COMPONENT_REF:
7257 case BIT_FIELD_REF:
7258 sflags &= ~OEP_ADDRESS_OF;
7259 break;
7261 case COND_EXPR:
7262 flags &= ~OEP_ADDRESS_OF;
7263 break;
7265 case FMA_EXPR:
7266 case WIDEN_MULT_PLUS_EXPR:
7267 case WIDEN_MULT_MINUS_EXPR:
7269 /* The multiplication operands are commutative. */
7270 inchash::hash one, two;
7271 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7272 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7273 hstate.add_commutative (one, two);
7274 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7275 return;
7278 case CALL_EXPR:
7279 if (CALL_EXPR_FN (t) == NULL_TREE)
7280 hstate.add_int (CALL_EXPR_IFN (t));
7281 break;
7283 case TARGET_EXPR:
7284 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7285 Usually different TARGET_EXPRs just should use
7286 different temporaries in their slots. */
7287 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7288 return;
7290 default:
7291 break;
7294 /* Don't hash the type, that can lead to having nodes which
7295 compare equal according to operand_equal_p, but which
7296 have different hash codes. */
7297 if (code == NON_LVALUE_EXPR)
7299 /* Make sure to include signness in the hash computation. */
7300 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7301 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7304 else if (commutative_tree_code (code))
7306 /* It's a commutative expression. We want to hash it the same
7307 however it appears. We do this by first hashing both operands
7308 and then rehashing based on the order of their independent
7309 hashes. */
7310 inchash::hash one, two;
7311 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7312 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7313 hstate.add_commutative (one, two);
7315 else
7316 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7317 inchash::add_expr (TREE_OPERAND (t, i), hstate,
7318 i == 0 ? flags : sflags);
7320 return;
7326 /* Constructors for pointer, array and function types.
7327 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7328 constructed by language-dependent code, not here.) */
7330 /* Construct, lay out and return the type of pointers to TO_TYPE with
7331 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7332 reference all of memory. If such a type has already been
7333 constructed, reuse it. */
7335 tree
7336 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7337 bool can_alias_all)
7339 tree t;
7340 bool could_alias = can_alias_all;
7342 if (to_type == error_mark_node)
7343 return error_mark_node;
7345 /* If the pointed-to type has the may_alias attribute set, force
7346 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7347 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7348 can_alias_all = true;
7350 /* In some cases, languages will have things that aren't a POINTER_TYPE
7351 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7352 In that case, return that type without regard to the rest of our
7353 operands.
7355 ??? This is a kludge, but consistent with the way this function has
7356 always operated and there doesn't seem to be a good way to avoid this
7357 at the moment. */
7358 if (TYPE_POINTER_TO (to_type) != 0
7359 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7360 return TYPE_POINTER_TO (to_type);
7362 /* First, if we already have a type for pointers to TO_TYPE and it's
7363 the proper mode, use it. */
7364 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7365 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7366 return t;
7368 t = make_node (POINTER_TYPE);
7370 TREE_TYPE (t) = to_type;
7371 SET_TYPE_MODE (t, mode);
7372 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7373 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7374 TYPE_POINTER_TO (to_type) = t;
7376 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7377 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7378 SET_TYPE_STRUCTURAL_EQUALITY (t);
7379 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7380 TYPE_CANONICAL (t)
7381 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7382 mode, false);
7384 /* Lay out the type. This function has many callers that are concerned
7385 with expression-construction, and this simplifies them all. */
7386 layout_type (t);
7388 return t;
7391 /* By default build pointers in ptr_mode. */
7393 tree
7394 build_pointer_type (tree to_type)
7396 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7397 : TYPE_ADDR_SPACE (to_type);
7398 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7399 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7402 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7404 tree
7405 build_reference_type_for_mode (tree to_type, machine_mode mode,
7406 bool can_alias_all)
7408 tree t;
7409 bool could_alias = can_alias_all;
7411 if (to_type == error_mark_node)
7412 return error_mark_node;
7414 /* If the pointed-to type has the may_alias attribute set, force
7415 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7416 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7417 can_alias_all = true;
7419 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7420 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7421 In that case, return that type without regard to the rest of our
7422 operands.
7424 ??? This is a kludge, but consistent with the way this function has
7425 always operated and there doesn't seem to be a good way to avoid this
7426 at the moment. */
7427 if (TYPE_REFERENCE_TO (to_type) != 0
7428 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7429 return TYPE_REFERENCE_TO (to_type);
7431 /* First, if we already have a type for pointers to TO_TYPE and it's
7432 the proper mode, use it. */
7433 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7434 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7435 return t;
7437 t = make_node (REFERENCE_TYPE);
7439 TREE_TYPE (t) = to_type;
7440 SET_TYPE_MODE (t, mode);
7441 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7442 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7443 TYPE_REFERENCE_TO (to_type) = t;
7445 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7446 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7447 SET_TYPE_STRUCTURAL_EQUALITY (t);
7448 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7449 TYPE_CANONICAL (t)
7450 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7451 mode, false);
7453 layout_type (t);
7455 return t;
7459 /* Build the node for the type of references-to-TO_TYPE by default
7460 in ptr_mode. */
7462 tree
7463 build_reference_type (tree to_type)
7465 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7466 : TYPE_ADDR_SPACE (to_type);
7467 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7468 return build_reference_type_for_mode (to_type, pointer_mode, false);
7471 #define MAX_INT_CACHED_PREC \
7472 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7473 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7475 /* Builds a signed or unsigned integer type of precision PRECISION.
7476 Used for C bitfields whose precision does not match that of
7477 built-in target types. */
7478 tree
7479 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7480 int unsignedp)
7482 tree itype, ret;
7484 if (unsignedp)
7485 unsignedp = MAX_INT_CACHED_PREC + 1;
7487 if (precision <= MAX_INT_CACHED_PREC)
7489 itype = nonstandard_integer_type_cache[precision + unsignedp];
7490 if (itype)
7491 return itype;
7494 itype = make_node (INTEGER_TYPE);
7495 TYPE_PRECISION (itype) = precision;
7497 if (unsignedp)
7498 fixup_unsigned_type (itype);
7499 else
7500 fixup_signed_type (itype);
7502 ret = itype;
7504 inchash::hash hstate;
7505 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
7506 ret = type_hash_canon (hstate.end (), itype);
7507 if (precision <= MAX_INT_CACHED_PREC)
7508 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7510 return ret;
7513 #define MAX_BOOL_CACHED_PREC \
7514 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7515 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
7517 /* Builds a boolean type of precision PRECISION.
7518 Used for boolean vectors to choose proper vector element size. */
7519 tree
7520 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
7522 tree type;
7524 if (precision <= MAX_BOOL_CACHED_PREC)
7526 type = nonstandard_boolean_type_cache[precision];
7527 if (type)
7528 return type;
7531 type = make_node (BOOLEAN_TYPE);
7532 TYPE_PRECISION (type) = precision;
7533 fixup_signed_type (type);
7535 if (precision <= MAX_INT_CACHED_PREC)
7536 nonstandard_boolean_type_cache[precision] = type;
7538 return type;
7541 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7542 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7543 is true, reuse such a type that has already been constructed. */
7545 static tree
7546 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7548 tree itype = make_node (INTEGER_TYPE);
7550 TREE_TYPE (itype) = type;
7552 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7553 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7555 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7556 SET_TYPE_MODE (itype, TYPE_MODE (type));
7557 TYPE_SIZE (itype) = TYPE_SIZE (type);
7558 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7559 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
7560 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7561 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
7563 if (!shared)
7564 return itype;
7566 if ((TYPE_MIN_VALUE (itype)
7567 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7568 || (TYPE_MAX_VALUE (itype)
7569 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7571 /* Since we cannot reliably merge this type, we need to compare it using
7572 structural equality checks. */
7573 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7574 return itype;
7577 hashval_t hash = type_hash_canon_hash (itype);
7578 itype = type_hash_canon (hash, itype);
7580 return itype;
7583 /* Wrapper around build_range_type_1 with SHARED set to true. */
7585 tree
7586 build_range_type (tree type, tree lowval, tree highval)
7588 return build_range_type_1 (type, lowval, highval, true);
7591 /* Wrapper around build_range_type_1 with SHARED set to false. */
7593 tree
7594 build_nonshared_range_type (tree type, tree lowval, tree highval)
7596 return build_range_type_1 (type, lowval, highval, false);
7599 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7600 MAXVAL should be the maximum value in the domain
7601 (one less than the length of the array).
7603 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7604 We don't enforce this limit, that is up to caller (e.g. language front end).
7605 The limit exists because the result is a signed type and we don't handle
7606 sizes that use more than one HOST_WIDE_INT. */
7608 tree
7609 build_index_type (tree maxval)
7611 return build_range_type (sizetype, size_zero_node, maxval);
7614 /* Return true if the debug information for TYPE, a subtype, should be emitted
7615 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7616 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7617 debug info and doesn't reflect the source code. */
7619 bool
7620 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7622 tree base_type = TREE_TYPE (type), low, high;
7624 /* Subrange types have a base type which is an integral type. */
7625 if (!INTEGRAL_TYPE_P (base_type))
7626 return false;
7628 /* Get the real bounds of the subtype. */
7629 if (lang_hooks.types.get_subrange_bounds)
7630 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7631 else
7633 low = TYPE_MIN_VALUE (type);
7634 high = TYPE_MAX_VALUE (type);
7637 /* If the type and its base type have the same representation and the same
7638 name, then the type is not a subrange but a copy of the base type. */
7639 if ((TREE_CODE (base_type) == INTEGER_TYPE
7640 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7641 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7642 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7643 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
7644 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
7645 return false;
7647 if (lowval)
7648 *lowval = low;
7649 if (highval)
7650 *highval = high;
7651 return true;
7654 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7655 and number of elements specified by the range of values of INDEX_TYPE.
7656 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
7657 If SHARED is true, reuse such a type that has already been constructed. */
7659 static tree
7660 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
7661 bool shared)
7663 tree t;
7665 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7667 error ("arrays of functions are not meaningful");
7668 elt_type = integer_type_node;
7671 t = make_node (ARRAY_TYPE);
7672 TREE_TYPE (t) = elt_type;
7673 TYPE_DOMAIN (t) = index_type;
7674 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7675 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
7676 layout_type (t);
7678 /* If the element type is incomplete at this point we get marked for
7679 structural equality. Do not record these types in the canonical
7680 type hashtable. */
7681 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7682 return t;
7684 if (shared)
7686 hashval_t hash = type_hash_canon_hash (t);
7687 t = type_hash_canon (hash, t);
7690 if (TYPE_CANONICAL (t) == t)
7692 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7693 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
7694 || in_lto_p)
7695 SET_TYPE_STRUCTURAL_EQUALITY (t);
7696 else if (TYPE_CANONICAL (elt_type) != elt_type
7697 || (index_type && TYPE_CANONICAL (index_type) != index_type))
7698 TYPE_CANONICAL (t)
7699 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7700 index_type
7701 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7702 typeless_storage, shared);
7705 return t;
7708 /* Wrapper around build_array_type_1 with SHARED set to true. */
7710 tree
7711 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
7713 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
7716 /* Wrapper around build_array_type_1 with SHARED set to false. */
7718 tree
7719 build_nonshared_array_type (tree elt_type, tree index_type)
7721 return build_array_type_1 (elt_type, index_type, false, false);
7724 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7725 sizetype. */
7727 tree
7728 build_array_type_nelts (tree elt_type, unsigned HOST_WIDE_INT nelts)
7730 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7733 /* Recursively examines the array elements of TYPE, until a non-array
7734 element type is found. */
7736 tree
7737 strip_array_types (tree type)
7739 while (TREE_CODE (type) == ARRAY_TYPE)
7740 type = TREE_TYPE (type);
7742 return type;
7745 /* Computes the canonical argument types from the argument type list
7746 ARGTYPES.
7748 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7749 on entry to this function, or if any of the ARGTYPES are
7750 structural.
7752 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7753 true on entry to this function, or if any of the ARGTYPES are
7754 non-canonical.
7756 Returns a canonical argument list, which may be ARGTYPES when the
7757 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7758 true) or would not differ from ARGTYPES. */
7760 static tree
7761 maybe_canonicalize_argtypes (tree argtypes,
7762 bool *any_structural_p,
7763 bool *any_noncanonical_p)
7765 tree arg;
7766 bool any_noncanonical_argtypes_p = false;
7768 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7770 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7771 /* Fail gracefully by stating that the type is structural. */
7772 *any_structural_p = true;
7773 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7774 *any_structural_p = true;
7775 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7776 || TREE_PURPOSE (arg))
7777 /* If the argument has a default argument, we consider it
7778 non-canonical even though the type itself is canonical.
7779 That way, different variants of function and method types
7780 with default arguments will all point to the variant with
7781 no defaults as their canonical type. */
7782 any_noncanonical_argtypes_p = true;
7785 if (*any_structural_p)
7786 return argtypes;
7788 if (any_noncanonical_argtypes_p)
7790 /* Build the canonical list of argument types. */
7791 tree canon_argtypes = NULL_TREE;
7792 bool is_void = false;
7794 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7796 if (arg == void_list_node)
7797 is_void = true;
7798 else
7799 canon_argtypes = tree_cons (NULL_TREE,
7800 TYPE_CANONICAL (TREE_VALUE (arg)),
7801 canon_argtypes);
7804 canon_argtypes = nreverse (canon_argtypes);
7805 if (is_void)
7806 canon_argtypes = chainon (canon_argtypes, void_list_node);
7808 /* There is a non-canonical type. */
7809 *any_noncanonical_p = true;
7810 return canon_argtypes;
7813 /* The canonical argument types are the same as ARGTYPES. */
7814 return argtypes;
7817 /* Construct, lay out and return
7818 the type of functions returning type VALUE_TYPE
7819 given arguments of types ARG_TYPES.
7820 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7821 are data type nodes for the arguments of the function.
7822 If such a type has already been constructed, reuse it. */
7824 tree
7825 build_function_type (tree value_type, tree arg_types)
7827 tree t;
7828 inchash::hash hstate;
7829 bool any_structural_p, any_noncanonical_p;
7830 tree canon_argtypes;
7832 if (TREE_CODE (value_type) == FUNCTION_TYPE)
7834 error ("function return type cannot be function");
7835 value_type = integer_type_node;
7838 /* Make a node of the sort we want. */
7839 t = make_node (FUNCTION_TYPE);
7840 TREE_TYPE (t) = value_type;
7841 TYPE_ARG_TYPES (t) = arg_types;
7843 /* If we already have such a type, use the old one. */
7844 hashval_t hash = type_hash_canon_hash (t);
7845 t = type_hash_canon (hash, t);
7847 /* Set up the canonical type. */
7848 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
7849 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
7850 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
7851 &any_structural_p,
7852 &any_noncanonical_p);
7853 if (any_structural_p)
7854 SET_TYPE_STRUCTURAL_EQUALITY (t);
7855 else if (any_noncanonical_p)
7856 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
7857 canon_argtypes);
7859 if (!COMPLETE_TYPE_P (t))
7860 layout_type (t);
7861 return t;
7864 /* Build a function type. The RETURN_TYPE is the type returned by the
7865 function. If VAARGS is set, no void_type_node is appended to the
7866 list. ARGP must be always be terminated be a NULL_TREE. */
7868 static tree
7869 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
7871 tree t, args, last;
7873 t = va_arg (argp, tree);
7874 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
7875 args = tree_cons (NULL_TREE, t, args);
7877 if (vaargs)
7879 last = args;
7880 if (args != NULL_TREE)
7881 args = nreverse (args);
7882 gcc_assert (last != void_list_node);
7884 else if (args == NULL_TREE)
7885 args = void_list_node;
7886 else
7888 last = args;
7889 args = nreverse (args);
7890 TREE_CHAIN (last) = void_list_node;
7892 args = build_function_type (return_type, args);
7894 return args;
7897 /* Build a function type. The RETURN_TYPE is the type returned by the
7898 function. If additional arguments are provided, they are
7899 additional argument types. The list of argument types must always
7900 be terminated by NULL_TREE. */
7902 tree
7903 build_function_type_list (tree return_type, ...)
7905 tree args;
7906 va_list p;
7908 va_start (p, return_type);
7909 args = build_function_type_list_1 (false, return_type, p);
7910 va_end (p);
7911 return args;
7914 /* Build a variable argument function type. The RETURN_TYPE is the
7915 type returned by the function. If additional arguments are provided,
7916 they are additional argument types. The list of argument types must
7917 always be terminated by NULL_TREE. */
7919 tree
7920 build_varargs_function_type_list (tree return_type, ...)
7922 tree args;
7923 va_list p;
7925 va_start (p, return_type);
7926 args = build_function_type_list_1 (true, return_type, p);
7927 va_end (p);
7929 return args;
7932 /* Build a function type. RETURN_TYPE is the type returned by the
7933 function; VAARGS indicates whether the function takes varargs. The
7934 function takes N named arguments, the types of which are provided in
7935 ARG_TYPES. */
7937 static tree
7938 build_function_type_array_1 (bool vaargs, tree return_type, int n,
7939 tree *arg_types)
7941 int i;
7942 tree t = vaargs ? NULL_TREE : void_list_node;
7944 for (i = n - 1; i >= 0; i--)
7945 t = tree_cons (NULL_TREE, arg_types[i], t);
7947 return build_function_type (return_type, t);
7950 /* Build a function type. RETURN_TYPE is the type returned by the
7951 function. The function takes N named arguments, the types of which
7952 are provided in ARG_TYPES. */
7954 tree
7955 build_function_type_array (tree return_type, int n, tree *arg_types)
7957 return build_function_type_array_1 (false, return_type, n, arg_types);
7960 /* Build a variable argument function type. RETURN_TYPE is the type
7961 returned by the function. The function takes N named arguments, the
7962 types of which are provided in ARG_TYPES. */
7964 tree
7965 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
7967 return build_function_type_array_1 (true, return_type, n, arg_types);
7970 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7971 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7972 for the method. An implicit additional parameter (of type
7973 pointer-to-BASETYPE) is added to the ARGTYPES. */
7975 tree
7976 build_method_type_directly (tree basetype,
7977 tree rettype,
7978 tree argtypes)
7980 tree t;
7981 tree ptype;
7982 bool any_structural_p, any_noncanonical_p;
7983 tree canon_argtypes;
7985 /* Make a node of the sort we want. */
7986 t = make_node (METHOD_TYPE);
7988 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7989 TREE_TYPE (t) = rettype;
7990 ptype = build_pointer_type (basetype);
7992 /* The actual arglist for this function includes a "hidden" argument
7993 which is "this". Put it into the list of argument types. */
7994 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7995 TYPE_ARG_TYPES (t) = argtypes;
7997 /* If we already have such a type, use the old one. */
7998 hashval_t hash = type_hash_canon_hash (t);
7999 t = type_hash_canon (hash, t);
8001 /* Set up the canonical type. */
8002 any_structural_p
8003 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8004 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8005 any_noncanonical_p
8006 = (TYPE_CANONICAL (basetype) != basetype
8007 || TYPE_CANONICAL (rettype) != rettype);
8008 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8009 &any_structural_p,
8010 &any_noncanonical_p);
8011 if (any_structural_p)
8012 SET_TYPE_STRUCTURAL_EQUALITY (t);
8013 else if (any_noncanonical_p)
8014 TYPE_CANONICAL (t)
8015 = build_method_type_directly (TYPE_CANONICAL (basetype),
8016 TYPE_CANONICAL (rettype),
8017 canon_argtypes);
8018 if (!COMPLETE_TYPE_P (t))
8019 layout_type (t);
8021 return t;
8024 /* Construct, lay out and return the type of methods belonging to class
8025 BASETYPE and whose arguments and values are described by TYPE.
8026 If that type exists already, reuse it.
8027 TYPE must be a FUNCTION_TYPE node. */
8029 tree
8030 build_method_type (tree basetype, tree type)
8032 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8034 return build_method_type_directly (basetype,
8035 TREE_TYPE (type),
8036 TYPE_ARG_TYPES (type));
8039 /* Construct, lay out and return the type of offsets to a value
8040 of type TYPE, within an object of type BASETYPE.
8041 If a suitable offset type exists already, reuse it. */
8043 tree
8044 build_offset_type (tree basetype, tree type)
8046 tree t;
8048 /* Make a node of the sort we want. */
8049 t = make_node (OFFSET_TYPE);
8051 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8052 TREE_TYPE (t) = type;
8054 /* If we already have such a type, use the old one. */
8055 hashval_t hash = type_hash_canon_hash (t);
8056 t = type_hash_canon (hash, t);
8058 if (!COMPLETE_TYPE_P (t))
8059 layout_type (t);
8061 if (TYPE_CANONICAL (t) == t)
8063 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8064 || TYPE_STRUCTURAL_EQUALITY_P (type))
8065 SET_TYPE_STRUCTURAL_EQUALITY (t);
8066 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8067 || TYPE_CANONICAL (type) != type)
8068 TYPE_CANONICAL (t)
8069 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8070 TYPE_CANONICAL (type));
8073 return t;
8076 /* Create a complex type whose components are COMPONENT_TYPE.
8078 If NAMED is true, the type is given a TYPE_NAME. We do not always
8079 do so because this creates a DECL node and thus make the DECL_UIDs
8080 dependent on the type canonicalization hashtable, which is GC-ed,
8081 so the DECL_UIDs would not be stable wrt garbage collection. */
8083 tree
8084 build_complex_type (tree component_type, bool named)
8086 gcc_assert (INTEGRAL_TYPE_P (component_type)
8087 || SCALAR_FLOAT_TYPE_P (component_type)
8088 || FIXED_POINT_TYPE_P (component_type));
8090 /* Make a node of the sort we want. */
8091 tree probe = make_node (COMPLEX_TYPE);
8093 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8095 /* If we already have such a type, use the old one. */
8096 hashval_t hash = type_hash_canon_hash (probe);
8097 tree t = type_hash_canon (hash, probe);
8099 if (t == probe)
8101 /* We created a new type. The hash insertion will have laid
8102 out the type. We need to check the canonicalization and
8103 maybe set the name. */
8104 gcc_checking_assert (COMPLETE_TYPE_P (t)
8105 && !TYPE_NAME (t)
8106 && TYPE_CANONICAL (t) == t);
8108 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8109 SET_TYPE_STRUCTURAL_EQUALITY (t);
8110 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8111 TYPE_CANONICAL (t)
8112 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8114 /* We need to create a name, since complex is a fundamental type. */
8115 if (named)
8117 const char *name = NULL;
8119 if (TREE_TYPE (t) == char_type_node)
8120 name = "complex char";
8121 else if (TREE_TYPE (t) == signed_char_type_node)
8122 name = "complex signed char";
8123 else if (TREE_TYPE (t) == unsigned_char_type_node)
8124 name = "complex unsigned char";
8125 else if (TREE_TYPE (t) == short_integer_type_node)
8126 name = "complex short int";
8127 else if (TREE_TYPE (t) == short_unsigned_type_node)
8128 name = "complex short unsigned int";
8129 else if (TREE_TYPE (t) == integer_type_node)
8130 name = "complex int";
8131 else if (TREE_TYPE (t) == unsigned_type_node)
8132 name = "complex unsigned int";
8133 else if (TREE_TYPE (t) == long_integer_type_node)
8134 name = "complex long int";
8135 else if (TREE_TYPE (t) == long_unsigned_type_node)
8136 name = "complex long unsigned int";
8137 else if (TREE_TYPE (t) == long_long_integer_type_node)
8138 name = "complex long long int";
8139 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8140 name = "complex long long unsigned int";
8142 if (name != NULL)
8143 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8144 get_identifier (name), t);
8148 return build_qualified_type (t, TYPE_QUALS (component_type));
8151 /* If TYPE is a real or complex floating-point type and the target
8152 does not directly support arithmetic on TYPE then return the wider
8153 type to be used for arithmetic on TYPE. Otherwise, return
8154 NULL_TREE. */
8156 tree
8157 excess_precision_type (tree type)
8159 /* The target can give two different responses to the question of
8160 which excess precision mode it would like depending on whether we
8161 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8163 enum excess_precision_type requested_type
8164 = (flag_excess_precision == EXCESS_PRECISION_FAST
8165 ? EXCESS_PRECISION_TYPE_FAST
8166 : EXCESS_PRECISION_TYPE_STANDARD);
8168 enum flt_eval_method target_flt_eval_method
8169 = targetm.c.excess_precision (requested_type);
8171 /* The target should not ask for unpredictable float evaluation (though
8172 it might advertise that implicitly the evaluation is unpredictable,
8173 but we don't care about that here, it will have been reported
8174 elsewhere). If it does ask for unpredictable evaluation, we have
8175 nothing to do here. */
8176 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8178 /* Nothing to do. The target has asked for all types we know about
8179 to be computed with their native precision and range. */
8180 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8181 return NULL_TREE;
8183 /* The target will promote this type in a target-dependent way, so excess
8184 precision ought to leave it alone. */
8185 if (targetm.promoted_type (type) != NULL_TREE)
8186 return NULL_TREE;
8188 machine_mode float16_type_mode = (float16_type_node
8189 ? TYPE_MODE (float16_type_node)
8190 : VOIDmode);
8191 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8192 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8194 switch (TREE_CODE (type))
8196 case REAL_TYPE:
8198 machine_mode type_mode = TYPE_MODE (type);
8199 switch (target_flt_eval_method)
8201 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8202 if (type_mode == float16_type_mode)
8203 return float_type_node;
8204 break;
8205 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8206 if (type_mode == float16_type_mode
8207 || type_mode == float_type_mode)
8208 return double_type_node;
8209 break;
8210 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8211 if (type_mode == float16_type_mode
8212 || type_mode == float_type_mode
8213 || type_mode == double_type_mode)
8214 return long_double_type_node;
8215 break;
8216 default:
8217 gcc_unreachable ();
8219 break;
8221 case COMPLEX_TYPE:
8223 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8224 return NULL_TREE;
8225 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8226 switch (target_flt_eval_method)
8228 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8229 if (type_mode == float16_type_mode)
8230 return complex_float_type_node;
8231 break;
8232 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8233 if (type_mode == float16_type_mode
8234 || type_mode == float_type_mode)
8235 return complex_double_type_node;
8236 break;
8237 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8238 if (type_mode == float16_type_mode
8239 || type_mode == float_type_mode
8240 || type_mode == double_type_mode)
8241 return complex_long_double_type_node;
8242 break;
8243 default:
8244 gcc_unreachable ();
8246 break;
8248 default:
8249 break;
8252 return NULL_TREE;
8255 /* Return OP, stripped of any conversions to wider types as much as is safe.
8256 Converting the value back to OP's type makes a value equivalent to OP.
8258 If FOR_TYPE is nonzero, we return a value which, if converted to
8259 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8261 OP must have integer, real or enumeral type. Pointers are not allowed!
8263 There are some cases where the obvious value we could return
8264 would regenerate to OP if converted to OP's type,
8265 but would not extend like OP to wider types.
8266 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8267 For example, if OP is (unsigned short)(signed char)-1,
8268 we avoid returning (signed char)-1 if FOR_TYPE is int,
8269 even though extending that to an unsigned short would regenerate OP,
8270 since the result of extending (signed char)-1 to (int)
8271 is different from (int) OP. */
8273 tree
8274 get_unwidened (tree op, tree for_type)
8276 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8277 tree type = TREE_TYPE (op);
8278 unsigned final_prec
8279 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8280 int uns
8281 = (for_type != 0 && for_type != type
8282 && final_prec > TYPE_PRECISION (type)
8283 && TYPE_UNSIGNED (type));
8284 tree win = op;
8286 while (CONVERT_EXPR_P (op))
8288 int bitschange;
8290 /* TYPE_PRECISION on vector types has different meaning
8291 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8292 so avoid them here. */
8293 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8294 break;
8296 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8297 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8299 /* Truncations are many-one so cannot be removed.
8300 Unless we are later going to truncate down even farther. */
8301 if (bitschange < 0
8302 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8303 break;
8305 /* See what's inside this conversion. If we decide to strip it,
8306 we will set WIN. */
8307 op = TREE_OPERAND (op, 0);
8309 /* If we have not stripped any zero-extensions (uns is 0),
8310 we can strip any kind of extension.
8311 If we have previously stripped a zero-extension,
8312 only zero-extensions can safely be stripped.
8313 Any extension can be stripped if the bits it would produce
8314 are all going to be discarded later by truncating to FOR_TYPE. */
8316 if (bitschange > 0)
8318 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8319 win = op;
8320 /* TYPE_UNSIGNED says whether this is a zero-extension.
8321 Let's avoid computing it if it does not affect WIN
8322 and if UNS will not be needed again. */
8323 if ((uns
8324 || CONVERT_EXPR_P (op))
8325 && TYPE_UNSIGNED (TREE_TYPE (op)))
8327 uns = 1;
8328 win = op;
8333 /* If we finally reach a constant see if it fits in sth smaller and
8334 in that case convert it. */
8335 if (TREE_CODE (win) == INTEGER_CST)
8337 tree wtype = TREE_TYPE (win);
8338 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8339 if (for_type)
8340 prec = MAX (prec, final_prec);
8341 if (prec < TYPE_PRECISION (wtype))
8343 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8344 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8345 win = fold_convert (t, win);
8349 return win;
8352 /* Return OP or a simpler expression for a narrower value
8353 which can be sign-extended or zero-extended to give back OP.
8354 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8355 or 0 if the value should be sign-extended. */
8357 tree
8358 get_narrower (tree op, int *unsignedp_ptr)
8360 int uns = 0;
8361 int first = 1;
8362 tree win = op;
8363 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8365 while (TREE_CODE (op) == NOP_EXPR)
8367 int bitschange
8368 = (TYPE_PRECISION (TREE_TYPE (op))
8369 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8371 /* Truncations are many-one so cannot be removed. */
8372 if (bitschange < 0)
8373 break;
8375 /* See what's inside this conversion. If we decide to strip it,
8376 we will set WIN. */
8378 if (bitschange > 0)
8380 op = TREE_OPERAND (op, 0);
8381 /* An extension: the outermost one can be stripped,
8382 but remember whether it is zero or sign extension. */
8383 if (first)
8384 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8385 /* Otherwise, if a sign extension has been stripped,
8386 only sign extensions can now be stripped;
8387 if a zero extension has been stripped, only zero-extensions. */
8388 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8389 break;
8390 first = 0;
8392 else /* bitschange == 0 */
8394 /* A change in nominal type can always be stripped, but we must
8395 preserve the unsignedness. */
8396 if (first)
8397 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8398 first = 0;
8399 op = TREE_OPERAND (op, 0);
8400 /* Keep trying to narrow, but don't assign op to win if it
8401 would turn an integral type into something else. */
8402 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8403 continue;
8406 win = op;
8409 if (TREE_CODE (op) == COMPONENT_REF
8410 /* Since type_for_size always gives an integer type. */
8411 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8412 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8413 /* Ensure field is laid out already. */
8414 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8415 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8417 unsigned HOST_WIDE_INT innerprec
8418 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8419 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8420 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8421 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8423 /* We can get this structure field in a narrower type that fits it,
8424 but the resulting extension to its nominal type (a fullword type)
8425 must satisfy the same conditions as for other extensions.
8427 Do this only for fields that are aligned (not bit-fields),
8428 because when bit-field insns will be used there is no
8429 advantage in doing this. */
8431 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8432 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8433 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8434 && type != 0)
8436 if (first)
8437 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8438 win = fold_convert (type, op);
8442 *unsignedp_ptr = uns;
8443 return win;
8446 /* Return true if integer constant C has a value that is permissible
8447 for TYPE, an integral type. */
8449 bool
8450 int_fits_type_p (const_tree c, const_tree type)
8452 tree type_low_bound, type_high_bound;
8453 bool ok_for_low_bound, ok_for_high_bound;
8454 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8456 /* Non-standard boolean types can have arbitrary precision but various
8457 transformations assume that they can only take values 0 and +/-1. */
8458 if (TREE_CODE (type) == BOOLEAN_TYPE)
8459 return wi::fits_to_boolean_p (wi::to_wide (c), type);
8461 retry:
8462 type_low_bound = TYPE_MIN_VALUE (type);
8463 type_high_bound = TYPE_MAX_VALUE (type);
8465 /* If at least one bound of the type is a constant integer, we can check
8466 ourselves and maybe make a decision. If no such decision is possible, but
8467 this type is a subtype, try checking against that. Otherwise, use
8468 fits_to_tree_p, which checks against the precision.
8470 Compute the status for each possibly constant bound, and return if we see
8471 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8472 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8473 for "constant known to fit". */
8475 /* Check if c >= type_low_bound. */
8476 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8478 if (tree_int_cst_lt (c, type_low_bound))
8479 return false;
8480 ok_for_low_bound = true;
8482 else
8483 ok_for_low_bound = false;
8485 /* Check if c <= type_high_bound. */
8486 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8488 if (tree_int_cst_lt (type_high_bound, c))
8489 return false;
8490 ok_for_high_bound = true;
8492 else
8493 ok_for_high_bound = false;
8495 /* If the constant fits both bounds, the result is known. */
8496 if (ok_for_low_bound && ok_for_high_bound)
8497 return true;
8499 /* Perform some generic filtering which may allow making a decision
8500 even if the bounds are not constant. First, negative integers
8501 never fit in unsigned types, */
8502 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
8503 return false;
8505 /* Second, narrower types always fit in wider ones. */
8506 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8507 return true;
8509 /* Third, unsigned integers with top bit set never fit signed types. */
8510 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8512 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
8513 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8515 /* When a tree_cst is converted to a wide-int, the precision
8516 is taken from the type. However, if the precision of the
8517 mode underneath the type is smaller than that, it is
8518 possible that the value will not fit. The test below
8519 fails if any bit is set between the sign bit of the
8520 underlying mode and the top bit of the type. */
8521 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
8522 return false;
8524 else if (wi::neg_p (wi::to_wide (c)))
8525 return false;
8528 /* If we haven't been able to decide at this point, there nothing more we
8529 can check ourselves here. Look at the base type if we have one and it
8530 has the same precision. */
8531 if (TREE_CODE (type) == INTEGER_TYPE
8532 && TREE_TYPE (type) != 0
8533 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8535 type = TREE_TYPE (type);
8536 goto retry;
8539 /* Or to fits_to_tree_p, if nothing else. */
8540 return wi::fits_to_tree_p (wi::to_wide (c), type);
8543 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8544 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8545 represented (assuming two's-complement arithmetic) within the bit
8546 precision of the type are returned instead. */
8548 void
8549 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8551 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8552 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8553 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
8554 else
8556 if (TYPE_UNSIGNED (type))
8557 mpz_set_ui (min, 0);
8558 else
8560 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8561 wi::to_mpz (mn, min, SIGNED);
8565 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8566 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8567 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
8568 else
8570 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8571 wi::to_mpz (mn, max, TYPE_SIGN (type));
8575 /* Return true if VAR is an automatic variable defined in function FN. */
8577 bool
8578 auto_var_in_fn_p (const_tree var, const_tree fn)
8580 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8581 && ((((VAR_P (var) && ! DECL_EXTERNAL (var))
8582 || TREE_CODE (var) == PARM_DECL)
8583 && ! TREE_STATIC (var))
8584 || TREE_CODE (var) == LABEL_DECL
8585 || TREE_CODE (var) == RESULT_DECL));
8588 /* Subprogram of following function. Called by walk_tree.
8590 Return *TP if it is an automatic variable or parameter of the
8591 function passed in as DATA. */
8593 static tree
8594 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8596 tree fn = (tree) data;
8598 if (TYPE_P (*tp))
8599 *walk_subtrees = 0;
8601 else if (DECL_P (*tp)
8602 && auto_var_in_fn_p (*tp, fn))
8603 return *tp;
8605 return NULL_TREE;
8608 /* Returns true if T is, contains, or refers to a type with variable
8609 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8610 arguments, but not the return type. If FN is nonzero, only return
8611 true if a modifier of the type or position of FN is a variable or
8612 parameter inside FN.
8614 This concept is more general than that of C99 'variably modified types':
8615 in C99, a struct type is never variably modified because a VLA may not
8616 appear as a structure member. However, in GNU C code like:
8618 struct S { int i[f()]; };
8620 is valid, and other languages may define similar constructs. */
8622 bool
8623 variably_modified_type_p (tree type, tree fn)
8625 tree t;
8627 /* Test if T is either variable (if FN is zero) or an expression containing
8628 a variable in FN. If TYPE isn't gimplified, return true also if
8629 gimplify_one_sizepos would gimplify the expression into a local
8630 variable. */
8631 #define RETURN_TRUE_IF_VAR(T) \
8632 do { tree _t = (T); \
8633 if (_t != NULL_TREE \
8634 && _t != error_mark_node \
8635 && TREE_CODE (_t) != INTEGER_CST \
8636 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8637 && (!fn \
8638 || (!TYPE_SIZES_GIMPLIFIED (type) \
8639 && !is_gimple_sizepos (_t)) \
8640 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8641 return true; } while (0)
8643 if (type == error_mark_node)
8644 return false;
8646 /* If TYPE itself has variable size, it is variably modified. */
8647 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8648 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8650 switch (TREE_CODE (type))
8652 case POINTER_TYPE:
8653 case REFERENCE_TYPE:
8654 case VECTOR_TYPE:
8655 /* Ada can have pointer types refering to themselves indirectly. */
8656 if (TREE_VISITED (type))
8657 return false;
8658 TREE_VISITED (type) = true;
8659 if (variably_modified_type_p (TREE_TYPE (type), fn))
8661 TREE_VISITED (type) = false;
8662 return true;
8664 TREE_VISITED (type) = false;
8665 break;
8667 case FUNCTION_TYPE:
8668 case METHOD_TYPE:
8669 /* If TYPE is a function type, it is variably modified if the
8670 return type is variably modified. */
8671 if (variably_modified_type_p (TREE_TYPE (type), fn))
8672 return true;
8673 break;
8675 case INTEGER_TYPE:
8676 case REAL_TYPE:
8677 case FIXED_POINT_TYPE:
8678 case ENUMERAL_TYPE:
8679 case BOOLEAN_TYPE:
8680 /* Scalar types are variably modified if their end points
8681 aren't constant. */
8682 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8683 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8684 break;
8686 case RECORD_TYPE:
8687 case UNION_TYPE:
8688 case QUAL_UNION_TYPE:
8689 /* We can't see if any of the fields are variably-modified by the
8690 definition we normally use, since that would produce infinite
8691 recursion via pointers. */
8692 /* This is variably modified if some field's type is. */
8693 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8694 if (TREE_CODE (t) == FIELD_DECL)
8696 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8697 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8698 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8700 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8701 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8703 break;
8705 case ARRAY_TYPE:
8706 /* Do not call ourselves to avoid infinite recursion. This is
8707 variably modified if the element type is. */
8708 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8709 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8710 break;
8712 default:
8713 break;
8716 /* The current language may have other cases to check, but in general,
8717 all other types are not variably modified. */
8718 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8720 #undef RETURN_TRUE_IF_VAR
8723 /* Given a DECL or TYPE, return the scope in which it was declared, or
8724 NULL_TREE if there is no containing scope. */
8726 tree
8727 get_containing_scope (const_tree t)
8729 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8732 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
8734 const_tree
8735 get_ultimate_context (const_tree decl)
8737 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
8739 if (TREE_CODE (decl) == BLOCK)
8740 decl = BLOCK_SUPERCONTEXT (decl);
8741 else
8742 decl = get_containing_scope (decl);
8744 return decl;
8747 /* Return the innermost context enclosing DECL that is
8748 a FUNCTION_DECL, or zero if none. */
8750 tree
8751 decl_function_context (const_tree decl)
8753 tree context;
8755 if (TREE_CODE (decl) == ERROR_MARK)
8756 return 0;
8758 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8759 where we look up the function at runtime. Such functions always take
8760 a first argument of type 'pointer to real context'.
8762 C++ should really be fixed to use DECL_CONTEXT for the real context,
8763 and use something else for the "virtual context". */
8764 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8765 context
8766 = TYPE_MAIN_VARIANT
8767 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8768 else
8769 context = DECL_CONTEXT (decl);
8771 while (context && TREE_CODE (context) != FUNCTION_DECL)
8773 if (TREE_CODE (context) == BLOCK)
8774 context = BLOCK_SUPERCONTEXT (context);
8775 else
8776 context = get_containing_scope (context);
8779 return context;
8782 /* Return the innermost context enclosing DECL that is
8783 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8784 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8786 tree
8787 decl_type_context (const_tree decl)
8789 tree context = DECL_CONTEXT (decl);
8791 while (context)
8792 switch (TREE_CODE (context))
8794 case NAMESPACE_DECL:
8795 case TRANSLATION_UNIT_DECL:
8796 return NULL_TREE;
8798 case RECORD_TYPE:
8799 case UNION_TYPE:
8800 case QUAL_UNION_TYPE:
8801 return context;
8803 case TYPE_DECL:
8804 case FUNCTION_DECL:
8805 context = DECL_CONTEXT (context);
8806 break;
8808 case BLOCK:
8809 context = BLOCK_SUPERCONTEXT (context);
8810 break;
8812 default:
8813 gcc_unreachable ();
8816 return NULL_TREE;
8819 /* CALL is a CALL_EXPR. Return the declaration for the function
8820 called, or NULL_TREE if the called function cannot be
8821 determined. */
8823 tree
8824 get_callee_fndecl (const_tree call)
8826 tree addr;
8828 if (call == error_mark_node)
8829 return error_mark_node;
8831 /* It's invalid to call this function with anything but a
8832 CALL_EXPR. */
8833 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8835 /* The first operand to the CALL is the address of the function
8836 called. */
8837 addr = CALL_EXPR_FN (call);
8839 /* If there is no function, return early. */
8840 if (addr == NULL_TREE)
8841 return NULL_TREE;
8843 STRIP_NOPS (addr);
8845 /* If this is a readonly function pointer, extract its initial value. */
8846 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
8847 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
8848 && DECL_INITIAL (addr))
8849 addr = DECL_INITIAL (addr);
8851 /* If the address is just `&f' for some function `f', then we know
8852 that `f' is being called. */
8853 if (TREE_CODE (addr) == ADDR_EXPR
8854 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
8855 return TREE_OPERAND (addr, 0);
8857 /* We couldn't figure out what was being called. */
8858 return NULL_TREE;
8861 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
8862 return the associated function code, otherwise return CFN_LAST. */
8864 combined_fn
8865 get_call_combined_fn (const_tree call)
8867 /* It's invalid to call this function with anything but a CALL_EXPR. */
8868 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8870 if (!CALL_EXPR_FN (call))
8871 return as_combined_fn (CALL_EXPR_IFN (call));
8873 tree fndecl = get_callee_fndecl (call);
8874 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
8875 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
8877 return CFN_LAST;
8880 #define TREE_MEM_USAGE_SPACES 40
8882 /* Print debugging information about tree nodes generated during the compile,
8883 and any language-specific information. */
8885 void
8886 dump_tree_statistics (void)
8888 if (GATHER_STATISTICS)
8890 int i;
8891 int total_nodes, total_bytes;
8892 fprintf (stderr, "\nKind Nodes Bytes\n");
8893 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8894 total_nodes = total_bytes = 0;
8895 for (i = 0; i < (int) all_kinds; i++)
8897 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
8898 tree_node_counts[i], tree_node_sizes[i]);
8899 total_nodes += tree_node_counts[i];
8900 total_bytes += tree_node_sizes[i];
8902 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8903 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
8904 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8905 fprintf (stderr, "Code Nodes\n");
8906 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8907 for (i = 0; i < (int) MAX_TREE_CODES; i++)
8908 fprintf (stderr, "%-32s %7d\n", get_tree_code_name ((enum tree_code) i),
8909 tree_code_counts[i]);
8910 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8911 fprintf (stderr, "\n");
8912 ssanames_print_statistics ();
8913 fprintf (stderr, "\n");
8914 phinodes_print_statistics ();
8915 fprintf (stderr, "\n");
8917 else
8918 fprintf (stderr, "(No per-node statistics)\n");
8920 print_type_hash_statistics ();
8921 print_debug_expr_statistics ();
8922 print_value_expr_statistics ();
8923 lang_hooks.print_statistics ();
8926 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8928 /* Generate a crc32 of the low BYTES bytes of VALUE. */
8930 unsigned
8931 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
8933 /* This relies on the raw feedback's top 4 bits being zero. */
8934 #define FEEDBACK(X) ((X) * 0x04c11db7)
8935 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
8936 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
8937 static const unsigned syndromes[16] =
8939 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
8940 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
8941 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
8942 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
8944 #undef FEEDBACK
8945 #undef SYNDROME
8947 value <<= (32 - bytes * 8);
8948 for (unsigned ix = bytes * 2; ix--; value <<= 4)
8950 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
8952 chksum = (chksum << 4) ^ feedback;
8955 return chksum;
8958 /* Generate a crc32 of a string. */
8960 unsigned
8961 crc32_string (unsigned chksum, const char *string)
8964 chksum = crc32_byte (chksum, *string);
8965 while (*string++);
8966 return chksum;
8969 /* P is a string that will be used in a symbol. Mask out any characters
8970 that are not valid in that context. */
8972 void
8973 clean_symbol_name (char *p)
8975 for (; *p; p++)
8976 if (! (ISALNUM (*p)
8977 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8978 || *p == '$'
8979 #endif
8980 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8981 || *p == '.'
8982 #endif
8984 *p = '_';
8987 /* For anonymous aggregate types, we need some sort of name to
8988 hold on to. In practice, this should not appear, but it should
8989 not be harmful if it does. */
8990 bool
8991 anon_aggrname_p(const_tree id_node)
8993 #ifndef NO_DOT_IN_LABEL
8994 return (IDENTIFIER_POINTER (id_node)[0] == '.'
8995 && IDENTIFIER_POINTER (id_node)[1] == '_');
8996 #else /* NO_DOT_IN_LABEL */
8997 #ifndef NO_DOLLAR_IN_LABEL
8998 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
8999 && IDENTIFIER_POINTER (id_node)[1] == '_');
9000 #else /* NO_DOLLAR_IN_LABEL */
9001 #define ANON_AGGRNAME_PREFIX "__anon_"
9002 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9003 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9004 #endif /* NO_DOLLAR_IN_LABEL */
9005 #endif /* NO_DOT_IN_LABEL */
9008 /* Return a format for an anonymous aggregate name. */
9009 const char *
9010 anon_aggrname_format()
9012 #ifndef NO_DOT_IN_LABEL
9013 return "._%d";
9014 #else /* NO_DOT_IN_LABEL */
9015 #ifndef NO_DOLLAR_IN_LABEL
9016 return "$_%d";
9017 #else /* NO_DOLLAR_IN_LABEL */
9018 return "__anon_%d";
9019 #endif /* NO_DOLLAR_IN_LABEL */
9020 #endif /* NO_DOT_IN_LABEL */
9023 /* Generate a name for a special-purpose function.
9024 The generated name may need to be unique across the whole link.
9025 Changes to this function may also require corresponding changes to
9026 xstrdup_mask_random.
9027 TYPE is some string to identify the purpose of this function to the
9028 linker or collect2; it must start with an uppercase letter,
9029 one of:
9030 I - for constructors
9031 D - for destructors
9032 N - for C++ anonymous namespaces
9033 F - for DWARF unwind frame information. */
9035 tree
9036 get_file_function_name (const char *type)
9038 char *buf;
9039 const char *p;
9040 char *q;
9042 /* If we already have a name we know to be unique, just use that. */
9043 if (first_global_object_name)
9044 p = q = ASTRDUP (first_global_object_name);
9045 /* If the target is handling the constructors/destructors, they
9046 will be local to this file and the name is only necessary for
9047 debugging purposes.
9048 We also assign sub_I and sub_D sufixes to constructors called from
9049 the global static constructors. These are always local. */
9050 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9051 || (strncmp (type, "sub_", 4) == 0
9052 && (type[4] == 'I' || type[4] == 'D')))
9054 const char *file = main_input_filename;
9055 if (! file)
9056 file = LOCATION_FILE (input_location);
9057 /* Just use the file's basename, because the full pathname
9058 might be quite long. */
9059 p = q = ASTRDUP (lbasename (file));
9061 else
9063 /* Otherwise, the name must be unique across the entire link.
9064 We don't have anything that we know to be unique to this translation
9065 unit, so use what we do have and throw in some randomness. */
9066 unsigned len;
9067 const char *name = weak_global_object_name;
9068 const char *file = main_input_filename;
9070 if (! name)
9071 name = "";
9072 if (! file)
9073 file = LOCATION_FILE (input_location);
9075 len = strlen (file);
9076 q = (char *) alloca (9 + 19 + len + 1);
9077 memcpy (q, file, len + 1);
9079 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9080 crc32_string (0, name), get_random_seed (false));
9082 p = q;
9085 clean_symbol_name (q);
9086 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9087 + strlen (type));
9089 /* Set up the name of the file-level functions we may need.
9090 Use a global object (which is already required to be unique over
9091 the program) rather than the file name (which imposes extra
9092 constraints). */
9093 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9095 return get_identifier (buf);
9098 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9100 /* Complain that the tree code of NODE does not match the expected 0
9101 terminated list of trailing codes. The trailing code list can be
9102 empty, for a more vague error message. FILE, LINE, and FUNCTION
9103 are of the caller. */
9105 void
9106 tree_check_failed (const_tree node, const char *file,
9107 int line, const char *function, ...)
9109 va_list args;
9110 const char *buffer;
9111 unsigned length = 0;
9112 enum tree_code code;
9114 va_start (args, function);
9115 while ((code = (enum tree_code) va_arg (args, int)))
9116 length += 4 + strlen (get_tree_code_name (code));
9117 va_end (args);
9118 if (length)
9120 char *tmp;
9121 va_start (args, function);
9122 length += strlen ("expected ");
9123 buffer = tmp = (char *) alloca (length);
9124 length = 0;
9125 while ((code = (enum tree_code) va_arg (args, int)))
9127 const char *prefix = length ? " or " : "expected ";
9129 strcpy (tmp + length, prefix);
9130 length += strlen (prefix);
9131 strcpy (tmp + length, get_tree_code_name (code));
9132 length += strlen (get_tree_code_name (code));
9134 va_end (args);
9136 else
9137 buffer = "unexpected node";
9139 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9140 buffer, get_tree_code_name (TREE_CODE (node)),
9141 function, trim_filename (file), line);
9144 /* Complain that the tree code of NODE does match the expected 0
9145 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9146 the caller. */
9148 void
9149 tree_not_check_failed (const_tree node, const char *file,
9150 int line, const char *function, ...)
9152 va_list args;
9153 char *buffer;
9154 unsigned length = 0;
9155 enum tree_code code;
9157 va_start (args, function);
9158 while ((code = (enum tree_code) va_arg (args, int)))
9159 length += 4 + strlen (get_tree_code_name (code));
9160 va_end (args);
9161 va_start (args, function);
9162 buffer = (char *) alloca (length);
9163 length = 0;
9164 while ((code = (enum tree_code) va_arg (args, int)))
9166 if (length)
9168 strcpy (buffer + length, " or ");
9169 length += 4;
9171 strcpy (buffer + length, get_tree_code_name (code));
9172 length += strlen (get_tree_code_name (code));
9174 va_end (args);
9176 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9177 buffer, get_tree_code_name (TREE_CODE (node)),
9178 function, trim_filename (file), line);
9181 /* Similar to tree_check_failed, except that we check for a class of tree
9182 code, given in CL. */
9184 void
9185 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9186 const char *file, int line, const char *function)
9188 internal_error
9189 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9190 TREE_CODE_CLASS_STRING (cl),
9191 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9192 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9195 /* Similar to tree_check_failed, except that instead of specifying a
9196 dozen codes, use the knowledge that they're all sequential. */
9198 void
9199 tree_range_check_failed (const_tree node, const char *file, int line,
9200 const char *function, enum tree_code c1,
9201 enum tree_code c2)
9203 char *buffer;
9204 unsigned length = 0;
9205 unsigned int c;
9207 for (c = c1; c <= c2; ++c)
9208 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9210 length += strlen ("expected ");
9211 buffer = (char *) alloca (length);
9212 length = 0;
9214 for (c = c1; c <= c2; ++c)
9216 const char *prefix = length ? " or " : "expected ";
9218 strcpy (buffer + length, prefix);
9219 length += strlen (prefix);
9220 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9221 length += strlen (get_tree_code_name ((enum tree_code) c));
9224 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9225 buffer, get_tree_code_name (TREE_CODE (node)),
9226 function, trim_filename (file), line);
9230 /* Similar to tree_check_failed, except that we check that a tree does
9231 not have the specified code, given in CL. */
9233 void
9234 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9235 const char *file, int line, const char *function)
9237 internal_error
9238 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9239 TREE_CODE_CLASS_STRING (cl),
9240 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9241 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9245 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9247 void
9248 omp_clause_check_failed (const_tree node, const char *file, int line,
9249 const char *function, enum omp_clause_code code)
9251 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9252 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9253 function, trim_filename (file), line);
9257 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9259 void
9260 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9261 const char *function, enum omp_clause_code c1,
9262 enum omp_clause_code c2)
9264 char *buffer;
9265 unsigned length = 0;
9266 unsigned int c;
9268 for (c = c1; c <= c2; ++c)
9269 length += 4 + strlen (omp_clause_code_name[c]);
9271 length += strlen ("expected ");
9272 buffer = (char *) alloca (length);
9273 length = 0;
9275 for (c = c1; c <= c2; ++c)
9277 const char *prefix = length ? " or " : "expected ";
9279 strcpy (buffer + length, prefix);
9280 length += strlen (prefix);
9281 strcpy (buffer + length, omp_clause_code_name[c]);
9282 length += strlen (omp_clause_code_name[c]);
9285 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9286 buffer, omp_clause_code_name[TREE_CODE (node)],
9287 function, trim_filename (file), line);
9291 #undef DEFTREESTRUCT
9292 #define DEFTREESTRUCT(VAL, NAME) NAME,
9294 static const char *ts_enum_names[] = {
9295 #include "treestruct.def"
9297 #undef DEFTREESTRUCT
9299 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9301 /* Similar to tree_class_check_failed, except that we check for
9302 whether CODE contains the tree structure identified by EN. */
9304 void
9305 tree_contains_struct_check_failed (const_tree node,
9306 const enum tree_node_structure_enum en,
9307 const char *file, int line,
9308 const char *function)
9310 internal_error
9311 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9312 TS_ENUM_NAME (en),
9313 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9317 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9318 (dynamically sized) vector. */
9320 void
9321 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9322 const char *function)
9324 internal_error
9325 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9326 idx + 1, len, function, trim_filename (file), line);
9329 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9330 (dynamically sized) vector. */
9332 void
9333 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9334 const char *function)
9336 internal_error
9337 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9338 idx + 1, len, function, trim_filename (file), line);
9341 /* Similar to above, except that the check is for the bounds of the operand
9342 vector of an expression node EXP. */
9344 void
9345 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9346 int line, const char *function)
9348 enum tree_code code = TREE_CODE (exp);
9349 internal_error
9350 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9351 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9352 function, trim_filename (file), line);
9355 /* Similar to above, except that the check is for the number of
9356 operands of an OMP_CLAUSE node. */
9358 void
9359 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9360 int line, const char *function)
9362 internal_error
9363 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9364 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9365 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9366 trim_filename (file), line);
9368 #endif /* ENABLE_TREE_CHECKING */
9370 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9371 and mapped to the machine mode MODE. Initialize its fields and build
9372 the information necessary for debugging output. */
9374 static tree
9375 make_vector_type (tree innertype, int nunits, machine_mode mode)
9377 tree t;
9378 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9380 t = make_node (VECTOR_TYPE);
9381 TREE_TYPE (t) = mv_innertype;
9382 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9383 SET_TYPE_MODE (t, mode);
9385 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9386 SET_TYPE_STRUCTURAL_EQUALITY (t);
9387 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9388 || mode != VOIDmode)
9389 && !VECTOR_BOOLEAN_TYPE_P (t))
9390 TYPE_CANONICAL (t)
9391 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9393 layout_type (t);
9395 hashval_t hash = type_hash_canon_hash (t);
9396 t = type_hash_canon (hash, t);
9398 /* We have built a main variant, based on the main variant of the
9399 inner type. Use it to build the variant we return. */
9400 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9401 && TREE_TYPE (t) != innertype)
9402 return build_type_attribute_qual_variant (t,
9403 TYPE_ATTRIBUTES (innertype),
9404 TYPE_QUALS (innertype));
9406 return t;
9409 static tree
9410 make_or_reuse_type (unsigned size, int unsignedp)
9412 int i;
9414 if (size == INT_TYPE_SIZE)
9415 return unsignedp ? unsigned_type_node : integer_type_node;
9416 if (size == CHAR_TYPE_SIZE)
9417 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9418 if (size == SHORT_TYPE_SIZE)
9419 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9420 if (size == LONG_TYPE_SIZE)
9421 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9422 if (size == LONG_LONG_TYPE_SIZE)
9423 return (unsignedp ? long_long_unsigned_type_node
9424 : long_long_integer_type_node);
9426 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9427 if (size == int_n_data[i].bitsize
9428 && int_n_enabled_p[i])
9429 return (unsignedp ? int_n_trees[i].unsigned_type
9430 : int_n_trees[i].signed_type);
9432 if (unsignedp)
9433 return make_unsigned_type (size);
9434 else
9435 return make_signed_type (size);
9438 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9440 static tree
9441 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9443 if (satp)
9445 if (size == SHORT_FRACT_TYPE_SIZE)
9446 return unsignedp ? sat_unsigned_short_fract_type_node
9447 : sat_short_fract_type_node;
9448 if (size == FRACT_TYPE_SIZE)
9449 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9450 if (size == LONG_FRACT_TYPE_SIZE)
9451 return unsignedp ? sat_unsigned_long_fract_type_node
9452 : sat_long_fract_type_node;
9453 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9454 return unsignedp ? sat_unsigned_long_long_fract_type_node
9455 : sat_long_long_fract_type_node;
9457 else
9459 if (size == SHORT_FRACT_TYPE_SIZE)
9460 return unsignedp ? unsigned_short_fract_type_node
9461 : short_fract_type_node;
9462 if (size == FRACT_TYPE_SIZE)
9463 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9464 if (size == LONG_FRACT_TYPE_SIZE)
9465 return unsignedp ? unsigned_long_fract_type_node
9466 : long_fract_type_node;
9467 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9468 return unsignedp ? unsigned_long_long_fract_type_node
9469 : long_long_fract_type_node;
9472 return make_fract_type (size, unsignedp, satp);
9475 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9477 static tree
9478 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9480 if (satp)
9482 if (size == SHORT_ACCUM_TYPE_SIZE)
9483 return unsignedp ? sat_unsigned_short_accum_type_node
9484 : sat_short_accum_type_node;
9485 if (size == ACCUM_TYPE_SIZE)
9486 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9487 if (size == LONG_ACCUM_TYPE_SIZE)
9488 return unsignedp ? sat_unsigned_long_accum_type_node
9489 : sat_long_accum_type_node;
9490 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9491 return unsignedp ? sat_unsigned_long_long_accum_type_node
9492 : sat_long_long_accum_type_node;
9494 else
9496 if (size == SHORT_ACCUM_TYPE_SIZE)
9497 return unsignedp ? unsigned_short_accum_type_node
9498 : short_accum_type_node;
9499 if (size == ACCUM_TYPE_SIZE)
9500 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9501 if (size == LONG_ACCUM_TYPE_SIZE)
9502 return unsignedp ? unsigned_long_accum_type_node
9503 : long_accum_type_node;
9504 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9505 return unsignedp ? unsigned_long_long_accum_type_node
9506 : long_long_accum_type_node;
9509 return make_accum_type (size, unsignedp, satp);
9513 /* Create an atomic variant node for TYPE. This routine is called
9514 during initialization of data types to create the 5 basic atomic
9515 types. The generic build_variant_type function requires these to
9516 already be set up in order to function properly, so cannot be
9517 called from there. If ALIGN is non-zero, then ensure alignment is
9518 overridden to this value. */
9520 static tree
9521 build_atomic_base (tree type, unsigned int align)
9523 tree t;
9525 /* Make sure its not already registered. */
9526 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9527 return t;
9529 t = build_variant_type_copy (type);
9530 set_type_quals (t, TYPE_QUAL_ATOMIC);
9532 if (align)
9533 SET_TYPE_ALIGN (t, align);
9535 return t;
9538 /* Information about the _FloatN and _FloatNx types. This must be in
9539 the same order as the corresponding TI_* enum values. */
9540 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
9542 { 16, false },
9543 { 32, false },
9544 { 64, false },
9545 { 128, false },
9546 { 32, true },
9547 { 64, true },
9548 { 128, true },
9552 /* Create nodes for all integer types (and error_mark_node) using the sizes
9553 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
9555 void
9556 build_common_tree_nodes (bool signed_char)
9558 int i;
9560 error_mark_node = make_node (ERROR_MARK);
9561 TREE_TYPE (error_mark_node) = error_mark_node;
9563 initialize_sizetypes ();
9565 /* Define both `signed char' and `unsigned char'. */
9566 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9567 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9568 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9569 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9571 /* Define `char', which is like either `signed char' or `unsigned char'
9572 but not the same as either. */
9573 char_type_node
9574 = (signed_char
9575 ? make_signed_type (CHAR_TYPE_SIZE)
9576 : make_unsigned_type (CHAR_TYPE_SIZE));
9577 TYPE_STRING_FLAG (char_type_node) = 1;
9579 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9580 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9581 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9582 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9583 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9584 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9585 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9586 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9588 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9590 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
9591 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
9592 TYPE_SIZE (int_n_trees[i].signed_type) = bitsize_int (int_n_data[i].bitsize);
9593 TYPE_SIZE (int_n_trees[i].unsigned_type) = bitsize_int (int_n_data[i].bitsize);
9595 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
9596 && int_n_enabled_p[i])
9598 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
9599 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
9603 /* Define a boolean type. This type only represents boolean values but
9604 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9605 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9606 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9607 TYPE_PRECISION (boolean_type_node) = 1;
9608 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9610 /* Define what type to use for size_t. */
9611 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9612 size_type_node = unsigned_type_node;
9613 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9614 size_type_node = long_unsigned_type_node;
9615 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9616 size_type_node = long_long_unsigned_type_node;
9617 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9618 size_type_node = short_unsigned_type_node;
9619 else
9621 int i;
9623 size_type_node = NULL_TREE;
9624 for (i = 0; i < NUM_INT_N_ENTS; i++)
9625 if (int_n_enabled_p[i])
9627 char name[50];
9628 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
9630 if (strcmp (name, SIZE_TYPE) == 0)
9632 size_type_node = int_n_trees[i].unsigned_type;
9635 if (size_type_node == NULL_TREE)
9636 gcc_unreachable ();
9639 /* Define what type to use for ptrdiff_t. */
9640 if (strcmp (PTRDIFF_TYPE, "int") == 0)
9641 ptrdiff_type_node = integer_type_node;
9642 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
9643 ptrdiff_type_node = long_integer_type_node;
9644 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
9645 ptrdiff_type_node = long_long_integer_type_node;
9646 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
9647 ptrdiff_type_node = short_integer_type_node;
9648 else
9650 ptrdiff_type_node = NULL_TREE;
9651 for (int i = 0; i < NUM_INT_N_ENTS; i++)
9652 if (int_n_enabled_p[i])
9654 char name[50];
9655 sprintf (name, "__int%d", int_n_data[i].bitsize);
9656 if (strcmp (name, PTRDIFF_TYPE) == 0)
9657 ptrdiff_type_node = int_n_trees[i].signed_type;
9659 if (ptrdiff_type_node == NULL_TREE)
9660 gcc_unreachable ();
9663 /* Fill in the rest of the sized types. Reuse existing type nodes
9664 when possible. */
9665 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9666 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9667 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9668 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9669 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9671 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9672 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9673 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9674 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9675 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9677 /* Don't call build_qualified type for atomics. That routine does
9678 special processing for atomics, and until they are initialized
9679 it's better not to make that call.
9681 Check to see if there is a target override for atomic types. */
9683 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9684 targetm.atomic_align_for_mode (QImode));
9685 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9686 targetm.atomic_align_for_mode (HImode));
9687 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9688 targetm.atomic_align_for_mode (SImode));
9689 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9690 targetm.atomic_align_for_mode (DImode));
9691 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9692 targetm.atomic_align_for_mode (TImode));
9694 access_public_node = get_identifier ("public");
9695 access_protected_node = get_identifier ("protected");
9696 access_private_node = get_identifier ("private");
9698 /* Define these next since types below may used them. */
9699 integer_zero_node = build_int_cst (integer_type_node, 0);
9700 integer_one_node = build_int_cst (integer_type_node, 1);
9701 integer_three_node = build_int_cst (integer_type_node, 3);
9702 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9704 size_zero_node = size_int (0);
9705 size_one_node = size_int (1);
9706 bitsize_zero_node = bitsize_int (0);
9707 bitsize_one_node = bitsize_int (1);
9708 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9710 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9711 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9713 void_type_node = make_node (VOID_TYPE);
9714 layout_type (void_type_node);
9716 pointer_bounds_type_node = targetm.chkp_bound_type ();
9718 /* We are not going to have real types in C with less than byte alignment,
9719 so we might as well not have any types that claim to have it. */
9720 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
9721 TYPE_USER_ALIGN (void_type_node) = 0;
9723 void_node = make_node (VOID_CST);
9724 TREE_TYPE (void_node) = void_type_node;
9726 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9727 layout_type (TREE_TYPE (null_pointer_node));
9729 ptr_type_node = build_pointer_type (void_type_node);
9730 const_ptr_type_node
9731 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9732 for (unsigned i = 0;
9733 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
9734 ++i)
9735 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
9737 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9739 float_type_node = make_node (REAL_TYPE);
9740 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9741 layout_type (float_type_node);
9743 double_type_node = make_node (REAL_TYPE);
9744 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9745 layout_type (double_type_node);
9747 long_double_type_node = make_node (REAL_TYPE);
9748 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9749 layout_type (long_double_type_node);
9751 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9753 int n = floatn_nx_types[i].n;
9754 bool extended = floatn_nx_types[i].extended;
9755 scalar_float_mode mode;
9756 if (!targetm.floatn_mode (n, extended).exists (&mode))
9757 continue;
9758 int precision = GET_MODE_PRECISION (mode);
9759 /* Work around the rs6000 KFmode having precision 113 not
9760 128. */
9761 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
9762 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
9763 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
9764 if (!extended)
9765 gcc_assert (min_precision == n);
9766 if (precision < min_precision)
9767 precision = min_precision;
9768 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
9769 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
9770 layout_type (FLOATN_NX_TYPE_NODE (i));
9771 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
9774 float_ptr_type_node = build_pointer_type (float_type_node);
9775 double_ptr_type_node = build_pointer_type (double_type_node);
9776 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9777 integer_ptr_type_node = build_pointer_type (integer_type_node);
9779 /* Fixed size integer types. */
9780 uint16_type_node = make_or_reuse_type (16, 1);
9781 uint32_type_node = make_or_reuse_type (32, 1);
9782 uint64_type_node = make_or_reuse_type (64, 1);
9784 /* Decimal float types. */
9785 dfloat32_type_node = make_node (REAL_TYPE);
9786 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9787 SET_TYPE_MODE (dfloat32_type_node, SDmode);
9788 layout_type (dfloat32_type_node);
9789 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9791 dfloat64_type_node = make_node (REAL_TYPE);
9792 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9793 SET_TYPE_MODE (dfloat64_type_node, DDmode);
9794 layout_type (dfloat64_type_node);
9795 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9797 dfloat128_type_node = make_node (REAL_TYPE);
9798 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9799 SET_TYPE_MODE (dfloat128_type_node, TDmode);
9800 layout_type (dfloat128_type_node);
9801 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
9803 complex_integer_type_node = build_complex_type (integer_type_node, true);
9804 complex_float_type_node = build_complex_type (float_type_node, true);
9805 complex_double_type_node = build_complex_type (double_type_node, true);
9806 complex_long_double_type_node = build_complex_type (long_double_type_node,
9807 true);
9809 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9811 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
9812 COMPLEX_FLOATN_NX_TYPE_NODE (i)
9813 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
9816 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9817 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9818 sat_ ## KIND ## _type_node = \
9819 make_sat_signed_ ## KIND ## _type (SIZE); \
9820 sat_unsigned_ ## KIND ## _type_node = \
9821 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9822 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9823 unsigned_ ## KIND ## _type_node = \
9824 make_unsigned_ ## KIND ## _type (SIZE);
9826 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9827 sat_ ## WIDTH ## KIND ## _type_node = \
9828 make_sat_signed_ ## KIND ## _type (SIZE); \
9829 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9830 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9831 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9832 unsigned_ ## WIDTH ## KIND ## _type_node = \
9833 make_unsigned_ ## KIND ## _type (SIZE);
9835 /* Make fixed-point type nodes based on four different widths. */
9836 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9837 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9838 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9839 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9840 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9842 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9843 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9844 NAME ## _type_node = \
9845 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9846 u ## NAME ## _type_node = \
9847 make_or_reuse_unsigned_ ## KIND ## _type \
9848 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9849 sat_ ## NAME ## _type_node = \
9850 make_or_reuse_sat_signed_ ## KIND ## _type \
9851 (GET_MODE_BITSIZE (MODE ## mode)); \
9852 sat_u ## NAME ## _type_node = \
9853 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9854 (GET_MODE_BITSIZE (U ## MODE ## mode));
9856 /* Fixed-point type and mode nodes. */
9857 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
9858 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
9859 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
9860 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
9861 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
9862 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
9863 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
9864 MAKE_FIXED_MODE_NODE (accum, ha, HA)
9865 MAKE_FIXED_MODE_NODE (accum, sa, SA)
9866 MAKE_FIXED_MODE_NODE (accum, da, DA)
9867 MAKE_FIXED_MODE_NODE (accum, ta, TA)
9870 tree t = targetm.build_builtin_va_list ();
9872 /* Many back-ends define record types without setting TYPE_NAME.
9873 If we copied the record type here, we'd keep the original
9874 record type without a name. This breaks name mangling. So,
9875 don't copy record types and let c_common_nodes_and_builtins()
9876 declare the type to be __builtin_va_list. */
9877 if (TREE_CODE (t) != RECORD_TYPE)
9878 t = build_variant_type_copy (t);
9880 va_list_type_node = t;
9884 /* Modify DECL for given flags.
9885 TM_PURE attribute is set only on types, so the function will modify
9886 DECL's type when ECF_TM_PURE is used. */
9888 void
9889 set_call_expr_flags (tree decl, int flags)
9891 if (flags & ECF_NOTHROW)
9892 TREE_NOTHROW (decl) = 1;
9893 if (flags & ECF_CONST)
9894 TREE_READONLY (decl) = 1;
9895 if (flags & ECF_PURE)
9896 DECL_PURE_P (decl) = 1;
9897 if (flags & ECF_LOOPING_CONST_OR_PURE)
9898 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
9899 if (flags & ECF_NOVOPS)
9900 DECL_IS_NOVOPS (decl) = 1;
9901 if (flags & ECF_NORETURN)
9902 TREE_THIS_VOLATILE (decl) = 1;
9903 if (flags & ECF_MALLOC)
9904 DECL_IS_MALLOC (decl) = 1;
9905 if (flags & ECF_RETURNS_TWICE)
9906 DECL_IS_RETURNS_TWICE (decl) = 1;
9907 if (flags & ECF_LEAF)
9908 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
9909 NULL, DECL_ATTRIBUTES (decl));
9910 if (flags & ECF_COLD)
9911 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
9912 NULL, DECL_ATTRIBUTES (decl));
9913 if (flags & ECF_RET1)
9914 DECL_ATTRIBUTES (decl)
9915 = tree_cons (get_identifier ("fn spec"),
9916 build_tree_list (NULL_TREE, build_string (1, "1")),
9917 DECL_ATTRIBUTES (decl));
9918 if ((flags & ECF_TM_PURE) && flag_tm)
9919 apply_tm_attr (decl, get_identifier ("transaction_pure"));
9920 /* Looping const or pure is implied by noreturn.
9921 There is currently no way to declare looping const or looping pure alone. */
9922 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
9923 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
9927 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9929 static void
9930 local_define_builtin (const char *name, tree type, enum built_in_function code,
9931 const char *library_name, int ecf_flags)
9933 tree decl;
9935 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
9936 library_name, NULL_TREE);
9937 set_call_expr_flags (decl, ecf_flags);
9939 set_builtin_decl (code, decl, true);
9942 /* Call this function after instantiating all builtins that the language
9943 front end cares about. This will build the rest of the builtins
9944 and internal functions that are relied upon by the tree optimizers and
9945 the middle-end. */
9947 void
9948 build_common_builtin_nodes (void)
9950 tree tmp, ftype;
9951 int ecf_flags;
9953 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
9954 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
9956 ftype = build_function_type (void_type_node, void_list_node);
9957 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
9958 local_define_builtin ("__builtin_unreachable", ftype,
9959 BUILT_IN_UNREACHABLE,
9960 "__builtin_unreachable",
9961 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
9962 | ECF_CONST | ECF_COLD);
9963 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
9964 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
9965 "abort",
9966 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
9969 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
9970 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9972 ftype = build_function_type_list (ptr_type_node,
9973 ptr_type_node, const_ptr_type_node,
9974 size_type_node, NULL_TREE);
9976 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
9977 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
9978 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
9979 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9980 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
9981 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
9984 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
9986 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
9987 const_ptr_type_node, size_type_node,
9988 NULL_TREE);
9989 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
9990 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
9993 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
9995 ftype = build_function_type_list (ptr_type_node,
9996 ptr_type_node, integer_type_node,
9997 size_type_node, NULL_TREE);
9998 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
9999 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
10002 /* If we're checking the stack, `alloca' can throw. */
10003 const int alloca_flags
10004 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
10006 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10008 ftype = build_function_type_list (ptr_type_node,
10009 size_type_node, NULL_TREE);
10010 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10011 "alloca", alloca_flags);
10014 ftype = build_function_type_list (ptr_type_node, size_type_node,
10015 size_type_node, NULL_TREE);
10016 local_define_builtin ("__builtin_alloca_with_align", ftype,
10017 BUILT_IN_ALLOCA_WITH_ALIGN,
10018 "__builtin_alloca_with_align",
10019 alloca_flags);
10021 ftype = build_function_type_list (ptr_type_node, size_type_node,
10022 size_type_node, size_type_node, NULL_TREE);
10023 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10024 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10025 "__builtin_alloca_with_align_and_max",
10026 alloca_flags);
10028 ftype = build_function_type_list (void_type_node,
10029 ptr_type_node, ptr_type_node,
10030 ptr_type_node, NULL_TREE);
10031 local_define_builtin ("__builtin_init_trampoline", ftype,
10032 BUILT_IN_INIT_TRAMPOLINE,
10033 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10034 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10035 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10036 "__builtin_init_heap_trampoline",
10037 ECF_NOTHROW | ECF_LEAF);
10038 local_define_builtin ("__builtin_init_descriptor", ftype,
10039 BUILT_IN_INIT_DESCRIPTOR,
10040 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10042 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10043 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10044 BUILT_IN_ADJUST_TRAMPOLINE,
10045 "__builtin_adjust_trampoline",
10046 ECF_CONST | ECF_NOTHROW);
10047 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10048 BUILT_IN_ADJUST_DESCRIPTOR,
10049 "__builtin_adjust_descriptor",
10050 ECF_CONST | ECF_NOTHROW);
10052 ftype = build_function_type_list (void_type_node,
10053 ptr_type_node, ptr_type_node, NULL_TREE);
10054 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10055 BUILT_IN_NONLOCAL_GOTO,
10056 "__builtin_nonlocal_goto",
10057 ECF_NORETURN | ECF_NOTHROW);
10059 ftype = build_function_type_list (void_type_node,
10060 ptr_type_node, ptr_type_node, NULL_TREE);
10061 local_define_builtin ("__builtin_setjmp_setup", ftype,
10062 BUILT_IN_SETJMP_SETUP,
10063 "__builtin_setjmp_setup", ECF_NOTHROW);
10065 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10066 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10067 BUILT_IN_SETJMP_RECEIVER,
10068 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10070 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10071 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10072 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10074 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10075 local_define_builtin ("__builtin_stack_restore", ftype,
10076 BUILT_IN_STACK_RESTORE,
10077 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10079 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10080 const_ptr_type_node, size_type_node,
10081 NULL_TREE);
10082 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10083 "__builtin_memcmp_eq",
10084 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10086 /* If there's a possibility that we might use the ARM EABI, build the
10087 alternate __cxa_end_cleanup node used to resume from C++. */
10088 if (targetm.arm_eabi_unwinder)
10090 ftype = build_function_type_list (void_type_node, NULL_TREE);
10091 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10092 BUILT_IN_CXA_END_CLEANUP,
10093 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10096 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10097 local_define_builtin ("__builtin_unwind_resume", ftype,
10098 BUILT_IN_UNWIND_RESUME,
10099 ((targetm_common.except_unwind_info (&global_options)
10100 == UI_SJLJ)
10101 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10102 ECF_NORETURN);
10104 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10106 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10107 NULL_TREE);
10108 local_define_builtin ("__builtin_return_address", ftype,
10109 BUILT_IN_RETURN_ADDRESS,
10110 "__builtin_return_address",
10111 ECF_NOTHROW);
10114 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10115 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10117 ftype = build_function_type_list (void_type_node, ptr_type_node,
10118 ptr_type_node, NULL_TREE);
10119 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10120 local_define_builtin ("__cyg_profile_func_enter", ftype,
10121 BUILT_IN_PROFILE_FUNC_ENTER,
10122 "__cyg_profile_func_enter", 0);
10123 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10124 local_define_builtin ("__cyg_profile_func_exit", ftype,
10125 BUILT_IN_PROFILE_FUNC_EXIT,
10126 "__cyg_profile_func_exit", 0);
10129 /* The exception object and filter values from the runtime. The argument
10130 must be zero before exception lowering, i.e. from the front end. After
10131 exception lowering, it will be the region number for the exception
10132 landing pad. These functions are PURE instead of CONST to prevent
10133 them from being hoisted past the exception edge that will initialize
10134 its value in the landing pad. */
10135 ftype = build_function_type_list (ptr_type_node,
10136 integer_type_node, NULL_TREE);
10137 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10138 /* Only use TM_PURE if we have TM language support. */
10139 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10140 ecf_flags |= ECF_TM_PURE;
10141 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10142 "__builtin_eh_pointer", ecf_flags);
10144 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10145 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10146 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10147 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10149 ftype = build_function_type_list (void_type_node,
10150 integer_type_node, integer_type_node,
10151 NULL_TREE);
10152 local_define_builtin ("__builtin_eh_copy_values", ftype,
10153 BUILT_IN_EH_COPY_VALUES,
10154 "__builtin_eh_copy_values", ECF_NOTHROW);
10156 /* Complex multiplication and division. These are handled as builtins
10157 rather than optabs because emit_library_call_value doesn't support
10158 complex. Further, we can do slightly better with folding these
10159 beasties if the real and complex parts of the arguments are separate. */
10161 int mode;
10163 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10165 char mode_name_buf[4], *q;
10166 const char *p;
10167 enum built_in_function mcode, dcode;
10168 tree type, inner_type;
10169 const char *prefix = "__";
10171 if (targetm.libfunc_gnu_prefix)
10172 prefix = "__gnu_";
10174 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10175 if (type == NULL)
10176 continue;
10177 inner_type = TREE_TYPE (type);
10179 ftype = build_function_type_list (type, inner_type, inner_type,
10180 inner_type, inner_type, NULL_TREE);
10182 mcode = ((enum built_in_function)
10183 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10184 dcode = ((enum built_in_function)
10185 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10187 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10188 *q = TOLOWER (*p);
10189 *q = '\0';
10191 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10192 NULL);
10193 local_define_builtin (built_in_names[mcode], ftype, mcode,
10194 built_in_names[mcode],
10195 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10197 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10198 NULL);
10199 local_define_builtin (built_in_names[dcode], ftype, dcode,
10200 built_in_names[dcode],
10201 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10205 init_internal_fns ();
10208 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10209 better way.
10211 If we requested a pointer to a vector, build up the pointers that
10212 we stripped off while looking for the inner type. Similarly for
10213 return values from functions.
10215 The argument TYPE is the top of the chain, and BOTTOM is the
10216 new type which we will point to. */
10218 tree
10219 reconstruct_complex_type (tree type, tree bottom)
10221 tree inner, outer;
10223 if (TREE_CODE (type) == POINTER_TYPE)
10225 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10226 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10227 TYPE_REF_CAN_ALIAS_ALL (type));
10229 else if (TREE_CODE (type) == REFERENCE_TYPE)
10231 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10232 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10233 TYPE_REF_CAN_ALIAS_ALL (type));
10235 else if (TREE_CODE (type) == ARRAY_TYPE)
10237 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10238 outer = build_array_type (inner, TYPE_DOMAIN (type));
10240 else if (TREE_CODE (type) == FUNCTION_TYPE)
10242 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10243 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10245 else if (TREE_CODE (type) == METHOD_TYPE)
10247 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10248 /* The build_method_type_directly() routine prepends 'this' to argument list,
10249 so we must compensate by getting rid of it. */
10250 outer
10251 = build_method_type_directly
10252 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10253 inner,
10254 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10256 else if (TREE_CODE (type) == OFFSET_TYPE)
10258 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10259 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10261 else
10262 return bottom;
10264 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10265 TYPE_QUALS (type));
10268 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10269 the inner type. */
10270 tree
10271 build_vector_type_for_mode (tree innertype, machine_mode mode)
10273 int nunits;
10274 unsigned int bitsize;
10276 switch (GET_MODE_CLASS (mode))
10278 case MODE_VECTOR_INT:
10279 case MODE_VECTOR_FLOAT:
10280 case MODE_VECTOR_FRACT:
10281 case MODE_VECTOR_UFRACT:
10282 case MODE_VECTOR_ACCUM:
10283 case MODE_VECTOR_UACCUM:
10284 nunits = GET_MODE_NUNITS (mode);
10285 break;
10287 case MODE_INT:
10288 /* Check that there are no leftover bits. */
10289 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10290 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10291 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10292 break;
10294 default:
10295 gcc_unreachable ();
10298 return make_vector_type (innertype, nunits, mode);
10301 /* Similarly, but takes the inner type and number of units, which must be
10302 a power of two. */
10304 tree
10305 build_vector_type (tree innertype, int nunits)
10307 return make_vector_type (innertype, nunits, VOIDmode);
10310 /* Build truth vector with specified length and number of units. */
10312 tree
10313 build_truth_vector_type (unsigned nunits, unsigned vector_size)
10315 machine_mode mask_mode
10316 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
10318 unsigned HOST_WIDE_INT vsize;
10319 if (mask_mode == BLKmode)
10320 vsize = vector_size * BITS_PER_UNIT;
10321 else
10322 vsize = GET_MODE_BITSIZE (mask_mode);
10324 unsigned HOST_WIDE_INT esize = vsize / nunits;
10325 gcc_assert (esize * nunits == vsize);
10327 tree bool_type = build_nonstandard_boolean_type (esize);
10329 return make_vector_type (bool_type, nunits, mask_mode);
10332 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10334 tree
10335 build_same_sized_truth_vector_type (tree vectype)
10337 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10338 return vectype;
10340 unsigned HOST_WIDE_INT size = GET_MODE_SIZE (TYPE_MODE (vectype));
10342 if (!size)
10343 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10345 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10348 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10350 tree
10351 build_opaque_vector_type (tree innertype, int nunits)
10353 tree t = make_vector_type (innertype, nunits, VOIDmode);
10354 tree cand;
10355 /* We always build the non-opaque variant before the opaque one,
10356 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10357 cand = TYPE_NEXT_VARIANT (t);
10358 if (cand
10359 && TYPE_VECTOR_OPAQUE (cand)
10360 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10361 return cand;
10362 /* Othewise build a variant type and make sure to queue it after
10363 the non-opaque type. */
10364 cand = build_distinct_type_copy (t);
10365 TYPE_VECTOR_OPAQUE (cand) = true;
10366 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10367 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10368 TYPE_NEXT_VARIANT (t) = cand;
10369 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10370 return cand;
10374 /* Given an initializer INIT, return TRUE if INIT is zero or some
10375 aggregate of zeros. Otherwise return FALSE. */
10376 bool
10377 initializer_zerop (const_tree init)
10379 tree elt;
10381 STRIP_NOPS (init);
10383 switch (TREE_CODE (init))
10385 case INTEGER_CST:
10386 return integer_zerop (init);
10388 case REAL_CST:
10389 /* ??? Note that this is not correct for C4X float formats. There,
10390 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10391 negative exponent. */
10392 return real_zerop (init)
10393 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10395 case FIXED_CST:
10396 return fixed_zerop (init);
10398 case COMPLEX_CST:
10399 return integer_zerop (init)
10400 || (real_zerop (init)
10401 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10402 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10404 case VECTOR_CST:
10406 unsigned i;
10407 for (i = 0; i < VECTOR_CST_NELTS (init); ++i)
10408 if (!initializer_zerop (VECTOR_CST_ELT (init, i)))
10409 return false;
10410 return true;
10413 case CONSTRUCTOR:
10415 unsigned HOST_WIDE_INT idx;
10417 if (TREE_CLOBBER_P (init))
10418 return false;
10419 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10420 if (!initializer_zerop (elt))
10421 return false;
10422 return true;
10425 case STRING_CST:
10427 int i;
10429 /* We need to loop through all elements to handle cases like
10430 "\0" and "\0foobar". */
10431 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10432 if (TREE_STRING_POINTER (init)[i] != '\0')
10433 return false;
10435 return true;
10438 default:
10439 return false;
10443 /* Check if vector VEC consists of all the equal elements and
10444 that the number of elements corresponds to the type of VEC.
10445 The function returns first element of the vector
10446 or NULL_TREE if the vector is not uniform. */
10447 tree
10448 uniform_vector_p (const_tree vec)
10450 tree first, t;
10451 unsigned i;
10453 if (vec == NULL_TREE)
10454 return NULL_TREE;
10456 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10458 if (TREE_CODE (vec) == VECTOR_CST)
10460 first = VECTOR_CST_ELT (vec, 0);
10461 for (i = 1; i < VECTOR_CST_NELTS (vec); ++i)
10462 if (!operand_equal_p (first, VECTOR_CST_ELT (vec, i), 0))
10463 return NULL_TREE;
10465 return first;
10468 else if (TREE_CODE (vec) == CONSTRUCTOR)
10470 first = error_mark_node;
10472 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10474 if (i == 0)
10476 first = t;
10477 continue;
10479 if (!operand_equal_p (first, t, 0))
10480 return NULL_TREE;
10482 if (i != TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)))
10483 return NULL_TREE;
10485 return first;
10488 return NULL_TREE;
10491 /* Build an empty statement at location LOC. */
10493 tree
10494 build_empty_stmt (location_t loc)
10496 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10497 SET_EXPR_LOCATION (t, loc);
10498 return t;
10502 /* Build an OpenMP clause with code CODE. LOC is the location of the
10503 clause. */
10505 tree
10506 build_omp_clause (location_t loc, enum omp_clause_code code)
10508 tree t;
10509 int size, length;
10511 length = omp_clause_num_ops[code];
10512 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10514 record_node_allocation_statistics (OMP_CLAUSE, size);
10516 t = (tree) ggc_internal_alloc (size);
10517 memset (t, 0, size);
10518 TREE_SET_CODE (t, OMP_CLAUSE);
10519 OMP_CLAUSE_SET_CODE (t, code);
10520 OMP_CLAUSE_LOCATION (t) = loc;
10522 return t;
10525 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10526 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10527 Except for the CODE and operand count field, other storage for the
10528 object is initialized to zeros. */
10530 tree
10531 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
10533 tree t;
10534 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10536 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10537 gcc_assert (len >= 1);
10539 record_node_allocation_statistics (code, length);
10541 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10543 TREE_SET_CODE (t, code);
10545 /* Can't use TREE_OPERAND to store the length because if checking is
10546 enabled, it will try to check the length before we store it. :-P */
10547 t->exp.operands[0] = build_int_cst (sizetype, len);
10549 return t;
10552 /* Helper function for build_call_* functions; build a CALL_EXPR with
10553 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10554 the argument slots. */
10556 static tree
10557 build_call_1 (tree return_type, tree fn, int nargs)
10559 tree t;
10561 t = build_vl_exp (CALL_EXPR, nargs + 3);
10562 TREE_TYPE (t) = return_type;
10563 CALL_EXPR_FN (t) = fn;
10564 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10566 return t;
10569 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10570 FN and a null static chain slot. NARGS is the number of call arguments
10571 which are specified as "..." arguments. */
10573 tree
10574 build_call_nary (tree return_type, tree fn, int nargs, ...)
10576 tree ret;
10577 va_list args;
10578 va_start (args, nargs);
10579 ret = build_call_valist (return_type, fn, nargs, args);
10580 va_end (args);
10581 return ret;
10584 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10585 FN and a null static chain slot. NARGS is the number of call arguments
10586 which are specified as a va_list ARGS. */
10588 tree
10589 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10591 tree t;
10592 int i;
10594 t = build_call_1 (return_type, fn, nargs);
10595 for (i = 0; i < nargs; i++)
10596 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10597 process_call_operands (t);
10598 return t;
10601 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10602 FN and a null static chain slot. NARGS is the number of call arguments
10603 which are specified as a tree array ARGS. */
10605 tree
10606 build_call_array_loc (location_t loc, tree return_type, tree fn,
10607 int nargs, const tree *args)
10609 tree t;
10610 int i;
10612 t = build_call_1 (return_type, fn, nargs);
10613 for (i = 0; i < nargs; i++)
10614 CALL_EXPR_ARG (t, i) = args[i];
10615 process_call_operands (t);
10616 SET_EXPR_LOCATION (t, loc);
10617 return t;
10620 /* Like build_call_array, but takes a vec. */
10622 tree
10623 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10625 tree ret, t;
10626 unsigned int ix;
10628 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10629 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10630 CALL_EXPR_ARG (ret, ix) = t;
10631 process_call_operands (ret);
10632 return ret;
10635 /* Conveniently construct a function call expression. FNDECL names the
10636 function to be called and N arguments are passed in the array
10637 ARGARRAY. */
10639 tree
10640 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10642 tree fntype = TREE_TYPE (fndecl);
10643 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10645 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
10648 /* Conveniently construct a function call expression. FNDECL names the
10649 function to be called and the arguments are passed in the vector
10650 VEC. */
10652 tree
10653 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10655 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10656 vec_safe_address (vec));
10660 /* Conveniently construct a function call expression. FNDECL names the
10661 function to be called, N is the number of arguments, and the "..."
10662 parameters are the argument expressions. */
10664 tree
10665 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10667 va_list ap;
10668 tree *argarray = XALLOCAVEC (tree, n);
10669 int i;
10671 va_start (ap, n);
10672 for (i = 0; i < n; i++)
10673 argarray[i] = va_arg (ap, tree);
10674 va_end (ap);
10675 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10678 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10679 varargs macros aren't supported by all bootstrap compilers. */
10681 tree
10682 build_call_expr (tree fndecl, int n, ...)
10684 va_list ap;
10685 tree *argarray = XALLOCAVEC (tree, n);
10686 int i;
10688 va_start (ap, n);
10689 for (i = 0; i < n; i++)
10690 argarray[i] = va_arg (ap, tree);
10691 va_end (ap);
10692 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10695 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
10696 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
10697 It will get gimplified later into an ordinary internal function. */
10699 tree
10700 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
10701 tree type, int n, const tree *args)
10703 tree t = build_call_1 (type, NULL_TREE, n);
10704 for (int i = 0; i < n; ++i)
10705 CALL_EXPR_ARG (t, i) = args[i];
10706 SET_EXPR_LOCATION (t, loc);
10707 CALL_EXPR_IFN (t) = ifn;
10708 return t;
10711 /* Build internal call expression. This is just like CALL_EXPR, except
10712 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10713 internal function. */
10715 tree
10716 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
10717 tree type, int n, ...)
10719 va_list ap;
10720 tree *argarray = XALLOCAVEC (tree, n);
10721 int i;
10723 va_start (ap, n);
10724 for (i = 0; i < n; i++)
10725 argarray[i] = va_arg (ap, tree);
10726 va_end (ap);
10727 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
10730 /* Return a function call to FN, if the target is guaranteed to support it,
10731 or null otherwise.
10733 N is the number of arguments, passed in the "...", and TYPE is the
10734 type of the return value. */
10736 tree
10737 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
10738 int n, ...)
10740 va_list ap;
10741 tree *argarray = XALLOCAVEC (tree, n);
10742 int i;
10744 va_start (ap, n);
10745 for (i = 0; i < n; i++)
10746 argarray[i] = va_arg (ap, tree);
10747 va_end (ap);
10748 if (internal_fn_p (fn))
10750 internal_fn ifn = as_internal_fn (fn);
10751 if (direct_internal_fn_p (ifn))
10753 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
10754 if (!direct_internal_fn_supported_p (ifn, types,
10755 OPTIMIZE_FOR_BOTH))
10756 return NULL_TREE;
10758 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
10760 else
10762 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
10763 if (!fndecl)
10764 return NULL_TREE;
10765 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10769 /* Return a function call to the appropriate builtin alloca variant.
10771 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
10772 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
10773 bound for SIZE in case it is not a fixed value. */
10775 tree
10776 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
10778 if (max_size >= 0)
10780 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
10781 return
10782 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
10784 else if (align > 0)
10786 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
10787 return build_call_expr (t, 2, size, size_int (align));
10789 else
10791 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
10792 return build_call_expr (t, 1, size);
10796 /* Create a new constant string literal and return a char* pointer to it.
10797 The STRING_CST value is the LEN characters at STR. */
10798 tree
10799 build_string_literal (int len, const char *str)
10801 tree t, elem, index, type;
10803 t = build_string (len, str);
10804 elem = build_type_variant (char_type_node, 1, 0);
10805 index = build_index_type (size_int (len - 1));
10806 type = build_array_type (elem, index);
10807 TREE_TYPE (t) = type;
10808 TREE_CONSTANT (t) = 1;
10809 TREE_READONLY (t) = 1;
10810 TREE_STATIC (t) = 1;
10812 type = build_pointer_type (elem);
10813 t = build1 (ADDR_EXPR, type,
10814 build4 (ARRAY_REF, elem,
10815 t, integer_zero_node, NULL_TREE, NULL_TREE));
10816 return t;
10821 /* Return true if T (assumed to be a DECL) must be assigned a memory
10822 location. */
10824 bool
10825 needs_to_live_in_memory (const_tree t)
10827 return (TREE_ADDRESSABLE (t)
10828 || is_global_var (t)
10829 || (TREE_CODE (t) == RESULT_DECL
10830 && !DECL_BY_REFERENCE (t)
10831 && aggregate_value_p (t, current_function_decl)));
10834 /* Return value of a constant X and sign-extend it. */
10836 HOST_WIDE_INT
10837 int_cst_value (const_tree x)
10839 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
10840 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
10842 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10843 gcc_assert (cst_and_fits_in_hwi (x));
10845 if (bits < HOST_BITS_PER_WIDE_INT)
10847 bool negative = ((val >> (bits - 1)) & 1) != 0;
10848 if (negative)
10849 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
10850 else
10851 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
10854 return val;
10857 /* If TYPE is an integral or pointer type, return an integer type with
10858 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10859 if TYPE is already an integer type of signedness UNSIGNEDP. */
10861 tree
10862 signed_or_unsigned_type_for (int unsignedp, tree type)
10864 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
10865 return type;
10867 if (TREE_CODE (type) == VECTOR_TYPE)
10869 tree inner = TREE_TYPE (type);
10870 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
10871 if (!inner2)
10872 return NULL_TREE;
10873 if (inner == inner2)
10874 return type;
10875 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
10878 if (!INTEGRAL_TYPE_P (type)
10879 && !POINTER_TYPE_P (type)
10880 && TREE_CODE (type) != OFFSET_TYPE)
10881 return NULL_TREE;
10883 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
10886 /* If TYPE is an integral or pointer type, return an integer type with
10887 the same precision which is unsigned, or itself if TYPE is already an
10888 unsigned integer type. */
10890 tree
10891 unsigned_type_for (tree type)
10893 return signed_or_unsigned_type_for (1, type);
10896 /* If TYPE is an integral or pointer type, return an integer type with
10897 the same precision which is signed, or itself if TYPE is already a
10898 signed integer type. */
10900 tree
10901 signed_type_for (tree type)
10903 return signed_or_unsigned_type_for (0, type);
10906 /* If TYPE is a vector type, return a signed integer vector type with the
10907 same width and number of subparts. Otherwise return boolean_type_node. */
10909 tree
10910 truth_type_for (tree type)
10912 if (TREE_CODE (type) == VECTOR_TYPE)
10914 if (VECTOR_BOOLEAN_TYPE_P (type))
10915 return type;
10916 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
10917 GET_MODE_SIZE (TYPE_MODE (type)));
10919 else
10920 return boolean_type_node;
10923 /* Returns the largest value obtainable by casting something in INNER type to
10924 OUTER type. */
10926 tree
10927 upper_bound_in_type (tree outer, tree inner)
10929 unsigned int det = 0;
10930 unsigned oprec = TYPE_PRECISION (outer);
10931 unsigned iprec = TYPE_PRECISION (inner);
10932 unsigned prec;
10934 /* Compute a unique number for every combination. */
10935 det |= (oprec > iprec) ? 4 : 0;
10936 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
10937 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
10939 /* Determine the exponent to use. */
10940 switch (det)
10942 case 0:
10943 case 1:
10944 /* oprec <= iprec, outer: signed, inner: don't care. */
10945 prec = oprec - 1;
10946 break;
10947 case 2:
10948 case 3:
10949 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10950 prec = oprec;
10951 break;
10952 case 4:
10953 /* oprec > iprec, outer: signed, inner: signed. */
10954 prec = iprec - 1;
10955 break;
10956 case 5:
10957 /* oprec > iprec, outer: signed, inner: unsigned. */
10958 prec = iprec;
10959 break;
10960 case 6:
10961 /* oprec > iprec, outer: unsigned, inner: signed. */
10962 prec = oprec;
10963 break;
10964 case 7:
10965 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10966 prec = iprec;
10967 break;
10968 default:
10969 gcc_unreachable ();
10972 return wide_int_to_tree (outer,
10973 wi::mask (prec, false, TYPE_PRECISION (outer)));
10976 /* Returns the smallest value obtainable by casting something in INNER type to
10977 OUTER type. */
10979 tree
10980 lower_bound_in_type (tree outer, tree inner)
10982 unsigned oprec = TYPE_PRECISION (outer);
10983 unsigned iprec = TYPE_PRECISION (inner);
10985 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10986 and obtain 0. */
10987 if (TYPE_UNSIGNED (outer)
10988 /* If we are widening something of an unsigned type, OUTER type
10989 contains all values of INNER type. In particular, both INNER
10990 and OUTER types have zero in common. */
10991 || (oprec > iprec && TYPE_UNSIGNED (inner)))
10992 return build_int_cst (outer, 0);
10993 else
10995 /* If we are widening a signed type to another signed type, we
10996 want to obtain -2^^(iprec-1). If we are keeping the
10997 precision or narrowing to a signed type, we want to obtain
10998 -2^(oprec-1). */
10999 unsigned prec = oprec > iprec ? iprec : oprec;
11000 return wide_int_to_tree (outer,
11001 wi::mask (prec - 1, true,
11002 TYPE_PRECISION (outer)));
11006 /* Return nonzero if two operands that are suitable for PHI nodes are
11007 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11008 SSA_NAME or invariant. Note that this is strictly an optimization.
11009 That is, callers of this function can directly call operand_equal_p
11010 and get the same result, only slower. */
11013 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11015 if (arg0 == arg1)
11016 return 1;
11017 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11018 return 0;
11019 return operand_equal_p (arg0, arg1, 0);
11022 /* Returns number of zeros at the end of binary representation of X. */
11024 tree
11025 num_ending_zeros (const_tree x)
11027 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11031 #define WALK_SUBTREE(NODE) \
11032 do \
11034 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11035 if (result) \
11036 return result; \
11038 while (0)
11040 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11041 be walked whenever a type is seen in the tree. Rest of operands and return
11042 value are as for walk_tree. */
11044 static tree
11045 walk_type_fields (tree type, walk_tree_fn func, void *data,
11046 hash_set<tree> *pset, walk_tree_lh lh)
11048 tree result = NULL_TREE;
11050 switch (TREE_CODE (type))
11052 case POINTER_TYPE:
11053 case REFERENCE_TYPE:
11054 case VECTOR_TYPE:
11055 /* We have to worry about mutually recursive pointers. These can't
11056 be written in C. They can in Ada. It's pathological, but
11057 there's an ACATS test (c38102a) that checks it. Deal with this
11058 by checking if we're pointing to another pointer, that one
11059 points to another pointer, that one does too, and we have no htab.
11060 If so, get a hash table. We check three levels deep to avoid
11061 the cost of the hash table if we don't need one. */
11062 if (POINTER_TYPE_P (TREE_TYPE (type))
11063 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11064 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11065 && !pset)
11067 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11068 func, data);
11069 if (result)
11070 return result;
11072 break;
11075 /* fall through */
11077 case COMPLEX_TYPE:
11078 WALK_SUBTREE (TREE_TYPE (type));
11079 break;
11081 case METHOD_TYPE:
11082 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11084 /* Fall through. */
11086 case FUNCTION_TYPE:
11087 WALK_SUBTREE (TREE_TYPE (type));
11089 tree arg;
11091 /* We never want to walk into default arguments. */
11092 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11093 WALK_SUBTREE (TREE_VALUE (arg));
11095 break;
11097 case ARRAY_TYPE:
11098 /* Don't follow this nodes's type if a pointer for fear that
11099 we'll have infinite recursion. If we have a PSET, then we
11100 need not fear. */
11101 if (pset
11102 || (!POINTER_TYPE_P (TREE_TYPE (type))
11103 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11104 WALK_SUBTREE (TREE_TYPE (type));
11105 WALK_SUBTREE (TYPE_DOMAIN (type));
11106 break;
11108 case OFFSET_TYPE:
11109 WALK_SUBTREE (TREE_TYPE (type));
11110 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11111 break;
11113 default:
11114 break;
11117 return NULL_TREE;
11120 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11121 called with the DATA and the address of each sub-tree. If FUNC returns a
11122 non-NULL value, the traversal is stopped, and the value returned by FUNC
11123 is returned. If PSET is non-NULL it is used to record the nodes visited,
11124 and to avoid visiting a node more than once. */
11126 tree
11127 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11128 hash_set<tree> *pset, walk_tree_lh lh)
11130 enum tree_code code;
11131 int walk_subtrees;
11132 tree result;
11134 #define WALK_SUBTREE_TAIL(NODE) \
11135 do \
11137 tp = & (NODE); \
11138 goto tail_recurse; \
11140 while (0)
11142 tail_recurse:
11143 /* Skip empty subtrees. */
11144 if (!*tp)
11145 return NULL_TREE;
11147 /* Don't walk the same tree twice, if the user has requested
11148 that we avoid doing so. */
11149 if (pset && pset->add (*tp))
11150 return NULL_TREE;
11152 /* Call the function. */
11153 walk_subtrees = 1;
11154 result = (*func) (tp, &walk_subtrees, data);
11156 /* If we found something, return it. */
11157 if (result)
11158 return result;
11160 code = TREE_CODE (*tp);
11162 /* Even if we didn't, FUNC may have decided that there was nothing
11163 interesting below this point in the tree. */
11164 if (!walk_subtrees)
11166 /* But we still need to check our siblings. */
11167 if (code == TREE_LIST)
11168 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11169 else if (code == OMP_CLAUSE)
11170 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11171 else
11172 return NULL_TREE;
11175 if (lh)
11177 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11178 if (result || !walk_subtrees)
11179 return result;
11182 switch (code)
11184 case ERROR_MARK:
11185 case IDENTIFIER_NODE:
11186 case INTEGER_CST:
11187 case REAL_CST:
11188 case FIXED_CST:
11189 case VECTOR_CST:
11190 case STRING_CST:
11191 case BLOCK:
11192 case PLACEHOLDER_EXPR:
11193 case SSA_NAME:
11194 case FIELD_DECL:
11195 case RESULT_DECL:
11196 /* None of these have subtrees other than those already walked
11197 above. */
11198 break;
11200 case TREE_LIST:
11201 WALK_SUBTREE (TREE_VALUE (*tp));
11202 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11203 break;
11205 case TREE_VEC:
11207 int len = TREE_VEC_LENGTH (*tp);
11209 if (len == 0)
11210 break;
11212 /* Walk all elements but the first. */
11213 while (--len)
11214 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11216 /* Now walk the first one as a tail call. */
11217 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11220 case COMPLEX_CST:
11221 WALK_SUBTREE (TREE_REALPART (*tp));
11222 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11224 case CONSTRUCTOR:
11226 unsigned HOST_WIDE_INT idx;
11227 constructor_elt *ce;
11229 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11230 idx++)
11231 WALK_SUBTREE (ce->value);
11233 break;
11235 case SAVE_EXPR:
11236 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11238 case BIND_EXPR:
11240 tree decl;
11241 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11243 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11244 into declarations that are just mentioned, rather than
11245 declared; they don't really belong to this part of the tree.
11246 And, we can see cycles: the initializer for a declaration
11247 can refer to the declaration itself. */
11248 WALK_SUBTREE (DECL_INITIAL (decl));
11249 WALK_SUBTREE (DECL_SIZE (decl));
11250 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11252 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11255 case STATEMENT_LIST:
11257 tree_stmt_iterator i;
11258 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11259 WALK_SUBTREE (*tsi_stmt_ptr (i));
11261 break;
11263 case OMP_CLAUSE:
11264 switch (OMP_CLAUSE_CODE (*tp))
11266 case OMP_CLAUSE_GANG:
11267 case OMP_CLAUSE__GRIDDIM_:
11268 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11269 /* FALLTHRU */
11271 case OMP_CLAUSE_ASYNC:
11272 case OMP_CLAUSE_WAIT:
11273 case OMP_CLAUSE_WORKER:
11274 case OMP_CLAUSE_VECTOR:
11275 case OMP_CLAUSE_NUM_GANGS:
11276 case OMP_CLAUSE_NUM_WORKERS:
11277 case OMP_CLAUSE_VECTOR_LENGTH:
11278 case OMP_CLAUSE_PRIVATE:
11279 case OMP_CLAUSE_SHARED:
11280 case OMP_CLAUSE_FIRSTPRIVATE:
11281 case OMP_CLAUSE_COPYIN:
11282 case OMP_CLAUSE_COPYPRIVATE:
11283 case OMP_CLAUSE_FINAL:
11284 case OMP_CLAUSE_IF:
11285 case OMP_CLAUSE_NUM_THREADS:
11286 case OMP_CLAUSE_SCHEDULE:
11287 case OMP_CLAUSE_UNIFORM:
11288 case OMP_CLAUSE_DEPEND:
11289 case OMP_CLAUSE_NUM_TEAMS:
11290 case OMP_CLAUSE_THREAD_LIMIT:
11291 case OMP_CLAUSE_DEVICE:
11292 case OMP_CLAUSE_DIST_SCHEDULE:
11293 case OMP_CLAUSE_SAFELEN:
11294 case OMP_CLAUSE_SIMDLEN:
11295 case OMP_CLAUSE_ORDERED:
11296 case OMP_CLAUSE_PRIORITY:
11297 case OMP_CLAUSE_GRAINSIZE:
11298 case OMP_CLAUSE_NUM_TASKS:
11299 case OMP_CLAUSE_HINT:
11300 case OMP_CLAUSE_TO_DECLARE:
11301 case OMP_CLAUSE_LINK:
11302 case OMP_CLAUSE_USE_DEVICE_PTR:
11303 case OMP_CLAUSE_IS_DEVICE_PTR:
11304 case OMP_CLAUSE__LOOPTEMP_:
11305 case OMP_CLAUSE__SIMDUID_:
11306 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11307 /* FALLTHRU */
11309 case OMP_CLAUSE_INDEPENDENT:
11310 case OMP_CLAUSE_NOWAIT:
11311 case OMP_CLAUSE_DEFAULT:
11312 case OMP_CLAUSE_UNTIED:
11313 case OMP_CLAUSE_MERGEABLE:
11314 case OMP_CLAUSE_PROC_BIND:
11315 case OMP_CLAUSE_INBRANCH:
11316 case OMP_CLAUSE_NOTINBRANCH:
11317 case OMP_CLAUSE_FOR:
11318 case OMP_CLAUSE_PARALLEL:
11319 case OMP_CLAUSE_SECTIONS:
11320 case OMP_CLAUSE_TASKGROUP:
11321 case OMP_CLAUSE_NOGROUP:
11322 case OMP_CLAUSE_THREADS:
11323 case OMP_CLAUSE_SIMD:
11324 case OMP_CLAUSE_DEFAULTMAP:
11325 case OMP_CLAUSE_AUTO:
11326 case OMP_CLAUSE_SEQ:
11327 case OMP_CLAUSE_TILE:
11328 case OMP_CLAUSE__SIMT_:
11329 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11331 case OMP_CLAUSE_LASTPRIVATE:
11332 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11333 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11334 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11336 case OMP_CLAUSE_COLLAPSE:
11338 int i;
11339 for (i = 0; i < 3; i++)
11340 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11341 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11344 case OMP_CLAUSE_LINEAR:
11345 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11346 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11347 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11348 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11350 case OMP_CLAUSE_ALIGNED:
11351 case OMP_CLAUSE_FROM:
11352 case OMP_CLAUSE_TO:
11353 case OMP_CLAUSE_MAP:
11354 case OMP_CLAUSE__CACHE_:
11355 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11356 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11357 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11359 case OMP_CLAUSE_REDUCTION:
11361 int i;
11362 for (i = 0; i < 5; i++)
11363 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11364 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11367 default:
11368 gcc_unreachable ();
11370 break;
11372 case TARGET_EXPR:
11374 int i, len;
11376 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11377 But, we only want to walk once. */
11378 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11379 for (i = 0; i < len; ++i)
11380 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11381 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11384 case DECL_EXPR:
11385 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11386 defining. We only want to walk into these fields of a type in this
11387 case and not in the general case of a mere reference to the type.
11389 The criterion is as follows: if the field can be an expression, it
11390 must be walked only here. This should be in keeping with the fields
11391 that are directly gimplified in gimplify_type_sizes in order for the
11392 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11393 variable-sized types.
11395 Note that DECLs get walked as part of processing the BIND_EXPR. */
11396 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11398 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11399 if (TREE_CODE (*type_p) == ERROR_MARK)
11400 return NULL_TREE;
11402 /* Call the function for the type. See if it returns anything or
11403 doesn't want us to continue. If we are to continue, walk both
11404 the normal fields and those for the declaration case. */
11405 result = (*func) (type_p, &walk_subtrees, data);
11406 if (result || !walk_subtrees)
11407 return result;
11409 /* But do not walk a pointed-to type since it may itself need to
11410 be walked in the declaration case if it isn't anonymous. */
11411 if (!POINTER_TYPE_P (*type_p))
11413 result = walk_type_fields (*type_p, func, data, pset, lh);
11414 if (result)
11415 return result;
11418 /* If this is a record type, also walk the fields. */
11419 if (RECORD_OR_UNION_TYPE_P (*type_p))
11421 tree field;
11423 for (field = TYPE_FIELDS (*type_p); field;
11424 field = DECL_CHAIN (field))
11426 /* We'd like to look at the type of the field, but we can
11427 easily get infinite recursion. So assume it's pointed
11428 to elsewhere in the tree. Also, ignore things that
11429 aren't fields. */
11430 if (TREE_CODE (field) != FIELD_DECL)
11431 continue;
11433 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11434 WALK_SUBTREE (DECL_SIZE (field));
11435 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11436 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11437 WALK_SUBTREE (DECL_QUALIFIER (field));
11441 /* Same for scalar types. */
11442 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11443 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11444 || TREE_CODE (*type_p) == INTEGER_TYPE
11445 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11446 || TREE_CODE (*type_p) == REAL_TYPE)
11448 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11449 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11452 WALK_SUBTREE (TYPE_SIZE (*type_p));
11453 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11455 /* FALLTHRU */
11457 default:
11458 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11460 int i, len;
11462 /* Walk over all the sub-trees of this operand. */
11463 len = TREE_OPERAND_LENGTH (*tp);
11465 /* Go through the subtrees. We need to do this in forward order so
11466 that the scope of a FOR_EXPR is handled properly. */
11467 if (len)
11469 for (i = 0; i < len - 1; ++i)
11470 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11471 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11474 /* If this is a type, walk the needed fields in the type. */
11475 else if (TYPE_P (*tp))
11476 return walk_type_fields (*tp, func, data, pset, lh);
11477 break;
11480 /* We didn't find what we were looking for. */
11481 return NULL_TREE;
11483 #undef WALK_SUBTREE_TAIL
11485 #undef WALK_SUBTREE
11487 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11489 tree
11490 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11491 walk_tree_lh lh)
11493 tree result;
11495 hash_set<tree> pset;
11496 result = walk_tree_1 (tp, func, data, &pset, lh);
11497 return result;
11501 tree
11502 tree_block (tree t)
11504 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11506 if (IS_EXPR_CODE_CLASS (c))
11507 return LOCATION_BLOCK (t->exp.locus);
11508 gcc_unreachable ();
11509 return NULL;
11512 void
11513 tree_set_block (tree t, tree b)
11515 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11517 if (IS_EXPR_CODE_CLASS (c))
11519 t->exp.locus = set_block (t->exp.locus, b);
11521 else
11522 gcc_unreachable ();
11525 /* Create a nameless artificial label and put it in the current
11526 function context. The label has a location of LOC. Returns the
11527 newly created label. */
11529 tree
11530 create_artificial_label (location_t loc)
11532 tree lab = build_decl (loc,
11533 LABEL_DECL, NULL_TREE, void_type_node);
11535 DECL_ARTIFICIAL (lab) = 1;
11536 DECL_IGNORED_P (lab) = 1;
11537 DECL_CONTEXT (lab) = current_function_decl;
11538 return lab;
11541 /* Given a tree, try to return a useful variable name that we can use
11542 to prefix a temporary that is being assigned the value of the tree.
11543 I.E. given <temp> = &A, return A. */
11545 const char *
11546 get_name (tree t)
11548 tree stripped_decl;
11550 stripped_decl = t;
11551 STRIP_NOPS (stripped_decl);
11552 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11553 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11554 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11556 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11557 if (!name)
11558 return NULL;
11559 return IDENTIFIER_POINTER (name);
11561 else
11563 switch (TREE_CODE (stripped_decl))
11565 case ADDR_EXPR:
11566 return get_name (TREE_OPERAND (stripped_decl, 0));
11567 default:
11568 return NULL;
11573 /* Return true if TYPE has a variable argument list. */
11575 bool
11576 stdarg_p (const_tree fntype)
11578 function_args_iterator args_iter;
11579 tree n = NULL_TREE, t;
11581 if (!fntype)
11582 return false;
11584 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11586 n = t;
11589 return n != NULL_TREE && n != void_type_node;
11592 /* Return true if TYPE has a prototype. */
11594 bool
11595 prototype_p (const_tree fntype)
11597 tree t;
11599 gcc_assert (fntype != NULL_TREE);
11601 t = TYPE_ARG_TYPES (fntype);
11602 return (t != NULL_TREE);
11605 /* If BLOCK is inlined from an __attribute__((__artificial__))
11606 routine, return pointer to location from where it has been
11607 called. */
11608 location_t *
11609 block_nonartificial_location (tree block)
11611 location_t *ret = NULL;
11613 while (block && TREE_CODE (block) == BLOCK
11614 && BLOCK_ABSTRACT_ORIGIN (block))
11616 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11618 while (TREE_CODE (ao) == BLOCK
11619 && BLOCK_ABSTRACT_ORIGIN (ao)
11620 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11621 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11623 if (TREE_CODE (ao) == FUNCTION_DECL)
11625 /* If AO is an artificial inline, point RET to the
11626 call site locus at which it has been inlined and continue
11627 the loop, in case AO's caller is also an artificial
11628 inline. */
11629 if (DECL_DECLARED_INLINE_P (ao)
11630 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11631 ret = &BLOCK_SOURCE_LOCATION (block);
11632 else
11633 break;
11635 else if (TREE_CODE (ao) != BLOCK)
11636 break;
11638 block = BLOCK_SUPERCONTEXT (block);
11640 return ret;
11644 /* If EXP is inlined from an __attribute__((__artificial__))
11645 function, return the location of the original call expression. */
11647 location_t
11648 tree_nonartificial_location (tree exp)
11650 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11652 if (loc)
11653 return *loc;
11654 else
11655 return EXPR_LOCATION (exp);
11659 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11660 nodes. */
11662 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11664 hashval_t
11665 cl_option_hasher::hash (tree x)
11667 const_tree const t = x;
11668 const char *p;
11669 size_t i;
11670 size_t len = 0;
11671 hashval_t hash = 0;
11673 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11675 p = (const char *)TREE_OPTIMIZATION (t);
11676 len = sizeof (struct cl_optimization);
11679 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11680 return cl_target_option_hash (TREE_TARGET_OPTION (t));
11682 else
11683 gcc_unreachable ();
11685 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11686 something else. */
11687 for (i = 0; i < len; i++)
11688 if (p[i])
11689 hash = (hash << 4) ^ ((i << 2) | p[i]);
11691 return hash;
11694 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11695 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11696 same. */
11698 bool
11699 cl_option_hasher::equal (tree x, tree y)
11701 const_tree const xt = x;
11702 const_tree const yt = y;
11703 const char *xp;
11704 const char *yp;
11705 size_t len;
11707 if (TREE_CODE (xt) != TREE_CODE (yt))
11708 return 0;
11710 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11712 xp = (const char *)TREE_OPTIMIZATION (xt);
11713 yp = (const char *)TREE_OPTIMIZATION (yt);
11714 len = sizeof (struct cl_optimization);
11717 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11719 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
11720 TREE_TARGET_OPTION (yt));
11723 else
11724 gcc_unreachable ();
11726 return (memcmp (xp, yp, len) == 0);
11729 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11731 tree
11732 build_optimization_node (struct gcc_options *opts)
11734 tree t;
11736 /* Use the cache of optimization nodes. */
11738 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
11739 opts);
11741 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
11742 t = *slot;
11743 if (!t)
11745 /* Insert this one into the hash table. */
11746 t = cl_optimization_node;
11747 *slot = t;
11749 /* Make a new node for next time round. */
11750 cl_optimization_node = make_node (OPTIMIZATION_NODE);
11753 return t;
11756 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11758 tree
11759 build_target_option_node (struct gcc_options *opts)
11761 tree t;
11763 /* Use the cache of optimization nodes. */
11765 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
11766 opts);
11768 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
11769 t = *slot;
11770 if (!t)
11772 /* Insert this one into the hash table. */
11773 t = cl_target_option_node;
11774 *slot = t;
11776 /* Make a new node for next time round. */
11777 cl_target_option_node = make_node (TARGET_OPTION_NODE);
11780 return t;
11783 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11784 so that they aren't saved during PCH writing. */
11786 void
11787 prepare_target_option_nodes_for_pch (void)
11789 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
11790 for (; iter != cl_option_hash_table->end (); ++iter)
11791 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
11792 TREE_TARGET_GLOBALS (*iter) = NULL;
11795 /* Determine the "ultimate origin" of a block. The block may be an inlined
11796 instance of an inlined instance of a block which is local to an inline
11797 function, so we have to trace all of the way back through the origin chain
11798 to find out what sort of node actually served as the original seed for the
11799 given block. */
11801 tree
11802 block_ultimate_origin (const_tree block)
11804 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
11806 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
11807 we're trying to output the abstract instance of this function. */
11808 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
11809 return NULL_TREE;
11811 if (immediate_origin == NULL_TREE)
11812 return NULL_TREE;
11813 else
11815 tree ret_val;
11816 tree lookahead = immediate_origin;
11820 ret_val = lookahead;
11821 lookahead = (TREE_CODE (ret_val) == BLOCK
11822 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
11824 while (lookahead != NULL && lookahead != ret_val);
11826 /* The block's abstract origin chain may not be the *ultimate* origin of
11827 the block. It could lead to a DECL that has an abstract origin set.
11828 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11829 will give us if it has one). Note that DECL's abstract origins are
11830 supposed to be the most distant ancestor (or so decl_ultimate_origin
11831 claims), so we don't need to loop following the DECL origins. */
11832 if (DECL_P (ret_val))
11833 return DECL_ORIGIN (ret_val);
11835 return ret_val;
11839 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
11840 no instruction. */
11842 bool
11843 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
11845 /* Do not strip casts into or out of differing address spaces. */
11846 if (POINTER_TYPE_P (outer_type)
11847 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
11849 if (!POINTER_TYPE_P (inner_type)
11850 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
11851 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
11852 return false;
11854 else if (POINTER_TYPE_P (inner_type)
11855 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
11857 /* We already know that outer_type is not a pointer with
11858 a non-generic address space. */
11859 return false;
11862 /* Use precision rather then machine mode when we can, which gives
11863 the correct answer even for submode (bit-field) types. */
11864 if ((INTEGRAL_TYPE_P (outer_type)
11865 || POINTER_TYPE_P (outer_type)
11866 || TREE_CODE (outer_type) == OFFSET_TYPE)
11867 && (INTEGRAL_TYPE_P (inner_type)
11868 || POINTER_TYPE_P (inner_type)
11869 || TREE_CODE (inner_type) == OFFSET_TYPE))
11870 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
11872 /* Otherwise fall back on comparing machine modes (e.g. for
11873 aggregate types, floats). */
11874 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
11877 /* Return true iff conversion in EXP generates no instruction. Mark
11878 it inline so that we fully inline into the stripping functions even
11879 though we have two uses of this function. */
11881 static inline bool
11882 tree_nop_conversion (const_tree exp)
11884 tree outer_type, inner_type;
11886 if (!CONVERT_EXPR_P (exp)
11887 && TREE_CODE (exp) != NON_LVALUE_EXPR)
11888 return false;
11889 if (TREE_OPERAND (exp, 0) == error_mark_node)
11890 return false;
11892 outer_type = TREE_TYPE (exp);
11893 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11895 if (!inner_type)
11896 return false;
11898 return tree_nop_conversion_p (outer_type, inner_type);
11901 /* Return true iff conversion in EXP generates no instruction. Don't
11902 consider conversions changing the signedness. */
11904 static bool
11905 tree_sign_nop_conversion (const_tree exp)
11907 tree outer_type, inner_type;
11909 if (!tree_nop_conversion (exp))
11910 return false;
11912 outer_type = TREE_TYPE (exp);
11913 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11915 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
11916 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
11919 /* Strip conversions from EXP according to tree_nop_conversion and
11920 return the resulting expression. */
11922 tree
11923 tree_strip_nop_conversions (tree exp)
11925 while (tree_nop_conversion (exp))
11926 exp = TREE_OPERAND (exp, 0);
11927 return exp;
11930 /* Strip conversions from EXP according to tree_sign_nop_conversion
11931 and return the resulting expression. */
11933 tree
11934 tree_strip_sign_nop_conversions (tree exp)
11936 while (tree_sign_nop_conversion (exp))
11937 exp = TREE_OPERAND (exp, 0);
11938 return exp;
11941 /* Avoid any floating point extensions from EXP. */
11942 tree
11943 strip_float_extensions (tree exp)
11945 tree sub, expt, subt;
11947 /* For floating point constant look up the narrowest type that can hold
11948 it properly and handle it like (type)(narrowest_type)constant.
11949 This way we can optimize for instance a=a*2.0 where "a" is float
11950 but 2.0 is double constant. */
11951 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
11953 REAL_VALUE_TYPE orig;
11954 tree type = NULL;
11956 orig = TREE_REAL_CST (exp);
11957 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
11958 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
11959 type = float_type_node;
11960 else if (TYPE_PRECISION (TREE_TYPE (exp))
11961 > TYPE_PRECISION (double_type_node)
11962 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
11963 type = double_type_node;
11964 if (type)
11965 return build_real_truncate (type, orig);
11968 if (!CONVERT_EXPR_P (exp))
11969 return exp;
11971 sub = TREE_OPERAND (exp, 0);
11972 subt = TREE_TYPE (sub);
11973 expt = TREE_TYPE (exp);
11975 if (!FLOAT_TYPE_P (subt))
11976 return exp;
11978 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
11979 return exp;
11981 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
11982 return exp;
11984 return strip_float_extensions (sub);
11987 /* Strip out all handled components that produce invariant
11988 offsets. */
11990 const_tree
11991 strip_invariant_refs (const_tree op)
11993 while (handled_component_p (op))
11995 switch (TREE_CODE (op))
11997 case ARRAY_REF:
11998 case ARRAY_RANGE_REF:
11999 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12000 || TREE_OPERAND (op, 2) != NULL_TREE
12001 || TREE_OPERAND (op, 3) != NULL_TREE)
12002 return NULL;
12003 break;
12005 case COMPONENT_REF:
12006 if (TREE_OPERAND (op, 2) != NULL_TREE)
12007 return NULL;
12008 break;
12010 default:;
12012 op = TREE_OPERAND (op, 0);
12015 return op;
12018 static GTY(()) tree gcc_eh_personality_decl;
12020 /* Return the GCC personality function decl. */
12022 tree
12023 lhd_gcc_personality (void)
12025 if (!gcc_eh_personality_decl)
12026 gcc_eh_personality_decl = build_personality_function ("gcc");
12027 return gcc_eh_personality_decl;
12030 /* TARGET is a call target of GIMPLE call statement
12031 (obtained by gimple_call_fn). Return true if it is
12032 OBJ_TYPE_REF representing an virtual call of C++ method.
12033 (As opposed to OBJ_TYPE_REF representing objc calls
12034 through a cast where middle-end devirtualization machinery
12035 can't apply.) */
12037 bool
12038 virtual_method_call_p (const_tree target)
12040 if (TREE_CODE (target) != OBJ_TYPE_REF)
12041 return false;
12042 tree t = TREE_TYPE (target);
12043 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12044 t = TREE_TYPE (t);
12045 if (TREE_CODE (t) == FUNCTION_TYPE)
12046 return false;
12047 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12048 /* If we do not have BINFO associated, it means that type was built
12049 without devirtualization enabled. Do not consider this a virtual
12050 call. */
12051 if (!TYPE_BINFO (obj_type_ref_class (target)))
12052 return false;
12053 return true;
12056 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12058 tree
12059 obj_type_ref_class (const_tree ref)
12061 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12062 ref = TREE_TYPE (ref);
12063 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12064 ref = TREE_TYPE (ref);
12065 /* We look for type THIS points to. ObjC also builds
12066 OBJ_TYPE_REF with non-method calls, Their first parameter
12067 ID however also corresponds to class type. */
12068 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12069 || TREE_CODE (ref) == FUNCTION_TYPE);
12070 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12071 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12072 return TREE_TYPE (ref);
12075 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12077 static tree
12078 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12080 unsigned int i;
12081 tree base_binfo, b;
12083 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12084 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12085 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12086 return base_binfo;
12087 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12088 return b;
12089 return NULL;
12092 /* Try to find a base info of BINFO that would have its field decl at offset
12093 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12094 found, return, otherwise return NULL_TREE. */
12096 tree
12097 get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
12099 tree type = BINFO_TYPE (binfo);
12101 while (true)
12103 HOST_WIDE_INT pos, size;
12104 tree fld;
12105 int i;
12107 if (types_same_for_odr (type, expected_type))
12108 return binfo;
12109 if (offset < 0)
12110 return NULL_TREE;
12112 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12114 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12115 continue;
12117 pos = int_bit_position (fld);
12118 size = tree_to_uhwi (DECL_SIZE (fld));
12119 if (pos <= offset && (pos + size) > offset)
12120 break;
12122 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12123 return NULL_TREE;
12125 /* Offset 0 indicates the primary base, whose vtable contents are
12126 represented in the binfo for the derived class. */
12127 else if (offset != 0)
12129 tree found_binfo = NULL, base_binfo;
12130 /* Offsets in BINFO are in bytes relative to the whole structure
12131 while POS is in bits relative to the containing field. */
12132 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12133 / BITS_PER_UNIT);
12135 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12136 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12137 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12139 found_binfo = base_binfo;
12140 break;
12142 if (found_binfo)
12143 binfo = found_binfo;
12144 else
12145 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12146 binfo_offset);
12149 type = TREE_TYPE (fld);
12150 offset -= pos;
12154 /* Returns true if X is a typedef decl. */
12156 bool
12157 is_typedef_decl (const_tree x)
12159 return (x && TREE_CODE (x) == TYPE_DECL
12160 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12163 /* Returns true iff TYPE is a type variant created for a typedef. */
12165 bool
12166 typedef_variant_p (const_tree type)
12168 return is_typedef_decl (TYPE_NAME (type));
12171 /* Warn about a use of an identifier which was marked deprecated. */
12172 void
12173 warn_deprecated_use (tree node, tree attr)
12175 const char *msg;
12177 if (node == 0 || !warn_deprecated_decl)
12178 return;
12180 if (!attr)
12182 if (DECL_P (node))
12183 attr = DECL_ATTRIBUTES (node);
12184 else if (TYPE_P (node))
12186 tree decl = TYPE_STUB_DECL (node);
12187 if (decl)
12188 attr = lookup_attribute ("deprecated",
12189 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12193 if (attr)
12194 attr = lookup_attribute ("deprecated", attr);
12196 if (attr)
12197 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12198 else
12199 msg = NULL;
12201 bool w;
12202 if (DECL_P (node))
12204 if (msg)
12205 w = warning (OPT_Wdeprecated_declarations,
12206 "%qD is deprecated: %s", node, msg);
12207 else
12208 w = warning (OPT_Wdeprecated_declarations,
12209 "%qD is deprecated", node);
12210 if (w)
12211 inform (DECL_SOURCE_LOCATION (node), "declared here");
12213 else if (TYPE_P (node))
12215 tree what = NULL_TREE;
12216 tree decl = TYPE_STUB_DECL (node);
12218 if (TYPE_NAME (node))
12220 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12221 what = TYPE_NAME (node);
12222 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12223 && DECL_NAME (TYPE_NAME (node)))
12224 what = DECL_NAME (TYPE_NAME (node));
12227 if (decl)
12229 if (what)
12231 if (msg)
12232 w = warning (OPT_Wdeprecated_declarations,
12233 "%qE is deprecated: %s", what, msg);
12234 else
12235 w = warning (OPT_Wdeprecated_declarations,
12236 "%qE is deprecated", what);
12238 else
12240 if (msg)
12241 w = warning (OPT_Wdeprecated_declarations,
12242 "type is deprecated: %s", msg);
12243 else
12244 w = warning (OPT_Wdeprecated_declarations,
12245 "type is deprecated");
12247 if (w)
12248 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12250 else
12252 if (what)
12254 if (msg)
12255 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
12256 what, msg);
12257 else
12258 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
12260 else
12262 if (msg)
12263 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
12264 msg);
12265 else
12266 warning (OPT_Wdeprecated_declarations, "type is deprecated");
12272 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12273 somewhere in it. */
12275 bool
12276 contains_bitfld_component_ref_p (const_tree ref)
12278 while (handled_component_p (ref))
12280 if (TREE_CODE (ref) == COMPONENT_REF
12281 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12282 return true;
12283 ref = TREE_OPERAND (ref, 0);
12286 return false;
12289 /* Try to determine whether a TRY_CATCH expression can fall through.
12290 This is a subroutine of block_may_fallthru. */
12292 static bool
12293 try_catch_may_fallthru (const_tree stmt)
12295 tree_stmt_iterator i;
12297 /* If the TRY block can fall through, the whole TRY_CATCH can
12298 fall through. */
12299 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12300 return true;
12302 i = tsi_start (TREE_OPERAND (stmt, 1));
12303 switch (TREE_CODE (tsi_stmt (i)))
12305 case CATCH_EXPR:
12306 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12307 catch expression and a body. The whole TRY_CATCH may fall
12308 through iff any of the catch bodies falls through. */
12309 for (; !tsi_end_p (i); tsi_next (&i))
12311 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12312 return true;
12314 return false;
12316 case EH_FILTER_EXPR:
12317 /* The exception filter expression only matters if there is an
12318 exception. If the exception does not match EH_FILTER_TYPES,
12319 we will execute EH_FILTER_FAILURE, and we will fall through
12320 if that falls through. If the exception does match
12321 EH_FILTER_TYPES, the stack unwinder will continue up the
12322 stack, so we will not fall through. We don't know whether we
12323 will throw an exception which matches EH_FILTER_TYPES or not,
12324 so we just ignore EH_FILTER_TYPES and assume that we might
12325 throw an exception which doesn't match. */
12326 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12328 default:
12329 /* This case represents statements to be executed when an
12330 exception occurs. Those statements are implicitly followed
12331 by a RESX statement to resume execution after the exception.
12332 So in this case the TRY_CATCH never falls through. */
12333 return false;
12337 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12338 need not be 100% accurate; simply be conservative and return true if we
12339 don't know. This is used only to avoid stupidly generating extra code.
12340 If we're wrong, we'll just delete the extra code later. */
12342 bool
12343 block_may_fallthru (const_tree block)
12345 /* This CONST_CAST is okay because expr_last returns its argument
12346 unmodified and we assign it to a const_tree. */
12347 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12349 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12351 case GOTO_EXPR:
12352 case RETURN_EXPR:
12353 /* Easy cases. If the last statement of the block implies
12354 control transfer, then we can't fall through. */
12355 return false;
12357 case SWITCH_EXPR:
12358 /* If there is a default: label or case labels cover all possible
12359 SWITCH_COND values, then the SWITCH_EXPR will transfer control
12360 to some case label in all cases and all we care is whether the
12361 SWITCH_BODY falls through. */
12362 if (SWITCH_ALL_CASES_P (stmt))
12363 return block_may_fallthru (SWITCH_BODY (stmt));
12364 return true;
12366 case COND_EXPR:
12367 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12368 return true;
12369 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12371 case BIND_EXPR:
12372 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12374 case TRY_CATCH_EXPR:
12375 return try_catch_may_fallthru (stmt);
12377 case TRY_FINALLY_EXPR:
12378 /* The finally clause is always executed after the try clause,
12379 so if it does not fall through, then the try-finally will not
12380 fall through. Otherwise, if the try clause does not fall
12381 through, then when the finally clause falls through it will
12382 resume execution wherever the try clause was going. So the
12383 whole try-finally will only fall through if both the try
12384 clause and the finally clause fall through. */
12385 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12386 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12388 case MODIFY_EXPR:
12389 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12390 stmt = TREE_OPERAND (stmt, 1);
12391 else
12392 return true;
12393 /* FALLTHRU */
12395 case CALL_EXPR:
12396 /* Functions that do not return do not fall through. */
12397 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12399 case CLEANUP_POINT_EXPR:
12400 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12402 case TARGET_EXPR:
12403 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12405 case ERROR_MARK:
12406 return true;
12408 default:
12409 return lang_hooks.block_may_fallthru (stmt);
12413 /* True if we are using EH to handle cleanups. */
12414 static bool using_eh_for_cleanups_flag = false;
12416 /* This routine is called from front ends to indicate eh should be used for
12417 cleanups. */
12418 void
12419 using_eh_for_cleanups (void)
12421 using_eh_for_cleanups_flag = true;
12424 /* Query whether EH is used for cleanups. */
12425 bool
12426 using_eh_for_cleanups_p (void)
12428 return using_eh_for_cleanups_flag;
12431 /* Wrapper for tree_code_name to ensure that tree code is valid */
12432 const char *
12433 get_tree_code_name (enum tree_code code)
12435 const char *invalid = "<invalid tree code>";
12437 if (code >= MAX_TREE_CODES)
12438 return invalid;
12440 return tree_code_name[code];
12443 /* Drops the TREE_OVERFLOW flag from T. */
12445 tree
12446 drop_tree_overflow (tree t)
12448 gcc_checking_assert (TREE_OVERFLOW (t));
12450 /* For tree codes with a sharing machinery re-build the result. */
12451 if (TREE_CODE (t) == INTEGER_CST)
12452 return wide_int_to_tree (TREE_TYPE (t), wi::to_wide (t));
12454 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12455 and drop the flag. */
12456 t = copy_node (t);
12457 TREE_OVERFLOW (t) = 0;
12459 /* For constants that contain nested constants, drop the flag
12460 from those as well. */
12461 if (TREE_CODE (t) == COMPLEX_CST)
12463 if (TREE_OVERFLOW (TREE_REALPART (t)))
12464 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
12465 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
12466 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
12468 if (TREE_CODE (t) == VECTOR_CST)
12470 for (unsigned i = 0; i < VECTOR_CST_NELTS (t); ++i)
12472 tree& elt = VECTOR_CST_ELT (t, i);
12473 if (TREE_OVERFLOW (elt))
12474 elt = drop_tree_overflow (elt);
12477 return t;
12480 /* Given a memory reference expression T, return its base address.
12481 The base address of a memory reference expression is the main
12482 object being referenced. For instance, the base address for
12483 'array[i].fld[j]' is 'array'. You can think of this as stripping
12484 away the offset part from a memory address.
12486 This function calls handled_component_p to strip away all the inner
12487 parts of the memory reference until it reaches the base object. */
12489 tree
12490 get_base_address (tree t)
12492 while (handled_component_p (t))
12493 t = TREE_OPERAND (t, 0);
12495 if ((TREE_CODE (t) == MEM_REF
12496 || TREE_CODE (t) == TARGET_MEM_REF)
12497 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12498 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12500 /* ??? Either the alias oracle or all callers need to properly deal
12501 with WITH_SIZE_EXPRs before we can look through those. */
12502 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12503 return NULL_TREE;
12505 return t;
12508 /* Return a tree of sizetype representing the size, in bytes, of the element
12509 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12511 tree
12512 array_ref_element_size (tree exp)
12514 tree aligned_size = TREE_OPERAND (exp, 3);
12515 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12516 location_t loc = EXPR_LOCATION (exp);
12518 /* If a size was specified in the ARRAY_REF, it's the size measured
12519 in alignment units of the element type. So multiply by that value. */
12520 if (aligned_size)
12522 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12523 sizetype from another type of the same width and signedness. */
12524 if (TREE_TYPE (aligned_size) != sizetype)
12525 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12526 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12527 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12530 /* Otherwise, take the size from that of the element type. Substitute
12531 any PLACEHOLDER_EXPR that we have. */
12532 else
12533 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12536 /* Return a tree representing the lower bound of the array mentioned in
12537 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12539 tree
12540 array_ref_low_bound (tree exp)
12542 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12544 /* If a lower bound is specified in EXP, use it. */
12545 if (TREE_OPERAND (exp, 2))
12546 return TREE_OPERAND (exp, 2);
12548 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12549 substituting for a PLACEHOLDER_EXPR as needed. */
12550 if (domain_type && TYPE_MIN_VALUE (domain_type))
12551 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12553 /* Otherwise, return a zero of the appropriate type. */
12554 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12557 /* Return a tree representing the upper bound of the array mentioned in
12558 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12560 tree
12561 array_ref_up_bound (tree exp)
12563 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12565 /* If there is a domain type and it has an upper bound, use it, substituting
12566 for a PLACEHOLDER_EXPR as needed. */
12567 if (domain_type && TYPE_MAX_VALUE (domain_type))
12568 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12570 /* Otherwise fail. */
12571 return NULL_TREE;
12574 /* Returns true if REF is an array reference or a component reference
12575 to an array at the end of a structure.
12576 If this is the case, the array may be allocated larger
12577 than its upper bound implies. */
12579 bool
12580 array_at_struct_end_p (tree ref)
12582 tree atype;
12584 if (TREE_CODE (ref) == ARRAY_REF
12585 || TREE_CODE (ref) == ARRAY_RANGE_REF)
12587 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
12588 ref = TREE_OPERAND (ref, 0);
12590 else if (TREE_CODE (ref) == COMPONENT_REF
12591 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
12592 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
12593 else
12594 return false;
12596 if (TREE_CODE (ref) == STRING_CST)
12597 return false;
12599 while (handled_component_p (ref))
12601 /* If the reference chain contains a component reference to a
12602 non-union type and there follows another field the reference
12603 is not at the end of a structure. */
12604 if (TREE_CODE (ref) == COMPONENT_REF)
12606 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12608 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12609 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12610 nextf = DECL_CHAIN (nextf);
12611 if (nextf)
12612 return false;
12615 /* If we have a multi-dimensional array we do not consider
12616 a non-innermost dimension as flex array if the whole
12617 multi-dimensional array is at struct end.
12618 Same for an array of aggregates with a trailing array
12619 member. */
12620 else if (TREE_CODE (ref) == ARRAY_REF)
12621 return false;
12622 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
12624 /* If we view an underlying object as sth else then what we
12625 gathered up to now is what we have to rely on. */
12626 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
12627 break;
12628 else
12629 gcc_unreachable ();
12631 ref = TREE_OPERAND (ref, 0);
12634 /* The array now is at struct end. Treat flexible arrays as
12635 always subject to extend, even into just padding constrained by
12636 an underlying decl. */
12637 if (! TYPE_SIZE (atype))
12638 return true;
12640 tree size = NULL;
12642 if (TREE_CODE (ref) == MEM_REF
12643 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
12645 size = TYPE_SIZE (TREE_TYPE (ref));
12646 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
12649 /* If the reference is based on a declared entity, the size of the array
12650 is constrained by its given domain. (Do not trust commons PR/69368). */
12651 if (DECL_P (ref)
12652 /* Be sure the size of MEM_REF target match. For example:
12654 char buf[10];
12655 struct foo *str = (struct foo *)&buf;
12657 str->trailin_array[2] = 1;
12659 is valid because BUF allocate enough space. */
12661 && (!size || (DECL_SIZE (ref) != NULL
12662 && operand_equal_p (DECL_SIZE (ref), size, 0)))
12663 && !(flag_unconstrained_commons
12664 && VAR_P (ref) && DECL_COMMON (ref)))
12665 return false;
12667 return true;
12670 /* Return a tree representing the offset, in bytes, of the field referenced
12671 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12673 tree
12674 component_ref_field_offset (tree exp)
12676 tree aligned_offset = TREE_OPERAND (exp, 2);
12677 tree field = TREE_OPERAND (exp, 1);
12678 location_t loc = EXPR_LOCATION (exp);
12680 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12681 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12682 value. */
12683 if (aligned_offset)
12685 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12686 sizetype from another type of the same width and signedness. */
12687 if (TREE_TYPE (aligned_offset) != sizetype)
12688 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
12689 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
12690 size_int (DECL_OFFSET_ALIGN (field)
12691 / BITS_PER_UNIT));
12694 /* Otherwise, take the offset from that of the field. Substitute
12695 any PLACEHOLDER_EXPR that we have. */
12696 else
12697 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
12700 /* Return the machine mode of T. For vectors, returns the mode of the
12701 inner type. The main use case is to feed the result to HONOR_NANS,
12702 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12704 machine_mode
12705 element_mode (const_tree t)
12707 if (!TYPE_P (t))
12708 t = TREE_TYPE (t);
12709 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
12710 t = TREE_TYPE (t);
12711 return TYPE_MODE (t);
12714 /* Vector types need to re-check the target flags each time we report
12715 the machine mode. We need to do this because attribute target can
12716 change the result of vector_mode_supported_p and have_regs_of_mode
12717 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
12718 change on a per-function basis. */
12719 /* ??? Possibly a better solution is to run through all the types
12720 referenced by a function and re-compute the TYPE_MODE once, rather
12721 than make the TYPE_MODE macro call a function. */
12723 machine_mode
12724 vector_type_mode (const_tree t)
12726 machine_mode mode;
12728 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
12730 mode = t->type_common.mode;
12731 if (VECTOR_MODE_P (mode)
12732 && (!targetm.vector_mode_supported_p (mode)
12733 || !have_regs_of_mode[mode]))
12735 scalar_int_mode innermode;
12737 /* For integers, try mapping it to a same-sized scalar mode. */
12738 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
12740 unsigned int size = (TYPE_VECTOR_SUBPARTS (t)
12741 * GET_MODE_BITSIZE (innermode));
12742 scalar_int_mode mode;
12743 if (int_mode_for_size (size, 0).exists (&mode)
12744 && have_regs_of_mode[mode])
12745 return mode;
12748 return BLKmode;
12751 return mode;
12754 /* Verify that basic properties of T match TV and thus T can be a variant of
12755 TV. TV should be the more specified variant (i.e. the main variant). */
12757 static bool
12758 verify_type_variant (const_tree t, tree tv)
12760 /* Type variant can differ by:
12762 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
12763 ENCODE_QUAL_ADDR_SPACE.
12764 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
12765 in this case some values may not be set in the variant types
12766 (see TYPE_COMPLETE_P checks).
12767 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
12768 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
12769 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
12770 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
12771 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
12772 this is necessary to make it possible to merge types form different TUs
12773 - arrays, pointers and references may have TREE_TYPE that is a variant
12774 of TREE_TYPE of their main variants.
12775 - aggregates may have new TYPE_FIELDS list that list variants of
12776 the main variant TYPE_FIELDS.
12777 - vector types may differ by TYPE_VECTOR_OPAQUE
12780 /* Convenience macro for matching individual fields. */
12781 #define verify_variant_match(flag) \
12782 do { \
12783 if (flag (tv) != flag (t)) \
12785 error ("type variant differs by " #flag "."); \
12786 debug_tree (tv); \
12787 return false; \
12789 } while (false)
12791 /* tree_base checks. */
12793 verify_variant_match (TREE_CODE);
12794 /* FIXME: Ada builds non-artificial variants of artificial types. */
12795 if (TYPE_ARTIFICIAL (tv) && 0)
12796 verify_variant_match (TYPE_ARTIFICIAL);
12797 if (POINTER_TYPE_P (tv))
12798 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
12799 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
12800 verify_variant_match (TYPE_UNSIGNED);
12801 verify_variant_match (TYPE_PACKED);
12802 if (TREE_CODE (t) == REFERENCE_TYPE)
12803 verify_variant_match (TYPE_REF_IS_RVALUE);
12804 if (AGGREGATE_TYPE_P (t))
12805 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
12806 else
12807 verify_variant_match (TYPE_SATURATING);
12808 /* FIXME: This check trigger during libstdc++ build. */
12809 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
12810 verify_variant_match (TYPE_FINAL_P);
12812 /* tree_type_common checks. */
12814 if (COMPLETE_TYPE_P (t))
12816 verify_variant_match (TYPE_MODE);
12817 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
12818 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
12819 verify_variant_match (TYPE_SIZE);
12820 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
12821 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
12822 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
12824 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
12825 TYPE_SIZE_UNIT (tv), 0));
12826 error ("type variant has different TYPE_SIZE_UNIT");
12827 debug_tree (tv);
12828 error ("type variant's TYPE_SIZE_UNIT");
12829 debug_tree (TYPE_SIZE_UNIT (tv));
12830 error ("type's TYPE_SIZE_UNIT");
12831 debug_tree (TYPE_SIZE_UNIT (t));
12832 return false;
12835 verify_variant_match (TYPE_PRECISION);
12836 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
12837 if (RECORD_OR_UNION_TYPE_P (t))
12838 verify_variant_match (TYPE_TRANSPARENT_AGGR);
12839 else if (TREE_CODE (t) == ARRAY_TYPE)
12840 verify_variant_match (TYPE_NONALIASED_COMPONENT);
12841 /* During LTO we merge variant lists from diferent translation units
12842 that may differ BY TYPE_CONTEXT that in turn may point
12843 to TRANSLATION_UNIT_DECL.
12844 Ada also builds variants of types with different TYPE_CONTEXT. */
12845 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
12846 verify_variant_match (TYPE_CONTEXT);
12847 verify_variant_match (TYPE_STRING_FLAG);
12848 if (TYPE_ALIAS_SET_KNOWN_P (t))
12850 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
12851 debug_tree (tv);
12852 return false;
12855 /* tree_type_non_common checks. */
12857 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
12858 and dangle the pointer from time to time. */
12859 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
12860 && (in_lto_p || !TYPE_VFIELD (tv)
12861 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
12863 error ("type variant has different TYPE_VFIELD");
12864 debug_tree (tv);
12865 return false;
12867 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
12868 || TREE_CODE (t) == INTEGER_TYPE
12869 || TREE_CODE (t) == BOOLEAN_TYPE
12870 || TREE_CODE (t) == REAL_TYPE
12871 || TREE_CODE (t) == FIXED_POINT_TYPE)
12873 verify_variant_match (TYPE_MAX_VALUE);
12874 verify_variant_match (TYPE_MIN_VALUE);
12876 if (TREE_CODE (t) == METHOD_TYPE)
12877 verify_variant_match (TYPE_METHOD_BASETYPE);
12878 if (TREE_CODE (t) == OFFSET_TYPE)
12879 verify_variant_match (TYPE_OFFSET_BASETYPE);
12880 if (TREE_CODE (t) == ARRAY_TYPE)
12881 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
12882 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
12883 or even type's main variant. This is needed to make bootstrap pass
12884 and the bug seems new in GCC 5.
12885 C++ FE should be updated to make this consistent and we should check
12886 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
12887 is a match with main variant.
12889 Also disable the check for Java for now because of parser hack that builds
12890 first an dummy BINFO and then sometimes replace it by real BINFO in some
12891 of the copies. */
12892 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
12893 && TYPE_BINFO (t) != TYPE_BINFO (tv)
12894 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
12895 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
12896 at LTO time only. */
12897 && (in_lto_p && odr_type_p (t)))
12899 error ("type variant has different TYPE_BINFO");
12900 debug_tree (tv);
12901 error ("type variant's TYPE_BINFO");
12902 debug_tree (TYPE_BINFO (tv));
12903 error ("type's TYPE_BINFO");
12904 debug_tree (TYPE_BINFO (t));
12905 return false;
12908 /* Check various uses of TYPE_VALUES_RAW. */
12909 if (TREE_CODE (t) == ENUMERAL_TYPE)
12910 verify_variant_match (TYPE_VALUES);
12911 else if (TREE_CODE (t) == ARRAY_TYPE)
12912 verify_variant_match (TYPE_DOMAIN);
12913 /* Permit incomplete variants of complete type. While FEs may complete
12914 all variants, this does not happen for C++ templates in all cases. */
12915 else if (RECORD_OR_UNION_TYPE_P (t)
12916 && COMPLETE_TYPE_P (t)
12917 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
12919 tree f1, f2;
12921 /* Fortran builds qualified variants as new records with items of
12922 qualified type. Verify that they looks same. */
12923 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
12924 f1 && f2;
12925 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
12926 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
12927 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
12928 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
12929 /* FIXME: gfc_nonrestricted_type builds all types as variants
12930 with exception of pointer types. It deeply copies the type
12931 which means that we may end up with a variant type
12932 referring non-variant pointer. We may change it to
12933 produce types as variants, too, like
12934 objc_get_protocol_qualified_type does. */
12935 && !POINTER_TYPE_P (TREE_TYPE (f1)))
12936 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
12937 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
12938 break;
12939 if (f1 || f2)
12941 error ("type variant has different TYPE_FIELDS");
12942 debug_tree (tv);
12943 error ("first mismatch is field");
12944 debug_tree (f1);
12945 error ("and field");
12946 debug_tree (f2);
12947 return false;
12950 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
12951 verify_variant_match (TYPE_ARG_TYPES);
12952 /* For C++ the qualified variant of array type is really an array type
12953 of qualified TREE_TYPE.
12954 objc builds variants of pointer where pointer to type is a variant, too
12955 in objc_get_protocol_qualified_type. */
12956 if (TREE_TYPE (t) != TREE_TYPE (tv)
12957 && ((TREE_CODE (t) != ARRAY_TYPE
12958 && !POINTER_TYPE_P (t))
12959 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
12960 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
12962 error ("type variant has different TREE_TYPE");
12963 debug_tree (tv);
12964 error ("type variant's TREE_TYPE");
12965 debug_tree (TREE_TYPE (tv));
12966 error ("type's TREE_TYPE");
12967 debug_tree (TREE_TYPE (t));
12968 return false;
12970 if (type_with_alias_set_p (t)
12971 && !gimple_canonical_types_compatible_p (t, tv, false))
12973 error ("type is not compatible with its variant");
12974 debug_tree (tv);
12975 error ("type variant's TREE_TYPE");
12976 debug_tree (TREE_TYPE (tv));
12977 error ("type's TREE_TYPE");
12978 debug_tree (TREE_TYPE (t));
12979 return false;
12981 return true;
12982 #undef verify_variant_match
12986 /* The TYPE_CANONICAL merging machinery. It should closely resemble
12987 the middle-end types_compatible_p function. It needs to avoid
12988 claiming types are different for types that should be treated
12989 the same with respect to TBAA. Canonical types are also used
12990 for IL consistency checks via the useless_type_conversion_p
12991 predicate which does not handle all type kinds itself but falls
12992 back to pointer-comparison of TYPE_CANONICAL for aggregates
12993 for example. */
12995 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
12996 type calculation because we need to allow inter-operability between signed
12997 and unsigned variants. */
12999 bool
13000 type_with_interoperable_signedness (const_tree type)
13002 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13003 signed char and unsigned char. Similarly fortran FE builds
13004 C_SIZE_T as signed type, while C defines it unsigned. */
13006 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13007 == INTEGER_TYPE
13008 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13009 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13012 /* Return true iff T1 and T2 are structurally identical for what
13013 TBAA is concerned.
13014 This function is used both by lto.c canonical type merging and by the
13015 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13016 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13017 only for LTO because only in these cases TYPE_CANONICAL equivalence
13018 correspond to one defined by gimple_canonical_types_compatible_p. */
13020 bool
13021 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13022 bool trust_type_canonical)
13024 /* Type variants should be same as the main variant. When not doing sanity
13025 checking to verify this fact, go to main variants and save some work. */
13026 if (trust_type_canonical)
13028 t1 = TYPE_MAIN_VARIANT (t1);
13029 t2 = TYPE_MAIN_VARIANT (t2);
13032 /* Check first for the obvious case of pointer identity. */
13033 if (t1 == t2)
13034 return true;
13036 /* Check that we have two types to compare. */
13037 if (t1 == NULL_TREE || t2 == NULL_TREE)
13038 return false;
13040 /* We consider complete types always compatible with incomplete type.
13041 This does not make sense for canonical type calculation and thus we
13042 need to ensure that we are never called on it.
13044 FIXME: For more correctness the function probably should have three modes
13045 1) mode assuming that types are complete mathcing their structure
13046 2) mode allowing incomplete types but producing equivalence classes
13047 and thus ignoring all info from complete types
13048 3) mode allowing incomplete types to match complete but checking
13049 compatibility between complete types.
13051 1 and 2 can be used for canonical type calculation. 3 is the real
13052 definition of type compatibility that can be used i.e. for warnings during
13053 declaration merging. */
13055 gcc_assert (!trust_type_canonical
13056 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13057 /* If the types have been previously registered and found equal
13058 they still are. */
13060 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13061 && trust_type_canonical)
13063 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13064 they are always NULL, but they are set to non-NULL for types
13065 constructed by build_pointer_type and variants. In this case the
13066 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13067 all pointers are considered equal. Be sure to not return false
13068 negatives. */
13069 gcc_checking_assert (canonical_type_used_p (t1)
13070 && canonical_type_used_p (t2));
13071 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13074 /* Can't be the same type if the types don't have the same code. */
13075 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13076 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13077 return false;
13079 /* Qualifiers do not matter for canonical type comparison purposes. */
13081 /* Void types and nullptr types are always the same. */
13082 if (TREE_CODE (t1) == VOID_TYPE
13083 || TREE_CODE (t1) == NULLPTR_TYPE)
13084 return true;
13086 /* Can't be the same type if they have different mode. */
13087 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13088 return false;
13090 /* Non-aggregate types can be handled cheaply. */
13091 if (INTEGRAL_TYPE_P (t1)
13092 || SCALAR_FLOAT_TYPE_P (t1)
13093 || FIXED_POINT_TYPE_P (t1)
13094 || TREE_CODE (t1) == VECTOR_TYPE
13095 || TREE_CODE (t1) == COMPLEX_TYPE
13096 || TREE_CODE (t1) == OFFSET_TYPE
13097 || POINTER_TYPE_P (t1))
13099 /* Can't be the same type if they have different recision. */
13100 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13101 return false;
13103 /* In some cases the signed and unsigned types are required to be
13104 inter-operable. */
13105 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13106 && !type_with_interoperable_signedness (t1))
13107 return false;
13109 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13110 interoperable with "signed char". Unless all frontends are revisited
13111 to agree on these types, we must ignore the flag completely. */
13113 /* Fortran standard define C_PTR type that is compatible with every
13114 C pointer. For this reason we need to glob all pointers into one.
13115 Still pointers in different address spaces are not compatible. */
13116 if (POINTER_TYPE_P (t1))
13118 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13119 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13120 return false;
13123 /* Tail-recurse to components. */
13124 if (TREE_CODE (t1) == VECTOR_TYPE
13125 || TREE_CODE (t1) == COMPLEX_TYPE)
13126 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13127 TREE_TYPE (t2),
13128 trust_type_canonical);
13130 return true;
13133 /* Do type-specific comparisons. */
13134 switch (TREE_CODE (t1))
13136 case ARRAY_TYPE:
13137 /* Array types are the same if the element types are the same and
13138 the number of elements are the same. */
13139 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13140 trust_type_canonical)
13141 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13142 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13143 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13144 return false;
13145 else
13147 tree i1 = TYPE_DOMAIN (t1);
13148 tree i2 = TYPE_DOMAIN (t2);
13150 /* For an incomplete external array, the type domain can be
13151 NULL_TREE. Check this condition also. */
13152 if (i1 == NULL_TREE && i2 == NULL_TREE)
13153 return true;
13154 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13155 return false;
13156 else
13158 tree min1 = TYPE_MIN_VALUE (i1);
13159 tree min2 = TYPE_MIN_VALUE (i2);
13160 tree max1 = TYPE_MAX_VALUE (i1);
13161 tree max2 = TYPE_MAX_VALUE (i2);
13163 /* The minimum/maximum values have to be the same. */
13164 if ((min1 == min2
13165 || (min1 && min2
13166 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13167 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13168 || operand_equal_p (min1, min2, 0))))
13169 && (max1 == max2
13170 || (max1 && max2
13171 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13172 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13173 || operand_equal_p (max1, max2, 0)))))
13174 return true;
13175 else
13176 return false;
13180 case METHOD_TYPE:
13181 case FUNCTION_TYPE:
13182 /* Function types are the same if the return type and arguments types
13183 are the same. */
13184 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13185 trust_type_canonical))
13186 return false;
13188 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13189 return true;
13190 else
13192 tree parms1, parms2;
13194 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13195 parms1 && parms2;
13196 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13198 if (!gimple_canonical_types_compatible_p
13199 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13200 trust_type_canonical))
13201 return false;
13204 if (parms1 || parms2)
13205 return false;
13207 return true;
13210 case RECORD_TYPE:
13211 case UNION_TYPE:
13212 case QUAL_UNION_TYPE:
13214 tree f1, f2;
13216 /* Don't try to compare variants of an incomplete type, before
13217 TYPE_FIELDS has been copied around. */
13218 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
13219 return true;
13222 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
13223 return false;
13225 /* For aggregate types, all the fields must be the same. */
13226 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13227 f1 || f2;
13228 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13230 /* Skip non-fields and zero-sized fields. */
13231 while (f1 && (TREE_CODE (f1) != FIELD_DECL
13232 || (DECL_SIZE (f1)
13233 && integer_zerop (DECL_SIZE (f1)))))
13234 f1 = TREE_CHAIN (f1);
13235 while (f2 && (TREE_CODE (f2) != FIELD_DECL
13236 || (DECL_SIZE (f2)
13237 && integer_zerop (DECL_SIZE (f2)))))
13238 f2 = TREE_CHAIN (f2);
13239 if (!f1 || !f2)
13240 break;
13241 /* The fields must have the same name, offset and type. */
13242 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13243 || !gimple_compare_field_offset (f1, f2)
13244 || !gimple_canonical_types_compatible_p
13245 (TREE_TYPE (f1), TREE_TYPE (f2),
13246 trust_type_canonical))
13247 return false;
13250 /* If one aggregate has more fields than the other, they
13251 are not the same. */
13252 if (f1 || f2)
13253 return false;
13255 return true;
13258 default:
13259 /* Consider all types with language specific trees in them mutually
13260 compatible. This is executed only from verify_type and false
13261 positives can be tolerated. */
13262 gcc_assert (!in_lto_p);
13263 return true;
13267 /* Verify type T. */
13269 void
13270 verify_type (const_tree t)
13272 bool error_found = false;
13273 tree mv = TYPE_MAIN_VARIANT (t);
13274 if (!mv)
13276 error ("Main variant is not defined");
13277 error_found = true;
13279 else if (mv != TYPE_MAIN_VARIANT (mv))
13281 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13282 debug_tree (mv);
13283 error_found = true;
13285 else if (t != mv && !verify_type_variant (t, mv))
13286 error_found = true;
13288 tree ct = TYPE_CANONICAL (t);
13289 if (!ct)
13291 else if (TYPE_CANONICAL (t) != ct)
13293 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13294 debug_tree (ct);
13295 error_found = true;
13297 /* Method and function types can not be used to address memory and thus
13298 TYPE_CANONICAL really matters only for determining useless conversions.
13300 FIXME: C++ FE produce declarations of builtin functions that are not
13301 compatible with main variants. */
13302 else if (TREE_CODE (t) == FUNCTION_TYPE)
13304 else if (t != ct
13305 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13306 with variably sized arrays because their sizes possibly
13307 gimplified to different variables. */
13308 && !variably_modified_type_p (ct, NULL)
13309 && !gimple_canonical_types_compatible_p (t, ct, false))
13311 error ("TYPE_CANONICAL is not compatible");
13312 debug_tree (ct);
13313 error_found = true;
13316 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
13317 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
13319 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13320 debug_tree (ct);
13321 error_found = true;
13323 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
13325 error ("TYPE_CANONICAL of main variant is not main variant");
13326 debug_tree (ct);
13327 debug_tree (TYPE_MAIN_VARIANT (ct));
13328 error_found = true;
13332 /* Check various uses of TYPE_MIN_VALUE_RAW. */
13333 if (RECORD_OR_UNION_TYPE_P (t))
13335 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13336 and danagle the pointer from time to time. */
13337 if (TYPE_VFIELD (t)
13338 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13339 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13341 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13342 debug_tree (TYPE_VFIELD (t));
13343 error_found = true;
13346 else if (TREE_CODE (t) == POINTER_TYPE)
13348 if (TYPE_NEXT_PTR_TO (t)
13349 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13351 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13352 debug_tree (TYPE_NEXT_PTR_TO (t));
13353 error_found = true;
13356 else if (TREE_CODE (t) == REFERENCE_TYPE)
13358 if (TYPE_NEXT_REF_TO (t)
13359 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13361 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13362 debug_tree (TYPE_NEXT_REF_TO (t));
13363 error_found = true;
13366 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13367 || TREE_CODE (t) == FIXED_POINT_TYPE)
13369 /* FIXME: The following check should pass:
13370 useless_type_conversion_p (const_cast <tree> (t),
13371 TREE_TYPE (TYPE_MIN_VALUE (t))
13372 but does not for C sizetypes in LTO. */
13375 /* Check various uses of TYPE_MAXVAL_RAW. */
13376 if (RECORD_OR_UNION_TYPE_P (t))
13378 if (!TYPE_BINFO (t))
13380 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13382 error ("TYPE_BINFO is not TREE_BINFO");
13383 debug_tree (TYPE_BINFO (t));
13384 error_found = true;
13386 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
13388 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13389 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13390 error_found = true;
13393 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13395 if (TYPE_METHOD_BASETYPE (t)
13396 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13397 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13399 error ("TYPE_METHOD_BASETYPE is not record nor union");
13400 debug_tree (TYPE_METHOD_BASETYPE (t));
13401 error_found = true;
13404 else if (TREE_CODE (t) == OFFSET_TYPE)
13406 if (TYPE_OFFSET_BASETYPE (t)
13407 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13408 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13410 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13411 debug_tree (TYPE_OFFSET_BASETYPE (t));
13412 error_found = true;
13415 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13416 || TREE_CODE (t) == FIXED_POINT_TYPE)
13418 /* FIXME: The following check should pass:
13419 useless_type_conversion_p (const_cast <tree> (t),
13420 TREE_TYPE (TYPE_MAX_VALUE (t))
13421 but does not for C sizetypes in LTO. */
13423 else if (TREE_CODE (t) == ARRAY_TYPE)
13425 if (TYPE_ARRAY_MAX_SIZE (t)
13426 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13428 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13429 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13430 error_found = true;
13433 else if (TYPE_MAX_VALUE_RAW (t))
13435 error ("TYPE_MAX_VALUE_RAW non-NULL");
13436 debug_tree (TYPE_MAX_VALUE_RAW (t));
13437 error_found = true;
13440 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13442 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13443 debug_tree (TYPE_LANG_SLOT_1 (t));
13444 error_found = true;
13447 /* Check various uses of TYPE_VALUES_RAW. */
13448 if (TREE_CODE (t) == ENUMERAL_TYPE)
13449 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13451 tree value = TREE_VALUE (l);
13452 tree name = TREE_PURPOSE (l);
13454 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13455 CONST_DECL of ENUMERAL TYPE. */
13456 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13458 error ("Enum value is not CONST_DECL or INTEGER_CST");
13459 debug_tree (value);
13460 debug_tree (name);
13461 error_found = true;
13463 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13464 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13466 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13467 debug_tree (value);
13468 debug_tree (name);
13469 error_found = true;
13471 if (TREE_CODE (name) != IDENTIFIER_NODE)
13473 error ("Enum value name is not IDENTIFIER_NODE");
13474 debug_tree (value);
13475 debug_tree (name);
13476 error_found = true;
13479 else if (TREE_CODE (t) == ARRAY_TYPE)
13481 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13483 error ("Array TYPE_DOMAIN is not integer type");
13484 debug_tree (TYPE_DOMAIN (t));
13485 error_found = true;
13488 else if (RECORD_OR_UNION_TYPE_P (t))
13490 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
13492 error ("TYPE_FIELDS defined in incomplete type");
13493 error_found = true;
13495 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13497 /* TODO: verify properties of decls. */
13498 if (TREE_CODE (fld) == FIELD_DECL)
13500 else if (TREE_CODE (fld) == TYPE_DECL)
13502 else if (TREE_CODE (fld) == CONST_DECL)
13504 else if (VAR_P (fld))
13506 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13508 else if (TREE_CODE (fld) == USING_DECL)
13510 else if (TREE_CODE (fld) == FUNCTION_DECL)
13512 else
13514 error ("Wrong tree in TYPE_FIELDS list");
13515 debug_tree (fld);
13516 error_found = true;
13520 else if (TREE_CODE (t) == INTEGER_TYPE
13521 || TREE_CODE (t) == BOOLEAN_TYPE
13522 || TREE_CODE (t) == OFFSET_TYPE
13523 || TREE_CODE (t) == REFERENCE_TYPE
13524 || TREE_CODE (t) == NULLPTR_TYPE
13525 || TREE_CODE (t) == POINTER_TYPE)
13527 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13529 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13530 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13531 error_found = true;
13533 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13535 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13536 debug_tree (TYPE_CACHED_VALUES (t));
13537 error_found = true;
13539 /* Verify just enough of cache to ensure that no one copied it to new type.
13540 All copying should go by copy_node that should clear it. */
13541 else if (TYPE_CACHED_VALUES_P (t))
13543 int i;
13544 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13545 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13546 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13548 error ("wrong TYPE_CACHED_VALUES entry");
13549 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13550 error_found = true;
13551 break;
13555 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13556 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13558 /* C++ FE uses TREE_PURPOSE to store initial values. */
13559 if (TREE_PURPOSE (l) && in_lto_p)
13561 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13562 debug_tree (l);
13563 error_found = true;
13565 if (!TYPE_P (TREE_VALUE (l)))
13567 error ("Wrong entry in TYPE_ARG_TYPES list");
13568 debug_tree (l);
13569 error_found = true;
13572 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13574 error ("TYPE_VALUES_RAW field is non-NULL");
13575 debug_tree (TYPE_VALUES_RAW (t));
13576 error_found = true;
13578 if (TREE_CODE (t) != INTEGER_TYPE
13579 && TREE_CODE (t) != BOOLEAN_TYPE
13580 && TREE_CODE (t) != OFFSET_TYPE
13581 && TREE_CODE (t) != REFERENCE_TYPE
13582 && TREE_CODE (t) != NULLPTR_TYPE
13583 && TREE_CODE (t) != POINTER_TYPE
13584 && TYPE_CACHED_VALUES_P (t))
13586 error ("TYPE_CACHED_VALUES_P is set while it should not");
13587 error_found = true;
13589 if (TYPE_STRING_FLAG (t)
13590 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13592 error ("TYPE_STRING_FLAG is set on wrong type code");
13593 error_found = true;
13596 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13597 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13598 of a type. */
13599 if (TREE_CODE (t) == METHOD_TYPE
13600 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13602 error ("TYPE_METHOD_BASETYPE is not main variant");
13603 error_found = true;
13606 if (error_found)
13608 debug_tree (const_cast <tree> (t));
13609 internal_error ("verify_type failed");
13614 /* Return 1 if ARG interpreted as signed in its precision is known to be
13615 always positive or 2 if ARG is known to be always negative, or 3 if
13616 ARG may be positive or negative. */
13619 get_range_pos_neg (tree arg)
13621 if (arg == error_mark_node)
13622 return 3;
13624 int prec = TYPE_PRECISION (TREE_TYPE (arg));
13625 int cnt = 0;
13626 if (TREE_CODE (arg) == INTEGER_CST)
13628 wide_int w = wi::sext (wi::to_wide (arg), prec);
13629 if (wi::neg_p (w))
13630 return 2;
13631 else
13632 return 1;
13634 while (CONVERT_EXPR_P (arg)
13635 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
13636 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
13638 arg = TREE_OPERAND (arg, 0);
13639 /* Narrower value zero extended into wider type
13640 will always result in positive values. */
13641 if (TYPE_UNSIGNED (TREE_TYPE (arg))
13642 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
13643 return 1;
13644 prec = TYPE_PRECISION (TREE_TYPE (arg));
13645 if (++cnt > 30)
13646 return 3;
13649 if (TREE_CODE (arg) != SSA_NAME)
13650 return 3;
13651 wide_int arg_min, arg_max;
13652 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
13654 gimple *g = SSA_NAME_DEF_STMT (arg);
13655 if (is_gimple_assign (g)
13656 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
13658 tree t = gimple_assign_rhs1 (g);
13659 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
13660 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
13662 if (TYPE_UNSIGNED (TREE_TYPE (t))
13663 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
13664 return 1;
13665 prec = TYPE_PRECISION (TREE_TYPE (t));
13666 arg = t;
13667 if (++cnt > 30)
13668 return 3;
13669 continue;
13672 return 3;
13674 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
13676 /* For unsigned values, the "positive" range comes
13677 below the "negative" range. */
13678 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13679 return 1;
13680 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13681 return 2;
13683 else
13685 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13686 return 1;
13687 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13688 return 2;
13690 return 3;
13696 /* Return true if ARG is marked with the nonnull attribute in the
13697 current function signature. */
13699 bool
13700 nonnull_arg_p (const_tree arg)
13702 tree t, attrs, fntype;
13703 unsigned HOST_WIDE_INT arg_num;
13705 gcc_assert (TREE_CODE (arg) == PARM_DECL
13706 && (POINTER_TYPE_P (TREE_TYPE (arg))
13707 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
13709 /* The static chain decl is always non null. */
13710 if (arg == cfun->static_chain_decl)
13711 return true;
13713 /* THIS argument of method is always non-NULL. */
13714 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
13715 && arg == DECL_ARGUMENTS (cfun->decl)
13716 && flag_delete_null_pointer_checks)
13717 return true;
13719 /* Values passed by reference are always non-NULL. */
13720 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
13721 && flag_delete_null_pointer_checks)
13722 return true;
13724 fntype = TREE_TYPE (cfun->decl);
13725 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
13727 attrs = lookup_attribute ("nonnull", attrs);
13729 /* If "nonnull" wasn't specified, we know nothing about the argument. */
13730 if (attrs == NULL_TREE)
13731 return false;
13733 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
13734 if (TREE_VALUE (attrs) == NULL_TREE)
13735 return true;
13737 /* Get the position number for ARG in the function signature. */
13738 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
13740 t = DECL_CHAIN (t), arg_num++)
13742 if (t == arg)
13743 break;
13746 gcc_assert (t == arg);
13748 /* Now see if ARG_NUM is mentioned in the nonnull list. */
13749 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
13751 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
13752 return true;
13756 return false;
13759 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
13760 information. */
13762 location_t
13763 set_block (location_t loc, tree block)
13765 location_t pure_loc = get_pure_location (loc);
13766 source_range src_range = get_range_from_loc (line_table, loc);
13767 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
13770 location_t
13771 set_source_range (tree expr, location_t start, location_t finish)
13773 source_range src_range;
13774 src_range.m_start = start;
13775 src_range.m_finish = finish;
13776 return set_source_range (expr, src_range);
13779 location_t
13780 set_source_range (tree expr, source_range src_range)
13782 if (!EXPR_P (expr))
13783 return UNKNOWN_LOCATION;
13785 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
13786 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
13787 pure_loc,
13788 src_range,
13789 NULL);
13790 SET_EXPR_LOCATION (expr, adhoc);
13791 return adhoc;
13794 /* Return the name of combined function FN, for debugging purposes. */
13796 const char *
13797 combined_fn_name (combined_fn fn)
13799 if (builtin_fn_p (fn))
13801 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
13802 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
13804 else
13805 return internal_fn_name (as_internal_fn (fn));
13808 /* Return a bitmap with a bit set corresponding to each argument in
13809 a function call type FNTYPE declared with attribute nonnull,
13810 or null if none of the function's argument are nonnull. The caller
13811 must free the bitmap. */
13813 bitmap
13814 get_nonnull_args (const_tree fntype)
13816 if (fntype == NULL_TREE)
13817 return NULL;
13819 tree attrs = TYPE_ATTRIBUTES (fntype);
13820 if (!attrs)
13821 return NULL;
13823 bitmap argmap = NULL;
13825 /* A function declaration can specify multiple attribute nonnull,
13826 each with zero or more arguments. The loop below creates a bitmap
13827 representing a union of all the arguments. An empty (but non-null)
13828 bitmap means that all arguments have been declaraed nonnull. */
13829 for ( ; attrs; attrs = TREE_CHAIN (attrs))
13831 attrs = lookup_attribute ("nonnull", attrs);
13832 if (!attrs)
13833 break;
13835 if (!argmap)
13836 argmap = BITMAP_ALLOC (NULL);
13838 if (!TREE_VALUE (attrs))
13840 /* Clear the bitmap in case a previous attribute nonnull
13841 set it and this one overrides it for all arguments. */
13842 bitmap_clear (argmap);
13843 return argmap;
13846 /* Iterate over the indices of the format arguments declared nonnull
13847 and set a bit for each. */
13848 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
13850 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
13851 bitmap_set_bit (argmap, val);
13855 return argmap;
13858 /* Returns true if TYPE is a type where it and all of its subobjects
13859 (recursively) are of structure, union, or array type. */
13861 static bool
13862 default_is_empty_type (tree type)
13864 if (RECORD_OR_UNION_TYPE_P (type))
13866 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
13867 if (TREE_CODE (field) == FIELD_DECL
13868 && !DECL_PADDING_P (field)
13869 && !default_is_empty_type (TREE_TYPE (field)))
13870 return false;
13871 return true;
13873 else if (TREE_CODE (type) == ARRAY_TYPE)
13874 return (integer_minus_onep (array_type_nelts (type))
13875 || TYPE_DOMAIN (type) == NULL_TREE
13876 || default_is_empty_type (TREE_TYPE (type)));
13877 return false;
13880 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
13881 that shouldn't be passed via stack. */
13883 bool
13884 default_is_empty_record (const_tree type)
13886 if (!abi_version_at_least (12))
13887 return false;
13889 if (type == error_mark_node)
13890 return false;
13892 if (TREE_ADDRESSABLE (type))
13893 return false;
13895 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
13898 /* Like int_size_in_bytes, but handle empty records specially. */
13900 HOST_WIDE_INT
13901 arg_int_size_in_bytes (const_tree type)
13903 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
13906 /* Like size_in_bytes, but handle empty records specially. */
13908 tree
13909 arg_size_in_bytes (const_tree type)
13911 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
13914 /* Return true if an expression with CODE has to have the same result type as
13915 its first operand. */
13917 bool
13918 expr_type_first_operand_type_p (tree_code code)
13920 switch (code)
13922 case NEGATE_EXPR:
13923 case ABS_EXPR:
13924 case BIT_NOT_EXPR:
13925 case PAREN_EXPR:
13926 case CONJ_EXPR:
13928 case PLUS_EXPR:
13929 case MINUS_EXPR:
13930 case MULT_EXPR:
13931 case TRUNC_DIV_EXPR:
13932 case CEIL_DIV_EXPR:
13933 case FLOOR_DIV_EXPR:
13934 case ROUND_DIV_EXPR:
13935 case TRUNC_MOD_EXPR:
13936 case CEIL_MOD_EXPR:
13937 case FLOOR_MOD_EXPR:
13938 case ROUND_MOD_EXPR:
13939 case RDIV_EXPR:
13940 case EXACT_DIV_EXPR:
13941 case MIN_EXPR:
13942 case MAX_EXPR:
13943 case BIT_IOR_EXPR:
13944 case BIT_XOR_EXPR:
13945 case BIT_AND_EXPR:
13947 case LSHIFT_EXPR:
13948 case RSHIFT_EXPR:
13949 case LROTATE_EXPR:
13950 case RROTATE_EXPR:
13951 return true;
13953 default:
13954 return false;
13958 /* List of pointer types used to declare builtins before we have seen their
13959 real declaration.
13961 Keep the size up to date in tree.h ! */
13962 const builtin_structptr_type builtin_structptr_types[6] =
13964 { fileptr_type_node, ptr_type_node, "FILE" },
13965 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
13966 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
13967 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
13968 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
13969 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
13972 #if CHECKING_P
13974 namespace selftest {
13976 /* Selftests for tree. */
13978 /* Verify that integer constants are sane. */
13980 static void
13981 test_integer_constants ()
13983 ASSERT_TRUE (integer_type_node != NULL);
13984 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
13986 tree type = integer_type_node;
13988 tree zero = build_zero_cst (type);
13989 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
13990 ASSERT_EQ (type, TREE_TYPE (zero));
13992 tree one = build_int_cst (type, 1);
13993 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
13994 ASSERT_EQ (type, TREE_TYPE (zero));
13997 /* Verify identifiers. */
13999 static void
14000 test_identifiers ()
14002 tree identifier = get_identifier ("foo");
14003 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
14004 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
14007 /* Verify LABEL_DECL. */
14009 static void
14010 test_labels ()
14012 tree identifier = get_identifier ("err");
14013 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
14014 identifier, void_type_node);
14015 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
14016 ASSERT_FALSE (FORCED_LABEL (label_decl));
14019 /* Run all of the selftests within this file. */
14021 void
14022 tree_c_tests ()
14024 test_integer_constants ();
14025 test_identifiers ();
14026 test_labels ();
14029 } // namespace selftest
14031 #endif /* CHECKING_P */
14033 #include "gt-tree.h"