Daily bump.
[official-gcc.git] / gcc / tree.c
blob5c9f6f42140b3e43a73a1f679dbc11278f417480
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
25 nodes of that code.
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "target.h"
35 #include "tree.h"
36 #include "gimple.h"
37 #include "tree-pass.h"
38 #include "ssa.h"
39 #include "cgraph.h"
40 #include "diagnostic.h"
41 #include "flags.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "attribs.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "output.h"
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
55 #include "gimplify.h"
56 #include "tree-dfa.h"
57 #include "params.h"
58 #include "langhooks-def.h"
59 #include "tree-diagnostic.h"
60 #include "except.h"
61 #include "builtins.h"
62 #include "print-tree.h"
63 #include "ipa-utils.h"
65 /* Tree code classes. */
67 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
68 #define END_OF_BASE_TREE_CODES tcc_exceptional,
70 const enum tree_code_class tree_code_type[] = {
71 #include "all-tree.def"
74 #undef DEFTREECODE
75 #undef END_OF_BASE_TREE_CODES
77 /* Table indexed by tree code giving number of expression
78 operands beyond the fixed part of the node structure.
79 Not used for types or decls. */
81 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
82 #define END_OF_BASE_TREE_CODES 0,
84 const unsigned char tree_code_length[] = {
85 #include "all-tree.def"
88 #undef DEFTREECODE
89 #undef END_OF_BASE_TREE_CODES
91 /* Names of tree components.
92 Used for printing out the tree and error messages. */
93 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
94 #define END_OF_BASE_TREE_CODES "@dummy",
96 static const char *const tree_code_name[] = {
97 #include "all-tree.def"
100 #undef DEFTREECODE
101 #undef END_OF_BASE_TREE_CODES
103 /* Each tree code class has an associated string representation.
104 These must correspond to the tree_code_class entries. */
106 const char *const tree_code_class_strings[] =
108 "exceptional",
109 "constant",
110 "type",
111 "declaration",
112 "reference",
113 "comparison",
114 "unary",
115 "binary",
116 "statement",
117 "vl_exp",
118 "expression"
121 /* obstack.[ch] explicitly declined to prototype this. */
122 extern int _obstack_allocated_p (struct obstack *h, void *obj);
124 /* Statistics-gathering stuff. */
126 static int tree_code_counts[MAX_TREE_CODES];
127 int tree_node_counts[(int) all_kinds];
128 int tree_node_sizes[(int) all_kinds];
130 /* Keep in sync with tree.h:enum tree_node_kind. */
131 static const char * const tree_node_kind_names[] = {
132 "decls",
133 "types",
134 "blocks",
135 "stmts",
136 "refs",
137 "exprs",
138 "constants",
139 "identifiers",
140 "vecs",
141 "binfos",
142 "ssa names",
143 "constructors",
144 "random kinds",
145 "lang_decl kinds",
146 "lang_type kinds",
147 "omp clauses",
150 /* Unique id for next decl created. */
151 static GTY(()) int next_decl_uid;
152 /* Unique id for next type created. */
153 static GTY(()) int next_type_uid = 1;
154 /* Unique id for next debug decl created. Use negative numbers,
155 to catch erroneous uses. */
156 static GTY(()) int next_debug_decl_uid;
158 /* Since we cannot rehash a type after it is in the table, we have to
159 keep the hash code. */
161 struct GTY((for_user)) type_hash {
162 unsigned long hash;
163 tree type;
166 /* Initial size of the hash table (rounded to next prime). */
167 #define TYPE_HASH_INITIAL_SIZE 1000
169 struct type_cache_hasher : ggc_cache_ptr_hash<type_hash>
171 static hashval_t hash (type_hash *t) { return t->hash; }
172 static bool equal (type_hash *a, type_hash *b);
174 static int
175 keep_cache_entry (type_hash *&t)
177 return ggc_marked_p (t->type);
181 /* Now here is the hash table. When recording a type, it is added to
182 the slot whose index is the hash code. Note that the hash table is
183 used for several kinds of types (function types, array types and
184 array index range types, for now). While all these live in the
185 same table, they are completely independent, and the hash code is
186 computed differently for each of these. */
188 static GTY ((cache)) hash_table<type_cache_hasher> *type_hash_table;
190 /* Hash table and temporary node for larger integer const values. */
191 static GTY (()) tree int_cst_node;
193 struct int_cst_hasher : ggc_cache_ptr_hash<tree_node>
195 static hashval_t hash (tree t);
196 static bool equal (tree x, tree y);
199 static GTY ((cache)) hash_table<int_cst_hasher> *int_cst_hash_table;
201 /* Hash table for optimization flags and target option flags. Use the same
202 hash table for both sets of options. Nodes for building the current
203 optimization and target option nodes. The assumption is most of the time
204 the options created will already be in the hash table, so we avoid
205 allocating and freeing up a node repeatably. */
206 static GTY (()) tree cl_optimization_node;
207 static GTY (()) tree cl_target_option_node;
209 struct cl_option_hasher : ggc_cache_ptr_hash<tree_node>
211 static hashval_t hash (tree t);
212 static bool equal (tree x, tree y);
215 static GTY ((cache)) hash_table<cl_option_hasher> *cl_option_hash_table;
217 /* General tree->tree mapping structure for use in hash tables. */
220 static GTY ((cache))
221 hash_table<tree_decl_map_cache_hasher> *debug_expr_for_decl;
223 static GTY ((cache))
224 hash_table<tree_decl_map_cache_hasher> *value_expr_for_decl;
226 struct tree_vec_map_cache_hasher : ggc_cache_ptr_hash<tree_vec_map>
228 static hashval_t hash (tree_vec_map *m) { return DECL_UID (m->base.from); }
230 static bool
231 equal (tree_vec_map *a, tree_vec_map *b)
233 return a->base.from == b->base.from;
236 static int
237 keep_cache_entry (tree_vec_map *&m)
239 return ggc_marked_p (m->base.from);
243 static GTY ((cache))
244 hash_table<tree_vec_map_cache_hasher> *debug_args_for_decl;
246 static void set_type_quals (tree, int);
247 static void print_type_hash_statistics (void);
248 static void print_debug_expr_statistics (void);
249 static void print_value_expr_statistics (void);
250 static void type_hash_list (const_tree, inchash::hash &);
251 static void attribute_hash_list (const_tree, inchash::hash &);
253 tree global_trees[TI_MAX];
254 tree integer_types[itk_none];
256 bool int_n_enabled_p[NUM_INT_N_ENTS];
257 struct int_n_trees_t int_n_trees [NUM_INT_N_ENTS];
259 unsigned char tree_contains_struct[MAX_TREE_CODES][64];
261 /* Number of operands for each OpenMP clause. */
262 unsigned const char omp_clause_num_ops[] =
264 0, /* OMP_CLAUSE_ERROR */
265 1, /* OMP_CLAUSE_PRIVATE */
266 1, /* OMP_CLAUSE_SHARED */
267 1, /* OMP_CLAUSE_FIRSTPRIVATE */
268 2, /* OMP_CLAUSE_LASTPRIVATE */
269 5, /* OMP_CLAUSE_REDUCTION */
270 1, /* OMP_CLAUSE_COPYIN */
271 1, /* OMP_CLAUSE_COPYPRIVATE */
272 3, /* OMP_CLAUSE_LINEAR */
273 2, /* OMP_CLAUSE_ALIGNED */
274 1, /* OMP_CLAUSE_DEPEND */
275 1, /* OMP_CLAUSE_UNIFORM */
276 1, /* OMP_CLAUSE_TO_DECLARE */
277 1, /* OMP_CLAUSE_LINK */
278 2, /* OMP_CLAUSE_FROM */
279 2, /* OMP_CLAUSE_TO */
280 2, /* OMP_CLAUSE_MAP */
281 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
282 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
283 2, /* OMP_CLAUSE__CACHE_ */
284 1, /* OMP_CLAUSE_DEVICE_RESIDENT */
285 2, /* OMP_CLAUSE_GANG */
286 1, /* OMP_CLAUSE_ASYNC */
287 1, /* OMP_CLAUSE_WAIT */
288 0, /* OMP_CLAUSE_AUTO */
289 0, /* OMP_CLAUSE_SEQ */
290 1, /* OMP_CLAUSE__LOOPTEMP_ */
291 1, /* OMP_CLAUSE_IF */
292 1, /* OMP_CLAUSE_NUM_THREADS */
293 1, /* OMP_CLAUSE_SCHEDULE */
294 0, /* OMP_CLAUSE_NOWAIT */
295 1, /* OMP_CLAUSE_ORDERED */
296 0, /* OMP_CLAUSE_DEFAULT */
297 3, /* OMP_CLAUSE_COLLAPSE */
298 0, /* OMP_CLAUSE_UNTIED */
299 1, /* OMP_CLAUSE_FINAL */
300 0, /* OMP_CLAUSE_MERGEABLE */
301 1, /* OMP_CLAUSE_DEVICE */
302 1, /* OMP_CLAUSE_DIST_SCHEDULE */
303 0, /* OMP_CLAUSE_INBRANCH */
304 0, /* OMP_CLAUSE_NOTINBRANCH */
305 1, /* OMP_CLAUSE_NUM_TEAMS */
306 1, /* OMP_CLAUSE_THREAD_LIMIT */
307 0, /* OMP_CLAUSE_PROC_BIND */
308 1, /* OMP_CLAUSE_SAFELEN */
309 1, /* OMP_CLAUSE_SIMDLEN */
310 0, /* OMP_CLAUSE_FOR */
311 0, /* OMP_CLAUSE_PARALLEL */
312 0, /* OMP_CLAUSE_SECTIONS */
313 0, /* OMP_CLAUSE_TASKGROUP */
314 1, /* OMP_CLAUSE_PRIORITY */
315 1, /* OMP_CLAUSE_GRAINSIZE */
316 1, /* OMP_CLAUSE_NUM_TASKS */
317 0, /* OMP_CLAUSE_NOGROUP */
318 0, /* OMP_CLAUSE_THREADS */
319 0, /* OMP_CLAUSE_SIMD */
320 1, /* OMP_CLAUSE_HINT */
321 0, /* OMP_CLAUSE_DEFALTMAP */
322 1, /* OMP_CLAUSE__SIMDUID_ */
323 1, /* OMP_CLAUSE__CILK_FOR_COUNT_ */
324 0, /* OMP_CLAUSE_INDEPENDENT */
325 1, /* OMP_CLAUSE_WORKER */
326 1, /* OMP_CLAUSE_VECTOR */
327 1, /* OMP_CLAUSE_NUM_GANGS */
328 1, /* OMP_CLAUSE_NUM_WORKERS */
329 1, /* OMP_CLAUSE_VECTOR_LENGTH */
330 1, /* OMP_CLAUSE_TILE */
331 2, /* OMP_CLAUSE__GRIDDIM_ */
334 const char * const omp_clause_code_name[] =
336 "error_clause",
337 "private",
338 "shared",
339 "firstprivate",
340 "lastprivate",
341 "reduction",
342 "copyin",
343 "copyprivate",
344 "linear",
345 "aligned",
346 "depend",
347 "uniform",
348 "to",
349 "link",
350 "from",
351 "to",
352 "map",
353 "use_device_ptr",
354 "is_device_ptr",
355 "_cache_",
356 "device_resident",
357 "gang",
358 "async",
359 "wait",
360 "auto",
361 "seq",
362 "_looptemp_",
363 "if",
364 "num_threads",
365 "schedule",
366 "nowait",
367 "ordered",
368 "default",
369 "collapse",
370 "untied",
371 "final",
372 "mergeable",
373 "device",
374 "dist_schedule",
375 "inbranch",
376 "notinbranch",
377 "num_teams",
378 "thread_limit",
379 "proc_bind",
380 "safelen",
381 "simdlen",
382 "for",
383 "parallel",
384 "sections",
385 "taskgroup",
386 "priority",
387 "grainsize",
388 "num_tasks",
389 "nogroup",
390 "threads",
391 "simd",
392 "hint",
393 "defaultmap",
394 "_simduid_",
395 "_Cilk_for_count_",
396 "independent",
397 "worker",
398 "vector",
399 "num_gangs",
400 "num_workers",
401 "vector_length",
402 "tile",
403 "_griddim_"
407 /* Return the tree node structure used by tree code CODE. */
409 static inline enum tree_node_structure_enum
410 tree_node_structure_for_code (enum tree_code code)
412 switch (TREE_CODE_CLASS (code))
414 case tcc_declaration:
416 switch (code)
418 case FIELD_DECL:
419 return TS_FIELD_DECL;
420 case PARM_DECL:
421 return TS_PARM_DECL;
422 case VAR_DECL:
423 return TS_VAR_DECL;
424 case LABEL_DECL:
425 return TS_LABEL_DECL;
426 case RESULT_DECL:
427 return TS_RESULT_DECL;
428 case DEBUG_EXPR_DECL:
429 return TS_DECL_WRTL;
430 case CONST_DECL:
431 return TS_CONST_DECL;
432 case TYPE_DECL:
433 return TS_TYPE_DECL;
434 case FUNCTION_DECL:
435 return TS_FUNCTION_DECL;
436 case TRANSLATION_UNIT_DECL:
437 return TS_TRANSLATION_UNIT_DECL;
438 default:
439 return TS_DECL_NON_COMMON;
442 case tcc_type:
443 return TS_TYPE_NON_COMMON;
444 case tcc_reference:
445 case tcc_comparison:
446 case tcc_unary:
447 case tcc_binary:
448 case tcc_expression:
449 case tcc_statement:
450 case tcc_vl_exp:
451 return TS_EXP;
452 default: /* tcc_constant and tcc_exceptional */
453 break;
455 switch (code)
457 /* tcc_constant cases. */
458 case VOID_CST: return TS_TYPED;
459 case INTEGER_CST: return TS_INT_CST;
460 case REAL_CST: return TS_REAL_CST;
461 case FIXED_CST: return TS_FIXED_CST;
462 case COMPLEX_CST: return TS_COMPLEX;
463 case VECTOR_CST: return TS_VECTOR;
464 case STRING_CST: return TS_STRING;
465 /* tcc_exceptional cases. */
466 case ERROR_MARK: return TS_COMMON;
467 case IDENTIFIER_NODE: return TS_IDENTIFIER;
468 case TREE_LIST: return TS_LIST;
469 case TREE_VEC: return TS_VEC;
470 case SSA_NAME: return TS_SSA_NAME;
471 case PLACEHOLDER_EXPR: return TS_COMMON;
472 case STATEMENT_LIST: return TS_STATEMENT_LIST;
473 case BLOCK: return TS_BLOCK;
474 case CONSTRUCTOR: return TS_CONSTRUCTOR;
475 case TREE_BINFO: return TS_BINFO;
476 case OMP_CLAUSE: return TS_OMP_CLAUSE;
477 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
478 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
480 default:
481 gcc_unreachable ();
486 /* Initialize tree_contains_struct to describe the hierarchy of tree
487 nodes. */
489 static void
490 initialize_tree_contains_struct (void)
492 unsigned i;
494 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
496 enum tree_code code;
497 enum tree_node_structure_enum ts_code;
499 code = (enum tree_code) i;
500 ts_code = tree_node_structure_for_code (code);
502 /* Mark the TS structure itself. */
503 tree_contains_struct[code][ts_code] = 1;
505 /* Mark all the structures that TS is derived from. */
506 switch (ts_code)
508 case TS_TYPED:
509 case TS_BLOCK:
510 MARK_TS_BASE (code);
511 break;
513 case TS_COMMON:
514 case TS_INT_CST:
515 case TS_REAL_CST:
516 case TS_FIXED_CST:
517 case TS_VECTOR:
518 case TS_STRING:
519 case TS_COMPLEX:
520 case TS_SSA_NAME:
521 case TS_CONSTRUCTOR:
522 case TS_EXP:
523 case TS_STATEMENT_LIST:
524 MARK_TS_TYPED (code);
525 break;
527 case TS_IDENTIFIER:
528 case TS_DECL_MINIMAL:
529 case TS_TYPE_COMMON:
530 case TS_LIST:
531 case TS_VEC:
532 case TS_BINFO:
533 case TS_OMP_CLAUSE:
534 case TS_OPTIMIZATION:
535 case TS_TARGET_OPTION:
536 MARK_TS_COMMON (code);
537 break;
539 case TS_TYPE_WITH_LANG_SPECIFIC:
540 MARK_TS_TYPE_COMMON (code);
541 break;
543 case TS_TYPE_NON_COMMON:
544 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
545 break;
547 case TS_DECL_COMMON:
548 MARK_TS_DECL_MINIMAL (code);
549 break;
551 case TS_DECL_WRTL:
552 case TS_CONST_DECL:
553 MARK_TS_DECL_COMMON (code);
554 break;
556 case TS_DECL_NON_COMMON:
557 MARK_TS_DECL_WITH_VIS (code);
558 break;
560 case TS_DECL_WITH_VIS:
561 case TS_PARM_DECL:
562 case TS_LABEL_DECL:
563 case TS_RESULT_DECL:
564 MARK_TS_DECL_WRTL (code);
565 break;
567 case TS_FIELD_DECL:
568 MARK_TS_DECL_COMMON (code);
569 break;
571 case TS_VAR_DECL:
572 MARK_TS_DECL_WITH_VIS (code);
573 break;
575 case TS_TYPE_DECL:
576 case TS_FUNCTION_DECL:
577 MARK_TS_DECL_NON_COMMON (code);
578 break;
580 case TS_TRANSLATION_UNIT_DECL:
581 MARK_TS_DECL_COMMON (code);
582 break;
584 default:
585 gcc_unreachable ();
589 /* Basic consistency checks for attributes used in fold. */
590 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
591 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
592 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
593 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
594 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
595 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
596 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
597 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
598 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
599 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
600 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
601 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
602 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
603 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
604 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
605 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
606 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
607 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
608 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
609 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
610 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
611 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
612 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
613 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
614 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
615 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
616 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
617 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
618 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
619 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
620 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
621 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
622 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
623 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
624 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
625 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
626 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
627 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
628 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_MINIMAL]);
629 gcc_assert (tree_contains_struct[NAMELIST_DECL][TS_DECL_COMMON]);
633 /* Init tree.c. */
635 void
636 init_ttree (void)
638 /* Initialize the hash table of types. */
639 type_hash_table
640 = hash_table<type_cache_hasher>::create_ggc (TYPE_HASH_INITIAL_SIZE);
642 debug_expr_for_decl
643 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
645 value_expr_for_decl
646 = hash_table<tree_decl_map_cache_hasher>::create_ggc (512);
648 int_cst_hash_table = hash_table<int_cst_hasher>::create_ggc (1024);
650 int_cst_node = make_int_cst (1, 1);
652 cl_option_hash_table = hash_table<cl_option_hasher>::create_ggc (64);
654 cl_optimization_node = make_node (OPTIMIZATION_NODE);
655 cl_target_option_node = make_node (TARGET_OPTION_NODE);
657 /* Initialize the tree_contains_struct array. */
658 initialize_tree_contains_struct ();
659 lang_hooks.init_ts ();
663 /* The name of the object as the assembler will see it (but before any
664 translations made by ASM_OUTPUT_LABELREF). Often this is the same
665 as DECL_NAME. It is an IDENTIFIER_NODE. */
666 tree
667 decl_assembler_name (tree decl)
669 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
670 lang_hooks.set_decl_assembler_name (decl);
671 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
674 /* When the target supports COMDAT groups, this indicates which group the
675 DECL is associated with. This can be either an IDENTIFIER_NODE or a
676 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
677 tree
678 decl_comdat_group (const_tree node)
680 struct symtab_node *snode = symtab_node::get (node);
681 if (!snode)
682 return NULL;
683 return snode->get_comdat_group ();
686 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
687 tree
688 decl_comdat_group_id (const_tree node)
690 struct symtab_node *snode = symtab_node::get (node);
691 if (!snode)
692 return NULL;
693 return snode->get_comdat_group_id ();
696 /* When the target supports named section, return its name as IDENTIFIER_NODE
697 or NULL if it is in no section. */
698 const char *
699 decl_section_name (const_tree node)
701 struct symtab_node *snode = symtab_node::get (node);
702 if (!snode)
703 return NULL;
704 return snode->get_section ();
707 /* Set section name of NODE to VALUE (that is expected to be
708 identifier node) */
709 void
710 set_decl_section_name (tree node, const char *value)
712 struct symtab_node *snode;
714 if (value == NULL)
716 snode = symtab_node::get (node);
717 if (!snode)
718 return;
720 else if (TREE_CODE (node) == VAR_DECL)
721 snode = varpool_node::get_create (node);
722 else
723 snode = cgraph_node::get_create (node);
724 snode->set_section (value);
727 /* Return TLS model of a variable NODE. */
728 enum tls_model
729 decl_tls_model (const_tree node)
731 struct varpool_node *snode = varpool_node::get (node);
732 if (!snode)
733 return TLS_MODEL_NONE;
734 return snode->tls_model;
737 /* Set TLS model of variable NODE to MODEL. */
738 void
739 set_decl_tls_model (tree node, enum tls_model model)
741 struct varpool_node *vnode;
743 if (model == TLS_MODEL_NONE)
745 vnode = varpool_node::get (node);
746 if (!vnode)
747 return;
749 else
750 vnode = varpool_node::get_create (node);
751 vnode->tls_model = model;
754 /* Compute the number of bytes occupied by a tree with code CODE.
755 This function cannot be used for nodes that have variable sizes,
756 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
757 size_t
758 tree_code_size (enum tree_code code)
760 switch (TREE_CODE_CLASS (code))
762 case tcc_declaration: /* A decl node */
764 switch (code)
766 case FIELD_DECL:
767 return sizeof (struct tree_field_decl);
768 case PARM_DECL:
769 return sizeof (struct tree_parm_decl);
770 case VAR_DECL:
771 return sizeof (struct tree_var_decl);
772 case LABEL_DECL:
773 return sizeof (struct tree_label_decl);
774 case RESULT_DECL:
775 return sizeof (struct tree_result_decl);
776 case CONST_DECL:
777 return sizeof (struct tree_const_decl);
778 case TYPE_DECL:
779 return sizeof (struct tree_type_decl);
780 case FUNCTION_DECL:
781 return sizeof (struct tree_function_decl);
782 case DEBUG_EXPR_DECL:
783 return sizeof (struct tree_decl_with_rtl);
784 case TRANSLATION_UNIT_DECL:
785 return sizeof (struct tree_translation_unit_decl);
786 case NAMESPACE_DECL:
787 case IMPORTED_DECL:
788 case NAMELIST_DECL:
789 return sizeof (struct tree_decl_non_common);
790 default:
791 return lang_hooks.tree_size (code);
795 case tcc_type: /* a type node */
796 return sizeof (struct tree_type_non_common);
798 case tcc_reference: /* a reference */
799 case tcc_expression: /* an expression */
800 case tcc_statement: /* an expression with side effects */
801 case tcc_comparison: /* a comparison expression */
802 case tcc_unary: /* a unary arithmetic expression */
803 case tcc_binary: /* a binary arithmetic expression */
804 return (sizeof (struct tree_exp)
805 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
807 case tcc_constant: /* a constant */
808 switch (code)
810 case VOID_CST: return sizeof (struct tree_typed);
811 case INTEGER_CST: gcc_unreachable ();
812 case REAL_CST: return sizeof (struct tree_real_cst);
813 case FIXED_CST: return sizeof (struct tree_fixed_cst);
814 case COMPLEX_CST: return sizeof (struct tree_complex);
815 case VECTOR_CST: return sizeof (struct tree_vector);
816 case STRING_CST: gcc_unreachable ();
817 default:
818 return lang_hooks.tree_size (code);
821 case tcc_exceptional: /* something random, like an identifier. */
822 switch (code)
824 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
825 case TREE_LIST: return sizeof (struct tree_list);
827 case ERROR_MARK:
828 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
830 case TREE_VEC:
831 case OMP_CLAUSE: gcc_unreachable ();
833 case SSA_NAME: return sizeof (struct tree_ssa_name);
835 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
836 case BLOCK: return sizeof (struct tree_block);
837 case CONSTRUCTOR: return sizeof (struct tree_constructor);
838 case OPTIMIZATION_NODE: return sizeof (struct tree_optimization_option);
839 case TARGET_OPTION_NODE: return sizeof (struct tree_target_option);
841 default:
842 return lang_hooks.tree_size (code);
845 default:
846 gcc_unreachable ();
850 /* Compute the number of bytes occupied by NODE. This routine only
851 looks at TREE_CODE, except for those nodes that have variable sizes. */
852 size_t
853 tree_size (const_tree node)
855 const enum tree_code code = TREE_CODE (node);
856 switch (code)
858 case INTEGER_CST:
859 return (sizeof (struct tree_int_cst)
860 + (TREE_INT_CST_EXT_NUNITS (node) - 1) * sizeof (HOST_WIDE_INT));
862 case TREE_BINFO:
863 return (offsetof (struct tree_binfo, base_binfos)
864 + vec<tree, va_gc>
865 ::embedded_size (BINFO_N_BASE_BINFOS (node)));
867 case TREE_VEC:
868 return (sizeof (struct tree_vec)
869 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
871 case VECTOR_CST:
872 return (sizeof (struct tree_vector)
873 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node)) - 1) * sizeof (tree));
875 case STRING_CST:
876 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
878 case OMP_CLAUSE:
879 return (sizeof (struct tree_omp_clause)
880 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
881 * sizeof (tree));
883 default:
884 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
885 return (sizeof (struct tree_exp)
886 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
887 else
888 return tree_code_size (code);
892 /* Record interesting allocation statistics for a tree node with CODE
893 and LENGTH. */
895 static void
896 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED,
897 size_t length ATTRIBUTE_UNUSED)
899 enum tree_code_class type = TREE_CODE_CLASS (code);
900 tree_node_kind kind;
902 if (!GATHER_STATISTICS)
903 return;
905 switch (type)
907 case tcc_declaration: /* A decl node */
908 kind = d_kind;
909 break;
911 case tcc_type: /* a type node */
912 kind = t_kind;
913 break;
915 case tcc_statement: /* an expression with side effects */
916 kind = s_kind;
917 break;
919 case tcc_reference: /* a reference */
920 kind = r_kind;
921 break;
923 case tcc_expression: /* an expression */
924 case tcc_comparison: /* a comparison expression */
925 case tcc_unary: /* a unary arithmetic expression */
926 case tcc_binary: /* a binary arithmetic expression */
927 kind = e_kind;
928 break;
930 case tcc_constant: /* a constant */
931 kind = c_kind;
932 break;
934 case tcc_exceptional: /* something random, like an identifier. */
935 switch (code)
937 case IDENTIFIER_NODE:
938 kind = id_kind;
939 break;
941 case TREE_VEC:
942 kind = vec_kind;
943 break;
945 case TREE_BINFO:
946 kind = binfo_kind;
947 break;
949 case SSA_NAME:
950 kind = ssa_name_kind;
951 break;
953 case BLOCK:
954 kind = b_kind;
955 break;
957 case CONSTRUCTOR:
958 kind = constr_kind;
959 break;
961 case OMP_CLAUSE:
962 kind = omp_clause_kind;
963 break;
965 default:
966 kind = x_kind;
967 break;
969 break;
971 case tcc_vl_exp:
972 kind = e_kind;
973 break;
975 default:
976 gcc_unreachable ();
979 tree_code_counts[(int) code]++;
980 tree_node_counts[(int) kind]++;
981 tree_node_sizes[(int) kind] += length;
984 /* Allocate and return a new UID from the DECL_UID namespace. */
987 allocate_decl_uid (void)
989 return next_decl_uid++;
992 /* Return a newly allocated node of code CODE. For decl and type
993 nodes, some other fields are initialized. The rest of the node is
994 initialized to zero. This function cannot be used for TREE_VEC,
995 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
996 tree_code_size.
998 Achoo! I got a code in the node. */
1000 tree
1001 make_node_stat (enum tree_code code MEM_STAT_DECL)
1003 tree t;
1004 enum tree_code_class type = TREE_CODE_CLASS (code);
1005 size_t length = tree_code_size (code);
1007 record_node_allocation_statistics (code, length);
1009 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1010 TREE_SET_CODE (t, code);
1012 switch (type)
1014 case tcc_statement:
1015 TREE_SIDE_EFFECTS (t) = 1;
1016 break;
1018 case tcc_declaration:
1019 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1021 if (code == FUNCTION_DECL)
1023 DECL_ALIGN (t) = FUNCTION_BOUNDARY;
1024 DECL_MODE (t) = FUNCTION_MODE;
1026 else
1027 DECL_ALIGN (t) = 1;
1029 DECL_SOURCE_LOCATION (t) = input_location;
1030 if (TREE_CODE (t) == DEBUG_EXPR_DECL)
1031 DECL_UID (t) = --next_debug_decl_uid;
1032 else
1034 DECL_UID (t) = allocate_decl_uid ();
1035 SET_DECL_PT_UID (t, -1);
1037 if (TREE_CODE (t) == LABEL_DECL)
1038 LABEL_DECL_UID (t) = -1;
1040 break;
1042 case tcc_type:
1043 TYPE_UID (t) = next_type_uid++;
1044 TYPE_ALIGN (t) = BITS_PER_UNIT;
1045 TYPE_USER_ALIGN (t) = 0;
1046 TYPE_MAIN_VARIANT (t) = t;
1047 TYPE_CANONICAL (t) = t;
1049 /* Default to no attributes for type, but let target change that. */
1050 TYPE_ATTRIBUTES (t) = NULL_TREE;
1051 targetm.set_default_type_attributes (t);
1053 /* We have not yet computed the alias set for this type. */
1054 TYPE_ALIAS_SET (t) = -1;
1055 break;
1057 case tcc_constant:
1058 TREE_CONSTANT (t) = 1;
1059 break;
1061 case tcc_expression:
1062 switch (code)
1064 case INIT_EXPR:
1065 case MODIFY_EXPR:
1066 case VA_ARG_EXPR:
1067 case PREDECREMENT_EXPR:
1068 case PREINCREMENT_EXPR:
1069 case POSTDECREMENT_EXPR:
1070 case POSTINCREMENT_EXPR:
1071 /* All of these have side-effects, no matter what their
1072 operands are. */
1073 TREE_SIDE_EFFECTS (t) = 1;
1074 break;
1076 default:
1077 break;
1079 break;
1081 case tcc_exceptional:
1082 switch (code)
1084 case TARGET_OPTION_NODE:
1085 TREE_TARGET_OPTION(t)
1086 = ggc_cleared_alloc<struct cl_target_option> ();
1087 break;
1089 case OPTIMIZATION_NODE:
1090 TREE_OPTIMIZATION (t)
1091 = ggc_cleared_alloc<struct cl_optimization> ();
1092 break;
1094 default:
1095 break;
1097 break;
1099 default:
1100 /* Other classes need no special treatment. */
1101 break;
1104 return t;
1107 /* Free tree node. */
1109 void
1110 free_node (tree node)
1112 enum tree_code code = TREE_CODE (node);
1113 if (GATHER_STATISTICS)
1115 tree_code_counts[(int) TREE_CODE (node)]--;
1116 tree_node_counts[(int) t_kind]--;
1117 tree_node_sizes[(int) t_kind] -= tree_size (node);
1119 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1120 vec_free (CONSTRUCTOR_ELTS (node));
1121 else if (code == BLOCK)
1122 vec_free (BLOCK_NONLOCALIZED_VARS (node));
1123 else if (code == TREE_BINFO)
1124 vec_free (BINFO_BASE_ACCESSES (node));
1125 ggc_free (node);
1128 /* Return a new node with the same contents as NODE except that its
1129 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1131 tree
1132 copy_node_stat (tree node MEM_STAT_DECL)
1134 tree t;
1135 enum tree_code code = TREE_CODE (node);
1136 size_t length;
1138 gcc_assert (code != STATEMENT_LIST);
1140 length = tree_size (node);
1141 record_node_allocation_statistics (code, length);
1142 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
1143 memcpy (t, node, length);
1145 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
1146 TREE_CHAIN (t) = 0;
1147 TREE_ASM_WRITTEN (t) = 0;
1148 TREE_VISITED (t) = 0;
1150 if (TREE_CODE_CLASS (code) == tcc_declaration)
1152 if (code == DEBUG_EXPR_DECL)
1153 DECL_UID (t) = --next_debug_decl_uid;
1154 else
1156 DECL_UID (t) = allocate_decl_uid ();
1157 if (DECL_PT_UID_SET_P (node))
1158 SET_DECL_PT_UID (t, DECL_PT_UID (node));
1160 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
1161 && DECL_HAS_VALUE_EXPR_P (node))
1163 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
1164 DECL_HAS_VALUE_EXPR_P (t) = 1;
1166 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1167 if (TREE_CODE (node) == VAR_DECL)
1169 DECL_HAS_DEBUG_EXPR_P (t) = 0;
1170 t->decl_with_vis.symtab_node = NULL;
1172 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
1174 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
1175 DECL_HAS_INIT_PRIORITY_P (t) = 1;
1177 if (TREE_CODE (node) == FUNCTION_DECL)
1179 DECL_STRUCT_FUNCTION (t) = NULL;
1180 t->decl_with_vis.symtab_node = NULL;
1183 else if (TREE_CODE_CLASS (code) == tcc_type)
1185 TYPE_UID (t) = next_type_uid++;
1186 /* The following is so that the debug code for
1187 the copy is different from the original type.
1188 The two statements usually duplicate each other
1189 (because they clear fields of the same union),
1190 but the optimizer should catch that. */
1191 TYPE_SYMTAB_POINTER (t) = 0;
1192 TYPE_SYMTAB_ADDRESS (t) = 0;
1194 /* Do not copy the values cache. */
1195 if (TYPE_CACHED_VALUES_P (t))
1197 TYPE_CACHED_VALUES_P (t) = 0;
1198 TYPE_CACHED_VALUES (t) = NULL_TREE;
1201 else if (code == TARGET_OPTION_NODE)
1203 TREE_TARGET_OPTION (t) = ggc_alloc<struct cl_target_option>();
1204 memcpy (TREE_TARGET_OPTION (t), TREE_TARGET_OPTION (node),
1205 sizeof (struct cl_target_option));
1207 else if (code == OPTIMIZATION_NODE)
1209 TREE_OPTIMIZATION (t) = ggc_alloc<struct cl_optimization>();
1210 memcpy (TREE_OPTIMIZATION (t), TREE_OPTIMIZATION (node),
1211 sizeof (struct cl_optimization));
1214 return t;
1217 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1218 For example, this can copy a list made of TREE_LIST nodes. */
1220 tree
1221 copy_list (tree list)
1223 tree head;
1224 tree prev, next;
1226 if (list == 0)
1227 return 0;
1229 head = prev = copy_node (list);
1230 next = TREE_CHAIN (list);
1231 while (next)
1233 TREE_CHAIN (prev) = copy_node (next);
1234 prev = TREE_CHAIN (prev);
1235 next = TREE_CHAIN (next);
1237 return head;
1241 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1242 INTEGER_CST with value CST and type TYPE. */
1244 static unsigned int
1245 get_int_cst_ext_nunits (tree type, const wide_int &cst)
1247 gcc_checking_assert (cst.get_precision () == TYPE_PRECISION (type));
1248 /* We need extra HWIs if CST is an unsigned integer with its
1249 upper bit set. */
1250 if (TYPE_UNSIGNED (type) && wi::neg_p (cst))
1251 return cst.get_precision () / HOST_BITS_PER_WIDE_INT + 1;
1252 return cst.get_len ();
1255 /* Return a new INTEGER_CST with value CST and type TYPE. */
1257 static tree
1258 build_new_int_cst (tree type, const wide_int &cst)
1260 unsigned int len = cst.get_len ();
1261 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1262 tree nt = make_int_cst (len, ext_len);
1264 if (len < ext_len)
1266 --ext_len;
1267 TREE_INT_CST_ELT (nt, ext_len)
1268 = zext_hwi (-1, cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1269 for (unsigned int i = len; i < ext_len; ++i)
1270 TREE_INT_CST_ELT (nt, i) = -1;
1272 else if (TYPE_UNSIGNED (type)
1273 && cst.get_precision () < len * HOST_BITS_PER_WIDE_INT)
1275 len--;
1276 TREE_INT_CST_ELT (nt, len)
1277 = zext_hwi (cst.elt (len),
1278 cst.get_precision () % HOST_BITS_PER_WIDE_INT);
1281 for (unsigned int i = 0; i < len; i++)
1282 TREE_INT_CST_ELT (nt, i) = cst.elt (i);
1283 TREE_TYPE (nt) = type;
1284 return nt;
1287 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1289 tree
1290 build_int_cst (tree type, HOST_WIDE_INT low)
1292 /* Support legacy code. */
1293 if (!type)
1294 type = integer_type_node;
1296 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1299 tree
1300 build_int_cstu (tree type, unsigned HOST_WIDE_INT cst)
1302 return wide_int_to_tree (type, wi::uhwi (cst, TYPE_PRECISION (type)));
1305 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1307 tree
1308 build_int_cst_type (tree type, HOST_WIDE_INT low)
1310 gcc_assert (type);
1311 return wide_int_to_tree (type, wi::shwi (low, TYPE_PRECISION (type)));
1314 /* Constructs tree in type TYPE from with value given by CST. Signedness
1315 of CST is assumed to be the same as the signedness of TYPE. */
1317 tree
1318 double_int_to_tree (tree type, double_int cst)
1320 return wide_int_to_tree (type, widest_int::from (cst, TYPE_SIGN (type)));
1323 /* We force the wide_int CST to the range of the type TYPE by sign or
1324 zero extending it. OVERFLOWABLE indicates if we are interested in
1325 overflow of the value, when >0 we are only interested in signed
1326 overflow, for <0 we are interested in any overflow. OVERFLOWED
1327 indicates whether overflow has already occurred. CONST_OVERFLOWED
1328 indicates whether constant overflow has already occurred. We force
1329 T's value to be within range of T's type (by setting to 0 or 1 all
1330 the bits outside the type's range). We set TREE_OVERFLOWED if,
1331 OVERFLOWED is nonzero,
1332 or OVERFLOWABLE is >0 and signed overflow occurs
1333 or OVERFLOWABLE is <0 and any overflow occurs
1334 We return a new tree node for the extended wide_int. The node
1335 is shared if no overflow flags are set. */
1338 tree
1339 force_fit_type (tree type, const wide_int_ref &cst,
1340 int overflowable, bool overflowed)
1342 signop sign = TYPE_SIGN (type);
1344 /* If we need to set overflow flags, return a new unshared node. */
1345 if (overflowed || !wi::fits_to_tree_p (cst, type))
1347 if (overflowed
1348 || overflowable < 0
1349 || (overflowable > 0 && sign == SIGNED))
1351 wide_int tmp = wide_int::from (cst, TYPE_PRECISION (type), sign);
1352 tree t = build_new_int_cst (type, tmp);
1353 TREE_OVERFLOW (t) = 1;
1354 return t;
1358 /* Else build a shared node. */
1359 return wide_int_to_tree (type, cst);
1362 /* These are the hash table functions for the hash table of INTEGER_CST
1363 nodes of a sizetype. */
1365 /* Return the hash code X, an INTEGER_CST. */
1367 hashval_t
1368 int_cst_hasher::hash (tree x)
1370 const_tree const t = x;
1371 hashval_t code = TYPE_UID (TREE_TYPE (t));
1372 int i;
1374 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
1375 code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
1377 return code;
1380 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1381 is the same as that given by *Y, which is the same. */
1383 bool
1384 int_cst_hasher::equal (tree x, tree y)
1386 const_tree const xt = x;
1387 const_tree const yt = y;
1389 if (TREE_TYPE (xt) != TREE_TYPE (yt)
1390 || TREE_INT_CST_NUNITS (xt) != TREE_INT_CST_NUNITS (yt)
1391 || TREE_INT_CST_EXT_NUNITS (xt) != TREE_INT_CST_EXT_NUNITS (yt))
1392 return false;
1394 for (int i = 0; i < TREE_INT_CST_NUNITS (xt); i++)
1395 if (TREE_INT_CST_ELT (xt, i) != TREE_INT_CST_ELT (yt, i))
1396 return false;
1398 return true;
1401 /* Create an INT_CST node of TYPE and value CST.
1402 The returned node is always shared. For small integers we use a
1403 per-type vector cache, for larger ones we use a single hash table.
1404 The value is extended from its precision according to the sign of
1405 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1406 the upper bits and ensures that hashing and value equality based
1407 upon the underlying HOST_WIDE_INTs works without masking. */
1409 tree
1410 wide_int_to_tree (tree type, const wide_int_ref &pcst)
1412 tree t;
1413 int ix = -1;
1414 int limit = 0;
1416 gcc_assert (type);
1417 unsigned int prec = TYPE_PRECISION (type);
1418 signop sgn = TYPE_SIGN (type);
1420 /* Verify that everything is canonical. */
1421 int l = pcst.get_len ();
1422 if (l > 1)
1424 if (pcst.elt (l - 1) == 0)
1425 gcc_checking_assert (pcst.elt (l - 2) < 0);
1426 if (pcst.elt (l - 1) == (HOST_WIDE_INT) -1)
1427 gcc_checking_assert (pcst.elt (l - 2) >= 0);
1430 wide_int cst = wide_int::from (pcst, prec, sgn);
1431 unsigned int ext_len = get_int_cst_ext_nunits (type, cst);
1433 if (ext_len == 1)
1435 /* We just need to store a single HOST_WIDE_INT. */
1436 HOST_WIDE_INT hwi;
1437 if (TYPE_UNSIGNED (type))
1438 hwi = cst.to_uhwi ();
1439 else
1440 hwi = cst.to_shwi ();
1442 switch (TREE_CODE (type))
1444 case NULLPTR_TYPE:
1445 gcc_assert (hwi == 0);
1446 /* Fallthru. */
1448 case POINTER_TYPE:
1449 case REFERENCE_TYPE:
1450 case POINTER_BOUNDS_TYPE:
1451 /* Cache NULL pointer and zero bounds. */
1452 if (hwi == 0)
1454 limit = 1;
1455 ix = 0;
1457 break;
1459 case BOOLEAN_TYPE:
1460 /* Cache false or true. */
1461 limit = 2;
1462 if (IN_RANGE (hwi, 0, 1))
1463 ix = hwi;
1464 break;
1466 case INTEGER_TYPE:
1467 case OFFSET_TYPE:
1468 if (TYPE_SIGN (type) == UNSIGNED)
1470 /* Cache [0, N). */
1471 limit = INTEGER_SHARE_LIMIT;
1472 if (IN_RANGE (hwi, 0, INTEGER_SHARE_LIMIT - 1))
1473 ix = hwi;
1475 else
1477 /* Cache [-1, N). */
1478 limit = INTEGER_SHARE_LIMIT + 1;
1479 if (IN_RANGE (hwi, -1, INTEGER_SHARE_LIMIT - 1))
1480 ix = hwi + 1;
1482 break;
1484 case ENUMERAL_TYPE:
1485 break;
1487 default:
1488 gcc_unreachable ();
1491 if (ix >= 0)
1493 /* Look for it in the type's vector of small shared ints. */
1494 if (!TYPE_CACHED_VALUES_P (type))
1496 TYPE_CACHED_VALUES_P (type) = 1;
1497 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1500 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1501 if (t)
1502 /* Make sure no one is clobbering the shared constant. */
1503 gcc_checking_assert (TREE_TYPE (t) == type
1504 && TREE_INT_CST_NUNITS (t) == 1
1505 && TREE_INT_CST_OFFSET_NUNITS (t) == 1
1506 && TREE_INT_CST_EXT_NUNITS (t) == 1
1507 && TREE_INT_CST_ELT (t, 0) == hwi);
1508 else
1510 /* Create a new shared int. */
1511 t = build_new_int_cst (type, cst);
1512 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1515 else
1517 /* Use the cache of larger shared ints, using int_cst_node as
1518 a temporary. */
1520 TREE_INT_CST_ELT (int_cst_node, 0) = hwi;
1521 TREE_TYPE (int_cst_node) = type;
1523 tree *slot = int_cst_hash_table->find_slot (int_cst_node, INSERT);
1524 t = *slot;
1525 if (!t)
1527 /* Insert this one into the hash table. */
1528 t = int_cst_node;
1529 *slot = t;
1530 /* Make a new node for next time round. */
1531 int_cst_node = make_int_cst (1, 1);
1535 else
1537 /* The value either hashes properly or we drop it on the floor
1538 for the gc to take care of. There will not be enough of them
1539 to worry about. */
1541 tree nt = build_new_int_cst (type, cst);
1542 tree *slot = int_cst_hash_table->find_slot (nt, INSERT);
1543 t = *slot;
1544 if (!t)
1546 /* Insert this one into the hash table. */
1547 t = nt;
1548 *slot = t;
1552 return t;
1555 void
1556 cache_integer_cst (tree t)
1558 tree type = TREE_TYPE (t);
1559 int ix = -1;
1560 int limit = 0;
1561 int prec = TYPE_PRECISION (type);
1563 gcc_assert (!TREE_OVERFLOW (t));
1565 switch (TREE_CODE (type))
1567 case NULLPTR_TYPE:
1568 gcc_assert (integer_zerop (t));
1569 /* Fallthru. */
1571 case POINTER_TYPE:
1572 case REFERENCE_TYPE:
1573 /* Cache NULL pointer. */
1574 if (integer_zerop (t))
1576 limit = 1;
1577 ix = 0;
1579 break;
1581 case BOOLEAN_TYPE:
1582 /* Cache false or true. */
1583 limit = 2;
1584 if (wi::ltu_p (t, 2))
1585 ix = TREE_INT_CST_ELT (t, 0);
1586 break;
1588 case INTEGER_TYPE:
1589 case OFFSET_TYPE:
1590 if (TYPE_UNSIGNED (type))
1592 /* Cache 0..N */
1593 limit = INTEGER_SHARE_LIMIT;
1595 /* This is a little hokie, but if the prec is smaller than
1596 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1597 obvious test will not get the correct answer. */
1598 if (prec < HOST_BITS_PER_WIDE_INT)
1600 if (tree_to_uhwi (t) < (unsigned HOST_WIDE_INT) INTEGER_SHARE_LIMIT)
1601 ix = tree_to_uhwi (t);
1603 else if (wi::ltu_p (t, INTEGER_SHARE_LIMIT))
1604 ix = tree_to_uhwi (t);
1606 else
1608 /* Cache -1..N */
1609 limit = INTEGER_SHARE_LIMIT + 1;
1611 if (integer_minus_onep (t))
1612 ix = 0;
1613 else if (!wi::neg_p (t))
1615 if (prec < HOST_BITS_PER_WIDE_INT)
1617 if (tree_to_shwi (t) < INTEGER_SHARE_LIMIT)
1618 ix = tree_to_shwi (t) + 1;
1620 else if (wi::ltu_p (t, INTEGER_SHARE_LIMIT))
1621 ix = tree_to_shwi (t) + 1;
1624 break;
1626 case ENUMERAL_TYPE:
1627 break;
1629 default:
1630 gcc_unreachable ();
1633 if (ix >= 0)
1635 /* Look for it in the type's vector of small shared ints. */
1636 if (!TYPE_CACHED_VALUES_P (type))
1638 TYPE_CACHED_VALUES_P (type) = 1;
1639 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1642 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) == NULL_TREE);
1643 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1645 else
1647 /* Use the cache of larger shared ints. */
1648 tree *slot = int_cst_hash_table->find_slot (t, INSERT);
1649 /* If there is already an entry for the number verify it's the
1650 same. */
1651 if (*slot)
1652 gcc_assert (wi::eq_p (tree (*slot), t));
1653 else
1654 /* Otherwise insert this one into the hash table. */
1655 *slot = t;
1660 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1661 and the rest are zeros. */
1663 tree
1664 build_low_bits_mask (tree type, unsigned bits)
1666 gcc_assert (bits <= TYPE_PRECISION (type));
1668 return wide_int_to_tree (type, wi::mask (bits, false,
1669 TYPE_PRECISION (type)));
1672 /* Checks that X is integer constant that can be expressed in (unsigned)
1673 HOST_WIDE_INT without loss of precision. */
1675 bool
1676 cst_and_fits_in_hwi (const_tree x)
1678 if (TREE_CODE (x) != INTEGER_CST)
1679 return false;
1681 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1682 return false;
1684 return TREE_INT_CST_NUNITS (x) == 1;
1687 /* Build a newly constructed VECTOR_CST node of length LEN. */
1689 tree
1690 make_vector_stat (unsigned len MEM_STAT_DECL)
1692 tree t;
1693 unsigned length = (len - 1) * sizeof (tree) + sizeof (struct tree_vector);
1695 record_node_allocation_statistics (VECTOR_CST, length);
1697 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
1699 TREE_SET_CODE (t, VECTOR_CST);
1700 TREE_CONSTANT (t) = 1;
1702 return t;
1705 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1706 are in a list pointed to by VALS. */
1708 tree
1709 build_vector_stat (tree type, tree *vals MEM_STAT_DECL)
1711 int over = 0;
1712 unsigned cnt = 0;
1713 tree v = make_vector (TYPE_VECTOR_SUBPARTS (type));
1714 TREE_TYPE (v) = type;
1716 /* Iterate through elements and check for overflow. */
1717 for (cnt = 0; cnt < TYPE_VECTOR_SUBPARTS (type); ++cnt)
1719 tree value = vals[cnt];
1721 VECTOR_CST_ELT (v, cnt) = value;
1723 /* Don't crash if we get an address constant. */
1724 if (!CONSTANT_CLASS_P (value))
1725 continue;
1727 over |= TREE_OVERFLOW (value);
1730 TREE_OVERFLOW (v) = over;
1731 return v;
1734 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1735 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1737 tree
1738 build_vector_from_ctor (tree type, vec<constructor_elt, va_gc> *v)
1740 tree *vec = XALLOCAVEC (tree, TYPE_VECTOR_SUBPARTS (type));
1741 unsigned HOST_WIDE_INT idx, pos = 0;
1742 tree value;
1744 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1746 if (TREE_CODE (value) == VECTOR_CST)
1747 for (unsigned i = 0; i < VECTOR_CST_NELTS (value); ++i)
1748 vec[pos++] = VECTOR_CST_ELT (value, i);
1749 else
1750 vec[pos++] = value;
1752 while (pos < TYPE_VECTOR_SUBPARTS (type))
1753 vec[pos++] = build_zero_cst (TREE_TYPE (type));
1755 return build_vector (type, vec);
1758 /* Build a vector of type VECTYPE where all the elements are SCs. */
1759 tree
1760 build_vector_from_val (tree vectype, tree sc)
1762 int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1764 if (sc == error_mark_node)
1765 return sc;
1767 /* Verify that the vector type is suitable for SC. Note that there
1768 is some inconsistency in the type-system with respect to restrict
1769 qualifications of pointers. Vector types always have a main-variant
1770 element type and the qualification is applied to the vector-type.
1771 So TREE_TYPE (vector-type) does not return a properly qualified
1772 vector element-type. */
1773 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1774 TREE_TYPE (vectype)));
1776 if (CONSTANT_CLASS_P (sc))
1778 tree *v = XALLOCAVEC (tree, nunits);
1779 for (i = 0; i < nunits; ++i)
1780 v[i] = sc;
1781 return build_vector (vectype, v);
1783 else
1785 vec<constructor_elt, va_gc> *v;
1786 vec_alloc (v, nunits);
1787 for (i = 0; i < nunits; ++i)
1788 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1789 return build_constructor (vectype, v);
1793 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1794 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1796 void
1797 recompute_constructor_flags (tree c)
1799 unsigned int i;
1800 tree val;
1801 bool constant_p = true;
1802 bool side_effects_p = false;
1803 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1805 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1807 /* Mostly ctors will have elts that don't have side-effects, so
1808 the usual case is to scan all the elements. Hence a single
1809 loop for both const and side effects, rather than one loop
1810 each (with early outs). */
1811 if (!TREE_CONSTANT (val))
1812 constant_p = false;
1813 if (TREE_SIDE_EFFECTS (val))
1814 side_effects_p = true;
1817 TREE_SIDE_EFFECTS (c) = side_effects_p;
1818 TREE_CONSTANT (c) = constant_p;
1821 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1822 CONSTRUCTOR C. */
1824 void
1825 verify_constructor_flags (tree c)
1827 unsigned int i;
1828 tree val;
1829 bool constant_p = TREE_CONSTANT (c);
1830 bool side_effects_p = TREE_SIDE_EFFECTS (c);
1831 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c);
1833 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val)
1835 if (constant_p && !TREE_CONSTANT (val))
1836 internal_error ("non-constant element in constant CONSTRUCTOR");
1837 if (!side_effects_p && TREE_SIDE_EFFECTS (val))
1838 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1842 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1843 are in the vec pointed to by VALS. */
1844 tree
1845 build_constructor (tree type, vec<constructor_elt, va_gc> *vals)
1847 tree c = make_node (CONSTRUCTOR);
1849 TREE_TYPE (c) = type;
1850 CONSTRUCTOR_ELTS (c) = vals;
1852 recompute_constructor_flags (c);
1854 return c;
1857 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1858 INDEX and VALUE. */
1859 tree
1860 build_constructor_single (tree type, tree index, tree value)
1862 vec<constructor_elt, va_gc> *v;
1863 constructor_elt elt = {index, value};
1865 vec_alloc (v, 1);
1866 v->quick_push (elt);
1868 return build_constructor (type, v);
1872 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1873 are in a list pointed to by VALS. */
1874 tree
1875 build_constructor_from_list (tree type, tree vals)
1877 tree t;
1878 vec<constructor_elt, va_gc> *v = NULL;
1880 if (vals)
1882 vec_alloc (v, list_length (vals));
1883 for (t = vals; t; t = TREE_CHAIN (t))
1884 CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
1887 return build_constructor (type, v);
1890 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1891 of elements, provided as index/value pairs. */
1893 tree
1894 build_constructor_va (tree type, int nelts, ...)
1896 vec<constructor_elt, va_gc> *v = NULL;
1897 va_list p;
1899 va_start (p, nelts);
1900 vec_alloc (v, nelts);
1901 while (nelts--)
1903 tree index = va_arg (p, tree);
1904 tree value = va_arg (p, tree);
1905 CONSTRUCTOR_APPEND_ELT (v, index, value);
1907 va_end (p);
1908 return build_constructor (type, v);
1911 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1913 tree
1914 build_fixed (tree type, FIXED_VALUE_TYPE f)
1916 tree v;
1917 FIXED_VALUE_TYPE *fp;
1919 v = make_node (FIXED_CST);
1920 fp = ggc_alloc<fixed_value> ();
1921 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1923 TREE_TYPE (v) = type;
1924 TREE_FIXED_CST_PTR (v) = fp;
1925 return v;
1928 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1930 tree
1931 build_real (tree type, REAL_VALUE_TYPE d)
1933 tree v;
1934 REAL_VALUE_TYPE *dp;
1935 int overflow = 0;
1937 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1938 Consider doing it via real_convert now. */
1940 v = make_node (REAL_CST);
1941 dp = ggc_alloc<real_value> ();
1942 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1944 TREE_TYPE (v) = type;
1945 TREE_REAL_CST_PTR (v) = dp;
1946 TREE_OVERFLOW (v) = overflow;
1947 return v;
1950 /* Like build_real, but first truncate D to the type. */
1952 tree
1953 build_real_truncate (tree type, REAL_VALUE_TYPE d)
1955 return build_real (type, real_value_truncate (TYPE_MODE (type), d));
1958 /* Return a new REAL_CST node whose type is TYPE
1959 and whose value is the integer value of the INTEGER_CST node I. */
1961 REAL_VALUE_TYPE
1962 real_value_from_int_cst (const_tree type, const_tree i)
1964 REAL_VALUE_TYPE d;
1966 /* Clear all bits of the real value type so that we can later do
1967 bitwise comparisons to see if two values are the same. */
1968 memset (&d, 0, sizeof d);
1970 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode, i,
1971 TYPE_SIGN (TREE_TYPE (i)));
1972 return d;
1975 /* Given a tree representing an integer constant I, return a tree
1976 representing the same value as a floating-point constant of type TYPE. */
1978 tree
1979 build_real_from_int_cst (tree type, const_tree i)
1981 tree v;
1982 int overflow = TREE_OVERFLOW (i);
1984 v = build_real (type, real_value_from_int_cst (type, i));
1986 TREE_OVERFLOW (v) |= overflow;
1987 return v;
1990 /* Return a newly constructed STRING_CST node whose value is
1991 the LEN characters at STR.
1992 Note that for a C string literal, LEN should include the trailing NUL.
1993 The TREE_TYPE is not initialized. */
1995 tree
1996 build_string (int len, const char *str)
1998 tree s;
1999 size_t length;
2001 /* Do not waste bytes provided by padding of struct tree_string. */
2002 length = len + offsetof (struct tree_string, str) + 1;
2004 record_node_allocation_statistics (STRING_CST, length);
2006 s = (tree) ggc_internal_alloc (length);
2008 memset (s, 0, sizeof (struct tree_typed));
2009 TREE_SET_CODE (s, STRING_CST);
2010 TREE_CONSTANT (s) = 1;
2011 TREE_STRING_LENGTH (s) = len;
2012 memcpy (s->string.str, str, len);
2013 s->string.str[len] = '\0';
2015 return s;
2018 /* Return a newly constructed COMPLEX_CST node whose value is
2019 specified by the real and imaginary parts REAL and IMAG.
2020 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2021 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2023 tree
2024 build_complex (tree type, tree real, tree imag)
2026 tree t = make_node (COMPLEX_CST);
2028 TREE_REALPART (t) = real;
2029 TREE_IMAGPART (t) = imag;
2030 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
2031 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
2032 return t;
2035 /* Build a complex (inf +- 0i), such as for the result of cproj.
2036 TYPE is the complex tree type of the result. If NEG is true, the
2037 imaginary zero is negative. */
2039 tree
2040 build_complex_inf (tree type, bool neg)
2042 REAL_VALUE_TYPE rinf, rzero = dconst0;
2044 real_inf (&rinf);
2045 rzero.sign = neg;
2046 return build_complex (type, build_real (TREE_TYPE (type), rinf),
2047 build_real (TREE_TYPE (type), rzero));
2050 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2051 element is set to 1. In particular, this is 1 + i for complex types. */
2053 tree
2054 build_each_one_cst (tree type)
2056 if (TREE_CODE (type) == COMPLEX_TYPE)
2058 tree scalar = build_one_cst (TREE_TYPE (type));
2059 return build_complex (type, scalar, scalar);
2061 else
2062 return build_one_cst (type);
2065 /* Return a constant of arithmetic type TYPE which is the
2066 multiplicative identity of the set TYPE. */
2068 tree
2069 build_one_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:
2076 return build_int_cst (type, 1);
2078 case REAL_TYPE:
2079 return build_real (type, dconst1);
2081 case FIXED_POINT_TYPE:
2082 /* We can only generate 1 for accum types. */
2083 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2084 return build_fixed (type, FCONST1 (TYPE_MODE (type)));
2086 case VECTOR_TYPE:
2088 tree scalar = build_one_cst (TREE_TYPE (type));
2090 return build_vector_from_val (type, scalar);
2093 case COMPLEX_TYPE:
2094 return build_complex (type,
2095 build_one_cst (TREE_TYPE (type)),
2096 build_zero_cst (TREE_TYPE (type)));
2098 default:
2099 gcc_unreachable ();
2103 /* Return an integer of type TYPE containing all 1's in as much precision as
2104 it contains, or a complex or vector whose subparts are such integers. */
2106 tree
2107 build_all_ones_cst (tree type)
2109 if (TREE_CODE (type) == COMPLEX_TYPE)
2111 tree scalar = build_all_ones_cst (TREE_TYPE (type));
2112 return build_complex (type, scalar, scalar);
2114 else
2115 return build_minus_one_cst (type);
2118 /* Return a constant of arithmetic type TYPE which is the
2119 opposite of the multiplicative identity of the set TYPE. */
2121 tree
2122 build_minus_one_cst (tree type)
2124 switch (TREE_CODE (type))
2126 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2127 case POINTER_TYPE: case REFERENCE_TYPE:
2128 case OFFSET_TYPE:
2129 return build_int_cst (type, -1);
2131 case REAL_TYPE:
2132 return build_real (type, dconstm1);
2134 case FIXED_POINT_TYPE:
2135 /* We can only generate 1 for accum types. */
2136 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
2137 return build_fixed (type, fixed_from_double_int (double_int_minus_one,
2138 TYPE_MODE (type)));
2140 case VECTOR_TYPE:
2142 tree scalar = build_minus_one_cst (TREE_TYPE (type));
2144 return build_vector_from_val (type, scalar);
2147 case COMPLEX_TYPE:
2148 return build_complex (type,
2149 build_minus_one_cst (TREE_TYPE (type)),
2150 build_zero_cst (TREE_TYPE (type)));
2152 default:
2153 gcc_unreachable ();
2157 /* Build 0 constant of type TYPE. This is used by constructor folding
2158 and thus the constant should be represented in memory by
2159 zero(es). */
2161 tree
2162 build_zero_cst (tree type)
2164 switch (TREE_CODE (type))
2166 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2167 case POINTER_TYPE: case REFERENCE_TYPE:
2168 case OFFSET_TYPE: case NULLPTR_TYPE:
2169 return build_int_cst (type, 0);
2171 case REAL_TYPE:
2172 return build_real (type, dconst0);
2174 case FIXED_POINT_TYPE:
2175 return build_fixed (type, FCONST0 (TYPE_MODE (type)));
2177 case VECTOR_TYPE:
2179 tree scalar = build_zero_cst (TREE_TYPE (type));
2181 return build_vector_from_val (type, scalar);
2184 case COMPLEX_TYPE:
2186 tree zero = build_zero_cst (TREE_TYPE (type));
2188 return build_complex (type, zero, zero);
2191 default:
2192 if (!AGGREGATE_TYPE_P (type))
2193 return fold_convert (type, integer_zero_node);
2194 return build_constructor (type, NULL);
2199 /* Build a BINFO with LEN language slots. */
2201 tree
2202 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
2204 tree t;
2205 size_t length = (offsetof (struct tree_binfo, base_binfos)
2206 + vec<tree, va_gc>::embedded_size (base_binfos));
2208 record_node_allocation_statistics (TREE_BINFO, length);
2210 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
2212 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
2214 TREE_SET_CODE (t, TREE_BINFO);
2216 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos);
2218 return t;
2221 /* Create a CASE_LABEL_EXPR tree node and return it. */
2223 tree
2224 build_case_label (tree low_value, tree high_value, tree label_decl)
2226 tree t = make_node (CASE_LABEL_EXPR);
2228 TREE_TYPE (t) = void_type_node;
2229 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
2231 CASE_LOW (t) = low_value;
2232 CASE_HIGH (t) = high_value;
2233 CASE_LABEL (t) = label_decl;
2234 CASE_CHAIN (t) = NULL_TREE;
2236 return t;
2239 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2240 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2241 The latter determines the length of the HOST_WIDE_INT vector. */
2243 tree
2244 make_int_cst_stat (int len, int ext_len MEM_STAT_DECL)
2246 tree t;
2247 int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
2248 + sizeof (struct tree_int_cst));
2250 gcc_assert (len);
2251 record_node_allocation_statistics (INTEGER_CST, length);
2253 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2255 TREE_SET_CODE (t, INTEGER_CST);
2256 TREE_INT_CST_NUNITS (t) = len;
2257 TREE_INT_CST_EXT_NUNITS (t) = ext_len;
2258 /* to_offset can only be applied to trees that are offset_int-sized
2259 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2260 must be exactly the precision of offset_int and so LEN is correct. */
2261 if (ext_len <= OFFSET_INT_ELTS)
2262 TREE_INT_CST_OFFSET_NUNITS (t) = ext_len;
2263 else
2264 TREE_INT_CST_OFFSET_NUNITS (t) = len;
2266 TREE_CONSTANT (t) = 1;
2268 return t;
2271 /* Build a newly constructed TREE_VEC node of length LEN. */
2273 tree
2274 make_tree_vec_stat (int len MEM_STAT_DECL)
2276 tree t;
2277 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2279 record_node_allocation_statistics (TREE_VEC, length);
2281 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2283 TREE_SET_CODE (t, TREE_VEC);
2284 TREE_VEC_LENGTH (t) = len;
2286 return t;
2289 /* Grow a TREE_VEC node to new length LEN. */
2291 tree
2292 grow_tree_vec_stat (tree v, int len MEM_STAT_DECL)
2294 gcc_assert (TREE_CODE (v) == TREE_VEC);
2296 int oldlen = TREE_VEC_LENGTH (v);
2297 gcc_assert (len > oldlen);
2299 int oldlength = (oldlen - 1) * sizeof (tree) + sizeof (struct tree_vec);
2300 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
2302 record_node_allocation_statistics (TREE_VEC, length - oldlength);
2304 v = (tree) ggc_realloc (v, length PASS_MEM_STAT);
2306 TREE_VEC_LENGTH (v) = len;
2308 return v;
2311 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2312 fixed, and scalar, complex or vector. */
2315 zerop (const_tree expr)
2317 return (integer_zerop (expr)
2318 || real_zerop (expr)
2319 || fixed_zerop (expr));
2322 /* Return 1 if EXPR is the integer constant zero or a complex constant
2323 of zero. */
2326 integer_zerop (const_tree expr)
2328 switch (TREE_CODE (expr))
2330 case INTEGER_CST:
2331 return wi::eq_p (expr, 0);
2332 case COMPLEX_CST:
2333 return (integer_zerop (TREE_REALPART (expr))
2334 && integer_zerop (TREE_IMAGPART (expr)));
2335 case VECTOR_CST:
2337 unsigned i;
2338 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2339 if (!integer_zerop (VECTOR_CST_ELT (expr, i)))
2340 return false;
2341 return true;
2343 default:
2344 return false;
2348 /* Return 1 if EXPR is the integer constant one or the corresponding
2349 complex constant. */
2352 integer_onep (const_tree expr)
2354 switch (TREE_CODE (expr))
2356 case INTEGER_CST:
2357 return wi::eq_p (wi::to_widest (expr), 1);
2358 case COMPLEX_CST:
2359 return (integer_onep (TREE_REALPART (expr))
2360 && integer_zerop (TREE_IMAGPART (expr)));
2361 case VECTOR_CST:
2363 unsigned i;
2364 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2365 if (!integer_onep (VECTOR_CST_ELT (expr, i)))
2366 return false;
2367 return true;
2369 default:
2370 return false;
2374 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2375 return 1 if every piece is the integer constant one. */
2378 integer_each_onep (const_tree expr)
2380 if (TREE_CODE (expr) == COMPLEX_CST)
2381 return (integer_onep (TREE_REALPART (expr))
2382 && integer_onep (TREE_IMAGPART (expr)));
2383 else
2384 return integer_onep (expr);
2387 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2388 it contains, or a complex or vector whose subparts are such integers. */
2391 integer_all_onesp (const_tree expr)
2393 if (TREE_CODE (expr) == COMPLEX_CST
2394 && integer_all_onesp (TREE_REALPART (expr))
2395 && integer_all_onesp (TREE_IMAGPART (expr)))
2396 return 1;
2398 else if (TREE_CODE (expr) == VECTOR_CST)
2400 unsigned i;
2401 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2402 if (!integer_all_onesp (VECTOR_CST_ELT (expr, i)))
2403 return 0;
2404 return 1;
2407 else if (TREE_CODE (expr) != INTEGER_CST)
2408 return 0;
2410 return wi::max_value (TYPE_PRECISION (TREE_TYPE (expr)), UNSIGNED) == expr;
2413 /* Return 1 if EXPR is the integer constant minus one. */
2416 integer_minus_onep (const_tree expr)
2418 if (TREE_CODE (expr) == COMPLEX_CST)
2419 return (integer_all_onesp (TREE_REALPART (expr))
2420 && integer_zerop (TREE_IMAGPART (expr)));
2421 else
2422 return integer_all_onesp (expr);
2425 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2426 one bit on). */
2429 integer_pow2p (const_tree expr)
2431 if (TREE_CODE (expr) == COMPLEX_CST
2432 && integer_pow2p (TREE_REALPART (expr))
2433 && integer_zerop (TREE_IMAGPART (expr)))
2434 return 1;
2436 if (TREE_CODE (expr) != INTEGER_CST)
2437 return 0;
2439 return wi::popcount (expr) == 1;
2442 /* Return 1 if EXPR is an integer constant other than zero or a
2443 complex constant other than zero. */
2446 integer_nonzerop (const_tree expr)
2448 return ((TREE_CODE (expr) == INTEGER_CST
2449 && !wi::eq_p (expr, 0))
2450 || (TREE_CODE (expr) == COMPLEX_CST
2451 && (integer_nonzerop (TREE_REALPART (expr))
2452 || integer_nonzerop (TREE_IMAGPART (expr)))));
2455 /* Return 1 if EXPR is the integer constant one. For vector,
2456 return 1 if every piece is the integer constant minus one
2457 (representing the value TRUE). */
2460 integer_truep (const_tree expr)
2462 if (TREE_CODE (expr) == VECTOR_CST)
2463 return integer_all_onesp (expr);
2464 return integer_onep (expr);
2467 /* Return 1 if EXPR is the fixed-point constant zero. */
2470 fixed_zerop (const_tree expr)
2472 return (TREE_CODE (expr) == FIXED_CST
2473 && TREE_FIXED_CST (expr).data.is_zero ());
2476 /* Return the power of two represented by a tree node known to be a
2477 power of two. */
2480 tree_log2 (const_tree expr)
2482 if (TREE_CODE (expr) == COMPLEX_CST)
2483 return tree_log2 (TREE_REALPART (expr));
2485 return wi::exact_log2 (expr);
2488 /* Similar, but return the largest integer Y such that 2 ** Y is less
2489 than or equal to EXPR. */
2492 tree_floor_log2 (const_tree expr)
2494 if (TREE_CODE (expr) == COMPLEX_CST)
2495 return tree_log2 (TREE_REALPART (expr));
2497 return wi::floor_log2 (expr);
2500 /* Return number of known trailing zero bits in EXPR, or, if the value of
2501 EXPR is known to be zero, the precision of it's type. */
2503 unsigned int
2504 tree_ctz (const_tree expr)
2506 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
2507 && !POINTER_TYPE_P (TREE_TYPE (expr)))
2508 return 0;
2510 unsigned int ret1, ret2, prec = TYPE_PRECISION (TREE_TYPE (expr));
2511 switch (TREE_CODE (expr))
2513 case INTEGER_CST:
2514 ret1 = wi::ctz (expr);
2515 return MIN (ret1, prec);
2516 case SSA_NAME:
2517 ret1 = wi::ctz (get_nonzero_bits (expr));
2518 return MIN (ret1, prec);
2519 case PLUS_EXPR:
2520 case MINUS_EXPR:
2521 case BIT_IOR_EXPR:
2522 case BIT_XOR_EXPR:
2523 case MIN_EXPR:
2524 case MAX_EXPR:
2525 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2526 if (ret1 == 0)
2527 return ret1;
2528 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2529 return MIN (ret1, ret2);
2530 case POINTER_PLUS_EXPR:
2531 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2532 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2533 /* Second operand is sizetype, which could be in theory
2534 wider than pointer's precision. Make sure we never
2535 return more than prec. */
2536 ret2 = MIN (ret2, prec);
2537 return MIN (ret1, ret2);
2538 case BIT_AND_EXPR:
2539 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2540 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2541 return MAX (ret1, ret2);
2542 case MULT_EXPR:
2543 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2544 ret2 = tree_ctz (TREE_OPERAND (expr, 1));
2545 return MIN (ret1 + ret2, prec);
2546 case LSHIFT_EXPR:
2547 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2548 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2549 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2551 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2552 return MIN (ret1 + ret2, prec);
2554 return ret1;
2555 case RSHIFT_EXPR:
2556 if (tree_fits_uhwi_p (TREE_OPERAND (expr, 1))
2557 && (tree_to_uhwi (TREE_OPERAND (expr, 1)) < prec))
2559 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2560 ret2 = tree_to_uhwi (TREE_OPERAND (expr, 1));
2561 if (ret1 > ret2)
2562 return ret1 - ret2;
2564 return 0;
2565 case TRUNC_DIV_EXPR:
2566 case CEIL_DIV_EXPR:
2567 case FLOOR_DIV_EXPR:
2568 case ROUND_DIV_EXPR:
2569 case EXACT_DIV_EXPR:
2570 if (TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST
2571 && tree_int_cst_sgn (TREE_OPERAND (expr, 1)) == 1)
2573 int l = tree_log2 (TREE_OPERAND (expr, 1));
2574 if (l >= 0)
2576 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2577 ret2 = l;
2578 if (ret1 > ret2)
2579 return ret1 - ret2;
2582 return 0;
2583 CASE_CONVERT:
2584 ret1 = tree_ctz (TREE_OPERAND (expr, 0));
2585 if (ret1 && ret1 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2586 ret1 = prec;
2587 return MIN (ret1, prec);
2588 case SAVE_EXPR:
2589 return tree_ctz (TREE_OPERAND (expr, 0));
2590 case COND_EXPR:
2591 ret1 = tree_ctz (TREE_OPERAND (expr, 1));
2592 if (ret1 == 0)
2593 return 0;
2594 ret2 = tree_ctz (TREE_OPERAND (expr, 2));
2595 return MIN (ret1, ret2);
2596 case COMPOUND_EXPR:
2597 return tree_ctz (TREE_OPERAND (expr, 1));
2598 case ADDR_EXPR:
2599 ret1 = get_pointer_alignment (CONST_CAST_TREE (expr));
2600 if (ret1 > BITS_PER_UNIT)
2602 ret1 = ctz_hwi (ret1 / BITS_PER_UNIT);
2603 return MIN (ret1, prec);
2605 return 0;
2606 default:
2607 return 0;
2611 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2612 decimal float constants, so don't return 1 for them. */
2615 real_zerop (const_tree expr)
2617 switch (TREE_CODE (expr))
2619 case REAL_CST:
2620 return real_equal (&TREE_REAL_CST (expr), &dconst0)
2621 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2622 case COMPLEX_CST:
2623 return real_zerop (TREE_REALPART (expr))
2624 && real_zerop (TREE_IMAGPART (expr));
2625 case VECTOR_CST:
2627 unsigned i;
2628 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2629 if (!real_zerop (VECTOR_CST_ELT (expr, i)))
2630 return false;
2631 return true;
2633 default:
2634 return false;
2638 /* Return 1 if EXPR is the real constant one in real or complex form.
2639 Trailing zeroes matter for decimal float constants, so don't return
2640 1 for them. */
2643 real_onep (const_tree expr)
2645 switch (TREE_CODE (expr))
2647 case REAL_CST:
2648 return real_equal (&TREE_REAL_CST (expr), &dconst1)
2649 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2650 case COMPLEX_CST:
2651 return real_onep (TREE_REALPART (expr))
2652 && real_zerop (TREE_IMAGPART (expr));
2653 case VECTOR_CST:
2655 unsigned i;
2656 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2657 if (!real_onep (VECTOR_CST_ELT (expr, i)))
2658 return false;
2659 return true;
2661 default:
2662 return false;
2666 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2667 matter for decimal float constants, so don't return 1 for them. */
2670 real_minus_onep (const_tree expr)
2672 switch (TREE_CODE (expr))
2674 case REAL_CST:
2675 return real_equal (&TREE_REAL_CST (expr), &dconstm1)
2676 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr))));
2677 case COMPLEX_CST:
2678 return real_minus_onep (TREE_REALPART (expr))
2679 && real_zerop (TREE_IMAGPART (expr));
2680 case VECTOR_CST:
2682 unsigned i;
2683 for (i = 0; i < VECTOR_CST_NELTS (expr); ++i)
2684 if (!real_minus_onep (VECTOR_CST_ELT (expr, i)))
2685 return false;
2686 return true;
2688 default:
2689 return false;
2693 /* Nonzero if EXP is a constant or a cast of a constant. */
2696 really_constant_p (const_tree exp)
2698 /* This is not quite the same as STRIP_NOPS. It does more. */
2699 while (CONVERT_EXPR_P (exp)
2700 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2701 exp = TREE_OPERAND (exp, 0);
2702 return TREE_CONSTANT (exp);
2705 /* Return first list element whose TREE_VALUE is ELEM.
2706 Return 0 if ELEM is not in LIST. */
2708 tree
2709 value_member (tree elem, tree list)
2711 while (list)
2713 if (elem == TREE_VALUE (list))
2714 return list;
2715 list = TREE_CHAIN (list);
2717 return NULL_TREE;
2720 /* Return first list element whose TREE_PURPOSE is ELEM.
2721 Return 0 if ELEM is not in LIST. */
2723 tree
2724 purpose_member (const_tree elem, tree list)
2726 while (list)
2728 if (elem == TREE_PURPOSE (list))
2729 return list;
2730 list = TREE_CHAIN (list);
2732 return NULL_TREE;
2735 /* Return true if ELEM is in V. */
2737 bool
2738 vec_member (const_tree elem, vec<tree, va_gc> *v)
2740 unsigned ix;
2741 tree t;
2742 FOR_EACH_VEC_SAFE_ELT (v, ix, t)
2743 if (elem == t)
2744 return true;
2745 return false;
2748 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2749 NULL_TREE. */
2751 tree
2752 chain_index (int idx, tree chain)
2754 for (; chain && idx > 0; --idx)
2755 chain = TREE_CHAIN (chain);
2756 return chain;
2759 /* Return nonzero if ELEM is part of the chain CHAIN. */
2762 chain_member (const_tree elem, const_tree chain)
2764 while (chain)
2766 if (elem == chain)
2767 return 1;
2768 chain = DECL_CHAIN (chain);
2771 return 0;
2774 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2775 We expect a null pointer to mark the end of the chain.
2776 This is the Lisp primitive `length'. */
2779 list_length (const_tree t)
2781 const_tree p = t;
2782 #ifdef ENABLE_TREE_CHECKING
2783 const_tree q = t;
2784 #endif
2785 int len = 0;
2787 while (p)
2789 p = TREE_CHAIN (p);
2790 #ifdef ENABLE_TREE_CHECKING
2791 if (len % 2)
2792 q = TREE_CHAIN (q);
2793 gcc_assert (p != q);
2794 #endif
2795 len++;
2798 return len;
2801 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2802 UNION_TYPE TYPE, or NULL_TREE if none. */
2804 tree
2805 first_field (const_tree type)
2807 tree t = TYPE_FIELDS (type);
2808 while (t && TREE_CODE (t) != FIELD_DECL)
2809 t = TREE_CHAIN (t);
2810 return t;
2813 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2814 by modifying the last node in chain 1 to point to chain 2.
2815 This is the Lisp primitive `nconc'. */
2817 tree
2818 chainon (tree op1, tree op2)
2820 tree t1;
2822 if (!op1)
2823 return op2;
2824 if (!op2)
2825 return op1;
2827 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2828 continue;
2829 TREE_CHAIN (t1) = op2;
2831 #ifdef ENABLE_TREE_CHECKING
2833 tree t2;
2834 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2835 gcc_assert (t2 != t1);
2837 #endif
2839 return op1;
2842 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2844 tree
2845 tree_last (tree chain)
2847 tree next;
2848 if (chain)
2849 while ((next = TREE_CHAIN (chain)))
2850 chain = next;
2851 return chain;
2854 /* Reverse the order of elements in the chain T,
2855 and return the new head of the chain (old last element). */
2857 tree
2858 nreverse (tree t)
2860 tree prev = 0, decl, next;
2861 for (decl = t; decl; decl = next)
2863 /* We shouldn't be using this function to reverse BLOCK chains; we
2864 have blocks_nreverse for that. */
2865 gcc_checking_assert (TREE_CODE (decl) != BLOCK);
2866 next = TREE_CHAIN (decl);
2867 TREE_CHAIN (decl) = prev;
2868 prev = decl;
2870 return prev;
2873 /* Return a newly created TREE_LIST node whose
2874 purpose and value fields are PARM and VALUE. */
2876 tree
2877 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
2879 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
2880 TREE_PURPOSE (t) = parm;
2881 TREE_VALUE (t) = value;
2882 return t;
2885 /* Build a chain of TREE_LIST nodes from a vector. */
2887 tree
2888 build_tree_list_vec_stat (const vec<tree, va_gc> *vec MEM_STAT_DECL)
2890 tree ret = NULL_TREE;
2891 tree *pp = &ret;
2892 unsigned int i;
2893 tree t;
2894 FOR_EACH_VEC_SAFE_ELT (vec, i, t)
2896 *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2897 pp = &TREE_CHAIN (*pp);
2899 return ret;
2902 /* Return a newly created TREE_LIST node whose
2903 purpose and value fields are PURPOSE and VALUE
2904 and whose TREE_CHAIN is CHAIN. */
2906 tree
2907 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
2909 tree node;
2911 node = ggc_alloc_tree_node_stat (sizeof (struct tree_list) PASS_MEM_STAT);
2912 memset (node, 0, sizeof (struct tree_common));
2914 record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
2916 TREE_SET_CODE (node, TREE_LIST);
2917 TREE_CHAIN (node) = chain;
2918 TREE_PURPOSE (node) = purpose;
2919 TREE_VALUE (node) = value;
2920 return node;
2923 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2924 trees. */
2926 vec<tree, va_gc> *
2927 ctor_to_vec (tree ctor)
2929 vec<tree, va_gc> *vec;
2930 vec_alloc (vec, CONSTRUCTOR_NELTS (ctor));
2931 unsigned int ix;
2932 tree val;
2934 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2935 vec->quick_push (val);
2937 return vec;
2940 /* Return the size nominally occupied by an object of type TYPE
2941 when it resides in memory. The value is measured in units of bytes,
2942 and its data type is that normally used for type sizes
2943 (which is the first type created by make_signed_type or
2944 make_unsigned_type). */
2946 tree
2947 size_in_bytes (const_tree type)
2949 tree t;
2951 if (type == error_mark_node)
2952 return integer_zero_node;
2954 type = TYPE_MAIN_VARIANT (type);
2955 t = TYPE_SIZE_UNIT (type);
2957 if (t == 0)
2959 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
2960 return size_zero_node;
2963 return t;
2966 /* Return the size of TYPE (in bytes) as a wide integer
2967 or return -1 if the size can vary or is larger than an integer. */
2969 HOST_WIDE_INT
2970 int_size_in_bytes (const_tree type)
2972 tree t;
2974 if (type == error_mark_node)
2975 return 0;
2977 type = TYPE_MAIN_VARIANT (type);
2978 t = TYPE_SIZE_UNIT (type);
2980 if (t && tree_fits_uhwi_p (t))
2981 return TREE_INT_CST_LOW (t);
2982 else
2983 return -1;
2986 /* Return the maximum size of TYPE (in bytes) as a wide integer
2987 or return -1 if the size can vary or is larger than an integer. */
2989 HOST_WIDE_INT
2990 max_int_size_in_bytes (const_tree type)
2992 HOST_WIDE_INT size = -1;
2993 tree size_tree;
2995 /* If this is an array type, check for a possible MAX_SIZE attached. */
2997 if (TREE_CODE (type) == ARRAY_TYPE)
2999 size_tree = TYPE_ARRAY_MAX_SIZE (type);
3001 if (size_tree && tree_fits_uhwi_p (size_tree))
3002 size = tree_to_uhwi (size_tree);
3005 /* If we still haven't been able to get a size, see if the language
3006 can compute a maximum size. */
3008 if (size == -1)
3010 size_tree = lang_hooks.types.max_size (type);
3012 if (size_tree && tree_fits_uhwi_p (size_tree))
3013 size = tree_to_uhwi (size_tree);
3016 return size;
3019 /* Return the bit position of FIELD, in bits from the start of the record.
3020 This is a tree of type bitsizetype. */
3022 tree
3023 bit_position (const_tree field)
3025 return bit_from_pos (DECL_FIELD_OFFSET (field),
3026 DECL_FIELD_BIT_OFFSET (field));
3029 /* Return the byte position of FIELD, in bytes from the start of the record.
3030 This is a tree of type sizetype. */
3032 tree
3033 byte_position (const_tree field)
3035 return byte_from_pos (DECL_FIELD_OFFSET (field),
3036 DECL_FIELD_BIT_OFFSET (field));
3039 /* Likewise, but return as an integer. It must be representable in
3040 that way (since it could be a signed value, we don't have the
3041 option of returning -1 like int_size_in_byte can. */
3043 HOST_WIDE_INT
3044 int_byte_position (const_tree field)
3046 return tree_to_shwi (byte_position (field));
3049 /* Return the strictest alignment, in bits, that T is known to have. */
3051 unsigned int
3052 expr_align (const_tree t)
3054 unsigned int align0, align1;
3056 switch (TREE_CODE (t))
3058 CASE_CONVERT: case NON_LVALUE_EXPR:
3059 /* If we have conversions, we know that the alignment of the
3060 object must meet each of the alignments of the types. */
3061 align0 = expr_align (TREE_OPERAND (t, 0));
3062 align1 = TYPE_ALIGN (TREE_TYPE (t));
3063 return MAX (align0, align1);
3065 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
3066 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
3067 case CLEANUP_POINT_EXPR:
3068 /* These don't change the alignment of an object. */
3069 return expr_align (TREE_OPERAND (t, 0));
3071 case COND_EXPR:
3072 /* The best we can do is say that the alignment is the least aligned
3073 of the two arms. */
3074 align0 = expr_align (TREE_OPERAND (t, 1));
3075 align1 = expr_align (TREE_OPERAND (t, 2));
3076 return MIN (align0, align1);
3078 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3079 meaningfully, it's always 1. */
3080 case LABEL_DECL: case CONST_DECL:
3081 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
3082 case FUNCTION_DECL:
3083 gcc_assert (DECL_ALIGN (t) != 0);
3084 return DECL_ALIGN (t);
3086 default:
3087 break;
3090 /* Otherwise take the alignment from that of the type. */
3091 return TYPE_ALIGN (TREE_TYPE (t));
3094 /* Return, as a tree node, the number of elements for TYPE (which is an
3095 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3097 tree
3098 array_type_nelts (const_tree type)
3100 tree index_type, min, max;
3102 /* If they did it with unspecified bounds, then we should have already
3103 given an error about it before we got here. */
3104 if (! TYPE_DOMAIN (type))
3105 return error_mark_node;
3107 index_type = TYPE_DOMAIN (type);
3108 min = TYPE_MIN_VALUE (index_type);
3109 max = TYPE_MAX_VALUE (index_type);
3111 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3112 if (!max)
3113 return error_mark_node;
3115 return (integer_zerop (min)
3116 ? max
3117 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
3120 /* If arg is static -- a reference to an object in static storage -- then
3121 return the object. This is not the same as the C meaning of `static'.
3122 If arg isn't static, return NULL. */
3124 tree
3125 staticp (tree arg)
3127 switch (TREE_CODE (arg))
3129 case FUNCTION_DECL:
3130 /* Nested functions are static, even though taking their address will
3131 involve a trampoline as we unnest the nested function and create
3132 the trampoline on the tree level. */
3133 return arg;
3135 case VAR_DECL:
3136 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3137 && ! DECL_THREAD_LOCAL_P (arg)
3138 && ! DECL_DLLIMPORT_P (arg)
3139 ? arg : NULL);
3141 case CONST_DECL:
3142 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
3143 ? arg : NULL);
3145 case CONSTRUCTOR:
3146 return TREE_STATIC (arg) ? arg : NULL;
3148 case LABEL_DECL:
3149 case STRING_CST:
3150 return arg;
3152 case COMPONENT_REF:
3153 /* If the thing being referenced is not a field, then it is
3154 something language specific. */
3155 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
3157 /* If we are referencing a bitfield, we can't evaluate an
3158 ADDR_EXPR at compile time and so it isn't a constant. */
3159 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
3160 return NULL;
3162 return staticp (TREE_OPERAND (arg, 0));
3164 case BIT_FIELD_REF:
3165 return NULL;
3167 case INDIRECT_REF:
3168 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
3170 case ARRAY_REF:
3171 case ARRAY_RANGE_REF:
3172 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
3173 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
3174 return staticp (TREE_OPERAND (arg, 0));
3175 else
3176 return NULL;
3178 case COMPOUND_LITERAL_EXPR:
3179 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
3181 default:
3182 return NULL;
3189 /* Return whether OP is a DECL whose address is function-invariant. */
3191 bool
3192 decl_address_invariant_p (const_tree op)
3194 /* The conditions below are slightly less strict than the one in
3195 staticp. */
3197 switch (TREE_CODE (op))
3199 case PARM_DECL:
3200 case RESULT_DECL:
3201 case LABEL_DECL:
3202 case FUNCTION_DECL:
3203 return true;
3205 case VAR_DECL:
3206 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3207 || DECL_THREAD_LOCAL_P (op)
3208 || DECL_CONTEXT (op) == current_function_decl
3209 || decl_function_context (op) == current_function_decl)
3210 return true;
3211 break;
3213 case CONST_DECL:
3214 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
3215 || decl_function_context (op) == current_function_decl)
3216 return true;
3217 break;
3219 default:
3220 break;
3223 return false;
3226 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3228 bool
3229 decl_address_ip_invariant_p (const_tree op)
3231 /* The conditions below are slightly less strict than the one in
3232 staticp. */
3234 switch (TREE_CODE (op))
3236 case LABEL_DECL:
3237 case FUNCTION_DECL:
3238 case STRING_CST:
3239 return true;
3241 case VAR_DECL:
3242 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
3243 && !DECL_DLLIMPORT_P (op))
3244 || DECL_THREAD_LOCAL_P (op))
3245 return true;
3246 break;
3248 case CONST_DECL:
3249 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
3250 return true;
3251 break;
3253 default:
3254 break;
3257 return false;
3261 /* Return true if T is function-invariant (internal function, does
3262 not handle arithmetic; that's handled in skip_simple_arithmetic and
3263 tree_invariant_p). */
3265 static bool
3266 tree_invariant_p_1 (tree t)
3268 tree op;
3270 if (TREE_CONSTANT (t)
3271 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
3272 return true;
3274 switch (TREE_CODE (t))
3276 case SAVE_EXPR:
3277 return true;
3279 case ADDR_EXPR:
3280 op = TREE_OPERAND (t, 0);
3281 while (handled_component_p (op))
3283 switch (TREE_CODE (op))
3285 case ARRAY_REF:
3286 case ARRAY_RANGE_REF:
3287 if (!tree_invariant_p (TREE_OPERAND (op, 1))
3288 || TREE_OPERAND (op, 2) != NULL_TREE
3289 || TREE_OPERAND (op, 3) != NULL_TREE)
3290 return false;
3291 break;
3293 case COMPONENT_REF:
3294 if (TREE_OPERAND (op, 2) != NULL_TREE)
3295 return false;
3296 break;
3298 default:;
3300 op = TREE_OPERAND (op, 0);
3303 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
3305 default:
3306 break;
3309 return false;
3312 /* Return true if T is function-invariant. */
3314 bool
3315 tree_invariant_p (tree t)
3317 tree inner = skip_simple_arithmetic (t);
3318 return tree_invariant_p_1 (inner);
3321 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3322 Do this to any expression which may be used in more than one place,
3323 but must be evaluated only once.
3325 Normally, expand_expr would reevaluate the expression each time.
3326 Calling save_expr produces something that is evaluated and recorded
3327 the first time expand_expr is called on it. Subsequent calls to
3328 expand_expr just reuse the recorded value.
3330 The call to expand_expr that generates code that actually computes
3331 the value is the first call *at compile time*. Subsequent calls
3332 *at compile time* generate code to use the saved value.
3333 This produces correct result provided that *at run time* control
3334 always flows through the insns made by the first expand_expr
3335 before reaching the other places where the save_expr was evaluated.
3336 You, the caller of save_expr, must make sure this is so.
3338 Constants, and certain read-only nodes, are returned with no
3339 SAVE_EXPR because that is safe. Expressions containing placeholders
3340 are not touched; see tree.def for an explanation of what these
3341 are used for. */
3343 tree
3344 save_expr (tree expr)
3346 tree t = fold (expr);
3347 tree inner;
3349 /* If the tree evaluates to a constant, then we don't want to hide that
3350 fact (i.e. this allows further folding, and direct checks for constants).
3351 However, a read-only object that has side effects cannot be bypassed.
3352 Since it is no problem to reevaluate literals, we just return the
3353 literal node. */
3354 inner = skip_simple_arithmetic (t);
3355 if (TREE_CODE (inner) == ERROR_MARK)
3356 return inner;
3358 if (tree_invariant_p_1 (inner))
3359 return t;
3361 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3362 it means that the size or offset of some field of an object depends on
3363 the value within another field.
3365 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
3366 and some variable since it would then need to be both evaluated once and
3367 evaluated more than once. Front-ends must assure this case cannot
3368 happen by surrounding any such subexpressions in their own SAVE_EXPR
3369 and forcing evaluation at the proper time. */
3370 if (contains_placeholder_p (inner))
3371 return t;
3373 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
3374 SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
3376 /* This expression might be placed ahead of a jump to ensure that the
3377 value was computed on both sides of the jump. So make sure it isn't
3378 eliminated as dead. */
3379 TREE_SIDE_EFFECTS (t) = 1;
3380 return t;
3383 /* Look inside EXPR into any simple arithmetic operations. Return the
3384 outermost non-arithmetic or non-invariant node. */
3386 tree
3387 skip_simple_arithmetic (tree expr)
3389 /* We don't care about whether this can be used as an lvalue in this
3390 context. */
3391 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3392 expr = TREE_OPERAND (expr, 0);
3394 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3395 a constant, it will be more efficient to not make another SAVE_EXPR since
3396 it will allow better simplification and GCSE will be able to merge the
3397 computations if they actually occur. */
3398 while (true)
3400 if (UNARY_CLASS_P (expr))
3401 expr = TREE_OPERAND (expr, 0);
3402 else if (BINARY_CLASS_P (expr))
3404 if (tree_invariant_p (TREE_OPERAND (expr, 1)))
3405 expr = TREE_OPERAND (expr, 0);
3406 else if (tree_invariant_p (TREE_OPERAND (expr, 0)))
3407 expr = TREE_OPERAND (expr, 1);
3408 else
3409 break;
3411 else
3412 break;
3415 return expr;
3418 /* Look inside EXPR into simple arithmetic operations involving constants.
3419 Return the outermost non-arithmetic or non-constant node. */
3421 tree
3422 skip_simple_constant_arithmetic (tree expr)
3424 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
3425 expr = TREE_OPERAND (expr, 0);
3427 while (true)
3429 if (UNARY_CLASS_P (expr))
3430 expr = TREE_OPERAND (expr, 0);
3431 else if (BINARY_CLASS_P (expr))
3433 if (TREE_CONSTANT (TREE_OPERAND (expr, 1)))
3434 expr = TREE_OPERAND (expr, 0);
3435 else if (TREE_CONSTANT (TREE_OPERAND (expr, 0)))
3436 expr = TREE_OPERAND (expr, 1);
3437 else
3438 break;
3440 else
3441 break;
3444 return expr;
3447 /* Return which tree structure is used by T. */
3449 enum tree_node_structure_enum
3450 tree_node_structure (const_tree t)
3452 const enum tree_code code = TREE_CODE (t);
3453 return tree_node_structure_for_code (code);
3456 /* Set various status flags when building a CALL_EXPR object T. */
3458 static void
3459 process_call_operands (tree t)
3461 bool side_effects = TREE_SIDE_EFFECTS (t);
3462 bool read_only = false;
3463 int i = call_expr_flags (t);
3465 /* Calls have side-effects, except those to const or pure functions. */
3466 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
3467 side_effects = true;
3468 /* Propagate TREE_READONLY of arguments for const functions. */
3469 if (i & ECF_CONST)
3470 read_only = true;
3472 if (!side_effects || read_only)
3473 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
3475 tree op = TREE_OPERAND (t, i);
3476 if (op && TREE_SIDE_EFFECTS (op))
3477 side_effects = true;
3478 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
3479 read_only = false;
3482 TREE_SIDE_EFFECTS (t) = side_effects;
3483 TREE_READONLY (t) = read_only;
3486 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3487 size or offset that depends on a field within a record. */
3489 bool
3490 contains_placeholder_p (const_tree exp)
3492 enum tree_code code;
3494 if (!exp)
3495 return 0;
3497 code = TREE_CODE (exp);
3498 if (code == PLACEHOLDER_EXPR)
3499 return 1;
3501 switch (TREE_CODE_CLASS (code))
3503 case tcc_reference:
3504 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3505 position computations since they will be converted into a
3506 WITH_RECORD_EXPR involving the reference, which will assume
3507 here will be valid. */
3508 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3510 case tcc_exceptional:
3511 if (code == TREE_LIST)
3512 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
3513 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
3514 break;
3516 case tcc_unary:
3517 case tcc_binary:
3518 case tcc_comparison:
3519 case tcc_expression:
3520 switch (code)
3522 case COMPOUND_EXPR:
3523 /* Ignoring the first operand isn't quite right, but works best. */
3524 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
3526 case COND_EXPR:
3527 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3528 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
3529 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
3531 case SAVE_EXPR:
3532 /* The save_expr function never wraps anything containing
3533 a PLACEHOLDER_EXPR. */
3534 return 0;
3536 default:
3537 break;
3540 switch (TREE_CODE_LENGTH (code))
3542 case 1:
3543 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
3544 case 2:
3545 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
3546 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
3547 default:
3548 return 0;
3551 case tcc_vl_exp:
3552 switch (code)
3554 case CALL_EXPR:
3556 const_tree arg;
3557 const_call_expr_arg_iterator iter;
3558 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
3559 if (CONTAINS_PLACEHOLDER_P (arg))
3560 return 1;
3561 return 0;
3563 default:
3564 return 0;
3567 default:
3568 return 0;
3570 return 0;
3573 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3574 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3575 field positions. */
3577 static bool
3578 type_contains_placeholder_1 (const_tree type)
3580 /* If the size contains a placeholder or the parent type (component type in
3581 the case of arrays) type involves a placeholder, this type does. */
3582 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
3583 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
3584 || (!POINTER_TYPE_P (type)
3585 && TREE_TYPE (type)
3586 && type_contains_placeholder_p (TREE_TYPE (type))))
3587 return true;
3589 /* Now do type-specific checks. Note that the last part of the check above
3590 greatly limits what we have to do below. */
3591 switch (TREE_CODE (type))
3593 case VOID_TYPE:
3594 case POINTER_BOUNDS_TYPE:
3595 case COMPLEX_TYPE:
3596 case ENUMERAL_TYPE:
3597 case BOOLEAN_TYPE:
3598 case POINTER_TYPE:
3599 case OFFSET_TYPE:
3600 case REFERENCE_TYPE:
3601 case METHOD_TYPE:
3602 case FUNCTION_TYPE:
3603 case VECTOR_TYPE:
3604 case NULLPTR_TYPE:
3605 return false;
3607 case INTEGER_TYPE:
3608 case REAL_TYPE:
3609 case FIXED_POINT_TYPE:
3610 /* Here we just check the bounds. */
3611 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
3612 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
3614 case ARRAY_TYPE:
3615 /* We have already checked the component type above, so just check
3616 the domain type. Flexible array members have a null domain. */
3617 return TYPE_DOMAIN (type) ?
3618 type_contains_placeholder_p (TYPE_DOMAIN (type)) : false;
3620 case RECORD_TYPE:
3621 case UNION_TYPE:
3622 case QUAL_UNION_TYPE:
3624 tree field;
3626 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3627 if (TREE_CODE (field) == FIELD_DECL
3628 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
3629 || (TREE_CODE (type) == QUAL_UNION_TYPE
3630 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
3631 || type_contains_placeholder_p (TREE_TYPE (field))))
3632 return true;
3634 return false;
3637 default:
3638 gcc_unreachable ();
3642 /* Wrapper around above function used to cache its result. */
3644 bool
3645 type_contains_placeholder_p (tree type)
3647 bool result;
3649 /* If the contains_placeholder_bits field has been initialized,
3650 then we know the answer. */
3651 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
3652 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
3654 /* Indicate that we've seen this type node, and the answer is false.
3655 This is what we want to return if we run into recursion via fields. */
3656 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
3658 /* Compute the real value. */
3659 result = type_contains_placeholder_1 (type);
3661 /* Store the real value. */
3662 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
3664 return result;
3667 /* Push tree EXP onto vector QUEUE if it is not already present. */
3669 static void
3670 push_without_duplicates (tree exp, vec<tree> *queue)
3672 unsigned int i;
3673 tree iter;
3675 FOR_EACH_VEC_ELT (*queue, i, iter)
3676 if (simple_cst_equal (iter, exp) == 1)
3677 break;
3679 if (!iter)
3680 queue->safe_push (exp);
3683 /* Given a tree EXP, find all occurrences of references to fields
3684 in a PLACEHOLDER_EXPR and place them in vector REFS without
3685 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3686 we assume here that EXP contains only arithmetic expressions
3687 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3688 argument list. */
3690 void
3691 find_placeholder_in_expr (tree exp, vec<tree> *refs)
3693 enum tree_code code = TREE_CODE (exp);
3694 tree inner;
3695 int i;
3697 /* We handle TREE_LIST and COMPONENT_REF separately. */
3698 if (code == TREE_LIST)
3700 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3701 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3703 else if (code == COMPONENT_REF)
3705 for (inner = TREE_OPERAND (exp, 0);
3706 REFERENCE_CLASS_P (inner);
3707 inner = TREE_OPERAND (inner, 0))
3710 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3711 push_without_duplicates (exp, refs);
3712 else
3713 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3715 else
3716 switch (TREE_CODE_CLASS (code))
3718 case tcc_constant:
3719 break;
3721 case tcc_declaration:
3722 /* Variables allocated to static storage can stay. */
3723 if (!TREE_STATIC (exp))
3724 push_without_duplicates (exp, refs);
3725 break;
3727 case tcc_expression:
3728 /* This is the pattern built in ada/make_aligning_type. */
3729 if (code == ADDR_EXPR
3730 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3732 push_without_duplicates (exp, refs);
3733 break;
3736 /* Fall through... */
3738 case tcc_exceptional:
3739 case tcc_unary:
3740 case tcc_binary:
3741 case tcc_comparison:
3742 case tcc_reference:
3743 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3744 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3745 break;
3747 case tcc_vl_exp:
3748 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3749 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3750 break;
3752 default:
3753 gcc_unreachable ();
3757 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3758 return a tree with all occurrences of references to F in a
3759 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3760 CONST_DECLs. Note that we assume here that EXP contains only
3761 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3762 occurring only in their argument list. */
3764 tree
3765 substitute_in_expr (tree exp, tree f, tree r)
3767 enum tree_code code = TREE_CODE (exp);
3768 tree op0, op1, op2, op3;
3769 tree new_tree;
3771 /* We handle TREE_LIST and COMPONENT_REF separately. */
3772 if (code == TREE_LIST)
3774 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3775 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3776 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3777 return exp;
3779 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3781 else if (code == COMPONENT_REF)
3783 tree inner;
3785 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3786 and it is the right field, replace it with R. */
3787 for (inner = TREE_OPERAND (exp, 0);
3788 REFERENCE_CLASS_P (inner);
3789 inner = TREE_OPERAND (inner, 0))
3792 /* The field. */
3793 op1 = TREE_OPERAND (exp, 1);
3795 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3796 return r;
3798 /* If this expression hasn't been completed let, leave it alone. */
3799 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3800 return exp;
3802 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3803 if (op0 == TREE_OPERAND (exp, 0))
3804 return exp;
3806 new_tree
3807 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3809 else
3810 switch (TREE_CODE_CLASS (code))
3812 case tcc_constant:
3813 return exp;
3815 case tcc_declaration:
3816 if (exp == f)
3817 return r;
3818 else
3819 return exp;
3821 case tcc_expression:
3822 if (exp == f)
3823 return r;
3825 /* Fall through... */
3827 case tcc_exceptional:
3828 case tcc_unary:
3829 case tcc_binary:
3830 case tcc_comparison:
3831 case tcc_reference:
3832 switch (TREE_CODE_LENGTH (code))
3834 case 0:
3835 return exp;
3837 case 1:
3838 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3839 if (op0 == TREE_OPERAND (exp, 0))
3840 return exp;
3842 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3843 break;
3845 case 2:
3846 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3847 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3849 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3850 return exp;
3852 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3853 break;
3855 case 3:
3856 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3857 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3858 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3860 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3861 && op2 == TREE_OPERAND (exp, 2))
3862 return exp;
3864 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3865 break;
3867 case 4:
3868 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3869 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3870 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3871 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3873 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3874 && op2 == TREE_OPERAND (exp, 2)
3875 && op3 == TREE_OPERAND (exp, 3))
3876 return exp;
3878 new_tree
3879 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3880 break;
3882 default:
3883 gcc_unreachable ();
3885 break;
3887 case tcc_vl_exp:
3889 int i;
3891 new_tree = NULL_TREE;
3893 /* If we are trying to replace F with a constant, inline back
3894 functions which do nothing else than computing a value from
3895 the arguments they are passed. This makes it possible to
3896 fold partially or entirely the replacement expression. */
3897 if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3899 tree t = maybe_inline_call_in_expr (exp);
3900 if (t)
3901 return SUBSTITUTE_IN_EXPR (t, f, r);
3904 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3906 tree op = TREE_OPERAND (exp, i);
3907 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3908 if (new_op != op)
3910 if (!new_tree)
3911 new_tree = copy_node (exp);
3912 TREE_OPERAND (new_tree, i) = new_op;
3916 if (new_tree)
3918 new_tree = fold (new_tree);
3919 if (TREE_CODE (new_tree) == CALL_EXPR)
3920 process_call_operands (new_tree);
3922 else
3923 return exp;
3925 break;
3927 default:
3928 gcc_unreachable ();
3931 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3933 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3934 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3936 return new_tree;
3939 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3940 for it within OBJ, a tree that is an object or a chain of references. */
3942 tree
3943 substitute_placeholder_in_expr (tree exp, tree obj)
3945 enum tree_code code = TREE_CODE (exp);
3946 tree op0, op1, op2, op3;
3947 tree new_tree;
3949 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3950 in the chain of OBJ. */
3951 if (code == PLACEHOLDER_EXPR)
3953 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3954 tree elt;
3956 for (elt = obj; elt != 0;
3957 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3958 || TREE_CODE (elt) == COND_EXPR)
3959 ? TREE_OPERAND (elt, 1)
3960 : (REFERENCE_CLASS_P (elt)
3961 || UNARY_CLASS_P (elt)
3962 || BINARY_CLASS_P (elt)
3963 || VL_EXP_CLASS_P (elt)
3964 || EXPRESSION_CLASS_P (elt))
3965 ? TREE_OPERAND (elt, 0) : 0))
3966 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3967 return elt;
3969 for (elt = obj; elt != 0;
3970 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3971 || TREE_CODE (elt) == COND_EXPR)
3972 ? TREE_OPERAND (elt, 1)
3973 : (REFERENCE_CLASS_P (elt)
3974 || UNARY_CLASS_P (elt)
3975 || BINARY_CLASS_P (elt)
3976 || VL_EXP_CLASS_P (elt)
3977 || EXPRESSION_CLASS_P (elt))
3978 ? TREE_OPERAND (elt, 0) : 0))
3979 if (POINTER_TYPE_P (TREE_TYPE (elt))
3980 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3981 == need_type))
3982 return fold_build1 (INDIRECT_REF, need_type, elt);
3984 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3985 survives until RTL generation, there will be an error. */
3986 return exp;
3989 /* TREE_LIST is special because we need to look at TREE_VALUE
3990 and TREE_CHAIN, not TREE_OPERANDS. */
3991 else if (code == TREE_LIST)
3993 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3994 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3995 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3996 return exp;
3998 return tree_cons (TREE_PURPOSE (exp), op1, op0);
4000 else
4001 switch (TREE_CODE_CLASS (code))
4003 case tcc_constant:
4004 case tcc_declaration:
4005 return exp;
4007 case tcc_exceptional:
4008 case tcc_unary:
4009 case tcc_binary:
4010 case tcc_comparison:
4011 case tcc_expression:
4012 case tcc_reference:
4013 case tcc_statement:
4014 switch (TREE_CODE_LENGTH (code))
4016 case 0:
4017 return exp;
4019 case 1:
4020 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4021 if (op0 == TREE_OPERAND (exp, 0))
4022 return exp;
4024 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
4025 break;
4027 case 2:
4028 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4029 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4031 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
4032 return exp;
4034 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
4035 break;
4037 case 3:
4038 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4039 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4040 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4042 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4043 && op2 == TREE_OPERAND (exp, 2))
4044 return exp;
4046 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
4047 break;
4049 case 4:
4050 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
4051 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
4052 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
4053 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
4055 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
4056 && op2 == TREE_OPERAND (exp, 2)
4057 && op3 == TREE_OPERAND (exp, 3))
4058 return exp;
4060 new_tree
4061 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
4062 break;
4064 default:
4065 gcc_unreachable ();
4067 break;
4069 case tcc_vl_exp:
4071 int i;
4073 new_tree = NULL_TREE;
4075 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
4077 tree op = TREE_OPERAND (exp, i);
4078 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
4079 if (new_op != op)
4081 if (!new_tree)
4082 new_tree = copy_node (exp);
4083 TREE_OPERAND (new_tree, i) = new_op;
4087 if (new_tree)
4089 new_tree = fold (new_tree);
4090 if (TREE_CODE (new_tree) == CALL_EXPR)
4091 process_call_operands (new_tree);
4093 else
4094 return exp;
4096 break;
4098 default:
4099 gcc_unreachable ();
4102 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
4104 if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
4105 TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
4107 return new_tree;
4111 /* Subroutine of stabilize_reference; this is called for subtrees of
4112 references. Any expression with side-effects must be put in a SAVE_EXPR
4113 to ensure that it is only evaluated once.
4115 We don't put SAVE_EXPR nodes around everything, because assigning very
4116 simple expressions to temporaries causes us to miss good opportunities
4117 for optimizations. Among other things, the opportunity to fold in the
4118 addition of a constant into an addressing mode often gets lost, e.g.
4119 "y[i+1] += x;". In general, we take the approach that we should not make
4120 an assignment unless we are forced into it - i.e., that any non-side effect
4121 operator should be allowed, and that cse should take care of coalescing
4122 multiple utterances of the same expression should that prove fruitful. */
4124 static tree
4125 stabilize_reference_1 (tree e)
4127 tree result;
4128 enum tree_code code = TREE_CODE (e);
4130 /* We cannot ignore const expressions because it might be a reference
4131 to a const array but whose index contains side-effects. But we can
4132 ignore things that are actual constant or that already have been
4133 handled by this function. */
4135 if (tree_invariant_p (e))
4136 return e;
4138 switch (TREE_CODE_CLASS (code))
4140 case tcc_exceptional:
4141 case tcc_type:
4142 case tcc_declaration:
4143 case tcc_comparison:
4144 case tcc_statement:
4145 case tcc_expression:
4146 case tcc_reference:
4147 case tcc_vl_exp:
4148 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4149 so that it will only be evaluated once. */
4150 /* The reference (r) and comparison (<) classes could be handled as
4151 below, but it is generally faster to only evaluate them once. */
4152 if (TREE_SIDE_EFFECTS (e))
4153 return save_expr (e);
4154 return e;
4156 case tcc_constant:
4157 /* Constants need no processing. In fact, we should never reach
4158 here. */
4159 return e;
4161 case tcc_binary:
4162 /* Division is slow and tends to be compiled with jumps,
4163 especially the division by powers of 2 that is often
4164 found inside of an array reference. So do it just once. */
4165 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
4166 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
4167 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
4168 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
4169 return save_expr (e);
4170 /* Recursively stabilize each operand. */
4171 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
4172 stabilize_reference_1 (TREE_OPERAND (e, 1)));
4173 break;
4175 case tcc_unary:
4176 /* Recursively stabilize each operand. */
4177 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
4178 break;
4180 default:
4181 gcc_unreachable ();
4184 TREE_TYPE (result) = TREE_TYPE (e);
4185 TREE_READONLY (result) = TREE_READONLY (e);
4186 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
4187 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
4189 return result;
4192 /* Stabilize a reference so that we can use it any number of times
4193 without causing its operands to be evaluated more than once.
4194 Returns the stabilized reference. This works by means of save_expr,
4195 so see the caveats in the comments about save_expr.
4197 Also allows conversion expressions whose operands are references.
4198 Any other kind of expression is returned unchanged. */
4200 tree
4201 stabilize_reference (tree ref)
4203 tree result;
4204 enum tree_code code = TREE_CODE (ref);
4206 switch (code)
4208 case VAR_DECL:
4209 case PARM_DECL:
4210 case RESULT_DECL:
4211 /* No action is needed in this case. */
4212 return ref;
4214 CASE_CONVERT:
4215 case FLOAT_EXPR:
4216 case FIX_TRUNC_EXPR:
4217 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
4218 break;
4220 case INDIRECT_REF:
4221 result = build_nt (INDIRECT_REF,
4222 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
4223 break;
4225 case COMPONENT_REF:
4226 result = build_nt (COMPONENT_REF,
4227 stabilize_reference (TREE_OPERAND (ref, 0)),
4228 TREE_OPERAND (ref, 1), NULL_TREE);
4229 break;
4231 case BIT_FIELD_REF:
4232 result = build_nt (BIT_FIELD_REF,
4233 stabilize_reference (TREE_OPERAND (ref, 0)),
4234 TREE_OPERAND (ref, 1), TREE_OPERAND (ref, 2));
4235 REF_REVERSE_STORAGE_ORDER (result) = REF_REVERSE_STORAGE_ORDER (ref);
4236 break;
4238 case ARRAY_REF:
4239 result = build_nt (ARRAY_REF,
4240 stabilize_reference (TREE_OPERAND (ref, 0)),
4241 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4242 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4243 break;
4245 case ARRAY_RANGE_REF:
4246 result = build_nt (ARRAY_RANGE_REF,
4247 stabilize_reference (TREE_OPERAND (ref, 0)),
4248 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
4249 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
4250 break;
4252 case COMPOUND_EXPR:
4253 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4254 it wouldn't be ignored. This matters when dealing with
4255 volatiles. */
4256 return stabilize_reference_1 (ref);
4258 /* If arg isn't a kind of lvalue we recognize, make no change.
4259 Caller should recognize the error for an invalid lvalue. */
4260 default:
4261 return ref;
4263 case ERROR_MARK:
4264 return error_mark_node;
4267 TREE_TYPE (result) = TREE_TYPE (ref);
4268 TREE_READONLY (result) = TREE_READONLY (ref);
4269 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
4270 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
4272 return result;
4275 /* Low-level constructors for expressions. */
4277 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4278 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4280 void
4281 recompute_tree_invariant_for_addr_expr (tree t)
4283 tree node;
4284 bool tc = true, se = false;
4286 gcc_assert (TREE_CODE (t) == ADDR_EXPR);
4288 /* We started out assuming this address is both invariant and constant, but
4289 does not have side effects. Now go down any handled components and see if
4290 any of them involve offsets that are either non-constant or non-invariant.
4291 Also check for side-effects.
4293 ??? Note that this code makes no attempt to deal with the case where
4294 taking the address of something causes a copy due to misalignment. */
4296 #define UPDATE_FLAGS(NODE) \
4297 do { tree _node = (NODE); \
4298 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4299 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4301 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
4302 node = TREE_OPERAND (node, 0))
4304 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4305 array reference (probably made temporarily by the G++ front end),
4306 so ignore all the operands. */
4307 if ((TREE_CODE (node) == ARRAY_REF
4308 || TREE_CODE (node) == ARRAY_RANGE_REF)
4309 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
4311 UPDATE_FLAGS (TREE_OPERAND (node, 1));
4312 if (TREE_OPERAND (node, 2))
4313 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4314 if (TREE_OPERAND (node, 3))
4315 UPDATE_FLAGS (TREE_OPERAND (node, 3));
4317 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4318 FIELD_DECL, apparently. The G++ front end can put something else
4319 there, at least temporarily. */
4320 else if (TREE_CODE (node) == COMPONENT_REF
4321 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
4323 if (TREE_OPERAND (node, 2))
4324 UPDATE_FLAGS (TREE_OPERAND (node, 2));
4328 node = lang_hooks.expr_to_decl (node, &tc, &se);
4330 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4331 the address, since &(*a)->b is a form of addition. If it's a constant, the
4332 address is constant too. If it's a decl, its address is constant if the
4333 decl is static. Everything else is not constant and, furthermore,
4334 taking the address of a volatile variable is not volatile. */
4335 if (TREE_CODE (node) == INDIRECT_REF
4336 || TREE_CODE (node) == MEM_REF)
4337 UPDATE_FLAGS (TREE_OPERAND (node, 0));
4338 else if (CONSTANT_CLASS_P (node))
4340 else if (DECL_P (node))
4341 tc &= (staticp (node) != NULL_TREE);
4342 else
4344 tc = false;
4345 se |= TREE_SIDE_EFFECTS (node);
4349 TREE_CONSTANT (t) = tc;
4350 TREE_SIDE_EFFECTS (t) = se;
4351 #undef UPDATE_FLAGS
4354 /* Build an expression of code CODE, data type TYPE, and operands as
4355 specified. Expressions and reference nodes can be created this way.
4356 Constants, decls, types and misc nodes cannot be.
4358 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4359 enough for all extant tree codes. */
4361 tree
4362 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
4364 tree t;
4366 gcc_assert (TREE_CODE_LENGTH (code) == 0);
4368 t = make_node_stat (code PASS_MEM_STAT);
4369 TREE_TYPE (t) = tt;
4371 return t;
4374 tree
4375 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
4377 int length = sizeof (struct tree_exp);
4378 tree t;
4380 record_node_allocation_statistics (code, length);
4382 gcc_assert (TREE_CODE_LENGTH (code) == 1);
4384 t = ggc_alloc_tree_node_stat (length PASS_MEM_STAT);
4386 memset (t, 0, sizeof (struct tree_common));
4388 TREE_SET_CODE (t, code);
4390 TREE_TYPE (t) = type;
4391 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
4392 TREE_OPERAND (t, 0) = node;
4393 if (node && !TYPE_P (node))
4395 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
4396 TREE_READONLY (t) = TREE_READONLY (node);
4399 if (TREE_CODE_CLASS (code) == tcc_statement)
4400 TREE_SIDE_EFFECTS (t) = 1;
4401 else switch (code)
4403 case VA_ARG_EXPR:
4404 /* All of these have side-effects, no matter what their
4405 operands are. */
4406 TREE_SIDE_EFFECTS (t) = 1;
4407 TREE_READONLY (t) = 0;
4408 break;
4410 case INDIRECT_REF:
4411 /* Whether a dereference is readonly has nothing to do with whether
4412 its operand is readonly. */
4413 TREE_READONLY (t) = 0;
4414 break;
4416 case ADDR_EXPR:
4417 if (node)
4418 recompute_tree_invariant_for_addr_expr (t);
4419 break;
4421 default:
4422 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
4423 && node && !TYPE_P (node)
4424 && TREE_CONSTANT (node))
4425 TREE_CONSTANT (t) = 1;
4426 if (TREE_CODE_CLASS (code) == tcc_reference
4427 && node && TREE_THIS_VOLATILE (node))
4428 TREE_THIS_VOLATILE (t) = 1;
4429 break;
4432 return t;
4435 #define PROCESS_ARG(N) \
4436 do { \
4437 TREE_OPERAND (t, N) = arg##N; \
4438 if (arg##N &&!TYPE_P (arg##N)) \
4440 if (TREE_SIDE_EFFECTS (arg##N)) \
4441 side_effects = 1; \
4442 if (!TREE_READONLY (arg##N) \
4443 && !CONSTANT_CLASS_P (arg##N)) \
4444 (void) (read_only = 0); \
4445 if (!TREE_CONSTANT (arg##N)) \
4446 (void) (constant = 0); \
4448 } while (0)
4450 tree
4451 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
4453 bool constant, read_only, side_effects;
4454 tree t;
4456 gcc_assert (TREE_CODE_LENGTH (code) == 2);
4458 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
4459 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
4460 /* When sizetype precision doesn't match that of pointers
4461 we need to be able to build explicit extensions or truncations
4462 of the offset argument. */
4463 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
4464 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
4465 && TREE_CODE (arg1) == INTEGER_CST);
4467 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
4468 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
4469 && ptrofftype_p (TREE_TYPE (arg1)));
4471 t = make_node_stat (code PASS_MEM_STAT);
4472 TREE_TYPE (t) = tt;
4474 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4475 result based on those same flags for the arguments. But if the
4476 arguments aren't really even `tree' expressions, we shouldn't be trying
4477 to do this. */
4479 /* Expressions without side effects may be constant if their
4480 arguments are as well. */
4481 constant = (TREE_CODE_CLASS (code) == tcc_comparison
4482 || TREE_CODE_CLASS (code) == tcc_binary);
4483 read_only = 1;
4484 side_effects = TREE_SIDE_EFFECTS (t);
4486 PROCESS_ARG (0);
4487 PROCESS_ARG (1);
4489 TREE_SIDE_EFFECTS (t) = side_effects;
4490 if (code == MEM_REF)
4492 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4494 tree o = TREE_OPERAND (arg0, 0);
4495 TREE_READONLY (t) = TREE_READONLY (o);
4496 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4499 else
4501 TREE_READONLY (t) = read_only;
4502 TREE_CONSTANT (t) = constant;
4503 TREE_THIS_VOLATILE (t)
4504 = (TREE_CODE_CLASS (code) == tcc_reference
4505 && arg0 && TREE_THIS_VOLATILE (arg0));
4508 return t;
4512 tree
4513 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4514 tree arg2 MEM_STAT_DECL)
4516 bool constant, read_only, side_effects;
4517 tree t;
4519 gcc_assert (TREE_CODE_LENGTH (code) == 3);
4520 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4522 t = make_node_stat (code PASS_MEM_STAT);
4523 TREE_TYPE (t) = tt;
4525 read_only = 1;
4527 /* As a special exception, if COND_EXPR has NULL branches, we
4528 assume that it is a gimple statement and always consider
4529 it to have side effects. */
4530 if (code == COND_EXPR
4531 && tt == void_type_node
4532 && arg1 == NULL_TREE
4533 && arg2 == NULL_TREE)
4534 side_effects = true;
4535 else
4536 side_effects = TREE_SIDE_EFFECTS (t);
4538 PROCESS_ARG (0);
4539 PROCESS_ARG (1);
4540 PROCESS_ARG (2);
4542 if (code == COND_EXPR)
4543 TREE_READONLY (t) = read_only;
4545 TREE_SIDE_EFFECTS (t) = side_effects;
4546 TREE_THIS_VOLATILE (t)
4547 = (TREE_CODE_CLASS (code) == tcc_reference
4548 && arg0 && TREE_THIS_VOLATILE (arg0));
4550 return t;
4553 tree
4554 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4555 tree arg2, tree arg3 MEM_STAT_DECL)
4557 bool constant, read_only, side_effects;
4558 tree t;
4560 gcc_assert (TREE_CODE_LENGTH (code) == 4);
4562 t = make_node_stat (code PASS_MEM_STAT);
4563 TREE_TYPE (t) = tt;
4565 side_effects = TREE_SIDE_EFFECTS (t);
4567 PROCESS_ARG (0);
4568 PROCESS_ARG (1);
4569 PROCESS_ARG (2);
4570 PROCESS_ARG (3);
4572 TREE_SIDE_EFFECTS (t) = side_effects;
4573 TREE_THIS_VOLATILE (t)
4574 = (TREE_CODE_CLASS (code) == tcc_reference
4575 && arg0 && TREE_THIS_VOLATILE (arg0));
4577 return t;
4580 tree
4581 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
4582 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
4584 bool constant, read_only, side_effects;
4585 tree t;
4587 gcc_assert (TREE_CODE_LENGTH (code) == 5);
4589 t = make_node_stat (code PASS_MEM_STAT);
4590 TREE_TYPE (t) = tt;
4592 side_effects = TREE_SIDE_EFFECTS (t);
4594 PROCESS_ARG (0);
4595 PROCESS_ARG (1);
4596 PROCESS_ARG (2);
4597 PROCESS_ARG (3);
4598 PROCESS_ARG (4);
4600 TREE_SIDE_EFFECTS (t) = side_effects;
4601 if (code == TARGET_MEM_REF)
4603 if (arg0 && TREE_CODE (arg0) == ADDR_EXPR)
4605 tree o = TREE_OPERAND (arg0, 0);
4606 TREE_READONLY (t) = TREE_READONLY (o);
4607 TREE_THIS_VOLATILE (t) = TREE_THIS_VOLATILE (o);
4610 else
4611 TREE_THIS_VOLATILE (t)
4612 = (TREE_CODE_CLASS (code) == tcc_reference
4613 && arg0 && TREE_THIS_VOLATILE (arg0));
4615 return t;
4618 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4619 on the pointer PTR. */
4621 tree
4622 build_simple_mem_ref_loc (location_t loc, tree ptr)
4624 HOST_WIDE_INT offset = 0;
4625 tree ptype = TREE_TYPE (ptr);
4626 tree tem;
4627 /* For convenience allow addresses that collapse to a simple base
4628 and offset. */
4629 if (TREE_CODE (ptr) == ADDR_EXPR
4630 && (handled_component_p (TREE_OPERAND (ptr, 0))
4631 || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
4633 ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
4634 gcc_assert (ptr);
4635 ptr = build_fold_addr_expr (ptr);
4636 gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
4638 tem = build2 (MEM_REF, TREE_TYPE (ptype),
4639 ptr, build_int_cst (ptype, offset));
4640 SET_EXPR_LOCATION (tem, loc);
4641 return tem;
4644 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4646 offset_int
4647 mem_ref_offset (const_tree t)
4649 return offset_int::from (TREE_OPERAND (t, 1), SIGNED);
4652 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4653 offsetted by OFFSET units. */
4655 tree
4656 build_invariant_address (tree type, tree base, HOST_WIDE_INT offset)
4658 tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4659 build_fold_addr_expr (base),
4660 build_int_cst (ptr_type_node, offset));
4661 tree addr = build1 (ADDR_EXPR, type, ref);
4662 recompute_tree_invariant_for_addr_expr (addr);
4663 return addr;
4666 /* Similar except don't specify the TREE_TYPE
4667 and leave the TREE_SIDE_EFFECTS as 0.
4668 It is permissible for arguments to be null,
4669 or even garbage if their values do not matter. */
4671 tree
4672 build_nt (enum tree_code code, ...)
4674 tree t;
4675 int length;
4676 int i;
4677 va_list p;
4679 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4681 va_start (p, code);
4683 t = make_node (code);
4684 length = TREE_CODE_LENGTH (code);
4686 for (i = 0; i < length; i++)
4687 TREE_OPERAND (t, i) = va_arg (p, tree);
4689 va_end (p);
4690 return t;
4693 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4694 tree vec. */
4696 tree
4697 build_nt_call_vec (tree fn, vec<tree, va_gc> *args)
4699 tree ret, t;
4700 unsigned int ix;
4702 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
4703 CALL_EXPR_FN (ret) = fn;
4704 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4705 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
4706 CALL_EXPR_ARG (ret, ix) = t;
4707 return ret;
4710 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4711 We do NOT enter this node in any sort of symbol table.
4713 LOC is the location of the decl.
4715 layout_decl is used to set up the decl's storage layout.
4716 Other slots are initialized to 0 or null pointers. */
4718 tree
4719 build_decl_stat (location_t loc, enum tree_code code, tree name,
4720 tree type MEM_STAT_DECL)
4722 tree t;
4724 t = make_node_stat (code PASS_MEM_STAT);
4725 DECL_SOURCE_LOCATION (t) = loc;
4727 /* if (type == error_mark_node)
4728 type = integer_type_node; */
4729 /* That is not done, deliberately, so that having error_mark_node
4730 as the type can suppress useless errors in the use of this variable. */
4732 DECL_NAME (t) = name;
4733 TREE_TYPE (t) = type;
4735 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4736 layout_decl (t, 0);
4738 return t;
4741 /* Builds and returns function declaration with NAME and TYPE. */
4743 tree
4744 build_fn_decl (const char *name, tree type)
4746 tree id = get_identifier (name);
4747 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4749 DECL_EXTERNAL (decl) = 1;
4750 TREE_PUBLIC (decl) = 1;
4751 DECL_ARTIFICIAL (decl) = 1;
4752 TREE_NOTHROW (decl) = 1;
4754 return decl;
4757 vec<tree, va_gc> *all_translation_units;
4759 /* Builds a new translation-unit decl with name NAME, queues it in the
4760 global list of translation-unit decls and returns it. */
4762 tree
4763 build_translation_unit_decl (tree name)
4765 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4766 name, NULL_TREE);
4767 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4768 vec_safe_push (all_translation_units, tu);
4769 return tu;
4773 /* BLOCK nodes are used to represent the structure of binding contours
4774 and declarations, once those contours have been exited and their contents
4775 compiled. This information is used for outputting debugging info. */
4777 tree
4778 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
4780 tree block = make_node (BLOCK);
4782 BLOCK_VARS (block) = vars;
4783 BLOCK_SUBBLOCKS (block) = subblocks;
4784 BLOCK_SUPERCONTEXT (block) = supercontext;
4785 BLOCK_CHAIN (block) = chain;
4786 return block;
4790 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4792 LOC is the location to use in tree T. */
4794 void
4795 protected_set_expr_location (tree t, location_t loc)
4797 if (CAN_HAVE_LOCATION_P (t))
4798 SET_EXPR_LOCATION (t, loc);
4801 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4802 is ATTRIBUTE. */
4804 tree
4805 build_decl_attribute_variant (tree ddecl, tree attribute)
4807 DECL_ATTRIBUTES (ddecl) = attribute;
4808 return ddecl;
4811 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4812 is ATTRIBUTE and its qualifiers are QUALS.
4814 Record such modified types already made so we don't make duplicates. */
4816 tree
4817 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
4819 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
4821 inchash::hash hstate;
4822 tree ntype;
4823 int i;
4824 tree t;
4825 enum tree_code code = TREE_CODE (ttype);
4827 /* Building a distinct copy of a tagged type is inappropriate; it
4828 causes breakage in code that expects there to be a one-to-one
4829 relationship between a struct and its fields.
4830 build_duplicate_type is another solution (as used in
4831 handle_transparent_union_attribute), but that doesn't play well
4832 with the stronger C++ type identity model. */
4833 if (TREE_CODE (ttype) == RECORD_TYPE
4834 || TREE_CODE (ttype) == UNION_TYPE
4835 || TREE_CODE (ttype) == QUAL_UNION_TYPE
4836 || TREE_CODE (ttype) == ENUMERAL_TYPE)
4838 warning (OPT_Wattributes,
4839 "ignoring attributes applied to %qT after definition",
4840 TYPE_MAIN_VARIANT (ttype));
4841 return build_qualified_type (ttype, quals);
4844 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4845 ntype = build_distinct_type_copy (ttype);
4847 TYPE_ATTRIBUTES (ntype) = attribute;
4849 hstate.add_int (code);
4850 if (TREE_TYPE (ntype))
4851 hstate.add_object (TYPE_HASH (TREE_TYPE (ntype)));
4852 attribute_hash_list (attribute, hstate);
4854 switch (TREE_CODE (ntype))
4856 case FUNCTION_TYPE:
4857 type_hash_list (TYPE_ARG_TYPES (ntype), hstate);
4858 break;
4859 case ARRAY_TYPE:
4860 if (TYPE_DOMAIN (ntype))
4861 hstate.add_object (TYPE_HASH (TYPE_DOMAIN (ntype)));
4862 break;
4863 case INTEGER_TYPE:
4864 t = TYPE_MAX_VALUE (ntype);
4865 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
4866 hstate.add_object (TREE_INT_CST_ELT (t, i));
4867 break;
4868 case REAL_TYPE:
4869 case FIXED_POINT_TYPE:
4871 unsigned int precision = TYPE_PRECISION (ntype);
4872 hstate.add_object (precision);
4874 break;
4875 default:
4876 break;
4879 ntype = type_hash_canon (hstate.end(), ntype);
4881 /* If the target-dependent attributes make NTYPE different from
4882 its canonical type, we will need to use structural equality
4883 checks for this type. */
4884 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4885 || !comp_type_attributes (ntype, ttype))
4886 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
4887 else if (TYPE_CANONICAL (ntype) == ntype)
4888 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
4890 ttype = build_qualified_type (ntype, quals);
4892 else if (TYPE_QUALS (ttype) != quals)
4893 ttype = build_qualified_type (ttype, quals);
4895 return ttype;
4898 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
4899 the same. */
4901 static bool
4902 omp_declare_simd_clauses_equal (tree clauses1, tree clauses2)
4904 tree cl1, cl2;
4905 for (cl1 = clauses1, cl2 = clauses2;
4906 cl1 && cl2;
4907 cl1 = OMP_CLAUSE_CHAIN (cl1), cl2 = OMP_CLAUSE_CHAIN (cl2))
4909 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_CODE (cl2))
4910 return false;
4911 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_SIMDLEN)
4913 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1),
4914 OMP_CLAUSE_DECL (cl2)) != 1)
4915 return false;
4917 switch (OMP_CLAUSE_CODE (cl1))
4919 case OMP_CLAUSE_ALIGNED:
4920 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1),
4921 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2)) != 1)
4922 return false;
4923 break;
4924 case OMP_CLAUSE_LINEAR:
4925 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1),
4926 OMP_CLAUSE_LINEAR_STEP (cl2)) != 1)
4927 return false;
4928 break;
4929 case OMP_CLAUSE_SIMDLEN:
4930 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1),
4931 OMP_CLAUSE_SIMDLEN_EXPR (cl2)) != 1)
4932 return false;
4933 default:
4934 break;
4937 return true;
4940 /* Compare two constructor-element-type constants. Return 1 if the lists
4941 are known to be equal; otherwise return 0. */
4943 static bool
4944 simple_cst_list_equal (const_tree l1, const_tree l2)
4946 while (l1 != NULL_TREE && l2 != NULL_TREE)
4948 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
4949 return false;
4951 l1 = TREE_CHAIN (l1);
4952 l2 = TREE_CHAIN (l2);
4955 return l1 == l2;
4958 /* Compare two identifier nodes representing attributes. Either one may
4959 be in wrapped __ATTR__ form. Return true if they are the same, false
4960 otherwise. */
4962 static bool
4963 cmp_attrib_identifiers (const_tree attr1, const_tree attr2)
4965 /* Make sure we're dealing with IDENTIFIER_NODEs. */
4966 gcc_checking_assert (TREE_CODE (attr1) == IDENTIFIER_NODE
4967 && TREE_CODE (attr2) == IDENTIFIER_NODE);
4969 /* Identifiers can be compared directly for equality. */
4970 if (attr1 == attr2)
4971 return true;
4973 /* If they are not equal, they may still be one in the form
4974 'text' while the other one is in the form '__text__'. TODO:
4975 If we were storing attributes in normalized 'text' form, then
4976 this could all go away and we could take full advantage of
4977 the fact that we're comparing identifiers. :-) */
4978 const size_t attr1_len = IDENTIFIER_LENGTH (attr1);
4979 const size_t attr2_len = IDENTIFIER_LENGTH (attr2);
4981 if (attr2_len == attr1_len + 4)
4983 const char *p = IDENTIFIER_POINTER (attr2);
4984 const char *q = IDENTIFIER_POINTER (attr1);
4985 if (p[0] == '_' && p[1] == '_'
4986 && p[attr2_len - 2] == '_' && p[attr2_len - 1] == '_'
4987 && strncmp (q, p + 2, attr1_len) == 0)
4988 return true;;
4990 else if (attr2_len + 4 == attr1_len)
4992 const char *p = IDENTIFIER_POINTER (attr2);
4993 const char *q = IDENTIFIER_POINTER (attr1);
4994 if (q[0] == '_' && q[1] == '_'
4995 && q[attr1_len - 2] == '_' && q[attr1_len - 1] == '_'
4996 && strncmp (q + 2, p, attr2_len) == 0)
4997 return true;
5000 return false;
5003 /* Compare two attributes for their value identity. Return true if the
5004 attribute values are known to be equal; otherwise return false. */
5006 bool
5007 attribute_value_equal (const_tree attr1, const_tree attr2)
5009 if (TREE_VALUE (attr1) == TREE_VALUE (attr2))
5010 return true;
5012 if (TREE_VALUE (attr1) != NULL_TREE
5013 && TREE_CODE (TREE_VALUE (attr1)) == TREE_LIST
5014 && TREE_VALUE (attr2) != NULL_TREE
5015 && TREE_CODE (TREE_VALUE (attr2)) == TREE_LIST)
5017 /* Handle attribute format. */
5018 if (is_attribute_p ("format", get_attribute_name (attr1)))
5020 attr1 = TREE_VALUE (attr1);
5021 attr2 = TREE_VALUE (attr2);
5022 /* Compare the archetypes (printf/scanf/strftime/...). */
5023 if (!cmp_attrib_identifiers (TREE_VALUE (attr1),
5024 TREE_VALUE (attr2)))
5025 return false;
5026 /* Archetypes are the same. Compare the rest. */
5027 return (simple_cst_list_equal (TREE_CHAIN (attr1),
5028 TREE_CHAIN (attr2)) == 1);
5030 return (simple_cst_list_equal (TREE_VALUE (attr1),
5031 TREE_VALUE (attr2)) == 1);
5034 if ((flag_openmp || flag_openmp_simd)
5035 && TREE_VALUE (attr1) && TREE_VALUE (attr2)
5036 && TREE_CODE (TREE_VALUE (attr1)) == OMP_CLAUSE
5037 && TREE_CODE (TREE_VALUE (attr2)) == OMP_CLAUSE)
5038 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1),
5039 TREE_VALUE (attr2));
5041 return (simple_cst_equal (TREE_VALUE (attr1), TREE_VALUE (attr2)) == 1);
5044 /* Return 0 if the attributes for two types are incompatible, 1 if they
5045 are compatible, and 2 if they are nearly compatible (which causes a
5046 warning to be generated). */
5048 comp_type_attributes (const_tree type1, const_tree type2)
5050 const_tree a1 = TYPE_ATTRIBUTES (type1);
5051 const_tree a2 = TYPE_ATTRIBUTES (type2);
5052 const_tree a;
5054 if (a1 == a2)
5055 return 1;
5056 for (a = a1; a != NULL_TREE; a = TREE_CHAIN (a))
5058 const struct attribute_spec *as;
5059 const_tree attr;
5061 as = lookup_attribute_spec (get_attribute_name (a));
5062 if (!as || as->affects_type_identity == false)
5063 continue;
5065 attr = lookup_attribute (as->name, CONST_CAST_TREE (a2));
5066 if (!attr || !attribute_value_equal (a, attr))
5067 break;
5069 if (!a)
5071 for (a = a2; a != NULL_TREE; a = TREE_CHAIN (a))
5073 const struct attribute_spec *as;
5075 as = lookup_attribute_spec (get_attribute_name (a));
5076 if (!as || as->affects_type_identity == false)
5077 continue;
5079 if (!lookup_attribute (as->name, CONST_CAST_TREE (a1)))
5080 break;
5081 /* We don't need to compare trees again, as we did this
5082 already in first loop. */
5084 /* All types - affecting identity - are equal, so
5085 there is no need to call target hook for comparison. */
5086 if (!a)
5087 return 1;
5089 if (lookup_attribute ("transaction_safe", CONST_CAST_TREE (a)))
5090 return 0;
5091 /* As some type combinations - like default calling-convention - might
5092 be compatible, we have to call the target hook to get the final result. */
5093 return targetm.comp_type_attributes (type1, type2);
5096 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
5097 is ATTRIBUTE.
5099 Record such modified types already made so we don't make duplicates. */
5101 tree
5102 build_type_attribute_variant (tree ttype, tree attribute)
5104 return build_type_attribute_qual_variant (ttype, attribute,
5105 TYPE_QUALS (ttype));
5109 /* Reset the expression *EXPR_P, a size or position.
5111 ??? We could reset all non-constant sizes or positions. But it's cheap
5112 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5114 We need to reset self-referential sizes or positions because they cannot
5115 be gimplified and thus can contain a CALL_EXPR after the gimplification
5116 is finished, which will run afoul of LTO streaming. And they need to be
5117 reset to something essentially dummy but not constant, so as to preserve
5118 the properties of the object they are attached to. */
5120 static inline void
5121 free_lang_data_in_one_sizepos (tree *expr_p)
5123 tree expr = *expr_p;
5124 if (CONTAINS_PLACEHOLDER_P (expr))
5125 *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
5129 /* Reset all the fields in a binfo node BINFO. We only keep
5130 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5132 static void
5133 free_lang_data_in_binfo (tree binfo)
5135 unsigned i;
5136 tree t;
5138 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
5140 BINFO_VIRTUALS (binfo) = NULL_TREE;
5141 BINFO_BASE_ACCESSES (binfo) = NULL;
5142 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
5143 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
5145 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t)
5146 free_lang_data_in_binfo (t);
5150 /* Reset all language specific information still present in TYPE. */
5152 static void
5153 free_lang_data_in_type (tree type)
5155 gcc_assert (TYPE_P (type));
5157 /* Give the FE a chance to remove its own data first. */
5158 lang_hooks.free_lang_data (type);
5160 TREE_LANG_FLAG_0 (type) = 0;
5161 TREE_LANG_FLAG_1 (type) = 0;
5162 TREE_LANG_FLAG_2 (type) = 0;
5163 TREE_LANG_FLAG_3 (type) = 0;
5164 TREE_LANG_FLAG_4 (type) = 0;
5165 TREE_LANG_FLAG_5 (type) = 0;
5166 TREE_LANG_FLAG_6 (type) = 0;
5168 if (TREE_CODE (type) == FUNCTION_TYPE)
5170 /* Remove the const and volatile qualifiers from arguments. The
5171 C++ front end removes them, but the C front end does not,
5172 leading to false ODR violation errors when merging two
5173 instances of the same function signature compiled by
5174 different front ends. */
5175 tree p;
5177 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5179 tree arg_type = TREE_VALUE (p);
5181 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
5183 int quals = TYPE_QUALS (arg_type)
5184 & ~TYPE_QUAL_CONST
5185 & ~TYPE_QUAL_VOLATILE;
5186 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
5187 free_lang_data_in_type (TREE_VALUE (p));
5189 /* C++ FE uses TREE_PURPOSE to store initial values. */
5190 TREE_PURPOSE (p) = NULL;
5192 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
5193 TYPE_MINVAL (type) = NULL;
5195 if (TREE_CODE (type) == METHOD_TYPE)
5197 tree p;
5199 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
5201 /* C++ FE uses TREE_PURPOSE to store initial values. */
5202 TREE_PURPOSE (p) = NULL;
5204 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
5205 TYPE_MINVAL (type) = NULL;
5208 /* Remove members that are not actually FIELD_DECLs from the field
5209 list of an aggregate. These occur in C++. */
5210 if (RECORD_OR_UNION_TYPE_P (type))
5212 tree prev, member;
5214 /* Note that TYPE_FIELDS can be shared across distinct
5215 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
5216 to be removed, we cannot set its TREE_CHAIN to NULL.
5217 Otherwise, we would not be able to find all the other fields
5218 in the other instances of this TREE_TYPE.
5220 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
5221 prev = NULL_TREE;
5222 member = TYPE_FIELDS (type);
5223 while (member)
5225 if (TREE_CODE (member) == FIELD_DECL
5226 || (TREE_CODE (member) == TYPE_DECL
5227 && !DECL_IGNORED_P (member)
5228 && debug_info_level > DINFO_LEVEL_TERSE
5229 && !is_redundant_typedef (member)))
5231 if (prev)
5232 TREE_CHAIN (prev) = member;
5233 else
5234 TYPE_FIELDS (type) = member;
5235 prev = member;
5238 member = TREE_CHAIN (member);
5241 if (prev)
5242 TREE_CHAIN (prev) = NULL_TREE;
5243 else
5244 TYPE_FIELDS (type) = NULL_TREE;
5246 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
5247 and danagle the pointer from time to time. */
5248 if (TYPE_VFIELD (type) && TREE_CODE (TYPE_VFIELD (type)) != FIELD_DECL)
5249 TYPE_VFIELD (type) = NULL_TREE;
5251 /* Remove TYPE_METHODS list. While it would be nice to keep it
5252 to enable ODR warnings about different method lists, doing so
5253 seems to impractically increase size of LTO data streamed.
5254 Keep the information if TYPE_METHODS was non-NULL. This is used
5255 by function.c and pretty printers. */
5256 if (TYPE_METHODS (type))
5257 TYPE_METHODS (type) = error_mark_node;
5258 if (TYPE_BINFO (type))
5260 free_lang_data_in_binfo (TYPE_BINFO (type));
5261 /* We need to preserve link to bases and virtual table for all
5262 polymorphic types to make devirtualization machinery working.
5263 Debug output cares only about bases, but output also
5264 virtual table pointers so merging of -fdevirtualize and
5265 -fno-devirtualize units is easier. */
5266 if ((!BINFO_VTABLE (TYPE_BINFO (type))
5267 || !flag_devirtualize)
5268 && ((!BINFO_N_BASE_BINFOS (TYPE_BINFO (type))
5269 && !BINFO_VTABLE (TYPE_BINFO (type)))
5270 || debug_info_level != DINFO_LEVEL_NONE))
5271 TYPE_BINFO (type) = NULL;
5274 else
5276 /* For non-aggregate types, clear out the language slot (which
5277 overloads TYPE_BINFO). */
5278 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
5280 if (INTEGRAL_TYPE_P (type)
5281 || SCALAR_FLOAT_TYPE_P (type)
5282 || FIXED_POINT_TYPE_P (type))
5284 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
5285 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
5289 free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
5290 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
5292 if (TYPE_CONTEXT (type)
5293 && TREE_CODE (TYPE_CONTEXT (type)) == BLOCK)
5295 tree ctx = TYPE_CONTEXT (type);
5298 ctx = BLOCK_SUPERCONTEXT (ctx);
5300 while (ctx && TREE_CODE (ctx) == BLOCK);
5301 TYPE_CONTEXT (type) = ctx;
5306 /* Return true if DECL may need an assembler name to be set. */
5308 static inline bool
5309 need_assembler_name_p (tree decl)
5311 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5312 Rule merging. This makes type_odr_p to return true on those types during
5313 LTO and by comparing the mangled name, we can say what types are intended
5314 to be equivalent across compilation unit.
5316 We do not store names of type_in_anonymous_namespace_p.
5318 Record, union and enumeration type have linkage that allows use
5319 to check type_in_anonymous_namespace_p. We do not mangle compound types
5320 that always can be compared structurally.
5322 Similarly for builtin types, we compare properties of their main variant.
5323 A special case are integer types where mangling do make differences
5324 between char/signed char/unsigned char etc. Storing name for these makes
5325 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5326 See cp/mangle.c:write_builtin_type for details. */
5328 if (flag_lto_odr_type_mering
5329 && TREE_CODE (decl) == TYPE_DECL
5330 && DECL_NAME (decl)
5331 && decl == TYPE_NAME (TREE_TYPE (decl))
5332 && TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TREE_TYPE (decl)
5333 && !TYPE_ARTIFICIAL (TREE_TYPE (decl))
5334 && (type_with_linkage_p (TREE_TYPE (decl))
5335 || TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE)
5336 && !variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5337 return !DECL_ASSEMBLER_NAME_SET_P (decl);
5338 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5339 if (TREE_CODE (decl) != FUNCTION_DECL
5340 && TREE_CODE (decl) != VAR_DECL)
5341 return false;
5343 /* If DECL already has its assembler name set, it does not need a
5344 new one. */
5345 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
5346 || DECL_ASSEMBLER_NAME_SET_P (decl))
5347 return false;
5349 /* Abstract decls do not need an assembler name. */
5350 if (DECL_ABSTRACT_P (decl))
5351 return false;
5353 /* For VAR_DECLs, only static, public and external symbols need an
5354 assembler name. */
5355 if (TREE_CODE (decl) == VAR_DECL
5356 && !TREE_STATIC (decl)
5357 && !TREE_PUBLIC (decl)
5358 && !DECL_EXTERNAL (decl))
5359 return false;
5361 if (TREE_CODE (decl) == FUNCTION_DECL)
5363 /* Do not set assembler name on builtins. Allow RTL expansion to
5364 decide whether to expand inline or via a regular call. */
5365 if (DECL_BUILT_IN (decl)
5366 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
5367 return false;
5369 /* Functions represented in the callgraph need an assembler name. */
5370 if (cgraph_node::get (decl) != NULL)
5371 return true;
5373 /* Unused and not public functions don't need an assembler name. */
5374 if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
5375 return false;
5378 return true;
5382 /* Reset all language specific information still present in symbol
5383 DECL. */
5385 static void
5386 free_lang_data_in_decl (tree decl)
5388 gcc_assert (DECL_P (decl));
5390 /* Give the FE a chance to remove its own data first. */
5391 lang_hooks.free_lang_data (decl);
5393 TREE_LANG_FLAG_0 (decl) = 0;
5394 TREE_LANG_FLAG_1 (decl) = 0;
5395 TREE_LANG_FLAG_2 (decl) = 0;
5396 TREE_LANG_FLAG_3 (decl) = 0;
5397 TREE_LANG_FLAG_4 (decl) = 0;
5398 TREE_LANG_FLAG_5 (decl) = 0;
5399 TREE_LANG_FLAG_6 (decl) = 0;
5401 free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
5402 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
5403 if (TREE_CODE (decl) == FIELD_DECL)
5405 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
5406 if (TREE_CODE (DECL_CONTEXT (decl)) == QUAL_UNION_TYPE)
5407 DECL_QUALIFIER (decl) = NULL_TREE;
5410 if (TREE_CODE (decl) == FUNCTION_DECL)
5412 struct cgraph_node *node;
5413 if (!(node = cgraph_node::get (decl))
5414 || (!node->definition && !node->clones))
5416 if (node)
5417 node->release_body ();
5418 else
5420 release_function_body (decl);
5421 DECL_ARGUMENTS (decl) = NULL;
5422 DECL_RESULT (decl) = NULL;
5423 DECL_INITIAL (decl) = error_mark_node;
5426 if (gimple_has_body_p (decl))
5428 tree t;
5430 /* If DECL has a gimple body, then the context for its
5431 arguments must be DECL. Otherwise, it doesn't really
5432 matter, as we will not be emitting any code for DECL. In
5433 general, there may be other instances of DECL created by
5434 the front end and since PARM_DECLs are generally shared,
5435 their DECL_CONTEXT changes as the replicas of DECL are
5436 created. The only time where DECL_CONTEXT is important
5437 is for the FUNCTION_DECLs that have a gimple body (since
5438 the PARM_DECL will be used in the function's body). */
5439 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
5440 DECL_CONTEXT (t) = decl;
5441 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl))
5442 DECL_FUNCTION_SPECIFIC_TARGET (decl)
5443 = target_option_default_node;
5444 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl))
5445 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl)
5446 = optimization_default_node;
5449 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5450 At this point, it is not needed anymore. */
5451 DECL_SAVED_TREE (decl) = NULL_TREE;
5453 /* Clear the abstract origin if it refers to a method. Otherwise
5454 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
5455 origin will not be output correctly. */
5456 if (DECL_ABSTRACT_ORIGIN (decl)
5457 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
5458 && RECORD_OR_UNION_TYPE_P
5459 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
5460 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
5462 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5463 DECL_VINDEX referring to itself into a vtable slot number as it
5464 should. Happens with functions that are copied and then forgotten
5465 about. Just clear it, it won't matter anymore. */
5466 if (DECL_VINDEX (decl) && !tree_fits_shwi_p (DECL_VINDEX (decl)))
5467 DECL_VINDEX (decl) = NULL_TREE;
5469 else if (TREE_CODE (decl) == VAR_DECL)
5471 if ((DECL_EXTERNAL (decl)
5472 && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
5473 || (decl_function_context (decl) && !TREE_STATIC (decl)))
5474 DECL_INITIAL (decl) = NULL_TREE;
5476 else if (TREE_CODE (decl) == TYPE_DECL)
5478 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5479 DECL_VISIBILITY_SPECIFIED (decl) = 0;
5480 DECL_INITIAL (decl) = NULL_TREE;
5482 else if (TREE_CODE (decl) == FIELD_DECL)
5483 DECL_INITIAL (decl) = NULL_TREE;
5484 else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
5485 && DECL_INITIAL (decl)
5486 && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
5488 /* Strip builtins from the translation-unit BLOCK. We still have targets
5489 without builtin_decl_explicit support and also builtins are shared
5490 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5491 tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
5492 while (*nextp)
5494 tree var = *nextp;
5495 if (TREE_CODE (var) == FUNCTION_DECL
5496 && DECL_BUILT_IN (var))
5497 *nextp = TREE_CHAIN (var);
5498 else
5499 nextp = &TREE_CHAIN (var);
5505 /* Data used when collecting DECLs and TYPEs for language data removal. */
5507 struct free_lang_data_d
5509 /* Worklist to avoid excessive recursion. */
5510 vec<tree> worklist;
5512 /* Set of traversed objects. Used to avoid duplicate visits. */
5513 hash_set<tree> *pset;
5515 /* Array of symbols to process with free_lang_data_in_decl. */
5516 vec<tree> decls;
5518 /* Array of types to process with free_lang_data_in_type. */
5519 vec<tree> types;
5523 /* Save all language fields needed to generate proper debug information
5524 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5526 static void
5527 save_debug_info_for_decl (tree t)
5529 /*struct saved_debug_info_d *sdi;*/
5531 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
5533 /* FIXME. Partial implementation for saving debug info removed. */
5537 /* Save all language fields needed to generate proper debug information
5538 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5540 static void
5541 save_debug_info_for_type (tree t)
5543 /*struct saved_debug_info_d *sdi;*/
5545 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
5547 /* FIXME. Partial implementation for saving debug info removed. */
5551 /* Add type or decl T to one of the list of tree nodes that need their
5552 language data removed. The lists are held inside FLD. */
5554 static void
5555 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
5557 if (DECL_P (t))
5559 fld->decls.safe_push (t);
5560 if (debug_info_level > DINFO_LEVEL_TERSE)
5561 save_debug_info_for_decl (t);
5563 else if (TYPE_P (t))
5565 fld->types.safe_push (t);
5566 if (debug_info_level > DINFO_LEVEL_TERSE)
5567 save_debug_info_for_type (t);
5569 else
5570 gcc_unreachable ();
5573 /* Push tree node T into FLD->WORKLIST. */
5575 static inline void
5576 fld_worklist_push (tree t, struct free_lang_data_d *fld)
5578 if (t && !is_lang_specific (t) && !fld->pset->contains (t))
5579 fld->worklist.safe_push ((t));
5583 /* Operand callback helper for free_lang_data_in_node. *TP is the
5584 subtree operand being considered. */
5586 static tree
5587 find_decls_types_r (tree *tp, int *ws, void *data)
5589 tree t = *tp;
5590 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
5592 if (TREE_CODE (t) == TREE_LIST)
5593 return NULL_TREE;
5595 /* Language specific nodes will be removed, so there is no need
5596 to gather anything under them. */
5597 if (is_lang_specific (t))
5599 *ws = 0;
5600 return NULL_TREE;
5603 if (DECL_P (t))
5605 /* Note that walk_tree does not traverse every possible field in
5606 decls, so we have to do our own traversals here. */
5607 add_tree_to_fld_list (t, fld);
5609 fld_worklist_push (DECL_NAME (t), fld);
5610 fld_worklist_push (DECL_CONTEXT (t), fld);
5611 fld_worklist_push (DECL_SIZE (t), fld);
5612 fld_worklist_push (DECL_SIZE_UNIT (t), fld);
5614 /* We are going to remove everything under DECL_INITIAL for
5615 TYPE_DECLs. No point walking them. */
5616 if (TREE_CODE (t) != TYPE_DECL)
5617 fld_worklist_push (DECL_INITIAL (t), fld);
5619 fld_worklist_push (DECL_ATTRIBUTES (t), fld);
5620 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
5622 if (TREE_CODE (t) == FUNCTION_DECL)
5624 fld_worklist_push (DECL_ARGUMENTS (t), fld);
5625 fld_worklist_push (DECL_RESULT (t), fld);
5627 else if (TREE_CODE (t) == TYPE_DECL)
5629 fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
5631 else if (TREE_CODE (t) == FIELD_DECL)
5633 fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
5634 fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
5635 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
5636 fld_worklist_push (DECL_FCONTEXT (t), fld);
5639 if ((TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
5640 && DECL_HAS_VALUE_EXPR_P (t))
5641 fld_worklist_push (DECL_VALUE_EXPR (t), fld);
5643 if (TREE_CODE (t) != FIELD_DECL
5644 && TREE_CODE (t) != TYPE_DECL)
5645 fld_worklist_push (TREE_CHAIN (t), fld);
5646 *ws = 0;
5648 else if (TYPE_P (t))
5650 /* Note that walk_tree does not traverse every possible field in
5651 types, so we have to do our own traversals here. */
5652 add_tree_to_fld_list (t, fld);
5654 if (!RECORD_OR_UNION_TYPE_P (t))
5655 fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
5656 fld_worklist_push (TYPE_SIZE (t), fld);
5657 fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
5658 fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
5659 fld_worklist_push (TYPE_POINTER_TO (t), fld);
5660 fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
5661 fld_worklist_push (TYPE_NAME (t), fld);
5662 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5663 them and thus do not and want not to reach unused pointer types
5664 this way. */
5665 if (!POINTER_TYPE_P (t))
5666 fld_worklist_push (TYPE_MINVAL (t), fld);
5667 if (!RECORD_OR_UNION_TYPE_P (t))
5668 fld_worklist_push (TYPE_MAXVAL (t), fld);
5669 fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
5670 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5671 do not and want not to reach unused variants this way. */
5672 if (TYPE_CONTEXT (t))
5674 tree ctx = TYPE_CONTEXT (t);
5675 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5676 So push that instead. */
5677 while (ctx && TREE_CODE (ctx) == BLOCK)
5678 ctx = BLOCK_SUPERCONTEXT (ctx);
5679 fld_worklist_push (ctx, fld);
5681 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5682 and want not to reach unused types this way. */
5684 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
5686 unsigned i;
5687 tree tem;
5688 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem)
5689 fld_worklist_push (TREE_TYPE (tem), fld);
5690 tem = BINFO_VIRTUALS (TYPE_BINFO (t));
5691 if (tem
5692 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
5693 && TREE_CODE (tem) == TREE_LIST)
5696 fld_worklist_push (TREE_VALUE (tem), fld);
5697 tem = TREE_CHAIN (tem);
5699 while (tem);
5701 if (RECORD_OR_UNION_TYPE_P (t))
5703 tree tem;
5704 /* Push all TYPE_FIELDS - there can be interleaving interesting
5705 and non-interesting things. */
5706 tem = TYPE_FIELDS (t);
5707 while (tem)
5709 if (TREE_CODE (tem) == FIELD_DECL
5710 || (TREE_CODE (tem) == TYPE_DECL
5711 && !DECL_IGNORED_P (tem)
5712 && debug_info_level > DINFO_LEVEL_TERSE
5713 && !is_redundant_typedef (tem)))
5714 fld_worklist_push (tem, fld);
5715 tem = TREE_CHAIN (tem);
5719 fld_worklist_push (TYPE_STUB_DECL (t), fld);
5720 *ws = 0;
5722 else if (TREE_CODE (t) == BLOCK)
5724 tree tem;
5725 for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
5726 fld_worklist_push (tem, fld);
5727 for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
5728 fld_worklist_push (tem, fld);
5729 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
5732 if (TREE_CODE (t) != IDENTIFIER_NODE
5733 && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
5734 fld_worklist_push (TREE_TYPE (t), fld);
5736 return NULL_TREE;
5740 /* Find decls and types in T. */
5742 static void
5743 find_decls_types (tree t, struct free_lang_data_d *fld)
5745 while (1)
5747 if (!fld->pset->contains (t))
5748 walk_tree (&t, find_decls_types_r, fld, fld->pset);
5749 if (fld->worklist.is_empty ())
5750 break;
5751 t = fld->worklist.pop ();
5755 /* Translate all the types in LIST with the corresponding runtime
5756 types. */
5758 static tree
5759 get_eh_types_for_runtime (tree list)
5761 tree head, prev;
5763 if (list == NULL_TREE)
5764 return NULL_TREE;
5766 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5767 prev = head;
5768 list = TREE_CHAIN (list);
5769 while (list)
5771 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
5772 TREE_CHAIN (prev) = n;
5773 prev = TREE_CHAIN (prev);
5774 list = TREE_CHAIN (list);
5777 return head;
5781 /* Find decls and types referenced in EH region R and store them in
5782 FLD->DECLS and FLD->TYPES. */
5784 static void
5785 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
5787 switch (r->type)
5789 case ERT_CLEANUP:
5790 break;
5792 case ERT_TRY:
5794 eh_catch c;
5796 /* The types referenced in each catch must first be changed to the
5797 EH types used at runtime. This removes references to FE types
5798 in the region. */
5799 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
5801 c->type_list = get_eh_types_for_runtime (c->type_list);
5802 walk_tree (&c->type_list, find_decls_types_r, fld, fld->pset);
5805 break;
5807 case ERT_ALLOWED_EXCEPTIONS:
5808 r->u.allowed.type_list
5809 = get_eh_types_for_runtime (r->u.allowed.type_list);
5810 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, fld->pset);
5811 break;
5813 case ERT_MUST_NOT_THROW:
5814 walk_tree (&r->u.must_not_throw.failure_decl,
5815 find_decls_types_r, fld, fld->pset);
5816 break;
5821 /* Find decls and types referenced in cgraph node N and store them in
5822 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5823 look for *every* kind of DECL and TYPE node reachable from N,
5824 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5825 NAMESPACE_DECLs, etc). */
5827 static void
5828 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
5830 basic_block bb;
5831 struct function *fn;
5832 unsigned ix;
5833 tree t;
5835 find_decls_types (n->decl, fld);
5837 if (!gimple_has_body_p (n->decl))
5838 return;
5840 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5842 fn = DECL_STRUCT_FUNCTION (n->decl);
5844 /* Traverse locals. */
5845 FOR_EACH_LOCAL_DECL (fn, ix, t)
5846 find_decls_types (t, fld);
5848 /* Traverse EH regions in FN. */
5850 eh_region r;
5851 FOR_ALL_EH_REGION_FN (r, fn)
5852 find_decls_types_in_eh_region (r, fld);
5855 /* Traverse every statement in FN. */
5856 FOR_EACH_BB_FN (bb, fn)
5858 gphi_iterator psi;
5859 gimple_stmt_iterator si;
5860 unsigned i;
5862 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); gsi_next (&psi))
5864 gphi *phi = psi.phi ();
5866 for (i = 0; i < gimple_phi_num_args (phi); i++)
5868 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5869 find_decls_types (*arg_p, fld);
5873 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5875 gimple *stmt = gsi_stmt (si);
5877 if (is_gimple_call (stmt))
5878 find_decls_types (gimple_call_fntype (stmt), fld);
5880 for (i = 0; i < gimple_num_ops (stmt); i++)
5882 tree arg = gimple_op (stmt, i);
5883 find_decls_types (arg, fld);
5890 /* Find decls and types referenced in varpool node N and store them in
5891 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5892 look for *every* kind of DECL and TYPE node reachable from N,
5893 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5894 NAMESPACE_DECLs, etc). */
5896 static void
5897 find_decls_types_in_var (varpool_node *v, struct free_lang_data_d *fld)
5899 find_decls_types (v->decl, fld);
5902 /* If T needs an assembler name, have one created for it. */
5904 void
5905 assign_assembler_name_if_neeeded (tree t)
5907 if (need_assembler_name_p (t))
5909 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5910 diagnostics that use input_location to show locus
5911 information. The problem here is that, at this point,
5912 input_location is generally anchored to the end of the file
5913 (since the parser is long gone), so we don't have a good
5914 position to pin it to.
5916 To alleviate this problem, this uses the location of T's
5917 declaration. Examples of this are
5918 testsuite/g++.dg/template/cond2.C and
5919 testsuite/g++.dg/template/pr35240.C. */
5920 location_t saved_location = input_location;
5921 input_location = DECL_SOURCE_LOCATION (t);
5923 decl_assembler_name (t);
5925 input_location = saved_location;
5930 /* Free language specific information for every operand and expression
5931 in every node of the call graph. This process operates in three stages:
5933 1- Every callgraph node and varpool node is traversed looking for
5934 decls and types embedded in them. This is a more exhaustive
5935 search than that done by find_referenced_vars, because it will
5936 also collect individual fields, decls embedded in types, etc.
5938 2- All the decls found are sent to free_lang_data_in_decl.
5940 3- All the types found are sent to free_lang_data_in_type.
5942 The ordering between decls and types is important because
5943 free_lang_data_in_decl sets assembler names, which includes
5944 mangling. So types cannot be freed up until assembler names have
5945 been set up. */
5947 static void
5948 free_lang_data_in_cgraph (void)
5950 struct cgraph_node *n;
5951 varpool_node *v;
5952 struct free_lang_data_d fld;
5953 tree t;
5954 unsigned i;
5955 alias_pair *p;
5957 /* Initialize sets and arrays to store referenced decls and types. */
5958 fld.pset = new hash_set<tree>;
5959 fld.worklist.create (0);
5960 fld.decls.create (100);
5961 fld.types.create (100);
5963 /* Find decls and types in the body of every function in the callgraph. */
5964 FOR_EACH_FUNCTION (n)
5965 find_decls_types_in_node (n, &fld);
5967 FOR_EACH_VEC_SAFE_ELT (alias_pairs, i, p)
5968 find_decls_types (p->decl, &fld);
5970 /* Find decls and types in every varpool symbol. */
5971 FOR_EACH_VARIABLE (v)
5972 find_decls_types_in_var (v, &fld);
5974 /* Set the assembler name on every decl found. We need to do this
5975 now because free_lang_data_in_decl will invalidate data needed
5976 for mangling. This breaks mangling on interdependent decls. */
5977 FOR_EACH_VEC_ELT (fld.decls, i, t)
5978 assign_assembler_name_if_neeeded (t);
5980 /* Traverse every decl found freeing its language data. */
5981 FOR_EACH_VEC_ELT (fld.decls, i, t)
5982 free_lang_data_in_decl (t);
5984 /* Traverse every type found freeing its language data. */
5985 FOR_EACH_VEC_ELT (fld.types, i, t)
5986 free_lang_data_in_type (t);
5987 if (flag_checking)
5989 FOR_EACH_VEC_ELT (fld.types, i, t)
5990 verify_type (t);
5993 delete fld.pset;
5994 fld.worklist.release ();
5995 fld.decls.release ();
5996 fld.types.release ();
6000 /* Free resources that are used by FE but are not needed once they are done. */
6002 static unsigned
6003 free_lang_data (void)
6005 unsigned i;
6007 /* If we are the LTO frontend we have freed lang-specific data already. */
6008 if (in_lto_p
6009 || (!flag_generate_lto && !flag_generate_offload))
6010 return 0;
6012 /* Allocate and assign alias sets to the standard integer types
6013 while the slots are still in the way the frontends generated them. */
6014 for (i = 0; i < itk_none; ++i)
6015 if (integer_types[i])
6016 TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
6018 /* Traverse the IL resetting language specific information for
6019 operands, expressions, etc. */
6020 free_lang_data_in_cgraph ();
6022 /* Create gimple variants for common types. */
6023 ptrdiff_type_node = integer_type_node;
6024 fileptr_type_node = ptr_type_node;
6026 /* Reset some langhooks. Do not reset types_compatible_p, it may
6027 still be used indirectly via the get_alias_set langhook. */
6028 lang_hooks.dwarf_name = lhd_dwarf_name;
6029 lang_hooks.decl_printable_name = gimple_decl_printable_name;
6030 lang_hooks.gimplify_expr = lhd_gimplify_expr;
6032 /* We do not want the default decl_assembler_name implementation,
6033 rather if we have fixed everything we want a wrapper around it
6034 asserting that all non-local symbols already got their assembler
6035 name and only produce assembler names for local symbols. Or rather
6036 make sure we never call decl_assembler_name on local symbols and
6037 devise a separate, middle-end private scheme for it. */
6039 /* Reset diagnostic machinery. */
6040 tree_diagnostics_defaults (global_dc);
6042 return 0;
6046 namespace {
6048 const pass_data pass_data_ipa_free_lang_data =
6050 SIMPLE_IPA_PASS, /* type */
6051 "*free_lang_data", /* name */
6052 OPTGROUP_NONE, /* optinfo_flags */
6053 TV_IPA_FREE_LANG_DATA, /* tv_id */
6054 0, /* properties_required */
6055 0, /* properties_provided */
6056 0, /* properties_destroyed */
6057 0, /* todo_flags_start */
6058 0, /* todo_flags_finish */
6061 class pass_ipa_free_lang_data : public simple_ipa_opt_pass
6063 public:
6064 pass_ipa_free_lang_data (gcc::context *ctxt)
6065 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data, ctxt)
6068 /* opt_pass methods: */
6069 virtual unsigned int execute (function *) { return free_lang_data (); }
6071 }; // class pass_ipa_free_lang_data
6073 } // anon namespace
6075 simple_ipa_opt_pass *
6076 make_pass_ipa_free_lang_data (gcc::context *ctxt)
6078 return new pass_ipa_free_lang_data (ctxt);
6081 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
6082 ATTR_NAME. Also used internally by remove_attribute(). */
6083 bool
6084 private_is_attribute_p (const char *attr_name, size_t attr_len, const_tree ident)
6086 size_t ident_len = IDENTIFIER_LENGTH (ident);
6088 if (ident_len == attr_len)
6090 if (strcmp (attr_name, IDENTIFIER_POINTER (ident)) == 0)
6091 return true;
6093 else if (ident_len == attr_len + 4)
6095 /* There is the possibility that ATTR is 'text' and IDENT is
6096 '__text__'. */
6097 const char *p = IDENTIFIER_POINTER (ident);
6098 if (p[0] == '_' && p[1] == '_'
6099 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
6100 && strncmp (attr_name, p + 2, attr_len) == 0)
6101 return true;
6104 return false;
6107 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
6108 of ATTR_NAME, and LIST is not NULL_TREE. */
6109 tree
6110 private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
6112 while (list)
6114 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
6116 if (ident_len == attr_len)
6118 if (!strcmp (attr_name,
6119 IDENTIFIER_POINTER (get_attribute_name (list))))
6120 break;
6122 /* TODO: If we made sure that attributes were stored in the
6123 canonical form without '__...__' (ie, as in 'text' as opposed
6124 to '__text__') then we could avoid the following case. */
6125 else if (ident_len == attr_len + 4)
6127 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
6128 if (p[0] == '_' && p[1] == '_'
6129 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
6130 && strncmp (attr_name, p + 2, attr_len) == 0)
6131 break;
6133 list = TREE_CHAIN (list);
6136 return list;
6139 /* Given an attribute name ATTR_NAME and a list of attributes LIST,
6140 return a pointer to the attribute's list first element if the attribute
6141 starts with ATTR_NAME. ATTR_NAME must be in the form 'text' (not
6142 '__text__'). */
6144 tree
6145 private_lookup_attribute_by_prefix (const char *attr_name, size_t attr_len,
6146 tree list)
6148 while (list)
6150 size_t ident_len = IDENTIFIER_LENGTH (get_attribute_name (list));
6152 if (attr_len > ident_len)
6154 list = TREE_CHAIN (list);
6155 continue;
6158 const char *p = IDENTIFIER_POINTER (get_attribute_name (list));
6160 if (strncmp (attr_name, p, attr_len) == 0)
6161 break;
6163 /* TODO: If we made sure that attributes were stored in the
6164 canonical form without '__...__' (ie, as in 'text' as opposed
6165 to '__text__') then we could avoid the following case. */
6166 if (p[0] == '_' && p[1] == '_' &&
6167 strncmp (attr_name, p + 2, attr_len) == 0)
6168 break;
6170 list = TREE_CHAIN (list);
6173 return list;
6177 /* A variant of lookup_attribute() that can be used with an identifier
6178 as the first argument, and where the identifier can be either
6179 'text' or '__text__'.
6181 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
6182 return a pointer to the attribute's list element if the attribute
6183 is part of the list, or NULL_TREE if not found. If the attribute
6184 appears more than once, this only returns the first occurrence; the
6185 TREE_CHAIN of the return value should be passed back in if further
6186 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
6187 can be in the form 'text' or '__text__'. */
6188 static tree
6189 lookup_ident_attribute (tree attr_identifier, tree list)
6191 gcc_checking_assert (TREE_CODE (attr_identifier) == IDENTIFIER_NODE);
6193 while (list)
6195 gcc_checking_assert (TREE_CODE (get_attribute_name (list))
6196 == IDENTIFIER_NODE);
6198 if (cmp_attrib_identifiers (attr_identifier,
6199 get_attribute_name (list)))
6200 /* Found it. */
6201 break;
6202 list = TREE_CHAIN (list);
6205 return list;
6208 /* Remove any instances of attribute ATTR_NAME in LIST and return the
6209 modified list. */
6211 tree
6212 remove_attribute (const char *attr_name, tree list)
6214 tree *p;
6215 size_t attr_len = strlen (attr_name);
6217 gcc_checking_assert (attr_name[0] != '_');
6219 for (p = &list; *p; )
6221 tree l = *p;
6222 /* TODO: If we were storing attributes in normalized form, here
6223 we could use a simple strcmp(). */
6224 if (private_is_attribute_p (attr_name, attr_len, get_attribute_name (l)))
6225 *p = TREE_CHAIN (l);
6226 else
6227 p = &TREE_CHAIN (l);
6230 return list;
6233 /* Return an attribute list that is the union of a1 and a2. */
6235 tree
6236 merge_attributes (tree a1, tree a2)
6238 tree attributes;
6240 /* Either one unset? Take the set one. */
6242 if ((attributes = a1) == 0)
6243 attributes = a2;
6245 /* One that completely contains the other? Take it. */
6247 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
6249 if (attribute_list_contained (a2, a1))
6250 attributes = a2;
6251 else
6253 /* Pick the longest list, and hang on the other list. */
6255 if (list_length (a1) < list_length (a2))
6256 attributes = a2, a2 = a1;
6258 for (; a2 != 0; a2 = TREE_CHAIN (a2))
6260 tree a;
6261 for (a = lookup_ident_attribute (get_attribute_name (a2),
6262 attributes);
6263 a != NULL_TREE && !attribute_value_equal (a, a2);
6264 a = lookup_ident_attribute (get_attribute_name (a2),
6265 TREE_CHAIN (a)))
6267 if (a == NULL_TREE)
6269 a1 = copy_node (a2);
6270 TREE_CHAIN (a1) = attributes;
6271 attributes = a1;
6276 return attributes;
6279 /* Given types T1 and T2, merge their attributes and return
6280 the result. */
6282 tree
6283 merge_type_attributes (tree t1, tree t2)
6285 return merge_attributes (TYPE_ATTRIBUTES (t1),
6286 TYPE_ATTRIBUTES (t2));
6289 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
6290 the result. */
6292 tree
6293 merge_decl_attributes (tree olddecl, tree newdecl)
6295 return merge_attributes (DECL_ATTRIBUTES (olddecl),
6296 DECL_ATTRIBUTES (newdecl));
6299 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
6301 /* Specialization of merge_decl_attributes for various Windows targets.
6303 This handles the following situation:
6305 __declspec (dllimport) int foo;
6306 int foo;
6308 The second instance of `foo' nullifies the dllimport. */
6310 tree
6311 merge_dllimport_decl_attributes (tree old, tree new_tree)
6313 tree a;
6314 int delete_dllimport_p = 1;
6316 /* What we need to do here is remove from `old' dllimport if it doesn't
6317 appear in `new'. dllimport behaves like extern: if a declaration is
6318 marked dllimport and a definition appears later, then the object
6319 is not dllimport'd. We also remove a `new' dllimport if the old list
6320 contains dllexport: dllexport always overrides dllimport, regardless
6321 of the order of declaration. */
6322 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
6323 delete_dllimport_p = 0;
6324 else if (DECL_DLLIMPORT_P (new_tree)
6325 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
6327 DECL_DLLIMPORT_P (new_tree) = 0;
6328 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
6329 "dllimport ignored", new_tree);
6331 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
6333 /* Warn about overriding a symbol that has already been used, e.g.:
6334 extern int __attribute__ ((dllimport)) foo;
6335 int* bar () {return &foo;}
6336 int foo;
6338 if (TREE_USED (old))
6340 warning (0, "%q+D redeclared without dllimport attribute "
6341 "after being referenced with dll linkage", new_tree);
6342 /* If we have used a variable's address with dllimport linkage,
6343 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
6344 decl may already have had TREE_CONSTANT computed.
6345 We still remove the attribute so that assembler code refers
6346 to '&foo rather than '_imp__foo'. */
6347 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
6348 DECL_DLLIMPORT_P (new_tree) = 1;
6351 /* Let an inline definition silently override the external reference,
6352 but otherwise warn about attribute inconsistency. */
6353 else if (TREE_CODE (new_tree) == VAR_DECL
6354 || !DECL_DECLARED_INLINE_P (new_tree))
6355 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
6356 "previous dllimport ignored", new_tree);
6358 else
6359 delete_dllimport_p = 0;
6361 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
6363 if (delete_dllimport_p)
6364 a = remove_attribute ("dllimport", a);
6366 return a;
6369 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
6370 struct attribute_spec.handler. */
6372 tree
6373 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
6374 bool *no_add_attrs)
6376 tree node = *pnode;
6377 bool is_dllimport;
6379 /* These attributes may apply to structure and union types being created,
6380 but otherwise should pass to the declaration involved. */
6381 if (!DECL_P (node))
6383 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
6384 | (int) ATTR_FLAG_ARRAY_NEXT))
6386 *no_add_attrs = true;
6387 return tree_cons (name, args, NULL_TREE);
6389 if (TREE_CODE (node) == RECORD_TYPE
6390 || TREE_CODE (node) == UNION_TYPE)
6392 node = TYPE_NAME (node);
6393 if (!node)
6394 return NULL_TREE;
6396 else
6398 warning (OPT_Wattributes, "%qE attribute ignored",
6399 name);
6400 *no_add_attrs = true;
6401 return NULL_TREE;
6405 if (TREE_CODE (node) != FUNCTION_DECL
6406 && TREE_CODE (node) != VAR_DECL
6407 && TREE_CODE (node) != TYPE_DECL)
6409 *no_add_attrs = true;
6410 warning (OPT_Wattributes, "%qE attribute ignored",
6411 name);
6412 return NULL_TREE;
6415 if (TREE_CODE (node) == TYPE_DECL
6416 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
6417 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
6419 *no_add_attrs = true;
6420 warning (OPT_Wattributes, "%qE attribute ignored",
6421 name);
6422 return NULL_TREE;
6425 is_dllimport = is_attribute_p ("dllimport", name);
6427 /* Report error on dllimport ambiguities seen now before they cause
6428 any damage. */
6429 if (is_dllimport)
6431 /* Honor any target-specific overrides. */
6432 if (!targetm.valid_dllimport_attribute_p (node))
6433 *no_add_attrs = true;
6435 else if (TREE_CODE (node) == FUNCTION_DECL
6436 && DECL_DECLARED_INLINE_P (node))
6438 warning (OPT_Wattributes, "inline function %q+D declared as "
6439 " dllimport: attribute ignored", node);
6440 *no_add_attrs = true;
6442 /* Like MS, treat definition of dllimported variables and
6443 non-inlined functions on declaration as syntax errors. */
6444 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
6446 error ("function %q+D definition is marked dllimport", node);
6447 *no_add_attrs = true;
6450 else if (TREE_CODE (node) == VAR_DECL)
6452 if (DECL_INITIAL (node))
6454 error ("variable %q+D definition is marked dllimport",
6455 node);
6456 *no_add_attrs = true;
6459 /* `extern' needn't be specified with dllimport.
6460 Specify `extern' now and hope for the best. Sigh. */
6461 DECL_EXTERNAL (node) = 1;
6462 /* Also, implicitly give dllimport'd variables declared within
6463 a function global scope, unless declared static. */
6464 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
6465 TREE_PUBLIC (node) = 1;
6468 if (*no_add_attrs == false)
6469 DECL_DLLIMPORT_P (node) = 1;
6471 else if (TREE_CODE (node) == FUNCTION_DECL
6472 && DECL_DECLARED_INLINE_P (node)
6473 && flag_keep_inline_dllexport)
6474 /* An exported function, even if inline, must be emitted. */
6475 DECL_EXTERNAL (node) = 0;
6477 /* Report error if symbol is not accessible at global scope. */
6478 if (!TREE_PUBLIC (node)
6479 && (TREE_CODE (node) == VAR_DECL
6480 || TREE_CODE (node) == FUNCTION_DECL))
6482 error ("external linkage required for symbol %q+D because of "
6483 "%qE attribute", node, name);
6484 *no_add_attrs = true;
6487 /* A dllexport'd entity must have default visibility so that other
6488 program units (shared libraries or the main executable) can see
6489 it. A dllimport'd entity must have default visibility so that
6490 the linker knows that undefined references within this program
6491 unit can be resolved by the dynamic linker. */
6492 if (!*no_add_attrs)
6494 if (DECL_VISIBILITY_SPECIFIED (node)
6495 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
6496 error ("%qE implies default visibility, but %qD has already "
6497 "been declared with a different visibility",
6498 name, node);
6499 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
6500 DECL_VISIBILITY_SPECIFIED (node) = 1;
6503 return NULL_TREE;
6506 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
6508 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6509 of the various TYPE_QUAL values. */
6511 static void
6512 set_type_quals (tree type, int type_quals)
6514 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
6515 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
6516 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
6517 TYPE_ATOMIC (type) = (type_quals & TYPE_QUAL_ATOMIC) != 0;
6518 TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
6521 /* Returns true iff unqualified CAND and BASE are equivalent. */
6523 bool
6524 check_base_type (const_tree cand, const_tree base)
6526 return (TYPE_NAME (cand) == TYPE_NAME (base)
6527 /* Apparently this is needed for Objective-C. */
6528 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6529 /* Check alignment. */
6530 && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
6531 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6532 TYPE_ATTRIBUTES (base)));
6535 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6537 bool
6538 check_qualified_type (const_tree cand, const_tree base, int type_quals)
6540 return (TYPE_QUALS (cand) == type_quals
6541 && check_base_type (cand, base));
6544 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6546 static bool
6547 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
6549 return (TYPE_QUALS (cand) == TYPE_QUALS (base)
6550 && TYPE_NAME (cand) == TYPE_NAME (base)
6551 /* Apparently this is needed for Objective-C. */
6552 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
6553 /* Check alignment. */
6554 && TYPE_ALIGN (cand) == align
6555 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
6556 TYPE_ATTRIBUTES (base)));
6559 /* This function checks to see if TYPE matches the size one of the built-in
6560 atomic types, and returns that core atomic type. */
6562 static tree
6563 find_atomic_core_type (tree type)
6565 tree base_atomic_type;
6567 /* Only handle complete types. */
6568 if (TYPE_SIZE (type) == NULL_TREE)
6569 return NULL_TREE;
6571 HOST_WIDE_INT type_size = tree_to_uhwi (TYPE_SIZE (type));
6572 switch (type_size)
6574 case 8:
6575 base_atomic_type = atomicQI_type_node;
6576 break;
6578 case 16:
6579 base_atomic_type = atomicHI_type_node;
6580 break;
6582 case 32:
6583 base_atomic_type = atomicSI_type_node;
6584 break;
6586 case 64:
6587 base_atomic_type = atomicDI_type_node;
6588 break;
6590 case 128:
6591 base_atomic_type = atomicTI_type_node;
6592 break;
6594 default:
6595 base_atomic_type = NULL_TREE;
6598 return base_atomic_type;
6601 /* Return a version of the TYPE, qualified as indicated by the
6602 TYPE_QUALS, if one exists. If no qualified version exists yet,
6603 return NULL_TREE. */
6605 tree
6606 get_qualified_type (tree type, int type_quals)
6608 tree t;
6610 if (TYPE_QUALS (type) == type_quals)
6611 return type;
6613 /* Search the chain of variants to see if there is already one there just
6614 like the one we need to have. If so, use that existing one. We must
6615 preserve the TYPE_NAME, since there is code that depends on this. */
6616 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6617 if (check_qualified_type (t, type, type_quals))
6618 return t;
6620 return NULL_TREE;
6623 /* Like get_qualified_type, but creates the type if it does not
6624 exist. This function never returns NULL_TREE. */
6626 tree
6627 build_qualified_type (tree type, int type_quals)
6629 tree t;
6631 /* See if we already have the appropriate qualified variant. */
6632 t = get_qualified_type (type, type_quals);
6634 /* If not, build it. */
6635 if (!t)
6637 t = build_variant_type_copy (type);
6638 set_type_quals (t, type_quals);
6640 if (((type_quals & TYPE_QUAL_ATOMIC) == TYPE_QUAL_ATOMIC))
6642 /* See if this object can map to a basic atomic type. */
6643 tree atomic_type = find_atomic_core_type (type);
6644 if (atomic_type)
6646 /* Ensure the alignment of this type is compatible with
6647 the required alignment of the atomic type. */
6648 if (TYPE_ALIGN (atomic_type) > TYPE_ALIGN (t))
6649 TYPE_ALIGN (t) = TYPE_ALIGN (atomic_type);
6653 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6654 /* Propagate structural equality. */
6655 SET_TYPE_STRUCTURAL_EQUALITY (t);
6656 else if (TYPE_CANONICAL (type) != type)
6657 /* Build the underlying canonical type, since it is different
6658 from TYPE. */
6660 tree c = build_qualified_type (TYPE_CANONICAL (type), type_quals);
6661 TYPE_CANONICAL (t) = TYPE_CANONICAL (c);
6663 else
6664 /* T is its own canonical type. */
6665 TYPE_CANONICAL (t) = t;
6669 return t;
6672 /* Create a variant of type T with alignment ALIGN. */
6674 tree
6675 build_aligned_type (tree type, unsigned int align)
6677 tree t;
6679 if (TYPE_PACKED (type)
6680 || TYPE_ALIGN (type) == align)
6681 return type;
6683 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6684 if (check_aligned_type (t, type, align))
6685 return t;
6687 t = build_variant_type_copy (type);
6688 TYPE_ALIGN (t) = align;
6690 return t;
6693 /* Create a new distinct copy of TYPE. The new type is made its own
6694 MAIN_VARIANT. If TYPE requires structural equality checks, the
6695 resulting type requires structural equality checks; otherwise, its
6696 TYPE_CANONICAL points to itself. */
6698 tree
6699 build_distinct_type_copy (tree type)
6701 tree t = copy_node (type);
6703 TYPE_POINTER_TO (t) = 0;
6704 TYPE_REFERENCE_TO (t) = 0;
6706 /* Set the canonical type either to a new equivalence class, or
6707 propagate the need for structural equality checks. */
6708 if (TYPE_STRUCTURAL_EQUALITY_P (type))
6709 SET_TYPE_STRUCTURAL_EQUALITY (t);
6710 else
6711 TYPE_CANONICAL (t) = t;
6713 /* Make it its own variant. */
6714 TYPE_MAIN_VARIANT (t) = t;
6715 TYPE_NEXT_VARIANT (t) = 0;
6717 /* We do not record methods in type copies nor variants
6718 so we do not need to keep them up to date when new method
6719 is inserted. */
6720 if (RECORD_OR_UNION_TYPE_P (t))
6721 TYPE_METHODS (t) = NULL_TREE;
6723 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6724 whose TREE_TYPE is not t. This can also happen in the Ada
6725 frontend when using subtypes. */
6727 return t;
6730 /* Create a new variant of TYPE, equivalent but distinct. This is so
6731 the caller can modify it. TYPE_CANONICAL for the return type will
6732 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6733 are considered equal by the language itself (or that both types
6734 require structural equality checks). */
6736 tree
6737 build_variant_type_copy (tree type)
6739 tree t, m = TYPE_MAIN_VARIANT (type);
6741 t = build_distinct_type_copy (type);
6743 /* Since we're building a variant, assume that it is a non-semantic
6744 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6745 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
6746 /* Type variants have no alias set defined. */
6747 TYPE_ALIAS_SET (t) = -1;
6749 /* Add the new type to the chain of variants of TYPE. */
6750 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
6751 TYPE_NEXT_VARIANT (m) = t;
6752 TYPE_MAIN_VARIANT (t) = m;
6754 return t;
6757 /* Return true if the from tree in both tree maps are equal. */
6760 tree_map_base_eq (const void *va, const void *vb)
6762 const struct tree_map_base *const a = (const struct tree_map_base *) va,
6763 *const b = (const struct tree_map_base *) vb;
6764 return (a->from == b->from);
6767 /* Hash a from tree in a tree_base_map. */
6769 unsigned int
6770 tree_map_base_hash (const void *item)
6772 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
6775 /* Return true if this tree map structure is marked for garbage collection
6776 purposes. We simply return true if the from tree is marked, so that this
6777 structure goes away when the from tree goes away. */
6780 tree_map_base_marked_p (const void *p)
6782 return ggc_marked_p (((const struct tree_map_base *) p)->from);
6785 /* Hash a from tree in a tree_map. */
6787 unsigned int
6788 tree_map_hash (const void *item)
6790 return (((const struct tree_map *) item)->hash);
6793 /* Hash a from tree in a tree_decl_map. */
6795 unsigned int
6796 tree_decl_map_hash (const void *item)
6798 return DECL_UID (((const struct tree_decl_map *) item)->base.from);
6801 /* Return the initialization priority for DECL. */
6803 priority_type
6804 decl_init_priority_lookup (tree decl)
6806 symtab_node *snode = symtab_node::get (decl);
6808 if (!snode)
6809 return DEFAULT_INIT_PRIORITY;
6810 return
6811 snode->get_init_priority ();
6814 /* Return the finalization priority for DECL. */
6816 priority_type
6817 decl_fini_priority_lookup (tree decl)
6819 cgraph_node *node = cgraph_node::get (decl);
6821 if (!node)
6822 return DEFAULT_INIT_PRIORITY;
6823 return
6824 node->get_fini_priority ();
6827 /* Set the initialization priority for DECL to PRIORITY. */
6829 void
6830 decl_init_priority_insert (tree decl, priority_type priority)
6832 struct symtab_node *snode;
6834 if (priority == DEFAULT_INIT_PRIORITY)
6836 snode = symtab_node::get (decl);
6837 if (!snode)
6838 return;
6840 else if (TREE_CODE (decl) == VAR_DECL)
6841 snode = varpool_node::get_create (decl);
6842 else
6843 snode = cgraph_node::get_create (decl);
6844 snode->set_init_priority (priority);
6847 /* Set the finalization priority for DECL to PRIORITY. */
6849 void
6850 decl_fini_priority_insert (tree decl, priority_type priority)
6852 struct cgraph_node *node;
6854 if (priority == DEFAULT_INIT_PRIORITY)
6856 node = cgraph_node::get (decl);
6857 if (!node)
6858 return;
6860 else
6861 node = cgraph_node::get_create (decl);
6862 node->set_fini_priority (priority);
6865 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6867 static void
6868 print_debug_expr_statistics (void)
6870 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6871 (long) debug_expr_for_decl->size (),
6872 (long) debug_expr_for_decl->elements (),
6873 debug_expr_for_decl->collisions ());
6876 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6878 static void
6879 print_value_expr_statistics (void)
6881 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6882 (long) value_expr_for_decl->size (),
6883 (long) value_expr_for_decl->elements (),
6884 value_expr_for_decl->collisions ());
6887 /* Lookup a debug expression for FROM, and return it if we find one. */
6889 tree
6890 decl_debug_expr_lookup (tree from)
6892 struct tree_decl_map *h, in;
6893 in.base.from = from;
6895 h = debug_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6896 if (h)
6897 return h->to;
6898 return NULL_TREE;
6901 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6903 void
6904 decl_debug_expr_insert (tree from, tree to)
6906 struct tree_decl_map *h;
6908 h = ggc_alloc<tree_decl_map> ();
6909 h->base.from = from;
6910 h->to = to;
6911 *debug_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6914 /* Lookup a value expression for FROM, and return it if we find one. */
6916 tree
6917 decl_value_expr_lookup (tree from)
6919 struct tree_decl_map *h, in;
6920 in.base.from = from;
6922 h = value_expr_for_decl->find_with_hash (&in, DECL_UID (from));
6923 if (h)
6924 return h->to;
6925 return NULL_TREE;
6928 /* Insert a mapping FROM->TO in the value expression hashtable. */
6930 void
6931 decl_value_expr_insert (tree from, tree to)
6933 struct tree_decl_map *h;
6935 h = ggc_alloc<tree_decl_map> ();
6936 h->base.from = from;
6937 h->to = to;
6938 *value_expr_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT) = h;
6941 /* Lookup a vector of debug arguments for FROM, and return it if we
6942 find one. */
6944 vec<tree, va_gc> **
6945 decl_debug_args_lookup (tree from)
6947 struct tree_vec_map *h, in;
6949 if (!DECL_HAS_DEBUG_ARGS_P (from))
6950 return NULL;
6951 gcc_checking_assert (debug_args_for_decl != NULL);
6952 in.base.from = from;
6953 h = debug_args_for_decl->find_with_hash (&in, DECL_UID (from));
6954 if (h)
6955 return &h->to;
6956 return NULL;
6959 /* Insert a mapping FROM->empty vector of debug arguments in the value
6960 expression hashtable. */
6962 vec<tree, va_gc> **
6963 decl_debug_args_insert (tree from)
6965 struct tree_vec_map *h;
6966 tree_vec_map **loc;
6968 if (DECL_HAS_DEBUG_ARGS_P (from))
6969 return decl_debug_args_lookup (from);
6970 if (debug_args_for_decl == NULL)
6971 debug_args_for_decl = hash_table<tree_vec_map_cache_hasher>::create_ggc (64);
6972 h = ggc_alloc<tree_vec_map> ();
6973 h->base.from = from;
6974 h->to = NULL;
6975 loc = debug_args_for_decl->find_slot_with_hash (h, DECL_UID (from), INSERT);
6976 *loc = h;
6977 DECL_HAS_DEBUG_ARGS_P (from) = 1;
6978 return &h->to;
6981 /* Hashing of types so that we don't make duplicates.
6982 The entry point is `type_hash_canon'. */
6984 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6985 with types in the TREE_VALUE slots), by adding the hash codes
6986 of the individual types. */
6988 static void
6989 type_hash_list (const_tree list, inchash::hash &hstate)
6991 const_tree tail;
6993 for (tail = list; tail; tail = TREE_CHAIN (tail))
6994 if (TREE_VALUE (tail) != error_mark_node)
6995 hstate.add_object (TYPE_HASH (TREE_VALUE (tail)));
6998 /* These are the Hashtable callback functions. */
7000 /* Returns true iff the types are equivalent. */
7002 bool
7003 type_cache_hasher::equal (type_hash *a, type_hash *b)
7005 /* First test the things that are the same for all types. */
7006 if (a->hash != b->hash
7007 || TREE_CODE (a->type) != TREE_CODE (b->type)
7008 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
7009 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
7010 TYPE_ATTRIBUTES (b->type))
7011 || (TREE_CODE (a->type) != COMPLEX_TYPE
7012 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
7013 return 0;
7015 /* Be careful about comparing arrays before and after the element type
7016 has been completed; don't compare TYPE_ALIGN unless both types are
7017 complete. */
7018 if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
7019 && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
7020 || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
7021 return 0;
7023 switch (TREE_CODE (a->type))
7025 case VOID_TYPE:
7026 case COMPLEX_TYPE:
7027 case POINTER_TYPE:
7028 case REFERENCE_TYPE:
7029 case NULLPTR_TYPE:
7030 return 1;
7032 case VECTOR_TYPE:
7033 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
7035 case ENUMERAL_TYPE:
7036 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
7037 && !(TYPE_VALUES (a->type)
7038 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
7039 && TYPE_VALUES (b->type)
7040 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
7041 && type_list_equal (TYPE_VALUES (a->type),
7042 TYPE_VALUES (b->type))))
7043 return 0;
7045 /* ... fall through ... */
7047 case INTEGER_TYPE:
7048 case REAL_TYPE:
7049 case BOOLEAN_TYPE:
7050 if (TYPE_PRECISION (a->type) != TYPE_PRECISION (b->type))
7051 return false;
7052 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
7053 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
7054 TYPE_MAX_VALUE (b->type)))
7055 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
7056 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
7057 TYPE_MIN_VALUE (b->type))));
7059 case FIXED_POINT_TYPE:
7060 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
7062 case OFFSET_TYPE:
7063 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
7065 case METHOD_TYPE:
7066 if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
7067 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7068 || (TYPE_ARG_TYPES (a->type)
7069 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7070 && TYPE_ARG_TYPES (b->type)
7071 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7072 && type_list_equal (TYPE_ARG_TYPES (a->type),
7073 TYPE_ARG_TYPES (b->type)))))
7074 break;
7075 return 0;
7076 case ARRAY_TYPE:
7077 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
7079 case RECORD_TYPE:
7080 case UNION_TYPE:
7081 case QUAL_UNION_TYPE:
7082 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
7083 || (TYPE_FIELDS (a->type)
7084 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
7085 && TYPE_FIELDS (b->type)
7086 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
7087 && type_list_equal (TYPE_FIELDS (a->type),
7088 TYPE_FIELDS (b->type))));
7090 case FUNCTION_TYPE:
7091 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
7092 || (TYPE_ARG_TYPES (a->type)
7093 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
7094 && TYPE_ARG_TYPES (b->type)
7095 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
7096 && type_list_equal (TYPE_ARG_TYPES (a->type),
7097 TYPE_ARG_TYPES (b->type))))
7098 break;
7099 return 0;
7101 default:
7102 return 0;
7105 if (lang_hooks.types.type_hash_eq != NULL)
7106 return lang_hooks.types.type_hash_eq (a->type, b->type);
7108 return 1;
7111 /* Given TYPE, and HASHCODE its hash code, return the canonical
7112 object for an identical type if one already exists.
7113 Otherwise, return TYPE, and record it as the canonical object.
7115 To use this function, first create a type of the sort you want.
7116 Then compute its hash code from the fields of the type that
7117 make it different from other similar types.
7118 Then call this function and use the value. */
7120 tree
7121 type_hash_canon (unsigned int hashcode, tree type)
7123 type_hash in;
7124 type_hash **loc;
7126 /* The hash table only contains main variants, so ensure that's what we're
7127 being passed. */
7128 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
7130 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7131 must call that routine before comparing TYPE_ALIGNs. */
7132 layout_type (type);
7134 in.hash = hashcode;
7135 in.type = type;
7137 loc = type_hash_table->find_slot_with_hash (&in, hashcode, INSERT);
7138 if (*loc)
7140 tree t1 = ((type_hash *) *loc)->type;
7141 gcc_assert (TYPE_MAIN_VARIANT (t1) == t1);
7142 free_node (type);
7143 return t1;
7145 else
7147 struct type_hash *h;
7149 h = ggc_alloc<type_hash> ();
7150 h->hash = hashcode;
7151 h->type = type;
7152 *loc = h;
7154 return type;
7158 static void
7159 print_type_hash_statistics (void)
7161 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
7162 (long) type_hash_table->size (),
7163 (long) type_hash_table->elements (),
7164 type_hash_table->collisions ());
7167 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
7168 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
7169 by adding the hash codes of the individual attributes. */
7171 static void
7172 attribute_hash_list (const_tree list, inchash::hash &hstate)
7174 const_tree tail;
7176 for (tail = list; tail; tail = TREE_CHAIN (tail))
7177 /* ??? Do we want to add in TREE_VALUE too? */
7178 hstate.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (tail)));
7181 /* Given two lists of attributes, return true if list l2 is
7182 equivalent to l1. */
7185 attribute_list_equal (const_tree l1, const_tree l2)
7187 if (l1 == l2)
7188 return 1;
7190 return attribute_list_contained (l1, l2)
7191 && attribute_list_contained (l2, l1);
7194 /* Given two lists of attributes, return true if list L2 is
7195 completely contained within L1. */
7196 /* ??? This would be faster if attribute names were stored in a canonicalized
7197 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
7198 must be used to show these elements are equivalent (which they are). */
7199 /* ??? It's not clear that attributes with arguments will always be handled
7200 correctly. */
7203 attribute_list_contained (const_tree l1, const_tree l2)
7205 const_tree t1, t2;
7207 /* First check the obvious, maybe the lists are identical. */
7208 if (l1 == l2)
7209 return 1;
7211 /* Maybe the lists are similar. */
7212 for (t1 = l1, t2 = l2;
7213 t1 != 0 && t2 != 0
7214 && get_attribute_name (t1) == get_attribute_name (t2)
7215 && TREE_VALUE (t1) == TREE_VALUE (t2);
7216 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7219 /* Maybe the lists are equal. */
7220 if (t1 == 0 && t2 == 0)
7221 return 1;
7223 for (; t2 != 0; t2 = TREE_CHAIN (t2))
7225 const_tree attr;
7226 /* This CONST_CAST is okay because lookup_attribute does not
7227 modify its argument and the return value is assigned to a
7228 const_tree. */
7229 for (attr = lookup_ident_attribute (get_attribute_name (t2),
7230 CONST_CAST_TREE (l1));
7231 attr != NULL_TREE && !attribute_value_equal (t2, attr);
7232 attr = lookup_ident_attribute (get_attribute_name (t2),
7233 TREE_CHAIN (attr)))
7236 if (attr == NULL_TREE)
7237 return 0;
7240 return 1;
7243 /* Given two lists of types
7244 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7245 return 1 if the lists contain the same types in the same order.
7246 Also, the TREE_PURPOSEs must match. */
7249 type_list_equal (const_tree l1, const_tree l2)
7251 const_tree t1, t2;
7253 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
7254 if (TREE_VALUE (t1) != TREE_VALUE (t2)
7255 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
7256 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
7257 && (TREE_TYPE (TREE_PURPOSE (t1))
7258 == TREE_TYPE (TREE_PURPOSE (t2))))))
7259 return 0;
7261 return t1 == t2;
7264 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7265 given by TYPE. If the argument list accepts variable arguments,
7266 then this function counts only the ordinary arguments. */
7269 type_num_arguments (const_tree type)
7271 int i = 0;
7272 tree t;
7274 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7275 /* If the function does not take a variable number of arguments,
7276 the last element in the list will have type `void'. */
7277 if (VOID_TYPE_P (TREE_VALUE (t)))
7278 break;
7279 else
7280 ++i;
7282 return i;
7285 /* Nonzero if integer constants T1 and T2
7286 represent the same constant value. */
7289 tree_int_cst_equal (const_tree t1, const_tree t2)
7291 if (t1 == t2)
7292 return 1;
7294 if (t1 == 0 || t2 == 0)
7295 return 0;
7297 if (TREE_CODE (t1) == INTEGER_CST
7298 && TREE_CODE (t2) == INTEGER_CST
7299 && wi::to_widest (t1) == wi::to_widest (t2))
7300 return 1;
7302 return 0;
7305 /* Return true if T is an INTEGER_CST whose numerical value (extended
7306 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7308 bool
7309 tree_fits_shwi_p (const_tree t)
7311 return (t != NULL_TREE
7312 && TREE_CODE (t) == INTEGER_CST
7313 && wi::fits_shwi_p (wi::to_widest (t)));
7316 /* Return true if T is an INTEGER_CST whose numerical value (extended
7317 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7319 bool
7320 tree_fits_uhwi_p (const_tree t)
7322 return (t != NULL_TREE
7323 && TREE_CODE (t) == INTEGER_CST
7324 && wi::fits_uhwi_p (wi::to_widest (t)));
7327 /* T is an INTEGER_CST whose numerical value (extended according to
7328 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7329 HOST_WIDE_INT. */
7331 HOST_WIDE_INT
7332 tree_to_shwi (const_tree t)
7334 gcc_assert (tree_fits_shwi_p (t));
7335 return TREE_INT_CST_LOW (t);
7338 /* T is an INTEGER_CST whose numerical value (extended according to
7339 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7340 HOST_WIDE_INT. */
7342 unsigned HOST_WIDE_INT
7343 tree_to_uhwi (const_tree t)
7345 gcc_assert (tree_fits_uhwi_p (t));
7346 return TREE_INT_CST_LOW (t);
7349 /* Return the most significant (sign) bit of T. */
7352 tree_int_cst_sign_bit (const_tree t)
7354 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
7356 return wi::extract_uhwi (t, bitno, 1);
7359 /* Return an indication of the sign of the integer constant T.
7360 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7361 Note that -1 will never be returned if T's type is unsigned. */
7364 tree_int_cst_sgn (const_tree t)
7366 if (wi::eq_p (t, 0))
7367 return 0;
7368 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
7369 return 1;
7370 else if (wi::neg_p (t))
7371 return -1;
7372 else
7373 return 1;
7376 /* Return the minimum number of bits needed to represent VALUE in a
7377 signed or unsigned type, UNSIGNEDP says which. */
7379 unsigned int
7380 tree_int_cst_min_precision (tree value, signop sgn)
7382 /* If the value is negative, compute its negative minus 1. The latter
7383 adjustment is because the absolute value of the largest negative value
7384 is one larger than the largest positive value. This is equivalent to
7385 a bit-wise negation, so use that operation instead. */
7387 if (tree_int_cst_sgn (value) < 0)
7388 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
7390 /* Return the number of bits needed, taking into account the fact
7391 that we need one more bit for a signed than unsigned type.
7392 If value is 0 or -1, the minimum precision is 1 no matter
7393 whether unsignedp is true or false. */
7395 if (integer_zerop (value))
7396 return 1;
7397 else
7398 return tree_floor_log2 (value) + 1 + (sgn == SIGNED ? 1 : 0) ;
7401 /* Return truthvalue of whether T1 is the same tree structure as T2.
7402 Return 1 if they are the same.
7403 Return 0 if they are understandably different.
7404 Return -1 if either contains tree structure not understood by
7405 this function. */
7408 simple_cst_equal (const_tree t1, const_tree t2)
7410 enum tree_code code1, code2;
7411 int cmp;
7412 int i;
7414 if (t1 == t2)
7415 return 1;
7416 if (t1 == 0 || t2 == 0)
7417 return 0;
7419 code1 = TREE_CODE (t1);
7420 code2 = TREE_CODE (t2);
7422 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
7424 if (CONVERT_EXPR_CODE_P (code2)
7425 || code2 == NON_LVALUE_EXPR)
7426 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7427 else
7428 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
7431 else if (CONVERT_EXPR_CODE_P (code2)
7432 || code2 == NON_LVALUE_EXPR)
7433 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
7435 if (code1 != code2)
7436 return 0;
7438 switch (code1)
7440 case INTEGER_CST:
7441 return wi::to_widest (t1) == wi::to_widest (t2);
7443 case REAL_CST:
7444 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
7446 case FIXED_CST:
7447 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
7449 case STRING_CST:
7450 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
7451 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
7452 TREE_STRING_LENGTH (t1)));
7454 case CONSTRUCTOR:
7456 unsigned HOST_WIDE_INT idx;
7457 vec<constructor_elt, va_gc> *v1 = CONSTRUCTOR_ELTS (t1);
7458 vec<constructor_elt, va_gc> *v2 = CONSTRUCTOR_ELTS (t2);
7460 if (vec_safe_length (v1) != vec_safe_length (v2))
7461 return false;
7463 for (idx = 0; idx < vec_safe_length (v1); ++idx)
7464 /* ??? Should we handle also fields here? */
7465 if (!simple_cst_equal ((*v1)[idx].value, (*v2)[idx].value))
7466 return false;
7467 return true;
7470 case SAVE_EXPR:
7471 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7473 case CALL_EXPR:
7474 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
7475 if (cmp <= 0)
7476 return cmp;
7477 if (call_expr_nargs (t1) != call_expr_nargs (t2))
7478 return 0;
7480 const_tree arg1, arg2;
7481 const_call_expr_arg_iterator iter1, iter2;
7482 for (arg1 = first_const_call_expr_arg (t1, &iter1),
7483 arg2 = first_const_call_expr_arg (t2, &iter2);
7484 arg1 && arg2;
7485 arg1 = next_const_call_expr_arg (&iter1),
7486 arg2 = next_const_call_expr_arg (&iter2))
7488 cmp = simple_cst_equal (arg1, arg2);
7489 if (cmp <= 0)
7490 return cmp;
7492 return arg1 == arg2;
7495 case TARGET_EXPR:
7496 /* Special case: if either target is an unallocated VAR_DECL,
7497 it means that it's going to be unified with whatever the
7498 TARGET_EXPR is really supposed to initialize, so treat it
7499 as being equivalent to anything. */
7500 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
7501 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
7502 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
7503 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
7504 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
7505 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
7506 cmp = 1;
7507 else
7508 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7510 if (cmp <= 0)
7511 return cmp;
7513 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
7515 case WITH_CLEANUP_EXPR:
7516 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7517 if (cmp <= 0)
7518 return cmp;
7520 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
7522 case COMPONENT_REF:
7523 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
7524 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
7526 return 0;
7528 case VAR_DECL:
7529 case PARM_DECL:
7530 case CONST_DECL:
7531 case FUNCTION_DECL:
7532 return 0;
7534 default:
7535 break;
7538 /* This general rule works for most tree codes. All exceptions should be
7539 handled above. If this is a language-specific tree code, we can't
7540 trust what might be in the operand, so say we don't know
7541 the situation. */
7542 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
7543 return -1;
7545 switch (TREE_CODE_CLASS (code1))
7547 case tcc_unary:
7548 case tcc_binary:
7549 case tcc_comparison:
7550 case tcc_expression:
7551 case tcc_reference:
7552 case tcc_statement:
7553 cmp = 1;
7554 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
7556 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
7557 if (cmp <= 0)
7558 return cmp;
7561 return cmp;
7563 default:
7564 return -1;
7568 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7569 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7570 than U, respectively. */
7573 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
7575 if (tree_int_cst_sgn (t) < 0)
7576 return -1;
7577 else if (!tree_fits_uhwi_p (t))
7578 return 1;
7579 else if (TREE_INT_CST_LOW (t) == u)
7580 return 0;
7581 else if (TREE_INT_CST_LOW (t) < u)
7582 return -1;
7583 else
7584 return 1;
7587 /* Return true if SIZE represents a constant size that is in bounds of
7588 what the middle-end and the backend accepts (covering not more than
7589 half of the address-space). */
7591 bool
7592 valid_constant_size_p (const_tree size)
7594 if (! tree_fits_uhwi_p (size)
7595 || TREE_OVERFLOW (size)
7596 || tree_int_cst_sign_bit (size) != 0)
7597 return false;
7598 return true;
7601 /* Return the precision of the type, or for a complex or vector type the
7602 precision of the type of its elements. */
7604 unsigned int
7605 element_precision (const_tree type)
7607 if (!TYPE_P (type))
7608 type = TREE_TYPE (type);
7609 enum tree_code code = TREE_CODE (type);
7610 if (code == COMPLEX_TYPE || code == VECTOR_TYPE)
7611 type = TREE_TYPE (type);
7613 return TYPE_PRECISION (type);
7616 /* Return true if CODE represents an associative tree code. Otherwise
7617 return false. */
7618 bool
7619 associative_tree_code (enum tree_code code)
7621 switch (code)
7623 case BIT_IOR_EXPR:
7624 case BIT_AND_EXPR:
7625 case BIT_XOR_EXPR:
7626 case PLUS_EXPR:
7627 case MULT_EXPR:
7628 case MIN_EXPR:
7629 case MAX_EXPR:
7630 return true;
7632 default:
7633 break;
7635 return false;
7638 /* Return true if CODE represents a commutative tree code. Otherwise
7639 return false. */
7640 bool
7641 commutative_tree_code (enum tree_code code)
7643 switch (code)
7645 case PLUS_EXPR:
7646 case MULT_EXPR:
7647 case MULT_HIGHPART_EXPR:
7648 case MIN_EXPR:
7649 case MAX_EXPR:
7650 case BIT_IOR_EXPR:
7651 case BIT_XOR_EXPR:
7652 case BIT_AND_EXPR:
7653 case NE_EXPR:
7654 case EQ_EXPR:
7655 case UNORDERED_EXPR:
7656 case ORDERED_EXPR:
7657 case UNEQ_EXPR:
7658 case LTGT_EXPR:
7659 case TRUTH_AND_EXPR:
7660 case TRUTH_XOR_EXPR:
7661 case TRUTH_OR_EXPR:
7662 case WIDEN_MULT_EXPR:
7663 case VEC_WIDEN_MULT_HI_EXPR:
7664 case VEC_WIDEN_MULT_LO_EXPR:
7665 case VEC_WIDEN_MULT_EVEN_EXPR:
7666 case VEC_WIDEN_MULT_ODD_EXPR:
7667 return true;
7669 default:
7670 break;
7672 return false;
7675 /* Return true if CODE represents a ternary tree code for which the
7676 first two operands are commutative. Otherwise return false. */
7677 bool
7678 commutative_ternary_tree_code (enum tree_code code)
7680 switch (code)
7682 case WIDEN_MULT_PLUS_EXPR:
7683 case WIDEN_MULT_MINUS_EXPR:
7684 case DOT_PROD_EXPR:
7685 case FMA_EXPR:
7686 return true;
7688 default:
7689 break;
7691 return false;
7694 /* Returns true if CODE can overflow. */
7696 bool
7697 operation_can_overflow (enum tree_code code)
7699 switch (code)
7701 case PLUS_EXPR:
7702 case MINUS_EXPR:
7703 case MULT_EXPR:
7704 case LSHIFT_EXPR:
7705 /* Can overflow in various ways. */
7706 return true;
7707 case TRUNC_DIV_EXPR:
7708 case EXACT_DIV_EXPR:
7709 case FLOOR_DIV_EXPR:
7710 case CEIL_DIV_EXPR:
7711 /* For INT_MIN / -1. */
7712 return true;
7713 case NEGATE_EXPR:
7714 case ABS_EXPR:
7715 /* For -INT_MIN. */
7716 return true;
7717 default:
7718 /* These operators cannot overflow. */
7719 return false;
7723 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
7724 ftrapv doesn't generate trapping insns for CODE. */
7726 bool
7727 operation_no_trapping_overflow (tree type, enum tree_code code)
7729 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type));
7731 /* We don't generate instructions that trap on overflow for complex or vector
7732 types. */
7733 if (!INTEGRAL_TYPE_P (type))
7734 return true;
7736 if (!TYPE_OVERFLOW_TRAPS (type))
7737 return true;
7739 switch (code)
7741 case PLUS_EXPR:
7742 case MINUS_EXPR:
7743 case MULT_EXPR:
7744 case NEGATE_EXPR:
7745 case ABS_EXPR:
7746 /* These operators can overflow, and -ftrapv generates trapping code for
7747 these. */
7748 return false;
7749 case TRUNC_DIV_EXPR:
7750 case EXACT_DIV_EXPR:
7751 case FLOOR_DIV_EXPR:
7752 case CEIL_DIV_EXPR:
7753 case LSHIFT_EXPR:
7754 /* These operators can overflow, but -ftrapv does not generate trapping
7755 code for these. */
7756 return true;
7757 default:
7758 /* These operators cannot overflow. */
7759 return true;
7763 namespace inchash
7766 /* Generate a hash value for an expression. This can be used iteratively
7767 by passing a previous result as the HSTATE argument.
7769 This function is intended to produce the same hash for expressions which
7770 would compare equal using operand_equal_p. */
7771 void
7772 add_expr (const_tree t, inchash::hash &hstate)
7774 int i;
7775 enum tree_code code;
7776 enum tree_code_class tclass;
7778 if (t == NULL_TREE)
7780 hstate.merge_hash (0);
7781 return;
7784 code = TREE_CODE (t);
7786 switch (code)
7788 /* Alas, constants aren't shared, so we can't rely on pointer
7789 identity. */
7790 case VOID_CST:
7791 hstate.merge_hash (0);
7792 return;
7793 case INTEGER_CST:
7794 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
7795 hstate.add_wide_int (TREE_INT_CST_ELT (t, i));
7796 return;
7797 case REAL_CST:
7799 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
7800 hstate.merge_hash (val2);
7801 return;
7803 case FIXED_CST:
7805 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
7806 hstate.merge_hash (val2);
7807 return;
7809 case STRING_CST:
7810 hstate.add ((const void *) TREE_STRING_POINTER (t), TREE_STRING_LENGTH (t));
7811 return;
7812 case COMPLEX_CST:
7813 inchash::add_expr (TREE_REALPART (t), hstate);
7814 inchash::add_expr (TREE_IMAGPART (t), hstate);
7815 return;
7816 case VECTOR_CST:
7818 unsigned i;
7819 for (i = 0; i < VECTOR_CST_NELTS (t); ++i)
7820 inchash::add_expr (VECTOR_CST_ELT (t, i), hstate);
7821 return;
7823 case SSA_NAME:
7824 /* We can just compare by pointer. */
7825 hstate.add_wide_int (SSA_NAME_VERSION (t));
7826 return;
7827 case PLACEHOLDER_EXPR:
7828 /* The node itself doesn't matter. */
7829 return;
7830 case TREE_LIST:
7831 /* A list of expressions, for a CALL_EXPR or as the elements of a
7832 VECTOR_CST. */
7833 for (; t; t = TREE_CHAIN (t))
7834 inchash::add_expr (TREE_VALUE (t), hstate);
7835 return;
7836 case CONSTRUCTOR:
7838 unsigned HOST_WIDE_INT idx;
7839 tree field, value;
7840 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
7842 inchash::add_expr (field, hstate);
7843 inchash::add_expr (value, hstate);
7845 return;
7847 case FUNCTION_DECL:
7848 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7849 Otherwise nodes that compare equal according to operand_equal_p might
7850 get different hash codes. However, don't do this for machine specific
7851 or front end builtins, since the function code is overloaded in those
7852 cases. */
7853 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
7854 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
7856 t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
7857 code = TREE_CODE (t);
7859 /* FALL THROUGH */
7860 default:
7861 tclass = TREE_CODE_CLASS (code);
7863 if (tclass == tcc_declaration)
7865 /* DECL's have a unique ID */
7866 hstate.add_wide_int (DECL_UID (t));
7868 else
7870 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
7872 hstate.add_object (code);
7874 /* Don't hash the type, that can lead to having nodes which
7875 compare equal according to operand_equal_p, but which
7876 have different hash codes. */
7877 if (CONVERT_EXPR_CODE_P (code)
7878 || code == NON_LVALUE_EXPR)
7880 /* Make sure to include signness in the hash computation. */
7881 hstate.add_int (TYPE_UNSIGNED (TREE_TYPE (t)));
7882 inchash::add_expr (TREE_OPERAND (t, 0), hstate);
7885 else if (commutative_tree_code (code))
7887 /* It's a commutative expression. We want to hash it the same
7888 however it appears. We do this by first hashing both operands
7889 and then rehashing based on the order of their independent
7890 hashes. */
7891 inchash::hash one, two;
7892 inchash::add_expr (TREE_OPERAND (t, 0), one);
7893 inchash::add_expr (TREE_OPERAND (t, 1), two);
7894 hstate.add_commutative (one, two);
7896 else
7897 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
7898 inchash::add_expr (TREE_OPERAND (t, i), hstate);
7900 return;
7906 /* Constructors for pointer, array and function types.
7907 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7908 constructed by language-dependent code, not here.) */
7910 /* Construct, lay out and return the type of pointers to TO_TYPE with
7911 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7912 reference all of memory. If such a type has already been
7913 constructed, reuse it. */
7915 tree
7916 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7917 bool can_alias_all)
7919 tree t;
7920 bool could_alias = can_alias_all;
7922 if (to_type == error_mark_node)
7923 return error_mark_node;
7925 /* If the pointed-to type has the may_alias attribute set, force
7926 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7927 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7928 can_alias_all = true;
7930 /* In some cases, languages will have things that aren't a POINTER_TYPE
7931 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7932 In that case, return that type without regard to the rest of our
7933 operands.
7935 ??? This is a kludge, but consistent with the way this function has
7936 always operated and there doesn't seem to be a good way to avoid this
7937 at the moment. */
7938 if (TYPE_POINTER_TO (to_type) != 0
7939 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7940 return TYPE_POINTER_TO (to_type);
7942 /* First, if we already have a type for pointers to TO_TYPE and it's
7943 the proper mode, use it. */
7944 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7945 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7946 return t;
7948 t = make_node (POINTER_TYPE);
7950 TREE_TYPE (t) = to_type;
7951 SET_TYPE_MODE (t, mode);
7952 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7953 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7954 TYPE_POINTER_TO (to_type) = t;
7956 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7957 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
7958 SET_TYPE_STRUCTURAL_EQUALITY (t);
7959 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
7960 TYPE_CANONICAL (t)
7961 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7962 mode, false);
7964 /* Lay out the type. This function has many callers that are concerned
7965 with expression-construction, and this simplifies them all. */
7966 layout_type (t);
7968 return t;
7971 /* By default build pointers in ptr_mode. */
7973 tree
7974 build_pointer_type (tree to_type)
7976 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7977 : TYPE_ADDR_SPACE (to_type);
7978 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7979 return build_pointer_type_for_mode (to_type, pointer_mode, false);
7982 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7984 tree
7985 build_reference_type_for_mode (tree to_type, machine_mode mode,
7986 bool can_alias_all)
7988 tree t;
7989 bool could_alias = can_alias_all;
7991 if (to_type == error_mark_node)
7992 return error_mark_node;
7994 /* If the pointed-to type has the may_alias attribute set, force
7995 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7996 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7997 can_alias_all = true;
7999 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
8000 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
8001 In that case, return that type without regard to the rest of our
8002 operands.
8004 ??? This is a kludge, but consistent with the way this function has
8005 always operated and there doesn't seem to be a good way to avoid this
8006 at the moment. */
8007 if (TYPE_REFERENCE_TO (to_type) != 0
8008 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
8009 return TYPE_REFERENCE_TO (to_type);
8011 /* First, if we already have a type for pointers to TO_TYPE and it's
8012 the proper mode, use it. */
8013 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
8014 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
8015 return t;
8017 t = make_node (REFERENCE_TYPE);
8019 TREE_TYPE (t) = to_type;
8020 SET_TYPE_MODE (t, mode);
8021 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
8022 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
8023 TYPE_REFERENCE_TO (to_type) = t;
8025 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
8026 if (TYPE_STRUCTURAL_EQUALITY_P (to_type) || in_lto_p)
8027 SET_TYPE_STRUCTURAL_EQUALITY (t);
8028 else if (TYPE_CANONICAL (to_type) != to_type || could_alias)
8029 TYPE_CANONICAL (t)
8030 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
8031 mode, false);
8033 layout_type (t);
8035 return t;
8039 /* Build the node for the type of references-to-TO_TYPE by default
8040 in ptr_mode. */
8042 tree
8043 build_reference_type (tree to_type)
8045 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
8046 : TYPE_ADDR_SPACE (to_type);
8047 machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
8048 return build_reference_type_for_mode (to_type, pointer_mode, false);
8051 #define MAX_INT_CACHED_PREC \
8052 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8053 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
8055 /* Builds a signed or unsigned integer type of precision PRECISION.
8056 Used for C bitfields whose precision does not match that of
8057 built-in target types. */
8058 tree
8059 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
8060 int unsignedp)
8062 tree itype, ret;
8064 if (unsignedp)
8065 unsignedp = MAX_INT_CACHED_PREC + 1;
8067 if (precision <= MAX_INT_CACHED_PREC)
8069 itype = nonstandard_integer_type_cache[precision + unsignedp];
8070 if (itype)
8071 return itype;
8074 itype = make_node (INTEGER_TYPE);
8075 TYPE_PRECISION (itype) = precision;
8077 if (unsignedp)
8078 fixup_unsigned_type (itype);
8079 else
8080 fixup_signed_type (itype);
8082 ret = itype;
8083 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (itype)))
8084 ret = type_hash_canon (tree_to_uhwi (TYPE_MAX_VALUE (itype)), itype);
8085 if (precision <= MAX_INT_CACHED_PREC)
8086 nonstandard_integer_type_cache[precision + unsignedp] = ret;
8088 return ret;
8091 #define MAX_BOOL_CACHED_PREC \
8092 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
8093 static GTY(()) tree nonstandard_boolean_type_cache[MAX_BOOL_CACHED_PREC + 1];
8095 /* Builds a boolean type of precision PRECISION.
8096 Used for boolean vectors to choose proper vector element size. */
8097 tree
8098 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision)
8100 tree type;
8102 if (precision <= MAX_BOOL_CACHED_PREC)
8104 type = nonstandard_boolean_type_cache[precision];
8105 if (type)
8106 return type;
8109 type = make_node (BOOLEAN_TYPE);
8110 TYPE_PRECISION (type) = precision;
8111 fixup_signed_type (type);
8113 if (precision <= MAX_INT_CACHED_PREC)
8114 nonstandard_boolean_type_cache[precision] = type;
8116 return type;
8119 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
8120 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
8121 is true, reuse such a type that has already been constructed. */
8123 static tree
8124 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
8126 tree itype = make_node (INTEGER_TYPE);
8127 inchash::hash hstate;
8129 TREE_TYPE (itype) = type;
8131 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
8132 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
8134 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
8135 SET_TYPE_MODE (itype, TYPE_MODE (type));
8136 TYPE_SIZE (itype) = TYPE_SIZE (type);
8137 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
8138 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
8139 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
8141 if (!shared)
8142 return itype;
8144 if ((TYPE_MIN_VALUE (itype)
8145 && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
8146 || (TYPE_MAX_VALUE (itype)
8147 && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
8149 /* Since we cannot reliably merge this type, we need to compare it using
8150 structural equality checks. */
8151 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8152 return itype;
8155 inchash::add_expr (TYPE_MIN_VALUE (itype), hstate);
8156 inchash::add_expr (TYPE_MAX_VALUE (itype), hstate);
8157 hstate.merge_hash (TYPE_HASH (type));
8158 itype = type_hash_canon (hstate.end (), itype);
8160 return itype;
8163 /* Wrapper around build_range_type_1 with SHARED set to true. */
8165 tree
8166 build_range_type (tree type, tree lowval, tree highval)
8168 return build_range_type_1 (type, lowval, highval, true);
8171 /* Wrapper around build_range_type_1 with SHARED set to false. */
8173 tree
8174 build_nonshared_range_type (tree type, tree lowval, tree highval)
8176 return build_range_type_1 (type, lowval, highval, false);
8179 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
8180 MAXVAL should be the maximum value in the domain
8181 (one less than the length of the array).
8183 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
8184 We don't enforce this limit, that is up to caller (e.g. language front end).
8185 The limit exists because the result is a signed type and we don't handle
8186 sizes that use more than one HOST_WIDE_INT. */
8188 tree
8189 build_index_type (tree maxval)
8191 return build_range_type (sizetype, size_zero_node, maxval);
8194 /* Return true if the debug information for TYPE, a subtype, should be emitted
8195 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
8196 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8197 debug info and doesn't reflect the source code. */
8199 bool
8200 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
8202 tree base_type = TREE_TYPE (type), low, high;
8204 /* Subrange types have a base type which is an integral type. */
8205 if (!INTEGRAL_TYPE_P (base_type))
8206 return false;
8208 /* Get the real bounds of the subtype. */
8209 if (lang_hooks.types.get_subrange_bounds)
8210 lang_hooks.types.get_subrange_bounds (type, &low, &high);
8211 else
8213 low = TYPE_MIN_VALUE (type);
8214 high = TYPE_MAX_VALUE (type);
8217 /* If the type and its base type have the same representation and the same
8218 name, then the type is not a subrange but a copy of the base type. */
8219 if ((TREE_CODE (base_type) == INTEGER_TYPE
8220 || TREE_CODE (base_type) == BOOLEAN_TYPE)
8221 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
8222 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
8223 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type))
8224 && TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (base_type))
8225 return false;
8227 if (lowval)
8228 *lowval = low;
8229 if (highval)
8230 *highval = high;
8231 return true;
8234 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8235 and number of elements specified by the range of values of INDEX_TYPE.
8236 If SHARED is true, reuse such a type that has already been constructed. */
8238 static tree
8239 build_array_type_1 (tree elt_type, tree index_type, bool shared)
8241 tree t;
8243 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
8245 error ("arrays of functions are not meaningful");
8246 elt_type = integer_type_node;
8249 t = make_node (ARRAY_TYPE);
8250 TREE_TYPE (t) = elt_type;
8251 TYPE_DOMAIN (t) = index_type;
8252 TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
8253 layout_type (t);
8255 /* If the element type is incomplete at this point we get marked for
8256 structural equality. Do not record these types in the canonical
8257 type hashtable. */
8258 if (TYPE_STRUCTURAL_EQUALITY_P (t))
8259 return t;
8261 if (shared)
8263 inchash::hash hstate;
8264 hstate.add_object (TYPE_HASH (elt_type));
8265 if (index_type)
8266 hstate.add_object (TYPE_HASH (index_type));
8267 t = type_hash_canon (hstate.end (), t);
8270 if (TYPE_CANONICAL (t) == t)
8272 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
8273 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
8274 || in_lto_p)
8275 SET_TYPE_STRUCTURAL_EQUALITY (t);
8276 else if (TYPE_CANONICAL (elt_type) != elt_type
8277 || (index_type && TYPE_CANONICAL (index_type) != index_type))
8278 TYPE_CANONICAL (t)
8279 = build_array_type_1 (TYPE_CANONICAL (elt_type),
8280 index_type
8281 ? TYPE_CANONICAL (index_type) : NULL_TREE,
8282 shared);
8285 return t;
8288 /* Wrapper around build_array_type_1 with SHARED set to true. */
8290 tree
8291 build_array_type (tree elt_type, tree index_type)
8293 return build_array_type_1 (elt_type, index_type, true);
8296 /* Wrapper around build_array_type_1 with SHARED set to false. */
8298 tree
8299 build_nonshared_array_type (tree elt_type, tree index_type)
8301 return build_array_type_1 (elt_type, index_type, false);
8304 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8305 sizetype. */
8307 tree
8308 build_array_type_nelts (tree elt_type, unsigned HOST_WIDE_INT nelts)
8310 return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
8313 /* Recursively examines the array elements of TYPE, until a non-array
8314 element type is found. */
8316 tree
8317 strip_array_types (tree type)
8319 while (TREE_CODE (type) == ARRAY_TYPE)
8320 type = TREE_TYPE (type);
8322 return type;
8325 /* Computes the canonical argument types from the argument type list
8326 ARGTYPES.
8328 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8329 on entry to this function, or if any of the ARGTYPES are
8330 structural.
8332 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8333 true on entry to this function, or if any of the ARGTYPES are
8334 non-canonical.
8336 Returns a canonical argument list, which may be ARGTYPES when the
8337 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8338 true) or would not differ from ARGTYPES. */
8340 static tree
8341 maybe_canonicalize_argtypes (tree argtypes,
8342 bool *any_structural_p,
8343 bool *any_noncanonical_p)
8345 tree arg;
8346 bool any_noncanonical_argtypes_p = false;
8348 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8350 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
8351 /* Fail gracefully by stating that the type is structural. */
8352 *any_structural_p = true;
8353 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
8354 *any_structural_p = true;
8355 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
8356 || TREE_PURPOSE (arg))
8357 /* If the argument has a default argument, we consider it
8358 non-canonical even though the type itself is canonical.
8359 That way, different variants of function and method types
8360 with default arguments will all point to the variant with
8361 no defaults as their canonical type. */
8362 any_noncanonical_argtypes_p = true;
8365 if (*any_structural_p)
8366 return argtypes;
8368 if (any_noncanonical_argtypes_p)
8370 /* Build the canonical list of argument types. */
8371 tree canon_argtypes = NULL_TREE;
8372 bool is_void = false;
8374 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8376 if (arg == void_list_node)
8377 is_void = true;
8378 else
8379 canon_argtypes = tree_cons (NULL_TREE,
8380 TYPE_CANONICAL (TREE_VALUE (arg)),
8381 canon_argtypes);
8384 canon_argtypes = nreverse (canon_argtypes);
8385 if (is_void)
8386 canon_argtypes = chainon (canon_argtypes, void_list_node);
8388 /* There is a non-canonical type. */
8389 *any_noncanonical_p = true;
8390 return canon_argtypes;
8393 /* The canonical argument types are the same as ARGTYPES. */
8394 return argtypes;
8397 /* Construct, lay out and return
8398 the type of functions returning type VALUE_TYPE
8399 given arguments of types ARG_TYPES.
8400 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8401 are data type nodes for the arguments of the function.
8402 If such a type has already been constructed, reuse it. */
8404 tree
8405 build_function_type (tree value_type, tree arg_types)
8407 tree t;
8408 inchash::hash hstate;
8409 bool any_structural_p, any_noncanonical_p;
8410 tree canon_argtypes;
8412 if (TREE_CODE (value_type) == FUNCTION_TYPE)
8414 error ("function return type cannot be function");
8415 value_type = integer_type_node;
8418 /* Make a node of the sort we want. */
8419 t = make_node (FUNCTION_TYPE);
8420 TREE_TYPE (t) = value_type;
8421 TYPE_ARG_TYPES (t) = arg_types;
8423 /* If we already have such a type, use the old one. */
8424 hstate.add_object (TYPE_HASH (value_type));
8425 type_hash_list (arg_types, hstate);
8426 t = type_hash_canon (hstate.end (), t);
8428 /* Set up the canonical type. */
8429 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
8430 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
8431 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
8432 &any_structural_p,
8433 &any_noncanonical_p);
8434 if (any_structural_p)
8435 SET_TYPE_STRUCTURAL_EQUALITY (t);
8436 else if (any_noncanonical_p)
8437 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
8438 canon_argtypes);
8440 if (!COMPLETE_TYPE_P (t))
8441 layout_type (t);
8442 return t;
8445 /* Build a function type. The RETURN_TYPE is the type returned by the
8446 function. If VAARGS is set, no void_type_node is appended to the
8447 list. ARGP must be always be terminated be a NULL_TREE. */
8449 static tree
8450 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
8452 tree t, args, last;
8454 t = va_arg (argp, tree);
8455 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
8456 args = tree_cons (NULL_TREE, t, args);
8458 if (vaargs)
8460 last = args;
8461 if (args != NULL_TREE)
8462 args = nreverse (args);
8463 gcc_assert (last != void_list_node);
8465 else if (args == NULL_TREE)
8466 args = void_list_node;
8467 else
8469 last = args;
8470 args = nreverse (args);
8471 TREE_CHAIN (last) = void_list_node;
8473 args = build_function_type (return_type, args);
8475 return args;
8478 /* Build a function type. The RETURN_TYPE is the type returned by the
8479 function. If additional arguments are provided, they are
8480 additional argument types. The list of argument types must always
8481 be terminated by NULL_TREE. */
8483 tree
8484 build_function_type_list (tree return_type, ...)
8486 tree args;
8487 va_list p;
8489 va_start (p, return_type);
8490 args = build_function_type_list_1 (false, return_type, p);
8491 va_end (p);
8492 return args;
8495 /* Build a variable argument function type. The RETURN_TYPE is the
8496 type returned by the function. If additional arguments are provided,
8497 they are additional argument types. The list of argument types must
8498 always be terminated by NULL_TREE. */
8500 tree
8501 build_varargs_function_type_list (tree return_type, ...)
8503 tree args;
8504 va_list p;
8506 va_start (p, return_type);
8507 args = build_function_type_list_1 (true, return_type, p);
8508 va_end (p);
8510 return args;
8513 /* Build a function type. RETURN_TYPE is the type returned by the
8514 function; VAARGS indicates whether the function takes varargs. The
8515 function takes N named arguments, the types of which are provided in
8516 ARG_TYPES. */
8518 static tree
8519 build_function_type_array_1 (bool vaargs, tree return_type, int n,
8520 tree *arg_types)
8522 int i;
8523 tree t = vaargs ? NULL_TREE : void_list_node;
8525 for (i = n - 1; i >= 0; i--)
8526 t = tree_cons (NULL_TREE, arg_types[i], t);
8528 return build_function_type (return_type, t);
8531 /* Build a function type. RETURN_TYPE is the type returned by the
8532 function. The function takes N named arguments, the types of which
8533 are provided in ARG_TYPES. */
8535 tree
8536 build_function_type_array (tree return_type, int n, tree *arg_types)
8538 return build_function_type_array_1 (false, return_type, n, arg_types);
8541 /* Build a variable argument function type. RETURN_TYPE is the type
8542 returned by the function. The function takes N named arguments, the
8543 types of which are provided in ARG_TYPES. */
8545 tree
8546 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
8548 return build_function_type_array_1 (true, return_type, n, arg_types);
8551 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8552 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8553 for the method. An implicit additional parameter (of type
8554 pointer-to-BASETYPE) is added to the ARGTYPES. */
8556 tree
8557 build_method_type_directly (tree basetype,
8558 tree rettype,
8559 tree argtypes)
8561 tree t;
8562 tree ptype;
8563 inchash::hash hstate;
8564 bool any_structural_p, any_noncanonical_p;
8565 tree canon_argtypes;
8567 /* Make a node of the sort we want. */
8568 t = make_node (METHOD_TYPE);
8570 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8571 TREE_TYPE (t) = rettype;
8572 ptype = build_pointer_type (basetype);
8574 /* The actual arglist for this function includes a "hidden" argument
8575 which is "this". Put it into the list of argument types. */
8576 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8577 TYPE_ARG_TYPES (t) = argtypes;
8579 /* If we already have such a type, use the old one. */
8580 hstate.add_object (TYPE_HASH (basetype));
8581 hstate.add_object (TYPE_HASH (rettype));
8582 type_hash_list (argtypes, hstate);
8583 t = type_hash_canon (hstate.end (), t);
8585 /* Set up the canonical type. */
8586 any_structural_p
8587 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8588 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
8589 any_noncanonical_p
8590 = (TYPE_CANONICAL (basetype) != basetype
8591 || TYPE_CANONICAL (rettype) != rettype);
8592 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8593 &any_structural_p,
8594 &any_noncanonical_p);
8595 if (any_structural_p)
8596 SET_TYPE_STRUCTURAL_EQUALITY (t);
8597 else if (any_noncanonical_p)
8598 TYPE_CANONICAL (t)
8599 = build_method_type_directly (TYPE_CANONICAL (basetype),
8600 TYPE_CANONICAL (rettype),
8601 canon_argtypes);
8602 if (!COMPLETE_TYPE_P (t))
8603 layout_type (t);
8605 return t;
8608 /* Construct, lay out and return the type of methods belonging to class
8609 BASETYPE and whose arguments and values are described by TYPE.
8610 If that type exists already, reuse it.
8611 TYPE must be a FUNCTION_TYPE node. */
8613 tree
8614 build_method_type (tree basetype, tree type)
8616 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8618 return build_method_type_directly (basetype,
8619 TREE_TYPE (type),
8620 TYPE_ARG_TYPES (type));
8623 /* Construct, lay out and return the type of offsets to a value
8624 of type TYPE, within an object of type BASETYPE.
8625 If a suitable offset type exists already, reuse it. */
8627 tree
8628 build_offset_type (tree basetype, tree type)
8630 tree t;
8631 inchash::hash hstate;
8633 /* Make a node of the sort we want. */
8634 t = make_node (OFFSET_TYPE);
8636 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
8637 TREE_TYPE (t) = type;
8639 /* If we already have such a type, use the old one. */
8640 hstate.add_object (TYPE_HASH (basetype));
8641 hstate.add_object (TYPE_HASH (type));
8642 t = type_hash_canon (hstate.end (), t);
8644 if (!COMPLETE_TYPE_P (t))
8645 layout_type (t);
8647 if (TYPE_CANONICAL (t) == t)
8649 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
8650 || TYPE_STRUCTURAL_EQUALITY_P (type))
8651 SET_TYPE_STRUCTURAL_EQUALITY (t);
8652 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
8653 || TYPE_CANONICAL (type) != type)
8654 TYPE_CANONICAL (t)
8655 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
8656 TYPE_CANONICAL (type));
8659 return t;
8662 /* Create a complex type whose components are COMPONENT_TYPE.
8664 If NAMED is true, the type is given a TYPE_NAME. We do not always
8665 do so because this creates a DECL node and thus make the DECL_UIDs
8666 dependent on the type canonicalization hashtable, which is GC-ed,
8667 so the DECL_UIDs would not be stable wrt garbage collection. */
8669 tree
8670 build_complex_type (tree component_type, bool named)
8672 tree t;
8673 inchash::hash hstate;
8675 gcc_assert (INTEGRAL_TYPE_P (component_type)
8676 || SCALAR_FLOAT_TYPE_P (component_type)
8677 || FIXED_POINT_TYPE_P (component_type));
8679 /* Make a node of the sort we want. */
8680 t = make_node (COMPLEX_TYPE);
8682 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
8684 /* If we already have such a type, use the old one. */
8685 hstate.add_object (TYPE_HASH (component_type));
8686 t = type_hash_canon (hstate.end (), t);
8688 if (!COMPLETE_TYPE_P (t))
8689 layout_type (t);
8691 if (TYPE_CANONICAL (t) == t)
8693 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
8694 SET_TYPE_STRUCTURAL_EQUALITY (t);
8695 else if (TYPE_CANONICAL (component_type) != component_type)
8696 TYPE_CANONICAL (t)
8697 = build_complex_type (TYPE_CANONICAL (component_type), named);
8700 /* We need to create a name, since complex is a fundamental type. */
8701 if (!TYPE_NAME (t) && named)
8703 const char *name;
8704 if (component_type == char_type_node)
8705 name = "complex char";
8706 else if (component_type == signed_char_type_node)
8707 name = "complex signed char";
8708 else if (component_type == unsigned_char_type_node)
8709 name = "complex unsigned char";
8710 else if (component_type == short_integer_type_node)
8711 name = "complex short int";
8712 else if (component_type == short_unsigned_type_node)
8713 name = "complex short unsigned int";
8714 else if (component_type == integer_type_node)
8715 name = "complex int";
8716 else if (component_type == unsigned_type_node)
8717 name = "complex unsigned int";
8718 else if (component_type == long_integer_type_node)
8719 name = "complex long int";
8720 else if (component_type == long_unsigned_type_node)
8721 name = "complex long unsigned int";
8722 else if (component_type == long_long_integer_type_node)
8723 name = "complex long long int";
8724 else if (component_type == long_long_unsigned_type_node)
8725 name = "complex long long unsigned int";
8726 else
8727 name = 0;
8729 if (name != 0)
8730 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
8731 get_identifier (name), t);
8734 return build_qualified_type (t, TYPE_QUALS (component_type));
8737 /* If TYPE is a real or complex floating-point type and the target
8738 does not directly support arithmetic on TYPE then return the wider
8739 type to be used for arithmetic on TYPE. Otherwise, return
8740 NULL_TREE. */
8742 tree
8743 excess_precision_type (tree type)
8745 if (flag_excess_precision != EXCESS_PRECISION_FAST)
8747 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
8748 switch (TREE_CODE (type))
8750 case REAL_TYPE:
8751 switch (flt_eval_method)
8753 case 1:
8754 if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
8755 return double_type_node;
8756 break;
8757 case 2:
8758 if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
8759 || TYPE_MODE (type) == TYPE_MODE (double_type_node))
8760 return long_double_type_node;
8761 break;
8762 default:
8763 gcc_unreachable ();
8765 break;
8766 case COMPLEX_TYPE:
8767 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
8768 return NULL_TREE;
8769 switch (flt_eval_method)
8771 case 1:
8772 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
8773 return complex_double_type_node;
8774 break;
8775 case 2:
8776 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
8777 || (TYPE_MODE (TREE_TYPE (type))
8778 == TYPE_MODE (double_type_node)))
8779 return complex_long_double_type_node;
8780 break;
8781 default:
8782 gcc_unreachable ();
8784 break;
8785 default:
8786 break;
8789 return NULL_TREE;
8792 /* Return OP, stripped of any conversions to wider types as much as is safe.
8793 Converting the value back to OP's type makes a value equivalent to OP.
8795 If FOR_TYPE is nonzero, we return a value which, if converted to
8796 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8798 OP must have integer, real or enumeral type. Pointers are not allowed!
8800 There are some cases where the obvious value we could return
8801 would regenerate to OP if converted to OP's type,
8802 but would not extend like OP to wider types.
8803 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8804 For example, if OP is (unsigned short)(signed char)-1,
8805 we avoid returning (signed char)-1 if FOR_TYPE is int,
8806 even though extending that to an unsigned short would regenerate OP,
8807 since the result of extending (signed char)-1 to (int)
8808 is different from (int) OP. */
8810 tree
8811 get_unwidened (tree op, tree for_type)
8813 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8814 tree type = TREE_TYPE (op);
8815 unsigned final_prec
8816 = TYPE_PRECISION (for_type != 0 ? for_type : type);
8817 int uns
8818 = (for_type != 0 && for_type != type
8819 && final_prec > TYPE_PRECISION (type)
8820 && TYPE_UNSIGNED (type));
8821 tree win = op;
8823 while (CONVERT_EXPR_P (op))
8825 int bitschange;
8827 /* TYPE_PRECISION on vector types has different meaning
8828 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8829 so avoid them here. */
8830 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8831 break;
8833 bitschange = TYPE_PRECISION (TREE_TYPE (op))
8834 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8836 /* Truncations are many-one so cannot be removed.
8837 Unless we are later going to truncate down even farther. */
8838 if (bitschange < 0
8839 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8840 break;
8842 /* See what's inside this conversion. If we decide to strip it,
8843 we will set WIN. */
8844 op = TREE_OPERAND (op, 0);
8846 /* If we have not stripped any zero-extensions (uns is 0),
8847 we can strip any kind of extension.
8848 If we have previously stripped a zero-extension,
8849 only zero-extensions can safely be stripped.
8850 Any extension can be stripped if the bits it would produce
8851 are all going to be discarded later by truncating to FOR_TYPE. */
8853 if (bitschange > 0)
8855 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8856 win = op;
8857 /* TYPE_UNSIGNED says whether this is a zero-extension.
8858 Let's avoid computing it if it does not affect WIN
8859 and if UNS will not be needed again. */
8860 if ((uns
8861 || CONVERT_EXPR_P (op))
8862 && TYPE_UNSIGNED (TREE_TYPE (op)))
8864 uns = 1;
8865 win = op;
8870 /* If we finally reach a constant see if it fits in for_type and
8871 in that case convert it. */
8872 if (for_type
8873 && TREE_CODE (win) == INTEGER_CST
8874 && TREE_TYPE (win) != for_type
8875 && int_fits_type_p (win, for_type))
8876 win = fold_convert (for_type, win);
8878 return win;
8881 /* Return OP or a simpler expression for a narrower value
8882 which can be sign-extended or zero-extended to give back OP.
8883 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8884 or 0 if the value should be sign-extended. */
8886 tree
8887 get_narrower (tree op, int *unsignedp_ptr)
8889 int uns = 0;
8890 int first = 1;
8891 tree win = op;
8892 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8894 while (TREE_CODE (op) == NOP_EXPR)
8896 int bitschange
8897 = (TYPE_PRECISION (TREE_TYPE (op))
8898 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8900 /* Truncations are many-one so cannot be removed. */
8901 if (bitschange < 0)
8902 break;
8904 /* See what's inside this conversion. If we decide to strip it,
8905 we will set WIN. */
8907 if (bitschange > 0)
8909 op = TREE_OPERAND (op, 0);
8910 /* An extension: the outermost one can be stripped,
8911 but remember whether it is zero or sign extension. */
8912 if (first)
8913 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8914 /* Otherwise, if a sign extension has been stripped,
8915 only sign extensions can now be stripped;
8916 if a zero extension has been stripped, only zero-extensions. */
8917 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8918 break;
8919 first = 0;
8921 else /* bitschange == 0 */
8923 /* A change in nominal type can always be stripped, but we must
8924 preserve the unsignedness. */
8925 if (first)
8926 uns = TYPE_UNSIGNED (TREE_TYPE (op));
8927 first = 0;
8928 op = TREE_OPERAND (op, 0);
8929 /* Keep trying to narrow, but don't assign op to win if it
8930 would turn an integral type into something else. */
8931 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8932 continue;
8935 win = op;
8938 if (TREE_CODE (op) == COMPONENT_REF
8939 /* Since type_for_size always gives an integer type. */
8940 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8941 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8942 /* Ensure field is laid out already. */
8943 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8944 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op, 1))))
8946 unsigned HOST_WIDE_INT innerprec
8947 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
8948 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8949 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8950 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8952 /* We can get this structure field in a narrower type that fits it,
8953 but the resulting extension to its nominal type (a fullword type)
8954 must satisfy the same conditions as for other extensions.
8956 Do this only for fields that are aligned (not bit-fields),
8957 because when bit-field insns will be used there is no
8958 advantage in doing this. */
8960 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8961 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8962 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8963 && type != 0)
8965 if (first)
8966 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8967 win = fold_convert (type, op);
8971 *unsignedp_ptr = uns;
8972 return win;
8975 /* Return true if integer constant C has a value that is permissible
8976 for TYPE, an integral type. */
8978 bool
8979 int_fits_type_p (const_tree c, const_tree type)
8981 tree type_low_bound, type_high_bound;
8982 bool ok_for_low_bound, ok_for_high_bound;
8983 signop sgn_c = TYPE_SIGN (TREE_TYPE (c));
8985 /* Non-standard boolean types can have arbitrary precision but various
8986 transformations assume that they can only take values 0 and +/-1. */
8987 if (TREE_CODE (type) == BOOLEAN_TYPE)
8988 return wi::fits_to_boolean_p (c, type);
8990 retry:
8991 type_low_bound = TYPE_MIN_VALUE (type);
8992 type_high_bound = TYPE_MAX_VALUE (type);
8994 /* If at least one bound of the type is a constant integer, we can check
8995 ourselves and maybe make a decision. If no such decision is possible, but
8996 this type is a subtype, try checking against that. Otherwise, use
8997 fits_to_tree_p, which checks against the precision.
8999 Compute the status for each possibly constant bound, and return if we see
9000 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
9001 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
9002 for "constant known to fit". */
9004 /* Check if c >= type_low_bound. */
9005 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
9007 if (tree_int_cst_lt (c, type_low_bound))
9008 return false;
9009 ok_for_low_bound = true;
9011 else
9012 ok_for_low_bound = false;
9014 /* Check if c <= type_high_bound. */
9015 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
9017 if (tree_int_cst_lt (type_high_bound, c))
9018 return false;
9019 ok_for_high_bound = true;
9021 else
9022 ok_for_high_bound = false;
9024 /* If the constant fits both bounds, the result is known. */
9025 if (ok_for_low_bound && ok_for_high_bound)
9026 return true;
9028 /* Perform some generic filtering which may allow making a decision
9029 even if the bounds are not constant. First, negative integers
9030 never fit in unsigned types, */
9031 if (TYPE_UNSIGNED (type) && sgn_c == SIGNED && wi::neg_p (c))
9032 return false;
9034 /* Second, narrower types always fit in wider ones. */
9035 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
9036 return true;
9038 /* Third, unsigned integers with top bit set never fit signed types. */
9039 if (!TYPE_UNSIGNED (type) && sgn_c == UNSIGNED)
9041 int prec = GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (c))) - 1;
9042 if (prec < TYPE_PRECISION (TREE_TYPE (c)))
9044 /* When a tree_cst is converted to a wide-int, the precision
9045 is taken from the type. However, if the precision of the
9046 mode underneath the type is smaller than that, it is
9047 possible that the value will not fit. The test below
9048 fails if any bit is set between the sign bit of the
9049 underlying mode and the top bit of the type. */
9050 if (wi::ne_p (wi::zext (c, prec - 1), c))
9051 return false;
9053 else if (wi::neg_p (c))
9054 return false;
9057 /* If we haven't been able to decide at this point, there nothing more we
9058 can check ourselves here. Look at the base type if we have one and it
9059 has the same precision. */
9060 if (TREE_CODE (type) == INTEGER_TYPE
9061 && TREE_TYPE (type) != 0
9062 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
9064 type = TREE_TYPE (type);
9065 goto retry;
9068 /* Or to fits_to_tree_p, if nothing else. */
9069 return wi::fits_to_tree_p (c, type);
9072 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
9073 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
9074 represented (assuming two's-complement arithmetic) within the bit
9075 precision of the type are returned instead. */
9077 void
9078 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
9080 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
9081 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
9082 wi::to_mpz (TYPE_MIN_VALUE (type), min, TYPE_SIGN (type));
9083 else
9085 if (TYPE_UNSIGNED (type))
9086 mpz_set_ui (min, 0);
9087 else
9089 wide_int mn = wi::min_value (TYPE_PRECISION (type), SIGNED);
9090 wi::to_mpz (mn, min, SIGNED);
9094 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
9095 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
9096 wi::to_mpz (TYPE_MAX_VALUE (type), max, TYPE_SIGN (type));
9097 else
9099 wide_int mn = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
9100 wi::to_mpz (mn, max, TYPE_SIGN (type));
9104 /* Return true if VAR is an automatic variable defined in function FN. */
9106 bool
9107 auto_var_in_fn_p (const_tree var, const_tree fn)
9109 return (DECL_P (var) && DECL_CONTEXT (var) == fn
9110 && ((((TREE_CODE (var) == VAR_DECL && ! DECL_EXTERNAL (var))
9111 || TREE_CODE (var) == PARM_DECL)
9112 && ! TREE_STATIC (var))
9113 || TREE_CODE (var) == LABEL_DECL
9114 || TREE_CODE (var) == RESULT_DECL));
9117 /* Subprogram of following function. Called by walk_tree.
9119 Return *TP if it is an automatic variable or parameter of the
9120 function passed in as DATA. */
9122 static tree
9123 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
9125 tree fn = (tree) data;
9127 if (TYPE_P (*tp))
9128 *walk_subtrees = 0;
9130 else if (DECL_P (*tp)
9131 && auto_var_in_fn_p (*tp, fn))
9132 return *tp;
9134 return NULL_TREE;
9137 /* Returns true if T is, contains, or refers to a type with variable
9138 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
9139 arguments, but not the return type. If FN is nonzero, only return
9140 true if a modifier of the type or position of FN is a variable or
9141 parameter inside FN.
9143 This concept is more general than that of C99 'variably modified types':
9144 in C99, a struct type is never variably modified because a VLA may not
9145 appear as a structure member. However, in GNU C code like:
9147 struct S { int i[f()]; };
9149 is valid, and other languages may define similar constructs. */
9151 bool
9152 variably_modified_type_p (tree type, tree fn)
9154 tree t;
9156 /* Test if T is either variable (if FN is zero) or an expression containing
9157 a variable in FN. If TYPE isn't gimplified, return true also if
9158 gimplify_one_sizepos would gimplify the expression into a local
9159 variable. */
9160 #define RETURN_TRUE_IF_VAR(T) \
9161 do { tree _t = (T); \
9162 if (_t != NULL_TREE \
9163 && _t != error_mark_node \
9164 && TREE_CODE (_t) != INTEGER_CST \
9165 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
9166 && (!fn \
9167 || (!TYPE_SIZES_GIMPLIFIED (type) \
9168 && !is_gimple_sizepos (_t)) \
9169 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
9170 return true; } while (0)
9172 if (type == error_mark_node)
9173 return false;
9175 /* If TYPE itself has variable size, it is variably modified. */
9176 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
9177 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
9179 switch (TREE_CODE (type))
9181 case POINTER_TYPE:
9182 case REFERENCE_TYPE:
9183 case VECTOR_TYPE:
9184 if (variably_modified_type_p (TREE_TYPE (type), fn))
9185 return true;
9186 break;
9188 case FUNCTION_TYPE:
9189 case METHOD_TYPE:
9190 /* If TYPE is a function type, it is variably modified if the
9191 return type is variably modified. */
9192 if (variably_modified_type_p (TREE_TYPE (type), fn))
9193 return true;
9194 break;
9196 case INTEGER_TYPE:
9197 case REAL_TYPE:
9198 case FIXED_POINT_TYPE:
9199 case ENUMERAL_TYPE:
9200 case BOOLEAN_TYPE:
9201 /* Scalar types are variably modified if their end points
9202 aren't constant. */
9203 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
9204 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
9205 break;
9207 case RECORD_TYPE:
9208 case UNION_TYPE:
9209 case QUAL_UNION_TYPE:
9210 /* We can't see if any of the fields are variably-modified by the
9211 definition we normally use, since that would produce infinite
9212 recursion via pointers. */
9213 /* This is variably modified if some field's type is. */
9214 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
9215 if (TREE_CODE (t) == FIELD_DECL)
9217 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
9218 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
9219 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
9221 if (TREE_CODE (type) == QUAL_UNION_TYPE)
9222 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
9224 break;
9226 case ARRAY_TYPE:
9227 /* Do not call ourselves to avoid infinite recursion. This is
9228 variably modified if the element type is. */
9229 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
9230 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
9231 break;
9233 default:
9234 break;
9237 /* The current language may have other cases to check, but in general,
9238 all other types are not variably modified. */
9239 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
9241 #undef RETURN_TRUE_IF_VAR
9244 /* Given a DECL or TYPE, return the scope in which it was declared, or
9245 NULL_TREE if there is no containing scope. */
9247 tree
9248 get_containing_scope (const_tree t)
9250 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
9253 /* Return the innermost context enclosing DECL that is
9254 a FUNCTION_DECL, or zero if none. */
9256 tree
9257 decl_function_context (const_tree decl)
9259 tree context;
9261 if (TREE_CODE (decl) == ERROR_MARK)
9262 return 0;
9264 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9265 where we look up the function at runtime. Such functions always take
9266 a first argument of type 'pointer to real context'.
9268 C++ should really be fixed to use DECL_CONTEXT for the real context,
9269 and use something else for the "virtual context". */
9270 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
9271 context
9272 = TYPE_MAIN_VARIANT
9273 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
9274 else
9275 context = DECL_CONTEXT (decl);
9277 while (context && TREE_CODE (context) != FUNCTION_DECL)
9279 if (TREE_CODE (context) == BLOCK)
9280 context = BLOCK_SUPERCONTEXT (context);
9281 else
9282 context = get_containing_scope (context);
9285 return context;
9288 /* Return the innermost context enclosing DECL that is
9289 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9290 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9292 tree
9293 decl_type_context (const_tree decl)
9295 tree context = DECL_CONTEXT (decl);
9297 while (context)
9298 switch (TREE_CODE (context))
9300 case NAMESPACE_DECL:
9301 case TRANSLATION_UNIT_DECL:
9302 return NULL_TREE;
9304 case RECORD_TYPE:
9305 case UNION_TYPE:
9306 case QUAL_UNION_TYPE:
9307 return context;
9309 case TYPE_DECL:
9310 case FUNCTION_DECL:
9311 context = DECL_CONTEXT (context);
9312 break;
9314 case BLOCK:
9315 context = BLOCK_SUPERCONTEXT (context);
9316 break;
9318 default:
9319 gcc_unreachable ();
9322 return NULL_TREE;
9325 /* CALL is a CALL_EXPR. Return the declaration for the function
9326 called, or NULL_TREE if the called function cannot be
9327 determined. */
9329 tree
9330 get_callee_fndecl (const_tree call)
9332 tree addr;
9334 if (call == error_mark_node)
9335 return error_mark_node;
9337 /* It's invalid to call this function with anything but a
9338 CALL_EXPR. */
9339 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9341 /* The first operand to the CALL is the address of the function
9342 called. */
9343 addr = CALL_EXPR_FN (call);
9345 /* If there is no function, return early. */
9346 if (addr == NULL_TREE)
9347 return NULL_TREE;
9349 STRIP_NOPS (addr);
9351 /* If this is a readonly function pointer, extract its initial value. */
9352 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
9353 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
9354 && DECL_INITIAL (addr))
9355 addr = DECL_INITIAL (addr);
9357 /* If the address is just `&f' for some function `f', then we know
9358 that `f' is being called. */
9359 if (TREE_CODE (addr) == ADDR_EXPR
9360 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
9361 return TREE_OPERAND (addr, 0);
9363 /* We couldn't figure out what was being called. */
9364 return NULL_TREE;
9367 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
9368 return the associated function code, otherwise return CFN_LAST. */
9370 combined_fn
9371 get_call_combined_fn (const_tree call)
9373 /* It's invalid to call this function with anything but a CALL_EXPR. */
9374 gcc_assert (TREE_CODE (call) == CALL_EXPR);
9376 if (!CALL_EXPR_FN (call))
9377 return as_combined_fn (CALL_EXPR_IFN (call));
9379 tree fndecl = get_callee_fndecl (call);
9380 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
9381 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
9383 return CFN_LAST;
9386 #define TREE_MEM_USAGE_SPACES 40
9388 /* Print debugging information about tree nodes generated during the compile,
9389 and any language-specific information. */
9391 void
9392 dump_tree_statistics (void)
9394 if (GATHER_STATISTICS)
9396 int i;
9397 int total_nodes, total_bytes;
9398 fprintf (stderr, "\nKind Nodes Bytes\n");
9399 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9400 total_nodes = total_bytes = 0;
9401 for (i = 0; i < (int) all_kinds; i++)
9403 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
9404 tree_node_counts[i], tree_node_sizes[i]);
9405 total_nodes += tree_node_counts[i];
9406 total_bytes += tree_node_sizes[i];
9408 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9409 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
9410 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9411 fprintf (stderr, "Code Nodes\n");
9412 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9413 for (i = 0; i < (int) MAX_TREE_CODES; i++)
9414 fprintf (stderr, "%-32s %7d\n", get_tree_code_name ((enum tree_code) i),
9415 tree_code_counts[i]);
9416 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES);
9417 fprintf (stderr, "\n");
9418 ssanames_print_statistics ();
9419 fprintf (stderr, "\n");
9420 phinodes_print_statistics ();
9421 fprintf (stderr, "\n");
9423 else
9424 fprintf (stderr, "(No per-node statistics)\n");
9426 print_type_hash_statistics ();
9427 print_debug_expr_statistics ();
9428 print_value_expr_statistics ();
9429 lang_hooks.print_statistics ();
9432 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9434 /* Generate a crc32 of a byte. */
9436 static unsigned
9437 crc32_unsigned_bits (unsigned chksum, unsigned value, unsigned bits)
9439 unsigned ix;
9441 for (ix = bits; ix--; value <<= 1)
9443 unsigned feedback;
9445 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
9446 chksum <<= 1;
9447 chksum ^= feedback;
9449 return chksum;
9452 /* Generate a crc32 of a 32-bit unsigned. */
9454 unsigned
9455 crc32_unsigned (unsigned chksum, unsigned value)
9457 return crc32_unsigned_bits (chksum, value, 32);
9460 /* Generate a crc32 of a byte. */
9462 unsigned
9463 crc32_byte (unsigned chksum, char byte)
9465 return crc32_unsigned_bits (chksum, (unsigned) byte << 24, 8);
9468 /* Generate a crc32 of a string. */
9470 unsigned
9471 crc32_string (unsigned chksum, const char *string)
9475 chksum = crc32_byte (chksum, *string);
9477 while (*string++);
9478 return chksum;
9481 /* P is a string that will be used in a symbol. Mask out any characters
9482 that are not valid in that context. */
9484 void
9485 clean_symbol_name (char *p)
9487 for (; *p; p++)
9488 if (! (ISALNUM (*p)
9489 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9490 || *p == '$'
9491 #endif
9492 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9493 || *p == '.'
9494 #endif
9496 *p = '_';
9499 /* For anonymous aggregate types, we need some sort of name to
9500 hold on to. In practice, this should not appear, but it should
9501 not be harmful if it does. */
9502 bool
9503 anon_aggrname_p(const_tree id_node)
9505 #ifndef NO_DOT_IN_LABEL
9506 return (IDENTIFIER_POINTER (id_node)[0] == '.'
9507 && IDENTIFIER_POINTER (id_node)[1] == '_');
9508 #else /* NO_DOT_IN_LABEL */
9509 #ifndef NO_DOLLAR_IN_LABEL
9510 return (IDENTIFIER_POINTER (id_node)[0] == '$' \
9511 && IDENTIFIER_POINTER (id_node)[1] == '_');
9512 #else /* NO_DOLLAR_IN_LABEL */
9513 #define ANON_AGGRNAME_PREFIX "__anon_"
9514 return (!strncmp (IDENTIFIER_POINTER (id_node), ANON_AGGRNAME_PREFIX,
9515 sizeof (ANON_AGGRNAME_PREFIX) - 1));
9516 #endif /* NO_DOLLAR_IN_LABEL */
9517 #endif /* NO_DOT_IN_LABEL */
9520 /* Return a format for an anonymous aggregate name. */
9521 const char *
9522 anon_aggrname_format()
9524 #ifndef NO_DOT_IN_LABEL
9525 return "._%d";
9526 #else /* NO_DOT_IN_LABEL */
9527 #ifndef NO_DOLLAR_IN_LABEL
9528 return "$_%d";
9529 #else /* NO_DOLLAR_IN_LABEL */
9530 return "__anon_%d";
9531 #endif /* NO_DOLLAR_IN_LABEL */
9532 #endif /* NO_DOT_IN_LABEL */
9535 /* Generate a name for a special-purpose function.
9536 The generated name may need to be unique across the whole link.
9537 Changes to this function may also require corresponding changes to
9538 xstrdup_mask_random.
9539 TYPE is some string to identify the purpose of this function to the
9540 linker or collect2; it must start with an uppercase letter,
9541 one of:
9542 I - for constructors
9543 D - for destructors
9544 N - for C++ anonymous namespaces
9545 F - for DWARF unwind frame information. */
9547 tree
9548 get_file_function_name (const char *type)
9550 char *buf;
9551 const char *p;
9552 char *q;
9554 /* If we already have a name we know to be unique, just use that. */
9555 if (first_global_object_name)
9556 p = q = ASTRDUP (first_global_object_name);
9557 /* If the target is handling the constructors/destructors, they
9558 will be local to this file and the name is only necessary for
9559 debugging purposes.
9560 We also assign sub_I and sub_D sufixes to constructors called from
9561 the global static constructors. These are always local. */
9562 else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
9563 || (strncmp (type, "sub_", 4) == 0
9564 && (type[4] == 'I' || type[4] == 'D')))
9566 const char *file = main_input_filename;
9567 if (! file)
9568 file = LOCATION_FILE (input_location);
9569 /* Just use the file's basename, because the full pathname
9570 might be quite long. */
9571 p = q = ASTRDUP (lbasename (file));
9573 else
9575 /* Otherwise, the name must be unique across the entire link.
9576 We don't have anything that we know to be unique to this translation
9577 unit, so use what we do have and throw in some randomness. */
9578 unsigned len;
9579 const char *name = weak_global_object_name;
9580 const char *file = main_input_filename;
9582 if (! name)
9583 name = "";
9584 if (! file)
9585 file = LOCATION_FILE (input_location);
9587 len = strlen (file);
9588 q = (char *) alloca (9 + 17 + len + 1);
9589 memcpy (q, file, len + 1);
9591 snprintf (q + len, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX,
9592 crc32_string (0, name), get_random_seed (false));
9594 p = q;
9597 clean_symbol_name (q);
9598 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
9599 + strlen (type));
9601 /* Set up the name of the file-level functions we may need.
9602 Use a global object (which is already required to be unique over
9603 the program) rather than the file name (which imposes extra
9604 constraints). */
9605 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
9607 return get_identifier (buf);
9610 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9612 /* Complain that the tree code of NODE does not match the expected 0
9613 terminated list of trailing codes. The trailing code list can be
9614 empty, for a more vague error message. FILE, LINE, and FUNCTION
9615 are of the caller. */
9617 void
9618 tree_check_failed (const_tree node, const char *file,
9619 int line, const char *function, ...)
9621 va_list args;
9622 const char *buffer;
9623 unsigned length = 0;
9624 enum tree_code code;
9626 va_start (args, function);
9627 while ((code = (enum tree_code) va_arg (args, int)))
9628 length += 4 + strlen (get_tree_code_name (code));
9629 va_end (args);
9630 if (length)
9632 char *tmp;
9633 va_start (args, function);
9634 length += strlen ("expected ");
9635 buffer = tmp = (char *) alloca (length);
9636 length = 0;
9637 while ((code = (enum tree_code) va_arg (args, int)))
9639 const char *prefix = length ? " or " : "expected ";
9641 strcpy (tmp + length, prefix);
9642 length += strlen (prefix);
9643 strcpy (tmp + length, get_tree_code_name (code));
9644 length += strlen (get_tree_code_name (code));
9646 va_end (args);
9648 else
9649 buffer = "unexpected node";
9651 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9652 buffer, get_tree_code_name (TREE_CODE (node)),
9653 function, trim_filename (file), line);
9656 /* Complain that the tree code of NODE does match the expected 0
9657 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9658 the caller. */
9660 void
9661 tree_not_check_failed (const_tree node, const char *file,
9662 int line, const char *function, ...)
9664 va_list args;
9665 char *buffer;
9666 unsigned length = 0;
9667 enum tree_code code;
9669 va_start (args, function);
9670 while ((code = (enum tree_code) va_arg (args, int)))
9671 length += 4 + strlen (get_tree_code_name (code));
9672 va_end (args);
9673 va_start (args, function);
9674 buffer = (char *) alloca (length);
9675 length = 0;
9676 while ((code = (enum tree_code) va_arg (args, int)))
9678 if (length)
9680 strcpy (buffer + length, " or ");
9681 length += 4;
9683 strcpy (buffer + length, get_tree_code_name (code));
9684 length += strlen (get_tree_code_name (code));
9686 va_end (args);
9688 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9689 buffer, get_tree_code_name (TREE_CODE (node)),
9690 function, trim_filename (file), line);
9693 /* Similar to tree_check_failed, except that we check for a class of tree
9694 code, given in CL. */
9696 void
9697 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
9698 const char *file, int line, const char *function)
9700 internal_error
9701 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9702 TREE_CODE_CLASS_STRING (cl),
9703 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9704 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9707 /* Similar to tree_check_failed, except that instead of specifying a
9708 dozen codes, use the knowledge that they're all sequential. */
9710 void
9711 tree_range_check_failed (const_tree node, const char *file, int line,
9712 const char *function, enum tree_code c1,
9713 enum tree_code c2)
9715 char *buffer;
9716 unsigned length = 0;
9717 unsigned int c;
9719 for (c = c1; c <= c2; ++c)
9720 length += 4 + strlen (get_tree_code_name ((enum tree_code) c));
9722 length += strlen ("expected ");
9723 buffer = (char *) alloca (length);
9724 length = 0;
9726 for (c = c1; c <= c2; ++c)
9728 const char *prefix = length ? " or " : "expected ";
9730 strcpy (buffer + length, prefix);
9731 length += strlen (prefix);
9732 strcpy (buffer + length, get_tree_code_name ((enum tree_code) c));
9733 length += strlen (get_tree_code_name ((enum tree_code) c));
9736 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9737 buffer, get_tree_code_name (TREE_CODE (node)),
9738 function, trim_filename (file), line);
9742 /* Similar to tree_check_failed, except that we check that a tree does
9743 not have the specified code, given in CL. */
9745 void
9746 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
9747 const char *file, int line, const char *function)
9749 internal_error
9750 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9751 TREE_CODE_CLASS_STRING (cl),
9752 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
9753 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9757 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9759 void
9760 omp_clause_check_failed (const_tree node, const char *file, int line,
9761 const char *function, enum omp_clause_code code)
9763 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9764 omp_clause_code_name[code], get_tree_code_name (TREE_CODE (node)),
9765 function, trim_filename (file), line);
9769 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9771 void
9772 omp_clause_range_check_failed (const_tree node, const char *file, int line,
9773 const char *function, enum omp_clause_code c1,
9774 enum omp_clause_code c2)
9776 char *buffer;
9777 unsigned length = 0;
9778 unsigned int c;
9780 for (c = c1; c <= c2; ++c)
9781 length += 4 + strlen (omp_clause_code_name[c]);
9783 length += strlen ("expected ");
9784 buffer = (char *) alloca (length);
9785 length = 0;
9787 for (c = c1; c <= c2; ++c)
9789 const char *prefix = length ? " or " : "expected ";
9791 strcpy (buffer + length, prefix);
9792 length += strlen (prefix);
9793 strcpy (buffer + length, omp_clause_code_name[c]);
9794 length += strlen (omp_clause_code_name[c]);
9797 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9798 buffer, omp_clause_code_name[TREE_CODE (node)],
9799 function, trim_filename (file), line);
9803 #undef DEFTREESTRUCT
9804 #define DEFTREESTRUCT(VAL, NAME) NAME,
9806 static const char *ts_enum_names[] = {
9807 #include "treestruct.def"
9809 #undef DEFTREESTRUCT
9811 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9813 /* Similar to tree_class_check_failed, except that we check for
9814 whether CODE contains the tree structure identified by EN. */
9816 void
9817 tree_contains_struct_check_failed (const_tree node,
9818 const enum tree_node_structure_enum en,
9819 const char *file, int line,
9820 const char *function)
9822 internal_error
9823 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9824 TS_ENUM_NAME (en),
9825 get_tree_code_name (TREE_CODE (node)), function, trim_filename (file), line);
9829 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9830 (dynamically sized) vector. */
9832 void
9833 tree_int_cst_elt_check_failed (int idx, int len, const char *file, int line,
9834 const char *function)
9836 internal_error
9837 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9838 idx + 1, len, function, trim_filename (file), line);
9841 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9842 (dynamically sized) vector. */
9844 void
9845 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
9846 const char *function)
9848 internal_error
9849 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9850 idx + 1, len, function, trim_filename (file), line);
9853 /* Similar to above, except that the check is for the bounds of the operand
9854 vector of an expression node EXP. */
9856 void
9857 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9858 int line, const char *function)
9860 enum tree_code code = TREE_CODE (exp);
9861 internal_error
9862 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9863 idx + 1, get_tree_code_name (code), TREE_OPERAND_LENGTH (exp),
9864 function, trim_filename (file), line);
9867 /* Similar to above, except that the check is for the number of
9868 operands of an OMP_CLAUSE node. */
9870 void
9871 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9872 int line, const char *function)
9874 internal_error
9875 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9876 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9877 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9878 trim_filename (file), line);
9880 #endif /* ENABLE_TREE_CHECKING */
9882 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9883 and mapped to the machine mode MODE. Initialize its fields and build
9884 the information necessary for debugging output. */
9886 static tree
9887 make_vector_type (tree innertype, int nunits, machine_mode mode)
9889 tree t;
9890 inchash::hash hstate;
9891 tree mv_innertype = TYPE_MAIN_VARIANT (innertype);
9893 t = make_node (VECTOR_TYPE);
9894 TREE_TYPE (t) = mv_innertype;
9895 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9896 SET_TYPE_MODE (t, mode);
9898 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype) || in_lto_p)
9899 SET_TYPE_STRUCTURAL_EQUALITY (t);
9900 else if ((TYPE_CANONICAL (mv_innertype) != innertype
9901 || mode != VOIDmode)
9902 && !VECTOR_BOOLEAN_TYPE_P (t))
9903 TYPE_CANONICAL (t)
9904 = make_vector_type (TYPE_CANONICAL (mv_innertype), nunits, VOIDmode);
9906 layout_type (t);
9908 hstate.add_wide_int (VECTOR_TYPE);
9909 hstate.add_wide_int (nunits);
9910 hstate.add_wide_int (mode);
9911 hstate.add_object (TYPE_HASH (TREE_TYPE (t)));
9912 t = type_hash_canon (hstate.end (), t);
9914 /* We have built a main variant, based on the main variant of the
9915 inner type. Use it to build the variant we return. */
9916 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9917 && TREE_TYPE (t) != innertype)
9918 return build_type_attribute_qual_variant (t,
9919 TYPE_ATTRIBUTES (innertype),
9920 TYPE_QUALS (innertype));
9922 return t;
9925 static tree
9926 make_or_reuse_type (unsigned size, int unsignedp)
9928 int i;
9930 if (size == INT_TYPE_SIZE)
9931 return unsignedp ? unsigned_type_node : integer_type_node;
9932 if (size == CHAR_TYPE_SIZE)
9933 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9934 if (size == SHORT_TYPE_SIZE)
9935 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9936 if (size == LONG_TYPE_SIZE)
9937 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9938 if (size == LONG_LONG_TYPE_SIZE)
9939 return (unsignedp ? long_long_unsigned_type_node
9940 : long_long_integer_type_node);
9942 for (i = 0; i < NUM_INT_N_ENTS; i ++)
9943 if (size == int_n_data[i].bitsize
9944 && int_n_enabled_p[i])
9945 return (unsignedp ? int_n_trees[i].unsigned_type
9946 : int_n_trees[i].signed_type);
9948 if (unsignedp)
9949 return make_unsigned_type (size);
9950 else
9951 return make_signed_type (size);
9954 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9956 static tree
9957 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9959 if (satp)
9961 if (size == SHORT_FRACT_TYPE_SIZE)
9962 return unsignedp ? sat_unsigned_short_fract_type_node
9963 : sat_short_fract_type_node;
9964 if (size == FRACT_TYPE_SIZE)
9965 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9966 if (size == LONG_FRACT_TYPE_SIZE)
9967 return unsignedp ? sat_unsigned_long_fract_type_node
9968 : sat_long_fract_type_node;
9969 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9970 return unsignedp ? sat_unsigned_long_long_fract_type_node
9971 : sat_long_long_fract_type_node;
9973 else
9975 if (size == SHORT_FRACT_TYPE_SIZE)
9976 return unsignedp ? unsigned_short_fract_type_node
9977 : short_fract_type_node;
9978 if (size == FRACT_TYPE_SIZE)
9979 return unsignedp ? unsigned_fract_type_node : fract_type_node;
9980 if (size == LONG_FRACT_TYPE_SIZE)
9981 return unsignedp ? unsigned_long_fract_type_node
9982 : long_fract_type_node;
9983 if (size == LONG_LONG_FRACT_TYPE_SIZE)
9984 return unsignedp ? unsigned_long_long_fract_type_node
9985 : long_long_fract_type_node;
9988 return make_fract_type (size, unsignedp, satp);
9991 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9993 static tree
9994 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9996 if (satp)
9998 if (size == SHORT_ACCUM_TYPE_SIZE)
9999 return unsignedp ? sat_unsigned_short_accum_type_node
10000 : sat_short_accum_type_node;
10001 if (size == ACCUM_TYPE_SIZE)
10002 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
10003 if (size == LONG_ACCUM_TYPE_SIZE)
10004 return unsignedp ? sat_unsigned_long_accum_type_node
10005 : sat_long_accum_type_node;
10006 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10007 return unsignedp ? sat_unsigned_long_long_accum_type_node
10008 : sat_long_long_accum_type_node;
10010 else
10012 if (size == SHORT_ACCUM_TYPE_SIZE)
10013 return unsignedp ? unsigned_short_accum_type_node
10014 : short_accum_type_node;
10015 if (size == ACCUM_TYPE_SIZE)
10016 return unsignedp ? unsigned_accum_type_node : accum_type_node;
10017 if (size == LONG_ACCUM_TYPE_SIZE)
10018 return unsignedp ? unsigned_long_accum_type_node
10019 : long_accum_type_node;
10020 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
10021 return unsignedp ? unsigned_long_long_accum_type_node
10022 : long_long_accum_type_node;
10025 return make_accum_type (size, unsignedp, satp);
10029 /* Create an atomic variant node for TYPE. This routine is called
10030 during initialization of data types to create the 5 basic atomic
10031 types. The generic build_variant_type function requires these to
10032 already be set up in order to function properly, so cannot be
10033 called from there. If ALIGN is non-zero, then ensure alignment is
10034 overridden to this value. */
10036 static tree
10037 build_atomic_base (tree type, unsigned int align)
10039 tree t;
10041 /* Make sure its not already registered. */
10042 if ((t = get_qualified_type (type, TYPE_QUAL_ATOMIC)))
10043 return t;
10045 t = build_variant_type_copy (type);
10046 set_type_quals (t, TYPE_QUAL_ATOMIC);
10048 if (align)
10049 TYPE_ALIGN (t) = align;
10051 return t;
10054 /* Create nodes for all integer types (and error_mark_node) using the sizes
10055 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
10057 void
10058 build_common_tree_nodes (bool signed_char)
10060 int i;
10062 error_mark_node = make_node (ERROR_MARK);
10063 TREE_TYPE (error_mark_node) = error_mark_node;
10065 initialize_sizetypes ();
10067 /* Define both `signed char' and `unsigned char'. */
10068 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
10069 TYPE_STRING_FLAG (signed_char_type_node) = 1;
10070 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
10071 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
10073 /* Define `char', which is like either `signed char' or `unsigned char'
10074 but not the same as either. */
10075 char_type_node
10076 = (signed_char
10077 ? make_signed_type (CHAR_TYPE_SIZE)
10078 : make_unsigned_type (CHAR_TYPE_SIZE));
10079 TYPE_STRING_FLAG (char_type_node) = 1;
10081 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
10082 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
10083 integer_type_node = make_signed_type (INT_TYPE_SIZE);
10084 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
10085 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
10086 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
10087 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
10088 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
10090 for (i = 0; i < NUM_INT_N_ENTS; i ++)
10092 int_n_trees[i].signed_type = make_signed_type (int_n_data[i].bitsize);
10093 int_n_trees[i].unsigned_type = make_unsigned_type (int_n_data[i].bitsize);
10094 TYPE_SIZE (int_n_trees[i].signed_type) = bitsize_int (int_n_data[i].bitsize);
10095 TYPE_SIZE (int_n_trees[i].unsigned_type) = bitsize_int (int_n_data[i].bitsize);
10097 if (int_n_data[i].bitsize > LONG_LONG_TYPE_SIZE
10098 && int_n_enabled_p[i])
10100 integer_types[itk_intN_0 + i * 2] = int_n_trees[i].signed_type;
10101 integer_types[itk_unsigned_intN_0 + i * 2] = int_n_trees[i].unsigned_type;
10105 /* Define a boolean type. This type only represents boolean values but
10106 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
10107 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
10108 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
10109 TYPE_PRECISION (boolean_type_node) = 1;
10110 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
10112 /* Define what type to use for size_t. */
10113 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
10114 size_type_node = unsigned_type_node;
10115 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
10116 size_type_node = long_unsigned_type_node;
10117 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
10118 size_type_node = long_long_unsigned_type_node;
10119 else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
10120 size_type_node = short_unsigned_type_node;
10121 else
10123 int i;
10125 size_type_node = NULL_TREE;
10126 for (i = 0; i < NUM_INT_N_ENTS; i++)
10127 if (int_n_enabled_p[i])
10129 char name[50];
10130 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
10132 if (strcmp (name, SIZE_TYPE) == 0)
10134 size_type_node = int_n_trees[i].unsigned_type;
10137 if (size_type_node == NULL_TREE)
10138 gcc_unreachable ();
10141 /* Fill in the rest of the sized types. Reuse existing type nodes
10142 when possible. */
10143 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
10144 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
10145 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
10146 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
10147 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
10149 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
10150 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
10151 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
10152 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
10153 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
10155 /* Don't call build_qualified type for atomics. That routine does
10156 special processing for atomics, and until they are initialized
10157 it's better not to make that call.
10159 Check to see if there is a target override for atomic types. */
10161 atomicQI_type_node = build_atomic_base (unsigned_intQI_type_node,
10162 targetm.atomic_align_for_mode (QImode));
10163 atomicHI_type_node = build_atomic_base (unsigned_intHI_type_node,
10164 targetm.atomic_align_for_mode (HImode));
10165 atomicSI_type_node = build_atomic_base (unsigned_intSI_type_node,
10166 targetm.atomic_align_for_mode (SImode));
10167 atomicDI_type_node = build_atomic_base (unsigned_intDI_type_node,
10168 targetm.atomic_align_for_mode (DImode));
10169 atomicTI_type_node = build_atomic_base (unsigned_intTI_type_node,
10170 targetm.atomic_align_for_mode (TImode));
10172 access_public_node = get_identifier ("public");
10173 access_protected_node = get_identifier ("protected");
10174 access_private_node = get_identifier ("private");
10176 /* Define these next since types below may used them. */
10177 integer_zero_node = build_int_cst (integer_type_node, 0);
10178 integer_one_node = build_int_cst (integer_type_node, 1);
10179 integer_three_node = build_int_cst (integer_type_node, 3);
10180 integer_minus_one_node = build_int_cst (integer_type_node, -1);
10182 size_zero_node = size_int (0);
10183 size_one_node = size_int (1);
10184 bitsize_zero_node = bitsize_int (0);
10185 bitsize_one_node = bitsize_int (1);
10186 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
10188 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
10189 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
10191 void_type_node = make_node (VOID_TYPE);
10192 layout_type (void_type_node);
10194 pointer_bounds_type_node = targetm.chkp_bound_type ();
10196 /* We are not going to have real types in C with less than byte alignment,
10197 so we might as well not have any types that claim to have it. */
10198 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
10199 TYPE_USER_ALIGN (void_type_node) = 0;
10201 void_node = make_node (VOID_CST);
10202 TREE_TYPE (void_node) = void_type_node;
10204 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
10205 layout_type (TREE_TYPE (null_pointer_node));
10207 ptr_type_node = build_pointer_type (void_type_node);
10208 const_ptr_type_node
10209 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
10210 fileptr_type_node = ptr_type_node;
10212 pointer_sized_int_node = build_nonstandard_integer_type (POINTER_SIZE, 1);
10214 float_type_node = make_node (REAL_TYPE);
10215 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
10216 layout_type (float_type_node);
10218 double_type_node = make_node (REAL_TYPE);
10219 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
10220 layout_type (double_type_node);
10222 long_double_type_node = make_node (REAL_TYPE);
10223 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
10224 layout_type (long_double_type_node);
10226 float_ptr_type_node = build_pointer_type (float_type_node);
10227 double_ptr_type_node = build_pointer_type (double_type_node);
10228 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
10229 integer_ptr_type_node = build_pointer_type (integer_type_node);
10231 /* Fixed size integer types. */
10232 uint16_type_node = make_or_reuse_type (16, 1);
10233 uint32_type_node = make_or_reuse_type (32, 1);
10234 uint64_type_node = make_or_reuse_type (64, 1);
10236 /* Decimal float types. */
10237 dfloat32_type_node = make_node (REAL_TYPE);
10238 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
10239 layout_type (dfloat32_type_node);
10240 SET_TYPE_MODE (dfloat32_type_node, SDmode);
10241 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
10243 dfloat64_type_node = make_node (REAL_TYPE);
10244 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
10245 layout_type (dfloat64_type_node);
10246 SET_TYPE_MODE (dfloat64_type_node, DDmode);
10247 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
10249 dfloat128_type_node = make_node (REAL_TYPE);
10250 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
10251 layout_type (dfloat128_type_node);
10252 SET_TYPE_MODE (dfloat128_type_node, TDmode);
10253 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
10255 complex_integer_type_node = build_complex_type (integer_type_node, true);
10256 complex_float_type_node = build_complex_type (float_type_node, true);
10257 complex_double_type_node = build_complex_type (double_type_node, true);
10258 complex_long_double_type_node = build_complex_type (long_double_type_node,
10259 true);
10261 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10262 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10263 sat_ ## KIND ## _type_node = \
10264 make_sat_signed_ ## KIND ## _type (SIZE); \
10265 sat_unsigned_ ## KIND ## _type_node = \
10266 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10267 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10268 unsigned_ ## KIND ## _type_node = \
10269 make_unsigned_ ## KIND ## _type (SIZE);
10271 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10272 sat_ ## WIDTH ## KIND ## _type_node = \
10273 make_sat_signed_ ## KIND ## _type (SIZE); \
10274 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10275 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10276 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10277 unsigned_ ## WIDTH ## KIND ## _type_node = \
10278 make_unsigned_ ## KIND ## _type (SIZE);
10280 /* Make fixed-point type nodes based on four different widths. */
10281 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10282 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10283 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10284 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10285 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10287 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10288 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10289 NAME ## _type_node = \
10290 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10291 u ## NAME ## _type_node = \
10292 make_or_reuse_unsigned_ ## KIND ## _type \
10293 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10294 sat_ ## NAME ## _type_node = \
10295 make_or_reuse_sat_signed_ ## KIND ## _type \
10296 (GET_MODE_BITSIZE (MODE ## mode)); \
10297 sat_u ## NAME ## _type_node = \
10298 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10299 (GET_MODE_BITSIZE (U ## MODE ## mode));
10301 /* Fixed-point type and mode nodes. */
10302 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
10303 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
10304 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
10305 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
10306 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
10307 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
10308 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
10309 MAKE_FIXED_MODE_NODE (accum, ha, HA)
10310 MAKE_FIXED_MODE_NODE (accum, sa, SA)
10311 MAKE_FIXED_MODE_NODE (accum, da, DA)
10312 MAKE_FIXED_MODE_NODE (accum, ta, TA)
10315 tree t = targetm.build_builtin_va_list ();
10317 /* Many back-ends define record types without setting TYPE_NAME.
10318 If we copied the record type here, we'd keep the original
10319 record type without a name. This breaks name mangling. So,
10320 don't copy record types and let c_common_nodes_and_builtins()
10321 declare the type to be __builtin_va_list. */
10322 if (TREE_CODE (t) != RECORD_TYPE)
10323 t = build_variant_type_copy (t);
10325 va_list_type_node = t;
10329 /* Modify DECL for given flags.
10330 TM_PURE attribute is set only on types, so the function will modify
10331 DECL's type when ECF_TM_PURE is used. */
10333 void
10334 set_call_expr_flags (tree decl, int flags)
10336 if (flags & ECF_NOTHROW)
10337 TREE_NOTHROW (decl) = 1;
10338 if (flags & ECF_CONST)
10339 TREE_READONLY (decl) = 1;
10340 if (flags & ECF_PURE)
10341 DECL_PURE_P (decl) = 1;
10342 if (flags & ECF_LOOPING_CONST_OR_PURE)
10343 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
10344 if (flags & ECF_NOVOPS)
10345 DECL_IS_NOVOPS (decl) = 1;
10346 if (flags & ECF_NORETURN)
10347 TREE_THIS_VOLATILE (decl) = 1;
10348 if (flags & ECF_MALLOC)
10349 DECL_IS_MALLOC (decl) = 1;
10350 if (flags & ECF_RETURNS_TWICE)
10351 DECL_IS_RETURNS_TWICE (decl) = 1;
10352 if (flags & ECF_LEAF)
10353 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
10354 NULL, DECL_ATTRIBUTES (decl));
10355 if ((flags & ECF_TM_PURE) && flag_tm)
10356 apply_tm_attr (decl, get_identifier ("transaction_pure"));
10357 /* Looping const or pure is implied by noreturn.
10358 There is currently no way to declare looping const or looping pure alone. */
10359 gcc_assert (!(flags & ECF_LOOPING_CONST_OR_PURE)
10360 || ((flags & ECF_NORETURN) && (flags & (ECF_CONST | ECF_PURE))));
10364 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10366 static void
10367 local_define_builtin (const char *name, tree type, enum built_in_function code,
10368 const char *library_name, int ecf_flags)
10370 tree decl;
10372 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
10373 library_name, NULL_TREE);
10374 set_call_expr_flags (decl, ecf_flags);
10376 set_builtin_decl (code, decl, true);
10379 /* Call this function after instantiating all builtins that the language
10380 front end cares about. This will build the rest of the builtins
10381 and internal functions that are relied upon by the tree optimizers and
10382 the middle-end. */
10384 void
10385 build_common_builtin_nodes (void)
10387 tree tmp, ftype;
10388 int ecf_flags;
10390 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE))
10392 ftype = build_function_type (void_type_node, void_list_node);
10393 local_define_builtin ("__builtin_unreachable", ftype, BUILT_IN_UNREACHABLE,
10394 "__builtin_unreachable",
10395 ECF_NOTHROW | ECF_LEAF | ECF_NORETURN
10396 | ECF_CONST);
10399 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
10400 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10402 ftype = build_function_type_list (ptr_type_node,
10403 ptr_type_node, const_ptr_type_node,
10404 size_type_node, NULL_TREE);
10406 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
10407 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
10408 "memcpy", ECF_NOTHROW | ECF_LEAF);
10409 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
10410 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
10411 "memmove", ECF_NOTHROW | ECF_LEAF);
10414 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
10416 ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
10417 const_ptr_type_node, size_type_node,
10418 NULL_TREE);
10419 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
10420 "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10423 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
10425 ftype = build_function_type_list (ptr_type_node,
10426 ptr_type_node, integer_type_node,
10427 size_type_node, NULL_TREE);
10428 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
10429 "memset", ECF_NOTHROW | ECF_LEAF);
10432 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
10434 ftype = build_function_type_list (ptr_type_node,
10435 size_type_node, NULL_TREE);
10436 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
10437 "alloca", ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
10440 ftype = build_function_type_list (ptr_type_node, size_type_node,
10441 size_type_node, NULL_TREE);
10442 local_define_builtin ("__builtin_alloca_with_align", ftype,
10443 BUILT_IN_ALLOCA_WITH_ALIGN,
10444 "__builtin_alloca_with_align",
10445 ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
10447 /* If we're checking the stack, `alloca' can throw. */
10448 if (flag_stack_check)
10450 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA)) = 0;
10451 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN)) = 0;
10454 ftype = build_function_type_list (void_type_node,
10455 ptr_type_node, ptr_type_node,
10456 ptr_type_node, NULL_TREE);
10457 local_define_builtin ("__builtin_init_trampoline", ftype,
10458 BUILT_IN_INIT_TRAMPOLINE,
10459 "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
10460 local_define_builtin ("__builtin_init_heap_trampoline", ftype,
10461 BUILT_IN_INIT_HEAP_TRAMPOLINE,
10462 "__builtin_init_heap_trampoline",
10463 ECF_NOTHROW | ECF_LEAF);
10465 ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
10466 local_define_builtin ("__builtin_adjust_trampoline", ftype,
10467 BUILT_IN_ADJUST_TRAMPOLINE,
10468 "__builtin_adjust_trampoline",
10469 ECF_CONST | ECF_NOTHROW);
10471 ftype = build_function_type_list (void_type_node,
10472 ptr_type_node, ptr_type_node, NULL_TREE);
10473 local_define_builtin ("__builtin_nonlocal_goto", ftype,
10474 BUILT_IN_NONLOCAL_GOTO,
10475 "__builtin_nonlocal_goto",
10476 ECF_NORETURN | ECF_NOTHROW);
10478 ftype = build_function_type_list (void_type_node,
10479 ptr_type_node, ptr_type_node, NULL_TREE);
10480 local_define_builtin ("__builtin_setjmp_setup", ftype,
10481 BUILT_IN_SETJMP_SETUP,
10482 "__builtin_setjmp_setup", ECF_NOTHROW);
10484 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10485 local_define_builtin ("__builtin_setjmp_receiver", ftype,
10486 BUILT_IN_SETJMP_RECEIVER,
10487 "__builtin_setjmp_receiver", ECF_NOTHROW | ECF_LEAF);
10489 ftype = build_function_type_list (ptr_type_node, NULL_TREE);
10490 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
10491 "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
10493 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10494 local_define_builtin ("__builtin_stack_restore", ftype,
10495 BUILT_IN_STACK_RESTORE,
10496 "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
10498 /* If there's a possibility that we might use the ARM EABI, build the
10499 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
10500 if (targetm.arm_eabi_unwinder)
10502 ftype = build_function_type_list (void_type_node, NULL_TREE);
10503 local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
10504 BUILT_IN_CXA_END_CLEANUP,
10505 "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
10508 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
10509 local_define_builtin ("__builtin_unwind_resume", ftype,
10510 BUILT_IN_UNWIND_RESUME,
10511 ((targetm_common.except_unwind_info (&global_options)
10512 == UI_SJLJ)
10513 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10514 ECF_NORETURN);
10516 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
10518 ftype = build_function_type_list (ptr_type_node, integer_type_node,
10519 NULL_TREE);
10520 local_define_builtin ("__builtin_return_address", ftype,
10521 BUILT_IN_RETURN_ADDRESS,
10522 "__builtin_return_address",
10523 ECF_NOTHROW);
10526 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
10527 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10529 ftype = build_function_type_list (void_type_node, ptr_type_node,
10530 ptr_type_node, NULL_TREE);
10531 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
10532 local_define_builtin ("__cyg_profile_func_enter", ftype,
10533 BUILT_IN_PROFILE_FUNC_ENTER,
10534 "__cyg_profile_func_enter", 0);
10535 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
10536 local_define_builtin ("__cyg_profile_func_exit", ftype,
10537 BUILT_IN_PROFILE_FUNC_EXIT,
10538 "__cyg_profile_func_exit", 0);
10541 /* The exception object and filter values from the runtime. The argument
10542 must be zero before exception lowering, i.e. from the front end. After
10543 exception lowering, it will be the region number for the exception
10544 landing pad. These functions are PURE instead of CONST to prevent
10545 them from being hoisted past the exception edge that will initialize
10546 its value in the landing pad. */
10547 ftype = build_function_type_list (ptr_type_node,
10548 integer_type_node, NULL_TREE);
10549 ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
10550 /* Only use TM_PURE if we have TM language support. */
10551 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
10552 ecf_flags |= ECF_TM_PURE;
10553 local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
10554 "__builtin_eh_pointer", ecf_flags);
10556 tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
10557 ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
10558 local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
10559 "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
10561 ftype = build_function_type_list (void_type_node,
10562 integer_type_node, integer_type_node,
10563 NULL_TREE);
10564 local_define_builtin ("__builtin_eh_copy_values", ftype,
10565 BUILT_IN_EH_COPY_VALUES,
10566 "__builtin_eh_copy_values", ECF_NOTHROW);
10568 /* Complex multiplication and division. These are handled as builtins
10569 rather than optabs because emit_library_call_value doesn't support
10570 complex. Further, we can do slightly better with folding these
10571 beasties if the real and complex parts of the arguments are separate. */
10573 int mode;
10575 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
10577 char mode_name_buf[4], *q;
10578 const char *p;
10579 enum built_in_function mcode, dcode;
10580 tree type, inner_type;
10581 const char *prefix = "__";
10583 if (targetm.libfunc_gnu_prefix)
10584 prefix = "__gnu_";
10586 type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
10587 if (type == NULL)
10588 continue;
10589 inner_type = TREE_TYPE (type);
10591 ftype = build_function_type_list (type, inner_type, inner_type,
10592 inner_type, inner_type, NULL_TREE);
10594 mcode = ((enum built_in_function)
10595 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10596 dcode = ((enum built_in_function)
10597 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
10599 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
10600 *q = TOLOWER (*p);
10601 *q = '\0';
10603 built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
10604 NULL);
10605 local_define_builtin (built_in_names[mcode], ftype, mcode,
10606 built_in_names[mcode],
10607 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10609 built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
10610 NULL);
10611 local_define_builtin (built_in_names[dcode], ftype, dcode,
10612 built_in_names[dcode],
10613 ECF_CONST | ECF_NOTHROW | ECF_LEAF);
10617 init_internal_fns ();
10620 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10621 better way.
10623 If we requested a pointer to a vector, build up the pointers that
10624 we stripped off while looking for the inner type. Similarly for
10625 return values from functions.
10627 The argument TYPE is the top of the chain, and BOTTOM is the
10628 new type which we will point to. */
10630 tree
10631 reconstruct_complex_type (tree type, tree bottom)
10633 tree inner, outer;
10635 if (TREE_CODE (type) == POINTER_TYPE)
10637 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10638 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
10639 TYPE_REF_CAN_ALIAS_ALL (type));
10641 else if (TREE_CODE (type) == REFERENCE_TYPE)
10643 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10644 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
10645 TYPE_REF_CAN_ALIAS_ALL (type));
10647 else if (TREE_CODE (type) == ARRAY_TYPE)
10649 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10650 outer = build_array_type (inner, TYPE_DOMAIN (type));
10652 else if (TREE_CODE (type) == FUNCTION_TYPE)
10654 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10655 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
10657 else if (TREE_CODE (type) == METHOD_TYPE)
10659 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10660 /* The build_method_type_directly() routine prepends 'this' to argument list,
10661 so we must compensate by getting rid of it. */
10662 outer
10663 = build_method_type_directly
10664 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
10665 inner,
10666 TREE_CHAIN (TYPE_ARG_TYPES (type)));
10668 else if (TREE_CODE (type) == OFFSET_TYPE)
10670 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
10671 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
10673 else
10674 return bottom;
10676 return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
10677 TYPE_QUALS (type));
10680 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10681 the inner type. */
10682 tree
10683 build_vector_type_for_mode (tree innertype, machine_mode mode)
10685 int nunits;
10687 switch (GET_MODE_CLASS (mode))
10689 case MODE_VECTOR_INT:
10690 case MODE_VECTOR_FLOAT:
10691 case MODE_VECTOR_FRACT:
10692 case MODE_VECTOR_UFRACT:
10693 case MODE_VECTOR_ACCUM:
10694 case MODE_VECTOR_UACCUM:
10695 nunits = GET_MODE_NUNITS (mode);
10696 break;
10698 case MODE_INT:
10699 /* Check that there are no leftover bits. */
10700 gcc_assert (GET_MODE_BITSIZE (mode)
10701 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
10703 nunits = GET_MODE_BITSIZE (mode)
10704 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
10705 break;
10707 default:
10708 gcc_unreachable ();
10711 return make_vector_type (innertype, nunits, mode);
10714 /* Similarly, but takes the inner type and number of units, which must be
10715 a power of two. */
10717 tree
10718 build_vector_type (tree innertype, int nunits)
10720 return make_vector_type (innertype, nunits, VOIDmode);
10723 /* Build truth vector with specified length and number of units. */
10725 tree
10726 build_truth_vector_type (unsigned nunits, unsigned vector_size)
10728 machine_mode mask_mode = targetm.vectorize.get_mask_mode (nunits,
10729 vector_size);
10731 gcc_assert (mask_mode != VOIDmode);
10733 unsigned HOST_WIDE_INT vsize;
10734 if (mask_mode == BLKmode)
10735 vsize = vector_size * BITS_PER_UNIT;
10736 else
10737 vsize = GET_MODE_BITSIZE (mask_mode);
10739 unsigned HOST_WIDE_INT esize = vsize / nunits;
10740 gcc_assert (esize * nunits == vsize);
10742 tree bool_type = build_nonstandard_boolean_type (esize);
10744 return make_vector_type (bool_type, nunits, mask_mode);
10747 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10749 tree
10750 build_same_sized_truth_vector_type (tree vectype)
10752 if (VECTOR_BOOLEAN_TYPE_P (vectype))
10753 return vectype;
10755 unsigned HOST_WIDE_INT size = GET_MODE_SIZE (TYPE_MODE (vectype));
10757 if (!size)
10758 size = tree_to_uhwi (TYPE_SIZE_UNIT (vectype));
10760 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype), size);
10763 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10765 tree
10766 build_opaque_vector_type (tree innertype, int nunits)
10768 tree t = make_vector_type (innertype, nunits, VOIDmode);
10769 tree cand;
10770 /* We always build the non-opaque variant before the opaque one,
10771 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10772 cand = TYPE_NEXT_VARIANT (t);
10773 if (cand
10774 && TYPE_VECTOR_OPAQUE (cand)
10775 && check_qualified_type (cand, t, TYPE_QUALS (t)))
10776 return cand;
10777 /* Othewise build a variant type and make sure to queue it after
10778 the non-opaque type. */
10779 cand = build_distinct_type_copy (t);
10780 TYPE_VECTOR_OPAQUE (cand) = true;
10781 TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
10782 TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
10783 TYPE_NEXT_VARIANT (t) = cand;
10784 TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
10785 return cand;
10789 /* Given an initializer INIT, return TRUE if INIT is zero or some
10790 aggregate of zeros. Otherwise return FALSE. */
10791 bool
10792 initializer_zerop (const_tree init)
10794 tree elt;
10796 STRIP_NOPS (init);
10798 switch (TREE_CODE (init))
10800 case INTEGER_CST:
10801 return integer_zerop (init);
10803 case REAL_CST:
10804 /* ??? Note that this is not correct for C4X float formats. There,
10805 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10806 negative exponent. */
10807 return real_zerop (init)
10808 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
10810 case FIXED_CST:
10811 return fixed_zerop (init);
10813 case COMPLEX_CST:
10814 return integer_zerop (init)
10815 || (real_zerop (init)
10816 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
10817 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
10819 case VECTOR_CST:
10821 unsigned i;
10822 for (i = 0; i < VECTOR_CST_NELTS (init); ++i)
10823 if (!initializer_zerop (VECTOR_CST_ELT (init, i)))
10824 return false;
10825 return true;
10828 case CONSTRUCTOR:
10830 unsigned HOST_WIDE_INT idx;
10832 if (TREE_CLOBBER_P (init))
10833 return false;
10834 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
10835 if (!initializer_zerop (elt))
10836 return false;
10837 return true;
10840 case STRING_CST:
10842 int i;
10844 /* We need to loop through all elements to handle cases like
10845 "\0" and "\0foobar". */
10846 for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
10847 if (TREE_STRING_POINTER (init)[i] != '\0')
10848 return false;
10850 return true;
10853 default:
10854 return false;
10858 /* Check if vector VEC consists of all the equal elements and
10859 that the number of elements corresponds to the type of VEC.
10860 The function returns first element of the vector
10861 or NULL_TREE if the vector is not uniform. */
10862 tree
10863 uniform_vector_p (const_tree vec)
10865 tree first, t;
10866 unsigned i;
10868 if (vec == NULL_TREE)
10869 return NULL_TREE;
10871 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec)));
10873 if (TREE_CODE (vec) == VECTOR_CST)
10875 first = VECTOR_CST_ELT (vec, 0);
10876 for (i = 1; i < VECTOR_CST_NELTS (vec); ++i)
10877 if (!operand_equal_p (first, VECTOR_CST_ELT (vec, i), 0))
10878 return NULL_TREE;
10880 return first;
10883 else if (TREE_CODE (vec) == CONSTRUCTOR)
10885 first = error_mark_node;
10887 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec), i, t)
10889 if (i == 0)
10891 first = t;
10892 continue;
10894 if (!operand_equal_p (first, t, 0))
10895 return NULL_TREE;
10897 if (i != TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec)))
10898 return NULL_TREE;
10900 return first;
10903 return NULL_TREE;
10906 /* Build an empty statement at location LOC. */
10908 tree
10909 build_empty_stmt (location_t loc)
10911 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
10912 SET_EXPR_LOCATION (t, loc);
10913 return t;
10917 /* Build an OpenMP clause with code CODE. LOC is the location of the
10918 clause. */
10920 tree
10921 build_omp_clause (location_t loc, enum omp_clause_code code)
10923 tree t;
10924 int size, length;
10926 length = omp_clause_num_ops[code];
10927 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
10929 record_node_allocation_statistics (OMP_CLAUSE, size);
10931 t = (tree) ggc_internal_alloc (size);
10932 memset (t, 0, size);
10933 TREE_SET_CODE (t, OMP_CLAUSE);
10934 OMP_CLAUSE_SET_CODE (t, code);
10935 OMP_CLAUSE_LOCATION (t) = loc;
10937 return t;
10940 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10941 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10942 Except for the CODE and operand count field, other storage for the
10943 object is initialized to zeros. */
10945 tree
10946 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
10948 tree t;
10949 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
10951 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
10952 gcc_assert (len >= 1);
10954 record_node_allocation_statistics (code, length);
10956 t = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
10958 TREE_SET_CODE (t, code);
10960 /* Can't use TREE_OPERAND to store the length because if checking is
10961 enabled, it will try to check the length before we store it. :-P */
10962 t->exp.operands[0] = build_int_cst (sizetype, len);
10964 return t;
10967 /* Helper function for build_call_* functions; build a CALL_EXPR with
10968 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10969 the argument slots. */
10971 static tree
10972 build_call_1 (tree return_type, tree fn, int nargs)
10974 tree t;
10976 t = build_vl_exp (CALL_EXPR, nargs + 3);
10977 TREE_TYPE (t) = return_type;
10978 CALL_EXPR_FN (t) = fn;
10979 CALL_EXPR_STATIC_CHAIN (t) = NULL;
10981 return t;
10984 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10985 FN and a null static chain slot. NARGS is the number of call arguments
10986 which are specified as "..." arguments. */
10988 tree
10989 build_call_nary (tree return_type, tree fn, int nargs, ...)
10991 tree ret;
10992 va_list args;
10993 va_start (args, nargs);
10994 ret = build_call_valist (return_type, fn, nargs, args);
10995 va_end (args);
10996 return ret;
10999 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11000 FN and a null static chain slot. NARGS is the number of call arguments
11001 which are specified as a va_list ARGS. */
11003 tree
11004 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
11006 tree t;
11007 int i;
11009 t = build_call_1 (return_type, fn, nargs);
11010 for (i = 0; i < nargs; i++)
11011 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
11012 process_call_operands (t);
11013 return t;
11016 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
11017 FN and a null static chain slot. NARGS is the number of call arguments
11018 which are specified as a tree array ARGS. */
11020 tree
11021 build_call_array_loc (location_t loc, tree return_type, tree fn,
11022 int nargs, const tree *args)
11024 tree t;
11025 int i;
11027 t = build_call_1 (return_type, fn, nargs);
11028 for (i = 0; i < nargs; i++)
11029 CALL_EXPR_ARG (t, i) = args[i];
11030 process_call_operands (t);
11031 SET_EXPR_LOCATION (t, loc);
11032 return t;
11035 /* Like build_call_array, but takes a vec. */
11037 tree
11038 build_call_vec (tree return_type, tree fn, vec<tree, va_gc> *args)
11040 tree ret, t;
11041 unsigned int ix;
11043 ret = build_call_1 (return_type, fn, vec_safe_length (args));
11044 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
11045 CALL_EXPR_ARG (ret, ix) = t;
11046 process_call_operands (ret);
11047 return ret;
11050 /* Conveniently construct a function call expression. FNDECL names the
11051 function to be called and N arguments are passed in the array
11052 ARGARRAY. */
11054 tree
11055 build_call_expr_loc_array (location_t loc, tree fndecl, int n, tree *argarray)
11057 tree fntype = TREE_TYPE (fndecl);
11058 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
11060 return fold_build_call_array_loc (loc, TREE_TYPE (fntype), fn, n, argarray);
11063 /* Conveniently construct a function call expression. FNDECL names the
11064 function to be called and the arguments are passed in the vector
11065 VEC. */
11067 tree
11068 build_call_expr_loc_vec (location_t loc, tree fndecl, vec<tree, va_gc> *vec)
11070 return build_call_expr_loc_array (loc, fndecl, vec_safe_length (vec),
11071 vec_safe_address (vec));
11075 /* Conveniently construct a function call expression. FNDECL names the
11076 function to be called, N is the number of arguments, and the "..."
11077 parameters are the argument expressions. */
11079 tree
11080 build_call_expr_loc (location_t loc, tree fndecl, int n, ...)
11082 va_list ap;
11083 tree *argarray = XALLOCAVEC (tree, n);
11084 int i;
11086 va_start (ap, n);
11087 for (i = 0; i < n; i++)
11088 argarray[i] = va_arg (ap, tree);
11089 va_end (ap);
11090 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11093 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
11094 varargs macros aren't supported by all bootstrap compilers. */
11096 tree
11097 build_call_expr (tree fndecl, int n, ...)
11099 va_list ap;
11100 tree *argarray = XALLOCAVEC (tree, n);
11101 int i;
11103 va_start (ap, n);
11104 for (i = 0; i < n; i++)
11105 argarray[i] = va_arg (ap, tree);
11106 va_end (ap);
11107 return build_call_expr_loc_array (UNKNOWN_LOCATION, fndecl, n, argarray);
11110 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
11111 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
11112 It will get gimplified later into an ordinary internal function. */
11114 tree
11115 build_call_expr_internal_loc_array (location_t loc, internal_fn ifn,
11116 tree type, int n, const tree *args)
11118 tree t = build_call_1 (type, NULL_TREE, n);
11119 for (int i = 0; i < n; ++i)
11120 CALL_EXPR_ARG (t, i) = args[i];
11121 SET_EXPR_LOCATION (t, loc);
11122 CALL_EXPR_IFN (t) = ifn;
11123 return t;
11126 /* Build internal call expression. This is just like CALL_EXPR, except
11127 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
11128 internal function. */
11130 tree
11131 build_call_expr_internal_loc (location_t loc, enum internal_fn ifn,
11132 tree type, int n, ...)
11134 va_list ap;
11135 tree *argarray = XALLOCAVEC (tree, n);
11136 int i;
11138 va_start (ap, n);
11139 for (i = 0; i < n; i++)
11140 argarray[i] = va_arg (ap, tree);
11141 va_end (ap);
11142 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11145 /* Return a function call to FN, if the target is guaranteed to support it,
11146 or null otherwise.
11148 N is the number of arguments, passed in the "...", and TYPE is the
11149 type of the return value. */
11151 tree
11152 maybe_build_call_expr_loc (location_t loc, combined_fn fn, tree type,
11153 int n, ...)
11155 va_list ap;
11156 tree *argarray = XALLOCAVEC (tree, n);
11157 int i;
11159 va_start (ap, n);
11160 for (i = 0; i < n; i++)
11161 argarray[i] = va_arg (ap, tree);
11162 va_end (ap);
11163 if (internal_fn_p (fn))
11165 internal_fn ifn = as_internal_fn (fn);
11166 if (direct_internal_fn_p (ifn))
11168 tree_pair types = direct_internal_fn_types (ifn, type, argarray);
11169 if (!direct_internal_fn_supported_p (ifn, types,
11170 OPTIMIZE_FOR_BOTH))
11171 return NULL_TREE;
11173 return build_call_expr_internal_loc_array (loc, ifn, type, n, argarray);
11175 else
11177 tree fndecl = builtin_decl_implicit (as_builtin_fn (fn));
11178 if (!fndecl)
11179 return NULL_TREE;
11180 return build_call_expr_loc_array (loc, fndecl, n, argarray);
11184 /* Create a new constant string literal and return a char* pointer to it.
11185 The STRING_CST value is the LEN characters at STR. */
11186 tree
11187 build_string_literal (int len, const char *str)
11189 tree t, elem, index, type;
11191 t = build_string (len, str);
11192 elem = build_type_variant (char_type_node, 1, 0);
11193 index = build_index_type (size_int (len - 1));
11194 type = build_array_type (elem, index);
11195 TREE_TYPE (t) = type;
11196 TREE_CONSTANT (t) = 1;
11197 TREE_READONLY (t) = 1;
11198 TREE_STATIC (t) = 1;
11200 type = build_pointer_type (elem);
11201 t = build1 (ADDR_EXPR, type,
11202 build4 (ARRAY_REF, elem,
11203 t, integer_zero_node, NULL_TREE, NULL_TREE));
11204 return t;
11209 /* Return true if T (assumed to be a DECL) must be assigned a memory
11210 location. */
11212 bool
11213 needs_to_live_in_memory (const_tree t)
11215 return (TREE_ADDRESSABLE (t)
11216 || is_global_var (t)
11217 || (TREE_CODE (t) == RESULT_DECL
11218 && !DECL_BY_REFERENCE (t)
11219 && aggregate_value_p (t, current_function_decl)));
11222 /* Return value of a constant X and sign-extend it. */
11224 HOST_WIDE_INT
11225 int_cst_value (const_tree x)
11227 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
11228 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
11230 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
11231 gcc_assert (cst_and_fits_in_hwi (x));
11233 if (bits < HOST_BITS_PER_WIDE_INT)
11235 bool negative = ((val >> (bits - 1)) & 1) != 0;
11236 if (negative)
11237 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
11238 else
11239 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
11242 return val;
11245 /* If TYPE is an integral or pointer type, return an integer type with
11246 the same precision which is unsigned iff UNSIGNEDP is true, or itself
11247 if TYPE is already an integer type of signedness UNSIGNEDP. */
11249 tree
11250 signed_or_unsigned_type_for (int unsignedp, tree type)
11252 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_UNSIGNED (type) == unsignedp)
11253 return type;
11255 if (TREE_CODE (type) == VECTOR_TYPE)
11257 tree inner = TREE_TYPE (type);
11258 tree inner2 = signed_or_unsigned_type_for (unsignedp, inner);
11259 if (!inner2)
11260 return NULL_TREE;
11261 if (inner == inner2)
11262 return type;
11263 return build_vector_type (inner2, TYPE_VECTOR_SUBPARTS (type));
11266 if (!INTEGRAL_TYPE_P (type)
11267 && !POINTER_TYPE_P (type)
11268 && TREE_CODE (type) != OFFSET_TYPE)
11269 return NULL_TREE;
11271 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
11274 /* If TYPE is an integral or pointer type, return an integer type with
11275 the same precision which is unsigned, or itself if TYPE is already an
11276 unsigned integer type. */
11278 tree
11279 unsigned_type_for (tree type)
11281 return signed_or_unsigned_type_for (1, type);
11284 /* If TYPE is an integral or pointer type, return an integer type with
11285 the same precision which is signed, or itself if TYPE is already a
11286 signed integer type. */
11288 tree
11289 signed_type_for (tree type)
11291 return signed_or_unsigned_type_for (0, type);
11294 /* If TYPE is a vector type, return a signed integer vector type with the
11295 same width and number of subparts. Otherwise return boolean_type_node. */
11297 tree
11298 truth_type_for (tree type)
11300 if (TREE_CODE (type) == VECTOR_TYPE)
11302 if (VECTOR_BOOLEAN_TYPE_P (type))
11303 return type;
11304 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type),
11305 GET_MODE_SIZE (TYPE_MODE (type)));
11307 else
11308 return boolean_type_node;
11311 /* Returns the largest value obtainable by casting something in INNER type to
11312 OUTER type. */
11314 tree
11315 upper_bound_in_type (tree outer, tree inner)
11317 unsigned int det = 0;
11318 unsigned oprec = TYPE_PRECISION (outer);
11319 unsigned iprec = TYPE_PRECISION (inner);
11320 unsigned prec;
11322 /* Compute a unique number for every combination. */
11323 det |= (oprec > iprec) ? 4 : 0;
11324 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
11325 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
11327 /* Determine the exponent to use. */
11328 switch (det)
11330 case 0:
11331 case 1:
11332 /* oprec <= iprec, outer: signed, inner: don't care. */
11333 prec = oprec - 1;
11334 break;
11335 case 2:
11336 case 3:
11337 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11338 prec = oprec;
11339 break;
11340 case 4:
11341 /* oprec > iprec, outer: signed, inner: signed. */
11342 prec = iprec - 1;
11343 break;
11344 case 5:
11345 /* oprec > iprec, outer: signed, inner: unsigned. */
11346 prec = iprec;
11347 break;
11348 case 6:
11349 /* oprec > iprec, outer: unsigned, inner: signed. */
11350 prec = oprec;
11351 break;
11352 case 7:
11353 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11354 prec = iprec;
11355 break;
11356 default:
11357 gcc_unreachable ();
11360 return wide_int_to_tree (outer,
11361 wi::mask (prec, false, TYPE_PRECISION (outer)));
11364 /* Returns the smallest value obtainable by casting something in INNER type to
11365 OUTER type. */
11367 tree
11368 lower_bound_in_type (tree outer, tree inner)
11370 unsigned oprec = TYPE_PRECISION (outer);
11371 unsigned iprec = TYPE_PRECISION (inner);
11373 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11374 and obtain 0. */
11375 if (TYPE_UNSIGNED (outer)
11376 /* If we are widening something of an unsigned type, OUTER type
11377 contains all values of INNER type. In particular, both INNER
11378 and OUTER types have zero in common. */
11379 || (oprec > iprec && TYPE_UNSIGNED (inner)))
11380 return build_int_cst (outer, 0);
11381 else
11383 /* If we are widening a signed type to another signed type, we
11384 want to obtain -2^^(iprec-1). If we are keeping the
11385 precision or narrowing to a signed type, we want to obtain
11386 -2^(oprec-1). */
11387 unsigned prec = oprec > iprec ? iprec : oprec;
11388 return wide_int_to_tree (outer,
11389 wi::mask (prec - 1, true,
11390 TYPE_PRECISION (outer)));
11394 /* Return nonzero if two operands that are suitable for PHI nodes are
11395 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11396 SSA_NAME or invariant. Note that this is strictly an optimization.
11397 That is, callers of this function can directly call operand_equal_p
11398 and get the same result, only slower. */
11401 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
11403 if (arg0 == arg1)
11404 return 1;
11405 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
11406 return 0;
11407 return operand_equal_p (arg0, arg1, 0);
11410 /* Returns number of zeros at the end of binary representation of X. */
11412 tree
11413 num_ending_zeros (const_tree x)
11415 return build_int_cst (TREE_TYPE (x), wi::ctz (x));
11419 #define WALK_SUBTREE(NODE) \
11420 do \
11422 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11423 if (result) \
11424 return result; \
11426 while (0)
11428 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11429 be walked whenever a type is seen in the tree. Rest of operands and return
11430 value are as for walk_tree. */
11432 static tree
11433 walk_type_fields (tree type, walk_tree_fn func, void *data,
11434 hash_set<tree> *pset, walk_tree_lh lh)
11436 tree result = NULL_TREE;
11438 switch (TREE_CODE (type))
11440 case POINTER_TYPE:
11441 case REFERENCE_TYPE:
11442 case VECTOR_TYPE:
11443 /* We have to worry about mutually recursive pointers. These can't
11444 be written in C. They can in Ada. It's pathological, but
11445 there's an ACATS test (c38102a) that checks it. Deal with this
11446 by checking if we're pointing to another pointer, that one
11447 points to another pointer, that one does too, and we have no htab.
11448 If so, get a hash table. We check three levels deep to avoid
11449 the cost of the hash table if we don't need one. */
11450 if (POINTER_TYPE_P (TREE_TYPE (type))
11451 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
11452 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
11453 && !pset)
11455 result = walk_tree_without_duplicates (&TREE_TYPE (type),
11456 func, data);
11457 if (result)
11458 return result;
11460 break;
11463 /* ... fall through ... */
11465 case COMPLEX_TYPE:
11466 WALK_SUBTREE (TREE_TYPE (type));
11467 break;
11469 case METHOD_TYPE:
11470 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
11472 /* Fall through. */
11474 case FUNCTION_TYPE:
11475 WALK_SUBTREE (TREE_TYPE (type));
11477 tree arg;
11479 /* We never want to walk into default arguments. */
11480 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
11481 WALK_SUBTREE (TREE_VALUE (arg));
11483 break;
11485 case ARRAY_TYPE:
11486 /* Don't follow this nodes's type if a pointer for fear that
11487 we'll have infinite recursion. If we have a PSET, then we
11488 need not fear. */
11489 if (pset
11490 || (!POINTER_TYPE_P (TREE_TYPE (type))
11491 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
11492 WALK_SUBTREE (TREE_TYPE (type));
11493 WALK_SUBTREE (TYPE_DOMAIN (type));
11494 break;
11496 case OFFSET_TYPE:
11497 WALK_SUBTREE (TREE_TYPE (type));
11498 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
11499 break;
11501 default:
11502 break;
11505 return NULL_TREE;
11508 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11509 called with the DATA and the address of each sub-tree. If FUNC returns a
11510 non-NULL value, the traversal is stopped, and the value returned by FUNC
11511 is returned. If PSET is non-NULL it is used to record the nodes visited,
11512 and to avoid visiting a node more than once. */
11514 tree
11515 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
11516 hash_set<tree> *pset, walk_tree_lh lh)
11518 enum tree_code code;
11519 int walk_subtrees;
11520 tree result;
11522 #define WALK_SUBTREE_TAIL(NODE) \
11523 do \
11525 tp = & (NODE); \
11526 goto tail_recurse; \
11528 while (0)
11530 tail_recurse:
11531 /* Skip empty subtrees. */
11532 if (!*tp)
11533 return NULL_TREE;
11535 /* Don't walk the same tree twice, if the user has requested
11536 that we avoid doing so. */
11537 if (pset && pset->add (*tp))
11538 return NULL_TREE;
11540 /* Call the function. */
11541 walk_subtrees = 1;
11542 result = (*func) (tp, &walk_subtrees, data);
11544 /* If we found something, return it. */
11545 if (result)
11546 return result;
11548 code = TREE_CODE (*tp);
11550 /* Even if we didn't, FUNC may have decided that there was nothing
11551 interesting below this point in the tree. */
11552 if (!walk_subtrees)
11554 /* But we still need to check our siblings. */
11555 if (code == TREE_LIST)
11556 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11557 else if (code == OMP_CLAUSE)
11558 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11559 else
11560 return NULL_TREE;
11563 if (lh)
11565 result = (*lh) (tp, &walk_subtrees, func, data, pset);
11566 if (result || !walk_subtrees)
11567 return result;
11570 switch (code)
11572 case ERROR_MARK:
11573 case IDENTIFIER_NODE:
11574 case INTEGER_CST:
11575 case REAL_CST:
11576 case FIXED_CST:
11577 case VECTOR_CST:
11578 case STRING_CST:
11579 case BLOCK:
11580 case PLACEHOLDER_EXPR:
11581 case SSA_NAME:
11582 case FIELD_DECL:
11583 case RESULT_DECL:
11584 /* None of these have subtrees other than those already walked
11585 above. */
11586 break;
11588 case TREE_LIST:
11589 WALK_SUBTREE (TREE_VALUE (*tp));
11590 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
11591 break;
11593 case TREE_VEC:
11595 int len = TREE_VEC_LENGTH (*tp);
11597 if (len == 0)
11598 break;
11600 /* Walk all elements but the first. */
11601 while (--len)
11602 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
11604 /* Now walk the first one as a tail call. */
11605 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
11608 case COMPLEX_CST:
11609 WALK_SUBTREE (TREE_REALPART (*tp));
11610 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
11612 case CONSTRUCTOR:
11614 unsigned HOST_WIDE_INT idx;
11615 constructor_elt *ce;
11617 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp), idx, &ce);
11618 idx++)
11619 WALK_SUBTREE (ce->value);
11621 break;
11623 case SAVE_EXPR:
11624 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
11626 case BIND_EXPR:
11628 tree decl;
11629 for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
11631 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11632 into declarations that are just mentioned, rather than
11633 declared; they don't really belong to this part of the tree.
11634 And, we can see cycles: the initializer for a declaration
11635 can refer to the declaration itself. */
11636 WALK_SUBTREE (DECL_INITIAL (decl));
11637 WALK_SUBTREE (DECL_SIZE (decl));
11638 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
11640 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
11643 case STATEMENT_LIST:
11645 tree_stmt_iterator i;
11646 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
11647 WALK_SUBTREE (*tsi_stmt_ptr (i));
11649 break;
11651 case OMP_CLAUSE:
11652 switch (OMP_CLAUSE_CODE (*tp))
11654 case OMP_CLAUSE_GANG:
11655 case OMP_CLAUSE__GRIDDIM_:
11656 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11657 /* FALLTHRU */
11659 case OMP_CLAUSE_DEVICE_RESIDENT:
11660 case OMP_CLAUSE_ASYNC:
11661 case OMP_CLAUSE_WAIT:
11662 case OMP_CLAUSE_WORKER:
11663 case OMP_CLAUSE_VECTOR:
11664 case OMP_CLAUSE_NUM_GANGS:
11665 case OMP_CLAUSE_NUM_WORKERS:
11666 case OMP_CLAUSE_VECTOR_LENGTH:
11667 case OMP_CLAUSE_PRIVATE:
11668 case OMP_CLAUSE_SHARED:
11669 case OMP_CLAUSE_FIRSTPRIVATE:
11670 case OMP_CLAUSE_COPYIN:
11671 case OMP_CLAUSE_COPYPRIVATE:
11672 case OMP_CLAUSE_FINAL:
11673 case OMP_CLAUSE_IF:
11674 case OMP_CLAUSE_NUM_THREADS:
11675 case OMP_CLAUSE_SCHEDULE:
11676 case OMP_CLAUSE_UNIFORM:
11677 case OMP_CLAUSE_DEPEND:
11678 case OMP_CLAUSE_NUM_TEAMS:
11679 case OMP_CLAUSE_THREAD_LIMIT:
11680 case OMP_CLAUSE_DEVICE:
11681 case OMP_CLAUSE_DIST_SCHEDULE:
11682 case OMP_CLAUSE_SAFELEN:
11683 case OMP_CLAUSE_SIMDLEN:
11684 case OMP_CLAUSE_ORDERED:
11685 case OMP_CLAUSE_PRIORITY:
11686 case OMP_CLAUSE_GRAINSIZE:
11687 case OMP_CLAUSE_NUM_TASKS:
11688 case OMP_CLAUSE_HINT:
11689 case OMP_CLAUSE_TO_DECLARE:
11690 case OMP_CLAUSE_LINK:
11691 case OMP_CLAUSE_USE_DEVICE_PTR:
11692 case OMP_CLAUSE_IS_DEVICE_PTR:
11693 case OMP_CLAUSE__LOOPTEMP_:
11694 case OMP_CLAUSE__SIMDUID_:
11695 case OMP_CLAUSE__CILK_FOR_COUNT_:
11696 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
11697 /* FALLTHRU */
11699 case OMP_CLAUSE_INDEPENDENT:
11700 case OMP_CLAUSE_NOWAIT:
11701 case OMP_CLAUSE_DEFAULT:
11702 case OMP_CLAUSE_UNTIED:
11703 case OMP_CLAUSE_MERGEABLE:
11704 case OMP_CLAUSE_PROC_BIND:
11705 case OMP_CLAUSE_INBRANCH:
11706 case OMP_CLAUSE_NOTINBRANCH:
11707 case OMP_CLAUSE_FOR:
11708 case OMP_CLAUSE_PARALLEL:
11709 case OMP_CLAUSE_SECTIONS:
11710 case OMP_CLAUSE_TASKGROUP:
11711 case OMP_CLAUSE_NOGROUP:
11712 case OMP_CLAUSE_THREADS:
11713 case OMP_CLAUSE_SIMD:
11714 case OMP_CLAUSE_DEFAULTMAP:
11715 case OMP_CLAUSE_AUTO:
11716 case OMP_CLAUSE_SEQ:
11717 case OMP_CLAUSE_TILE:
11718 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11720 case OMP_CLAUSE_LASTPRIVATE:
11721 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11722 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
11723 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11725 case OMP_CLAUSE_COLLAPSE:
11727 int i;
11728 for (i = 0; i < 3; i++)
11729 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11730 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11733 case OMP_CLAUSE_LINEAR:
11734 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11735 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp));
11736 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp));
11737 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11739 case OMP_CLAUSE_ALIGNED:
11740 case OMP_CLAUSE_FROM:
11741 case OMP_CLAUSE_TO:
11742 case OMP_CLAUSE_MAP:
11743 case OMP_CLAUSE__CACHE_:
11744 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
11745 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1));
11746 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11748 case OMP_CLAUSE_REDUCTION:
11750 int i;
11751 for (i = 0; i < 5; i++)
11752 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
11753 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
11756 default:
11757 gcc_unreachable ();
11759 break;
11761 case TARGET_EXPR:
11763 int i, len;
11765 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11766 But, we only want to walk once. */
11767 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
11768 for (i = 0; i < len; ++i)
11769 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11770 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
11773 case DECL_EXPR:
11774 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11775 defining. We only want to walk into these fields of a type in this
11776 case and not in the general case of a mere reference to the type.
11778 The criterion is as follows: if the field can be an expression, it
11779 must be walked only here. This should be in keeping with the fields
11780 that are directly gimplified in gimplify_type_sizes in order for the
11781 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11782 variable-sized types.
11784 Note that DECLs get walked as part of processing the BIND_EXPR. */
11785 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
11787 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
11788 if (TREE_CODE (*type_p) == ERROR_MARK)
11789 return NULL_TREE;
11791 /* Call the function for the type. See if it returns anything or
11792 doesn't want us to continue. If we are to continue, walk both
11793 the normal fields and those for the declaration case. */
11794 result = (*func) (type_p, &walk_subtrees, data);
11795 if (result || !walk_subtrees)
11796 return result;
11798 /* But do not walk a pointed-to type since it may itself need to
11799 be walked in the declaration case if it isn't anonymous. */
11800 if (!POINTER_TYPE_P (*type_p))
11802 result = walk_type_fields (*type_p, func, data, pset, lh);
11803 if (result)
11804 return result;
11807 /* If this is a record type, also walk the fields. */
11808 if (RECORD_OR_UNION_TYPE_P (*type_p))
11810 tree field;
11812 for (field = TYPE_FIELDS (*type_p); field;
11813 field = DECL_CHAIN (field))
11815 /* We'd like to look at the type of the field, but we can
11816 easily get infinite recursion. So assume it's pointed
11817 to elsewhere in the tree. Also, ignore things that
11818 aren't fields. */
11819 if (TREE_CODE (field) != FIELD_DECL)
11820 continue;
11822 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
11823 WALK_SUBTREE (DECL_SIZE (field));
11824 WALK_SUBTREE (DECL_SIZE_UNIT (field));
11825 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
11826 WALK_SUBTREE (DECL_QUALIFIER (field));
11830 /* Same for scalar types. */
11831 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
11832 || TREE_CODE (*type_p) == ENUMERAL_TYPE
11833 || TREE_CODE (*type_p) == INTEGER_TYPE
11834 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
11835 || TREE_CODE (*type_p) == REAL_TYPE)
11837 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
11838 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
11841 WALK_SUBTREE (TYPE_SIZE (*type_p));
11842 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
11844 /* FALLTHRU */
11846 default:
11847 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
11849 int i, len;
11851 /* Walk over all the sub-trees of this operand. */
11852 len = TREE_OPERAND_LENGTH (*tp);
11854 /* Go through the subtrees. We need to do this in forward order so
11855 that the scope of a FOR_EXPR is handled properly. */
11856 if (len)
11858 for (i = 0; i < len - 1; ++i)
11859 WALK_SUBTREE (TREE_OPERAND (*tp, i));
11860 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
11863 /* If this is a type, walk the needed fields in the type. */
11864 else if (TYPE_P (*tp))
11865 return walk_type_fields (*tp, func, data, pset, lh);
11866 break;
11869 /* We didn't find what we were looking for. */
11870 return NULL_TREE;
11872 #undef WALK_SUBTREE_TAIL
11874 #undef WALK_SUBTREE
11876 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11878 tree
11879 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
11880 walk_tree_lh lh)
11882 tree result;
11884 hash_set<tree> pset;
11885 result = walk_tree_1 (tp, func, data, &pset, lh);
11886 return result;
11890 tree
11891 tree_block (tree t)
11893 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11895 if (IS_EXPR_CODE_CLASS (c))
11896 return LOCATION_BLOCK (t->exp.locus);
11897 gcc_unreachable ();
11898 return NULL;
11901 void
11902 tree_set_block (tree t, tree b)
11904 const enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
11906 if (IS_EXPR_CODE_CLASS (c))
11908 t->exp.locus = set_block (t->exp.locus, b);
11910 else
11911 gcc_unreachable ();
11914 /* Create a nameless artificial label and put it in the current
11915 function context. The label has a location of LOC. Returns the
11916 newly created label. */
11918 tree
11919 create_artificial_label (location_t loc)
11921 tree lab = build_decl (loc,
11922 LABEL_DECL, NULL_TREE, void_type_node);
11924 DECL_ARTIFICIAL (lab) = 1;
11925 DECL_IGNORED_P (lab) = 1;
11926 DECL_CONTEXT (lab) = current_function_decl;
11927 return lab;
11930 /* Given a tree, try to return a useful variable name that we can use
11931 to prefix a temporary that is being assigned the value of the tree.
11932 I.E. given <temp> = &A, return A. */
11934 const char *
11935 get_name (tree t)
11937 tree stripped_decl;
11939 stripped_decl = t;
11940 STRIP_NOPS (stripped_decl);
11941 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
11942 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
11943 else if (TREE_CODE (stripped_decl) == SSA_NAME)
11945 tree name = SSA_NAME_IDENTIFIER (stripped_decl);
11946 if (!name)
11947 return NULL;
11948 return IDENTIFIER_POINTER (name);
11950 else
11952 switch (TREE_CODE (stripped_decl))
11954 case ADDR_EXPR:
11955 return get_name (TREE_OPERAND (stripped_decl, 0));
11956 default:
11957 return NULL;
11962 /* Return true if TYPE has a variable argument list. */
11964 bool
11965 stdarg_p (const_tree fntype)
11967 function_args_iterator args_iter;
11968 tree n = NULL_TREE, t;
11970 if (!fntype)
11971 return false;
11973 FOREACH_FUNCTION_ARGS (fntype, t, args_iter)
11975 n = t;
11978 return n != NULL_TREE && n != void_type_node;
11981 /* Return true if TYPE has a prototype. */
11983 bool
11984 prototype_p (const_tree fntype)
11986 tree t;
11988 gcc_assert (fntype != NULL_TREE);
11990 t = TYPE_ARG_TYPES (fntype);
11991 return (t != NULL_TREE);
11994 /* If BLOCK is inlined from an __attribute__((__artificial__))
11995 routine, return pointer to location from where it has been
11996 called. */
11997 location_t *
11998 block_nonartificial_location (tree block)
12000 location_t *ret = NULL;
12002 while (block && TREE_CODE (block) == BLOCK
12003 && BLOCK_ABSTRACT_ORIGIN (block))
12005 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
12007 while (TREE_CODE (ao) == BLOCK
12008 && BLOCK_ABSTRACT_ORIGIN (ao)
12009 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
12010 ao = BLOCK_ABSTRACT_ORIGIN (ao);
12012 if (TREE_CODE (ao) == FUNCTION_DECL)
12014 /* If AO is an artificial inline, point RET to the
12015 call site locus at which it has been inlined and continue
12016 the loop, in case AO's caller is also an artificial
12017 inline. */
12018 if (DECL_DECLARED_INLINE_P (ao)
12019 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
12020 ret = &BLOCK_SOURCE_LOCATION (block);
12021 else
12022 break;
12024 else if (TREE_CODE (ao) != BLOCK)
12025 break;
12027 block = BLOCK_SUPERCONTEXT (block);
12029 return ret;
12033 /* If EXP is inlined from an __attribute__((__artificial__))
12034 function, return the location of the original call expression. */
12036 location_t
12037 tree_nonartificial_location (tree exp)
12039 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
12041 if (loc)
12042 return *loc;
12043 else
12044 return EXPR_LOCATION (exp);
12048 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
12049 nodes. */
12051 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
12053 hashval_t
12054 cl_option_hasher::hash (tree x)
12056 const_tree const t = x;
12057 const char *p;
12058 size_t i;
12059 size_t len = 0;
12060 hashval_t hash = 0;
12062 if (TREE_CODE (t) == OPTIMIZATION_NODE)
12064 p = (const char *)TREE_OPTIMIZATION (t);
12065 len = sizeof (struct cl_optimization);
12068 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
12069 return cl_target_option_hash (TREE_TARGET_OPTION (t));
12071 else
12072 gcc_unreachable ();
12074 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
12075 something else. */
12076 for (i = 0; i < len; i++)
12077 if (p[i])
12078 hash = (hash << 4) ^ ((i << 2) | p[i]);
12080 return hash;
12083 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
12084 TARGET_OPTION tree node) is the same as that given by *Y, which is the
12085 same. */
12087 bool
12088 cl_option_hasher::equal (tree x, tree y)
12090 const_tree const xt = x;
12091 const_tree const yt = y;
12092 const char *xp;
12093 const char *yp;
12094 size_t len;
12096 if (TREE_CODE (xt) != TREE_CODE (yt))
12097 return 0;
12099 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
12101 xp = (const char *)TREE_OPTIMIZATION (xt);
12102 yp = (const char *)TREE_OPTIMIZATION (yt);
12103 len = sizeof (struct cl_optimization);
12106 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
12108 return cl_target_option_eq (TREE_TARGET_OPTION (xt),
12109 TREE_TARGET_OPTION (yt));
12112 else
12113 gcc_unreachable ();
12115 return (memcmp (xp, yp, len) == 0);
12118 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
12120 tree
12121 build_optimization_node (struct gcc_options *opts)
12123 tree t;
12125 /* Use the cache of optimization nodes. */
12127 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
12128 opts);
12130 tree *slot = cl_option_hash_table->find_slot (cl_optimization_node, INSERT);
12131 t = *slot;
12132 if (!t)
12134 /* Insert this one into the hash table. */
12135 t = cl_optimization_node;
12136 *slot = t;
12138 /* Make a new node for next time round. */
12139 cl_optimization_node = make_node (OPTIMIZATION_NODE);
12142 return t;
12145 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
12147 tree
12148 build_target_option_node (struct gcc_options *opts)
12150 tree t;
12152 /* Use the cache of optimization nodes. */
12154 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
12155 opts);
12157 tree *slot = cl_option_hash_table->find_slot (cl_target_option_node, INSERT);
12158 t = *slot;
12159 if (!t)
12161 /* Insert this one into the hash table. */
12162 t = cl_target_option_node;
12163 *slot = t;
12165 /* Make a new node for next time round. */
12166 cl_target_option_node = make_node (TARGET_OPTION_NODE);
12169 return t;
12172 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
12173 so that they aren't saved during PCH writing. */
12175 void
12176 prepare_target_option_nodes_for_pch (void)
12178 hash_table<cl_option_hasher>::iterator iter = cl_option_hash_table->begin ();
12179 for (; iter != cl_option_hash_table->end (); ++iter)
12180 if (TREE_CODE (*iter) == TARGET_OPTION_NODE)
12181 TREE_TARGET_GLOBALS (*iter) = NULL;
12184 /* Determine the "ultimate origin" of a block. The block may be an inlined
12185 instance of an inlined instance of a block which is local to an inline
12186 function, so we have to trace all of the way back through the origin chain
12187 to find out what sort of node actually served as the original seed for the
12188 given block. */
12190 tree
12191 block_ultimate_origin (const_tree block)
12193 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
12195 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
12196 we're trying to output the abstract instance of this function. */
12197 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
12198 return NULL_TREE;
12200 if (immediate_origin == NULL_TREE)
12201 return NULL_TREE;
12202 else
12204 tree ret_val;
12205 tree lookahead = immediate_origin;
12209 ret_val = lookahead;
12210 lookahead = (TREE_CODE (ret_val) == BLOCK
12211 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
12213 while (lookahead != NULL && lookahead != ret_val);
12215 /* The block's abstract origin chain may not be the *ultimate* origin of
12216 the block. It could lead to a DECL that has an abstract origin set.
12217 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
12218 will give us if it has one). Note that DECL's abstract origins are
12219 supposed to be the most distant ancestor (or so decl_ultimate_origin
12220 claims), so we don't need to loop following the DECL origins. */
12221 if (DECL_P (ret_val))
12222 return DECL_ORIGIN (ret_val);
12224 return ret_val;
12228 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
12229 no instruction. */
12231 bool
12232 tree_nop_conversion_p (const_tree outer_type, const_tree inner_type)
12234 /* Do not strip casts into or out of differing address spaces. */
12235 if (POINTER_TYPE_P (outer_type)
12236 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type)) != ADDR_SPACE_GENERIC)
12238 if (!POINTER_TYPE_P (inner_type)
12239 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
12240 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type))))
12241 return false;
12243 else if (POINTER_TYPE_P (inner_type)
12244 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type)) != ADDR_SPACE_GENERIC)
12246 /* We already know that outer_type is not a pointer with
12247 a non-generic address space. */
12248 return false;
12251 /* Use precision rather then machine mode when we can, which gives
12252 the correct answer even for submode (bit-field) types. */
12253 if ((INTEGRAL_TYPE_P (outer_type)
12254 || POINTER_TYPE_P (outer_type)
12255 || TREE_CODE (outer_type) == OFFSET_TYPE)
12256 && (INTEGRAL_TYPE_P (inner_type)
12257 || POINTER_TYPE_P (inner_type)
12258 || TREE_CODE (inner_type) == OFFSET_TYPE))
12259 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
12261 /* Otherwise fall back on comparing machine modes (e.g. for
12262 aggregate types, floats). */
12263 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
12266 /* Return true iff conversion in EXP generates no instruction. Mark
12267 it inline so that we fully inline into the stripping functions even
12268 though we have two uses of this function. */
12270 static inline bool
12271 tree_nop_conversion (const_tree exp)
12273 tree outer_type, inner_type;
12275 if (!CONVERT_EXPR_P (exp)
12276 && TREE_CODE (exp) != NON_LVALUE_EXPR)
12277 return false;
12278 if (TREE_OPERAND (exp, 0) == error_mark_node)
12279 return false;
12281 outer_type = TREE_TYPE (exp);
12282 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12284 if (!inner_type)
12285 return false;
12287 return tree_nop_conversion_p (outer_type, inner_type);
12290 /* Return true iff conversion in EXP generates no instruction. Don't
12291 consider conversions changing the signedness. */
12293 static bool
12294 tree_sign_nop_conversion (const_tree exp)
12296 tree outer_type, inner_type;
12298 if (!tree_nop_conversion (exp))
12299 return false;
12301 outer_type = TREE_TYPE (exp);
12302 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
12304 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
12305 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
12308 /* Strip conversions from EXP according to tree_nop_conversion and
12309 return the resulting expression. */
12311 tree
12312 tree_strip_nop_conversions (tree exp)
12314 while (tree_nop_conversion (exp))
12315 exp = TREE_OPERAND (exp, 0);
12316 return exp;
12319 /* Strip conversions from EXP according to tree_sign_nop_conversion
12320 and return the resulting expression. */
12322 tree
12323 tree_strip_sign_nop_conversions (tree exp)
12325 while (tree_sign_nop_conversion (exp))
12326 exp = TREE_OPERAND (exp, 0);
12327 return exp;
12330 /* Avoid any floating point extensions from EXP. */
12331 tree
12332 strip_float_extensions (tree exp)
12334 tree sub, expt, subt;
12336 /* For floating point constant look up the narrowest type that can hold
12337 it properly and handle it like (type)(narrowest_type)constant.
12338 This way we can optimize for instance a=a*2.0 where "a" is float
12339 but 2.0 is double constant. */
12340 if (TREE_CODE (exp) == REAL_CST && !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp)))
12342 REAL_VALUE_TYPE orig;
12343 tree type = NULL;
12345 orig = TREE_REAL_CST (exp);
12346 if (TYPE_PRECISION (TREE_TYPE (exp)) > TYPE_PRECISION (float_type_node)
12347 && exact_real_truncate (TYPE_MODE (float_type_node), &orig))
12348 type = float_type_node;
12349 else if (TYPE_PRECISION (TREE_TYPE (exp))
12350 > TYPE_PRECISION (double_type_node)
12351 && exact_real_truncate (TYPE_MODE (double_type_node), &orig))
12352 type = double_type_node;
12353 if (type)
12354 return build_real_truncate (type, orig);
12357 if (!CONVERT_EXPR_P (exp))
12358 return exp;
12360 sub = TREE_OPERAND (exp, 0);
12361 subt = TREE_TYPE (sub);
12362 expt = TREE_TYPE (exp);
12364 if (!FLOAT_TYPE_P (subt))
12365 return exp;
12367 if (DECIMAL_FLOAT_TYPE_P (expt) != DECIMAL_FLOAT_TYPE_P (subt))
12368 return exp;
12370 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt))
12371 return exp;
12373 return strip_float_extensions (sub);
12376 /* Strip out all handled components that produce invariant
12377 offsets. */
12379 const_tree
12380 strip_invariant_refs (const_tree op)
12382 while (handled_component_p (op))
12384 switch (TREE_CODE (op))
12386 case ARRAY_REF:
12387 case ARRAY_RANGE_REF:
12388 if (!is_gimple_constant (TREE_OPERAND (op, 1))
12389 || TREE_OPERAND (op, 2) != NULL_TREE
12390 || TREE_OPERAND (op, 3) != NULL_TREE)
12391 return NULL;
12392 break;
12394 case COMPONENT_REF:
12395 if (TREE_OPERAND (op, 2) != NULL_TREE)
12396 return NULL;
12397 break;
12399 default:;
12401 op = TREE_OPERAND (op, 0);
12404 return op;
12407 static GTY(()) tree gcc_eh_personality_decl;
12409 /* Return the GCC personality function decl. */
12411 tree
12412 lhd_gcc_personality (void)
12414 if (!gcc_eh_personality_decl)
12415 gcc_eh_personality_decl = build_personality_function ("gcc");
12416 return gcc_eh_personality_decl;
12419 /* TARGET is a call target of GIMPLE call statement
12420 (obtained by gimple_call_fn). Return true if it is
12421 OBJ_TYPE_REF representing an virtual call of C++ method.
12422 (As opposed to OBJ_TYPE_REF representing objc calls
12423 through a cast where middle-end devirtualization machinery
12424 can't apply.) */
12426 bool
12427 virtual_method_call_p (const_tree target)
12429 if (TREE_CODE (target) != OBJ_TYPE_REF)
12430 return false;
12431 tree t = TREE_TYPE (target);
12432 gcc_checking_assert (TREE_CODE (t) == POINTER_TYPE);
12433 t = TREE_TYPE (t);
12434 if (TREE_CODE (t) == FUNCTION_TYPE)
12435 return false;
12436 gcc_checking_assert (TREE_CODE (t) == METHOD_TYPE);
12437 /* If we do not have BINFO associated, it means that type was built
12438 without devirtualization enabled. Do not consider this a virtual
12439 call. */
12440 if (!TYPE_BINFO (obj_type_ref_class (target)))
12441 return false;
12442 return true;
12445 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12447 tree
12448 obj_type_ref_class (const_tree ref)
12450 gcc_checking_assert (TREE_CODE (ref) == OBJ_TYPE_REF);
12451 ref = TREE_TYPE (ref);
12452 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12453 ref = TREE_TYPE (ref);
12454 /* We look for type THIS points to. ObjC also builds
12455 OBJ_TYPE_REF with non-method calls, Their first parameter
12456 ID however also corresponds to class type. */
12457 gcc_checking_assert (TREE_CODE (ref) == METHOD_TYPE
12458 || TREE_CODE (ref) == FUNCTION_TYPE);
12459 ref = TREE_VALUE (TYPE_ARG_TYPES (ref));
12460 gcc_checking_assert (TREE_CODE (ref) == POINTER_TYPE);
12461 return TREE_TYPE (ref);
12464 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12466 static tree
12467 lookup_binfo_at_offset (tree binfo, tree type, HOST_WIDE_INT pos)
12469 unsigned int i;
12470 tree base_binfo, b;
12472 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12473 if (pos == tree_to_shwi (BINFO_OFFSET (base_binfo))
12474 && types_same_for_odr (TREE_TYPE (base_binfo), type))
12475 return base_binfo;
12476 else if ((b = lookup_binfo_at_offset (base_binfo, type, pos)) != NULL)
12477 return b;
12478 return NULL;
12481 /* Try to find a base info of BINFO that would have its field decl at offset
12482 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12483 found, return, otherwise return NULL_TREE. */
12485 tree
12486 get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
12488 tree type = BINFO_TYPE (binfo);
12490 while (true)
12492 HOST_WIDE_INT pos, size;
12493 tree fld;
12494 int i;
12496 if (types_same_for_odr (type, expected_type))
12497 return binfo;
12498 if (offset < 0)
12499 return NULL_TREE;
12501 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
12503 if (TREE_CODE (fld) != FIELD_DECL || !DECL_ARTIFICIAL (fld))
12504 continue;
12506 pos = int_bit_position (fld);
12507 size = tree_to_uhwi (DECL_SIZE (fld));
12508 if (pos <= offset && (pos + size) > offset)
12509 break;
12511 if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
12512 return NULL_TREE;
12514 /* Offset 0 indicates the primary base, whose vtable contents are
12515 represented in the binfo for the derived class. */
12516 else if (offset != 0)
12518 tree found_binfo = NULL, base_binfo;
12519 /* Offsets in BINFO are in bytes relative to the whole structure
12520 while POS is in bits relative to the containing field. */
12521 int binfo_offset = (tree_to_shwi (BINFO_OFFSET (binfo)) + pos
12522 / BITS_PER_UNIT);
12524 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12525 if (tree_to_shwi (BINFO_OFFSET (base_binfo)) == binfo_offset
12526 && types_same_for_odr (TREE_TYPE (base_binfo), TREE_TYPE (fld)))
12528 found_binfo = base_binfo;
12529 break;
12531 if (found_binfo)
12532 binfo = found_binfo;
12533 else
12534 binfo = lookup_binfo_at_offset (binfo, TREE_TYPE (fld),
12535 binfo_offset);
12538 type = TREE_TYPE (fld);
12539 offset -= pos;
12543 /* Returns true if X is a typedef decl. */
12545 bool
12546 is_typedef_decl (const_tree x)
12548 return (x && TREE_CODE (x) == TYPE_DECL
12549 && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
12552 /* Returns true iff TYPE is a type variant created for a typedef. */
12554 bool
12555 typedef_variant_p (const_tree type)
12557 return is_typedef_decl (TYPE_NAME (type));
12560 /* Warn about a use of an identifier which was marked deprecated. */
12561 void
12562 warn_deprecated_use (tree node, tree attr)
12564 const char *msg;
12566 if (node == 0 || !warn_deprecated_decl)
12567 return;
12569 if (!attr)
12571 if (DECL_P (node))
12572 attr = DECL_ATTRIBUTES (node);
12573 else if (TYPE_P (node))
12575 tree decl = TYPE_STUB_DECL (node);
12576 if (decl)
12577 attr = lookup_attribute ("deprecated",
12578 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
12582 if (attr)
12583 attr = lookup_attribute ("deprecated", attr);
12585 if (attr)
12586 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
12587 else
12588 msg = NULL;
12590 bool w;
12591 if (DECL_P (node))
12593 if (msg)
12594 w = warning (OPT_Wdeprecated_declarations,
12595 "%qD is deprecated: %s", node, msg);
12596 else
12597 w = warning (OPT_Wdeprecated_declarations,
12598 "%qD is deprecated", node);
12599 if (w)
12600 inform (DECL_SOURCE_LOCATION (node), "declared here");
12602 else if (TYPE_P (node))
12604 tree what = NULL_TREE;
12605 tree decl = TYPE_STUB_DECL (node);
12607 if (TYPE_NAME (node))
12609 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
12610 what = TYPE_NAME (node);
12611 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
12612 && DECL_NAME (TYPE_NAME (node)))
12613 what = DECL_NAME (TYPE_NAME (node));
12616 if (decl)
12618 if (what)
12620 if (msg)
12621 w = warning (OPT_Wdeprecated_declarations,
12622 "%qE is deprecated: %s", what, msg);
12623 else
12624 w = warning (OPT_Wdeprecated_declarations,
12625 "%qE is deprecated", what);
12627 else
12629 if (msg)
12630 w = warning (OPT_Wdeprecated_declarations,
12631 "type is deprecated: %s", msg);
12632 else
12633 w = warning (OPT_Wdeprecated_declarations,
12634 "type is deprecated");
12636 if (w)
12637 inform (DECL_SOURCE_LOCATION (decl), "declared here");
12639 else
12641 if (what)
12643 if (msg)
12644 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
12645 what, msg);
12646 else
12647 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
12649 else
12651 if (msg)
12652 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
12653 msg);
12654 else
12655 warning (OPT_Wdeprecated_declarations, "type is deprecated");
12661 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12662 somewhere in it. */
12664 bool
12665 contains_bitfld_component_ref_p (const_tree ref)
12667 while (handled_component_p (ref))
12669 if (TREE_CODE (ref) == COMPONENT_REF
12670 && DECL_BIT_FIELD (TREE_OPERAND (ref, 1)))
12671 return true;
12672 ref = TREE_OPERAND (ref, 0);
12675 return false;
12678 /* Try to determine whether a TRY_CATCH expression can fall through.
12679 This is a subroutine of block_may_fallthru. */
12681 static bool
12682 try_catch_may_fallthru (const_tree stmt)
12684 tree_stmt_iterator i;
12686 /* If the TRY block can fall through, the whole TRY_CATCH can
12687 fall through. */
12688 if (block_may_fallthru (TREE_OPERAND (stmt, 0)))
12689 return true;
12691 i = tsi_start (TREE_OPERAND (stmt, 1));
12692 switch (TREE_CODE (tsi_stmt (i)))
12694 case CATCH_EXPR:
12695 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12696 catch expression and a body. The whole TRY_CATCH may fall
12697 through iff any of the catch bodies falls through. */
12698 for (; !tsi_end_p (i); tsi_next (&i))
12700 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i))))
12701 return true;
12703 return false;
12705 case EH_FILTER_EXPR:
12706 /* The exception filter expression only matters if there is an
12707 exception. If the exception does not match EH_FILTER_TYPES,
12708 we will execute EH_FILTER_FAILURE, and we will fall through
12709 if that falls through. If the exception does match
12710 EH_FILTER_TYPES, the stack unwinder will continue up the
12711 stack, so we will not fall through. We don't know whether we
12712 will throw an exception which matches EH_FILTER_TYPES or not,
12713 so we just ignore EH_FILTER_TYPES and assume that we might
12714 throw an exception which doesn't match. */
12715 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i)));
12717 default:
12718 /* This case represents statements to be executed when an
12719 exception occurs. Those statements are implicitly followed
12720 by a RESX statement to resume execution after the exception.
12721 So in this case the TRY_CATCH never falls through. */
12722 return false;
12726 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12727 need not be 100% accurate; simply be conservative and return true if we
12728 don't know. This is used only to avoid stupidly generating extra code.
12729 If we're wrong, we'll just delete the extra code later. */
12731 bool
12732 block_may_fallthru (const_tree block)
12734 /* This CONST_CAST is okay because expr_last returns its argument
12735 unmodified and we assign it to a const_tree. */
12736 const_tree stmt = expr_last (CONST_CAST_TREE (block));
12738 switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
12740 case GOTO_EXPR:
12741 case RETURN_EXPR:
12742 /* Easy cases. If the last statement of the block implies
12743 control transfer, then we can't fall through. */
12744 return false;
12746 case SWITCH_EXPR:
12747 /* If SWITCH_LABELS is set, this is lowered, and represents a
12748 branch to a selected label and hence can not fall through.
12749 Otherwise SWITCH_BODY is set, and the switch can fall
12750 through. */
12751 return SWITCH_LABELS (stmt) == NULL_TREE;
12753 case COND_EXPR:
12754 if (block_may_fallthru (COND_EXPR_THEN (stmt)))
12755 return true;
12756 return block_may_fallthru (COND_EXPR_ELSE (stmt));
12758 case BIND_EXPR:
12759 return block_may_fallthru (BIND_EXPR_BODY (stmt));
12761 case TRY_CATCH_EXPR:
12762 return try_catch_may_fallthru (stmt);
12764 case TRY_FINALLY_EXPR:
12765 /* The finally clause is always executed after the try clause,
12766 so if it does not fall through, then the try-finally will not
12767 fall through. Otherwise, if the try clause does not fall
12768 through, then when the finally clause falls through it will
12769 resume execution wherever the try clause was going. So the
12770 whole try-finally will only fall through if both the try
12771 clause and the finally clause fall through. */
12772 return (block_may_fallthru (TREE_OPERAND (stmt, 0))
12773 && block_may_fallthru (TREE_OPERAND (stmt, 1)));
12775 case MODIFY_EXPR:
12776 if (TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR)
12777 stmt = TREE_OPERAND (stmt, 1);
12778 else
12779 return true;
12780 /* FALLTHRU */
12782 case CALL_EXPR:
12783 /* Functions that do not return do not fall through. */
12784 return (call_expr_flags (stmt) & ECF_NORETURN) == 0;
12786 case CLEANUP_POINT_EXPR:
12787 return block_may_fallthru (TREE_OPERAND (stmt, 0));
12789 case TARGET_EXPR:
12790 return block_may_fallthru (TREE_OPERAND (stmt, 1));
12792 case ERROR_MARK:
12793 return true;
12795 default:
12796 return lang_hooks.block_may_fallthru (stmt);
12800 /* True if we are using EH to handle cleanups. */
12801 static bool using_eh_for_cleanups_flag = false;
12803 /* This routine is called from front ends to indicate eh should be used for
12804 cleanups. */
12805 void
12806 using_eh_for_cleanups (void)
12808 using_eh_for_cleanups_flag = true;
12811 /* Query whether EH is used for cleanups. */
12812 bool
12813 using_eh_for_cleanups_p (void)
12815 return using_eh_for_cleanups_flag;
12818 /* Wrapper for tree_code_name to ensure that tree code is valid */
12819 const char *
12820 get_tree_code_name (enum tree_code code)
12822 const char *invalid = "<invalid tree code>";
12824 if (code >= MAX_TREE_CODES)
12825 return invalid;
12827 return tree_code_name[code];
12830 /* Drops the TREE_OVERFLOW flag from T. */
12832 tree
12833 drop_tree_overflow (tree t)
12835 gcc_checking_assert (TREE_OVERFLOW (t));
12837 /* For tree codes with a sharing machinery re-build the result. */
12838 if (TREE_CODE (t) == INTEGER_CST)
12839 return wide_int_to_tree (TREE_TYPE (t), t);
12841 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12842 and drop the flag. */
12843 t = copy_node (t);
12844 TREE_OVERFLOW (t) = 0;
12845 return t;
12848 /* Given a memory reference expression T, return its base address.
12849 The base address of a memory reference expression is the main
12850 object being referenced. For instance, the base address for
12851 'array[i].fld[j]' is 'array'. You can think of this as stripping
12852 away the offset part from a memory address.
12854 This function calls handled_component_p to strip away all the inner
12855 parts of the memory reference until it reaches the base object. */
12857 tree
12858 get_base_address (tree t)
12860 while (handled_component_p (t))
12861 t = TREE_OPERAND (t, 0);
12863 if ((TREE_CODE (t) == MEM_REF
12864 || TREE_CODE (t) == TARGET_MEM_REF)
12865 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
12866 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
12868 /* ??? Either the alias oracle or all callers need to properly deal
12869 with WITH_SIZE_EXPRs before we can look through those. */
12870 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12871 return NULL_TREE;
12873 return t;
12876 /* Return a tree of sizetype representing the size, in bytes, of the element
12877 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12879 tree
12880 array_ref_element_size (tree exp)
12882 tree aligned_size = TREE_OPERAND (exp, 3);
12883 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0)));
12884 location_t loc = EXPR_LOCATION (exp);
12886 /* If a size was specified in the ARRAY_REF, it's the size measured
12887 in alignment units of the element type. So multiply by that value. */
12888 if (aligned_size)
12890 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12891 sizetype from another type of the same width and signedness. */
12892 if (TREE_TYPE (aligned_size) != sizetype)
12893 aligned_size = fold_convert_loc (loc, sizetype, aligned_size);
12894 return size_binop_loc (loc, MULT_EXPR, aligned_size,
12895 size_int (TYPE_ALIGN_UNIT (elmt_type)));
12898 /* Otherwise, take the size from that of the element type. Substitute
12899 any PLACEHOLDER_EXPR that we have. */
12900 else
12901 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type), exp);
12904 /* Return a tree representing the lower bound of the array mentioned in
12905 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12907 tree
12908 array_ref_low_bound (tree exp)
12910 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12912 /* If a lower bound is specified in EXP, use it. */
12913 if (TREE_OPERAND (exp, 2))
12914 return TREE_OPERAND (exp, 2);
12916 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12917 substituting for a PLACEHOLDER_EXPR as needed. */
12918 if (domain_type && TYPE_MIN_VALUE (domain_type))
12919 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type), exp);
12921 /* Otherwise, return a zero of the appropriate type. */
12922 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp, 1)), 0);
12925 /* Return a tree representing the upper bound of the array mentioned in
12926 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12928 tree
12929 array_ref_up_bound (tree exp)
12931 tree domain_type = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp, 0)));
12933 /* If there is a domain type and it has an upper bound, use it, substituting
12934 for a PLACEHOLDER_EXPR as needed. */
12935 if (domain_type && TYPE_MAX_VALUE (domain_type))
12936 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type), exp);
12938 /* Otherwise fail. */
12939 return NULL_TREE;
12942 /* Returns true if REF is an array reference to an array at the end of
12943 a structure. If this is the case, the array may be allocated larger
12944 than its upper bound implies. */
12946 bool
12947 array_at_struct_end_p (tree ref)
12949 if (TREE_CODE (ref) != ARRAY_REF
12950 && TREE_CODE (ref) != ARRAY_RANGE_REF)
12951 return false;
12953 while (handled_component_p (ref))
12955 /* If the reference chain contains a component reference to a
12956 non-union type and there follows another field the reference
12957 is not at the end of a structure. */
12958 if (TREE_CODE (ref) == COMPONENT_REF
12959 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0))) == RECORD_TYPE)
12961 tree nextf = DECL_CHAIN (TREE_OPERAND (ref, 1));
12962 while (nextf && TREE_CODE (nextf) != FIELD_DECL)
12963 nextf = DECL_CHAIN (nextf);
12964 if (nextf)
12965 return false;
12968 ref = TREE_OPERAND (ref, 0);
12971 /* If the reference is based on a declared entity, the size of the array
12972 is constrained by its given domain. (Do not trust commons PR/69368). */
12973 if (DECL_P (ref)
12974 && !(flag_unconstrained_commons
12975 && TREE_CODE (ref) == VAR_DECL && DECL_COMMON (ref)))
12976 return false;
12978 return true;
12981 /* Return a tree representing the offset, in bytes, of the field referenced
12982 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12984 tree
12985 component_ref_field_offset (tree exp)
12987 tree aligned_offset = TREE_OPERAND (exp, 2);
12988 tree field = TREE_OPERAND (exp, 1);
12989 location_t loc = EXPR_LOCATION (exp);
12991 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12992 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12993 value. */
12994 if (aligned_offset)
12996 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12997 sizetype from another type of the same width and signedness. */
12998 if (TREE_TYPE (aligned_offset) != sizetype)
12999 aligned_offset = fold_convert_loc (loc, sizetype, aligned_offset);
13000 return size_binop_loc (loc, MULT_EXPR, aligned_offset,
13001 size_int (DECL_OFFSET_ALIGN (field)
13002 / BITS_PER_UNIT));
13005 /* Otherwise, take the offset from that of the field. Substitute
13006 any PLACEHOLDER_EXPR that we have. */
13007 else
13008 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field), exp);
13011 /* Return the machine mode of T. For vectors, returns the mode of the
13012 inner type. The main use case is to feed the result to HONOR_NANS,
13013 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
13015 machine_mode
13016 element_mode (const_tree t)
13018 if (!TYPE_P (t))
13019 t = TREE_TYPE (t);
13020 if (VECTOR_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
13021 t = TREE_TYPE (t);
13022 return TYPE_MODE (t);
13026 /* Veirfy that basic properties of T match TV and thus T can be a variant of
13027 TV. TV should be the more specified variant (i.e. the main variant). */
13029 static bool
13030 verify_type_variant (const_tree t, tree tv)
13032 /* Type variant can differ by:
13034 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
13035 ENCODE_QUAL_ADDR_SPACE.
13036 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
13037 in this case some values may not be set in the variant types
13038 (see TYPE_COMPLETE_P checks).
13039 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
13040 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
13041 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
13042 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
13043 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
13044 this is necessary to make it possible to merge types form different TUs
13045 - arrays, pointers and references may have TREE_TYPE that is a variant
13046 of TREE_TYPE of their main variants.
13047 - aggregates may have new TYPE_FIELDS list that list variants of
13048 the main variant TYPE_FIELDS.
13049 - vector types may differ by TYPE_VECTOR_OPAQUE
13050 - TYPE_METHODS is always NULL for vairant types and maintained for
13051 main variant only.
13054 /* Convenience macro for matching individual fields. */
13055 #define verify_variant_match(flag) \
13056 do { \
13057 if (flag (tv) != flag (t)) \
13059 error ("type variant differs by " #flag "."); \
13060 debug_tree (tv); \
13061 return false; \
13063 } while (false)
13065 /* tree_base checks. */
13067 verify_variant_match (TREE_CODE);
13068 /* FIXME: Ada builds non-artificial variants of artificial types. */
13069 if (TYPE_ARTIFICIAL (tv) && 0)
13070 verify_variant_match (TYPE_ARTIFICIAL);
13071 if (POINTER_TYPE_P (tv))
13072 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL);
13073 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
13074 verify_variant_match (TYPE_UNSIGNED);
13075 verify_variant_match (TYPE_ALIGN_OK);
13076 verify_variant_match (TYPE_PACKED);
13077 if (TREE_CODE (t) == REFERENCE_TYPE)
13078 verify_variant_match (TYPE_REF_IS_RVALUE);
13079 if (AGGREGATE_TYPE_P (t))
13080 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER);
13081 else
13082 verify_variant_match (TYPE_SATURATING);
13083 /* FIXME: This check trigger during libstdc++ build. */
13084 if (RECORD_OR_UNION_TYPE_P (t) && COMPLETE_TYPE_P (t) && 0)
13085 verify_variant_match (TYPE_FINAL_P);
13087 /* tree_type_common checks. */
13089 if (COMPLETE_TYPE_P (t))
13091 verify_variant_match (TYPE_SIZE);
13092 verify_variant_match (TYPE_MODE);
13093 if (TYPE_SIZE_UNIT (t) != TYPE_SIZE_UNIT (tv)
13094 /* FIXME: ideally we should compare pointer equality, but java FE
13095 produce variants where size is INTEGER_CST of different type (int
13096 wrt size_type) during libjava biuld. */
13097 && !operand_equal_p (TYPE_SIZE_UNIT (t), TYPE_SIZE_UNIT (tv), 0))
13099 error ("type variant has different TYPE_SIZE_UNIT");
13100 debug_tree (tv);
13101 error ("type variant's TYPE_SIZE_UNIT");
13102 debug_tree (TYPE_SIZE_UNIT (tv));
13103 error ("type's TYPE_SIZE_UNIT");
13104 debug_tree (TYPE_SIZE_UNIT (t));
13105 return false;
13108 verify_variant_match (TYPE_PRECISION);
13109 verify_variant_match (TYPE_NEEDS_CONSTRUCTING);
13110 if (RECORD_OR_UNION_TYPE_P (t))
13111 verify_variant_match (TYPE_TRANSPARENT_AGGR);
13112 else if (TREE_CODE (t) == ARRAY_TYPE)
13113 verify_variant_match (TYPE_NONALIASED_COMPONENT);
13114 /* During LTO we merge variant lists from diferent translation units
13115 that may differ BY TYPE_CONTEXT that in turn may point
13116 to TRANSLATION_UNIT_DECL.
13117 Ada also builds variants of types with different TYPE_CONTEXT. */
13118 if ((!in_lto_p || !TYPE_FILE_SCOPE_P (t)) && 0)
13119 verify_variant_match (TYPE_CONTEXT);
13120 verify_variant_match (TYPE_STRING_FLAG);
13121 if (TYPE_ALIAS_SET_KNOWN_P (t))
13123 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
13124 debug_tree (tv);
13125 return false;
13128 /* tree_type_non_common checks. */
13130 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13131 and dangle the pointer from time to time. */
13132 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_VFIELD (t) != TYPE_VFIELD (tv)
13133 && (in_lto_p || !TYPE_VFIELD (tv)
13134 || TREE_CODE (TYPE_VFIELD (tv)) != TREE_LIST))
13136 error ("type variant has different TYPE_VFIELD");
13137 debug_tree (tv);
13138 return false;
13140 if ((TREE_CODE (t) == ENUMERAL_TYPE && COMPLETE_TYPE_P (t))
13141 || TREE_CODE (t) == INTEGER_TYPE
13142 || TREE_CODE (t) == BOOLEAN_TYPE
13143 || TREE_CODE (t) == REAL_TYPE
13144 || TREE_CODE (t) == FIXED_POINT_TYPE)
13146 verify_variant_match (TYPE_MAX_VALUE);
13147 verify_variant_match (TYPE_MIN_VALUE);
13149 if (TREE_CODE (t) == METHOD_TYPE)
13150 verify_variant_match (TYPE_METHOD_BASETYPE);
13151 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_METHODS (t))
13153 error ("type variant has TYPE_METHODS");
13154 debug_tree (tv);
13155 return false;
13157 if (TREE_CODE (t) == OFFSET_TYPE)
13158 verify_variant_match (TYPE_OFFSET_BASETYPE);
13159 if (TREE_CODE (t) == ARRAY_TYPE)
13160 verify_variant_match (TYPE_ARRAY_MAX_SIZE);
13161 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
13162 or even type's main variant. This is needed to make bootstrap pass
13163 and the bug seems new in GCC 5.
13164 C++ FE should be updated to make this consistent and we should check
13165 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
13166 is a match with main variant.
13168 Also disable the check for Java for now because of parser hack that builds
13169 first an dummy BINFO and then sometimes replace it by real BINFO in some
13170 of the copies. */
13171 if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t) && TYPE_BINFO (tv)
13172 && TYPE_BINFO (t) != TYPE_BINFO (tv)
13173 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
13174 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
13175 at LTO time only. */
13176 && (in_lto_p && odr_type_p (t)))
13178 error ("type variant has different TYPE_BINFO");
13179 debug_tree (tv);
13180 error ("type variant's TYPE_BINFO");
13181 debug_tree (TYPE_BINFO (tv));
13182 error ("type's TYPE_BINFO");
13183 debug_tree (TYPE_BINFO (t));
13184 return false;
13187 /* Check various uses of TYPE_VALUES_RAW. */
13188 if (TREE_CODE (t) == ENUMERAL_TYPE)
13189 verify_variant_match (TYPE_VALUES);
13190 else if (TREE_CODE (t) == ARRAY_TYPE)
13191 verify_variant_match (TYPE_DOMAIN);
13192 /* Permit incomplete variants of complete type. While FEs may complete
13193 all variants, this does not happen for C++ templates in all cases. */
13194 else if (RECORD_OR_UNION_TYPE_P (t)
13195 && COMPLETE_TYPE_P (t)
13196 && TYPE_FIELDS (t) != TYPE_FIELDS (tv))
13198 tree f1, f2;
13200 /* Fortran builds qualified variants as new records with items of
13201 qualified type. Verify that they looks same. */
13202 for (f1 = TYPE_FIELDS (t), f2 = TYPE_FIELDS (tv);
13203 f1 && f2;
13204 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13205 if (TREE_CODE (f1) != FIELD_DECL || TREE_CODE (f2) != FIELD_DECL
13206 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1))
13207 != TYPE_MAIN_VARIANT (TREE_TYPE (f2))
13208 /* FIXME: gfc_nonrestricted_type builds all types as variants
13209 with exception of pointer types. It deeply copies the type
13210 which means that we may end up with a variant type
13211 referring non-variant pointer. We may change it to
13212 produce types as variants, too, like
13213 objc_get_protocol_qualified_type does. */
13214 && !POINTER_TYPE_P (TREE_TYPE (f1)))
13215 || DECL_FIELD_OFFSET (f1) != DECL_FIELD_OFFSET (f2)
13216 || DECL_FIELD_BIT_OFFSET (f1) != DECL_FIELD_BIT_OFFSET (f2))
13217 break;
13218 if (f1 || f2)
13220 error ("type variant has different TYPE_FIELDS");
13221 debug_tree (tv);
13222 error ("first mismatch is field");
13223 debug_tree (f1);
13224 error ("and field");
13225 debug_tree (f2);
13226 return false;
13229 else if ((TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE))
13230 verify_variant_match (TYPE_ARG_TYPES);
13231 /* For C++ the qualified variant of array type is really an array type
13232 of qualified TREE_TYPE.
13233 objc builds variants of pointer where pointer to type is a variant, too
13234 in objc_get_protocol_qualified_type. */
13235 if (TREE_TYPE (t) != TREE_TYPE (tv)
13236 && ((TREE_CODE (t) != ARRAY_TYPE
13237 && !POINTER_TYPE_P (t))
13238 || TYPE_MAIN_VARIANT (TREE_TYPE (t))
13239 != TYPE_MAIN_VARIANT (TREE_TYPE (tv))))
13241 error ("type variant has different TREE_TYPE");
13242 debug_tree (tv);
13243 error ("type variant's TREE_TYPE");
13244 debug_tree (TREE_TYPE (tv));
13245 error ("type's TREE_TYPE");
13246 debug_tree (TREE_TYPE (t));
13247 return false;
13249 if (type_with_alias_set_p (t)
13250 && !gimple_canonical_types_compatible_p (t, tv, false))
13252 error ("type is not compatible with its vairant");
13253 debug_tree (tv);
13254 error ("type variant's TREE_TYPE");
13255 debug_tree (TREE_TYPE (tv));
13256 error ("type's TREE_TYPE");
13257 debug_tree (TREE_TYPE (t));
13258 return false;
13260 return true;
13261 #undef verify_variant_match
13265 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13266 the middle-end types_compatible_p function. It needs to avoid
13267 claiming types are different for types that should be treated
13268 the same with respect to TBAA. Canonical types are also used
13269 for IL consistency checks via the useless_type_conversion_p
13270 predicate which does not handle all type kinds itself but falls
13271 back to pointer-comparison of TYPE_CANONICAL for aggregates
13272 for example. */
13274 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13275 type calculation because we need to allow inter-operability between signed
13276 and unsigned variants. */
13278 bool
13279 type_with_interoperable_signedness (const_tree type)
13281 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13282 signed char and unsigned char. Similarly fortran FE builds
13283 C_SIZE_T as signed type, while C defines it unsigned. */
13285 return tree_code_for_canonical_type_merging (TREE_CODE (type))
13286 == INTEGER_TYPE
13287 && (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node)
13288 || TYPE_PRECISION (type) == TYPE_PRECISION (size_type_node));
13291 /* Return true iff T1 and T2 are structurally identical for what
13292 TBAA is concerned.
13293 This function is used both by lto.c canonical type merging and by the
13294 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13295 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13296 only for LTO because only in these cases TYPE_CANONICAL equivalence
13297 correspond to one defined by gimple_canonical_types_compatible_p. */
13299 bool
13300 gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
13301 bool trust_type_canonical)
13303 /* Type variants should be same as the main variant. When not doing sanity
13304 checking to verify this fact, go to main variants and save some work. */
13305 if (trust_type_canonical)
13307 t1 = TYPE_MAIN_VARIANT (t1);
13308 t2 = TYPE_MAIN_VARIANT (t2);
13311 /* Check first for the obvious case of pointer identity. */
13312 if (t1 == t2)
13313 return true;
13315 /* Check that we have two types to compare. */
13316 if (t1 == NULL_TREE || t2 == NULL_TREE)
13317 return false;
13319 /* We consider complete types always compatible with incomplete type.
13320 This does not make sense for canonical type calculation and thus we
13321 need to ensure that we are never called on it.
13323 FIXME: For more correctness the function probably should have three modes
13324 1) mode assuming that types are complete mathcing their structure
13325 2) mode allowing incomplete types but producing equivalence classes
13326 and thus ignoring all info from complete types
13327 3) mode allowing incomplete types to match complete but checking
13328 compatibility between complete types.
13330 1 and 2 can be used for canonical type calculation. 3 is the real
13331 definition of type compatibility that can be used i.e. for warnings during
13332 declaration merging. */
13334 gcc_assert (!trust_type_canonical
13335 || (type_with_alias_set_p (t1) && type_with_alias_set_p (t2)));
13336 /* If the types have been previously registered and found equal
13337 they still are. */
13339 if (TYPE_CANONICAL (t1) && TYPE_CANONICAL (t2)
13340 && trust_type_canonical)
13342 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13343 they are always NULL, but they are set to non-NULL for types
13344 constructed by build_pointer_type and variants. In this case the
13345 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13346 all pointers are considered equal. Be sure to not return false
13347 negatives. */
13348 gcc_checking_assert (canonical_type_used_p (t1)
13349 && canonical_type_used_p (t2));
13350 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
13353 /* Can't be the same type if the types don't have the same code. */
13354 enum tree_code code = tree_code_for_canonical_type_merging (TREE_CODE (t1));
13355 if (code != tree_code_for_canonical_type_merging (TREE_CODE (t2)))
13356 return false;
13358 /* Qualifiers do not matter for canonical type comparison purposes. */
13360 /* Void types and nullptr types are always the same. */
13361 if (TREE_CODE (t1) == VOID_TYPE
13362 || TREE_CODE (t1) == NULLPTR_TYPE)
13363 return true;
13365 /* Can't be the same type if they have different mode. */
13366 if (TYPE_MODE (t1) != TYPE_MODE (t2))
13367 return false;
13369 /* Non-aggregate types can be handled cheaply. */
13370 if (INTEGRAL_TYPE_P (t1)
13371 || SCALAR_FLOAT_TYPE_P (t1)
13372 || FIXED_POINT_TYPE_P (t1)
13373 || TREE_CODE (t1) == VECTOR_TYPE
13374 || TREE_CODE (t1) == COMPLEX_TYPE
13375 || TREE_CODE (t1) == OFFSET_TYPE
13376 || POINTER_TYPE_P (t1))
13378 /* Can't be the same type if they have different recision. */
13379 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
13380 return false;
13382 /* In some cases the signed and unsigned types are required to be
13383 inter-operable. */
13384 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2)
13385 && !type_with_interoperable_signedness (t1))
13386 return false;
13388 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13389 interoperable with "signed char". Unless all frontends are revisited
13390 to agree on these types, we must ignore the flag completely. */
13392 /* Fortran standard define C_PTR type that is compatible with every
13393 C pointer. For this reason we need to glob all pointers into one.
13394 Still pointers in different address spaces are not compatible. */
13395 if (POINTER_TYPE_P (t1))
13397 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
13398 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
13399 return false;
13402 /* Tail-recurse to components. */
13403 if (TREE_CODE (t1) == VECTOR_TYPE
13404 || TREE_CODE (t1) == COMPLEX_TYPE)
13405 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
13406 TREE_TYPE (t2),
13407 trust_type_canonical);
13409 return true;
13412 /* Do type-specific comparisons. */
13413 switch (TREE_CODE (t1))
13415 case ARRAY_TYPE:
13416 /* Array types are the same if the element types are the same and
13417 the number of elements are the same. */
13418 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13419 trust_type_canonical)
13420 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
13421 || TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2)
13422 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
13423 return false;
13424 else
13426 tree i1 = TYPE_DOMAIN (t1);
13427 tree i2 = TYPE_DOMAIN (t2);
13429 /* For an incomplete external array, the type domain can be
13430 NULL_TREE. Check this condition also. */
13431 if (i1 == NULL_TREE && i2 == NULL_TREE)
13432 return true;
13433 else if (i1 == NULL_TREE || i2 == NULL_TREE)
13434 return false;
13435 else
13437 tree min1 = TYPE_MIN_VALUE (i1);
13438 tree min2 = TYPE_MIN_VALUE (i2);
13439 tree max1 = TYPE_MAX_VALUE (i1);
13440 tree max2 = TYPE_MAX_VALUE (i2);
13442 /* The minimum/maximum values have to be the same. */
13443 if ((min1 == min2
13444 || (min1 && min2
13445 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
13446 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
13447 || operand_equal_p (min1, min2, 0))))
13448 && (max1 == max2
13449 || (max1 && max2
13450 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
13451 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
13452 || operand_equal_p (max1, max2, 0)))))
13453 return true;
13454 else
13455 return false;
13459 case METHOD_TYPE:
13460 case FUNCTION_TYPE:
13461 /* Function types are the same if the return type and arguments types
13462 are the same. */
13463 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2),
13464 trust_type_canonical))
13465 return false;
13467 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
13468 return true;
13469 else
13471 tree parms1, parms2;
13473 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
13474 parms1 && parms2;
13475 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
13477 if (!gimple_canonical_types_compatible_p
13478 (TREE_VALUE (parms1), TREE_VALUE (parms2),
13479 trust_type_canonical))
13480 return false;
13483 if (parms1 || parms2)
13484 return false;
13486 return true;
13489 case RECORD_TYPE:
13490 case UNION_TYPE:
13491 case QUAL_UNION_TYPE:
13493 tree f1, f2;
13495 /* Don't try to compare variants of an incomplete type, before
13496 TYPE_FIELDS has been copied around. */
13497 if (!COMPLETE_TYPE_P (t1) && !COMPLETE_TYPE_P (t2))
13498 return true;
13501 if (TYPE_REVERSE_STORAGE_ORDER (t1) != TYPE_REVERSE_STORAGE_ORDER (t2))
13502 return false;
13504 /* For aggregate types, all the fields must be the same. */
13505 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
13506 f1 || f2;
13507 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
13509 /* Skip non-fields and zero-sized fields. */
13510 while (f1 && (TREE_CODE (f1) != FIELD_DECL
13511 || (DECL_SIZE (f1)
13512 && integer_zerop (DECL_SIZE (f1)))))
13513 f1 = TREE_CHAIN (f1);
13514 while (f2 && (TREE_CODE (f2) != FIELD_DECL
13515 || (DECL_SIZE (f2)
13516 && integer_zerop (DECL_SIZE (f2)))))
13517 f2 = TREE_CHAIN (f2);
13518 if (!f1 || !f2)
13519 break;
13520 /* The fields must have the same name, offset and type. */
13521 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
13522 || !gimple_compare_field_offset (f1, f2)
13523 || !gimple_canonical_types_compatible_p
13524 (TREE_TYPE (f1), TREE_TYPE (f2),
13525 trust_type_canonical))
13526 return false;
13529 /* If one aggregate has more fields than the other, they
13530 are not the same. */
13531 if (f1 || f2)
13532 return false;
13534 return true;
13537 default:
13538 /* Consider all types with language specific trees in them mutually
13539 compatible. This is executed only from verify_type and false
13540 positives can be tolerated. */
13541 gcc_assert (!in_lto_p);
13542 return true;
13546 /* Verify type T. */
13548 void
13549 verify_type (const_tree t)
13551 bool error_found = false;
13552 tree mv = TYPE_MAIN_VARIANT (t);
13553 if (!mv)
13555 error ("Main variant is not defined");
13556 error_found = true;
13558 else if (mv != TYPE_MAIN_VARIANT (mv))
13560 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13561 debug_tree (mv);
13562 error_found = true;
13564 else if (t != mv && !verify_type_variant (t, mv))
13565 error_found = true;
13567 tree ct = TYPE_CANONICAL (t);
13568 if (!ct)
13570 else if (TYPE_CANONICAL (t) != ct)
13572 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13573 debug_tree (ct);
13574 error_found = true;
13576 /* Method and function types can not be used to address memory and thus
13577 TYPE_CANONICAL really matters only for determining useless conversions.
13579 FIXME: C++ FE produce declarations of builtin functions that are not
13580 compatible with main variants. */
13581 else if (TREE_CODE (t) == FUNCTION_TYPE)
13583 else if (t != ct
13584 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13585 with variably sized arrays because their sizes possibly
13586 gimplified to different variables. */
13587 && !variably_modified_type_p (ct, NULL)
13588 && !gimple_canonical_types_compatible_p (t, ct, false))
13590 error ("TYPE_CANONICAL is not compatible");
13591 debug_tree (ct);
13592 error_found = true;
13595 if (COMPLETE_TYPE_P (t) && TYPE_CANONICAL (t)
13596 && TYPE_MODE (t) != TYPE_MODE (TYPE_CANONICAL (t)))
13598 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13599 debug_tree (ct);
13600 error_found = true;
13602 /* FIXME: this is violated by the C++ FE as discussed in PR70029, when
13603 FUNCTION_*_QUALIFIED flags are set. */
13604 if (0 && TYPE_MAIN_VARIANT (t) == t && ct && TYPE_MAIN_VARIANT (ct) != ct)
13606 error ("TYPE_CANONICAL of main variant is not main variant");
13607 debug_tree (ct);
13608 debug_tree (TYPE_MAIN_VARIANT (ct));
13609 error_found = true;
13613 /* Check various uses of TYPE_MINVAL. */
13614 if (RECORD_OR_UNION_TYPE_P (t))
13616 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13617 and danagle the pointer from time to time. */
13618 if (TYPE_VFIELD (t)
13619 && TREE_CODE (TYPE_VFIELD (t)) != FIELD_DECL
13620 && TREE_CODE (TYPE_VFIELD (t)) != TREE_LIST)
13622 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13623 debug_tree (TYPE_VFIELD (t));
13624 error_found = true;
13627 else if (TREE_CODE (t) == POINTER_TYPE)
13629 if (TYPE_NEXT_PTR_TO (t)
13630 && TREE_CODE (TYPE_NEXT_PTR_TO (t)) != POINTER_TYPE)
13632 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13633 debug_tree (TYPE_NEXT_PTR_TO (t));
13634 error_found = true;
13637 else if (TREE_CODE (t) == REFERENCE_TYPE)
13639 if (TYPE_NEXT_REF_TO (t)
13640 && TREE_CODE (TYPE_NEXT_REF_TO (t)) != REFERENCE_TYPE)
13642 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13643 debug_tree (TYPE_NEXT_REF_TO (t));
13644 error_found = true;
13647 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13648 || TREE_CODE (t) == FIXED_POINT_TYPE)
13650 /* FIXME: The following check should pass:
13651 useless_type_conversion_p (const_cast <tree> (t),
13652 TREE_TYPE (TYPE_MIN_VALUE (t))
13653 but does not for C sizetypes in LTO. */
13655 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
13656 else if (TYPE_MINVAL (t)
13657 && ((TREE_CODE (t) != METHOD_TYPE && TREE_CODE (t) != FUNCTION_TYPE)
13658 || in_lto_p))
13660 error ("TYPE_MINVAL non-NULL");
13661 debug_tree (TYPE_MINVAL (t));
13662 error_found = true;
13665 /* Check various uses of TYPE_MAXVAL. */
13666 if (RECORD_OR_UNION_TYPE_P (t))
13668 if (TYPE_METHODS (t) && TREE_CODE (TYPE_METHODS (t)) != FUNCTION_DECL
13669 && TREE_CODE (TYPE_METHODS (t)) != TEMPLATE_DECL
13670 && TYPE_METHODS (t) != error_mark_node)
13672 error ("TYPE_METHODS is not FUNCTION_DECL, TEMPLATE_DECL nor error_mark_node");
13673 debug_tree (TYPE_METHODS (t));
13674 error_found = true;
13677 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13679 if (TYPE_METHOD_BASETYPE (t)
13680 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != RECORD_TYPE
13681 && TREE_CODE (TYPE_METHOD_BASETYPE (t)) != UNION_TYPE)
13683 error ("TYPE_METHOD_BASETYPE is not record nor union");
13684 debug_tree (TYPE_METHOD_BASETYPE (t));
13685 error_found = true;
13688 else if (TREE_CODE (t) == OFFSET_TYPE)
13690 if (TYPE_OFFSET_BASETYPE (t)
13691 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != RECORD_TYPE
13692 && TREE_CODE (TYPE_OFFSET_BASETYPE (t)) != UNION_TYPE)
13694 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13695 debug_tree (TYPE_OFFSET_BASETYPE (t));
13696 error_found = true;
13699 else if (INTEGRAL_TYPE_P (t) || TREE_CODE (t) == REAL_TYPE
13700 || TREE_CODE (t) == FIXED_POINT_TYPE)
13702 /* FIXME: The following check should pass:
13703 useless_type_conversion_p (const_cast <tree> (t),
13704 TREE_TYPE (TYPE_MAX_VALUE (t))
13705 but does not for C sizetypes in LTO. */
13707 else if (TREE_CODE (t) == ARRAY_TYPE)
13709 if (TYPE_ARRAY_MAX_SIZE (t)
13710 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t)) != INTEGER_CST)
13712 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13713 debug_tree (TYPE_ARRAY_MAX_SIZE (t));
13714 error_found = true;
13717 else if (TYPE_MAXVAL (t))
13719 error ("TYPE_MAXVAL non-NULL");
13720 debug_tree (TYPE_MAXVAL (t));
13721 error_found = true;
13724 /* Check various uses of TYPE_BINFO. */
13725 if (RECORD_OR_UNION_TYPE_P (t))
13727 if (!TYPE_BINFO (t))
13729 else if (TREE_CODE (TYPE_BINFO (t)) != TREE_BINFO)
13731 error ("TYPE_BINFO is not TREE_BINFO");
13732 debug_tree (TYPE_BINFO (t));
13733 error_found = true;
13735 /* FIXME: Java builds invalid empty binfos that do not have
13736 TREE_TYPE set. */
13737 else if (TREE_TYPE (TYPE_BINFO (t)) != TYPE_MAIN_VARIANT (t) && 0)
13739 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13740 debug_tree (TREE_TYPE (TYPE_BINFO (t)));
13741 error_found = true;
13744 else if (TYPE_LANG_SLOT_1 (t) && in_lto_p)
13746 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13747 debug_tree (TYPE_LANG_SLOT_1 (t));
13748 error_found = true;
13751 /* Check various uses of TYPE_VALUES_RAW. */
13752 if (TREE_CODE (t) == ENUMERAL_TYPE)
13753 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l))
13755 tree value = TREE_VALUE (l);
13756 tree name = TREE_PURPOSE (l);
13758 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13759 CONST_DECL of ENUMERAL TYPE. */
13760 if (TREE_CODE (value) != INTEGER_CST && TREE_CODE (value) != CONST_DECL)
13762 error ("Enum value is not CONST_DECL or INTEGER_CST");
13763 debug_tree (value);
13764 debug_tree (name);
13765 error_found = true;
13767 if (TREE_CODE (TREE_TYPE (value)) != INTEGER_TYPE
13768 && !useless_type_conversion_p (const_cast <tree> (t), TREE_TYPE (value)))
13770 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13771 debug_tree (value);
13772 debug_tree (name);
13773 error_found = true;
13775 if (TREE_CODE (name) != IDENTIFIER_NODE)
13777 error ("Enum value name is not IDENTIFIER_NODE");
13778 debug_tree (value);
13779 debug_tree (name);
13780 error_found = true;
13783 else if (TREE_CODE (t) == ARRAY_TYPE)
13785 if (TYPE_DOMAIN (t) && TREE_CODE (TYPE_DOMAIN (t)) != INTEGER_TYPE)
13787 error ("Array TYPE_DOMAIN is not integer type");
13788 debug_tree (TYPE_DOMAIN (t));
13789 error_found = true;
13792 else if (RECORD_OR_UNION_TYPE_P (t))
13794 if (TYPE_FIELDS (t) && !COMPLETE_TYPE_P (t) && in_lto_p)
13796 error ("TYPE_FIELDS defined in incomplete type");
13797 error_found = true;
13799 for (tree fld = TYPE_FIELDS (t); fld; fld = TREE_CHAIN (fld))
13801 /* TODO: verify properties of decls. */
13802 if (TREE_CODE (fld) == FIELD_DECL)
13804 else if (TREE_CODE (fld) == TYPE_DECL)
13806 else if (TREE_CODE (fld) == CONST_DECL)
13808 else if (TREE_CODE (fld) == VAR_DECL)
13810 else if (TREE_CODE (fld) == TEMPLATE_DECL)
13812 else if (TREE_CODE (fld) == USING_DECL)
13814 else
13816 error ("Wrong tree in TYPE_FIELDS list");
13817 debug_tree (fld);
13818 error_found = true;
13822 else if (TREE_CODE (t) == INTEGER_TYPE
13823 || TREE_CODE (t) == BOOLEAN_TYPE
13824 || TREE_CODE (t) == OFFSET_TYPE
13825 || TREE_CODE (t) == REFERENCE_TYPE
13826 || TREE_CODE (t) == NULLPTR_TYPE
13827 || TREE_CODE (t) == POINTER_TYPE)
13829 if (TYPE_CACHED_VALUES_P (t) != (TYPE_CACHED_VALUES (t) != NULL))
13831 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13832 TYPE_CACHED_VALUES_P (t), (void *)TYPE_CACHED_VALUES (t));
13833 error_found = true;
13835 else if (TYPE_CACHED_VALUES_P (t) && TREE_CODE (TYPE_CACHED_VALUES (t)) != TREE_VEC)
13837 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13838 debug_tree (TYPE_CACHED_VALUES (t));
13839 error_found = true;
13841 /* Verify just enough of cache to ensure that no one copied it to new type.
13842 All copying should go by copy_node that should clear it. */
13843 else if (TYPE_CACHED_VALUES_P (t))
13845 int i;
13846 for (i = 0; i < TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t)); i++)
13847 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)
13848 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i)) != t)
13850 error ("wrong TYPE_CACHED_VALUES entry");
13851 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t), i));
13852 error_found = true;
13853 break;
13857 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
13858 for (tree l = TYPE_ARG_TYPES (t); l; l = TREE_CHAIN (l))
13860 /* C++ FE uses TREE_PURPOSE to store initial values. */
13861 if (TREE_PURPOSE (l) && in_lto_p)
13863 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13864 debug_tree (l);
13865 error_found = true;
13867 if (!TYPE_P (TREE_VALUE (l)))
13869 error ("Wrong entry in TYPE_ARG_TYPES list");
13870 debug_tree (l);
13871 error_found = true;
13874 else if (!is_lang_specific (t) && TYPE_VALUES_RAW (t))
13876 error ("TYPE_VALUES_RAW field is non-NULL");
13877 debug_tree (TYPE_VALUES_RAW (t));
13878 error_found = true;
13880 if (TREE_CODE (t) != INTEGER_TYPE
13881 && TREE_CODE (t) != BOOLEAN_TYPE
13882 && TREE_CODE (t) != OFFSET_TYPE
13883 && TREE_CODE (t) != REFERENCE_TYPE
13884 && TREE_CODE (t) != NULLPTR_TYPE
13885 && TREE_CODE (t) != POINTER_TYPE
13886 && TYPE_CACHED_VALUES_P (t))
13888 error ("TYPE_CACHED_VALUES_P is set while it should not");
13889 error_found = true;
13891 if (TYPE_STRING_FLAG (t)
13892 && TREE_CODE (t) != ARRAY_TYPE && TREE_CODE (t) != INTEGER_TYPE)
13894 error ("TYPE_STRING_FLAG is set on wrong type code");
13895 error_found = true;
13897 else if (TYPE_STRING_FLAG (t))
13899 const_tree b = t;
13900 if (TREE_CODE (b) == ARRAY_TYPE)
13901 b = TREE_TYPE (t);
13902 /* Java builds arrays with TYPE_STRING_FLAG of promoted_char_type
13903 that is 32bits. */
13904 if (TREE_CODE (b) != INTEGER_TYPE)
13906 error ("TYPE_STRING_FLAG is set on type that does not look like "
13907 "char nor array of chars");
13908 error_found = true;
13912 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13913 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13914 of a type. */
13915 if (TREE_CODE (t) == METHOD_TYPE
13916 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t)) != TYPE_METHOD_BASETYPE (t))
13918 error ("TYPE_METHOD_BASETYPE is not main variant");
13919 error_found = true;
13922 if (error_found)
13924 debug_tree (const_cast <tree> (t));
13925 internal_error ("verify_type failed");
13930 /* Return true if ARG is marked with the nonnull attribute in the
13931 current function signature. */
13933 bool
13934 nonnull_arg_p (const_tree arg)
13936 tree t, attrs, fntype;
13937 unsigned HOST_WIDE_INT arg_num;
13939 gcc_assert (TREE_CODE (arg) == PARM_DECL
13940 && (POINTER_TYPE_P (TREE_TYPE (arg))
13941 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE));
13943 /* The static chain decl is always non null. */
13944 if (arg == cfun->static_chain_decl)
13945 return true;
13947 /* THIS argument of method is always non-NULL. */
13948 if (TREE_CODE (TREE_TYPE (cfun->decl)) == METHOD_TYPE
13949 && arg == DECL_ARGUMENTS (cfun->decl)
13950 && flag_delete_null_pointer_checks)
13951 return true;
13953 /* Values passed by reference are always non-NULL. */
13954 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE
13955 && flag_delete_null_pointer_checks)
13956 return true;
13958 fntype = TREE_TYPE (cfun->decl);
13959 for (attrs = TYPE_ATTRIBUTES (fntype); attrs; attrs = TREE_CHAIN (attrs))
13961 attrs = lookup_attribute ("nonnull", attrs);
13963 /* If "nonnull" wasn't specified, we know nothing about the argument. */
13964 if (attrs == NULL_TREE)
13965 return false;
13967 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
13968 if (TREE_VALUE (attrs) == NULL_TREE)
13969 return true;
13971 /* Get the position number for ARG in the function signature. */
13972 for (arg_num = 1, t = DECL_ARGUMENTS (cfun->decl);
13974 t = DECL_CHAIN (t), arg_num++)
13976 if (t == arg)
13977 break;
13980 gcc_assert (t == arg);
13982 /* Now see if ARG_NUM is mentioned in the nonnull list. */
13983 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
13985 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
13986 return true;
13990 return false;
13993 /* Given location LOC, strip away any packed range information
13994 or ad-hoc information. */
13996 location_t
13997 get_pure_location (location_t loc)
13999 if (IS_ADHOC_LOC (loc))
14001 = line_table->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
14003 if (loc >= LINEMAPS_MACRO_LOWEST_LOCATION (line_table))
14004 return loc;
14006 if (loc < RESERVED_LOCATION_COUNT)
14007 return loc;
14009 const line_map *map = linemap_lookup (line_table, loc);
14010 const line_map_ordinary *ordmap = linemap_check_ordinary (map);
14012 return loc & ~((1 << ordmap->m_range_bits) - 1);
14015 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
14016 information. */
14018 location_t
14019 set_block (location_t loc, tree block)
14021 location_t pure_loc = get_pure_location (loc);
14022 source_range src_range = get_range_from_loc (line_table, loc);
14023 return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block);
14026 location_t
14027 set_source_range (tree expr, location_t start, location_t finish)
14029 source_range src_range;
14030 src_range.m_start = start;
14031 src_range.m_finish = finish;
14032 return set_source_range (expr, src_range);
14035 location_t
14036 set_source_range (tree expr, source_range src_range)
14038 if (!EXPR_P (expr))
14039 return UNKNOWN_LOCATION;
14041 location_t pure_loc = get_pure_location (EXPR_LOCATION (expr));
14042 location_t adhoc = COMBINE_LOCATION_DATA (line_table,
14043 pure_loc,
14044 src_range,
14045 NULL);
14046 SET_EXPR_LOCATION (expr, adhoc);
14047 return adhoc;
14050 location_t
14051 make_location (location_t caret, location_t start, location_t finish)
14053 location_t pure_loc = get_pure_location (caret);
14054 source_range src_range;
14055 src_range.m_start = start;
14056 src_range.m_finish = finish;
14057 location_t combined_loc = COMBINE_LOCATION_DATA (line_table,
14058 pure_loc,
14059 src_range,
14060 NULL);
14061 return combined_loc;
14064 /* Return the name of combined function FN, for debugging purposes. */
14066 const char *
14067 combined_fn_name (combined_fn fn)
14069 if (builtin_fn_p (fn))
14071 tree fndecl = builtin_decl_explicit (as_builtin_fn (fn));
14072 return IDENTIFIER_POINTER (DECL_NAME (fndecl));
14074 else
14075 return internal_fn_name (as_internal_fn (fn));
14078 #include "gt-tree.h"