Make build_vector static
[official-gcc.git] / gcc / tree.c
blob13ae1c978e38b48c51daa4e3ac4f83d467e62416
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"
69 #include "tree-vector-builder.h"
71 /* Tree code classes. */
73 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
74 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76 const enum tree_code_class tree_code_type[] = {
77 #include "all-tree.def"
80 #undef DEFTREECODE
81 #undef END_OF_BASE_TREE_CODES
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
88 #define END_OF_BASE_TREE_CODES 0,
90 const unsigned char tree_code_length[] = {
91 #include "all-tree.def"
94 #undef DEFTREECODE
95 #undef END_OF_BASE_TREE_CODES
97 /* Names of tree components.
98 Used for printing out the tree and error messages. */
99 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 #define END_OF_BASE_TREE_CODES "@dummy",
102 static const char *const tree_code_name[] = {
103 #include "all-tree.def"
106 #undef DEFTREECODE
107 #undef END_OF_BASE_TREE_CODES
109 /* Each tree code class has an associated string representation.
110 These must correspond to the tree_code_class entries. */
112 const char *const tree_code_class_strings[] =
114 "exceptional",
115 "constant",
116 "type",
117 "declaration",
118 "reference",
119 "comparison",
120 "unary",
121 "binary",
122 "statement",
123 "vl_exp",
124 "expression"
127 /* obstack.[ch] explicitly declined to prototype this. */
128 extern int _obstack_allocated_p (struct obstack *h, void *obj);
130 /* Statistics-gathering stuff. */
132 static int tree_code_counts[MAX_TREE_CODES];
133 int tree_node_counts[(int) all_kinds];
134 int tree_node_sizes[(int) all_kinds];
136 /* Keep in sync with tree.h:enum tree_node_kind. */
137 static const char * const tree_node_kind_names[] = {
138 "decls",
139 "types",
140 "blocks",
141 "stmts",
142 "refs",
143 "exprs",
144 "constants",
145 "identifiers",
146 "vecs",
147 "binfos",
148 "ssa names",
149 "constructors",
150 "random kinds",
151 "lang_decl kinds",
152 "lang_type kinds",
153 "omp clauses",
156 /* Unique id for next decl created. */
157 static GTY(()) int next_decl_uid;
158 /* Unique id for next type created. */
159 static GTY(()) unsigned next_type_uid = 1;
160 /* Unique id for next debug decl created. Use negative numbers,
161 to catch erroneous uses. */
162 static GTY(()) int next_debug_decl_uid;
164 /* Since we cannot rehash a type after it is in the table, we have to
165 keep the hash code. */
167 struct GTY((for_user)) type_hash {
168 unsigned long hash;
169 tree type;
172 /* Initial size of the hash table (rounded to next prime). */
173 #define TYPE_HASH_INITIAL_SIZE 1000
175 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
177 static hashval_t hash (type_hash *t) { return t->hash; }
178 static bool equal (type_hash *a, type_hash *b);
180 static int
181 keep_cache_entry (type_hash *&t)
183 return ggc_marked_p (t->type);
187 /* Now here is the hash table. When recording a type, it is added to
188 the slot whose index is the hash code. Note that the hash table is
189 used for several kinds of types (function types, array types and
190 array index range types, for now). While all these live in the
191 same table, they are completely independent, and the hash code is
192 computed differently for each of these. */
194 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
196 /* Hash table and temporary node for larger integer const values. */
197 static GTY (()) tree int_cst_node;
199 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
201 static hashval_t hash (tree t);
202 static bool equal (tree x, tree y);
205 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
207 /* Hash table for optimization flags and target option flags. Use the same
208 hash table for both sets of options. Nodes for building the current
209 optimization and target option nodes. The assumption is most of the time
210 the options created will already be in the hash table, so we avoid
211 allocating and freeing up a node repeatably. */
212 static GTY (()) tree cl_optimization_node;
213 static GTY (()) tree cl_target_option_node;
215 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
217 static hashval_t hash (tree t);
218 static bool equal (tree x, tree y);
221 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
223 /* General tree->tree mapping structure for use in hash tables. */
226 static GTY ((cache))
227 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
229 static GTY ((cache))
230 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
232 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
234 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
236 static bool
237 equal (tree_vec_map *a, tree_vec_map *b)
239 return a->base.from == b->base.from;
242 static int
243 keep_cache_entry (tree_vec_map *&m)
245 return ggc_marked_p (m->base.from);
249 static GTY ((cache))
250 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
252 static void set_type_quals (tree, int);
253 static void print_type_hash_statistics (void);
254 static void print_debug_expr_statistics (void);
255 static void print_value_expr_statistics (void);
257 tree global_trees[TI_MAX];
258 tree integer_types[itk_none];
260 bool int_n_enabled_p[NUM_INT_N_ENTS];
261 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
263 bool tree_contains_struct[MAX_TREE_CODES][64];
265 /* Number of operands for each OpenMP clause. */
266 unsigned const char omp_clause_num_ops[] =
268 0, /* OMP_CLAUSE_ERROR */
269 1, /* OMP_CLAUSE_PRIVATE */
270 1, /* OMP_CLAUSE_SHARED */
271 1, /* OMP_CLAUSE_FIRSTPRIVATE */
272 2, /* OMP_CLAUSE_LASTPRIVATE */
273 5, /* OMP_CLAUSE_REDUCTION */
274 1, /* OMP_CLAUSE_COPYIN */
275 1, /* OMP_CLAUSE_COPYPRIVATE */
276 3, /* OMP_CLAUSE_LINEAR */
277 2, /* OMP_CLAUSE_ALIGNED */
278 1, /* OMP_CLAUSE_DEPEND */
279 1, /* OMP_CLAUSE_UNIFORM */
280 1, /* OMP_CLAUSE_TO_DECLARE */
281 1, /* OMP_CLAUSE_LINK */
282 2, /* OMP_CLAUSE_FROM */
283 2, /* OMP_CLAUSE_TO */
284 2, /* OMP_CLAUSE_MAP */
285 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
286 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
287 2, /* OMP_CLAUSE__CACHE_ */
288 2, /* OMP_CLAUSE_GANG */
289 1, /* OMP_CLAUSE_ASYNC */
290 1, /* OMP_CLAUSE_WAIT */
291 0, /* OMP_CLAUSE_AUTO */
292 0, /* OMP_CLAUSE_SEQ */
293 1, /* OMP_CLAUSE__LOOPTEMP_ */
294 1, /* OMP_CLAUSE_IF */
295 1, /* OMP_CLAUSE_NUM_THREADS */
296 1, /* OMP_CLAUSE_SCHEDULE */
297 0, /* OMP_CLAUSE_NOWAIT */
298 1, /* OMP_CLAUSE_ORDERED */
299 0, /* OMP_CLAUSE_DEFAULT */
300 3, /* OMP_CLAUSE_COLLAPSE */
301 0, /* OMP_CLAUSE_UNTIED */
302 1, /* OMP_CLAUSE_FINAL */
303 0, /* OMP_CLAUSE_MERGEABLE */
304 1, /* OMP_CLAUSE_DEVICE */
305 1, /* OMP_CLAUSE_DIST_SCHEDULE */
306 0, /* OMP_CLAUSE_INBRANCH */
307 0, /* OMP_CLAUSE_NOTINBRANCH */
308 1, /* OMP_CLAUSE_NUM_TEAMS */
309 1, /* OMP_CLAUSE_THREAD_LIMIT */
310 0, /* OMP_CLAUSE_PROC_BIND */
311 1, /* OMP_CLAUSE_SAFELEN */
312 1, /* OMP_CLAUSE_SIMDLEN */
313 0, /* OMP_CLAUSE_FOR */
314 0, /* OMP_CLAUSE_PARALLEL */
315 0, /* OMP_CLAUSE_SECTIONS */
316 0, /* OMP_CLAUSE_TASKGROUP */
317 1, /* OMP_CLAUSE_PRIORITY */
318 1, /* OMP_CLAUSE_GRAINSIZE */
319 1, /* OMP_CLAUSE_NUM_TASKS */
320 0, /* OMP_CLAUSE_NOGROUP */
321 0, /* OMP_CLAUSE_THREADS */
322 0, /* OMP_CLAUSE_SIMD */
323 1, /* OMP_CLAUSE_HINT */
324 0, /* OMP_CLAUSE_DEFALTMAP */
325 1, /* OMP_CLAUSE__SIMDUID_ */
326 0, /* OMP_CLAUSE__SIMT_ */
327 0, /* OMP_CLAUSE_INDEPENDENT */
328 1, /* OMP_CLAUSE_WORKER */
329 1, /* OMP_CLAUSE_VECTOR */
330 1, /* OMP_CLAUSE_NUM_GANGS */
331 1, /* OMP_CLAUSE_NUM_WORKERS */
332 1, /* OMP_CLAUSE_VECTOR_LENGTH */
333 3, /* OMP_CLAUSE_TILE */
334 2, /* OMP_CLAUSE__GRIDDIM_ */
337 const char * const omp_clause_code_name[] =
339 "error_clause",
340 "private",
341 "shared",
342 "firstprivate",
343 "lastprivate",
344 "reduction",
345 "copyin",
346 "copyprivate",
347 "linear",
348 "aligned",
349 "depend",
350 "uniform",
351 "to",
352 "link",
353 "from",
354 "to",
355 "map",
356 "use_device_ptr",
357 "is_device_ptr",
358 "_cache_",
359 "gang",
360 "async",
361 "wait",
362 "auto",
363 "seq",
364 "_looptemp_",
365 "if",
366 "num_threads",
367 "schedule",
368 "nowait",
369 "ordered",
370 "default",
371 "collapse",
372 "untied",
373 "final",
374 "mergeable",
375 "device",
376 "dist_schedule",
377 "inbranch",
378 "notinbranch",
379 "num_teams",
380 "thread_limit",
381 "proc_bind",
382 "safelen",
383 "simdlen",
384 "for",
385 "parallel",
386 "sections",
387 "taskgroup",
388 "priority",
389 "grainsize",
390 "num_tasks",
391 "nogroup",
392 "threads",
393 "simd",
394 "hint",
395 "defaultmap",
396 "_simduid_",
397 "_simt_",
398 "independent",
399 "worker",
400 "vector",
401 "num_gangs",
402 "num_workers",
403 "vector_length",
404 "tile",
405 "_griddim_"
409 /* Return the tree node structure used by tree code CODE. */
411 static inline enum tree_node_structure_enum
412 tree_node_structure_for_code (enum tree_code code)
414 switch (TREE_CODE_CLASS (code))
416 case tcc_declaration:
418 switch (code)
420 case FIELD_DECL:
421 return TS_FIELD_DECL;
422 case PARM_DECL:
423 return TS_PARM_DECL;
424 case VAR_DECL:
425 return TS_VAR_DECL;
426 case LABEL_DECL:
427 return TS_LABEL_DECL;
428 case RESULT_DECL:
429 return TS_RESULT_DECL;
430 case DEBUG_EXPR_DECL:
431 return TS_DECL_WRTL;
432 case CONST_DECL:
433 return TS_CONST_DECL;
434 case TYPE_DECL:
435 return TS_TYPE_DECL;
436 case FUNCTION_DECL:
437 return TS_FUNCTION_DECL;
438 case TRANSLATION_UNIT_DECL:
439 return TS_TRANSLATION_UNIT_DECL;
440 default:
441 return TS_DECL_NON_COMMON;
444 case tcc_type:
445 return TS_TYPE_NON_COMMON;
446 case tcc_reference:
447 case tcc_comparison:
448 case tcc_unary:
449 case tcc_binary:
450 case tcc_expression:
451 case tcc_statement:
452 case tcc_vl_exp:
453 return TS_EXP;
454 default: /* tcc_constant and tcc_exceptional */
455 break;
457 switch (code)
459 /* tcc_constant cases. */
460 case VOID_CST: return TS_TYPED;
461 case INTEGER_CST: return TS_INT_CST;
462 case REAL_CST: return TS_REAL_CST;
463 case FIXED_CST: return TS_FIXED_CST;
464 case COMPLEX_CST: return TS_COMPLEX;
465 case VECTOR_CST: return TS_VECTOR;
466 case STRING_CST: return TS_STRING;
467 /* tcc_exceptional cases. */
468 case ERROR_MARK: return TS_COMMON;
469 case IDENTIFIER_NODE: return TS_IDENTIFIER;
470 case TREE_LIST: return TS_LIST;
471 case TREE_VEC: return TS_VEC;
472 case SSA_NAME: return TS_SSA_NAME;
473 case PLACEHOLDER_EXPR: return TS_COMMON;
474 case STATEMENT_LIST: return TS_STATEMENT_LIST;
475 case BLOCK: return TS_BLOCK;
476 case CONSTRUCTOR: return TS_CONSTRUCTOR;
477 case TREE_BINFO: return TS_BINFO;
478 case OMP_CLAUSE: return TS_OMP_CLAUSE;
479 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
480 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
482 default:
483 gcc_unreachable ();
488 /* Initialize tree_contains_struct to describe the hierarchy of tree
489 nodes. */
491 static void
492 initialize_tree_contains_struct (void)
494 unsigned i;
496 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
498 enum tree_code code;
499 enum tree_node_structure_enum ts_code;
501 code = (enum tree_code) i;
502 ts_code = tree_node_structure_for_code (code);
504 /* Mark the TS structure itself. */
505 tree_contains_struct[code][ts_code] = 1;
507 /* Mark all the structures that TS is derived from. */
508 switch (ts_code)
510 case TS_TYPED:
511 case TS_BLOCK:
512 case TS_OPTIMIZATION:
513 case TS_TARGET_OPTION:
514 MARK_TS_BASE (code);
515 break;
517 case TS_COMMON:
518 case TS_INT_CST:
519 case TS_REAL_CST:
520 case TS_FIXED_CST:
521 case TS_VECTOR:
522 case TS_STRING:
523 case TS_COMPLEX:
524 case TS_SSA_NAME:
525 case TS_CONSTRUCTOR:
526 case TS_EXP:
527 case TS_STATEMENT_LIST:
528 MARK_TS_TYPED (code);
529 break;
531 case TS_IDENTIFIER:
532 case TS_DECL_MINIMAL:
533 case TS_TYPE_COMMON:
534 case TS_LIST:
535 case TS_VEC:
536 case TS_BINFO:
537 case TS_OMP_CLAUSE:
538 MARK_TS_COMMON (code);
539 break;
541 case TS_TYPE_WITH_LANG_SPECIFIC:
542 MARK_TS_TYPE_COMMON (code);
543 break;
545 case TS_TYPE_NON_COMMON:
546 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
547 break;
549 case TS_DECL_COMMON:
550 MARK_TS_DECL_MINIMAL (code);
551 break;
553 case TS_DECL_WRTL:
554 case TS_CONST_DECL:
555 MARK_TS_DECL_COMMON (code);
556 break;
558 case TS_DECL_NON_COMMON:
559 MARK_TS_DECL_WITH_VIS (code);
560 break;
562 case TS_DECL_WITH_VIS:
563 case TS_PARM_DECL:
564 case TS_LABEL_DECL:
565 case TS_RESULT_DECL:
566 MARK_TS_DECL_WRTL (code);
567 break;
569 case TS_FIELD_DECL:
570 MARK_TS_DECL_COMMON (code);
571 break;
573 case TS_VAR_DECL:
574 MARK_TS_DECL_WITH_VIS (code);
575 break;
577 case TS_TYPE_DECL:
578 case TS_FUNCTION_DECL:
579 MARK_TS_DECL_NON_COMMON (code);
580 break;
582 case TS_TRANSLATION_UNIT_DECL:
583 MARK_TS_DECL_COMMON (code);
584 break;
586 default:
587 gcc_unreachable ();
591 /* Basic consistency checks for attributes used in fold. */
592 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
593 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
594 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
595 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
596 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
597 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
598 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
599 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
600 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
601 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
602 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
603 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
604 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
605 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
606 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
607 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
608 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
609 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
610 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
611 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
612 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
613 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
614 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
615 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
616 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
617 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
618 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
619 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
620 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
621 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
622 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
623 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
624 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
625 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
626 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
627 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
628 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
629 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
630 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
631 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
635 /* Init tree.c. */
637 void
638 init_ttree (void)
640 /* Initialize the hash table of types. */
641 type_hash_table
642 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
644 debug_expr_for_decl
645 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
647 value_expr_for_decl
648 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
650 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
652 int_cst_node = make_int_cst (1, 1);
654 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
656 cl_optimization_node = make_node (OPTIMIZATION_NODE);
657 cl_target_option_node = make_node (TARGET_OPTION_NODE);
659 /* Initialize the tree_contains_struct array. */
660 initialize_tree_contains_struct ();
661 lang_hooks.init_ts ();
665 /* The name of the object as the assembler will see it (but before any
666 translations made by ASM_OUTPUT_LABELREF). Often this is the same
667 as DECL_NAME. It is an IDENTIFIER_NODE. */
668 tree
669 decl_assembler_name (tree decl)
671 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
672 lang_hooks.set_decl_assembler_name (decl);
673 return DECL_ASSEMBLER_NAME_RAW (decl);
676 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
677 (either of which may be NULL). Inform the FE, if this changes the
678 name. */
680 void
681 overwrite_decl_assembler_name (tree decl, tree name)
683 if (DECL_ASSEMBLER_NAME_RAW (decl) != name)
684 lang_hooks.overwrite_decl_assembler_name (decl, name);
687 /* When the target supports COMDAT groups, this indicates which group the
688 DECL is associated with. This can be either an IDENTIFIER_NODE or a
689 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
690 tree
691 decl_comdat_group (const_tree node)
693 struct symtab_node *snode = symtab_node::get (node);
694 if (!snode)
695 return NULL;
696 return snode->get_comdat_group ();
699 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
700 tree
701 decl_comdat_group_id (const_tree node)
703 struct symtab_node *snode = symtab_node::get (node);
704 if (!snode)
705 return NULL;
706 return snode->get_comdat_group_id ();
709 /* When the target supports named section, return its name as IDENTIFIER_NODE
710 or NULL if it is in no section. */
711 const char *
712 decl_section_name (const_tree node)
714 struct symtab_node *snode = symtab_node::get (node);
715 if (!snode)
716 return NULL;
717 return snode->get_section ();
720 /* Set section name of NODE to VALUE (that is expected to be
721 identifier node) */
722 void
723 set_decl_section_name (tree node, const char *value)
725 struct symtab_node *snode;
727 if (value == NULL)
729 snode = symtab_node::get (node);
730 if (!snode)
731 return;
733 else if (VAR_P (node))
734 snode = varpool_node::get_create (node);
735 else
736 snode = cgraph_node::get_create (node);
737 snode->set_section (value);
740 /* Return TLS model of a variable NODE. */
741 enum tls_model
742 decl_tls_model (const_tree node)
744 struct varpool_node *snode = varpool_node::get (node);
745 if (!snode)
746 return TLS_MODEL_NONE;
747 return snode->tls_model;
750 /* Set TLS model of variable NODE to MODEL. */
751 void
752 set_decl_tls_model (tree node, enum tls_model model)
754 struct varpool_node *vnode;
756 if (model == TLS_MODEL_NONE)
758 vnode = varpool_node::get (node);
759 if (!vnode)
760 return;
762 else
763 vnode = varpool_node::get_create (node);
764 vnode->tls_model = model;
767 /* Compute the number of bytes occupied by a tree with code CODE.
768 This function cannot be used for nodes that have variable sizes,
769 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
770 size_t
771 tree_code_size (enum tree_code code)
773 switch (TREE_CODE_CLASS (code))
775 case tcc_declaration: /* A decl node */
776 switch (code)
778 case FIELD_DECL: return sizeof (tree_field_decl);
779 case PARM_DECL: return sizeof (tree_parm_decl);
780 case VAR_DECL: return sizeof (tree_var_decl);
781 case LABEL_DECL: return sizeof (tree_label_decl);
782 case RESULT_DECL: return sizeof (tree_result_decl);
783 case CONST_DECL: return sizeof (tree_const_decl);
784 case TYPE_DECL: return sizeof (tree_type_decl);
785 case FUNCTION_DECL: return sizeof (tree_function_decl);
786 case DEBUG_EXPR_DECL: return sizeof (tree_decl_with_rtl);
787 case TRANSLATION_UNIT_DECL: return sizeof (tree_translation_unit_decl);
788 case NAMESPACE_DECL:
789 case IMPORTED_DECL:
790 case NAMELIST_DECL: return sizeof (tree_decl_non_common);
791 default:
792 gcc_checking_assert (code >= NUM_TREE_CODES);
793 return lang_hooks.tree_size (code);
796 case tcc_type: /* a type node */
797 switch (code)
799 case OFFSET_TYPE:
800 case ENUMERAL_TYPE:
801 case BOOLEAN_TYPE:
802 case INTEGER_TYPE:
803 case REAL_TYPE:
804 case POINTER_TYPE:
805 case REFERENCE_TYPE:
806 case NULLPTR_TYPE:
807 case FIXED_POINT_TYPE:
808 case COMPLEX_TYPE:
809 case VECTOR_TYPE:
810 case ARRAY_TYPE:
811 case RECORD_TYPE:
812 case UNION_TYPE:
813 case QUAL_UNION_TYPE:
814 case VOID_TYPE:
815 case POINTER_BOUNDS_TYPE:
816 case FUNCTION_TYPE:
817 case METHOD_TYPE:
818 case LANG_TYPE: return sizeof (tree_type_non_common);
819 default:
820 gcc_checking_assert (code >= NUM_TREE_CODES);
821 return lang_hooks.tree_size (code);
824 case tcc_reference: /* a reference */
825 case tcc_expression: /* an expression */
826 case tcc_statement: /* an expression with side effects */
827 case tcc_comparison: /* a comparison expression */
828 case tcc_unary: /* a unary arithmetic expression */
829 case tcc_binary: /* a binary arithmetic expression */
830 return (sizeof (struct tree_exp)
831 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
833 case tcc_constant: /* a constant */
834 switch (code)
836 case VOID_CST: return sizeof (tree_typed);
837 case INTEGER_CST: gcc_unreachable ();
838 case REAL_CST: return sizeof (tree_real_cst);
839 case FIXED_CST: return sizeof (tree_fixed_cst);
840 case COMPLEX_CST: return sizeof (tree_complex);
841 case VECTOR_CST: gcc_unreachable ();
842 case STRING_CST: gcc_unreachable ();
843 default:
844 gcc_checking_assert (code >= NUM_TREE_CODES);
845 return lang_hooks.tree_size (code);
848 case tcc_exceptional: /* something random, like an identifier. */
849 switch (code)
851 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
852 case TREE_LIST: return sizeof (tree_list);
854 case ERROR_MARK:
855 case PLACEHOLDER_EXPR: return sizeof (tree_common);
857 case TREE_VEC: gcc_unreachable ();
858 case OMP_CLAUSE: gcc_unreachable ();
860 case SSA_NAME: return sizeof (tree_ssa_name);
862 case STATEMENT_LIST: return sizeof (tree_statement_list);
863 case BLOCK: return sizeof (struct tree_block);
864 case CONSTRUCTOR: return sizeof (tree_constructor);
865 case OPTIMIZATION_NODE: return sizeof (tree_optimization_option);
866 case TARGET_OPTION_NODE: return sizeof (tree_target_option);
868 default:
869 gcc_checking_assert (code >= NUM_TREE_CODES);
870 return lang_hooks.tree_size (code);
873 default:
874 gcc_unreachable ();
878 /* Compute the number of bytes occupied by NODE. This routine only
879 looks at TREE_CODE, except for those nodes that have variable sizes. */
880 size_t
881 tree_size (const_tree node)
883 const enum tree_code code = TREE_CODE (node);
884 switch (code)
886 case INTEGER_CST:
887 return (sizeof (struct tree_int_cst)
888 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
890 case TREE_BINFO:
891 return (offsetof (struct tree_binfo, base_binfos)
892 + vec<tree, va_gc>
893 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
895 case TREE_VEC:
896 return (sizeof (struct tree_vec)
897 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
899 case VECTOR_CST:
900 return (sizeof (struct tree_vector)
901 + (vector_cst_encoded_nelts (node) - 1) * sizeof (tree));
903 case STRING_CST:
904 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
906 case OMP_CLAUSE:
907 return (sizeof (struct tree_omp_clause)
908 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
909 * sizeof (tree));
911 default:
912 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
913 return (sizeof (struct tree_exp)
914 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
915 else
916 return tree_code_size (code);
920 /* Record interesting allocation statistics for a tree node with CODE
921 and LENGTH. */
923 static void
924 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED,
925 size_t length ATTRIBUTE_UNUSED)
927 enum tree_code_class type = TREE_CODE_CLASS (code);
928 tree_node_kind kind;
930 if (!GATHER_STATISTICS)
931 return;
933 switch (type)
935 case tcc_declaration: /* A decl node */
936 kind = d_kind;
937 break;
939 case tcc_type: /* a type node */
940 kind = t_kind;
941 break;
943 case tcc_statement: /* an expression with side effects */
944 kind = s_kind;
945 break;
947 case tcc_reference: /* a reference */
948 kind = r_kind;
949 break;
951 case tcc_expression: /* an expression */
952 case tcc_comparison: /* a comparison expression */
953 case tcc_unary: /* a unary arithmetic expression */
954 case tcc_binary: /* a binary arithmetic expression */
955 kind = e_kind;
956 break;
958 case tcc_constant: /* a constant */
959 kind = c_kind;
960 break;
962 case tcc_exceptional: /* something random, like an identifier. */
963 switch (code)
965 case IDENTIFIER_NODE:
966 kind = id_kind;
967 break;
969 case TREE_VEC:
970 kind = vec_kind;
971 break;
973 case TREE_BINFO:
974 kind = binfo_kind;
975 break;
977 case SSA_NAME:
978 kind = ssa_name_kind;
979 break;
981 case BLOCK:
982 kind = b_kind;
983 break;
985 case CONSTRUCTOR:
986 kind = constr_kind;
987 break;
989 case OMP_CLAUSE:
990 kind = omp_clause_kind;
991 break;
993 default:
994 kind = x_kind;
995 break;
997 break;
999 case tcc_vl_exp:
1000 kind = e_kind;
1001 break;
1003 default:
1004 gcc_unreachable ();
1007 tree_code_counts[(int) code]++;
1008 tree_node_counts[(int) kind]++;
1009 tree_node_sizes[(int) kind] += length;
1012 /* Allocate and return a new UID from the DECL_UID namespace. */
1015 allocate_decl_uid (void)
1017 return next_decl_uid++;
1020 /* Return a newly allocated node of code CODE. For decl and type
1021 nodes, some other fields are initialized. The rest of the node is
1022 initialized to zero. This function cannot be used for TREE_VEC,
1023 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1024 tree_code_size.
1026 Achoo! I got a code in the node. */
1028 tree
1029 make_node (enum tree_code code MEM_STAT_DECL)
1031 tree t;
1032 enum tree_code_class type = TREE_CODE_CLASS (code);
1033 size_t length = tree_code_size (code);
1035 record_node_allocation_statistics (code, length);
1037 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1038 TREE_SET_CODE (t, code);
1040 switch (type)
1042 case tcc_statement:
1043 TREE_SIDE_EFFECTS (t) = 1;
1044 break;
1046 case tcc_declaration:
1047 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1049 if (code == FUNCTION_DECL)
1051 SET_DECL_ALIGN (t, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY));
1052 SET_DECL_MODE (t, FUNCTION_MODE);
1054 else
1055 SET_DECL_ALIGN (t, 1);
1057 DECL_SOURCE_LOCATION (t) = input_location;
1058 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1059 DECL_UID (t) = --next_debug_decl_uid;
1060 else
1062 DECL_UID (t) = allocate_decl_uid ();
1063 SET_DECL_PT_UID (t, -1);
1065 if (TREE_CODE (t) == LABEL_DECL)
1066 LABEL_DECL_UID (t) = -1;
1068 break;
1070 case tcc_type:
1071 TYPE_UID (t) = next_type_uid++;
1072 SET_TYPE_ALIGN (t, BITS_PER_UNIT);
1073 TYPE_USER_ALIGN (t) = 0;
1074 TYPE_MAIN_VARIANT (t) = t;
1075 TYPE_CANONICAL (t) = t;
1077 /* Default to no attributes for type, but let target change that. */
1078 TYPE_ATTRIBUTES (t) = NULL_TREE;
1079 targetm.set_default_type_attributes (t);
1081 /* We have not yet computed the alias set for this type. */
1082 TYPE_ALIAS_SET (t) = -1;
1083 break;
1085 case tcc_constant:
1086 TREE_CONSTANT (t) = 1;
1087 break;
1089 case tcc_expression:
1090 switch (code)
1092 case INIT_EXPR:
1093 case MODIFY_EXPR:
1094 case VA_ARG_EXPR:
1095 case PREDECREMENT_EXPR:
1096 case PREINCREMENT_EXPR:
1097 case POSTDECREMENT_EXPR:
1098 case POSTINCREMENT_EXPR:
1099 /* All of these have side-effects, no matter what their
1100 operands are. */
1101 TREE_SIDE_EFFECTS (t) = 1;
1102 break;
1104 default:
1105 break;
1107 break;
1109 case tcc_exceptional:
1110 switch (code)
1112 case TARGET_OPTION_NODE:
1113 TREE_TARGET_OPTION(t)
1114 = ggc_cleared_alloc<struct cl_target_option> ();
1115 break;
1117 case OPTIMIZATION_NODE:
1118 TREE_OPTIMIZATION (t)
1119 = ggc_cleared_alloc<struct cl_optimization> ();
1120 break;
1122 default:
1123 break;
1125 break;
1127 default:
1128 /* Other classes need no special treatment. */
1129 break;
1132 return t;
1135 /* Free tree node. */
1137 void
1138 free_node (tree node)
1140 enum tree_code code = TREE_CODE (node);
1141 if (GATHER_STATISTICS)
1143 tree_code_counts[(int) TREE_CODE (node)]--;
1144 tree_node_counts[(int) t_kind]--;
1145 tree_node_sizes[(int) t_kind] -= tree_size (node);
1147 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1148 vec_free (CONSTRUCTOR_ELTS (node));
1149 else if (code == BLOCK)
1150 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1151 else if (code == TREE_BINFO)
1152 vec_free (BINFO_BASE_ACCESSES (node));
1153 ggc_free (node);
1156 /* Return a new node with the same contents as NODE except that its
1157 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1159 tree
1160 copy_node (tree node MEM_STAT_DECL)
1162 tree t;
1163 enum tree_code code = TREE_CODE (node);
1164 size_t length;
1166 gcc_assert (code != STATEMENT_LIST);
1168 length = tree_size (node);
1169 record_node_allocation_statistics (code, length);
1170 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1171 memcpy (t, node, length);
1173 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1174 TREE_CHAIN (t) = 0;
1175 TREE_ASM_WRITTEN (t) = 0;
1176 TREE_VISITED (t) = 0;
1178 if (TREE_CODE_CLASS (code) == tcc_declaration)
1180 if (code == DEBUG_EXPR_DECL)
1181 DECL_UID (t) = --next_debug_decl_uid;
1182 else
1184 DECL_UID (t) = allocate_decl_uid ();
1185 if (DECL_PT_UID_SET_P (node))
1186 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1188 if ((TREE_CODE (node) == PARM_DECL || VAR_P (node))
1189 && DECL_HAS_VALUE_EXPR_P (node))
1191 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1192 DECL_HAS_VALUE_EXPR_P (t) = 1;
1194 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1195 if (VAR_P (node))
1197 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1198 t->decl_with_vis.symtab_node = NULL;
1200 if (VAR_P (node) && DECL_HAS_INIT_PRIORITY_P (node))
1202 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1203 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1205 if (TREE_CODE (node) == FUNCTION_DECL)
1207 DECL_STRUCT_FUNCTION (t) = NULL;
1208 t->decl_with_vis.symtab_node = NULL;
1211 else if (TREE_CODE_CLASS (code) == tcc_type)
1213 TYPE_UID (t) = next_type_uid++;
1214 /* The following is so that the debug code for
1215 the copy is different from the original type.
1216 The two statements usually duplicate each other
1217 (because they clear fields of the same union),
1218 but the optimizer should catch that. */
1219 TYPE_SYMTAB_ADDRESS (t) = 0;
1220 TYPE_SYMTAB_DIE (t) = 0;
1222 /* Do not copy the values cache. */
1223 if (TYPE_CACHED_VALUES_P (t))
1225 TYPE_CACHED_VALUES_P (t) = 0;
1226 TYPE_CACHED_VALUES (t) = NULL_TREE;
1229 else if (code == TARGET_OPTION_NODE)
1231 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1232 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1233 sizeof (struct cl_target_option));
1235 else if (code == OPTIMIZATION_NODE)
1237 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1238 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1239 sizeof (struct cl_optimization));
1242 return t;
1245 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1246 For example, this can copy a list made of TREE_LIST nodes. */
1248 tree
1249 copy_list (tree list)
1251 tree head;
1252 tree prev, next;
1254 if (list == 0)
1255 return 0;
1257 head = prev = copy_node (list);
1258 next = TREE_CHAIN (list);
1259 while (next)
1261 TREE_CHAIN (prev) = copy_node (next);
1262 prev = TREE_CHAIN (prev);
1263 next = TREE_CHAIN (next);
1265 return head;
1269 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1270 INTEGER_CST with value CST and type TYPE. */
1272 static unsigned int
1273 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1275 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1276 /* We need extra HWIs if CST is an unsigned integer with its
1277 upper bit set. */
1278 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1279 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1280 return cst.get_len ();
1283 /* Return a new INTEGER_CST with value CST and type TYPE. */
1285 static tree
1286 build_new_int_cst (tree type, const wide_int &cst)
1288 unsigned int len = cst.get_len ();
1289 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1290 tree nt = make_int_cst (len, ext_len);
1292 if (len < ext_len)
1294 --ext_len;
1295 TREE_INT_CST_ELT (nt, ext_len)
1296 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1297 for (unsigned int i = len; i < ext_len; ++i)
1298 TREE_INT_CST_ELT (nt, i) = -1;
1300 else if (TYPE_UNSIGNED (type)
1301 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1303 len--;
1304 TREE_INT_CST_ELT (nt, len)
1305 = zext_hwi (cst.elt (len),
1306 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1309 for (unsigned int i = 0; i < len; i++)
1310 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1311 TREE_TYPE (nt) = type;
1312 return nt;
1315 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1317 tree
1318 build_int_cst (tree type, HOST_WIDE_INT low)
1320 /* Support legacy code. */
1321 if (!type)
1322 type = integer_type_node;
1324 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1327 tree
1328 build_int_cstu (tree type, unsigned HOST_WIDE_INT cst)
1330 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1333 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1335 tree
1336 build_int_cst_type (tree type, HOST_WIDE_INT low)
1338 gcc_assert (type);
1339 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1342 /* Constructs tree in type TYPE from with value given by CST. Signedness
1343 of CST is assumed to be the same as the signedness of TYPE. */
1345 tree
1346 double_int_to_tree (tree type, double_int cst)
1348 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1351 /* We force the wide_int CST to the range of the type TYPE by sign or
1352 zero extending it. OVERFLOWABLE indicates if we are interested in
1353 overflow of the value, when >0 we are only interested in signed
1354 overflow, for <0 we are interested in any overflow. OVERFLOWED
1355 indicates whether overflow has already occurred. CONST_OVERFLOWED
1356 indicates whether constant overflow has already occurred. We force
1357 T's value to be within range of T's type (by setting to 0 or 1 all
1358 the bits outside the type's range). We set TREE_OVERFLOWED if,
1359 OVERFLOWED is nonzero,
1360 or OVERFLOWABLE is >0 and signed overflow occurs
1361 or OVERFLOWABLE is <0 and any overflow occurs
1362 We return a new tree node for the extended wide_int. The node
1363 is shared if no overflow flags are set. */
1366 tree
1367 force_fit_type (tree type, const wide_int_ref &cst,
1368 int overflowable, bool overflowed)
1370 signop sign = TYPE_SIGN (type);
1372 /* If we need to set overflow flags, return a new unshared node. */
1373 if (overflowed || !wi::fits_to_tree_p (cst, type))
1375 if (overflowed
1376 || overflowable < 0
1377 || (overflowable > 0 && sign == SIGNED))
1379 wide_int tmp = wide_int::from (cst, TYPE_PRECISION (type), sign);
1380 tree t = build_new_int_cst (type, tmp);
1381 TREE_OVERFLOW (t) = 1;
1382 return t;
1386 /* Else build a shared node. */
1387 return wide_int_to_tree (type, cst);
1390 /* These are the hash table functions for the hash table of INTEGER_CST
1391 nodes of a sizetype. */
1393 /* Return the hash code X, an INTEGER_CST. */
1395 hashval_t
1396 int_cst_hasher::hash (tree x)
1398 const_tree const t = x;
1399 hashval_t code = TYPE_UID (TREE_TYPE (t));
1400 int i;
1402 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1403 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1405 return code;
1408 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1409 is the same as that given by *Y, which is the same. */
1411 bool
1412 int_cst_hasher::equal (tree x, tree y)
1414 const_tree const xt = x;
1415 const_tree const yt = y;
1417 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1418 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1419 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1420 return false;
1422 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1423 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1424 return false;
1426 return true;
1429 /* Create an INT_CST node of TYPE and value CST.
1430 The returned node is always shared. For small integers we use a
1431 per-type vector cache, for larger ones we use a single hash table.
1432 The value is extended from its precision according to the sign of
1433 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1434 the upper bits and ensures that hashing and value equality based
1435 upon the underlying HOST_WIDE_INTs works without masking. */
1437 tree
1438 wide_int_to_tree (tree type, const wide_int_ref &pcst)
1440 tree t;
1441 int ix = -1;
1442 int limit = 0;
1444 gcc_assert (type);
1445 unsigned int prec = TYPE_PRECISION (type);
1446 signop sgn = TYPE_SIGN (type);
1448 /* Verify that everything is canonical. */
1449 int l = pcst.get_len ();
1450 if (l > 1)
1452 if (pcst.elt (l - 1) == 0)
1453 gcc_checking_assert (pcst.elt (l - 2) < 0);
1454 if (pcst.elt (l - 1) == HOST_WIDE_INT_M1)
1455 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1458 wide_int cst = wide_int::from (pcst, prec, sgn);
1459 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1461 if (ext_len == 1)
1463 /* We just need to store a single HOST_WIDE_INT. */
1464 HOST_WIDE_INT hwi;
1465 if (TYPE_UNSIGNED (type))
1466 hwi = cst.to_uhwi ();
1467 else
1468 hwi = cst.to_shwi ();
1470 switch (TREE_CODE (type))
1472 case NULLPTR_TYPE:
1473 gcc_assert (hwi == 0);
1474 /* Fallthru. */
1476 case POINTER_TYPE:
1477 case REFERENCE_TYPE:
1478 case POINTER_BOUNDS_TYPE:
1479 /* Cache NULL pointer and zero bounds. */
1480 if (hwi == 0)
1482 limit = 1;
1483 ix = 0;
1485 break;
1487 case BOOLEAN_TYPE:
1488 /* Cache false or true. */
1489 limit = 2;
1490 if (IN_RANGE (hwi, 0, 1))
1491 ix = hwi;
1492 break;
1494 case INTEGER_TYPE:
1495 case OFFSET_TYPE:
1496 if (TYPE_SIGN (type) == UNSIGNED)
1498 /* Cache [0, N). */
1499 limit = INTEGER_SHARE_LIMIT;
1500 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1501 ix = hwi;
1503 else
1505 /* Cache [-1, N). */
1506 limit = INTEGER_SHARE_LIMIT + 1;
1507 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1508 ix = hwi + 1;
1510 break;
1512 case ENUMERAL_TYPE:
1513 break;
1515 default:
1516 gcc_unreachable ();
1519 if (ix >= 0)
1521 /* Look for it in the type's vector of small shared ints. */
1522 if (!TYPE_CACHED_VALUES_P (type))
1524 TYPE_CACHED_VALUES_P (type) = 1;
1525 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1528 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1529 if (t)
1530 /* Make sure no one is clobbering the shared constant. */
1531 gcc_checking_assert (TREE_TYPE (t) == type
1532 && TREE_INT_CST_NUNITS (t) == 1
1533 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1534 && TREE_INT_CST_EXT_NUNITS (t) == 1
1535 && TREE_INT_CST_ELT (t, 0) == hwi);
1536 else
1538 /* Create a new shared int. */
1539 t = build_new_int_cst (type, cst);
1540 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1543 else
1545 /* Use the cache of larger shared ints, using int_cst_node as
1546 a temporary. */
1548 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1549 TREE_TYPE (int_cst_node) = type;
1551 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1552 t = *slot;
1553 if (!t)
1555 /* Insert this one into the hash table. */
1556 t = int_cst_node;
1557 *slot = t;
1558 /* Make a new node for next time round. */
1559 int_cst_node = make_int_cst (1, 1);
1563 else
1565 /* The value either hashes properly or we drop it on the floor
1566 for the gc to take care of. There will not be enough of them
1567 to worry about. */
1569 tree nt = build_new_int_cst (type, cst);
1570 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1571 t = *slot;
1572 if (!t)
1574 /* Insert this one into the hash table. */
1575 t = nt;
1576 *slot = t;
1578 else
1579 ggc_free (nt);
1582 return t;
1585 void
1586 cache_integer_cst (tree t)
1588 tree type = TREE_TYPE (t);
1589 int ix = -1;
1590 int limit = 0;
1591 int prec = TYPE_PRECISION (type);
1593 gcc_assert (!TREE_OVERFLOW (t));
1595 switch (TREE_CODE (type))
1597 case NULLPTR_TYPE:
1598 gcc_assert (integer_zerop (t));
1599 /* Fallthru. */
1601 case POINTER_TYPE:
1602 case REFERENCE_TYPE:
1603 /* Cache NULL pointer. */
1604 if (integer_zerop (t))
1606 limit = 1;
1607 ix = 0;
1609 break;
1611 case BOOLEAN_TYPE:
1612 /* Cache false or true. */
1613 limit = 2;
1614 if (wi::ltu_p (wi::to_wide (t), 2))
1615 ix = TREE_INT_CST_ELT (t, 0);
1616 break;
1618 case INTEGER_TYPE:
1619 case OFFSET_TYPE:
1620 if (TYPE_UNSIGNED (type))
1622 /* Cache 0..N */
1623 limit = INTEGER_SHARE_LIMIT;
1625 /* This is a little hokie, but if the prec is smaller than
1626 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1627 obvious test will not get the correct answer. */
1628 if (prec < HOST_BITS_PER_WIDE_INT)
1630 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1631 ix = tree_to_uhwi (t);
1633 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1634 ix = tree_to_uhwi (t);
1636 else
1638 /* Cache -1..N */
1639 limit = INTEGER_SHARE_LIMIT + 1;
1641 if (integer_minus_onep (t))
1642 ix = 0;
1643 else if (!wi::neg_p (wi::to_wide (t)))
1645 if (prec < HOST_BITS_PER_WIDE_INT)
1647 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1648 ix = tree_to_shwi (t) + 1;
1650 else if (wi::ltu_p (wi::to_wide (t), INTEGER_SHARE_LIMIT))
1651 ix = tree_to_shwi (t) + 1;
1654 break;
1656 case ENUMERAL_TYPE:
1657 break;
1659 default:
1660 gcc_unreachable ();
1663 if (ix >= 0)
1665 /* Look for it in the type's vector of small shared ints. */
1666 if (!TYPE_CACHED_VALUES_P (type))
1668 TYPE_CACHED_VALUES_P (type) = 1;
1669 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1672 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1673 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1675 else
1677 /* Use the cache of larger shared ints. */
1678 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1679 /* If there is already an entry for the number verify it's the
1680 same. */
1681 if (*slot)
1682 gcc_assert (wi::to_wide (tree (*slot)) == wi::to_wide (t));
1683 else
1684 /* Otherwise insert this one into the hash table. */
1685 *slot = t;
1690 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1691 and the rest are zeros. */
1693 tree
1694 build_low_bits_mask (tree type, unsigned bits)
1696 gcc_assert (bits <= TYPE_PRECISION (type));
1698 return wide_int_to_tree (type, wi::mask (bits, false,
1699 TYPE_PRECISION (type)));
1702 /* Checks that X is integer constant that can be expressed in (unsigned)
1703 HOST_WIDE_INT without loss of precision. */
1705 bool
1706 cst_and_fits_in_hwi (const_tree x)
1708 return (TREE_CODE (x) == INTEGER_CST
1709 && (tree_fits_shwi_p (x) || tree_fits_uhwi_p (x)));
1712 /* Build a newly constructed VECTOR_CST with the given values of
1713 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1715 tree
1716 make_vector (unsigned log2_npatterns,
1717 unsigned int nelts_per_pattern MEM_STAT_DECL)
1719 gcc_assert (IN_RANGE (nelts_per_pattern, 1, 3));
1720 tree t;
1721 unsigned npatterns = 1 << log2_npatterns;
1722 unsigned encoded_nelts = npatterns * nelts_per_pattern;
1723 unsigned length = (sizeof (struct tree_vector)
1724 + (encoded_nelts - 1) * sizeof (tree));
1726 record_node_allocation_statistics (VECTOR_CST, length);
1728 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1730 TREE_SET_CODE (t, VECTOR_CST);
1731 TREE_CONSTANT (t) = 1;
1732 VECTOR_CST_LOG2_NPATTERNS (t) = log2_npatterns;
1733 VECTOR_CST_NELTS_PER_PATTERN (t) = nelts_per_pattern;
1735 return t;
1738 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1739 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1741 tree
1742 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1744 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type);
1745 unsigned HOST_WIDE_INT idx;
1746 tree value;
1748 tree_vector_builder vec (type, nelts, 1);
1749 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1751 if (TREE_CODE (value) == VECTOR_CST)
1752 for (unsigned i = 0; i < VECTOR_CST_NELTS (value); ++i)
1753 vec.quick_push (VECTOR_CST_ELT (value, i));
1754 else
1755 vec.quick_push (value);
1757 while (vec.length () < nelts)
1758 vec.quick_push (build_zero_cst (TREE_TYPE (type)));
1760 return vec.build ();
1763 /* Build a vector of type VECTYPE where all the elements are SCs. */
1764 tree
1765 build_vector_from_val (tree vectype, tree sc)
1767 int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1769 if (sc == error_mark_node)
1770 return sc;
1772 /* Verify that the vector type is suitable for SC. Note that there
1773 is some inconsistency in the type-system with respect to restrict
1774 qualifications of pointers. Vector types always have a main-variant
1775 element type and the qualification is applied to the vector-type.
1776 So TREE_TYPE (vector-type) does not return a properly qualified
1777 vector element-type. */
1778 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1779 TREE_TYPE (vectype)));
1781 if (CONSTANT_CLASS_P (sc))
1783 tree_vector_builder v (vectype, 1, 1);
1784 v.quick_push (sc);
1785 return v.build ();
1787 else
1789 vec<constructor_elt, va_gc> *v;
1790 vec_alloc (v, nunits);
1791 for (i = 0; i < nunits; ++i)
1792 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1793 return build_constructor (vectype, v);
1797 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1798 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1800 void
1801 recompute_constructor_flags (tree c)
1803 unsigned int i;
1804 tree val;
1805 bool constant_p = true;
1806 bool side_effects_p = false;
1807 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1809 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1811 /* Mostly ctors will have elts that don't have side-effects, so
1812 the usual case is to scan all the elements. Hence a single
1813 loop for both const and side effects, rather than one loop
1814 each (with early outs). */
1815 if (!TREE_CONSTANT (val))
1816 constant_p = false;
1817 if (TREE_SIDE_EFFECTS (val))
1818 side_effects_p = true;
1821 TREE_SIDE_EFFECTS (c) = side_effects_p;
1822 TREE_CONSTANT (c) = constant_p;
1825 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1826 CONSTRUCTOR C. */
1828 void
1829 verify_constructor_flags (tree c)
1831 unsigned int i;
1832 tree val;
1833 bool constant_p = TREE_CONSTANT (c);
1834 bool side_effects_p = TREE_SIDE_EFFECTS (c);
1835 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1837 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1839 if (constant_p && !TREE_CONSTANT (val))
1840 internal_error ("non-constant element in constant CONSTRUCTOR");
1841 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
1842 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1846 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1847 are in the vec pointed to by VALS. */
1848 tree
1849 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1851 tree c = make_node (CONSTRUCTOR);
1853 TREE_TYPE (c) = type;
1854 CONSTRUCTOR_ELTS (c) = vals;
1856 recompute_constructor_flags (c);
1858 return c;
1861 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1862 INDEX and VALUE. */
1863 tree
1864 build_constructor_single (tree type, tree index, tree value)
1866 vec<constructor_elt, va_gc> *v;
1867 constructor_elt elt = {index, value};
1869 vec_alloc (v, 1);
1870 v->quick_push (elt);
1872 return build_constructor (type, v);
1876 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1877 are in a list pointed to by VALS. */
1878 tree
1879 build_constructor_from_list (tree type, tree vals)
1881 tree t;
1882 vec<constructor_elt, va_gc> *v = NULL;
1884 if (vals)
1886 vec_alloc (v, list_length (vals));
1887 for (t = vals; t; t = TREE_CHAIN (t))
1888 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
1891 return build_constructor (type, v);
1894 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1895 of elements, provided as index/value pairs. */
1897 tree
1898 build_constructor_va (tree type, int nelts, ...)
1900 vec<constructor_elt, va_gc> *v = NULL;
1901 va_list p;
1903 va_start (p, nelts);
1904 vec_alloc (v, nelts);
1905 while (nelts--)
1907 tree index = va_arg (p, tree);
1908 tree value = va_arg (p, tree);
1909 CONSTRUCTOR_APPEND_ELT (v, index, value);
1911 va_end (p);
1912 return build_constructor (type, v);
1915 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1917 tree
1918 build_fixed (tree type, FIXED_VALUE_TYPE f)
1920 tree v;
1921 FIXED_VALUE_TYPE *fp;
1923 v = make_node (FIXED_CST);
1924 fp = ggc_alloc<fixed_value> ();
1925 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1927 TREE_TYPE (v) = type;
1928 TREE_FIXED_CST_PTR (v) = fp;
1929 return v;
1932 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1934 tree
1935 build_real (tree type, REAL_VALUE_TYPE d)
1937 tree v;
1938 REAL_VALUE_TYPE *dp;
1939 int overflow = 0;
1941 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1942 Consider doing it via real_convert now. */
1944 v = make_node (REAL_CST);
1945 dp = ggc_alloc<real_value> ();
1946 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1948 TREE_TYPE (v) = type;
1949 TREE_REAL_CST_PTR (v) = dp;
1950 TREE_OVERFLOW (v) = overflow;
1951 return v;
1954 /* Like build_real, but first truncate D to the type. */
1956 tree
1957 build_real_truncate (tree type, REAL_VALUE_TYPE d)
1959 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
1962 /* Return a new REAL_CST node whose type is TYPE
1963 and whose value is the integer value of the INTEGER_CST node I. */
1965 REAL_VALUE_TYPE
1966 real_value_from_int_cst (const_tree type, const_tree i)
1968 REAL_VALUE_TYPE d;
1970 /* Clear all bits of the real value type so that we can later do
1971 bitwise comparisons to see if two values are the same. */
1972 memset (&d, 0, sizeof d);
1974 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, wi::to_wide (i),
1975 TYPE_SIGN (TREE_TYPE (i)));
1976 return d;
1979 /* Given a tree representing an integer constant I, return a tree
1980 representing the same value as a floating-point constant of type TYPE. */
1982 tree
1983 build_real_from_int_cst (tree type, const_tree i)
1985 tree v;
1986 int overflow = TREE_OVERFLOW (i);
1988 v = build_real (type, real_value_from_int_cst (type, i));
1990 TREE_OVERFLOW (v) |= overflow;
1991 return v;
1994 /* Return a newly constructed STRING_CST node whose value is
1995 the LEN characters at STR.
1996 Note that for a C string literal, LEN should include the trailing NUL.
1997 The TREE_TYPE is not initialized. */
1999 tree
2000 build_string (int len, const char *str)
2002 tree s;
2003 size_t length;
2005 /* Do not waste bytes provided by padding of struct tree_string. */
2006 length = len + offsetof (struct tree_string, str) + 1;
2008 record_node_allocation_statistics (STRING_CST, length);
2010 s = (tree) ggc_internal_alloc (length);
2012 memset (s, 0, sizeof (struct tree_typed));
2013 TREE_SET_CODE (s, STRING_CST);
2014 TREE_CONSTANT (s) = 1;
2015 TREE_STRING_LENGTH (s) = len;
2016 memcpy (s->string.str, str, len);
2017 s->string.str[len] = '\0';
2019 return s;
2022 /* Return a newly constructed COMPLEX_CST node whose value is
2023 specified by the real and imaginary parts REAL and IMAG.
2024 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2025 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2027 tree
2028 build_complex (tree type, tree real, tree imag)
2030 tree t = make_node (COMPLEX_CST);
2032 TREE_REALPART (t) = real;
2033 TREE_IMAGPART (t) = imag;
2034 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2035 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2036 return t;
2039 /* Build a complex (inf +- 0i), such as for the result of cproj.
2040 TYPE is the complex tree type of the result. If NEG is true, the
2041 imaginary zero is negative. */
2043 tree
2044 build_complex_inf (tree type, bool neg)
2046 REAL_VALUE_TYPE rinf, rzero = dconst0;
2048 real_inf (&rinf);
2049 rzero.sign = neg;
2050 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2051 build_real (TREE_TYPE (type), rzero));
2054 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2055 element is set to 1. In particular, this is 1 + i for complex types. */
2057 tree
2058 build_each_one_cst (tree type)
2060 if (TREE_CODE (type) == COMPLEX_TYPE)
2062 tree scalar = build_one_cst (TREE_TYPE (type));
2063 return build_complex (type, scalar, scalar);
2065 else
2066 return build_one_cst (type);
2069 /* Return a constant of arithmetic type TYPE which is the
2070 multiplicative identity of the set TYPE. */
2072 tree
2073 build_one_cst (tree type)
2075 switch (TREE_CODE (type))
2077 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2078 case POINTER_TYPE: case REFERENCE_TYPE:
2079 case OFFSET_TYPE:
2080 return build_int_cst (type, 1);
2082 case REAL_TYPE:
2083 return build_real (type, dconst1);
2085 case FIXED_POINT_TYPE:
2086 /* We can only generate 1 for accum types. */
2087 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2088 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2090 case VECTOR_TYPE:
2092 tree scalar = build_one_cst (TREE_TYPE (type));
2094 return build_vector_from_val (type, scalar);
2097 case COMPLEX_TYPE:
2098 return build_complex (type,
2099 build_one_cst (TREE_TYPE (type)),
2100 build_zero_cst (TREE_TYPE (type)));
2102 default:
2103 gcc_unreachable ();
2107 /* Return an integer of type TYPE containing all 1's in as much precision as
2108 it contains, or a complex or vector whose subparts are such integers. */
2110 tree
2111 build_all_ones_cst (tree type)
2113 if (TREE_CODE (type) == COMPLEX_TYPE)
2115 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2116 return build_complex (type, scalar, scalar);
2118 else
2119 return build_minus_one_cst (type);
2122 /* Return a constant of arithmetic type TYPE which is the
2123 opposite of the multiplicative identity of the set TYPE. */
2125 tree
2126 build_minus_one_cst (tree type)
2128 switch (TREE_CODE (type))
2130 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2131 case POINTER_TYPE: case REFERENCE_TYPE:
2132 case OFFSET_TYPE:
2133 return build_int_cst (type, -1);
2135 case REAL_TYPE:
2136 return build_real (type, dconstm1);
2138 case FIXED_POINT_TYPE:
2139 /* We can only generate 1 for accum types. */
2140 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2141 return build_fixed (type,
2142 fixed_from_double_int (double_int_minus_one,
2143 SCALAR_TYPE_MODE (type)));
2145 case VECTOR_TYPE:
2147 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2149 return build_vector_from_val (type, scalar);
2152 case COMPLEX_TYPE:
2153 return build_complex (type,
2154 build_minus_one_cst (TREE_TYPE (type)),
2155 build_zero_cst (TREE_TYPE (type)));
2157 default:
2158 gcc_unreachable ();
2162 /* Build 0 constant of type TYPE. This is used by constructor folding
2163 and thus the constant should be represented in memory by
2164 zero(es). */
2166 tree
2167 build_zero_cst (tree type)
2169 switch (TREE_CODE (type))
2171 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2172 case POINTER_TYPE: case REFERENCE_TYPE:
2173 case OFFSET_TYPE: case NULLPTR_TYPE:
2174 return build_int_cst (type, 0);
2176 case REAL_TYPE:
2177 return build_real (type, dconst0);
2179 case FIXED_POINT_TYPE:
2180 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2182 case VECTOR_TYPE:
2184 tree scalar = build_zero_cst (TREE_TYPE (type));
2186 return build_vector_from_val (type, scalar);
2189 case COMPLEX_TYPE:
2191 tree zero = build_zero_cst (TREE_TYPE (type));
2193 return build_complex (type, zero, zero);
2196 default:
2197 if (!AGGREGATE_TYPE_P (type))
2198 return fold_convert (type, integer_zero_node);
2199 return build_constructor (type, NULL);
2204 /* Build a BINFO with LEN language slots. */
2206 tree
2207 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL)
2209 tree t;
2210 size_t length = (offsetof (struct tree_binfo, base_binfos)
2211 + vec<tree, va_gc>::embedded_size (base_binfos));
2213 record_node_allocation_statistics (TREE_BINFO, length);
2215 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2217 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2219 TREE_SET_CODE (t, TREE_BINFO);
2221 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2223 return t;
2226 /* Create a CASE_LABEL_EXPR tree node and return it. */
2228 tree
2229 build_case_label (tree low_value, tree high_value, tree label_decl)
2231 tree t = make_node (CASE_LABEL_EXPR);
2233 TREE_TYPE (t) = void_type_node;
2234 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2236 CASE_LOW (t) = low_value;
2237 CASE_HIGH (t) = high_value;
2238 CASE_LABEL (t) = label_decl;
2239 CASE_CHAIN (t) = NULL_TREE;
2241 return t;
2244 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2245 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2246 The latter determines the length of the HOST_WIDE_INT vector. */
2248 tree
2249 make_int_cst (int len, int ext_len MEM_STAT_DECL)
2251 tree t;
2252 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2253 + sizeof (struct tree_int_cst));
2255 gcc_assert (len);
2256 record_node_allocation_statistics (INTEGER_CST, length);
2258 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2260 TREE_SET_CODE (t, INTEGER_CST);
2261 TREE_INT_CST_NUNITS (t) = len;
2262 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2263 /* to_offset can only be applied to trees that are offset_int-sized
2264 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2265 must be exactly the precision of offset_int and so LEN is correct. */
2266 if (ext_len <= OFFSET_INT_ELTS)
2267 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2268 else
2269 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2271 TREE_CONSTANT (t) = 1;
2273 return t;
2276 /* Build a newly constructed TREE_VEC node of length LEN. */
2278 tree
2279 make_tree_vec (int len MEM_STAT_DECL)
2281 tree t;
2282 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2284 record_node_allocation_statistics (TREE_VEC, length);
2286 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2288 TREE_SET_CODE (t, TREE_VEC);
2289 TREE_VEC_LENGTH (t) = len;
2291 return t;
2294 /* Grow a TREE_VEC node to new length LEN. */
2296 tree
2297 grow_tree_vec (tree v, int len MEM_STAT_DECL)
2299 gcc_assert (TREE_CODE (v) == TREE_VEC);
2301 int oldlen = TREE_VEC_LENGTH (v);
2302 gcc_assert (len > oldlen);
2304 size_t oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2305 size_t length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2307 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2309 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2311 TREE_VEC_LENGTH (v) = len;
2313 return v;
2316 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2317 fixed, and scalar, complex or vector. */
2320 zerop (const_tree expr)
2322 return (integer_zerop (expr)
2323 || real_zerop (expr)
2324 || fixed_zerop (expr));
2327 /* Return 1 if EXPR is the integer constant zero or a complex constant
2328 of zero. */
2331 integer_zerop (const_tree expr)
2333 switch (TREE_CODE (expr))
2335 case INTEGER_CST:
2336 return wi::to_wide (expr) == 0;
2337 case COMPLEX_CST:
2338 return (integer_zerop (TREE_REALPART (expr))
2339 && integer_zerop (TREE_IMAGPART (expr)));
2340 case VECTOR_CST:
2342 unsigned i;
2343 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2344 if (!integer_zerop (VECTOR_CST_ELT (expr, i)))
2345 return false;
2346 return true;
2348 default:
2349 return false;
2353 /* Return 1 if EXPR is the integer constant one or the corresponding
2354 complex constant. */
2357 integer_onep (const_tree expr)
2359 switch (TREE_CODE (expr))
2361 case INTEGER_CST:
2362 return wi::eq_p (wi::to_widest (expr), 1);
2363 case COMPLEX_CST:
2364 return (integer_onep (TREE_REALPART (expr))
2365 && integer_zerop (TREE_IMAGPART (expr)));
2366 case VECTOR_CST:
2368 unsigned i;
2369 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2370 if (!integer_onep (VECTOR_CST_ELT (expr, i)))
2371 return false;
2372 return true;
2374 default:
2375 return false;
2379 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2380 return 1 if every piece is the integer constant one. */
2383 integer_each_onep (const_tree expr)
2385 if (TREE_CODE (expr) == COMPLEX_CST)
2386 return (integer_onep (TREE_REALPART (expr))
2387 && integer_onep (TREE_IMAGPART (expr)));
2388 else
2389 return integer_onep (expr);
2392 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2393 it contains, or a complex or vector whose subparts are such integers. */
2396 integer_all_onesp (const_tree expr)
2398 if (TREE_CODE (expr) == COMPLEX_CST
2399 && integer_all_onesp (TREE_REALPART (expr))
2400 && integer_all_onesp (TREE_IMAGPART (expr)))
2401 return 1;
2403 else if (TREE_CODE (expr) == VECTOR_CST)
2405 unsigned i;
2406 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2407 if (!integer_all_onesp (VECTOR_CST_ELT (expr, i)))
2408 return 0;
2409 return 1;
2412 else if (TREE_CODE (expr) != INTEGER_CST)
2413 return 0;
2415 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED)
2416 == wi::to_wide (expr));
2419 /* Return 1 if EXPR is the integer constant minus one. */
2422 integer_minus_onep (const_tree expr)
2424 if (TREE_CODE (expr) == COMPLEX_CST)
2425 return (integer_all_onesp (TREE_REALPART (expr))
2426 && integer_zerop (TREE_IMAGPART (expr)));
2427 else
2428 return integer_all_onesp (expr);
2431 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2432 one bit on). */
2435 integer_pow2p (const_tree expr)
2437 if (TREE_CODE (expr) == COMPLEX_CST
2438 && integer_pow2p (TREE_REALPART (expr))
2439 && integer_zerop (TREE_IMAGPART (expr)))
2440 return 1;
2442 if (TREE_CODE (expr) != INTEGER_CST)
2443 return 0;
2445 return wi::popcount (wi::to_wide (expr)) == 1;
2448 /* Return 1 if EXPR is an integer constant other than zero or a
2449 complex constant other than zero. */
2452 integer_nonzerop (const_tree expr)
2454 return ((TREE_CODE (expr) == INTEGER_CST
2455 && wi::to_wide (expr) != 0)
2456 || (TREE_CODE (expr) == COMPLEX_CST
2457 && (integer_nonzerop (TREE_REALPART (expr))
2458 || integer_nonzerop (TREE_IMAGPART (expr)))));
2461 /* Return 1 if EXPR is the integer constant one. For vector,
2462 return 1 if every piece is the integer constant minus one
2463 (representing the value TRUE). */
2466 integer_truep (const_tree expr)
2468 if (TREE_CODE (expr) == VECTOR_CST)
2469 return integer_all_onesp (expr);
2470 return integer_onep (expr);
2473 /* Return 1 if EXPR is the fixed-point constant zero. */
2476 fixed_zerop (const_tree expr)
2478 return (TREE_CODE (expr) == FIXED_CST
2479 && TREE_FIXED_CST (expr).data.is_zero ());
2482 /* Return the power of two represented by a tree node known to be a
2483 power of two. */
2486 tree_log2 (const_tree expr)
2488 if (TREE_CODE (expr) == COMPLEX_CST)
2489 return tree_log2 (TREE_REALPART (expr));
2491 return wi::exact_log2 (wi::to_wide (expr));
2494 /* Similar, but return the largest integer Y such that 2 ** Y is less
2495 than or equal to EXPR. */
2498 tree_floor_log2 (const_tree expr)
2500 if (TREE_CODE (expr) == COMPLEX_CST)
2501 return tree_log2 (TREE_REALPART (expr));
2503 return wi::floor_log2 (wi::to_wide (expr));
2506 /* Return number of known trailing zero bits in EXPR, or, if the value of
2507 EXPR is known to be zero, the precision of it's type. */
2509 unsigned int
2510 tree_ctz (const_tree expr)
2512 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2513 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2514 return 0;
2516 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2517 switch (TREE_CODE (expr))
2519 case INTEGER_CST:
2520 ret1 = wi::ctz (wi::to_wide (expr));
2521 return MIN (ret1, prec);
2522 case SSA_NAME:
2523 ret1 = wi::ctz (get_nonzero_bits (expr));
2524 return MIN (ret1, prec);
2525 case PLUS_EXPR:
2526 case MINUS_EXPR:
2527 case BIT_IOR_EXPR:
2528 case BIT_XOR_EXPR:
2529 case MIN_EXPR:
2530 case MAX_EXPR:
2531 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2532 if (ret1 == 0)
2533 return ret1;
2534 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2535 return MIN (ret1, ret2);
2536 case POINTER_PLUS_EXPR:
2537 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2538 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2539 /* Second operand is sizetype, which could be in theory
2540 wider than pointer's precision. Make sure we never
2541 return more than prec. */
2542 ret2 = MIN (ret2, prec);
2543 return MIN (ret1, ret2);
2544 case BIT_AND_EXPR:
2545 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2546 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2547 return MAX (ret1, ret2);
2548 case MULT_EXPR:
2549 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2550 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2551 return MIN (ret1 + ret2, prec);
2552 case LSHIFT_EXPR:
2553 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2554 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2555 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2557 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2558 return MIN (ret1 + ret2, prec);
2560 return ret1;
2561 case RSHIFT_EXPR:
2562 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2563 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2565 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2566 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2567 if (ret1 > ret2)
2568 return ret1 - ret2;
2570 return 0;
2571 case TRUNC_DIV_EXPR:
2572 case CEIL_DIV_EXPR:
2573 case FLOOR_DIV_EXPR:
2574 case ROUND_DIV_EXPR:
2575 case EXACT_DIV_EXPR:
2576 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2577 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2579 int l = tree_log2 (TREE_OPERAND (expr, 1));
2580 if (l >= 0)
2582 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2583 ret2 = l;
2584 if (ret1 > ret2)
2585 return ret1 - ret2;
2588 return 0;
2589 CASE_CONVERT:
2590 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2591 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2592 ret1 = prec;
2593 return MIN (ret1, prec);
2594 case SAVE_EXPR:
2595 return tree_ctz (TREE_OPERAND (expr, 0));
2596 case COND_EXPR:
2597 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2598 if (ret1 == 0)
2599 return 0;
2600 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2601 return MIN (ret1, ret2);
2602 case COMPOUND_EXPR:
2603 return tree_ctz (TREE_OPERAND (expr, 1));
2604 case ADDR_EXPR:
2605 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2606 if (ret1 > BITS_PER_UNIT)
2608 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2609 return MIN (ret1, prec);
2611 return 0;
2612 default:
2613 return 0;
2617 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2618 decimal float constants, so don't return 1 for them. */
2621 real_zerop (const_tree expr)
2623 switch (TREE_CODE (expr))
2625 case REAL_CST:
2626 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2627 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2628 case COMPLEX_CST:
2629 return real_zerop (TREE_REALPART (expr))
2630 && real_zerop (TREE_IMAGPART (expr));
2631 case VECTOR_CST:
2633 unsigned i;
2634 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2635 if (!real_zerop (VECTOR_CST_ELT (expr, i)))
2636 return false;
2637 return true;
2639 default:
2640 return false;
2644 /* Return 1 if EXPR is the real constant one in real or complex form.
2645 Trailing zeroes matter for decimal float constants, so don't return
2646 1 for them. */
2649 real_onep (const_tree expr)
2651 switch (TREE_CODE (expr))
2653 case REAL_CST:
2654 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2655 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2656 case COMPLEX_CST:
2657 return real_onep (TREE_REALPART (expr))
2658 && real_zerop (TREE_IMAGPART (expr));
2659 case VECTOR_CST:
2661 unsigned i;
2662 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2663 if (!real_onep (VECTOR_CST_ELT (expr, i)))
2664 return false;
2665 return true;
2667 default:
2668 return false;
2672 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2673 matter for decimal float constants, so don't return 1 for them. */
2676 real_minus_onep (const_tree expr)
2678 switch (TREE_CODE (expr))
2680 case REAL_CST:
2681 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2682 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2683 case COMPLEX_CST:
2684 return real_minus_onep (TREE_REALPART (expr))
2685 && real_zerop (TREE_IMAGPART (expr));
2686 case VECTOR_CST:
2688 unsigned i;
2689 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2690 if (!real_minus_onep (VECTOR_CST_ELT (expr, i)))
2691 return false;
2692 return true;
2694 default:
2695 return false;
2699 /* Nonzero if EXP is a constant or a cast of a constant. */
2702 really_constant_p (const_tree exp)
2704 /* This is not quite the same as STRIP_NOPS. It does more. */
2705 while (CONVERT_EXPR_P (exp)
2706 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2707 exp = TREE_OPERAND (exp, 0);
2708 return TREE_CONSTANT (exp);
2711 /* Return first list element whose TREE_VALUE is ELEM.
2712 Return 0 if ELEM is not in LIST. */
2714 tree
2715 value_member (tree elem, tree list)
2717 while (list)
2719 if (elem == TREE_VALUE (list))
2720 return list;
2721 list = TREE_CHAIN (list);
2723 return NULL_TREE;
2726 /* Return first list element whose TREE_PURPOSE is ELEM.
2727 Return 0 if ELEM is not in LIST. */
2729 tree
2730 purpose_member (const_tree elem, tree list)
2732 while (list)
2734 if (elem == TREE_PURPOSE (list))
2735 return list;
2736 list = TREE_CHAIN (list);
2738 return NULL_TREE;
2741 /* Return true if ELEM is in V. */
2743 bool
2744 vec_member (const_tree elem, vec<tree, va_gc> *v)
2746 unsigned ix;
2747 tree t;
2748 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2749 if (elem == t)
2750 return true;
2751 return false;
2754 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2755 NULL_TREE. */
2757 tree
2758 chain_index (int idx, tree chain)
2760 for (; chain && idx > 0; --idx)
2761 chain = TREE_CHAIN (chain);
2762 return chain;
2765 /* Return nonzero if ELEM is part of the chain CHAIN. */
2768 chain_member (const_tree elem, const_tree chain)
2770 while (chain)
2772 if (elem == chain)
2773 return 1;
2774 chain = DECL_CHAIN (chain);
2777 return 0;
2780 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2781 We expect a null pointer to mark the end of the chain.
2782 This is the Lisp primitive `length'. */
2785 list_length (const_tree t)
2787 const_tree p = t;
2788 #ifdef ENABLE_TREE_CHECKING
2789 const_tree q = t;
2790 #endif
2791 int len = 0;
2793 while (p)
2795 p = TREE_CHAIN (p);
2796 #ifdef ENABLE_TREE_CHECKING
2797 if (len % 2)
2798 q = TREE_CHAIN (q);
2799 gcc_assert (p != q);
2800 #endif
2801 len++;
2804 return len;
2807 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2808 UNION_TYPE TYPE, or NULL_TREE if none. */
2810 tree
2811 first_field (const_tree type)
2813 tree t = TYPE_FIELDS (type);
2814 while (t && TREE_CODE (t) != FIELD_DECL)
2815 t = TREE_CHAIN (t);
2816 return t;
2819 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2820 by modifying the last node in chain 1 to point to chain 2.
2821 This is the Lisp primitive `nconc'. */
2823 tree
2824 chainon (tree op1, tree op2)
2826 tree t1;
2828 if (!op1)
2829 return op2;
2830 if (!op2)
2831 return op1;
2833 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2834 continue;
2835 TREE_CHAIN (t1) = op2;
2837 #ifdef ENABLE_TREE_CHECKING
2839 tree t2;
2840 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2841 gcc_assert (t2 != t1);
2843 #endif
2845 return op1;
2848 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2850 tree
2851 tree_last (tree chain)
2853 tree next;
2854 if (chain)
2855 while ((next = TREE_CHAIN (chain)))
2856 chain = next;
2857 return chain;
2860 /* Reverse the order of elements in the chain T,
2861 and return the new head of the chain (old last element). */
2863 tree
2864 nreverse (tree t)
2866 tree prev = 0, decl, next;
2867 for (decl = t; decl; decl = next)
2869 /* We shouldn't be using this function to reverse BLOCK chains; we
2870 have blocks_nreverse for that. */
2871 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
2872 next = TREE_CHAIN (decl);
2873 TREE_CHAIN (decl) = prev;
2874 prev = decl;
2876 return prev;
2879 /* Return a newly created TREE_LIST node whose
2880 purpose and value fields are PARM and VALUE. */
2882 tree
2883 build_tree_list (tree parm, tree value MEM_STAT_DECL)
2885 tree t = make_node (TREE_LIST PASS_MEM_STAT);
2886 TREE_PURPOSE (t) = parm;
2887 TREE_VALUE (t) = value;
2888 return t;
2891 /* Build a chain of TREE_LIST nodes from a vector. */
2893 tree
2894 build_tree_list_vec (const vec<tree, va_gc> *vec MEM_STAT_DECL)
2896 tree ret = NULL_TREE;
2897 tree *pp = &ret;
2898 unsigned int i;
2899 tree t;
2900 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
2902 *pp = build_tree_list (NULL, t PASS_MEM_STAT);
2903 pp = &TREE_CHAIN (*pp);
2905 return ret;
2908 /* Return a newly created TREE_LIST node whose
2909 purpose and value fields are PURPOSE and VALUE
2910 and whose TREE_CHAIN is CHAIN. */
2912 tree
2913 tree_cons (tree purpose, tree value, tree chain MEM_STAT_DECL)
2915 tree node;
2917 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
2918 memset (node, 0, sizeof (struct tree_common));
2920 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
2922 TREE_SET_CODE (node, TREE_LIST);
2923 TREE_CHAIN (node) = chain;
2924 TREE_PURPOSE (node) = purpose;
2925 TREE_VALUE (node) = value;
2926 return node;
2929 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2930 trees. */
2932 vec<tree, va_gc> *
2933 ctor_to_vec (tree ctor)
2935 vec<tree, va_gc> *vec;
2936 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
2937 unsigned int ix;
2938 tree val;
2940 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2941 vec->quick_push (val);
2943 return vec;
2946 /* Return the size nominally occupied by an object of type TYPE
2947 when it resides in memory. The value is measured in units of bytes,
2948 and its data type is that normally used for type sizes
2949 (which is the first type created by make_signed_type or
2950 make_unsigned_type). */
2952 tree
2953 size_in_bytes_loc (location_t loc, const_tree type)
2955 tree t;
2957 if (type == error_mark_node)
2958 return integer_zero_node;
2960 type = TYPE_MAIN_VARIANT (type);
2961 t = TYPE_SIZE_UNIT (type);
2963 if (t == 0)
2965 lang_hooks.types.incomplete_type_error (loc, NULL_TREE, type);
2966 return size_zero_node;
2969 return t;
2972 /* Return the size of TYPE (in bytes) as a wide integer
2973 or return -1 if the size can vary or is larger than an integer. */
2975 HOST_WIDE_INT
2976 int_size_in_bytes (const_tree type)
2978 tree t;
2980 if (type == error_mark_node)
2981 return 0;
2983 type = TYPE_MAIN_VARIANT (type);
2984 t = TYPE_SIZE_UNIT (type);
2986 if (t && tree_fits_uhwi_p (t))
2987 return TREE_INT_CST_LOW (t);
2988 else
2989 return -1;
2992 /* Return the maximum size of TYPE (in bytes) as a wide integer
2993 or return -1 if the size can vary or is larger than an integer. */
2995 HOST_WIDE_INT
2996 max_int_size_in_bytes (const_tree type)
2998 HOST_WIDE_INT size = -1;
2999 tree size_tree;
3001 /* If this is an array type, check for a possible MAX_SIZE attached. */
3003 if (TREE_CODE (type) == ARRAY_TYPE)
3005 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3007 if (size_tree && tree_fits_uhwi_p (size_tree))
3008 size = tree_to_uhwi (size_tree);
3011 /* If we still haven't been able to get a size, see if the language
3012 can compute a maximum size. */
3014 if (size == -1)
3016 size_tree = lang_hooks.types.max_size (type);
3018 if (size_tree && tree_fits_uhwi_p (size_tree))
3019 size = tree_to_uhwi (size_tree);
3022 return size;
3025 /* Return the bit position of FIELD, in bits from the start of the record.
3026 This is a tree of type bitsizetype. */
3028 tree
3029 bit_position (const_tree field)
3031 return bit_from_pos (DECL_FIELD_OFFSET (field),
3032 DECL_FIELD_BIT_OFFSET (field));
3035 /* Return the byte position of FIELD, in bytes from the start of the record.
3036 This is a tree of type sizetype. */
3038 tree
3039 byte_position (const_tree field)
3041 return byte_from_pos (DECL_FIELD_OFFSET (field),
3042 DECL_FIELD_BIT_OFFSET (field));
3045 /* Likewise, but return as an integer. It must be representable in
3046 that way (since it could be a signed value, we don't have the
3047 option of returning -1 like int_size_in_byte can. */
3049 HOST_WIDE_INT
3050 int_byte_position (const_tree field)
3052 return tree_to_shwi (byte_position (field));
3055 /* Return the strictest alignment, in bits, that T is known to have. */
3057 unsigned int
3058 expr_align (const_tree t)
3060 unsigned int align0, align1;
3062 switch (TREE_CODE (t))
3064 CASE_CONVERT: case NON_LVALUE_EXPR:
3065 /* If we have conversions, we know that the alignment of the
3066 object must meet each of the alignments of the types. */
3067 align0 = expr_align (TREE_OPERAND (t, 0));
3068 align1 = TYPE_ALIGN (TREE_TYPE (t));
3069 return MAX (align0, align1);
3071 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3072 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3073 case CLEANUP_POINT_EXPR:
3074 /* These don't change the alignment of an object. */
3075 return expr_align (TREE_OPERAND (t, 0));
3077 case COND_EXPR:
3078 /* The best we can do is say that the alignment is the least aligned
3079 of the two arms. */
3080 align0 = expr_align (TREE_OPERAND (t, 1));
3081 align1 = expr_align (TREE_OPERAND (t, 2));
3082 return MIN (align0, align1);
3084 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3085 meaningfully, it's always 1. */
3086 case LABEL_DECL: case CONST_DECL:
3087 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3088 case FUNCTION_DECL:
3089 gcc_assert (DECL_ALIGN (t) != 0);
3090 return DECL_ALIGN (t);
3092 default:
3093 break;
3096 /* Otherwise take the alignment from that of the type. */
3097 return TYPE_ALIGN (TREE_TYPE (t));
3100 /* Return, as a tree node, the number of elements for TYPE (which is an
3101 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3103 tree
3104 array_type_nelts (const_tree type)
3106 tree index_type, min, max;
3108 /* If they did it with unspecified bounds, then we should have already
3109 given an error about it before we got here. */
3110 if (! TYPE_DOMAIN (type))
3111 return error_mark_node;
3113 index_type = TYPE_DOMAIN (type);
3114 min = TYPE_MIN_VALUE (index_type);
3115 max = TYPE_MAX_VALUE (index_type);
3117 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3118 if (!max)
3119 return error_mark_node;
3121 return (integer_zerop (min)
3122 ? max
3123 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3126 /* If arg is static -- a reference to an object in static storage -- then
3127 return the object. This is not the same as the C meaning of `static'.
3128 If arg isn't static, return NULL. */
3130 tree
3131 staticp (tree arg)
3133 switch (TREE_CODE (arg))
3135 case FUNCTION_DECL:
3136 /* Nested functions are static, even though taking their address will
3137 involve a trampoline as we unnest the nested function and create
3138 the trampoline on the tree level. */
3139 return arg;
3141 case VAR_DECL:
3142 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3143 && ! DECL_THREAD_LOCAL_P (arg)
3144 && ! DECL_DLLIMPORT_P (arg)
3145 ? arg : NULL);
3147 case CONST_DECL:
3148 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3149 ? arg : NULL);
3151 case CONSTRUCTOR:
3152 return TREE_STATIC (arg) ? arg : NULL;
3154 case LABEL_DECL:
3155 case STRING_CST:
3156 return arg;
3158 case COMPONENT_REF:
3159 /* If the thing being referenced is not a field, then it is
3160 something language specific. */
3161 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3163 /* If we are referencing a bitfield, we can't evaluate an
3164 ADDR_EXPR at compile time and so it isn't a constant. */
3165 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3166 return NULL;
3168 return staticp (TREE_OPERAND (arg, 0));
3170 case BIT_FIELD_REF:
3171 return NULL;
3173 case INDIRECT_REF:
3174 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3176 case ARRAY_REF:
3177 case ARRAY_RANGE_REF:
3178 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3179 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3180 return staticp (TREE_OPERAND (arg, 0));
3181 else
3182 return NULL;
3184 case COMPOUND_LITERAL_EXPR:
3185 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3187 default:
3188 return NULL;
3195 /* Return whether OP is a DECL whose address is function-invariant. */
3197 bool
3198 decl_address_invariant_p (const_tree op)
3200 /* The conditions below are slightly less strict than the one in
3201 staticp. */
3203 switch (TREE_CODE (op))
3205 case PARM_DECL:
3206 case RESULT_DECL:
3207 case LABEL_DECL:
3208 case FUNCTION_DECL:
3209 return true;
3211 case VAR_DECL:
3212 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3213 || DECL_THREAD_LOCAL_P (op)
3214 || DECL_CONTEXT (op) == current_function_decl
3215 || decl_function_context (op) == current_function_decl)
3216 return true;
3217 break;
3219 case CONST_DECL:
3220 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3221 || decl_function_context (op) == current_function_decl)
3222 return true;
3223 break;
3225 default:
3226 break;
3229 return false;
3232 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3234 bool
3235 decl_address_ip_invariant_p (const_tree op)
3237 /* The conditions below are slightly less strict than the one in
3238 staticp. */
3240 switch (TREE_CODE (op))
3242 case LABEL_DECL:
3243 case FUNCTION_DECL:
3244 case STRING_CST:
3245 return true;
3247 case VAR_DECL:
3248 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3249 && !DECL_DLLIMPORT_P (op))
3250 || DECL_THREAD_LOCAL_P (op))
3251 return true;
3252 break;
3254 case CONST_DECL:
3255 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3256 return true;
3257 break;
3259 default:
3260 break;
3263 return false;
3267 /* Return true if T is function-invariant (internal function, does
3268 not handle arithmetic; that's handled in skip_simple_arithmetic and
3269 tree_invariant_p). */
3271 static bool
3272 tree_invariant_p_1 (tree t)
3274 tree op;
3276 if (TREE_CONSTANT (t)
3277 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3278 return true;
3280 switch (TREE_CODE (t))
3282 case SAVE_EXPR:
3283 return true;
3285 case ADDR_EXPR:
3286 op = TREE_OPERAND (t, 0);
3287 while (handled_component_p (op))
3289 switch (TREE_CODE (op))
3291 case ARRAY_REF:
3292 case ARRAY_RANGE_REF:
3293 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3294 || TREE_OPERAND (op, 2) != NULL_TREE
3295 || TREE_OPERAND (op, 3) != NULL_TREE)
3296 return false;
3297 break;
3299 case COMPONENT_REF:
3300 if (TREE_OPERAND (op, 2) != NULL_TREE)
3301 return false;
3302 break;
3304 default:;
3306 op = TREE_OPERAND (op, 0);
3309 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3311 default:
3312 break;
3315 return false;
3318 /* Return true if T is function-invariant. */
3320 bool
3321 tree_invariant_p (tree t)
3323 tree inner = skip_simple_arithmetic (t);
3324 return tree_invariant_p_1 (inner);
3327 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3328 Do this to any expression which may be used in more than one place,
3329 but must be evaluated only once.
3331 Normally, expand_expr would reevaluate the expression each time.
3332 Calling save_expr produces something that is evaluated and recorded
3333 the first time expand_expr is called on it. Subsequent calls to
3334 expand_expr just reuse the recorded value.
3336 The call to expand_expr that generates code that actually computes
3337 the value is the first call *at compile time*. Subsequent calls
3338 *at compile time* generate code to use the saved value.
3339 This produces correct result provided that *at run time* control
3340 always flows through the insns made by the first expand_expr
3341 before reaching the other places where the save_expr was evaluated.
3342 You, the caller of save_expr, must make sure this is so.
3344 Constants, and certain read-only nodes, are returned with no
3345 SAVE_EXPR because that is safe. Expressions containing placeholders
3346 are not touched; see tree.def for an explanation of what these
3347 are used for. */
3349 tree
3350 save_expr (tree expr)
3352 tree inner;
3354 /* If the tree evaluates to a constant, then we don't want to hide that
3355 fact (i.e. this allows further folding, and direct checks for constants).
3356 However, a read-only object that has side effects cannot be bypassed.
3357 Since it is no problem to reevaluate literals, we just return the
3358 literal node. */
3359 inner = skip_simple_arithmetic (expr);
3360 if (TREE_CODE (inner) == ERROR_MARK)
3361 return inner;
3363 if (tree_invariant_p_1 (inner))
3364 return expr;
3366 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3367 it means that the size or offset of some field of an object depends on
3368 the value within another field.
3370 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3371 and some variable since it would then need to be both evaluated once and
3372 evaluated more than once. Front-ends must assure this case cannot
3373 happen by surrounding any such subexpressions in their own SAVE_EXPR
3374 and forcing evaluation at the proper time. */
3375 if (contains_placeholder_p (inner))
3376 return expr;
3378 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr);
3380 /* This expression might be placed ahead of a jump to ensure that the
3381 value was computed on both sides of the jump. So make sure it isn't
3382 eliminated as dead. */
3383 TREE_SIDE_EFFECTS (expr) = 1;
3384 return expr;
3387 /* Look inside EXPR into any simple arithmetic operations. Return the
3388 outermost non-arithmetic or non-invariant node. */
3390 tree
3391 skip_simple_arithmetic (tree expr)
3393 /* We don't care about whether this can be used as an lvalue in this
3394 context. */
3395 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3396 expr = TREE_OPERAND (expr, 0);
3398 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3399 a constant, it will be more efficient to not make another SAVE_EXPR since
3400 it will allow better simplification and GCSE will be able to merge the
3401 computations if they actually occur. */
3402 while (true)
3404 if (UNARY_CLASS_P (expr))
3405 expr = TREE_OPERAND (expr, 0);
3406 else if (BINARY_CLASS_P (expr))
3408 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3409 expr = TREE_OPERAND (expr, 0);
3410 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3411 expr = TREE_OPERAND (expr, 1);
3412 else
3413 break;
3415 else
3416 break;
3419 return expr;
3422 /* Look inside EXPR into simple arithmetic operations involving constants.
3423 Return the outermost non-arithmetic or non-constant node. */
3425 tree
3426 skip_simple_constant_arithmetic (tree expr)
3428 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3429 expr = TREE_OPERAND (expr, 0);
3431 while (true)
3433 if (UNARY_CLASS_P (expr))
3434 expr = TREE_OPERAND (expr, 0);
3435 else if (BINARY_CLASS_P (expr))
3437 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3438 expr = TREE_OPERAND (expr, 0);
3439 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3440 expr = TREE_OPERAND (expr, 1);
3441 else
3442 break;
3444 else
3445 break;
3448 return expr;
3451 /* Return which tree structure is used by T. */
3453 enum tree_node_structure_enum
3454 tree_node_structure (const_tree t)
3456 const enum tree_code code = TREE_CODE (t);
3457 return tree_node_structure_for_code (code);
3460 /* Set various status flags when building a CALL_EXPR object T. */
3462 static void
3463 process_call_operands (tree t)
3465 bool side_effects = TREE_SIDE_EFFECTS (t);
3466 bool read_only = false;
3467 int i = call_expr_flags (t);
3469 /* Calls have side-effects, except those to const or pure functions. */
3470 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3471 side_effects = true;
3472 /* Propagate TREE_READONLY of arguments for const functions. */
3473 if (i & ECF_CONST)
3474 read_only = true;
3476 if (!side_effects || read_only)
3477 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3479 tree op = TREE_OPERAND (t, i);
3480 if (op && TREE_SIDE_EFFECTS (op))
3481 side_effects = true;
3482 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3483 read_only = false;
3486 TREE_SIDE_EFFECTS (t) = side_effects;
3487 TREE_READONLY (t) = read_only;
3490 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3491 size or offset that depends on a field within a record. */
3493 bool
3494 contains_placeholder_p (const_tree exp)
3496 enum tree_code code;
3498 if (!exp)
3499 return 0;
3501 code = TREE_CODE (exp);
3502 if (code == PLACEHOLDER_EXPR)
3503 return 1;
3505 switch (TREE_CODE_CLASS (code))
3507 case tcc_reference:
3508 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3509 position computations since they will be converted into a
3510 WITH_RECORD_EXPR involving the reference, which will assume
3511 here will be valid. */
3512 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3514 case tcc_exceptional:
3515 if (code == TREE_LIST)
3516 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3517 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3518 break;
3520 case tcc_unary:
3521 case tcc_binary:
3522 case tcc_comparison:
3523 case tcc_expression:
3524 switch (code)
3526 case COMPOUND_EXPR:
3527 /* Ignoring the first operand isn't quite right, but works best. */
3528 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3530 case COND_EXPR:
3531 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3532 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3533 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3535 case SAVE_EXPR:
3536 /* The save_expr function never wraps anything containing
3537 a PLACEHOLDER_EXPR. */
3538 return 0;
3540 default:
3541 break;
3544 switch (TREE_CODE_LENGTH (code))
3546 case 1:
3547 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3548 case 2:
3549 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3550 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3551 default:
3552 return 0;
3555 case tcc_vl_exp:
3556 switch (code)
3558 case CALL_EXPR:
3560 const_tree arg;
3561 const_call_expr_arg_iterator iter;
3562 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3563 if (CONTAINS_PLACEHOLDER_P (arg))
3564 return 1;
3565 return 0;
3567 default:
3568 return 0;
3571 default:
3572 return 0;
3574 return 0;
3577 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3578 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3579 field positions. */
3581 static bool
3582 type_contains_placeholder_1 (const_tree type)
3584 /* If the size contains a placeholder or the parent type (component type in
3585 the case of arrays) type involves a placeholder, this type does. */
3586 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3587 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3588 || (!POINTER_TYPE_P (type)
3589 && TREE_TYPE (type)
3590 && type_contains_placeholder_p (TREE_TYPE (type))))
3591 return true;
3593 /* Now do type-specific checks. Note that the last part of the check above
3594 greatly limits what we have to do below. */
3595 switch (TREE_CODE (type))
3597 case VOID_TYPE:
3598 case POINTER_BOUNDS_TYPE:
3599 case COMPLEX_TYPE:
3600 case ENUMERAL_TYPE:
3601 case BOOLEAN_TYPE:
3602 case POINTER_TYPE:
3603 case OFFSET_TYPE:
3604 case REFERENCE_TYPE:
3605 case METHOD_TYPE:
3606 case FUNCTION_TYPE:
3607 case VECTOR_TYPE:
3608 case NULLPTR_TYPE:
3609 return false;
3611 case INTEGER_TYPE:
3612 case REAL_TYPE:
3613 case FIXED_POINT_TYPE:
3614 /* Here we just check the bounds. */
3615 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3616 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3618 case ARRAY_TYPE:
3619 /* We have already checked the component type above, so just check
3620 the domain type. Flexible array members have a null domain. */
3621 return TYPE_DOMAIN (type) ?
3622 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3624 case RECORD_TYPE:
3625 case UNION_TYPE:
3626 case QUAL_UNION_TYPE:
3628 tree field;
3630 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3631 if (TREE_CODE (field) == FIELD_DECL
3632 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3633 || (TREE_CODE (type) == QUAL_UNION_TYPE
3634 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3635 || type_contains_placeholder_p (TREE_TYPE (field))))
3636 return true;
3638 return false;
3641 default:
3642 gcc_unreachable ();
3646 /* Wrapper around above function used to cache its result. */
3648 bool
3649 type_contains_placeholder_p (tree type)
3651 bool result;
3653 /* If the contains_placeholder_bits field has been initialized,
3654 then we know the answer. */
3655 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3656 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3658 /* Indicate that we've seen this type node, and the answer is false.
3659 This is what we want to return if we run into recursion via fields. */
3660 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3662 /* Compute the real value. */
3663 result = type_contains_placeholder_1 (type);
3665 /* Store the real value. */
3666 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3668 return result;
3671 /* Push tree EXP onto vector QUEUE if it is not already present. */
3673 static void
3674 push_without_duplicates (tree exp, vec<tree> *queue)
3676 unsigned int i;
3677 tree iter;
3679 FOR_EACH_VEC_ELT (*queue, i, iter)
3680 if (simple_cst_equal (iter, exp) == 1)
3681 break;
3683 if (!iter)
3684 queue->safe_push (exp);
3687 /* Given a tree EXP, find all occurrences of references to fields
3688 in a PLACEHOLDER_EXPR and place them in vector REFS without
3689 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3690 we assume here that EXP contains only arithmetic expressions
3691 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3692 argument list. */
3694 void
3695 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3697 enum tree_code code = TREE_CODE (exp);
3698 tree inner;
3699 int i;
3701 /* We handle TREE_LIST and COMPONENT_REF separately. */
3702 if (code == TREE_LIST)
3704 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3705 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3707 else if (code == COMPONENT_REF)
3709 for (inner = TREE_OPERAND (exp, 0);
3710 REFERENCE_CLASS_P (inner);
3711 inner = TREE_OPERAND (inner, 0))
3714 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3715 push_without_duplicates (exp, refs);
3716 else
3717 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3719 else
3720 switch (TREE_CODE_CLASS (code))
3722 case tcc_constant:
3723 break;
3725 case tcc_declaration:
3726 /* Variables allocated to static storage can stay. */
3727 if (!TREE_STATIC (exp))
3728 push_without_duplicates (exp, refs);
3729 break;
3731 case tcc_expression:
3732 /* This is the pattern built in ada/make_aligning_type. */
3733 if (code == ADDR_EXPR
3734 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3736 push_without_duplicates (exp, refs);
3737 break;
3740 /* Fall through. */
3742 case tcc_exceptional:
3743 case tcc_unary:
3744 case tcc_binary:
3745 case tcc_comparison:
3746 case tcc_reference:
3747 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3748 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3749 break;
3751 case tcc_vl_exp:
3752 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3753 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3754 break;
3756 default:
3757 gcc_unreachable ();
3761 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3762 return a tree with all occurrences of references to F in a
3763 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3764 CONST_DECLs. Note that we assume here that EXP contains only
3765 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3766 occurring only in their argument list. */
3768 tree
3769 substitute_in_expr (tree exp, tree f, tree r)
3771 enum tree_code code = TREE_CODE (exp);
3772 tree op0, op1, op2, op3;
3773 tree new_tree;
3775 /* We handle TREE_LIST and COMPONENT_REF separately. */
3776 if (code == TREE_LIST)
3778 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3779 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3780 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3781 return exp;
3783 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3785 else if (code == COMPONENT_REF)
3787 tree inner;
3789 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3790 and it is the right field, replace it with R. */
3791 for (inner = TREE_OPERAND (exp, 0);
3792 REFERENCE_CLASS_P (inner);
3793 inner = TREE_OPERAND (inner, 0))
3796 /* The field. */
3797 op1 = TREE_OPERAND (exp, 1);
3799 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3800 return r;
3802 /* If this expression hasn't been completed let, leave it alone. */
3803 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3804 return exp;
3806 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3807 if (op0 == TREE_OPERAND (exp, 0))
3808 return exp;
3810 new_tree
3811 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3813 else
3814 switch (TREE_CODE_CLASS (code))
3816 case tcc_constant:
3817 return exp;
3819 case tcc_declaration:
3820 if (exp == f)
3821 return r;
3822 else
3823 return exp;
3825 case tcc_expression:
3826 if (exp == f)
3827 return r;
3829 /* Fall through. */
3831 case tcc_exceptional:
3832 case tcc_unary:
3833 case tcc_binary:
3834 case tcc_comparison:
3835 case tcc_reference:
3836 switch (TREE_CODE_LENGTH (code))
3838 case 0:
3839 return exp;
3841 case 1:
3842 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3843 if (op0 == TREE_OPERAND (exp, 0))
3844 return exp;
3846 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3847 break;
3849 case 2:
3850 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3851 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3853 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3854 return exp;
3856 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3857 break;
3859 case 3:
3860 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3861 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3862 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3864 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3865 && op2 == TREE_OPERAND (exp, 2))
3866 return exp;
3868 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3869 break;
3871 case 4:
3872 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3873 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3874 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3875 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3877 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3878 && op2 == TREE_OPERAND (exp, 2)
3879 && op3 == TREE_OPERAND (exp, 3))
3880 return exp;
3882 new_tree
3883 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3884 break;
3886 default:
3887 gcc_unreachable ();
3889 break;
3891 case tcc_vl_exp:
3893 int i;
3895 new_tree = NULL_TREE;
3897 /* If we are trying to replace F with a constant or with another
3898 instance of one of the arguments of the call, inline back
3899 functions which do nothing else than computing a value from
3900 the arguments they are passed. This makes it possible to
3901 fold partially or entirely the replacement expression. */
3902 if (code == CALL_EXPR)
3904 bool maybe_inline = false;
3905 if (CONSTANT_CLASS_P (r))
3906 maybe_inline = true;
3907 else
3908 for (i = 3; i < TREE_OPERAND_LENGTH (exp); i++)
3909 if (operand_equal_p (TREE_OPERAND (exp, i), r, 0))
3911 maybe_inline = true;
3912 break;
3914 if (maybe_inline)
3916 tree t = maybe_inline_call_in_expr (exp);
3917 if (t)
3918 return SUBSTITUTE_IN_EXPR (t, f, r);
3922 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3924 tree op = TREE_OPERAND (exp, i);
3925 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3926 if (new_op != op)
3928 if (!new_tree)
3929 new_tree = copy_node (exp);
3930 TREE_OPERAND (new_tree, i) = new_op;
3934 if (new_tree)
3936 new_tree = fold (new_tree);
3937 if (TREE_CODE (new_tree) == CALL_EXPR)
3938 process_call_operands (new_tree);
3940 else
3941 return exp;
3943 break;
3945 default:
3946 gcc_unreachable ();
3949 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3951 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3952 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3954 return new_tree;
3957 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3958 for it within OBJ, a tree that is an object or a chain of references. */
3960 tree
3961 substitute_placeholder_in_expr (tree exp, tree obj)
3963 enum tree_code code = TREE_CODE (exp);
3964 tree op0, op1, op2, op3;
3965 tree new_tree;
3967 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3968 in the chain of OBJ. */
3969 if (code == PLACEHOLDER_EXPR)
3971 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3972 tree elt;
3974 for (elt = obj; elt != 0;
3975 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3976 || TREE_CODE (elt) == COND_EXPR)
3977 ? TREE_OPERAND (elt, 1)
3978 : (REFERENCE_CLASS_P (elt)
3979 || UNARY_CLASS_P (elt)
3980 || BINARY_CLASS_P (elt)
3981 || VL_EXP_CLASS_P (elt)
3982 || EXPRESSION_CLASS_P (elt))
3983 ? TREE_OPERAND (elt, 0) : 0))
3984 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3985 return elt;
3987 for (elt = obj; elt != 0;
3988 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3989 || TREE_CODE (elt) == COND_EXPR)
3990 ? TREE_OPERAND (elt, 1)
3991 : (REFERENCE_CLASS_P (elt)
3992 || UNARY_CLASS_P (elt)
3993 || BINARY_CLASS_P (elt)
3994 || VL_EXP_CLASS_P (elt)
3995 || EXPRESSION_CLASS_P (elt))
3996 ? TREE_OPERAND (elt, 0) : 0))
3997 if (POINTER_TYPE_P (TREE_TYPE (elt))
3998 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3999 == need_type))
4000 return fold_build1 (INDIRECT_REF, need_type, elt);
4002 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
4003 survives until RTL generation, there will be an error. */
4004 return exp;
4007 /* TREE_LIST is special because we need to look at TREE_VALUE
4008 and TREE_CHAIN, not TREE_OPERANDS. */
4009 else if (code == TREE_LIST)
4011 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
4012 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
4013 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
4014 return exp;
4016 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4018 else
4019 switch (TREE_CODE_CLASS (code))
4021 case tcc_constant:
4022 case tcc_declaration:
4023 return exp;
4025 case tcc_exceptional:
4026 case tcc_unary:
4027 case tcc_binary:
4028 case tcc_comparison:
4029 case tcc_expression:
4030 case tcc_reference:
4031 case tcc_statement:
4032 switch (TREE_CODE_LENGTH (code))
4034 case 0:
4035 return exp;
4037 case 1:
4038 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4039 if (op0 == TREE_OPERAND (exp, 0))
4040 return exp;
4042 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4043 break;
4045 case 2:
4046 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4047 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4049 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4050 return exp;
4052 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4053 break;
4055 case 3:
4056 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4057 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4058 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4060 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4061 && op2 == TREE_OPERAND (exp, 2))
4062 return exp;
4064 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4065 break;
4067 case 4:
4068 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4069 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4070 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4071 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4073 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4074 && op2 == TREE_OPERAND (exp, 2)
4075 && op3 == TREE_OPERAND (exp, 3))
4076 return exp;
4078 new_tree
4079 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4080 break;
4082 default:
4083 gcc_unreachable ();
4085 break;
4087 case tcc_vl_exp:
4089 int i;
4091 new_tree = NULL_TREE;
4093 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4095 tree op = TREE_OPERAND (exp, i);
4096 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4097 if (new_op != op)
4099 if (!new_tree)
4100 new_tree = copy_node (exp);
4101 TREE_OPERAND (new_tree, i) = new_op;
4105 if (new_tree)
4107 new_tree = fold (new_tree);
4108 if (TREE_CODE (new_tree) == CALL_EXPR)
4109 process_call_operands (new_tree);
4111 else
4112 return exp;
4114 break;
4116 default:
4117 gcc_unreachable ();
4120 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4122 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4123 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4125 return new_tree;
4129 /* Subroutine of stabilize_reference; this is called for subtrees of
4130 references. Any expression with side-effects must be put in a SAVE_EXPR
4131 to ensure that it is only evaluated once.
4133 We don't put SAVE_EXPR nodes around everything, because assigning very
4134 simple expressions to temporaries causes us to miss good opportunities
4135 for optimizations. Among other things, the opportunity to fold in the
4136 addition of a constant into an addressing mode often gets lost, e.g.
4137 "y[i+1] += x;". In general, we take the approach that we should not make
4138 an assignment unless we are forced into it - i.e., that any non-side effect
4139 operator should be allowed, and that cse should take care of coalescing
4140 multiple utterances of the same expression should that prove fruitful. */
4142 static tree
4143 stabilize_reference_1 (tree e)
4145 tree result;
4146 enum tree_code code = TREE_CODE (e);
4148 /* We cannot ignore const expressions because it might be a reference
4149 to a const array but whose index contains side-effects. But we can
4150 ignore things that are actual constant or that already have been
4151 handled by this function. */
4153 if (tree_invariant_p (e))
4154 return e;
4156 switch (TREE_CODE_CLASS (code))
4158 case tcc_exceptional:
4159 case tcc_type:
4160 case tcc_declaration:
4161 case tcc_comparison:
4162 case tcc_statement:
4163 case tcc_expression:
4164 case tcc_reference:
4165 case tcc_vl_exp:
4166 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4167 so that it will only be evaluated once. */
4168 /* The reference (r) and comparison (<) classes could be handled as
4169 below, but it is generally faster to only evaluate them once. */
4170 if (TREE_SIDE_EFFECTS (e))
4171 return save_expr (e);
4172 return e;
4174 case tcc_constant:
4175 /* Constants need no processing. In fact, we should never reach
4176 here. */
4177 return e;
4179 case tcc_binary:
4180 /* Division is slow and tends to be compiled with jumps,
4181 especially the division by powers of 2 that is often
4182 found inside of an array reference. So do it just once. */
4183 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4184 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4185 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4186 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4187 return save_expr (e);
4188 /* Recursively stabilize each operand. */
4189 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4190 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4191 break;
4193 case tcc_unary:
4194 /* Recursively stabilize each operand. */
4195 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4196 break;
4198 default:
4199 gcc_unreachable ();
4202 TREE_TYPE (result) = TREE_TYPE (e);
4203 TREE_READONLY (result) = TREE_READONLY (e);
4204 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4205 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4207 return result;
4210 /* Stabilize a reference so that we can use it any number of times
4211 without causing its operands to be evaluated more than once.
4212 Returns the stabilized reference. This works by means of save_expr,
4213 so see the caveats in the comments about save_expr.
4215 Also allows conversion expressions whose operands are references.
4216 Any other kind of expression is returned unchanged. */
4218 tree
4219 stabilize_reference (tree ref)
4221 tree result;
4222 enum tree_code code = TREE_CODE (ref);
4224 switch (code)
4226 case VAR_DECL:
4227 case PARM_DECL:
4228 case RESULT_DECL:
4229 /* No action is needed in this case. */
4230 return ref;
4232 CASE_CONVERT:
4233 case FLOAT_EXPR:
4234 case FIX_TRUNC_EXPR:
4235 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4236 break;
4238 case INDIRECT_REF:
4239 result = build_nt (INDIRECT_REF,
4240 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4241 break;
4243 case COMPONENT_REF:
4244 result = build_nt (COMPONENT_REF,
4245 stabilize_reference (TREE_OPERAND (ref, 0)),
4246 TREE_OPERAND (ref, 1), NULL_TREE);
4247 break;
4249 case BIT_FIELD_REF:
4250 result = build_nt (BIT_FIELD_REF,
4251 stabilize_reference (TREE_OPERAND (ref, 0)),
4252 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4253 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4254 break;
4256 case ARRAY_REF:
4257 result = build_nt (ARRAY_REF,
4258 stabilize_reference (TREE_OPERAND (ref, 0)),
4259 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4260 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4261 break;
4263 case ARRAY_RANGE_REF:
4264 result = build_nt (ARRAY_RANGE_REF,
4265 stabilize_reference (TREE_OPERAND (ref, 0)),
4266 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4267 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4268 break;
4270 case COMPOUND_EXPR:
4271 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4272 it wouldn't be ignored. This matters when dealing with
4273 volatiles. */
4274 return stabilize_reference_1 (ref);
4276 /* If arg isn't a kind of lvalue we recognize, make no change.
4277 Caller should recognize the error for an invalid lvalue. */
4278 default:
4279 return ref;
4281 case ERROR_MARK:
4282 return error_mark_node;
4285 TREE_TYPE (result) = TREE_TYPE (ref);
4286 TREE_READONLY (result) = TREE_READONLY (ref);
4287 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4288 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4290 return result;
4293 /* Low-level constructors for expressions. */
4295 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4296 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4298 void
4299 recompute_tree_invariant_for_addr_expr (tree t)
4301 tree node;
4302 bool tc = true, se = false;
4304 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4306 /* We started out assuming this address is both invariant and constant, but
4307 does not have side effects. Now go down any handled components and see if
4308 any of them involve offsets that are either non-constant or non-invariant.
4309 Also check for side-effects.
4311 ??? Note that this code makes no attempt to deal with the case where
4312 taking the address of something causes a copy due to misalignment. */
4314 #define UPDATE_FLAGS(NODE) \
4315 do { tree _node = (NODE); \
4316 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4317 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4319 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4320 node = TREE_OPERAND (node, 0))
4322 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4323 array reference (probably made temporarily by the G++ front end),
4324 so ignore all the operands. */
4325 if ((TREE_CODE (node) == ARRAY_REF
4326 || TREE_CODE (node) == ARRAY_RANGE_REF)
4327 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4329 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4330 if (TREE_OPERAND (node, 2))
4331 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4332 if (TREE_OPERAND (node, 3))
4333 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4335 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4336 FIELD_DECL, apparently. The G++ front end can put something else
4337 there, at least temporarily. */
4338 else if (TREE_CODE (node) == COMPONENT_REF
4339 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4341 if (TREE_OPERAND (node, 2))
4342 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4346 node = lang_hooks.expr_to_decl (node, &tc, &se);
4348 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4349 the address, since &(*a)->b is a form of addition. If it's a constant, the
4350 address is constant too. If it's a decl, its address is constant if the
4351 decl is static. Everything else is not constant and, furthermore,
4352 taking the address of a volatile variable is not volatile. */
4353 if (TREE_CODE (node) == INDIRECT_REF
4354 || TREE_CODE (node) == MEM_REF)
4355 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4356 else if (CONSTANT_CLASS_P (node))
4358 else if (DECL_P (node))
4359 tc &= (staticp (node) != NULL_TREE);
4360 else
4362 tc = false;
4363 se |= TREE_SIDE_EFFECTS (node);
4367 TREE_CONSTANT (t) = tc;
4368 TREE_SIDE_EFFECTS (t) = se;
4369 #undef UPDATE_FLAGS
4372 /* Build an expression of code CODE, data type TYPE, and operands as
4373 specified. Expressions and reference nodes can be created this way.
4374 Constants, decls, types and misc nodes cannot be.
4376 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4377 enough for all extant tree codes. */
4379 tree
4380 build0 (enum tree_code code, tree tt MEM_STAT_DECL)
4382 tree t;
4384 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4386 t = make_node (code PASS_MEM_STAT);
4387 TREE_TYPE (t) = tt;
4389 return t;
4392 tree
4393 build1 (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4395 int length = sizeof (struct tree_exp);
4396 tree t;
4398 record_node_allocation_statistics (code, length);
4400 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4402 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4404 memset (t, 0, sizeof (struct tree_common));
4406 TREE_SET_CODE (t, code);
4408 TREE_TYPE (t) = type;
4409 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4410 TREE_OPERAND (t, 0) = node;
4411 if (node && !TYPE_P (node))
4413 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4414 TREE_READONLY (t) = TREE_READONLY (node);
4417 if (TREE_CODE_CLASS (code) == tcc_statement)
4418 TREE_SIDE_EFFECTS (t) = 1;
4419 else switch (code)
4421 case VA_ARG_EXPR:
4422 /* All of these have side-effects, no matter what their
4423 operands are. */
4424 TREE_SIDE_EFFECTS (t) = 1;
4425 TREE_READONLY (t) = 0;
4426 break;
4428 case INDIRECT_REF:
4429 /* Whether a dereference is readonly has nothing to do with whether
4430 its operand is readonly. */
4431 TREE_READONLY (t) = 0;
4432 break;
4434 case ADDR_EXPR:
4435 if (node)
4436 recompute_tree_invariant_for_addr_expr (t);
4437 break;
4439 default:
4440 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4441 && node && !TYPE_P (node)
4442 && TREE_CONSTANT (node))
4443 TREE_CONSTANT (t) = 1;
4444 if (TREE_CODE_CLASS (code) == tcc_reference
4445 && node && TREE_THIS_VOLATILE (node))
4446 TREE_THIS_VOLATILE (t) = 1;
4447 break;
4450 return t;
4453 #define PROCESS_ARG(N) \
4454 do { \
4455 TREE_OPERAND (t, N) = arg##N; \
4456 if (arg##N &&!TYPE_P (arg##N)) \
4458 if (TREE_SIDE_EFFECTS (arg##N)) \
4459 side_effects = 1; \
4460 if (!TREE_READONLY (arg##N) \
4461 && !CONSTANT_CLASS_P (arg##N)) \
4462 (void) (read_only = 0); \
4463 if (!TREE_CONSTANT (arg##N)) \
4464 (void) (constant = 0); \
4466 } while (0)
4468 tree
4469 build2 (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4471 bool constant, read_only, side_effects, div_by_zero;
4472 tree t;
4474 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4476 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4477 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4478 /* When sizetype precision doesn't match that of pointers
4479 we need to be able to build explicit extensions or truncations
4480 of the offset argument. */
4481 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4482 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4483 && TREE_CODE (arg1) == INTEGER_CST);
4485 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4486 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4487 && ptrofftype_p (TREE_TYPE (arg1)));
4489 t = make_node (code PASS_MEM_STAT);
4490 TREE_TYPE (t) = tt;
4492 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4493 result based on those same flags for the arguments. But if the
4494 arguments aren't really even `tree' expressions, we shouldn't be trying
4495 to do this. */
4497 /* Expressions without side effects may be constant if their
4498 arguments are as well. */
4499 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4500 || TREE_CODE_CLASS (code) == tcc_binary);
4501 read_only = 1;
4502 side_effects = TREE_SIDE_EFFECTS (t);
4504 switch (code)
4506 case TRUNC_DIV_EXPR:
4507 case CEIL_DIV_EXPR:
4508 case FLOOR_DIV_EXPR:
4509 case ROUND_DIV_EXPR:
4510 case EXACT_DIV_EXPR:
4511 case CEIL_MOD_EXPR:
4512 case FLOOR_MOD_EXPR:
4513 case ROUND_MOD_EXPR:
4514 case TRUNC_MOD_EXPR:
4515 div_by_zero = integer_zerop (arg1);
4516 break;
4517 default:
4518 div_by_zero = false;
4521 PROCESS_ARG (0);
4522 PROCESS_ARG (1);
4524 TREE_SIDE_EFFECTS (t) = side_effects;
4525 if (code == MEM_REF)
4527 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4529 tree o = TREE_OPERAND (arg0, 0);
4530 TREE_READONLY (t) = TREE_READONLY (o);
4531 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4534 else
4536 TREE_READONLY (t) = read_only;
4537 /* Don't mark X / 0 as constant. */
4538 TREE_CONSTANT (t) = constant && !div_by_zero;
4539 TREE_THIS_VOLATILE (t)
4540 = (TREE_CODE_CLASS (code) == tcc_reference
4541 && arg0 && TREE_THIS_VOLATILE (arg0));
4544 return t;
4548 tree
4549 build3 (enum tree_code code, tree tt, tree arg0, tree arg1,
4550 tree arg2 MEM_STAT_DECL)
4552 bool constant, read_only, side_effects;
4553 tree t;
4555 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4556 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4558 t = make_node (code PASS_MEM_STAT);
4559 TREE_TYPE (t) = tt;
4561 read_only = 1;
4563 /* As a special exception, if COND_EXPR has NULL branches, we
4564 assume that it is a gimple statement and always consider
4565 it to have side effects. */
4566 if (code == COND_EXPR
4567 && tt == void_type_node
4568 && arg1 == NULL_TREE
4569 && arg2 == NULL_TREE)
4570 side_effects = true;
4571 else
4572 side_effects = TREE_SIDE_EFFECTS (t);
4574 PROCESS_ARG (0);
4575 PROCESS_ARG (1);
4576 PROCESS_ARG (2);
4578 if (code == COND_EXPR)
4579 TREE_READONLY (t) = read_only;
4581 TREE_SIDE_EFFECTS (t) = side_effects;
4582 TREE_THIS_VOLATILE (t)
4583 = (TREE_CODE_CLASS (code) == tcc_reference
4584 && arg0 && TREE_THIS_VOLATILE (arg0));
4586 return t;
4589 tree
4590 build4 (enum tree_code code, tree tt, tree arg0, tree arg1,
4591 tree arg2, tree arg3 MEM_STAT_DECL)
4593 bool constant, read_only, side_effects;
4594 tree t;
4596 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4598 t = make_node (code PASS_MEM_STAT);
4599 TREE_TYPE (t) = tt;
4601 side_effects = TREE_SIDE_EFFECTS (t);
4603 PROCESS_ARG (0);
4604 PROCESS_ARG (1);
4605 PROCESS_ARG (2);
4606 PROCESS_ARG (3);
4608 TREE_SIDE_EFFECTS (t) = side_effects;
4609 TREE_THIS_VOLATILE (t)
4610 = (TREE_CODE_CLASS (code) == tcc_reference
4611 && arg0 && TREE_THIS_VOLATILE (arg0));
4613 return t;
4616 tree
4617 build5 (enum tree_code code, tree tt, tree arg0, tree arg1,
4618 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4620 bool constant, read_only, side_effects;
4621 tree t;
4623 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4625 t = make_node (code PASS_MEM_STAT);
4626 TREE_TYPE (t) = tt;
4628 side_effects = TREE_SIDE_EFFECTS (t);
4630 PROCESS_ARG (0);
4631 PROCESS_ARG (1);
4632 PROCESS_ARG (2);
4633 PROCESS_ARG (3);
4634 PROCESS_ARG (4);
4636 TREE_SIDE_EFFECTS (t) = side_effects;
4637 if (code == TARGET_MEM_REF)
4639 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4641 tree o = TREE_OPERAND (arg0, 0);
4642 TREE_READONLY (t) = TREE_READONLY (o);
4643 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4646 else
4647 TREE_THIS_VOLATILE (t)
4648 = (TREE_CODE_CLASS (code) == tcc_reference
4649 && arg0 && TREE_THIS_VOLATILE (arg0));
4651 return t;
4654 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4655 on the pointer PTR. */
4657 tree
4658 build_simple_mem_ref_loc (location_t loc, tree ptr)
4660 HOST_WIDE_INT offset = 0;
4661 tree ptype = TREE_TYPE (ptr);
4662 tree tem;
4663 /* For convenience allow addresses that collapse to a simple base
4664 and offset. */
4665 if (TREE_CODE (ptr) == ADDR_EXPR
4666 && (handled_component_p (TREE_OPERAND (ptr, 0))
4667 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4669 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4670 gcc_assert (ptr);
4671 if (TREE_CODE (ptr) == MEM_REF)
4673 offset += mem_ref_offset (ptr).to_short_addr ();
4674 ptr = TREE_OPERAND (ptr, 0);
4676 else
4677 ptr = build_fold_addr_expr (ptr);
4678 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4680 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4681 ptr, build_int_cst (ptype, offset));
4682 SET_EXPR_LOCATION (tem, loc);
4683 return tem;
4686 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4688 offset_int
4689 mem_ref_offset (const_tree t)
4691 return offset_int::from (wi::to_wide (TREE_OPERAND (t, 1)), SIGNED);
4694 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4695 offsetted by OFFSET units. */
4697 tree
4698 build_invariant_address (tree type, tree base, HOST_WIDE_INT offset)
4700 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4701 build_fold_addr_expr (base),
4702 build_int_cst (ptr_type_node, offset));
4703 tree addr = build1 (ADDR_EXPR, type, ref);
4704 recompute_tree_invariant_for_addr_expr (addr);
4705 return addr;
4708 /* Similar except don't specify the TREE_TYPE
4709 and leave the TREE_SIDE_EFFECTS as 0.
4710 It is permissible for arguments to be null,
4711 or even garbage if their values do not matter. */
4713 tree
4714 build_nt (enum tree_code code, ...)
4716 tree t;
4717 int length;
4718 int i;
4719 va_list p;
4721 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4723 va_start (p, code);
4725 t = make_node (code);
4726 length = TREE_CODE_LENGTH (code);
4728 for (i = 0; i < length; i++)
4729 TREE_OPERAND (t, i) = va_arg (p, tree);
4731 va_end (p);
4732 return t;
4735 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4736 tree vec. */
4738 tree
4739 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4741 tree ret, t;
4742 unsigned int ix;
4744 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4745 CALL_EXPR_FN (ret) = fn;
4746 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4747 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4748 CALL_EXPR_ARG (ret, ix) = t;
4749 return ret;
4752 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4753 We do NOT enter this node in any sort of symbol table.
4755 LOC is the location of the decl.
4757 layout_decl is used to set up the decl's storage layout.
4758 Other slots are initialized to 0 or null pointers. */
4760 tree
4761 build_decl (location_t loc, enum tree_code code, tree name,
4762 tree type MEM_STAT_DECL)
4764 tree t;
4766 t = make_node (code PASS_MEM_STAT);
4767 DECL_SOURCE_LOCATION (t) = loc;
4769 /* if (type == error_mark_node)
4770 type = integer_type_node; */
4771 /* That is not done, deliberately, so that having error_mark_node
4772 as the type can suppress useless errors in the use of this variable. */
4774 DECL_NAME (t) = name;
4775 TREE_TYPE (t) = type;
4777 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4778 layout_decl (t, 0);
4780 return t;
4783 /* Builds and returns function declaration with NAME and TYPE. */
4785 tree
4786 build_fn_decl (const char *name, tree type)
4788 tree id = get_identifier (name);
4789 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4791 DECL_EXTERNAL (decl) = 1;
4792 TREE_PUBLIC (decl) = 1;
4793 DECL_ARTIFICIAL (decl) = 1;
4794 TREE_NOTHROW (decl) = 1;
4796 return decl;
4799 vec<tree, va_gc> *all_translation_units;
4801 /* Builds a new translation-unit decl with name NAME, queues it in the
4802 global list of translation-unit decls and returns it. */
4804 tree
4805 build_translation_unit_decl (tree name)
4807 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4808 name, NULL_TREE);
4809 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4810 vec_safe_push (all_translation_units, tu);
4811 return tu;
4815 /* BLOCK nodes are used to represent the structure of binding contours
4816 and declarations, once those contours have been exited and their contents
4817 compiled. This information is used for outputting debugging info. */
4819 tree
4820 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
4822 tree block = make_node (BLOCK);
4824 BLOCK_VARS (block) = vars;
4825 BLOCK_SUBBLOCKS (block) = subblocks;
4826 BLOCK_SUPERCONTEXT (block) = supercontext;
4827 BLOCK_CHAIN (block) = chain;
4828 return block;
4832 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4834 LOC is the location to use in tree T. */
4836 void
4837 protected_set_expr_location (tree t, location_t loc)
4839 if (CAN_HAVE_LOCATION_P (t))
4840 SET_EXPR_LOCATION (t, loc);
4843 /* Reset the expression *EXPR_P, a size or position.
4845 ??? We could reset all non-constant sizes or positions. But it's cheap
4846 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4848 We need to reset self-referential sizes or positions because they cannot
4849 be gimplified and thus can contain a CALL_EXPR after the gimplification
4850 is finished, which will run afoul of LTO streaming. And they need to be
4851 reset to something essentially dummy but not constant, so as to preserve
4852 the properties of the object they are attached to. */
4854 static inline void
4855 free_lang_data_in_one_sizepos (tree *expr_p)
4857 tree expr = *expr_p;
4858 if (CONTAINS_PLACEHOLDER_P (expr))
4859 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
4863 /* Reset all the fields in a binfo node BINFO. We only keep
4864 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4866 static void
4867 free_lang_data_in_binfo (tree binfo)
4869 unsigned i;
4870 tree t;
4872 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
4874 BINFO_VIRTUALS (binfo) = NULL_TREE;
4875 BINFO_BASE_ACCESSES (binfo) = NULL;
4876 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4877 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
4879 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
4880 free_lang_data_in_binfo (t);
4884 /* Reset all language specific information still present in TYPE. */
4886 static void
4887 free_lang_data_in_type (tree type)
4889 gcc_assert (TYPE_P (type));
4891 /* Give the FE a chance to remove its own data first. */
4892 lang_hooks.free_lang_data (type);
4894 TREE_LANG_FLAG_0 (type) = 0;
4895 TREE_LANG_FLAG_1 (type) = 0;
4896 TREE_LANG_FLAG_2 (type) = 0;
4897 TREE_LANG_FLAG_3 (type) = 0;
4898 TREE_LANG_FLAG_4 (type) = 0;
4899 TREE_LANG_FLAG_5 (type) = 0;
4900 TREE_LANG_FLAG_6 (type) = 0;
4902 if (TREE_CODE (type) == FUNCTION_TYPE)
4904 /* Remove the const and volatile qualifiers from arguments. The
4905 C++ front end removes them, but the C front end does not,
4906 leading to false ODR violation errors when merging two
4907 instances of the same function signature compiled by
4908 different front ends. */
4909 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4911 tree arg_type = TREE_VALUE (p);
4913 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4915 int quals = TYPE_QUALS (arg_type)
4916 & ~TYPE_QUAL_CONST
4917 & ~TYPE_QUAL_VOLATILE;
4918 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4919 free_lang_data_in_type (TREE_VALUE (p));
4921 /* C++ FE uses TREE_PURPOSE to store initial values. */
4922 TREE_PURPOSE (p) = NULL;
4925 else if (TREE_CODE (type) == METHOD_TYPE)
4926 for (tree p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4927 /* C++ FE uses TREE_PURPOSE to store initial values. */
4928 TREE_PURPOSE (p) = NULL;
4929 else if (RECORD_OR_UNION_TYPE_P (type))
4931 /* Remove members that are not FIELD_DECLs (and maybe
4932 TYPE_DECLs) from the field list of an aggregate. These occur
4933 in C++. */
4934 for (tree *prev = &TYPE_FIELDS (type), member; (member = *prev);)
4935 if (TREE_CODE (member) == FIELD_DECL
4936 || (TREE_CODE (member) == TYPE_DECL
4937 && !DECL_IGNORED_P (member)
4938 && debug_info_level > DINFO_LEVEL_TERSE
4939 && !is_redundant_typedef (member)))
4940 prev = &DECL_CHAIN (member);
4941 else
4942 *prev = DECL_CHAIN (member);
4944 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
4945 and danagle the pointer from time to time. */
4946 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
4947 TYPE_VFIELD (type) = NULL_TREE;
4949 if (TYPE_BINFO (type))
4951 free_lang_data_in_binfo (TYPE_BINFO (type));
4952 /* We need to preserve link to bases and virtual table for all
4953 polymorphic types to make devirtualization machinery working.
4954 Debug output cares only about bases, but output also
4955 virtual table pointers so merging of -fdevirtualize and
4956 -fno-devirtualize units is easier. */
4957 if ((!BINFO_VTABLE (TYPE_BINFO (type))
4958 || !flag_devirtualize)
4959 && ((!BINFO_N_BASE_BINFOS (TYPE_BINFO (type))
4960 && !BINFO_VTABLE (TYPE_BINFO (type)))
4961 || debug_info_level != DINFO_LEVEL_NONE))
4962 TYPE_BINFO (type) = NULL;
4965 else if (INTEGRAL_TYPE_P (type)
4966 || SCALAR_FLOAT_TYPE_P (type)
4967 || FIXED_POINT_TYPE_P (type))
4969 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
4970 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
4973 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
4975 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
4976 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
4978 if (TYPE_CONTEXT (type)
4979 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
4981 tree ctx = TYPE_CONTEXT (type);
4984 ctx = BLOCK_SUPERCONTEXT (ctx);
4986 while (ctx && TREE_CODE (ctx) == BLOCK);
4987 TYPE_CONTEXT (type) = ctx;
4992 /* Return true if DECL may need an assembler name to be set. */
4994 static inline bool
4995 need_assembler_name_p (tree decl)
4997 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
4998 Rule merging. This makes type_odr_p to return true on those types during
4999 LTO and by comparing the mangled name, we can say what types are intended
5000 to be equivalent across compilation unit.
5002 We do not store names of type_in_anonymous_namespace_p.
5004 Record, union and enumeration type have linkage that allows use
5005 to check type_in_anonymous_namespace_p. We do not mangle compound types
5006 that always can be compared structurally.
5008 Similarly for builtin types, we compare properties of their main variant.
5009 A special case are integer types where mangling do make differences
5010 between char/signed char/unsigned char etc. Storing name for these makes
5011 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5012 See cp/mangle.c:write_builtin_type for details. */
5014 if (flag_lto_odr_type_mering
5015 && TREE_CODE (decl) == TYPE_DECL
5016 && DECL_NAME (decl)
5017 && decl == TYPE_NAME (TREE_TYPE (decl))
5018 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5019 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5020 && (type_with_linkage_p (TREE_TYPE (decl))
5021 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5022 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5023 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5024 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5025 if (!VAR_OR_FUNCTION_DECL_P (decl))
5026 return false;
5028 /* If DECL already has its assembler name set, it does not need a
5029 new one. */
5030 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5031 || DECL_ASSEMBLER_NAME_SET_P (decl))
5032 return false;
5034 /* Abstract decls do not need an assembler name. */
5035 if (DECL_ABSTRACT_P (decl))
5036 return false;
5038 /* For VAR_DECLs, only static, public and external symbols need an
5039 assembler name. */
5040 if (VAR_P (decl)
5041 && !TREE_STATIC (decl)
5042 && !TREE_PUBLIC (decl)
5043 && !DECL_EXTERNAL (decl))
5044 return false;
5046 if (TREE_CODE (decl) == FUNCTION_DECL)
5048 /* Do not set assembler name on builtins. Allow RTL expansion to
5049 decide whether to expand inline or via a regular call. */
5050 if (DECL_BUILT_IN (decl)
5051 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5052 return false;
5054 /* Functions represented in the callgraph need an assembler name. */
5055 if (cgraph_node::get (decl) != NULL)
5056 return true;
5058 /* Unused and not public functions don't need an assembler name. */
5059 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5060 return false;
5063 return true;
5067 /* Reset all language specific information still present in symbol
5068 DECL. */
5070 static void
5071 free_lang_data_in_decl (tree decl)
5073 gcc_assert (DECL_P (decl));
5075 /* Give the FE a chance to remove its own data first. */
5076 lang_hooks.free_lang_data (decl);
5078 TREE_LANG_FLAG_0 (decl) = 0;
5079 TREE_LANG_FLAG_1 (decl) = 0;
5080 TREE_LANG_FLAG_2 (decl) = 0;
5081 TREE_LANG_FLAG_3 (decl) = 0;
5082 TREE_LANG_FLAG_4 (decl) = 0;
5083 TREE_LANG_FLAG_5 (decl) = 0;
5084 TREE_LANG_FLAG_6 (decl) = 0;
5086 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5087 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5088 if (TREE_CODE (decl) == FIELD_DECL)
5090 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5091 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5092 DECL_QUALIFIER (decl) = NULL_TREE;
5095 if (TREE_CODE (decl) == FUNCTION_DECL)
5097 struct cgraph_node *node;
5098 if (!(node = cgraph_node::get (decl))
5099 || (!node->definition && !node->clones))
5101 if (node)
5102 node->release_body ();
5103 else
5105 release_function_body (decl);
5106 DECL_ARGUMENTS (decl) = NULL;
5107 DECL_RESULT (decl) = NULL;
5108 DECL_INITIAL (decl) = error_mark_node;
5111 if (gimple_has_body_p (decl) || (node && node->thunk.thunk_p))
5113 tree t;
5115 /* If DECL has a gimple body, then the context for its
5116 arguments must be DECL. Otherwise, it doesn't really
5117 matter, as we will not be emitting any code for DECL. In
5118 general, there may be other instances of DECL created by
5119 the front end and since PARM_DECLs are generally shared,
5120 their DECL_CONTEXT changes as the replicas of DECL are
5121 created. The only time where DECL_CONTEXT is important
5122 is for the FUNCTION_DECLs that have a gimple body (since
5123 the PARM_DECL will be used in the function's body). */
5124 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5125 DECL_CONTEXT (t) = decl;
5126 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5127 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5128 = target_option_default_node;
5129 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5130 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5131 = optimization_default_node;
5134 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5135 At this point, it is not needed anymore. */
5136 DECL_SAVED_TREE (decl) = NULL_TREE;
5138 /* Clear the abstract origin if it refers to a method.
5139 Otherwise dwarf2out.c will ICE as we splice functions out of
5140 TYPE_FIELDS and thus the origin will not be output
5141 correctly. */
5142 if (DECL_ABSTRACT_ORIGIN (decl)
5143 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5144 && RECORD_OR_UNION_TYPE_P
5145 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5146 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5148 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5149 DECL_VINDEX referring to itself into a vtable slot number as it
5150 should. Happens with functions that are copied and then forgotten
5151 about. Just clear it, it won't matter anymore. */
5152 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5153 DECL_VINDEX (decl) = NULL_TREE;
5155 else if (VAR_P (decl))
5157 if ((DECL_EXTERNAL (decl)
5158 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5159 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5160 DECL_INITIAL (decl) = NULL_TREE;
5162 else if (TREE_CODE (decl) == TYPE_DECL)
5164 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5165 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5166 DECL_INITIAL (decl) = NULL_TREE;
5168 else if (TREE_CODE (decl) == FIELD_DECL)
5169 DECL_INITIAL (decl) = NULL_TREE;
5170 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5171 && DECL_INITIAL (decl)
5172 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5174 /* Strip builtins from the translation-unit BLOCK. We still have targets
5175 without builtin_decl_explicit support and also builtins are shared
5176 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5177 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5178 while (*nextp)
5180 tree var = *nextp;
5181 if (TREE_CODE (var) == FUNCTION_DECL
5182 && DECL_BUILT_IN (var))
5183 *nextp = TREE_CHAIN (var);
5184 else
5185 nextp = &TREE_CHAIN (var);
5191 /* Data used when collecting DECLs and TYPEs for language data removal. */
5193 struct free_lang_data_d
5195 free_lang_data_d () : decls (100), types (100) {}
5197 /* Worklist to avoid excessive recursion. */
5198 auto_vec<tree> worklist;
5200 /* Set of traversed objects. Used to avoid duplicate visits. */
5201 hash_set<tree> pset;
5203 /* Array of symbols to process with free_lang_data_in_decl. */
5204 auto_vec<tree> decls;
5206 /* Array of types to process with free_lang_data_in_type. */
5207 auto_vec<tree> types;
5211 /* Save all language fields needed to generate proper debug information
5212 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5214 static void
5215 save_debug_info_for_decl (tree t)
5217 /*struct saved_debug_info_d *sdi;*/
5219 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
5221 /* FIXME. Partial implementation for saving debug info removed. */
5225 /* Save all language fields needed to generate proper debug information
5226 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5228 static void
5229 save_debug_info_for_type (tree t)
5231 /*struct saved_debug_info_d *sdi;*/
5233 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
5235 /* FIXME. Partial implementation for saving debug info removed. */
5239 /* Add type or decl T to one of the list of tree nodes that need their
5240 language data removed. The lists are held inside FLD. */
5242 static void
5243 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5245 if (DECL_P (t))
5247 fld->decls.safe_push (t);
5248 if (debug_info_level > DINFO_LEVEL_TERSE)
5249 save_debug_info_for_decl (t);
5251 else if (TYPE_P (t))
5253 fld->types.safe_push (t);
5254 if (debug_info_level > DINFO_LEVEL_TERSE)
5255 save_debug_info_for_type (t);
5257 else
5258 gcc_unreachable ();
5261 /* Push tree node T into FLD->WORKLIST. */
5263 static inline void
5264 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5266 if (t && !is_lang_specific (t) && !fld->pset.contains (t))
5267 fld->worklist.safe_push ((t));
5271 /* Operand callback helper for free_lang_data_in_node. *TP is the
5272 subtree operand being considered. */
5274 static tree
5275 find_decls_types_r (tree *tp, int *ws, void *data)
5277 tree t = *tp;
5278 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5280 if (TREE_CODE (t) == TREE_LIST)
5281 return NULL_TREE;
5283 /* Language specific nodes will be removed, so there is no need
5284 to gather anything under them. */
5285 if (is_lang_specific (t))
5287 *ws = 0;
5288 return NULL_TREE;
5291 if (DECL_P (t))
5293 /* Note that walk_tree does not traverse every possible field in
5294 decls, so we have to do our own traversals here. */
5295 add_tree_to_fld_list (t, fld);
5297 fld_worklist_push (DECL_NAME (t), fld);
5298 fld_worklist_push (DECL_CONTEXT (t), fld);
5299 fld_worklist_push (DECL_SIZE (t), fld);
5300 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5302 /* We are going to remove everything under DECL_INITIAL for
5303 TYPE_DECLs. No point walking them. */
5304 if (TREE_CODE (t) != TYPE_DECL)
5305 fld_worklist_push (DECL_INITIAL (t), fld);
5307 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5308 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5310 if (TREE_CODE (t) == FUNCTION_DECL)
5312 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5313 fld_worklist_push (DECL_RESULT (t), fld);
5315 else if (TREE_CODE (t) == TYPE_DECL)
5317 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5319 else if (TREE_CODE (t) == FIELD_DECL)
5321 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5322 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5323 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5324 fld_worklist_push (DECL_FCONTEXT (t), fld);
5327 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
5328 && DECL_HAS_VALUE_EXPR_P (t))
5329 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5331 if (TREE_CODE (t) != FIELD_DECL
5332 && TREE_CODE (t) != TYPE_DECL)
5333 fld_worklist_push (TREE_CHAIN (t), fld);
5334 *ws = 0;
5336 else if (TYPE_P (t))
5338 /* Note that walk_tree does not traverse every possible field in
5339 types, so we have to do our own traversals here. */
5340 add_tree_to_fld_list (t, fld);
5342 if (!RECORD_OR_UNION_TYPE_P (t))
5343 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5344 fld_worklist_push (TYPE_SIZE (t), fld);
5345 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5346 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5347 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5348 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5349 fld_worklist_push (TYPE_NAME (t), fld);
5350 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5351 them and thus do not and want not to reach unused pointer types
5352 this way. */
5353 if (!POINTER_TYPE_P (t))
5354 fld_worklist_push (TYPE_MIN_VALUE_RAW (t), fld);
5355 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5356 if (!RECORD_OR_UNION_TYPE_P (t))
5357 fld_worklist_push (TYPE_MAX_VALUE_RAW (t), fld);
5358 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5359 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5360 do not and want not to reach unused variants this way. */
5361 if (TYPE_CONTEXT (t))
5363 tree ctx = TYPE_CONTEXT (t);
5364 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5365 So push that instead. */
5366 while (ctx && TREE_CODE (ctx) == BLOCK)
5367 ctx = BLOCK_SUPERCONTEXT (ctx);
5368 fld_worklist_push (ctx, fld);
5370 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5371 and want not to reach unused types this way. */
5373 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5375 unsigned i;
5376 tree tem;
5377 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5378 fld_worklist_push (TREE_TYPE (tem), fld);
5379 fld_worklist_push (BINFO_VIRTUALS (TYPE_BINFO (t)), fld);
5381 if (RECORD_OR_UNION_TYPE_P (t))
5383 tree tem;
5384 /* Push all TYPE_FIELDS - there can be interleaving interesting
5385 and non-interesting things. */
5386 tem = TYPE_FIELDS (t);
5387 while (tem)
5389 if (TREE_CODE (tem) == FIELD_DECL
5390 || (TREE_CODE (tem) == TYPE_DECL
5391 && !DECL_IGNORED_P (tem)
5392 && debug_info_level > DINFO_LEVEL_TERSE
5393 && !is_redundant_typedef (tem)))
5394 fld_worklist_push (tem, fld);
5395 tem = TREE_CHAIN (tem);
5399 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5400 *ws = 0;
5402 else if (TREE_CODE (t) == BLOCK)
5404 tree tem;
5405 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5406 fld_worklist_push (tem, fld);
5407 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5408 fld_worklist_push (tem, fld);
5409 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5412 if (TREE_CODE (t) != IDENTIFIER_NODE
5413 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5414 fld_worklist_push (TREE_TYPE (t), fld);
5416 return NULL_TREE;
5420 /* Find decls and types in T. */
5422 static void
5423 find_decls_types (tree t, struct free_lang_data_d *fld)
5425 while (1)
5427 if (!fld->pset.contains (t))
5428 walk_tree (&t, find_decls_types_r, fld, &fld->pset);
5429 if (fld->worklist.is_empty ())
5430 break;
5431 t = fld->worklist.pop ();
5435 /* Translate all the types in LIST with the corresponding runtime
5436 types. */
5438 static tree
5439 get_eh_types_for_runtime (tree list)
5441 tree head, prev;
5443 if (list == NULL_TREE)
5444 return NULL_TREE;
5446 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5447 prev = head;
5448 list = TREE_CHAIN (list);
5449 while (list)
5451 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5452 TREE_CHAIN (prev) = n;
5453 prev = TREE_CHAIN (prev);
5454 list = TREE_CHAIN (list);
5457 return head;
5461 /* Find decls and types referenced in EH region R and store them in
5462 FLD->DECLS and FLD->TYPES. */
5464 static void
5465 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5467 switch (r->type)
5469 case ERT_CLEANUP:
5470 break;
5472 case ERT_TRY:
5474 eh_catch c;
5476 /* The types referenced in each catch must first be changed to the
5477 EH types used at runtime. This removes references to FE types
5478 in the region. */
5479 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5481 c->type_list = get_eh_types_for_runtime (c->type_list);
5482 walk_tree (&c->type_list, find_decls_types_r, fld, &fld->pset);
5485 break;
5487 case ERT_ALLOWED_EXCEPTIONS:
5488 r->u.allowed.type_list
5489 = get_eh_types_for_runtime (r->u.allowed.type_list);
5490 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, &fld->pset);
5491 break;
5493 case ERT_MUST_NOT_THROW:
5494 walk_tree (&r->u.must_not_throw.failure_decl,
5495 find_decls_types_r, fld, &fld->pset);
5496 break;
5501 /* Find decls and types referenced in cgraph node N and store them in
5502 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5503 look for *every* kind of DECL and TYPE node reachable from N,
5504 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5505 NAMESPACE_DECLs, etc). */
5507 static void
5508 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5510 basic_block bb;
5511 struct function *fn;
5512 unsigned ix;
5513 tree t;
5515 find_decls_types (n->decl, fld);
5517 if (!gimple_has_body_p (n->decl))
5518 return;
5520 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5522 fn = DECL_STRUCT_FUNCTION (n->decl);
5524 /* Traverse locals. */
5525 FOR_EACH_LOCAL_DECL (fn, ix, t)
5526 find_decls_types (t, fld);
5528 /* Traverse EH regions in FN. */
5530 eh_region r;
5531 FOR_ALL_EH_REGION_FN (r, fn)
5532 find_decls_types_in_eh_region (r, fld);
5535 /* Traverse every statement in FN. */
5536 FOR_EACH_BB_FN (bb, fn)
5538 gphi_iterator psi;
5539 gimple_stmt_iterator si;
5540 unsigned i;
5542 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5544 gphi *phi = psi.phi ();
5546 for (i = 0; i < gimple_phi_num_args (phi); i++)
5548 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5549 find_decls_types (*arg_p, fld);
5553 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5555 gimple *stmt = gsi_stmt (si);
5557 if (is_gimple_call (stmt))
5558 find_decls_types (gimple_call_fntype (stmt), fld);
5560 for (i = 0; i < gimple_num_ops (stmt); i++)
5562 tree arg = gimple_op (stmt, i);
5563 find_decls_types (arg, fld);
5570 /* Find decls and types referenced in varpool node N and store them in
5571 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5572 look for *every* kind of DECL and TYPE node reachable from N,
5573 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5574 NAMESPACE_DECLs, etc). */
5576 static void
5577 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5579 find_decls_types (v->decl, fld);
5582 /* If T needs an assembler name, have one created for it. */
5584 void
5585 assign_assembler_name_if_needed (tree t)
5587 if (need_assembler_name_p (t))
5589 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5590 diagnostics that use input_location to show locus
5591 information. The problem here is that, at this point,
5592 input_location is generally anchored to the end of the file
5593 (since the parser is long gone), so we don't have a good
5594 position to pin it to.
5596 To alleviate this problem, this uses the location of T's
5597 declaration. Examples of this are
5598 testsuite/g++.dg/template/cond2.C and
5599 testsuite/g++.dg/template/pr35240.C. */
5600 location_t saved_location = input_location;
5601 input_location = DECL_SOURCE_LOCATION (t);
5603 decl_assembler_name (t);
5605 input_location = saved_location;
5610 /* Free language specific information for every operand and expression
5611 in every node of the call graph. This process operates in three stages:
5613 1- Every callgraph node and varpool node is traversed looking for
5614 decls and types embedded in them. This is a more exhaustive
5615 search than that done by find_referenced_vars, because it will
5616 also collect individual fields, decls embedded in types, etc.
5618 2- All the decls found are sent to free_lang_data_in_decl.
5620 3- All the types found are sent to free_lang_data_in_type.
5622 The ordering between decls and types is important because
5623 free_lang_data_in_decl sets assembler names, which includes
5624 mangling. So types cannot be freed up until assembler names have
5625 been set up. */
5627 static void
5628 free_lang_data_in_cgraph (void)
5630 struct cgraph_node *n;
5631 varpool_node *v;
5632 struct free_lang_data_d fld;
5633 tree t;
5634 unsigned i;
5635 alias_pair *p;
5637 /* Find decls and types in the body of every function in the callgraph. */
5638 FOR_EACH_FUNCTION (n)
5639 find_decls_types_in_node (n, &fld);
5641 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5642 find_decls_types (p->decl, &fld);
5644 /* Find decls and types in every varpool symbol. */
5645 FOR_EACH_VARIABLE (v)
5646 find_decls_types_in_var (v, &fld);
5648 /* Set the assembler name on every decl found. We need to do this
5649 now because free_lang_data_in_decl will invalidate data needed
5650 for mangling. This breaks mangling on interdependent decls. */
5651 FOR_EACH_VEC_ELT (fld.decls, i, t)
5652 assign_assembler_name_if_needed (t);
5654 /* Traverse every decl found freeing its language data. */
5655 FOR_EACH_VEC_ELT (fld.decls, i, t)
5656 free_lang_data_in_decl (t);
5658 /* Traverse every type found freeing its language data. */
5659 FOR_EACH_VEC_ELT (fld.types, i, t)
5660 free_lang_data_in_type (t);
5661 if (flag_checking)
5663 FOR_EACH_VEC_ELT (fld.types, i, t)
5664 verify_type (t);
5669 /* Free resources that are used by FE but are not needed once they are done. */
5671 static unsigned
5672 free_lang_data (void)
5674 unsigned i;
5676 /* If we are the LTO frontend we have freed lang-specific data already. */
5677 if (in_lto_p
5678 || (!flag_generate_lto && !flag_generate_offload))
5679 return 0;
5681 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
5682 if (vec_safe_is_empty (all_translation_units))
5683 build_translation_unit_decl (NULL_TREE);
5685 /* Allocate and assign alias sets to the standard integer types
5686 while the slots are still in the way the frontends generated them. */
5687 for (i = 0; i < itk_none; ++i)
5688 if (integer_types[i])
5689 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5691 /* Traverse the IL resetting language specific information for
5692 operands, expressions, etc. */
5693 free_lang_data_in_cgraph ();
5695 /* Create gimple variants for common types. */
5696 for (unsigned i = 0;
5697 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
5698 ++i)
5699 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
5701 /* Reset some langhooks. Do not reset types_compatible_p, it may
5702 still be used indirectly via the get_alias_set langhook. */
5703 lang_hooks.dwarf_name = lhd_dwarf_name;
5704 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5705 lang_hooks.gimplify_expr = lhd_gimplify_expr;
5707 /* We do not want the default decl_assembler_name implementation,
5708 rather if we have fixed everything we want a wrapper around it
5709 asserting that all non-local symbols already got their assembler
5710 name and only produce assembler names for local symbols. Or rather
5711 make sure we never call decl_assembler_name on local symbols and
5712 devise a separate, middle-end private scheme for it. */
5714 /* Reset diagnostic machinery. */
5715 tree_diagnostics_defaults (global_dc);
5717 return 0;
5721 namespace {
5723 const pass_data pass_data_ipa_free_lang_data =
5725 SIMPLE_IPA_PASS, /* type */
5726 "*free_lang_data", /* name */
5727 OPTGROUP_NONE, /* optinfo_flags */
5728 TV_IPA_FREE_LANG_DATA, /* tv_id */
5729 0, /* properties_required */
5730 0, /* properties_provided */
5731 0, /* properties_destroyed */
5732 0, /* todo_flags_start */
5733 0, /* todo_flags_finish */
5736 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5738 public:
5739 pass_ipa_free_lang_data (gcc::context *ctxt)
5740 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5743 /* opt_pass methods: */
5744 virtual unsigned int execute (function *) { return free_lang_data (); }
5746 }; // class pass_ipa_free_lang_data
5748 } // anon namespace
5750 simple_ipa_opt_pass *
5751 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5753 return new pass_ipa_free_lang_data (ctxt);
5756 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5757 of the various TYPE_QUAL values. */
5759 static void
5760 set_type_quals (tree type, int type_quals)
5762 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5763 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5764 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5765 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
5766 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
5769 /* Returns true iff CAND and BASE have equivalent language-specific
5770 qualifiers. */
5772 bool
5773 check_lang_type (const_tree cand, const_tree base)
5775 if (lang_hooks.types.type_hash_eq == NULL)
5776 return true;
5777 /* type_hash_eq currently only applies to these types. */
5778 if (TREE_CODE (cand) != FUNCTION_TYPE
5779 && TREE_CODE (cand) != METHOD_TYPE)
5780 return true;
5781 return lang_hooks.types.type_hash_eq (cand, base);
5784 /* Returns true iff unqualified CAND and BASE are equivalent. */
5786 bool
5787 check_base_type (const_tree cand, const_tree base)
5789 return (TYPE_NAME (cand) == TYPE_NAME (base)
5790 /* Apparently this is needed for Objective-C. */
5791 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5792 /* Check alignment. */
5793 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5794 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5795 TYPE_ATTRIBUTES (base)));
5798 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5800 bool
5801 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5803 return (TYPE_QUALS (cand) == type_quals
5804 && check_base_type (cand, base)
5805 && check_lang_type (cand, base));
5808 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5810 static bool
5811 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5813 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5814 && TYPE_NAME (cand) == TYPE_NAME (base)
5815 /* Apparently this is needed for Objective-C. */
5816 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5817 /* Check alignment. */
5818 && TYPE_ALIGN (cand) == align
5819 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5820 TYPE_ATTRIBUTES (base))
5821 && check_lang_type (cand, base));
5824 /* This function checks to see if TYPE matches the size one of the built-in
5825 atomic types, and returns that core atomic type. */
5827 static tree
5828 find_atomic_core_type (tree type)
5830 tree base_atomic_type;
5832 /* Only handle complete types. */
5833 if (!tree_fits_uhwi_p (TYPE_SIZE (type)))
5834 return NULL_TREE;
5836 switch (tree_to_uhwi (TYPE_SIZE (type)))
5838 case 8:
5839 base_atomic_type = atomicQI_type_node;
5840 break;
5842 case 16:
5843 base_atomic_type = atomicHI_type_node;
5844 break;
5846 case 32:
5847 base_atomic_type = atomicSI_type_node;
5848 break;
5850 case 64:
5851 base_atomic_type = atomicDI_type_node;
5852 break;
5854 case 128:
5855 base_atomic_type = atomicTI_type_node;
5856 break;
5858 default:
5859 base_atomic_type = NULL_TREE;
5862 return base_atomic_type;
5865 /* Return a version of the TYPE, qualified as indicated by the
5866 TYPE_QUALS, if one exists. If no qualified version exists yet,
5867 return NULL_TREE. */
5869 tree
5870 get_qualified_type (tree type, int type_quals)
5872 tree t;
5874 if (TYPE_QUALS (type) == type_quals)
5875 return type;
5877 /* Search the chain of variants to see if there is already one there just
5878 like the one we need to have. If so, use that existing one. We must
5879 preserve the TYPE_NAME, since there is code that depends on this. */
5880 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5881 if (check_qualified_type (t, type, type_quals))
5882 return t;
5884 return NULL_TREE;
5887 /* Like get_qualified_type, but creates the type if it does not
5888 exist. This function never returns NULL_TREE. */
5890 tree
5891 build_qualified_type (tree type, int type_quals MEM_STAT_DECL)
5893 tree t;
5895 /* See if we already have the appropriate qualified variant. */
5896 t = get_qualified_type (type, type_quals);
5898 /* If not, build it. */
5899 if (!t)
5901 t = build_variant_type_copy (type PASS_MEM_STAT);
5902 set_type_quals (t, type_quals);
5904 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
5906 /* See if this object can map to a basic atomic type. */
5907 tree atomic_type = find_atomic_core_type (type);
5908 if (atomic_type)
5910 /* Ensure the alignment of this type is compatible with
5911 the required alignment of the atomic type. */
5912 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
5913 SET_TYPE_ALIGN (t, TYPE_ALIGN (atomic_type));
5917 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5918 /* Propagate structural equality. */
5919 SET_TYPE_STRUCTURAL_EQUALITY (t);
5920 else if (TYPE_CANONICAL (type) != type)
5921 /* Build the underlying canonical type, since it is different
5922 from TYPE. */
5924 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
5925 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
5927 else
5928 /* T is its own canonical type. */
5929 TYPE_CANONICAL (t) = t;
5933 return t;
5936 /* Create a variant of type T with alignment ALIGN. */
5938 tree
5939 build_aligned_type (tree type, unsigned int align)
5941 tree t;
5943 if (TYPE_PACKED (type)
5944 || TYPE_ALIGN (type) == align)
5945 return type;
5947 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5948 if (check_aligned_type (t, type, align))
5949 return t;
5951 t = build_variant_type_copy (type);
5952 SET_TYPE_ALIGN (t, align);
5953 TYPE_USER_ALIGN (t) = 1;
5955 return t;
5958 /* Create a new distinct copy of TYPE. The new type is made its own
5959 MAIN_VARIANT. If TYPE requires structural equality checks, the
5960 resulting type requires structural equality checks; otherwise, its
5961 TYPE_CANONICAL points to itself. */
5963 tree
5964 build_distinct_type_copy (tree type MEM_STAT_DECL)
5966 tree t = copy_node (type PASS_MEM_STAT);
5968 TYPE_POINTER_TO (t) = 0;
5969 TYPE_REFERENCE_TO (t) = 0;
5971 /* Set the canonical type either to a new equivalence class, or
5972 propagate the need for structural equality checks. */
5973 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5974 SET_TYPE_STRUCTURAL_EQUALITY (t);
5975 else
5976 TYPE_CANONICAL (t) = t;
5978 /* Make it its own variant. */
5979 TYPE_MAIN_VARIANT (t) = t;
5980 TYPE_NEXT_VARIANT (t) = 0;
5982 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5983 whose TREE_TYPE is not t. This can also happen in the Ada
5984 frontend when using subtypes. */
5986 return t;
5989 /* Create a new variant of TYPE, equivalent but distinct. This is so
5990 the caller can modify it. TYPE_CANONICAL for the return type will
5991 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5992 are considered equal by the language itself (or that both types
5993 require structural equality checks). */
5995 tree
5996 build_variant_type_copy (tree type MEM_STAT_DECL)
5998 tree t, m = TYPE_MAIN_VARIANT (type);
6000 t = build_distinct_type_copy (type PASS_MEM_STAT);
6002 /* Since we're building a variant, assume that it is a non-semantic
6003 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6004 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6005 /* Type variants have no alias set defined. */
6006 TYPE_ALIAS_SET (t) = -1;
6008 /* Add the new type to the chain of variants of TYPE. */
6009 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6010 TYPE_NEXT_VARIANT (m) = t;
6011 TYPE_MAIN_VARIANT (t) = m;
6013 return t;
6016 /* Return true if the from tree in both tree maps are equal. */
6019 tree_map_base_eq (const void *va, const void *vb)
6021 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6022 *const b = (const struct tree_map_base *) vb;
6023 return (a->from == b->from);
6026 /* Hash a from tree in a tree_base_map. */
6028 unsigned int
6029 tree_map_base_hash (const void *item)
6031 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6034 /* Return true if this tree map structure is marked for garbage collection
6035 purposes. We simply return true if the from tree is marked, so that this
6036 structure goes away when the from tree goes away. */
6039 tree_map_base_marked_p (const void *p)
6041 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6044 /* Hash a from tree in a tree_map. */
6046 unsigned int
6047 tree_map_hash (const void *item)
6049 return (((const struct tree_map *) item)->hash);
6052 /* Hash a from tree in a tree_decl_map. */
6054 unsigned int
6055 tree_decl_map_hash (const void *item)
6057 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6060 /* Return the initialization priority for DECL. */
6062 priority_type
6063 decl_init_priority_lookup (tree decl)
6065 symtab_node *snode = symtab_node::get (decl);
6067 if (!snode)
6068 return DEFAULT_INIT_PRIORITY;
6069 return
6070 snode->get_init_priority ();
6073 /* Return the finalization priority for DECL. */
6075 priority_type
6076 decl_fini_priority_lookup (tree decl)
6078 cgraph_node *node = cgraph_node::get (decl);
6080 if (!node)
6081 return DEFAULT_INIT_PRIORITY;
6082 return
6083 node->get_fini_priority ();
6086 /* Set the initialization priority for DECL to PRIORITY. */
6088 void
6089 decl_init_priority_insert (tree decl, priority_type priority)
6091 struct symtab_node *snode;
6093 if (priority == DEFAULT_INIT_PRIORITY)
6095 snode = symtab_node::get (decl);
6096 if (!snode)
6097 return;
6099 else if (VAR_P (decl))
6100 snode = varpool_node::get_create (decl);
6101 else
6102 snode = cgraph_node::get_create (decl);
6103 snode->set_init_priority (priority);
6106 /* Set the finalization priority for DECL to PRIORITY. */
6108 void
6109 decl_fini_priority_insert (tree decl, priority_type priority)
6111 struct cgraph_node *node;
6113 if (priority == DEFAULT_INIT_PRIORITY)
6115 node = cgraph_node::get (decl);
6116 if (!node)
6117 return;
6119 else
6120 node = cgraph_node::get_create (decl);
6121 node->set_fini_priority (priority);
6124 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6126 static void
6127 print_debug_expr_statistics (void)
6129 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6130 (long) debug_expr_for_decl->size (),
6131 (long) debug_expr_for_decl->elements (),
6132 debug_expr_for_decl->collisions ());
6135 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6137 static void
6138 print_value_expr_statistics (void)
6140 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6141 (long) value_expr_for_decl->size (),
6142 (long) value_expr_for_decl->elements (),
6143 value_expr_for_decl->collisions ());
6146 /* Lookup a debug expression for FROM, and return it if we find one. */
6148 tree
6149 decl_debug_expr_lookup (tree from)
6151 struct tree_decl_map *h, in;
6152 in.base.from = from;
6154 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6155 if (h)
6156 return h->to;
6157 return NULL_TREE;
6160 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6162 void
6163 decl_debug_expr_insert (tree from, tree to)
6165 struct tree_decl_map *h;
6167 h = ggc_alloc<tree_decl_map> ();
6168 h->base.from = from;
6169 h->to = to;
6170 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6173 /* Lookup a value expression for FROM, and return it if we find one. */
6175 tree
6176 decl_value_expr_lookup (tree from)
6178 struct tree_decl_map *h, in;
6179 in.base.from = from;
6181 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6182 if (h)
6183 return h->to;
6184 return NULL_TREE;
6187 /* Insert a mapping FROM->TO in the value expression hashtable. */
6189 void
6190 decl_value_expr_insert (tree from, tree to)
6192 struct tree_decl_map *h;
6194 h = ggc_alloc<tree_decl_map> ();
6195 h->base.from = from;
6196 h->to = to;
6197 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6200 /* Lookup a vector of debug arguments for FROM, and return it if we
6201 find one. */
6203 vec<tree, va_gc> **
6204 decl_debug_args_lookup (tree from)
6206 struct tree_vec_map *h, in;
6208 if (!DECL_HAS_DEBUG_ARGS_P (from))
6209 return NULL;
6210 gcc_checking_assert (debug_args_for_decl != NULL);
6211 in.base.from = from;
6212 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6213 if (h)
6214 return &h->to;
6215 return NULL;
6218 /* Insert a mapping FROM->empty vector of debug arguments in the value
6219 expression hashtable. */
6221 vec<tree, va_gc> **
6222 decl_debug_args_insert (tree from)
6224 struct tree_vec_map *h;
6225 tree_vec_map **loc;
6227 if (DECL_HAS_DEBUG_ARGS_P (from))
6228 return decl_debug_args_lookup (from);
6229 if (debug_args_for_decl == NULL)
6230 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6231 h = ggc_alloc<tree_vec_map> ();
6232 h->base.from = from;
6233 h->to = NULL;
6234 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6235 *loc = h;
6236 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6237 return &h->to;
6240 /* Hashing of types so that we don't make duplicates.
6241 The entry point is `type_hash_canon'. */
6243 /* Generate the default hash code for TYPE. This is designed for
6244 speed, rather than maximum entropy. */
6246 hashval_t
6247 type_hash_canon_hash (tree type)
6249 inchash::hash hstate;
6251 hstate.add_int (TREE_CODE (type));
6253 if (TREE_TYPE (type))
6254 hstate.add_object (TYPE_HASH (TREE_TYPE (type)));
6256 for (tree t = TYPE_ATTRIBUTES (type); t; t = TREE_CHAIN (t))
6257 /* Just the identifier is adequate to distinguish. */
6258 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t)));
6260 switch (TREE_CODE (type))
6262 case METHOD_TYPE:
6263 hstate.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type)));
6264 /* FALLTHROUGH. */
6265 case FUNCTION_TYPE:
6266 for (tree t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6267 if (TREE_VALUE (t) != error_mark_node)
6268 hstate.add_object (TYPE_HASH (TREE_VALUE (t)));
6269 break;
6271 case OFFSET_TYPE:
6272 hstate.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type)));
6273 break;
6275 case ARRAY_TYPE:
6277 if (TYPE_DOMAIN (type))
6278 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (type)));
6279 if (!AGGREGATE_TYPE_P (TREE_TYPE (type)))
6281 unsigned typeless = TYPE_TYPELESS_STORAGE (type);
6282 hstate.add_object (typeless);
6285 break;
6287 case INTEGER_TYPE:
6289 tree t = TYPE_MAX_VALUE (type);
6290 if (!t)
6291 t = TYPE_MIN_VALUE (type);
6292 for (int i = 0; i < TREE_INT_CST_NUNITS (t); i++)
6293 hstate.add_object (TREE_INT_CST_ELT (t, i));
6294 break;
6297 case REAL_TYPE:
6298 case FIXED_POINT_TYPE:
6300 unsigned prec = TYPE_PRECISION (type);
6301 hstate.add_object (prec);
6302 break;
6305 case VECTOR_TYPE:
6307 unsigned nunits = TYPE_VECTOR_SUBPARTS (type);
6308 hstate.add_object (nunits);
6309 break;
6312 default:
6313 break;
6316 return hstate.end ();
6319 /* These are the Hashtable callback functions. */
6321 /* Returns true iff the types are equivalent. */
6323 bool
6324 type_cache_hasher::equal (type_hash *a, type_hash *b)
6326 /* First test the things that are the same for all types. */
6327 if (a->hash != b->hash
6328 || TREE_CODE (a->type) != TREE_CODE (b->type)
6329 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6330 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6331 TYPE_ATTRIBUTES (b->type))
6332 || (TREE_CODE (a->type) != COMPLEX_TYPE
6333 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6334 return 0;
6336 /* Be careful about comparing arrays before and after the element type
6337 has been completed; don't compare TYPE_ALIGN unless both types are
6338 complete. */
6339 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6340 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6341 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6342 return 0;
6344 switch (TREE_CODE (a->type))
6346 case VOID_TYPE:
6347 case COMPLEX_TYPE:
6348 case POINTER_TYPE:
6349 case REFERENCE_TYPE:
6350 case NULLPTR_TYPE:
6351 return 1;
6353 case VECTOR_TYPE:
6354 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
6356 case ENUMERAL_TYPE:
6357 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6358 && !(TYPE_VALUES (a->type)
6359 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6360 && TYPE_VALUES (b->type)
6361 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6362 && type_list_equal (TYPE_VALUES (a->type),
6363 TYPE_VALUES (b->type))))
6364 return 0;
6366 /* fall through */
6368 case INTEGER_TYPE:
6369 case REAL_TYPE:
6370 case BOOLEAN_TYPE:
6371 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6372 return false;
6373 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6374 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6375 TYPE_MAX_VALUE (b->type)))
6376 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6377 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6378 TYPE_MIN_VALUE (b->type))));
6380 case FIXED_POINT_TYPE:
6381 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6383 case OFFSET_TYPE:
6384 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6386 case METHOD_TYPE:
6387 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6388 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6389 || (TYPE_ARG_TYPES (a->type)
6390 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6391 && TYPE_ARG_TYPES (b->type)
6392 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6393 && type_list_equal (TYPE_ARG_TYPES (a->type),
6394 TYPE_ARG_TYPES (b->type)))))
6395 break;
6396 return 0;
6397 case ARRAY_TYPE:
6398 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6399 where the flag should be inherited from the element type
6400 and can change after ARRAY_TYPEs are created; on non-aggregates
6401 compare it and hash it, scalars will never have that flag set
6402 and we need to differentiate between arrays created by different
6403 front-ends or middle-end created arrays. */
6404 return (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
6405 && (AGGREGATE_TYPE_P (TREE_TYPE (a->type))
6406 || (TYPE_TYPELESS_STORAGE (a->type)
6407 == TYPE_TYPELESS_STORAGE (b->type))));
6409 case RECORD_TYPE:
6410 case UNION_TYPE:
6411 case QUAL_UNION_TYPE:
6412 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6413 || (TYPE_FIELDS (a->type)
6414 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6415 && TYPE_FIELDS (b->type)
6416 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6417 && type_list_equal (TYPE_FIELDS (a->type),
6418 TYPE_FIELDS (b->type))));
6420 case FUNCTION_TYPE:
6421 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6422 || (TYPE_ARG_TYPES (a->type)
6423 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6424 && TYPE_ARG_TYPES (b->type)
6425 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6426 && type_list_equal (TYPE_ARG_TYPES (a->type),
6427 TYPE_ARG_TYPES (b->type))))
6428 break;
6429 return 0;
6431 default:
6432 return 0;
6435 if (lang_hooks.types.type_hash_eq != NULL)
6436 return lang_hooks.types.type_hash_eq (a->type, b->type);
6438 return 1;
6441 /* Given TYPE, and HASHCODE its hash code, return the canonical
6442 object for an identical type if one already exists.
6443 Otherwise, return TYPE, and record it as the canonical object.
6445 To use this function, first create a type of the sort you want.
6446 Then compute its hash code from the fields of the type that
6447 make it different from other similar types.
6448 Then call this function and use the value. */
6450 tree
6451 type_hash_canon (unsigned int hashcode, tree type)
6453 type_hash in;
6454 type_hash **loc;
6456 /* The hash table only contains main variants, so ensure that's what we're
6457 being passed. */
6458 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6460 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6461 must call that routine before comparing TYPE_ALIGNs. */
6462 layout_type (type);
6464 in.hash = hashcode;
6465 in.type = type;
6467 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
6468 if (*loc)
6470 tree t1 = ((type_hash *) *loc)->type;
6471 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1);
6472 if (TYPE_UID (type) + 1 == next_type_uid)
6473 --next_type_uid;
6474 /* Free also min/max values and the cache for integer
6475 types. This can't be done in free_node, as LTO frees
6476 those on its own. */
6477 if (TREE_CODE (type) == INTEGER_TYPE)
6479 if (TYPE_MIN_VALUE (type)
6480 && TREE_TYPE (TYPE_MIN_VALUE (type)) == type)
6482 /* Zero is always in TYPE_CACHED_VALUES. */
6483 if (! TYPE_UNSIGNED (type))
6484 int_cst_hash_table->remove_elt (TYPE_MIN_VALUE (type));
6485 ggc_free (TYPE_MIN_VALUE (type));
6487 if (TYPE_MAX_VALUE (type)
6488 && TREE_TYPE (TYPE_MAX_VALUE (type)) == type)
6490 int_cst_hash_table->remove_elt (TYPE_MAX_VALUE (type));
6491 ggc_free (TYPE_MAX_VALUE (type));
6493 if (TYPE_CACHED_VALUES_P (type))
6494 ggc_free (TYPE_CACHED_VALUES (type));
6496 free_node (type);
6497 return t1;
6499 else
6501 struct type_hash *h;
6503 h = ggc_alloc<type_hash> ();
6504 h->hash = hashcode;
6505 h->type = type;
6506 *loc = h;
6508 return type;
6512 static void
6513 print_type_hash_statistics (void)
6515 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6516 (long) type_hash_table->size (),
6517 (long) type_hash_table->elements (),
6518 type_hash_table->collisions ());
6521 /* Given two lists of types
6522 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6523 return 1 if the lists contain the same types in the same order.
6524 Also, the TREE_PURPOSEs must match. */
6527 type_list_equal (const_tree l1, const_tree l2)
6529 const_tree t1, t2;
6531 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6532 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6533 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6534 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6535 && (TREE_TYPE (TREE_PURPOSE (t1))
6536 == TREE_TYPE (TREE_PURPOSE (t2))))))
6537 return 0;
6539 return t1 == t2;
6542 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6543 given by TYPE. If the argument list accepts variable arguments,
6544 then this function counts only the ordinary arguments. */
6547 type_num_arguments (const_tree type)
6549 int i = 0;
6550 tree t;
6552 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6553 /* If the function does not take a variable number of arguments,
6554 the last element in the list will have type `void'. */
6555 if (VOID_TYPE_P (TREE_VALUE (t)))
6556 break;
6557 else
6558 ++i;
6560 return i;
6563 /* Nonzero if integer constants T1 and T2
6564 represent the same constant value. */
6567 tree_int_cst_equal (const_tree t1, const_tree t2)
6569 if (t1 == t2)
6570 return 1;
6572 if (t1 == 0 || t2 == 0)
6573 return 0;
6575 if (TREE_CODE (t1) == INTEGER_CST
6576 && TREE_CODE (t2) == INTEGER_CST
6577 && wi::to_widest (t1) == wi::to_widest (t2))
6578 return 1;
6580 return 0;
6583 /* Return true if T is an INTEGER_CST whose numerical value (extended
6584 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6586 bool
6587 tree_fits_shwi_p (const_tree t)
6589 return (t != NULL_TREE
6590 && TREE_CODE (t) == INTEGER_CST
6591 && wi::fits_shwi_p (wi::to_widest (t)));
6594 /* Return true if T is an INTEGER_CST whose numerical value (extended
6595 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6597 bool
6598 tree_fits_uhwi_p (const_tree t)
6600 return (t != NULL_TREE
6601 && TREE_CODE (t) == INTEGER_CST
6602 && wi::fits_uhwi_p (wi::to_widest (t)));
6605 /* T is an INTEGER_CST whose numerical value (extended according to
6606 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
6607 HOST_WIDE_INT. */
6609 HOST_WIDE_INT
6610 tree_to_shwi (const_tree t)
6612 gcc_assert (tree_fits_shwi_p (t));
6613 return TREE_INT_CST_LOW (t);
6616 /* T is an INTEGER_CST whose numerical value (extended according to
6617 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
6618 HOST_WIDE_INT. */
6620 unsigned HOST_WIDE_INT
6621 tree_to_uhwi (const_tree t)
6623 gcc_assert (tree_fits_uhwi_p (t));
6624 return TREE_INT_CST_LOW (t);
6627 /* Return the most significant (sign) bit of T. */
6630 tree_int_cst_sign_bit (const_tree t)
6632 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
6634 return wi::extract_uhwi (wi::to_wide (t), bitno, 1);
6637 /* Return an indication of the sign of the integer constant T.
6638 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6639 Note that -1 will never be returned if T's type is unsigned. */
6642 tree_int_cst_sgn (const_tree t)
6644 if (wi::to_wide (t) == 0)
6645 return 0;
6646 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6647 return 1;
6648 else if (wi::neg_p (wi::to_wide (t)))
6649 return -1;
6650 else
6651 return 1;
6654 /* Return the minimum number of bits needed to represent VALUE in a
6655 signed or unsigned type, UNSIGNEDP says which. */
6657 unsigned int
6658 tree_int_cst_min_precision (tree value, signop sgn)
6660 /* If the value is negative, compute its negative minus 1. The latter
6661 adjustment is because the absolute value of the largest negative value
6662 is one larger than the largest positive value. This is equivalent to
6663 a bit-wise negation, so use that operation instead. */
6665 if (tree_int_cst_sgn (value) < 0)
6666 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6668 /* Return the number of bits needed, taking into account the fact
6669 that we need one more bit for a signed than unsigned type.
6670 If value is 0 or -1, the minimum precision is 1 no matter
6671 whether unsignedp is true or false. */
6673 if (integer_zerop (value))
6674 return 1;
6675 else
6676 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
6679 /* Return truthvalue of whether T1 is the same tree structure as T2.
6680 Return 1 if they are the same.
6681 Return 0 if they are understandably different.
6682 Return -1 if either contains tree structure not understood by
6683 this function. */
6686 simple_cst_equal (const_tree t1, const_tree t2)
6688 enum tree_code code1, code2;
6689 int cmp;
6690 int i;
6692 if (t1 == t2)
6693 return 1;
6694 if (t1 == 0 || t2 == 0)
6695 return 0;
6697 code1 = TREE_CODE (t1);
6698 code2 = TREE_CODE (t2);
6700 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6702 if (CONVERT_EXPR_CODE_P (code2)
6703 || code2 == NON_LVALUE_EXPR)
6704 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6705 else
6706 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6709 else if (CONVERT_EXPR_CODE_P (code2)
6710 || code2 == NON_LVALUE_EXPR)
6711 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6713 if (code1 != code2)
6714 return 0;
6716 switch (code1)
6718 case INTEGER_CST:
6719 return wi::to_widest (t1) == wi::to_widest (t2);
6721 case REAL_CST:
6722 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
6724 case FIXED_CST:
6725 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6727 case STRING_CST:
6728 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6729 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6730 TREE_STRING_LENGTH (t1)));
6732 case CONSTRUCTOR:
6734 unsigned HOST_WIDE_INT idx;
6735 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
6736 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
6738 if (vec_safe_length (v1) != vec_safe_length (v2))
6739 return false;
6741 for (idx = 0; idx < vec_safe_length (v1); ++idx)
6742 /* ??? Should we handle also fields here? */
6743 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
6744 return false;
6745 return true;
6748 case SAVE_EXPR:
6749 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6751 case CALL_EXPR:
6752 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6753 if (cmp <= 0)
6754 return cmp;
6755 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6756 return 0;
6758 const_tree arg1, arg2;
6759 const_call_expr_arg_iterator iter1, iter2;
6760 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6761 arg2 = first_const_call_expr_arg (t2, &iter2);
6762 arg1 && arg2;
6763 arg1 = next_const_call_expr_arg (&iter1),
6764 arg2 = next_const_call_expr_arg (&iter2))
6766 cmp = simple_cst_equal (arg1, arg2);
6767 if (cmp <= 0)
6768 return cmp;
6770 return arg1 == arg2;
6773 case TARGET_EXPR:
6774 /* Special case: if either target is an unallocated VAR_DECL,
6775 it means that it's going to be unified with whatever the
6776 TARGET_EXPR is really supposed to initialize, so treat it
6777 as being equivalent to anything. */
6778 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6779 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6780 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6781 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6782 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6783 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6784 cmp = 1;
6785 else
6786 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6788 if (cmp <= 0)
6789 return cmp;
6791 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6793 case WITH_CLEANUP_EXPR:
6794 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6795 if (cmp <= 0)
6796 return cmp;
6798 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6800 case COMPONENT_REF:
6801 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6802 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6804 return 0;
6806 case VAR_DECL:
6807 case PARM_DECL:
6808 case CONST_DECL:
6809 case FUNCTION_DECL:
6810 return 0;
6812 default:
6813 break;
6816 /* This general rule works for most tree codes. All exceptions should be
6817 handled above. If this is a language-specific tree code, we can't
6818 trust what might be in the operand, so say we don't know
6819 the situation. */
6820 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
6821 return -1;
6823 switch (TREE_CODE_CLASS (code1))
6825 case tcc_unary:
6826 case tcc_binary:
6827 case tcc_comparison:
6828 case tcc_expression:
6829 case tcc_reference:
6830 case tcc_statement:
6831 cmp = 1;
6832 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
6834 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
6835 if (cmp <= 0)
6836 return cmp;
6839 return cmp;
6841 default:
6842 return -1;
6846 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6847 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6848 than U, respectively. */
6851 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
6853 if (tree_int_cst_sgn (t) < 0)
6854 return -1;
6855 else if (!tree_fits_uhwi_p (t))
6856 return 1;
6857 else if (TREE_INT_CST_LOW (t) == u)
6858 return 0;
6859 else if (TREE_INT_CST_LOW (t) < u)
6860 return -1;
6861 else
6862 return 1;
6865 /* Return true if SIZE represents a constant size that is in bounds of
6866 what the middle-end and the backend accepts (covering not more than
6867 half of the address-space). */
6869 bool
6870 valid_constant_size_p (const_tree size)
6872 if (! tree_fits_uhwi_p (size)
6873 || TREE_OVERFLOW (size)
6874 || tree_int_cst_sign_bit (size) != 0)
6875 return false;
6876 return true;
6879 /* Return the precision of the type, or for a complex or vector type the
6880 precision of the type of its elements. */
6882 unsigned int
6883 element_precision (const_tree type)
6885 if (!TYPE_P (type))
6886 type = TREE_TYPE (type);
6887 enum tree_code code = TREE_CODE (type);
6888 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
6889 type = TREE_TYPE (type);
6891 return TYPE_PRECISION (type);
6894 /* Return true if CODE represents an associative tree code. Otherwise
6895 return false. */
6896 bool
6897 associative_tree_code (enum tree_code code)
6899 switch (code)
6901 case BIT_IOR_EXPR:
6902 case BIT_AND_EXPR:
6903 case BIT_XOR_EXPR:
6904 case PLUS_EXPR:
6905 case MULT_EXPR:
6906 case MIN_EXPR:
6907 case MAX_EXPR:
6908 return true;
6910 default:
6911 break;
6913 return false;
6916 /* Return true if CODE represents a commutative tree code. Otherwise
6917 return false. */
6918 bool
6919 commutative_tree_code (enum tree_code code)
6921 switch (code)
6923 case PLUS_EXPR:
6924 case MULT_EXPR:
6925 case MULT_HIGHPART_EXPR:
6926 case MIN_EXPR:
6927 case MAX_EXPR:
6928 case BIT_IOR_EXPR:
6929 case BIT_XOR_EXPR:
6930 case BIT_AND_EXPR:
6931 case NE_EXPR:
6932 case EQ_EXPR:
6933 case UNORDERED_EXPR:
6934 case ORDERED_EXPR:
6935 case UNEQ_EXPR:
6936 case LTGT_EXPR:
6937 case TRUTH_AND_EXPR:
6938 case TRUTH_XOR_EXPR:
6939 case TRUTH_OR_EXPR:
6940 case WIDEN_MULT_EXPR:
6941 case VEC_WIDEN_MULT_HI_EXPR:
6942 case VEC_WIDEN_MULT_LO_EXPR:
6943 case VEC_WIDEN_MULT_EVEN_EXPR:
6944 case VEC_WIDEN_MULT_ODD_EXPR:
6945 return true;
6947 default:
6948 break;
6950 return false;
6953 /* Return true if CODE represents a ternary tree code for which the
6954 first two operands are commutative. Otherwise return false. */
6955 bool
6956 commutative_ternary_tree_code (enum tree_code code)
6958 switch (code)
6960 case WIDEN_MULT_PLUS_EXPR:
6961 case WIDEN_MULT_MINUS_EXPR:
6962 case DOT_PROD_EXPR:
6963 case FMA_EXPR:
6964 return true;
6966 default:
6967 break;
6969 return false;
6972 /* Returns true if CODE can overflow. */
6974 bool
6975 operation_can_overflow (enum tree_code code)
6977 switch (code)
6979 case PLUS_EXPR:
6980 case MINUS_EXPR:
6981 case MULT_EXPR:
6982 case LSHIFT_EXPR:
6983 /* Can overflow in various ways. */
6984 return true;
6985 case TRUNC_DIV_EXPR:
6986 case EXACT_DIV_EXPR:
6987 case FLOOR_DIV_EXPR:
6988 case CEIL_DIV_EXPR:
6989 /* For INT_MIN / -1. */
6990 return true;
6991 case NEGATE_EXPR:
6992 case ABS_EXPR:
6993 /* For -INT_MIN. */
6994 return true;
6995 default:
6996 /* These operators cannot overflow. */
6997 return false;
7001 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7002 ftrapv doesn't generate trapping insns for CODE. */
7004 bool
7005 operation_no_trapping_overflow (tree type, enum tree_code code)
7007 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7009 /* We don't generate instructions that trap on overflow for complex or vector
7010 types. */
7011 if (!INTEGRAL_TYPE_P (type))
7012 return true;
7014 if (!TYPE_OVERFLOW_TRAPS (type))
7015 return true;
7017 switch (code)
7019 case PLUS_EXPR:
7020 case MINUS_EXPR:
7021 case MULT_EXPR:
7022 case NEGATE_EXPR:
7023 case ABS_EXPR:
7024 /* These operators can overflow, and -ftrapv generates trapping code for
7025 these. */
7026 return false;
7027 case TRUNC_DIV_EXPR:
7028 case EXACT_DIV_EXPR:
7029 case FLOOR_DIV_EXPR:
7030 case CEIL_DIV_EXPR:
7031 case LSHIFT_EXPR:
7032 /* These operators can overflow, but -ftrapv does not generate trapping
7033 code for these. */
7034 return true;
7035 default:
7036 /* These operators cannot overflow. */
7037 return true;
7041 namespace inchash
7044 /* Generate a hash value for an expression. This can be used iteratively
7045 by passing a previous result as the HSTATE argument.
7047 This function is intended to produce the same hash for expressions which
7048 would compare equal using operand_equal_p. */
7049 void
7050 add_expr (const_tree t, inchash::hash &hstate, unsigned int flags)
7052 int i;
7053 enum tree_code code;
7054 enum tree_code_class tclass;
7056 if (t == NULL_TREE || t == error_mark_node)
7058 hstate.merge_hash (0);
7059 return;
7062 if (!(flags & OEP_ADDRESS_OF))
7063 STRIP_NOPS (t);
7065 code = TREE_CODE (t);
7067 switch (code)
7069 /* Alas, constants aren't shared, so we can't rely on pointer
7070 identity. */
7071 case VOID_CST:
7072 hstate.merge_hash (0);
7073 return;
7074 case INTEGER_CST:
7075 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7076 for (i = 0; i < TREE_INT_CST_EXT_NUNITS (t); i++)
7077 hstate.add_hwi (TREE_INT_CST_ELT (t, i));
7078 return;
7079 case REAL_CST:
7081 unsigned int val2;
7082 if (!HONOR_SIGNED_ZEROS (t) && real_zerop (t))
7083 val2 = rvc_zero;
7084 else
7085 val2 = real_hash (TREE_REAL_CST_PTR (t));
7086 hstate.merge_hash (val2);
7087 return;
7089 case FIXED_CST:
7091 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7092 hstate.merge_hash (val2);
7093 return;
7095 case STRING_CST:
7096 hstate.add ((const void *) TREE_STRING_POINTER (t),
7097 TREE_STRING_LENGTH (t));
7098 return;
7099 case COMPLEX_CST:
7100 inchash::add_expr (TREE_REALPART (t), hstate, flags);
7101 inchash::add_expr (TREE_IMAGPART (t), hstate, flags);
7102 return;
7103 case VECTOR_CST:
7105 unsigned i;
7106 for (i = 0; i < VECTOR_CST_NELTS (t); ++i)
7107 inchash::add_expr (VECTOR_CST_ELT (t, i), hstate, flags);
7108 return;
7110 case SSA_NAME:
7111 /* We can just compare by pointer. */
7112 hstate.add_hwi (SSA_NAME_VERSION (t));
7113 return;
7114 case PLACEHOLDER_EXPR:
7115 /* The node itself doesn't matter. */
7116 return;
7117 case BLOCK:
7118 case OMP_CLAUSE:
7119 /* Ignore. */
7120 return;
7121 case TREE_LIST:
7122 /* A list of expressions, for a CALL_EXPR or as the elements of a
7123 VECTOR_CST. */
7124 for (; t; t = TREE_CHAIN (t))
7125 inchash::add_expr (TREE_VALUE (t), hstate, flags);
7126 return;
7127 case CONSTRUCTOR:
7129 unsigned HOST_WIDE_INT idx;
7130 tree field, value;
7131 flags &= ~OEP_ADDRESS_OF;
7132 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7134 inchash::add_expr (field, hstate, flags);
7135 inchash::add_expr (value, hstate, flags);
7137 return;
7139 case STATEMENT_LIST:
7141 tree_stmt_iterator i;
7142 for (i = tsi_start (CONST_CAST_TREE (t));
7143 !tsi_end_p (i); tsi_next (&i))
7144 inchash::add_expr (tsi_stmt (i), hstate, flags);
7145 return;
7147 case TREE_VEC:
7148 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
7149 inchash::add_expr (TREE_VEC_ELT (t, i), hstate, flags);
7150 return;
7151 case FUNCTION_DECL:
7152 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7153 Otherwise nodes that compare equal according to operand_equal_p might
7154 get different hash codes. However, don't do this for machine specific
7155 or front end builtins, since the function code is overloaded in those
7156 cases. */
7157 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7158 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7160 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7161 code = TREE_CODE (t);
7163 /* FALL THROUGH */
7164 default:
7165 tclass = TREE_CODE_CLASS (code);
7167 if (tclass == tcc_declaration)
7169 /* DECL's have a unique ID */
7170 hstate.add_hwi (DECL_UID (t));
7172 else if (tclass == tcc_comparison && !commutative_tree_code (code))
7174 /* For comparisons that can be swapped, use the lower
7175 tree code. */
7176 enum tree_code ccode = swap_tree_comparison (code);
7177 if (code < ccode)
7178 ccode = code;
7179 hstate.add_object (ccode);
7180 inchash::add_expr (TREE_OPERAND (t, ccode != code), hstate, flags);
7181 inchash::add_expr (TREE_OPERAND (t, ccode == code), hstate, flags);
7183 else if (CONVERT_EXPR_CODE_P (code))
7185 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7186 operand_equal_p. */
7187 enum tree_code ccode = NOP_EXPR;
7188 hstate.add_object (ccode);
7190 /* Don't hash the type, that can lead to having nodes which
7191 compare equal according to operand_equal_p, but which
7192 have different hash codes. Make sure to include signedness
7193 in the hash computation. */
7194 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7195 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7197 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7198 else if (code == MEM_REF
7199 && (flags & OEP_ADDRESS_OF) != 0
7200 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
7201 && DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
7202 && integer_zerop (TREE_OPERAND (t, 1)))
7203 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t, 0), 0),
7204 hstate, flags);
7205 /* Don't ICE on FE specific trees, or their arguments etc.
7206 during operand_equal_p hash verification. */
7207 else if (!IS_EXPR_CODE_CLASS (tclass))
7208 gcc_assert (flags & OEP_HASH_CHECK);
7209 else
7211 unsigned int sflags = flags;
7213 hstate.add_object (code);
7215 switch (code)
7217 case ADDR_EXPR:
7218 gcc_checking_assert (!(flags & OEP_ADDRESS_OF));
7219 flags |= OEP_ADDRESS_OF;
7220 sflags = flags;
7221 break;
7223 case INDIRECT_REF:
7224 case MEM_REF:
7225 case TARGET_MEM_REF:
7226 flags &= ~OEP_ADDRESS_OF;
7227 sflags = flags;
7228 break;
7230 case ARRAY_REF:
7231 case ARRAY_RANGE_REF:
7232 case COMPONENT_REF:
7233 case BIT_FIELD_REF:
7234 sflags &= ~OEP_ADDRESS_OF;
7235 break;
7237 case COND_EXPR:
7238 flags &= ~OEP_ADDRESS_OF;
7239 break;
7241 case FMA_EXPR:
7242 case WIDEN_MULT_PLUS_EXPR:
7243 case WIDEN_MULT_MINUS_EXPR:
7245 /* The multiplication operands are commutative. */
7246 inchash::hash one, two;
7247 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7248 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7249 hstate.add_commutative (one, two);
7250 inchash::add_expr (TREE_OPERAND (t, 2), two, flags);
7251 return;
7254 case CALL_EXPR:
7255 if (CALL_EXPR_FN (t) == NULL_TREE)
7256 hstate.add_int (CALL_EXPR_IFN (t));
7257 break;
7259 case TARGET_EXPR:
7260 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7261 Usually different TARGET_EXPRs just should use
7262 different temporaries in their slots. */
7263 inchash::add_expr (TARGET_EXPR_SLOT (t), hstate, flags);
7264 return;
7266 default:
7267 break;
7270 /* Don't hash the type, that can lead to having nodes which
7271 compare equal according to operand_equal_p, but which
7272 have different hash codes. */
7273 if (code == NON_LVALUE_EXPR)
7275 /* Make sure to include signness in the hash computation. */
7276 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7277 inchash::add_expr (TREE_OPERAND (t, 0), hstate, flags);
7280 else if (commutative_tree_code (code))
7282 /* It's a commutative expression. We want to hash it the same
7283 however it appears. We do this by first hashing both operands
7284 and then rehashing based on the order of their independent
7285 hashes. */
7286 inchash::hash one, two;
7287 inchash::add_expr (TREE_OPERAND (t, 0), one, flags);
7288 inchash::add_expr (TREE_OPERAND (t, 1), two, flags);
7289 hstate.add_commutative (one, two);
7291 else
7292 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7293 inchash::add_expr (TREE_OPERAND (t, i), hstate,
7294 i == 0 ? flags : sflags);
7296 return;
7302 /* Constructors for pointer, array and function types.
7303 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7304 constructed by language-dependent code, not here.) */
7306 /* Construct, lay out and return the type of pointers to TO_TYPE with
7307 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7308 reference all of memory. If such a type has already been
7309 constructed, reuse it. */
7311 tree
7312 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7313 bool can_alias_all)
7315 tree t;
7316 bool could_alias = can_alias_all;
7318 if (to_type == error_mark_node)
7319 return error_mark_node;
7321 /* If the pointed-to type has the may_alias attribute set, force
7322 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7323 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7324 can_alias_all = true;
7326 /* In some cases, languages will have things that aren't a POINTER_TYPE
7327 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7328 In that case, return that type without regard to the rest of our
7329 operands.
7331 ??? This is a kludge, but consistent with the way this function has
7332 always operated and there doesn't seem to be a good way to avoid this
7333 at the moment. */
7334 if (TYPE_POINTER_TO (to_type) != 0
7335 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7336 return TYPE_POINTER_TO (to_type);
7338 /* First, if we already have a type for pointers to TO_TYPE and it's
7339 the proper mode, use it. */
7340 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7341 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7342 return t;
7344 t = make_node (POINTER_TYPE);
7346 TREE_TYPE (t) = to_type;
7347 SET_TYPE_MODE (t, mode);
7348 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7349 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7350 TYPE_POINTER_TO (to_type) = t;
7352 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7353 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7354 SET_TYPE_STRUCTURAL_EQUALITY (t);
7355 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7356 TYPE_CANONICAL (t)
7357 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7358 mode, false);
7360 /* Lay out the type. This function has many callers that are concerned
7361 with expression-construction, and this simplifies them all. */
7362 layout_type (t);
7364 return t;
7367 /* By default build pointers in ptr_mode. */
7369 tree
7370 build_pointer_type (tree to_type)
7372 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7373 : TYPE_ADDR_SPACE (to_type);
7374 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7375 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7378 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7380 tree
7381 build_reference_type_for_mode (tree to_type, machine_mode mode,
7382 bool can_alias_all)
7384 tree t;
7385 bool could_alias = can_alias_all;
7387 if (to_type == error_mark_node)
7388 return error_mark_node;
7390 /* If the pointed-to type has the may_alias attribute set, force
7391 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7392 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7393 can_alias_all = true;
7395 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7396 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7397 In that case, return that type without regard to the rest of our
7398 operands.
7400 ??? This is a kludge, but consistent with the way this function has
7401 always operated and there doesn't seem to be a good way to avoid this
7402 at the moment. */
7403 if (TYPE_REFERENCE_TO (to_type) != 0
7404 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7405 return TYPE_REFERENCE_TO (to_type);
7407 /* First, if we already have a type for pointers to TO_TYPE and it's
7408 the proper mode, use it. */
7409 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7410 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7411 return t;
7413 t = make_node (REFERENCE_TYPE);
7415 TREE_TYPE (t) = to_type;
7416 SET_TYPE_MODE (t, mode);
7417 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7418 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7419 TYPE_REFERENCE_TO (to_type) = t;
7421 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7422 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7423 SET_TYPE_STRUCTURAL_EQUALITY (t);
7424 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7425 TYPE_CANONICAL (t)
7426 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7427 mode, false);
7429 layout_type (t);
7431 return t;
7435 /* Build the node for the type of references-to-TO_TYPE by default
7436 in ptr_mode. */
7438 tree
7439 build_reference_type (tree to_type)
7441 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7442 : TYPE_ADDR_SPACE (to_type);
7443 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7444 return build_reference_type_for_mode (to_type, pointer_mode, false);
7447 #define MAX_INT_CACHED_PREC \
7448 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7449 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7451 /* Builds a signed or unsigned integer type of precision PRECISION.
7452 Used for C bitfields whose precision does not match that of
7453 built-in target types. */
7454 tree
7455 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7456 int unsignedp)
7458 tree itype, ret;
7460 if (unsignedp)
7461 unsignedp = MAX_INT_CACHED_PREC + 1;
7463 if (precision <= MAX_INT_CACHED_PREC)
7465 itype = nonstandard_integer_type_cache[precision + unsignedp];
7466 if (itype)
7467 return itype;
7470 itype = make_node (INTEGER_TYPE);
7471 TYPE_PRECISION (itype) = precision;
7473 if (unsignedp)
7474 fixup_unsigned_type (itype);
7475 else
7476 fixup_signed_type (itype);
7478 ret = itype;
7480 inchash::hash hstate;
7481 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
7482 ret = type_hash_canon (hstate.end (), itype);
7483 if (precision <= MAX_INT_CACHED_PREC)
7484 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7486 return ret;
7489 #define MAX_BOOL_CACHED_PREC \
7490 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7491 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
7493 /* Builds a boolean type of precision PRECISION.
7494 Used for boolean vectors to choose proper vector element size. */
7495 tree
7496 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
7498 tree type;
7500 if (precision <= MAX_BOOL_CACHED_PREC)
7502 type = nonstandard_boolean_type_cache[precision];
7503 if (type)
7504 return type;
7507 type = make_node (BOOLEAN_TYPE);
7508 TYPE_PRECISION (type) = precision;
7509 fixup_signed_type (type);
7511 if (precision <= MAX_INT_CACHED_PREC)
7512 nonstandard_boolean_type_cache[precision] = type;
7514 return type;
7517 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7518 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7519 is true, reuse such a type that has already been constructed. */
7521 static tree
7522 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7524 tree itype = make_node (INTEGER_TYPE);
7526 TREE_TYPE (itype) = type;
7528 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7529 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7531 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7532 SET_TYPE_MODE (itype, TYPE_MODE (type));
7533 TYPE_SIZE (itype) = TYPE_SIZE (type);
7534 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7535 SET_TYPE_ALIGN (itype, TYPE_ALIGN (type));
7536 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7537 SET_TYPE_WARN_IF_NOT_ALIGN (itype, TYPE_WARN_IF_NOT_ALIGN (type));
7539 if (!shared)
7540 return itype;
7542 if ((TYPE_MIN_VALUE (itype)
7543 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7544 || (TYPE_MAX_VALUE (itype)
7545 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7547 /* Since we cannot reliably merge this type, we need to compare it using
7548 structural equality checks. */
7549 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7550 return itype;
7553 hashval_t hash = type_hash_canon_hash (itype);
7554 itype = type_hash_canon (hash, itype);
7556 return itype;
7559 /* Wrapper around build_range_type_1 with SHARED set to true. */
7561 tree
7562 build_range_type (tree type, tree lowval, tree highval)
7564 return build_range_type_1 (type, lowval, highval, true);
7567 /* Wrapper around build_range_type_1 with SHARED set to false. */
7569 tree
7570 build_nonshared_range_type (tree type, tree lowval, tree highval)
7572 return build_range_type_1 (type, lowval, highval, false);
7575 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7576 MAXVAL should be the maximum value in the domain
7577 (one less than the length of the array).
7579 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7580 We don't enforce this limit, that is up to caller (e.g. language front end).
7581 The limit exists because the result is a signed type and we don't handle
7582 sizes that use more than one HOST_WIDE_INT. */
7584 tree
7585 build_index_type (tree maxval)
7587 return build_range_type (sizetype, size_zero_node, maxval);
7590 /* Return true if the debug information for TYPE, a subtype, should be emitted
7591 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7592 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7593 debug info and doesn't reflect the source code. */
7595 bool
7596 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7598 tree base_type = TREE_TYPE (type), low, high;
7600 /* Subrange types have a base type which is an integral type. */
7601 if (!INTEGRAL_TYPE_P (base_type))
7602 return false;
7604 /* Get the real bounds of the subtype. */
7605 if (lang_hooks.types.get_subrange_bounds)
7606 lang_hooks.types.get_subrange_bounds (type, &low, &high);
7607 else
7609 low = TYPE_MIN_VALUE (type);
7610 high = TYPE_MAX_VALUE (type);
7613 /* If the type and its base type have the same representation and the same
7614 name, then the type is not a subrange but a copy of the base type. */
7615 if ((TREE_CODE (base_type) == INTEGER_TYPE
7616 || TREE_CODE (base_type) == BOOLEAN_TYPE)
7617 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7618 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7619 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
7620 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
7621 return false;
7623 if (lowval)
7624 *lowval = low;
7625 if (highval)
7626 *highval = high;
7627 return true;
7630 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7631 and number of elements specified by the range of values of INDEX_TYPE.
7632 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
7633 If SHARED is true, reuse such a type that has already been constructed. */
7635 static tree
7636 build_array_type_1 (tree elt_type, tree index_type, bool typeless_storage,
7637 bool shared)
7639 tree t;
7641 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7643 error ("arrays of functions are not meaningful");
7644 elt_type = integer_type_node;
7647 t = make_node (ARRAY_TYPE);
7648 TREE_TYPE (t) = elt_type;
7649 TYPE_DOMAIN (t) = index_type;
7650 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7651 TYPE_TYPELESS_STORAGE (t) = typeless_storage;
7652 layout_type (t);
7654 /* If the element type is incomplete at this point we get marked for
7655 structural equality. Do not record these types in the canonical
7656 type hashtable. */
7657 if (TYPE_STRUCTURAL_EQUALITY_P (t))
7658 return t;
7660 if (shared)
7662 hashval_t hash = type_hash_canon_hash (t);
7663 t = type_hash_canon (hash, t);
7666 if (TYPE_CANONICAL (t) == t)
7668 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7669 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
7670 || in_lto_p)
7671 SET_TYPE_STRUCTURAL_EQUALITY (t);
7672 else if (TYPE_CANONICAL (elt_type) != elt_type
7673 || (index_type && TYPE_CANONICAL (index_type) != index_type))
7674 TYPE_CANONICAL (t)
7675 = build_array_type_1 (TYPE_CANONICAL (elt_type),
7676 index_type
7677 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7678 typeless_storage, shared);
7681 return t;
7684 /* Wrapper around build_array_type_1 with SHARED set to true. */
7686 tree
7687 build_array_type (tree elt_type, tree index_type, bool typeless_storage)
7689 return build_array_type_1 (elt_type, index_type, typeless_storage, true);
7692 /* Wrapper around build_array_type_1 with SHARED set to false. */
7694 tree
7695 build_nonshared_array_type (tree elt_type, tree index_type)
7697 return build_array_type_1 (elt_type, index_type, false, false);
7700 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7701 sizetype. */
7703 tree
7704 build_array_type_nelts (tree elt_type, unsigned HOST_WIDE_INT nelts)
7706 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7709 /* Recursively examines the array elements of TYPE, until a non-array
7710 element type is found. */
7712 tree
7713 strip_array_types (tree type)
7715 while (TREE_CODE (type) == ARRAY_TYPE)
7716 type = TREE_TYPE (type);
7718 return type;
7721 /* Computes the canonical argument types from the argument type list
7722 ARGTYPES.
7724 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7725 on entry to this function, or if any of the ARGTYPES are
7726 structural.
7728 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7729 true on entry to this function, or if any of the ARGTYPES are
7730 non-canonical.
7732 Returns a canonical argument list, which may be ARGTYPES when the
7733 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7734 true) or would not differ from ARGTYPES. */
7736 static tree
7737 maybe_canonicalize_argtypes (tree argtypes,
7738 bool *any_structural_p,
7739 bool *any_noncanonical_p)
7741 tree arg;
7742 bool any_noncanonical_argtypes_p = false;
7744 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7746 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7747 /* Fail gracefully by stating that the type is structural. */
7748 *any_structural_p = true;
7749 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7750 *any_structural_p = true;
7751 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7752 || TREE_PURPOSE (arg))
7753 /* If the argument has a default argument, we consider it
7754 non-canonical even though the type itself is canonical.
7755 That way, different variants of function and method types
7756 with default arguments will all point to the variant with
7757 no defaults as their canonical type. */
7758 any_noncanonical_argtypes_p = true;
7761 if (*any_structural_p)
7762 return argtypes;
7764 if (any_noncanonical_argtypes_p)
7766 /* Build the canonical list of argument types. */
7767 tree canon_argtypes = NULL_TREE;
7768 bool is_void = false;
7770 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7772 if (arg == void_list_node)
7773 is_void = true;
7774 else
7775 canon_argtypes = tree_cons (NULL_TREE,
7776 TYPE_CANONICAL (TREE_VALUE (arg)),
7777 canon_argtypes);
7780 canon_argtypes = nreverse (canon_argtypes);
7781 if (is_void)
7782 canon_argtypes = chainon (canon_argtypes, void_list_node);
7784 /* There is a non-canonical type. */
7785 *any_noncanonical_p = true;
7786 return canon_argtypes;
7789 /* The canonical argument types are the same as ARGTYPES. */
7790 return argtypes;
7793 /* Construct, lay out and return
7794 the type of functions returning type VALUE_TYPE
7795 given arguments of types ARG_TYPES.
7796 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7797 are data type nodes for the arguments of the function.
7798 If such a type has already been constructed, reuse it. */
7800 tree
7801 build_function_type (tree value_type, tree arg_types)
7803 tree t;
7804 inchash::hash hstate;
7805 bool any_structural_p, any_noncanonical_p;
7806 tree canon_argtypes;
7808 if (TREE_CODE (value_type) == FUNCTION_TYPE)
7810 error ("function return type cannot be function");
7811 value_type = integer_type_node;
7814 /* Make a node of the sort we want. */
7815 t = make_node (FUNCTION_TYPE);
7816 TREE_TYPE (t) = value_type;
7817 TYPE_ARG_TYPES (t) = arg_types;
7819 /* If we already have such a type, use the old one. */
7820 hashval_t hash = type_hash_canon_hash (t);
7821 t = type_hash_canon (hash, t);
7823 /* Set up the canonical type. */
7824 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
7825 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
7826 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
7827 &any_structural_p,
7828 &any_noncanonical_p);
7829 if (any_structural_p)
7830 SET_TYPE_STRUCTURAL_EQUALITY (t);
7831 else if (any_noncanonical_p)
7832 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
7833 canon_argtypes);
7835 if (!COMPLETE_TYPE_P (t))
7836 layout_type (t);
7837 return t;
7840 /* Build a function type. The RETURN_TYPE is the type returned by the
7841 function. If VAARGS is set, no void_type_node is appended to the
7842 list. ARGP must be always be terminated be a NULL_TREE. */
7844 static tree
7845 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
7847 tree t, args, last;
7849 t = va_arg (argp, tree);
7850 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
7851 args = tree_cons (NULL_TREE, t, args);
7853 if (vaargs)
7855 last = args;
7856 if (args != NULL_TREE)
7857 args = nreverse (args);
7858 gcc_assert (last != void_list_node);
7860 else if (args == NULL_TREE)
7861 args = void_list_node;
7862 else
7864 last = args;
7865 args = nreverse (args);
7866 TREE_CHAIN (last) = void_list_node;
7868 args = build_function_type (return_type, args);
7870 return args;
7873 /* Build a function type. The RETURN_TYPE is the type returned by the
7874 function. If additional arguments are provided, they are
7875 additional argument types. The list of argument types must always
7876 be terminated by NULL_TREE. */
7878 tree
7879 build_function_type_list (tree return_type, ...)
7881 tree args;
7882 va_list p;
7884 va_start (p, return_type);
7885 args = build_function_type_list_1 (false, return_type, p);
7886 va_end (p);
7887 return args;
7890 /* Build a variable argument function type. The RETURN_TYPE is the
7891 type returned by the function. If additional arguments are provided,
7892 they are additional argument types. The list of argument types must
7893 always be terminated by NULL_TREE. */
7895 tree
7896 build_varargs_function_type_list (tree return_type, ...)
7898 tree args;
7899 va_list p;
7901 va_start (p, return_type);
7902 args = build_function_type_list_1 (true, return_type, p);
7903 va_end (p);
7905 return args;
7908 /* Build a function type. RETURN_TYPE is the type returned by the
7909 function; VAARGS indicates whether the function takes varargs. The
7910 function takes N named arguments, the types of which are provided in
7911 ARG_TYPES. */
7913 static tree
7914 build_function_type_array_1 (bool vaargs, tree return_type, int n,
7915 tree *arg_types)
7917 int i;
7918 tree t = vaargs ? NULL_TREE : void_list_node;
7920 for (i = n - 1; i >= 0; i--)
7921 t = tree_cons (NULL_TREE, arg_types[i], t);
7923 return build_function_type (return_type, t);
7926 /* Build a function type. RETURN_TYPE is the type returned by the
7927 function. The function takes N named arguments, the types of which
7928 are provided in ARG_TYPES. */
7930 tree
7931 build_function_type_array (tree return_type, int n, tree *arg_types)
7933 return build_function_type_array_1 (false, return_type, n, arg_types);
7936 /* Build a variable argument function type. RETURN_TYPE is the type
7937 returned by the function. The function takes N named arguments, the
7938 types of which are provided in ARG_TYPES. */
7940 tree
7941 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
7943 return build_function_type_array_1 (true, return_type, n, arg_types);
7946 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7947 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7948 for the method. An implicit additional parameter (of type
7949 pointer-to-BASETYPE) is added to the ARGTYPES. */
7951 tree
7952 build_method_type_directly (tree basetype,
7953 tree rettype,
7954 tree argtypes)
7956 tree t;
7957 tree ptype;
7958 bool any_structural_p, any_noncanonical_p;
7959 tree canon_argtypes;
7961 /* Make a node of the sort we want. */
7962 t = make_node (METHOD_TYPE);
7964 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7965 TREE_TYPE (t) = rettype;
7966 ptype = build_pointer_type (basetype);
7968 /* The actual arglist for this function includes a "hidden" argument
7969 which is "this". Put it into the list of argument types. */
7970 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7971 TYPE_ARG_TYPES (t) = argtypes;
7973 /* If we already have such a type, use the old one. */
7974 hashval_t hash = type_hash_canon_hash (t);
7975 t = type_hash_canon (hash, t);
7977 /* Set up the canonical type. */
7978 any_structural_p
7979 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7980 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
7981 any_noncanonical_p
7982 = (TYPE_CANONICAL (basetype) != basetype
7983 || TYPE_CANONICAL (rettype) != rettype);
7984 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
7985 &any_structural_p,
7986 &any_noncanonical_p);
7987 if (any_structural_p)
7988 SET_TYPE_STRUCTURAL_EQUALITY (t);
7989 else if (any_noncanonical_p)
7990 TYPE_CANONICAL (t)
7991 = build_method_type_directly (TYPE_CANONICAL (basetype),
7992 TYPE_CANONICAL (rettype),
7993 canon_argtypes);
7994 if (!COMPLETE_TYPE_P (t))
7995 layout_type (t);
7997 return t;
8000 /* Construct, lay out and return the type of methods belonging to class
8001 BASETYPE and whose arguments and values are described by TYPE.
8002 If that type exists already, reuse it.
8003 TYPE must be a FUNCTION_TYPE node. */
8005 tree
8006 build_method_type (tree basetype, tree type)
8008 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8010 return build_method_type_directly (basetype,
8011 TREE_TYPE (type),
8012 TYPE_ARG_TYPES (type));
8015 /* Construct, lay out and return the type of offsets to a value
8016 of type TYPE, within an object of type BASETYPE.
8017 If a suitable offset type exists already, reuse it. */
8019 tree
8020 build_offset_type (tree basetype, tree type)
8022 tree t;
8024 /* Make a node of the sort we want. */
8025 t = make_node (OFFSET_TYPE);
8027 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8028 TREE_TYPE (t) = type;
8030 /* If we already have such a type, use the old one. */
8031 hashval_t hash = type_hash_canon_hash (t);
8032 t = type_hash_canon (hash, t);
8034 if (!COMPLETE_TYPE_P (t))
8035 layout_type (t);
8037 if (TYPE_CANONICAL (t) == t)
8039 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8040 || TYPE_STRUCTURAL_EQUALITY_P (type))
8041 SET_TYPE_STRUCTURAL_EQUALITY (t);
8042 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8043 || TYPE_CANONICAL (type) != type)
8044 TYPE_CANONICAL (t)
8045 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8046 TYPE_CANONICAL (type));
8049 return t;
8052 /* Create a complex type whose components are COMPONENT_TYPE.
8054 If NAMED is true, the type is given a TYPE_NAME. We do not always
8055 do so because this creates a DECL node and thus make the DECL_UIDs
8056 dependent on the type canonicalization hashtable, which is GC-ed,
8057 so the DECL_UIDs would not be stable wrt garbage collection. */
8059 tree
8060 build_complex_type (tree component_type, bool named)
8062 gcc_assert (INTEGRAL_TYPE_P (component_type)
8063 || SCALAR_FLOAT_TYPE_P (component_type)
8064 || FIXED_POINT_TYPE_P (component_type));
8066 /* Make a node of the sort we want. */
8067 tree probe = make_node (COMPLEX_TYPE);
8069 TREE_TYPE (probe) = TYPE_MAIN_VARIANT (component_type);
8071 /* If we already have such a type, use the old one. */
8072 hashval_t hash = type_hash_canon_hash (probe);
8073 tree t = type_hash_canon (hash, probe);
8075 if (t == probe)
8077 /* We created a new type. The hash insertion will have laid
8078 out the type. We need to check the canonicalization and
8079 maybe set the name. */
8080 gcc_checking_assert (COMPLETE_TYPE_P (t)
8081 && !TYPE_NAME (t)
8082 && TYPE_CANONICAL (t) == t);
8084 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t)))
8085 SET_TYPE_STRUCTURAL_EQUALITY (t);
8086 else if (TYPE_CANONICAL (TREE_TYPE (t)) != TREE_TYPE (t))
8087 TYPE_CANONICAL (t)
8088 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t)), named);
8090 /* We need to create a name, since complex is a fundamental type. */
8091 if (named)
8093 const char *name = NULL;
8095 if (TREE_TYPE (t) == char_type_node)
8096 name = "complex char";
8097 else if (TREE_TYPE (t) == signed_char_type_node)
8098 name = "complex signed char";
8099 else if (TREE_TYPE (t) == unsigned_char_type_node)
8100 name = "complex unsigned char";
8101 else if (TREE_TYPE (t) == short_integer_type_node)
8102 name = "complex short int";
8103 else if (TREE_TYPE (t) == short_unsigned_type_node)
8104 name = "complex short unsigned int";
8105 else if (TREE_TYPE (t) == integer_type_node)
8106 name = "complex int";
8107 else if (TREE_TYPE (t) == unsigned_type_node)
8108 name = "complex unsigned int";
8109 else if (TREE_TYPE (t) == long_integer_type_node)
8110 name = "complex long int";
8111 else if (TREE_TYPE (t) == long_unsigned_type_node)
8112 name = "complex long unsigned int";
8113 else if (TREE_TYPE (t) == long_long_integer_type_node)
8114 name = "complex long long int";
8115 else if (TREE_TYPE (t) == long_long_unsigned_type_node)
8116 name = "complex long long unsigned int";
8118 if (name != NULL)
8119 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8120 get_identifier (name), t);
8124 return build_qualified_type (t, TYPE_QUALS (component_type));
8127 /* If TYPE is a real or complex floating-point type and the target
8128 does not directly support arithmetic on TYPE then return the wider
8129 type to be used for arithmetic on TYPE. Otherwise, return
8130 NULL_TREE. */
8132 tree
8133 excess_precision_type (tree type)
8135 /* The target can give two different responses to the question of
8136 which excess precision mode it would like depending on whether we
8137 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8139 enum excess_precision_type requested_type
8140 = (flag_excess_precision == EXCESS_PRECISION_FAST
8141 ? EXCESS_PRECISION_TYPE_FAST
8142 : EXCESS_PRECISION_TYPE_STANDARD);
8144 enum flt_eval_method target_flt_eval_method
8145 = targetm.c.excess_precision (requested_type);
8147 /* The target should not ask for unpredictable float evaluation (though
8148 it might advertise that implicitly the evaluation is unpredictable,
8149 but we don't care about that here, it will have been reported
8150 elsewhere). If it does ask for unpredictable evaluation, we have
8151 nothing to do here. */
8152 gcc_assert (target_flt_eval_method != FLT_EVAL_METHOD_UNPREDICTABLE);
8154 /* Nothing to do. The target has asked for all types we know about
8155 to be computed with their native precision and range. */
8156 if (target_flt_eval_method == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
8157 return NULL_TREE;
8159 /* The target will promote this type in a target-dependent way, so excess
8160 precision ought to leave it alone. */
8161 if (targetm.promoted_type (type) != NULL_TREE)
8162 return NULL_TREE;
8164 machine_mode float16_type_mode = (float16_type_node
8165 ? TYPE_MODE (float16_type_node)
8166 : VOIDmode);
8167 machine_mode float_type_mode = TYPE_MODE (float_type_node);
8168 machine_mode double_type_mode = TYPE_MODE (double_type_node);
8170 switch (TREE_CODE (type))
8172 case REAL_TYPE:
8174 machine_mode type_mode = TYPE_MODE (type);
8175 switch (target_flt_eval_method)
8177 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8178 if (type_mode == float16_type_mode)
8179 return float_type_node;
8180 break;
8181 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8182 if (type_mode == float16_type_mode
8183 || type_mode == float_type_mode)
8184 return double_type_node;
8185 break;
8186 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8187 if (type_mode == float16_type_mode
8188 || type_mode == float_type_mode
8189 || type_mode == double_type_mode)
8190 return long_double_type_node;
8191 break;
8192 default:
8193 gcc_unreachable ();
8195 break;
8197 case COMPLEX_TYPE:
8199 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8200 return NULL_TREE;
8201 machine_mode type_mode = TYPE_MODE (TREE_TYPE (type));
8202 switch (target_flt_eval_method)
8204 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
8205 if (type_mode == float16_type_mode)
8206 return complex_float_type_node;
8207 break;
8208 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
8209 if (type_mode == float16_type_mode
8210 || type_mode == float_type_mode)
8211 return complex_double_type_node;
8212 break;
8213 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
8214 if (type_mode == float16_type_mode
8215 || type_mode == float_type_mode
8216 || type_mode == double_type_mode)
8217 return complex_long_double_type_node;
8218 break;
8219 default:
8220 gcc_unreachable ();
8222 break;
8224 default:
8225 break;
8228 return NULL_TREE;
8231 /* Return OP, stripped of any conversions to wider types as much as is safe.
8232 Converting the value back to OP's type makes a value equivalent to OP.
8234 If FOR_TYPE is nonzero, we return a value which, if converted to
8235 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8237 OP must have integer, real or enumeral type. Pointers are not allowed!
8239 There are some cases where the obvious value we could return
8240 would regenerate to OP if converted to OP's type,
8241 but would not extend like OP to wider types.
8242 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8243 For example, if OP is (unsigned short)(signed char)-1,
8244 we avoid returning (signed char)-1 if FOR_TYPE is int,
8245 even though extending that to an unsigned short would regenerate OP,
8246 since the result of extending (signed char)-1 to (int)
8247 is different from (int) OP. */
8249 tree
8250 get_unwidened (tree op, tree for_type)
8252 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8253 tree type = TREE_TYPE (op);
8254 unsigned final_prec
8255 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8256 int uns
8257 = (for_type != 0 && for_type != type
8258 && final_prec > TYPE_PRECISION (type)
8259 && TYPE_UNSIGNED (type));
8260 tree win = op;
8262 while (CONVERT_EXPR_P (op))
8264 int bitschange;
8266 /* TYPE_PRECISION on vector types has different meaning
8267 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8268 so avoid them here. */
8269 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8270 break;
8272 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8273 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8275 /* Truncations are many-one so cannot be removed.
8276 Unless we are later going to truncate down even farther. */
8277 if (bitschange < 0
8278 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8279 break;
8281 /* See what's inside this conversion. If we decide to strip it,
8282 we will set WIN. */
8283 op = TREE_OPERAND (op, 0);
8285 /* If we have not stripped any zero-extensions (uns is 0),
8286 we can strip any kind of extension.
8287 If we have previously stripped a zero-extension,
8288 only zero-extensions can safely be stripped.
8289 Any extension can be stripped if the bits it would produce
8290 are all going to be discarded later by truncating to FOR_TYPE. */
8292 if (bitschange > 0)
8294 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8295 win = op;
8296 /* TYPE_UNSIGNED says whether this is a zero-extension.
8297 Let's avoid computing it if it does not affect WIN
8298 and if UNS will not be needed again. */
8299 if ((uns
8300 || CONVERT_EXPR_P (op))
8301 && TYPE_UNSIGNED (TREE_TYPE (op)))
8303 uns = 1;
8304 win = op;
8309 /* If we finally reach a constant see if it fits in sth smaller and
8310 in that case convert it. */
8311 if (TREE_CODE (win) == INTEGER_CST)
8313 tree wtype = TREE_TYPE (win);
8314 unsigned prec = wi::min_precision (wi::to_wide (win), TYPE_SIGN (wtype));
8315 if (for_type)
8316 prec = MAX (prec, final_prec);
8317 if (prec < TYPE_PRECISION (wtype))
8319 tree t = lang_hooks.types.type_for_size (prec, TYPE_UNSIGNED (wtype));
8320 if (t && TYPE_PRECISION (t) < TYPE_PRECISION (wtype))
8321 win = fold_convert (t, win);
8325 return win;
8328 /* Return OP or a simpler expression for a narrower value
8329 which can be sign-extended or zero-extended to give back OP.
8330 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8331 or 0 if the value should be sign-extended. */
8333 tree
8334 get_narrower (tree op, int *unsignedp_ptr)
8336 int uns = 0;
8337 int first = 1;
8338 tree win = op;
8339 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8341 while (TREE_CODE (op) == NOP_EXPR)
8343 int bitschange
8344 = (TYPE_PRECISION (TREE_TYPE (op))
8345 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8347 /* Truncations are many-one so cannot be removed. */
8348 if (bitschange < 0)
8349 break;
8351 /* See what's inside this conversion. If we decide to strip it,
8352 we will set WIN. */
8354 if (bitschange > 0)
8356 op = TREE_OPERAND (op, 0);
8357 /* An extension: the outermost one can be stripped,
8358 but remember whether it is zero or sign extension. */
8359 if (first)
8360 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8361 /* Otherwise, if a sign extension has been stripped,
8362 only sign extensions can now be stripped;
8363 if a zero extension has been stripped, only zero-extensions. */
8364 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8365 break;
8366 first = 0;
8368 else /* bitschange == 0 */
8370 /* A change in nominal type can always be stripped, but we must
8371 preserve the unsignedness. */
8372 if (first)
8373 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8374 first = 0;
8375 op = TREE_OPERAND (op, 0);
8376 /* Keep trying to narrow, but don't assign op to win if it
8377 would turn an integral type into something else. */
8378 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8379 continue;
8382 win = op;
8385 if (TREE_CODE (op) == COMPONENT_REF
8386 /* Since type_for_size always gives an integer type. */
8387 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8388 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8389 /* Ensure field is laid out already. */
8390 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8391 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8393 unsigned HOST_WIDE_INT innerprec
8394 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8395 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8396 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8397 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8399 /* We can get this structure field in a narrower type that fits it,
8400 but the resulting extension to its nominal type (a fullword type)
8401 must satisfy the same conditions as for other extensions.
8403 Do this only for fields that are aligned (not bit-fields),
8404 because when bit-field insns will be used there is no
8405 advantage in doing this. */
8407 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8408 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8409 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8410 && type != 0)
8412 if (first)
8413 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8414 win = fold_convert (type, op);
8418 *unsignedp_ptr = uns;
8419 return win;
8422 /* Return true if integer constant C has a value that is permissible
8423 for TYPE, an integral type. */
8425 bool
8426 int_fits_type_p (const_tree c, const_tree type)
8428 tree type_low_bound, type_high_bound;
8429 bool ok_for_low_bound, ok_for_high_bound;
8430 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8432 /* Non-standard boolean types can have arbitrary precision but various
8433 transformations assume that they can only take values 0 and +/-1. */
8434 if (TREE_CODE (type) == BOOLEAN_TYPE)
8435 return wi::fits_to_boolean_p (wi::to_wide (c), type);
8437 retry:
8438 type_low_bound = TYPE_MIN_VALUE (type);
8439 type_high_bound = TYPE_MAX_VALUE (type);
8441 /* If at least one bound of the type is a constant integer, we can check
8442 ourselves and maybe make a decision. If no such decision is possible, but
8443 this type is a subtype, try checking against that. Otherwise, use
8444 fits_to_tree_p, which checks against the precision.
8446 Compute the status for each possibly constant bound, and return if we see
8447 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8448 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8449 for "constant known to fit". */
8451 /* Check if c >= type_low_bound. */
8452 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8454 if (tree_int_cst_lt (c, type_low_bound))
8455 return false;
8456 ok_for_low_bound = true;
8458 else
8459 ok_for_low_bound = false;
8461 /* Check if c <= type_high_bound. */
8462 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8464 if (tree_int_cst_lt (type_high_bound, c))
8465 return false;
8466 ok_for_high_bound = true;
8468 else
8469 ok_for_high_bound = false;
8471 /* If the constant fits both bounds, the result is known. */
8472 if (ok_for_low_bound && ok_for_high_bound)
8473 return true;
8475 /* Perform some generic filtering which may allow making a decision
8476 even if the bounds are not constant. First, negative integers
8477 never fit in unsigned types, */
8478 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (wi::to_wide (c)))
8479 return false;
8481 /* Second, narrower types always fit in wider ones. */
8482 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8483 return true;
8485 /* Third, unsigned integers with top bit set never fit signed types. */
8486 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8488 int prec = GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c))) - 1;
8489 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8491 /* When a tree_cst is converted to a wide-int, the precision
8492 is taken from the type. However, if the precision of the
8493 mode underneath the type is smaller than that, it is
8494 possible that the value will not fit. The test below
8495 fails if any bit is set between the sign bit of the
8496 underlying mode and the top bit of the type. */
8497 if (wi::zext (wi::to_wide (c), prec - 1) != wi::to_wide (c))
8498 return false;
8500 else if (wi::neg_p (wi::to_wide (c)))
8501 return false;
8504 /* If we haven't been able to decide at this point, there nothing more we
8505 can check ourselves here. Look at the base type if we have one and it
8506 has the same precision. */
8507 if (TREE_CODE (type) == INTEGER_TYPE
8508 && TREE_TYPE (type) != 0
8509 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8511 type = TREE_TYPE (type);
8512 goto retry;
8515 /* Or to fits_to_tree_p, if nothing else. */
8516 return wi::fits_to_tree_p (wi::to_wide (c), type);
8519 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8520 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8521 represented (assuming two's-complement arithmetic) within the bit
8522 precision of the type are returned instead. */
8524 void
8525 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8527 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8528 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8529 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type)), min, TYPE_SIGN (type));
8530 else
8532 if (TYPE_UNSIGNED (type))
8533 mpz_set_ui (min, 0);
8534 else
8536 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8537 wi::to_mpz (mn, min, SIGNED);
8541 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8542 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8543 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type)), max, TYPE_SIGN (type));
8544 else
8546 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8547 wi::to_mpz (mn, max, TYPE_SIGN (type));
8551 /* Return true if VAR is an automatic variable defined in function FN. */
8553 bool
8554 auto_var_in_fn_p (const_tree var, const_tree fn)
8556 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8557 && ((((VAR_P (var) && ! DECL_EXTERNAL (var))
8558 || TREE_CODE (var) == PARM_DECL)
8559 && ! TREE_STATIC (var))
8560 || TREE_CODE (var) == LABEL_DECL
8561 || TREE_CODE (var) == RESULT_DECL));
8564 /* Subprogram of following function. Called by walk_tree.
8566 Return *TP if it is an automatic variable or parameter of the
8567 function passed in as DATA. */
8569 static tree
8570 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8572 tree fn = (tree) data;
8574 if (TYPE_P (*tp))
8575 *walk_subtrees = 0;
8577 else if (DECL_P (*tp)
8578 && auto_var_in_fn_p (*tp, fn))
8579 return *tp;
8581 return NULL_TREE;
8584 /* Returns true if T is, contains, or refers to a type with variable
8585 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8586 arguments, but not the return type. If FN is nonzero, only return
8587 true if a modifier of the type or position of FN is a variable or
8588 parameter inside FN.
8590 This concept is more general than that of C99 'variably modified types':
8591 in C99, a struct type is never variably modified because a VLA may not
8592 appear as a structure member. However, in GNU C code like:
8594 struct S { int i[f()]; };
8596 is valid, and other languages may define similar constructs. */
8598 bool
8599 variably_modified_type_p (tree type, tree fn)
8601 tree t;
8603 /* Test if T is either variable (if FN is zero) or an expression containing
8604 a variable in FN. If TYPE isn't gimplified, return true also if
8605 gimplify_one_sizepos would gimplify the expression into a local
8606 variable. */
8607 #define RETURN_TRUE_IF_VAR(T) \
8608 do { tree _t = (T); \
8609 if (_t != NULL_TREE \
8610 && _t != error_mark_node \
8611 && TREE_CODE (_t) != INTEGER_CST \
8612 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8613 && (!fn \
8614 || (!TYPE_SIZES_GIMPLIFIED (type) \
8615 && !is_gimple_sizepos (_t)) \
8616 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8617 return true; } while (0)
8619 if (type == error_mark_node)
8620 return false;
8622 /* If TYPE itself has variable size, it is variably modified. */
8623 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8624 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8626 switch (TREE_CODE (type))
8628 case POINTER_TYPE:
8629 case REFERENCE_TYPE:
8630 case VECTOR_TYPE:
8631 /* Ada can have pointer types refering to themselves indirectly. */
8632 if (TREE_VISITED (type))
8633 return false;
8634 TREE_VISITED (type) = true;
8635 if (variably_modified_type_p (TREE_TYPE (type), fn))
8637 TREE_VISITED (type) = false;
8638 return true;
8640 TREE_VISITED (type) = false;
8641 break;
8643 case FUNCTION_TYPE:
8644 case METHOD_TYPE:
8645 /* If TYPE is a function type, it is variably modified if the
8646 return type is variably modified. */
8647 if (variably_modified_type_p (TREE_TYPE (type), fn))
8648 return true;
8649 break;
8651 case INTEGER_TYPE:
8652 case REAL_TYPE:
8653 case FIXED_POINT_TYPE:
8654 case ENUMERAL_TYPE:
8655 case BOOLEAN_TYPE:
8656 /* Scalar types are variably modified if their end points
8657 aren't constant. */
8658 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8659 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8660 break;
8662 case RECORD_TYPE:
8663 case UNION_TYPE:
8664 case QUAL_UNION_TYPE:
8665 /* We can't see if any of the fields are variably-modified by the
8666 definition we normally use, since that would produce infinite
8667 recursion via pointers. */
8668 /* This is variably modified if some field's type is. */
8669 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8670 if (TREE_CODE (t) == FIELD_DECL)
8672 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8673 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8674 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8676 if (TREE_CODE (type) == QUAL_UNION_TYPE)
8677 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8679 break;
8681 case ARRAY_TYPE:
8682 /* Do not call ourselves to avoid infinite recursion. This is
8683 variably modified if the element type is. */
8684 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8685 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8686 break;
8688 default:
8689 break;
8692 /* The current language may have other cases to check, but in general,
8693 all other types are not variably modified. */
8694 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8696 #undef RETURN_TRUE_IF_VAR
8699 /* Given a DECL or TYPE, return the scope in which it was declared, or
8700 NULL_TREE if there is no containing scope. */
8702 tree
8703 get_containing_scope (const_tree t)
8705 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8708 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
8710 const_tree
8711 get_ultimate_context (const_tree decl)
8713 while (decl && TREE_CODE (decl) != TRANSLATION_UNIT_DECL)
8715 if (TREE_CODE (decl) == BLOCK)
8716 decl = BLOCK_SUPERCONTEXT (decl);
8717 else
8718 decl = get_containing_scope (decl);
8720 return decl;
8723 /* Return the innermost context enclosing DECL that is
8724 a FUNCTION_DECL, or zero if none. */
8726 tree
8727 decl_function_context (const_tree decl)
8729 tree context;
8731 if (TREE_CODE (decl) == ERROR_MARK)
8732 return 0;
8734 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8735 where we look up the function at runtime. Such functions always take
8736 a first argument of type 'pointer to real context'.
8738 C++ should really be fixed to use DECL_CONTEXT for the real context,
8739 and use something else for the "virtual context". */
8740 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8741 context
8742 = TYPE_MAIN_VARIANT
8743 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8744 else
8745 context = DECL_CONTEXT (decl);
8747 while (context && TREE_CODE (context) != FUNCTION_DECL)
8749 if (TREE_CODE (context) == BLOCK)
8750 context = BLOCK_SUPERCONTEXT (context);
8751 else
8752 context = get_containing_scope (context);
8755 return context;
8758 /* Return the innermost context enclosing DECL that is
8759 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8760 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8762 tree
8763 decl_type_context (const_tree decl)
8765 tree context = DECL_CONTEXT (decl);
8767 while (context)
8768 switch (TREE_CODE (context))
8770 case NAMESPACE_DECL:
8771 case TRANSLATION_UNIT_DECL:
8772 return NULL_TREE;
8774 case RECORD_TYPE:
8775 case UNION_TYPE:
8776 case QUAL_UNION_TYPE:
8777 return context;
8779 case TYPE_DECL:
8780 case FUNCTION_DECL:
8781 context = DECL_CONTEXT (context);
8782 break;
8784 case BLOCK:
8785 context = BLOCK_SUPERCONTEXT (context);
8786 break;
8788 default:
8789 gcc_unreachable ();
8792 return NULL_TREE;
8795 /* CALL is a CALL_EXPR. Return the declaration for the function
8796 called, or NULL_TREE if the called function cannot be
8797 determined. */
8799 tree
8800 get_callee_fndecl (const_tree call)
8802 tree addr;
8804 if (call == error_mark_node)
8805 return error_mark_node;
8807 /* It's invalid to call this function with anything but a
8808 CALL_EXPR. */
8809 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8811 /* The first operand to the CALL is the address of the function
8812 called. */
8813 addr = CALL_EXPR_FN (call);
8815 /* If there is no function, return early. */
8816 if (addr == NULL_TREE)
8817 return NULL_TREE;
8819 STRIP_NOPS (addr);
8821 /* If this is a readonly function pointer, extract its initial value. */
8822 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
8823 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
8824 && DECL_INITIAL (addr))
8825 addr = DECL_INITIAL (addr);
8827 /* If the address is just `&f' for some function `f', then we know
8828 that `f' is being called. */
8829 if (TREE_CODE (addr) == ADDR_EXPR
8830 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
8831 return TREE_OPERAND (addr, 0);
8833 /* We couldn't figure out what was being called. */
8834 return NULL_TREE;
8837 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
8838 return the associated function code, otherwise return CFN_LAST. */
8840 combined_fn
8841 get_call_combined_fn (const_tree call)
8843 /* It's invalid to call this function with anything but a CALL_EXPR. */
8844 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8846 if (!CALL_EXPR_FN (call))
8847 return as_combined_fn (CALL_EXPR_IFN (call));
8849 tree fndecl = get_callee_fndecl (call);
8850 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
8851 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
8853 return CFN_LAST;
8856 #define TREE_MEM_USAGE_SPACES 40
8858 /* Print debugging information about tree nodes generated during the compile,
8859 and any language-specific information. */
8861 void
8862 dump_tree_statistics (void)
8864 if (GATHER_STATISTICS)
8866 int i;
8867 int total_nodes, total_bytes;
8868 fprintf (stderr, "\nKind Nodes Bytes\n");
8869 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8870 total_nodes = total_bytes = 0;
8871 for (i = 0; i < (int) all_kinds; i++)
8873 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
8874 tree_node_counts[i], tree_node_sizes[i]);
8875 total_nodes += tree_node_counts[i];
8876 total_bytes += tree_node_sizes[i];
8878 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8879 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
8880 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8881 fprintf (stderr, "Code Nodes\n");
8882 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8883 for (i = 0; i < (int) MAX_TREE_CODES; i++)
8884 fprintf (stderr, "%-32s %7d\n", get_tree_code_name ((enum tree_code) i),
8885 tree_code_counts[i]);
8886 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
8887 fprintf (stderr, "\n");
8888 ssanames_print_statistics ();
8889 fprintf (stderr, "\n");
8890 phinodes_print_statistics ();
8891 fprintf (stderr, "\n");
8893 else
8894 fprintf (stderr, "(No per-node statistics)\n");
8896 print_type_hash_statistics ();
8897 print_debug_expr_statistics ();
8898 print_value_expr_statistics ();
8899 lang_hooks.print_statistics ();
8902 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8904 /* Generate a crc32 of the low BYTES bytes of VALUE. */
8906 unsigned
8907 crc32_unsigned_n (unsigned chksum, unsigned value, unsigned bytes)
8909 /* This relies on the raw feedback's top 4 bits being zero. */
8910 #define FEEDBACK(X) ((X) * 0x04c11db7)
8911 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
8912 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
8913 static const unsigned syndromes[16] =
8915 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
8916 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
8917 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
8918 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
8920 #undef FEEDBACK
8921 #undef SYNDROME
8923 value <<= (32 - bytes * 8);
8924 for (unsigned ix = bytes * 2; ix--; value <<= 4)
8926 unsigned feedback = syndromes[((value ^ chksum) >> 28) & 0xf];
8928 chksum = (chksum << 4) ^ feedback;
8931 return chksum;
8934 /* Generate a crc32 of a string. */
8936 unsigned
8937 crc32_string (unsigned chksum, const char *string)
8940 chksum = crc32_byte (chksum, *string);
8941 while (*string++);
8942 return chksum;
8945 /* P is a string that will be used in a symbol. Mask out any characters
8946 that are not valid in that context. */
8948 void
8949 clean_symbol_name (char *p)
8951 for (; *p; p++)
8952 if (! (ISALNUM (*p)
8953 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8954 || *p == '$'
8955 #endif
8956 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8957 || *p == '.'
8958 #endif
8960 *p = '_';
8963 /* For anonymous aggregate types, we need some sort of name to
8964 hold on to. In practice, this should not appear, but it should
8965 not be harmful if it does. */
8966 bool
8967 anon_aggrname_p(const_tree id_node)
8969 #ifndef NO_DOT_IN_LABEL
8970 return (IDENTIFIER_POINTER (id_node)[0] == '.'
8971 && IDENTIFIER_POINTER (id_node)[1] == '_');
8972 #else /* NO_DOT_IN_LABEL */
8973 #ifndef NO_DOLLAR_IN_LABEL
8974 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
8975 && IDENTIFIER_POINTER (id_node)[1] == '_');
8976 #else /* NO_DOLLAR_IN_LABEL */
8977 #define ANON_AGGRNAME_PREFIX "__anon_"
8978 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
8979 sizeof (ANON_AGGRNAME_PREFIX) - 1));
8980 #endif /* NO_DOLLAR_IN_LABEL */
8981 #endif /* NO_DOT_IN_LABEL */
8984 /* Return a format for an anonymous aggregate name. */
8985 const char *
8986 anon_aggrname_format()
8988 #ifndef NO_DOT_IN_LABEL
8989 return "._%d";
8990 #else /* NO_DOT_IN_LABEL */
8991 #ifndef NO_DOLLAR_IN_LABEL
8992 return "$_%d";
8993 #else /* NO_DOLLAR_IN_LABEL */
8994 return "__anon_%d";
8995 #endif /* NO_DOLLAR_IN_LABEL */
8996 #endif /* NO_DOT_IN_LABEL */
8999 /* Generate a name for a special-purpose function.
9000 The generated name may need to be unique across the whole link.
9001 Changes to this function may also require corresponding changes to
9002 xstrdup_mask_random.
9003 TYPE is some string to identify the purpose of this function to the
9004 linker or collect2; it must start with an uppercase letter,
9005 one of:
9006 I - for constructors
9007 D - for destructors
9008 N - for C++ anonymous namespaces
9009 F - for DWARF unwind frame information. */
9011 tree
9012 get_file_function_name (const char *type)
9014 char *buf;
9015 const char *p;
9016 char *q;
9018 /* If we already have a name we know to be unique, just use that. */
9019 if (first_global_object_name)
9020 p = q = ASTRDUP (first_global_object_name);
9021 /* If the target is handling the constructors/destructors, they
9022 will be local to this file and the name is only necessary for
9023 debugging purposes.
9024 We also assign sub_I and sub_D sufixes to constructors called from
9025 the global static constructors. These are always local. */
9026 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9027 || (strncmp (type, "sub_", 4) == 0
9028 && (type[4] == 'I' || type[4] == 'D')))
9030 const char *file = main_input_filename;
9031 if (! file)
9032 file = LOCATION_FILE (input_location);
9033 /* Just use the file's basename, because the full pathname
9034 might be quite long. */
9035 p = q = ASTRDUP (lbasename (file));
9037 else
9039 /* Otherwise, the name must be unique across the entire link.
9040 We don't have anything that we know to be unique to this translation
9041 unit, so use what we do have and throw in some randomness. */
9042 unsigned len;
9043 const char *name = weak_global_object_name;
9044 const char *file = main_input_filename;
9046 if (! name)
9047 name = "";
9048 if (! file)
9049 file = LOCATION_FILE (input_location);
9051 len = strlen (file);
9052 q = (char *) alloca (9 + 19 + len + 1);
9053 memcpy (q, file, len + 1);
9055 snprintf (q + len, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9056 crc32_string (0, name), get_random_seed (false));
9058 p = q;
9061 clean_symbol_name (q);
9062 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9063 + strlen (type));
9065 /* Set up the name of the file-level functions we may need.
9066 Use a global object (which is already required to be unique over
9067 the program) rather than the file name (which imposes extra
9068 constraints). */
9069 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9071 return get_identifier (buf);
9074 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9076 /* Complain that the tree code of NODE does not match the expected 0
9077 terminated list of trailing codes. The trailing code list can be
9078 empty, for a more vague error message. FILE, LINE, and FUNCTION
9079 are of the caller. */
9081 void
9082 tree_check_failed (const_tree node, const char *file,
9083 int line, const char *function, ...)
9085 va_list args;
9086 const char *buffer;
9087 unsigned length = 0;
9088 enum tree_code code;
9090 va_start (args, function);
9091 while ((code = (enum tree_code) va_arg (args, int)))
9092 length += 4 + strlen (get_tree_code_name (code));
9093 va_end (args);
9094 if (length)
9096 char *tmp;
9097 va_start (args, function);
9098 length += strlen ("expected ");
9099 buffer = tmp = (char *) alloca (length);
9100 length = 0;
9101 while ((code = (enum tree_code) va_arg (args, int)))
9103 const char *prefix = length ? " or " : "expected ";
9105 strcpy (tmp + length, prefix);
9106 length += strlen (prefix);
9107 strcpy (tmp + length, get_tree_code_name (code));
9108 length += strlen (get_tree_code_name (code));
9110 va_end (args);
9112 else
9113 buffer = "unexpected node";
9115 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9116 buffer, get_tree_code_name (TREE_CODE (node)),
9117 function, trim_filename (file), line);
9120 /* Complain that the tree code of NODE does match the expected 0
9121 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9122 the caller. */
9124 void
9125 tree_not_check_failed (const_tree node, const char *file,
9126 int line, const char *function, ...)
9128 va_list args;
9129 char *buffer;
9130 unsigned length = 0;
9131 enum tree_code code;
9133 va_start (args, function);
9134 while ((code = (enum tree_code) va_arg (args, int)))
9135 length += 4 + strlen (get_tree_code_name (code));
9136 va_end (args);
9137 va_start (args, function);
9138 buffer = (char *) alloca (length);
9139 length = 0;
9140 while ((code = (enum tree_code) va_arg (args, int)))
9142 if (length)
9144 strcpy (buffer + length, " or ");
9145 length += 4;
9147 strcpy (buffer + length, get_tree_code_name (code));
9148 length += strlen (get_tree_code_name (code));
9150 va_end (args);
9152 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9153 buffer, get_tree_code_name (TREE_CODE (node)),
9154 function, trim_filename (file), line);
9157 /* Similar to tree_check_failed, except that we check for a class of tree
9158 code, given in CL. */
9160 void
9161 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9162 const char *file, int line, const char *function)
9164 internal_error
9165 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9166 TREE_CODE_CLASS_STRING (cl),
9167 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9168 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9171 /* Similar to tree_check_failed, except that instead of specifying a
9172 dozen codes, use the knowledge that they're all sequential. */
9174 void
9175 tree_range_check_failed (const_tree node, const char *file, int line,
9176 const char *function, enum tree_code c1,
9177 enum tree_code c2)
9179 char *buffer;
9180 unsigned length = 0;
9181 unsigned int c;
9183 for (c = c1; c <= c2; ++c)
9184 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9186 length += strlen ("expected ");
9187 buffer = (char *) alloca (length);
9188 length = 0;
9190 for (c = c1; c <= c2; ++c)
9192 const char *prefix = length ? " or " : "expected ";
9194 strcpy (buffer + length, prefix);
9195 length += strlen (prefix);
9196 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9197 length += strlen (get_tree_code_name ((enum tree_code) c));
9200 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9201 buffer, get_tree_code_name (TREE_CODE (node)),
9202 function, trim_filename (file), line);
9206 /* Similar to tree_check_failed, except that we check that a tree does
9207 not have the specified code, given in CL. */
9209 void
9210 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9211 const char *file, int line, const char *function)
9213 internal_error
9214 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9215 TREE_CODE_CLASS_STRING (cl),
9216 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9217 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9221 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9223 void
9224 omp_clause_check_failed (const_tree node, const char *file, int line,
9225 const char *function, enum omp_clause_code code)
9227 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9228 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9229 function, trim_filename (file), line);
9233 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9235 void
9236 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9237 const char *function, enum omp_clause_code c1,
9238 enum omp_clause_code c2)
9240 char *buffer;
9241 unsigned length = 0;
9242 unsigned int c;
9244 for (c = c1; c <= c2; ++c)
9245 length += 4 + strlen (omp_clause_code_name[c]);
9247 length += strlen ("expected ");
9248 buffer = (char *) alloca (length);
9249 length = 0;
9251 for (c = c1; c <= c2; ++c)
9253 const char *prefix = length ? " or " : "expected ";
9255 strcpy (buffer + length, prefix);
9256 length += strlen (prefix);
9257 strcpy (buffer + length, omp_clause_code_name[c]);
9258 length += strlen (omp_clause_code_name[c]);
9261 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9262 buffer, omp_clause_code_name[TREE_CODE (node)],
9263 function, trim_filename (file), line);
9267 #undef DEFTREESTRUCT
9268 #define DEFTREESTRUCT(VAL, NAME) NAME,
9270 static const char *ts_enum_names[] = {
9271 #include "treestruct.def"
9273 #undef DEFTREESTRUCT
9275 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9277 /* Similar to tree_class_check_failed, except that we check for
9278 whether CODE contains the tree structure identified by EN. */
9280 void
9281 tree_contains_struct_check_failed (const_tree node,
9282 const enum tree_node_structure_enum en,
9283 const char *file, int line,
9284 const char *function)
9286 internal_error
9287 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9288 TS_ENUM_NAME (en),
9289 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9293 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9294 (dynamically sized) vector. */
9296 void
9297 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9298 const char *function)
9300 internal_error
9301 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9302 idx + 1, len, function, trim_filename (file), line);
9305 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9306 (dynamically sized) vector. */
9308 void
9309 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9310 const char *function)
9312 internal_error
9313 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9314 idx + 1, len, function, trim_filename (file), line);
9317 /* Similar to above, except that the check is for the bounds of the operand
9318 vector of an expression node EXP. */
9320 void
9321 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9322 int line, const char *function)
9324 enum tree_code code = TREE_CODE (exp);
9325 internal_error
9326 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9327 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9328 function, trim_filename (file), line);
9331 /* Similar to above, except that the check is for the number of
9332 operands of an OMP_CLAUSE node. */
9334 void
9335 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9336 int line, const char *function)
9338 internal_error
9339 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9340 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9341 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9342 trim_filename (file), line);
9344 #endif /* ENABLE_TREE_CHECKING */
9346 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9347 and mapped to the machine mode MODE. Initialize its fields and build
9348 the information necessary for debugging output. */
9350 static tree
9351 make_vector_type (tree innertype, int nunits, machine_mode mode)
9353 tree t;
9354 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9356 t = make_node (VECTOR_TYPE);
9357 TREE_TYPE (t) = mv_innertype;
9358 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9359 SET_TYPE_MODE (t, mode);
9361 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9362 SET_TYPE_STRUCTURAL_EQUALITY (t);
9363 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9364 || mode != VOIDmode)
9365 && !VECTOR_BOOLEAN_TYPE_P (t))
9366 TYPE_CANONICAL (t)
9367 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9369 layout_type (t);
9371 hashval_t hash = type_hash_canon_hash (t);
9372 t = type_hash_canon (hash, t);
9374 /* We have built a main variant, based on the main variant of the
9375 inner type. Use it to build the variant we return. */
9376 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9377 && TREE_TYPE (t) != innertype)
9378 return build_type_attribute_qual_variant (t,
9379 TYPE_ATTRIBUTES (innertype),
9380 TYPE_QUALS (innertype));
9382 return t;
9385 static tree
9386 make_or_reuse_type (unsigned size, int unsignedp)
9388 int i;
9390 if (size == INT_TYPE_SIZE)
9391 return unsignedp ? unsigned_type_node : integer_type_node;
9392 if (size == CHAR_TYPE_SIZE)
9393 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9394 if (size == SHORT_TYPE_SIZE)
9395 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9396 if (size == LONG_TYPE_SIZE)
9397 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9398 if (size == LONG_LONG_TYPE_SIZE)
9399 return (unsignedp ? long_long_unsigned_type_node
9400 : long_long_integer_type_node);
9402 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9403 if (size == int_n_data[i].bitsize
9404 && int_n_enabled_p[i])
9405 return (unsignedp ? int_n_trees[i].unsigned_type
9406 : int_n_trees[i].signed_type);
9408 if (unsignedp)
9409 return make_unsigned_type (size);
9410 else
9411 return make_signed_type (size);
9414 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9416 static tree
9417 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9419 if (satp)
9421 if (size == SHORT_FRACT_TYPE_SIZE)
9422 return unsignedp ? sat_unsigned_short_fract_type_node
9423 : sat_short_fract_type_node;
9424 if (size == FRACT_TYPE_SIZE)
9425 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9426 if (size == LONG_FRACT_TYPE_SIZE)
9427 return unsignedp ? sat_unsigned_long_fract_type_node
9428 : sat_long_fract_type_node;
9429 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9430 return unsignedp ? sat_unsigned_long_long_fract_type_node
9431 : sat_long_long_fract_type_node;
9433 else
9435 if (size == SHORT_FRACT_TYPE_SIZE)
9436 return unsignedp ? unsigned_short_fract_type_node
9437 : short_fract_type_node;
9438 if (size == FRACT_TYPE_SIZE)
9439 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9440 if (size == LONG_FRACT_TYPE_SIZE)
9441 return unsignedp ? unsigned_long_fract_type_node
9442 : long_fract_type_node;
9443 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9444 return unsignedp ? unsigned_long_long_fract_type_node
9445 : long_long_fract_type_node;
9448 return make_fract_type (size, unsignedp, satp);
9451 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9453 static tree
9454 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9456 if (satp)
9458 if (size == SHORT_ACCUM_TYPE_SIZE)
9459 return unsignedp ? sat_unsigned_short_accum_type_node
9460 : sat_short_accum_type_node;
9461 if (size == ACCUM_TYPE_SIZE)
9462 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9463 if (size == LONG_ACCUM_TYPE_SIZE)
9464 return unsignedp ? sat_unsigned_long_accum_type_node
9465 : sat_long_accum_type_node;
9466 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9467 return unsignedp ? sat_unsigned_long_long_accum_type_node
9468 : sat_long_long_accum_type_node;
9470 else
9472 if (size == SHORT_ACCUM_TYPE_SIZE)
9473 return unsignedp ? unsigned_short_accum_type_node
9474 : short_accum_type_node;
9475 if (size == ACCUM_TYPE_SIZE)
9476 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9477 if (size == LONG_ACCUM_TYPE_SIZE)
9478 return unsignedp ? unsigned_long_accum_type_node
9479 : long_accum_type_node;
9480 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9481 return unsignedp ? unsigned_long_long_accum_type_node
9482 : long_long_accum_type_node;
9485 return make_accum_type (size, unsignedp, satp);
9489 /* Create an atomic variant node for TYPE. This routine is called
9490 during initialization of data types to create the 5 basic atomic
9491 types. The generic build_variant_type function requires these to
9492 already be set up in order to function properly, so cannot be
9493 called from there. If ALIGN is non-zero, then ensure alignment is
9494 overridden to this value. */
9496 static tree
9497 build_atomic_base (tree type, unsigned int align)
9499 tree t;
9501 /* Make sure its not already registered. */
9502 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9503 return t;
9505 t = build_variant_type_copy (type);
9506 set_type_quals (t, TYPE_QUAL_ATOMIC);
9508 if (align)
9509 SET_TYPE_ALIGN (t, align);
9511 return t;
9514 /* Information about the _FloatN and _FloatNx types. This must be in
9515 the same order as the corresponding TI_* enum values. */
9516 const floatn_type_info floatn_nx_types[NUM_FLOATN_NX_TYPES] =
9518 { 16, false },
9519 { 32, false },
9520 { 64, false },
9521 { 128, false },
9522 { 32, true },
9523 { 64, true },
9524 { 128, true },
9528 /* Create nodes for all integer types (and error_mark_node) using the sizes
9529 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
9531 void
9532 build_common_tree_nodes (bool signed_char)
9534 int i;
9536 error_mark_node = make_node (ERROR_MARK);
9537 TREE_TYPE (error_mark_node) = error_mark_node;
9539 initialize_sizetypes ();
9541 /* Define both `signed char' and `unsigned char'. */
9542 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9543 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9544 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9545 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9547 /* Define `char', which is like either `signed char' or `unsigned char'
9548 but not the same as either. */
9549 char_type_node
9550 = (signed_char
9551 ? make_signed_type (CHAR_TYPE_SIZE)
9552 : make_unsigned_type (CHAR_TYPE_SIZE));
9553 TYPE_STRING_FLAG (char_type_node) = 1;
9555 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9556 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9557 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9558 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9559 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9560 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9561 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9562 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9564 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9566 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
9567 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
9568 TYPE_SIZE (int_n_trees[i].signed_type) = bitsize_int (int_n_data[i].bitsize);
9569 TYPE_SIZE (int_n_trees[i].unsigned_type) = bitsize_int (int_n_data[i].bitsize);
9571 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
9572 && int_n_enabled_p[i])
9574 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
9575 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
9579 /* Define a boolean type. This type only represents boolean values but
9580 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9581 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9582 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9583 TYPE_PRECISION (boolean_type_node) = 1;
9584 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9586 /* Define what type to use for size_t. */
9587 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9588 size_type_node = unsigned_type_node;
9589 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9590 size_type_node = long_unsigned_type_node;
9591 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9592 size_type_node = long_long_unsigned_type_node;
9593 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9594 size_type_node = short_unsigned_type_node;
9595 else
9597 int i;
9599 size_type_node = NULL_TREE;
9600 for (i = 0; i < NUM_INT_N_ENTS; i++)
9601 if (int_n_enabled_p[i])
9603 char name[50];
9604 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
9606 if (strcmp (name, SIZE_TYPE) == 0)
9608 size_type_node = int_n_trees[i].unsigned_type;
9611 if (size_type_node == NULL_TREE)
9612 gcc_unreachable ();
9615 /* Define what type to use for ptrdiff_t. */
9616 if (strcmp (PTRDIFF_TYPE, "int") == 0)
9617 ptrdiff_type_node = integer_type_node;
9618 else if (strcmp (PTRDIFF_TYPE, "long int") == 0)
9619 ptrdiff_type_node = long_integer_type_node;
9620 else if (strcmp (PTRDIFF_TYPE, "long long int") == 0)
9621 ptrdiff_type_node = long_long_integer_type_node;
9622 else if (strcmp (PTRDIFF_TYPE, "short int") == 0)
9623 ptrdiff_type_node = short_integer_type_node;
9624 else
9626 ptrdiff_type_node = NULL_TREE;
9627 for (int i = 0; i < NUM_INT_N_ENTS; i++)
9628 if (int_n_enabled_p[i])
9630 char name[50];
9631 sprintf (name, "__int%d", int_n_data[i].bitsize);
9632 if (strcmp (name, PTRDIFF_TYPE) == 0)
9633 ptrdiff_type_node = int_n_trees[i].signed_type;
9635 if (ptrdiff_type_node == NULL_TREE)
9636 gcc_unreachable ();
9639 /* Fill in the rest of the sized types. Reuse existing type nodes
9640 when possible. */
9641 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9642 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9643 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9644 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9645 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9647 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9648 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9649 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9650 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9651 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9653 /* Don't call build_qualified type for atomics. That routine does
9654 special processing for atomics, and until they are initialized
9655 it's better not to make that call.
9657 Check to see if there is a target override for atomic types. */
9659 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9660 targetm.atomic_align_for_mode (QImode));
9661 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9662 targetm.atomic_align_for_mode (HImode));
9663 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9664 targetm.atomic_align_for_mode (SImode));
9665 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9666 targetm.atomic_align_for_mode (DImode));
9667 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9668 targetm.atomic_align_for_mode (TImode));
9670 access_public_node = get_identifier ("public");
9671 access_protected_node = get_identifier ("protected");
9672 access_private_node = get_identifier ("private");
9674 /* Define these next since types below may used them. */
9675 integer_zero_node = build_int_cst (integer_type_node, 0);
9676 integer_one_node = build_int_cst (integer_type_node, 1);
9677 integer_three_node = build_int_cst (integer_type_node, 3);
9678 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9680 size_zero_node = size_int (0);
9681 size_one_node = size_int (1);
9682 bitsize_zero_node = bitsize_int (0);
9683 bitsize_one_node = bitsize_int (1);
9684 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9686 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9687 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9689 void_type_node = make_node (VOID_TYPE);
9690 layout_type (void_type_node);
9692 pointer_bounds_type_node = targetm.chkp_bound_type ();
9694 /* We are not going to have real types in C with less than byte alignment,
9695 so we might as well not have any types that claim to have it. */
9696 SET_TYPE_ALIGN (void_type_node, BITS_PER_UNIT);
9697 TYPE_USER_ALIGN (void_type_node) = 0;
9699 void_node = make_node (VOID_CST);
9700 TREE_TYPE (void_node) = void_type_node;
9702 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9703 layout_type (TREE_TYPE (null_pointer_node));
9705 ptr_type_node = build_pointer_type (void_type_node);
9706 const_ptr_type_node
9707 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9708 for (unsigned i = 0;
9709 i < sizeof (builtin_structptr_types) / sizeof (builtin_structptr_type);
9710 ++i)
9711 builtin_structptr_types[i].node = builtin_structptr_types[i].base;
9713 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9715 float_type_node = make_node (REAL_TYPE);
9716 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9717 layout_type (float_type_node);
9719 double_type_node = make_node (REAL_TYPE);
9720 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9721 layout_type (double_type_node);
9723 long_double_type_node = make_node (REAL_TYPE);
9724 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9725 layout_type (long_double_type_node);
9727 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9729 int n = floatn_nx_types[i].n;
9730 bool extended = floatn_nx_types[i].extended;
9731 scalar_float_mode mode;
9732 if (!targetm.floatn_mode (n, extended).exists (&mode))
9733 continue;
9734 int precision = GET_MODE_PRECISION (mode);
9735 /* Work around the rs6000 KFmode having precision 113 not
9736 128. */
9737 const struct real_format *fmt = REAL_MODE_FORMAT (mode);
9738 gcc_assert (fmt->b == 2 && fmt->emin + fmt->emax == 3);
9739 int min_precision = fmt->p + ceil_log2 (fmt->emax - fmt->emin);
9740 if (!extended)
9741 gcc_assert (min_precision == n);
9742 if (precision < min_precision)
9743 precision = min_precision;
9744 FLOATN_NX_TYPE_NODE (i) = make_node (REAL_TYPE);
9745 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i)) = precision;
9746 layout_type (FLOATN_NX_TYPE_NODE (i));
9747 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
9750 float_ptr_type_node = build_pointer_type (float_type_node);
9751 double_ptr_type_node = build_pointer_type (double_type_node);
9752 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9753 integer_ptr_type_node = build_pointer_type (integer_type_node);
9755 /* Fixed size integer types. */
9756 uint16_type_node = make_or_reuse_type (16, 1);
9757 uint32_type_node = make_or_reuse_type (32, 1);
9758 uint64_type_node = make_or_reuse_type (64, 1);
9760 /* Decimal float types. */
9761 dfloat32_type_node = make_node (REAL_TYPE);
9762 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9763 SET_TYPE_MODE (dfloat32_type_node, SDmode);
9764 layout_type (dfloat32_type_node);
9765 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9767 dfloat64_type_node = make_node (REAL_TYPE);
9768 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9769 SET_TYPE_MODE (dfloat64_type_node, DDmode);
9770 layout_type (dfloat64_type_node);
9771 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9773 dfloat128_type_node = make_node (REAL_TYPE);
9774 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9775 SET_TYPE_MODE (dfloat128_type_node, TDmode);
9776 layout_type (dfloat128_type_node);
9777 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
9779 complex_integer_type_node = build_complex_type (integer_type_node, true);
9780 complex_float_type_node = build_complex_type (float_type_node, true);
9781 complex_double_type_node = build_complex_type (double_type_node, true);
9782 complex_long_double_type_node = build_complex_type (long_double_type_node,
9783 true);
9785 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
9787 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
9788 COMPLEX_FLOATN_NX_TYPE_NODE (i)
9789 = build_complex_type (FLOATN_NX_TYPE_NODE (i));
9792 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9793 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9794 sat_ ## KIND ## _type_node = \
9795 make_sat_signed_ ## KIND ## _type (SIZE); \
9796 sat_unsigned_ ## KIND ## _type_node = \
9797 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9798 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9799 unsigned_ ## KIND ## _type_node = \
9800 make_unsigned_ ## KIND ## _type (SIZE);
9802 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9803 sat_ ## WIDTH ## KIND ## _type_node = \
9804 make_sat_signed_ ## KIND ## _type (SIZE); \
9805 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9806 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9807 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9808 unsigned_ ## WIDTH ## KIND ## _type_node = \
9809 make_unsigned_ ## KIND ## _type (SIZE);
9811 /* Make fixed-point type nodes based on four different widths. */
9812 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9813 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9814 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9815 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9816 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9818 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9819 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9820 NAME ## _type_node = \
9821 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9822 u ## NAME ## _type_node = \
9823 make_or_reuse_unsigned_ ## KIND ## _type \
9824 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9825 sat_ ## NAME ## _type_node = \
9826 make_or_reuse_sat_signed_ ## KIND ## _type \
9827 (GET_MODE_BITSIZE (MODE ## mode)); \
9828 sat_u ## NAME ## _type_node = \
9829 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9830 (GET_MODE_BITSIZE (U ## MODE ## mode));
9832 /* Fixed-point type and mode nodes. */
9833 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
9834 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
9835 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
9836 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
9837 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
9838 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
9839 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
9840 MAKE_FIXED_MODE_NODE (accum, ha, HA)
9841 MAKE_FIXED_MODE_NODE (accum, sa, SA)
9842 MAKE_FIXED_MODE_NODE (accum, da, DA)
9843 MAKE_FIXED_MODE_NODE (accum, ta, TA)
9846 tree t = targetm.build_builtin_va_list ();
9848 /* Many back-ends define record types without setting TYPE_NAME.
9849 If we copied the record type here, we'd keep the original
9850 record type without a name. This breaks name mangling. So,
9851 don't copy record types and let c_common_nodes_and_builtins()
9852 declare the type to be __builtin_va_list. */
9853 if (TREE_CODE (t) != RECORD_TYPE)
9854 t = build_variant_type_copy (t);
9856 va_list_type_node = t;
9860 /* Modify DECL for given flags.
9861 TM_PURE attribute is set only on types, so the function will modify
9862 DECL's type when ECF_TM_PURE is used. */
9864 void
9865 set_call_expr_flags (tree decl, int flags)
9867 if (flags & ECF_NOTHROW)
9868 TREE_NOTHROW (decl) = 1;
9869 if (flags & ECF_CONST)
9870 TREE_READONLY (decl) = 1;
9871 if (flags & ECF_PURE)
9872 DECL_PURE_P (decl) = 1;
9873 if (flags & ECF_LOOPING_CONST_OR_PURE)
9874 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
9875 if (flags & ECF_NOVOPS)
9876 DECL_IS_NOVOPS (decl) = 1;
9877 if (flags & ECF_NORETURN)
9878 TREE_THIS_VOLATILE (decl) = 1;
9879 if (flags & ECF_MALLOC)
9880 DECL_IS_MALLOC (decl) = 1;
9881 if (flags & ECF_RETURNS_TWICE)
9882 DECL_IS_RETURNS_TWICE (decl) = 1;
9883 if (flags & ECF_LEAF)
9884 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
9885 NULL, DECL_ATTRIBUTES (decl));
9886 if (flags & ECF_COLD)
9887 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("cold"),
9888 NULL, DECL_ATTRIBUTES (decl));
9889 if (flags & ECF_RET1)
9890 DECL_ATTRIBUTES (decl)
9891 = tree_cons (get_identifier ("fn spec"),
9892 build_tree_list (NULL_TREE, build_string (1, "1")),
9893 DECL_ATTRIBUTES (decl));
9894 if ((flags & ECF_TM_PURE) && flag_tm)
9895 apply_tm_attr (decl, get_identifier ("transaction_pure"));
9896 /* Looping const or pure is implied by noreturn.
9897 There is currently no way to declare looping const or looping pure alone. */
9898 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
9899 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
9903 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9905 static void
9906 local_define_builtin (const char *name, tree type, enum built_in_function code,
9907 const char *library_name, int ecf_flags)
9909 tree decl;
9911 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
9912 library_name, NULL_TREE);
9913 set_call_expr_flags (decl, ecf_flags);
9915 set_builtin_decl (code, decl, true);
9918 /* Call this function after instantiating all builtins that the language
9919 front end cares about. This will build the rest of the builtins
9920 and internal functions that are relied upon by the tree optimizers and
9921 the middle-end. */
9923 void
9924 build_common_builtin_nodes (void)
9926 tree tmp, ftype;
9927 int ecf_flags;
9929 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE)
9930 || !builtin_decl_explicit_p (BUILT_IN_ABORT))
9932 ftype = build_function_type (void_type_node, void_list_node);
9933 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
9934 local_define_builtin ("__builtin_unreachable", ftype,
9935 BUILT_IN_UNREACHABLE,
9936 "__builtin_unreachable",
9937 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
9938 | ECF_CONST | ECF_COLD);
9939 if (!builtin_decl_explicit_p (BUILT_IN_ABORT))
9940 local_define_builtin ("__builtin_abort", ftype, BUILT_IN_ABORT,
9941 "abort",
9942 ECF_LEAF | ECF_NORETURN | ECF_CONST | ECF_COLD);
9945 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
9946 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9948 ftype = build_function_type_list (ptr_type_node,
9949 ptr_type_node, const_ptr_type_node,
9950 size_type_node, NULL_TREE);
9952 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
9953 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
9954 "memcpy", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
9955 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9956 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
9957 "memmove", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
9960 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
9962 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
9963 const_ptr_type_node, size_type_node,
9964 NULL_TREE);
9965 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
9966 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
9969 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
9971 ftype = build_function_type_list (ptr_type_node,
9972 ptr_type_node, integer_type_node,
9973 size_type_node, NULL_TREE);
9974 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
9975 "memset", ECF_NOTHROW | ECF_LEAF | ECF_RET1);
9978 /* If we're checking the stack, `alloca' can throw. */
9979 const int alloca_flags
9980 = ECF_MALLOC | ECF_LEAF | (flag_stack_check ? 0 : ECF_NOTHROW);
9982 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
9984 ftype = build_function_type_list (ptr_type_node,
9985 size_type_node, NULL_TREE);
9986 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
9987 "alloca", alloca_flags);
9990 ftype = build_function_type_list (ptr_type_node, size_type_node,
9991 size_type_node, NULL_TREE);
9992 local_define_builtin ("__builtin_alloca_with_align", ftype,
9993 BUILT_IN_ALLOCA_WITH_ALIGN,
9994 "__builtin_alloca_with_align",
9995 alloca_flags);
9997 ftype = build_function_type_list (ptr_type_node, size_type_node,
9998 size_type_node, size_type_node, NULL_TREE);
9999 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype,
10000 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX,
10001 "__builtin_alloca_with_align_and_max",
10002 alloca_flags);
10004 ftype = build_function_type_list (void_type_node,
10005 ptr_type_node, ptr_type_node,
10006 ptr_type_node, NULL_TREE);
10007 local_define_builtin ("__builtin_init_trampoline", ftype,
10008 BUILT_IN_INIT_TRAMPOLINE,
10009 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10010 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10011 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10012 "__builtin_init_heap_trampoline",
10013 ECF_NOTHROW | ECF_LEAF);
10014 local_define_builtin ("__builtin_init_descriptor", ftype,
10015 BUILT_IN_INIT_DESCRIPTOR,
10016 "__builtin_init_descriptor", ECF_NOTHROW | ECF_LEAF);
10018 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10019 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10020 BUILT_IN_ADJUST_TRAMPOLINE,
10021 "__builtin_adjust_trampoline",
10022 ECF_CONST | ECF_NOTHROW);
10023 local_define_builtin ("__builtin_adjust_descriptor", ftype,
10024 BUILT_IN_ADJUST_DESCRIPTOR,
10025 "__builtin_adjust_descriptor",
10026 ECF_CONST | ECF_NOTHROW);
10028 ftype = build_function_type_list (void_type_node,
10029 ptr_type_node, ptr_type_node, NULL_TREE);
10030 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10031 BUILT_IN_NONLOCAL_GOTO,
10032 "__builtin_nonlocal_goto",
10033 ECF_NORETURN | ECF_NOTHROW);
10035 ftype = build_function_type_list (void_type_node,
10036 ptr_type_node, ptr_type_node, NULL_TREE);
10037 local_define_builtin ("__builtin_setjmp_setup", ftype,
10038 BUILT_IN_SETJMP_SETUP,
10039 "__builtin_setjmp_setup", ECF_NOTHROW);
10041 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10042 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10043 BUILT_IN_SETJMP_RECEIVER,
10044 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10046 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10047 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10048 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10050 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10051 local_define_builtin ("__builtin_stack_restore", ftype,
10052 BUILT_IN_STACK_RESTORE,
10053 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10055 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10056 const_ptr_type_node, size_type_node,
10057 NULL_TREE);
10058 local_define_builtin ("__builtin_memcmp_eq", ftype, BUILT_IN_MEMCMP_EQ,
10059 "__builtin_memcmp_eq",
10060 ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10062 /* If there's a possibility that we might use the ARM EABI, build the
10063 alternate __cxa_end_cleanup node used to resume from C++. */
10064 if (targetm.arm_eabi_unwinder)
10066 ftype = build_function_type_list (void_type_node, NULL_TREE);
10067 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10068 BUILT_IN_CXA_END_CLEANUP,
10069 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10072 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10073 local_define_builtin ("__builtin_unwind_resume", ftype,
10074 BUILT_IN_UNWIND_RESUME,
10075 ((targetm_common.except_unwind_info (&global_options)
10076 == UI_SJLJ)
10077 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10078 ECF_NORETURN);
10080 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10082 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10083 NULL_TREE);
10084 local_define_builtin ("__builtin_return_address", ftype,
10085 BUILT_IN_RETURN_ADDRESS,
10086 "__builtin_return_address",
10087 ECF_NOTHROW);
10090 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10091 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10093 ftype = build_function_type_list (void_type_node, ptr_type_node,
10094 ptr_type_node, NULL_TREE);
10095 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10096 local_define_builtin ("__cyg_profile_func_enter", ftype,
10097 BUILT_IN_PROFILE_FUNC_ENTER,
10098 "__cyg_profile_func_enter", 0);
10099 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10100 local_define_builtin ("__cyg_profile_func_exit", ftype,
10101 BUILT_IN_PROFILE_FUNC_EXIT,
10102 "__cyg_profile_func_exit", 0);
10105 /* The exception object and filter values from the runtime. The argument
10106 must be zero before exception lowering, i.e. from the front end. After
10107 exception lowering, it will be the region number for the exception
10108 landing pad. These functions are PURE instead of CONST to prevent
10109 them from being hoisted past the exception edge that will initialize
10110 its value in the landing pad. */
10111 ftype = build_function_type_list (ptr_type_node,
10112 integer_type_node, NULL_TREE);
10113 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10114 /* Only use TM_PURE if we have TM language support. */
10115 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10116 ecf_flags |= ECF_TM_PURE;
10117 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10118 "__builtin_eh_pointer", ecf_flags);
10120 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10121 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10122 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10123 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10125 ftype = build_function_type_list (void_type_node,
10126 integer_type_node, integer_type_node,
10127 NULL_TREE);
10128 local_define_builtin ("__builtin_eh_copy_values", ftype,
10129 BUILT_IN_EH_COPY_VALUES,
10130 "__builtin_eh_copy_values", ECF_NOTHROW);
10132 /* Complex multiplication and division. These are handled as builtins
10133 rather than optabs because emit_library_call_value doesn't support
10134 complex. Further, we can do slightly better with folding these
10135 beasties if the real and complex parts of the arguments are separate. */
10137 int mode;
10139 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10141 char mode_name_buf[4], *q;
10142 const char *p;
10143 enum built_in_function mcode, dcode;
10144 tree type, inner_type;
10145 const char *prefix = "__";
10147 if (targetm.libfunc_gnu_prefix)
10148 prefix = "__gnu_";
10150 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10151 if (type == NULL)
10152 continue;
10153 inner_type = TREE_TYPE (type);
10155 ftype = build_function_type_list (type, inner_type, inner_type,
10156 inner_type, inner_type, NULL_TREE);
10158 mcode = ((enum built_in_function)
10159 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10160 dcode = ((enum built_in_function)
10161 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10163 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10164 *q = TOLOWER (*p);
10165 *q = '\0';
10167 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10168 NULL);
10169 local_define_builtin (built_in_names[mcode], ftype, mcode,
10170 built_in_names[mcode],
10171 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10173 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10174 NULL);
10175 local_define_builtin (built_in_names[dcode], ftype, dcode,
10176 built_in_names[dcode],
10177 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10181 init_internal_fns ();
10184 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10185 better way.
10187 If we requested a pointer to a vector, build up the pointers that
10188 we stripped off while looking for the inner type. Similarly for
10189 return values from functions.
10191 The argument TYPE is the top of the chain, and BOTTOM is the
10192 new type which we will point to. */
10194 tree
10195 reconstruct_complex_type (tree type, tree bottom)
10197 tree inner, outer;
10199 if (TREE_CODE (type) == POINTER_TYPE)
10201 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10202 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10203 TYPE_REF_CAN_ALIAS_ALL (type));
10205 else if (TREE_CODE (type) == REFERENCE_TYPE)
10207 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10208 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10209 TYPE_REF_CAN_ALIAS_ALL (type));
10211 else if (TREE_CODE (type) == ARRAY_TYPE)
10213 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10214 outer = build_array_type (inner, TYPE_DOMAIN (type));
10216 else if (TREE_CODE (type) == FUNCTION_TYPE)
10218 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10219 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10221 else if (TREE_CODE (type) == METHOD_TYPE)
10223 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10224 /* The build_method_type_directly() routine prepends 'this' to argument list,
10225 so we must compensate by getting rid of it. */
10226 outer
10227 = build_method_type_directly
10228 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10229 inner,
10230 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10232 else if (TREE_CODE (type) == OFFSET_TYPE)
10234 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10235 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10237 else
10238 return bottom;
10240 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10241 TYPE_QUALS (type));
10244 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10245 the inner type. */
10246 tree
10247 build_vector_type_for_mode (tree innertype, machine_mode mode)
10249 int nunits;
10250 unsigned int bitsize;
10252 switch (GET_MODE_CLASS (mode))
10254 case MODE_VECTOR_INT:
10255 case MODE_VECTOR_FLOAT:
10256 case MODE_VECTOR_FRACT:
10257 case MODE_VECTOR_UFRACT:
10258 case MODE_VECTOR_ACCUM:
10259 case MODE_VECTOR_UACCUM:
10260 nunits = GET_MODE_NUNITS (mode);
10261 break;
10263 case MODE_INT:
10264 /* Check that there are no leftover bits. */
10265 bitsize = GET_MODE_BITSIZE (as_a <scalar_int_mode> (mode));
10266 gcc_assert (bitsize % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10267 nunits = bitsize / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10268 break;
10270 default:
10271 gcc_unreachable ();
10274 return make_vector_type (innertype, nunits, mode);
10277 /* Similarly, but takes the inner type and number of units, which must be
10278 a power of two. */
10280 tree
10281 build_vector_type (tree innertype, int nunits)
10283 return make_vector_type (innertype, nunits, VOIDmode);
10286 /* Build truth vector with specified length and number of units. */
10288 tree
10289 build_truth_vector_type (unsigned nunits, unsigned vector_size)
10291 machine_mode mask_mode
10292 = targetm.vectorize.get_mask_mode (nunits, vector_size).else_blk ();
10294 unsigned HOST_WIDE_INT vsize;
10295 if (mask_mode == BLKmode)
10296 vsize = vector_size * BITS_PER_UNIT;
10297 else
10298 vsize = GET_MODE_BITSIZE (mask_mode);
10300 unsigned HOST_WIDE_INT esize = vsize / nunits;
10301 gcc_assert (esize * nunits == vsize);
10303 tree bool_type = build_nonstandard_boolean_type (esize);
10305 return make_vector_type (bool_type, nunits, mask_mode);
10308 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10310 tree
10311 build_same_sized_truth_vector_type (tree vectype)
10313 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10314 return vectype;
10316 unsigned HOST_WIDE_INT size = GET_MODE_SIZE (TYPE_MODE (vectype));
10318 if (!size)
10319 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10321 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10324 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10326 tree
10327 build_opaque_vector_type (tree innertype, int nunits)
10329 tree t = make_vector_type (innertype, nunits, VOIDmode);
10330 tree cand;
10331 /* We always build the non-opaque variant before the opaque one,
10332 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10333 cand = TYPE_NEXT_VARIANT (t);
10334 if (cand
10335 && TYPE_VECTOR_OPAQUE (cand)
10336 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10337 return cand;
10338 /* Othewise build a variant type and make sure to queue it after
10339 the non-opaque type. */
10340 cand = build_distinct_type_copy (t);
10341 TYPE_VECTOR_OPAQUE (cand) = true;
10342 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10343 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10344 TYPE_NEXT_VARIANT (t) = cand;
10345 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10346 return cand;
10349 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10351 wide_int
10352 vector_cst_int_elt (const_tree t, unsigned int i)
10354 /* First handle elements that are directly encoded. */
10355 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10356 if (i < encoded_nelts)
10357 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, i));
10359 /* Identify the pattern that contains element I and work out the index of
10360 the last encoded element for that pattern. */
10361 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10362 unsigned int pattern = i % npatterns;
10363 unsigned int count = i / npatterns;
10364 unsigned int final_i = encoded_nelts - npatterns + pattern;
10366 /* If there are no steps, the final encoded value is the right one. */
10367 if (!VECTOR_CST_STEPPED_P (t))
10368 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t, final_i));
10370 /* Otherwise work out the value from the last two encoded elements. */
10371 tree v1 = VECTOR_CST_ENCODED_ELT (t, final_i - npatterns);
10372 tree v2 = VECTOR_CST_ENCODED_ELT (t, final_i);
10373 wide_int diff = wi::to_wide (v2) - wi::to_wide (v1);
10374 return wi::to_wide (v2) + (count - 2) * diff;
10377 /* Return the value of element I of VECTOR_CST T. */
10379 tree
10380 vector_cst_elt (const_tree t, unsigned int i)
10382 /* First handle elements that are directly encoded. */
10383 unsigned int encoded_nelts = vector_cst_encoded_nelts (t);
10384 if (i < encoded_nelts)
10385 return VECTOR_CST_ENCODED_ELT (t, i);
10387 /* If there are no steps, the final encoded value is the right one. */
10388 if (!VECTOR_CST_STEPPED_P (t))
10390 /* Identify the pattern that contains element I and work out the index of
10391 the last encoded element for that pattern. */
10392 unsigned int npatterns = VECTOR_CST_NPATTERNS (t);
10393 unsigned int pattern = i % npatterns;
10394 unsigned int final_i = encoded_nelts - npatterns + pattern;
10395 return VECTOR_CST_ENCODED_ELT (t, final_i);
10398 /* Otherwise work out the value from the last two encoded elements. */
10399 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t)),
10400 vector_cst_int_elt (t, i));
10403 /* Given an initializer INIT, return TRUE if INIT is zero or some
10404 aggregate of zeros. Otherwise return FALSE. */
10405 bool
10406 initializer_zerop (const_tree init)
10408 tree elt;
10410 STRIP_NOPS (init);
10412 switch (TREE_CODE (init))
10414 case INTEGER_CST:
10415 return integer_zerop (init);
10417 case REAL_CST:
10418 /* ??? Note that this is not correct for C4X float formats. There,
10419 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10420 negative exponent. */
10421 return real_zerop (init)
10422 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10424 case FIXED_CST:
10425 return fixed_zerop (init);
10427 case COMPLEX_CST:
10428 return integer_zerop (init)
10429 || (real_zerop (init)
10430 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10431 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10433 case VECTOR_CST:
10435 unsigned i;
10436 for (i = 0; i < VECTOR_CST_NELTS (init); ++i)
10437 if (!initializer_zerop (VECTOR_CST_ELT (init, i)))
10438 return false;
10439 return true;
10442 case CONSTRUCTOR:
10444 unsigned HOST_WIDE_INT idx;
10446 if (TREE_CLOBBER_P (init))
10447 return false;
10448 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10449 if (!initializer_zerop (elt))
10450 return false;
10451 return true;
10454 case STRING_CST:
10456 int i;
10458 /* We need to loop through all elements to handle cases like
10459 "\0" and "\0foobar". */
10460 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10461 if (TREE_STRING_POINTER (init)[i] != '\0')
10462 return false;
10464 return true;
10467 default:
10468 return false;
10472 /* Check if vector VEC consists of all the equal elements and
10473 that the number of elements corresponds to the type of VEC.
10474 The function returns first element of the vector
10475 or NULL_TREE if the vector is not uniform. */
10476 tree
10477 uniform_vector_p (const_tree vec)
10479 tree first, t;
10480 unsigned i;
10482 if (vec == NULL_TREE)
10483 return NULL_TREE;
10485 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10487 if (TREE_CODE (vec) == VECTOR_CST)
10489 first = VECTOR_CST_ELT (vec, 0);
10490 for (i = 1; i < VECTOR_CST_NELTS (vec); ++i)
10491 if (!operand_equal_p (first, VECTOR_CST_ELT (vec, i), 0))
10492 return NULL_TREE;
10494 return first;
10497 else if (TREE_CODE (vec) == CONSTRUCTOR)
10499 first = error_mark_node;
10501 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10503 if (i == 0)
10505 first = t;
10506 continue;
10508 if (!operand_equal_p (first, t, 0))
10509 return NULL_TREE;
10511 if (i != TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)))
10512 return NULL_TREE;
10514 return first;
10517 return NULL_TREE;
10520 /* Build an empty statement at location LOC. */
10522 tree
10523 build_empty_stmt (location_t loc)
10525 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10526 SET_EXPR_LOCATION (t, loc);
10527 return t;
10531 /* Build an OpenMP clause with code CODE. LOC is the location of the
10532 clause. */
10534 tree
10535 build_omp_clause (location_t loc, enum omp_clause_code code)
10537 tree t;
10538 int size, length;
10540 length = omp_clause_num_ops[code];
10541 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10543 record_node_allocation_statistics (OMP_CLAUSE, size);
10545 t = (tree) ggc_internal_alloc (size);
10546 memset (t, 0, size);
10547 TREE_SET_CODE (t, OMP_CLAUSE);
10548 OMP_CLAUSE_SET_CODE (t, code);
10549 OMP_CLAUSE_LOCATION (t) = loc;
10551 return t;
10554 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10555 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10556 Except for the CODE and operand count field, other storage for the
10557 object is initialized to zeros. */
10559 tree
10560 build_vl_exp (enum tree_code code, int len MEM_STAT_DECL)
10562 tree t;
10563 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10565 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10566 gcc_assert (len >= 1);
10568 record_node_allocation_statistics (code, length);
10570 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10572 TREE_SET_CODE (t, code);
10574 /* Can't use TREE_OPERAND to store the length because if checking is
10575 enabled, it will try to check the length before we store it. :-P */
10576 t->exp.operands[0] = build_int_cst (sizetype, len);
10578 return t;
10581 /* Helper function for build_call_* functions; build a CALL_EXPR with
10582 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10583 the argument slots. */
10585 static tree
10586 build_call_1 (tree return_type, tree fn, int nargs)
10588 tree t;
10590 t = build_vl_exp (CALL_EXPR, nargs + 3);
10591 TREE_TYPE (t) = return_type;
10592 CALL_EXPR_FN (t) = fn;
10593 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10595 return t;
10598 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10599 FN and a null static chain slot. NARGS is the number of call arguments
10600 which are specified as "..." arguments. */
10602 tree
10603 build_call_nary (tree return_type, tree fn, int nargs, ...)
10605 tree ret;
10606 va_list args;
10607 va_start (args, nargs);
10608 ret = build_call_valist (return_type, fn, nargs, args);
10609 va_end (args);
10610 return ret;
10613 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10614 FN and a null static chain slot. NARGS is the number of call arguments
10615 which are specified as a va_list ARGS. */
10617 tree
10618 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10620 tree t;
10621 int i;
10623 t = build_call_1 (return_type, fn, nargs);
10624 for (i = 0; i < nargs; i++)
10625 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10626 process_call_operands (t);
10627 return t;
10630 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10631 FN and a null static chain slot. NARGS is the number of call arguments
10632 which are specified as a tree array ARGS. */
10634 tree
10635 build_call_array_loc (location_t loc, tree return_type, tree fn,
10636 int nargs, const tree *args)
10638 tree t;
10639 int i;
10641 t = build_call_1 (return_type, fn, nargs);
10642 for (i = 0; i < nargs; i++)
10643 CALL_EXPR_ARG (t, i) = args[i];
10644 process_call_operands (t);
10645 SET_EXPR_LOCATION (t, loc);
10646 return t;
10649 /* Like build_call_array, but takes a vec. */
10651 tree
10652 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10654 tree ret, t;
10655 unsigned int ix;
10657 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10658 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10659 CALL_EXPR_ARG (ret, ix) = t;
10660 process_call_operands (ret);
10661 return ret;
10664 /* Conveniently construct a function call expression. FNDECL names the
10665 function to be called and N arguments are passed in the array
10666 ARGARRAY. */
10668 tree
10669 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10671 tree fntype = TREE_TYPE (fndecl);
10672 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10674 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
10677 /* Conveniently construct a function call expression. FNDECL names the
10678 function to be called and the arguments are passed in the vector
10679 VEC. */
10681 tree
10682 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10684 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10685 vec_safe_address (vec));
10689 /* Conveniently construct a function call expression. FNDECL names the
10690 function to be called, N is the number of arguments, and the "..."
10691 parameters are the argument expressions. */
10693 tree
10694 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10696 va_list ap;
10697 tree *argarray = XALLOCAVEC (tree, n);
10698 int i;
10700 va_start (ap, n);
10701 for (i = 0; i < n; i++)
10702 argarray[i] = va_arg (ap, tree);
10703 va_end (ap);
10704 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10707 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10708 varargs macros aren't supported by all bootstrap compilers. */
10710 tree
10711 build_call_expr (tree fndecl, int n, ...)
10713 va_list ap;
10714 tree *argarray = XALLOCAVEC (tree, n);
10715 int i;
10717 va_start (ap, n);
10718 for (i = 0; i < n; i++)
10719 argarray[i] = va_arg (ap, tree);
10720 va_end (ap);
10721 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10724 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
10725 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
10726 It will get gimplified later into an ordinary internal function. */
10728 tree
10729 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
10730 tree type, int n, const tree *args)
10732 tree t = build_call_1 (type, NULL_TREE, n);
10733 for (int i = 0; i < n; ++i)
10734 CALL_EXPR_ARG (t, i) = args[i];
10735 SET_EXPR_LOCATION (t, loc);
10736 CALL_EXPR_IFN (t) = ifn;
10737 return t;
10740 /* Build internal call expression. This is just like CALL_EXPR, except
10741 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10742 internal function. */
10744 tree
10745 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
10746 tree type, int n, ...)
10748 va_list ap;
10749 tree *argarray = XALLOCAVEC (tree, n);
10750 int i;
10752 va_start (ap, n);
10753 for (i = 0; i < n; i++)
10754 argarray[i] = va_arg (ap, tree);
10755 va_end (ap);
10756 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
10759 /* Return a function call to FN, if the target is guaranteed to support it,
10760 or null otherwise.
10762 N is the number of arguments, passed in the "...", and TYPE is the
10763 type of the return value. */
10765 tree
10766 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
10767 int n, ...)
10769 va_list ap;
10770 tree *argarray = XALLOCAVEC (tree, n);
10771 int i;
10773 va_start (ap, n);
10774 for (i = 0; i < n; i++)
10775 argarray[i] = va_arg (ap, tree);
10776 va_end (ap);
10777 if (internal_fn_p (fn))
10779 internal_fn ifn = as_internal_fn (fn);
10780 if (direct_internal_fn_p (ifn))
10782 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
10783 if (!direct_internal_fn_supported_p (ifn, types,
10784 OPTIMIZE_FOR_BOTH))
10785 return NULL_TREE;
10787 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
10789 else
10791 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
10792 if (!fndecl)
10793 return NULL_TREE;
10794 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10798 /* Return a function call to the appropriate builtin alloca variant.
10800 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
10801 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
10802 bound for SIZE in case it is not a fixed value. */
10804 tree
10805 build_alloca_call_expr (tree size, unsigned int align, HOST_WIDE_INT max_size)
10807 if (max_size >= 0)
10809 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX);
10810 return
10811 build_call_expr (t, 3, size, size_int (align), size_int (max_size));
10813 else if (align > 0)
10815 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
10816 return build_call_expr (t, 2, size, size_int (align));
10818 else
10820 tree t = builtin_decl_explicit (BUILT_IN_ALLOCA);
10821 return build_call_expr (t, 1, size);
10825 /* Create a new constant string literal and return a char* pointer to it.
10826 The STRING_CST value is the LEN characters at STR. */
10827 tree
10828 build_string_literal (int len, const char *str)
10830 tree t, elem, index, type;
10832 t = build_string (len, str);
10833 elem = build_type_variant (char_type_node, 1, 0);
10834 index = build_index_type (size_int (len - 1));
10835 type = build_array_type (elem, index);
10836 TREE_TYPE (t) = type;
10837 TREE_CONSTANT (t) = 1;
10838 TREE_READONLY (t) = 1;
10839 TREE_STATIC (t) = 1;
10841 type = build_pointer_type (elem);
10842 t = build1 (ADDR_EXPR, type,
10843 build4 (ARRAY_REF, elem,
10844 t, integer_zero_node, NULL_TREE, NULL_TREE));
10845 return t;
10850 /* Return true if T (assumed to be a DECL) must be assigned a memory
10851 location. */
10853 bool
10854 needs_to_live_in_memory (const_tree t)
10856 return (TREE_ADDRESSABLE (t)
10857 || is_global_var (t)
10858 || (TREE_CODE (t) == RESULT_DECL
10859 && !DECL_BY_REFERENCE (t)
10860 && aggregate_value_p (t, current_function_decl)));
10863 /* Return value of a constant X and sign-extend it. */
10865 HOST_WIDE_INT
10866 int_cst_value (const_tree x)
10868 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
10869 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
10871 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10872 gcc_assert (cst_and_fits_in_hwi (x));
10874 if (bits < HOST_BITS_PER_WIDE_INT)
10876 bool negative = ((val >> (bits - 1)) & 1) != 0;
10877 if (negative)
10878 val |= HOST_WIDE_INT_M1U << (bits - 1) << 1;
10879 else
10880 val &= ~(HOST_WIDE_INT_M1U << (bits - 1) << 1);
10883 return val;
10886 /* If TYPE is an integral or pointer type, return an integer type with
10887 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10888 if TYPE is already an integer type of signedness UNSIGNEDP. */
10890 tree
10891 signed_or_unsigned_type_for (int unsignedp, tree type)
10893 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
10894 return type;
10896 if (TREE_CODE (type) == VECTOR_TYPE)
10898 tree inner = TREE_TYPE (type);
10899 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
10900 if (!inner2)
10901 return NULL_TREE;
10902 if (inner == inner2)
10903 return type;
10904 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
10907 if (!INTEGRAL_TYPE_P (type)
10908 && !POINTER_TYPE_P (type)
10909 && TREE_CODE (type) != OFFSET_TYPE)
10910 return NULL_TREE;
10912 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
10915 /* If TYPE is an integral or pointer type, return an integer type with
10916 the same precision which is unsigned, or itself if TYPE is already an
10917 unsigned integer type. */
10919 tree
10920 unsigned_type_for (tree type)
10922 return signed_or_unsigned_type_for (1, type);
10925 /* If TYPE is an integral or pointer type, return an integer type with
10926 the same precision which is signed, or itself if TYPE is already a
10927 signed integer type. */
10929 tree
10930 signed_type_for (tree type)
10932 return signed_or_unsigned_type_for (0, type);
10935 /* If TYPE is a vector type, return a signed integer vector type with the
10936 same width and number of subparts. Otherwise return boolean_type_node. */
10938 tree
10939 truth_type_for (tree type)
10941 if (TREE_CODE (type) == VECTOR_TYPE)
10943 if (VECTOR_BOOLEAN_TYPE_P (type))
10944 return type;
10945 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
10946 GET_MODE_SIZE (TYPE_MODE (type)));
10948 else
10949 return boolean_type_node;
10952 /* Returns the largest value obtainable by casting something in INNER type to
10953 OUTER type. */
10955 tree
10956 upper_bound_in_type (tree outer, tree inner)
10958 unsigned int det = 0;
10959 unsigned oprec = TYPE_PRECISION (outer);
10960 unsigned iprec = TYPE_PRECISION (inner);
10961 unsigned prec;
10963 /* Compute a unique number for every combination. */
10964 det |= (oprec > iprec) ? 4 : 0;
10965 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
10966 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
10968 /* Determine the exponent to use. */
10969 switch (det)
10971 case 0:
10972 case 1:
10973 /* oprec <= iprec, outer: signed, inner: don't care. */
10974 prec = oprec - 1;
10975 break;
10976 case 2:
10977 case 3:
10978 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10979 prec = oprec;
10980 break;
10981 case 4:
10982 /* oprec > iprec, outer: signed, inner: signed. */
10983 prec = iprec - 1;
10984 break;
10985 case 5:
10986 /* oprec > iprec, outer: signed, inner: unsigned. */
10987 prec = iprec;
10988 break;
10989 case 6:
10990 /* oprec > iprec, outer: unsigned, inner: signed. */
10991 prec = oprec;
10992 break;
10993 case 7:
10994 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10995 prec = iprec;
10996 break;
10997 default:
10998 gcc_unreachable ();
11001 return wide_int_to_tree (outer,
11002 wi::mask (prec, false, TYPE_PRECISION (outer)));
11005 /* Returns the smallest value obtainable by casting something in INNER type to
11006 OUTER type. */
11008 tree
11009 lower_bound_in_type (tree outer, tree inner)
11011 unsigned oprec = TYPE_PRECISION (outer);
11012 unsigned iprec = TYPE_PRECISION (inner);
11014 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11015 and obtain 0. */
11016 if (TYPE_UNSIGNED (outer)
11017 /* If we are widening something of an unsigned type, OUTER type
11018 contains all values of INNER type. In particular, both INNER
11019 and OUTER types have zero in common. */
11020 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11021 return build_int_cst (outer, 0);
11022 else
11024 /* If we are widening a signed type to another signed type, we
11025 want to obtain -2^^(iprec-1). If we are keeping the
11026 precision or narrowing to a signed type, we want to obtain
11027 -2^(oprec-1). */
11028 unsigned prec = oprec > iprec ? iprec : oprec;
11029 return wide_int_to_tree (outer,
11030 wi::mask (prec - 1, true,
11031 TYPE_PRECISION (outer)));
11035 /* Return nonzero if two operands that are suitable for PHI nodes are
11036 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11037 SSA_NAME or invariant. Note that this is strictly an optimization.
11038 That is, callers of this function can directly call operand_equal_p
11039 and get the same result, only slower. */
11042 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11044 if (arg0 == arg1)
11045 return 1;
11046 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11047 return 0;
11048 return operand_equal_p (arg0, arg1, 0);
11051 /* Returns number of zeros at the end of binary representation of X. */
11053 tree
11054 num_ending_zeros (const_tree x)
11056 return build_int_cst (TREE_TYPE (x), wi::ctz (wi::to_wide (x)));
11060 #define WALK_SUBTREE(NODE) \
11061 do \
11063 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11064 if (result) \
11065 return result; \
11067 while (0)
11069 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11070 be walked whenever a type is seen in the tree. Rest of operands and return
11071 value are as for walk_tree. */
11073 static tree
11074 walk_type_fields (tree type, walk_tree_fn func, void *data,
11075 hash_set<tree> *pset, walk_tree_lh lh)
11077 tree result = NULL_TREE;
11079 switch (TREE_CODE (type))
11081 case POINTER_TYPE:
11082 case REFERENCE_TYPE:
11083 case VECTOR_TYPE:
11084 /* We have to worry about mutually recursive pointers. These can't
11085 be written in C. They can in Ada. It's pathological, but
11086 there's an ACATS test (c38102a) that checks it. Deal with this
11087 by checking if we're pointing to another pointer, that one
11088 points to another pointer, that one does too, and we have no htab.
11089 If so, get a hash table. We check three levels deep to avoid
11090 the cost of the hash table if we don't need one. */
11091 if (POINTER_TYPE_P (TREE_TYPE (type))
11092 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11093 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11094 && !pset)
11096 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11097 func, data);
11098 if (result)
11099 return result;
11101 break;
11104 /* fall through */
11106 case COMPLEX_TYPE:
11107 WALK_SUBTREE (TREE_TYPE (type));
11108 break;
11110 case METHOD_TYPE:
11111 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11113 /* Fall through. */
11115 case FUNCTION_TYPE:
11116 WALK_SUBTREE (TREE_TYPE (type));
11118 tree arg;
11120 /* We never want to walk into default arguments. */
11121 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11122 WALK_SUBTREE (TREE_VALUE (arg));
11124 break;
11126 case ARRAY_TYPE:
11127 /* Don't follow this nodes's type if a pointer for fear that
11128 we'll have infinite recursion. If we have a PSET, then we
11129 need not fear. */
11130 if (pset
11131 || (!POINTER_TYPE_P (TREE_TYPE (type))
11132 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11133 WALK_SUBTREE (TREE_TYPE (type));
11134 WALK_SUBTREE (TYPE_DOMAIN (type));
11135 break;
11137 case OFFSET_TYPE:
11138 WALK_SUBTREE (TREE_TYPE (type));
11139 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11140 break;
11142 default:
11143 break;
11146 return NULL_TREE;
11149 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11150 called with the DATA and the address of each sub-tree. If FUNC returns a
11151 non-NULL value, the traversal is stopped, and the value returned by FUNC
11152 is returned. If PSET is non-NULL it is used to record the nodes visited,
11153 and to avoid visiting a node more than once. */
11155 tree
11156 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11157 hash_set<tree> *pset, walk_tree_lh lh)
11159 enum tree_code code;
11160 int walk_subtrees;
11161 tree result;
11163 #define WALK_SUBTREE_TAIL(NODE) \
11164 do \
11166 tp = & (NODE); \
11167 goto tail_recurse; \
11169 while (0)
11171 tail_recurse:
11172 /* Skip empty subtrees. */
11173 if (!*tp)
11174 return NULL_TREE;
11176 /* Don't walk the same tree twice, if the user has requested
11177 that we avoid doing so. */
11178 if (pset && pset->add (*tp))
11179 return NULL_TREE;
11181 /* Call the function. */
11182 walk_subtrees = 1;
11183 result = (*func) (tp, &walk_subtrees, data);
11185 /* If we found something, return it. */
11186 if (result)
11187 return result;
11189 code = TREE_CODE (*tp);
11191 /* Even if we didn't, FUNC may have decided that there was nothing
11192 interesting below this point in the tree. */
11193 if (!walk_subtrees)
11195 /* But we still need to check our siblings. */
11196 if (code == TREE_LIST)
11197 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11198 else if (code == OMP_CLAUSE)
11199 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11200 else
11201 return NULL_TREE;
11204 if (lh)
11206 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11207 if (result || !walk_subtrees)
11208 return result;
11211 switch (code)
11213 case ERROR_MARK:
11214 case IDENTIFIER_NODE:
11215 case INTEGER_CST:
11216 case REAL_CST:
11217 case FIXED_CST:
11218 case VECTOR_CST:
11219 case STRING_CST:
11220 case BLOCK:
11221 case PLACEHOLDER_EXPR:
11222 case SSA_NAME:
11223 case FIELD_DECL:
11224 case RESULT_DECL:
11225 /* None of these have subtrees other than those already walked
11226 above. */
11227 break;
11229 case TREE_LIST:
11230 WALK_SUBTREE (TREE_VALUE (*tp));
11231 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11232 break;
11234 case TREE_VEC:
11236 int len = TREE_VEC_LENGTH (*tp);
11238 if (len == 0)
11239 break;
11241 /* Walk all elements but the first. */
11242 while (--len)
11243 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11245 /* Now walk the first one as a tail call. */
11246 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11249 case COMPLEX_CST:
11250 WALK_SUBTREE (TREE_REALPART (*tp));
11251 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11253 case CONSTRUCTOR:
11255 unsigned HOST_WIDE_INT idx;
11256 constructor_elt *ce;
11258 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11259 idx++)
11260 WALK_SUBTREE (ce->value);
11262 break;
11264 case SAVE_EXPR:
11265 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11267 case BIND_EXPR:
11269 tree decl;
11270 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11272 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11273 into declarations that are just mentioned, rather than
11274 declared; they don't really belong to this part of the tree.
11275 And, we can see cycles: the initializer for a declaration
11276 can refer to the declaration itself. */
11277 WALK_SUBTREE (DECL_INITIAL (decl));
11278 WALK_SUBTREE (DECL_SIZE (decl));
11279 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11281 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11284 case STATEMENT_LIST:
11286 tree_stmt_iterator i;
11287 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11288 WALK_SUBTREE (*tsi_stmt_ptr (i));
11290 break;
11292 case OMP_CLAUSE:
11293 switch (OMP_CLAUSE_CODE (*tp))
11295 case OMP_CLAUSE_GANG:
11296 case OMP_CLAUSE__GRIDDIM_:
11297 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11298 /* FALLTHRU */
11300 case OMP_CLAUSE_ASYNC:
11301 case OMP_CLAUSE_WAIT:
11302 case OMP_CLAUSE_WORKER:
11303 case OMP_CLAUSE_VECTOR:
11304 case OMP_CLAUSE_NUM_GANGS:
11305 case OMP_CLAUSE_NUM_WORKERS:
11306 case OMP_CLAUSE_VECTOR_LENGTH:
11307 case OMP_CLAUSE_PRIVATE:
11308 case OMP_CLAUSE_SHARED:
11309 case OMP_CLAUSE_FIRSTPRIVATE:
11310 case OMP_CLAUSE_COPYIN:
11311 case OMP_CLAUSE_COPYPRIVATE:
11312 case OMP_CLAUSE_FINAL:
11313 case OMP_CLAUSE_IF:
11314 case OMP_CLAUSE_NUM_THREADS:
11315 case OMP_CLAUSE_SCHEDULE:
11316 case OMP_CLAUSE_UNIFORM:
11317 case OMP_CLAUSE_DEPEND:
11318 case OMP_CLAUSE_NUM_TEAMS:
11319 case OMP_CLAUSE_THREAD_LIMIT:
11320 case OMP_CLAUSE_DEVICE:
11321 case OMP_CLAUSE_DIST_SCHEDULE:
11322 case OMP_CLAUSE_SAFELEN:
11323 case OMP_CLAUSE_SIMDLEN:
11324 case OMP_CLAUSE_ORDERED:
11325 case OMP_CLAUSE_PRIORITY:
11326 case OMP_CLAUSE_GRAINSIZE:
11327 case OMP_CLAUSE_NUM_TASKS:
11328 case OMP_CLAUSE_HINT:
11329 case OMP_CLAUSE_TO_DECLARE:
11330 case OMP_CLAUSE_LINK:
11331 case OMP_CLAUSE_USE_DEVICE_PTR:
11332 case OMP_CLAUSE_IS_DEVICE_PTR:
11333 case OMP_CLAUSE__LOOPTEMP_:
11334 case OMP_CLAUSE__SIMDUID_:
11335 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11336 /* FALLTHRU */
11338 case OMP_CLAUSE_INDEPENDENT:
11339 case OMP_CLAUSE_NOWAIT:
11340 case OMP_CLAUSE_DEFAULT:
11341 case OMP_CLAUSE_UNTIED:
11342 case OMP_CLAUSE_MERGEABLE:
11343 case OMP_CLAUSE_PROC_BIND:
11344 case OMP_CLAUSE_INBRANCH:
11345 case OMP_CLAUSE_NOTINBRANCH:
11346 case OMP_CLAUSE_FOR:
11347 case OMP_CLAUSE_PARALLEL:
11348 case OMP_CLAUSE_SECTIONS:
11349 case OMP_CLAUSE_TASKGROUP:
11350 case OMP_CLAUSE_NOGROUP:
11351 case OMP_CLAUSE_THREADS:
11352 case OMP_CLAUSE_SIMD:
11353 case OMP_CLAUSE_DEFAULTMAP:
11354 case OMP_CLAUSE_AUTO:
11355 case OMP_CLAUSE_SEQ:
11356 case OMP_CLAUSE_TILE:
11357 case OMP_CLAUSE__SIMT_:
11358 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11360 case OMP_CLAUSE_LASTPRIVATE:
11361 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11362 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11363 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11365 case OMP_CLAUSE_COLLAPSE:
11367 int i;
11368 for (i = 0; i < 3; i++)
11369 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11370 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11373 case OMP_CLAUSE_LINEAR:
11374 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11375 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11376 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11377 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11379 case OMP_CLAUSE_ALIGNED:
11380 case OMP_CLAUSE_FROM:
11381 case OMP_CLAUSE_TO:
11382 case OMP_CLAUSE_MAP:
11383 case OMP_CLAUSE__CACHE_:
11384 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11385 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11386 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11388 case OMP_CLAUSE_REDUCTION:
11390 int i;
11391 for (i = 0; i < 5; i++)
11392 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11393 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11396 default:
11397 gcc_unreachable ();
11399 break;
11401 case TARGET_EXPR:
11403 int i, len;
11405 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11406 But, we only want to walk once. */
11407 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11408 for (i = 0; i < len; ++i)
11409 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11410 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11413 case DECL_EXPR:
11414 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11415 defining. We only want to walk into these fields of a type in this
11416 case and not in the general case of a mere reference to the type.
11418 The criterion is as follows: if the field can be an expression, it
11419 must be walked only here. This should be in keeping with the fields
11420 that are directly gimplified in gimplify_type_sizes in order for the
11421 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11422 variable-sized types.
11424 Note that DECLs get walked as part of processing the BIND_EXPR. */
11425 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11427 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11428 if (TREE_CODE (*type_p) == ERROR_MARK)
11429 return NULL_TREE;
11431 /* Call the function for the type. See if it returns anything or
11432 doesn't want us to continue. If we are to continue, walk both
11433 the normal fields and those for the declaration case. */
11434 result = (*func) (type_p, &walk_subtrees, data);
11435 if (result || !walk_subtrees)
11436 return result;
11438 /* But do not walk a pointed-to type since it may itself need to
11439 be walked in the declaration case if it isn't anonymous. */
11440 if (!POINTER_TYPE_P (*type_p))
11442 result = walk_type_fields (*type_p, func, data, pset, lh);
11443 if (result)
11444 return result;
11447 /* If this is a record type, also walk the fields. */
11448 if (RECORD_OR_UNION_TYPE_P (*type_p))
11450 tree field;
11452 for (field = TYPE_FIELDS (*type_p); field;
11453 field = DECL_CHAIN (field))
11455 /* We'd like to look at the type of the field, but we can
11456 easily get infinite recursion. So assume it's pointed
11457 to elsewhere in the tree. Also, ignore things that
11458 aren't fields. */
11459 if (TREE_CODE (field) != FIELD_DECL)
11460 continue;
11462 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11463 WALK_SUBTREE (DECL_SIZE (field));
11464 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11465 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11466 WALK_SUBTREE (DECL_QUALIFIER (field));
11470 /* Same for scalar types. */
11471 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11472 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11473 || TREE_CODE (*type_p) == INTEGER_TYPE
11474 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11475 || TREE_CODE (*type_p) == REAL_TYPE)
11477 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11478 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11481 WALK_SUBTREE (TYPE_SIZE (*type_p));
11482 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11484 /* FALLTHRU */
11486 default:
11487 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11489 int i, len;
11491 /* Walk over all the sub-trees of this operand. */
11492 len = TREE_OPERAND_LENGTH (*tp);
11494 /* Go through the subtrees. We need to do this in forward order so
11495 that the scope of a FOR_EXPR is handled properly. */
11496 if (len)
11498 for (i = 0; i < len - 1; ++i)
11499 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11500 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11503 /* If this is a type, walk the needed fields in the type. */
11504 else if (TYPE_P (*tp))
11505 return walk_type_fields (*tp, func, data, pset, lh);
11506 break;
11509 /* We didn't find what we were looking for. */
11510 return NULL_TREE;
11512 #undef WALK_SUBTREE_TAIL
11514 #undef WALK_SUBTREE
11516 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11518 tree
11519 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11520 walk_tree_lh lh)
11522 tree result;
11524 hash_set<tree> pset;
11525 result = walk_tree_1 (tp, func, data, &pset, lh);
11526 return result;
11530 tree
11531 tree_block (tree t)
11533 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11535 if (IS_EXPR_CODE_CLASS (c))
11536 return LOCATION_BLOCK (t->exp.locus);
11537 gcc_unreachable ();
11538 return NULL;
11541 void
11542 tree_set_block (tree t, tree b)
11544 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11546 if (IS_EXPR_CODE_CLASS (c))
11548 t->exp.locus = set_block (t->exp.locus, b);
11550 else
11551 gcc_unreachable ();
11554 /* Create a nameless artificial label and put it in the current
11555 function context. The label has a location of LOC. Returns the
11556 newly created label. */
11558 tree
11559 create_artificial_label (location_t loc)
11561 tree lab = build_decl (loc,
11562 LABEL_DECL, NULL_TREE, void_type_node);
11564 DECL_ARTIFICIAL (lab) = 1;
11565 DECL_IGNORED_P (lab) = 1;
11566 DECL_CONTEXT (lab) = current_function_decl;
11567 return lab;
11570 /* Given a tree, try to return a useful variable name that we can use
11571 to prefix a temporary that is being assigned the value of the tree.
11572 I.E. given <temp> = &A, return A. */
11574 const char *
11575 get_name (tree t)
11577 tree stripped_decl;
11579 stripped_decl = t;
11580 STRIP_NOPS (stripped_decl);
11581 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11582 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11583 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11585 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11586 if (!name)
11587 return NULL;
11588 return IDENTIFIER_POINTER (name);
11590 else
11592 switch (TREE_CODE (stripped_decl))
11594 case ADDR_EXPR:
11595 return get_name (TREE_OPERAND (stripped_decl, 0));
11596 default:
11597 return NULL;
11602 /* Return true if TYPE has a variable argument list. */
11604 bool
11605 stdarg_p (const_tree fntype)
11607 function_args_iterator args_iter;
11608 tree n = NULL_TREE, t;
11610 if (!fntype)
11611 return false;
11613 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11615 n = t;
11618 return n != NULL_TREE && n != void_type_node;
11621 /* Return true if TYPE has a prototype. */
11623 bool
11624 prototype_p (const_tree fntype)
11626 tree t;
11628 gcc_assert (fntype != NULL_TREE);
11630 t = TYPE_ARG_TYPES (fntype);
11631 return (t != NULL_TREE);
11634 /* If BLOCK is inlined from an __attribute__((__artificial__))
11635 routine, return pointer to location from where it has been
11636 called. */
11637 location_t *
11638 block_nonartificial_location (tree block)
11640 location_t *ret = NULL;
11642 while (block && TREE_CODE (block) == BLOCK
11643 && BLOCK_ABSTRACT_ORIGIN (block))
11645 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11647 while (TREE_CODE (ao) == BLOCK
11648 && BLOCK_ABSTRACT_ORIGIN (ao)
11649 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11650 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11652 if (TREE_CODE (ao) == FUNCTION_DECL)
11654 /* If AO is an artificial inline, point RET to the
11655 call site locus at which it has been inlined and continue
11656 the loop, in case AO's caller is also an artificial
11657 inline. */
11658 if (DECL_DECLARED_INLINE_P (ao)
11659 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11660 ret = &BLOCK_SOURCE_LOCATION (block);
11661 else
11662 break;
11664 else if (TREE_CODE (ao) != BLOCK)
11665 break;
11667 block = BLOCK_SUPERCONTEXT (block);
11669 return ret;
11673 /* If EXP is inlined from an __attribute__((__artificial__))
11674 function, return the location of the original call expression. */
11676 location_t
11677 tree_nonartificial_location (tree exp)
11679 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11681 if (loc)
11682 return *loc;
11683 else
11684 return EXPR_LOCATION (exp);
11688 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11689 nodes. */
11691 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11693 hashval_t
11694 cl_option_hasher::hash (tree x)
11696 const_tree const t = x;
11697 const char *p;
11698 size_t i;
11699 size_t len = 0;
11700 hashval_t hash = 0;
11702 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11704 p = (const char *)TREE_OPTIMIZATION (t);
11705 len = sizeof (struct cl_optimization);
11708 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11709 return cl_target_option_hash (TREE_TARGET_OPTION (t));
11711 else
11712 gcc_unreachable ();
11714 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11715 something else. */
11716 for (i = 0; i < len; i++)
11717 if (p[i])
11718 hash = (hash << 4) ^ ((i << 2) | p[i]);
11720 return hash;
11723 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11724 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11725 same. */
11727 bool
11728 cl_option_hasher::equal (tree x, tree y)
11730 const_tree const xt = x;
11731 const_tree const yt = y;
11732 const char *xp;
11733 const char *yp;
11734 size_t len;
11736 if (TREE_CODE (xt) != TREE_CODE (yt))
11737 return 0;
11739 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11741 xp = (const char *)TREE_OPTIMIZATION (xt);
11742 yp = (const char *)TREE_OPTIMIZATION (yt);
11743 len = sizeof (struct cl_optimization);
11746 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11748 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
11749 TREE_TARGET_OPTION (yt));
11752 else
11753 gcc_unreachable ();
11755 return (memcmp (xp, yp, len) == 0);
11758 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11760 tree
11761 build_optimization_node (struct gcc_options *opts)
11763 tree t;
11765 /* Use the cache of optimization nodes. */
11767 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
11768 opts);
11770 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
11771 t = *slot;
11772 if (!t)
11774 /* Insert this one into the hash table. */
11775 t = cl_optimization_node;
11776 *slot = t;
11778 /* Make a new node for next time round. */
11779 cl_optimization_node = make_node (OPTIMIZATION_NODE);
11782 return t;
11785 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11787 tree
11788 build_target_option_node (struct gcc_options *opts)
11790 tree t;
11792 /* Use the cache of optimization nodes. */
11794 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
11795 opts);
11797 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
11798 t = *slot;
11799 if (!t)
11801 /* Insert this one into the hash table. */
11802 t = cl_target_option_node;
11803 *slot = t;
11805 /* Make a new node for next time round. */
11806 cl_target_option_node = make_node (TARGET_OPTION_NODE);
11809 return t;
11812 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11813 so that they aren't saved during PCH writing. */
11815 void
11816 prepare_target_option_nodes_for_pch (void)
11818 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
11819 for (; iter != cl_option_hash_table->end (); ++iter)
11820 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
11821 TREE_TARGET_GLOBALS (*iter) = NULL;
11824 /* Determine the "ultimate origin" of a block. The block may be an inlined
11825 instance of an inlined instance of a block which is local to an inline
11826 function, so we have to trace all of the way back through the origin chain
11827 to find out what sort of node actually served as the original seed for the
11828 given block. */
11830 tree
11831 block_ultimate_origin (const_tree block)
11833 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
11835 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
11836 we're trying to output the abstract instance of this function. */
11837 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
11838 return NULL_TREE;
11840 if (immediate_origin == NULL_TREE)
11841 return NULL_TREE;
11842 else
11844 tree ret_val;
11845 tree lookahead = immediate_origin;
11849 ret_val = lookahead;
11850 lookahead = (TREE_CODE (ret_val) == BLOCK
11851 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
11853 while (lookahead != NULL && lookahead != ret_val);
11855 /* The block's abstract origin chain may not be the *ultimate* origin of
11856 the block. It could lead to a DECL that has an abstract origin set.
11857 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11858 will give us if it has one). Note that DECL's abstract origins are
11859 supposed to be the most distant ancestor (or so decl_ultimate_origin
11860 claims), so we don't need to loop following the DECL origins. */
11861 if (DECL_P (ret_val))
11862 return DECL_ORIGIN (ret_val);
11864 return ret_val;
11868 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
11869 no instruction. */
11871 bool
11872 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
11874 /* Do not strip casts into or out of differing address spaces. */
11875 if (POINTER_TYPE_P (outer_type)
11876 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
11878 if (!POINTER_TYPE_P (inner_type)
11879 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
11880 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
11881 return false;
11883 else if (POINTER_TYPE_P (inner_type)
11884 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
11886 /* We already know that outer_type is not a pointer with
11887 a non-generic address space. */
11888 return false;
11891 /* Use precision rather then machine mode when we can, which gives
11892 the correct answer even for submode (bit-field) types. */
11893 if ((INTEGRAL_TYPE_P (outer_type)
11894 || POINTER_TYPE_P (outer_type)
11895 || TREE_CODE (outer_type) == OFFSET_TYPE)
11896 && (INTEGRAL_TYPE_P (inner_type)
11897 || POINTER_TYPE_P (inner_type)
11898 || TREE_CODE (inner_type) == OFFSET_TYPE))
11899 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
11901 /* Otherwise fall back on comparing machine modes (e.g. for
11902 aggregate types, floats). */
11903 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
11906 /* Return true iff conversion in EXP generates no instruction. Mark
11907 it inline so that we fully inline into the stripping functions even
11908 though we have two uses of this function. */
11910 static inline bool
11911 tree_nop_conversion (const_tree exp)
11913 tree outer_type, inner_type;
11915 if (!CONVERT_EXPR_P (exp)
11916 && TREE_CODE (exp) != NON_LVALUE_EXPR)
11917 return false;
11918 if (TREE_OPERAND (exp, 0) == error_mark_node)
11919 return false;
11921 outer_type = TREE_TYPE (exp);
11922 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11924 if (!inner_type)
11925 return false;
11927 return tree_nop_conversion_p (outer_type, inner_type);
11930 /* Return true iff conversion in EXP generates no instruction. Don't
11931 consider conversions changing the signedness. */
11933 static bool
11934 tree_sign_nop_conversion (const_tree exp)
11936 tree outer_type, inner_type;
11938 if (!tree_nop_conversion (exp))
11939 return false;
11941 outer_type = TREE_TYPE (exp);
11942 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11944 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
11945 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
11948 /* Strip conversions from EXP according to tree_nop_conversion and
11949 return the resulting expression. */
11951 tree
11952 tree_strip_nop_conversions (tree exp)
11954 while (tree_nop_conversion (exp))
11955 exp = TREE_OPERAND (exp, 0);
11956 return exp;
11959 /* Strip conversions from EXP according to tree_sign_nop_conversion
11960 and return the resulting expression. */
11962 tree
11963 tree_strip_sign_nop_conversions (tree exp)
11965 while (tree_sign_nop_conversion (exp))
11966 exp = TREE_OPERAND (exp, 0);
11967 return exp;
11970 /* Avoid any floating point extensions from EXP. */
11971 tree
11972 strip_float_extensions (tree exp)
11974 tree sub, expt, subt;
11976 /* For floating point constant look up the narrowest type that can hold
11977 it properly and handle it like (type)(narrowest_type)constant.
11978 This way we can optimize for instance a=a*2.0 where "a" is float
11979 but 2.0 is double constant. */
11980 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
11982 REAL_VALUE_TYPE orig;
11983 tree type = NULL;
11985 orig = TREE_REAL_CST (exp);
11986 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
11987 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
11988 type = float_type_node;
11989 else if (TYPE_PRECISION (TREE_TYPE (exp))
11990 > TYPE_PRECISION (double_type_node)
11991 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
11992 type = double_type_node;
11993 if (type)
11994 return build_real_truncate (type, orig);
11997 if (!CONVERT_EXPR_P (exp))
11998 return exp;
12000 sub = TREE_OPERAND (exp, 0);
12001 subt = TREE_TYPE (sub);
12002 expt = TREE_TYPE (exp);
12004 if (!FLOAT_TYPE_P (subt))
12005 return exp;
12007 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12008 return exp;
12010 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12011 return exp;
12013 return strip_float_extensions (sub);
12016 /* Strip out all handled components that produce invariant
12017 offsets. */
12019 const_tree
12020 strip_invariant_refs (const_tree op)
12022 while (handled_component_p (op))
12024 switch (TREE_CODE (op))
12026 case ARRAY_REF:
12027 case ARRAY_RANGE_REF:
12028 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12029 || TREE_OPERAND (op, 2) != NULL_TREE
12030 || TREE_OPERAND (op, 3) != NULL_TREE)
12031 return NULL;
12032 break;
12034 case COMPONENT_REF:
12035 if (TREE_OPERAND (op, 2) != NULL_TREE)
12036 return NULL;
12037 break;
12039 default:;
12041 op = TREE_OPERAND (op, 0);
12044 return op;
12047 static GTY(()) tree gcc_eh_personality_decl;
12049 /* Return the GCC personality function decl. */
12051 tree
12052 lhd_gcc_personality (void)
12054 if (!gcc_eh_personality_decl)
12055 gcc_eh_personality_decl = build_personality_function ("gcc");
12056 return gcc_eh_personality_decl;
12059 /* TARGET is a call target of GIMPLE call statement
12060 (obtained by gimple_call_fn). Return true if it is
12061 OBJ_TYPE_REF representing an virtual call of C++ method.
12062 (As opposed to OBJ_TYPE_REF representing objc calls
12063 through a cast where middle-end devirtualization machinery
12064 can't apply.) */
12066 bool
12067 virtual_method_call_p (const_tree target)
12069 if (TREE_CODE (target) != OBJ_TYPE_REF)
12070 return false;
12071 tree t = TREE_TYPE (target);
12072 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12073 t = TREE_TYPE (t);
12074 if (TREE_CODE (t) == FUNCTION_TYPE)
12075 return false;
12076 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12077 /* If we do not have BINFO associated, it means that type was built
12078 without devirtualization enabled. Do not consider this a virtual
12079 call. */
12080 if (!TYPE_BINFO (obj_type_ref_class (target)))
12081 return false;
12082 return true;
12085 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12087 tree
12088 obj_type_ref_class (const_tree ref)
12090 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12091 ref = TREE_TYPE (ref);
12092 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12093 ref = TREE_TYPE (ref);
12094 /* We look for type THIS points to. ObjC also builds
12095 OBJ_TYPE_REF with non-method calls, Their first parameter
12096 ID however also corresponds to class type. */
12097 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12098 || TREE_CODE (ref) == FUNCTION_TYPE);
12099 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12100 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12101 return TREE_TYPE (ref);
12104 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12106 static tree
12107 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12109 unsigned int i;
12110 tree base_binfo, b;
12112 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12113 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12114 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12115 return base_binfo;
12116 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12117 return b;
12118 return NULL;
12121 /* Try to find a base info of BINFO that would have its field decl at offset
12122 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12123 found, return, otherwise return NULL_TREE. */
12125 tree
12126 get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
12128 tree type = BINFO_TYPE (binfo);
12130 while (true)
12132 HOST_WIDE_INT pos, size;
12133 tree fld;
12134 int i;
12136 if (types_same_for_odr (type, expected_type))
12137 return binfo;
12138 if (offset < 0)
12139 return NULL_TREE;
12141 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12143 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12144 continue;
12146 pos = int_bit_position (fld);
12147 size = tree_to_uhwi (DECL_SIZE (fld));
12148 if (pos <= offset && (pos + size) > offset)
12149 break;
12151 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12152 return NULL_TREE;
12154 /* Offset 0 indicates the primary base, whose vtable contents are
12155 represented in the binfo for the derived class. */
12156 else if (offset != 0)
12158 tree found_binfo = NULL, base_binfo;
12159 /* Offsets in BINFO are in bytes relative to the whole structure
12160 while POS is in bits relative to the containing field. */
12161 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12162 / BITS_PER_UNIT);
12164 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12165 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12166 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12168 found_binfo = base_binfo;
12169 break;
12171 if (found_binfo)
12172 binfo = found_binfo;
12173 else
12174 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12175 binfo_offset);
12178 type = TREE_TYPE (fld);
12179 offset -= pos;
12183 /* Returns true if X is a typedef decl. */
12185 bool
12186 is_typedef_decl (const_tree x)
12188 return (x && TREE_CODE (x) == TYPE_DECL
12189 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12192 /* Returns true iff TYPE is a type variant created for a typedef. */
12194 bool
12195 typedef_variant_p (const_tree type)
12197 return is_typedef_decl (TYPE_NAME (type));
12200 /* Warn about a use of an identifier which was marked deprecated. */
12201 void
12202 warn_deprecated_use (tree node, tree attr)
12204 const char *msg;
12206 if (node == 0 || !warn_deprecated_decl)
12207 return;
12209 if (!attr)
12211 if (DECL_P (node))
12212 attr = DECL_ATTRIBUTES (node);
12213 else if (TYPE_P (node))
12215 tree decl = TYPE_STUB_DECL (node);
12216 if (decl)
12217 attr = lookup_attribute ("deprecated",
12218 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12222 if (attr)
12223 attr = lookup_attribute ("deprecated", attr);
12225 if (attr)
12226 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12227 else
12228 msg = NULL;
12230 bool w;
12231 if (DECL_P (node))
12233 if (msg)
12234 w = warning (OPT_Wdeprecated_declarations,
12235 "%qD is deprecated: %s", node, msg);
12236 else
12237 w = warning (OPT_Wdeprecated_declarations,
12238 "%qD is deprecated", node);
12239 if (w)
12240 inform (DECL_SOURCE_LOCATION (node), "declared here");
12242 else if (TYPE_P (node))
12244 tree what = NULL_TREE;
12245 tree decl = TYPE_STUB_DECL (node);
12247 if (TYPE_NAME (node))
12249 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12250 what = TYPE_NAME (node);
12251 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12252 && DECL_NAME (TYPE_NAME (node)))
12253 what = DECL_NAME (TYPE_NAME (node));
12256 if (decl)
12258 if (what)
12260 if (msg)
12261 w = warning (OPT_Wdeprecated_declarations,
12262 "%qE is deprecated: %s", what, msg);
12263 else
12264 w = warning (OPT_Wdeprecated_declarations,
12265 "%qE is deprecated", what);
12267 else
12269 if (msg)
12270 w = warning (OPT_Wdeprecated_declarations,
12271 "type is deprecated: %s", msg);
12272 else
12273 w = warning (OPT_Wdeprecated_declarations,
12274 "type is deprecated");
12276 if (w)
12277 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12279 else
12281 if (what)
12283 if (msg)
12284 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
12285 what, msg);
12286 else
12287 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
12289 else
12291 if (msg)
12292 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
12293 msg);
12294 else
12295 warning (OPT_Wdeprecated_declarations, "type is deprecated");
12301 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12302 somewhere in it. */
12304 bool
12305 contains_bitfld_component_ref_p (const_tree ref)
12307 while (handled_component_p (ref))
12309 if (TREE_CODE (ref) == COMPONENT_REF
12310 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12311 return true;
12312 ref = TREE_OPERAND (ref, 0);
12315 return false;
12318 /* Try to determine whether a TRY_CATCH expression can fall through.
12319 This is a subroutine of block_may_fallthru. */
12321 static bool
12322 try_catch_may_fallthru (const_tree stmt)
12324 tree_stmt_iterator i;
12326 /* If the TRY block can fall through, the whole TRY_CATCH can
12327 fall through. */
12328 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12329 return true;
12331 i = tsi_start (TREE_OPERAND (stmt, 1));
12332 switch (TREE_CODE (tsi_stmt (i)))
12334 case CATCH_EXPR:
12335 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12336 catch expression and a body. The whole TRY_CATCH may fall
12337 through iff any of the catch bodies falls through. */
12338 for (; !tsi_end_p (i); tsi_next (&i))
12340 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12341 return true;
12343 return false;
12345 case EH_FILTER_EXPR:
12346 /* The exception filter expression only matters if there is an
12347 exception. If the exception does not match EH_FILTER_TYPES,
12348 we will execute EH_FILTER_FAILURE, and we will fall through
12349 if that falls through. If the exception does match
12350 EH_FILTER_TYPES, the stack unwinder will continue up the
12351 stack, so we will not fall through. We don't know whether we
12352 will throw an exception which matches EH_FILTER_TYPES or not,
12353 so we just ignore EH_FILTER_TYPES and assume that we might
12354 throw an exception which doesn't match. */
12355 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12357 default:
12358 /* This case represents statements to be executed when an
12359 exception occurs. Those statements are implicitly followed
12360 by a RESX statement to resume execution after the exception.
12361 So in this case the TRY_CATCH never falls through. */
12362 return false;
12366 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12367 need not be 100% accurate; simply be conservative and return true if we
12368 don't know. This is used only to avoid stupidly generating extra code.
12369 If we're wrong, we'll just delete the extra code later. */
12371 bool
12372 block_may_fallthru (const_tree block)
12374 /* This CONST_CAST is okay because expr_last returns its argument
12375 unmodified and we assign it to a const_tree. */
12376 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12378 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12380 case GOTO_EXPR:
12381 case RETURN_EXPR:
12382 /* Easy cases. If the last statement of the block implies
12383 control transfer, then we can't fall through. */
12384 return false;
12386 case SWITCH_EXPR:
12387 /* If there is a default: label or case labels cover all possible
12388 SWITCH_COND values, then the SWITCH_EXPR will transfer control
12389 to some case label in all cases and all we care is whether the
12390 SWITCH_BODY falls through. */
12391 if (SWITCH_ALL_CASES_P (stmt))
12392 return block_may_fallthru (SWITCH_BODY (stmt));
12393 return true;
12395 case COND_EXPR:
12396 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12397 return true;
12398 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12400 case BIND_EXPR:
12401 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12403 case TRY_CATCH_EXPR:
12404 return try_catch_may_fallthru (stmt);
12406 case TRY_FINALLY_EXPR:
12407 /* The finally clause is always executed after the try clause,
12408 so if it does not fall through, then the try-finally will not
12409 fall through. Otherwise, if the try clause does not fall
12410 through, then when the finally clause falls through it will
12411 resume execution wherever the try clause was going. So the
12412 whole try-finally will only fall through if both the try
12413 clause and the finally clause fall through. */
12414 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12415 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12417 case MODIFY_EXPR:
12418 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12419 stmt = TREE_OPERAND (stmt, 1);
12420 else
12421 return true;
12422 /* FALLTHRU */
12424 case CALL_EXPR:
12425 /* Functions that do not return do not fall through. */
12426 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12428 case CLEANUP_POINT_EXPR:
12429 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12431 case TARGET_EXPR:
12432 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12434 case ERROR_MARK:
12435 return true;
12437 default:
12438 return lang_hooks.block_may_fallthru (stmt);
12442 /* True if we are using EH to handle cleanups. */
12443 static bool using_eh_for_cleanups_flag = false;
12445 /* This routine is called from front ends to indicate eh should be used for
12446 cleanups. */
12447 void
12448 using_eh_for_cleanups (void)
12450 using_eh_for_cleanups_flag = true;
12453 /* Query whether EH is used for cleanups. */
12454 bool
12455 using_eh_for_cleanups_p (void)
12457 return using_eh_for_cleanups_flag;
12460 /* Wrapper for tree_code_name to ensure that tree code is valid */
12461 const char *
12462 get_tree_code_name (enum tree_code code)
12464 const char *invalid = "<invalid tree code>";
12466 if (code >= MAX_TREE_CODES)
12467 return invalid;
12469 return tree_code_name[code];
12472 /* Drops the TREE_OVERFLOW flag from T. */
12474 tree
12475 drop_tree_overflow (tree t)
12477 gcc_checking_assert (TREE_OVERFLOW (t));
12479 /* For tree codes with a sharing machinery re-build the result. */
12480 if (TREE_CODE (t) == INTEGER_CST)
12481 return wide_int_to_tree (TREE_TYPE (t), wi::to_wide (t));
12483 /* For VECTOR_CST, remove the overflow bits from the encoded elements
12484 and canonicalize the result. */
12485 if (TREE_CODE (t) == VECTOR_CST)
12487 tree_vector_builder builder;
12488 builder.new_unary_operation (TREE_TYPE (t), t, true);
12489 unsigned int count = builder.encoded_nelts ();
12490 for (unsigned int i = 0; i < count; ++i)
12492 tree elt = VECTOR_CST_ELT (t, i);
12493 if (TREE_OVERFLOW (elt))
12494 elt = drop_tree_overflow (elt);
12495 builder.quick_push (elt);
12497 return builder.build ();
12500 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12501 and drop the flag. */
12502 t = copy_node (t);
12503 TREE_OVERFLOW (t) = 0;
12505 /* For constants that contain nested constants, drop the flag
12506 from those as well. */
12507 if (TREE_CODE (t) == COMPLEX_CST)
12509 if (TREE_OVERFLOW (TREE_REALPART (t)))
12510 TREE_REALPART (t) = drop_tree_overflow (TREE_REALPART (t));
12511 if (TREE_OVERFLOW (TREE_IMAGPART (t)))
12512 TREE_IMAGPART (t) = drop_tree_overflow (TREE_IMAGPART (t));
12515 return t;
12518 /* Given a memory reference expression T, return its base address.
12519 The base address of a memory reference expression is the main
12520 object being referenced. For instance, the base address for
12521 'array[i].fld[j]' is 'array'. You can think of this as stripping
12522 away the offset part from a memory address.
12524 This function calls handled_component_p to strip away all the inner
12525 parts of the memory reference until it reaches the base object. */
12527 tree
12528 get_base_address (tree t)
12530 while (handled_component_p (t))
12531 t = TREE_OPERAND (t, 0);
12533 if ((TREE_CODE (t) == MEM_REF
12534 || TREE_CODE (t) == TARGET_MEM_REF)
12535 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12536 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12538 /* ??? Either the alias oracle or all callers need to properly deal
12539 with WITH_SIZE_EXPRs before we can look through those. */
12540 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12541 return NULL_TREE;
12543 return t;
12546 /* Return a tree of sizetype representing the size, in bytes, of the element
12547 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12549 tree
12550 array_ref_element_size (tree exp)
12552 tree aligned_size = TREE_OPERAND (exp, 3);
12553 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12554 location_t loc = EXPR_LOCATION (exp);
12556 /* If a size was specified in the ARRAY_REF, it's the size measured
12557 in alignment units of the element type. So multiply by that value. */
12558 if (aligned_size)
12560 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12561 sizetype from another type of the same width and signedness. */
12562 if (TREE_TYPE (aligned_size) != sizetype)
12563 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12564 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12565 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12568 /* Otherwise, take the size from that of the element type. Substitute
12569 any PLACEHOLDER_EXPR that we have. */
12570 else
12571 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12574 /* Return a tree representing the lower bound of the array mentioned in
12575 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12577 tree
12578 array_ref_low_bound (tree exp)
12580 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12582 /* If a lower bound is specified in EXP, use it. */
12583 if (TREE_OPERAND (exp, 2))
12584 return TREE_OPERAND (exp, 2);
12586 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12587 substituting for a PLACEHOLDER_EXPR as needed. */
12588 if (domain_type && TYPE_MIN_VALUE (domain_type))
12589 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12591 /* Otherwise, return a zero of the appropriate type. */
12592 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12595 /* Return a tree representing the upper bound of the array mentioned in
12596 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12598 tree
12599 array_ref_up_bound (tree exp)
12601 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12603 /* If there is a domain type and it has an upper bound, use it, substituting
12604 for a PLACEHOLDER_EXPR as needed. */
12605 if (domain_type && TYPE_MAX_VALUE (domain_type))
12606 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12608 /* Otherwise fail. */
12609 return NULL_TREE;
12612 /* Returns true if REF is an array reference or a component reference
12613 to an array at the end of a structure.
12614 If this is the case, the array may be allocated larger
12615 than its upper bound implies. */
12617 bool
12618 array_at_struct_end_p (tree ref)
12620 tree atype;
12622 if (TREE_CODE (ref) == ARRAY_REF
12623 || TREE_CODE (ref) == ARRAY_RANGE_REF)
12625 atype = TREE_TYPE (TREE_OPERAND (ref, 0));
12626 ref = TREE_OPERAND (ref, 0);
12628 else if (TREE_CODE (ref) == COMPONENT_REF
12629 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 1))) == ARRAY_TYPE)
12630 atype = TREE_TYPE (TREE_OPERAND (ref, 1));
12631 else
12632 return false;
12634 if (TREE_CODE (ref) == STRING_CST)
12635 return false;
12637 while (handled_component_p (ref))
12639 /* If the reference chain contains a component reference to a
12640 non-union type and there follows another field the reference
12641 is not at the end of a structure. */
12642 if (TREE_CODE (ref) == COMPONENT_REF)
12644 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12646 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12647 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12648 nextf = DECL_CHAIN (nextf);
12649 if (nextf)
12650 return false;
12653 /* If we have a multi-dimensional array we do not consider
12654 a non-innermost dimension as flex array if the whole
12655 multi-dimensional array is at struct end.
12656 Same for an array of aggregates with a trailing array
12657 member. */
12658 else if (TREE_CODE (ref) == ARRAY_REF)
12659 return false;
12660 else if (TREE_CODE (ref) == ARRAY_RANGE_REF)
12662 /* If we view an underlying object as sth else then what we
12663 gathered up to now is what we have to rely on. */
12664 else if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
12665 break;
12666 else
12667 gcc_unreachable ();
12669 ref = TREE_OPERAND (ref, 0);
12672 /* The array now is at struct end. Treat flexible arrays as
12673 always subject to extend, even into just padding constrained by
12674 an underlying decl. */
12675 if (! TYPE_SIZE (atype))
12676 return true;
12678 tree size = NULL;
12680 if (TREE_CODE (ref) == MEM_REF
12681 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
12683 size = TYPE_SIZE (TREE_TYPE (ref));
12684 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
12687 /* If the reference is based on a declared entity, the size of the array
12688 is constrained by its given domain. (Do not trust commons PR/69368). */
12689 if (DECL_P (ref)
12690 /* Be sure the size of MEM_REF target match. For example:
12692 char buf[10];
12693 struct foo *str = (struct foo *)&buf;
12695 str->trailin_array[2] = 1;
12697 is valid because BUF allocate enough space. */
12699 && (!size || (DECL_SIZE (ref) != NULL
12700 && operand_equal_p (DECL_SIZE (ref), size, 0)))
12701 && !(flag_unconstrained_commons
12702 && VAR_P (ref) && DECL_COMMON (ref)))
12703 return false;
12705 return true;
12708 /* Return a tree representing the offset, in bytes, of the field referenced
12709 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12711 tree
12712 component_ref_field_offset (tree exp)
12714 tree aligned_offset = TREE_OPERAND (exp, 2);
12715 tree field = TREE_OPERAND (exp, 1);
12716 location_t loc = EXPR_LOCATION (exp);
12718 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12719 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12720 value. */
12721 if (aligned_offset)
12723 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12724 sizetype from another type of the same width and signedness. */
12725 if (TREE_TYPE (aligned_offset) != sizetype)
12726 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
12727 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
12728 size_int (DECL_OFFSET_ALIGN (field)
12729 / BITS_PER_UNIT));
12732 /* Otherwise, take the offset from that of the field. Substitute
12733 any PLACEHOLDER_EXPR that we have. */
12734 else
12735 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
12738 /* Return the machine mode of T. For vectors, returns the mode of the
12739 inner type. The main use case is to feed the result to HONOR_NANS,
12740 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12742 machine_mode
12743 element_mode (const_tree t)
12745 if (!TYPE_P (t))
12746 t = TREE_TYPE (t);
12747 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
12748 t = TREE_TYPE (t);
12749 return TYPE_MODE (t);
12752 /* Vector types need to re-check the target flags each time we report
12753 the machine mode. We need to do this because attribute target can
12754 change the result of vector_mode_supported_p and have_regs_of_mode
12755 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
12756 change on a per-function basis. */
12757 /* ??? Possibly a better solution is to run through all the types
12758 referenced by a function and re-compute the TYPE_MODE once, rather
12759 than make the TYPE_MODE macro call a function. */
12761 machine_mode
12762 vector_type_mode (const_tree t)
12764 machine_mode mode;
12766 gcc_assert (TREE_CODE (t) == VECTOR_TYPE);
12768 mode = t->type_common.mode;
12769 if (VECTOR_MODE_P (mode)
12770 && (!targetm.vector_mode_supported_p (mode)
12771 || !have_regs_of_mode[mode]))
12773 scalar_int_mode innermode;
12775 /* For integers, try mapping it to a same-sized scalar mode. */
12776 if (is_int_mode (TREE_TYPE (t)->type_common.mode, &innermode))
12778 unsigned int size = (TYPE_VECTOR_SUBPARTS (t)
12779 * GET_MODE_BITSIZE (innermode));
12780 scalar_int_mode mode;
12781 if (int_mode_for_size (size, 0).exists (&mode)
12782 && have_regs_of_mode[mode])
12783 return mode;
12786 return BLKmode;
12789 return mode;
12792 /* Verify that basic properties of T match TV and thus T can be a variant of
12793 TV. TV should be the more specified variant (i.e. the main variant). */
12795 static bool
12796 verify_type_variant (const_tree t, tree tv)
12798 /* Type variant can differ by:
12800 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
12801 ENCODE_QUAL_ADDR_SPACE.
12802 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
12803 in this case some values may not be set in the variant types
12804 (see TYPE_COMPLETE_P checks).
12805 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
12806 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
12807 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
12808 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
12809 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
12810 this is necessary to make it possible to merge types form different TUs
12811 - arrays, pointers and references may have TREE_TYPE that is a variant
12812 of TREE_TYPE of their main variants.
12813 - aggregates may have new TYPE_FIELDS list that list variants of
12814 the main variant TYPE_FIELDS.
12815 - vector types may differ by TYPE_VECTOR_OPAQUE
12818 /* Convenience macro for matching individual fields. */
12819 #define verify_variant_match(flag) \
12820 do { \
12821 if (flag (tv) != flag (t)) \
12823 error ("type variant differs by " #flag "."); \
12824 debug_tree (tv); \
12825 return false; \
12827 } while (false)
12829 /* tree_base checks. */
12831 verify_variant_match (TREE_CODE);
12832 /* FIXME: Ada builds non-artificial variants of artificial types. */
12833 if (TYPE_ARTIFICIAL (tv) && 0)
12834 verify_variant_match (TYPE_ARTIFICIAL);
12835 if (POINTER_TYPE_P (tv))
12836 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
12837 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
12838 verify_variant_match (TYPE_UNSIGNED);
12839 verify_variant_match (TYPE_PACKED);
12840 if (TREE_CODE (t) == REFERENCE_TYPE)
12841 verify_variant_match (TYPE_REF_IS_RVALUE);
12842 if (AGGREGATE_TYPE_P (t))
12843 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
12844 else
12845 verify_variant_match (TYPE_SATURATING);
12846 /* FIXME: This check trigger during libstdc++ build. */
12847 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
12848 verify_variant_match (TYPE_FINAL_P);
12850 /* tree_type_common checks. */
12852 if (COMPLETE_TYPE_P (t))
12854 verify_variant_match (TYPE_MODE);
12855 if (TREE_CODE (TYPE_SIZE (t)) != PLACEHOLDER_EXPR
12856 && TREE_CODE (TYPE_SIZE (tv)) != PLACEHOLDER_EXPR)
12857 verify_variant_match (TYPE_SIZE);
12858 if (TREE_CODE (TYPE_SIZE_UNIT (t)) != PLACEHOLDER_EXPR
12859 && TREE_CODE (TYPE_SIZE_UNIT (tv)) != PLACEHOLDER_EXPR
12860 && TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv))
12862 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t),
12863 TYPE_SIZE_UNIT (tv), 0));
12864 error ("type variant has different TYPE_SIZE_UNIT");
12865 debug_tree (tv);
12866 error ("type variant's TYPE_SIZE_UNIT");
12867 debug_tree (TYPE_SIZE_UNIT (tv));
12868 error ("type's TYPE_SIZE_UNIT");
12869 debug_tree (TYPE_SIZE_UNIT (t));
12870 return false;
12873 verify_variant_match (TYPE_PRECISION);
12874 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
12875 if (RECORD_OR_UNION_TYPE_P (t))
12876 verify_variant_match (TYPE_TRANSPARENT_AGGR);
12877 else if (TREE_CODE (t) == ARRAY_TYPE)
12878 verify_variant_match (TYPE_NONALIASED_COMPONENT);
12879 /* During LTO we merge variant lists from diferent translation units
12880 that may differ BY TYPE_CONTEXT that in turn may point
12881 to TRANSLATION_UNIT_DECL.
12882 Ada also builds variants of types with different TYPE_CONTEXT. */
12883 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
12884 verify_variant_match (TYPE_CONTEXT);
12885 verify_variant_match (TYPE_STRING_FLAG);
12886 if (TYPE_ALIAS_SET_KNOWN_P (t))
12888 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
12889 debug_tree (tv);
12890 return false;
12893 /* tree_type_non_common checks. */
12895 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
12896 and dangle the pointer from time to time. */
12897 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
12898 && (in_lto_p || !TYPE_VFIELD (tv)
12899 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
12901 error ("type variant has different TYPE_VFIELD");
12902 debug_tree (tv);
12903 return false;
12905 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
12906 || TREE_CODE (t) == INTEGER_TYPE
12907 || TREE_CODE (t) == BOOLEAN_TYPE
12908 || TREE_CODE (t) == REAL_TYPE
12909 || TREE_CODE (t) == FIXED_POINT_TYPE)
12911 verify_variant_match (TYPE_MAX_VALUE);
12912 verify_variant_match (TYPE_MIN_VALUE);
12914 if (TREE_CODE (t) == METHOD_TYPE)
12915 verify_variant_match (TYPE_METHOD_BASETYPE);
12916 if (TREE_CODE (t) == OFFSET_TYPE)
12917 verify_variant_match (TYPE_OFFSET_BASETYPE);
12918 if (TREE_CODE (t) == ARRAY_TYPE)
12919 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
12920 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
12921 or even type's main variant. This is needed to make bootstrap pass
12922 and the bug seems new in GCC 5.
12923 C++ FE should be updated to make this consistent and we should check
12924 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
12925 is a match with main variant.
12927 Also disable the check for Java for now because of parser hack that builds
12928 first an dummy BINFO and then sometimes replace it by real BINFO in some
12929 of the copies. */
12930 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
12931 && TYPE_BINFO (t) != TYPE_BINFO (tv)
12932 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
12933 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
12934 at LTO time only. */
12935 && (in_lto_p && odr_type_p (t)))
12937 error ("type variant has different TYPE_BINFO");
12938 debug_tree (tv);
12939 error ("type variant's TYPE_BINFO");
12940 debug_tree (TYPE_BINFO (tv));
12941 error ("type's TYPE_BINFO");
12942 debug_tree (TYPE_BINFO (t));
12943 return false;
12946 /* Check various uses of TYPE_VALUES_RAW. */
12947 if (TREE_CODE (t) == ENUMERAL_TYPE)
12948 verify_variant_match (TYPE_VALUES);
12949 else if (TREE_CODE (t) == ARRAY_TYPE)
12950 verify_variant_match (TYPE_DOMAIN);
12951 /* Permit incomplete variants of complete type. While FEs may complete
12952 all variants, this does not happen for C++ templates in all cases. */
12953 else if (RECORD_OR_UNION_TYPE_P (t)
12954 && COMPLETE_TYPE_P (t)
12955 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
12957 tree f1, f2;
12959 /* Fortran builds qualified variants as new records with items of
12960 qualified type. Verify that they looks same. */
12961 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
12962 f1 && f2;
12963 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
12964 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
12965 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
12966 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
12967 /* FIXME: gfc_nonrestricted_type builds all types as variants
12968 with exception of pointer types. It deeply copies the type
12969 which means that we may end up with a variant type
12970 referring non-variant pointer. We may change it to
12971 produce types as variants, too, like
12972 objc_get_protocol_qualified_type does. */
12973 && !POINTER_TYPE_P (TREE_TYPE (f1)))
12974 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
12975 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
12976 break;
12977 if (f1 || f2)
12979 error ("type variant has different TYPE_FIELDS");
12980 debug_tree (tv);
12981 error ("first mismatch is field");
12982 debug_tree (f1);
12983 error ("and field");
12984 debug_tree (f2);
12985 return false;
12988 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
12989 verify_variant_match (TYPE_ARG_TYPES);
12990 /* For C++ the qualified variant of array type is really an array type
12991 of qualified TREE_TYPE.
12992 objc builds variants of pointer where pointer to type is a variant, too
12993 in objc_get_protocol_qualified_type. */
12994 if (TREE_TYPE (t) != TREE_TYPE (tv)
12995 && ((TREE_CODE (t) != ARRAY_TYPE
12996 && !POINTER_TYPE_P (t))
12997 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
12998 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13000 error ("type variant has different TREE_TYPE");
13001 debug_tree (tv);
13002 error ("type variant's TREE_TYPE");
13003 debug_tree (TREE_TYPE (tv));
13004 error ("type's TREE_TYPE");
13005 debug_tree (TREE_TYPE (t));
13006 return false;
13008 if (type_with_alias_set_p (t)
13009 && !gimple_canonical_types_compatible_p (t, tv, false))
13011 error ("type is not compatible with its variant");
13012 debug_tree (tv);
13013 error ("type variant's TREE_TYPE");
13014 debug_tree (TREE_TYPE (tv));
13015 error ("type's TREE_TYPE");
13016 debug_tree (TREE_TYPE (t));
13017 return false;
13019 return true;
13020 #undef verify_variant_match
13024 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13025 the middle-end types_compatible_p function. It needs to avoid
13026 claiming types are different for types that should be treated
13027 the same with respect to TBAA. Canonical types are also used
13028 for IL consistency checks via the useless_type_conversion_p
13029 predicate which does not handle all type kinds itself but falls
13030 back to pointer-comparison of TYPE_CANONICAL for aggregates
13031 for example. */
13033 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13034 type calculation because we need to allow inter-operability between signed
13035 and unsigned variants. */
13037 bool
13038 type_with_interoperable_signedness (const_tree type)
13040 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13041 signed char and unsigned char. Similarly fortran FE builds
13042 C_SIZE_T as signed type, while C defines it unsigned. */
13044 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13045 == INTEGER_TYPE
13046 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13047 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13050 /* Return true iff T1 and T2 are structurally identical for what
13051 TBAA is concerned.
13052 This function is used both by lto.c canonical type merging and by the
13053 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13054 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13055 only for LTO because only in these cases TYPE_CANONICAL equivalence
13056 correspond to one defined by gimple_canonical_types_compatible_p. */
13058 bool
13059 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13060 bool trust_type_canonical)
13062 /* Type variants should be same as the main variant. When not doing sanity
13063 checking to verify this fact, go to main variants and save some work. */
13064 if (trust_type_canonical)
13066 t1 = TYPE_MAIN_VARIANT (t1);
13067 t2 = TYPE_MAIN_VARIANT (t2);
13070 /* Check first for the obvious case of pointer identity. */
13071 if (t1 == t2)
13072 return true;
13074 /* Check that we have two types to compare. */
13075 if (t1 == NULL_TREE || t2 == NULL_TREE)
13076 return false;
13078 /* We consider complete types always compatible with incomplete type.
13079 This does not make sense for canonical type calculation and thus we
13080 need to ensure that we are never called on it.
13082 FIXME: For more correctness the function probably should have three modes
13083 1) mode assuming that types are complete mathcing their structure
13084 2) mode allowing incomplete types but producing equivalence classes
13085 and thus ignoring all info from complete types
13086 3) mode allowing incomplete types to match complete but checking
13087 compatibility between complete types.
13089 1 and 2 can be used for canonical type calculation. 3 is the real
13090 definition of type compatibility that can be used i.e. for warnings during
13091 declaration merging. */
13093 gcc_assert (!trust_type_canonical
13094 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13095 /* If the types have been previously registered and found equal
13096 they still are. */
13098 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13099 && trust_type_canonical)
13101 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13102 they are always NULL, but they are set to non-NULL for types
13103 constructed by build_pointer_type and variants. In this case the
13104 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13105 all pointers are considered equal. Be sure to not return false
13106 negatives. */
13107 gcc_checking_assert (canonical_type_used_p (t1)
13108 && canonical_type_used_p (t2));
13109 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13112 /* Can't be the same type if the types don't have the same code. */
13113 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13114 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13115 return false;
13117 /* Qualifiers do not matter for canonical type comparison purposes. */
13119 /* Void types and nullptr types are always the same. */
13120 if (TREE_CODE (t1) == VOID_TYPE
13121 || TREE_CODE (t1) == NULLPTR_TYPE)
13122 return true;
13124 /* Can't be the same type if they have different mode. */
13125 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13126 return false;
13128 /* Non-aggregate types can be handled cheaply. */
13129 if (INTEGRAL_TYPE_P (t1)
13130 || SCALAR_FLOAT_TYPE_P (t1)
13131 || FIXED_POINT_TYPE_P (t1)
13132 || TREE_CODE (t1) == VECTOR_TYPE
13133 || TREE_CODE (t1) == COMPLEX_TYPE
13134 || TREE_CODE (t1) == OFFSET_TYPE
13135 || POINTER_TYPE_P (t1))
13137 /* Can't be the same type if they have different recision. */
13138 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13139 return false;
13141 /* In some cases the signed and unsigned types are required to be
13142 inter-operable. */
13143 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13144 && !type_with_interoperable_signedness (t1))
13145 return false;
13147 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13148 interoperable with "signed char". Unless all frontends are revisited
13149 to agree on these types, we must ignore the flag completely. */
13151 /* Fortran standard define C_PTR type that is compatible with every
13152 C pointer. For this reason we need to glob all pointers into one.
13153 Still pointers in different address spaces are not compatible. */
13154 if (POINTER_TYPE_P (t1))
13156 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13157 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13158 return false;
13161 /* Tail-recurse to components. */
13162 if (TREE_CODE (t1) == VECTOR_TYPE
13163 || TREE_CODE (t1) == COMPLEX_TYPE)
13164 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13165 TREE_TYPE (t2),
13166 trust_type_canonical);
13168 return true;
13171 /* Do type-specific comparisons. */
13172 switch (TREE_CODE (t1))
13174 case ARRAY_TYPE:
13175 /* Array types are the same if the element types are the same and
13176 the number of elements are the same. */
13177 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13178 trust_type_canonical)
13179 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13180 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13181 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13182 return false;
13183 else
13185 tree i1 = TYPE_DOMAIN (t1);
13186 tree i2 = TYPE_DOMAIN (t2);
13188 /* For an incomplete external array, the type domain can be
13189 NULL_TREE. Check this condition also. */
13190 if (i1 == NULL_TREE && i2 == NULL_TREE)
13191 return true;
13192 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13193 return false;
13194 else
13196 tree min1 = TYPE_MIN_VALUE (i1);
13197 tree min2 = TYPE_MIN_VALUE (i2);
13198 tree max1 = TYPE_MAX_VALUE (i1);
13199 tree max2 = TYPE_MAX_VALUE (i2);
13201 /* The minimum/maximum values have to be the same. */
13202 if ((min1 == min2
13203 || (min1 && min2
13204 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13205 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13206 || operand_equal_p (min1, min2, 0))))
13207 && (max1 == max2
13208 || (max1 && max2
13209 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13210 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13211 || operand_equal_p (max1, max2, 0)))))
13212 return true;
13213 else
13214 return false;
13218 case METHOD_TYPE:
13219 case FUNCTION_TYPE:
13220 /* Function types are the same if the return type and arguments types
13221 are the same. */
13222 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13223 trust_type_canonical))
13224 return false;
13226 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13227 return true;
13228 else
13230 tree parms1, parms2;
13232 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13233 parms1 && parms2;
13234 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13236 if (!gimple_canonical_types_compatible_p
13237 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13238 trust_type_canonical))
13239 return false;
13242 if (parms1 || parms2)
13243 return false;
13245 return true;
13248 case RECORD_TYPE:
13249 case UNION_TYPE:
13250 case QUAL_UNION_TYPE:
13252 tree f1, f2;
13254 /* Don't try to compare variants of an incomplete type, before
13255 TYPE_FIELDS has been copied around. */
13256 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
13257 return true;
13260 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
13261 return false;
13263 /* For aggregate types, all the fields must be the same. */
13264 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13265 f1 || f2;
13266 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13268 /* Skip non-fields and zero-sized fields. */
13269 while (f1 && (TREE_CODE (f1) != FIELD_DECL
13270 || (DECL_SIZE (f1)
13271 && integer_zerop (DECL_SIZE (f1)))))
13272 f1 = TREE_CHAIN (f1);
13273 while (f2 && (TREE_CODE (f2) != FIELD_DECL
13274 || (DECL_SIZE (f2)
13275 && integer_zerop (DECL_SIZE (f2)))))
13276 f2 = TREE_CHAIN (f2);
13277 if (!f1 || !f2)
13278 break;
13279 /* The fields must have the same name, offset and type. */
13280 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13281 || !gimple_compare_field_offset (f1, f2)
13282 || !gimple_canonical_types_compatible_p
13283 (TREE_TYPE (f1), TREE_TYPE (f2),
13284 trust_type_canonical))
13285 return false;
13288 /* If one aggregate has more fields than the other, they
13289 are not the same. */
13290 if (f1 || f2)
13291 return false;
13293 return true;
13296 default:
13297 /* Consider all types with language specific trees in them mutually
13298 compatible. This is executed only from verify_type and false
13299 positives can be tolerated. */
13300 gcc_assert (!in_lto_p);
13301 return true;
13305 /* Verify type T. */
13307 void
13308 verify_type (const_tree t)
13310 bool error_found = false;
13311 tree mv = TYPE_MAIN_VARIANT (t);
13312 if (!mv)
13314 error ("Main variant is not defined");
13315 error_found = true;
13317 else if (mv != TYPE_MAIN_VARIANT (mv))
13319 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13320 debug_tree (mv);
13321 error_found = true;
13323 else if (t != mv && !verify_type_variant (t, mv))
13324 error_found = true;
13326 tree ct = TYPE_CANONICAL (t);
13327 if (!ct)
13329 else if (TYPE_CANONICAL (t) != ct)
13331 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13332 debug_tree (ct);
13333 error_found = true;
13335 /* Method and function types can not be used to address memory and thus
13336 TYPE_CANONICAL really matters only for determining useless conversions.
13338 FIXME: C++ FE produce declarations of builtin functions that are not
13339 compatible with main variants. */
13340 else if (TREE_CODE (t) == FUNCTION_TYPE)
13342 else if (t != ct
13343 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13344 with variably sized arrays because their sizes possibly
13345 gimplified to different variables. */
13346 && !variably_modified_type_p (ct, NULL)
13347 && !gimple_canonical_types_compatible_p (t, ct, false))
13349 error ("TYPE_CANONICAL is not compatible");
13350 debug_tree (ct);
13351 error_found = true;
13354 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
13355 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
13357 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13358 debug_tree (ct);
13359 error_found = true;
13361 if (TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
13363 error ("TYPE_CANONICAL of main variant is not main variant");
13364 debug_tree (ct);
13365 debug_tree (TYPE_MAIN_VARIANT (ct));
13366 error_found = true;
13370 /* Check various uses of TYPE_MIN_VALUE_RAW. */
13371 if (RECORD_OR_UNION_TYPE_P (t))
13373 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13374 and danagle the pointer from time to time. */
13375 if (TYPE_VFIELD (t)
13376 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13377 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13379 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13380 debug_tree (TYPE_VFIELD (t));
13381 error_found = true;
13384 else if (TREE_CODE (t) == POINTER_TYPE)
13386 if (TYPE_NEXT_PTR_TO (t)
13387 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13389 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13390 debug_tree (TYPE_NEXT_PTR_TO (t));
13391 error_found = true;
13394 else if (TREE_CODE (t) == REFERENCE_TYPE)
13396 if (TYPE_NEXT_REF_TO (t)
13397 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13399 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13400 debug_tree (TYPE_NEXT_REF_TO (t));
13401 error_found = true;
13404 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13405 || TREE_CODE (t) == FIXED_POINT_TYPE)
13407 /* FIXME: The following check should pass:
13408 useless_type_conversion_p (const_cast <tree> (t),
13409 TREE_TYPE (TYPE_MIN_VALUE (t))
13410 but does not for C sizetypes in LTO. */
13413 /* Check various uses of TYPE_MAXVAL_RAW. */
13414 if (RECORD_OR_UNION_TYPE_P (t))
13416 if (!TYPE_BINFO (t))
13418 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13420 error ("TYPE_BINFO is not TREE_BINFO");
13421 debug_tree (TYPE_BINFO (t));
13422 error_found = true;
13424 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t))
13426 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13427 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13428 error_found = true;
13431 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13433 if (TYPE_METHOD_BASETYPE (t)
13434 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13435 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13437 error ("TYPE_METHOD_BASETYPE is not record nor union");
13438 debug_tree (TYPE_METHOD_BASETYPE (t));
13439 error_found = true;
13442 else if (TREE_CODE (t) == OFFSET_TYPE)
13444 if (TYPE_OFFSET_BASETYPE (t)
13445 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13446 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13448 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13449 debug_tree (TYPE_OFFSET_BASETYPE (t));
13450 error_found = true;
13453 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13454 || TREE_CODE (t) == FIXED_POINT_TYPE)
13456 /* FIXME: The following check should pass:
13457 useless_type_conversion_p (const_cast <tree> (t),
13458 TREE_TYPE (TYPE_MAX_VALUE (t))
13459 but does not for C sizetypes in LTO. */
13461 else if (TREE_CODE (t) == ARRAY_TYPE)
13463 if (TYPE_ARRAY_MAX_SIZE (t)
13464 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13466 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13467 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13468 error_found = true;
13471 else if (TYPE_MAX_VALUE_RAW (t))
13473 error ("TYPE_MAX_VALUE_RAW non-NULL");
13474 debug_tree (TYPE_MAX_VALUE_RAW (t));
13475 error_found = true;
13478 if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13480 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13481 debug_tree (TYPE_LANG_SLOT_1 (t));
13482 error_found = true;
13485 /* Check various uses of TYPE_VALUES_RAW. */
13486 if (TREE_CODE (t) == ENUMERAL_TYPE)
13487 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13489 tree value = TREE_VALUE (l);
13490 tree name = TREE_PURPOSE (l);
13492 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13493 CONST_DECL of ENUMERAL TYPE. */
13494 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13496 error ("Enum value is not CONST_DECL or INTEGER_CST");
13497 debug_tree (value);
13498 debug_tree (name);
13499 error_found = true;
13501 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13502 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13504 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13505 debug_tree (value);
13506 debug_tree (name);
13507 error_found = true;
13509 if (TREE_CODE (name) != IDENTIFIER_NODE)
13511 error ("Enum value name is not IDENTIFIER_NODE");
13512 debug_tree (value);
13513 debug_tree (name);
13514 error_found = true;
13517 else if (TREE_CODE (t) == ARRAY_TYPE)
13519 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13521 error ("Array TYPE_DOMAIN is not integer type");
13522 debug_tree (TYPE_DOMAIN (t));
13523 error_found = true;
13526 else if (RECORD_OR_UNION_TYPE_P (t))
13528 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
13530 error ("TYPE_FIELDS defined in incomplete type");
13531 error_found = true;
13533 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13535 /* TODO: verify properties of decls. */
13536 if (TREE_CODE (fld) == FIELD_DECL)
13538 else if (TREE_CODE (fld) == TYPE_DECL)
13540 else if (TREE_CODE (fld) == CONST_DECL)
13542 else if (VAR_P (fld))
13544 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13546 else if (TREE_CODE (fld) == USING_DECL)
13548 else if (TREE_CODE (fld) == FUNCTION_DECL)
13550 else
13552 error ("Wrong tree in TYPE_FIELDS list");
13553 debug_tree (fld);
13554 error_found = true;
13558 else if (TREE_CODE (t) == INTEGER_TYPE
13559 || TREE_CODE (t) == BOOLEAN_TYPE
13560 || TREE_CODE (t) == OFFSET_TYPE
13561 || TREE_CODE (t) == REFERENCE_TYPE
13562 || TREE_CODE (t) == NULLPTR_TYPE
13563 || TREE_CODE (t) == POINTER_TYPE)
13565 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13567 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13568 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13569 error_found = true;
13571 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13573 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13574 debug_tree (TYPE_CACHED_VALUES (t));
13575 error_found = true;
13577 /* Verify just enough of cache to ensure that no one copied it to new type.
13578 All copying should go by copy_node that should clear it. */
13579 else if (TYPE_CACHED_VALUES_P (t))
13581 int i;
13582 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13583 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13584 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13586 error ("wrong TYPE_CACHED_VALUES entry");
13587 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13588 error_found = true;
13589 break;
13593 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13594 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13596 /* C++ FE uses TREE_PURPOSE to store initial values. */
13597 if (TREE_PURPOSE (l) && in_lto_p)
13599 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13600 debug_tree (l);
13601 error_found = true;
13603 if (!TYPE_P (TREE_VALUE (l)))
13605 error ("Wrong entry in TYPE_ARG_TYPES list");
13606 debug_tree (l);
13607 error_found = true;
13610 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13612 error ("TYPE_VALUES_RAW field is non-NULL");
13613 debug_tree (TYPE_VALUES_RAW (t));
13614 error_found = true;
13616 if (TREE_CODE (t) != INTEGER_TYPE
13617 && TREE_CODE (t) != BOOLEAN_TYPE
13618 && TREE_CODE (t) != OFFSET_TYPE
13619 && TREE_CODE (t) != REFERENCE_TYPE
13620 && TREE_CODE (t) != NULLPTR_TYPE
13621 && TREE_CODE (t) != POINTER_TYPE
13622 && TYPE_CACHED_VALUES_P (t))
13624 error ("TYPE_CACHED_VALUES_P is set while it should not");
13625 error_found = true;
13627 if (TYPE_STRING_FLAG (t)
13628 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13630 error ("TYPE_STRING_FLAG is set on wrong type code");
13631 error_found = true;
13634 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13635 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13636 of a type. */
13637 if (TREE_CODE (t) == METHOD_TYPE
13638 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13640 error ("TYPE_METHOD_BASETYPE is not main variant");
13641 error_found = true;
13644 if (error_found)
13646 debug_tree (const_cast <tree> (t));
13647 internal_error ("verify_type failed");
13652 /* Return 1 if ARG interpreted as signed in its precision is known to be
13653 always positive or 2 if ARG is known to be always negative, or 3 if
13654 ARG may be positive or negative. */
13657 get_range_pos_neg (tree arg)
13659 if (arg == error_mark_node)
13660 return 3;
13662 int prec = TYPE_PRECISION (TREE_TYPE (arg));
13663 int cnt = 0;
13664 if (TREE_CODE (arg) == INTEGER_CST)
13666 wide_int w = wi::sext (wi::to_wide (arg), prec);
13667 if (wi::neg_p (w))
13668 return 2;
13669 else
13670 return 1;
13672 while (CONVERT_EXPR_P (arg)
13673 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
13674 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg, 0))) <= prec)
13676 arg = TREE_OPERAND (arg, 0);
13677 /* Narrower value zero extended into wider type
13678 will always result in positive values. */
13679 if (TYPE_UNSIGNED (TREE_TYPE (arg))
13680 && TYPE_PRECISION (TREE_TYPE (arg)) < prec)
13681 return 1;
13682 prec = TYPE_PRECISION (TREE_TYPE (arg));
13683 if (++cnt > 30)
13684 return 3;
13687 if (TREE_CODE (arg) != SSA_NAME)
13688 return 3;
13689 wide_int arg_min, arg_max;
13690 while (get_range_info (arg, &arg_min, &arg_max) != VR_RANGE)
13692 gimple *g = SSA_NAME_DEF_STMT (arg);
13693 if (is_gimple_assign (g)
13694 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g)))
13696 tree t = gimple_assign_rhs1 (g);
13697 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
13698 && TYPE_PRECISION (TREE_TYPE (t)) <= prec)
13700 if (TYPE_UNSIGNED (TREE_TYPE (t))
13701 && TYPE_PRECISION (TREE_TYPE (t)) < prec)
13702 return 1;
13703 prec = TYPE_PRECISION (TREE_TYPE (t));
13704 arg = t;
13705 if (++cnt > 30)
13706 return 3;
13707 continue;
13710 return 3;
13712 if (TYPE_UNSIGNED (TREE_TYPE (arg)))
13714 /* For unsigned values, the "positive" range comes
13715 below the "negative" range. */
13716 if (!wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13717 return 1;
13718 if (wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13719 return 2;
13721 else
13723 if (!wi::neg_p (wi::sext (arg_min, prec), SIGNED))
13724 return 1;
13725 if (wi::neg_p (wi::sext (arg_max, prec), SIGNED))
13726 return 2;
13728 return 3;
13734 /* Return true if ARG is marked with the nonnull attribute in the
13735 current function signature. */
13737 bool
13738 nonnull_arg_p (const_tree arg)
13740 tree t, attrs, fntype;
13741 unsigned HOST_WIDE_INT arg_num;
13743 gcc_assert (TREE_CODE (arg) == PARM_DECL
13744 && (POINTER_TYPE_P (TREE_TYPE (arg))
13745 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
13747 /* The static chain decl is always non null. */
13748 if (arg == cfun->static_chain_decl)
13749 return true;
13751 /* THIS argument of method is always non-NULL. */
13752 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
13753 && arg == DECL_ARGUMENTS (cfun->decl)
13754 && flag_delete_null_pointer_checks)
13755 return true;
13757 /* Values passed by reference are always non-NULL. */
13758 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
13759 && flag_delete_null_pointer_checks)
13760 return true;
13762 fntype = TREE_TYPE (cfun->decl);
13763 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
13765 attrs = lookup_attribute ("nonnull", attrs);
13767 /* If "nonnull" wasn't specified, we know nothing about the argument. */
13768 if (attrs == NULL_TREE)
13769 return false;
13771 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
13772 if (TREE_VALUE (attrs) == NULL_TREE)
13773 return true;
13775 /* Get the position number for ARG in the function signature. */
13776 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
13778 t = DECL_CHAIN (t), arg_num++)
13780 if (t == arg)
13781 break;
13784 gcc_assert (t == arg);
13786 /* Now see if ARG_NUM is mentioned in the nonnull list. */
13787 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
13789 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
13790 return true;
13794 return false;
13797 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
13798 information. */
13800 location_t
13801 set_block (location_t loc, tree block)
13803 location_t pure_loc = get_pure_location (loc);
13804 source_range src_range = get_range_from_loc (line_table, loc);
13805 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
13808 location_t
13809 set_source_range (tree expr, location_t start, location_t finish)
13811 source_range src_range;
13812 src_range.m_start = start;
13813 src_range.m_finish = finish;
13814 return set_source_range (expr, src_range);
13817 location_t
13818 set_source_range (tree expr, source_range src_range)
13820 if (!EXPR_P (expr))
13821 return UNKNOWN_LOCATION;
13823 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
13824 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
13825 pure_loc,
13826 src_range,
13827 NULL);
13828 SET_EXPR_LOCATION (expr, adhoc);
13829 return adhoc;
13832 /* Return the name of combined function FN, for debugging purposes. */
13834 const char *
13835 combined_fn_name (combined_fn fn)
13837 if (builtin_fn_p (fn))
13839 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
13840 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
13842 else
13843 return internal_fn_name (as_internal_fn (fn));
13846 /* Return a bitmap with a bit set corresponding to each argument in
13847 a function call type FNTYPE declared with attribute nonnull,
13848 or null if none of the function's argument are nonnull. The caller
13849 must free the bitmap. */
13851 bitmap
13852 get_nonnull_args (const_tree fntype)
13854 if (fntype == NULL_TREE)
13855 return NULL;
13857 tree attrs = TYPE_ATTRIBUTES (fntype);
13858 if (!attrs)
13859 return NULL;
13861 bitmap argmap = NULL;
13863 /* A function declaration can specify multiple attribute nonnull,
13864 each with zero or more arguments. The loop below creates a bitmap
13865 representing a union of all the arguments. An empty (but non-null)
13866 bitmap means that all arguments have been declaraed nonnull. */
13867 for ( ; attrs; attrs = TREE_CHAIN (attrs))
13869 attrs = lookup_attribute ("nonnull", attrs);
13870 if (!attrs)
13871 break;
13873 if (!argmap)
13874 argmap = BITMAP_ALLOC (NULL);
13876 if (!TREE_VALUE (attrs))
13878 /* Clear the bitmap in case a previous attribute nonnull
13879 set it and this one overrides it for all arguments. */
13880 bitmap_clear (argmap);
13881 return argmap;
13884 /* Iterate over the indices of the format arguments declared nonnull
13885 and set a bit for each. */
13886 for (tree idx = TREE_VALUE (attrs); idx; idx = TREE_CHAIN (idx))
13888 unsigned int val = TREE_INT_CST_LOW (TREE_VALUE (idx)) - 1;
13889 bitmap_set_bit (argmap, val);
13893 return argmap;
13896 /* Returns true if TYPE is a type where it and all of its subobjects
13897 (recursively) are of structure, union, or array type. */
13899 static bool
13900 default_is_empty_type (tree type)
13902 if (RECORD_OR_UNION_TYPE_P (type))
13904 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
13905 if (TREE_CODE (field) == FIELD_DECL
13906 && !DECL_PADDING_P (field)
13907 && !default_is_empty_type (TREE_TYPE (field)))
13908 return false;
13909 return true;
13911 else if (TREE_CODE (type) == ARRAY_TYPE)
13912 return (integer_minus_onep (array_type_nelts (type))
13913 || TYPE_DOMAIN (type) == NULL_TREE
13914 || default_is_empty_type (TREE_TYPE (type)));
13915 return false;
13918 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
13919 that shouldn't be passed via stack. */
13921 bool
13922 default_is_empty_record (const_tree type)
13924 if (!abi_version_at_least (12))
13925 return false;
13927 if (type == error_mark_node)
13928 return false;
13930 if (TREE_ADDRESSABLE (type))
13931 return false;
13933 return default_is_empty_type (TYPE_MAIN_VARIANT (type));
13936 /* Like int_size_in_bytes, but handle empty records specially. */
13938 HOST_WIDE_INT
13939 arg_int_size_in_bytes (const_tree type)
13941 return TYPE_EMPTY_P (type) ? 0 : int_size_in_bytes (type);
13944 /* Like size_in_bytes, but handle empty records specially. */
13946 tree
13947 arg_size_in_bytes (const_tree type)
13949 return TYPE_EMPTY_P (type) ? size_zero_node : size_in_bytes (type);
13952 /* Return true if an expression with CODE has to have the same result type as
13953 its first operand. */
13955 bool
13956 expr_type_first_operand_type_p (tree_code code)
13958 switch (code)
13960 case NEGATE_EXPR:
13961 case ABS_EXPR:
13962 case BIT_NOT_EXPR:
13963 case PAREN_EXPR:
13964 case CONJ_EXPR:
13966 case PLUS_EXPR:
13967 case MINUS_EXPR:
13968 case MULT_EXPR:
13969 case TRUNC_DIV_EXPR:
13970 case CEIL_DIV_EXPR:
13971 case FLOOR_DIV_EXPR:
13972 case ROUND_DIV_EXPR:
13973 case TRUNC_MOD_EXPR:
13974 case CEIL_MOD_EXPR:
13975 case FLOOR_MOD_EXPR:
13976 case ROUND_MOD_EXPR:
13977 case RDIV_EXPR:
13978 case EXACT_DIV_EXPR:
13979 case MIN_EXPR:
13980 case MAX_EXPR:
13981 case BIT_IOR_EXPR:
13982 case BIT_XOR_EXPR:
13983 case BIT_AND_EXPR:
13985 case LSHIFT_EXPR:
13986 case RSHIFT_EXPR:
13987 case LROTATE_EXPR:
13988 case RROTATE_EXPR:
13989 return true;
13991 default:
13992 return false;
13996 /* List of pointer types used to declare builtins before we have seen their
13997 real declaration.
13999 Keep the size up to date in tree.h ! */
14000 const builtin_structptr_type builtin_structptr_types[6] =
14002 { fileptr_type_node, ptr_type_node, "FILE" },
14003 { const_tm_ptr_type_node, const_ptr_type_node, "tm" },
14004 { fenv_t_ptr_type_node, ptr_type_node, "fenv_t" },
14005 { const_fenv_t_ptr_type_node, const_ptr_type_node, "fenv_t" },
14006 { fexcept_t_ptr_type_node, ptr_type_node, "fexcept_t" },
14007 { const_fexcept_t_ptr_type_node, const_ptr_type_node, "fexcept_t" }
14010 #if CHECKING_P
14012 namespace selftest {
14014 /* Selftests for tree. */
14016 /* Verify that integer constants are sane. */
14018 static void
14019 test_integer_constants ()
14021 ASSERT_TRUE (integer_type_node != NULL);
14022 ASSERT_TRUE (build_int_cst (integer_type_node, 0) != NULL);
14024 tree type = integer_type_node;
14026 tree zero = build_zero_cst (type);
14027 ASSERT_EQ (INTEGER_CST, TREE_CODE (zero));
14028 ASSERT_EQ (type, TREE_TYPE (zero));
14030 tree one = build_int_cst (type, 1);
14031 ASSERT_EQ (INTEGER_CST, TREE_CODE (one));
14032 ASSERT_EQ (type, TREE_TYPE (zero));
14035 /* Verify identifiers. */
14037 static void
14038 test_identifiers ()
14040 tree identifier = get_identifier ("foo");
14041 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier));
14042 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier));
14045 /* Verify LABEL_DECL. */
14047 static void
14048 test_labels ()
14050 tree identifier = get_identifier ("err");
14051 tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
14052 identifier, void_type_node);
14053 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl));
14054 ASSERT_FALSE (FORCED_LABEL (label_decl));
14057 /* Return a new VECTOR_CST node whose type is TYPE and whose values
14058 are given by VALS. */
14060 static tree
14061 build_vector (tree type, vec<tree> vals MEM_STAT_DECL)
14063 gcc_assert (vals.length () == TYPE_VECTOR_SUBPARTS (type));
14064 tree_vector_builder builder (type, vals.length (), 1);
14065 builder.splice (vals);
14066 return builder.build ();
14069 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
14071 static void
14072 check_vector_cst (vec<tree> expected, tree actual)
14074 ASSERT_EQ (expected.length (), TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual)));
14075 for (unsigned int i = 0; i < expected.length (); ++i)
14076 ASSERT_EQ (wi::to_wide (expected[i]),
14077 wi::to_wide (vector_cst_elt (actual, i)));
14080 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
14081 and that its elements match EXPECTED. */
14083 static void
14084 check_vector_cst_duplicate (vec<tree> expected, tree actual,
14085 unsigned int npatterns)
14087 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14088 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual));
14089 ASSERT_EQ (npatterns, vector_cst_encoded_nelts (actual));
14090 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual));
14091 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14092 check_vector_cst (expected, actual);
14095 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
14096 and NPATTERNS background elements, and that its elements match
14097 EXPECTED. */
14099 static void
14100 check_vector_cst_fill (vec<tree> expected, tree actual,
14101 unsigned int npatterns)
14103 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14104 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual));
14105 ASSERT_EQ (2 * npatterns, vector_cst_encoded_nelts (actual));
14106 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14107 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual));
14108 check_vector_cst (expected, actual);
14111 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
14112 and that its elements match EXPECTED. */
14114 static void
14115 check_vector_cst_stepped (vec<tree> expected, tree actual,
14116 unsigned int npatterns)
14118 ASSERT_EQ (npatterns, VECTOR_CST_NPATTERNS (actual));
14119 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual));
14120 ASSERT_EQ (3 * npatterns, vector_cst_encoded_nelts (actual));
14121 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual));
14122 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual));
14123 check_vector_cst (expected, actual);
14126 /* Test the creation of VECTOR_CSTs. */
14128 static void
14129 test_vector_cst_patterns ()
14131 auto_vec<tree, 8> elements (8);
14132 elements.quick_grow (8);
14133 tree element_type = build_nonstandard_integer_type (16, true);
14134 tree vector_type = build_vector_type (element_type, 8);
14136 /* Test a simple linear series with a base of 0 and a step of 1:
14137 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
14138 for (unsigned int i = 0; i < 8; ++i)
14139 elements[i] = build_int_cst (element_type, i);
14140 check_vector_cst_stepped (elements, build_vector (vector_type, elements), 1);
14142 /* Try the same with the first element replaced by 100:
14143 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
14144 elements[0] = build_int_cst (element_type, 100);
14145 check_vector_cst_stepped (elements, build_vector (vector_type, elements), 1);
14147 /* Try a series that wraps around.
14148 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
14149 for (unsigned int i = 1; i < 8; ++i)
14150 elements[i] = build_int_cst (element_type, (65530 + i) & 0xffff);
14151 check_vector_cst_stepped (elements, build_vector (vector_type, elements), 1);
14153 /* Try a downward series:
14154 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
14155 for (unsigned int i = 1; i < 8; ++i)
14156 elements[i] = build_int_cst (element_type, 80 - i);
14157 check_vector_cst_stepped (elements, build_vector (vector_type, elements), 1);
14159 /* Try two interleaved series with different bases and steps:
14160 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
14161 elements[1] = build_int_cst (element_type, 53);
14162 for (unsigned int i = 2; i < 8; i += 2)
14164 elements[i] = build_int_cst (element_type, 70 - i * 2);
14165 elements[i + 1] = build_int_cst (element_type, 200 + i * 3);
14167 check_vector_cst_stepped (elements, build_vector (vector_type, elements), 2);
14169 /* Try a duplicated value:
14170 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
14171 for (unsigned int i = 1; i < 8; ++i)
14172 elements[i] = elements[0];
14173 check_vector_cst_duplicate (elements,
14174 build_vector (vector_type, elements), 1);
14176 /* Try an interleaved duplicated value:
14177 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
14178 elements[1] = build_int_cst (element_type, 55);
14179 for (unsigned int i = 2; i < 8; ++i)
14180 elements[i] = elements[i - 2];
14181 check_vector_cst_duplicate (elements,
14182 build_vector (vector_type, elements), 2);
14184 /* Try a duplicated value with 2 exceptions
14185 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
14186 elements[0] = build_int_cst (element_type, 41);
14187 elements[1] = build_int_cst (element_type, 97);
14188 check_vector_cst_fill (elements, build_vector (vector_type, elements), 2);
14190 /* Try with and without a step
14191 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
14192 for (unsigned int i = 3; i < 8; i += 2)
14193 elements[i] = build_int_cst (element_type, i * 7);
14194 check_vector_cst_stepped (elements, build_vector (vector_type, elements), 2);
14196 /* Try a fully-general constant:
14197 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
14198 elements[5] = build_int_cst (element_type, 9990);
14199 check_vector_cst_fill (elements, build_vector (vector_type, elements), 4);
14202 /* Run all of the selftests within this file. */
14204 void
14205 tree_c_tests ()
14207 test_integer_constants ();
14208 test_identifiers ();
14209 test_labels ();
14210 test_vector_cst_patterns ();
14213 } // namespace selftest
14215 #endif /* CHECKING_P */
14217 #include "gt-tree.h"