* gcc.dg/vmx/unpack.c: Use dg-additional-options rather than
[official-gcc.git] / gcc / tree.c
blob94263af9a15511fc6812ab28aada2b1f71dc1a6d
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2015 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 "tree.h"
35 #include "gimple.h"
36 #include "rtl.h"
37 #include "ssa.h"
38 #include "flags.h"
39 #include "alias.h"
40 #include "fold-const.h"
41 #include "stor-layout.h"
42 #include "calls.h"
43 #include "attribs.h"
44 #include "varasm.h"
45 #include "tm_p.h"
46 #include "toplev.h" /* get_random_seed */
47 #include "filenames.h"
48 #include "output.h"
49 #include "target.h"
50 #include "common/common-target.h"
51 #include "langhooks.h"
52 #include "tree-inline.h"
53 #include "tree-iterator.h"
54 #include "internal-fn.h"
55 #include "gimple-iterator.h"
56 #include "gimplify.h"
57 #include "cgraph.h"
58 #include "insn-config.h"
59 #include "expmed.h"
60 #include "dojump.h"
61 #include "explow.h"
62 #include "emit-rtl.h"
63 #include "stmt.h"
64 #include "expr.h"
65 #include "tree-dfa.h"
66 #include "params.h"
67 #include "tree-pass.h"
68 #include "langhooks-def.h"
69 #include "diagnostic.h"
70 #include "tree-diagnostic.h"
71 #include "tree-pretty-print.h"
72 #include "except.h"
73 #include "debug.h"
74 #include "intl.h"
75 #include "builtins.h"
76 #include "print-tree.h"
77 #include "ipa-utils.h"
79 /* Tree code classes. */
81 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
82 #define END_OF_BASE_TREE_CODES tcc_exceptional,
84 const enum tree_code_class tree_code_type[] = {
85 #include "all-tree.def"
88 #undef DEFTREECODE
89 #undef END_OF_BASE_TREE_CODES
91 /* Table indexed by tree code giving number of expression
92 operands beyond the fixed part of the node structure.
93 Not used for types or decls. */
95 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
96 #define END_OF_BASE_TREE_CODES 0,
98 const unsigned char tree_code_length[] = {
99 #include "all-tree.def"
102 #undef DEFTREECODE
103 #undef END_OF_BASE_TREE_CODES
105 /* Names of tree components.
106 Used for printing out the tree and error messages. */
107 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
108 #define END_OF_BASE_TREE_CODES "@dummy",
110 static const char *const tree_code_name[] = {
111 #include "all-tree.def"
114 #undef DEFTREECODE
115 #undef END_OF_BASE_TREE_CODES
117 /* Each tree code class has an associated string representation.
118 These must correspond to the tree_code_class entries. */
120 const char *const tree_code_class_strings[] =
122 "exceptional",
123 "constant",
124 "type",
125 "declaration",
126 "reference",
127 "comparison",
128 "unary",
129 "binary",
130 "statement",
131 "vl_exp",
132 "expression"
135 /* obstack.[ch] explicitly declined to prototype this. */
136 extern int _obstack_allocated_p (struct obstack *h, void *obj);
138 /* Statistics-gathering stuff. */
140 static int tree_code_counts[MAX_TREE_CODES];
141 int tree_node_counts[(int) all_kinds];
142 int tree_node_sizes[(int) all_kinds];
144 /* Keep in sync with tree.h:enum tree_node_kind. */
145 static const char * const tree_node_kind_names[] = {
146 "decls",
147 "types",
148 "blocks",
149 "stmts",
150 "refs",
151 "exprs",
152 "constants",
153 "identifiers",
154 "vecs",
155 "binfos",
156 "ssa names",
157 "constructors",
158 "random kinds",
159 "lang_decl kinds",
160 "lang_type kinds",
161 "omp clauses",
164 /* Unique id for next decl created. */
165 static GTY(()) int next_decl_uid;
166 /* Unique id for next type created. */
167 static GTY(()) int next_type_uid = 1;
168 /* Unique id for next debug decl created. Use negative numbers,
169 to catch erroneous uses. */
170 static GTY(()) int next_debug_decl_uid;
172 /* Since we cannot rehash a type after it is in the table, we have to
173 keep the hash code. */
175 struct GTY((for_user)) type_hash {
176 unsigned long hash;
177 tree type;
180 /* Initial size of the hash table (rounded to next prime). */
181 #define TYPE_HASH_INITIAL_SIZE 1000
183 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
185 static hashval_t hash (type_hash *t) { return t->hash; }
186 static bool equal (type_hash *a, type_hash *b);
188 static int
189 keep_cache_entry (type_hash *&t)
191 return ggc_marked_p (t->type);
195 /* Now here is the hash table. When recording a type, it is added to
196 the slot whose index is the hash code. Note that the hash table is
197 used for several kinds of types (function types, array types and
198 array index range types, for now). While all these live in the
199 same table, they are completely independent, and the hash code is
200 computed differently for each of these. */
202 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
204 /* Hash table and temporary node for larger integer const values. */
205 static GTY (()) tree int_cst_node;
207 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
209 static hashval_t hash (tree t);
210 static bool equal (tree x, tree y);
213 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
215 /* Hash table for optimization flags and target option flags. Use the same
216 hash table for both sets of options. Nodes for building the current
217 optimization and target option nodes. The assumption is most of the time
218 the options created will already be in the hash table, so we avoid
219 allocating and freeing up a node repeatably. */
220 static GTY (()) tree cl_optimization_node;
221 static GTY (()) tree cl_target_option_node;
223 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
225 static hashval_t hash (tree t);
226 static bool equal (tree x, tree y);
229 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
231 /* General tree->tree mapping structure for use in hash tables. */
234 static GTY ((cache))
235 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
237 static GTY ((cache))
238 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
240 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
242 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
244 static bool
245 equal (tree_vec_map *a, tree_vec_map *b)
247 return a->base.from == b->base.from;
250 static int
251 keep_cache_entry (tree_vec_map *&m)
253 return ggc_marked_p (m->base.from);
257 static GTY ((cache))
258 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
260 static void set_type_quals (tree, int);
261 static void print_type_hash_statistics (void);
262 static void print_debug_expr_statistics (void);
263 static void print_value_expr_statistics (void);
264 static void type_hash_list (const_tree, inchash::hash &);
265 static void attribute_hash_list (const_tree, inchash::hash &);
267 tree global_trees[TI_MAX];
268 tree integer_types[itk_none];
270 bool int_n_enabled_p[NUM_INT_N_ENTS];
271 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
273 unsigned char tree_contains_struct[MAX_TREE_CODES][64];
275 /* Number of operands for each OpenMP clause. */
276 unsigned const char omp_clause_num_ops[] =
278 0, /* OMP_CLAUSE_ERROR */
279 1, /* OMP_CLAUSE_PRIVATE */
280 1, /* OMP_CLAUSE_SHARED */
281 1, /* OMP_CLAUSE_FIRSTPRIVATE */
282 2, /* OMP_CLAUSE_LASTPRIVATE */
283 4, /* OMP_CLAUSE_REDUCTION */
284 1, /* OMP_CLAUSE_COPYIN */
285 1, /* OMP_CLAUSE_COPYPRIVATE */
286 3, /* OMP_CLAUSE_LINEAR */
287 2, /* OMP_CLAUSE_ALIGNED */
288 1, /* OMP_CLAUSE_DEPEND */
289 1, /* OMP_CLAUSE_UNIFORM */
290 2, /* OMP_CLAUSE_FROM */
291 2, /* OMP_CLAUSE_TO */
292 2, /* OMP_CLAUSE_MAP */
293 2, /* OMP_CLAUSE__CACHE_ */
294 1, /* OMP_CLAUSE_DEVICE_RESIDENT */
295 1, /* OMP_CLAUSE_USE_DEVICE */
296 2, /* OMP_CLAUSE_GANG */
297 1, /* OMP_CLAUSE_ASYNC */
298 1, /* OMP_CLAUSE_WAIT */
299 0, /* OMP_CLAUSE_AUTO */
300 0, /* OMP_CLAUSE_SEQ */
301 1, /* OMP_CLAUSE__LOOPTEMP_ */
302 1, /* OMP_CLAUSE_IF */
303 1, /* OMP_CLAUSE_NUM_THREADS */
304 1, /* OMP_CLAUSE_SCHEDULE */
305 0, /* OMP_CLAUSE_NOWAIT */
306 0, /* OMP_CLAUSE_ORDERED */
307 0, /* OMP_CLAUSE_DEFAULT */
308 3, /* OMP_CLAUSE_COLLAPSE */
309 0, /* OMP_CLAUSE_UNTIED */
310 1, /* OMP_CLAUSE_FINAL */
311 0, /* OMP_CLAUSE_MERGEABLE */
312 1, /* OMP_CLAUSE_DEVICE */
313 1, /* OMP_CLAUSE_DIST_SCHEDULE */
314 0, /* OMP_CLAUSE_INBRANCH */
315 0, /* OMP_CLAUSE_NOTINBRANCH */
316 1, /* OMP_CLAUSE_NUM_TEAMS */
317 1, /* OMP_CLAUSE_THREAD_LIMIT */
318 0, /* OMP_CLAUSE_PROC_BIND */
319 1, /* OMP_CLAUSE_SAFELEN */
320 1, /* OMP_CLAUSE_SIMDLEN */
321 0, /* OMP_CLAUSE_FOR */
322 0, /* OMP_CLAUSE_PARALLEL */
323 0, /* OMP_CLAUSE_SECTIONS */
324 0, /* OMP_CLAUSE_TASKGROUP */
325 1, /* OMP_CLAUSE__SIMDUID_ */
326 1, /* OMP_CLAUSE__CILK_FOR_COUNT_ */
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 */
335 const char * const omp_clause_code_name[] =
337 "error_clause",
338 "private",
339 "shared",
340 "firstprivate",
341 "lastprivate",
342 "reduction",
343 "copyin",
344 "copyprivate",
345 "linear",
346 "aligned",
347 "depend",
348 "uniform",
349 "from",
350 "to",
351 "map",
352 "_cache_",
353 "device_resident",
354 "use_device",
355 "gang",
356 "async",
357 "wait",
358 "auto",
359 "seq",
360 "_looptemp_",
361 "if",
362 "num_threads",
363 "schedule",
364 "nowait",
365 "ordered",
366 "default",
367 "collapse",
368 "untied",
369 "final",
370 "mergeable",
371 "device",
372 "dist_schedule",
373 "inbranch",
374 "notinbranch",
375 "num_teams",
376 "thread_limit",
377 "proc_bind",
378 "safelen",
379 "simdlen",
380 "for",
381 "parallel",
382 "sections",
383 "taskgroup",
384 "_simduid_",
385 "_Cilk_for_count_",
386 "independent",
387 "worker",
388 "vector",
389 "num_gangs",
390 "num_workers",
391 "vector_length"
395 /* Return the tree node structure used by tree code CODE. */
397 static inline enum tree_node_structure_enum
398 tree_node_structure_for_code (enum tree_code code)
400 switch (TREE_CODE_CLASS (code))
402 case tcc_declaration:
404 switch (code)
406 case FIELD_DECL:
407 return TS_FIELD_DECL;
408 case PARM_DECL:
409 return TS_PARM_DECL;
410 case VAR_DECL:
411 return TS_VAR_DECL;
412 case LABEL_DECL:
413 return TS_LABEL_DECL;
414 case RESULT_DECL:
415 return TS_RESULT_DECL;
416 case DEBUG_EXPR_DECL:
417 return TS_DECL_WRTL;
418 case CONST_DECL:
419 return TS_CONST_DECL;
420 case TYPE_DECL:
421 return TS_TYPE_DECL;
422 case FUNCTION_DECL:
423 return TS_FUNCTION_DECL;
424 case TRANSLATION_UNIT_DECL:
425 return TS_TRANSLATION_UNIT_DECL;
426 default:
427 return TS_DECL_NON_COMMON;
430 case tcc_type:
431 return TS_TYPE_NON_COMMON;
432 case tcc_reference:
433 case tcc_comparison:
434 case tcc_unary:
435 case tcc_binary:
436 case tcc_expression:
437 case tcc_statement:
438 case tcc_vl_exp:
439 return TS_EXP;
440 default: /* tcc_constant and tcc_exceptional */
441 break;
443 switch (code)
445 /* tcc_constant cases. */
446 case VOID_CST: return TS_TYPED;
447 case INTEGER_CST: return TS_INT_CST;
448 case REAL_CST: return TS_REAL_CST;
449 case FIXED_CST: return TS_FIXED_CST;
450 case COMPLEX_CST: return TS_COMPLEX;
451 case VECTOR_CST: return TS_VECTOR;
452 case STRING_CST: return TS_STRING;
453 /* tcc_exceptional cases. */
454 case ERROR_MARK: return TS_COMMON;
455 case IDENTIFIER_NODE: return TS_IDENTIFIER;
456 case TREE_LIST: return TS_LIST;
457 case TREE_VEC: return TS_VEC;
458 case SSA_NAME: return TS_SSA_NAME;
459 case PLACEHOLDER_EXPR: return TS_COMMON;
460 case STATEMENT_LIST: return TS_STATEMENT_LIST;
461 case BLOCK: return TS_BLOCK;
462 case CONSTRUCTOR: return TS_CONSTRUCTOR;
463 case TREE_BINFO: return TS_BINFO;
464 case OMP_CLAUSE: return TS_OMP_CLAUSE;
465 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
466 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
468 default:
469 gcc_unreachable ();
474 /* Initialize tree_contains_struct to describe the hierarchy of tree
475 nodes. */
477 static void
478 initialize_tree_contains_struct (void)
480 unsigned i;
482 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
484 enum tree_code code;
485 enum tree_node_structure_enum ts_code;
487 code = (enum tree_code) i;
488 ts_code = tree_node_structure_for_code (code);
490 /* Mark the TS structure itself. */
491 tree_contains_struct[code][ts_code] = 1;
493 /* Mark all the structures that TS is derived from. */
494 switch (ts_code)
496 case TS_TYPED:
497 case TS_BLOCK:
498 MARK_TS_BASE (code);
499 break;
501 case TS_COMMON:
502 case TS_INT_CST:
503 case TS_REAL_CST:
504 case TS_FIXED_CST:
505 case TS_VECTOR:
506 case TS_STRING:
507 case TS_COMPLEX:
508 case TS_SSA_NAME:
509 case TS_CONSTRUCTOR:
510 case TS_EXP:
511 case TS_STATEMENT_LIST:
512 MARK_TS_TYPED (code);
513 break;
515 case TS_IDENTIFIER:
516 case TS_DECL_MINIMAL:
517 case TS_TYPE_COMMON:
518 case TS_LIST:
519 case TS_VEC:
520 case TS_BINFO:
521 case TS_OMP_CLAUSE:
522 case TS_OPTIMIZATION:
523 case TS_TARGET_OPTION:
524 MARK_TS_COMMON (code);
525 break;
527 case TS_TYPE_WITH_LANG_SPECIFIC:
528 MARK_TS_TYPE_COMMON (code);
529 break;
531 case TS_TYPE_NON_COMMON:
532 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
533 break;
535 case TS_DECL_COMMON:
536 MARK_TS_DECL_MINIMAL (code);
537 break;
539 case TS_DECL_WRTL:
540 case TS_CONST_DECL:
541 MARK_TS_DECL_COMMON (code);
542 break;
544 case TS_DECL_NON_COMMON:
545 MARK_TS_DECL_WITH_VIS (code);
546 break;
548 case TS_DECL_WITH_VIS:
549 case TS_PARM_DECL:
550 case TS_LABEL_DECL:
551 case TS_RESULT_DECL:
552 MARK_TS_DECL_WRTL (code);
553 break;
555 case TS_FIELD_DECL:
556 MARK_TS_DECL_COMMON (code);
557 break;
559 case TS_VAR_DECL:
560 MARK_TS_DECL_WITH_VIS (code);
561 break;
563 case TS_TYPE_DECL:
564 case TS_FUNCTION_DECL:
565 MARK_TS_DECL_NON_COMMON (code);
566 break;
568 case TS_TRANSLATION_UNIT_DECL:
569 MARK_TS_DECL_COMMON (code);
570 break;
572 default:
573 gcc_unreachable ();
577 /* Basic consistency checks for attributes used in fold. */
578 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
579 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
580 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
581 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
582 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
583 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
584 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
585 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
586 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
587 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
588 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
589 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
590 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
591 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
592 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
593 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
594 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
595 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
596 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
597 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
598 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
599 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
600 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
601 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
602 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
603 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
604 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
605 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
606 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
607 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
608 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
609 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
610 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
611 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
612 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
613 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
614 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
615 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
616 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
617 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
621 /* Init tree.c. */
623 void
624 init_ttree (void)
626 /* Initialize the hash table of types. */
627 type_hash_table
628 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
630 debug_expr_for_decl
631 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
633 value_expr_for_decl
634 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
636 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
638 int_cst_node = make_int_cst (1, 1);
640 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
642 cl_optimization_node = make_node (OPTIMIZATION_NODE);
643 cl_target_option_node = make_node (TARGET_OPTION_NODE);
645 /* Initialize the tree_contains_struct array. */
646 initialize_tree_contains_struct ();
647 lang_hooks.init_ts ();
651 /* The name of the object as the assembler will see it (but before any
652 translations made by ASM_OUTPUT_LABELREF). Often this is the same
653 as DECL_NAME. It is an IDENTIFIER_NODE. */
654 tree
655 decl_assembler_name (tree decl)
657 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
658 lang_hooks.set_decl_assembler_name (decl);
659 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
662 /* When the target supports COMDAT groups, this indicates which group the
663 DECL is associated with. This can be either an IDENTIFIER_NODE or a
664 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
665 tree
666 decl_comdat_group (const_tree node)
668 struct symtab_node *snode = symtab_node::get (node);
669 if (!snode)
670 return NULL;
671 return snode->get_comdat_group ();
674 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
675 tree
676 decl_comdat_group_id (const_tree node)
678 struct symtab_node *snode = symtab_node::get (node);
679 if (!snode)
680 return NULL;
681 return snode->get_comdat_group_id ();
684 /* When the target supports named section, return its name as IDENTIFIER_NODE
685 or NULL if it is in no section. */
686 const char *
687 decl_section_name (const_tree node)
689 struct symtab_node *snode = symtab_node::get (node);
690 if (!snode)
691 return NULL;
692 return snode->get_section ();
695 /* Set section name of NODE to VALUE (that is expected to be
696 identifier node) */
697 void
698 set_decl_section_name (tree node, const char *value)
700 struct symtab_node *snode;
702 if (value == NULL)
704 snode = symtab_node::get (node);
705 if (!snode)
706 return;
708 else if (TREE_CODE (node) == VAR_DECL)
709 snode = varpool_node::get_create (node);
710 else
711 snode = cgraph_node::get_create (node);
712 snode->set_section (value);
715 /* Return TLS model of a variable NODE. */
716 enum tls_model
717 decl_tls_model (const_tree node)
719 struct varpool_node *snode = varpool_node::get (node);
720 if (!snode)
721 return TLS_MODEL_NONE;
722 return snode->tls_model;
725 /* Set TLS model of variable NODE to MODEL. */
726 void
727 set_decl_tls_model (tree node, enum tls_model model)
729 struct varpool_node *vnode;
731 if (model == TLS_MODEL_NONE)
733 vnode = varpool_node::get (node);
734 if (!vnode)
735 return;
737 else
738 vnode = varpool_node::get_create (node);
739 vnode->tls_model = model;
742 /* Compute the number of bytes occupied by a tree with code CODE.
743 This function cannot be used for nodes that have variable sizes,
744 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
745 size_t
746 tree_code_size (enum tree_code code)
748 switch (TREE_CODE_CLASS (code))
750 case tcc_declaration: /* A decl node */
752 switch (code)
754 case FIELD_DECL:
755 return sizeof (struct tree_field_decl);
756 case PARM_DECL:
757 return sizeof (struct tree_parm_decl);
758 case VAR_DECL:
759 return sizeof (struct tree_var_decl);
760 case LABEL_DECL:
761 return sizeof (struct tree_label_decl);
762 case RESULT_DECL:
763 return sizeof (struct tree_result_decl);
764 case CONST_DECL:
765 return sizeof (struct tree_const_decl);
766 case TYPE_DECL:
767 return sizeof (struct tree_type_decl);
768 case FUNCTION_DECL:
769 return sizeof (struct tree_function_decl);
770 case DEBUG_EXPR_DECL:
771 return sizeof (struct tree_decl_with_rtl);
772 case TRANSLATION_UNIT_DECL:
773 return sizeof (struct tree_translation_unit_decl);
774 case NAMESPACE_DECL:
775 case IMPORTED_DECL:
776 case NAMELIST_DECL:
777 return sizeof (struct tree_decl_non_common);
778 default:
779 return lang_hooks.tree_size (code);
783 case tcc_type: /* a type node */
784 return sizeof (struct tree_type_non_common);
786 case tcc_reference: /* a reference */
787 case tcc_expression: /* an expression */
788 case tcc_statement: /* an expression with side effects */
789 case tcc_comparison: /* a comparison expression */
790 case tcc_unary: /* a unary arithmetic expression */
791 case tcc_binary: /* a binary arithmetic expression */
792 return (sizeof (struct tree_exp)
793 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
795 case tcc_constant: /* a constant */
796 switch (code)
798 case VOID_CST: return sizeof (struct tree_typed);
799 case INTEGER_CST: gcc_unreachable ();
800 case REAL_CST: return sizeof (struct tree_real_cst);
801 case FIXED_CST: return sizeof (struct tree_fixed_cst);
802 case COMPLEX_CST: return sizeof (struct tree_complex);
803 case VECTOR_CST: return sizeof (struct tree_vector);
804 case STRING_CST: gcc_unreachable ();
805 default:
806 return lang_hooks.tree_size (code);
809 case tcc_exceptional: /* something random, like an identifier. */
810 switch (code)
812 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
813 case TREE_LIST: return sizeof (struct tree_list);
815 case ERROR_MARK:
816 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
818 case TREE_VEC:
819 case OMP_CLAUSE: gcc_unreachable ();
821 case SSA_NAME: return sizeof (struct tree_ssa_name);
823 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
824 case BLOCK: return sizeof (struct tree_block);
825 case CONSTRUCTOR: return sizeof (struct tree_constructor);
826 case OPTIMIZATION_NODE: return sizeof (struct tree_optimization_option);
827 case TARGET_OPTION_NODE: return sizeof (struct tree_target_option);
829 default:
830 return lang_hooks.tree_size (code);
833 default:
834 gcc_unreachable ();
838 /* Compute the number of bytes occupied by NODE. This routine only
839 looks at TREE_CODE, except for those nodes that have variable sizes. */
840 size_t
841 tree_size (const_tree node)
843 const enum tree_code code = TREE_CODE (node);
844 switch (code)
846 case INTEGER_CST:
847 return (sizeof (struct tree_int_cst)
848 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
850 case TREE_BINFO:
851 return (offsetof (struct tree_binfo, base_binfos)
852 + vec<tree, va_gc>
853 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
855 case TREE_VEC:
856 return (sizeof (struct tree_vec)
857 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
859 case VECTOR_CST:
860 return (sizeof (struct tree_vector)
861 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node)) - 1) * sizeof (tree));
863 case STRING_CST:
864 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
866 case OMP_CLAUSE:
867 return (sizeof (struct tree_omp_clause)
868 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
869 * sizeof (tree));
871 default:
872 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
873 return (sizeof (struct tree_exp)
874 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
875 else
876 return tree_code_size (code);
880 /* Record interesting allocation statistics for a tree node with CODE
881 and LENGTH. */
883 static void
884 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED,
885 size_t length ATTRIBUTE_UNUSED)
887 enum tree_code_class type = TREE_CODE_CLASS (code);
888 tree_node_kind kind;
890 if (!GATHER_STATISTICS)
891 return;
893 switch (type)
895 case tcc_declaration: /* A decl node */
896 kind = d_kind;
897 break;
899 case tcc_type: /* a type node */
900 kind = t_kind;
901 break;
903 case tcc_statement: /* an expression with side effects */
904 kind = s_kind;
905 break;
907 case tcc_reference: /* a reference */
908 kind = r_kind;
909 break;
911 case tcc_expression: /* an expression */
912 case tcc_comparison: /* a comparison expression */
913 case tcc_unary: /* a unary arithmetic expression */
914 case tcc_binary: /* a binary arithmetic expression */
915 kind = e_kind;
916 break;
918 case tcc_constant: /* a constant */
919 kind = c_kind;
920 break;
922 case tcc_exceptional: /* something random, like an identifier. */
923 switch (code)
925 case IDENTIFIER_NODE:
926 kind = id_kind;
927 break;
929 case TREE_VEC:
930 kind = vec_kind;
931 break;
933 case TREE_BINFO:
934 kind = binfo_kind;
935 break;
937 case SSA_NAME:
938 kind = ssa_name_kind;
939 break;
941 case BLOCK:
942 kind = b_kind;
943 break;
945 case CONSTRUCTOR:
946 kind = constr_kind;
947 break;
949 case OMP_CLAUSE:
950 kind = omp_clause_kind;
951 break;
953 default:
954 kind = x_kind;
955 break;
957 break;
959 case tcc_vl_exp:
960 kind = e_kind;
961 break;
963 default:
964 gcc_unreachable ();
967 tree_code_counts[(int) code]++;
968 tree_node_counts[(int) kind]++;
969 tree_node_sizes[(int) kind] += length;
972 /* Allocate and return a new UID from the DECL_UID namespace. */
975 allocate_decl_uid (void)
977 return next_decl_uid++;
980 /* Return a newly allocated node of code CODE. For decl and type
981 nodes, some other fields are initialized. The rest of the node is
982 initialized to zero. This function cannot be used for TREE_VEC,
983 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
984 tree_code_size.
986 Achoo! I got a code in the node. */
988 tree
989 make_node_stat (enum tree_code code MEM_STAT_DECL)
991 tree t;
992 enum tree_code_class type = TREE_CODE_CLASS (code);
993 size_t length = tree_code_size (code);
995 record_node_allocation_statistics (code, length);
997 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
998 TREE_SET_CODE (t, code);
1000 switch (type)
1002 case tcc_statement:
1003 TREE_SIDE_EFFECTS (t) = 1;
1004 break;
1006 case tcc_declaration:
1007 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1009 if (code == FUNCTION_DECL)
1011 DECL_ALIGN (t) = FUNCTION_BOUNDARY;
1012 DECL_MODE (t) = FUNCTION_MODE;
1014 else
1015 DECL_ALIGN (t) = 1;
1017 DECL_SOURCE_LOCATION (t) = input_location;
1018 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1019 DECL_UID (t) = --next_debug_decl_uid;
1020 else
1022 DECL_UID (t) = allocate_decl_uid ();
1023 SET_DECL_PT_UID (t, -1);
1025 if (TREE_CODE (t) == LABEL_DECL)
1026 LABEL_DECL_UID (t) = -1;
1028 break;
1030 case tcc_type:
1031 TYPE_UID (t) = next_type_uid++;
1032 TYPE_ALIGN (t) = BITS_PER_UNIT;
1033 TYPE_USER_ALIGN (t) = 0;
1034 TYPE_MAIN_VARIANT (t) = t;
1035 TYPE_CANONICAL (t) = t;
1037 /* Default to no attributes for type, but let target change that. */
1038 TYPE_ATTRIBUTES (t) = NULL_TREE;
1039 targetm.set_default_type_attributes (t);
1041 /* We have not yet computed the alias set for this type. */
1042 TYPE_ALIAS_SET (t) = -1;
1043 break;
1045 case tcc_constant:
1046 TREE_CONSTANT (t) = 1;
1047 break;
1049 case tcc_expression:
1050 switch (code)
1052 case INIT_EXPR:
1053 case MODIFY_EXPR:
1054 case VA_ARG_EXPR:
1055 case PREDECREMENT_EXPR:
1056 case PREINCREMENT_EXPR:
1057 case POSTDECREMENT_EXPR:
1058 case POSTINCREMENT_EXPR:
1059 /* All of these have side-effects, no matter what their
1060 operands are. */
1061 TREE_SIDE_EFFECTS (t) = 1;
1062 break;
1064 default:
1065 break;
1067 break;
1069 case tcc_exceptional:
1070 switch (code)
1072 case TARGET_OPTION_NODE:
1073 TREE_TARGET_OPTION(t)
1074 = ggc_cleared_alloc<struct cl_target_option> ();
1075 break;
1077 case OPTIMIZATION_NODE:
1078 TREE_OPTIMIZATION (t)
1079 = ggc_cleared_alloc<struct cl_optimization> ();
1080 break;
1082 default:
1083 break;
1085 break;
1087 default:
1088 /* Other classes need no special treatment. */
1089 break;
1092 return t;
1095 /* Return a new node with the same contents as NODE except that its
1096 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1098 tree
1099 copy_node_stat (tree node MEM_STAT_DECL)
1101 tree t;
1102 enum tree_code code = TREE_CODE (node);
1103 size_t length;
1105 gcc_assert (code != STATEMENT_LIST);
1107 length = tree_size (node);
1108 record_node_allocation_statistics (code, length);
1109 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1110 memcpy (t, node, length);
1112 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1113 TREE_CHAIN (t) = 0;
1114 TREE_ASM_WRITTEN (t) = 0;
1115 TREE_VISITED (t) = 0;
1117 if (TREE_CODE_CLASS (code) == tcc_declaration)
1119 if (code == DEBUG_EXPR_DECL)
1120 DECL_UID (t) = --next_debug_decl_uid;
1121 else
1123 DECL_UID (t) = allocate_decl_uid ();
1124 if (DECL_PT_UID_SET_P (node))
1125 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1127 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
1128 && DECL_HAS_VALUE_EXPR_P (node))
1130 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1131 DECL_HAS_VALUE_EXPR_P (t) = 1;
1133 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1134 if (TREE_CODE (node) == VAR_DECL)
1136 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1137 t->decl_with_vis.symtab_node = NULL;
1139 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
1141 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1142 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1144 if (TREE_CODE (node) == FUNCTION_DECL)
1146 DECL_STRUCT_FUNCTION (t) = NULL;
1147 t->decl_with_vis.symtab_node = NULL;
1150 else if (TREE_CODE_CLASS (code) == tcc_type)
1152 TYPE_UID (t) = next_type_uid++;
1153 /* The following is so that the debug code for
1154 the copy is different from the original type.
1155 The two statements usually duplicate each other
1156 (because they clear fields of the same union),
1157 but the optimizer should catch that. */
1158 TYPE_SYMTAB_POINTER (t) = 0;
1159 TYPE_SYMTAB_ADDRESS (t) = 0;
1161 /* Do not copy the values cache. */
1162 if (TYPE_CACHED_VALUES_P (t))
1164 TYPE_CACHED_VALUES_P (t) = 0;
1165 TYPE_CACHED_VALUES (t) = NULL_TREE;
1168 else if (code == TARGET_OPTION_NODE)
1170 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1171 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1172 sizeof (struct cl_target_option));
1174 else if (code == OPTIMIZATION_NODE)
1176 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1177 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1178 sizeof (struct cl_optimization));
1181 return t;
1184 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1185 For example, this can copy a list made of TREE_LIST nodes. */
1187 tree
1188 copy_list (tree list)
1190 tree head;
1191 tree prev, next;
1193 if (list == 0)
1194 return 0;
1196 head = prev = copy_node (list);
1197 next = TREE_CHAIN (list);
1198 while (next)
1200 TREE_CHAIN (prev) = copy_node (next);
1201 prev = TREE_CHAIN (prev);
1202 next = TREE_CHAIN (next);
1204 return head;
1208 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1209 INTEGER_CST with value CST and type TYPE. */
1211 static unsigned int
1212 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1214 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1215 /* We need an extra zero HWI if CST is an unsigned integer with its
1216 upper bit set, and if CST occupies a whole number of HWIs. */
1217 if (TYPE_UNSIGNED (type)
1218 && wi::neg_p (cst)
1219 && (cst.get_precision () % HOST_BITS_PER_WIDE_INT) == 0)
1220 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1221 return cst.get_len ();
1224 /* Return a new INTEGER_CST with value CST and type TYPE. */
1226 static tree
1227 build_new_int_cst (tree type, const wide_int &cst)
1229 unsigned int len = cst.get_len ();
1230 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1231 tree nt = make_int_cst (len, ext_len);
1233 if (len < ext_len)
1235 --ext_len;
1236 TREE_INT_CST_ELT (nt, ext_len) = 0;
1237 for (unsigned int i = len; i < ext_len; ++i)
1238 TREE_INT_CST_ELT (nt, i) = -1;
1240 else if (TYPE_UNSIGNED (type)
1241 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1243 len--;
1244 TREE_INT_CST_ELT (nt, len)
1245 = zext_hwi (cst.elt (len),
1246 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1249 for (unsigned int i = 0; i < len; i++)
1250 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1251 TREE_TYPE (nt) = type;
1252 return nt;
1255 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1257 tree
1258 build_int_cst (tree type, HOST_WIDE_INT low)
1260 /* Support legacy code. */
1261 if (!type)
1262 type = integer_type_node;
1264 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1267 tree
1268 build_int_cstu (tree type, unsigned HOST_WIDE_INT cst)
1270 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1273 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1275 tree
1276 build_int_cst_type (tree type, HOST_WIDE_INT low)
1278 gcc_assert (type);
1279 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1282 /* Constructs tree in type TYPE from with value given by CST. Signedness
1283 of CST is assumed to be the same as the signedness of TYPE. */
1285 tree
1286 double_int_to_tree (tree type, double_int cst)
1288 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1291 /* We force the wide_int CST to the range of the type TYPE by sign or
1292 zero extending it. OVERFLOWABLE indicates if we are interested in
1293 overflow of the value, when >0 we are only interested in signed
1294 overflow, for <0 we are interested in any overflow. OVERFLOWED
1295 indicates whether overflow has already occurred. CONST_OVERFLOWED
1296 indicates whether constant overflow has already occurred. We force
1297 T's value to be within range of T's type (by setting to 0 or 1 all
1298 the bits outside the type's range). We set TREE_OVERFLOWED if,
1299 OVERFLOWED is nonzero,
1300 or OVERFLOWABLE is >0 and signed overflow occurs
1301 or OVERFLOWABLE is <0 and any overflow occurs
1302 We return a new tree node for the extended wide_int. The node
1303 is shared if no overflow flags are set. */
1306 tree
1307 force_fit_type (tree type, const wide_int_ref &cst,
1308 int overflowable, bool overflowed)
1310 signop sign = TYPE_SIGN (type);
1312 /* If we need to set overflow flags, return a new unshared node. */
1313 if (overflowed || !wi::fits_to_tree_p (cst, type))
1315 if (overflowed
1316 || overflowable < 0
1317 || (overflowable > 0 && sign == SIGNED))
1319 wide_int tmp = wide_int::from (cst, TYPE_PRECISION (type), sign);
1320 tree t = build_new_int_cst (type, tmp);
1321 TREE_OVERFLOW (t) = 1;
1322 return t;
1326 /* Else build a shared node. */
1327 return wide_int_to_tree (type, cst);
1330 /* These are the hash table functions for the hash table of INTEGER_CST
1331 nodes of a sizetype. */
1333 /* Return the hash code X, an INTEGER_CST. */
1335 hashval_t
1336 int_cst_hasher::hash (tree x)
1338 const_tree const t = x;
1339 hashval_t code = TYPE_UID (TREE_TYPE (t));
1340 int i;
1342 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1343 code ^= TREE_INT_CST_ELT (t, i);
1345 return code;
1348 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1349 is the same as that given by *Y, which is the same. */
1351 bool
1352 int_cst_hasher::equal (tree x, tree y)
1354 const_tree const xt = x;
1355 const_tree const yt = y;
1357 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1358 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1359 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1360 return false;
1362 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1363 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1364 return false;
1366 return true;
1369 /* Create an INT_CST node of TYPE and value CST.
1370 The returned node is always shared. For small integers we use a
1371 per-type vector cache, for larger ones we use a single hash table.
1372 The value is extended from its precision according to the sign of
1373 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1374 the upper bits and ensures that hashing and value equality based
1375 upon the underlying HOST_WIDE_INTs works without masking. */
1377 tree
1378 wide_int_to_tree (tree type, const wide_int_ref &pcst)
1380 tree t;
1381 int ix = -1;
1382 int limit = 0;
1384 gcc_assert (type);
1385 unsigned int prec = TYPE_PRECISION (type);
1386 signop sgn = TYPE_SIGN (type);
1388 /* Verify that everything is canonical. */
1389 int l = pcst.get_len ();
1390 if (l > 1)
1392 if (pcst.elt (l - 1) == 0)
1393 gcc_checking_assert (pcst.elt (l - 2) < 0);
1394 if (pcst.elt (l - 1) == (HOST_WIDE_INT) -1)
1395 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1398 wide_int cst = wide_int::from (pcst, prec, sgn);
1399 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1401 if (ext_len == 1)
1403 /* We just need to store a single HOST_WIDE_INT. */
1404 HOST_WIDE_INT hwi;
1405 if (TYPE_UNSIGNED (type))
1406 hwi = cst.to_uhwi ();
1407 else
1408 hwi = cst.to_shwi ();
1410 switch (TREE_CODE (type))
1412 case NULLPTR_TYPE:
1413 gcc_assert (hwi == 0);
1414 /* Fallthru. */
1416 case POINTER_TYPE:
1417 case REFERENCE_TYPE:
1418 case POINTER_BOUNDS_TYPE:
1419 /* Cache NULL pointer and zero bounds. */
1420 if (hwi == 0)
1422 limit = 1;
1423 ix = 0;
1425 break;
1427 case BOOLEAN_TYPE:
1428 /* Cache false or true. */
1429 limit = 2;
1430 if (hwi < 2)
1431 ix = hwi;
1432 break;
1434 case INTEGER_TYPE:
1435 case OFFSET_TYPE:
1436 if (TYPE_SIGN (type) == UNSIGNED)
1438 /* Cache [0, N). */
1439 limit = INTEGER_SHARE_LIMIT;
1440 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1441 ix = hwi;
1443 else
1445 /* Cache [-1, N). */
1446 limit = INTEGER_SHARE_LIMIT + 1;
1447 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1448 ix = hwi + 1;
1450 break;
1452 case ENUMERAL_TYPE:
1453 break;
1455 default:
1456 gcc_unreachable ();
1459 if (ix >= 0)
1461 /* Look for it in the type's vector of small shared ints. */
1462 if (!TYPE_CACHED_VALUES_P (type))
1464 TYPE_CACHED_VALUES_P (type) = 1;
1465 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1468 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1469 if (t)
1470 /* Make sure no one is clobbering the shared constant. */
1471 gcc_checking_assert (TREE_TYPE (t) == type
1472 && TREE_INT_CST_NUNITS (t) == 1
1473 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1474 && TREE_INT_CST_EXT_NUNITS (t) == 1
1475 && TREE_INT_CST_ELT (t, 0) == hwi);
1476 else
1478 /* Create a new shared int. */
1479 t = build_new_int_cst (type, cst);
1480 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1483 else
1485 /* Use the cache of larger shared ints, using int_cst_node as
1486 a temporary. */
1488 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1489 TREE_TYPE (int_cst_node) = type;
1491 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1492 t = *slot;
1493 if (!t)
1495 /* Insert this one into the hash table. */
1496 t = int_cst_node;
1497 *slot = t;
1498 /* Make a new node for next time round. */
1499 int_cst_node = make_int_cst (1, 1);
1503 else
1505 /* The value either hashes properly or we drop it on the floor
1506 for the gc to take care of. There will not be enough of them
1507 to worry about. */
1509 tree nt = build_new_int_cst (type, cst);
1510 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1511 t = *slot;
1512 if (!t)
1514 /* Insert this one into the hash table. */
1515 t = nt;
1516 *slot = t;
1520 return t;
1523 void
1524 cache_integer_cst (tree t)
1526 tree type = TREE_TYPE (t);
1527 int ix = -1;
1528 int limit = 0;
1529 int prec = TYPE_PRECISION (type);
1531 gcc_assert (!TREE_OVERFLOW (t));
1533 switch (TREE_CODE (type))
1535 case NULLPTR_TYPE:
1536 gcc_assert (integer_zerop (t));
1537 /* Fallthru. */
1539 case POINTER_TYPE:
1540 case REFERENCE_TYPE:
1541 /* Cache NULL pointer. */
1542 if (integer_zerop (t))
1544 limit = 1;
1545 ix = 0;
1547 break;
1549 case BOOLEAN_TYPE:
1550 /* Cache false or true. */
1551 limit = 2;
1552 if (wi::ltu_p (t, 2))
1553 ix = TREE_INT_CST_ELT (t, 0);
1554 break;
1556 case INTEGER_TYPE:
1557 case OFFSET_TYPE:
1558 if (TYPE_UNSIGNED (type))
1560 /* Cache 0..N */
1561 limit = INTEGER_SHARE_LIMIT;
1563 /* This is a little hokie, but if the prec is smaller than
1564 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1565 obvious test will not get the correct answer. */
1566 if (prec < HOST_BITS_PER_WIDE_INT)
1568 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1569 ix = tree_to_uhwi (t);
1571 else if (wi::ltu_p (t, INTEGER_SHARE_LIMIT))
1572 ix = tree_to_uhwi (t);
1574 else
1576 /* Cache -1..N */
1577 limit = INTEGER_SHARE_LIMIT + 1;
1579 if (integer_minus_onep (t))
1580 ix = 0;
1581 else if (!wi::neg_p (t))
1583 if (prec < HOST_BITS_PER_WIDE_INT)
1585 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1586 ix = tree_to_shwi (t) + 1;
1588 else if (wi::ltu_p (t, INTEGER_SHARE_LIMIT))
1589 ix = tree_to_shwi (t) + 1;
1592 break;
1594 case ENUMERAL_TYPE:
1595 break;
1597 default:
1598 gcc_unreachable ();
1601 if (ix >= 0)
1603 /* Look for it in the type's vector of small shared ints. */
1604 if (!TYPE_CACHED_VALUES_P (type))
1606 TYPE_CACHED_VALUES_P (type) = 1;
1607 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1610 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1611 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1613 else
1615 /* Use the cache of larger shared ints. */
1616 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1617 /* If there is already an entry for the number verify it's the
1618 same. */
1619 if (*slot)
1620 gcc_assert (wi::eq_p (tree (*slot), t));
1621 else
1622 /* Otherwise insert this one into the hash table. */
1623 *slot = t;
1628 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1629 and the rest are zeros. */
1631 tree
1632 build_low_bits_mask (tree type, unsigned bits)
1634 gcc_assert (bits <= TYPE_PRECISION (type));
1636 return wide_int_to_tree (type, wi::mask (bits, false,
1637 TYPE_PRECISION (type)));
1640 /* Checks that X is integer constant that can be expressed in (unsigned)
1641 HOST_WIDE_INT without loss of precision. */
1643 bool
1644 cst_and_fits_in_hwi (const_tree x)
1646 if (TREE_CODE (x) != INTEGER_CST)
1647 return false;
1649 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1650 return false;
1652 return TREE_INT_CST_NUNITS (x) == 1;
1655 /* Build a newly constructed VECTOR_CST node of length LEN. */
1657 tree
1658 make_vector_stat (unsigned len MEM_STAT_DECL)
1660 tree t;
1661 unsigned length = (len - 1) * sizeof (tree) + sizeof (struct tree_vector);
1663 record_node_allocation_statistics (VECTOR_CST, length);
1665 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1667 TREE_SET_CODE (t, VECTOR_CST);
1668 TREE_CONSTANT (t) = 1;
1670 return t;
1673 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1674 are in a list pointed to by VALS. */
1676 tree
1677 build_vector_stat (tree type, tree *vals MEM_STAT_DECL)
1679 int over = 0;
1680 unsigned cnt = 0;
1681 tree v = make_vector (TYPE_VECTOR_SUBPARTS (type));
1682 TREE_TYPE (v) = type;
1684 /* Iterate through elements and check for overflow. */
1685 for (cnt = 0; cnt < TYPE_VECTOR_SUBPARTS (type); ++cnt)
1687 tree value = vals[cnt];
1689 VECTOR_CST_ELT (v, cnt) = value;
1691 /* Don't crash if we get an address constant. */
1692 if (!CONSTANT_CLASS_P (value))
1693 continue;
1695 over |= TREE_OVERFLOW (value);
1698 TREE_OVERFLOW (v) = over;
1699 return v;
1702 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1703 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1705 tree
1706 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1708 tree *vec = XALLOCAVEC (tree, TYPE_VECTOR_SUBPARTS (type));
1709 unsigned HOST_WIDE_INT idx;
1710 tree value;
1712 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1713 vec[idx] = value;
1714 for (; idx < TYPE_VECTOR_SUBPARTS (type); ++idx)
1715 vec[idx] = build_zero_cst (TREE_TYPE (type));
1717 return build_vector (type, vec);
1720 /* Build a vector of type VECTYPE where all the elements are SCs. */
1721 tree
1722 build_vector_from_val (tree vectype, tree sc)
1724 int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1726 if (sc == error_mark_node)
1727 return sc;
1729 /* Verify that the vector type is suitable for SC. Note that there
1730 is some inconsistency in the type-system with respect to restrict
1731 qualifications of pointers. Vector types always have a main-variant
1732 element type and the qualification is applied to the vector-type.
1733 So TREE_TYPE (vector-type) does not return a properly qualified
1734 vector element-type. */
1735 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1736 TREE_TYPE (vectype)));
1738 if (CONSTANT_CLASS_P (sc))
1740 tree *v = XALLOCAVEC (tree, nunits);
1741 for (i = 0; i < nunits; ++i)
1742 v[i] = sc;
1743 return build_vector (vectype, v);
1745 else
1747 vec<constructor_elt, va_gc> *v;
1748 vec_alloc (v, nunits);
1749 for (i = 0; i < nunits; ++i)
1750 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1751 return build_constructor (vectype, v);
1755 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1756 are in the vec pointed to by VALS. */
1757 tree
1758 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1760 tree c = make_node (CONSTRUCTOR);
1761 unsigned int i;
1762 constructor_elt *elt;
1763 bool constant_p = true;
1764 bool side_effects_p = false;
1766 TREE_TYPE (c) = type;
1767 CONSTRUCTOR_ELTS (c) = vals;
1769 FOR_EACH_VEC_SAFE_ELT (vals, i, elt)
1771 /* Mostly ctors will have elts that don't have side-effects, so
1772 the usual case is to scan all the elements. Hence a single
1773 loop for both const and side effects, rather than one loop
1774 each (with early outs). */
1775 if (!TREE_CONSTANT (elt->value))
1776 constant_p = false;
1777 if (TREE_SIDE_EFFECTS (elt->value))
1778 side_effects_p = true;
1781 TREE_SIDE_EFFECTS (c) = side_effects_p;
1782 TREE_CONSTANT (c) = constant_p;
1784 return c;
1787 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1788 INDEX and VALUE. */
1789 tree
1790 build_constructor_single (tree type, tree index, tree value)
1792 vec<constructor_elt, va_gc> *v;
1793 constructor_elt elt = {index, value};
1795 vec_alloc (v, 1);
1796 v->quick_push (elt);
1798 return build_constructor (type, v);
1802 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1803 are in a list pointed to by VALS. */
1804 tree
1805 build_constructor_from_list (tree type, tree vals)
1807 tree t;
1808 vec<constructor_elt, va_gc> *v = NULL;
1810 if (vals)
1812 vec_alloc (v, list_length (vals));
1813 for (t = vals; t; t = TREE_CHAIN (t))
1814 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
1817 return build_constructor (type, v);
1820 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1821 of elements, provided as index/value pairs. */
1823 tree
1824 build_constructor_va (tree type, int nelts, ...)
1826 vec<constructor_elt, va_gc> *v = NULL;
1827 va_list p;
1829 va_start (p, nelts);
1830 vec_alloc (v, nelts);
1831 while (nelts--)
1833 tree index = va_arg (p, tree);
1834 tree value = va_arg (p, tree);
1835 CONSTRUCTOR_APPEND_ELT (v, index, value);
1837 va_end (p);
1838 return build_constructor (type, v);
1841 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1843 tree
1844 build_fixed (tree type, FIXED_VALUE_TYPE f)
1846 tree v;
1847 FIXED_VALUE_TYPE *fp;
1849 v = make_node (FIXED_CST);
1850 fp = ggc_alloc<fixed_value> ();
1851 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1853 TREE_TYPE (v) = type;
1854 TREE_FIXED_CST_PTR (v) = fp;
1855 return v;
1858 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1860 tree
1861 build_real (tree type, REAL_VALUE_TYPE d)
1863 tree v;
1864 REAL_VALUE_TYPE *dp;
1865 int overflow = 0;
1867 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1868 Consider doing it via real_convert now. */
1870 v = make_node (REAL_CST);
1871 dp = ggc_alloc<real_value> ();
1872 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1874 TREE_TYPE (v) = type;
1875 TREE_REAL_CST_PTR (v) = dp;
1876 TREE_OVERFLOW (v) = overflow;
1877 return v;
1880 /* Return a new REAL_CST node whose type is TYPE
1881 and whose value is the integer value of the INTEGER_CST node I. */
1883 REAL_VALUE_TYPE
1884 real_value_from_int_cst (const_tree type, const_tree i)
1886 REAL_VALUE_TYPE d;
1888 /* Clear all bits of the real value type so that we can later do
1889 bitwise comparisons to see if two values are the same. */
1890 memset (&d, 0, sizeof d);
1892 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, i,
1893 TYPE_SIGN (TREE_TYPE (i)));
1894 return d;
1897 /* Given a tree representing an integer constant I, return a tree
1898 representing the same value as a floating-point constant of type TYPE. */
1900 tree
1901 build_real_from_int_cst (tree type, const_tree i)
1903 tree v;
1904 int overflow = TREE_OVERFLOW (i);
1906 v = build_real (type, real_value_from_int_cst (type, i));
1908 TREE_OVERFLOW (v) |= overflow;
1909 return v;
1912 /* Return a newly constructed STRING_CST node whose value is
1913 the LEN characters at STR.
1914 Note that for a C string literal, LEN should include the trailing NUL.
1915 The TREE_TYPE is not initialized. */
1917 tree
1918 build_string (int len, const char *str)
1920 tree s;
1921 size_t length;
1923 /* Do not waste bytes provided by padding of struct tree_string. */
1924 length = len + offsetof (struct tree_string, str) + 1;
1926 record_node_allocation_statistics (STRING_CST, length);
1928 s = (tree) ggc_internal_alloc (length);
1930 memset (s, 0, sizeof (struct tree_typed));
1931 TREE_SET_CODE (s, STRING_CST);
1932 TREE_CONSTANT (s) = 1;
1933 TREE_STRING_LENGTH (s) = len;
1934 memcpy (s->string.str, str, len);
1935 s->string.str[len] = '\0';
1937 return s;
1940 /* Return a newly constructed COMPLEX_CST node whose value is
1941 specified by the real and imaginary parts REAL and IMAG.
1942 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1943 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1945 tree
1946 build_complex (tree type, tree real, tree imag)
1948 tree t = make_node (COMPLEX_CST);
1950 TREE_REALPART (t) = real;
1951 TREE_IMAGPART (t) = imag;
1952 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
1953 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1954 return t;
1957 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
1958 element is set to 1. In particular, this is 1 + i for complex types. */
1960 tree
1961 build_each_one_cst (tree type)
1963 if (TREE_CODE (type) == COMPLEX_TYPE)
1965 tree scalar = build_one_cst (TREE_TYPE (type));
1966 return build_complex (type, scalar, scalar);
1968 else
1969 return build_one_cst (type);
1972 /* Return a constant of arithmetic type TYPE which is the
1973 multiplicative identity of the set TYPE. */
1975 tree
1976 build_one_cst (tree type)
1978 switch (TREE_CODE (type))
1980 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1981 case POINTER_TYPE: case REFERENCE_TYPE:
1982 case OFFSET_TYPE:
1983 return build_int_cst (type, 1);
1985 case REAL_TYPE:
1986 return build_real (type, dconst1);
1988 case FIXED_POINT_TYPE:
1989 /* We can only generate 1 for accum types. */
1990 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1991 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
1993 case VECTOR_TYPE:
1995 tree scalar = build_one_cst (TREE_TYPE (type));
1997 return build_vector_from_val (type, scalar);
2000 case COMPLEX_TYPE:
2001 return build_complex (type,
2002 build_one_cst (TREE_TYPE (type)),
2003 build_zero_cst (TREE_TYPE (type)));
2005 default:
2006 gcc_unreachable ();
2010 /* Return an integer of type TYPE containing all 1's in as much precision as
2011 it contains, or a complex or vector whose subparts are such integers. */
2013 tree
2014 build_all_ones_cst (tree type)
2016 if (TREE_CODE (type) == COMPLEX_TYPE)
2018 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2019 return build_complex (type, scalar, scalar);
2021 else
2022 return build_minus_one_cst (type);
2025 /* Return a constant of arithmetic type TYPE which is the
2026 opposite of the multiplicative identity of the set TYPE. */
2028 tree
2029 build_minus_one_cst (tree type)
2031 switch (TREE_CODE (type))
2033 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2034 case POINTER_TYPE: case REFERENCE_TYPE:
2035 case OFFSET_TYPE:
2036 return build_int_cst (type, -1);
2038 case REAL_TYPE:
2039 return build_real (type, dconstm1);
2041 case FIXED_POINT_TYPE:
2042 /* We can only generate 1 for accum types. */
2043 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2044 return build_fixed (type, fixed_from_double_int (double_int_minus_one,
2045 TYPE_MODE (type)));
2047 case VECTOR_TYPE:
2049 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2051 return build_vector_from_val (type, scalar);
2054 case COMPLEX_TYPE:
2055 return build_complex (type,
2056 build_minus_one_cst (TREE_TYPE (type)),
2057 build_zero_cst (TREE_TYPE (type)));
2059 default:
2060 gcc_unreachable ();
2064 /* Build 0 constant of type TYPE. This is used by constructor folding
2065 and thus the constant should be represented in memory by
2066 zero(es). */
2068 tree
2069 build_zero_cst (tree type)
2071 switch (TREE_CODE (type))
2073 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2074 case POINTER_TYPE: case REFERENCE_TYPE:
2075 case OFFSET_TYPE: case NULLPTR_TYPE:
2076 return build_int_cst (type, 0);
2078 case REAL_TYPE:
2079 return build_real (type, dconst0);
2081 case FIXED_POINT_TYPE:
2082 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2084 case VECTOR_TYPE:
2086 tree scalar = build_zero_cst (TREE_TYPE (type));
2088 return build_vector_from_val (type, scalar);
2091 case COMPLEX_TYPE:
2093 tree zero = build_zero_cst (TREE_TYPE (type));
2095 return build_complex (type, zero, zero);
2098 default:
2099 if (!AGGREGATE_TYPE_P (type))
2100 return fold_convert (type, integer_zero_node);
2101 return build_constructor (type, NULL);
2106 /* Build a BINFO with LEN language slots. */
2108 tree
2109 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
2111 tree t;
2112 size_t length = (offsetof (struct tree_binfo, base_binfos)
2113 + vec<tree, va_gc>::embedded_size (base_binfos));
2115 record_node_allocation_statistics (TREE_BINFO, length);
2117 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2119 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2121 TREE_SET_CODE (t, TREE_BINFO);
2123 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2125 return t;
2128 /* Create a CASE_LABEL_EXPR tree node and return it. */
2130 tree
2131 build_case_label (tree low_value, tree high_value, tree label_decl)
2133 tree t = make_node (CASE_LABEL_EXPR);
2135 TREE_TYPE (t) = void_type_node;
2136 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2138 CASE_LOW (t) = low_value;
2139 CASE_HIGH (t) = high_value;
2140 CASE_LABEL (t) = label_decl;
2141 CASE_CHAIN (t) = NULL_TREE;
2143 return t;
2146 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2147 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2148 The latter determines the length of the HOST_WIDE_INT vector. */
2150 tree
2151 make_int_cst_stat (int len, int ext_len MEM_STAT_DECL)
2153 tree t;
2154 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2155 + sizeof (struct tree_int_cst));
2157 gcc_assert (len);
2158 record_node_allocation_statistics (INTEGER_CST, length);
2160 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2162 TREE_SET_CODE (t, INTEGER_CST);
2163 TREE_INT_CST_NUNITS (t) = len;
2164 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2165 /* to_offset can only be applied to trees that are offset_int-sized
2166 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2167 must be exactly the precision of offset_int and so LEN is correct. */
2168 if (ext_len <= OFFSET_INT_ELTS)
2169 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2170 else
2171 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2173 TREE_CONSTANT (t) = 1;
2175 return t;
2178 /* Build a newly constructed TREE_VEC node of length LEN. */
2180 tree
2181 make_tree_vec_stat (int len MEM_STAT_DECL)
2183 tree t;
2184 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2186 record_node_allocation_statistics (TREE_VEC, length);
2188 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2190 TREE_SET_CODE (t, TREE_VEC);
2191 TREE_VEC_LENGTH (t) = len;
2193 return t;
2196 /* Grow a TREE_VEC node to new length LEN. */
2198 tree
2199 grow_tree_vec_stat (tree v, int len MEM_STAT_DECL)
2201 gcc_assert (TREE_CODE (v) == TREE_VEC);
2203 int oldlen = TREE_VEC_LENGTH (v);
2204 gcc_assert (len > oldlen);
2206 int oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2207 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2209 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2211 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2213 TREE_VEC_LENGTH (v) = len;
2215 return v;
2218 /* Return 1 if EXPR is the integer constant zero or a complex constant
2219 of zero. */
2222 integer_zerop (const_tree expr)
2224 STRIP_NOPS (expr);
2226 switch (TREE_CODE (expr))
2228 case INTEGER_CST:
2229 return wi::eq_p (expr, 0);
2230 case COMPLEX_CST:
2231 return (integer_zerop (TREE_REALPART (expr))
2232 && integer_zerop (TREE_IMAGPART (expr)));
2233 case VECTOR_CST:
2235 unsigned i;
2236 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2237 if (!integer_zerop (VECTOR_CST_ELT (expr, i)))
2238 return false;
2239 return true;
2241 default:
2242 return false;
2246 /* Return 1 if EXPR is the integer constant one or the corresponding
2247 complex constant. */
2250 integer_onep (const_tree expr)
2252 STRIP_NOPS (expr);
2254 switch (TREE_CODE (expr))
2256 case INTEGER_CST:
2257 return wi::eq_p (wi::to_widest (expr), 1);
2258 case COMPLEX_CST:
2259 return (integer_onep (TREE_REALPART (expr))
2260 && integer_zerop (TREE_IMAGPART (expr)));
2261 case VECTOR_CST:
2263 unsigned i;
2264 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2265 if (!integer_onep (VECTOR_CST_ELT (expr, i)))
2266 return false;
2267 return true;
2269 default:
2270 return false;
2274 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2275 return 1 if every piece is the integer constant one. */
2278 integer_each_onep (const_tree expr)
2280 STRIP_NOPS (expr);
2282 if (TREE_CODE (expr) == COMPLEX_CST)
2283 return (integer_onep (TREE_REALPART (expr))
2284 && integer_onep (TREE_IMAGPART (expr)));
2285 else
2286 return integer_onep (expr);
2289 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2290 it contains, or a complex or vector whose subparts are such integers. */
2293 integer_all_onesp (const_tree expr)
2295 STRIP_NOPS (expr);
2297 if (TREE_CODE (expr) == COMPLEX_CST
2298 && integer_all_onesp (TREE_REALPART (expr))
2299 && integer_all_onesp (TREE_IMAGPART (expr)))
2300 return 1;
2302 else if (TREE_CODE (expr) == VECTOR_CST)
2304 unsigned i;
2305 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2306 if (!integer_all_onesp (VECTOR_CST_ELT (expr, i)))
2307 return 0;
2308 return 1;
2311 else if (TREE_CODE (expr) != INTEGER_CST)
2312 return 0;
2314 return wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED) == expr;
2317 /* Return 1 if EXPR is the integer constant minus one. */
2320 integer_minus_onep (const_tree expr)
2322 STRIP_NOPS (expr);
2324 if (TREE_CODE (expr) == COMPLEX_CST)
2325 return (integer_all_onesp (TREE_REALPART (expr))
2326 && integer_zerop (TREE_IMAGPART (expr)));
2327 else
2328 return integer_all_onesp (expr);
2331 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2332 one bit on). */
2335 integer_pow2p (const_tree expr)
2337 STRIP_NOPS (expr);
2339 if (TREE_CODE (expr) == COMPLEX_CST
2340 && integer_pow2p (TREE_REALPART (expr))
2341 && integer_zerop (TREE_IMAGPART (expr)))
2342 return 1;
2344 if (TREE_CODE (expr) != INTEGER_CST)
2345 return 0;
2347 return wi::popcount (expr) == 1;
2350 /* Return 1 if EXPR is an integer constant other than zero or a
2351 complex constant other than zero. */
2354 integer_nonzerop (const_tree expr)
2356 STRIP_NOPS (expr);
2358 return ((TREE_CODE (expr) == INTEGER_CST
2359 && !wi::eq_p (expr, 0))
2360 || (TREE_CODE (expr) == COMPLEX_CST
2361 && (integer_nonzerop (TREE_REALPART (expr))
2362 || integer_nonzerop (TREE_IMAGPART (expr)))));
2365 /* Return 1 if EXPR is the integer constant one. For vector,
2366 return 1 if every piece is the integer constant minus one
2367 (representing the value TRUE). */
2370 integer_truep (const_tree expr)
2372 STRIP_NOPS (expr);
2374 if (TREE_CODE (expr) == VECTOR_CST)
2375 return integer_all_onesp (expr);
2376 return integer_onep (expr);
2379 /* Return 1 if EXPR is the fixed-point constant zero. */
2382 fixed_zerop (const_tree expr)
2384 return (TREE_CODE (expr) == FIXED_CST
2385 && TREE_FIXED_CST (expr).data.is_zero ());
2388 /* Return the power of two represented by a tree node known to be a
2389 power of two. */
2392 tree_log2 (const_tree expr)
2394 STRIP_NOPS (expr);
2396 if (TREE_CODE (expr) == COMPLEX_CST)
2397 return tree_log2 (TREE_REALPART (expr));
2399 return wi::exact_log2 (expr);
2402 /* Similar, but return the largest integer Y such that 2 ** Y is less
2403 than or equal to EXPR. */
2406 tree_floor_log2 (const_tree expr)
2408 STRIP_NOPS (expr);
2410 if (TREE_CODE (expr) == COMPLEX_CST)
2411 return tree_log2 (TREE_REALPART (expr));
2413 return wi::floor_log2 (expr);
2416 /* Return number of known trailing zero bits in EXPR, or, if the value of
2417 EXPR is known to be zero, the precision of it's type. */
2419 unsigned int
2420 tree_ctz (const_tree expr)
2422 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2423 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2424 return 0;
2426 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2427 switch (TREE_CODE (expr))
2429 case INTEGER_CST:
2430 ret1 = wi::ctz (expr);
2431 return MIN (ret1, prec);
2432 case SSA_NAME:
2433 ret1 = wi::ctz (get_nonzero_bits (expr));
2434 return MIN (ret1, prec);
2435 case PLUS_EXPR:
2436 case MINUS_EXPR:
2437 case BIT_IOR_EXPR:
2438 case BIT_XOR_EXPR:
2439 case MIN_EXPR:
2440 case MAX_EXPR:
2441 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2442 if (ret1 == 0)
2443 return ret1;
2444 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2445 return MIN (ret1, ret2);
2446 case POINTER_PLUS_EXPR:
2447 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2448 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2449 /* Second operand is sizetype, which could be in theory
2450 wider than pointer's precision. Make sure we never
2451 return more than prec. */
2452 ret2 = MIN (ret2, prec);
2453 return MIN (ret1, ret2);
2454 case BIT_AND_EXPR:
2455 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2456 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2457 return MAX (ret1, ret2);
2458 case MULT_EXPR:
2459 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2460 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2461 return MIN (ret1 + ret2, prec);
2462 case LSHIFT_EXPR:
2463 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2464 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2465 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2467 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2468 return MIN (ret1 + ret2, prec);
2470 return ret1;
2471 case RSHIFT_EXPR:
2472 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2473 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2475 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2476 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2477 if (ret1 > ret2)
2478 return ret1 - ret2;
2480 return 0;
2481 case TRUNC_DIV_EXPR:
2482 case CEIL_DIV_EXPR:
2483 case FLOOR_DIV_EXPR:
2484 case ROUND_DIV_EXPR:
2485 case EXACT_DIV_EXPR:
2486 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2487 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2489 int l = tree_log2 (TREE_OPERAND (expr, 1));
2490 if (l >= 0)
2492 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2493 ret2 = l;
2494 if (ret1 > ret2)
2495 return ret1 - ret2;
2498 return 0;
2499 CASE_CONVERT:
2500 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2501 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2502 ret1 = prec;
2503 return MIN (ret1, prec);
2504 case SAVE_EXPR:
2505 return tree_ctz (TREE_OPERAND (expr, 0));
2506 case COND_EXPR:
2507 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2508 if (ret1 == 0)
2509 return 0;
2510 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2511 return MIN (ret1, ret2);
2512 case COMPOUND_EXPR:
2513 return tree_ctz (TREE_OPERAND (expr, 1));
2514 case ADDR_EXPR:
2515 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2516 if (ret1 > BITS_PER_UNIT)
2518 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2519 return MIN (ret1, prec);
2521 return 0;
2522 default:
2523 return 0;
2527 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2528 decimal float constants, so don't return 1 for them. */
2531 real_zerop (const_tree expr)
2533 STRIP_NOPS (expr);
2535 switch (TREE_CODE (expr))
2537 case REAL_CST:
2538 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0)
2539 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2540 case COMPLEX_CST:
2541 return real_zerop (TREE_REALPART (expr))
2542 && real_zerop (TREE_IMAGPART (expr));
2543 case VECTOR_CST:
2545 unsigned i;
2546 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2547 if (!real_zerop (VECTOR_CST_ELT (expr, i)))
2548 return false;
2549 return true;
2551 default:
2552 return false;
2556 /* Return 1 if EXPR is the real constant one in real or complex form.
2557 Trailing zeroes matter for decimal float constants, so don't return
2558 1 for them. */
2561 real_onep (const_tree expr)
2563 STRIP_NOPS (expr);
2565 switch (TREE_CODE (expr))
2567 case REAL_CST:
2568 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1)
2569 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2570 case COMPLEX_CST:
2571 return real_onep (TREE_REALPART (expr))
2572 && real_zerop (TREE_IMAGPART (expr));
2573 case VECTOR_CST:
2575 unsigned i;
2576 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2577 if (!real_onep (VECTOR_CST_ELT (expr, i)))
2578 return false;
2579 return true;
2581 default:
2582 return false;
2586 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2587 matter for decimal float constants, so don't return 1 for them. */
2590 real_minus_onep (const_tree expr)
2592 STRIP_NOPS (expr);
2594 switch (TREE_CODE (expr))
2596 case REAL_CST:
2597 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1)
2598 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2599 case COMPLEX_CST:
2600 return real_minus_onep (TREE_REALPART (expr))
2601 && real_zerop (TREE_IMAGPART (expr));
2602 case VECTOR_CST:
2604 unsigned i;
2605 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2606 if (!real_minus_onep (VECTOR_CST_ELT (expr, i)))
2607 return false;
2608 return true;
2610 default:
2611 return false;
2615 /* Nonzero if EXP is a constant or a cast of a constant. */
2618 really_constant_p (const_tree exp)
2620 /* This is not quite the same as STRIP_NOPS. It does more. */
2621 while (CONVERT_EXPR_P (exp)
2622 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2623 exp = TREE_OPERAND (exp, 0);
2624 return TREE_CONSTANT (exp);
2627 /* Return first list element whose TREE_VALUE is ELEM.
2628 Return 0 if ELEM is not in LIST. */
2630 tree
2631 value_member (tree elem, tree list)
2633 while (list)
2635 if (elem == TREE_VALUE (list))
2636 return list;
2637 list = TREE_CHAIN (list);
2639 return NULL_TREE;
2642 /* Return first list element whose TREE_PURPOSE is ELEM.
2643 Return 0 if ELEM is not in LIST. */
2645 tree
2646 purpose_member (const_tree elem, tree list)
2648 while (list)
2650 if (elem == TREE_PURPOSE (list))
2651 return list;
2652 list = TREE_CHAIN (list);
2654 return NULL_TREE;
2657 /* Return true if ELEM is in V. */
2659 bool
2660 vec_member (const_tree elem, vec<tree, va_gc> *v)
2662 unsigned ix;
2663 tree t;
2664 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2665 if (elem == t)
2666 return true;
2667 return false;
2670 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2671 NULL_TREE. */
2673 tree
2674 chain_index (int idx, tree chain)
2676 for (; chain && idx > 0; --idx)
2677 chain = TREE_CHAIN (chain);
2678 return chain;
2681 /* Return nonzero if ELEM is part of the chain CHAIN. */
2684 chain_member (const_tree elem, const_tree chain)
2686 while (chain)
2688 if (elem == chain)
2689 return 1;
2690 chain = DECL_CHAIN (chain);
2693 return 0;
2696 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2697 We expect a null pointer to mark the end of the chain.
2698 This is the Lisp primitive `length'. */
2701 list_length (const_tree t)
2703 const_tree p = t;
2704 #ifdef ENABLE_TREE_CHECKING
2705 const_tree q = t;
2706 #endif
2707 int len = 0;
2709 while (p)
2711 p = TREE_CHAIN (p);
2712 #ifdef ENABLE_TREE_CHECKING
2713 if (len % 2)
2714 q = TREE_CHAIN (q);
2715 gcc_assert (p != q);
2716 #endif
2717 len++;
2720 return len;
2723 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2724 UNION_TYPE TYPE, or NULL_TREE if none. */
2726 tree
2727 first_field (const_tree type)
2729 tree t = TYPE_FIELDS (type);
2730 while (t && TREE_CODE (t) != FIELD_DECL)
2731 t = TREE_CHAIN (t);
2732 return t;
2735 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2736 by modifying the last node in chain 1 to point to chain 2.
2737 This is the Lisp primitive `nconc'. */
2739 tree
2740 chainon (tree op1, tree op2)
2742 tree t1;
2744 if (!op1)
2745 return op2;
2746 if (!op2)
2747 return op1;
2749 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2750 continue;
2751 TREE_CHAIN (t1) = op2;
2753 #ifdef ENABLE_TREE_CHECKING
2755 tree t2;
2756 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2757 gcc_assert (t2 != t1);
2759 #endif
2761 return op1;
2764 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2766 tree
2767 tree_last (tree chain)
2769 tree next;
2770 if (chain)
2771 while ((next = TREE_CHAIN (chain)))
2772 chain = next;
2773 return chain;
2776 /* Reverse the order of elements in the chain T,
2777 and return the new head of the chain (old last element). */
2779 tree
2780 nreverse (tree t)
2782 tree prev = 0, decl, next;
2783 for (decl = t; decl; decl = next)
2785 /* We shouldn't be using this function to reverse BLOCK chains; we
2786 have blocks_nreverse for that. */
2787 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
2788 next = TREE_CHAIN (decl);
2789 TREE_CHAIN (decl) = prev;
2790 prev = decl;
2792 return prev;
2795 /* Return a newly created TREE_LIST node whose
2796 purpose and value fields are PARM and VALUE. */
2798 tree
2799 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
2801 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
2802 TREE_PURPOSE (t) = parm;
2803 TREE_VALUE (t) = value;
2804 return t;
2807 /* Build a chain of TREE_LIST nodes from a vector. */
2809 tree
2810 build_tree_list_vec_stat (const vec<tree, va_gc> *vec MEM_STAT_DECL)
2812 tree ret = NULL_TREE;
2813 tree *pp = &ret;
2814 unsigned int i;
2815 tree t;
2816 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
2818 *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2819 pp = &TREE_CHAIN (*pp);
2821 return ret;
2824 /* Return a newly created TREE_LIST node whose
2825 purpose and value fields are PURPOSE and VALUE
2826 and whose TREE_CHAIN is CHAIN. */
2828 tree
2829 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
2831 tree node;
2833 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
2834 memset (node, 0, sizeof (struct tree_common));
2836 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
2838 TREE_SET_CODE (node, TREE_LIST);
2839 TREE_CHAIN (node) = chain;
2840 TREE_PURPOSE (node) = purpose;
2841 TREE_VALUE (node) = value;
2842 return node;
2845 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2846 trees. */
2848 vec<tree, va_gc> *
2849 ctor_to_vec (tree ctor)
2851 vec<tree, va_gc> *vec;
2852 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
2853 unsigned int ix;
2854 tree val;
2856 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2857 vec->quick_push (val);
2859 return vec;
2862 /* Return the size nominally occupied by an object of type TYPE
2863 when it resides in memory. The value is measured in units of bytes,
2864 and its data type is that normally used for type sizes
2865 (which is the first type created by make_signed_type or
2866 make_unsigned_type). */
2868 tree
2869 size_in_bytes (const_tree type)
2871 tree t;
2873 if (type == error_mark_node)
2874 return integer_zero_node;
2876 type = TYPE_MAIN_VARIANT (type);
2877 t = TYPE_SIZE_UNIT (type);
2879 if (t == 0)
2881 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
2882 return size_zero_node;
2885 return t;
2888 /* Return the size of TYPE (in bytes) as a wide integer
2889 or return -1 if the size can vary or is larger than an integer. */
2891 HOST_WIDE_INT
2892 int_size_in_bytes (const_tree type)
2894 tree t;
2896 if (type == error_mark_node)
2897 return 0;
2899 type = TYPE_MAIN_VARIANT (type);
2900 t = TYPE_SIZE_UNIT (type);
2902 if (t && tree_fits_uhwi_p (t))
2903 return TREE_INT_CST_LOW (t);
2904 else
2905 return -1;
2908 /* Return the maximum size of TYPE (in bytes) as a wide integer
2909 or return -1 if the size can vary or is larger than an integer. */
2911 HOST_WIDE_INT
2912 max_int_size_in_bytes (const_tree type)
2914 HOST_WIDE_INT size = -1;
2915 tree size_tree;
2917 /* If this is an array type, check for a possible MAX_SIZE attached. */
2919 if (TREE_CODE (type) == ARRAY_TYPE)
2921 size_tree = TYPE_ARRAY_MAX_SIZE (type);
2923 if (size_tree && tree_fits_uhwi_p (size_tree))
2924 size = tree_to_uhwi (size_tree);
2927 /* If we still haven't been able to get a size, see if the language
2928 can compute a maximum size. */
2930 if (size == -1)
2932 size_tree = lang_hooks.types.max_size (type);
2934 if (size_tree && tree_fits_uhwi_p (size_tree))
2935 size = tree_to_uhwi (size_tree);
2938 return size;
2941 /* Return the bit position of FIELD, in bits from the start of the record.
2942 This is a tree of type bitsizetype. */
2944 tree
2945 bit_position (const_tree field)
2947 return bit_from_pos (DECL_FIELD_OFFSET (field),
2948 DECL_FIELD_BIT_OFFSET (field));
2951 /* Return the byte position of FIELD, in bytes from the start of the record.
2952 This is a tree of type sizetype. */
2954 tree
2955 byte_position (const_tree field)
2957 return byte_from_pos (DECL_FIELD_OFFSET (field),
2958 DECL_FIELD_BIT_OFFSET (field));
2961 /* Likewise, but return as an integer. It must be representable in
2962 that way (since it could be a signed value, we don't have the
2963 option of returning -1 like int_size_in_byte can. */
2965 HOST_WIDE_INT
2966 int_byte_position (const_tree field)
2968 return tree_to_shwi (byte_position (field));
2971 /* Return the strictest alignment, in bits, that T is known to have. */
2973 unsigned int
2974 expr_align (const_tree t)
2976 unsigned int align0, align1;
2978 switch (TREE_CODE (t))
2980 CASE_CONVERT: case NON_LVALUE_EXPR:
2981 /* If we have conversions, we know that the alignment of the
2982 object must meet each of the alignments of the types. */
2983 align0 = expr_align (TREE_OPERAND (t, 0));
2984 align1 = TYPE_ALIGN (TREE_TYPE (t));
2985 return MAX (align0, align1);
2987 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
2988 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
2989 case CLEANUP_POINT_EXPR:
2990 /* These don't change the alignment of an object. */
2991 return expr_align (TREE_OPERAND (t, 0));
2993 case COND_EXPR:
2994 /* The best we can do is say that the alignment is the least aligned
2995 of the two arms. */
2996 align0 = expr_align (TREE_OPERAND (t, 1));
2997 align1 = expr_align (TREE_OPERAND (t, 2));
2998 return MIN (align0, align1);
3000 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3001 meaningfully, it's always 1. */
3002 case LABEL_DECL: case CONST_DECL:
3003 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3004 case FUNCTION_DECL:
3005 gcc_assert (DECL_ALIGN (t) != 0);
3006 return DECL_ALIGN (t);
3008 default:
3009 break;
3012 /* Otherwise take the alignment from that of the type. */
3013 return TYPE_ALIGN (TREE_TYPE (t));
3016 /* Return, as a tree node, the number of elements for TYPE (which is an
3017 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3019 tree
3020 array_type_nelts (const_tree type)
3022 tree index_type, min, max;
3024 /* If they did it with unspecified bounds, then we should have already
3025 given an error about it before we got here. */
3026 if (! TYPE_DOMAIN (type))
3027 return error_mark_node;
3029 index_type = TYPE_DOMAIN (type);
3030 min = TYPE_MIN_VALUE (index_type);
3031 max = TYPE_MAX_VALUE (index_type);
3033 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3034 if (!max)
3035 return error_mark_node;
3037 return (integer_zerop (min)
3038 ? max
3039 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3042 /* If arg is static -- a reference to an object in static storage -- then
3043 return the object. This is not the same as the C meaning of `static'.
3044 If arg isn't static, return NULL. */
3046 tree
3047 staticp (tree arg)
3049 switch (TREE_CODE (arg))
3051 case FUNCTION_DECL:
3052 /* Nested functions are static, even though taking their address will
3053 involve a trampoline as we unnest the nested function and create
3054 the trampoline on the tree level. */
3055 return arg;
3057 case VAR_DECL:
3058 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3059 && ! DECL_THREAD_LOCAL_P (arg)
3060 && ! DECL_DLLIMPORT_P (arg)
3061 ? arg : NULL);
3063 case CONST_DECL:
3064 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3065 ? arg : NULL);
3067 case CONSTRUCTOR:
3068 return TREE_STATIC (arg) ? arg : NULL;
3070 case LABEL_DECL:
3071 case STRING_CST:
3072 return arg;
3074 case COMPONENT_REF:
3075 /* If the thing being referenced is not a field, then it is
3076 something language specific. */
3077 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3079 /* If we are referencing a bitfield, we can't evaluate an
3080 ADDR_EXPR at compile time and so it isn't a constant. */
3081 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3082 return NULL;
3084 return staticp (TREE_OPERAND (arg, 0));
3086 case BIT_FIELD_REF:
3087 return NULL;
3089 case INDIRECT_REF:
3090 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3092 case ARRAY_REF:
3093 case ARRAY_RANGE_REF:
3094 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3095 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3096 return staticp (TREE_OPERAND (arg, 0));
3097 else
3098 return NULL;
3100 case COMPOUND_LITERAL_EXPR:
3101 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3103 default:
3104 return NULL;
3111 /* Return whether OP is a DECL whose address is function-invariant. */
3113 bool
3114 decl_address_invariant_p (const_tree op)
3116 /* The conditions below are slightly less strict than the one in
3117 staticp. */
3119 switch (TREE_CODE (op))
3121 case PARM_DECL:
3122 case RESULT_DECL:
3123 case LABEL_DECL:
3124 case FUNCTION_DECL:
3125 return true;
3127 case VAR_DECL:
3128 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3129 || DECL_THREAD_LOCAL_P (op)
3130 || DECL_CONTEXT (op) == current_function_decl
3131 || decl_function_context (op) == current_function_decl)
3132 return true;
3133 break;
3135 case CONST_DECL:
3136 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3137 || decl_function_context (op) == current_function_decl)
3138 return true;
3139 break;
3141 default:
3142 break;
3145 return false;
3148 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3150 bool
3151 decl_address_ip_invariant_p (const_tree op)
3153 /* The conditions below are slightly less strict than the one in
3154 staticp. */
3156 switch (TREE_CODE (op))
3158 case LABEL_DECL:
3159 case FUNCTION_DECL:
3160 case STRING_CST:
3161 return true;
3163 case VAR_DECL:
3164 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3165 && !DECL_DLLIMPORT_P (op))
3166 || DECL_THREAD_LOCAL_P (op))
3167 return true;
3168 break;
3170 case CONST_DECL:
3171 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3172 return true;
3173 break;
3175 default:
3176 break;
3179 return false;
3183 /* Return true if T is function-invariant (internal function, does
3184 not handle arithmetic; that's handled in skip_simple_arithmetic and
3185 tree_invariant_p). */
3187 static bool tree_invariant_p (tree t);
3189 static bool
3190 tree_invariant_p_1 (tree t)
3192 tree op;
3194 if (TREE_CONSTANT (t)
3195 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3196 return true;
3198 switch (TREE_CODE (t))
3200 case SAVE_EXPR:
3201 return true;
3203 case ADDR_EXPR:
3204 op = TREE_OPERAND (t, 0);
3205 while (handled_component_p (op))
3207 switch (TREE_CODE (op))
3209 case ARRAY_REF:
3210 case ARRAY_RANGE_REF:
3211 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3212 || TREE_OPERAND (op, 2) != NULL_TREE
3213 || TREE_OPERAND (op, 3) != NULL_TREE)
3214 return false;
3215 break;
3217 case COMPONENT_REF:
3218 if (TREE_OPERAND (op, 2) != NULL_TREE)
3219 return false;
3220 break;
3222 default:;
3224 op = TREE_OPERAND (op, 0);
3227 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3229 default:
3230 break;
3233 return false;
3236 /* Return true if T is function-invariant. */
3238 static bool
3239 tree_invariant_p (tree t)
3241 tree inner = skip_simple_arithmetic (t);
3242 return tree_invariant_p_1 (inner);
3245 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3246 Do this to any expression which may be used in more than one place,
3247 but must be evaluated only once.
3249 Normally, expand_expr would reevaluate the expression each time.
3250 Calling save_expr produces something that is evaluated and recorded
3251 the first time expand_expr is called on it. Subsequent calls to
3252 expand_expr just reuse the recorded value.
3254 The call to expand_expr that generates code that actually computes
3255 the value is the first call *at compile time*. Subsequent calls
3256 *at compile time* generate code to use the saved value.
3257 This produces correct result provided that *at run time* control
3258 always flows through the insns made by the first expand_expr
3259 before reaching the other places where the save_expr was evaluated.
3260 You, the caller of save_expr, must make sure this is so.
3262 Constants, and certain read-only nodes, are returned with no
3263 SAVE_EXPR because that is safe. Expressions containing placeholders
3264 are not touched; see tree.def for an explanation of what these
3265 are used for. */
3267 tree
3268 save_expr (tree expr)
3270 tree t = fold (expr);
3271 tree inner;
3273 /* If the tree evaluates to a constant, then we don't want to hide that
3274 fact (i.e. this allows further folding, and direct checks for constants).
3275 However, a read-only object that has side effects cannot be bypassed.
3276 Since it is no problem to reevaluate literals, we just return the
3277 literal node. */
3278 inner = skip_simple_arithmetic (t);
3279 if (TREE_CODE (inner) == ERROR_MARK)
3280 return inner;
3282 if (tree_invariant_p_1 (inner))
3283 return t;
3285 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3286 it means that the size or offset of some field of an object depends on
3287 the value within another field.
3289 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
3290 and some variable since it would then need to be both evaluated once and
3291 evaluated more than once. Front-ends must assure this case cannot
3292 happen by surrounding any such subexpressions in their own SAVE_EXPR
3293 and forcing evaluation at the proper time. */
3294 if (contains_placeholder_p (inner))
3295 return t;
3297 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
3298 SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
3300 /* This expression might be placed ahead of a jump to ensure that the
3301 value was computed on both sides of the jump. So make sure it isn't
3302 eliminated as dead. */
3303 TREE_SIDE_EFFECTS (t) = 1;
3304 return t;
3307 /* Look inside EXPR into any simple arithmetic operations. Return the
3308 outermost non-arithmetic or non-invariant node. */
3310 tree
3311 skip_simple_arithmetic (tree expr)
3313 /* We don't care about whether this can be used as an lvalue in this
3314 context. */
3315 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3316 expr = TREE_OPERAND (expr, 0);
3318 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3319 a constant, it will be more efficient to not make another SAVE_EXPR since
3320 it will allow better simplification and GCSE will be able to merge the
3321 computations if they actually occur. */
3322 while (true)
3324 if (UNARY_CLASS_P (expr))
3325 expr = TREE_OPERAND (expr, 0);
3326 else if (BINARY_CLASS_P (expr))
3328 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3329 expr = TREE_OPERAND (expr, 0);
3330 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3331 expr = TREE_OPERAND (expr, 1);
3332 else
3333 break;
3335 else
3336 break;
3339 return expr;
3342 /* Look inside EXPR into simple arithmetic operations involving constants.
3343 Return the outermost non-arithmetic or non-constant node. */
3345 tree
3346 skip_simple_constant_arithmetic (tree expr)
3348 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3349 expr = TREE_OPERAND (expr, 0);
3351 while (true)
3353 if (UNARY_CLASS_P (expr))
3354 expr = TREE_OPERAND (expr, 0);
3355 else if (BINARY_CLASS_P (expr))
3357 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3358 expr = TREE_OPERAND (expr, 0);
3359 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3360 expr = TREE_OPERAND (expr, 1);
3361 else
3362 break;
3364 else
3365 break;
3368 return expr;
3371 /* Return which tree structure is used by T. */
3373 enum tree_node_structure_enum
3374 tree_node_structure (const_tree t)
3376 const enum tree_code code = TREE_CODE (t);
3377 return tree_node_structure_for_code (code);
3380 /* Set various status flags when building a CALL_EXPR object T. */
3382 static void
3383 process_call_operands (tree t)
3385 bool side_effects = TREE_SIDE_EFFECTS (t);
3386 bool read_only = false;
3387 int i = call_expr_flags (t);
3389 /* Calls have side-effects, except those to const or pure functions. */
3390 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3391 side_effects = true;
3392 /* Propagate TREE_READONLY of arguments for const functions. */
3393 if (i & ECF_CONST)
3394 read_only = true;
3396 if (!side_effects || read_only)
3397 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3399 tree op = TREE_OPERAND (t, i);
3400 if (op && TREE_SIDE_EFFECTS (op))
3401 side_effects = true;
3402 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3403 read_only = false;
3406 TREE_SIDE_EFFECTS (t) = side_effects;
3407 TREE_READONLY (t) = read_only;
3410 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3411 size or offset that depends on a field within a record. */
3413 bool
3414 contains_placeholder_p (const_tree exp)
3416 enum tree_code code;
3418 if (!exp)
3419 return 0;
3421 code = TREE_CODE (exp);
3422 if (code == PLACEHOLDER_EXPR)
3423 return 1;
3425 switch (TREE_CODE_CLASS (code))
3427 case tcc_reference:
3428 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3429 position computations since they will be converted into a
3430 WITH_RECORD_EXPR involving the reference, which will assume
3431 here will be valid. */
3432 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3434 case tcc_exceptional:
3435 if (code == TREE_LIST)
3436 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3437 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3438 break;
3440 case tcc_unary:
3441 case tcc_binary:
3442 case tcc_comparison:
3443 case tcc_expression:
3444 switch (code)
3446 case COMPOUND_EXPR:
3447 /* Ignoring the first operand isn't quite right, but works best. */
3448 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3450 case COND_EXPR:
3451 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3452 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3453 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3455 case SAVE_EXPR:
3456 /* The save_expr function never wraps anything containing
3457 a PLACEHOLDER_EXPR. */
3458 return 0;
3460 default:
3461 break;
3464 switch (TREE_CODE_LENGTH (code))
3466 case 1:
3467 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3468 case 2:
3469 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3470 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3471 default:
3472 return 0;
3475 case tcc_vl_exp:
3476 switch (code)
3478 case CALL_EXPR:
3480 const_tree arg;
3481 const_call_expr_arg_iterator iter;
3482 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3483 if (CONTAINS_PLACEHOLDER_P (arg))
3484 return 1;
3485 return 0;
3487 default:
3488 return 0;
3491 default:
3492 return 0;
3494 return 0;
3497 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3498 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3499 field positions. */
3501 static bool
3502 type_contains_placeholder_1 (const_tree type)
3504 /* If the size contains a placeholder or the parent type (component type in
3505 the case of arrays) type involves a placeholder, this type does. */
3506 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3507 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3508 || (!POINTER_TYPE_P (type)
3509 && TREE_TYPE (type)
3510 && type_contains_placeholder_p (TREE_TYPE (type))))
3511 return true;
3513 /* Now do type-specific checks. Note that the last part of the check above
3514 greatly limits what we have to do below. */
3515 switch (TREE_CODE (type))
3517 case VOID_TYPE:
3518 case POINTER_BOUNDS_TYPE:
3519 case COMPLEX_TYPE:
3520 case ENUMERAL_TYPE:
3521 case BOOLEAN_TYPE:
3522 case POINTER_TYPE:
3523 case OFFSET_TYPE:
3524 case REFERENCE_TYPE:
3525 case METHOD_TYPE:
3526 case FUNCTION_TYPE:
3527 case VECTOR_TYPE:
3528 case NULLPTR_TYPE:
3529 return false;
3531 case INTEGER_TYPE:
3532 case REAL_TYPE:
3533 case FIXED_POINT_TYPE:
3534 /* Here we just check the bounds. */
3535 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3536 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3538 case ARRAY_TYPE:
3539 /* We have already checked the component type above, so just check the
3540 domain type. */
3541 return type_contains_placeholder_p (TYPE_DOMAIN (type));
3543 case RECORD_TYPE:
3544 case UNION_TYPE:
3545 case QUAL_UNION_TYPE:
3547 tree field;
3549 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3550 if (TREE_CODE (field) == FIELD_DECL
3551 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3552 || (TREE_CODE (type) == QUAL_UNION_TYPE
3553 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3554 || type_contains_placeholder_p (TREE_TYPE (field))))
3555 return true;
3557 return false;
3560 default:
3561 gcc_unreachable ();
3565 /* Wrapper around above function used to cache its result. */
3567 bool
3568 type_contains_placeholder_p (tree type)
3570 bool result;
3572 /* If the contains_placeholder_bits field has been initialized,
3573 then we know the answer. */
3574 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3575 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3577 /* Indicate that we've seen this type node, and the answer is false.
3578 This is what we want to return if we run into recursion via fields. */
3579 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3581 /* Compute the real value. */
3582 result = type_contains_placeholder_1 (type);
3584 /* Store the real value. */
3585 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3587 return result;
3590 /* Push tree EXP onto vector QUEUE if it is not already present. */
3592 static void
3593 push_without_duplicates (tree exp, vec<tree> *queue)
3595 unsigned int i;
3596 tree iter;
3598 FOR_EACH_VEC_ELT (*queue, i, iter)
3599 if (simple_cst_equal (iter, exp) == 1)
3600 break;
3602 if (!iter)
3603 queue->safe_push (exp);
3606 /* Given a tree EXP, find all occurrences of references to fields
3607 in a PLACEHOLDER_EXPR and place them in vector REFS without
3608 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3609 we assume here that EXP contains only arithmetic expressions
3610 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3611 argument list. */
3613 void
3614 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3616 enum tree_code code = TREE_CODE (exp);
3617 tree inner;
3618 int i;
3620 /* We handle TREE_LIST and COMPONENT_REF separately. */
3621 if (code == TREE_LIST)
3623 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3624 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3626 else if (code == COMPONENT_REF)
3628 for (inner = TREE_OPERAND (exp, 0);
3629 REFERENCE_CLASS_P (inner);
3630 inner = TREE_OPERAND (inner, 0))
3633 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3634 push_without_duplicates (exp, refs);
3635 else
3636 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3638 else
3639 switch (TREE_CODE_CLASS (code))
3641 case tcc_constant:
3642 break;
3644 case tcc_declaration:
3645 /* Variables allocated to static storage can stay. */
3646 if (!TREE_STATIC (exp))
3647 push_without_duplicates (exp, refs);
3648 break;
3650 case tcc_expression:
3651 /* This is the pattern built in ada/make_aligning_type. */
3652 if (code == ADDR_EXPR
3653 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3655 push_without_duplicates (exp, refs);
3656 break;
3659 /* Fall through... */
3661 case tcc_exceptional:
3662 case tcc_unary:
3663 case tcc_binary:
3664 case tcc_comparison:
3665 case tcc_reference:
3666 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3667 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3668 break;
3670 case tcc_vl_exp:
3671 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3672 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3673 break;
3675 default:
3676 gcc_unreachable ();
3680 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3681 return a tree with all occurrences of references to F in a
3682 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3683 CONST_DECLs. Note that we assume here that EXP contains only
3684 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3685 occurring only in their argument list. */
3687 tree
3688 substitute_in_expr (tree exp, tree f, tree r)
3690 enum tree_code code = TREE_CODE (exp);
3691 tree op0, op1, op2, op3;
3692 tree new_tree;
3694 /* We handle TREE_LIST and COMPONENT_REF separately. */
3695 if (code == TREE_LIST)
3697 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3698 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3699 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3700 return exp;
3702 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3704 else if (code == COMPONENT_REF)
3706 tree inner;
3708 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3709 and it is the right field, replace it with R. */
3710 for (inner = TREE_OPERAND (exp, 0);
3711 REFERENCE_CLASS_P (inner);
3712 inner = TREE_OPERAND (inner, 0))
3715 /* The field. */
3716 op1 = TREE_OPERAND (exp, 1);
3718 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3719 return r;
3721 /* If this expression hasn't been completed let, leave it alone. */
3722 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3723 return exp;
3725 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3726 if (op0 == TREE_OPERAND (exp, 0))
3727 return exp;
3729 new_tree
3730 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3732 else
3733 switch (TREE_CODE_CLASS (code))
3735 case tcc_constant:
3736 return exp;
3738 case tcc_declaration:
3739 if (exp == f)
3740 return r;
3741 else
3742 return exp;
3744 case tcc_expression:
3745 if (exp == f)
3746 return r;
3748 /* Fall through... */
3750 case tcc_exceptional:
3751 case tcc_unary:
3752 case tcc_binary:
3753 case tcc_comparison:
3754 case tcc_reference:
3755 switch (TREE_CODE_LENGTH (code))
3757 case 0:
3758 return exp;
3760 case 1:
3761 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3762 if (op0 == TREE_OPERAND (exp, 0))
3763 return exp;
3765 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3766 break;
3768 case 2:
3769 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3770 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3772 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3773 return exp;
3775 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3776 break;
3778 case 3:
3779 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3780 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3781 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3783 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3784 && op2 == TREE_OPERAND (exp, 2))
3785 return exp;
3787 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3788 break;
3790 case 4:
3791 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3792 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3793 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3794 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3796 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3797 && op2 == TREE_OPERAND (exp, 2)
3798 && op3 == TREE_OPERAND (exp, 3))
3799 return exp;
3801 new_tree
3802 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3803 break;
3805 default:
3806 gcc_unreachable ();
3808 break;
3810 case tcc_vl_exp:
3812 int i;
3814 new_tree = NULL_TREE;
3816 /* If we are trying to replace F with a constant, inline back
3817 functions which do nothing else than computing a value from
3818 the arguments they are passed. This makes it possible to
3819 fold partially or entirely the replacement expression. */
3820 if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3822 tree t = maybe_inline_call_in_expr (exp);
3823 if (t)
3824 return SUBSTITUTE_IN_EXPR (t, f, r);
3827 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3829 tree op = TREE_OPERAND (exp, i);
3830 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3831 if (new_op != op)
3833 if (!new_tree)
3834 new_tree = copy_node (exp);
3835 TREE_OPERAND (new_tree, i) = new_op;
3839 if (new_tree)
3841 new_tree = fold (new_tree);
3842 if (TREE_CODE (new_tree) == CALL_EXPR)
3843 process_call_operands (new_tree);
3845 else
3846 return exp;
3848 break;
3850 default:
3851 gcc_unreachable ();
3854 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3856 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3857 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3859 return new_tree;
3862 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3863 for it within OBJ, a tree that is an object or a chain of references. */
3865 tree
3866 substitute_placeholder_in_expr (tree exp, tree obj)
3868 enum tree_code code = TREE_CODE (exp);
3869 tree op0, op1, op2, op3;
3870 tree new_tree;
3872 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3873 in the chain of OBJ. */
3874 if (code == PLACEHOLDER_EXPR)
3876 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3877 tree elt;
3879 for (elt = obj; elt != 0;
3880 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3881 || TREE_CODE (elt) == COND_EXPR)
3882 ? TREE_OPERAND (elt, 1)
3883 : (REFERENCE_CLASS_P (elt)
3884 || UNARY_CLASS_P (elt)
3885 || BINARY_CLASS_P (elt)
3886 || VL_EXP_CLASS_P (elt)
3887 || EXPRESSION_CLASS_P (elt))
3888 ? TREE_OPERAND (elt, 0) : 0))
3889 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3890 return elt;
3892 for (elt = obj; elt != 0;
3893 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3894 || TREE_CODE (elt) == COND_EXPR)
3895 ? TREE_OPERAND (elt, 1)
3896 : (REFERENCE_CLASS_P (elt)
3897 || UNARY_CLASS_P (elt)
3898 || BINARY_CLASS_P (elt)
3899 || VL_EXP_CLASS_P (elt)
3900 || EXPRESSION_CLASS_P (elt))
3901 ? TREE_OPERAND (elt, 0) : 0))
3902 if (POINTER_TYPE_P (TREE_TYPE (elt))
3903 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3904 == need_type))
3905 return fold_build1 (INDIRECT_REF, need_type, elt);
3907 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3908 survives until RTL generation, there will be an error. */
3909 return exp;
3912 /* TREE_LIST is special because we need to look at TREE_VALUE
3913 and TREE_CHAIN, not TREE_OPERANDS. */
3914 else if (code == TREE_LIST)
3916 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3917 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3918 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3919 return exp;
3921 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3923 else
3924 switch (TREE_CODE_CLASS (code))
3926 case tcc_constant:
3927 case tcc_declaration:
3928 return exp;
3930 case tcc_exceptional:
3931 case tcc_unary:
3932 case tcc_binary:
3933 case tcc_comparison:
3934 case tcc_expression:
3935 case tcc_reference:
3936 case tcc_statement:
3937 switch (TREE_CODE_LENGTH (code))
3939 case 0:
3940 return exp;
3942 case 1:
3943 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3944 if (op0 == TREE_OPERAND (exp, 0))
3945 return exp;
3947 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3948 break;
3950 case 2:
3951 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3952 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3954 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3955 return exp;
3957 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3958 break;
3960 case 3:
3961 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3962 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3963 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3965 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3966 && op2 == TREE_OPERAND (exp, 2))
3967 return exp;
3969 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3970 break;
3972 case 4:
3973 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3974 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3975 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3976 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
3978 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3979 && op2 == TREE_OPERAND (exp, 2)
3980 && op3 == TREE_OPERAND (exp, 3))
3981 return exp;
3983 new_tree
3984 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3985 break;
3987 default:
3988 gcc_unreachable ();
3990 break;
3992 case tcc_vl_exp:
3994 int i;
3996 new_tree = NULL_TREE;
3998 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4000 tree op = TREE_OPERAND (exp, i);
4001 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4002 if (new_op != op)
4004 if (!new_tree)
4005 new_tree = copy_node (exp);
4006 TREE_OPERAND (new_tree, i) = new_op;
4010 if (new_tree)
4012 new_tree = fold (new_tree);
4013 if (TREE_CODE (new_tree) == CALL_EXPR)
4014 process_call_operands (new_tree);
4016 else
4017 return exp;
4019 break;
4021 default:
4022 gcc_unreachable ();
4025 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4027 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4028 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4030 return new_tree;
4034 /* Subroutine of stabilize_reference; this is called for subtrees of
4035 references. Any expression with side-effects must be put in a SAVE_EXPR
4036 to ensure that it is only evaluated once.
4038 We don't put SAVE_EXPR nodes around everything, because assigning very
4039 simple expressions to temporaries causes us to miss good opportunities
4040 for optimizations. Among other things, the opportunity to fold in the
4041 addition of a constant into an addressing mode often gets lost, e.g.
4042 "y[i+1] += x;". In general, we take the approach that we should not make
4043 an assignment unless we are forced into it - i.e., that any non-side effect
4044 operator should be allowed, and that cse should take care of coalescing
4045 multiple utterances of the same expression should that prove fruitful. */
4047 static tree
4048 stabilize_reference_1 (tree e)
4050 tree result;
4051 enum tree_code code = TREE_CODE (e);
4053 /* We cannot ignore const expressions because it might be a reference
4054 to a const array but whose index contains side-effects. But we can
4055 ignore things that are actual constant or that already have been
4056 handled by this function. */
4058 if (tree_invariant_p (e))
4059 return e;
4061 switch (TREE_CODE_CLASS (code))
4063 case tcc_exceptional:
4064 case tcc_type:
4065 case tcc_declaration:
4066 case tcc_comparison:
4067 case tcc_statement:
4068 case tcc_expression:
4069 case tcc_reference:
4070 case tcc_vl_exp:
4071 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4072 so that it will only be evaluated once. */
4073 /* The reference (r) and comparison (<) classes could be handled as
4074 below, but it is generally faster to only evaluate them once. */
4075 if (TREE_SIDE_EFFECTS (e))
4076 return save_expr (e);
4077 return e;
4079 case tcc_constant:
4080 /* Constants need no processing. In fact, we should never reach
4081 here. */
4082 return e;
4084 case tcc_binary:
4085 /* Division is slow and tends to be compiled with jumps,
4086 especially the division by powers of 2 that is often
4087 found inside of an array reference. So do it just once. */
4088 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4089 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4090 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4091 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4092 return save_expr (e);
4093 /* Recursively stabilize each operand. */
4094 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4095 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4096 break;
4098 case tcc_unary:
4099 /* Recursively stabilize each operand. */
4100 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4101 break;
4103 default:
4104 gcc_unreachable ();
4107 TREE_TYPE (result) = TREE_TYPE (e);
4108 TREE_READONLY (result) = TREE_READONLY (e);
4109 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4110 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4112 return result;
4115 /* Stabilize a reference so that we can use it any number of times
4116 without causing its operands to be evaluated more than once.
4117 Returns the stabilized reference. This works by means of save_expr,
4118 so see the caveats in the comments about save_expr.
4120 Also allows conversion expressions whose operands are references.
4121 Any other kind of expression is returned unchanged. */
4123 tree
4124 stabilize_reference (tree ref)
4126 tree result;
4127 enum tree_code code = TREE_CODE (ref);
4129 switch (code)
4131 case VAR_DECL:
4132 case PARM_DECL:
4133 case RESULT_DECL:
4134 /* No action is needed in this case. */
4135 return ref;
4137 CASE_CONVERT:
4138 case FLOAT_EXPR:
4139 case FIX_TRUNC_EXPR:
4140 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4141 break;
4143 case INDIRECT_REF:
4144 result = build_nt (INDIRECT_REF,
4145 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4146 break;
4148 case COMPONENT_REF:
4149 result = build_nt (COMPONENT_REF,
4150 stabilize_reference (TREE_OPERAND (ref, 0)),
4151 TREE_OPERAND (ref, 1), NULL_TREE);
4152 break;
4154 case BIT_FIELD_REF:
4155 result = build_nt (BIT_FIELD_REF,
4156 stabilize_reference (TREE_OPERAND (ref, 0)),
4157 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4158 break;
4160 case ARRAY_REF:
4161 result = build_nt (ARRAY_REF,
4162 stabilize_reference (TREE_OPERAND (ref, 0)),
4163 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4164 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4165 break;
4167 case ARRAY_RANGE_REF:
4168 result = build_nt (ARRAY_RANGE_REF,
4169 stabilize_reference (TREE_OPERAND (ref, 0)),
4170 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4171 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4172 break;
4174 case COMPOUND_EXPR:
4175 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4176 it wouldn't be ignored. This matters when dealing with
4177 volatiles. */
4178 return stabilize_reference_1 (ref);
4180 /* If arg isn't a kind of lvalue we recognize, make no change.
4181 Caller should recognize the error for an invalid lvalue. */
4182 default:
4183 return ref;
4185 case ERROR_MARK:
4186 return error_mark_node;
4189 TREE_TYPE (result) = TREE_TYPE (ref);
4190 TREE_READONLY (result) = TREE_READONLY (ref);
4191 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4192 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4194 return result;
4197 /* Low-level constructors for expressions. */
4199 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4200 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4202 void
4203 recompute_tree_invariant_for_addr_expr (tree t)
4205 tree node;
4206 bool tc = true, se = false;
4208 /* We started out assuming this address is both invariant and constant, but
4209 does not have side effects. Now go down any handled components and see if
4210 any of them involve offsets that are either non-constant or non-invariant.
4211 Also check for side-effects.
4213 ??? Note that this code makes no attempt to deal with the case where
4214 taking the address of something causes a copy due to misalignment. */
4216 #define UPDATE_FLAGS(NODE) \
4217 do { tree _node = (NODE); \
4218 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4219 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4221 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4222 node = TREE_OPERAND (node, 0))
4224 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4225 array reference (probably made temporarily by the G++ front end),
4226 so ignore all the operands. */
4227 if ((TREE_CODE (node) == ARRAY_REF
4228 || TREE_CODE (node) == ARRAY_RANGE_REF)
4229 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4231 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4232 if (TREE_OPERAND (node, 2))
4233 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4234 if (TREE_OPERAND (node, 3))
4235 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4237 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4238 FIELD_DECL, apparently. The G++ front end can put something else
4239 there, at least temporarily. */
4240 else if (TREE_CODE (node) == COMPONENT_REF
4241 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4243 if (TREE_OPERAND (node, 2))
4244 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4248 node = lang_hooks.expr_to_decl (node, &tc, &se);
4250 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4251 the address, since &(*a)->b is a form of addition. If it's a constant, the
4252 address is constant too. If it's a decl, its address is constant if the
4253 decl is static. Everything else is not constant and, furthermore,
4254 taking the address of a volatile variable is not volatile. */
4255 if (TREE_CODE (node) == INDIRECT_REF
4256 || TREE_CODE (node) == MEM_REF)
4257 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4258 else if (CONSTANT_CLASS_P (node))
4260 else if (DECL_P (node))
4261 tc &= (staticp (node) != NULL_TREE);
4262 else
4264 tc = false;
4265 se |= TREE_SIDE_EFFECTS (node);
4269 TREE_CONSTANT (t) = tc;
4270 TREE_SIDE_EFFECTS (t) = se;
4271 #undef UPDATE_FLAGS
4274 /* Build an expression of code CODE, data type TYPE, and operands as
4275 specified. Expressions and reference nodes can be created this way.
4276 Constants, decls, types and misc nodes cannot be.
4278 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4279 enough for all extant tree codes. */
4281 tree
4282 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
4284 tree t;
4286 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4288 t = make_node_stat (code PASS_MEM_STAT);
4289 TREE_TYPE (t) = tt;
4291 return t;
4294 tree
4295 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4297 int length = sizeof (struct tree_exp);
4298 tree t;
4300 record_node_allocation_statistics (code, length);
4302 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4304 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4306 memset (t, 0, sizeof (struct tree_common));
4308 TREE_SET_CODE (t, code);
4310 TREE_TYPE (t) = type;
4311 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4312 TREE_OPERAND (t, 0) = node;
4313 if (node && !TYPE_P (node))
4315 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4316 TREE_READONLY (t) = TREE_READONLY (node);
4319 if (TREE_CODE_CLASS (code) == tcc_statement)
4320 TREE_SIDE_EFFECTS (t) = 1;
4321 else switch (code)
4323 case VA_ARG_EXPR:
4324 /* All of these have side-effects, no matter what their
4325 operands are. */
4326 TREE_SIDE_EFFECTS (t) = 1;
4327 TREE_READONLY (t) = 0;
4328 break;
4330 case INDIRECT_REF:
4331 /* Whether a dereference is readonly has nothing to do with whether
4332 its operand is readonly. */
4333 TREE_READONLY (t) = 0;
4334 break;
4336 case ADDR_EXPR:
4337 if (node)
4338 recompute_tree_invariant_for_addr_expr (t);
4339 break;
4341 default:
4342 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4343 && node && !TYPE_P (node)
4344 && TREE_CONSTANT (node))
4345 TREE_CONSTANT (t) = 1;
4346 if (TREE_CODE_CLASS (code) == tcc_reference
4347 && node && TREE_THIS_VOLATILE (node))
4348 TREE_THIS_VOLATILE (t) = 1;
4349 break;
4352 return t;
4355 #define PROCESS_ARG(N) \
4356 do { \
4357 TREE_OPERAND (t, N) = arg##N; \
4358 if (arg##N &&!TYPE_P (arg##N)) \
4360 if (TREE_SIDE_EFFECTS (arg##N)) \
4361 side_effects = 1; \
4362 if (!TREE_READONLY (arg##N) \
4363 && !CONSTANT_CLASS_P (arg##N)) \
4364 (void) (read_only = 0); \
4365 if (!TREE_CONSTANT (arg##N)) \
4366 (void) (constant = 0); \
4368 } while (0)
4370 tree
4371 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4373 bool constant, read_only, side_effects;
4374 tree t;
4376 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4378 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4379 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4380 /* When sizetype precision doesn't match that of pointers
4381 we need to be able to build explicit extensions or truncations
4382 of the offset argument. */
4383 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4384 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4385 && TREE_CODE (arg1) == INTEGER_CST);
4387 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4388 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4389 && ptrofftype_p (TREE_TYPE (arg1)));
4391 t = make_node_stat (code PASS_MEM_STAT);
4392 TREE_TYPE (t) = tt;
4394 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4395 result based on those same flags for the arguments. But if the
4396 arguments aren't really even `tree' expressions, we shouldn't be trying
4397 to do this. */
4399 /* Expressions without side effects may be constant if their
4400 arguments are as well. */
4401 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4402 || TREE_CODE_CLASS (code) == tcc_binary);
4403 read_only = 1;
4404 side_effects = TREE_SIDE_EFFECTS (t);
4406 PROCESS_ARG (0);
4407 PROCESS_ARG (1);
4409 TREE_SIDE_EFFECTS (t) = side_effects;
4410 if (code == MEM_REF)
4412 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4414 tree o = TREE_OPERAND (arg0, 0);
4415 TREE_READONLY (t) = TREE_READONLY (o);
4416 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4419 else
4421 TREE_READONLY (t) = read_only;
4422 TREE_CONSTANT (t) = constant;
4423 TREE_THIS_VOLATILE (t)
4424 = (TREE_CODE_CLASS (code) == tcc_reference
4425 && arg0 && TREE_THIS_VOLATILE (arg0));
4428 return t;
4432 tree
4433 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4434 tree arg2 MEM_STAT_DECL)
4436 bool constant, read_only, side_effects;
4437 tree t;
4439 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4440 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4442 t = make_node_stat (code PASS_MEM_STAT);
4443 TREE_TYPE (t) = tt;
4445 read_only = 1;
4447 /* As a special exception, if COND_EXPR has NULL branches, we
4448 assume that it is a gimple statement and always consider
4449 it to have side effects. */
4450 if (code == COND_EXPR
4451 && tt == void_type_node
4452 && arg1 == NULL_TREE
4453 && arg2 == NULL_TREE)
4454 side_effects = true;
4455 else
4456 side_effects = TREE_SIDE_EFFECTS (t);
4458 PROCESS_ARG (0);
4459 PROCESS_ARG (1);
4460 PROCESS_ARG (2);
4462 if (code == COND_EXPR)
4463 TREE_READONLY (t) = read_only;
4465 TREE_SIDE_EFFECTS (t) = side_effects;
4466 TREE_THIS_VOLATILE (t)
4467 = (TREE_CODE_CLASS (code) == tcc_reference
4468 && arg0 && TREE_THIS_VOLATILE (arg0));
4470 return t;
4473 tree
4474 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4475 tree arg2, tree arg3 MEM_STAT_DECL)
4477 bool constant, read_only, side_effects;
4478 tree t;
4480 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4482 t = make_node_stat (code PASS_MEM_STAT);
4483 TREE_TYPE (t) = tt;
4485 side_effects = TREE_SIDE_EFFECTS (t);
4487 PROCESS_ARG (0);
4488 PROCESS_ARG (1);
4489 PROCESS_ARG (2);
4490 PROCESS_ARG (3);
4492 TREE_SIDE_EFFECTS (t) = side_effects;
4493 TREE_THIS_VOLATILE (t)
4494 = (TREE_CODE_CLASS (code) == tcc_reference
4495 && arg0 && TREE_THIS_VOLATILE (arg0));
4497 return t;
4500 tree
4501 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4502 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4504 bool constant, read_only, side_effects;
4505 tree t;
4507 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4509 t = make_node_stat (code PASS_MEM_STAT);
4510 TREE_TYPE (t) = tt;
4512 side_effects = TREE_SIDE_EFFECTS (t);
4514 PROCESS_ARG (0);
4515 PROCESS_ARG (1);
4516 PROCESS_ARG (2);
4517 PROCESS_ARG (3);
4518 PROCESS_ARG (4);
4520 TREE_SIDE_EFFECTS (t) = side_effects;
4521 if (code == TARGET_MEM_REF)
4523 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4525 tree o = TREE_OPERAND (arg0, 0);
4526 TREE_READONLY (t) = TREE_READONLY (o);
4527 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4530 else
4531 TREE_THIS_VOLATILE (t)
4532 = (TREE_CODE_CLASS (code) == tcc_reference
4533 && arg0 && TREE_THIS_VOLATILE (arg0));
4535 return t;
4538 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4539 on the pointer PTR. */
4541 tree
4542 build_simple_mem_ref_loc (location_t loc, tree ptr)
4544 HOST_WIDE_INT offset = 0;
4545 tree ptype = TREE_TYPE (ptr);
4546 tree tem;
4547 /* For convenience allow addresses that collapse to a simple base
4548 and offset. */
4549 if (TREE_CODE (ptr) == ADDR_EXPR
4550 && (handled_component_p (TREE_OPERAND (ptr, 0))
4551 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4553 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4554 gcc_assert (ptr);
4555 ptr = build_fold_addr_expr (ptr);
4556 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4558 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4559 ptr, build_int_cst (ptype, offset));
4560 SET_EXPR_LOCATION (tem, loc);
4561 return tem;
4564 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4566 offset_int
4567 mem_ref_offset (const_tree t)
4569 return offset_int::from (TREE_OPERAND (t, 1), SIGNED);
4572 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4573 offsetted by OFFSET units. */
4575 tree
4576 build_invariant_address (tree type, tree base, HOST_WIDE_INT offset)
4578 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4579 build_fold_addr_expr (base),
4580 build_int_cst (ptr_type_node, offset));
4581 tree addr = build1 (ADDR_EXPR, type, ref);
4582 recompute_tree_invariant_for_addr_expr (addr);
4583 return addr;
4586 /* Similar except don't specify the TREE_TYPE
4587 and leave the TREE_SIDE_EFFECTS as 0.
4588 It is permissible for arguments to be null,
4589 or even garbage if their values do not matter. */
4591 tree
4592 build_nt (enum tree_code code, ...)
4594 tree t;
4595 int length;
4596 int i;
4597 va_list p;
4599 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4601 va_start (p, code);
4603 t = make_node (code);
4604 length = TREE_CODE_LENGTH (code);
4606 for (i = 0; i < length; i++)
4607 TREE_OPERAND (t, i) = va_arg (p, tree);
4609 va_end (p);
4610 return t;
4613 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4614 tree vec. */
4616 tree
4617 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4619 tree ret, t;
4620 unsigned int ix;
4622 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4623 CALL_EXPR_FN (ret) = fn;
4624 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4625 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4626 CALL_EXPR_ARG (ret, ix) = t;
4627 return ret;
4630 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4631 We do NOT enter this node in any sort of symbol table.
4633 LOC is the location of the decl.
4635 layout_decl is used to set up the decl's storage layout.
4636 Other slots are initialized to 0 or null pointers. */
4638 tree
4639 build_decl_stat (location_t loc, enum tree_code code, tree name,
4640 tree type MEM_STAT_DECL)
4642 tree t;
4644 t = make_node_stat (code PASS_MEM_STAT);
4645 DECL_SOURCE_LOCATION (t) = loc;
4647 /* if (type == error_mark_node)
4648 type = integer_type_node; */
4649 /* That is not done, deliberately, so that having error_mark_node
4650 as the type can suppress useless errors in the use of this variable. */
4652 DECL_NAME (t) = name;
4653 TREE_TYPE (t) = type;
4655 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4656 layout_decl (t, 0);
4658 return t;
4661 /* Builds and returns function declaration with NAME and TYPE. */
4663 tree
4664 build_fn_decl (const char *name, tree type)
4666 tree id = get_identifier (name);
4667 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4669 DECL_EXTERNAL (decl) = 1;
4670 TREE_PUBLIC (decl) = 1;
4671 DECL_ARTIFICIAL (decl) = 1;
4672 TREE_NOTHROW (decl) = 1;
4674 return decl;
4677 vec<tree, va_gc> *all_translation_units;
4679 /* Builds a new translation-unit decl with name NAME, queues it in the
4680 global list of translation-unit decls and returns it. */
4682 tree
4683 build_translation_unit_decl (tree name)
4685 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4686 name, NULL_TREE);
4687 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4688 vec_safe_push (all_translation_units, tu);
4689 return tu;
4693 /* BLOCK nodes are used to represent the structure of binding contours
4694 and declarations, once those contours have been exited and their contents
4695 compiled. This information is used for outputting debugging info. */
4697 tree
4698 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
4700 tree block = make_node (BLOCK);
4702 BLOCK_VARS (block) = vars;
4703 BLOCK_SUBBLOCKS (block) = subblocks;
4704 BLOCK_SUPERCONTEXT (block) = supercontext;
4705 BLOCK_CHAIN (block) = chain;
4706 return block;
4710 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4712 LOC is the location to use in tree T. */
4714 void
4715 protected_set_expr_location (tree t, location_t loc)
4717 if (CAN_HAVE_LOCATION_P (t))
4718 SET_EXPR_LOCATION (t, loc);
4721 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4722 is ATTRIBUTE. */
4724 tree
4725 build_decl_attribute_variant (tree ddecl, tree attribute)
4727 DECL_ATTRIBUTES (ddecl) = attribute;
4728 return ddecl;
4731 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4732 is ATTRIBUTE and its qualifiers are QUALS.
4734 Record such modified types already made so we don't make duplicates. */
4736 tree
4737 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
4739 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
4741 inchash::hash hstate;
4742 tree ntype;
4743 int i;
4744 tree t;
4745 enum tree_code code = TREE_CODE (ttype);
4747 /* Building a distinct copy of a tagged type is inappropriate; it
4748 causes breakage in code that expects there to be a one-to-one
4749 relationship between a struct and its fields.
4750 build_duplicate_type is another solution (as used in
4751 handle_transparent_union_attribute), but that doesn't play well
4752 with the stronger C++ type identity model. */
4753 if (TREE_CODE (ttype) == RECORD_TYPE
4754 || TREE_CODE (ttype) == UNION_TYPE
4755 || TREE_CODE (ttype) == QUAL_UNION_TYPE
4756 || TREE_CODE (ttype) == ENUMERAL_TYPE)
4758 warning (OPT_Wattributes,
4759 "ignoring attributes applied to %qT after definition",
4760 TYPE_MAIN_VARIANT (ttype));
4761 return build_qualified_type (ttype, quals);
4764 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4765 ntype = build_distinct_type_copy (ttype);
4767 TYPE_ATTRIBUTES (ntype) = attribute;
4769 hstate.add_int (code);
4770 if (TREE_TYPE (ntype))
4771 hstate.add_object (TYPE_HASH (TREE_TYPE (ntype)));
4772 attribute_hash_list (attribute, hstate);
4774 switch (TREE_CODE (ntype))
4776 case FUNCTION_TYPE:
4777 type_hash_list (TYPE_ARG_TYPES (ntype), hstate);
4778 break;
4779 case ARRAY_TYPE:
4780 if (TYPE_DOMAIN (ntype))
4781 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (ntype)));
4782 break;
4783 case INTEGER_TYPE:
4784 t = TYPE_MAX_VALUE (ntype);
4785 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
4786 hstate.add_object (TREE_INT_CST_ELT (t, i));
4787 break;
4788 case REAL_TYPE:
4789 case FIXED_POINT_TYPE:
4791 unsigned int precision = TYPE_PRECISION (ntype);
4792 hstate.add_object (precision);
4794 break;
4795 default:
4796 break;
4799 ntype = type_hash_canon (hstate.end(), ntype);
4801 /* If the target-dependent attributes make NTYPE different from
4802 its canonical type, we will need to use structural equality
4803 checks for this type. */
4804 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4805 || !comp_type_attributes (ntype, ttype))
4806 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
4807 else if (TYPE_CANONICAL (ntype) == ntype)
4808 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
4810 ttype = build_qualified_type (ntype, quals);
4812 else if (TYPE_QUALS (ttype) != quals)
4813 ttype = build_qualified_type (ttype, quals);
4815 return ttype;
4818 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
4819 the same. */
4821 static bool
4822 omp_declare_simd_clauses_equal (tree clauses1, tree clauses2)
4824 tree cl1, cl2;
4825 for (cl1 = clauses1, cl2 = clauses2;
4826 cl1 && cl2;
4827 cl1 = OMP_CLAUSE_CHAIN (cl1), cl2 = OMP_CLAUSE_CHAIN (cl2))
4829 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_CODE (cl2))
4830 return false;
4831 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_SIMDLEN)
4833 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1),
4834 OMP_CLAUSE_DECL (cl2)) != 1)
4835 return false;
4837 switch (OMP_CLAUSE_CODE (cl1))
4839 case OMP_CLAUSE_ALIGNED:
4840 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1),
4841 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2)) != 1)
4842 return false;
4843 break;
4844 case OMP_CLAUSE_LINEAR:
4845 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1),
4846 OMP_CLAUSE_LINEAR_STEP (cl2)) != 1)
4847 return false;
4848 break;
4849 case OMP_CLAUSE_SIMDLEN:
4850 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1),
4851 OMP_CLAUSE_SIMDLEN_EXPR (cl2)) != 1)
4852 return false;
4853 default:
4854 break;
4857 return true;
4860 /* Compare two constructor-element-type constants. Return 1 if the lists
4861 are known to be equal; otherwise return 0. */
4863 static bool
4864 simple_cst_list_equal (const_tree l1, const_tree l2)
4866 while (l1 != NULL_TREE && l2 != NULL_TREE)
4868 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
4869 return false;
4871 l1 = TREE_CHAIN (l1);
4872 l2 = TREE_CHAIN (l2);
4875 return l1 == l2;
4878 /* Compare two identifier nodes representing attributes. Either one may
4879 be in wrapped __ATTR__ form. Return true if they are the same, false
4880 otherwise. */
4882 static bool
4883 cmp_attrib_identifiers (const_tree attr1, const_tree attr2)
4885 /* Make sure we're dealing with IDENTIFIER_NODEs. */
4886 gcc_checking_assert (TREE_CODE (attr1) == IDENTIFIER_NODE
4887 && TREE_CODE (attr2) == IDENTIFIER_NODE);
4889 /* Identifiers can be compared directly for equality. */
4890 if (attr1 == attr2)
4891 return true;
4893 /* If they are not equal, they may still be one in the form
4894 'text' while the other one is in the form '__text__'. TODO:
4895 If we were storing attributes in normalized 'text' form, then
4896 this could all go away and we could take full advantage of
4897 the fact that we're comparing identifiers. :-) */
4898 const size_t attr1_len = IDENTIFIER_LENGTH (attr1);
4899 const size_t attr2_len = IDENTIFIER_LENGTH (attr2);
4901 if (attr2_len == attr1_len + 4)
4903 const char *p = IDENTIFIER_POINTER (attr2);
4904 const char *q = IDENTIFIER_POINTER (attr1);
4905 if (p[0] == '_' && p[1] == '_'
4906 && p[attr2_len - 2] == '_' && p[attr2_len - 1] == '_'
4907 && strncmp (q, p + 2, attr1_len) == 0)
4908 return true;;
4910 else if (attr2_len + 4 == attr1_len)
4912 const char *p = IDENTIFIER_POINTER (attr2);
4913 const char *q = IDENTIFIER_POINTER (attr1);
4914 if (q[0] == '_' && q[1] == '_'
4915 && q[attr1_len - 2] == '_' && q[attr1_len - 1] == '_'
4916 && strncmp (q + 2, p, attr2_len) == 0)
4917 return true;
4920 return false;
4923 /* Compare two attributes for their value identity. Return true if the
4924 attribute values are known to be equal; otherwise return false. */
4926 bool
4927 attribute_value_equal (const_tree attr1, const_tree attr2)
4929 if (TREE_VALUE (attr1) == TREE_VALUE (attr2))
4930 return true;
4932 if (TREE_VALUE (attr1) != NULL_TREE
4933 && TREE_CODE (TREE_VALUE (attr1)) == TREE_LIST
4934 && TREE_VALUE (attr2) != NULL_TREE
4935 && TREE_CODE (TREE_VALUE (attr2)) == TREE_LIST)
4937 /* Handle attribute format. */
4938 if (is_attribute_p ("format", TREE_PURPOSE (attr1)))
4940 attr1 = TREE_VALUE (attr1);
4941 attr2 = TREE_VALUE (attr2);
4942 /* Compare the archetypes (printf/scanf/strftime/...). */
4943 if (!cmp_attrib_identifiers (TREE_VALUE (attr1),
4944 TREE_VALUE (attr2)))
4945 return false;
4946 /* Archetypes are the same. Compare the rest. */
4947 return (simple_cst_list_equal (TREE_CHAIN (attr1),
4948 TREE_CHAIN (attr2)) == 1);
4950 return (simple_cst_list_equal (TREE_VALUE (attr1),
4951 TREE_VALUE (attr2)) == 1);
4954 if ((flag_openmp || flag_openmp_simd)
4955 && TREE_VALUE (attr1) && TREE_VALUE (attr2)
4956 && TREE_CODE (TREE_VALUE (attr1)) == OMP_CLAUSE
4957 && TREE_CODE (TREE_VALUE (attr2)) == OMP_CLAUSE)
4958 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1),
4959 TREE_VALUE (attr2));
4961 return (simple_cst_equal (TREE_VALUE (attr1), TREE_VALUE (attr2)) == 1);
4964 /* Return 0 if the attributes for two types are incompatible, 1 if they
4965 are compatible, and 2 if they are nearly compatible (which causes a
4966 warning to be generated). */
4968 comp_type_attributes (const_tree type1, const_tree type2)
4970 const_tree a1 = TYPE_ATTRIBUTES (type1);
4971 const_tree a2 = TYPE_ATTRIBUTES (type2);
4972 const_tree a;
4974 if (a1 == a2)
4975 return 1;
4976 for (a = a1; a != NULL_TREE; a = TREE_CHAIN (a))
4978 const struct attribute_spec *as;
4979 const_tree attr;
4981 as = lookup_attribute_spec (get_attribute_name (a));
4982 if (!as || as->affects_type_identity == false)
4983 continue;
4985 attr = lookup_attribute (as->name, CONST_CAST_TREE (a2));
4986 if (!attr || !attribute_value_equal (a, attr))
4987 break;
4989 if (!a)
4991 for (a = a2; a != NULL_TREE; a = TREE_CHAIN (a))
4993 const struct attribute_spec *as;
4995 as = lookup_attribute_spec (get_attribute_name (a));
4996 if (!as || as->affects_type_identity == false)
4997 continue;
4999 if (!lookup_attribute (as->name, CONST_CAST_TREE (a1)))
5000 break;
5001 /* We don't need to compare trees again, as we did this
5002 already in first loop. */
5004 /* All types - affecting identity - are equal, so
5005 there is no need to call target hook for comparison. */
5006 if (!a)
5007 return 1;
5009 /* As some type combinations - like default calling-convention - might
5010 be compatible, we have to call the target hook to get the final result. */
5011 return targetm.comp_type_attributes (type1, type2);
5014 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
5015 is ATTRIBUTE.
5017 Record such modified types already made so we don't make duplicates. */
5019 tree
5020 build_type_attribute_variant (tree ttype, tree attribute)
5022 return build_type_attribute_qual_variant (ttype, attribute,
5023 TYPE_QUALS (ttype));
5027 /* Reset the expression *EXPR_P, a size or position.
5029 ??? We could reset all non-constant sizes or positions. But it's cheap
5030 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5032 We need to reset self-referential sizes or positions because they cannot
5033 be gimplified and thus can contain a CALL_EXPR after the gimplification
5034 is finished, which will run afoul of LTO streaming. And they need to be
5035 reset to something essentially dummy but not constant, so as to preserve
5036 the properties of the object they are attached to. */
5038 static inline void
5039 free_lang_data_in_one_sizepos (tree *expr_p)
5041 tree expr = *expr_p;
5042 if (CONTAINS_PLACEHOLDER_P (expr))
5043 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5047 /* Reset all the fields in a binfo node BINFO. We only keep
5048 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5050 static void
5051 free_lang_data_in_binfo (tree binfo)
5053 unsigned i;
5054 tree t;
5056 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5058 BINFO_VIRTUALS (binfo) = NULL_TREE;
5059 BINFO_BASE_ACCESSES (binfo) = NULL;
5060 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5061 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5063 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5064 free_lang_data_in_binfo (t);
5068 /* Reset all language specific information still present in TYPE. */
5070 static void
5071 free_lang_data_in_type (tree type)
5073 gcc_assert (TYPE_P (type));
5075 /* Give the FE a chance to remove its own data first. */
5076 lang_hooks.free_lang_data (type);
5078 TREE_LANG_FLAG_0 (type) = 0;
5079 TREE_LANG_FLAG_1 (type) = 0;
5080 TREE_LANG_FLAG_2 (type) = 0;
5081 TREE_LANG_FLAG_3 (type) = 0;
5082 TREE_LANG_FLAG_4 (type) = 0;
5083 TREE_LANG_FLAG_5 (type) = 0;
5084 TREE_LANG_FLAG_6 (type) = 0;
5086 if (TREE_CODE (type) == FUNCTION_TYPE)
5088 /* Remove the const and volatile qualifiers from arguments. The
5089 C++ front end removes them, but the C front end does not,
5090 leading to false ODR violation errors when merging two
5091 instances of the same function signature compiled by
5092 different front ends. */
5093 tree p;
5095 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5097 tree arg_type = TREE_VALUE (p);
5099 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5101 int quals = TYPE_QUALS (arg_type)
5102 & ~TYPE_QUAL_CONST
5103 & ~TYPE_QUAL_VOLATILE;
5104 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5105 free_lang_data_in_type (TREE_VALUE (p));
5107 /* C++ FE uses TREE_PURPOSE to store initial values. */
5108 TREE_PURPOSE (p) = NULL;
5110 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
5111 TYPE_MINVAL (type) = NULL;
5113 if (TREE_CODE (type) == METHOD_TYPE)
5115 tree p;
5117 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5119 /* C++ FE uses TREE_PURPOSE to store initial values. */
5120 TREE_PURPOSE (p) = NULL;
5122 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
5123 TYPE_MINVAL (type) = NULL;
5126 /* Remove members that are not actually FIELD_DECLs from the field
5127 list of an aggregate. These occur in C++. */
5128 if (RECORD_OR_UNION_TYPE_P (type))
5130 tree prev, member;
5132 /* Note that TYPE_FIELDS can be shared across distinct
5133 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
5134 to be removed, we cannot set its TREE_CHAIN to NULL.
5135 Otherwise, we would not be able to find all the other fields
5136 in the other instances of this TREE_TYPE.
5138 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
5139 prev = NULL_TREE;
5140 member = TYPE_FIELDS (type);
5141 while (member)
5143 if (TREE_CODE (member) == FIELD_DECL
5144 || TREE_CODE (member) == TYPE_DECL)
5146 if (prev)
5147 TREE_CHAIN (prev) = member;
5148 else
5149 TYPE_FIELDS (type) = member;
5150 prev = member;
5153 member = TREE_CHAIN (member);
5156 if (prev)
5157 TREE_CHAIN (prev) = NULL_TREE;
5158 else
5159 TYPE_FIELDS (type) = NULL_TREE;
5161 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
5162 and danagle the pointer from time to time. */
5163 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
5164 TYPE_VFIELD (type) = NULL_TREE;
5166 /* Remove TYPE_METHODS list. While it would be nice to keep it
5167 to enable ODR warnings about different method lists, doing so
5168 seems to impractically increase size of LTO data streamed.
5169 Keep the infrmation if TYPE_METHODS was non-NULL. This is used
5170 by function.c and pretty printers. */
5171 if (TYPE_METHODS (type))
5172 TYPE_METHODS (type) = error_mark_node;
5173 if (TYPE_BINFO (type))
5175 free_lang_data_in_binfo (TYPE_BINFO (type));
5176 /* We need to preserve link to bases and virtual table for all
5177 polymorphic types to make devirtualization machinery working.
5178 Debug output cares only about bases, but output also
5179 virtual table pointers so merging of -fdevirtualize and
5180 -fno-devirtualize units is easier. */
5181 if ((!BINFO_VTABLE (TYPE_BINFO (type))
5182 || !flag_devirtualize)
5183 && ((!BINFO_N_BASE_BINFOS (TYPE_BINFO (type))
5184 && !BINFO_VTABLE (TYPE_BINFO (type)))
5185 || debug_info_level != DINFO_LEVEL_NONE))
5186 TYPE_BINFO (type) = NULL;
5189 else
5191 /* For non-aggregate types, clear out the language slot (which
5192 overloads TYPE_BINFO). */
5193 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5195 if (INTEGRAL_TYPE_P (type)
5196 || SCALAR_FLOAT_TYPE_P (type)
5197 || FIXED_POINT_TYPE_P (type))
5199 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5200 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5204 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5205 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5207 if (TYPE_CONTEXT (type)
5208 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5210 tree ctx = TYPE_CONTEXT (type);
5213 ctx = BLOCK_SUPERCONTEXT (ctx);
5215 while (ctx && TREE_CODE (ctx) == BLOCK);
5216 TYPE_CONTEXT (type) = ctx;
5221 /* Return true if DECL may need an assembler name to be set. */
5223 static inline bool
5224 need_assembler_name_p (tree decl)
5226 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5227 Rule merging. This makes type_odr_p to return true on those types during
5228 LTO and by comparing the mangled name, we can say what types are intended
5229 to be equivalent across compilation unit.
5231 We do not store names of type_in_anonymous_namespace_p.
5233 Record, union and enumeration type have linkage that allows use
5234 to check type_in_anonymous_namespace_p. We do not mangle compound types
5235 that always can be compared structurally.
5237 Similarly for builtin types, we compare properties of their main variant.
5238 A special case are integer types where mangling do make differences
5239 between char/signed char/unsigned char etc. Storing name for these makes
5240 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5241 See cp/mangle.c:write_builtin_type for details. */
5243 if (flag_lto_odr_type_mering
5244 && TREE_CODE (decl) == TYPE_DECL
5245 && DECL_NAME (decl)
5246 && decl == TYPE_NAME (TREE_TYPE (decl))
5247 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5248 && (type_with_linkage_p (TREE_TYPE (decl))
5249 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5250 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5251 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5252 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5253 if (TREE_CODE (decl) != FUNCTION_DECL
5254 && TREE_CODE (decl) != VAR_DECL)
5255 return false;
5257 /* If DECL already has its assembler name set, it does not need a
5258 new one. */
5259 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5260 || DECL_ASSEMBLER_NAME_SET_P (decl))
5261 return false;
5263 /* Abstract decls do not need an assembler name. */
5264 if (DECL_ABSTRACT_P (decl))
5265 return false;
5267 /* For VAR_DECLs, only static, public and external symbols need an
5268 assembler name. */
5269 if (TREE_CODE (decl) == VAR_DECL
5270 && !TREE_STATIC (decl)
5271 && !TREE_PUBLIC (decl)
5272 && !DECL_EXTERNAL (decl))
5273 return false;
5275 if (TREE_CODE (decl) == FUNCTION_DECL)
5277 /* Do not set assembler name on builtins. Allow RTL expansion to
5278 decide whether to expand inline or via a regular call. */
5279 if (DECL_BUILT_IN (decl)
5280 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5281 return false;
5283 /* Functions represented in the callgraph need an assembler name. */
5284 if (cgraph_node::get (decl) != NULL)
5285 return true;
5287 /* Unused and not public functions don't need an assembler name. */
5288 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5289 return false;
5292 return true;
5296 /* Reset all language specific information still present in symbol
5297 DECL. */
5299 static void
5300 free_lang_data_in_decl (tree decl)
5302 gcc_assert (DECL_P (decl));
5304 /* Give the FE a chance to remove its own data first. */
5305 lang_hooks.free_lang_data (decl);
5307 TREE_LANG_FLAG_0 (decl) = 0;
5308 TREE_LANG_FLAG_1 (decl) = 0;
5309 TREE_LANG_FLAG_2 (decl) = 0;
5310 TREE_LANG_FLAG_3 (decl) = 0;
5311 TREE_LANG_FLAG_4 (decl) = 0;
5312 TREE_LANG_FLAG_5 (decl) = 0;
5313 TREE_LANG_FLAG_6 (decl) = 0;
5315 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5316 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5317 if (TREE_CODE (decl) == FIELD_DECL)
5319 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5320 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5321 DECL_QUALIFIER (decl) = NULL_TREE;
5324 if (TREE_CODE (decl) == FUNCTION_DECL)
5326 struct cgraph_node *node;
5327 if (!(node = cgraph_node::get (decl))
5328 || (!node->definition && !node->clones))
5330 if (node)
5331 node->release_body ();
5332 else
5334 release_function_body (decl);
5335 DECL_ARGUMENTS (decl) = NULL;
5336 DECL_RESULT (decl) = NULL;
5337 DECL_INITIAL (decl) = error_mark_node;
5340 if (gimple_has_body_p (decl))
5342 tree t;
5344 /* If DECL has a gimple body, then the context for its
5345 arguments must be DECL. Otherwise, it doesn't really
5346 matter, as we will not be emitting any code for DECL. In
5347 general, there may be other instances of DECL created by
5348 the front end and since PARM_DECLs are generally shared,
5349 their DECL_CONTEXT changes as the replicas of DECL are
5350 created. The only time where DECL_CONTEXT is important
5351 is for the FUNCTION_DECLs that have a gimple body (since
5352 the PARM_DECL will be used in the function's body). */
5353 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5354 DECL_CONTEXT (t) = decl;
5355 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5356 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5357 = target_option_default_node;
5358 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5359 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5360 = optimization_default_node;
5363 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5364 At this point, it is not needed anymore. */
5365 DECL_SAVED_TREE (decl) = NULL_TREE;
5367 /* Clear the abstract origin if it refers to a method. Otherwise
5368 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
5369 origin will not be output correctly. */
5370 if (DECL_ABSTRACT_ORIGIN (decl)
5371 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5372 && RECORD_OR_UNION_TYPE_P
5373 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5374 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5376 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5377 DECL_VINDEX referring to itself into a vtable slot number as it
5378 should. Happens with functions that are copied and then forgotten
5379 about. Just clear it, it won't matter anymore. */
5380 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5381 DECL_VINDEX (decl) = NULL_TREE;
5383 else if (TREE_CODE (decl) == VAR_DECL)
5385 if ((DECL_EXTERNAL (decl)
5386 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5387 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5388 DECL_INITIAL (decl) = NULL_TREE;
5390 else if (TREE_CODE (decl) == TYPE_DECL
5391 || TREE_CODE (decl) == FIELD_DECL)
5392 DECL_INITIAL (decl) = NULL_TREE;
5393 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5394 && DECL_INITIAL (decl)
5395 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5397 /* Strip builtins from the translation-unit BLOCK. We still have targets
5398 without builtin_decl_explicit support and also builtins are shared
5399 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5400 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5401 while (*nextp)
5403 tree var = *nextp;
5404 if (TREE_CODE (var) == FUNCTION_DECL
5405 && DECL_BUILT_IN (var))
5406 *nextp = TREE_CHAIN (var);
5407 else
5408 nextp = &TREE_CHAIN (var);
5414 /* Data used when collecting DECLs and TYPEs for language data removal. */
5416 struct free_lang_data_d
5418 /* Worklist to avoid excessive recursion. */
5419 vec<tree> worklist;
5421 /* Set of traversed objects. Used to avoid duplicate visits. */
5422 hash_set<tree> *pset;
5424 /* Array of symbols to process with free_lang_data_in_decl. */
5425 vec<tree> decls;
5427 /* Array of types to process with free_lang_data_in_type. */
5428 vec<tree> types;
5432 /* Save all language fields needed to generate proper debug information
5433 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5435 static void
5436 save_debug_info_for_decl (tree t)
5438 /*struct saved_debug_info_d *sdi;*/
5440 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
5442 /* FIXME. Partial implementation for saving debug info removed. */
5446 /* Save all language fields needed to generate proper debug information
5447 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5449 static void
5450 save_debug_info_for_type (tree t)
5452 /*struct saved_debug_info_d *sdi;*/
5454 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
5456 /* FIXME. Partial implementation for saving debug info removed. */
5460 /* Add type or decl T to one of the list of tree nodes that need their
5461 language data removed. The lists are held inside FLD. */
5463 static void
5464 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5466 if (DECL_P (t))
5468 fld->decls.safe_push (t);
5469 if (debug_info_level > DINFO_LEVEL_TERSE)
5470 save_debug_info_for_decl (t);
5472 else if (TYPE_P (t))
5474 fld->types.safe_push (t);
5475 if (debug_info_level > DINFO_LEVEL_TERSE)
5476 save_debug_info_for_type (t);
5478 else
5479 gcc_unreachable ();
5482 /* Push tree node T into FLD->WORKLIST. */
5484 static inline void
5485 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5487 if (t && !is_lang_specific (t) && !fld->pset->contains (t))
5488 fld->worklist.safe_push ((t));
5492 /* Operand callback helper for free_lang_data_in_node. *TP is the
5493 subtree operand being considered. */
5495 static tree
5496 find_decls_types_r (tree *tp, int *ws, void *data)
5498 tree t = *tp;
5499 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5501 if (TREE_CODE (t) == TREE_LIST)
5502 return NULL_TREE;
5504 /* Language specific nodes will be removed, so there is no need
5505 to gather anything under them. */
5506 if (is_lang_specific (t))
5508 *ws = 0;
5509 return NULL_TREE;
5512 if (DECL_P (t))
5514 /* Note that walk_tree does not traverse every possible field in
5515 decls, so we have to do our own traversals here. */
5516 add_tree_to_fld_list (t, fld);
5518 fld_worklist_push (DECL_NAME (t), fld);
5519 fld_worklist_push (DECL_CONTEXT (t), fld);
5520 fld_worklist_push (DECL_SIZE (t), fld);
5521 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5523 /* We are going to remove everything under DECL_INITIAL for
5524 TYPE_DECLs. No point walking them. */
5525 if (TREE_CODE (t) != TYPE_DECL)
5526 fld_worklist_push (DECL_INITIAL (t), fld);
5528 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5529 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5531 if (TREE_CODE (t) == FUNCTION_DECL)
5533 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5534 fld_worklist_push (DECL_RESULT (t), fld);
5536 else if (TREE_CODE (t) == TYPE_DECL)
5538 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5540 else if (TREE_CODE (t) == FIELD_DECL)
5542 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5543 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5544 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5545 fld_worklist_push (DECL_FCONTEXT (t), fld);
5548 if ((TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
5549 && DECL_HAS_VALUE_EXPR_P (t))
5550 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5552 if (TREE_CODE (t) != FIELD_DECL
5553 && TREE_CODE (t) != TYPE_DECL)
5554 fld_worklist_push (TREE_CHAIN (t), fld);
5555 *ws = 0;
5557 else if (TYPE_P (t))
5559 /* Note that walk_tree does not traverse every possible field in
5560 types, so we have to do our own traversals here. */
5561 add_tree_to_fld_list (t, fld);
5563 if (!RECORD_OR_UNION_TYPE_P (t))
5564 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5565 fld_worklist_push (TYPE_SIZE (t), fld);
5566 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5567 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5568 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5569 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5570 fld_worklist_push (TYPE_NAME (t), fld);
5571 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5572 them and thus do not and want not to reach unused pointer types
5573 this way. */
5574 if (!POINTER_TYPE_P (t))
5575 fld_worklist_push (TYPE_MINVAL (t), fld);
5576 if (!RECORD_OR_UNION_TYPE_P (t))
5577 fld_worklist_push (TYPE_MAXVAL (t), fld);
5578 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5579 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5580 do not and want not to reach unused variants this way. */
5581 if (TYPE_CONTEXT (t))
5583 tree ctx = TYPE_CONTEXT (t);
5584 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5585 So push that instead. */
5586 while (ctx && TREE_CODE (ctx) == BLOCK)
5587 ctx = BLOCK_SUPERCONTEXT (ctx);
5588 fld_worklist_push (ctx, fld);
5590 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5591 and want not to reach unused types this way. */
5593 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5595 unsigned i;
5596 tree tem;
5597 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5598 fld_worklist_push (TREE_TYPE (tem), fld);
5599 tem = BINFO_VIRTUALS (TYPE_BINFO (t));
5600 if (tem
5601 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
5602 && TREE_CODE (tem) == TREE_LIST)
5605 fld_worklist_push (TREE_VALUE (tem), fld);
5606 tem = TREE_CHAIN (tem);
5608 while (tem);
5610 if (RECORD_OR_UNION_TYPE_P (t))
5612 tree tem;
5613 /* Push all TYPE_FIELDS - there can be interleaving interesting
5614 and non-interesting things. */
5615 tem = TYPE_FIELDS (t);
5616 while (tem)
5618 if (TREE_CODE (tem) == FIELD_DECL
5619 || TREE_CODE (tem) == TYPE_DECL)
5620 fld_worklist_push (tem, fld);
5621 tem = TREE_CHAIN (tem);
5625 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5626 *ws = 0;
5628 else if (TREE_CODE (t) == BLOCK)
5630 tree tem;
5631 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5632 fld_worklist_push (tem, fld);
5633 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5634 fld_worklist_push (tem, fld);
5635 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5638 if (TREE_CODE (t) != IDENTIFIER_NODE
5639 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5640 fld_worklist_push (TREE_TYPE (t), fld);
5642 return NULL_TREE;
5646 /* Find decls and types in T. */
5648 static void
5649 find_decls_types (tree t, struct free_lang_data_d *fld)
5651 while (1)
5653 if (!fld->pset->contains (t))
5654 walk_tree (&t, find_decls_types_r, fld, fld->pset);
5655 if (fld->worklist.is_empty ())
5656 break;
5657 t = fld->worklist.pop ();
5661 /* Translate all the types in LIST with the corresponding runtime
5662 types. */
5664 static tree
5665 get_eh_types_for_runtime (tree list)
5667 tree head, prev;
5669 if (list == NULL_TREE)
5670 return NULL_TREE;
5672 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5673 prev = head;
5674 list = TREE_CHAIN (list);
5675 while (list)
5677 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5678 TREE_CHAIN (prev) = n;
5679 prev = TREE_CHAIN (prev);
5680 list = TREE_CHAIN (list);
5683 return head;
5687 /* Find decls and types referenced in EH region R and store them in
5688 FLD->DECLS and FLD->TYPES. */
5690 static void
5691 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5693 switch (r->type)
5695 case ERT_CLEANUP:
5696 break;
5698 case ERT_TRY:
5700 eh_catch c;
5702 /* The types referenced in each catch must first be changed to the
5703 EH types used at runtime. This removes references to FE types
5704 in the region. */
5705 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5707 c->type_list = get_eh_types_for_runtime (c->type_list);
5708 walk_tree (&c->type_list, find_decls_types_r, fld, fld->pset);
5711 break;
5713 case ERT_ALLOWED_EXCEPTIONS:
5714 r->u.allowed.type_list
5715 = get_eh_types_for_runtime (r->u.allowed.type_list);
5716 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, fld->pset);
5717 break;
5719 case ERT_MUST_NOT_THROW:
5720 walk_tree (&r->u.must_not_throw.failure_decl,
5721 find_decls_types_r, fld, fld->pset);
5722 break;
5727 /* Find decls and types referenced in cgraph node N and store them in
5728 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5729 look for *every* kind of DECL and TYPE node reachable from N,
5730 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5731 NAMESPACE_DECLs, etc). */
5733 static void
5734 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5736 basic_block bb;
5737 struct function *fn;
5738 unsigned ix;
5739 tree t;
5741 find_decls_types (n->decl, fld);
5743 if (!gimple_has_body_p (n->decl))
5744 return;
5746 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5748 fn = DECL_STRUCT_FUNCTION (n->decl);
5750 /* Traverse locals. */
5751 FOR_EACH_LOCAL_DECL (fn, ix, t)
5752 find_decls_types (t, fld);
5754 /* Traverse EH regions in FN. */
5756 eh_region r;
5757 FOR_ALL_EH_REGION_FN (r, fn)
5758 find_decls_types_in_eh_region (r, fld);
5761 /* Traverse every statement in FN. */
5762 FOR_EACH_BB_FN (bb, fn)
5764 gphi_iterator psi;
5765 gimple_stmt_iterator si;
5766 unsigned i;
5768 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5770 gphi *phi = psi.phi ();
5772 for (i = 0; i < gimple_phi_num_args (phi); i++)
5774 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5775 find_decls_types (*arg_p, fld);
5779 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5781 gimple stmt = gsi_stmt (si);
5783 if (is_gimple_call (stmt))
5784 find_decls_types (gimple_call_fntype (stmt), fld);
5786 for (i = 0; i < gimple_num_ops (stmt); i++)
5788 tree arg = gimple_op (stmt, i);
5789 find_decls_types (arg, fld);
5796 /* Find decls and types referenced in varpool node N and store them in
5797 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5798 look for *every* kind of DECL and TYPE node reachable from N,
5799 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5800 NAMESPACE_DECLs, etc). */
5802 static void
5803 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5805 find_decls_types (v->decl, fld);
5808 /* If T needs an assembler name, have one created for it. */
5810 void
5811 assign_assembler_name_if_neeeded (tree t)
5813 if (need_assembler_name_p (t))
5815 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5816 diagnostics that use input_location to show locus
5817 information. The problem here is that, at this point,
5818 input_location is generally anchored to the end of the file
5819 (since the parser is long gone), so we don't have a good
5820 position to pin it to.
5822 To alleviate this problem, this uses the location of T's
5823 declaration. Examples of this are
5824 testsuite/g++.dg/template/cond2.C and
5825 testsuite/g++.dg/template/pr35240.C. */
5826 location_t saved_location = input_location;
5827 input_location = DECL_SOURCE_LOCATION (t);
5829 decl_assembler_name (t);
5831 input_location = saved_location;
5836 /* Free language specific information for every operand and expression
5837 in every node of the call graph. This process operates in three stages:
5839 1- Every callgraph node and varpool node is traversed looking for
5840 decls and types embedded in them. This is a more exhaustive
5841 search than that done by find_referenced_vars, because it will
5842 also collect individual fields, decls embedded in types, etc.
5844 2- All the decls found are sent to free_lang_data_in_decl.
5846 3- All the types found are sent to free_lang_data_in_type.
5848 The ordering between decls and types is important because
5849 free_lang_data_in_decl sets assembler names, which includes
5850 mangling. So types cannot be freed up until assembler names have
5851 been set up. */
5853 static void
5854 free_lang_data_in_cgraph (void)
5856 struct cgraph_node *n;
5857 varpool_node *v;
5858 struct free_lang_data_d fld;
5859 tree t;
5860 unsigned i;
5861 alias_pair *p;
5863 /* Initialize sets and arrays to store referenced decls and types. */
5864 fld.pset = new hash_set<tree>;
5865 fld.worklist.create (0);
5866 fld.decls.create (100);
5867 fld.types.create (100);
5869 /* Find decls and types in the body of every function in the callgraph. */
5870 FOR_EACH_FUNCTION (n)
5871 find_decls_types_in_node (n, &fld);
5873 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5874 find_decls_types (p->decl, &fld);
5876 /* Find decls and types in every varpool symbol. */
5877 FOR_EACH_VARIABLE (v)
5878 find_decls_types_in_var (v, &fld);
5880 /* Set the assembler name on every decl found. We need to do this
5881 now because free_lang_data_in_decl will invalidate data needed
5882 for mangling. This breaks mangling on interdependent decls. */
5883 FOR_EACH_VEC_ELT (fld.decls, i, t)
5884 assign_assembler_name_if_neeeded (t);
5886 /* Traverse every decl found freeing its language data. */
5887 FOR_EACH_VEC_ELT (fld.decls, i, t)
5888 free_lang_data_in_decl (t);
5890 /* Traverse every type found freeing its language data. */
5891 FOR_EACH_VEC_ELT (fld.types, i, t)
5892 free_lang_data_in_type (t);
5893 #ifdef ENABLE_CHECKING
5894 FOR_EACH_VEC_ELT (fld.types, i, t)
5895 verify_type (t);
5896 #endif
5898 delete fld.pset;
5899 fld.worklist.release ();
5900 fld.decls.release ();
5901 fld.types.release ();
5905 /* Free resources that are used by FE but are not needed once they are done. */
5907 static unsigned
5908 free_lang_data (void)
5910 unsigned i;
5912 /* If we are the LTO frontend we have freed lang-specific data already. */
5913 if (in_lto_p
5914 || (!flag_generate_lto && !flag_generate_offload))
5915 return 0;
5917 /* Allocate and assign alias sets to the standard integer types
5918 while the slots are still in the way the frontends generated them. */
5919 for (i = 0; i < itk_none; ++i)
5920 if (integer_types[i])
5921 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5923 /* Traverse the IL resetting language specific information for
5924 operands, expressions, etc. */
5925 free_lang_data_in_cgraph ();
5927 /* Create gimple variants for common types. */
5928 ptrdiff_type_node = integer_type_node;
5929 fileptr_type_node = ptr_type_node;
5931 /* Reset some langhooks. Do not reset types_compatible_p, it may
5932 still be used indirectly via the get_alias_set langhook. */
5933 lang_hooks.dwarf_name = lhd_dwarf_name;
5934 lang_hooks.decl_printable_name = gimple_decl_printable_name;
5935 lang_hooks.gimplify_expr = lhd_gimplify_expr;
5937 /* We do not want the default decl_assembler_name implementation,
5938 rather if we have fixed everything we want a wrapper around it
5939 asserting that all non-local symbols already got their assembler
5940 name and only produce assembler names for local symbols. Or rather
5941 make sure we never call decl_assembler_name on local symbols and
5942 devise a separate, middle-end private scheme for it. */
5944 /* Reset diagnostic machinery. */
5945 tree_diagnostics_defaults (global_dc);
5947 return 0;
5951 namespace {
5953 const pass_data pass_data_ipa_free_lang_data =
5955 SIMPLE_IPA_PASS, /* type */
5956 "*free_lang_data", /* name */
5957 OPTGROUP_NONE, /* optinfo_flags */
5958 TV_IPA_FREE_LANG_DATA, /* tv_id */
5959 0, /* properties_required */
5960 0, /* properties_provided */
5961 0, /* properties_destroyed */
5962 0, /* todo_flags_start */
5963 0, /* todo_flags_finish */
5966 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
5968 public:
5969 pass_ipa_free_lang_data (gcc::context *ctxt)
5970 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
5973 /* opt_pass methods: */
5974 virtual unsigned int execute (function *) { return free_lang_data (); }
5976 }; // class pass_ipa_free_lang_data
5978 } // anon namespace
5980 simple_ipa_opt_pass *
5981 make_pass_ipa_free_lang_data (gcc::context *ctxt)
5983 return new pass_ipa_free_lang_data (ctxt);
5986 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5987 ATTR_NAME. Also used internally by remove_attribute(). */
5988 bool
5989 private_is_attribute_p (const char *attr_name, size_t attr_len, const_tree ident)
5991 size_t ident_len = IDENTIFIER_LENGTH (ident);
5993 if (ident_len == attr_len)
5995 if (strcmp (attr_name, IDENTIFIER_POINTER (ident)) == 0)
5996 return true;
5998 else if (ident_len == attr_len + 4)
6000 /* There is the possibility that ATTR is 'text' and IDENT is
6001 '__text__'. */
6002 const char *p = IDENTIFIER_POINTER (ident);
6003 if (p[0] == '_' && p[1] == '_'
6004 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
6005 && strncmp (attr_name, p + 2, attr_len) == 0)
6006 return true;
6009 return false;
6012 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
6013 of ATTR_NAME, and LIST is not NULL_TREE. */
6014 tree
6015 private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
6017 while (list)
6019 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
6021 if (ident_len == attr_len)
6023 if (!strcmp (attr_name,
6024 IDENTIFIER_POINTER (get_attribute_name (list))))
6025 break;
6027 /* TODO: If we made sure that attributes were stored in the
6028 canonical form without '__...__' (ie, as in 'text' as opposed
6029 to '__text__') then we could avoid the following case. */
6030 else if (ident_len == attr_len + 4)
6032 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
6033 if (p[0] == '_' && p[1] == '_'
6034 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
6035 && strncmp (attr_name, p + 2, attr_len) == 0)
6036 break;
6038 list = TREE_CHAIN (list);
6041 return list;
6044 /* Given an attribute name ATTR_NAME and a list of attributes LIST,
6045 return a pointer to the attribute's list first element if the attribute
6046 starts with ATTR_NAME. ATTR_NAME must be in the form 'text' (not
6047 '__text__'). */
6049 tree
6050 private_lookup_attribute_by_prefix (const char *attr_name, size_t attr_len,
6051 tree list)
6053 while (list)
6055 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
6057 if (attr_len > ident_len)
6059 list = TREE_CHAIN (list);
6060 continue;
6063 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
6065 if (strncmp (attr_name, p, attr_len) == 0)
6066 break;
6068 /* TODO: If we made sure that attributes were stored in the
6069 canonical form without '__...__' (ie, as in 'text' as opposed
6070 to '__text__') then we could avoid the following case. */
6071 if (p[0] == '_' && p[1] == '_' &&
6072 strncmp (attr_name, p + 2, attr_len) == 0)
6073 break;
6075 list = TREE_CHAIN (list);
6078 return list;
6082 /* A variant of lookup_attribute() that can be used with an identifier
6083 as the first argument, and where the identifier can be either
6084 'text' or '__text__'.
6086 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
6087 return a pointer to the attribute's list element if the attribute
6088 is part of the list, or NULL_TREE if not found. If the attribute
6089 appears more than once, this only returns the first occurrence; the
6090 TREE_CHAIN of the return value should be passed back in if further
6091 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
6092 can be in the form 'text' or '__text__'. */
6093 static tree
6094 lookup_ident_attribute (tree attr_identifier, tree list)
6096 gcc_checking_assert (TREE_CODE (attr_identifier) == IDENTIFIER_NODE);
6098 while (list)
6100 gcc_checking_assert (TREE_CODE (get_attribute_name (list))
6101 == IDENTIFIER_NODE);
6103 if (cmp_attrib_identifiers (attr_identifier,
6104 get_attribute_name (list)))
6105 /* Found it. */
6106 break;
6107 list = TREE_CHAIN (list);
6110 return list;
6113 /* Remove any instances of attribute ATTR_NAME in LIST and return the
6114 modified list. */
6116 tree
6117 remove_attribute (const char *attr_name, tree list)
6119 tree *p;
6120 size_t attr_len = strlen (attr_name);
6122 gcc_checking_assert (attr_name[0] != '_');
6124 for (p = &list; *p; )
6126 tree l = *p;
6127 /* TODO: If we were storing attributes in normalized form, here
6128 we could use a simple strcmp(). */
6129 if (private_is_attribute_p (attr_name, attr_len, get_attribute_name (l)))
6130 *p = TREE_CHAIN (l);
6131 else
6132 p = &TREE_CHAIN (l);
6135 return list;
6138 /* Return an attribute list that is the union of a1 and a2. */
6140 tree
6141 merge_attributes (tree a1, tree a2)
6143 tree attributes;
6145 /* Either one unset? Take the set one. */
6147 if ((attributes = a1) == 0)
6148 attributes = a2;
6150 /* One that completely contains the other? Take it. */
6152 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
6154 if (attribute_list_contained (a2, a1))
6155 attributes = a2;
6156 else
6158 /* Pick the longest list, and hang on the other list. */
6160 if (list_length (a1) < list_length (a2))
6161 attributes = a2, a2 = a1;
6163 for (; a2 != 0; a2 = TREE_CHAIN (a2))
6165 tree a;
6166 for (a = lookup_ident_attribute (get_attribute_name (a2),
6167 attributes);
6168 a != NULL_TREE && !attribute_value_equal (a, a2);
6169 a = lookup_ident_attribute (get_attribute_name (a2),
6170 TREE_CHAIN (a)))
6172 if (a == NULL_TREE)
6174 a1 = copy_node (a2);
6175 TREE_CHAIN (a1) = attributes;
6176 attributes = a1;
6181 return attributes;
6184 /* Given types T1 and T2, merge their attributes and return
6185 the result. */
6187 tree
6188 merge_type_attributes (tree t1, tree t2)
6190 return merge_attributes (TYPE_ATTRIBUTES (t1),
6191 TYPE_ATTRIBUTES (t2));
6194 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
6195 the result. */
6197 tree
6198 merge_decl_attributes (tree olddecl, tree newdecl)
6200 return merge_attributes (DECL_ATTRIBUTES (olddecl),
6201 DECL_ATTRIBUTES (newdecl));
6204 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
6206 /* Specialization of merge_decl_attributes for various Windows targets.
6208 This handles the following situation:
6210 __declspec (dllimport) int foo;
6211 int foo;
6213 The second instance of `foo' nullifies the dllimport. */
6215 tree
6216 merge_dllimport_decl_attributes (tree old, tree new_tree)
6218 tree a;
6219 int delete_dllimport_p = 1;
6221 /* What we need to do here is remove from `old' dllimport if it doesn't
6222 appear in `new'. dllimport behaves like extern: if a declaration is
6223 marked dllimport and a definition appears later, then the object
6224 is not dllimport'd. We also remove a `new' dllimport if the old list
6225 contains dllexport: dllexport always overrides dllimport, regardless
6226 of the order of declaration. */
6227 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
6228 delete_dllimport_p = 0;
6229 else if (DECL_DLLIMPORT_P (new_tree)
6230 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
6232 DECL_DLLIMPORT_P (new_tree) = 0;
6233 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
6234 "dllimport ignored", new_tree);
6236 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
6238 /* Warn about overriding a symbol that has already been used, e.g.:
6239 extern int __attribute__ ((dllimport)) foo;
6240 int* bar () {return &foo;}
6241 int foo;
6243 if (TREE_USED (old))
6245 warning (0, "%q+D redeclared without dllimport attribute "
6246 "after being referenced with dll linkage", new_tree);
6247 /* If we have used a variable's address with dllimport linkage,
6248 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
6249 decl may already have had TREE_CONSTANT computed.
6250 We still remove the attribute so that assembler code refers
6251 to '&foo rather than '_imp__foo'. */
6252 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
6253 DECL_DLLIMPORT_P (new_tree) = 1;
6256 /* Let an inline definition silently override the external reference,
6257 but otherwise warn about attribute inconsistency. */
6258 else if (TREE_CODE (new_tree) == VAR_DECL
6259 || !DECL_DECLARED_INLINE_P (new_tree))
6260 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
6261 "previous dllimport ignored", new_tree);
6263 else
6264 delete_dllimport_p = 0;
6266 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
6268 if (delete_dllimport_p)
6269 a = remove_attribute ("dllimport", a);
6271 return a;
6274 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
6275 struct attribute_spec.handler. */
6277 tree
6278 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
6279 bool *no_add_attrs)
6281 tree node = *pnode;
6282 bool is_dllimport;
6284 /* These attributes may apply to structure and union types being created,
6285 but otherwise should pass to the declaration involved. */
6286 if (!DECL_P (node))
6288 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
6289 | (int) ATTR_FLAG_ARRAY_NEXT))
6291 *no_add_attrs = true;
6292 return tree_cons (name, args, NULL_TREE);
6294 if (TREE_CODE (node) == RECORD_TYPE
6295 || TREE_CODE (node) == UNION_TYPE)
6297 node = TYPE_NAME (node);
6298 if (!node)
6299 return NULL_TREE;
6301 else
6303 warning (OPT_Wattributes, "%qE attribute ignored",
6304 name);
6305 *no_add_attrs = true;
6306 return NULL_TREE;
6310 if (TREE_CODE (node) != FUNCTION_DECL
6311 && TREE_CODE (node) != VAR_DECL
6312 && TREE_CODE (node) != TYPE_DECL)
6314 *no_add_attrs = true;
6315 warning (OPT_Wattributes, "%qE attribute ignored",
6316 name);
6317 return NULL_TREE;
6320 if (TREE_CODE (node) == TYPE_DECL
6321 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
6322 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
6324 *no_add_attrs = true;
6325 warning (OPT_Wattributes, "%qE attribute ignored",
6326 name);
6327 return NULL_TREE;
6330 is_dllimport = is_attribute_p ("dllimport", name);
6332 /* Report error on dllimport ambiguities seen now before they cause
6333 any damage. */
6334 if (is_dllimport)
6336 /* Honor any target-specific overrides. */
6337 if (!targetm.valid_dllimport_attribute_p (node))
6338 *no_add_attrs = true;
6340 else if (TREE_CODE (node) == FUNCTION_DECL
6341 && DECL_DECLARED_INLINE_P (node))
6343 warning (OPT_Wattributes, "inline function %q+D declared as "
6344 " dllimport: attribute ignored", node);
6345 *no_add_attrs = true;
6347 /* Like MS, treat definition of dllimported variables and
6348 non-inlined functions on declaration as syntax errors. */
6349 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
6351 error ("function %q+D definition is marked dllimport", node);
6352 *no_add_attrs = true;
6355 else if (TREE_CODE (node) == VAR_DECL)
6357 if (DECL_INITIAL (node))
6359 error ("variable %q+D definition is marked dllimport",
6360 node);
6361 *no_add_attrs = true;
6364 /* `extern' needn't be specified with dllimport.
6365 Specify `extern' now and hope for the best. Sigh. */
6366 DECL_EXTERNAL (node) = 1;
6367 /* Also, implicitly give dllimport'd variables declared within
6368 a function global scope, unless declared static. */
6369 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
6370 TREE_PUBLIC (node) = 1;
6373 if (*no_add_attrs == false)
6374 DECL_DLLIMPORT_P (node) = 1;
6376 else if (TREE_CODE (node) == FUNCTION_DECL
6377 && DECL_DECLARED_INLINE_P (node)
6378 && flag_keep_inline_dllexport)
6379 /* An exported function, even if inline, must be emitted. */
6380 DECL_EXTERNAL (node) = 0;
6382 /* Report error if symbol is not accessible at global scope. */
6383 if (!TREE_PUBLIC (node)
6384 && (TREE_CODE (node) == VAR_DECL
6385 || TREE_CODE (node) == FUNCTION_DECL))
6387 error ("external linkage required for symbol %q+D because of "
6388 "%qE attribute", node, name);
6389 *no_add_attrs = true;
6392 /* A dllexport'd entity must have default visibility so that other
6393 program units (shared libraries or the main executable) can see
6394 it. A dllimport'd entity must have default visibility so that
6395 the linker knows that undefined references within this program
6396 unit can be resolved by the dynamic linker. */
6397 if (!*no_add_attrs)
6399 if (DECL_VISIBILITY_SPECIFIED (node)
6400 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
6401 error ("%qE implies default visibility, but %qD has already "
6402 "been declared with a different visibility",
6403 name, node);
6404 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
6405 DECL_VISIBILITY_SPECIFIED (node) = 1;
6408 return NULL_TREE;
6411 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
6413 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6414 of the various TYPE_QUAL values. */
6416 static void
6417 set_type_quals (tree type, int type_quals)
6419 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6420 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6421 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6422 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6423 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6426 /* Returns true iff unqualified CAND and BASE are equivalent. */
6428 bool
6429 check_base_type (const_tree cand, const_tree base)
6431 return (TYPE_NAME (cand) == TYPE_NAME (base)
6432 /* Apparently this is needed for Objective-C. */
6433 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6434 /* Check alignment. */
6435 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
6436 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6437 TYPE_ATTRIBUTES (base)));
6440 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6442 bool
6443 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6445 return (TYPE_QUALS (cand) == type_quals
6446 && check_base_type (cand, base));
6449 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6451 static bool
6452 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6454 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6455 && TYPE_NAME (cand) == TYPE_NAME (base)
6456 /* Apparently this is needed for Objective-C. */
6457 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6458 /* Check alignment. */
6459 && TYPE_ALIGN (cand) == align
6460 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6461 TYPE_ATTRIBUTES (base)));
6464 /* This function checks to see if TYPE matches the size one of the built-in
6465 atomic types, and returns that core atomic type. */
6467 static tree
6468 find_atomic_core_type (tree type)
6470 tree base_atomic_type;
6472 /* Only handle complete types. */
6473 if (TYPE_SIZE (type) == NULL_TREE)
6474 return NULL_TREE;
6476 HOST_WIDE_INT type_size = tree_to_uhwi (TYPE_SIZE (type));
6477 switch (type_size)
6479 case 8:
6480 base_atomic_type = atomicQI_type_node;
6481 break;
6483 case 16:
6484 base_atomic_type = atomicHI_type_node;
6485 break;
6487 case 32:
6488 base_atomic_type = atomicSI_type_node;
6489 break;
6491 case 64:
6492 base_atomic_type = atomicDI_type_node;
6493 break;
6495 case 128:
6496 base_atomic_type = atomicTI_type_node;
6497 break;
6499 default:
6500 base_atomic_type = NULL_TREE;
6503 return base_atomic_type;
6506 /* Return a version of the TYPE, qualified as indicated by the
6507 TYPE_QUALS, if one exists. If no qualified version exists yet,
6508 return NULL_TREE. */
6510 tree
6511 get_qualified_type (tree type, int type_quals)
6513 tree t;
6515 if (TYPE_QUALS (type) == type_quals)
6516 return type;
6518 /* Search the chain of variants to see if there is already one there just
6519 like the one we need to have. If so, use that existing one. We must
6520 preserve the TYPE_NAME, since there is code that depends on this. */
6521 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6522 if (check_qualified_type (t, type, type_quals))
6523 return t;
6525 return NULL_TREE;
6528 /* Like get_qualified_type, but creates the type if it does not
6529 exist. This function never returns NULL_TREE. */
6531 tree
6532 build_qualified_type (tree type, int type_quals)
6534 tree t;
6536 /* See if we already have the appropriate qualified variant. */
6537 t = get_qualified_type (type, type_quals);
6539 /* If not, build it. */
6540 if (!t)
6542 t = build_variant_type_copy (type);
6543 set_type_quals (t, type_quals);
6545 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6547 /* See if this object can map to a basic atomic type. */
6548 tree atomic_type = find_atomic_core_type (type);
6549 if (atomic_type)
6551 /* Ensure the alignment of this type is compatible with
6552 the required alignment of the atomic type. */
6553 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6554 TYPE_ALIGN (t) = TYPE_ALIGN (atomic_type);
6558 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6559 /* Propagate structural equality. */
6560 SET_TYPE_STRUCTURAL_EQUALITY (t);
6561 else if (TYPE_CANONICAL (type) != type)
6562 /* Build the underlying canonical type, since it is different
6563 from TYPE. */
6565 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6566 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6568 else
6569 /* T is its own canonical type. */
6570 TYPE_CANONICAL (t) = t;
6574 return t;
6577 /* Create a variant of type T with alignment ALIGN. */
6579 tree
6580 build_aligned_type (tree type, unsigned int align)
6582 tree t;
6584 if (TYPE_PACKED (type)
6585 || TYPE_ALIGN (type) == align)
6586 return type;
6588 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6589 if (check_aligned_type (t, type, align))
6590 return t;
6592 t = build_variant_type_copy (type);
6593 TYPE_ALIGN (t) = align;
6595 return t;
6598 /* Create a new distinct copy of TYPE. The new type is made its own
6599 MAIN_VARIANT. If TYPE requires structural equality checks, the
6600 resulting type requires structural equality checks; otherwise, its
6601 TYPE_CANONICAL points to itself. */
6603 tree
6604 build_distinct_type_copy (tree type)
6606 tree t = copy_node (type);
6608 TYPE_POINTER_TO (t) = 0;
6609 TYPE_REFERENCE_TO (t) = 0;
6611 /* Set the canonical type either to a new equivalence class, or
6612 propagate the need for structural equality checks. */
6613 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6614 SET_TYPE_STRUCTURAL_EQUALITY (t);
6615 else
6616 TYPE_CANONICAL (t) = t;
6618 /* Make it its own variant. */
6619 TYPE_MAIN_VARIANT (t) = t;
6620 TYPE_NEXT_VARIANT (t) = 0;
6622 /* We do not record methods in type copies nor variants
6623 so we do not need to keep them up to date when new method
6624 is inserted. */
6625 if (RECORD_OR_UNION_TYPE_P (t))
6626 TYPE_METHODS (t) = NULL_TREE;
6628 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6629 whose TREE_TYPE is not t. This can also happen in the Ada
6630 frontend when using subtypes. */
6632 return t;
6635 /* Create a new variant of TYPE, equivalent but distinct. This is so
6636 the caller can modify it. TYPE_CANONICAL for the return type will
6637 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6638 are considered equal by the language itself (or that both types
6639 require structural equality checks). */
6641 tree
6642 build_variant_type_copy (tree type)
6644 tree t, m = TYPE_MAIN_VARIANT (type);
6646 t = build_distinct_type_copy (type);
6648 /* Since we're building a variant, assume that it is a non-semantic
6649 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6650 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6652 /* Add the new type to the chain of variants of TYPE. */
6653 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6654 TYPE_NEXT_VARIANT (m) = t;
6655 TYPE_MAIN_VARIANT (t) = m;
6657 return t;
6660 /* Return true if the from tree in both tree maps are equal. */
6663 tree_map_base_eq (const void *va, const void *vb)
6665 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6666 *const b = (const struct tree_map_base *) vb;
6667 return (a->from == b->from);
6670 /* Hash a from tree in a tree_base_map. */
6672 unsigned int
6673 tree_map_base_hash (const void *item)
6675 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6678 /* Return true if this tree map structure is marked for garbage collection
6679 purposes. We simply return true if the from tree is marked, so that this
6680 structure goes away when the from tree goes away. */
6683 tree_map_base_marked_p (const void *p)
6685 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6688 /* Hash a from tree in a tree_map. */
6690 unsigned int
6691 tree_map_hash (const void *item)
6693 return (((const struct tree_map *) item)->hash);
6696 /* Hash a from tree in a tree_decl_map. */
6698 unsigned int
6699 tree_decl_map_hash (const void *item)
6701 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6704 /* Return the initialization priority for DECL. */
6706 priority_type
6707 decl_init_priority_lookup (tree decl)
6709 symtab_node *snode = symtab_node::get (decl);
6711 if (!snode)
6712 return DEFAULT_INIT_PRIORITY;
6713 return
6714 snode->get_init_priority ();
6717 /* Return the finalization priority for DECL. */
6719 priority_type
6720 decl_fini_priority_lookup (tree decl)
6722 cgraph_node *node = cgraph_node::get (decl);
6724 if (!node)
6725 return DEFAULT_INIT_PRIORITY;
6726 return
6727 node->get_fini_priority ();
6730 /* Set the initialization priority for DECL to PRIORITY. */
6732 void
6733 decl_init_priority_insert (tree decl, priority_type priority)
6735 struct symtab_node *snode;
6737 if (priority == DEFAULT_INIT_PRIORITY)
6739 snode = symtab_node::get (decl);
6740 if (!snode)
6741 return;
6743 else if (TREE_CODE (decl) == VAR_DECL)
6744 snode = varpool_node::get_create (decl);
6745 else
6746 snode = cgraph_node::get_create (decl);
6747 snode->set_init_priority (priority);
6750 /* Set the finalization priority for DECL to PRIORITY. */
6752 void
6753 decl_fini_priority_insert (tree decl, priority_type priority)
6755 struct cgraph_node *node;
6757 if (priority == DEFAULT_INIT_PRIORITY)
6759 node = cgraph_node::get (decl);
6760 if (!node)
6761 return;
6763 else
6764 node = cgraph_node::get_create (decl);
6765 node->set_fini_priority (priority);
6768 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6770 static void
6771 print_debug_expr_statistics (void)
6773 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6774 (long) debug_expr_for_decl->size (),
6775 (long) debug_expr_for_decl->elements (),
6776 debug_expr_for_decl->collisions ());
6779 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6781 static void
6782 print_value_expr_statistics (void)
6784 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6785 (long) value_expr_for_decl->size (),
6786 (long) value_expr_for_decl->elements (),
6787 value_expr_for_decl->collisions ());
6790 /* Lookup a debug expression for FROM, and return it if we find one. */
6792 tree
6793 decl_debug_expr_lookup (tree from)
6795 struct tree_decl_map *h, in;
6796 in.base.from = from;
6798 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6799 if (h)
6800 return h->to;
6801 return NULL_TREE;
6804 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6806 void
6807 decl_debug_expr_insert (tree from, tree to)
6809 struct tree_decl_map *h;
6811 h = ggc_alloc<tree_decl_map> ();
6812 h->base.from = from;
6813 h->to = to;
6814 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6817 /* Lookup a value expression for FROM, and return it if we find one. */
6819 tree
6820 decl_value_expr_lookup (tree from)
6822 struct tree_decl_map *h, in;
6823 in.base.from = from;
6825 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6826 if (h)
6827 return h->to;
6828 return NULL_TREE;
6831 /* Insert a mapping FROM->TO in the value expression hashtable. */
6833 void
6834 decl_value_expr_insert (tree from, tree to)
6836 struct tree_decl_map *h;
6838 h = ggc_alloc<tree_decl_map> ();
6839 h->base.from = from;
6840 h->to = to;
6841 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6844 /* Lookup a vector of debug arguments for FROM, and return it if we
6845 find one. */
6847 vec<tree, va_gc> **
6848 decl_debug_args_lookup (tree from)
6850 struct tree_vec_map *h, in;
6852 if (!DECL_HAS_DEBUG_ARGS_P (from))
6853 return NULL;
6854 gcc_checking_assert (debug_args_for_decl != NULL);
6855 in.base.from = from;
6856 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6857 if (h)
6858 return &h->to;
6859 return NULL;
6862 /* Insert a mapping FROM->empty vector of debug arguments in the value
6863 expression hashtable. */
6865 vec<tree, va_gc> **
6866 decl_debug_args_insert (tree from)
6868 struct tree_vec_map *h;
6869 tree_vec_map **loc;
6871 if (DECL_HAS_DEBUG_ARGS_P (from))
6872 return decl_debug_args_lookup (from);
6873 if (debug_args_for_decl == NULL)
6874 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6875 h = ggc_alloc<tree_vec_map> ();
6876 h->base.from = from;
6877 h->to = NULL;
6878 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6879 *loc = h;
6880 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6881 return &h->to;
6884 /* Hashing of types so that we don't make duplicates.
6885 The entry point is `type_hash_canon'. */
6887 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6888 with types in the TREE_VALUE slots), by adding the hash codes
6889 of the individual types. */
6891 static void
6892 type_hash_list (const_tree list, inchash::hash &hstate)
6894 const_tree tail;
6896 for (tail = list; tail; tail = TREE_CHAIN (tail))
6897 if (TREE_VALUE (tail) != error_mark_node)
6898 hstate.add_object (TYPE_HASH (TREE_VALUE (tail)));
6901 /* These are the Hashtable callback functions. */
6903 /* Returns true iff the types are equivalent. */
6905 bool
6906 type_cache_hasher::equal (type_hash *a, type_hash *b)
6908 /* First test the things that are the same for all types. */
6909 if (a->hash != b->hash
6910 || TREE_CODE (a->type) != TREE_CODE (b->type)
6911 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6912 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6913 TYPE_ATTRIBUTES (b->type))
6914 || (TREE_CODE (a->type) != COMPLEX_TYPE
6915 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6916 return 0;
6918 /* Be careful about comparing arrays before and after the element type
6919 has been completed; don't compare TYPE_ALIGN unless both types are
6920 complete. */
6921 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6922 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6923 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6924 return 0;
6926 switch (TREE_CODE (a->type))
6928 case VOID_TYPE:
6929 case COMPLEX_TYPE:
6930 case POINTER_TYPE:
6931 case REFERENCE_TYPE:
6932 case NULLPTR_TYPE:
6933 return 1;
6935 case VECTOR_TYPE:
6936 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
6938 case ENUMERAL_TYPE:
6939 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6940 && !(TYPE_VALUES (a->type)
6941 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6942 && TYPE_VALUES (b->type)
6943 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6944 && type_list_equal (TYPE_VALUES (a->type),
6945 TYPE_VALUES (b->type))))
6946 return 0;
6948 /* ... fall through ... */
6950 case INTEGER_TYPE:
6951 case REAL_TYPE:
6952 case BOOLEAN_TYPE:
6953 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
6954 return false;
6955 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6956 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6957 TYPE_MAX_VALUE (b->type)))
6958 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6959 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6960 TYPE_MIN_VALUE (b->type))));
6962 case FIXED_POINT_TYPE:
6963 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6965 case OFFSET_TYPE:
6966 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6968 case METHOD_TYPE:
6969 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6970 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6971 || (TYPE_ARG_TYPES (a->type)
6972 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6973 && TYPE_ARG_TYPES (b->type)
6974 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6975 && type_list_equal (TYPE_ARG_TYPES (a->type),
6976 TYPE_ARG_TYPES (b->type)))))
6977 break;
6978 return 0;
6979 case ARRAY_TYPE:
6980 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
6982 case RECORD_TYPE:
6983 case UNION_TYPE:
6984 case QUAL_UNION_TYPE:
6985 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6986 || (TYPE_FIELDS (a->type)
6987 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6988 && TYPE_FIELDS (b->type)
6989 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6990 && type_list_equal (TYPE_FIELDS (a->type),
6991 TYPE_FIELDS (b->type))));
6993 case FUNCTION_TYPE:
6994 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6995 || (TYPE_ARG_TYPES (a->type)
6996 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6997 && TYPE_ARG_TYPES (b->type)
6998 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6999 && type_list_equal (TYPE_ARG_TYPES (a->type),
7000 TYPE_ARG_TYPES (b->type))))
7001 break;
7002 return 0;
7004 default:
7005 return 0;
7008 if (lang_hooks.types.type_hash_eq != NULL)
7009 return lang_hooks.types.type_hash_eq (a->type, b->type);
7011 return 1;
7014 /* Given TYPE, and HASHCODE its hash code, return the canonical
7015 object for an identical type if one already exists.
7016 Otherwise, return TYPE, and record it as the canonical object.
7018 To use this function, first create a type of the sort you want.
7019 Then compute its hash code from the fields of the type that
7020 make it different from other similar types.
7021 Then call this function and use the value. */
7023 tree
7024 type_hash_canon (unsigned int hashcode, tree type)
7026 type_hash in;
7027 type_hash **loc;
7029 /* The hash table only contains main variants, so ensure that's what we're
7030 being passed. */
7031 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7033 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7034 must call that routine before comparing TYPE_ALIGNs. */
7035 layout_type (type);
7037 in.hash = hashcode;
7038 in.type = type;
7040 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7041 if (*loc)
7043 tree t1 = ((type_hash *) *loc)->type;
7044 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1);
7045 if (GATHER_STATISTICS)
7047 tree_code_counts[(int) TREE_CODE (type)]--;
7048 tree_node_counts[(int) t_kind]--;
7049 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type_non_common);
7051 return t1;
7053 else
7055 struct type_hash *h;
7057 h = ggc_alloc<type_hash> ();
7058 h->hash = hashcode;
7059 h->type = type;
7060 *loc = h;
7062 return type;
7066 static void
7067 print_type_hash_statistics (void)
7069 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7070 (long) type_hash_table->size (),
7071 (long) type_hash_table->elements (),
7072 type_hash_table->collisions ());
7075 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
7076 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
7077 by adding the hash codes of the individual attributes. */
7079 static void
7080 attribute_hash_list (const_tree list, inchash::hash &hstate)
7082 const_tree tail;
7084 for (tail = list; tail; tail = TREE_CHAIN (tail))
7085 /* ??? Do we want to add in TREE_VALUE too? */
7086 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (tail)));
7089 /* Given two lists of attributes, return true if list l2 is
7090 equivalent to l1. */
7093 attribute_list_equal (const_tree l1, const_tree l2)
7095 if (l1 == l2)
7096 return 1;
7098 return attribute_list_contained (l1, l2)
7099 && attribute_list_contained (l2, l1);
7102 /* Given two lists of attributes, return true if list L2 is
7103 completely contained within L1. */
7104 /* ??? This would be faster if attribute names were stored in a canonicalized
7105 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
7106 must be used to show these elements are equivalent (which they are). */
7107 /* ??? It's not clear that attributes with arguments will always be handled
7108 correctly. */
7111 attribute_list_contained (const_tree l1, const_tree l2)
7113 const_tree t1, t2;
7115 /* First check the obvious, maybe the lists are identical. */
7116 if (l1 == l2)
7117 return 1;
7119 /* Maybe the lists are similar. */
7120 for (t1 = l1, t2 = l2;
7121 t1 != 0 && t2 != 0
7122 && get_attribute_name (t1) == get_attribute_name (t2)
7123 && TREE_VALUE (t1) == TREE_VALUE (t2);
7124 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7127 /* Maybe the lists are equal. */
7128 if (t1 == 0 && t2 == 0)
7129 return 1;
7131 for (; t2 != 0; t2 = TREE_CHAIN (t2))
7133 const_tree attr;
7134 /* This CONST_CAST is okay because lookup_attribute does not
7135 modify its argument and the return value is assigned to a
7136 const_tree. */
7137 for (attr = lookup_ident_attribute (get_attribute_name (t2),
7138 CONST_CAST_TREE (l1));
7139 attr != NULL_TREE && !attribute_value_equal (t2, attr);
7140 attr = lookup_ident_attribute (get_attribute_name (t2),
7141 TREE_CHAIN (attr)))
7144 if (attr == NULL_TREE)
7145 return 0;
7148 return 1;
7151 /* Given two lists of types
7152 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7153 return 1 if the lists contain the same types in the same order.
7154 Also, the TREE_PURPOSEs must match. */
7157 type_list_equal (const_tree l1, const_tree l2)
7159 const_tree t1, t2;
7161 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7162 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7163 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7164 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7165 && (TREE_TYPE (TREE_PURPOSE (t1))
7166 == TREE_TYPE (TREE_PURPOSE (t2))))))
7167 return 0;
7169 return t1 == t2;
7172 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7173 given by TYPE. If the argument list accepts variable arguments,
7174 then this function counts only the ordinary arguments. */
7177 type_num_arguments (const_tree type)
7179 int i = 0;
7180 tree t;
7182 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7183 /* If the function does not take a variable number of arguments,
7184 the last element in the list will have type `void'. */
7185 if (VOID_TYPE_P (TREE_VALUE (t)))
7186 break;
7187 else
7188 ++i;
7190 return i;
7193 /* Nonzero if integer constants T1 and T2
7194 represent the same constant value. */
7197 tree_int_cst_equal (const_tree t1, const_tree t2)
7199 if (t1 == t2)
7200 return 1;
7202 if (t1 == 0 || t2 == 0)
7203 return 0;
7205 if (TREE_CODE (t1) == INTEGER_CST
7206 && TREE_CODE (t2) == INTEGER_CST
7207 && wi::to_widest (t1) == wi::to_widest (t2))
7208 return 1;
7210 return 0;
7213 /* Return true if T is an INTEGER_CST whose numerical value (extended
7214 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7216 bool
7217 tree_fits_shwi_p (const_tree t)
7219 return (t != NULL_TREE
7220 && TREE_CODE (t) == INTEGER_CST
7221 && wi::fits_shwi_p (wi::to_widest (t)));
7224 /* Return true if T is an INTEGER_CST whose numerical value (extended
7225 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7227 bool
7228 tree_fits_uhwi_p (const_tree t)
7230 return (t != NULL_TREE
7231 && TREE_CODE (t) == INTEGER_CST
7232 && wi::fits_uhwi_p (wi::to_widest (t)));
7235 /* T is an INTEGER_CST whose numerical value (extended according to
7236 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7237 HOST_WIDE_INT. */
7239 HOST_WIDE_INT
7240 tree_to_shwi (const_tree t)
7242 gcc_assert (tree_fits_shwi_p (t));
7243 return TREE_INT_CST_LOW (t);
7246 /* T is an INTEGER_CST whose numerical value (extended according to
7247 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7248 HOST_WIDE_INT. */
7250 unsigned HOST_WIDE_INT
7251 tree_to_uhwi (const_tree t)
7253 gcc_assert (tree_fits_uhwi_p (t));
7254 return TREE_INT_CST_LOW (t);
7257 /* Return the most significant (sign) bit of T. */
7260 tree_int_cst_sign_bit (const_tree t)
7262 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7264 return wi::extract_uhwi (t, bitno, 1);
7267 /* Return an indication of the sign of the integer constant T.
7268 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7269 Note that -1 will never be returned if T's type is unsigned. */
7272 tree_int_cst_sgn (const_tree t)
7274 if (wi::eq_p (t, 0))
7275 return 0;
7276 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7277 return 1;
7278 else if (wi::neg_p (t))
7279 return -1;
7280 else
7281 return 1;
7284 /* Return the minimum number of bits needed to represent VALUE in a
7285 signed or unsigned type, UNSIGNEDP says which. */
7287 unsigned int
7288 tree_int_cst_min_precision (tree value, signop sgn)
7290 /* If the value is negative, compute its negative minus 1. The latter
7291 adjustment is because the absolute value of the largest negative value
7292 is one larger than the largest positive value. This is equivalent to
7293 a bit-wise negation, so use that operation instead. */
7295 if (tree_int_cst_sgn (value) < 0)
7296 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7298 /* Return the number of bits needed, taking into account the fact
7299 that we need one more bit for a signed than unsigned type.
7300 If value is 0 or -1, the minimum precision is 1 no matter
7301 whether unsignedp is true or false. */
7303 if (integer_zerop (value))
7304 return 1;
7305 else
7306 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7309 /* Return truthvalue of whether T1 is the same tree structure as T2.
7310 Return 1 if they are the same.
7311 Return 0 if they are understandably different.
7312 Return -1 if either contains tree structure not understood by
7313 this function. */
7316 simple_cst_equal (const_tree t1, const_tree t2)
7318 enum tree_code code1, code2;
7319 int cmp;
7320 int i;
7322 if (t1 == t2)
7323 return 1;
7324 if (t1 == 0 || t2 == 0)
7325 return 0;
7327 code1 = TREE_CODE (t1);
7328 code2 = TREE_CODE (t2);
7330 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7332 if (CONVERT_EXPR_CODE_P (code2)
7333 || code2 == NON_LVALUE_EXPR)
7334 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7335 else
7336 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7339 else if (CONVERT_EXPR_CODE_P (code2)
7340 || code2 == NON_LVALUE_EXPR)
7341 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7343 if (code1 != code2)
7344 return 0;
7346 switch (code1)
7348 case INTEGER_CST:
7349 return wi::to_widest (t1) == wi::to_widest (t2);
7351 case REAL_CST:
7352 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
7354 case FIXED_CST:
7355 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7357 case STRING_CST:
7358 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7359 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7360 TREE_STRING_LENGTH (t1)));
7362 case CONSTRUCTOR:
7364 unsigned HOST_WIDE_INT idx;
7365 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7366 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7368 if (vec_safe_length (v1) != vec_safe_length (v2))
7369 return false;
7371 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7372 /* ??? Should we handle also fields here? */
7373 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7374 return false;
7375 return true;
7378 case SAVE_EXPR:
7379 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7381 case CALL_EXPR:
7382 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7383 if (cmp <= 0)
7384 return cmp;
7385 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7386 return 0;
7388 const_tree arg1, arg2;
7389 const_call_expr_arg_iterator iter1, iter2;
7390 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7391 arg2 = first_const_call_expr_arg (t2, &iter2);
7392 arg1 && arg2;
7393 arg1 = next_const_call_expr_arg (&iter1),
7394 arg2 = next_const_call_expr_arg (&iter2))
7396 cmp = simple_cst_equal (arg1, arg2);
7397 if (cmp <= 0)
7398 return cmp;
7400 return arg1 == arg2;
7403 case TARGET_EXPR:
7404 /* Special case: if either target is an unallocated VAR_DECL,
7405 it means that it's going to be unified with whatever the
7406 TARGET_EXPR is really supposed to initialize, so treat it
7407 as being equivalent to anything. */
7408 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7409 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7410 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7411 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7412 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7413 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7414 cmp = 1;
7415 else
7416 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7418 if (cmp <= 0)
7419 return cmp;
7421 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7423 case WITH_CLEANUP_EXPR:
7424 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7425 if (cmp <= 0)
7426 return cmp;
7428 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7430 case COMPONENT_REF:
7431 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7432 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7434 return 0;
7436 case VAR_DECL:
7437 case PARM_DECL:
7438 case CONST_DECL:
7439 case FUNCTION_DECL:
7440 return 0;
7442 default:
7443 break;
7446 /* This general rule works for most tree codes. All exceptions should be
7447 handled above. If this is a language-specific tree code, we can't
7448 trust what might be in the operand, so say we don't know
7449 the situation. */
7450 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7451 return -1;
7453 switch (TREE_CODE_CLASS (code1))
7455 case tcc_unary:
7456 case tcc_binary:
7457 case tcc_comparison:
7458 case tcc_expression:
7459 case tcc_reference:
7460 case tcc_statement:
7461 cmp = 1;
7462 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7464 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7465 if (cmp <= 0)
7466 return cmp;
7469 return cmp;
7471 default:
7472 return -1;
7476 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7477 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7478 than U, respectively. */
7481 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7483 if (tree_int_cst_sgn (t) < 0)
7484 return -1;
7485 else if (!tree_fits_uhwi_p (t))
7486 return 1;
7487 else if (TREE_INT_CST_LOW (t) == u)
7488 return 0;
7489 else if (TREE_INT_CST_LOW (t) < u)
7490 return -1;
7491 else
7492 return 1;
7495 /* Return true if SIZE represents a constant size that is in bounds of
7496 what the middle-end and the backend accepts (covering not more than
7497 half of the address-space). */
7499 bool
7500 valid_constant_size_p (const_tree size)
7502 if (! tree_fits_uhwi_p (size)
7503 || TREE_OVERFLOW (size)
7504 || tree_int_cst_sign_bit (size) != 0)
7505 return false;
7506 return true;
7509 /* Return the precision of the type, or for a complex or vector type the
7510 precision of the type of its elements. */
7512 unsigned int
7513 element_precision (const_tree type)
7515 enum tree_code code = TREE_CODE (type);
7516 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7517 type = TREE_TYPE (type);
7519 return TYPE_PRECISION (type);
7522 /* Return true if CODE represents an associative tree code. Otherwise
7523 return false. */
7524 bool
7525 associative_tree_code (enum tree_code code)
7527 switch (code)
7529 case BIT_IOR_EXPR:
7530 case BIT_AND_EXPR:
7531 case BIT_XOR_EXPR:
7532 case PLUS_EXPR:
7533 case MULT_EXPR:
7534 case MIN_EXPR:
7535 case MAX_EXPR:
7536 return true;
7538 default:
7539 break;
7541 return false;
7544 /* Return true if CODE represents a commutative tree code. Otherwise
7545 return false. */
7546 bool
7547 commutative_tree_code (enum tree_code code)
7549 switch (code)
7551 case PLUS_EXPR:
7552 case MULT_EXPR:
7553 case MULT_HIGHPART_EXPR:
7554 case MIN_EXPR:
7555 case MAX_EXPR:
7556 case BIT_IOR_EXPR:
7557 case BIT_XOR_EXPR:
7558 case BIT_AND_EXPR:
7559 case NE_EXPR:
7560 case EQ_EXPR:
7561 case UNORDERED_EXPR:
7562 case ORDERED_EXPR:
7563 case UNEQ_EXPR:
7564 case LTGT_EXPR:
7565 case TRUTH_AND_EXPR:
7566 case TRUTH_XOR_EXPR:
7567 case TRUTH_OR_EXPR:
7568 case WIDEN_MULT_EXPR:
7569 case VEC_WIDEN_MULT_HI_EXPR:
7570 case VEC_WIDEN_MULT_LO_EXPR:
7571 case VEC_WIDEN_MULT_EVEN_EXPR:
7572 case VEC_WIDEN_MULT_ODD_EXPR:
7573 return true;
7575 default:
7576 break;
7578 return false;
7581 /* Return true if CODE represents a ternary tree code for which the
7582 first two operands are commutative. Otherwise return false. */
7583 bool
7584 commutative_ternary_tree_code (enum tree_code code)
7586 switch (code)
7588 case WIDEN_MULT_PLUS_EXPR:
7589 case WIDEN_MULT_MINUS_EXPR:
7590 case DOT_PROD_EXPR:
7591 case FMA_EXPR:
7592 return true;
7594 default:
7595 break;
7597 return false;
7600 namespace inchash
7603 /* Generate a hash value for an expression. This can be used iteratively
7604 by passing a previous result as the HSTATE argument.
7606 This function is intended to produce the same hash for expressions which
7607 would compare equal using operand_equal_p. */
7608 void
7609 add_expr (const_tree t, inchash::hash &hstate)
7611 int i;
7612 enum tree_code code;
7613 enum tree_code_class tclass;
7615 if (t == NULL_TREE)
7617 hstate.merge_hash (0);
7618 return;
7621 code = TREE_CODE (t);
7623 switch (code)
7625 /* Alas, constants aren't shared, so we can't rely on pointer
7626 identity. */
7627 case VOID_CST:
7628 hstate.merge_hash (0);
7629 return;
7630 case INTEGER_CST:
7631 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
7632 hstate.add_wide_int (TREE_INT_CST_ELT (t, i));
7633 return;
7634 case REAL_CST:
7636 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
7637 hstate.merge_hash (val2);
7638 return;
7640 case FIXED_CST:
7642 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7643 hstate.merge_hash (val2);
7644 return;
7646 case STRING_CST:
7647 hstate.add ((const void *) TREE_STRING_POINTER (t), TREE_STRING_LENGTH (t));
7648 return;
7649 case COMPLEX_CST:
7650 inchash::add_expr (TREE_REALPART (t), hstate);
7651 inchash::add_expr (TREE_IMAGPART (t), hstate);
7652 return;
7653 case VECTOR_CST:
7655 unsigned i;
7656 for (i = 0; i < VECTOR_CST_NELTS (t); ++i)
7657 inchash::add_expr (VECTOR_CST_ELT (t, i), hstate);
7658 return;
7660 case SSA_NAME:
7661 /* We can just compare by pointer. */
7662 hstate.add_wide_int (SSA_NAME_VERSION (t));
7663 return;
7664 case PLACEHOLDER_EXPR:
7665 /* The node itself doesn't matter. */
7666 return;
7667 case TREE_LIST:
7668 /* A list of expressions, for a CALL_EXPR or as the elements of a
7669 VECTOR_CST. */
7670 for (; t; t = TREE_CHAIN (t))
7671 inchash::add_expr (TREE_VALUE (t), hstate);
7672 return;
7673 case CONSTRUCTOR:
7675 unsigned HOST_WIDE_INT idx;
7676 tree field, value;
7677 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7679 inchash::add_expr (field, hstate);
7680 inchash::add_expr (value, hstate);
7682 return;
7684 case FUNCTION_DECL:
7685 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7686 Otherwise nodes that compare equal according to operand_equal_p might
7687 get different hash codes. However, don't do this for machine specific
7688 or front end builtins, since the function code is overloaded in those
7689 cases. */
7690 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7691 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7693 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7694 code = TREE_CODE (t);
7696 /* FALL THROUGH */
7697 default:
7698 tclass = TREE_CODE_CLASS (code);
7700 if (tclass == tcc_declaration)
7702 /* DECL's have a unique ID */
7703 hstate.add_wide_int (DECL_UID (t));
7705 else
7707 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
7709 hstate.add_object (code);
7711 /* Don't hash the type, that can lead to having nodes which
7712 compare equal according to operand_equal_p, but which
7713 have different hash codes. */
7714 if (CONVERT_EXPR_CODE_P (code)
7715 || code == NON_LVALUE_EXPR)
7717 /* Make sure to include signness in the hash computation. */
7718 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7719 inchash::add_expr (TREE_OPERAND (t, 0), hstate);
7722 else if (commutative_tree_code (code))
7724 /* It's a commutative expression. We want to hash it the same
7725 however it appears. We do this by first hashing both operands
7726 and then rehashing based on the order of their independent
7727 hashes. */
7728 inchash::hash one, two;
7729 inchash::add_expr (TREE_OPERAND (t, 0), one);
7730 inchash::add_expr (TREE_OPERAND (t, 1), two);
7731 hstate.add_commutative (one, two);
7733 else
7734 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7735 inchash::add_expr (TREE_OPERAND (t, i), hstate);
7737 return;
7743 /* Constructors for pointer, array and function types.
7744 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7745 constructed by language-dependent code, not here.) */
7747 /* Construct, lay out and return the type of pointers to TO_TYPE with
7748 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7749 reference all of memory. If such a type has already been
7750 constructed, reuse it. */
7752 tree
7753 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7754 bool can_alias_all)
7756 tree t;
7757 bool could_alias = can_alias_all;
7759 if (to_type == error_mark_node)
7760 return error_mark_node;
7762 /* If the pointed-to type has the may_alias attribute set, force
7763 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7764 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7765 can_alias_all = true;
7767 /* In some cases, languages will have things that aren't a POINTER_TYPE
7768 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7769 In that case, return that type without regard to the rest of our
7770 operands.
7772 ??? This is a kludge, but consistent with the way this function has
7773 always operated and there doesn't seem to be a good way to avoid this
7774 at the moment. */
7775 if (TYPE_POINTER_TO (to_type) != 0
7776 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7777 return TYPE_POINTER_TO (to_type);
7779 /* First, if we already have a type for pointers to TO_TYPE and it's
7780 the proper mode, use it. */
7781 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7782 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7783 return t;
7785 t = make_node (POINTER_TYPE);
7787 TREE_TYPE (t) = to_type;
7788 SET_TYPE_MODE (t, mode);
7789 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7790 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7791 TYPE_POINTER_TO (to_type) = t;
7793 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7794 SET_TYPE_STRUCTURAL_EQUALITY (t);
7795 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7796 TYPE_CANONICAL (t)
7797 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7798 mode, false);
7800 /* Lay out the type. This function has many callers that are concerned
7801 with expression-construction, and this simplifies them all. */
7802 layout_type (t);
7804 return t;
7807 /* By default build pointers in ptr_mode. */
7809 tree
7810 build_pointer_type (tree to_type)
7812 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7813 : TYPE_ADDR_SPACE (to_type);
7814 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7815 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7818 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7820 tree
7821 build_reference_type_for_mode (tree to_type, machine_mode mode,
7822 bool can_alias_all)
7824 tree t;
7825 bool could_alias = can_alias_all;
7827 if (to_type == error_mark_node)
7828 return error_mark_node;
7830 /* If the pointed-to type has the may_alias attribute set, force
7831 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7832 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7833 can_alias_all = true;
7835 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7836 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7837 In that case, return that type without regard to the rest of our
7838 operands.
7840 ??? This is a kludge, but consistent with the way this function has
7841 always operated and there doesn't seem to be a good way to avoid this
7842 at the moment. */
7843 if (TYPE_REFERENCE_TO (to_type) != 0
7844 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7845 return TYPE_REFERENCE_TO (to_type);
7847 /* First, if we already have a type for pointers to TO_TYPE and it's
7848 the proper mode, use it. */
7849 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7850 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7851 return t;
7853 t = make_node (REFERENCE_TYPE);
7855 TREE_TYPE (t) = to_type;
7856 SET_TYPE_MODE (t, mode);
7857 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7858 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7859 TYPE_REFERENCE_TO (to_type) = t;
7861 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7862 SET_TYPE_STRUCTURAL_EQUALITY (t);
7863 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7864 TYPE_CANONICAL (t)
7865 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7866 mode, false);
7868 layout_type (t);
7870 return t;
7874 /* Build the node for the type of references-to-TO_TYPE by default
7875 in ptr_mode. */
7877 tree
7878 build_reference_type (tree to_type)
7880 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7881 : TYPE_ADDR_SPACE (to_type);
7882 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7883 return build_reference_type_for_mode (to_type, pointer_mode, false);
7886 #define MAX_INT_CACHED_PREC \
7887 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7888 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7890 /* Builds a signed or unsigned integer type of precision PRECISION.
7891 Used for C bitfields whose precision does not match that of
7892 built-in target types. */
7893 tree
7894 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7895 int unsignedp)
7897 tree itype, ret;
7899 if (unsignedp)
7900 unsignedp = MAX_INT_CACHED_PREC + 1;
7902 if (precision <= MAX_INT_CACHED_PREC)
7904 itype = nonstandard_integer_type_cache[precision + unsignedp];
7905 if (itype)
7906 return itype;
7909 itype = make_node (INTEGER_TYPE);
7910 TYPE_PRECISION (itype) = precision;
7912 if (unsignedp)
7913 fixup_unsigned_type (itype);
7914 else
7915 fixup_signed_type (itype);
7917 ret = itype;
7918 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (itype)))
7919 ret = type_hash_canon (tree_to_uhwi (TYPE_MAX_VALUE (itype)), itype);
7920 if (precision <= MAX_INT_CACHED_PREC)
7921 nonstandard_integer_type_cache[precision + unsignedp] = ret;
7923 return ret;
7926 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7927 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7928 is true, reuse such a type that has already been constructed. */
7930 static tree
7931 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7933 tree itype = make_node (INTEGER_TYPE);
7934 inchash::hash hstate;
7936 TREE_TYPE (itype) = type;
7938 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7939 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7941 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7942 SET_TYPE_MODE (itype, TYPE_MODE (type));
7943 TYPE_SIZE (itype) = TYPE_SIZE (type);
7944 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7945 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
7946 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7948 if (!shared)
7949 return itype;
7951 if ((TYPE_MIN_VALUE (itype)
7952 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7953 || (TYPE_MAX_VALUE (itype)
7954 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7956 /* Since we cannot reliably merge this type, we need to compare it using
7957 structural equality checks. */
7958 SET_TYPE_STRUCTURAL_EQUALITY (itype);
7959 return itype;
7962 inchash::add_expr (TYPE_MIN_VALUE (itype), hstate);
7963 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
7964 hstate.merge_hash (TYPE_HASH (type));
7965 itype = type_hash_canon (hstate.end (), itype);
7967 return itype;
7970 /* Wrapper around build_range_type_1 with SHARED set to true. */
7972 tree
7973 build_range_type (tree type, tree lowval, tree highval)
7975 return build_range_type_1 (type, lowval, highval, true);
7978 /* Wrapper around build_range_type_1 with SHARED set to false. */
7980 tree
7981 build_nonshared_range_type (tree type, tree lowval, tree highval)
7983 return build_range_type_1 (type, lowval, highval, false);
7986 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7987 MAXVAL should be the maximum value in the domain
7988 (one less than the length of the array).
7990 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7991 We don't enforce this limit, that is up to caller (e.g. language front end).
7992 The limit exists because the result is a signed type and we don't handle
7993 sizes that use more than one HOST_WIDE_INT. */
7995 tree
7996 build_index_type (tree maxval)
7998 return build_range_type (sizetype, size_zero_node, maxval);
8001 /* Return true if the debug information for TYPE, a subtype, should be emitted
8002 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8003 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8004 debug info and doesn't reflect the source code. */
8006 bool
8007 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8009 tree base_type = TREE_TYPE (type), low, high;
8011 /* Subrange types have a base type which is an integral type. */
8012 if (!INTEGRAL_TYPE_P (base_type))
8013 return false;
8015 /* Get the real bounds of the subtype. */
8016 if (lang_hooks.types.get_subrange_bounds)
8017 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8018 else
8020 low = TYPE_MIN_VALUE (type);
8021 high = TYPE_MAX_VALUE (type);
8024 /* If the type and its base type have the same representation and the same
8025 name, then the type is not a subrange but a copy of the base type. */
8026 if ((TREE_CODE (base_type) == INTEGER_TYPE
8027 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8028 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8029 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8030 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8031 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8032 return false;
8034 if (lowval)
8035 *lowval = low;
8036 if (highval)
8037 *highval = high;
8038 return true;
8041 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8042 and number of elements specified by the range of values of INDEX_TYPE.
8043 If SHARED is true, reuse such a type that has already been constructed. */
8045 static tree
8046 build_array_type_1 (tree elt_type, tree index_type, bool shared)
8048 tree t;
8050 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8052 error ("arrays of functions are not meaningful");
8053 elt_type = integer_type_node;
8056 t = make_node (ARRAY_TYPE);
8057 TREE_TYPE (t) = elt_type;
8058 TYPE_DOMAIN (t) = index_type;
8059 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8060 layout_type (t);
8062 /* If the element type is incomplete at this point we get marked for
8063 structural equality. Do not record these types in the canonical
8064 type hashtable. */
8065 if (TYPE_STRUCTURAL_EQUALITY_P (t))
8066 return t;
8068 if (shared)
8070 inchash::hash hstate;
8071 hstate.add_object (TYPE_HASH (elt_type));
8072 if (index_type)
8073 hstate.add_object (TYPE_HASH (index_type));
8074 t = type_hash_canon (hstate.end (), t);
8077 if (TYPE_CANONICAL (t) == t)
8079 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8080 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
8081 SET_TYPE_STRUCTURAL_EQUALITY (t);
8082 else if (TYPE_CANONICAL (elt_type) != elt_type
8083 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8084 TYPE_CANONICAL (t)
8085 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8086 index_type
8087 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8088 shared);
8091 return t;
8094 /* Wrapper around build_array_type_1 with SHARED set to true. */
8096 tree
8097 build_array_type (tree elt_type, tree index_type)
8099 return build_array_type_1 (elt_type, index_type, true);
8102 /* Wrapper around build_array_type_1 with SHARED set to false. */
8104 tree
8105 build_nonshared_array_type (tree elt_type, tree index_type)
8107 return build_array_type_1 (elt_type, index_type, false);
8110 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8111 sizetype. */
8113 tree
8114 build_array_type_nelts (tree elt_type, unsigned HOST_WIDE_INT nelts)
8116 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8119 /* Recursively examines the array elements of TYPE, until a non-array
8120 element type is found. */
8122 tree
8123 strip_array_types (tree type)
8125 while (TREE_CODE (type) == ARRAY_TYPE)
8126 type = TREE_TYPE (type);
8128 return type;
8131 /* Computes the canonical argument types from the argument type list
8132 ARGTYPES.
8134 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8135 on entry to this function, or if any of the ARGTYPES are
8136 structural.
8138 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8139 true on entry to this function, or if any of the ARGTYPES are
8140 non-canonical.
8142 Returns a canonical argument list, which may be ARGTYPES when the
8143 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8144 true) or would not differ from ARGTYPES. */
8146 static tree
8147 maybe_canonicalize_argtypes (tree argtypes,
8148 bool *any_structural_p,
8149 bool *any_noncanonical_p)
8151 tree arg;
8152 bool any_noncanonical_argtypes_p = false;
8154 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8156 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8157 /* Fail gracefully by stating that the type is structural. */
8158 *any_structural_p = true;
8159 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8160 *any_structural_p = true;
8161 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8162 || TREE_PURPOSE (arg))
8163 /* If the argument has a default argument, we consider it
8164 non-canonical even though the type itself is canonical.
8165 That way, different variants of function and method types
8166 with default arguments will all point to the variant with
8167 no defaults as their canonical type. */
8168 any_noncanonical_argtypes_p = true;
8171 if (*any_structural_p)
8172 return argtypes;
8174 if (any_noncanonical_argtypes_p)
8176 /* Build the canonical list of argument types. */
8177 tree canon_argtypes = NULL_TREE;
8178 bool is_void = false;
8180 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8182 if (arg == void_list_node)
8183 is_void = true;
8184 else
8185 canon_argtypes = tree_cons (NULL_TREE,
8186 TYPE_CANONICAL (TREE_VALUE (arg)),
8187 canon_argtypes);
8190 canon_argtypes = nreverse (canon_argtypes);
8191 if (is_void)
8192 canon_argtypes = chainon (canon_argtypes, void_list_node);
8194 /* There is a non-canonical type. */
8195 *any_noncanonical_p = true;
8196 return canon_argtypes;
8199 /* The canonical argument types are the same as ARGTYPES. */
8200 return argtypes;
8203 /* Construct, lay out and return
8204 the type of functions returning type VALUE_TYPE
8205 given arguments of types ARG_TYPES.
8206 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8207 are data type nodes for the arguments of the function.
8208 If such a type has already been constructed, reuse it. */
8210 tree
8211 build_function_type (tree value_type, tree arg_types)
8213 tree t;
8214 inchash::hash hstate;
8215 bool any_structural_p, any_noncanonical_p;
8216 tree canon_argtypes;
8218 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8220 error ("function return type cannot be function");
8221 value_type = integer_type_node;
8224 /* Make a node of the sort we want. */
8225 t = make_node (FUNCTION_TYPE);
8226 TREE_TYPE (t) = value_type;
8227 TYPE_ARG_TYPES (t) = arg_types;
8229 /* If we already have such a type, use the old one. */
8230 hstate.add_object (TYPE_HASH (value_type));
8231 type_hash_list (arg_types, hstate);
8232 t = type_hash_canon (hstate.end (), t);
8234 /* Set up the canonical type. */
8235 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8236 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8237 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8238 &any_structural_p,
8239 &any_noncanonical_p);
8240 if (any_structural_p)
8241 SET_TYPE_STRUCTURAL_EQUALITY (t);
8242 else if (any_noncanonical_p)
8243 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8244 canon_argtypes);
8246 if (!COMPLETE_TYPE_P (t))
8247 layout_type (t);
8248 return t;
8251 /* Build a function type. The RETURN_TYPE is the type returned by the
8252 function. If VAARGS is set, no void_type_node is appended to the
8253 the list. ARGP must be always be terminated be a NULL_TREE. */
8255 static tree
8256 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8258 tree t, args, last;
8260 t = va_arg (argp, tree);
8261 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8262 args = tree_cons (NULL_TREE, t, args);
8264 if (vaargs)
8266 last = args;
8267 if (args != NULL_TREE)
8268 args = nreverse (args);
8269 gcc_assert (last != void_list_node);
8271 else if (args == NULL_TREE)
8272 args = void_list_node;
8273 else
8275 last = args;
8276 args = nreverse (args);
8277 TREE_CHAIN (last) = void_list_node;
8279 args = build_function_type (return_type, args);
8281 return args;
8284 /* Build a function type. The RETURN_TYPE is the type returned by the
8285 function. If additional arguments are provided, they are
8286 additional argument types. The list of argument types must always
8287 be terminated by NULL_TREE. */
8289 tree
8290 build_function_type_list (tree return_type, ...)
8292 tree args;
8293 va_list p;
8295 va_start (p, return_type);
8296 args = build_function_type_list_1 (false, return_type, p);
8297 va_end (p);
8298 return args;
8301 /* Build a variable argument function type. The RETURN_TYPE is the
8302 type returned by the function. If additional arguments are provided,
8303 they are additional argument types. The list of argument types must
8304 always be terminated by NULL_TREE. */
8306 tree
8307 build_varargs_function_type_list (tree return_type, ...)
8309 tree args;
8310 va_list p;
8312 va_start (p, return_type);
8313 args = build_function_type_list_1 (true, return_type, p);
8314 va_end (p);
8316 return args;
8319 /* Build a function type. RETURN_TYPE is the type returned by the
8320 function; VAARGS indicates whether the function takes varargs. The
8321 function takes N named arguments, the types of which are provided in
8322 ARG_TYPES. */
8324 static tree
8325 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8326 tree *arg_types)
8328 int i;
8329 tree t = vaargs ? NULL_TREE : void_list_node;
8331 for (i = n - 1; i >= 0; i--)
8332 t = tree_cons (NULL_TREE, arg_types[i], t);
8334 return build_function_type (return_type, t);
8337 /* Build a function type. RETURN_TYPE is the type returned by the
8338 function. The function takes N named arguments, the types of which
8339 are provided in ARG_TYPES. */
8341 tree
8342 build_function_type_array (tree return_type, int n, tree *arg_types)
8344 return build_function_type_array_1 (false, return_type, n, arg_types);
8347 /* Build a variable argument function type. RETURN_TYPE is the type
8348 returned by the function. The function takes N named arguments, the
8349 types of which are provided in ARG_TYPES. */
8351 tree
8352 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8354 return build_function_type_array_1 (true, return_type, n, arg_types);
8357 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8358 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8359 for the method. An implicit additional parameter (of type
8360 pointer-to-BASETYPE) is added to the ARGTYPES. */
8362 tree
8363 build_method_type_directly (tree basetype,
8364 tree rettype,
8365 tree argtypes)
8367 tree t;
8368 tree ptype;
8369 inchash::hash hstate;
8370 bool any_structural_p, any_noncanonical_p;
8371 tree canon_argtypes;
8373 /* Make a node of the sort we want. */
8374 t = make_node (METHOD_TYPE);
8376 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8377 TREE_TYPE (t) = rettype;
8378 ptype = build_pointer_type (basetype);
8380 /* The actual arglist for this function includes a "hidden" argument
8381 which is "this". Put it into the list of argument types. */
8382 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8383 TYPE_ARG_TYPES (t) = argtypes;
8385 /* If we already have such a type, use the old one. */
8386 hstate.add_object (TYPE_HASH (basetype));
8387 hstate.add_object (TYPE_HASH (rettype));
8388 type_hash_list (argtypes, hstate);
8389 t = type_hash_canon (hstate.end (), t);
8391 /* Set up the canonical type. */
8392 any_structural_p
8393 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8394 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8395 any_noncanonical_p
8396 = (TYPE_CANONICAL (basetype) != basetype
8397 || TYPE_CANONICAL (rettype) != rettype);
8398 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8399 &any_structural_p,
8400 &any_noncanonical_p);
8401 if (any_structural_p)
8402 SET_TYPE_STRUCTURAL_EQUALITY (t);
8403 else if (any_noncanonical_p)
8404 TYPE_CANONICAL (t)
8405 = build_method_type_directly (TYPE_CANONICAL (basetype),
8406 TYPE_CANONICAL (rettype),
8407 canon_argtypes);
8408 if (!COMPLETE_TYPE_P (t))
8409 layout_type (t);
8411 return t;
8414 /* Construct, lay out and return the type of methods belonging to class
8415 BASETYPE and whose arguments and values are described by TYPE.
8416 If that type exists already, reuse it.
8417 TYPE must be a FUNCTION_TYPE node. */
8419 tree
8420 build_method_type (tree basetype, tree type)
8422 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8424 return build_method_type_directly (basetype,
8425 TREE_TYPE (type),
8426 TYPE_ARG_TYPES (type));
8429 /* Construct, lay out and return the type of offsets to a value
8430 of type TYPE, within an object of type BASETYPE.
8431 If a suitable offset type exists already, reuse it. */
8433 tree
8434 build_offset_type (tree basetype, tree type)
8436 tree t;
8437 inchash::hash hstate;
8439 /* Make a node of the sort we want. */
8440 t = make_node (OFFSET_TYPE);
8442 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8443 TREE_TYPE (t) = type;
8445 /* If we already have such a type, use the old one. */
8446 hstate.add_object (TYPE_HASH (basetype));
8447 hstate.add_object (TYPE_HASH (type));
8448 t = type_hash_canon (hstate.end (), t);
8450 if (!COMPLETE_TYPE_P (t))
8451 layout_type (t);
8453 if (TYPE_CANONICAL (t) == t)
8455 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8456 || TYPE_STRUCTURAL_EQUALITY_P (type))
8457 SET_TYPE_STRUCTURAL_EQUALITY (t);
8458 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8459 || TYPE_CANONICAL (type) != type)
8460 TYPE_CANONICAL (t)
8461 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8462 TYPE_CANONICAL (type));
8465 return t;
8468 /* Create a complex type whose components are COMPONENT_TYPE. */
8470 tree
8471 build_complex_type (tree component_type)
8473 tree t;
8474 inchash::hash hstate;
8476 gcc_assert (INTEGRAL_TYPE_P (component_type)
8477 || SCALAR_FLOAT_TYPE_P (component_type)
8478 || FIXED_POINT_TYPE_P (component_type));
8480 /* Make a node of the sort we want. */
8481 t = make_node (COMPLEX_TYPE);
8483 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
8485 /* If we already have such a type, use the old one. */
8486 hstate.add_object (TYPE_HASH (component_type));
8487 t = type_hash_canon (hstate.end (), t);
8489 if (!COMPLETE_TYPE_P (t))
8490 layout_type (t);
8492 if (TYPE_CANONICAL (t) == t)
8494 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
8495 SET_TYPE_STRUCTURAL_EQUALITY (t);
8496 else if (TYPE_CANONICAL (component_type) != component_type)
8497 TYPE_CANONICAL (t)
8498 = build_complex_type (TYPE_CANONICAL (component_type));
8501 /* We need to create a name, since complex is a fundamental type. */
8502 if (! TYPE_NAME (t))
8504 const char *name;
8505 if (component_type == char_type_node)
8506 name = "complex char";
8507 else if (component_type == signed_char_type_node)
8508 name = "complex signed char";
8509 else if (component_type == unsigned_char_type_node)
8510 name = "complex unsigned char";
8511 else if (component_type == short_integer_type_node)
8512 name = "complex short int";
8513 else if (component_type == short_unsigned_type_node)
8514 name = "complex short unsigned int";
8515 else if (component_type == integer_type_node)
8516 name = "complex int";
8517 else if (component_type == unsigned_type_node)
8518 name = "complex unsigned int";
8519 else if (component_type == long_integer_type_node)
8520 name = "complex long int";
8521 else if (component_type == long_unsigned_type_node)
8522 name = "complex long unsigned int";
8523 else if (component_type == long_long_integer_type_node)
8524 name = "complex long long int";
8525 else if (component_type == long_long_unsigned_type_node)
8526 name = "complex long long unsigned int";
8527 else
8528 name = 0;
8530 if (name != 0)
8531 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8532 get_identifier (name), t);
8535 return build_qualified_type (t, TYPE_QUALS (component_type));
8538 /* If TYPE is a real or complex floating-point type and the target
8539 does not directly support arithmetic on TYPE then return the wider
8540 type to be used for arithmetic on TYPE. Otherwise, return
8541 NULL_TREE. */
8543 tree
8544 excess_precision_type (tree type)
8546 if (flag_excess_precision != EXCESS_PRECISION_FAST)
8548 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
8549 switch (TREE_CODE (type))
8551 case REAL_TYPE:
8552 switch (flt_eval_method)
8554 case 1:
8555 if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
8556 return double_type_node;
8557 break;
8558 case 2:
8559 if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
8560 || TYPE_MODE (type) == TYPE_MODE (double_type_node))
8561 return long_double_type_node;
8562 break;
8563 default:
8564 gcc_unreachable ();
8566 break;
8567 case COMPLEX_TYPE:
8568 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8569 return NULL_TREE;
8570 switch (flt_eval_method)
8572 case 1:
8573 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
8574 return complex_double_type_node;
8575 break;
8576 case 2:
8577 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
8578 || (TYPE_MODE (TREE_TYPE (type))
8579 == TYPE_MODE (double_type_node)))
8580 return complex_long_double_type_node;
8581 break;
8582 default:
8583 gcc_unreachable ();
8585 break;
8586 default:
8587 break;
8590 return NULL_TREE;
8593 /* Return OP, stripped of any conversions to wider types as much as is safe.
8594 Converting the value back to OP's type makes a value equivalent to OP.
8596 If FOR_TYPE is nonzero, we return a value which, if converted to
8597 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8599 OP must have integer, real or enumeral type. Pointers are not allowed!
8601 There are some cases where the obvious value we could return
8602 would regenerate to OP if converted to OP's type,
8603 but would not extend like OP to wider types.
8604 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8605 For example, if OP is (unsigned short)(signed char)-1,
8606 we avoid returning (signed char)-1 if FOR_TYPE is int,
8607 even though extending that to an unsigned short would regenerate OP,
8608 since the result of extending (signed char)-1 to (int)
8609 is different from (int) OP. */
8611 tree
8612 get_unwidened (tree op, tree for_type)
8614 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8615 tree type = TREE_TYPE (op);
8616 unsigned final_prec
8617 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8618 int uns
8619 = (for_type != 0 && for_type != type
8620 && final_prec > TYPE_PRECISION (type)
8621 && TYPE_UNSIGNED (type));
8622 tree win = op;
8624 while (CONVERT_EXPR_P (op))
8626 int bitschange;
8628 /* TYPE_PRECISION on vector types has different meaning
8629 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8630 so avoid them here. */
8631 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8632 break;
8634 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8635 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8637 /* Truncations are many-one so cannot be removed.
8638 Unless we are later going to truncate down even farther. */
8639 if (bitschange < 0
8640 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8641 break;
8643 /* See what's inside this conversion. If we decide to strip it,
8644 we will set WIN. */
8645 op = TREE_OPERAND (op, 0);
8647 /* If we have not stripped any zero-extensions (uns is 0),
8648 we can strip any kind of extension.
8649 If we have previously stripped a zero-extension,
8650 only zero-extensions can safely be stripped.
8651 Any extension can be stripped if the bits it would produce
8652 are all going to be discarded later by truncating to FOR_TYPE. */
8654 if (bitschange > 0)
8656 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8657 win = op;
8658 /* TYPE_UNSIGNED says whether this is a zero-extension.
8659 Let's avoid computing it if it does not affect WIN
8660 and if UNS will not be needed again. */
8661 if ((uns
8662 || CONVERT_EXPR_P (op))
8663 && TYPE_UNSIGNED (TREE_TYPE (op)))
8665 uns = 1;
8666 win = op;
8671 /* If we finally reach a constant see if it fits in for_type and
8672 in that case convert it. */
8673 if (for_type
8674 && TREE_CODE (win) == INTEGER_CST
8675 && TREE_TYPE (win) != for_type
8676 && int_fits_type_p (win, for_type))
8677 win = fold_convert (for_type, win);
8679 return win;
8682 /* Return OP or a simpler expression for a narrower value
8683 which can be sign-extended or zero-extended to give back OP.
8684 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8685 or 0 if the value should be sign-extended. */
8687 tree
8688 get_narrower (tree op, int *unsignedp_ptr)
8690 int uns = 0;
8691 int first = 1;
8692 tree win = op;
8693 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8695 while (TREE_CODE (op) == NOP_EXPR)
8697 int bitschange
8698 = (TYPE_PRECISION (TREE_TYPE (op))
8699 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8701 /* Truncations are many-one so cannot be removed. */
8702 if (bitschange < 0)
8703 break;
8705 /* See what's inside this conversion. If we decide to strip it,
8706 we will set WIN. */
8708 if (bitschange > 0)
8710 op = TREE_OPERAND (op, 0);
8711 /* An extension: the outermost one can be stripped,
8712 but remember whether it is zero or sign extension. */
8713 if (first)
8714 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8715 /* Otherwise, if a sign extension has been stripped,
8716 only sign extensions can now be stripped;
8717 if a zero extension has been stripped, only zero-extensions. */
8718 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8719 break;
8720 first = 0;
8722 else /* bitschange == 0 */
8724 /* A change in nominal type can always be stripped, but we must
8725 preserve the unsignedness. */
8726 if (first)
8727 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8728 first = 0;
8729 op = TREE_OPERAND (op, 0);
8730 /* Keep trying to narrow, but don't assign op to win if it
8731 would turn an integral type into something else. */
8732 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8733 continue;
8736 win = op;
8739 if (TREE_CODE (op) == COMPONENT_REF
8740 /* Since type_for_size always gives an integer type. */
8741 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8742 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8743 /* Ensure field is laid out already. */
8744 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8745 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8747 unsigned HOST_WIDE_INT innerprec
8748 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8749 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8750 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8751 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8753 /* We can get this structure field in a narrower type that fits it,
8754 but the resulting extension to its nominal type (a fullword type)
8755 must satisfy the same conditions as for other extensions.
8757 Do this only for fields that are aligned (not bit-fields),
8758 because when bit-field insns will be used there is no
8759 advantage in doing this. */
8761 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8762 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8763 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8764 && type != 0)
8766 if (first)
8767 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8768 win = fold_convert (type, op);
8772 *unsignedp_ptr = uns;
8773 return win;
8776 /* Returns true if integer constant C has a value that is permissible
8777 for type TYPE (an INTEGER_TYPE). */
8779 bool
8780 int_fits_type_p (const_tree c, const_tree type)
8782 tree type_low_bound, type_high_bound;
8783 bool ok_for_low_bound, ok_for_high_bound;
8784 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8786 retry:
8787 type_low_bound = TYPE_MIN_VALUE (type);
8788 type_high_bound = TYPE_MAX_VALUE (type);
8790 /* If at least one bound of the type is a constant integer, we can check
8791 ourselves and maybe make a decision. If no such decision is possible, but
8792 this type is a subtype, try checking against that. Otherwise, use
8793 fits_to_tree_p, which checks against the precision.
8795 Compute the status for each possibly constant bound, and return if we see
8796 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8797 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8798 for "constant known to fit". */
8800 /* Check if c >= type_low_bound. */
8801 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8803 if (tree_int_cst_lt (c, type_low_bound))
8804 return false;
8805 ok_for_low_bound = true;
8807 else
8808 ok_for_low_bound = false;
8810 /* Check if c <= type_high_bound. */
8811 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8813 if (tree_int_cst_lt (type_high_bound, c))
8814 return false;
8815 ok_for_high_bound = true;
8817 else
8818 ok_for_high_bound = false;
8820 /* If the constant fits both bounds, the result is known. */
8821 if (ok_for_low_bound && ok_for_high_bound)
8822 return true;
8824 /* Perform some generic filtering which may allow making a decision
8825 even if the bounds are not constant. First, negative integers
8826 never fit in unsigned types, */
8827 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (c))
8828 return false;
8830 /* Second, narrower types always fit in wider ones. */
8831 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8832 return true;
8834 /* Third, unsigned integers with top bit set never fit signed types. */
8835 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
8837 int prec = GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (c))) - 1;
8838 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
8840 /* When a tree_cst is converted to a wide-int, the precision
8841 is taken from the type. However, if the precision of the
8842 mode underneath the type is smaller than that, it is
8843 possible that the value will not fit. The test below
8844 fails if any bit is set between the sign bit of the
8845 underlying mode and the top bit of the type. */
8846 if (wi::ne_p (wi::zext (c, prec - 1), c))
8847 return false;
8849 else if (wi::neg_p (c))
8850 return false;
8853 /* If we haven't been able to decide at this point, there nothing more we
8854 can check ourselves here. Look at the base type if we have one and it
8855 has the same precision. */
8856 if (TREE_CODE (type) == INTEGER_TYPE
8857 && TREE_TYPE (type) != 0
8858 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8860 type = TREE_TYPE (type);
8861 goto retry;
8864 /* Or to fits_to_tree_p, if nothing else. */
8865 return wi::fits_to_tree_p (c, type);
8868 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8869 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8870 represented (assuming two's-complement arithmetic) within the bit
8871 precision of the type are returned instead. */
8873 void
8874 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8876 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8877 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8878 wi::to_mpz (TYPE_MIN_VALUE (type), min, TYPE_SIGN (type));
8879 else
8881 if (TYPE_UNSIGNED (type))
8882 mpz_set_ui (min, 0);
8883 else
8885 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
8886 wi::to_mpz (mn, min, SIGNED);
8890 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8891 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8892 wi::to_mpz (TYPE_MAX_VALUE (type), max, TYPE_SIGN (type));
8893 else
8895 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
8896 wi::to_mpz (mn, max, TYPE_SIGN (type));
8900 /* Return true if VAR is an automatic variable defined in function FN. */
8902 bool
8903 auto_var_in_fn_p (const_tree var, const_tree fn)
8905 return (DECL_P (var) && DECL_CONTEXT (var) == fn
8906 && ((((TREE_CODE (var) == VAR_DECL && ! DECL_EXTERNAL (var))
8907 || TREE_CODE (var) == PARM_DECL)
8908 && ! TREE_STATIC (var))
8909 || TREE_CODE (var) == LABEL_DECL
8910 || TREE_CODE (var) == RESULT_DECL));
8913 /* Subprogram of following function. Called by walk_tree.
8915 Return *TP if it is an automatic variable or parameter of the
8916 function passed in as DATA. */
8918 static tree
8919 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8921 tree fn = (tree) data;
8923 if (TYPE_P (*tp))
8924 *walk_subtrees = 0;
8926 else if (DECL_P (*tp)
8927 && auto_var_in_fn_p (*tp, fn))
8928 return *tp;
8930 return NULL_TREE;
8933 /* Returns true if T is, contains, or refers to a type with variable
8934 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8935 arguments, but not the return type. If FN is nonzero, only return
8936 true if a modifier of the type or position of FN is a variable or
8937 parameter inside FN.
8939 This concept is more general than that of C99 'variably modified types':
8940 in C99, a struct type is never variably modified because a VLA may not
8941 appear as a structure member. However, in GNU C code like:
8943 struct S { int i[f()]; };
8945 is valid, and other languages may define similar constructs. */
8947 bool
8948 variably_modified_type_p (tree type, tree fn)
8950 tree t;
8952 /* Test if T is either variable (if FN is zero) or an expression containing
8953 a variable in FN. If TYPE isn't gimplified, return true also if
8954 gimplify_one_sizepos would gimplify the expression into a local
8955 variable. */
8956 #define RETURN_TRUE_IF_VAR(T) \
8957 do { tree _t = (T); \
8958 if (_t != NULL_TREE \
8959 && _t != error_mark_node \
8960 && TREE_CODE (_t) != INTEGER_CST \
8961 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8962 && (!fn \
8963 || (!TYPE_SIZES_GIMPLIFIED (type) \
8964 && !is_gimple_sizepos (_t)) \
8965 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8966 return true; } while (0)
8968 if (type == error_mark_node)
8969 return false;
8971 /* If TYPE itself has variable size, it is variably modified. */
8972 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8973 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8975 switch (TREE_CODE (type))
8977 case POINTER_TYPE:
8978 case REFERENCE_TYPE:
8979 case VECTOR_TYPE:
8980 if (variably_modified_type_p (TREE_TYPE (type), fn))
8981 return true;
8982 break;
8984 case FUNCTION_TYPE:
8985 case METHOD_TYPE:
8986 /* If TYPE is a function type, it is variably modified if the
8987 return type is variably modified. */
8988 if (variably_modified_type_p (TREE_TYPE (type), fn))
8989 return true;
8990 break;
8992 case INTEGER_TYPE:
8993 case REAL_TYPE:
8994 case FIXED_POINT_TYPE:
8995 case ENUMERAL_TYPE:
8996 case BOOLEAN_TYPE:
8997 /* Scalar types are variably modified if their end points
8998 aren't constant. */
8999 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9000 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9001 break;
9003 case RECORD_TYPE:
9004 case UNION_TYPE:
9005 case QUAL_UNION_TYPE:
9006 /* We can't see if any of the fields are variably-modified by the
9007 definition we normally use, since that would produce infinite
9008 recursion via pointers. */
9009 /* This is variably modified if some field's type is. */
9010 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9011 if (TREE_CODE (t) == FIELD_DECL)
9013 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9014 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9015 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9017 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9018 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9020 break;
9022 case ARRAY_TYPE:
9023 /* Do not call ourselves to avoid infinite recursion. This is
9024 variably modified if the element type is. */
9025 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9026 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9027 break;
9029 default:
9030 break;
9033 /* The current language may have other cases to check, but in general,
9034 all other types are not variably modified. */
9035 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9037 #undef RETURN_TRUE_IF_VAR
9040 /* Given a DECL or TYPE, return the scope in which it was declared, or
9041 NULL_TREE if there is no containing scope. */
9043 tree
9044 get_containing_scope (const_tree t)
9046 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9049 /* Return the innermost context enclosing DECL that is
9050 a FUNCTION_DECL, or zero if none. */
9052 tree
9053 decl_function_context (const_tree decl)
9055 tree context;
9057 if (TREE_CODE (decl) == ERROR_MARK)
9058 return 0;
9060 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9061 where we look up the function at runtime. Such functions always take
9062 a first argument of type 'pointer to real context'.
9064 C++ should really be fixed to use DECL_CONTEXT for the real context,
9065 and use something else for the "virtual context". */
9066 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
9067 context
9068 = TYPE_MAIN_VARIANT
9069 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9070 else
9071 context = DECL_CONTEXT (decl);
9073 while (context && TREE_CODE (context) != FUNCTION_DECL)
9075 if (TREE_CODE (context) == BLOCK)
9076 context = BLOCK_SUPERCONTEXT (context);
9077 else
9078 context = get_containing_scope (context);
9081 return context;
9084 /* Return the innermost context enclosing DECL that is
9085 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9086 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9088 tree
9089 decl_type_context (const_tree decl)
9091 tree context = DECL_CONTEXT (decl);
9093 while (context)
9094 switch (TREE_CODE (context))
9096 case NAMESPACE_DECL:
9097 case TRANSLATION_UNIT_DECL:
9098 return NULL_TREE;
9100 case RECORD_TYPE:
9101 case UNION_TYPE:
9102 case QUAL_UNION_TYPE:
9103 return context;
9105 case TYPE_DECL:
9106 case FUNCTION_DECL:
9107 context = DECL_CONTEXT (context);
9108 break;
9110 case BLOCK:
9111 context = BLOCK_SUPERCONTEXT (context);
9112 break;
9114 default:
9115 gcc_unreachable ();
9118 return NULL_TREE;
9121 /* CALL is a CALL_EXPR. Return the declaration for the function
9122 called, or NULL_TREE if the called function cannot be
9123 determined. */
9125 tree
9126 get_callee_fndecl (const_tree call)
9128 tree addr;
9130 if (call == error_mark_node)
9131 return error_mark_node;
9133 /* It's invalid to call this function with anything but a
9134 CALL_EXPR. */
9135 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9137 /* The first operand to the CALL is the address of the function
9138 called. */
9139 addr = CALL_EXPR_FN (call);
9141 /* If there is no function, return early. */
9142 if (addr == NULL_TREE)
9143 return NULL_TREE;
9145 STRIP_NOPS (addr);
9147 /* If this is a readonly function pointer, extract its initial value. */
9148 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9149 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9150 && DECL_INITIAL (addr))
9151 addr = DECL_INITIAL (addr);
9153 /* If the address is just `&f' for some function `f', then we know
9154 that `f' is being called. */
9155 if (TREE_CODE (addr) == ADDR_EXPR
9156 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9157 return TREE_OPERAND (addr, 0);
9159 /* We couldn't figure out what was being called. */
9160 return NULL_TREE;
9163 #define TREE_MEM_USAGE_SPACES 40
9165 /* Print debugging information about tree nodes generated during the compile,
9166 and any language-specific information. */
9168 void
9169 dump_tree_statistics (void)
9171 if (GATHER_STATISTICS)
9173 int i;
9174 int total_nodes, total_bytes;
9175 fprintf (stderr, "\nKind Nodes Bytes\n");
9176 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9177 total_nodes = total_bytes = 0;
9178 for (i = 0; i < (int) all_kinds; i++)
9180 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
9181 tree_node_counts[i], tree_node_sizes[i]);
9182 total_nodes += tree_node_counts[i];
9183 total_bytes += tree_node_sizes[i];
9185 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9186 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
9187 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9188 fprintf (stderr, "Code Nodes\n");
9189 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9190 for (i = 0; i < (int) MAX_TREE_CODES; i++)
9191 fprintf (stderr, "%-32s %7d\n", get_tree_code_name ((enum tree_code) i),
9192 tree_code_counts[i]);
9193 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9194 fprintf (stderr, "\n");
9195 ssanames_print_statistics ();
9196 fprintf (stderr, "\n");
9197 phinodes_print_statistics ();
9198 fprintf (stderr, "\n");
9200 else
9201 fprintf (stderr, "(No per-node statistics)\n");
9203 print_type_hash_statistics ();
9204 print_debug_expr_statistics ();
9205 print_value_expr_statistics ();
9206 lang_hooks.print_statistics ();
9209 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9211 /* Generate a crc32 of a byte. */
9213 static unsigned
9214 crc32_unsigned_bits (unsigned chksum, unsigned value, unsigned bits)
9216 unsigned ix;
9218 for (ix = bits; ix--; value <<= 1)
9220 unsigned feedback;
9222 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
9223 chksum <<= 1;
9224 chksum ^= feedback;
9226 return chksum;
9229 /* Generate a crc32 of a 32-bit unsigned. */
9231 unsigned
9232 crc32_unsigned (unsigned chksum, unsigned value)
9234 return crc32_unsigned_bits (chksum, value, 32);
9237 /* Generate a crc32 of a byte. */
9239 unsigned
9240 crc32_byte (unsigned chksum, char byte)
9242 return crc32_unsigned_bits (chksum, (unsigned) byte << 24, 8);
9245 /* Generate a crc32 of a string. */
9247 unsigned
9248 crc32_string (unsigned chksum, const char *string)
9252 chksum = crc32_byte (chksum, *string);
9254 while (*string++);
9255 return chksum;
9258 /* P is a string that will be used in a symbol. Mask out any characters
9259 that are not valid in that context. */
9261 void
9262 clean_symbol_name (char *p)
9264 for (; *p; p++)
9265 if (! (ISALNUM (*p)
9266 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9267 || *p == '$'
9268 #endif
9269 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9270 || *p == '.'
9271 #endif
9273 *p = '_';
9276 /* For anonymous aggregate types, we need some sort of name to
9277 hold on to. In practice, this should not appear, but it should
9278 not be harmful if it does. */
9279 bool
9280 anon_aggrname_p(const_tree id_node)
9282 #ifndef NO_DOT_IN_LABEL
9283 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9284 && IDENTIFIER_POINTER (id_node)[1] == '_');
9285 #else /* NO_DOT_IN_LABEL */
9286 #ifndef NO_DOLLAR_IN_LABEL
9287 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9288 && IDENTIFIER_POINTER (id_node)[1] == '_');
9289 #else /* NO_DOLLAR_IN_LABEL */
9290 #define ANON_AGGRNAME_PREFIX "__anon_"
9291 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9292 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9293 #endif /* NO_DOLLAR_IN_LABEL */
9294 #endif /* NO_DOT_IN_LABEL */
9297 /* Return a format for an anonymous aggregate name. */
9298 const char *
9299 anon_aggrname_format()
9301 #ifndef NO_DOT_IN_LABEL
9302 return "._%d";
9303 #else /* NO_DOT_IN_LABEL */
9304 #ifndef NO_DOLLAR_IN_LABEL
9305 return "$_%d";
9306 #else /* NO_DOLLAR_IN_LABEL */
9307 return "__anon_%d";
9308 #endif /* NO_DOLLAR_IN_LABEL */
9309 #endif /* NO_DOT_IN_LABEL */
9312 /* Generate a name for a special-purpose function.
9313 The generated name may need to be unique across the whole link.
9314 Changes to this function may also require corresponding changes to
9315 xstrdup_mask_random.
9316 TYPE is some string to identify the purpose of this function to the
9317 linker or collect2; it must start with an uppercase letter,
9318 one of:
9319 I - for constructors
9320 D - for destructors
9321 N - for C++ anonymous namespaces
9322 F - for DWARF unwind frame information. */
9324 tree
9325 get_file_function_name (const char *type)
9327 char *buf;
9328 const char *p;
9329 char *q;
9331 /* If we already have a name we know to be unique, just use that. */
9332 if (first_global_object_name)
9333 p = q = ASTRDUP (first_global_object_name);
9334 /* If the target is handling the constructors/destructors, they
9335 will be local to this file and the name is only necessary for
9336 debugging purposes.
9337 We also assign sub_I and sub_D sufixes to constructors called from
9338 the global static constructors. These are always local. */
9339 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9340 || (strncmp (type, "sub_", 4) == 0
9341 && (type[4] == 'I' || type[4] == 'D')))
9343 const char *file = main_input_filename;
9344 if (! file)
9345 file = LOCATION_FILE (input_location);
9346 /* Just use the file's basename, because the full pathname
9347 might be quite long. */
9348 p = q = ASTRDUP (lbasename (file));
9350 else
9352 /* Otherwise, the name must be unique across the entire link.
9353 We don't have anything that we know to be unique to this translation
9354 unit, so use what we do have and throw in some randomness. */
9355 unsigned len;
9356 const char *name = weak_global_object_name;
9357 const char *file = main_input_filename;
9359 if (! name)
9360 name = "";
9361 if (! file)
9362 file = LOCATION_FILE (input_location);
9364 len = strlen (file);
9365 q = (char *) alloca (9 + 17 + len + 1);
9366 memcpy (q, file, len + 1);
9368 snprintf (q + len, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9369 crc32_string (0, name), get_random_seed (false));
9371 p = q;
9374 clean_symbol_name (q);
9375 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9376 + strlen (type));
9378 /* Set up the name of the file-level functions we may need.
9379 Use a global object (which is already required to be unique over
9380 the program) rather than the file name (which imposes extra
9381 constraints). */
9382 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9384 return get_identifier (buf);
9387 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9389 /* Complain that the tree code of NODE does not match the expected 0
9390 terminated list of trailing codes. The trailing code list can be
9391 empty, for a more vague error message. FILE, LINE, and FUNCTION
9392 are of the caller. */
9394 void
9395 tree_check_failed (const_tree node, const char *file,
9396 int line, const char *function, ...)
9398 va_list args;
9399 const char *buffer;
9400 unsigned length = 0;
9401 enum tree_code code;
9403 va_start (args, function);
9404 while ((code = (enum tree_code) va_arg (args, int)))
9405 length += 4 + strlen (get_tree_code_name (code));
9406 va_end (args);
9407 if (length)
9409 char *tmp;
9410 va_start (args, function);
9411 length += strlen ("expected ");
9412 buffer = tmp = (char *) alloca (length);
9413 length = 0;
9414 while ((code = (enum tree_code) va_arg (args, int)))
9416 const char *prefix = length ? " or " : "expected ";
9418 strcpy (tmp + length, prefix);
9419 length += strlen (prefix);
9420 strcpy (tmp + length, get_tree_code_name (code));
9421 length += strlen (get_tree_code_name (code));
9423 va_end (args);
9425 else
9426 buffer = "unexpected node";
9428 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9429 buffer, get_tree_code_name (TREE_CODE (node)),
9430 function, trim_filename (file), line);
9433 /* Complain that the tree code of NODE does match the expected 0
9434 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9435 the caller. */
9437 void
9438 tree_not_check_failed (const_tree node, const char *file,
9439 int line, const char *function, ...)
9441 va_list args;
9442 char *buffer;
9443 unsigned length = 0;
9444 enum tree_code code;
9446 va_start (args, function);
9447 while ((code = (enum tree_code) va_arg (args, int)))
9448 length += 4 + strlen (get_tree_code_name (code));
9449 va_end (args);
9450 va_start (args, function);
9451 buffer = (char *) alloca (length);
9452 length = 0;
9453 while ((code = (enum tree_code) va_arg (args, int)))
9455 if (length)
9457 strcpy (buffer + length, " or ");
9458 length += 4;
9460 strcpy (buffer + length, get_tree_code_name (code));
9461 length += strlen (get_tree_code_name (code));
9463 va_end (args);
9465 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9466 buffer, get_tree_code_name (TREE_CODE (node)),
9467 function, trim_filename (file), line);
9470 /* Similar to tree_check_failed, except that we check for a class of tree
9471 code, given in CL. */
9473 void
9474 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9475 const char *file, int line, const char *function)
9477 internal_error
9478 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9479 TREE_CODE_CLASS_STRING (cl),
9480 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9481 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9484 /* Similar to tree_check_failed, except that instead of specifying a
9485 dozen codes, use the knowledge that they're all sequential. */
9487 void
9488 tree_range_check_failed (const_tree node, const char *file, int line,
9489 const char *function, enum tree_code c1,
9490 enum tree_code c2)
9492 char *buffer;
9493 unsigned length = 0;
9494 unsigned int c;
9496 for (c = c1; c <= c2; ++c)
9497 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9499 length += strlen ("expected ");
9500 buffer = (char *) alloca (length);
9501 length = 0;
9503 for (c = c1; c <= c2; ++c)
9505 const char *prefix = length ? " or " : "expected ";
9507 strcpy (buffer + length, prefix);
9508 length += strlen (prefix);
9509 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9510 length += strlen (get_tree_code_name ((enum tree_code) c));
9513 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9514 buffer, get_tree_code_name (TREE_CODE (node)),
9515 function, trim_filename (file), line);
9519 /* Similar to tree_check_failed, except that we check that a tree does
9520 not have the specified code, given in CL. */
9522 void
9523 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9524 const char *file, int line, const char *function)
9526 internal_error
9527 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9528 TREE_CODE_CLASS_STRING (cl),
9529 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9530 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9534 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9536 void
9537 omp_clause_check_failed (const_tree node, const char *file, int line,
9538 const char *function, enum omp_clause_code code)
9540 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9541 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9542 function, trim_filename (file), line);
9546 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9548 void
9549 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9550 const char *function, enum omp_clause_code c1,
9551 enum omp_clause_code c2)
9553 char *buffer;
9554 unsigned length = 0;
9555 unsigned int c;
9557 for (c = c1; c <= c2; ++c)
9558 length += 4 + strlen (omp_clause_code_name[c]);
9560 length += strlen ("expected ");
9561 buffer = (char *) alloca (length);
9562 length = 0;
9564 for (c = c1; c <= c2; ++c)
9566 const char *prefix = length ? " or " : "expected ";
9568 strcpy (buffer + length, prefix);
9569 length += strlen (prefix);
9570 strcpy (buffer + length, omp_clause_code_name[c]);
9571 length += strlen (omp_clause_code_name[c]);
9574 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9575 buffer, omp_clause_code_name[TREE_CODE (node)],
9576 function, trim_filename (file), line);
9580 #undef DEFTREESTRUCT
9581 #define DEFTREESTRUCT(VAL, NAME) NAME,
9583 static const char *ts_enum_names[] = {
9584 #include "treestruct.def"
9586 #undef DEFTREESTRUCT
9588 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9590 /* Similar to tree_class_check_failed, except that we check for
9591 whether CODE contains the tree structure identified by EN. */
9593 void
9594 tree_contains_struct_check_failed (const_tree node,
9595 const enum tree_node_structure_enum en,
9596 const char *file, int line,
9597 const char *function)
9599 internal_error
9600 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9601 TS_ENUM_NAME (en),
9602 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9606 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9607 (dynamically sized) vector. */
9609 void
9610 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9611 const char *function)
9613 internal_error
9614 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9615 idx + 1, len, function, trim_filename (file), line);
9618 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9619 (dynamically sized) vector. */
9621 void
9622 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9623 const char *function)
9625 internal_error
9626 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9627 idx + 1, len, function, trim_filename (file), line);
9630 /* Similar to above, except that the check is for the bounds of the operand
9631 vector of an expression node EXP. */
9633 void
9634 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9635 int line, const char *function)
9637 enum tree_code code = TREE_CODE (exp);
9638 internal_error
9639 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9640 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9641 function, trim_filename (file), line);
9644 /* Similar to above, except that the check is for the number of
9645 operands of an OMP_CLAUSE node. */
9647 void
9648 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9649 int line, const char *function)
9651 internal_error
9652 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9653 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9654 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9655 trim_filename (file), line);
9657 #endif /* ENABLE_TREE_CHECKING */
9659 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9660 and mapped to the machine mode MODE. Initialize its fields and build
9661 the information necessary for debugging output. */
9663 static tree
9664 make_vector_type (tree innertype, int nunits, machine_mode mode)
9666 tree t;
9667 inchash::hash hstate;
9669 t = make_node (VECTOR_TYPE);
9670 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
9671 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9672 SET_TYPE_MODE (t, mode);
9674 if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
9675 SET_TYPE_STRUCTURAL_EQUALITY (t);
9676 else if (TYPE_CANONICAL (innertype) != innertype
9677 || mode != VOIDmode)
9678 TYPE_CANONICAL (t)
9679 = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
9681 layout_type (t);
9683 hstate.add_wide_int (VECTOR_TYPE);
9684 hstate.add_wide_int (nunits);
9685 hstate.add_wide_int (mode);
9686 hstate.add_object (TYPE_HASH (TREE_TYPE (t)));
9687 t = type_hash_canon (hstate.end (), t);
9689 /* We have built a main variant, based on the main variant of the
9690 inner type. Use it to build the variant we return. */
9691 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9692 && TREE_TYPE (t) != innertype)
9693 return build_type_attribute_qual_variant (t,
9694 TYPE_ATTRIBUTES (innertype),
9695 TYPE_QUALS (innertype));
9697 return t;
9700 static tree
9701 make_or_reuse_type (unsigned size, int unsignedp)
9703 int i;
9705 if (size == INT_TYPE_SIZE)
9706 return unsignedp ? unsigned_type_node : integer_type_node;
9707 if (size == CHAR_TYPE_SIZE)
9708 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9709 if (size == SHORT_TYPE_SIZE)
9710 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9711 if (size == LONG_TYPE_SIZE)
9712 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9713 if (size == LONG_LONG_TYPE_SIZE)
9714 return (unsignedp ? long_long_unsigned_type_node
9715 : long_long_integer_type_node);
9717 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9718 if (size == int_n_data[i].bitsize
9719 && int_n_enabled_p[i])
9720 return (unsignedp ? int_n_trees[i].unsigned_type
9721 : int_n_trees[i].signed_type);
9723 if (unsignedp)
9724 return make_unsigned_type (size);
9725 else
9726 return make_signed_type (size);
9729 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9731 static tree
9732 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9734 if (satp)
9736 if (size == SHORT_FRACT_TYPE_SIZE)
9737 return unsignedp ? sat_unsigned_short_fract_type_node
9738 : sat_short_fract_type_node;
9739 if (size == FRACT_TYPE_SIZE)
9740 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9741 if (size == LONG_FRACT_TYPE_SIZE)
9742 return unsignedp ? sat_unsigned_long_fract_type_node
9743 : sat_long_fract_type_node;
9744 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9745 return unsignedp ? sat_unsigned_long_long_fract_type_node
9746 : sat_long_long_fract_type_node;
9748 else
9750 if (size == SHORT_FRACT_TYPE_SIZE)
9751 return unsignedp ? unsigned_short_fract_type_node
9752 : short_fract_type_node;
9753 if (size == FRACT_TYPE_SIZE)
9754 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9755 if (size == LONG_FRACT_TYPE_SIZE)
9756 return unsignedp ? unsigned_long_fract_type_node
9757 : long_fract_type_node;
9758 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9759 return unsignedp ? unsigned_long_long_fract_type_node
9760 : long_long_fract_type_node;
9763 return make_fract_type (size, unsignedp, satp);
9766 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9768 static tree
9769 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9771 if (satp)
9773 if (size == SHORT_ACCUM_TYPE_SIZE)
9774 return unsignedp ? sat_unsigned_short_accum_type_node
9775 : sat_short_accum_type_node;
9776 if (size == ACCUM_TYPE_SIZE)
9777 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9778 if (size == LONG_ACCUM_TYPE_SIZE)
9779 return unsignedp ? sat_unsigned_long_accum_type_node
9780 : sat_long_accum_type_node;
9781 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9782 return unsignedp ? sat_unsigned_long_long_accum_type_node
9783 : sat_long_long_accum_type_node;
9785 else
9787 if (size == SHORT_ACCUM_TYPE_SIZE)
9788 return unsignedp ? unsigned_short_accum_type_node
9789 : short_accum_type_node;
9790 if (size == ACCUM_TYPE_SIZE)
9791 return unsignedp ? unsigned_accum_type_node : accum_type_node;
9792 if (size == LONG_ACCUM_TYPE_SIZE)
9793 return unsignedp ? unsigned_long_accum_type_node
9794 : long_accum_type_node;
9795 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9796 return unsignedp ? unsigned_long_long_accum_type_node
9797 : long_long_accum_type_node;
9800 return make_accum_type (size, unsignedp, satp);
9804 /* Create an atomic variant node for TYPE. This routine is called
9805 during initialization of data types to create the 5 basic atomic
9806 types. The generic build_variant_type function requires these to
9807 already be set up in order to function properly, so cannot be
9808 called from there. If ALIGN is non-zero, then ensure alignment is
9809 overridden to this value. */
9811 static tree
9812 build_atomic_base (tree type, unsigned int align)
9814 tree t;
9816 /* Make sure its not already registered. */
9817 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
9818 return t;
9820 t = build_variant_type_copy (type);
9821 set_type_quals (t, TYPE_QUAL_ATOMIC);
9823 if (align)
9824 TYPE_ALIGN (t) = align;
9826 return t;
9829 /* Create nodes for all integer types (and error_mark_node) using the sizes
9830 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9831 SHORT_DOUBLE specifies whether double should be of the same precision
9832 as float. */
9834 void
9835 build_common_tree_nodes (bool signed_char, bool short_double)
9837 int i;
9839 error_mark_node = make_node (ERROR_MARK);
9840 TREE_TYPE (error_mark_node) = error_mark_node;
9842 initialize_sizetypes ();
9844 /* Define both `signed char' and `unsigned char'. */
9845 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9846 TYPE_STRING_FLAG (signed_char_type_node) = 1;
9847 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9848 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9850 /* Define `char', which is like either `signed char' or `unsigned char'
9851 but not the same as either. */
9852 char_type_node
9853 = (signed_char
9854 ? make_signed_type (CHAR_TYPE_SIZE)
9855 : make_unsigned_type (CHAR_TYPE_SIZE));
9856 TYPE_STRING_FLAG (char_type_node) = 1;
9858 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9859 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9860 integer_type_node = make_signed_type (INT_TYPE_SIZE);
9861 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9862 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9863 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9864 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9865 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9867 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9869 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
9870 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
9871 TYPE_SIZE (int_n_trees[i].signed_type) = bitsize_int (int_n_data[i].bitsize);
9872 TYPE_SIZE (int_n_trees[i].unsigned_type) = bitsize_int (int_n_data[i].bitsize);
9874 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
9875 && int_n_enabled_p[i])
9877 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
9878 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
9882 /* Define a boolean type. This type only represents boolean values but
9883 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9884 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9885 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9886 TYPE_PRECISION (boolean_type_node) = 1;
9887 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9889 /* Define what type to use for size_t. */
9890 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9891 size_type_node = unsigned_type_node;
9892 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9893 size_type_node = long_unsigned_type_node;
9894 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9895 size_type_node = long_long_unsigned_type_node;
9896 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9897 size_type_node = short_unsigned_type_node;
9898 else
9900 int i;
9902 size_type_node = NULL_TREE;
9903 for (i = 0; i < NUM_INT_N_ENTS; i++)
9904 if (int_n_enabled_p[i])
9906 char name[50];
9907 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
9909 if (strcmp (name, SIZE_TYPE) == 0)
9911 size_type_node = int_n_trees[i].unsigned_type;
9914 if (size_type_node == NULL_TREE)
9915 gcc_unreachable ();
9918 /* Fill in the rest of the sized types. Reuse existing type nodes
9919 when possible. */
9920 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9921 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9922 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9923 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9924 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9926 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9927 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9928 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9929 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9930 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9932 /* Don't call build_qualified type for atomics. That routine does
9933 special processing for atomics, and until they are initialized
9934 it's better not to make that call.
9936 Check to see if there is a target override for atomic types. */
9938 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
9939 targetm.atomic_align_for_mode (QImode));
9940 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
9941 targetm.atomic_align_for_mode (HImode));
9942 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
9943 targetm.atomic_align_for_mode (SImode));
9944 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
9945 targetm.atomic_align_for_mode (DImode));
9946 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
9947 targetm.atomic_align_for_mode (TImode));
9949 access_public_node = get_identifier ("public");
9950 access_protected_node = get_identifier ("protected");
9951 access_private_node = get_identifier ("private");
9953 /* Define these next since types below may used them. */
9954 integer_zero_node = build_int_cst (integer_type_node, 0);
9955 integer_one_node = build_int_cst (integer_type_node, 1);
9956 integer_three_node = build_int_cst (integer_type_node, 3);
9957 integer_minus_one_node = build_int_cst (integer_type_node, -1);
9959 size_zero_node = size_int (0);
9960 size_one_node = size_int (1);
9961 bitsize_zero_node = bitsize_int (0);
9962 bitsize_one_node = bitsize_int (1);
9963 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9965 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9966 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9968 void_type_node = make_node (VOID_TYPE);
9969 layout_type (void_type_node);
9971 pointer_bounds_type_node = targetm.chkp_bound_type ();
9973 /* We are not going to have real types in C with less than byte alignment,
9974 so we might as well not have any types that claim to have it. */
9975 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
9976 TYPE_USER_ALIGN (void_type_node) = 0;
9978 void_node = make_node (VOID_CST);
9979 TREE_TYPE (void_node) = void_type_node;
9981 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9982 layout_type (TREE_TYPE (null_pointer_node));
9984 ptr_type_node = build_pointer_type (void_type_node);
9985 const_ptr_type_node
9986 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9987 fileptr_type_node = ptr_type_node;
9989 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
9991 float_type_node = make_node (REAL_TYPE);
9992 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9993 layout_type (float_type_node);
9995 double_type_node = make_node (REAL_TYPE);
9996 if (short_double)
9997 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
9998 else
9999 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10000 layout_type (double_type_node);
10002 long_double_type_node = make_node (REAL_TYPE);
10003 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10004 layout_type (long_double_type_node);
10006 float_ptr_type_node = build_pointer_type (float_type_node);
10007 double_ptr_type_node = build_pointer_type (double_type_node);
10008 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10009 integer_ptr_type_node = build_pointer_type (integer_type_node);
10011 /* Fixed size integer types. */
10012 uint16_type_node = make_or_reuse_type (16, 1);
10013 uint32_type_node = make_or_reuse_type (32, 1);
10014 uint64_type_node = make_or_reuse_type (64, 1);
10016 /* Decimal float types. */
10017 dfloat32_type_node = make_node (REAL_TYPE);
10018 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10019 layout_type (dfloat32_type_node);
10020 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10021 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
10023 dfloat64_type_node = make_node (REAL_TYPE);
10024 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10025 layout_type (dfloat64_type_node);
10026 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10027 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
10029 dfloat128_type_node = make_node (REAL_TYPE);
10030 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10031 layout_type (dfloat128_type_node);
10032 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10033 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
10035 complex_integer_type_node = build_complex_type (integer_type_node);
10036 complex_float_type_node = build_complex_type (float_type_node);
10037 complex_double_type_node = build_complex_type (double_type_node);
10038 complex_long_double_type_node = build_complex_type (long_double_type_node);
10040 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10041 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10042 sat_ ## KIND ## _type_node = \
10043 make_sat_signed_ ## KIND ## _type (SIZE); \
10044 sat_unsigned_ ## KIND ## _type_node = \
10045 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10046 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10047 unsigned_ ## KIND ## _type_node = \
10048 make_unsigned_ ## KIND ## _type (SIZE);
10050 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10051 sat_ ## WIDTH ## KIND ## _type_node = \
10052 make_sat_signed_ ## KIND ## _type (SIZE); \
10053 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10054 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10055 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10056 unsigned_ ## WIDTH ## KIND ## _type_node = \
10057 make_unsigned_ ## KIND ## _type (SIZE);
10059 /* Make fixed-point type nodes based on four different widths. */
10060 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10061 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10062 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10063 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10064 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10066 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10067 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10068 NAME ## _type_node = \
10069 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10070 u ## NAME ## _type_node = \
10071 make_or_reuse_unsigned_ ## KIND ## _type \
10072 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10073 sat_ ## NAME ## _type_node = \
10074 make_or_reuse_sat_signed_ ## KIND ## _type \
10075 (GET_MODE_BITSIZE (MODE ## mode)); \
10076 sat_u ## NAME ## _type_node = \
10077 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10078 (GET_MODE_BITSIZE (U ## MODE ## mode));
10080 /* Fixed-point type and mode nodes. */
10081 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10082 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10083 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10084 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10085 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10086 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10087 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10088 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10089 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10090 MAKE_FIXED_MODE_NODE (accum, da, DA)
10091 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10094 tree t = targetm.build_builtin_va_list ();
10096 /* Many back-ends define record types without setting TYPE_NAME.
10097 If we copied the record type here, we'd keep the original
10098 record type without a name. This breaks name mangling. So,
10099 don't copy record types and let c_common_nodes_and_builtins()
10100 declare the type to be __builtin_va_list. */
10101 if (TREE_CODE (t) != RECORD_TYPE)
10102 t = build_variant_type_copy (t);
10104 va_list_type_node = t;
10108 /* Modify DECL for given flags.
10109 TM_PURE attribute is set only on types, so the function will modify
10110 DECL's type when ECF_TM_PURE is used. */
10112 void
10113 set_call_expr_flags (tree decl, int flags)
10115 if (flags & ECF_NOTHROW)
10116 TREE_NOTHROW (decl) = 1;
10117 if (flags & ECF_CONST)
10118 TREE_READONLY (decl) = 1;
10119 if (flags & ECF_PURE)
10120 DECL_PURE_P (decl) = 1;
10121 if (flags & ECF_LOOPING_CONST_OR_PURE)
10122 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10123 if (flags & ECF_NOVOPS)
10124 DECL_IS_NOVOPS (decl) = 1;
10125 if (flags & ECF_NORETURN)
10126 TREE_THIS_VOLATILE (decl) = 1;
10127 if (flags & ECF_MALLOC)
10128 DECL_IS_MALLOC (decl) = 1;
10129 if (flags & ECF_RETURNS_TWICE)
10130 DECL_IS_RETURNS_TWICE (decl) = 1;
10131 if (flags & ECF_LEAF)
10132 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10133 NULL, DECL_ATTRIBUTES (decl));
10134 if ((flags & ECF_TM_PURE) && flag_tm)
10135 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10136 /* Looping const or pure is implied by noreturn.
10137 There is currently no way to declare looping const or looping pure alone. */
10138 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10139 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10143 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10145 static void
10146 local_define_builtin (const char *name, tree type, enum built_in_function code,
10147 const char *library_name, int ecf_flags)
10149 tree decl;
10151 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10152 library_name, NULL_TREE);
10153 set_call_expr_flags (decl, ecf_flags);
10155 set_builtin_decl (code, decl, true);
10158 /* Call this function after instantiating all builtins that the language
10159 front end cares about. This will build the rest of the builtins
10160 and internal functions that are relied upon by the tree optimizers and
10161 the middle-end. */
10163 void
10164 build_common_builtin_nodes (void)
10166 tree tmp, ftype;
10167 int ecf_flags;
10169 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10171 ftype = build_function_type (void_type_node, void_list_node);
10172 local_define_builtin ("__builtin_unreachable", ftype, BUILT_IN_UNREACHABLE,
10173 "__builtin_unreachable",
10174 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10175 | ECF_CONST);
10178 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10179 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10181 ftype = build_function_type_list (ptr_type_node,
10182 ptr_type_node, const_ptr_type_node,
10183 size_type_node, NULL_TREE);
10185 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10186 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10187 "memcpy", ECF_NOTHROW | ECF_LEAF);
10188 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10189 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10190 "memmove", ECF_NOTHROW | ECF_LEAF);
10193 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10195 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10196 const_ptr_type_node, size_type_node,
10197 NULL_TREE);
10198 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10199 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10202 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10204 ftype = build_function_type_list (ptr_type_node,
10205 ptr_type_node, integer_type_node,
10206 size_type_node, NULL_TREE);
10207 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10208 "memset", ECF_NOTHROW | ECF_LEAF);
10211 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10213 ftype = build_function_type_list (ptr_type_node,
10214 size_type_node, NULL_TREE);
10215 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10216 "alloca", ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
10219 ftype = build_function_type_list (ptr_type_node, size_type_node,
10220 size_type_node, NULL_TREE);
10221 local_define_builtin ("__builtin_alloca_with_align", ftype,
10222 BUILT_IN_ALLOCA_WITH_ALIGN,
10223 "__builtin_alloca_with_align",
10224 ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
10226 /* If we're checking the stack, `alloca' can throw. */
10227 if (flag_stack_check)
10229 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA)) = 0;
10230 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN)) = 0;
10233 ftype = build_function_type_list (void_type_node,
10234 ptr_type_node, ptr_type_node,
10235 ptr_type_node, NULL_TREE);
10236 local_define_builtin ("__builtin_init_trampoline", ftype,
10237 BUILT_IN_INIT_TRAMPOLINE,
10238 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10239 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10240 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10241 "__builtin_init_heap_trampoline",
10242 ECF_NOTHROW | ECF_LEAF);
10244 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10245 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10246 BUILT_IN_ADJUST_TRAMPOLINE,
10247 "__builtin_adjust_trampoline",
10248 ECF_CONST | ECF_NOTHROW);
10250 ftype = build_function_type_list (void_type_node,
10251 ptr_type_node, ptr_type_node, NULL_TREE);
10252 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10253 BUILT_IN_NONLOCAL_GOTO,
10254 "__builtin_nonlocal_goto",
10255 ECF_NORETURN | ECF_NOTHROW);
10257 ftype = build_function_type_list (void_type_node,
10258 ptr_type_node, ptr_type_node, NULL_TREE);
10259 local_define_builtin ("__builtin_setjmp_setup", ftype,
10260 BUILT_IN_SETJMP_SETUP,
10261 "__builtin_setjmp_setup", ECF_NOTHROW);
10263 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10264 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10265 BUILT_IN_SETJMP_RECEIVER,
10266 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10268 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10269 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10270 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10272 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10273 local_define_builtin ("__builtin_stack_restore", ftype,
10274 BUILT_IN_STACK_RESTORE,
10275 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10277 /* If there's a possibility that we might use the ARM EABI, build the
10278 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
10279 if (targetm.arm_eabi_unwinder)
10281 ftype = build_function_type_list (void_type_node, NULL_TREE);
10282 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10283 BUILT_IN_CXA_END_CLEANUP,
10284 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10287 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10288 local_define_builtin ("__builtin_unwind_resume", ftype,
10289 BUILT_IN_UNWIND_RESUME,
10290 ((targetm_common.except_unwind_info (&global_options)
10291 == UI_SJLJ)
10292 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10293 ECF_NORETURN);
10295 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10297 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10298 NULL_TREE);
10299 local_define_builtin ("__builtin_return_address", ftype,
10300 BUILT_IN_RETURN_ADDRESS,
10301 "__builtin_return_address",
10302 ECF_NOTHROW);
10305 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10306 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10308 ftype = build_function_type_list (void_type_node, ptr_type_node,
10309 ptr_type_node, NULL_TREE);
10310 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10311 local_define_builtin ("__cyg_profile_func_enter", ftype,
10312 BUILT_IN_PROFILE_FUNC_ENTER,
10313 "__cyg_profile_func_enter", 0);
10314 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10315 local_define_builtin ("__cyg_profile_func_exit", ftype,
10316 BUILT_IN_PROFILE_FUNC_EXIT,
10317 "__cyg_profile_func_exit", 0);
10320 /* The exception object and filter values from the runtime. The argument
10321 must be zero before exception lowering, i.e. from the front end. After
10322 exception lowering, it will be the region number for the exception
10323 landing pad. These functions are PURE instead of CONST to prevent
10324 them from being hoisted past the exception edge that will initialize
10325 its value in the landing pad. */
10326 ftype = build_function_type_list (ptr_type_node,
10327 integer_type_node, NULL_TREE);
10328 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10329 /* Only use TM_PURE if we have TM language support. */
10330 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10331 ecf_flags |= ECF_TM_PURE;
10332 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10333 "__builtin_eh_pointer", ecf_flags);
10335 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10336 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10337 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10338 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10340 ftype = build_function_type_list (void_type_node,
10341 integer_type_node, integer_type_node,
10342 NULL_TREE);
10343 local_define_builtin ("__builtin_eh_copy_values", ftype,
10344 BUILT_IN_EH_COPY_VALUES,
10345 "__builtin_eh_copy_values", ECF_NOTHROW);
10347 /* Complex multiplication and division. These are handled as builtins
10348 rather than optabs because emit_library_call_value doesn't support
10349 complex. Further, we can do slightly better with folding these
10350 beasties if the real and complex parts of the arguments are separate. */
10352 int mode;
10354 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10356 char mode_name_buf[4], *q;
10357 const char *p;
10358 enum built_in_function mcode, dcode;
10359 tree type, inner_type;
10360 const char *prefix = "__";
10362 if (targetm.libfunc_gnu_prefix)
10363 prefix = "__gnu_";
10365 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10366 if (type == NULL)
10367 continue;
10368 inner_type = TREE_TYPE (type);
10370 ftype = build_function_type_list (type, inner_type, inner_type,
10371 inner_type, inner_type, NULL_TREE);
10373 mcode = ((enum built_in_function)
10374 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10375 dcode = ((enum built_in_function)
10376 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10378 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10379 *q = TOLOWER (*p);
10380 *q = '\0';
10382 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10383 NULL);
10384 local_define_builtin (built_in_names[mcode], ftype, mcode,
10385 built_in_names[mcode],
10386 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10388 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10389 NULL);
10390 local_define_builtin (built_in_names[dcode], ftype, dcode,
10391 built_in_names[dcode],
10392 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10396 init_internal_fns ();
10399 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10400 better way.
10402 If we requested a pointer to a vector, build up the pointers that
10403 we stripped off while looking for the inner type. Similarly for
10404 return values from functions.
10406 The argument TYPE is the top of the chain, and BOTTOM is the
10407 new type which we will point to. */
10409 tree
10410 reconstruct_complex_type (tree type, tree bottom)
10412 tree inner, outer;
10414 if (TREE_CODE (type) == POINTER_TYPE)
10416 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10417 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10418 TYPE_REF_CAN_ALIAS_ALL (type));
10420 else if (TREE_CODE (type) == REFERENCE_TYPE)
10422 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10423 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10424 TYPE_REF_CAN_ALIAS_ALL (type));
10426 else if (TREE_CODE (type) == ARRAY_TYPE)
10428 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10429 outer = build_array_type (inner, TYPE_DOMAIN (type));
10431 else if (TREE_CODE (type) == FUNCTION_TYPE)
10433 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10434 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10436 else if (TREE_CODE (type) == METHOD_TYPE)
10438 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10439 /* The build_method_type_directly() routine prepends 'this' to argument list,
10440 so we must compensate by getting rid of it. */
10441 outer
10442 = build_method_type_directly
10443 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10444 inner,
10445 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10447 else if (TREE_CODE (type) == OFFSET_TYPE)
10449 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10450 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10452 else
10453 return bottom;
10455 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10456 TYPE_QUALS (type));
10459 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10460 the inner type. */
10461 tree
10462 build_vector_type_for_mode (tree innertype, machine_mode mode)
10464 int nunits;
10466 switch (GET_MODE_CLASS (mode))
10468 case MODE_VECTOR_INT:
10469 case MODE_VECTOR_FLOAT:
10470 case MODE_VECTOR_FRACT:
10471 case MODE_VECTOR_UFRACT:
10472 case MODE_VECTOR_ACCUM:
10473 case MODE_VECTOR_UACCUM:
10474 nunits = GET_MODE_NUNITS (mode);
10475 break;
10477 case MODE_INT:
10478 /* Check that there are no leftover bits. */
10479 gcc_assert (GET_MODE_BITSIZE (mode)
10480 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10482 nunits = GET_MODE_BITSIZE (mode)
10483 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10484 break;
10486 default:
10487 gcc_unreachable ();
10490 return make_vector_type (innertype, nunits, mode);
10493 /* Similarly, but takes the inner type and number of units, which must be
10494 a power of two. */
10496 tree
10497 build_vector_type (tree innertype, int nunits)
10499 return make_vector_type (innertype, nunits, VOIDmode);
10502 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10504 tree
10505 build_opaque_vector_type (tree innertype, int nunits)
10507 tree t = make_vector_type (innertype, nunits, VOIDmode);
10508 tree cand;
10509 /* We always build the non-opaque variant before the opaque one,
10510 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10511 cand = TYPE_NEXT_VARIANT (t);
10512 if (cand
10513 && TYPE_VECTOR_OPAQUE (cand)
10514 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10515 return cand;
10516 /* Othewise build a variant type and make sure to queue it after
10517 the non-opaque type. */
10518 cand = build_distinct_type_copy (t);
10519 TYPE_VECTOR_OPAQUE (cand) = true;
10520 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10521 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10522 TYPE_NEXT_VARIANT (t) = cand;
10523 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10524 return cand;
10528 /* Given an initializer INIT, return TRUE if INIT is zero or some
10529 aggregate of zeros. Otherwise return FALSE. */
10530 bool
10531 initializer_zerop (const_tree init)
10533 tree elt;
10535 STRIP_NOPS (init);
10537 switch (TREE_CODE (init))
10539 case INTEGER_CST:
10540 return integer_zerop (init);
10542 case REAL_CST:
10543 /* ??? Note that this is not correct for C4X float formats. There,
10544 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10545 negative exponent. */
10546 return real_zerop (init)
10547 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10549 case FIXED_CST:
10550 return fixed_zerop (init);
10552 case COMPLEX_CST:
10553 return integer_zerop (init)
10554 || (real_zerop (init)
10555 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10556 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10558 case VECTOR_CST:
10560 unsigned i;
10561 for (i = 0; i < VECTOR_CST_NELTS (init); ++i)
10562 if (!initializer_zerop (VECTOR_CST_ELT (init, i)))
10563 return false;
10564 return true;
10567 case CONSTRUCTOR:
10569 unsigned HOST_WIDE_INT idx;
10571 if (TREE_CLOBBER_P (init))
10572 return false;
10573 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10574 if (!initializer_zerop (elt))
10575 return false;
10576 return true;
10579 case STRING_CST:
10581 int i;
10583 /* We need to loop through all elements to handle cases like
10584 "\0" and "\0foobar". */
10585 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10586 if (TREE_STRING_POINTER (init)[i] != '\0')
10587 return false;
10589 return true;
10592 default:
10593 return false;
10597 /* Check if vector VEC consists of all the equal elements and
10598 that the number of elements corresponds to the type of VEC.
10599 The function returns first element of the vector
10600 or NULL_TREE if the vector is not uniform. */
10601 tree
10602 uniform_vector_p (const_tree vec)
10604 tree first, t;
10605 unsigned i;
10607 if (vec == NULL_TREE)
10608 return NULL_TREE;
10610 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10612 if (TREE_CODE (vec) == VECTOR_CST)
10614 first = VECTOR_CST_ELT (vec, 0);
10615 for (i = 1; i < VECTOR_CST_NELTS (vec); ++i)
10616 if (!operand_equal_p (first, VECTOR_CST_ELT (vec, i), 0))
10617 return NULL_TREE;
10619 return first;
10622 else if (TREE_CODE (vec) == CONSTRUCTOR)
10624 first = error_mark_node;
10626 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10628 if (i == 0)
10630 first = t;
10631 continue;
10633 if (!operand_equal_p (first, t, 0))
10634 return NULL_TREE;
10636 if (i != TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)))
10637 return NULL_TREE;
10639 return first;
10642 return NULL_TREE;
10645 /* Build an empty statement at location LOC. */
10647 tree
10648 build_empty_stmt (location_t loc)
10650 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10651 SET_EXPR_LOCATION (t, loc);
10652 return t;
10656 /* Build an OpenMP clause with code CODE. LOC is the location of the
10657 clause. */
10659 tree
10660 build_omp_clause (location_t loc, enum omp_clause_code code)
10662 tree t;
10663 int size, length;
10665 length = omp_clause_num_ops[code];
10666 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10668 record_node_allocation_statistics (OMP_CLAUSE, size);
10670 t = (tree) ggc_internal_alloc (size);
10671 memset (t, 0, size);
10672 TREE_SET_CODE (t, OMP_CLAUSE);
10673 OMP_CLAUSE_SET_CODE (t, code);
10674 OMP_CLAUSE_LOCATION (t) = loc;
10676 return t;
10679 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10680 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10681 Except for the CODE and operand count field, other storage for the
10682 object is initialized to zeros. */
10684 tree
10685 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
10687 tree t;
10688 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10690 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10691 gcc_assert (len >= 1);
10693 record_node_allocation_statistics (code, length);
10695 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10697 TREE_SET_CODE (t, code);
10699 /* Can't use TREE_OPERAND to store the length because if checking is
10700 enabled, it will try to check the length before we store it. :-P */
10701 t->exp.operands[0] = build_int_cst (sizetype, len);
10703 return t;
10706 /* Helper function for build_call_* functions; build a CALL_EXPR with
10707 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10708 the argument slots. */
10710 static tree
10711 build_call_1 (tree return_type, tree fn, int nargs)
10713 tree t;
10715 t = build_vl_exp (CALL_EXPR, nargs + 3);
10716 TREE_TYPE (t) = return_type;
10717 CALL_EXPR_FN (t) = fn;
10718 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10720 return t;
10723 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10724 FN and a null static chain slot. NARGS is the number of call arguments
10725 which are specified as "..." arguments. */
10727 tree
10728 build_call_nary (tree return_type, tree fn, int nargs, ...)
10730 tree ret;
10731 va_list args;
10732 va_start (args, nargs);
10733 ret = build_call_valist (return_type, fn, nargs, args);
10734 va_end (args);
10735 return ret;
10738 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10739 FN and a null static chain slot. NARGS is the number of call arguments
10740 which are specified as a va_list ARGS. */
10742 tree
10743 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
10745 tree t;
10746 int i;
10748 t = build_call_1 (return_type, fn, nargs);
10749 for (i = 0; i < nargs; i++)
10750 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
10751 process_call_operands (t);
10752 return t;
10755 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10756 FN and a null static chain slot. NARGS is the number of call arguments
10757 which are specified as a tree array ARGS. */
10759 tree
10760 build_call_array_loc (location_t loc, tree return_type, tree fn,
10761 int nargs, const tree *args)
10763 tree t;
10764 int i;
10766 t = build_call_1 (return_type, fn, nargs);
10767 for (i = 0; i < nargs; i++)
10768 CALL_EXPR_ARG (t, i) = args[i];
10769 process_call_operands (t);
10770 SET_EXPR_LOCATION (t, loc);
10771 return t;
10774 /* Like build_call_array, but takes a vec. */
10776 tree
10777 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
10779 tree ret, t;
10780 unsigned int ix;
10782 ret = build_call_1 (return_type, fn, vec_safe_length (args));
10783 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
10784 CALL_EXPR_ARG (ret, ix) = t;
10785 process_call_operands (ret);
10786 return ret;
10789 /* Conveniently construct a function call expression. FNDECL names the
10790 function to be called and N arguments are passed in the array
10791 ARGARRAY. */
10793 tree
10794 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
10796 tree fntype = TREE_TYPE (fndecl);
10797 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
10799 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
10802 /* Conveniently construct a function call expression. FNDECL names the
10803 function to be called and the arguments are passed in the vector
10804 VEC. */
10806 tree
10807 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
10809 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
10810 vec_safe_address (vec));
10814 /* Conveniently construct a function call expression. FNDECL names the
10815 function to be called, N is the number of arguments, and the "..."
10816 parameters are the argument expressions. */
10818 tree
10819 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
10821 va_list ap;
10822 tree *argarray = XALLOCAVEC (tree, n);
10823 int i;
10825 va_start (ap, n);
10826 for (i = 0; i < n; i++)
10827 argarray[i] = va_arg (ap, tree);
10828 va_end (ap);
10829 return build_call_expr_loc_array (loc, fndecl, n, argarray);
10832 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10833 varargs macros aren't supported by all bootstrap compilers. */
10835 tree
10836 build_call_expr (tree fndecl, int n, ...)
10838 va_list ap;
10839 tree *argarray = XALLOCAVEC (tree, n);
10840 int i;
10842 va_start (ap, n);
10843 for (i = 0; i < n; i++)
10844 argarray[i] = va_arg (ap, tree);
10845 va_end (ap);
10846 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
10849 /* Build internal call expression. This is just like CALL_EXPR, except
10850 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10851 internal function. */
10853 tree
10854 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
10855 tree type, int n, ...)
10857 va_list ap;
10858 int i;
10860 tree fn = build_call_1 (type, NULL_TREE, n);
10861 va_start (ap, n);
10862 for (i = 0; i < n; i++)
10863 CALL_EXPR_ARG (fn, i) = va_arg (ap, tree);
10864 va_end (ap);
10865 SET_EXPR_LOCATION (fn, loc);
10866 CALL_EXPR_IFN (fn) = ifn;
10867 return fn;
10870 /* Create a new constant string literal and return a char* pointer to it.
10871 The STRING_CST value is the LEN characters at STR. */
10872 tree
10873 build_string_literal (int len, const char *str)
10875 tree t, elem, index, type;
10877 t = build_string (len, str);
10878 elem = build_type_variant (char_type_node, 1, 0);
10879 index = build_index_type (size_int (len - 1));
10880 type = build_array_type (elem, index);
10881 TREE_TYPE (t) = type;
10882 TREE_CONSTANT (t) = 1;
10883 TREE_READONLY (t) = 1;
10884 TREE_STATIC (t) = 1;
10886 type = build_pointer_type (elem);
10887 t = build1 (ADDR_EXPR, type,
10888 build4 (ARRAY_REF, elem,
10889 t, integer_zero_node, NULL_TREE, NULL_TREE));
10890 return t;
10895 /* Return true if T (assumed to be a DECL) must be assigned a memory
10896 location. */
10898 bool
10899 needs_to_live_in_memory (const_tree t)
10901 return (TREE_ADDRESSABLE (t)
10902 || is_global_var (t)
10903 || (TREE_CODE (t) == RESULT_DECL
10904 && !DECL_BY_REFERENCE (t)
10905 && aggregate_value_p (t, current_function_decl)));
10908 /* Return value of a constant X and sign-extend it. */
10910 HOST_WIDE_INT
10911 int_cst_value (const_tree x)
10913 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
10914 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
10916 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10917 gcc_assert (cst_and_fits_in_hwi (x));
10919 if (bits < HOST_BITS_PER_WIDE_INT)
10921 bool negative = ((val >> (bits - 1)) & 1) != 0;
10922 if (negative)
10923 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
10924 else
10925 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
10928 return val;
10931 /* If TYPE is an integral or pointer type, return an integer type with
10932 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10933 if TYPE is already an integer type of signedness UNSIGNEDP. */
10935 tree
10936 signed_or_unsigned_type_for (int unsignedp, tree type)
10938 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
10939 return type;
10941 if (TREE_CODE (type) == VECTOR_TYPE)
10943 tree inner = TREE_TYPE (type);
10944 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
10945 if (!inner2)
10946 return NULL_TREE;
10947 if (inner == inner2)
10948 return type;
10949 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
10952 if (!INTEGRAL_TYPE_P (type)
10953 && !POINTER_TYPE_P (type)
10954 && TREE_CODE (type) != OFFSET_TYPE)
10955 return NULL_TREE;
10957 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
10960 /* If TYPE is an integral or pointer type, return an integer type with
10961 the same precision which is unsigned, or itself if TYPE is already an
10962 unsigned integer type. */
10964 tree
10965 unsigned_type_for (tree type)
10967 return signed_or_unsigned_type_for (1, type);
10970 /* If TYPE is an integral or pointer type, return an integer type with
10971 the same precision which is signed, or itself if TYPE is already a
10972 signed integer type. */
10974 tree
10975 signed_type_for (tree type)
10977 return signed_or_unsigned_type_for (0, type);
10980 /* If TYPE is a vector type, return a signed integer vector type with the
10981 same width and number of subparts. Otherwise return boolean_type_node. */
10983 tree
10984 truth_type_for (tree type)
10986 if (TREE_CODE (type) == VECTOR_TYPE)
10988 tree elem = lang_hooks.types.type_for_size
10989 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))), 0);
10990 return build_opaque_vector_type (elem, TYPE_VECTOR_SUBPARTS (type));
10992 else
10993 return boolean_type_node;
10996 /* Returns the largest value obtainable by casting something in INNER type to
10997 OUTER type. */
10999 tree
11000 upper_bound_in_type (tree outer, tree inner)
11002 unsigned int det = 0;
11003 unsigned oprec = TYPE_PRECISION (outer);
11004 unsigned iprec = TYPE_PRECISION (inner);
11005 unsigned prec;
11007 /* Compute a unique number for every combination. */
11008 det |= (oprec > iprec) ? 4 : 0;
11009 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11010 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11012 /* Determine the exponent to use. */
11013 switch (det)
11015 case 0:
11016 case 1:
11017 /* oprec <= iprec, outer: signed, inner: don't care. */
11018 prec = oprec - 1;
11019 break;
11020 case 2:
11021 case 3:
11022 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11023 prec = oprec;
11024 break;
11025 case 4:
11026 /* oprec > iprec, outer: signed, inner: signed. */
11027 prec = iprec - 1;
11028 break;
11029 case 5:
11030 /* oprec > iprec, outer: signed, inner: unsigned. */
11031 prec = iprec;
11032 break;
11033 case 6:
11034 /* oprec > iprec, outer: unsigned, inner: signed. */
11035 prec = oprec;
11036 break;
11037 case 7:
11038 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11039 prec = iprec;
11040 break;
11041 default:
11042 gcc_unreachable ();
11045 return wide_int_to_tree (outer,
11046 wi::mask (prec, false, TYPE_PRECISION (outer)));
11049 /* Returns the smallest value obtainable by casting something in INNER type to
11050 OUTER type. */
11052 tree
11053 lower_bound_in_type (tree outer, tree inner)
11055 unsigned oprec = TYPE_PRECISION (outer);
11056 unsigned iprec = TYPE_PRECISION (inner);
11058 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11059 and obtain 0. */
11060 if (TYPE_UNSIGNED (outer)
11061 /* If we are widening something of an unsigned type, OUTER type
11062 contains all values of INNER type. In particular, both INNER
11063 and OUTER types have zero in common. */
11064 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11065 return build_int_cst (outer, 0);
11066 else
11068 /* If we are widening a signed type to another signed type, we
11069 want to obtain -2^^(iprec-1). If we are keeping the
11070 precision or narrowing to a signed type, we want to obtain
11071 -2^(oprec-1). */
11072 unsigned prec = oprec > iprec ? iprec : oprec;
11073 return wide_int_to_tree (outer,
11074 wi::mask (prec - 1, true,
11075 TYPE_PRECISION (outer)));
11079 /* Return nonzero if two operands that are suitable for PHI nodes are
11080 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11081 SSA_NAME or invariant. Note that this is strictly an optimization.
11082 That is, callers of this function can directly call operand_equal_p
11083 and get the same result, only slower. */
11086 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11088 if (arg0 == arg1)
11089 return 1;
11090 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11091 return 0;
11092 return operand_equal_p (arg0, arg1, 0);
11095 /* Returns number of zeros at the end of binary representation of X. */
11097 tree
11098 num_ending_zeros (const_tree x)
11100 return build_int_cst (TREE_TYPE (x), wi::ctz (x));
11104 #define WALK_SUBTREE(NODE) \
11105 do \
11107 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11108 if (result) \
11109 return result; \
11111 while (0)
11113 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11114 be walked whenever a type is seen in the tree. Rest of operands and return
11115 value are as for walk_tree. */
11117 static tree
11118 walk_type_fields (tree type, walk_tree_fn func, void *data,
11119 hash_set<tree> *pset, walk_tree_lh lh)
11121 tree result = NULL_TREE;
11123 switch (TREE_CODE (type))
11125 case POINTER_TYPE:
11126 case REFERENCE_TYPE:
11127 case VECTOR_TYPE:
11128 /* We have to worry about mutually recursive pointers. These can't
11129 be written in C. They can in Ada. It's pathological, but
11130 there's an ACATS test (c38102a) that checks it. Deal with this
11131 by checking if we're pointing to another pointer, that one
11132 points to another pointer, that one does too, and we have no htab.
11133 If so, get a hash table. We check three levels deep to avoid
11134 the cost of the hash table if we don't need one. */
11135 if (POINTER_TYPE_P (TREE_TYPE (type))
11136 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11137 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11138 && !pset)
11140 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11141 func, data);
11142 if (result)
11143 return result;
11145 break;
11148 /* ... fall through ... */
11150 case COMPLEX_TYPE:
11151 WALK_SUBTREE (TREE_TYPE (type));
11152 break;
11154 case METHOD_TYPE:
11155 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11157 /* Fall through. */
11159 case FUNCTION_TYPE:
11160 WALK_SUBTREE (TREE_TYPE (type));
11162 tree arg;
11164 /* We never want to walk into default arguments. */
11165 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11166 WALK_SUBTREE (TREE_VALUE (arg));
11168 break;
11170 case ARRAY_TYPE:
11171 /* Don't follow this nodes's type if a pointer for fear that
11172 we'll have infinite recursion. If we have a PSET, then we
11173 need not fear. */
11174 if (pset
11175 || (!POINTER_TYPE_P (TREE_TYPE (type))
11176 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11177 WALK_SUBTREE (TREE_TYPE (type));
11178 WALK_SUBTREE (TYPE_DOMAIN (type));
11179 break;
11181 case OFFSET_TYPE:
11182 WALK_SUBTREE (TREE_TYPE (type));
11183 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11184 break;
11186 default:
11187 break;
11190 return NULL_TREE;
11193 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11194 called with the DATA and the address of each sub-tree. If FUNC returns a
11195 non-NULL value, the traversal is stopped, and the value returned by FUNC
11196 is returned. If PSET is non-NULL it is used to record the nodes visited,
11197 and to avoid visiting a node more than once. */
11199 tree
11200 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11201 hash_set<tree> *pset, walk_tree_lh lh)
11203 enum tree_code code;
11204 int walk_subtrees;
11205 tree result;
11207 #define WALK_SUBTREE_TAIL(NODE) \
11208 do \
11210 tp = & (NODE); \
11211 goto tail_recurse; \
11213 while (0)
11215 tail_recurse:
11216 /* Skip empty subtrees. */
11217 if (!*tp)
11218 return NULL_TREE;
11220 /* Don't walk the same tree twice, if the user has requested
11221 that we avoid doing so. */
11222 if (pset && pset->add (*tp))
11223 return NULL_TREE;
11225 /* Call the function. */
11226 walk_subtrees = 1;
11227 result = (*func) (tp, &walk_subtrees, data);
11229 /* If we found something, return it. */
11230 if (result)
11231 return result;
11233 code = TREE_CODE (*tp);
11235 /* Even if we didn't, FUNC may have decided that there was nothing
11236 interesting below this point in the tree. */
11237 if (!walk_subtrees)
11239 /* But we still need to check our siblings. */
11240 if (code == TREE_LIST)
11241 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11242 else if (code == OMP_CLAUSE)
11243 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11244 else
11245 return NULL_TREE;
11248 if (lh)
11250 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11251 if (result || !walk_subtrees)
11252 return result;
11255 switch (code)
11257 case ERROR_MARK:
11258 case IDENTIFIER_NODE:
11259 case INTEGER_CST:
11260 case REAL_CST:
11261 case FIXED_CST:
11262 case VECTOR_CST:
11263 case STRING_CST:
11264 case BLOCK:
11265 case PLACEHOLDER_EXPR:
11266 case SSA_NAME:
11267 case FIELD_DECL:
11268 case RESULT_DECL:
11269 /* None of these have subtrees other than those already walked
11270 above. */
11271 break;
11273 case TREE_LIST:
11274 WALK_SUBTREE (TREE_VALUE (*tp));
11275 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11276 break;
11278 case TREE_VEC:
11280 int len = TREE_VEC_LENGTH (*tp);
11282 if (len == 0)
11283 break;
11285 /* Walk all elements but the first. */
11286 while (--len)
11287 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11289 /* Now walk the first one as a tail call. */
11290 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11293 case COMPLEX_CST:
11294 WALK_SUBTREE (TREE_REALPART (*tp));
11295 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11297 case CONSTRUCTOR:
11299 unsigned HOST_WIDE_INT idx;
11300 constructor_elt *ce;
11302 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11303 idx++)
11304 WALK_SUBTREE (ce->value);
11306 break;
11308 case SAVE_EXPR:
11309 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11311 case BIND_EXPR:
11313 tree decl;
11314 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11316 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11317 into declarations that are just mentioned, rather than
11318 declared; they don't really belong to this part of the tree.
11319 And, we can see cycles: the initializer for a declaration
11320 can refer to the declaration itself. */
11321 WALK_SUBTREE (DECL_INITIAL (decl));
11322 WALK_SUBTREE (DECL_SIZE (decl));
11323 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11325 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11328 case STATEMENT_LIST:
11330 tree_stmt_iterator i;
11331 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11332 WALK_SUBTREE (*tsi_stmt_ptr (i));
11334 break;
11336 case OMP_CLAUSE:
11337 switch (OMP_CLAUSE_CODE (*tp))
11339 case OMP_CLAUSE_GANG:
11340 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11341 /* FALLTHRU */
11343 case OMP_CLAUSE_DEVICE_RESIDENT:
11344 case OMP_CLAUSE_USE_DEVICE:
11345 case OMP_CLAUSE_ASYNC:
11346 case OMP_CLAUSE_WAIT:
11347 case OMP_CLAUSE_WORKER:
11348 case OMP_CLAUSE_VECTOR:
11349 case OMP_CLAUSE_NUM_GANGS:
11350 case OMP_CLAUSE_NUM_WORKERS:
11351 case OMP_CLAUSE_VECTOR_LENGTH:
11352 case OMP_CLAUSE_PRIVATE:
11353 case OMP_CLAUSE_SHARED:
11354 case OMP_CLAUSE_FIRSTPRIVATE:
11355 case OMP_CLAUSE_COPYIN:
11356 case OMP_CLAUSE_COPYPRIVATE:
11357 case OMP_CLAUSE_FINAL:
11358 case OMP_CLAUSE_IF:
11359 case OMP_CLAUSE_NUM_THREADS:
11360 case OMP_CLAUSE_SCHEDULE:
11361 case OMP_CLAUSE_UNIFORM:
11362 case OMP_CLAUSE_DEPEND:
11363 case OMP_CLAUSE_NUM_TEAMS:
11364 case OMP_CLAUSE_THREAD_LIMIT:
11365 case OMP_CLAUSE_DEVICE:
11366 case OMP_CLAUSE_DIST_SCHEDULE:
11367 case OMP_CLAUSE_SAFELEN:
11368 case OMP_CLAUSE_SIMDLEN:
11369 case OMP_CLAUSE__LOOPTEMP_:
11370 case OMP_CLAUSE__SIMDUID_:
11371 case OMP_CLAUSE__CILK_FOR_COUNT_:
11372 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11373 /* FALLTHRU */
11375 case OMP_CLAUSE_INDEPENDENT:
11376 case OMP_CLAUSE_NOWAIT:
11377 case OMP_CLAUSE_ORDERED:
11378 case OMP_CLAUSE_DEFAULT:
11379 case OMP_CLAUSE_UNTIED:
11380 case OMP_CLAUSE_MERGEABLE:
11381 case OMP_CLAUSE_PROC_BIND:
11382 case OMP_CLAUSE_INBRANCH:
11383 case OMP_CLAUSE_NOTINBRANCH:
11384 case OMP_CLAUSE_FOR:
11385 case OMP_CLAUSE_PARALLEL:
11386 case OMP_CLAUSE_SECTIONS:
11387 case OMP_CLAUSE_TASKGROUP:
11388 case OMP_CLAUSE_AUTO:
11389 case OMP_CLAUSE_SEQ:
11390 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11392 case OMP_CLAUSE_LASTPRIVATE:
11393 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11394 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11395 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11397 case OMP_CLAUSE_COLLAPSE:
11399 int i;
11400 for (i = 0; i < 3; i++)
11401 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11402 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11405 case OMP_CLAUSE_LINEAR:
11406 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11407 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11408 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11409 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11411 case OMP_CLAUSE_ALIGNED:
11412 case OMP_CLAUSE_FROM:
11413 case OMP_CLAUSE_TO:
11414 case OMP_CLAUSE_MAP:
11415 case OMP_CLAUSE__CACHE_:
11416 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11417 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11418 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11420 case OMP_CLAUSE_REDUCTION:
11422 int i;
11423 for (i = 0; i < 4; i++)
11424 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11425 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11428 default:
11429 gcc_unreachable ();
11431 break;
11433 case TARGET_EXPR:
11435 int i, len;
11437 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11438 But, we only want to walk once. */
11439 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11440 for (i = 0; i < len; ++i)
11441 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11442 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11445 case DECL_EXPR:
11446 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11447 defining. We only want to walk into these fields of a type in this
11448 case and not in the general case of a mere reference to the type.
11450 The criterion is as follows: if the field can be an expression, it
11451 must be walked only here. This should be in keeping with the fields
11452 that are directly gimplified in gimplify_type_sizes in order for the
11453 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11454 variable-sized types.
11456 Note that DECLs get walked as part of processing the BIND_EXPR. */
11457 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11459 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11460 if (TREE_CODE (*type_p) == ERROR_MARK)
11461 return NULL_TREE;
11463 /* Call the function for the type. See if it returns anything or
11464 doesn't want us to continue. If we are to continue, walk both
11465 the normal fields and those for the declaration case. */
11466 result = (*func) (type_p, &walk_subtrees, data);
11467 if (result || !walk_subtrees)
11468 return result;
11470 /* But do not walk a pointed-to type since it may itself need to
11471 be walked in the declaration case if it isn't anonymous. */
11472 if (!POINTER_TYPE_P (*type_p))
11474 result = walk_type_fields (*type_p, func, data, pset, lh);
11475 if (result)
11476 return result;
11479 /* If this is a record type, also walk the fields. */
11480 if (RECORD_OR_UNION_TYPE_P (*type_p))
11482 tree field;
11484 for (field = TYPE_FIELDS (*type_p); field;
11485 field = DECL_CHAIN (field))
11487 /* We'd like to look at the type of the field, but we can
11488 easily get infinite recursion. So assume it's pointed
11489 to elsewhere in the tree. Also, ignore things that
11490 aren't fields. */
11491 if (TREE_CODE (field) != FIELD_DECL)
11492 continue;
11494 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11495 WALK_SUBTREE (DECL_SIZE (field));
11496 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11497 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11498 WALK_SUBTREE (DECL_QUALIFIER (field));
11502 /* Same for scalar types. */
11503 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11504 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11505 || TREE_CODE (*type_p) == INTEGER_TYPE
11506 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11507 || TREE_CODE (*type_p) == REAL_TYPE)
11509 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11510 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11513 WALK_SUBTREE (TYPE_SIZE (*type_p));
11514 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11516 /* FALLTHRU */
11518 default:
11519 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11521 int i, len;
11523 /* Walk over all the sub-trees of this operand. */
11524 len = TREE_OPERAND_LENGTH (*tp);
11526 /* Go through the subtrees. We need to do this in forward order so
11527 that the scope of a FOR_EXPR is handled properly. */
11528 if (len)
11530 for (i = 0; i < len - 1; ++i)
11531 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11532 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11535 /* If this is a type, walk the needed fields in the type. */
11536 else if (TYPE_P (*tp))
11537 return walk_type_fields (*tp, func, data, pset, lh);
11538 break;
11541 /* We didn't find what we were looking for. */
11542 return NULL_TREE;
11544 #undef WALK_SUBTREE_TAIL
11546 #undef WALK_SUBTREE
11548 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11550 tree
11551 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11552 walk_tree_lh lh)
11554 tree result;
11556 hash_set<tree> pset;
11557 result = walk_tree_1 (tp, func, data, &pset, lh);
11558 return result;
11562 tree
11563 tree_block (tree t)
11565 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11567 if (IS_EXPR_CODE_CLASS (c))
11568 return LOCATION_BLOCK (t->exp.locus);
11569 gcc_unreachable ();
11570 return NULL;
11573 void
11574 tree_set_block (tree t, tree b)
11576 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11578 if (IS_EXPR_CODE_CLASS (c))
11580 if (b)
11581 t->exp.locus = COMBINE_LOCATION_DATA (line_table, t->exp.locus, b);
11582 else
11583 t->exp.locus = LOCATION_LOCUS (t->exp.locus);
11585 else
11586 gcc_unreachable ();
11589 /* Create a nameless artificial label and put it in the current
11590 function context. The label has a location of LOC. Returns the
11591 newly created label. */
11593 tree
11594 create_artificial_label (location_t loc)
11596 tree lab = build_decl (loc,
11597 LABEL_DECL, NULL_TREE, void_type_node);
11599 DECL_ARTIFICIAL (lab) = 1;
11600 DECL_IGNORED_P (lab) = 1;
11601 DECL_CONTEXT (lab) = current_function_decl;
11602 return lab;
11605 /* Given a tree, try to return a useful variable name that we can use
11606 to prefix a temporary that is being assigned the value of the tree.
11607 I.E. given <temp> = &A, return A. */
11609 const char *
11610 get_name (tree t)
11612 tree stripped_decl;
11614 stripped_decl = t;
11615 STRIP_NOPS (stripped_decl);
11616 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11617 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11618 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11620 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11621 if (!name)
11622 return NULL;
11623 return IDENTIFIER_POINTER (name);
11625 else
11627 switch (TREE_CODE (stripped_decl))
11629 case ADDR_EXPR:
11630 return get_name (TREE_OPERAND (stripped_decl, 0));
11631 default:
11632 return NULL;
11637 /* Return true if TYPE has a variable argument list. */
11639 bool
11640 stdarg_p (const_tree fntype)
11642 function_args_iterator args_iter;
11643 tree n = NULL_TREE, t;
11645 if (!fntype)
11646 return false;
11648 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11650 n = t;
11653 return n != NULL_TREE && n != void_type_node;
11656 /* Return true if TYPE has a prototype. */
11658 bool
11659 prototype_p (const_tree fntype)
11661 tree t;
11663 gcc_assert (fntype != NULL_TREE);
11665 t = TYPE_ARG_TYPES (fntype);
11666 return (t != NULL_TREE);
11669 /* If BLOCK is inlined from an __attribute__((__artificial__))
11670 routine, return pointer to location from where it has been
11671 called. */
11672 location_t *
11673 block_nonartificial_location (tree block)
11675 location_t *ret = NULL;
11677 while (block && TREE_CODE (block) == BLOCK
11678 && BLOCK_ABSTRACT_ORIGIN (block))
11680 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
11682 while (TREE_CODE (ao) == BLOCK
11683 && BLOCK_ABSTRACT_ORIGIN (ao)
11684 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
11685 ao = BLOCK_ABSTRACT_ORIGIN (ao);
11687 if (TREE_CODE (ao) == FUNCTION_DECL)
11689 /* If AO is an artificial inline, point RET to the
11690 call site locus at which it has been inlined and continue
11691 the loop, in case AO's caller is also an artificial
11692 inline. */
11693 if (DECL_DECLARED_INLINE_P (ao)
11694 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
11695 ret = &BLOCK_SOURCE_LOCATION (block);
11696 else
11697 break;
11699 else if (TREE_CODE (ao) != BLOCK)
11700 break;
11702 block = BLOCK_SUPERCONTEXT (block);
11704 return ret;
11708 /* If EXP is inlined from an __attribute__((__artificial__))
11709 function, return the location of the original call expression. */
11711 location_t
11712 tree_nonartificial_location (tree exp)
11714 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
11716 if (loc)
11717 return *loc;
11718 else
11719 return EXPR_LOCATION (exp);
11723 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11724 nodes. */
11726 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11728 hashval_t
11729 cl_option_hasher::hash (tree x)
11731 const_tree const t = x;
11732 const char *p;
11733 size_t i;
11734 size_t len = 0;
11735 hashval_t hash = 0;
11737 if (TREE_CODE (t) == OPTIMIZATION_NODE)
11739 p = (const char *)TREE_OPTIMIZATION (t);
11740 len = sizeof (struct cl_optimization);
11743 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
11744 return cl_target_option_hash (TREE_TARGET_OPTION (t));
11746 else
11747 gcc_unreachable ();
11749 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11750 something else. */
11751 for (i = 0; i < len; i++)
11752 if (p[i])
11753 hash = (hash << 4) ^ ((i << 2) | p[i]);
11755 return hash;
11758 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11759 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11760 same. */
11762 bool
11763 cl_option_hasher::equal (tree x, tree y)
11765 const_tree const xt = x;
11766 const_tree const yt = y;
11767 const char *xp;
11768 const char *yp;
11769 size_t len;
11771 if (TREE_CODE (xt) != TREE_CODE (yt))
11772 return 0;
11774 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
11776 xp = (const char *)TREE_OPTIMIZATION (xt);
11777 yp = (const char *)TREE_OPTIMIZATION (yt);
11778 len = sizeof (struct cl_optimization);
11781 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
11783 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
11784 TREE_TARGET_OPTION (yt));
11787 else
11788 gcc_unreachable ();
11790 return (memcmp (xp, yp, len) == 0);
11793 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11795 tree
11796 build_optimization_node (struct gcc_options *opts)
11798 tree t;
11800 /* Use the cache of optimization nodes. */
11802 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
11803 opts);
11805 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
11806 t = *slot;
11807 if (!t)
11809 /* Insert this one into the hash table. */
11810 t = cl_optimization_node;
11811 *slot = t;
11813 /* Make a new node for next time round. */
11814 cl_optimization_node = make_node (OPTIMIZATION_NODE);
11817 return t;
11820 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11822 tree
11823 build_target_option_node (struct gcc_options *opts)
11825 tree t;
11827 /* Use the cache of optimization nodes. */
11829 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
11830 opts);
11832 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
11833 t = *slot;
11834 if (!t)
11836 /* Insert this one into the hash table. */
11837 t = cl_target_option_node;
11838 *slot = t;
11840 /* Make a new node for next time round. */
11841 cl_target_option_node = make_node (TARGET_OPTION_NODE);
11844 return t;
11847 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11848 so that they aren't saved during PCH writing. */
11850 void
11851 prepare_target_option_nodes_for_pch (void)
11853 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
11854 for (; iter != cl_option_hash_table->end (); ++iter)
11855 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
11856 TREE_TARGET_GLOBALS (*iter) = NULL;
11859 /* Determine the "ultimate origin" of a block. The block may be an inlined
11860 instance of an inlined instance of a block which is local to an inline
11861 function, so we have to trace all of the way back through the origin chain
11862 to find out what sort of node actually served as the original seed for the
11863 given block. */
11865 tree
11866 block_ultimate_origin (const_tree block)
11868 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
11870 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
11871 we're trying to output the abstract instance of this function. */
11872 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
11873 return NULL_TREE;
11875 if (immediate_origin == NULL_TREE)
11876 return NULL_TREE;
11877 else
11879 tree ret_val;
11880 tree lookahead = immediate_origin;
11884 ret_val = lookahead;
11885 lookahead = (TREE_CODE (ret_val) == BLOCK
11886 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
11888 while (lookahead != NULL && lookahead != ret_val);
11890 /* The block's abstract origin chain may not be the *ultimate* origin of
11891 the block. It could lead to a DECL that has an abstract origin set.
11892 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11893 will give us if it has one). Note that DECL's abstract origins are
11894 supposed to be the most distant ancestor (or so decl_ultimate_origin
11895 claims), so we don't need to loop following the DECL origins. */
11896 if (DECL_P (ret_val))
11897 return DECL_ORIGIN (ret_val);
11899 return ret_val;
11903 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
11904 no instruction. */
11906 bool
11907 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
11909 /* Use precision rather then machine mode when we can, which gives
11910 the correct answer even for submode (bit-field) types. */
11911 if ((INTEGRAL_TYPE_P (outer_type)
11912 || POINTER_TYPE_P (outer_type)
11913 || TREE_CODE (outer_type) == OFFSET_TYPE)
11914 && (INTEGRAL_TYPE_P (inner_type)
11915 || POINTER_TYPE_P (inner_type)
11916 || TREE_CODE (inner_type) == OFFSET_TYPE))
11917 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
11919 /* Otherwise fall back on comparing machine modes (e.g. for
11920 aggregate types, floats). */
11921 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
11924 /* Return true iff conversion in EXP generates no instruction. Mark
11925 it inline so that we fully inline into the stripping functions even
11926 though we have two uses of this function. */
11928 static inline bool
11929 tree_nop_conversion (const_tree exp)
11931 tree outer_type, inner_type;
11933 if (!CONVERT_EXPR_P (exp)
11934 && TREE_CODE (exp) != NON_LVALUE_EXPR)
11935 return false;
11936 if (TREE_OPERAND (exp, 0) == error_mark_node)
11937 return false;
11939 outer_type = TREE_TYPE (exp);
11940 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11942 if (!inner_type)
11943 return false;
11945 return tree_nop_conversion_p (outer_type, inner_type);
11948 /* Return true iff conversion in EXP generates no instruction. Don't
11949 consider conversions changing the signedness. */
11951 static bool
11952 tree_sign_nop_conversion (const_tree exp)
11954 tree outer_type, inner_type;
11956 if (!tree_nop_conversion (exp))
11957 return false;
11959 outer_type = TREE_TYPE (exp);
11960 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11962 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
11963 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
11966 /* Strip conversions from EXP according to tree_nop_conversion and
11967 return the resulting expression. */
11969 tree
11970 tree_strip_nop_conversions (tree exp)
11972 while (tree_nop_conversion (exp))
11973 exp = TREE_OPERAND (exp, 0);
11974 return exp;
11977 /* Strip conversions from EXP according to tree_sign_nop_conversion
11978 and return the resulting expression. */
11980 tree
11981 tree_strip_sign_nop_conversions (tree exp)
11983 while (tree_sign_nop_conversion (exp))
11984 exp = TREE_OPERAND (exp, 0);
11985 return exp;
11988 /* Avoid any floating point extensions from EXP. */
11989 tree
11990 strip_float_extensions (tree exp)
11992 tree sub, expt, subt;
11994 /* For floating point constant look up the narrowest type that can hold
11995 it properly and handle it like (type)(narrowest_type)constant.
11996 This way we can optimize for instance a=a*2.0 where "a" is float
11997 but 2.0 is double constant. */
11998 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12000 REAL_VALUE_TYPE orig;
12001 tree type = NULL;
12003 orig = TREE_REAL_CST (exp);
12004 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12005 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12006 type = float_type_node;
12007 else if (TYPE_PRECISION (TREE_TYPE (exp))
12008 > TYPE_PRECISION (double_type_node)
12009 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12010 type = double_type_node;
12011 if (type)
12012 return build_real (type, real_value_truncate (TYPE_MODE (type), orig));
12015 if (!CONVERT_EXPR_P (exp))
12016 return exp;
12018 sub = TREE_OPERAND (exp, 0);
12019 subt = TREE_TYPE (sub);
12020 expt = TREE_TYPE (exp);
12022 if (!FLOAT_TYPE_P (subt))
12023 return exp;
12025 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12026 return exp;
12028 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12029 return exp;
12031 return strip_float_extensions (sub);
12034 /* Strip out all handled components that produce invariant
12035 offsets. */
12037 const_tree
12038 strip_invariant_refs (const_tree op)
12040 while (handled_component_p (op))
12042 switch (TREE_CODE (op))
12044 case ARRAY_REF:
12045 case ARRAY_RANGE_REF:
12046 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12047 || TREE_OPERAND (op, 2) != NULL_TREE
12048 || TREE_OPERAND (op, 3) != NULL_TREE)
12049 return NULL;
12050 break;
12052 case COMPONENT_REF:
12053 if (TREE_OPERAND (op, 2) != NULL_TREE)
12054 return NULL;
12055 break;
12057 default:;
12059 op = TREE_OPERAND (op, 0);
12062 return op;
12065 static GTY(()) tree gcc_eh_personality_decl;
12067 /* Return the GCC personality function decl. */
12069 tree
12070 lhd_gcc_personality (void)
12072 if (!gcc_eh_personality_decl)
12073 gcc_eh_personality_decl = build_personality_function ("gcc");
12074 return gcc_eh_personality_decl;
12077 /* TARGET is a call target of GIMPLE call statement
12078 (obtained by gimple_call_fn). Return true if it is
12079 OBJ_TYPE_REF representing an virtual call of C++ method.
12080 (As opposed to OBJ_TYPE_REF representing objc calls
12081 through a cast where middle-end devirtualization machinery
12082 can't apply.) */
12084 bool
12085 virtual_method_call_p (const_tree target)
12087 if (TREE_CODE (target) != OBJ_TYPE_REF)
12088 return false;
12089 tree t = TREE_TYPE (target);
12090 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12091 t = TREE_TYPE (t);
12092 if (TREE_CODE (t) == FUNCTION_TYPE)
12093 return false;
12094 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12095 /* If we do not have BINFO associated, it means that type was built
12096 without devirtualization enabled. Do not consider this a virtual
12097 call. */
12098 if (!TYPE_BINFO (obj_type_ref_class (target)))
12099 return false;
12100 return true;
12103 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12105 tree
12106 obj_type_ref_class (const_tree ref)
12108 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12109 ref = TREE_TYPE (ref);
12110 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12111 ref = TREE_TYPE (ref);
12112 /* We look for type THIS points to. ObjC also builds
12113 OBJ_TYPE_REF with non-method calls, Their first parameter
12114 ID however also corresponds to class type. */
12115 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12116 || TREE_CODE (ref) == FUNCTION_TYPE);
12117 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12118 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12119 return TREE_TYPE (ref);
12122 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12124 static tree
12125 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12127 unsigned int i;
12128 tree base_binfo, b;
12130 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12131 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12132 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12133 return base_binfo;
12134 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12135 return b;
12136 return NULL;
12139 /* Try to find a base info of BINFO that would have its field decl at offset
12140 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12141 found, return, otherwise return NULL_TREE. */
12143 tree
12144 get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
12146 tree type = BINFO_TYPE (binfo);
12148 while (true)
12150 HOST_WIDE_INT pos, size;
12151 tree fld;
12152 int i;
12154 if (types_same_for_odr (type, expected_type))
12155 return binfo;
12156 if (offset < 0)
12157 return NULL_TREE;
12159 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12161 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12162 continue;
12164 pos = int_bit_position (fld);
12165 size = tree_to_uhwi (DECL_SIZE (fld));
12166 if (pos <= offset && (pos + size) > offset)
12167 break;
12169 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12170 return NULL_TREE;
12172 /* Offset 0 indicates the primary base, whose vtable contents are
12173 represented in the binfo for the derived class. */
12174 else if (offset != 0)
12176 tree found_binfo = NULL, base_binfo;
12177 /* Offsets in BINFO are in bytes relative to the whole structure
12178 while POS is in bits relative to the containing field. */
12179 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12180 / BITS_PER_UNIT);
12182 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12183 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12184 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12186 found_binfo = base_binfo;
12187 break;
12189 if (found_binfo)
12190 binfo = found_binfo;
12191 else
12192 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12193 binfo_offset);
12196 type = TREE_TYPE (fld);
12197 offset -= pos;
12201 /* Returns true if X is a typedef decl. */
12203 bool
12204 is_typedef_decl (const_tree x)
12206 return (x && TREE_CODE (x) == TYPE_DECL
12207 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12210 /* Returns true iff TYPE is a type variant created for a typedef. */
12212 bool
12213 typedef_variant_p (const_tree type)
12215 return is_typedef_decl (TYPE_NAME (type));
12218 /* Warn about a use of an identifier which was marked deprecated. */
12219 void
12220 warn_deprecated_use (tree node, tree attr)
12222 const char *msg;
12224 if (node == 0 || !warn_deprecated_decl)
12225 return;
12227 if (!attr)
12229 if (DECL_P (node))
12230 attr = DECL_ATTRIBUTES (node);
12231 else if (TYPE_P (node))
12233 tree decl = TYPE_STUB_DECL (node);
12234 if (decl)
12235 attr = lookup_attribute ("deprecated",
12236 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12240 if (attr)
12241 attr = lookup_attribute ("deprecated", attr);
12243 if (attr)
12244 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12245 else
12246 msg = NULL;
12248 bool w;
12249 if (DECL_P (node))
12251 if (msg)
12252 w = warning (OPT_Wdeprecated_declarations,
12253 "%qD is deprecated: %s", node, msg);
12254 else
12255 w = warning (OPT_Wdeprecated_declarations,
12256 "%qD is deprecated", node);
12257 if (w)
12258 inform (DECL_SOURCE_LOCATION (node), "declared here");
12260 else if (TYPE_P (node))
12262 tree what = NULL_TREE;
12263 tree decl = TYPE_STUB_DECL (node);
12265 if (TYPE_NAME (node))
12267 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12268 what = TYPE_NAME (node);
12269 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12270 && DECL_NAME (TYPE_NAME (node)))
12271 what = DECL_NAME (TYPE_NAME (node));
12274 if (decl)
12276 if (what)
12278 if (msg)
12279 w = warning (OPT_Wdeprecated_declarations,
12280 "%qE is deprecated: %s", what, msg);
12281 else
12282 w = warning (OPT_Wdeprecated_declarations,
12283 "%qE is deprecated", what);
12285 else
12287 if (msg)
12288 w = warning (OPT_Wdeprecated_declarations,
12289 "type is deprecated: %s", msg);
12290 else
12291 w = warning (OPT_Wdeprecated_declarations,
12292 "type is deprecated");
12294 if (w)
12295 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12297 else
12299 if (what)
12301 if (msg)
12302 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
12303 what, msg);
12304 else
12305 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
12307 else
12309 if (msg)
12310 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
12311 msg);
12312 else
12313 warning (OPT_Wdeprecated_declarations, "type is deprecated");
12319 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12320 somewhere in it. */
12322 bool
12323 contains_bitfld_component_ref_p (const_tree ref)
12325 while (handled_component_p (ref))
12327 if (TREE_CODE (ref) == COMPONENT_REF
12328 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12329 return true;
12330 ref = TREE_OPERAND (ref, 0);
12333 return false;
12336 /* Try to determine whether a TRY_CATCH expression can fall through.
12337 This is a subroutine of block_may_fallthru. */
12339 static bool
12340 try_catch_may_fallthru (const_tree stmt)
12342 tree_stmt_iterator i;
12344 /* If the TRY block can fall through, the whole TRY_CATCH can
12345 fall through. */
12346 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12347 return true;
12349 i = tsi_start (TREE_OPERAND (stmt, 1));
12350 switch (TREE_CODE (tsi_stmt (i)))
12352 case CATCH_EXPR:
12353 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12354 catch expression and a body. The whole TRY_CATCH may fall
12355 through iff any of the catch bodies falls through. */
12356 for (; !tsi_end_p (i); tsi_next (&i))
12358 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12359 return true;
12361 return false;
12363 case EH_FILTER_EXPR:
12364 /* The exception filter expression only matters if there is an
12365 exception. If the exception does not match EH_FILTER_TYPES,
12366 we will execute EH_FILTER_FAILURE, and we will fall through
12367 if that falls through. If the exception does match
12368 EH_FILTER_TYPES, the stack unwinder will continue up the
12369 stack, so we will not fall through. We don't know whether we
12370 will throw an exception which matches EH_FILTER_TYPES or not,
12371 so we just ignore EH_FILTER_TYPES and assume that we might
12372 throw an exception which doesn't match. */
12373 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12375 default:
12376 /* This case represents statements to be executed when an
12377 exception occurs. Those statements are implicitly followed
12378 by a RESX statement to resume execution after the exception.
12379 So in this case the TRY_CATCH never falls through. */
12380 return false;
12384 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12385 need not be 100% accurate; simply be conservative and return true if we
12386 don't know. This is used only to avoid stupidly generating extra code.
12387 If we're wrong, we'll just delete the extra code later. */
12389 bool
12390 block_may_fallthru (const_tree block)
12392 /* This CONST_CAST is okay because expr_last returns its argument
12393 unmodified and we assign it to a const_tree. */
12394 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12396 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12398 case GOTO_EXPR:
12399 case RETURN_EXPR:
12400 /* Easy cases. If the last statement of the block implies
12401 control transfer, then we can't fall through. */
12402 return false;
12404 case SWITCH_EXPR:
12405 /* If SWITCH_LABELS is set, this is lowered, and represents a
12406 branch to a selected label and hence can not fall through.
12407 Otherwise SWITCH_BODY is set, and the switch can fall
12408 through. */
12409 return SWITCH_LABELS (stmt) == NULL_TREE;
12411 case COND_EXPR:
12412 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12413 return true;
12414 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12416 case BIND_EXPR:
12417 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12419 case TRY_CATCH_EXPR:
12420 return try_catch_may_fallthru (stmt);
12422 case TRY_FINALLY_EXPR:
12423 /* The finally clause is always executed after the try clause,
12424 so if it does not fall through, then the try-finally will not
12425 fall through. Otherwise, if the try clause does not fall
12426 through, then when the finally clause falls through it will
12427 resume execution wherever the try clause was going. So the
12428 whole try-finally will only fall through if both the try
12429 clause and the finally clause fall through. */
12430 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12431 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12433 case MODIFY_EXPR:
12434 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12435 stmt = TREE_OPERAND (stmt, 1);
12436 else
12437 return true;
12438 /* FALLTHRU */
12440 case CALL_EXPR:
12441 /* Functions that do not return do not fall through. */
12442 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12444 case CLEANUP_POINT_EXPR:
12445 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12447 case TARGET_EXPR:
12448 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12450 case ERROR_MARK:
12451 return true;
12453 default:
12454 return lang_hooks.block_may_fallthru (stmt);
12458 /* True if we are using EH to handle cleanups. */
12459 static bool using_eh_for_cleanups_flag = false;
12461 /* This routine is called from front ends to indicate eh should be used for
12462 cleanups. */
12463 void
12464 using_eh_for_cleanups (void)
12466 using_eh_for_cleanups_flag = true;
12469 /* Query whether EH is used for cleanups. */
12470 bool
12471 using_eh_for_cleanups_p (void)
12473 return using_eh_for_cleanups_flag;
12476 /* Wrapper for tree_code_name to ensure that tree code is valid */
12477 const char *
12478 get_tree_code_name (enum tree_code code)
12480 const char *invalid = "<invalid tree code>";
12482 if (code >= MAX_TREE_CODES)
12483 return invalid;
12485 return tree_code_name[code];
12488 /* Drops the TREE_OVERFLOW flag from T. */
12490 tree
12491 drop_tree_overflow (tree t)
12493 gcc_checking_assert (TREE_OVERFLOW (t));
12495 /* For tree codes with a sharing machinery re-build the result. */
12496 if (TREE_CODE (t) == INTEGER_CST)
12497 return wide_int_to_tree (TREE_TYPE (t), t);
12499 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12500 and drop the flag. */
12501 t = copy_node (t);
12502 TREE_OVERFLOW (t) = 0;
12503 return t;
12506 /* Given a memory reference expression T, return its base address.
12507 The base address of a memory reference expression is the main
12508 object being referenced. For instance, the base address for
12509 'array[i].fld[j]' is 'array'. You can think of this as stripping
12510 away the offset part from a memory address.
12512 This function calls handled_component_p to strip away all the inner
12513 parts of the memory reference until it reaches the base object. */
12515 tree
12516 get_base_address (tree t)
12518 while (handled_component_p (t))
12519 t = TREE_OPERAND (t, 0);
12521 if ((TREE_CODE (t) == MEM_REF
12522 || TREE_CODE (t) == TARGET_MEM_REF)
12523 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12524 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12526 /* ??? Either the alias oracle or all callers need to properly deal
12527 with WITH_SIZE_EXPRs before we can look through those. */
12528 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12529 return NULL_TREE;
12531 return t;
12534 /* Return a tree of sizetype representing the size, in bytes, of the element
12535 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12537 tree
12538 array_ref_element_size (tree exp)
12540 tree aligned_size = TREE_OPERAND (exp, 3);
12541 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12542 location_t loc = EXPR_LOCATION (exp);
12544 /* If a size was specified in the ARRAY_REF, it's the size measured
12545 in alignment units of the element type. So multiply by that value. */
12546 if (aligned_size)
12548 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12549 sizetype from another type of the same width and signedness. */
12550 if (TREE_TYPE (aligned_size) != sizetype)
12551 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12552 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12553 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12556 /* Otherwise, take the size from that of the element type. Substitute
12557 any PLACEHOLDER_EXPR that we have. */
12558 else
12559 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12562 /* Return a tree representing the lower bound of the array mentioned in
12563 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12565 tree
12566 array_ref_low_bound (tree exp)
12568 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12570 /* If a lower bound is specified in EXP, use it. */
12571 if (TREE_OPERAND (exp, 2))
12572 return TREE_OPERAND (exp, 2);
12574 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12575 substituting for a PLACEHOLDER_EXPR as needed. */
12576 if (domain_type && TYPE_MIN_VALUE (domain_type))
12577 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12579 /* Otherwise, return a zero of the appropriate type. */
12580 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12583 /* Return a tree representing the upper bound of the array mentioned in
12584 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12586 tree
12587 array_ref_up_bound (tree exp)
12589 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12591 /* If there is a domain type and it has an upper bound, use it, substituting
12592 for a PLACEHOLDER_EXPR as needed. */
12593 if (domain_type && TYPE_MAX_VALUE (domain_type))
12594 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12596 /* Otherwise fail. */
12597 return NULL_TREE;
12600 /* Returns true if REF is an array reference to an array at the end of
12601 a structure. If this is the case, the array may be allocated larger
12602 than its upper bound implies. */
12604 bool
12605 array_at_struct_end_p (tree ref)
12607 if (TREE_CODE (ref) != ARRAY_REF
12608 && TREE_CODE (ref) != ARRAY_RANGE_REF)
12609 return false;
12611 while (handled_component_p (ref))
12613 /* If the reference chain contains a component reference to a
12614 non-union type and there follows another field the reference
12615 is not at the end of a structure. */
12616 if (TREE_CODE (ref) == COMPONENT_REF
12617 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12619 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12620 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12621 nextf = DECL_CHAIN (nextf);
12622 if (nextf)
12623 return false;
12626 ref = TREE_OPERAND (ref, 0);
12629 /* If the reference is based on a declared entity, the size of the array
12630 is constrained by its given domain. */
12631 if (DECL_P (ref))
12632 return false;
12634 return true;
12637 /* Return a tree representing the offset, in bytes, of the field referenced
12638 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12640 tree
12641 component_ref_field_offset (tree exp)
12643 tree aligned_offset = TREE_OPERAND (exp, 2);
12644 tree field = TREE_OPERAND (exp, 1);
12645 location_t loc = EXPR_LOCATION (exp);
12647 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12648 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12649 value. */
12650 if (aligned_offset)
12652 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12653 sizetype from another type of the same width and signedness. */
12654 if (TREE_TYPE (aligned_offset) != sizetype)
12655 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
12656 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
12657 size_int (DECL_OFFSET_ALIGN (field)
12658 / BITS_PER_UNIT));
12661 /* Otherwise, take the offset from that of the field. Substitute
12662 any PLACEHOLDER_EXPR that we have. */
12663 else
12664 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
12667 /* Return the machine mode of T. For vectors, returns the mode of the
12668 inner type. The main use case is to feed the result to HONOR_NANS,
12669 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12671 machine_mode
12672 element_mode (const_tree t)
12674 if (!TYPE_P (t))
12675 t = TREE_TYPE (t);
12676 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
12677 t = TREE_TYPE (t);
12678 return TYPE_MODE (t);
12682 /* Veirfy that basic properties of T match TV and thus T can be a variant of
12683 TV. TV should be the more specified variant (i.e. the main variant). */
12685 static bool
12686 verify_type_variant (const_tree t, tree tv)
12688 /* Type variant can differ by:
12690 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
12691 ENCODE_QUAL_ADDR_SPACE.
12692 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
12693 in this case some values may not be set in the variant types
12694 (see TYPE_COMPLETE_P checks).
12695 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
12696 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
12697 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
12698 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
12699 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
12700 this is necessary to make it possible to merge types form different TUs
12701 - arrays, pointers and references may have TREE_TYPE that is a variant
12702 of TREE_TYPE of their main variants.
12703 - aggregates may have new TYPE_FIELDS list that list variants of
12704 the main variant TYPE_FIELDS.
12705 - vector types may differ by TYPE_VECTOR_OPAQUE
12706 - TYPE_METHODS is always NULL for vairant types and maintained for
12707 main variant only.
12710 /* Convenience macro for matching individual fields. */
12711 #define verify_variant_match(flag) \
12712 do { \
12713 if (flag (tv) != flag (t)) \
12715 error ("type variant differs by " #flag "."); \
12716 debug_tree (tv); \
12717 return false; \
12719 } while (false)
12721 /* tree_base checks. */
12723 verify_variant_match (TREE_CODE);
12724 /* FIXME: Ada builds non-artificial variants of artificial types. */
12725 if (TYPE_ARTIFICIAL (tv) && 0)
12726 verify_variant_match (TYPE_ARTIFICIAL);
12727 if (POINTER_TYPE_P (tv))
12728 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
12729 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
12730 verify_variant_match (TYPE_UNSIGNED);
12731 verify_variant_match (TYPE_ALIGN_OK);
12732 verify_variant_match (TYPE_PACKED);
12733 if (TREE_CODE (t) == REFERENCE_TYPE)
12734 verify_variant_match (TYPE_REF_IS_RVALUE);
12735 verify_variant_match (TYPE_SATURATING);
12736 /* FIXME: This check trigger during libstdc++ build. */
12737 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
12738 verify_variant_match (TYPE_FINAL_P);
12740 /* tree_type_common checks. */
12742 if (COMPLETE_TYPE_P (t))
12744 verify_variant_match (TYPE_SIZE);
12745 verify_variant_match (TYPE_MODE);
12746 if (TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv)
12747 /* FIXME: ideally we should compare pointer equality, but java FE
12748 produce variants where size is INTEGER_CST of different type (int
12749 wrt size_type) during libjava biuld. */
12750 && !operand_equal_p (TYPE_SIZE_UNIT (t), TYPE_SIZE_UNIT (tv), 0))
12752 error ("type variant has different TYPE_SIZE_UNIT");
12753 debug_tree (tv);
12754 error ("type variant's TYPE_SIZE_UNIT");
12755 debug_tree (TYPE_SIZE_UNIT (tv));
12756 error ("type's TYPE_SIZE_UNIT");
12757 debug_tree (TYPE_SIZE_UNIT (t));
12758 return false;
12761 verify_variant_match (TYPE_PRECISION);
12762 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
12763 if (RECORD_OR_UNION_TYPE_P (t))
12764 verify_variant_match (TYPE_TRANSPARENT_AGGR);
12765 else if (TREE_CODE (t) == ARRAY_TYPE)
12766 verify_variant_match (TYPE_NONALIASED_COMPONENT);
12767 /* During LTO we merge variant lists from diferent translation units
12768 that may differ BY TYPE_CONTEXT that in turn may point
12769 to TRANSLATION_UNIT_DECL.
12770 Ada also builds variants of types with different TYPE_CONTEXT. */
12771 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
12772 verify_variant_match (TYPE_CONTEXT);
12773 verify_variant_match (TYPE_STRING_FLAG);
12774 if (TYPE_ALIAS_SET_KNOWN_P (t) && TYPE_ALIAS_SET_KNOWN_P (tv))
12775 verify_variant_match (TYPE_ALIAS_SET);
12777 /* tree_type_non_common checks. */
12779 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
12780 and dangle the pointer from time to time. */
12781 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
12782 && (in_lto_p || !TYPE_VFIELD (tv)
12783 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
12785 error ("type variant has different TYPE_VFIELD");
12786 debug_tree (tv);
12787 return false;
12789 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
12790 || TREE_CODE (t) == INTEGER_TYPE
12791 || TREE_CODE (t) == BOOLEAN_TYPE
12792 || TREE_CODE (t) == REAL_TYPE
12793 || TREE_CODE (t) == FIXED_POINT_TYPE)
12795 verify_variant_match (TYPE_MAX_VALUE);
12796 verify_variant_match (TYPE_MIN_VALUE);
12798 if (TREE_CODE (t) == METHOD_TYPE)
12799 verify_variant_match (TYPE_METHOD_BASETYPE);
12800 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_METHODS (t))
12802 error ("type variant has TYPE_METHODS");
12803 debug_tree (tv);
12804 return false;
12806 if (TREE_CODE (t) == OFFSET_TYPE)
12807 verify_variant_match (TYPE_OFFSET_BASETYPE);
12808 if (TREE_CODE (t) == ARRAY_TYPE)
12809 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
12810 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
12811 or even type's main variant. This is needed to make bootstrap pass
12812 and the bug seems new in GCC 5.
12813 C++ FE should be updated to make this consistent and we should check
12814 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
12815 is a match with main variant.
12817 Also disable the check for Java for now because of parser hack that builds
12818 first an dummy BINFO and then sometimes replace it by real BINFO in some
12819 of the copies. */
12820 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
12821 && TYPE_BINFO (t) != TYPE_BINFO (tv)
12822 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
12823 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
12824 at LTO time only. */
12825 && (in_lto_p && odr_type_p (t)))
12827 error ("type variant has different TYPE_BINFO");
12828 debug_tree (tv);
12829 error ("type variant's TYPE_BINFO");
12830 debug_tree (TYPE_BINFO (tv));
12831 error ("type's TYPE_BINFO");
12832 debug_tree (TYPE_BINFO (t));
12833 return false;
12836 /* Check various uses of TYPE_VALUES_RAW. */
12837 if (TREE_CODE (t) == ENUMERAL_TYPE)
12838 verify_variant_match (TYPE_VALUES);
12839 else if (TREE_CODE (t) == ARRAY_TYPE)
12840 verify_variant_match (TYPE_DOMAIN);
12841 /* Permit incomplete variants of complete type. While FEs may complete
12842 all variants, this does not happen for C++ templates in all cases. */
12843 else if (RECORD_OR_UNION_TYPE_P (t)
12844 && COMPLETE_TYPE_P (t)
12845 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
12847 tree f1, f2;
12849 /* Fortran builds qualified variants as new records with items of
12850 qualified type. Verify that they looks same. */
12851 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
12852 f1 && f2;
12853 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
12854 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
12855 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
12856 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
12857 /* FIXME: gfc_nonrestricted_type builds all types as variants
12858 with exception of pointer types. It deeply copies the type
12859 which means that we may end up with a variant type
12860 referring non-variant pointer. We may change it to
12861 produce types as variants, too, like
12862 objc_get_protocol_qualified_type does. */
12863 && !POINTER_TYPE_P (TREE_TYPE (f1)))
12864 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
12865 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
12866 break;
12867 if (f1 || f2)
12869 error ("type variant has different TYPE_FIELDS");
12870 debug_tree (tv);
12871 error ("first mismatch is field");
12872 debug_tree (f1);
12873 error ("and field");
12874 debug_tree (f2);
12875 return false;
12878 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
12879 verify_variant_match (TYPE_ARG_TYPES);
12880 /* For C++ the qualified variant of array type is really an array type
12881 of qualified TREE_TYPE.
12882 objc builds variants of pointer where pointer to type is a variant, too
12883 in objc_get_protocol_qualified_type. */
12884 if (TREE_TYPE (t) != TREE_TYPE (tv)
12885 && ((TREE_CODE (t) != ARRAY_TYPE
12886 && !POINTER_TYPE_P (t))
12887 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
12888 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
12890 error ("type variant has different TREE_TYPE");
12891 debug_tree (tv);
12892 error ("type variant's TREE_TYPE");
12893 debug_tree (TREE_TYPE (tv));
12894 error ("type's TREE_TYPE");
12895 debug_tree (TREE_TYPE (t));
12896 return false;
12898 if (type_with_alias_set_p (t)
12899 && !gimple_canonical_types_compatible_p (t, tv, false))
12901 error ("type is not compatible with its vairant");
12902 debug_tree (tv);
12903 error ("type variant's TREE_TYPE");
12904 debug_tree (TREE_TYPE (tv));
12905 error ("type's TREE_TYPE");
12906 debug_tree (TREE_TYPE (t));
12907 return false;
12909 return true;
12910 #undef verify_variant_match
12914 /* The TYPE_CANONICAL merging machinery. It should closely resemble
12915 the middle-end types_compatible_p function. It needs to avoid
12916 claiming types are different for types that should be treated
12917 the same with respect to TBAA. Canonical types are also used
12918 for IL consistency checks via the useless_type_conversion_p
12919 predicate which does not handle all type kinds itself but falls
12920 back to pointer-comparison of TYPE_CANONICAL for aggregates
12921 for example. */
12923 /* Return true iff T1 and T2 are structurally identical for what
12924 TBAA is concerned.
12925 This function is used both by lto.c canonical type merging and by the
12926 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
12927 that have TYPE_CANONICAL defined and assume them equivalent. */
12929 bool
12930 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
12931 bool trust_type_canonical)
12933 /* Type variants should be same as the main variant. When not doing sanity
12934 checking to verify this fact, go to main variants and save some work. */
12935 if (trust_type_canonical)
12937 t1 = TYPE_MAIN_VARIANT (t1);
12938 t2 = TYPE_MAIN_VARIANT (t2);
12941 /* Check first for the obvious case of pointer identity. */
12942 if (t1 == t2)
12943 return true;
12945 /* Check that we have two types to compare. */
12946 if (t1 == NULL_TREE || t2 == NULL_TREE)
12947 return false;
12949 /* We consider complete types always compatible with incomplete type.
12950 This does not make sense for canonical type calculation and thus we
12951 need to ensure that we are never called on it.
12953 FIXME: For more correctness the function probably should have three modes
12954 1) mode assuming that types are complete mathcing their structure
12955 2) mode allowing incomplete types but producing equivalence classes
12956 and thus ignoring all info from complete types
12957 3) mode allowing incomplete types to match complete but checking
12958 compatibility between complete types.
12960 1 and 2 can be used for canonical type calculation. 3 is the real
12961 definition of type compatibility that can be used i.e. for warnings during
12962 declaration merging. */
12964 gcc_assert (!trust_type_canonical
12965 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
12966 /* If the types have been previously registered and found equal
12967 they still are. */
12968 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
12969 && trust_type_canonical)
12970 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
12972 /* Can't be the same type if the types don't have the same code. */
12973 if (tree_code_for_canonical_type_merging (TREE_CODE (t1))
12974 != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
12975 return false;
12977 /* Qualifiers do not matter for canonical type comparison purposes. */
12979 /* Void types and nullptr types are always the same. */
12980 if (TREE_CODE (t1) == VOID_TYPE
12981 || TREE_CODE (t1) == NULLPTR_TYPE)
12982 return true;
12984 /* Can't be the same type if they have different mode. */
12985 if (TYPE_MODE (t1) != TYPE_MODE (t2))
12986 return false;
12988 /* Non-aggregate types can be handled cheaply. */
12989 if (INTEGRAL_TYPE_P (t1)
12990 || SCALAR_FLOAT_TYPE_P (t1)
12991 || FIXED_POINT_TYPE_P (t1)
12992 || TREE_CODE (t1) == VECTOR_TYPE
12993 || TREE_CODE (t1) == COMPLEX_TYPE
12994 || TREE_CODE (t1) == OFFSET_TYPE
12995 || POINTER_TYPE_P (t1))
12997 /* Can't be the same type if they have different sign or precision. */
12998 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2)
12999 || TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2))
13000 return false;
13002 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13003 interoperable with "signed char". Unless all frontends are revisited
13004 to agree on these types, we must ignore the flag completely. */
13006 /* Fortran standard define C_PTR type that is compatible with every
13007 C pointer. For this reason we need to glob all pointers into one.
13008 Still pointers in different address spaces are not compatible. */
13009 if (POINTER_TYPE_P (t1))
13011 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13012 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13013 return false;
13016 /* Tail-recurse to components. */
13017 if (TREE_CODE (t1) == VECTOR_TYPE
13018 || TREE_CODE (t1) == COMPLEX_TYPE)
13019 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13020 TREE_TYPE (t2),
13021 trust_type_canonical);
13023 return true;
13026 /* Do type-specific comparisons. */
13027 switch (TREE_CODE (t1))
13029 case ARRAY_TYPE:
13030 /* Array types are the same if the element types are the same and
13031 the number of elements are the same. */
13032 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13033 trust_type_canonical)
13034 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13035 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13036 return false;
13037 else
13039 tree i1 = TYPE_DOMAIN (t1);
13040 tree i2 = TYPE_DOMAIN (t2);
13042 /* For an incomplete external array, the type domain can be
13043 NULL_TREE. Check this condition also. */
13044 if (i1 == NULL_TREE && i2 == NULL_TREE)
13045 return true;
13046 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13047 return false;
13048 else
13050 tree min1 = TYPE_MIN_VALUE (i1);
13051 tree min2 = TYPE_MIN_VALUE (i2);
13052 tree max1 = TYPE_MAX_VALUE (i1);
13053 tree max2 = TYPE_MAX_VALUE (i2);
13055 /* The minimum/maximum values have to be the same. */
13056 if ((min1 == min2
13057 || (min1 && min2
13058 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13059 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13060 || operand_equal_p (min1, min2, 0))))
13061 && (max1 == max2
13062 || (max1 && max2
13063 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13064 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13065 || operand_equal_p (max1, max2, 0)))))
13066 return true;
13067 else
13068 return false;
13072 case METHOD_TYPE:
13073 case FUNCTION_TYPE:
13074 /* Function types are the same if the return type and arguments types
13075 are the same. */
13076 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13077 trust_type_canonical))
13078 return false;
13080 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13081 return true;
13082 else
13084 tree parms1, parms2;
13086 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13087 parms1 && parms2;
13088 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13090 if (!gimple_canonical_types_compatible_p
13091 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13092 trust_type_canonical))
13093 return false;
13096 if (parms1 || parms2)
13097 return false;
13099 return true;
13102 case RECORD_TYPE:
13103 case UNION_TYPE:
13104 case QUAL_UNION_TYPE:
13106 tree f1, f2;
13108 /* For aggregate types, all the fields must be the same. */
13109 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13110 f1 || f2;
13111 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13113 /* Skip non-fields. */
13114 while (f1 && TREE_CODE (f1) != FIELD_DECL)
13115 f1 = TREE_CHAIN (f1);
13116 while (f2 && TREE_CODE (f2) != FIELD_DECL)
13117 f2 = TREE_CHAIN (f2);
13118 if (!f1 || !f2)
13119 break;
13120 /* The fields must have the same name, offset and type. */
13121 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13122 || !gimple_compare_field_offset (f1, f2)
13123 || !gimple_canonical_types_compatible_p
13124 (TREE_TYPE (f1), TREE_TYPE (f2),
13125 trust_type_canonical))
13126 return false;
13129 /* If one aggregate has more fields than the other, they
13130 are not the same. */
13131 if (f1 || f2)
13132 return false;
13134 return true;
13137 default:
13138 /* Consider all types with language specific trees in them mutually
13139 compatible. This is executed only from verify_type and false
13140 positives can be tolerated. */
13141 gcc_assert (!in_lto_p);
13142 return true;
13146 /* Verify type T. */
13148 void
13149 verify_type (const_tree t)
13151 bool error_found = false;
13152 tree mv = TYPE_MAIN_VARIANT (t);
13153 if (!mv)
13155 error ("Main variant is not defined");
13156 error_found = true;
13158 else if (mv != TYPE_MAIN_VARIANT (mv))
13160 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13161 debug_tree (mv);
13162 error_found = true;
13164 else if (t != mv && !verify_type_variant (t, mv))
13165 error_found = true;
13167 tree ct = TYPE_CANONICAL (t);
13168 if (!ct)
13170 else if (TYPE_CANONICAL (t) != ct)
13172 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13173 debug_tree (ct);
13174 error_found = true;
13176 /* Method and function types can not be used to address memory and thus
13177 TYPE_CANONICAL really matters only for determining useless conversions.
13179 FIXME: C++ FE produce declarations of builtin functions that are not
13180 compatible with main variants. */
13181 else if (TREE_CODE (t) == FUNCTION_TYPE)
13183 else if (t != ct
13184 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13185 with variably sized arrays because their sizes possibly
13186 gimplified to different variables. */
13187 && !variably_modified_type_p (ct, NULL)
13188 && !gimple_canonical_types_compatible_p (t, ct, false))
13190 error ("TYPE_CANONICAL is not compatible");
13191 debug_tree (ct);
13192 error_found = true;
13196 /* Check various uses of TYPE_MINVAL. */
13197 if (RECORD_OR_UNION_TYPE_P (t))
13199 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13200 and danagle the pointer from time to time. */
13201 if (TYPE_VFIELD (t)
13202 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13203 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13205 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13206 debug_tree (TYPE_VFIELD (t));
13207 error_found = true;
13210 else if (TREE_CODE (t) == POINTER_TYPE)
13212 if (TYPE_NEXT_PTR_TO (t)
13213 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13215 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13216 debug_tree (TYPE_NEXT_PTR_TO (t));
13217 error_found = true;
13220 else if (TREE_CODE (t) == REFERENCE_TYPE)
13222 if (TYPE_NEXT_REF_TO (t)
13223 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13225 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13226 debug_tree (TYPE_NEXT_REF_TO (t));
13227 error_found = true;
13230 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13231 || TREE_CODE (t) == FIXED_POINT_TYPE)
13233 /* FIXME: The following check should pass:
13234 useless_type_conversion_p (const_cast <tree> (t),
13235 TREE_TYPE (TYPE_MIN_VALUE (t))
13236 but does not for C sizetypes in LTO. */
13238 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
13239 else if (TYPE_MINVAL (t)
13240 && ((TREE_CODE (t) != METHOD_TYPE && TREE_CODE (t) != FUNCTION_TYPE)
13241 || in_lto_p))
13243 error ("TYPE_MINVAL non-NULL");
13244 debug_tree (TYPE_MINVAL (t));
13245 error_found = true;
13248 /* Check various uses of TYPE_MAXVAL. */
13249 if (RECORD_OR_UNION_TYPE_P (t))
13251 if (TYPE_METHODS (t) && TREE_CODE (TYPE_METHODS (t)) != FUNCTION_DECL
13252 && TREE_CODE (TYPE_METHODS (t)) != TEMPLATE_DECL
13253 && TYPE_METHODS (t) != error_mark_node)
13255 error ("TYPE_METHODS is not FUNCTION_DECL, TEMPLATE_DECL nor error_mark_node");
13256 debug_tree (TYPE_METHODS (t));
13257 error_found = true;
13260 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13262 if (TYPE_METHOD_BASETYPE (t)
13263 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13264 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13266 error ("TYPE_METHOD_BASETYPE is not record nor union");
13267 debug_tree (TYPE_METHOD_BASETYPE (t));
13268 error_found = true;
13271 else if (TREE_CODE (t) == OFFSET_TYPE)
13273 if (TYPE_OFFSET_BASETYPE (t)
13274 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13275 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13277 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13278 debug_tree (TYPE_OFFSET_BASETYPE (t));
13279 error_found = true;
13282 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13283 || TREE_CODE (t) == FIXED_POINT_TYPE)
13285 /* FIXME: The following check should pass:
13286 useless_type_conversion_p (const_cast <tree> (t),
13287 TREE_TYPE (TYPE_MAX_VALUE (t))
13288 but does not for C sizetypes in LTO. */
13290 else if (TREE_CODE (t) == ARRAY_TYPE)
13292 if (TYPE_ARRAY_MAX_SIZE (t)
13293 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13295 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13296 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13297 error_found = true;
13300 else if (TYPE_MAXVAL (t))
13302 error ("TYPE_MAXVAL non-NULL");
13303 debug_tree (TYPE_MAXVAL (t));
13304 error_found = true;
13307 /* Check various uses of TYPE_BINFO. */
13308 if (RECORD_OR_UNION_TYPE_P (t))
13310 if (!TYPE_BINFO (t))
13312 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13314 error ("TYPE_BINFO is not TREE_BINFO");
13315 debug_tree (TYPE_BINFO (t));
13316 error_found = true;
13318 /* FIXME: Java builds invalid empty binfos that do not have
13319 TREE_TYPE set. */
13320 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t) && 0)
13322 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13323 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13324 error_found = true;
13327 else if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13329 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13330 debug_tree (TYPE_LANG_SLOT_1 (t));
13331 error_found = true;
13334 /* Check various uses of TYPE_VALUES_RAW. */
13335 if (TREE_CODE (t) == ENUMERAL_TYPE)
13336 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13338 tree value = TREE_VALUE (l);
13339 tree name = TREE_PURPOSE (l);
13341 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13342 CONST_DECL of ENUMERAL TYPE. */
13343 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13345 error ("Enum value is not CONST_DECL or INTEGER_CST");
13346 debug_tree (value);
13347 debug_tree (name);
13348 error_found = true;
13350 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13351 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13353 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13354 debug_tree (value);
13355 debug_tree (name);
13356 error_found = true;
13358 if (TREE_CODE (name) != IDENTIFIER_NODE)
13360 error ("Enum value name is not IDENTIFIER_NODE");
13361 debug_tree (value);
13362 debug_tree (name);
13363 error_found = true;
13366 else if (TREE_CODE (t) == ARRAY_TYPE)
13368 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13370 error ("Array TYPE_DOMAIN is not integer type");
13371 debug_tree (TYPE_DOMAIN (t));
13372 error_found = true;
13375 else if (RECORD_OR_UNION_TYPE_P (t))
13376 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13378 /* TODO: verify properties of decls. */
13379 if (TREE_CODE (fld) == FIELD_DECL)
13381 else if (TREE_CODE (fld) == TYPE_DECL)
13383 else if (TREE_CODE (fld) == CONST_DECL)
13385 else if (TREE_CODE (fld) == VAR_DECL)
13387 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13389 else if (TREE_CODE (fld) == USING_DECL)
13391 else
13393 error ("Wrong tree in TYPE_FIELDS list");
13394 debug_tree (fld);
13395 error_found = true;
13398 else if (TREE_CODE (t) == INTEGER_TYPE
13399 || TREE_CODE (t) == BOOLEAN_TYPE
13400 || TREE_CODE (t) == OFFSET_TYPE
13401 || TREE_CODE (t) == REFERENCE_TYPE
13402 || TREE_CODE (t) == NULLPTR_TYPE
13403 || TREE_CODE (t) == POINTER_TYPE)
13405 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13407 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13408 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13409 error_found = true;
13411 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13413 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13414 debug_tree (TYPE_CACHED_VALUES (t));
13415 error_found = true;
13417 /* Verify just enough of cache to ensure that no one copied it to new type.
13418 All copying should go by copy_node that should clear it. */
13419 else if (TYPE_CACHED_VALUES_P (t))
13421 int i;
13422 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13423 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13424 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13426 error ("wrong TYPE_CACHED_VALUES entry");
13427 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13428 error_found = true;
13429 break;
13433 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13434 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13436 /* C++ FE uses TREE_PURPOSE to store initial values. */
13437 if (TREE_PURPOSE (l) && in_lto_p)
13439 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13440 debug_tree (l);
13441 error_found = true;
13443 if (!TYPE_P (TREE_VALUE (l)))
13445 error ("Wrong entry in TYPE_ARG_TYPES list");
13446 debug_tree (l);
13447 error_found = true;
13450 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13452 error ("TYPE_VALUES_RAW field is non-NULL");
13453 debug_tree (TYPE_VALUES_RAW (t));
13454 error_found = true;
13456 if (TREE_CODE (t) != INTEGER_TYPE
13457 && TREE_CODE (t) != BOOLEAN_TYPE
13458 && TREE_CODE (t) != OFFSET_TYPE
13459 && TREE_CODE (t) != REFERENCE_TYPE
13460 && TREE_CODE (t) != NULLPTR_TYPE
13461 && TREE_CODE (t) != POINTER_TYPE
13462 && TYPE_CACHED_VALUES_P (t))
13464 error ("TYPE_CACHED_VALUES_P is set while it should not");
13465 error_found = true;
13467 if (TYPE_STRING_FLAG (t)
13468 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13470 error ("TYPE_STRING_FLAG is set on wrong type code");
13471 error_found = true;
13473 else if (TYPE_STRING_FLAG (t))
13475 const_tree b = t;
13476 if (TREE_CODE (b) == ARRAY_TYPE)
13477 b = TREE_TYPE (t);
13478 /* Java builds arrays with TYPE_STRING_FLAG of promoted_char_type
13479 that is 32bits. */
13480 if (TREE_CODE (b) != INTEGER_TYPE)
13482 error ("TYPE_STRING_FLAG is set on type that does not look like "
13483 "char nor array of chars");
13484 error_found = true;
13488 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13489 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13490 of a type. */
13491 if (TREE_CODE (t) == METHOD_TYPE
13492 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13494 error ("TYPE_METHOD_BASETYPE is not main variant");
13495 error_found = true;
13498 if (error_found)
13500 debug_tree (const_cast <tree> (t));
13501 internal_error ("verify_type failed");
13505 #include "gt-tree.h"