PR tree-optimization/36329
[official-gcc.git] / gcc / tree.c
blob38e069389688490dd8c6a7342787fd4ff1f0a935
1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This file contains the low level primitives for operating on tree nodes,
23 including allocation, list operations, interning of identifiers,
24 construction of data type nodes and statement nodes,
25 and construction of type conversion nodes. It also contains
26 tables index by tree code that describe how to take apart
27 nodes of that code.
29 It is intended to be language-independent, but occasionally
30 calls language-dependent routines defined (for C) in typecheck.c. */
32 #include "config.h"
33 #include "system.h"
34 #include "coretypes.h"
35 #include "tm.h"
36 #include "flags.h"
37 #include "tree.h"
38 #include "real.h"
39 #include "tm_p.h"
40 #include "function.h"
41 #include "obstack.h"
42 #include "toplev.h"
43 #include "ggc.h"
44 #include "hashtab.h"
45 #include "output.h"
46 #include "target.h"
47 #include "langhooks.h"
48 #include "tree-iterator.h"
49 #include "basic-block.h"
50 #include "tree-flow.h"
51 #include "params.h"
52 #include "pointer-set.h"
53 #include "fixed-value.h"
55 /* Each tree code class has an associated string representation.
56 These must correspond to the tree_code_class entries. */
58 const char *const tree_code_class_strings[] =
60 "exceptional",
61 "constant",
62 "type",
63 "declaration",
64 "reference",
65 "comparison",
66 "unary",
67 "binary",
68 "statement",
69 "vl_exp",
70 "expression",
71 "gimple_stmt"
74 /* obstack.[ch] explicitly declined to prototype this. */
75 extern int _obstack_allocated_p (struct obstack *h, void *obj);
77 #ifdef GATHER_STATISTICS
78 /* Statistics-gathering stuff. */
80 int tree_node_counts[(int) all_kinds];
81 int tree_node_sizes[(int) all_kinds];
83 /* Keep in sync with tree.h:enum tree_node_kind. */
84 static const char * const tree_node_kind_names[] = {
85 "decls",
86 "types",
87 "blocks",
88 "stmts",
89 "refs",
90 "exprs",
91 "constants",
92 "identifiers",
93 "perm_tree_lists",
94 "temp_tree_lists",
95 "vecs",
96 "binfos",
97 "phi_nodes",
98 "ssa names",
99 "constructors",
100 "random kinds",
101 "lang_decl kinds",
102 "lang_type kinds",
103 "omp clauses",
104 "gimple statements"
106 #endif /* GATHER_STATISTICS */
108 /* Unique id for next decl created. */
109 static GTY(()) int next_decl_uid;
110 /* Unique id for next type created. */
111 static GTY(()) int next_type_uid = 1;
113 /* Since we cannot rehash a type after it is in the table, we have to
114 keep the hash code. */
116 struct type_hash GTY(())
118 unsigned long hash;
119 tree type;
122 /* Initial size of the hash table (rounded to next prime). */
123 #define TYPE_HASH_INITIAL_SIZE 1000
125 /* Now here is the hash table. When recording a type, it is added to
126 the slot whose index is the hash code. Note that the hash table is
127 used for several kinds of types (function types, array types and
128 array index range types, for now). While all these live in the
129 same table, they are completely independent, and the hash code is
130 computed differently for each of these. */
132 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
133 htab_t type_hash_table;
135 /* Hash table and temporary node for larger integer const values. */
136 static GTY (()) tree int_cst_node;
137 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
138 htab_t int_cst_hash_table;
140 /* General tree->tree mapping structure for use in hash tables. */
143 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
144 htab_t debug_expr_for_decl;
146 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
147 htab_t value_expr_for_decl;
149 static GTY ((if_marked ("tree_priority_map_marked_p"),
150 param_is (struct tree_priority_map)))
151 htab_t init_priority_for_decl;
153 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
154 htab_t restrict_base_for_decl;
156 static void set_type_quals (tree, int);
157 static int type_hash_eq (const void *, const void *);
158 static hashval_t type_hash_hash (const void *);
159 static hashval_t int_cst_hash_hash (const void *);
160 static int int_cst_hash_eq (const void *, const void *);
161 static void print_type_hash_statistics (void);
162 static void print_debug_expr_statistics (void);
163 static void print_value_expr_statistics (void);
164 static int type_hash_marked_p (const void *);
165 static unsigned int type_hash_list (const_tree, hashval_t);
166 static unsigned int attribute_hash_list (const_tree, hashval_t);
168 tree global_trees[TI_MAX];
169 tree integer_types[itk_none];
171 unsigned char tree_contains_struct[MAX_TREE_CODES][64];
173 /* Number of operands for each OpenMP clause. */
174 unsigned const char omp_clause_num_ops[] =
176 0, /* OMP_CLAUSE_ERROR */
177 1, /* OMP_CLAUSE_PRIVATE */
178 1, /* OMP_CLAUSE_SHARED */
179 1, /* OMP_CLAUSE_FIRSTPRIVATE */
180 1, /* OMP_CLAUSE_LASTPRIVATE */
181 4, /* OMP_CLAUSE_REDUCTION */
182 1, /* OMP_CLAUSE_COPYIN */
183 1, /* OMP_CLAUSE_COPYPRIVATE */
184 1, /* OMP_CLAUSE_IF */
185 1, /* OMP_CLAUSE_NUM_THREADS */
186 1, /* OMP_CLAUSE_SCHEDULE */
187 0, /* OMP_CLAUSE_NOWAIT */
188 0, /* OMP_CLAUSE_ORDERED */
189 0 /* OMP_CLAUSE_DEFAULT */
192 const char * const omp_clause_code_name[] =
194 "error_clause",
195 "private",
196 "shared",
197 "firstprivate",
198 "lastprivate",
199 "reduction",
200 "copyin",
201 "copyprivate",
202 "if",
203 "num_threads",
204 "schedule",
205 "nowait",
206 "ordered",
207 "default"
210 /* Init tree.c. */
212 void
213 init_ttree (void)
215 /* Initialize the hash table of types. */
216 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
217 type_hash_eq, 0);
219 debug_expr_for_decl = htab_create_ggc (512, tree_map_hash,
220 tree_map_eq, 0);
222 value_expr_for_decl = htab_create_ggc (512, tree_map_hash,
223 tree_map_eq, 0);
224 init_priority_for_decl = htab_create_ggc (512, tree_priority_map_hash,
225 tree_priority_map_eq, 0);
226 restrict_base_for_decl = htab_create_ggc (256, tree_map_hash,
227 tree_map_eq, 0);
229 int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
230 int_cst_hash_eq, NULL);
232 int_cst_node = make_node (INTEGER_CST);
234 tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON] = 1;
235 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_NON_COMMON] = 1;
236 tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON] = 1;
239 tree_contains_struct[CONST_DECL][TS_DECL_COMMON] = 1;
240 tree_contains_struct[VAR_DECL][TS_DECL_COMMON] = 1;
241 tree_contains_struct[PARM_DECL][TS_DECL_COMMON] = 1;
242 tree_contains_struct[RESULT_DECL][TS_DECL_COMMON] = 1;
243 tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON] = 1;
244 tree_contains_struct[TYPE_DECL][TS_DECL_COMMON] = 1;
245 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON] = 1;
246 tree_contains_struct[LABEL_DECL][TS_DECL_COMMON] = 1;
247 tree_contains_struct[FIELD_DECL][TS_DECL_COMMON] = 1;
250 tree_contains_struct[CONST_DECL][TS_DECL_WRTL] = 1;
251 tree_contains_struct[VAR_DECL][TS_DECL_WRTL] = 1;
252 tree_contains_struct[PARM_DECL][TS_DECL_WRTL] = 1;
253 tree_contains_struct[RESULT_DECL][TS_DECL_WRTL] = 1;
254 tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL] = 1;
255 tree_contains_struct[LABEL_DECL][TS_DECL_WRTL] = 1;
257 tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL] = 1;
258 tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL] = 1;
259 tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL] = 1;
260 tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL] = 1;
261 tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL] = 1;
262 tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL] = 1;
263 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL] = 1;
264 tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL] = 1;
265 tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL] = 1;
266 tree_contains_struct[NAME_MEMORY_TAG][TS_DECL_MINIMAL] = 1;
267 tree_contains_struct[SYMBOL_MEMORY_TAG][TS_DECL_MINIMAL] = 1;
268 tree_contains_struct[MEMORY_PARTITION_TAG][TS_DECL_MINIMAL] = 1;
270 tree_contains_struct[NAME_MEMORY_TAG][TS_MEMORY_TAG] = 1;
271 tree_contains_struct[SYMBOL_MEMORY_TAG][TS_MEMORY_TAG] = 1;
272 tree_contains_struct[MEMORY_PARTITION_TAG][TS_MEMORY_TAG] = 1;
274 tree_contains_struct[MEMORY_PARTITION_TAG][TS_MEMORY_PARTITION_TAG] = 1;
276 tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS] = 1;
277 tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS] = 1;
278 tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS] = 1;
279 tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_WITH_VIS] = 1;
281 tree_contains_struct[VAR_DECL][TS_VAR_DECL] = 1;
282 tree_contains_struct[FIELD_DECL][TS_FIELD_DECL] = 1;
283 tree_contains_struct[PARM_DECL][TS_PARM_DECL] = 1;
284 tree_contains_struct[LABEL_DECL][TS_LABEL_DECL] = 1;
285 tree_contains_struct[RESULT_DECL][TS_RESULT_DECL] = 1;
286 tree_contains_struct[CONST_DECL][TS_CONST_DECL] = 1;
287 tree_contains_struct[TYPE_DECL][TS_TYPE_DECL] = 1;
288 tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL] = 1;
290 lang_hooks.init_ts ();
294 /* The name of the object as the assembler will see it (but before any
295 translations made by ASM_OUTPUT_LABELREF). Often this is the same
296 as DECL_NAME. It is an IDENTIFIER_NODE. */
297 tree
298 decl_assembler_name (tree decl)
300 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
301 lang_hooks.set_decl_assembler_name (decl);
302 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
305 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
307 bool
308 decl_assembler_name_equal (tree decl, tree asmname)
310 tree decl_asmname = DECL_ASSEMBLER_NAME (decl);
312 if (decl_asmname == asmname)
313 return true;
315 /* If the target assembler name was set by the user, things are trickier.
316 We have a leading '*' to begin with. After that, it's arguable what
317 is the correct thing to do with -fleading-underscore. Arguably, we've
318 historically been doing the wrong thing in assemble_alias by always
319 printing the leading underscore. Since we're not changing that, make
320 sure user_label_prefix follows the '*' before matching. */
321 if (IDENTIFIER_POINTER (decl_asmname)[0] == '*')
323 const char *decl_str = IDENTIFIER_POINTER (decl_asmname) + 1;
324 size_t ulp_len = strlen (user_label_prefix);
326 if (ulp_len == 0)
328 else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
329 decl_str += ulp_len;
330 else
331 return false;
333 return strcmp (decl_str, IDENTIFIER_POINTER (asmname)) == 0;
336 return false;
339 /* Compute the number of bytes occupied by a tree with code CODE.
340 This function cannot be used for nodes that have variable sizes,
341 including TREE_VEC, PHI_NODE, STRING_CST, and CALL_EXPR. */
342 size_t
343 tree_code_size (enum tree_code code)
345 switch (TREE_CODE_CLASS (code))
347 case tcc_declaration: /* A decl node */
349 switch (code)
351 case FIELD_DECL:
352 return sizeof (struct tree_field_decl);
353 case PARM_DECL:
354 return sizeof (struct tree_parm_decl);
355 case VAR_DECL:
356 return sizeof (struct tree_var_decl);
357 case LABEL_DECL:
358 return sizeof (struct tree_label_decl);
359 case RESULT_DECL:
360 return sizeof (struct tree_result_decl);
361 case CONST_DECL:
362 return sizeof (struct tree_const_decl);
363 case TYPE_DECL:
364 return sizeof (struct tree_type_decl);
365 case FUNCTION_DECL:
366 return sizeof (struct tree_function_decl);
367 case NAME_MEMORY_TAG:
368 case SYMBOL_MEMORY_TAG:
369 return sizeof (struct tree_memory_tag);
370 case MEMORY_PARTITION_TAG:
371 return sizeof (struct tree_memory_partition_tag);
372 default:
373 return sizeof (struct tree_decl_non_common);
377 case tcc_type: /* a type node */
378 return sizeof (struct tree_type);
380 case tcc_reference: /* a reference */
381 case tcc_expression: /* an expression */
382 case tcc_statement: /* an expression with side effects */
383 case tcc_comparison: /* a comparison expression */
384 case tcc_unary: /* a unary arithmetic expression */
385 case tcc_binary: /* a binary arithmetic expression */
386 return (sizeof (struct tree_exp)
387 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
389 case tcc_gimple_stmt:
390 return (sizeof (struct gimple_stmt)
391 + (TREE_CODE_LENGTH (code) - 1) * sizeof (char *));
393 case tcc_constant: /* a constant */
394 switch (code)
396 case INTEGER_CST: return sizeof (struct tree_int_cst);
397 case REAL_CST: return sizeof (struct tree_real_cst);
398 case FIXED_CST: return sizeof (struct tree_fixed_cst);
399 case COMPLEX_CST: return sizeof (struct tree_complex);
400 case VECTOR_CST: return sizeof (struct tree_vector);
401 case STRING_CST: gcc_unreachable ();
402 default:
403 return lang_hooks.tree_size (code);
406 case tcc_exceptional: /* something random, like an identifier. */
407 switch (code)
409 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
410 case TREE_LIST: return sizeof (struct tree_list);
412 case ERROR_MARK:
413 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
415 case TREE_VEC:
416 case OMP_CLAUSE:
417 case PHI_NODE: gcc_unreachable ();
419 case SSA_NAME: return sizeof (struct tree_ssa_name);
421 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
422 case BLOCK: return sizeof (struct tree_block);
423 case VALUE_HANDLE: return sizeof (struct tree_value_handle);
424 case CONSTRUCTOR: return sizeof (struct tree_constructor);
426 default:
427 return lang_hooks.tree_size (code);
430 default:
431 gcc_unreachable ();
435 /* Compute the number of bytes occupied by NODE. This routine only
436 looks at TREE_CODE, except for those nodes that have variable sizes. */
437 size_t
438 tree_size (const_tree node)
440 const enum tree_code code = TREE_CODE (node);
441 switch (code)
443 case PHI_NODE:
444 return (sizeof (struct tree_phi_node)
445 + (PHI_ARG_CAPACITY (node) - 1) * sizeof (struct phi_arg_d));
447 case TREE_BINFO:
448 return (offsetof (struct tree_binfo, base_binfos)
449 + VEC_embedded_size (tree, BINFO_N_BASE_BINFOS (node)));
451 case TREE_VEC:
452 return (sizeof (struct tree_vec)
453 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
455 case STRING_CST:
456 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
458 case OMP_CLAUSE:
459 return (sizeof (struct tree_omp_clause)
460 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
461 * sizeof (tree));
463 default:
464 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
465 return (sizeof (struct tree_exp)
466 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
467 else
468 return tree_code_size (code);
472 /* Return a newly allocated node of code CODE. For decl and type
473 nodes, some other fields are initialized. The rest of the node is
474 initialized to zero. This function cannot be used for PHI_NODE,
475 TREE_VEC or OMP_CLAUSE nodes, which is enforced by asserts in
476 tree_code_size.
478 Achoo! I got a code in the node. */
480 tree
481 make_node_stat (enum tree_code code MEM_STAT_DECL)
483 tree t;
484 enum tree_code_class type = TREE_CODE_CLASS (code);
485 size_t length = tree_code_size (code);
486 #ifdef GATHER_STATISTICS
487 tree_node_kind kind;
489 switch (type)
491 case tcc_declaration: /* A decl node */
492 kind = d_kind;
493 break;
495 case tcc_type: /* a type node */
496 kind = t_kind;
497 break;
499 case tcc_statement: /* an expression with side effects */
500 kind = s_kind;
501 break;
503 case tcc_reference: /* a reference */
504 kind = r_kind;
505 break;
507 case tcc_expression: /* an expression */
508 case tcc_comparison: /* a comparison expression */
509 case tcc_unary: /* a unary arithmetic expression */
510 case tcc_binary: /* a binary arithmetic expression */
511 kind = e_kind;
512 break;
514 case tcc_constant: /* a constant */
515 kind = c_kind;
516 break;
518 case tcc_gimple_stmt:
519 kind = gimple_stmt_kind;
520 break;
522 case tcc_exceptional: /* something random, like an identifier. */
523 switch (code)
525 case IDENTIFIER_NODE:
526 kind = id_kind;
527 break;
529 case TREE_VEC:
530 kind = vec_kind;
531 break;
533 case TREE_BINFO:
534 kind = binfo_kind;
535 break;
537 case PHI_NODE:
538 kind = phi_kind;
539 break;
541 case SSA_NAME:
542 kind = ssa_name_kind;
543 break;
545 case BLOCK:
546 kind = b_kind;
547 break;
549 case CONSTRUCTOR:
550 kind = constr_kind;
551 break;
553 default:
554 kind = x_kind;
555 break;
557 break;
559 default:
560 gcc_unreachable ();
563 tree_node_counts[(int) kind]++;
564 tree_node_sizes[(int) kind] += length;
565 #endif
567 if (code == IDENTIFIER_NODE)
568 t = ggc_alloc_zone_pass_stat (length, &tree_id_zone);
569 else
570 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
572 memset (t, 0, length);
574 TREE_SET_CODE (t, code);
576 switch (type)
578 case tcc_statement:
579 TREE_SIDE_EFFECTS (t) = 1;
580 break;
582 case tcc_declaration:
583 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
584 DECL_IN_SYSTEM_HEADER (t) = in_system_header;
585 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
587 if (code == FUNCTION_DECL)
589 DECL_ALIGN (t) = FUNCTION_BOUNDARY;
590 DECL_MODE (t) = FUNCTION_MODE;
592 else
593 DECL_ALIGN (t) = 1;
594 /* We have not yet computed the alias set for this declaration. */
595 DECL_POINTER_ALIAS_SET (t) = -1;
597 DECL_SOURCE_LOCATION (t) = input_location;
598 DECL_UID (t) = next_decl_uid++;
600 break;
602 case tcc_type:
603 TYPE_UID (t) = next_type_uid++;
604 TYPE_ALIGN (t) = BITS_PER_UNIT;
605 TYPE_USER_ALIGN (t) = 0;
606 TYPE_MAIN_VARIANT (t) = t;
607 TYPE_CANONICAL (t) = t;
609 /* Default to no attributes for type, but let target change that. */
610 TYPE_ATTRIBUTES (t) = NULL_TREE;
611 targetm.set_default_type_attributes (t);
613 /* We have not yet computed the alias set for this type. */
614 TYPE_ALIAS_SET (t) = -1;
615 break;
617 case tcc_constant:
618 TREE_CONSTANT (t) = 1;
619 break;
621 case tcc_expression:
622 switch (code)
624 case INIT_EXPR:
625 case MODIFY_EXPR:
626 case VA_ARG_EXPR:
627 case PREDECREMENT_EXPR:
628 case PREINCREMENT_EXPR:
629 case POSTDECREMENT_EXPR:
630 case POSTINCREMENT_EXPR:
631 /* All of these have side-effects, no matter what their
632 operands are. */
633 TREE_SIDE_EFFECTS (t) = 1;
634 break;
636 default:
637 break;
639 break;
641 case tcc_gimple_stmt:
642 switch (code)
644 case GIMPLE_MODIFY_STMT:
645 TREE_SIDE_EFFECTS (t) = 1;
646 break;
648 default:
649 break;
652 default:
653 /* Other classes need no special treatment. */
654 break;
657 return t;
660 /* Return a new node with the same contents as NODE except that its
661 TREE_CHAIN is zero and it has a fresh uid. */
663 tree
664 copy_node_stat (tree node MEM_STAT_DECL)
666 tree t;
667 enum tree_code code = TREE_CODE (node);
668 size_t length;
670 gcc_assert (code != STATEMENT_LIST);
672 length = tree_size (node);
673 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
674 memcpy (t, node, length);
676 if (!GIMPLE_TUPLE_P (node))
677 TREE_CHAIN (t) = 0;
678 TREE_ASM_WRITTEN (t) = 0;
679 TREE_VISITED (t) = 0;
680 t->base.ann = 0;
682 if (TREE_CODE_CLASS (code) == tcc_declaration)
684 DECL_UID (t) = next_decl_uid++;
685 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
686 && DECL_HAS_VALUE_EXPR_P (node))
688 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
689 DECL_HAS_VALUE_EXPR_P (t) = 1;
691 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
693 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
694 DECL_HAS_INIT_PRIORITY_P (t) = 1;
696 if (TREE_CODE (node) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (node))
698 SET_DECL_RESTRICT_BASE (t, DECL_GET_RESTRICT_BASE (node));
699 DECL_BASED_ON_RESTRICT_P (t) = 1;
702 else if (TREE_CODE_CLASS (code) == tcc_type)
704 TYPE_UID (t) = next_type_uid++;
705 /* The following is so that the debug code for
706 the copy is different from the original type.
707 The two statements usually duplicate each other
708 (because they clear fields of the same union),
709 but the optimizer should catch that. */
710 TYPE_SYMTAB_POINTER (t) = 0;
711 TYPE_SYMTAB_ADDRESS (t) = 0;
713 /* Do not copy the values cache. */
714 if (TYPE_CACHED_VALUES_P(t))
716 TYPE_CACHED_VALUES_P (t) = 0;
717 TYPE_CACHED_VALUES (t) = NULL_TREE;
721 return t;
724 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
725 For example, this can copy a list made of TREE_LIST nodes. */
727 tree
728 copy_list (tree list)
730 tree head;
731 tree prev, next;
733 if (list == 0)
734 return 0;
736 head = prev = copy_node (list);
737 next = TREE_CHAIN (list);
738 while (next)
740 TREE_CHAIN (prev) = copy_node (next);
741 prev = TREE_CHAIN (prev);
742 next = TREE_CHAIN (next);
744 return head;
748 /* Create an INT_CST node with a LOW value sign extended. */
750 tree
751 build_int_cst (tree type, HOST_WIDE_INT low)
753 /* Support legacy code. */
754 if (!type)
755 type = integer_type_node;
757 return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
760 /* Create an INT_CST node with a LOW value zero extended. */
762 tree
763 build_int_cstu (tree type, unsigned HOST_WIDE_INT low)
765 return build_int_cst_wide (type, low, 0);
768 /* Create an INT_CST node with a LOW value in TYPE. The value is sign extended
769 if it is negative. This function is similar to build_int_cst, but
770 the extra bits outside of the type precision are cleared. Constants
771 with these extra bits may confuse the fold so that it detects overflows
772 even in cases when they do not occur, and in general should be avoided.
773 We cannot however make this a default behavior of build_int_cst without
774 more intrusive changes, since there are parts of gcc that rely on the extra
775 precision of the integer constants. */
777 tree
778 build_int_cst_type (tree type, HOST_WIDE_INT low)
780 unsigned HOST_WIDE_INT low1;
781 HOST_WIDE_INT hi;
783 gcc_assert (type);
785 fit_double_type (low, low < 0 ? -1 : 0, &low1, &hi, type);
787 return build_int_cst_wide (type, low1, hi);
790 /* Create an INT_CST node of TYPE and value HI:LOW. The value is truncated
791 and sign extended according to the value range of TYPE. */
793 tree
794 build_int_cst_wide_type (tree type,
795 unsigned HOST_WIDE_INT low, HOST_WIDE_INT high)
797 fit_double_type (low, high, &low, &high, type);
798 return build_int_cst_wide (type, low, high);
801 /* These are the hash table functions for the hash table of INTEGER_CST
802 nodes of a sizetype. */
804 /* Return the hash code code X, an INTEGER_CST. */
806 static hashval_t
807 int_cst_hash_hash (const void *x)
809 const_tree const t = (const_tree) x;
811 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
812 ^ htab_hash_pointer (TREE_TYPE (t)));
815 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
816 is the same as that given by *Y, which is the same. */
818 static int
819 int_cst_hash_eq (const void *x, const void *y)
821 const_tree const xt = (const_tree) x;
822 const_tree const yt = (const_tree) y;
824 return (TREE_TYPE (xt) == TREE_TYPE (yt)
825 && TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
826 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt));
829 /* Create an INT_CST node of TYPE and value HI:LOW.
830 The returned node is always shared. For small integers we use a
831 per-type vector cache, for larger ones we use a single hash table. */
833 tree
834 build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
836 tree t;
837 int ix = -1;
838 int limit = 0;
840 gcc_assert (type);
842 switch (TREE_CODE (type))
844 case POINTER_TYPE:
845 case REFERENCE_TYPE:
846 /* Cache NULL pointer. */
847 if (!hi && !low)
849 limit = 1;
850 ix = 0;
852 break;
854 case BOOLEAN_TYPE:
855 /* Cache false or true. */
856 limit = 2;
857 if (!hi && low < 2)
858 ix = low;
859 break;
861 case INTEGER_TYPE:
862 case OFFSET_TYPE:
863 if (TYPE_UNSIGNED (type))
865 /* Cache 0..N */
866 limit = INTEGER_SHARE_LIMIT;
867 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
868 ix = low;
870 else
872 /* Cache -1..N */
873 limit = INTEGER_SHARE_LIMIT + 1;
874 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
875 ix = low + 1;
876 else if (hi == -1 && low == -(unsigned HOST_WIDE_INT)1)
877 ix = 0;
879 break;
881 case ENUMERAL_TYPE:
882 break;
884 default:
885 gcc_unreachable ();
888 if (ix >= 0)
890 /* Look for it in the type's vector of small shared ints. */
891 if (!TYPE_CACHED_VALUES_P (type))
893 TYPE_CACHED_VALUES_P (type) = 1;
894 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
897 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
898 if (t)
900 /* Make sure no one is clobbering the shared constant. */
901 gcc_assert (TREE_TYPE (t) == type);
902 gcc_assert (TREE_INT_CST_LOW (t) == low);
903 gcc_assert (TREE_INT_CST_HIGH (t) == hi);
905 else
907 /* Create a new shared int. */
908 t = make_node (INTEGER_CST);
910 TREE_INT_CST_LOW (t) = low;
911 TREE_INT_CST_HIGH (t) = hi;
912 TREE_TYPE (t) = type;
914 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
917 else
919 /* Use the cache of larger shared ints. */
920 void **slot;
922 TREE_INT_CST_LOW (int_cst_node) = low;
923 TREE_INT_CST_HIGH (int_cst_node) = hi;
924 TREE_TYPE (int_cst_node) = type;
926 slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
927 t = *slot;
928 if (!t)
930 /* Insert this one into the hash table. */
931 t = int_cst_node;
932 *slot = t;
933 /* Make a new node for next time round. */
934 int_cst_node = make_node (INTEGER_CST);
938 return t;
941 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
942 and the rest are zeros. */
944 tree
945 build_low_bits_mask (tree type, unsigned bits)
947 unsigned HOST_WIDE_INT low;
948 HOST_WIDE_INT high;
949 unsigned HOST_WIDE_INT all_ones = ~(unsigned HOST_WIDE_INT) 0;
951 gcc_assert (bits <= TYPE_PRECISION (type));
953 if (bits == TYPE_PRECISION (type)
954 && !TYPE_UNSIGNED (type))
956 /* Sign extended all-ones mask. */
957 low = all_ones;
958 high = -1;
960 else if (bits <= HOST_BITS_PER_WIDE_INT)
962 low = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
963 high = 0;
965 else
967 bits -= HOST_BITS_PER_WIDE_INT;
968 low = all_ones;
969 high = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
972 return build_int_cst_wide (type, low, high);
975 /* Checks that X is integer constant that can be expressed in (unsigned)
976 HOST_WIDE_INT without loss of precision. */
978 bool
979 cst_and_fits_in_hwi (const_tree x)
981 if (TREE_CODE (x) != INTEGER_CST)
982 return false;
984 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
985 return false;
987 return (TREE_INT_CST_HIGH (x) == 0
988 || TREE_INT_CST_HIGH (x) == -1);
991 /* Return a new VECTOR_CST node whose type is TYPE and whose values
992 are in a list pointed to by VALS. */
994 tree
995 build_vector (tree type, tree vals)
997 tree v = make_node (VECTOR_CST);
998 int over = 0;
999 tree link;
1001 TREE_VECTOR_CST_ELTS (v) = vals;
1002 TREE_TYPE (v) = type;
1004 /* Iterate through elements and check for overflow. */
1005 for (link = vals; link; link = TREE_CHAIN (link))
1007 tree value = TREE_VALUE (link);
1009 /* Don't crash if we get an address constant. */
1010 if (!CONSTANT_CLASS_P (value))
1011 continue;
1013 over |= TREE_OVERFLOW (value);
1016 TREE_OVERFLOW (v) = over;
1017 return v;
1020 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1021 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1023 tree
1024 build_vector_from_ctor (tree type, VEC(constructor_elt,gc) *v)
1026 tree list = NULL_TREE;
1027 unsigned HOST_WIDE_INT idx;
1028 tree value;
1030 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1031 list = tree_cons (NULL_TREE, value, list);
1032 return build_vector (type, nreverse (list));
1035 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1036 are in the VEC pointed to by VALS. */
1037 tree
1038 build_constructor (tree type, VEC(constructor_elt,gc) *vals)
1040 tree c = make_node (CONSTRUCTOR);
1041 TREE_TYPE (c) = type;
1042 CONSTRUCTOR_ELTS (c) = vals;
1043 return c;
1046 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1047 INDEX and VALUE. */
1048 tree
1049 build_constructor_single (tree type, tree index, tree value)
1051 VEC(constructor_elt,gc) *v;
1052 constructor_elt *elt;
1053 tree t;
1055 v = VEC_alloc (constructor_elt, gc, 1);
1056 elt = VEC_quick_push (constructor_elt, v, NULL);
1057 elt->index = index;
1058 elt->value = value;
1060 t = build_constructor (type, v);
1061 TREE_CONSTANT (t) = TREE_CONSTANT (value);
1062 return t;
1066 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1067 are in a list pointed to by VALS. */
1068 tree
1069 build_constructor_from_list (tree type, tree vals)
1071 tree t, val;
1072 VEC(constructor_elt,gc) *v = NULL;
1073 bool constant_p = true;
1075 if (vals)
1077 v = VEC_alloc (constructor_elt, gc, list_length (vals));
1078 for (t = vals; t; t = TREE_CHAIN (t))
1080 constructor_elt *elt = VEC_quick_push (constructor_elt, v, NULL);
1081 val = TREE_VALUE (t);
1082 elt->index = TREE_PURPOSE (t);
1083 elt->value = val;
1084 if (!TREE_CONSTANT (val))
1085 constant_p = false;
1089 t = build_constructor (type, v);
1090 TREE_CONSTANT (t) = constant_p;
1091 return t;
1094 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1096 tree
1097 build_fixed (tree type, FIXED_VALUE_TYPE f)
1099 tree v;
1100 FIXED_VALUE_TYPE *fp;
1102 v = make_node (FIXED_CST);
1103 fp = ggc_alloc (sizeof (FIXED_VALUE_TYPE));
1104 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1106 TREE_TYPE (v) = type;
1107 TREE_FIXED_CST_PTR (v) = fp;
1108 return v;
1111 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1113 tree
1114 build_real (tree type, REAL_VALUE_TYPE d)
1116 tree v;
1117 REAL_VALUE_TYPE *dp;
1118 int overflow = 0;
1120 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1121 Consider doing it via real_convert now. */
1123 v = make_node (REAL_CST);
1124 dp = ggc_alloc (sizeof (REAL_VALUE_TYPE));
1125 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1127 TREE_TYPE (v) = type;
1128 TREE_REAL_CST_PTR (v) = dp;
1129 TREE_OVERFLOW (v) = overflow;
1130 return v;
1133 /* Return a new REAL_CST node whose type is TYPE
1134 and whose value is the integer value of the INTEGER_CST node I. */
1136 REAL_VALUE_TYPE
1137 real_value_from_int_cst (const_tree type, const_tree i)
1139 REAL_VALUE_TYPE d;
1141 /* Clear all bits of the real value type so that we can later do
1142 bitwise comparisons to see if two values are the same. */
1143 memset (&d, 0, sizeof d);
1145 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
1146 TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
1147 TYPE_UNSIGNED (TREE_TYPE (i)));
1148 return d;
1151 /* Given a tree representing an integer constant I, return a tree
1152 representing the same value as a floating-point constant of type TYPE. */
1154 tree
1155 build_real_from_int_cst (tree type, const_tree i)
1157 tree v;
1158 int overflow = TREE_OVERFLOW (i);
1160 v = build_real (type, real_value_from_int_cst (type, i));
1162 TREE_OVERFLOW (v) |= overflow;
1163 return v;
1166 /* Return a newly constructed STRING_CST node whose value is
1167 the LEN characters at STR.
1168 The TREE_TYPE is not initialized. */
1170 tree
1171 build_string (int len, const char *str)
1173 tree s;
1174 size_t length;
1176 /* Do not waste bytes provided by padding of struct tree_string. */
1177 length = len + offsetof (struct tree_string, str) + 1;
1179 #ifdef GATHER_STATISTICS
1180 tree_node_counts[(int) c_kind]++;
1181 tree_node_sizes[(int) c_kind] += length;
1182 #endif
1184 s = ggc_alloc_tree (length);
1186 memset (s, 0, sizeof (struct tree_common));
1187 TREE_SET_CODE (s, STRING_CST);
1188 TREE_CONSTANT (s) = 1;
1189 TREE_STRING_LENGTH (s) = len;
1190 memcpy (s->string.str, str, len);
1191 s->string.str[len] = '\0';
1193 return s;
1196 /* Return a newly constructed COMPLEX_CST node whose value is
1197 specified by the real and imaginary parts REAL and IMAG.
1198 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1199 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1201 tree
1202 build_complex (tree type, tree real, tree imag)
1204 tree t = make_node (COMPLEX_CST);
1206 TREE_REALPART (t) = real;
1207 TREE_IMAGPART (t) = imag;
1208 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
1209 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1210 return t;
1213 /* Return a constant of arithmetic type TYPE which is the
1214 multiplicative identity of the set TYPE. */
1216 tree
1217 build_one_cst (tree type)
1219 switch (TREE_CODE (type))
1221 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1222 case POINTER_TYPE: case REFERENCE_TYPE:
1223 case OFFSET_TYPE:
1224 return build_int_cst (type, 1);
1226 case REAL_TYPE:
1227 return build_real (type, dconst1);
1229 case FIXED_POINT_TYPE:
1230 /* We can only generate 1 for accum types. */
1231 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1232 return build_fixed (type, FCONST1(TYPE_MODE (type)));
1234 case VECTOR_TYPE:
1236 tree scalar, cst;
1237 int i;
1239 scalar = build_one_cst (TREE_TYPE (type));
1241 /* Create 'vect_cst_ = {cst,cst,...,cst}' */
1242 cst = NULL_TREE;
1243 for (i = TYPE_VECTOR_SUBPARTS (type); --i >= 0; )
1244 cst = tree_cons (NULL_TREE, scalar, cst);
1246 return build_vector (type, cst);
1249 case COMPLEX_TYPE:
1250 return build_complex (type,
1251 build_one_cst (TREE_TYPE (type)),
1252 fold_convert (TREE_TYPE (type), integer_zero_node));
1254 default:
1255 gcc_unreachable ();
1259 /* Build a BINFO with LEN language slots. */
1261 tree
1262 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
1264 tree t;
1265 size_t length = (offsetof (struct tree_binfo, base_binfos)
1266 + VEC_embedded_size (tree, base_binfos));
1268 #ifdef GATHER_STATISTICS
1269 tree_node_counts[(int) binfo_kind]++;
1270 tree_node_sizes[(int) binfo_kind] += length;
1271 #endif
1273 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
1275 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
1277 TREE_SET_CODE (t, TREE_BINFO);
1279 VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos);
1281 return t;
1285 /* Build a newly constructed TREE_VEC node of length LEN. */
1287 tree
1288 make_tree_vec_stat (int len MEM_STAT_DECL)
1290 tree t;
1291 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
1293 #ifdef GATHER_STATISTICS
1294 tree_node_counts[(int) vec_kind]++;
1295 tree_node_sizes[(int) vec_kind] += length;
1296 #endif
1298 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
1300 memset (t, 0, length);
1302 TREE_SET_CODE (t, TREE_VEC);
1303 TREE_VEC_LENGTH (t) = len;
1305 return t;
1308 /* Return 1 if EXPR is the integer constant zero or a complex constant
1309 of zero. */
1312 integer_zerop (const_tree expr)
1314 STRIP_NOPS (expr);
1316 return ((TREE_CODE (expr) == INTEGER_CST
1317 && TREE_INT_CST_LOW (expr) == 0
1318 && TREE_INT_CST_HIGH (expr) == 0)
1319 || (TREE_CODE (expr) == COMPLEX_CST
1320 && integer_zerop (TREE_REALPART (expr))
1321 && integer_zerop (TREE_IMAGPART (expr))));
1324 /* Return 1 if EXPR is the integer constant one or the corresponding
1325 complex constant. */
1328 integer_onep (const_tree expr)
1330 STRIP_NOPS (expr);
1332 return ((TREE_CODE (expr) == INTEGER_CST
1333 && TREE_INT_CST_LOW (expr) == 1
1334 && TREE_INT_CST_HIGH (expr) == 0)
1335 || (TREE_CODE (expr) == COMPLEX_CST
1336 && integer_onep (TREE_REALPART (expr))
1337 && integer_zerop (TREE_IMAGPART (expr))));
1340 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1341 it contains. Likewise for the corresponding complex constant. */
1344 integer_all_onesp (const_tree expr)
1346 int prec;
1347 int uns;
1349 STRIP_NOPS (expr);
1351 if (TREE_CODE (expr) == COMPLEX_CST
1352 && integer_all_onesp (TREE_REALPART (expr))
1353 && integer_zerop (TREE_IMAGPART (expr)))
1354 return 1;
1356 else if (TREE_CODE (expr) != INTEGER_CST)
1357 return 0;
1359 uns = TYPE_UNSIGNED (TREE_TYPE (expr));
1360 if (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1361 && TREE_INT_CST_HIGH (expr) == -1)
1362 return 1;
1363 if (!uns)
1364 return 0;
1366 /* Note that using TYPE_PRECISION here is wrong. We care about the
1367 actual bits, not the (arbitrary) range of the type. */
1368 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
1369 if (prec >= HOST_BITS_PER_WIDE_INT)
1371 HOST_WIDE_INT high_value;
1372 int shift_amount;
1374 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
1376 /* Can not handle precisions greater than twice the host int size. */
1377 gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT);
1378 if (shift_amount == HOST_BITS_PER_WIDE_INT)
1379 /* Shifting by the host word size is undefined according to the ANSI
1380 standard, so we must handle this as a special case. */
1381 high_value = -1;
1382 else
1383 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
1385 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1386 && TREE_INT_CST_HIGH (expr) == high_value);
1388 else
1389 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
1392 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1393 one bit on). */
1396 integer_pow2p (const_tree expr)
1398 int prec;
1399 HOST_WIDE_INT high, low;
1401 STRIP_NOPS (expr);
1403 if (TREE_CODE (expr) == COMPLEX_CST
1404 && integer_pow2p (TREE_REALPART (expr))
1405 && integer_zerop (TREE_IMAGPART (expr)))
1406 return 1;
1408 if (TREE_CODE (expr) != INTEGER_CST)
1409 return 0;
1411 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1412 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1413 high = TREE_INT_CST_HIGH (expr);
1414 low = TREE_INT_CST_LOW (expr);
1416 /* First clear all bits that are beyond the type's precision in case
1417 we've been sign extended. */
1419 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1421 else if (prec > HOST_BITS_PER_WIDE_INT)
1422 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1423 else
1425 high = 0;
1426 if (prec < HOST_BITS_PER_WIDE_INT)
1427 low &= ~((HOST_WIDE_INT) (-1) << prec);
1430 if (high == 0 && low == 0)
1431 return 0;
1433 return ((high == 0 && (low & (low - 1)) == 0)
1434 || (low == 0 && (high & (high - 1)) == 0));
1437 /* Return 1 if EXPR is an integer constant other than zero or a
1438 complex constant other than zero. */
1441 integer_nonzerop (const_tree expr)
1443 STRIP_NOPS (expr);
1445 return ((TREE_CODE (expr) == INTEGER_CST
1446 && (TREE_INT_CST_LOW (expr) != 0
1447 || TREE_INT_CST_HIGH (expr) != 0))
1448 || (TREE_CODE (expr) == COMPLEX_CST
1449 && (integer_nonzerop (TREE_REALPART (expr))
1450 || integer_nonzerop (TREE_IMAGPART (expr)))));
1453 /* Return 1 if EXPR is the fixed-point constant zero. */
1456 fixed_zerop (const_tree expr)
1458 return (TREE_CODE (expr) == FIXED_CST
1459 && double_int_zero_p (TREE_FIXED_CST (expr).data));
1462 /* Return the power of two represented by a tree node known to be a
1463 power of two. */
1466 tree_log2 (const_tree expr)
1468 int prec;
1469 HOST_WIDE_INT high, low;
1471 STRIP_NOPS (expr);
1473 if (TREE_CODE (expr) == COMPLEX_CST)
1474 return tree_log2 (TREE_REALPART (expr));
1476 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1477 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1479 high = TREE_INT_CST_HIGH (expr);
1480 low = TREE_INT_CST_LOW (expr);
1482 /* First clear all bits that are beyond the type's precision in case
1483 we've been sign extended. */
1485 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1487 else if (prec > HOST_BITS_PER_WIDE_INT)
1488 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1489 else
1491 high = 0;
1492 if (prec < HOST_BITS_PER_WIDE_INT)
1493 low &= ~((HOST_WIDE_INT) (-1) << prec);
1496 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
1497 : exact_log2 (low));
1500 /* Similar, but return the largest integer Y such that 2 ** Y is less
1501 than or equal to EXPR. */
1504 tree_floor_log2 (const_tree expr)
1506 int prec;
1507 HOST_WIDE_INT high, low;
1509 STRIP_NOPS (expr);
1511 if (TREE_CODE (expr) == COMPLEX_CST)
1512 return tree_log2 (TREE_REALPART (expr));
1514 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1515 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1517 high = TREE_INT_CST_HIGH (expr);
1518 low = TREE_INT_CST_LOW (expr);
1520 /* First clear all bits that are beyond the type's precision in case
1521 we've been sign extended. Ignore if type's precision hasn't been set
1522 since what we are doing is setting it. */
1524 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1526 else if (prec > HOST_BITS_PER_WIDE_INT)
1527 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1528 else
1530 high = 0;
1531 if (prec < HOST_BITS_PER_WIDE_INT)
1532 low &= ~((HOST_WIDE_INT) (-1) << prec);
1535 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1536 : floor_log2 (low));
1539 /* Return 1 if EXPR is the real constant zero. */
1542 real_zerop (const_tree expr)
1544 STRIP_NOPS (expr);
1546 return ((TREE_CODE (expr) == REAL_CST
1547 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
1548 || (TREE_CODE (expr) == COMPLEX_CST
1549 && real_zerop (TREE_REALPART (expr))
1550 && real_zerop (TREE_IMAGPART (expr))));
1553 /* Return 1 if EXPR is the real constant one in real or complex form. */
1556 real_onep (const_tree expr)
1558 STRIP_NOPS (expr);
1560 return ((TREE_CODE (expr) == REAL_CST
1561 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
1562 || (TREE_CODE (expr) == COMPLEX_CST
1563 && real_onep (TREE_REALPART (expr))
1564 && real_zerop (TREE_IMAGPART (expr))));
1567 /* Return 1 if EXPR is the real constant two. */
1570 real_twop (const_tree expr)
1572 STRIP_NOPS (expr);
1574 return ((TREE_CODE (expr) == REAL_CST
1575 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
1576 || (TREE_CODE (expr) == COMPLEX_CST
1577 && real_twop (TREE_REALPART (expr))
1578 && real_zerop (TREE_IMAGPART (expr))));
1581 /* Return 1 if EXPR is the real constant minus one. */
1584 real_minus_onep (const_tree expr)
1586 STRIP_NOPS (expr);
1588 return ((TREE_CODE (expr) == REAL_CST
1589 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1))
1590 || (TREE_CODE (expr) == COMPLEX_CST
1591 && real_minus_onep (TREE_REALPART (expr))
1592 && real_zerop (TREE_IMAGPART (expr))));
1595 /* Nonzero if EXP is a constant or a cast of a constant. */
1598 really_constant_p (const_tree exp)
1600 /* This is not quite the same as STRIP_NOPS. It does more. */
1601 while (CONVERT_EXPR_P (exp)
1602 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1603 exp = TREE_OPERAND (exp, 0);
1604 return TREE_CONSTANT (exp);
1607 /* Return first list element whose TREE_VALUE is ELEM.
1608 Return 0 if ELEM is not in LIST. */
1610 tree
1611 value_member (tree elem, tree list)
1613 while (list)
1615 if (elem == TREE_VALUE (list))
1616 return list;
1617 list = TREE_CHAIN (list);
1619 return NULL_TREE;
1622 /* Return first list element whose TREE_PURPOSE is ELEM.
1623 Return 0 if ELEM is not in LIST. */
1625 tree
1626 purpose_member (const_tree elem, tree list)
1628 while (list)
1630 if (elem == TREE_PURPOSE (list))
1631 return list;
1632 list = TREE_CHAIN (list);
1634 return NULL_TREE;
1637 /* Return nonzero if ELEM is part of the chain CHAIN. */
1640 chain_member (const_tree elem, const_tree chain)
1642 while (chain)
1644 if (elem == chain)
1645 return 1;
1646 chain = TREE_CHAIN (chain);
1649 return 0;
1652 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1653 We expect a null pointer to mark the end of the chain.
1654 This is the Lisp primitive `length'. */
1657 list_length (const_tree t)
1659 const_tree p = t;
1660 #ifdef ENABLE_TREE_CHECKING
1661 const_tree q = t;
1662 #endif
1663 int len = 0;
1665 while (p)
1667 p = TREE_CHAIN (p);
1668 #ifdef ENABLE_TREE_CHECKING
1669 if (len % 2)
1670 q = TREE_CHAIN (q);
1671 gcc_assert (p != q);
1672 #endif
1673 len++;
1676 return len;
1679 /* Returns the number of FIELD_DECLs in TYPE. */
1682 fields_length (const_tree type)
1684 tree t = TYPE_FIELDS (type);
1685 int count = 0;
1687 for (; t; t = TREE_CHAIN (t))
1688 if (TREE_CODE (t) == FIELD_DECL)
1689 ++count;
1691 return count;
1694 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
1695 by modifying the last node in chain 1 to point to chain 2.
1696 This is the Lisp primitive `nconc'. */
1698 tree
1699 chainon (tree op1, tree op2)
1701 tree t1;
1703 if (!op1)
1704 return op2;
1705 if (!op2)
1706 return op1;
1708 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
1709 continue;
1710 TREE_CHAIN (t1) = op2;
1712 #ifdef ENABLE_TREE_CHECKING
1714 tree t2;
1715 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1716 gcc_assert (t2 != t1);
1718 #endif
1720 return op1;
1723 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1725 tree
1726 tree_last (tree chain)
1728 tree next;
1729 if (chain)
1730 while ((next = TREE_CHAIN (chain)))
1731 chain = next;
1732 return chain;
1735 /* Reverse the order of elements in the chain T,
1736 and return the new head of the chain (old last element). */
1738 tree
1739 nreverse (tree t)
1741 tree prev = 0, decl, next;
1742 for (decl = t; decl; decl = next)
1744 next = TREE_CHAIN (decl);
1745 TREE_CHAIN (decl) = prev;
1746 prev = decl;
1748 return prev;
1751 /* Return a newly created TREE_LIST node whose
1752 purpose and value fields are PARM and VALUE. */
1754 tree
1755 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
1757 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
1758 TREE_PURPOSE (t) = parm;
1759 TREE_VALUE (t) = value;
1760 return t;
1763 /* Return a newly created TREE_LIST node whose
1764 purpose and value fields are PURPOSE and VALUE
1765 and whose TREE_CHAIN is CHAIN. */
1767 tree
1768 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
1770 tree node;
1772 node = ggc_alloc_zone_pass_stat (sizeof (struct tree_list), &tree_zone);
1774 memset (node, 0, sizeof (struct tree_common));
1776 #ifdef GATHER_STATISTICS
1777 tree_node_counts[(int) x_kind]++;
1778 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
1779 #endif
1781 TREE_SET_CODE (node, TREE_LIST);
1782 TREE_CHAIN (node) = chain;
1783 TREE_PURPOSE (node) = purpose;
1784 TREE_VALUE (node) = value;
1785 return node;
1789 /* Return the size nominally occupied by an object of type TYPE
1790 when it resides in memory. The value is measured in units of bytes,
1791 and its data type is that normally used for type sizes
1792 (which is the first type created by make_signed_type or
1793 make_unsigned_type). */
1795 tree
1796 size_in_bytes (const_tree type)
1798 tree t;
1800 if (type == error_mark_node)
1801 return integer_zero_node;
1803 type = TYPE_MAIN_VARIANT (type);
1804 t = TYPE_SIZE_UNIT (type);
1806 if (t == 0)
1808 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
1809 return size_zero_node;
1812 return t;
1815 /* Return the size of TYPE (in bytes) as a wide integer
1816 or return -1 if the size can vary or is larger than an integer. */
1818 HOST_WIDE_INT
1819 int_size_in_bytes (const_tree type)
1821 tree t;
1823 if (type == error_mark_node)
1824 return 0;
1826 type = TYPE_MAIN_VARIANT (type);
1827 t = TYPE_SIZE_UNIT (type);
1828 if (t == 0
1829 || TREE_CODE (t) != INTEGER_CST
1830 || TREE_INT_CST_HIGH (t) != 0
1831 /* If the result would appear negative, it's too big to represent. */
1832 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
1833 return -1;
1835 return TREE_INT_CST_LOW (t);
1838 /* Return the maximum size of TYPE (in bytes) as a wide integer
1839 or return -1 if the size can vary or is larger than an integer. */
1841 HOST_WIDE_INT
1842 max_int_size_in_bytes (const_tree type)
1844 HOST_WIDE_INT size = -1;
1845 tree size_tree;
1847 /* If this is an array type, check for a possible MAX_SIZE attached. */
1849 if (TREE_CODE (type) == ARRAY_TYPE)
1851 size_tree = TYPE_ARRAY_MAX_SIZE (type);
1853 if (size_tree && host_integerp (size_tree, 1))
1854 size = tree_low_cst (size_tree, 1);
1857 /* If we still haven't been able to get a size, see if the language
1858 can compute a maximum size. */
1860 if (size == -1)
1862 size_tree = lang_hooks.types.max_size (type);
1864 if (size_tree && host_integerp (size_tree, 1))
1865 size = tree_low_cst (size_tree, 1);
1868 return size;
1871 /* Return the bit position of FIELD, in bits from the start of the record.
1872 This is a tree of type bitsizetype. */
1874 tree
1875 bit_position (const_tree field)
1877 return bit_from_pos (DECL_FIELD_OFFSET (field),
1878 DECL_FIELD_BIT_OFFSET (field));
1881 /* Likewise, but return as an integer. It must be representable in
1882 that way (since it could be a signed value, we don't have the
1883 option of returning -1 like int_size_in_byte can. */
1885 HOST_WIDE_INT
1886 int_bit_position (const_tree field)
1888 return tree_low_cst (bit_position (field), 0);
1891 /* Return the byte position of FIELD, in bytes from the start of the record.
1892 This is a tree of type sizetype. */
1894 tree
1895 byte_position (const_tree field)
1897 return byte_from_pos (DECL_FIELD_OFFSET (field),
1898 DECL_FIELD_BIT_OFFSET (field));
1901 /* Likewise, but return as an integer. It must be representable in
1902 that way (since it could be a signed value, we don't have the
1903 option of returning -1 like int_size_in_byte can. */
1905 HOST_WIDE_INT
1906 int_byte_position (const_tree field)
1908 return tree_low_cst (byte_position (field), 0);
1911 /* Return the strictest alignment, in bits, that T is known to have. */
1913 unsigned int
1914 expr_align (const_tree t)
1916 unsigned int align0, align1;
1918 switch (TREE_CODE (t))
1920 CASE_CONVERT: case NON_LVALUE_EXPR:
1921 /* If we have conversions, we know that the alignment of the
1922 object must meet each of the alignments of the types. */
1923 align0 = expr_align (TREE_OPERAND (t, 0));
1924 align1 = TYPE_ALIGN (TREE_TYPE (t));
1925 return MAX (align0, align1);
1927 case GIMPLE_MODIFY_STMT:
1928 /* We should never ask for the alignment of a gimple statement. */
1929 gcc_unreachable ();
1931 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
1932 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
1933 case CLEANUP_POINT_EXPR:
1934 /* These don't change the alignment of an object. */
1935 return expr_align (TREE_OPERAND (t, 0));
1937 case COND_EXPR:
1938 /* The best we can do is say that the alignment is the least aligned
1939 of the two arms. */
1940 align0 = expr_align (TREE_OPERAND (t, 1));
1941 align1 = expr_align (TREE_OPERAND (t, 2));
1942 return MIN (align0, align1);
1944 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
1945 meaningfully, it's always 1. */
1946 case LABEL_DECL: case CONST_DECL:
1947 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
1948 case FUNCTION_DECL:
1949 gcc_assert (DECL_ALIGN (t) != 0);
1950 return DECL_ALIGN (t);
1952 default:
1953 break;
1956 /* Otherwise take the alignment from that of the type. */
1957 return TYPE_ALIGN (TREE_TYPE (t));
1960 /* Return, as a tree node, the number of elements for TYPE (which is an
1961 ARRAY_TYPE) minus one. This counts only elements of the top array. */
1963 tree
1964 array_type_nelts (const_tree type)
1966 tree index_type, min, max;
1968 /* If they did it with unspecified bounds, then we should have already
1969 given an error about it before we got here. */
1970 if (! TYPE_DOMAIN (type))
1971 return error_mark_node;
1973 index_type = TYPE_DOMAIN (type);
1974 min = TYPE_MIN_VALUE (index_type);
1975 max = TYPE_MAX_VALUE (index_type);
1977 return (integer_zerop (min)
1978 ? max
1979 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
1982 /* If arg is static -- a reference to an object in static storage -- then
1983 return the object. This is not the same as the C meaning of `static'.
1984 If arg isn't static, return NULL. */
1986 tree
1987 staticp (tree arg)
1989 switch (TREE_CODE (arg))
1991 case FUNCTION_DECL:
1992 /* Nested functions are static, even though taking their address will
1993 involve a trampoline as we unnest the nested function and create
1994 the trampoline on the tree level. */
1995 return arg;
1997 case VAR_DECL:
1998 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1999 && ! DECL_THREAD_LOCAL_P (arg)
2000 && ! DECL_DLLIMPORT_P (arg)
2001 ? arg : NULL);
2003 case CONST_DECL:
2004 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2005 ? arg : NULL);
2007 case CONSTRUCTOR:
2008 return TREE_STATIC (arg) ? arg : NULL;
2010 case LABEL_DECL:
2011 case STRING_CST:
2012 return arg;
2014 case COMPONENT_REF:
2015 /* If the thing being referenced is not a field, then it is
2016 something language specific. */
2017 if (TREE_CODE (TREE_OPERAND (arg, 1)) != FIELD_DECL)
2018 return (*lang_hooks.staticp) (arg);
2020 /* If we are referencing a bitfield, we can't evaluate an
2021 ADDR_EXPR at compile time and so it isn't a constant. */
2022 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
2023 return NULL;
2025 return staticp (TREE_OPERAND (arg, 0));
2027 case BIT_FIELD_REF:
2028 return NULL;
2030 case MISALIGNED_INDIRECT_REF:
2031 case ALIGN_INDIRECT_REF:
2032 case INDIRECT_REF:
2033 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
2035 case ARRAY_REF:
2036 case ARRAY_RANGE_REF:
2037 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2038 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2039 return staticp (TREE_OPERAND (arg, 0));
2040 else
2041 return false;
2043 default:
2044 if ((unsigned int) TREE_CODE (arg)
2045 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
2046 return lang_hooks.staticp (arg);
2047 else
2048 return NULL;
2055 /* Return whether OP is a DECL whose address is function-invariant. */
2057 bool
2058 decl_address_invariant_p (const_tree op)
2060 /* The conditions below are slightly less strict than the one in
2061 staticp. */
2063 switch (TREE_CODE (op))
2065 case PARM_DECL:
2066 case RESULT_DECL:
2067 case LABEL_DECL:
2068 case FUNCTION_DECL:
2069 return true;
2071 case VAR_DECL:
2072 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2073 && !DECL_DLLIMPORT_P (op))
2074 || DECL_THREAD_LOCAL_P (op)
2075 || DECL_CONTEXT (op) == current_function_decl
2076 || decl_function_context (op) == current_function_decl)
2077 return true;
2078 break;
2080 case CONST_DECL:
2081 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
2082 || decl_function_context (op) == current_function_decl)
2083 return true;
2084 break;
2086 default:
2087 break;
2090 return false;
2094 /* Return true if T is function-invariant (internal function, does
2095 not handle arithmetic; that's handled in skip_simple_arithmetic and
2096 tree_invariant_p). */
2098 static bool tree_invariant_p (tree t);
2100 static bool
2101 tree_invariant_p_1 (tree t)
2103 tree op;
2105 if (TREE_CONSTANT (t)
2106 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
2107 return true;
2109 switch (TREE_CODE (t))
2111 case SAVE_EXPR:
2112 return true;
2114 case ADDR_EXPR:
2115 op = TREE_OPERAND (t, 0);
2116 while (handled_component_p (op))
2118 switch (TREE_CODE (op))
2120 case ARRAY_REF:
2121 case ARRAY_RANGE_REF:
2122 if (!tree_invariant_p (TREE_OPERAND (op, 1))
2123 || TREE_OPERAND (op, 2) != NULL_TREE
2124 || TREE_OPERAND (op, 3) != NULL_TREE)
2125 return false;
2126 break;
2128 case COMPONENT_REF:
2129 if (TREE_OPERAND (op, 2) != NULL_TREE)
2130 return false;
2131 break;
2133 default:;
2135 op = TREE_OPERAND (op, 0);
2138 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
2140 default:
2141 break;
2144 return false;
2147 /* Return true if T is function-invariant. */
2149 static bool
2150 tree_invariant_p (tree t)
2152 tree inner = skip_simple_arithmetic (t);
2153 return tree_invariant_p_1 (inner);
2156 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2157 Do this to any expression which may be used in more than one place,
2158 but must be evaluated only once.
2160 Normally, expand_expr would reevaluate the expression each time.
2161 Calling save_expr produces something that is evaluated and recorded
2162 the first time expand_expr is called on it. Subsequent calls to
2163 expand_expr just reuse the recorded value.
2165 The call to expand_expr that generates code that actually computes
2166 the value is the first call *at compile time*. Subsequent calls
2167 *at compile time* generate code to use the saved value.
2168 This produces correct result provided that *at run time* control
2169 always flows through the insns made by the first expand_expr
2170 before reaching the other places where the save_expr was evaluated.
2171 You, the caller of save_expr, must make sure this is so.
2173 Constants, and certain read-only nodes, are returned with no
2174 SAVE_EXPR because that is safe. Expressions containing placeholders
2175 are not touched; see tree.def for an explanation of what these
2176 are used for. */
2178 tree
2179 save_expr (tree expr)
2181 tree t = fold (expr);
2182 tree inner;
2184 /* If the tree evaluates to a constant, then we don't want to hide that
2185 fact (i.e. this allows further folding, and direct checks for constants).
2186 However, a read-only object that has side effects cannot be bypassed.
2187 Since it is no problem to reevaluate literals, we just return the
2188 literal node. */
2189 inner = skip_simple_arithmetic (t);
2190 if (TREE_CODE (inner) == ERROR_MARK)
2191 return inner;
2193 if (tree_invariant_p_1 (inner))
2194 return t;
2196 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2197 it means that the size or offset of some field of an object depends on
2198 the value within another field.
2200 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2201 and some variable since it would then need to be both evaluated once and
2202 evaluated more than once. Front-ends must assure this case cannot
2203 happen by surrounding any such subexpressions in their own SAVE_EXPR
2204 and forcing evaluation at the proper time. */
2205 if (contains_placeholder_p (inner))
2206 return t;
2208 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
2210 /* This expression might be placed ahead of a jump to ensure that the
2211 value was computed on both sides of the jump. So make sure it isn't
2212 eliminated as dead. */
2213 TREE_SIDE_EFFECTS (t) = 1;
2214 return t;
2217 /* Look inside EXPR and into any simple arithmetic operations. Return
2218 the innermost non-arithmetic node. */
2220 tree
2221 skip_simple_arithmetic (tree expr)
2223 tree inner;
2225 /* We don't care about whether this can be used as an lvalue in this
2226 context. */
2227 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
2228 expr = TREE_OPERAND (expr, 0);
2230 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2231 a constant, it will be more efficient to not make another SAVE_EXPR since
2232 it will allow better simplification and GCSE will be able to merge the
2233 computations if they actually occur. */
2234 inner = expr;
2235 while (1)
2237 if (UNARY_CLASS_P (inner))
2238 inner = TREE_OPERAND (inner, 0);
2239 else if (BINARY_CLASS_P (inner))
2241 if (tree_invariant_p (TREE_OPERAND (inner, 1)))
2242 inner = TREE_OPERAND (inner, 0);
2243 else if (tree_invariant_p (TREE_OPERAND (inner, 0)))
2244 inner = TREE_OPERAND (inner, 1);
2245 else
2246 break;
2248 else
2249 break;
2252 return inner;
2255 /* Return which tree structure is used by T. */
2257 enum tree_node_structure_enum
2258 tree_node_structure (const_tree t)
2260 const enum tree_code code = TREE_CODE (t);
2262 switch (TREE_CODE_CLASS (code))
2264 case tcc_declaration:
2266 switch (code)
2268 case FIELD_DECL:
2269 return TS_FIELD_DECL;
2270 case PARM_DECL:
2271 return TS_PARM_DECL;
2272 case VAR_DECL:
2273 return TS_VAR_DECL;
2274 case LABEL_DECL:
2275 return TS_LABEL_DECL;
2276 case RESULT_DECL:
2277 return TS_RESULT_DECL;
2278 case CONST_DECL:
2279 return TS_CONST_DECL;
2280 case TYPE_DECL:
2281 return TS_TYPE_DECL;
2282 case FUNCTION_DECL:
2283 return TS_FUNCTION_DECL;
2284 case SYMBOL_MEMORY_TAG:
2285 case NAME_MEMORY_TAG:
2286 case MEMORY_PARTITION_TAG:
2287 return TS_MEMORY_TAG;
2288 default:
2289 return TS_DECL_NON_COMMON;
2292 case tcc_type:
2293 return TS_TYPE;
2294 case tcc_reference:
2295 case tcc_comparison:
2296 case tcc_unary:
2297 case tcc_binary:
2298 case tcc_expression:
2299 case tcc_statement:
2300 case tcc_vl_exp:
2301 return TS_EXP;
2302 case tcc_gimple_stmt:
2303 return TS_GIMPLE_STATEMENT;
2304 default: /* tcc_constant and tcc_exceptional */
2305 break;
2307 switch (code)
2309 /* tcc_constant cases. */
2310 case INTEGER_CST: return TS_INT_CST;
2311 case REAL_CST: return TS_REAL_CST;
2312 case FIXED_CST: return TS_FIXED_CST;
2313 case COMPLEX_CST: return TS_COMPLEX;
2314 case VECTOR_CST: return TS_VECTOR;
2315 case STRING_CST: return TS_STRING;
2316 /* tcc_exceptional cases. */
2317 /* FIXME tuples: eventually this should be TS_BASE. For now, nothing
2318 returns TS_BASE. */
2319 case ERROR_MARK: return TS_COMMON;
2320 case IDENTIFIER_NODE: return TS_IDENTIFIER;
2321 case TREE_LIST: return TS_LIST;
2322 case TREE_VEC: return TS_VEC;
2323 case PHI_NODE: return TS_PHI_NODE;
2324 case SSA_NAME: return TS_SSA_NAME;
2325 case PLACEHOLDER_EXPR: return TS_COMMON;
2326 case STATEMENT_LIST: return TS_STATEMENT_LIST;
2327 case BLOCK: return TS_BLOCK;
2328 case CONSTRUCTOR: return TS_CONSTRUCTOR;
2329 case TREE_BINFO: return TS_BINFO;
2330 case VALUE_HANDLE: return TS_VALUE_HANDLE;
2331 case OMP_CLAUSE: return TS_OMP_CLAUSE;
2333 default:
2334 gcc_unreachable ();
2338 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
2339 or offset that depends on a field within a record. */
2341 bool
2342 contains_placeholder_p (const_tree exp)
2344 enum tree_code code;
2346 if (!exp)
2347 return 0;
2349 code = TREE_CODE (exp);
2350 if (code == PLACEHOLDER_EXPR)
2351 return 1;
2353 switch (TREE_CODE_CLASS (code))
2355 case tcc_reference:
2356 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2357 position computations since they will be converted into a
2358 WITH_RECORD_EXPR involving the reference, which will assume
2359 here will be valid. */
2360 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2362 case tcc_exceptional:
2363 if (code == TREE_LIST)
2364 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
2365 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
2366 break;
2368 case tcc_unary:
2369 case tcc_binary:
2370 case tcc_comparison:
2371 case tcc_expression:
2372 switch (code)
2374 case COMPOUND_EXPR:
2375 /* Ignoring the first operand isn't quite right, but works best. */
2376 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
2378 case COND_EXPR:
2379 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2380 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
2381 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
2383 default:
2384 break;
2387 switch (TREE_CODE_LENGTH (code))
2389 case 1:
2390 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2391 case 2:
2392 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2393 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
2394 default:
2395 return 0;
2398 case tcc_vl_exp:
2399 switch (code)
2401 case CALL_EXPR:
2403 const_tree arg;
2404 const_call_expr_arg_iterator iter;
2405 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
2406 if (CONTAINS_PLACEHOLDER_P (arg))
2407 return 1;
2408 return 0;
2410 default:
2411 return 0;
2414 default:
2415 return 0;
2417 return 0;
2420 /* Return true if any part of the computation of TYPE involves a
2421 PLACEHOLDER_EXPR. This includes size, bounds, qualifiers
2422 (for QUAL_UNION_TYPE) and field positions. */
2424 static bool
2425 type_contains_placeholder_1 (const_tree type)
2427 /* If the size contains a placeholder or the parent type (component type in
2428 the case of arrays) type involves a placeholder, this type does. */
2429 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
2430 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
2431 || (TREE_TYPE (type) != 0
2432 && type_contains_placeholder_p (TREE_TYPE (type))))
2433 return true;
2435 /* Now do type-specific checks. Note that the last part of the check above
2436 greatly limits what we have to do below. */
2437 switch (TREE_CODE (type))
2439 case VOID_TYPE:
2440 case COMPLEX_TYPE:
2441 case ENUMERAL_TYPE:
2442 case BOOLEAN_TYPE:
2443 case POINTER_TYPE:
2444 case OFFSET_TYPE:
2445 case REFERENCE_TYPE:
2446 case METHOD_TYPE:
2447 case FUNCTION_TYPE:
2448 case VECTOR_TYPE:
2449 return false;
2451 case INTEGER_TYPE:
2452 case REAL_TYPE:
2453 case FIXED_POINT_TYPE:
2454 /* Here we just check the bounds. */
2455 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
2456 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
2458 case ARRAY_TYPE:
2459 /* We're already checked the component type (TREE_TYPE), so just check
2460 the index type. */
2461 return type_contains_placeholder_p (TYPE_DOMAIN (type));
2463 case RECORD_TYPE:
2464 case UNION_TYPE:
2465 case QUAL_UNION_TYPE:
2467 tree field;
2469 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
2470 if (TREE_CODE (field) == FIELD_DECL
2471 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
2472 || (TREE_CODE (type) == QUAL_UNION_TYPE
2473 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
2474 || type_contains_placeholder_p (TREE_TYPE (field))))
2475 return true;
2477 return false;
2480 default:
2481 gcc_unreachable ();
2485 bool
2486 type_contains_placeholder_p (tree type)
2488 bool result;
2490 /* If the contains_placeholder_bits field has been initialized,
2491 then we know the answer. */
2492 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
2493 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
2495 /* Indicate that we've seen this type node, and the answer is false.
2496 This is what we want to return if we run into recursion via fields. */
2497 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
2499 /* Compute the real value. */
2500 result = type_contains_placeholder_1 (type);
2502 /* Store the real value. */
2503 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
2505 return result;
2508 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
2509 return a tree with all occurrences of references to F in a
2510 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
2511 contains only arithmetic expressions or a CALL_EXPR with a
2512 PLACEHOLDER_EXPR occurring only in its arglist. */
2514 tree
2515 substitute_in_expr (tree exp, tree f, tree r)
2517 enum tree_code code = TREE_CODE (exp);
2518 tree op0, op1, op2, op3;
2519 tree new, inner;
2521 /* We handle TREE_LIST and COMPONENT_REF separately. */
2522 if (code == TREE_LIST)
2524 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
2525 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
2526 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2527 return exp;
2529 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2531 else if (code == COMPONENT_REF)
2533 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2534 and it is the right field, replace it with R. */
2535 for (inner = TREE_OPERAND (exp, 0);
2536 REFERENCE_CLASS_P (inner);
2537 inner = TREE_OPERAND (inner, 0))
2539 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2540 && TREE_OPERAND (exp, 1) == f)
2541 return r;
2543 /* If this expression hasn't been completed let, leave it alone. */
2544 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && TREE_TYPE (inner) == 0)
2545 return exp;
2547 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2548 if (op0 == TREE_OPERAND (exp, 0))
2549 return exp;
2551 new = fold_build3 (COMPONENT_REF, TREE_TYPE (exp),
2552 op0, TREE_OPERAND (exp, 1), NULL_TREE);
2554 else
2555 switch (TREE_CODE_CLASS (code))
2557 case tcc_constant:
2558 case tcc_declaration:
2559 return exp;
2561 case tcc_exceptional:
2562 case tcc_unary:
2563 case tcc_binary:
2564 case tcc_comparison:
2565 case tcc_expression:
2566 case tcc_reference:
2567 switch (TREE_CODE_LENGTH (code))
2569 case 0:
2570 return exp;
2572 case 1:
2573 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2574 if (op0 == TREE_OPERAND (exp, 0))
2575 return exp;
2577 new = fold_build1 (code, TREE_TYPE (exp), op0);
2578 break;
2580 case 2:
2581 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2582 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2584 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2585 return exp;
2587 new = fold_build2 (code, TREE_TYPE (exp), op0, op1);
2588 break;
2590 case 3:
2591 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2592 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2593 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
2595 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2596 && op2 == TREE_OPERAND (exp, 2))
2597 return exp;
2599 new = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
2600 break;
2602 case 4:
2603 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2604 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2605 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
2606 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
2608 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2609 && op2 == TREE_OPERAND (exp, 2)
2610 && op3 == TREE_OPERAND (exp, 3))
2611 return exp;
2613 new = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2614 break;
2616 default:
2617 gcc_unreachable ();
2619 break;
2621 case tcc_vl_exp:
2623 tree copy = NULL_TREE;
2624 int i;
2626 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
2628 tree op = TREE_OPERAND (exp, i);
2629 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
2630 if (new_op != op)
2632 if (!copy)
2633 copy = copy_node (exp);
2634 TREE_OPERAND (copy, i) = new_op;
2638 if (copy)
2639 new = fold (copy);
2640 else
2641 return exp;
2643 break;
2645 default:
2646 gcc_unreachable ();
2649 TREE_READONLY (new) = TREE_READONLY (exp);
2650 return new;
2653 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
2654 for it within OBJ, a tree that is an object or a chain of references. */
2656 tree
2657 substitute_placeholder_in_expr (tree exp, tree obj)
2659 enum tree_code code = TREE_CODE (exp);
2660 tree op0, op1, op2, op3;
2662 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
2663 in the chain of OBJ. */
2664 if (code == PLACEHOLDER_EXPR)
2666 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
2667 tree elt;
2669 for (elt = obj; elt != 0;
2670 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
2671 || TREE_CODE (elt) == COND_EXPR)
2672 ? TREE_OPERAND (elt, 1)
2673 : (REFERENCE_CLASS_P (elt)
2674 || UNARY_CLASS_P (elt)
2675 || BINARY_CLASS_P (elt)
2676 || VL_EXP_CLASS_P (elt)
2677 || EXPRESSION_CLASS_P (elt))
2678 ? TREE_OPERAND (elt, 0) : 0))
2679 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
2680 return elt;
2682 for (elt = obj; elt != 0;
2683 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
2684 || TREE_CODE (elt) == COND_EXPR)
2685 ? TREE_OPERAND (elt, 1)
2686 : (REFERENCE_CLASS_P (elt)
2687 || UNARY_CLASS_P (elt)
2688 || BINARY_CLASS_P (elt)
2689 || VL_EXP_CLASS_P (elt)
2690 || EXPRESSION_CLASS_P (elt))
2691 ? TREE_OPERAND (elt, 0) : 0))
2692 if (POINTER_TYPE_P (TREE_TYPE (elt))
2693 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
2694 == need_type))
2695 return fold_build1 (INDIRECT_REF, need_type, elt);
2697 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
2698 survives until RTL generation, there will be an error. */
2699 return exp;
2702 /* TREE_LIST is special because we need to look at TREE_VALUE
2703 and TREE_CHAIN, not TREE_OPERANDS. */
2704 else if (code == TREE_LIST)
2706 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
2707 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
2708 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2709 return exp;
2711 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2713 else
2714 switch (TREE_CODE_CLASS (code))
2716 case tcc_constant:
2717 case tcc_declaration:
2718 return exp;
2720 case tcc_exceptional:
2721 case tcc_unary:
2722 case tcc_binary:
2723 case tcc_comparison:
2724 case tcc_expression:
2725 case tcc_reference:
2726 case tcc_statement:
2727 switch (TREE_CODE_LENGTH (code))
2729 case 0:
2730 return exp;
2732 case 1:
2733 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2734 if (op0 == TREE_OPERAND (exp, 0))
2735 return exp;
2736 else
2737 return fold_build1 (code, TREE_TYPE (exp), op0);
2739 case 2:
2740 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2741 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2743 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2744 return exp;
2745 else
2746 return fold_build2 (code, TREE_TYPE (exp), op0, op1);
2748 case 3:
2749 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2750 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2751 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
2753 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2754 && op2 == TREE_OPERAND (exp, 2))
2755 return exp;
2756 else
2757 return fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
2759 case 4:
2760 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2761 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2762 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
2763 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
2765 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2766 && op2 == TREE_OPERAND (exp, 2)
2767 && op3 == TREE_OPERAND (exp, 3))
2768 return exp;
2769 else
2770 return fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2772 default:
2773 gcc_unreachable ();
2775 break;
2777 case tcc_vl_exp:
2779 tree copy = NULL_TREE;
2780 int i;
2782 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
2784 tree op = TREE_OPERAND (exp, i);
2785 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
2786 if (new_op != op)
2788 if (!copy)
2789 copy = copy_node (exp);
2790 TREE_OPERAND (copy, i) = new_op;
2794 if (copy)
2795 return fold (copy);
2796 else
2797 return exp;
2800 default:
2801 gcc_unreachable ();
2805 /* Stabilize a reference so that we can use it any number of times
2806 without causing its operands to be evaluated more than once.
2807 Returns the stabilized reference. This works by means of save_expr,
2808 so see the caveats in the comments about save_expr.
2810 Also allows conversion expressions whose operands are references.
2811 Any other kind of expression is returned unchanged. */
2813 tree
2814 stabilize_reference (tree ref)
2816 tree result;
2817 enum tree_code code = TREE_CODE (ref);
2819 switch (code)
2821 case VAR_DECL:
2822 case PARM_DECL:
2823 case RESULT_DECL:
2824 /* No action is needed in this case. */
2825 return ref;
2827 CASE_CONVERT:
2828 case FLOAT_EXPR:
2829 case FIX_TRUNC_EXPR:
2830 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
2831 break;
2833 case INDIRECT_REF:
2834 result = build_nt (INDIRECT_REF,
2835 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
2836 break;
2838 case COMPONENT_REF:
2839 result = build_nt (COMPONENT_REF,
2840 stabilize_reference (TREE_OPERAND (ref, 0)),
2841 TREE_OPERAND (ref, 1), NULL_TREE);
2842 break;
2844 case BIT_FIELD_REF:
2845 result = build_nt (BIT_FIELD_REF,
2846 stabilize_reference (TREE_OPERAND (ref, 0)),
2847 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2848 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
2849 break;
2851 case ARRAY_REF:
2852 result = build_nt (ARRAY_REF,
2853 stabilize_reference (TREE_OPERAND (ref, 0)),
2854 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2855 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
2856 break;
2858 case ARRAY_RANGE_REF:
2859 result = build_nt (ARRAY_RANGE_REF,
2860 stabilize_reference (TREE_OPERAND (ref, 0)),
2861 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2862 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
2863 break;
2865 case COMPOUND_EXPR:
2866 /* We cannot wrap the first expression in a SAVE_EXPR, as then
2867 it wouldn't be ignored. This matters when dealing with
2868 volatiles. */
2869 return stabilize_reference_1 (ref);
2871 /* If arg isn't a kind of lvalue we recognize, make no change.
2872 Caller should recognize the error for an invalid lvalue. */
2873 default:
2874 return ref;
2876 case ERROR_MARK:
2877 return error_mark_node;
2880 TREE_TYPE (result) = TREE_TYPE (ref);
2881 TREE_READONLY (result) = TREE_READONLY (ref);
2882 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
2883 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
2885 return result;
2888 /* Subroutine of stabilize_reference; this is called for subtrees of
2889 references. Any expression with side-effects must be put in a SAVE_EXPR
2890 to ensure that it is only evaluated once.
2892 We don't put SAVE_EXPR nodes around everything, because assigning very
2893 simple expressions to temporaries causes us to miss good opportunities
2894 for optimizations. Among other things, the opportunity to fold in the
2895 addition of a constant into an addressing mode often gets lost, e.g.
2896 "y[i+1] += x;". In general, we take the approach that we should not make
2897 an assignment unless we are forced into it - i.e., that any non-side effect
2898 operator should be allowed, and that cse should take care of coalescing
2899 multiple utterances of the same expression should that prove fruitful. */
2901 tree
2902 stabilize_reference_1 (tree e)
2904 tree result;
2905 enum tree_code code = TREE_CODE (e);
2907 /* We cannot ignore const expressions because it might be a reference
2908 to a const array but whose index contains side-effects. But we can
2909 ignore things that are actual constant or that already have been
2910 handled by this function. */
2912 if (tree_invariant_p (e))
2913 return e;
2915 switch (TREE_CODE_CLASS (code))
2917 case tcc_exceptional:
2918 case tcc_type:
2919 case tcc_declaration:
2920 case tcc_comparison:
2921 case tcc_statement:
2922 case tcc_expression:
2923 case tcc_reference:
2924 case tcc_vl_exp:
2925 /* If the expression has side-effects, then encase it in a SAVE_EXPR
2926 so that it will only be evaluated once. */
2927 /* The reference (r) and comparison (<) classes could be handled as
2928 below, but it is generally faster to only evaluate them once. */
2929 if (TREE_SIDE_EFFECTS (e))
2930 return save_expr (e);
2931 return e;
2933 case tcc_constant:
2934 /* Constants need no processing. In fact, we should never reach
2935 here. */
2936 return e;
2938 case tcc_binary:
2939 /* Division is slow and tends to be compiled with jumps,
2940 especially the division by powers of 2 that is often
2941 found inside of an array reference. So do it just once. */
2942 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
2943 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
2944 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
2945 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
2946 return save_expr (e);
2947 /* Recursively stabilize each operand. */
2948 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
2949 stabilize_reference_1 (TREE_OPERAND (e, 1)));
2950 break;
2952 case tcc_unary:
2953 /* Recursively stabilize each operand. */
2954 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
2955 break;
2957 default:
2958 gcc_unreachable ();
2961 TREE_TYPE (result) = TREE_TYPE (e);
2962 TREE_READONLY (result) = TREE_READONLY (e);
2963 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
2964 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
2966 return result;
2969 /* Low-level constructors for expressions. */
2971 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
2972 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
2974 void
2975 recompute_tree_invariant_for_addr_expr (tree t)
2977 tree node;
2978 bool tc = true, se = false;
2980 /* We started out assuming this address is both invariant and constant, but
2981 does not have side effects. Now go down any handled components and see if
2982 any of them involve offsets that are either non-constant or non-invariant.
2983 Also check for side-effects.
2985 ??? Note that this code makes no attempt to deal with the case where
2986 taking the address of something causes a copy due to misalignment. */
2988 #define UPDATE_FLAGS(NODE) \
2989 do { tree _node = (NODE); \
2990 if (_node && !TREE_CONSTANT (_node)) tc = false; \
2991 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
2993 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
2994 node = TREE_OPERAND (node, 0))
2996 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
2997 array reference (probably made temporarily by the G++ front end),
2998 so ignore all the operands. */
2999 if ((TREE_CODE (node) == ARRAY_REF
3000 || TREE_CODE (node) == ARRAY_RANGE_REF)
3001 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
3003 UPDATE_FLAGS (TREE_OPERAND (node, 1));
3004 if (TREE_OPERAND (node, 2))
3005 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3006 if (TREE_OPERAND (node, 3))
3007 UPDATE_FLAGS (TREE_OPERAND (node, 3));
3009 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3010 FIELD_DECL, apparently. The G++ front end can put something else
3011 there, at least temporarily. */
3012 else if (TREE_CODE (node) == COMPONENT_REF
3013 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
3015 if (TREE_OPERAND (node, 2))
3016 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3018 else if (TREE_CODE (node) == BIT_FIELD_REF)
3019 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3022 node = lang_hooks.expr_to_decl (node, &tc, &se);
3024 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3025 the address, since &(*a)->b is a form of addition. If it's a constant, the
3026 address is constant too. If it's a decl, its address is constant if the
3027 decl is static. Everything else is not constant and, furthermore,
3028 taking the address of a volatile variable is not volatile. */
3029 if (TREE_CODE (node) == INDIRECT_REF)
3030 UPDATE_FLAGS (TREE_OPERAND (node, 0));
3031 else if (CONSTANT_CLASS_P (node))
3033 else if (DECL_P (node))
3034 tc &= (staticp (node) != NULL_TREE);
3035 else
3037 tc = false;
3038 se |= TREE_SIDE_EFFECTS (node);
3042 TREE_CONSTANT (t) = tc;
3043 TREE_SIDE_EFFECTS (t) = se;
3044 #undef UPDATE_FLAGS
3047 /* Build an expression of code CODE, data type TYPE, and operands as
3048 specified. Expressions and reference nodes can be created this way.
3049 Constants, decls, types and misc nodes cannot be.
3051 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3052 enough for all extant tree codes. */
3054 tree
3055 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
3057 tree t;
3059 gcc_assert (TREE_CODE_LENGTH (code) == 0);
3061 t = make_node_stat (code PASS_MEM_STAT);
3062 TREE_TYPE (t) = tt;
3064 return t;
3067 tree
3068 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
3070 int length = sizeof (struct tree_exp);
3071 #ifdef GATHER_STATISTICS
3072 tree_node_kind kind;
3073 #endif
3074 tree t;
3076 #ifdef GATHER_STATISTICS
3077 switch (TREE_CODE_CLASS (code))
3079 case tcc_statement: /* an expression with side effects */
3080 kind = s_kind;
3081 break;
3082 case tcc_reference: /* a reference */
3083 kind = r_kind;
3084 break;
3085 default:
3086 kind = e_kind;
3087 break;
3090 tree_node_counts[(int) kind]++;
3091 tree_node_sizes[(int) kind] += length;
3092 #endif
3094 gcc_assert (TREE_CODE_LENGTH (code) == 1);
3096 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
3098 memset (t, 0, sizeof (struct tree_common));
3100 TREE_SET_CODE (t, code);
3102 TREE_TYPE (t) = type;
3103 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
3104 TREE_OPERAND (t, 0) = node;
3105 TREE_BLOCK (t) = NULL_TREE;
3106 if (node && !TYPE_P (node))
3108 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
3109 TREE_READONLY (t) = TREE_READONLY (node);
3112 if (TREE_CODE_CLASS (code) == tcc_statement)
3113 TREE_SIDE_EFFECTS (t) = 1;
3114 else switch (code)
3116 case VA_ARG_EXPR:
3117 /* All of these have side-effects, no matter what their
3118 operands are. */
3119 TREE_SIDE_EFFECTS (t) = 1;
3120 TREE_READONLY (t) = 0;
3121 break;
3123 case MISALIGNED_INDIRECT_REF:
3124 case ALIGN_INDIRECT_REF:
3125 case INDIRECT_REF:
3126 /* Whether a dereference is readonly has nothing to do with whether
3127 its operand is readonly. */
3128 TREE_READONLY (t) = 0;
3129 break;
3131 case ADDR_EXPR:
3132 if (node)
3133 recompute_tree_invariant_for_addr_expr (t);
3134 break;
3136 default:
3137 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
3138 && node && !TYPE_P (node)
3139 && TREE_CONSTANT (node))
3140 TREE_CONSTANT (t) = 1;
3141 if (TREE_CODE_CLASS (code) == tcc_reference
3142 && node && TREE_THIS_VOLATILE (node))
3143 TREE_THIS_VOLATILE (t) = 1;
3144 break;
3147 return t;
3150 #define PROCESS_ARG(N) \
3151 do { \
3152 TREE_OPERAND (t, N) = arg##N; \
3153 if (arg##N &&!TYPE_P (arg##N)) \
3155 if (TREE_SIDE_EFFECTS (arg##N)) \
3156 side_effects = 1; \
3157 if (!TREE_READONLY (arg##N)) \
3158 read_only = 0; \
3159 if (!TREE_CONSTANT (arg##N)) \
3160 constant = 0; \
3162 } while (0)
3164 tree
3165 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
3167 bool constant, read_only, side_effects;
3168 tree t;
3170 gcc_assert (TREE_CODE_LENGTH (code) == 2);
3172 #if 1
3173 /* FIXME tuples: Statement's aren't expressions! */
3174 if (code == GIMPLE_MODIFY_STMT)
3175 return build_gimple_modify_stmt_stat (arg0, arg1 PASS_MEM_STAT);
3176 #else
3177 /* Must use build_gimple_modify_stmt to construct GIMPLE_MODIFY_STMTs. */
3178 gcc_assert (code != GIMPLE_MODIFY_STMT);
3179 #endif
3181 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
3182 && arg0 && arg1 && tt && POINTER_TYPE_P (tt))
3183 gcc_assert (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST);
3185 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
3186 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
3187 && INTEGRAL_TYPE_P (TREE_TYPE (arg1))
3188 && useless_type_conversion_p (sizetype, TREE_TYPE (arg1)));
3190 t = make_node_stat (code PASS_MEM_STAT);
3191 TREE_TYPE (t) = tt;
3193 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3194 result based on those same flags for the arguments. But if the
3195 arguments aren't really even `tree' expressions, we shouldn't be trying
3196 to do this. */
3198 /* Expressions without side effects may be constant if their
3199 arguments are as well. */
3200 constant = (TREE_CODE_CLASS (code) == tcc_comparison
3201 || TREE_CODE_CLASS (code) == tcc_binary);
3202 read_only = 1;
3203 side_effects = TREE_SIDE_EFFECTS (t);
3205 PROCESS_ARG(0);
3206 PROCESS_ARG(1);
3208 TREE_READONLY (t) = read_only;
3209 TREE_CONSTANT (t) = constant;
3210 TREE_SIDE_EFFECTS (t) = side_effects;
3211 TREE_THIS_VOLATILE (t)
3212 = (TREE_CODE_CLASS (code) == tcc_reference
3213 && arg0 && TREE_THIS_VOLATILE (arg0));
3215 return t;
3219 /* Build a GIMPLE_MODIFY_STMT node. This tree code doesn't have a
3220 type, so we can't use build2 (a.k.a. build2_stat). */
3222 tree
3223 build_gimple_modify_stmt_stat (tree arg0, tree arg1 MEM_STAT_DECL)
3225 tree t;
3227 t = make_node_stat (GIMPLE_MODIFY_STMT PASS_MEM_STAT);
3228 /* ?? We don't care about setting flags for tuples... */
3229 GIMPLE_STMT_OPERAND (t, 0) = arg0;
3230 GIMPLE_STMT_OPERAND (t, 1) = arg1;
3231 return t;
3234 tree
3235 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3236 tree arg2 MEM_STAT_DECL)
3238 bool constant, read_only, side_effects;
3239 tree t;
3241 gcc_assert (TREE_CODE_LENGTH (code) == 3);
3242 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3244 t = make_node_stat (code PASS_MEM_STAT);
3245 TREE_TYPE (t) = tt;
3247 /* As a special exception, if COND_EXPR has NULL branches, we
3248 assume that it is a gimple statement and always consider
3249 it to have side effects. */
3250 if (code == COND_EXPR
3251 && tt == void_type_node
3252 && arg1 == NULL_TREE
3253 && arg2 == NULL_TREE)
3254 side_effects = true;
3255 else
3256 side_effects = TREE_SIDE_EFFECTS (t);
3258 PROCESS_ARG(0);
3259 PROCESS_ARG(1);
3260 PROCESS_ARG(2);
3262 TREE_SIDE_EFFECTS (t) = side_effects;
3263 TREE_THIS_VOLATILE (t)
3264 = (TREE_CODE_CLASS (code) == tcc_reference
3265 && arg0 && TREE_THIS_VOLATILE (arg0));
3267 return t;
3270 tree
3271 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3272 tree arg2, tree arg3 MEM_STAT_DECL)
3274 bool constant, read_only, side_effects;
3275 tree t;
3277 gcc_assert (TREE_CODE_LENGTH (code) == 4);
3279 t = make_node_stat (code PASS_MEM_STAT);
3280 TREE_TYPE (t) = tt;
3282 side_effects = TREE_SIDE_EFFECTS (t);
3284 PROCESS_ARG(0);
3285 PROCESS_ARG(1);
3286 PROCESS_ARG(2);
3287 PROCESS_ARG(3);
3289 TREE_SIDE_EFFECTS (t) = side_effects;
3290 TREE_THIS_VOLATILE (t)
3291 = (TREE_CODE_CLASS (code) == tcc_reference
3292 && arg0 && TREE_THIS_VOLATILE (arg0));
3294 return t;
3297 tree
3298 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3299 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
3301 bool constant, read_only, side_effects;
3302 tree t;
3304 gcc_assert (TREE_CODE_LENGTH (code) == 5);
3306 t = make_node_stat (code PASS_MEM_STAT);
3307 TREE_TYPE (t) = tt;
3309 side_effects = TREE_SIDE_EFFECTS (t);
3311 PROCESS_ARG(0);
3312 PROCESS_ARG(1);
3313 PROCESS_ARG(2);
3314 PROCESS_ARG(3);
3315 PROCESS_ARG(4);
3317 TREE_SIDE_EFFECTS (t) = side_effects;
3318 TREE_THIS_VOLATILE (t)
3319 = (TREE_CODE_CLASS (code) == tcc_reference
3320 && arg0 && TREE_THIS_VOLATILE (arg0));
3322 return t;
3325 tree
3326 build7_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3327 tree arg2, tree arg3, tree arg4, tree arg5,
3328 tree arg6 MEM_STAT_DECL)
3330 bool constant, read_only, side_effects;
3331 tree t;
3333 gcc_assert (code == TARGET_MEM_REF);
3335 t = make_node_stat (code PASS_MEM_STAT);
3336 TREE_TYPE (t) = tt;
3338 side_effects = TREE_SIDE_EFFECTS (t);
3340 PROCESS_ARG(0);
3341 PROCESS_ARG(1);
3342 PROCESS_ARG(2);
3343 PROCESS_ARG(3);
3344 PROCESS_ARG(4);
3345 PROCESS_ARG(5);
3346 PROCESS_ARG(6);
3348 TREE_SIDE_EFFECTS (t) = side_effects;
3349 TREE_THIS_VOLATILE (t) = 0;
3351 return t;
3354 /* Similar except don't specify the TREE_TYPE
3355 and leave the TREE_SIDE_EFFECTS as 0.
3356 It is permissible for arguments to be null,
3357 or even garbage if their values do not matter. */
3359 tree
3360 build_nt (enum tree_code code, ...)
3362 tree t;
3363 int length;
3364 int i;
3365 va_list p;
3367 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3369 va_start (p, code);
3371 t = make_node (code);
3372 length = TREE_CODE_LENGTH (code);
3374 for (i = 0; i < length; i++)
3375 TREE_OPERAND (t, i) = va_arg (p, tree);
3377 va_end (p);
3378 return t;
3381 /* Similar to build_nt, but for creating a CALL_EXPR object with
3382 ARGLIST passed as a list. */
3384 tree
3385 build_nt_call_list (tree fn, tree arglist)
3387 tree t;
3388 int i;
3390 t = build_vl_exp (CALL_EXPR, list_length (arglist) + 3);
3391 CALL_EXPR_FN (t) = fn;
3392 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
3393 for (i = 0; arglist; arglist = TREE_CHAIN (arglist), i++)
3394 CALL_EXPR_ARG (t, i) = TREE_VALUE (arglist);
3395 return t;
3398 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
3399 We do NOT enter this node in any sort of symbol table.
3401 layout_decl is used to set up the decl's storage layout.
3402 Other slots are initialized to 0 or null pointers. */
3404 tree
3405 build_decl_stat (enum tree_code code, tree name, tree type MEM_STAT_DECL)
3407 tree t;
3409 t = make_node_stat (code PASS_MEM_STAT);
3411 /* if (type == error_mark_node)
3412 type = integer_type_node; */
3413 /* That is not done, deliberately, so that having error_mark_node
3414 as the type can suppress useless errors in the use of this variable. */
3416 DECL_NAME (t) = name;
3417 TREE_TYPE (t) = type;
3419 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
3420 layout_decl (t, 0);
3422 return t;
3425 /* Builds and returns function declaration with NAME and TYPE. */
3427 tree
3428 build_fn_decl (const char *name, tree type)
3430 tree id = get_identifier (name);
3431 tree decl = build_decl (FUNCTION_DECL, id, type);
3433 DECL_EXTERNAL (decl) = 1;
3434 TREE_PUBLIC (decl) = 1;
3435 DECL_ARTIFICIAL (decl) = 1;
3436 TREE_NOTHROW (decl) = 1;
3438 return decl;
3442 /* BLOCK nodes are used to represent the structure of binding contours
3443 and declarations, once those contours have been exited and their contents
3444 compiled. This information is used for outputting debugging info. */
3446 tree
3447 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
3449 tree block = make_node (BLOCK);
3451 BLOCK_VARS (block) = vars;
3452 BLOCK_SUBBLOCKS (block) = subblocks;
3453 BLOCK_SUPERCONTEXT (block) = supercontext;
3454 BLOCK_CHAIN (block) = chain;
3455 return block;
3458 expanded_location
3459 expand_location (source_location loc)
3461 expanded_location xloc;
3462 if (loc == 0)
3464 xloc.file = NULL;
3465 xloc.line = 0;
3466 xloc.column = 0;
3468 else
3470 const struct line_map *map = linemap_lookup (line_table, loc);
3471 xloc.file = map->to_file;
3472 xloc.line = SOURCE_LINE (map, loc);
3473 xloc.column = SOURCE_COLUMN (map, loc);
3475 return xloc;
3479 /* Source location accessor functions. */
3482 /* The source location of this expression. Non-tree_exp nodes such as
3483 decls and constants can be shared among multiple locations, so
3484 return nothing. */
3485 location_t
3486 expr_location (const_tree node)
3488 if (GIMPLE_STMT_P (node))
3489 return GIMPLE_STMT_LOCUS (node);
3490 return EXPR_P (node) ? node->exp.locus : UNKNOWN_LOCATION;
3493 void
3494 set_expr_location (tree node, location_t locus)
3496 if (GIMPLE_STMT_P (node))
3497 GIMPLE_STMT_LOCUS (node) = locus;
3498 else
3499 EXPR_CHECK (node)->exp.locus = locus;
3502 bool
3503 expr_has_location (const_tree node)
3505 return expr_location (node) != UNKNOWN_LOCATION;
3508 source_location *
3509 expr_locus (const_tree node)
3511 if (GIMPLE_STMT_P (node))
3512 return CONST_CAST (source_location *, &GIMPLE_STMT_LOCUS (node));
3513 return (EXPR_P (node)
3514 ? CONST_CAST (source_location *, &node->exp.locus)
3515 : (source_location *) NULL);
3518 void
3519 set_expr_locus (tree node, source_location *loc)
3521 if (loc == NULL)
3523 if (GIMPLE_STMT_P (node))
3524 GIMPLE_STMT_LOCUS (node) = UNKNOWN_LOCATION;
3525 else
3526 EXPR_CHECK (node)->exp.locus = UNKNOWN_LOCATION;
3528 else
3530 if (GIMPLE_STMT_P (node))
3531 GIMPLE_STMT_LOCUS (node) = *loc;
3532 else
3533 EXPR_CHECK (node)->exp.locus = *loc;
3537 /* Return the file name of the location of NODE. */
3538 const char *
3539 expr_filename (const_tree node)
3541 if (GIMPLE_STMT_P (node))
3542 return LOCATION_FILE (GIMPLE_STMT_LOCUS (node));
3543 return LOCATION_FILE (EXPR_CHECK (node)->exp.locus);
3546 /* Return the line number of the location of NODE. */
3548 expr_lineno (const_tree node)
3550 if (GIMPLE_STMT_P (node))
3551 return LOCATION_LINE (GIMPLE_STMT_LOCUS (node));
3552 return LOCATION_LINE (EXPR_CHECK (node)->exp.locus);
3556 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
3557 is ATTRIBUTE. */
3559 tree
3560 build_decl_attribute_variant (tree ddecl, tree attribute)
3562 DECL_ATTRIBUTES (ddecl) = attribute;
3563 return ddecl;
3566 /* Borrowed from hashtab.c iterative_hash implementation. */
3567 #define mix(a,b,c) \
3569 a -= b; a -= c; a ^= (c>>13); \
3570 b -= c; b -= a; b ^= (a<< 8); \
3571 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
3572 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
3573 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
3574 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
3575 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
3576 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
3577 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
3581 /* Produce good hash value combining VAL and VAL2. */
3582 static inline hashval_t
3583 iterative_hash_hashval_t (hashval_t val, hashval_t val2)
3585 /* the golden ratio; an arbitrary value. */
3586 hashval_t a = 0x9e3779b9;
3588 mix (a, val, val2);
3589 return val2;
3592 /* Produce good hash value combining PTR and VAL2. */
3593 static inline hashval_t
3594 iterative_hash_pointer (const void *ptr, hashval_t val2)
3596 if (sizeof (ptr) == sizeof (hashval_t))
3597 return iterative_hash_hashval_t ((size_t) ptr, val2);
3598 else
3600 hashval_t a = (hashval_t) (size_t) ptr;
3601 /* Avoid warnings about shifting of more than the width of the type on
3602 hosts that won't execute this path. */
3603 int zero = 0;
3604 hashval_t b = (hashval_t) ((size_t) ptr >> (sizeof (hashval_t) * 8 + zero));
3605 mix (a, b, val2);
3606 return val2;
3610 /* Produce good hash value combining VAL and VAL2. */
3611 static inline hashval_t
3612 iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
3614 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
3615 return iterative_hash_hashval_t (val, val2);
3616 else
3618 hashval_t a = (hashval_t) val;
3619 /* Avoid warnings about shifting of more than the width of the type on
3620 hosts that won't execute this path. */
3621 int zero = 0;
3622 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
3623 mix (a, b, val2);
3624 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
3626 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
3627 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
3628 mix (a, b, val2);
3630 return val2;
3634 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
3635 is ATTRIBUTE and its qualifiers are QUALS.
3637 Record such modified types already made so we don't make duplicates. */
3639 static tree
3640 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
3642 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
3644 hashval_t hashcode = 0;
3645 tree ntype;
3646 enum tree_code code = TREE_CODE (ttype);
3648 /* Building a distinct copy of a tagged type is inappropriate; it
3649 causes breakage in code that expects there to be a one-to-one
3650 relationship between a struct and its fields.
3651 build_duplicate_type is another solution (as used in
3652 handle_transparent_union_attribute), but that doesn't play well
3653 with the stronger C++ type identity model. */
3654 if (TREE_CODE (ttype) == RECORD_TYPE
3655 || TREE_CODE (ttype) == UNION_TYPE
3656 || TREE_CODE (ttype) == QUAL_UNION_TYPE
3657 || TREE_CODE (ttype) == ENUMERAL_TYPE)
3659 warning (OPT_Wattributes,
3660 "ignoring attributes applied to %qT after definition",
3661 TYPE_MAIN_VARIANT (ttype));
3662 return build_qualified_type (ttype, quals);
3665 ntype = build_distinct_type_copy (ttype);
3667 TYPE_ATTRIBUTES (ntype) = attribute;
3668 set_type_quals (ntype, TYPE_UNQUALIFIED);
3670 hashcode = iterative_hash_object (code, hashcode);
3671 if (TREE_TYPE (ntype))
3672 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
3673 hashcode);
3674 hashcode = attribute_hash_list (attribute, hashcode);
3676 switch (TREE_CODE (ntype))
3678 case FUNCTION_TYPE:
3679 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
3680 break;
3681 case ARRAY_TYPE:
3682 if (TYPE_DOMAIN (ntype))
3683 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
3684 hashcode);
3685 break;
3686 case INTEGER_TYPE:
3687 hashcode = iterative_hash_object
3688 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
3689 hashcode = iterative_hash_object
3690 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
3691 break;
3692 case REAL_TYPE:
3693 case FIXED_POINT_TYPE:
3695 unsigned int precision = TYPE_PRECISION (ntype);
3696 hashcode = iterative_hash_object (precision, hashcode);
3698 break;
3699 default:
3700 break;
3703 ntype = type_hash_canon (hashcode, ntype);
3705 /* If the target-dependent attributes make NTYPE different from
3706 its canonical type, we will need to use structural equality
3707 checks for this qualified type. */
3708 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
3709 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
3710 || !targetm.comp_type_attributes (ntype, ttype))
3711 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
3712 else
3713 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
3715 ttype = build_qualified_type (ntype, quals);
3717 else if (TYPE_QUALS (ttype) != quals)
3718 ttype = build_qualified_type (ttype, quals);
3720 return ttype;
3724 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
3725 is ATTRIBUTE.
3727 Record such modified types already made so we don't make duplicates. */
3729 tree
3730 build_type_attribute_variant (tree ttype, tree attribute)
3732 return build_type_attribute_qual_variant (ttype, attribute,
3733 TYPE_QUALS (ttype));
3736 /* Return nonzero if IDENT is a valid name for attribute ATTR,
3737 or zero if not.
3739 We try both `text' and `__text__', ATTR may be either one. */
3740 /* ??? It might be a reasonable simplification to require ATTR to be only
3741 `text'. One might then also require attribute lists to be stored in
3742 their canonicalized form. */
3744 static int
3745 is_attribute_with_length_p (const char *attr, int attr_len, const_tree ident)
3747 int ident_len;
3748 const char *p;
3750 if (TREE_CODE (ident) != IDENTIFIER_NODE)
3751 return 0;
3753 p = IDENTIFIER_POINTER (ident);
3754 ident_len = IDENTIFIER_LENGTH (ident);
3756 if (ident_len == attr_len
3757 && strcmp (attr, p) == 0)
3758 return 1;
3760 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
3761 if (attr[0] == '_')
3763 gcc_assert (attr[1] == '_');
3764 gcc_assert (attr[attr_len - 2] == '_');
3765 gcc_assert (attr[attr_len - 1] == '_');
3766 if (ident_len == attr_len - 4
3767 && strncmp (attr + 2, p, attr_len - 4) == 0)
3768 return 1;
3770 else
3772 if (ident_len == attr_len + 4
3773 && p[0] == '_' && p[1] == '_'
3774 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
3775 && strncmp (attr, p + 2, attr_len) == 0)
3776 return 1;
3779 return 0;
3782 /* Return nonzero if IDENT is a valid name for attribute ATTR,
3783 or zero if not.
3785 We try both `text' and `__text__', ATTR may be either one. */
3788 is_attribute_p (const char *attr, const_tree ident)
3790 return is_attribute_with_length_p (attr, strlen (attr), ident);
3793 /* Given an attribute name and a list of attributes, return a pointer to the
3794 attribute's list element if the attribute is part of the list, or NULL_TREE
3795 if not found. If the attribute appears more than once, this only
3796 returns the first occurrence; the TREE_CHAIN of the return value should
3797 be passed back in if further occurrences are wanted. */
3799 tree
3800 lookup_attribute (const char *attr_name, tree list)
3802 tree l;
3803 size_t attr_len = strlen (attr_name);
3805 for (l = list; l; l = TREE_CHAIN (l))
3807 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
3808 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
3809 return l;
3811 return NULL_TREE;
3814 /* Remove any instances of attribute ATTR_NAME in LIST and return the
3815 modified list. */
3817 tree
3818 remove_attribute (const char *attr_name, tree list)
3820 tree *p;
3821 size_t attr_len = strlen (attr_name);
3823 for (p = &list; *p; )
3825 tree l = *p;
3826 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
3827 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
3828 *p = TREE_CHAIN (l);
3829 else
3830 p = &TREE_CHAIN (l);
3833 return list;
3836 /* Return an attribute list that is the union of a1 and a2. */
3838 tree
3839 merge_attributes (tree a1, tree a2)
3841 tree attributes;
3843 /* Either one unset? Take the set one. */
3845 if ((attributes = a1) == 0)
3846 attributes = a2;
3848 /* One that completely contains the other? Take it. */
3850 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
3852 if (attribute_list_contained (a2, a1))
3853 attributes = a2;
3854 else
3856 /* Pick the longest list, and hang on the other list. */
3858 if (list_length (a1) < list_length (a2))
3859 attributes = a2, a2 = a1;
3861 for (; a2 != 0; a2 = TREE_CHAIN (a2))
3863 tree a;
3864 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3865 attributes);
3866 a != NULL_TREE;
3867 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3868 TREE_CHAIN (a)))
3870 if (TREE_VALUE (a) != NULL
3871 && TREE_CODE (TREE_VALUE (a)) == TREE_LIST
3872 && TREE_VALUE (a2) != NULL
3873 && TREE_CODE (TREE_VALUE (a2)) == TREE_LIST)
3875 if (simple_cst_list_equal (TREE_VALUE (a),
3876 TREE_VALUE (a2)) == 1)
3877 break;
3879 else if (simple_cst_equal (TREE_VALUE (a),
3880 TREE_VALUE (a2)) == 1)
3881 break;
3883 if (a == NULL_TREE)
3885 a1 = copy_node (a2);
3886 TREE_CHAIN (a1) = attributes;
3887 attributes = a1;
3892 return attributes;
3895 /* Given types T1 and T2, merge their attributes and return
3896 the result. */
3898 tree
3899 merge_type_attributes (tree t1, tree t2)
3901 return merge_attributes (TYPE_ATTRIBUTES (t1),
3902 TYPE_ATTRIBUTES (t2));
3905 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
3906 the result. */
3908 tree
3909 merge_decl_attributes (tree olddecl, tree newdecl)
3911 return merge_attributes (DECL_ATTRIBUTES (olddecl),
3912 DECL_ATTRIBUTES (newdecl));
3915 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
3917 /* Specialization of merge_decl_attributes for various Windows targets.
3919 This handles the following situation:
3921 __declspec (dllimport) int foo;
3922 int foo;
3924 The second instance of `foo' nullifies the dllimport. */
3926 tree
3927 merge_dllimport_decl_attributes (tree old, tree new)
3929 tree a;
3930 int delete_dllimport_p = 1;
3932 /* What we need to do here is remove from `old' dllimport if it doesn't
3933 appear in `new'. dllimport behaves like extern: if a declaration is
3934 marked dllimport and a definition appears later, then the object
3935 is not dllimport'd. We also remove a `new' dllimport if the old list
3936 contains dllexport: dllexport always overrides dllimport, regardless
3937 of the order of declaration. */
3938 if (!VAR_OR_FUNCTION_DECL_P (new))
3939 delete_dllimport_p = 0;
3940 else if (DECL_DLLIMPORT_P (new)
3941 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
3943 DECL_DLLIMPORT_P (new) = 0;
3944 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
3945 "dllimport ignored", new);
3947 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new))
3949 /* Warn about overriding a symbol that has already been used. eg:
3950 extern int __attribute__ ((dllimport)) foo;
3951 int* bar () {return &foo;}
3952 int foo;
3954 if (TREE_USED (old))
3956 warning (0, "%q+D redeclared without dllimport attribute "
3957 "after being referenced with dll linkage", new);
3958 /* If we have used a variable's address with dllimport linkage,
3959 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
3960 decl may already have had TREE_CONSTANT computed.
3961 We still remove the attribute so that assembler code refers
3962 to '&foo rather than '_imp__foo'. */
3963 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
3964 DECL_DLLIMPORT_P (new) = 1;
3967 /* Let an inline definition silently override the external reference,
3968 but otherwise warn about attribute inconsistency. */
3969 else if (TREE_CODE (new) == VAR_DECL
3970 || !DECL_DECLARED_INLINE_P (new))
3971 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
3972 "previous dllimport ignored", new);
3974 else
3975 delete_dllimport_p = 0;
3977 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new));
3979 if (delete_dllimport_p)
3981 tree prev, t;
3982 const size_t attr_len = strlen ("dllimport");
3984 /* Scan the list for dllimport and delete it. */
3985 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
3987 if (is_attribute_with_length_p ("dllimport", attr_len,
3988 TREE_PURPOSE (t)))
3990 if (prev == NULL_TREE)
3991 a = TREE_CHAIN (a);
3992 else
3993 TREE_CHAIN (prev) = TREE_CHAIN (t);
3994 break;
3999 return a;
4002 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
4003 struct attribute_spec.handler. */
4005 tree
4006 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
4007 bool *no_add_attrs)
4009 tree node = *pnode;
4011 /* These attributes may apply to structure and union types being created,
4012 but otherwise should pass to the declaration involved. */
4013 if (!DECL_P (node))
4015 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
4016 | (int) ATTR_FLAG_ARRAY_NEXT))
4018 *no_add_attrs = true;
4019 return tree_cons (name, args, NULL_TREE);
4021 if (TREE_CODE (node) == RECORD_TYPE
4022 || TREE_CODE (node) == UNION_TYPE)
4024 node = TYPE_NAME (node);
4025 if (!node)
4026 return NULL_TREE;
4028 else
4030 warning (OPT_Wattributes, "%qs attribute ignored",
4031 IDENTIFIER_POINTER (name));
4032 *no_add_attrs = true;
4033 return NULL_TREE;
4037 if (TREE_CODE (node) != FUNCTION_DECL
4038 && TREE_CODE (node) != VAR_DECL
4039 && TREE_CODE (node) != TYPE_DECL)
4041 *no_add_attrs = true;
4042 warning (OPT_Wattributes, "%qs attribute ignored",
4043 IDENTIFIER_POINTER (name));
4044 return NULL_TREE;
4047 if (TREE_CODE (node) == TYPE_DECL
4048 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
4049 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
4051 *no_add_attrs = true;
4052 warning (OPT_Wattributes, "%qs attribute ignored",
4053 IDENTIFIER_POINTER (name));
4054 return NULL_TREE;
4057 /* Report error on dllimport ambiguities seen now before they cause
4058 any damage. */
4059 else if (is_attribute_p ("dllimport", name))
4061 /* Honor any target-specific overrides. */
4062 if (!targetm.valid_dllimport_attribute_p (node))
4063 *no_add_attrs = true;
4065 else if (TREE_CODE (node) == FUNCTION_DECL
4066 && DECL_DECLARED_INLINE_P (node))
4068 warning (OPT_Wattributes, "inline function %q+D declared as "
4069 " dllimport: attribute ignored", node);
4070 *no_add_attrs = true;
4072 /* Like MS, treat definition of dllimported variables and
4073 non-inlined functions on declaration as syntax errors. */
4074 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
4076 error ("function %q+D definition is marked dllimport", node);
4077 *no_add_attrs = true;
4080 else if (TREE_CODE (node) == VAR_DECL)
4082 if (DECL_INITIAL (node))
4084 error ("variable %q+D definition is marked dllimport",
4085 node);
4086 *no_add_attrs = true;
4089 /* `extern' needn't be specified with dllimport.
4090 Specify `extern' now and hope for the best. Sigh. */
4091 DECL_EXTERNAL (node) = 1;
4092 /* Also, implicitly give dllimport'd variables declared within
4093 a function global scope, unless declared static. */
4094 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
4095 TREE_PUBLIC (node) = 1;
4098 if (*no_add_attrs == false)
4099 DECL_DLLIMPORT_P (node) = 1;
4102 /* Report error if symbol is not accessible at global scope. */
4103 if (!TREE_PUBLIC (node)
4104 && (TREE_CODE (node) == VAR_DECL
4105 || TREE_CODE (node) == FUNCTION_DECL))
4107 error ("external linkage required for symbol %q+D because of "
4108 "%qs attribute", node, IDENTIFIER_POINTER (name));
4109 *no_add_attrs = true;
4112 /* A dllexport'd entity must have default visibility so that other
4113 program units (shared libraries or the main executable) can see
4114 it. A dllimport'd entity must have default visibility so that
4115 the linker knows that undefined references within this program
4116 unit can be resolved by the dynamic linker. */
4117 if (!*no_add_attrs)
4119 if (DECL_VISIBILITY_SPECIFIED (node)
4120 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
4121 error ("%qs implies default visibility, but %qD has already "
4122 "been declared with a different visibility",
4123 IDENTIFIER_POINTER (name), node);
4124 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
4125 DECL_VISIBILITY_SPECIFIED (node) = 1;
4128 return NULL_TREE;
4131 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
4133 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
4134 of the various TYPE_QUAL values. */
4136 static void
4137 set_type_quals (tree type, int type_quals)
4139 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
4140 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
4141 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
4144 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
4146 bool
4147 check_qualified_type (const_tree cand, const_tree base, int type_quals)
4149 return (TYPE_QUALS (cand) == type_quals
4150 && TYPE_NAME (cand) == TYPE_NAME (base)
4151 /* Apparently this is needed for Objective-C. */
4152 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
4153 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
4154 TYPE_ATTRIBUTES (base)));
4157 /* Return a version of the TYPE, qualified as indicated by the
4158 TYPE_QUALS, if one exists. If no qualified version exists yet,
4159 return NULL_TREE. */
4161 tree
4162 get_qualified_type (tree type, int type_quals)
4164 tree t;
4166 if (TYPE_QUALS (type) == type_quals)
4167 return type;
4169 /* Search the chain of variants to see if there is already one there just
4170 like the one we need to have. If so, use that existing one. We must
4171 preserve the TYPE_NAME, since there is code that depends on this. */
4172 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
4173 if (check_qualified_type (t, type, type_quals))
4174 return t;
4176 return NULL_TREE;
4179 /* Like get_qualified_type, but creates the type if it does not
4180 exist. This function never returns NULL_TREE. */
4182 tree
4183 build_qualified_type (tree type, int type_quals)
4185 tree t;
4187 /* See if we already have the appropriate qualified variant. */
4188 t = get_qualified_type (type, type_quals);
4190 /* If not, build it. */
4191 if (!t)
4193 t = build_variant_type_copy (type);
4194 set_type_quals (t, type_quals);
4196 if (TYPE_STRUCTURAL_EQUALITY_P (type))
4197 /* Propagate structural equality. */
4198 SET_TYPE_STRUCTURAL_EQUALITY (t);
4199 else if (TYPE_CANONICAL (type) != type)
4200 /* Build the underlying canonical type, since it is different
4201 from TYPE. */
4202 TYPE_CANONICAL (t) = build_qualified_type (TYPE_CANONICAL (type),
4203 type_quals);
4204 else
4205 /* T is its own canonical type. */
4206 TYPE_CANONICAL (t) = t;
4210 return t;
4213 /* Create a new distinct copy of TYPE. The new type is made its own
4214 MAIN_VARIANT. If TYPE requires structural equality checks, the
4215 resulting type requires structural equality checks; otherwise, its
4216 TYPE_CANONICAL points to itself. */
4218 tree
4219 build_distinct_type_copy (tree type)
4221 tree t = copy_node (type);
4223 TYPE_POINTER_TO (t) = 0;
4224 TYPE_REFERENCE_TO (t) = 0;
4226 /* Set the canonical type either to a new equivalence class, or
4227 propagate the need for structural equality checks. */
4228 if (TYPE_STRUCTURAL_EQUALITY_P (type))
4229 SET_TYPE_STRUCTURAL_EQUALITY (t);
4230 else
4231 TYPE_CANONICAL (t) = t;
4233 /* Make it its own variant. */
4234 TYPE_MAIN_VARIANT (t) = t;
4235 TYPE_NEXT_VARIANT (t) = 0;
4237 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
4238 whose TREE_TYPE is not t. This can also happen in the Ada
4239 frontend when using subtypes. */
4241 return t;
4244 /* Create a new variant of TYPE, equivalent but distinct. This is so
4245 the caller can modify it. TYPE_CANONICAL for the return type will
4246 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
4247 are considered equal by the language itself (or that both types
4248 require structural equality checks). */
4250 tree
4251 build_variant_type_copy (tree type)
4253 tree t, m = TYPE_MAIN_VARIANT (type);
4255 t = build_distinct_type_copy (type);
4257 /* Since we're building a variant, assume that it is a non-semantic
4258 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
4259 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
4261 /* Add the new type to the chain of variants of TYPE. */
4262 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
4263 TYPE_NEXT_VARIANT (m) = t;
4264 TYPE_MAIN_VARIANT (t) = m;
4266 return t;
4269 /* Return true if the from tree in both tree maps are equal. */
4272 tree_map_base_eq (const void *va, const void *vb)
4274 const struct tree_map_base *const a = va, *const b = vb;
4275 return (a->from == b->from);
4278 /* Hash a from tree in a tree_map. */
4280 unsigned int
4281 tree_map_base_hash (const void *item)
4283 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
4286 /* Return true if this tree map structure is marked for garbage collection
4287 purposes. We simply return true if the from tree is marked, so that this
4288 structure goes away when the from tree goes away. */
4291 tree_map_base_marked_p (const void *p)
4293 return ggc_marked_p (((const struct tree_map_base *) p)->from);
4296 unsigned int
4297 tree_map_hash (const void *item)
4299 return (((const struct tree_map *) item)->hash);
4302 /* Return the initialization priority for DECL. */
4304 priority_type
4305 decl_init_priority_lookup (tree decl)
4307 struct tree_priority_map *h;
4308 struct tree_map_base in;
4310 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
4311 in.from = decl;
4312 h = htab_find (init_priority_for_decl, &in);
4313 return h ? h->init : DEFAULT_INIT_PRIORITY;
4316 /* Return the finalization priority for DECL. */
4318 priority_type
4319 decl_fini_priority_lookup (tree decl)
4321 struct tree_priority_map *h;
4322 struct tree_map_base in;
4324 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
4325 in.from = decl;
4326 h = htab_find (init_priority_for_decl, &in);
4327 return h ? h->fini : DEFAULT_INIT_PRIORITY;
4330 /* Return the initialization and finalization priority information for
4331 DECL. If there is no previous priority information, a freshly
4332 allocated structure is returned. */
4334 static struct tree_priority_map *
4335 decl_priority_info (tree decl)
4337 struct tree_priority_map in;
4338 struct tree_priority_map *h;
4339 void **loc;
4341 in.base.from = decl;
4342 loc = htab_find_slot (init_priority_for_decl, &in, INSERT);
4343 h = *loc;
4344 if (!h)
4346 h = GGC_CNEW (struct tree_priority_map);
4347 *loc = h;
4348 h->base.from = decl;
4349 h->init = DEFAULT_INIT_PRIORITY;
4350 h->fini = DEFAULT_INIT_PRIORITY;
4353 return h;
4356 /* Set the initialization priority for DECL to PRIORITY. */
4358 void
4359 decl_init_priority_insert (tree decl, priority_type priority)
4361 struct tree_priority_map *h;
4363 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
4364 h = decl_priority_info (decl);
4365 h->init = priority;
4368 /* Set the finalization priority for DECL to PRIORITY. */
4370 void
4371 decl_fini_priority_insert (tree decl, priority_type priority)
4373 struct tree_priority_map *h;
4375 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
4376 h = decl_priority_info (decl);
4377 h->fini = priority;
4380 /* Look up a restrict qualified base decl for FROM. */
4382 tree
4383 decl_restrict_base_lookup (tree from)
4385 struct tree_map *h;
4386 struct tree_map in;
4388 in.base.from = from;
4389 h = htab_find_with_hash (restrict_base_for_decl, &in,
4390 htab_hash_pointer (from));
4391 return h ? h->to : NULL_TREE;
4394 /* Record the restrict qualified base TO for FROM. */
4396 void
4397 decl_restrict_base_insert (tree from, tree to)
4399 struct tree_map *h;
4400 void **loc;
4402 h = ggc_alloc (sizeof (struct tree_map));
4403 h->hash = htab_hash_pointer (from);
4404 h->base.from = from;
4405 h->to = to;
4406 loc = htab_find_slot_with_hash (restrict_base_for_decl, h, h->hash, INSERT);
4407 *(struct tree_map **) loc = h;
4410 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
4412 static void
4413 print_debug_expr_statistics (void)
4415 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
4416 (long) htab_size (debug_expr_for_decl),
4417 (long) htab_elements (debug_expr_for_decl),
4418 htab_collisions (debug_expr_for_decl));
4421 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
4423 static void
4424 print_value_expr_statistics (void)
4426 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
4427 (long) htab_size (value_expr_for_decl),
4428 (long) htab_elements (value_expr_for_decl),
4429 htab_collisions (value_expr_for_decl));
4432 /* Print out statistics for the RESTRICT_BASE_FOR_DECL hash table, but
4433 don't print anything if the table is empty. */
4435 static void
4436 print_restrict_base_statistics (void)
4438 if (htab_elements (restrict_base_for_decl) != 0)
4439 fprintf (stderr,
4440 "RESTRICT_BASE hash: size %ld, %ld elements, %f collisions\n",
4441 (long) htab_size (restrict_base_for_decl),
4442 (long) htab_elements (restrict_base_for_decl),
4443 htab_collisions (restrict_base_for_decl));
4446 /* Lookup a debug expression for FROM, and return it if we find one. */
4448 tree
4449 decl_debug_expr_lookup (tree from)
4451 struct tree_map *h, in;
4452 in.base.from = from;
4454 h = htab_find_with_hash (debug_expr_for_decl, &in, htab_hash_pointer (from));
4455 if (h)
4456 return h->to;
4457 return NULL_TREE;
4460 /* Insert a mapping FROM->TO in the debug expression hashtable. */
4462 void
4463 decl_debug_expr_insert (tree from, tree to)
4465 struct tree_map *h;
4466 void **loc;
4468 h = ggc_alloc (sizeof (struct tree_map));
4469 h->hash = htab_hash_pointer (from);
4470 h->base.from = from;
4471 h->to = to;
4472 loc = htab_find_slot_with_hash (debug_expr_for_decl, h, h->hash, INSERT);
4473 *(struct tree_map **) loc = h;
4476 /* Lookup a value expression for FROM, and return it if we find one. */
4478 tree
4479 decl_value_expr_lookup (tree from)
4481 struct tree_map *h, in;
4482 in.base.from = from;
4484 h = htab_find_with_hash (value_expr_for_decl, &in, htab_hash_pointer (from));
4485 if (h)
4486 return h->to;
4487 return NULL_TREE;
4490 /* Insert a mapping FROM->TO in the value expression hashtable. */
4492 void
4493 decl_value_expr_insert (tree from, tree to)
4495 struct tree_map *h;
4496 void **loc;
4498 h = ggc_alloc (sizeof (struct tree_map));
4499 h->hash = htab_hash_pointer (from);
4500 h->base.from = from;
4501 h->to = to;
4502 loc = htab_find_slot_with_hash (value_expr_for_decl, h, h->hash, INSERT);
4503 *(struct tree_map **) loc = h;
4506 /* Hashing of types so that we don't make duplicates.
4507 The entry point is `type_hash_canon'. */
4509 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
4510 with types in the TREE_VALUE slots), by adding the hash codes
4511 of the individual types. */
4513 static unsigned int
4514 type_hash_list (const_tree list, hashval_t hashcode)
4516 const_tree tail;
4518 for (tail = list; tail; tail = TREE_CHAIN (tail))
4519 if (TREE_VALUE (tail) != error_mark_node)
4520 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
4521 hashcode);
4523 return hashcode;
4526 /* These are the Hashtable callback functions. */
4528 /* Returns true iff the types are equivalent. */
4530 static int
4531 type_hash_eq (const void *va, const void *vb)
4533 const struct type_hash *const a = va, *const b = vb;
4535 /* First test the things that are the same for all types. */
4536 if (a->hash != b->hash
4537 || TREE_CODE (a->type) != TREE_CODE (b->type)
4538 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
4539 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
4540 TYPE_ATTRIBUTES (b->type))
4541 || TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
4542 || TYPE_MODE (a->type) != TYPE_MODE (b->type))
4543 return 0;
4545 switch (TREE_CODE (a->type))
4547 case VOID_TYPE:
4548 case COMPLEX_TYPE:
4549 case POINTER_TYPE:
4550 case REFERENCE_TYPE:
4551 return 1;
4553 case VECTOR_TYPE:
4554 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
4556 case ENUMERAL_TYPE:
4557 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
4558 && !(TYPE_VALUES (a->type)
4559 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
4560 && TYPE_VALUES (b->type)
4561 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
4562 && type_list_equal (TYPE_VALUES (a->type),
4563 TYPE_VALUES (b->type))))
4564 return 0;
4566 /* ... fall through ... */
4568 case INTEGER_TYPE:
4569 case REAL_TYPE:
4570 case BOOLEAN_TYPE:
4571 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
4572 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
4573 TYPE_MAX_VALUE (b->type)))
4574 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
4575 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
4576 TYPE_MIN_VALUE (b->type))));
4578 case FIXED_POINT_TYPE:
4579 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
4581 case OFFSET_TYPE:
4582 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
4584 case METHOD_TYPE:
4585 return (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
4586 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
4587 || (TYPE_ARG_TYPES (a->type)
4588 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
4589 && TYPE_ARG_TYPES (b->type)
4590 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
4591 && type_list_equal (TYPE_ARG_TYPES (a->type),
4592 TYPE_ARG_TYPES (b->type)))));
4594 case ARRAY_TYPE:
4595 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
4597 case RECORD_TYPE:
4598 case UNION_TYPE:
4599 case QUAL_UNION_TYPE:
4600 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
4601 || (TYPE_FIELDS (a->type)
4602 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
4603 && TYPE_FIELDS (b->type)
4604 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
4605 && type_list_equal (TYPE_FIELDS (a->type),
4606 TYPE_FIELDS (b->type))));
4608 case FUNCTION_TYPE:
4609 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
4610 || (TYPE_ARG_TYPES (a->type)
4611 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
4612 && TYPE_ARG_TYPES (b->type)
4613 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
4614 && type_list_equal (TYPE_ARG_TYPES (a->type),
4615 TYPE_ARG_TYPES (b->type))))
4616 break;
4617 return 0;
4619 default:
4620 return 0;
4623 if (lang_hooks.types.type_hash_eq != NULL)
4624 return lang_hooks.types.type_hash_eq (a->type, b->type);
4626 return 1;
4629 /* Return the cached hash value. */
4631 static hashval_t
4632 type_hash_hash (const void *item)
4634 return ((const struct type_hash *) item)->hash;
4637 /* Look in the type hash table for a type isomorphic to TYPE.
4638 If one is found, return it. Otherwise return 0. */
4640 tree
4641 type_hash_lookup (hashval_t hashcode, tree type)
4643 struct type_hash *h, in;
4645 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
4646 must call that routine before comparing TYPE_ALIGNs. */
4647 layout_type (type);
4649 in.hash = hashcode;
4650 in.type = type;
4652 h = htab_find_with_hash (type_hash_table, &in, hashcode);
4653 if (h)
4654 return h->type;
4655 return NULL_TREE;
4658 /* Add an entry to the type-hash-table
4659 for a type TYPE whose hash code is HASHCODE. */
4661 void
4662 type_hash_add (hashval_t hashcode, tree type)
4664 struct type_hash *h;
4665 void **loc;
4667 h = ggc_alloc (sizeof (struct type_hash));
4668 h->hash = hashcode;
4669 h->type = type;
4670 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
4671 *loc = (void *)h;
4674 /* Given TYPE, and HASHCODE its hash code, return the canonical
4675 object for an identical type if one already exists.
4676 Otherwise, return TYPE, and record it as the canonical object.
4678 To use this function, first create a type of the sort you want.
4679 Then compute its hash code from the fields of the type that
4680 make it different from other similar types.
4681 Then call this function and use the value. */
4683 tree
4684 type_hash_canon (unsigned int hashcode, tree type)
4686 tree t1;
4688 /* The hash table only contains main variants, so ensure that's what we're
4689 being passed. */
4690 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
4692 if (!lang_hooks.types.hash_types)
4693 return type;
4695 /* See if the type is in the hash table already. If so, return it.
4696 Otherwise, add the type. */
4697 t1 = type_hash_lookup (hashcode, type);
4698 if (t1 != 0)
4700 #ifdef GATHER_STATISTICS
4701 tree_node_counts[(int) t_kind]--;
4702 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
4703 #endif
4704 return t1;
4706 else
4708 type_hash_add (hashcode, type);
4709 return type;
4713 /* See if the data pointed to by the type hash table is marked. We consider
4714 it marked if the type is marked or if a debug type number or symbol
4715 table entry has been made for the type. This reduces the amount of
4716 debugging output and eliminates that dependency of the debug output on
4717 the number of garbage collections. */
4719 static int
4720 type_hash_marked_p (const void *p)
4722 const_tree const type = ((const struct type_hash *) p)->type;
4724 return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
4727 static void
4728 print_type_hash_statistics (void)
4730 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
4731 (long) htab_size (type_hash_table),
4732 (long) htab_elements (type_hash_table),
4733 htab_collisions (type_hash_table));
4736 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
4737 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
4738 by adding the hash codes of the individual attributes. */
4740 static unsigned int
4741 attribute_hash_list (const_tree list, hashval_t hashcode)
4743 const_tree tail;
4745 for (tail = list; tail; tail = TREE_CHAIN (tail))
4746 /* ??? Do we want to add in TREE_VALUE too? */
4747 hashcode = iterative_hash_object
4748 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
4749 return hashcode;
4752 /* Given two lists of attributes, return true if list l2 is
4753 equivalent to l1. */
4756 attribute_list_equal (const_tree l1, const_tree l2)
4758 return attribute_list_contained (l1, l2)
4759 && attribute_list_contained (l2, l1);
4762 /* Given two lists of attributes, return true if list L2 is
4763 completely contained within L1. */
4764 /* ??? This would be faster if attribute names were stored in a canonicalized
4765 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
4766 must be used to show these elements are equivalent (which they are). */
4767 /* ??? It's not clear that attributes with arguments will always be handled
4768 correctly. */
4771 attribute_list_contained (const_tree l1, const_tree l2)
4773 const_tree t1, t2;
4775 /* First check the obvious, maybe the lists are identical. */
4776 if (l1 == l2)
4777 return 1;
4779 /* Maybe the lists are similar. */
4780 for (t1 = l1, t2 = l2;
4781 t1 != 0 && t2 != 0
4782 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
4783 && TREE_VALUE (t1) == TREE_VALUE (t2);
4784 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
4786 /* Maybe the lists are equal. */
4787 if (t1 == 0 && t2 == 0)
4788 return 1;
4790 for (; t2 != 0; t2 = TREE_CHAIN (t2))
4792 const_tree attr;
4793 /* This CONST_CAST is okay because lookup_attribute does not
4794 modify its argument and the return value is assigned to a
4795 const_tree. */
4796 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
4797 CONST_CAST_TREE(l1));
4798 attr != NULL_TREE;
4799 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
4800 TREE_CHAIN (attr)))
4802 if (TREE_VALUE (t2) != NULL
4803 && TREE_CODE (TREE_VALUE (t2)) == TREE_LIST
4804 && TREE_VALUE (attr) != NULL
4805 && TREE_CODE (TREE_VALUE (attr)) == TREE_LIST)
4807 if (simple_cst_list_equal (TREE_VALUE (t2),
4808 TREE_VALUE (attr)) == 1)
4809 break;
4811 else if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
4812 break;
4815 if (attr == 0)
4816 return 0;
4819 return 1;
4822 /* Given two lists of types
4823 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
4824 return 1 if the lists contain the same types in the same order.
4825 Also, the TREE_PURPOSEs must match. */
4828 type_list_equal (const_tree l1, const_tree l2)
4830 const_tree t1, t2;
4832 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
4833 if (TREE_VALUE (t1) != TREE_VALUE (t2)
4834 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
4835 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
4836 && (TREE_TYPE (TREE_PURPOSE (t1))
4837 == TREE_TYPE (TREE_PURPOSE (t2))))))
4838 return 0;
4840 return t1 == t2;
4843 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
4844 given by TYPE. If the argument list accepts variable arguments,
4845 then this function counts only the ordinary arguments. */
4848 type_num_arguments (const_tree type)
4850 int i = 0;
4851 tree t;
4853 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
4854 /* If the function does not take a variable number of arguments,
4855 the last element in the list will have type `void'. */
4856 if (VOID_TYPE_P (TREE_VALUE (t)))
4857 break;
4858 else
4859 ++i;
4861 return i;
4864 /* Nonzero if integer constants T1 and T2
4865 represent the same constant value. */
4868 tree_int_cst_equal (const_tree t1, const_tree t2)
4870 if (t1 == t2)
4871 return 1;
4873 if (t1 == 0 || t2 == 0)
4874 return 0;
4876 if (TREE_CODE (t1) == INTEGER_CST
4877 && TREE_CODE (t2) == INTEGER_CST
4878 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
4879 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
4880 return 1;
4882 return 0;
4885 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
4886 The precise way of comparison depends on their data type. */
4889 tree_int_cst_lt (const_tree t1, const_tree t2)
4891 if (t1 == t2)
4892 return 0;
4894 if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
4896 int t1_sgn = tree_int_cst_sgn (t1);
4897 int t2_sgn = tree_int_cst_sgn (t2);
4899 if (t1_sgn < t2_sgn)
4900 return 1;
4901 else if (t1_sgn > t2_sgn)
4902 return 0;
4903 /* Otherwise, both are non-negative, so we compare them as
4904 unsigned just in case one of them would overflow a signed
4905 type. */
4907 else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
4908 return INT_CST_LT (t1, t2);
4910 return INT_CST_LT_UNSIGNED (t1, t2);
4913 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
4916 tree_int_cst_compare (const_tree t1, const_tree t2)
4918 if (tree_int_cst_lt (t1, t2))
4919 return -1;
4920 else if (tree_int_cst_lt (t2, t1))
4921 return 1;
4922 else
4923 return 0;
4926 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
4927 the host. If POS is zero, the value can be represented in a single
4928 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
4929 be represented in a single unsigned HOST_WIDE_INT. */
4932 host_integerp (const_tree t, int pos)
4934 return (TREE_CODE (t) == INTEGER_CST
4935 && ((TREE_INT_CST_HIGH (t) == 0
4936 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
4937 || (! pos && TREE_INT_CST_HIGH (t) == -1
4938 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
4939 && (!TYPE_UNSIGNED (TREE_TYPE (t))
4940 || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
4941 && TYPE_IS_SIZETYPE (TREE_TYPE (t)))))
4942 || (pos && TREE_INT_CST_HIGH (t) == 0)));
4945 /* Return the HOST_WIDE_INT least significant bits of T if it is an
4946 INTEGER_CST and there is no overflow. POS is nonzero if the result must
4947 be non-negative. We must be able to satisfy the above conditions. */
4949 HOST_WIDE_INT
4950 tree_low_cst (const_tree t, int pos)
4952 gcc_assert (host_integerp (t, pos));
4953 return TREE_INT_CST_LOW (t);
4956 /* Return the most significant bit of the integer constant T. */
4959 tree_int_cst_msb (const_tree t)
4961 int prec;
4962 HOST_WIDE_INT h;
4963 unsigned HOST_WIDE_INT l;
4965 /* Note that using TYPE_PRECISION here is wrong. We care about the
4966 actual bits, not the (arbitrary) range of the type. */
4967 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
4968 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
4969 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
4970 return (l & 1) == 1;
4973 /* Return an indication of the sign of the integer constant T.
4974 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
4975 Note that -1 will never be returned if T's type is unsigned. */
4978 tree_int_cst_sgn (const_tree t)
4980 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
4981 return 0;
4982 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
4983 return 1;
4984 else if (TREE_INT_CST_HIGH (t) < 0)
4985 return -1;
4986 else
4987 return 1;
4990 /* Compare two constructor-element-type constants. Return 1 if the lists
4991 are known to be equal; otherwise return 0. */
4994 simple_cst_list_equal (const_tree l1, const_tree l2)
4996 while (l1 != NULL_TREE && l2 != NULL_TREE)
4998 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
4999 return 0;
5001 l1 = TREE_CHAIN (l1);
5002 l2 = TREE_CHAIN (l2);
5005 return l1 == l2;
5008 /* Return truthvalue of whether T1 is the same tree structure as T2.
5009 Return 1 if they are the same.
5010 Return 0 if they are understandably different.
5011 Return -1 if either contains tree structure not understood by
5012 this function. */
5015 simple_cst_equal (const_tree t1, const_tree t2)
5017 enum tree_code code1, code2;
5018 int cmp;
5019 int i;
5021 if (t1 == t2)
5022 return 1;
5023 if (t1 == 0 || t2 == 0)
5024 return 0;
5026 code1 = TREE_CODE (t1);
5027 code2 = TREE_CODE (t2);
5029 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
5031 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
5032 || code2 == NON_LVALUE_EXPR)
5033 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
5034 else
5035 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
5038 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
5039 || code2 == NON_LVALUE_EXPR)
5040 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
5042 if (code1 != code2)
5043 return 0;
5045 switch (code1)
5047 case INTEGER_CST:
5048 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
5049 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
5051 case REAL_CST:
5052 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
5054 case FIXED_CST:
5055 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
5057 case STRING_CST:
5058 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
5059 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
5060 TREE_STRING_LENGTH (t1)));
5062 case CONSTRUCTOR:
5064 unsigned HOST_WIDE_INT idx;
5065 VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1);
5066 VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2);
5068 if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2))
5069 return false;
5071 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
5072 /* ??? Should we handle also fields here? */
5073 if (!simple_cst_equal (VEC_index (constructor_elt, v1, idx)->value,
5074 VEC_index (constructor_elt, v2, idx)->value))
5075 return false;
5076 return true;
5079 case SAVE_EXPR:
5080 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
5082 case CALL_EXPR:
5083 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
5084 if (cmp <= 0)
5085 return cmp;
5086 if (call_expr_nargs (t1) != call_expr_nargs (t2))
5087 return 0;
5089 const_tree arg1, arg2;
5090 const_call_expr_arg_iterator iter1, iter2;
5091 for (arg1 = first_const_call_expr_arg (t1, &iter1),
5092 arg2 = first_const_call_expr_arg (t2, &iter2);
5093 arg1 && arg2;
5094 arg1 = next_const_call_expr_arg (&iter1),
5095 arg2 = next_const_call_expr_arg (&iter2))
5097 cmp = simple_cst_equal (arg1, arg2);
5098 if (cmp <= 0)
5099 return cmp;
5101 return arg1 == arg2;
5104 case TARGET_EXPR:
5105 /* Special case: if either target is an unallocated VAR_DECL,
5106 it means that it's going to be unified with whatever the
5107 TARGET_EXPR is really supposed to initialize, so treat it
5108 as being equivalent to anything. */
5109 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
5110 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
5111 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
5112 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
5113 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
5114 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
5115 cmp = 1;
5116 else
5117 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
5119 if (cmp <= 0)
5120 return cmp;
5122 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
5124 case WITH_CLEANUP_EXPR:
5125 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
5126 if (cmp <= 0)
5127 return cmp;
5129 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
5131 case COMPONENT_REF:
5132 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
5133 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
5135 return 0;
5137 case VAR_DECL:
5138 case PARM_DECL:
5139 case CONST_DECL:
5140 case FUNCTION_DECL:
5141 return 0;
5143 default:
5144 break;
5147 /* This general rule works for most tree codes. All exceptions should be
5148 handled above. If this is a language-specific tree code, we can't
5149 trust what might be in the operand, so say we don't know
5150 the situation. */
5151 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
5152 return -1;
5154 switch (TREE_CODE_CLASS (code1))
5156 case tcc_unary:
5157 case tcc_binary:
5158 case tcc_comparison:
5159 case tcc_expression:
5160 case tcc_reference:
5161 case tcc_statement:
5162 cmp = 1;
5163 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
5165 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
5166 if (cmp <= 0)
5167 return cmp;
5170 return cmp;
5172 default:
5173 return -1;
5177 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
5178 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
5179 than U, respectively. */
5182 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
5184 if (tree_int_cst_sgn (t) < 0)
5185 return -1;
5186 else if (TREE_INT_CST_HIGH (t) != 0)
5187 return 1;
5188 else if (TREE_INT_CST_LOW (t) == u)
5189 return 0;
5190 else if (TREE_INT_CST_LOW (t) < u)
5191 return -1;
5192 else
5193 return 1;
5196 /* Return true if CODE represents an associative tree code. Otherwise
5197 return false. */
5198 bool
5199 associative_tree_code (enum tree_code code)
5201 switch (code)
5203 case BIT_IOR_EXPR:
5204 case BIT_AND_EXPR:
5205 case BIT_XOR_EXPR:
5206 case PLUS_EXPR:
5207 case MULT_EXPR:
5208 case MIN_EXPR:
5209 case MAX_EXPR:
5210 return true;
5212 default:
5213 break;
5215 return false;
5218 /* Return true if CODE represents a commutative tree code. Otherwise
5219 return false. */
5220 bool
5221 commutative_tree_code (enum tree_code code)
5223 switch (code)
5225 case PLUS_EXPR:
5226 case MULT_EXPR:
5227 case MIN_EXPR:
5228 case MAX_EXPR:
5229 case BIT_IOR_EXPR:
5230 case BIT_XOR_EXPR:
5231 case BIT_AND_EXPR:
5232 case NE_EXPR:
5233 case EQ_EXPR:
5234 case UNORDERED_EXPR:
5235 case ORDERED_EXPR:
5236 case UNEQ_EXPR:
5237 case LTGT_EXPR:
5238 case TRUTH_AND_EXPR:
5239 case TRUTH_XOR_EXPR:
5240 case TRUTH_OR_EXPR:
5241 return true;
5243 default:
5244 break;
5246 return false;
5249 /* Generate a hash value for an expression. This can be used iteratively
5250 by passing a previous result as the "val" argument.
5252 This function is intended to produce the same hash for expressions which
5253 would compare equal using operand_equal_p. */
5255 hashval_t
5256 iterative_hash_expr (const_tree t, hashval_t val)
5258 int i;
5259 enum tree_code code;
5260 char class;
5262 if (t == NULL_TREE)
5263 return iterative_hash_pointer (t, val);
5265 code = TREE_CODE (t);
5267 switch (code)
5269 /* Alas, constants aren't shared, so we can't rely on pointer
5270 identity. */
5271 case INTEGER_CST:
5272 val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
5273 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
5274 case REAL_CST:
5276 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
5278 return iterative_hash_hashval_t (val2, val);
5280 case FIXED_CST:
5282 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
5284 return iterative_hash_hashval_t (val2, val);
5286 case STRING_CST:
5287 return iterative_hash (TREE_STRING_POINTER (t),
5288 TREE_STRING_LENGTH (t), val);
5289 case COMPLEX_CST:
5290 val = iterative_hash_expr (TREE_REALPART (t), val);
5291 return iterative_hash_expr (TREE_IMAGPART (t), val);
5292 case VECTOR_CST:
5293 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
5295 case SSA_NAME:
5296 case VALUE_HANDLE:
5297 /* we can just compare by pointer. */
5298 return iterative_hash_pointer (t, val);
5300 case TREE_LIST:
5301 /* A list of expressions, for a CALL_EXPR or as the elements of a
5302 VECTOR_CST. */
5303 for (; t; t = TREE_CHAIN (t))
5304 val = iterative_hash_expr (TREE_VALUE (t), val);
5305 return val;
5306 case CONSTRUCTOR:
5308 unsigned HOST_WIDE_INT idx;
5309 tree field, value;
5310 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
5312 val = iterative_hash_expr (field, val);
5313 val = iterative_hash_expr (value, val);
5315 return val;
5317 case FUNCTION_DECL:
5318 /* When referring to a built-in FUNCTION_DECL, use the
5319 __builtin__ form. Otherwise nodes that compare equal
5320 according to operand_equal_p might get different
5321 hash codes. */
5322 if (DECL_BUILT_IN (t))
5324 val = iterative_hash_pointer (built_in_decls[DECL_FUNCTION_CODE (t)],
5325 val);
5326 return val;
5328 /* else FALL THROUGH */
5329 default:
5330 class = TREE_CODE_CLASS (code);
5332 if (class == tcc_declaration)
5334 /* DECL's have a unique ID */
5335 val = iterative_hash_host_wide_int (DECL_UID (t), val);
5337 else
5339 gcc_assert (IS_EXPR_CODE_CLASS (class));
5341 val = iterative_hash_object (code, val);
5343 /* Don't hash the type, that can lead to having nodes which
5344 compare equal according to operand_equal_p, but which
5345 have different hash codes. */
5346 if (code == NOP_EXPR
5347 || code == CONVERT_EXPR
5348 || code == NON_LVALUE_EXPR)
5350 /* Make sure to include signness in the hash computation. */
5351 val += TYPE_UNSIGNED (TREE_TYPE (t));
5352 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
5355 else if (commutative_tree_code (code))
5357 /* It's a commutative expression. We want to hash it the same
5358 however it appears. We do this by first hashing both operands
5359 and then rehashing based on the order of their independent
5360 hashes. */
5361 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
5362 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
5363 hashval_t t;
5365 if (one > two)
5366 t = one, one = two, two = t;
5368 val = iterative_hash_hashval_t (one, val);
5369 val = iterative_hash_hashval_t (two, val);
5371 else
5372 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
5373 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
5375 return val;
5376 break;
5380 /* Constructors for pointer, array and function types.
5381 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
5382 constructed by language-dependent code, not here.) */
5384 /* Construct, lay out and return the type of pointers to TO_TYPE with
5385 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
5386 reference all of memory. If such a type has already been
5387 constructed, reuse it. */
5389 tree
5390 build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
5391 bool can_alias_all)
5393 tree t;
5395 if (to_type == error_mark_node)
5396 return error_mark_node;
5398 /* In some cases, languages will have things that aren't a POINTER_TYPE
5399 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
5400 In that case, return that type without regard to the rest of our
5401 operands.
5403 ??? This is a kludge, but consistent with the way this function has
5404 always operated and there doesn't seem to be a good way to avoid this
5405 at the moment. */
5406 if (TYPE_POINTER_TO (to_type) != 0
5407 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
5408 return TYPE_POINTER_TO (to_type);
5410 /* First, if we already have a type for pointers to TO_TYPE and it's
5411 the proper mode, use it. */
5412 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
5413 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
5414 return t;
5416 t = make_node (POINTER_TYPE);
5418 TREE_TYPE (t) = to_type;
5419 TYPE_MODE (t) = mode;
5420 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
5421 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
5422 TYPE_POINTER_TO (to_type) = t;
5424 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
5425 SET_TYPE_STRUCTURAL_EQUALITY (t);
5426 else if (TYPE_CANONICAL (to_type) != to_type)
5427 TYPE_CANONICAL (t)
5428 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
5429 mode, can_alias_all);
5431 /* Lay out the type. This function has many callers that are concerned
5432 with expression-construction, and this simplifies them all. */
5433 layout_type (t);
5435 return t;
5438 /* By default build pointers in ptr_mode. */
5440 tree
5441 build_pointer_type (tree to_type)
5443 return build_pointer_type_for_mode (to_type, ptr_mode, false);
5446 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
5448 tree
5449 build_reference_type_for_mode (tree to_type, enum machine_mode mode,
5450 bool can_alias_all)
5452 tree t;
5454 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
5455 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
5456 In that case, return that type without regard to the rest of our
5457 operands.
5459 ??? This is a kludge, but consistent with the way this function has
5460 always operated and there doesn't seem to be a good way to avoid this
5461 at the moment. */
5462 if (TYPE_REFERENCE_TO (to_type) != 0
5463 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
5464 return TYPE_REFERENCE_TO (to_type);
5466 /* First, if we already have a type for pointers to TO_TYPE and it's
5467 the proper mode, use it. */
5468 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
5469 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
5470 return t;
5472 t = make_node (REFERENCE_TYPE);
5474 TREE_TYPE (t) = to_type;
5475 TYPE_MODE (t) = mode;
5476 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
5477 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
5478 TYPE_REFERENCE_TO (to_type) = t;
5480 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
5481 SET_TYPE_STRUCTURAL_EQUALITY (t);
5482 else if (TYPE_CANONICAL (to_type) != to_type)
5483 TYPE_CANONICAL (t)
5484 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
5485 mode, can_alias_all);
5487 layout_type (t);
5489 return t;
5493 /* Build the node for the type of references-to-TO_TYPE by default
5494 in ptr_mode. */
5496 tree
5497 build_reference_type (tree to_type)
5499 return build_reference_type_for_mode (to_type, ptr_mode, false);
5502 /* Build a type that is compatible with t but has no cv quals anywhere
5503 in its type, thus
5505 const char *const *const * -> char ***. */
5507 tree
5508 build_type_no_quals (tree t)
5510 switch (TREE_CODE (t))
5512 case POINTER_TYPE:
5513 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
5514 TYPE_MODE (t),
5515 TYPE_REF_CAN_ALIAS_ALL (t));
5516 case REFERENCE_TYPE:
5517 return
5518 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
5519 TYPE_MODE (t),
5520 TYPE_REF_CAN_ALIAS_ALL (t));
5521 default:
5522 return TYPE_MAIN_VARIANT (t);
5526 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
5527 MAXVAL should be the maximum value in the domain
5528 (one less than the length of the array).
5530 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
5531 We don't enforce this limit, that is up to caller (e.g. language front end).
5532 The limit exists because the result is a signed type and we don't handle
5533 sizes that use more than one HOST_WIDE_INT. */
5535 tree
5536 build_index_type (tree maxval)
5538 tree itype = make_node (INTEGER_TYPE);
5540 TREE_TYPE (itype) = sizetype;
5541 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
5542 TYPE_MIN_VALUE (itype) = size_zero_node;
5543 TYPE_MAX_VALUE (itype) = fold_convert (sizetype, maxval);
5544 TYPE_MODE (itype) = TYPE_MODE (sizetype);
5545 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
5546 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
5547 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
5548 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
5550 if (host_integerp (maxval, 1))
5551 return type_hash_canon (tree_low_cst (maxval, 1), itype);
5552 else
5554 /* Since we cannot hash this type, we need to compare it using
5555 structural equality checks. */
5556 SET_TYPE_STRUCTURAL_EQUALITY (itype);
5557 return itype;
5561 /* Builds a signed or unsigned integer type of precision PRECISION.
5562 Used for C bitfields whose precision does not match that of
5563 built-in target types. */
5564 tree
5565 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
5566 int unsignedp)
5568 tree itype = make_node (INTEGER_TYPE);
5570 TYPE_PRECISION (itype) = precision;
5572 if (unsignedp)
5573 fixup_unsigned_type (itype);
5574 else
5575 fixup_signed_type (itype);
5577 if (host_integerp (TYPE_MAX_VALUE (itype), 1))
5578 return type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
5580 return itype;
5583 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
5584 ENUMERAL_TYPE or BOOLEAN_TYPE), with low bound LOWVAL and
5585 high bound HIGHVAL. If TYPE is NULL, sizetype is used. */
5587 tree
5588 build_range_type (tree type, tree lowval, tree highval)
5590 tree itype = make_node (INTEGER_TYPE);
5592 TREE_TYPE (itype) = type;
5593 if (type == NULL_TREE)
5594 type = sizetype;
5596 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
5597 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
5599 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
5600 TYPE_MODE (itype) = TYPE_MODE (type);
5601 TYPE_SIZE (itype) = TYPE_SIZE (type);
5602 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
5603 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
5604 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
5606 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
5607 return type_hash_canon (tree_low_cst (highval, 0)
5608 - tree_low_cst (lowval, 0),
5609 itype);
5610 else
5611 return itype;
5614 /* Just like build_index_type, but takes lowval and highval instead
5615 of just highval (maxval). */
5617 tree
5618 build_index_2_type (tree lowval, tree highval)
5620 return build_range_type (sizetype, lowval, highval);
5623 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
5624 and number of elements specified by the range of values of INDEX_TYPE.
5625 If such a type has already been constructed, reuse it. */
5627 tree
5628 build_array_type (tree elt_type, tree index_type)
5630 tree t;
5631 hashval_t hashcode = 0;
5633 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
5635 error ("arrays of functions are not meaningful");
5636 elt_type = integer_type_node;
5639 t = make_node (ARRAY_TYPE);
5640 TREE_TYPE (t) = elt_type;
5641 TYPE_DOMAIN (t) = index_type;
5643 if (index_type == 0)
5645 tree save = t;
5646 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
5647 t = type_hash_canon (hashcode, t);
5648 if (save == t)
5649 layout_type (t);
5651 if (TYPE_CANONICAL (t) == t)
5653 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type))
5654 SET_TYPE_STRUCTURAL_EQUALITY (t);
5655 else if (TYPE_CANONICAL (elt_type) != elt_type)
5656 TYPE_CANONICAL (t)
5657 = build_array_type (TYPE_CANONICAL (elt_type), index_type);
5660 return t;
5663 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
5664 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
5665 t = type_hash_canon (hashcode, t);
5667 if (!COMPLETE_TYPE_P (t))
5668 layout_type (t);
5670 if (TYPE_CANONICAL (t) == t)
5672 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
5673 || TYPE_STRUCTURAL_EQUALITY_P (index_type))
5674 SET_TYPE_STRUCTURAL_EQUALITY (t);
5675 else if (TYPE_CANONICAL (elt_type) != elt_type
5676 || TYPE_CANONICAL (index_type) != index_type)
5677 TYPE_CANONICAL (t)
5678 = build_array_type (TYPE_CANONICAL (elt_type),
5679 TYPE_CANONICAL (index_type));
5682 return t;
5685 /* Recursively examines the array elements of TYPE, until a non-array
5686 element type is found. */
5688 tree
5689 strip_array_types (tree type)
5691 while (TREE_CODE (type) == ARRAY_TYPE)
5692 type = TREE_TYPE (type);
5694 return type;
5697 /* Computes the canonical argument types from the argument type list
5698 ARGTYPES.
5700 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
5701 on entry to this function, or if any of the ARGTYPES are
5702 structural.
5704 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
5705 true on entry to this function, or if any of the ARGTYPES are
5706 non-canonical.
5708 Returns a canonical argument list, which may be ARGTYPES when the
5709 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
5710 true) or would not differ from ARGTYPES. */
5712 static tree
5713 maybe_canonicalize_argtypes(tree argtypes,
5714 bool *any_structural_p,
5715 bool *any_noncanonical_p)
5717 tree arg;
5718 bool any_noncanonical_argtypes_p = false;
5720 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
5722 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
5723 /* Fail gracefully by stating that the type is structural. */
5724 *any_structural_p = true;
5725 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
5726 *any_structural_p = true;
5727 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
5728 || TREE_PURPOSE (arg))
5729 /* If the argument has a default argument, we consider it
5730 non-canonical even though the type itself is canonical.
5731 That way, different variants of function and method types
5732 with default arguments will all point to the variant with
5733 no defaults as their canonical type. */
5734 any_noncanonical_argtypes_p = true;
5737 if (*any_structural_p)
5738 return argtypes;
5740 if (any_noncanonical_argtypes_p)
5742 /* Build the canonical list of argument types. */
5743 tree canon_argtypes = NULL_TREE;
5744 bool is_void = false;
5746 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
5748 if (arg == void_list_node)
5749 is_void = true;
5750 else
5751 canon_argtypes = tree_cons (NULL_TREE,
5752 TYPE_CANONICAL (TREE_VALUE (arg)),
5753 canon_argtypes);
5756 canon_argtypes = nreverse (canon_argtypes);
5757 if (is_void)
5758 canon_argtypes = chainon (canon_argtypes, void_list_node);
5760 /* There is a non-canonical type. */
5761 *any_noncanonical_p = true;
5762 return canon_argtypes;
5765 /* The canonical argument types are the same as ARGTYPES. */
5766 return argtypes;
5769 /* Construct, lay out and return
5770 the type of functions returning type VALUE_TYPE
5771 given arguments of types ARG_TYPES.
5772 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
5773 are data type nodes for the arguments of the function.
5774 If such a type has already been constructed, reuse it. */
5776 tree
5777 build_function_type (tree value_type, tree arg_types)
5779 tree t;
5780 hashval_t hashcode = 0;
5781 bool any_structural_p, any_noncanonical_p;
5782 tree canon_argtypes;
5784 if (TREE_CODE (value_type) == FUNCTION_TYPE)
5786 error ("function return type cannot be function");
5787 value_type = integer_type_node;
5790 /* Make a node of the sort we want. */
5791 t = make_node (FUNCTION_TYPE);
5792 TREE_TYPE (t) = value_type;
5793 TYPE_ARG_TYPES (t) = arg_types;
5795 /* If we already have such a type, use the old one. */
5796 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
5797 hashcode = type_hash_list (arg_types, hashcode);
5798 t = type_hash_canon (hashcode, t);
5800 /* Set up the canonical type. */
5801 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
5802 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
5803 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
5804 &any_structural_p,
5805 &any_noncanonical_p);
5806 if (any_structural_p)
5807 SET_TYPE_STRUCTURAL_EQUALITY (t);
5808 else if (any_noncanonical_p)
5809 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
5810 canon_argtypes);
5812 if (!COMPLETE_TYPE_P (t))
5813 layout_type (t);
5814 return t;
5817 /* Build a function type. The RETURN_TYPE is the type returned by the
5818 function. If additional arguments are provided, they are
5819 additional argument types. The list of argument types must always
5820 be terminated by NULL_TREE. */
5822 tree
5823 build_function_type_list (tree return_type, ...)
5825 tree t, args, last;
5826 va_list p;
5828 va_start (p, return_type);
5830 t = va_arg (p, tree);
5831 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (p, tree))
5832 args = tree_cons (NULL_TREE, t, args);
5834 if (args == NULL_TREE)
5835 args = void_list_node;
5836 else
5838 last = args;
5839 args = nreverse (args);
5840 TREE_CHAIN (last) = void_list_node;
5842 args = build_function_type (return_type, args);
5844 va_end (p);
5845 return args;
5848 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
5849 and ARGTYPES (a TREE_LIST) are the return type and arguments types
5850 for the method. An implicit additional parameter (of type
5851 pointer-to-BASETYPE) is added to the ARGTYPES. */
5853 tree
5854 build_method_type_directly (tree basetype,
5855 tree rettype,
5856 tree argtypes)
5858 tree t;
5859 tree ptype;
5860 int hashcode = 0;
5861 bool any_structural_p, any_noncanonical_p;
5862 tree canon_argtypes;
5864 /* Make a node of the sort we want. */
5865 t = make_node (METHOD_TYPE);
5867 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
5868 TREE_TYPE (t) = rettype;
5869 ptype = build_pointer_type (basetype);
5871 /* The actual arglist for this function includes a "hidden" argument
5872 which is "this". Put it into the list of argument types. */
5873 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
5874 TYPE_ARG_TYPES (t) = argtypes;
5876 /* If we already have such a type, use the old one. */
5877 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
5878 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
5879 hashcode = type_hash_list (argtypes, hashcode);
5880 t = type_hash_canon (hashcode, t);
5882 /* Set up the canonical type. */
5883 any_structural_p
5884 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
5885 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
5886 any_noncanonical_p
5887 = (TYPE_CANONICAL (basetype) != basetype
5888 || TYPE_CANONICAL (rettype) != rettype);
5889 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
5890 &any_structural_p,
5891 &any_noncanonical_p);
5892 if (any_structural_p)
5893 SET_TYPE_STRUCTURAL_EQUALITY (t);
5894 else if (any_noncanonical_p)
5895 TYPE_CANONICAL (t)
5896 = build_method_type_directly (TYPE_CANONICAL (basetype),
5897 TYPE_CANONICAL (rettype),
5898 canon_argtypes);
5899 if (!COMPLETE_TYPE_P (t))
5900 layout_type (t);
5902 return t;
5905 /* Construct, lay out and return the type of methods belonging to class
5906 BASETYPE and whose arguments and values are described by TYPE.
5907 If that type exists already, reuse it.
5908 TYPE must be a FUNCTION_TYPE node. */
5910 tree
5911 build_method_type (tree basetype, tree type)
5913 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
5915 return build_method_type_directly (basetype,
5916 TREE_TYPE (type),
5917 TYPE_ARG_TYPES (type));
5920 /* Construct, lay out and return the type of offsets to a value
5921 of type TYPE, within an object of type BASETYPE.
5922 If a suitable offset type exists already, reuse it. */
5924 tree
5925 build_offset_type (tree basetype, tree type)
5927 tree t;
5928 hashval_t hashcode = 0;
5930 /* Make a node of the sort we want. */
5931 t = make_node (OFFSET_TYPE);
5933 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
5934 TREE_TYPE (t) = type;
5936 /* If we already have such a type, use the old one. */
5937 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
5938 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
5939 t = type_hash_canon (hashcode, t);
5941 if (!COMPLETE_TYPE_P (t))
5942 layout_type (t);
5944 if (TYPE_CANONICAL (t) == t)
5946 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
5947 || TYPE_STRUCTURAL_EQUALITY_P (type))
5948 SET_TYPE_STRUCTURAL_EQUALITY (t);
5949 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
5950 || TYPE_CANONICAL (type) != type)
5951 TYPE_CANONICAL (t)
5952 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
5953 TYPE_CANONICAL (type));
5956 return t;
5959 /* Create a complex type whose components are COMPONENT_TYPE. */
5961 tree
5962 build_complex_type (tree component_type)
5964 tree t;
5965 hashval_t hashcode;
5967 /* Make a node of the sort we want. */
5968 t = make_node (COMPLEX_TYPE);
5970 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
5972 /* If we already have such a type, use the old one. */
5973 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
5974 t = type_hash_canon (hashcode, t);
5976 if (!COMPLETE_TYPE_P (t))
5977 layout_type (t);
5979 if (TYPE_CANONICAL (t) == t)
5981 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
5982 SET_TYPE_STRUCTURAL_EQUALITY (t);
5983 else if (TYPE_CANONICAL (component_type) != component_type)
5984 TYPE_CANONICAL (t)
5985 = build_complex_type (TYPE_CANONICAL (component_type));
5988 /* We need to create a name, since complex is a fundamental type. */
5989 if (! TYPE_NAME (t))
5991 const char *name;
5992 if (component_type == char_type_node)
5993 name = "complex char";
5994 else if (component_type == signed_char_type_node)
5995 name = "complex signed char";
5996 else if (component_type == unsigned_char_type_node)
5997 name = "complex unsigned char";
5998 else if (component_type == short_integer_type_node)
5999 name = "complex short int";
6000 else if (component_type == short_unsigned_type_node)
6001 name = "complex short unsigned int";
6002 else if (component_type == integer_type_node)
6003 name = "complex int";
6004 else if (component_type == unsigned_type_node)
6005 name = "complex unsigned int";
6006 else if (component_type == long_integer_type_node)
6007 name = "complex long int";
6008 else if (component_type == long_unsigned_type_node)
6009 name = "complex long unsigned int";
6010 else if (component_type == long_long_integer_type_node)
6011 name = "complex long long int";
6012 else if (component_type == long_long_unsigned_type_node)
6013 name = "complex long long unsigned int";
6014 else
6015 name = 0;
6017 if (name != 0)
6018 TYPE_NAME (t) = build_decl (TYPE_DECL, get_identifier (name), t);
6021 return build_qualified_type (t, TYPE_QUALS (component_type));
6024 /* Return OP, stripped of any conversions to wider types as much as is safe.
6025 Converting the value back to OP's type makes a value equivalent to OP.
6027 If FOR_TYPE is nonzero, we return a value which, if converted to
6028 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
6030 OP must have integer, real or enumeral type. Pointers are not allowed!
6032 There are some cases where the obvious value we could return
6033 would regenerate to OP if converted to OP's type,
6034 but would not extend like OP to wider types.
6035 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
6036 For example, if OP is (unsigned short)(signed char)-1,
6037 we avoid returning (signed char)-1 if FOR_TYPE is int,
6038 even though extending that to an unsigned short would regenerate OP,
6039 since the result of extending (signed char)-1 to (int)
6040 is different from (int) OP. */
6042 tree
6043 get_unwidened (tree op, tree for_type)
6045 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
6046 tree type = TREE_TYPE (op);
6047 unsigned final_prec
6048 = TYPE_PRECISION (for_type != 0 ? for_type : type);
6049 int uns
6050 = (for_type != 0 && for_type != type
6051 && final_prec > TYPE_PRECISION (type)
6052 && TYPE_UNSIGNED (type));
6053 tree win = op;
6055 while (CONVERT_EXPR_P (op))
6057 int bitschange;
6059 /* TYPE_PRECISION on vector types has different meaning
6060 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
6061 so avoid them here. */
6062 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
6063 break;
6065 bitschange = TYPE_PRECISION (TREE_TYPE (op))
6066 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
6068 /* Truncations are many-one so cannot be removed.
6069 Unless we are later going to truncate down even farther. */
6070 if (bitschange < 0
6071 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
6072 break;
6074 /* See what's inside this conversion. If we decide to strip it,
6075 we will set WIN. */
6076 op = TREE_OPERAND (op, 0);
6078 /* If we have not stripped any zero-extensions (uns is 0),
6079 we can strip any kind of extension.
6080 If we have previously stripped a zero-extension,
6081 only zero-extensions can safely be stripped.
6082 Any extension can be stripped if the bits it would produce
6083 are all going to be discarded later by truncating to FOR_TYPE. */
6085 if (bitschange > 0)
6087 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
6088 win = op;
6089 /* TYPE_UNSIGNED says whether this is a zero-extension.
6090 Let's avoid computing it if it does not affect WIN
6091 and if UNS will not be needed again. */
6092 if ((uns
6093 || CONVERT_EXPR_P (op))
6094 && TYPE_UNSIGNED (TREE_TYPE (op)))
6096 uns = 1;
6097 win = op;
6102 return win;
6105 /* Return OP or a simpler expression for a narrower value
6106 which can be sign-extended or zero-extended to give back OP.
6107 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
6108 or 0 if the value should be sign-extended. */
6110 tree
6111 get_narrower (tree op, int *unsignedp_ptr)
6113 int uns = 0;
6114 int first = 1;
6115 tree win = op;
6116 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
6118 while (TREE_CODE (op) == NOP_EXPR)
6120 int bitschange
6121 = (TYPE_PRECISION (TREE_TYPE (op))
6122 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
6124 /* Truncations are many-one so cannot be removed. */
6125 if (bitschange < 0)
6126 break;
6128 /* See what's inside this conversion. If we decide to strip it,
6129 we will set WIN. */
6131 if (bitschange > 0)
6133 op = TREE_OPERAND (op, 0);
6134 /* An extension: the outermost one can be stripped,
6135 but remember whether it is zero or sign extension. */
6136 if (first)
6137 uns = TYPE_UNSIGNED (TREE_TYPE (op));
6138 /* Otherwise, if a sign extension has been stripped,
6139 only sign extensions can now be stripped;
6140 if a zero extension has been stripped, only zero-extensions. */
6141 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
6142 break;
6143 first = 0;
6145 else /* bitschange == 0 */
6147 /* A change in nominal type can always be stripped, but we must
6148 preserve the unsignedness. */
6149 if (first)
6150 uns = TYPE_UNSIGNED (TREE_TYPE (op));
6151 first = 0;
6152 op = TREE_OPERAND (op, 0);
6153 /* Keep trying to narrow, but don't assign op to win if it
6154 would turn an integral type into something else. */
6155 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
6156 continue;
6159 win = op;
6162 if (TREE_CODE (op) == COMPONENT_REF
6163 /* Since type_for_size always gives an integer type. */
6164 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
6165 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
6166 /* Ensure field is laid out already. */
6167 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
6168 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
6170 unsigned HOST_WIDE_INT innerprec
6171 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
6172 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
6173 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
6174 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
6176 /* We can get this structure field in a narrower type that fits it,
6177 but the resulting extension to its nominal type (a fullword type)
6178 must satisfy the same conditions as for other extensions.
6180 Do this only for fields that are aligned (not bit-fields),
6181 because when bit-field insns will be used there is no
6182 advantage in doing this. */
6184 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
6185 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
6186 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
6187 && type != 0)
6189 if (first)
6190 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
6191 win = fold_convert (type, op);
6195 *unsignedp_ptr = uns;
6196 return win;
6199 /* Nonzero if integer constant C has a value that is permissible
6200 for type TYPE (an INTEGER_TYPE). */
6203 int_fits_type_p (const_tree c, const_tree type)
6205 tree type_low_bound = TYPE_MIN_VALUE (type);
6206 tree type_high_bound = TYPE_MAX_VALUE (type);
6207 bool ok_for_low_bound, ok_for_high_bound;
6208 unsigned HOST_WIDE_INT low;
6209 HOST_WIDE_INT high;
6211 /* If at least one bound of the type is a constant integer, we can check
6212 ourselves and maybe make a decision. If no such decision is possible, but
6213 this type is a subtype, try checking against that. Otherwise, use
6214 fit_double_type, which checks against the precision.
6216 Compute the status for each possibly constant bound, and return if we see
6217 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
6218 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
6219 for "constant known to fit". */
6221 /* Check if C >= type_low_bound. */
6222 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
6224 if (tree_int_cst_lt (c, type_low_bound))
6225 return 0;
6226 ok_for_low_bound = true;
6228 else
6229 ok_for_low_bound = false;
6231 /* Check if c <= type_high_bound. */
6232 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
6234 if (tree_int_cst_lt (type_high_bound, c))
6235 return 0;
6236 ok_for_high_bound = true;
6238 else
6239 ok_for_high_bound = false;
6241 /* If the constant fits both bounds, the result is known. */
6242 if (ok_for_low_bound && ok_for_high_bound)
6243 return 1;
6245 /* Perform some generic filtering which may allow making a decision
6246 even if the bounds are not constant. First, negative integers
6247 never fit in unsigned types, */
6248 if (TYPE_UNSIGNED (type) && tree_int_cst_sgn (c) < 0)
6249 return 0;
6251 /* Second, narrower types always fit in wider ones. */
6252 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
6253 return 1;
6255 /* Third, unsigned integers with top bit set never fit signed types. */
6256 if (! TYPE_UNSIGNED (type)
6257 && TYPE_UNSIGNED (TREE_TYPE (c))
6258 && tree_int_cst_msb (c))
6259 return 0;
6261 /* If we haven't been able to decide at this point, there nothing more we
6262 can check ourselves here. Look at the base type if we have one and it
6263 has the same precision. */
6264 if (TREE_CODE (type) == INTEGER_TYPE
6265 && TREE_TYPE (type) != 0
6266 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
6267 return int_fits_type_p (c, TREE_TYPE (type));
6269 /* Or to fit_double_type, if nothing else. */
6270 low = TREE_INT_CST_LOW (c);
6271 high = TREE_INT_CST_HIGH (c);
6272 return !fit_double_type (low, high, &low, &high, type);
6275 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
6276 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
6277 represented (assuming two's-complement arithmetic) within the bit
6278 precision of the type are returned instead. */
6280 void
6281 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
6283 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
6284 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
6285 mpz_set_double_int (min, tree_to_double_int (TYPE_MIN_VALUE (type)),
6286 TYPE_UNSIGNED (type));
6287 else
6289 if (TYPE_UNSIGNED (type))
6290 mpz_set_ui (min, 0);
6291 else
6293 double_int mn;
6294 mn = double_int_mask (TYPE_PRECISION (type) - 1);
6295 mn = double_int_sext (double_int_add (mn, double_int_one),
6296 TYPE_PRECISION (type));
6297 mpz_set_double_int (min, mn, false);
6301 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
6302 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
6303 mpz_set_double_int (max, tree_to_double_int (TYPE_MAX_VALUE (type)),
6304 TYPE_UNSIGNED (type));
6305 else
6307 if (TYPE_UNSIGNED (type))
6308 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type)),
6309 true);
6310 else
6311 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type) - 1),
6312 true);
6316 /* auto_var_in_fn_p is called to determine whether VAR is an automatic
6317 variable defined in function FN. */
6319 bool
6320 auto_var_in_fn_p (const_tree var, const_tree fn)
6322 return (DECL_P (var) && DECL_CONTEXT (var) == fn
6323 && (((TREE_CODE (var) == VAR_DECL || TREE_CODE (var) == PARM_DECL)
6324 && ! TREE_STATIC (var))
6325 || TREE_CODE (var) == LABEL_DECL
6326 || TREE_CODE (var) == RESULT_DECL));
6329 /* Subprogram of following function. Called by walk_tree.
6331 Return *TP if it is an automatic variable or parameter of the
6332 function passed in as DATA. */
6334 static tree
6335 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
6337 tree fn = (tree) data;
6339 if (TYPE_P (*tp))
6340 *walk_subtrees = 0;
6342 else if (DECL_P (*tp)
6343 && auto_var_in_fn_p (*tp, fn))
6344 return *tp;
6346 return NULL_TREE;
6349 /* Returns true if T is, contains, or refers to a type with variable
6350 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
6351 arguments, but not the return type. If FN is nonzero, only return
6352 true if a modifier of the type or position of FN is a variable or
6353 parameter inside FN.
6355 This concept is more general than that of C99 'variably modified types':
6356 in C99, a struct type is never variably modified because a VLA may not
6357 appear as a structure member. However, in GNU C code like:
6359 struct S { int i[f()]; };
6361 is valid, and other languages may define similar constructs. */
6363 bool
6364 variably_modified_type_p (tree type, tree fn)
6366 tree t;
6368 /* Test if T is either variable (if FN is zero) or an expression containing
6369 a variable in FN. */
6370 #define RETURN_TRUE_IF_VAR(T) \
6371 do { tree _t = (T); \
6372 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
6373 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
6374 return true; } while (0)
6376 if (type == error_mark_node)
6377 return false;
6379 /* If TYPE itself has variable size, it is variably modified. */
6380 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
6381 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
6383 switch (TREE_CODE (type))
6385 case POINTER_TYPE:
6386 case REFERENCE_TYPE:
6387 case VECTOR_TYPE:
6388 if (variably_modified_type_p (TREE_TYPE (type), fn))
6389 return true;
6390 break;
6392 case FUNCTION_TYPE:
6393 case METHOD_TYPE:
6394 /* If TYPE is a function type, it is variably modified if the
6395 return type is variably modified. */
6396 if (variably_modified_type_p (TREE_TYPE (type), fn))
6397 return true;
6398 break;
6400 case INTEGER_TYPE:
6401 case REAL_TYPE:
6402 case FIXED_POINT_TYPE:
6403 case ENUMERAL_TYPE:
6404 case BOOLEAN_TYPE:
6405 /* Scalar types are variably modified if their end points
6406 aren't constant. */
6407 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
6408 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
6409 break;
6411 case RECORD_TYPE:
6412 case UNION_TYPE:
6413 case QUAL_UNION_TYPE:
6414 /* We can't see if any of the fields are variably-modified by the
6415 definition we normally use, since that would produce infinite
6416 recursion via pointers. */
6417 /* This is variably modified if some field's type is. */
6418 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
6419 if (TREE_CODE (t) == FIELD_DECL)
6421 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
6422 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
6423 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
6425 if (TREE_CODE (type) == QUAL_UNION_TYPE)
6426 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
6428 break;
6430 case ARRAY_TYPE:
6431 /* Do not call ourselves to avoid infinite recursion. This is
6432 variably modified if the element type is. */
6433 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
6434 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
6435 break;
6437 default:
6438 break;
6441 /* The current language may have other cases to check, but in general,
6442 all other types are not variably modified. */
6443 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
6445 #undef RETURN_TRUE_IF_VAR
6448 /* Given a DECL or TYPE, return the scope in which it was declared, or
6449 NULL_TREE if there is no containing scope. */
6451 tree
6452 get_containing_scope (const_tree t)
6454 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
6457 /* Return the innermost context enclosing DECL that is
6458 a FUNCTION_DECL, or zero if none. */
6460 tree
6461 decl_function_context (const_tree decl)
6463 tree context;
6465 if (TREE_CODE (decl) == ERROR_MARK)
6466 return 0;
6468 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
6469 where we look up the function at runtime. Such functions always take
6470 a first argument of type 'pointer to real context'.
6472 C++ should really be fixed to use DECL_CONTEXT for the real context,
6473 and use something else for the "virtual context". */
6474 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
6475 context
6476 = TYPE_MAIN_VARIANT
6477 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
6478 else
6479 context = DECL_CONTEXT (decl);
6481 while (context && TREE_CODE (context) != FUNCTION_DECL)
6483 if (TREE_CODE (context) == BLOCK)
6484 context = BLOCK_SUPERCONTEXT (context);
6485 else
6486 context = get_containing_scope (context);
6489 return context;
6492 /* Return the innermost context enclosing DECL that is
6493 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
6494 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
6496 tree
6497 decl_type_context (const_tree decl)
6499 tree context = DECL_CONTEXT (decl);
6501 while (context)
6502 switch (TREE_CODE (context))
6504 case NAMESPACE_DECL:
6505 case TRANSLATION_UNIT_DECL:
6506 return NULL_TREE;
6508 case RECORD_TYPE:
6509 case UNION_TYPE:
6510 case QUAL_UNION_TYPE:
6511 return context;
6513 case TYPE_DECL:
6514 case FUNCTION_DECL:
6515 context = DECL_CONTEXT (context);
6516 break;
6518 case BLOCK:
6519 context = BLOCK_SUPERCONTEXT (context);
6520 break;
6522 default:
6523 gcc_unreachable ();
6526 return NULL_TREE;
6529 /* CALL is a CALL_EXPR. Return the declaration for the function
6530 called, or NULL_TREE if the called function cannot be
6531 determined. */
6533 tree
6534 get_callee_fndecl (const_tree call)
6536 tree addr;
6538 if (call == error_mark_node)
6539 return error_mark_node;
6541 /* It's invalid to call this function with anything but a
6542 CALL_EXPR. */
6543 gcc_assert (TREE_CODE (call) == CALL_EXPR);
6545 /* The first operand to the CALL is the address of the function
6546 called. */
6547 addr = CALL_EXPR_FN (call);
6549 STRIP_NOPS (addr);
6551 /* If this is a readonly function pointer, extract its initial value. */
6552 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
6553 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
6554 && DECL_INITIAL (addr))
6555 addr = DECL_INITIAL (addr);
6557 /* If the address is just `&f' for some function `f', then we know
6558 that `f' is being called. */
6559 if (TREE_CODE (addr) == ADDR_EXPR
6560 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
6561 return TREE_OPERAND (addr, 0);
6563 /* We couldn't figure out what was being called. Maybe the front
6564 end has some idea. */
6565 return lang_hooks.lang_get_callee_fndecl (call);
6568 /* Print debugging information about tree nodes generated during the compile,
6569 and any language-specific information. */
6571 void
6572 dump_tree_statistics (void)
6574 #ifdef GATHER_STATISTICS
6575 int i;
6576 int total_nodes, total_bytes;
6577 #endif
6579 fprintf (stderr, "\n??? tree nodes created\n\n");
6580 #ifdef GATHER_STATISTICS
6581 fprintf (stderr, "Kind Nodes Bytes\n");
6582 fprintf (stderr, "---------------------------------------\n");
6583 total_nodes = total_bytes = 0;
6584 for (i = 0; i < (int) all_kinds; i++)
6586 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
6587 tree_node_counts[i], tree_node_sizes[i]);
6588 total_nodes += tree_node_counts[i];
6589 total_bytes += tree_node_sizes[i];
6591 fprintf (stderr, "---------------------------------------\n");
6592 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
6593 fprintf (stderr, "---------------------------------------\n");
6594 ssanames_print_statistics ();
6595 phinodes_print_statistics ();
6596 #else
6597 fprintf (stderr, "(No per-node statistics)\n");
6598 #endif
6599 print_type_hash_statistics ();
6600 print_debug_expr_statistics ();
6601 print_value_expr_statistics ();
6602 print_restrict_base_statistics ();
6603 lang_hooks.print_statistics ();
6606 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
6608 /* Generate a crc32 of a string. */
6610 unsigned
6611 crc32_string (unsigned chksum, const char *string)
6615 unsigned value = *string << 24;
6616 unsigned ix;
6618 for (ix = 8; ix--; value <<= 1)
6620 unsigned feedback;
6622 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
6623 chksum <<= 1;
6624 chksum ^= feedback;
6627 while (*string++);
6628 return chksum;
6631 /* P is a string that will be used in a symbol. Mask out any characters
6632 that are not valid in that context. */
6634 void
6635 clean_symbol_name (char *p)
6637 for (; *p; p++)
6638 if (! (ISALNUM (*p)
6639 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
6640 || *p == '$'
6641 #endif
6642 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
6643 || *p == '.'
6644 #endif
6646 *p = '_';
6649 /* Generate a name for a special-purpose function function.
6650 The generated name may need to be unique across the whole link.
6651 TYPE is some string to identify the purpose of this function to the
6652 linker or collect2; it must start with an uppercase letter,
6653 one of:
6654 I - for constructors
6655 D - for destructors
6656 N - for C++ anonymous namespaces
6657 F - for DWARF unwind frame information. */
6659 tree
6660 get_file_function_name (const char *type)
6662 char *buf;
6663 const char *p;
6664 char *q;
6666 /* If we already have a name we know to be unique, just use that. */
6667 if (first_global_object_name)
6668 p = first_global_object_name;
6669 /* If the target is handling the constructors/destructors, they
6670 will be local to this file and the name is only necessary for
6671 debugging purposes. */
6672 else if ((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
6674 const char *file = main_input_filename;
6675 if (! file)
6676 file = input_filename;
6677 /* Just use the file's basename, because the full pathname
6678 might be quite long. */
6679 p = strrchr (file, '/');
6680 if (p)
6681 p++;
6682 else
6683 p = file;
6684 p = q = ASTRDUP (p);
6685 clean_symbol_name (q);
6687 else
6689 /* Otherwise, the name must be unique across the entire link.
6690 We don't have anything that we know to be unique to this translation
6691 unit, so use what we do have and throw in some randomness. */
6692 unsigned len;
6693 const char *name = weak_global_object_name;
6694 const char *file = main_input_filename;
6696 if (! name)
6697 name = "";
6698 if (! file)
6699 file = input_filename;
6701 len = strlen (file);
6702 q = alloca (9 * 2 + len + 1);
6703 memcpy (q, file, len + 1);
6704 clean_symbol_name (q);
6706 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
6707 crc32_string (0, get_random_seed (false)));
6709 p = q;
6712 buf = alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p) + strlen (type));
6714 /* Set up the name of the file-level functions we may need.
6715 Use a global object (which is already required to be unique over
6716 the program) rather than the file name (which imposes extra
6717 constraints). */
6718 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
6720 return get_identifier (buf);
6723 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
6725 /* Complain that the tree code of NODE does not match the expected 0
6726 terminated list of trailing codes. The trailing code list can be
6727 empty, for a more vague error message. FILE, LINE, and FUNCTION
6728 are of the caller. */
6730 void
6731 tree_check_failed (const_tree node, const char *file,
6732 int line, const char *function, ...)
6734 va_list args;
6735 const char *buffer;
6736 unsigned length = 0;
6737 int code;
6739 va_start (args, function);
6740 while ((code = va_arg (args, int)))
6741 length += 4 + strlen (tree_code_name[code]);
6742 va_end (args);
6743 if (length)
6745 char *tmp;
6746 va_start (args, function);
6747 length += strlen ("expected ");
6748 buffer = tmp = alloca (length);
6749 length = 0;
6750 while ((code = va_arg (args, int)))
6752 const char *prefix = length ? " or " : "expected ";
6754 strcpy (tmp + length, prefix);
6755 length += strlen (prefix);
6756 strcpy (tmp + length, tree_code_name[code]);
6757 length += strlen (tree_code_name[code]);
6759 va_end (args);
6761 else
6762 buffer = "unexpected node";
6764 internal_error ("tree check: %s, have %s in %s, at %s:%d",
6765 buffer, tree_code_name[TREE_CODE (node)],
6766 function, trim_filename (file), line);
6769 /* Complain that the tree code of NODE does match the expected 0
6770 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
6771 the caller. */
6773 void
6774 tree_not_check_failed (const_tree node, const char *file,
6775 int line, const char *function, ...)
6777 va_list args;
6778 char *buffer;
6779 unsigned length = 0;
6780 int code;
6782 va_start (args, function);
6783 while ((code = va_arg (args, int)))
6784 length += 4 + strlen (tree_code_name[code]);
6785 va_end (args);
6786 va_start (args, function);
6787 buffer = alloca (length);
6788 length = 0;
6789 while ((code = va_arg (args, int)))
6791 if (length)
6793 strcpy (buffer + length, " or ");
6794 length += 4;
6796 strcpy (buffer + length, tree_code_name[code]);
6797 length += strlen (tree_code_name[code]);
6799 va_end (args);
6801 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
6802 buffer, tree_code_name[TREE_CODE (node)],
6803 function, trim_filename (file), line);
6806 /* Similar to tree_check_failed, except that we check for a class of tree
6807 code, given in CL. */
6809 void
6810 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
6811 const char *file, int line, const char *function)
6813 internal_error
6814 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
6815 TREE_CODE_CLASS_STRING (cl),
6816 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
6817 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
6820 /* Similar to tree_check_failed, except that instead of specifying a
6821 dozen codes, use the knowledge that they're all sequential. */
6823 void
6824 tree_range_check_failed (const_tree node, const char *file, int line,
6825 const char *function, enum tree_code c1,
6826 enum tree_code c2)
6828 char *buffer;
6829 unsigned length = 0;
6830 enum tree_code c;
6832 for (c = c1; c <= c2; ++c)
6833 length += 4 + strlen (tree_code_name[c]);
6835 length += strlen ("expected ");
6836 buffer = alloca (length);
6837 length = 0;
6839 for (c = c1; c <= c2; ++c)
6841 const char *prefix = length ? " or " : "expected ";
6843 strcpy (buffer + length, prefix);
6844 length += strlen (prefix);
6845 strcpy (buffer + length, tree_code_name[c]);
6846 length += strlen (tree_code_name[c]);
6849 internal_error ("tree check: %s, have %s in %s, at %s:%d",
6850 buffer, tree_code_name[TREE_CODE (node)],
6851 function, trim_filename (file), line);
6855 /* Similar to tree_check_failed, except that we check that a tree does
6856 not have the specified code, given in CL. */
6858 void
6859 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
6860 const char *file, int line, const char *function)
6862 internal_error
6863 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
6864 TREE_CODE_CLASS_STRING (cl),
6865 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
6866 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
6870 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
6872 void
6873 omp_clause_check_failed (const_tree node, const char *file, int line,
6874 const char *function, enum omp_clause_code code)
6876 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
6877 omp_clause_code_name[code], tree_code_name[TREE_CODE (node)],
6878 function, trim_filename (file), line);
6882 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
6884 void
6885 omp_clause_range_check_failed (const_tree node, const char *file, int line,
6886 const char *function, enum omp_clause_code c1,
6887 enum omp_clause_code c2)
6889 char *buffer;
6890 unsigned length = 0;
6891 enum omp_clause_code c;
6893 for (c = c1; c <= c2; ++c)
6894 length += 4 + strlen (omp_clause_code_name[c]);
6896 length += strlen ("expected ");
6897 buffer = alloca (length);
6898 length = 0;
6900 for (c = c1; c <= c2; ++c)
6902 const char *prefix = length ? " or " : "expected ";
6904 strcpy (buffer + length, prefix);
6905 length += strlen (prefix);
6906 strcpy (buffer + length, omp_clause_code_name[c]);
6907 length += strlen (omp_clause_code_name[c]);
6910 internal_error ("tree check: %s, have %s in %s, at %s:%d",
6911 buffer, omp_clause_code_name[TREE_CODE (node)],
6912 function, trim_filename (file), line);
6916 #undef DEFTREESTRUCT
6917 #define DEFTREESTRUCT(VAL, NAME) NAME,
6919 static const char *ts_enum_names[] = {
6920 #include "treestruct.def"
6922 #undef DEFTREESTRUCT
6924 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
6926 /* Similar to tree_class_check_failed, except that we check for
6927 whether CODE contains the tree structure identified by EN. */
6929 void
6930 tree_contains_struct_check_failed (const_tree node,
6931 const enum tree_node_structure_enum en,
6932 const char *file, int line,
6933 const char *function)
6935 internal_error
6936 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
6937 TS_ENUM_NAME(en),
6938 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
6942 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
6943 (dynamically sized) vector. */
6945 void
6946 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
6947 const char *function)
6949 internal_error
6950 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
6951 idx + 1, len, function, trim_filename (file), line);
6954 /* Similar to above, except that the check is for the bounds of a PHI_NODE's
6955 (dynamically sized) vector. */
6957 void
6958 phi_node_elt_check_failed (int idx, int len, const char *file, int line,
6959 const char *function)
6961 internal_error
6962 ("tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d",
6963 idx + 1, len, function, trim_filename (file), line);
6966 /* Similar to above, except that the check is for the bounds of the operand
6967 vector of an expression node EXP. */
6969 void
6970 tree_operand_check_failed (int idx, const_tree exp, const char *file,
6971 int line, const char *function)
6973 int code = TREE_CODE (exp);
6974 internal_error
6975 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
6976 idx + 1, tree_code_name[code], TREE_OPERAND_LENGTH (exp),
6977 function, trim_filename (file), line);
6980 /* Similar to above, except that the check is for the number of
6981 operands of an OMP_CLAUSE node. */
6983 void
6984 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
6985 int line, const char *function)
6987 internal_error
6988 ("tree check: accessed operand %d of omp_clause %s with %d operands "
6989 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
6990 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
6991 trim_filename (file), line);
6993 #endif /* ENABLE_TREE_CHECKING */
6995 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
6996 and mapped to the machine mode MODE. Initialize its fields and build
6997 the information necessary for debugging output. */
6999 static tree
7000 make_vector_type (tree innertype, int nunits, enum machine_mode mode)
7002 tree t;
7003 hashval_t hashcode = 0;
7005 /* Build a main variant, based on the main variant of the inner type, then
7006 use it to build the variant we return. */
7007 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
7008 && TYPE_MAIN_VARIANT (innertype) != innertype)
7009 return build_type_attribute_qual_variant (
7010 make_vector_type (TYPE_MAIN_VARIANT (innertype), nunits, mode),
7011 TYPE_ATTRIBUTES (innertype),
7012 TYPE_QUALS (innertype));
7014 t = make_node (VECTOR_TYPE);
7015 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
7016 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
7017 TYPE_MODE (t) = mode;
7018 TYPE_READONLY (t) = TYPE_READONLY (innertype);
7019 TYPE_VOLATILE (t) = TYPE_VOLATILE (innertype);
7021 if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
7022 SET_TYPE_STRUCTURAL_EQUALITY (t);
7023 else if (TYPE_CANONICAL (innertype) != innertype
7024 || mode != VOIDmode)
7025 TYPE_CANONICAL (t)
7026 = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
7028 layout_type (t);
7031 tree index = build_int_cst (NULL_TREE, nunits - 1);
7032 tree array = build_array_type (innertype, build_index_type (index));
7033 tree rt = make_node (RECORD_TYPE);
7035 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
7036 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
7037 layout_type (rt);
7038 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
7039 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
7040 the representation type, and we want to find that die when looking up
7041 the vector type. This is most easily achieved by making the TYPE_UID
7042 numbers equal. */
7043 TYPE_UID (rt) = TYPE_UID (t);
7046 hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode);
7047 hashcode = iterative_hash_host_wide_int (mode, hashcode);
7048 hashcode = iterative_hash_object (TYPE_HASH (innertype), hashcode);
7049 return type_hash_canon (hashcode, t);
7052 static tree
7053 make_or_reuse_type (unsigned size, int unsignedp)
7055 if (size == INT_TYPE_SIZE)
7056 return unsignedp ? unsigned_type_node : integer_type_node;
7057 if (size == CHAR_TYPE_SIZE)
7058 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
7059 if (size == SHORT_TYPE_SIZE)
7060 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
7061 if (size == LONG_TYPE_SIZE)
7062 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
7063 if (size == LONG_LONG_TYPE_SIZE)
7064 return (unsignedp ? long_long_unsigned_type_node
7065 : long_long_integer_type_node);
7067 if (unsignedp)
7068 return make_unsigned_type (size);
7069 else
7070 return make_signed_type (size);
7073 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
7075 static tree
7076 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
7078 if (satp)
7080 if (size == SHORT_FRACT_TYPE_SIZE)
7081 return unsignedp ? sat_unsigned_short_fract_type_node
7082 : sat_short_fract_type_node;
7083 if (size == FRACT_TYPE_SIZE)
7084 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
7085 if (size == LONG_FRACT_TYPE_SIZE)
7086 return unsignedp ? sat_unsigned_long_fract_type_node
7087 : sat_long_fract_type_node;
7088 if (size == LONG_LONG_FRACT_TYPE_SIZE)
7089 return unsignedp ? sat_unsigned_long_long_fract_type_node
7090 : sat_long_long_fract_type_node;
7092 else
7094 if (size == SHORT_FRACT_TYPE_SIZE)
7095 return unsignedp ? unsigned_short_fract_type_node
7096 : short_fract_type_node;
7097 if (size == FRACT_TYPE_SIZE)
7098 return unsignedp ? unsigned_fract_type_node : fract_type_node;
7099 if (size == LONG_FRACT_TYPE_SIZE)
7100 return unsignedp ? unsigned_long_fract_type_node
7101 : long_fract_type_node;
7102 if (size == LONG_LONG_FRACT_TYPE_SIZE)
7103 return unsignedp ? unsigned_long_long_fract_type_node
7104 : long_long_fract_type_node;
7107 return make_fract_type (size, unsignedp, satp);
7110 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
7112 static tree
7113 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
7115 if (satp)
7117 if (size == SHORT_ACCUM_TYPE_SIZE)
7118 return unsignedp ? sat_unsigned_short_accum_type_node
7119 : sat_short_accum_type_node;
7120 if (size == ACCUM_TYPE_SIZE)
7121 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
7122 if (size == LONG_ACCUM_TYPE_SIZE)
7123 return unsignedp ? sat_unsigned_long_accum_type_node
7124 : sat_long_accum_type_node;
7125 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
7126 return unsignedp ? sat_unsigned_long_long_accum_type_node
7127 : sat_long_long_accum_type_node;
7129 else
7131 if (size == SHORT_ACCUM_TYPE_SIZE)
7132 return unsignedp ? unsigned_short_accum_type_node
7133 : short_accum_type_node;
7134 if (size == ACCUM_TYPE_SIZE)
7135 return unsignedp ? unsigned_accum_type_node : accum_type_node;
7136 if (size == LONG_ACCUM_TYPE_SIZE)
7137 return unsignedp ? unsigned_long_accum_type_node
7138 : long_accum_type_node;
7139 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
7140 return unsignedp ? unsigned_long_long_accum_type_node
7141 : long_long_accum_type_node;
7144 return make_accum_type (size, unsignedp, satp);
7147 /* Create nodes for all integer types (and error_mark_node) using the sizes
7148 of C datatypes. The caller should call set_sizetype soon after calling
7149 this function to select one of the types as sizetype. */
7151 void
7152 build_common_tree_nodes (bool signed_char, bool signed_sizetype)
7154 error_mark_node = make_node (ERROR_MARK);
7155 TREE_TYPE (error_mark_node) = error_mark_node;
7157 initialize_sizetypes (signed_sizetype);
7159 /* Define both `signed char' and `unsigned char'. */
7160 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
7161 TYPE_STRING_FLAG (signed_char_type_node) = 1;
7162 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
7163 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
7165 /* Define `char', which is like either `signed char' or `unsigned char'
7166 but not the same as either. */
7167 char_type_node
7168 = (signed_char
7169 ? make_signed_type (CHAR_TYPE_SIZE)
7170 : make_unsigned_type (CHAR_TYPE_SIZE));
7171 TYPE_STRING_FLAG (char_type_node) = 1;
7173 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
7174 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
7175 integer_type_node = make_signed_type (INT_TYPE_SIZE);
7176 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
7177 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
7178 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
7179 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
7180 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
7182 /* Define a boolean type. This type only represents boolean values but
7183 may be larger than char depending on the value of BOOL_TYPE_SIZE.
7184 Front ends which want to override this size (i.e. Java) can redefine
7185 boolean_type_node before calling build_common_tree_nodes_2. */
7186 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
7187 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
7188 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
7189 TYPE_PRECISION (boolean_type_node) = 1;
7191 /* Fill in the rest of the sized types. Reuse existing type nodes
7192 when possible. */
7193 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
7194 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
7195 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
7196 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
7197 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
7199 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
7200 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
7201 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
7202 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
7203 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
7205 access_public_node = get_identifier ("public");
7206 access_protected_node = get_identifier ("protected");
7207 access_private_node = get_identifier ("private");
7210 /* Call this function after calling build_common_tree_nodes and set_sizetype.
7211 It will create several other common tree nodes. */
7213 void
7214 build_common_tree_nodes_2 (int short_double)
7216 /* Define these next since types below may used them. */
7217 integer_zero_node = build_int_cst (NULL_TREE, 0);
7218 integer_one_node = build_int_cst (NULL_TREE, 1);
7219 integer_minus_one_node = build_int_cst (NULL_TREE, -1);
7221 size_zero_node = size_int (0);
7222 size_one_node = size_int (1);
7223 bitsize_zero_node = bitsize_int (0);
7224 bitsize_one_node = bitsize_int (1);
7225 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
7227 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
7228 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
7230 void_type_node = make_node (VOID_TYPE);
7231 layout_type (void_type_node);
7233 /* We are not going to have real types in C with less than byte alignment,
7234 so we might as well not have any types that claim to have it. */
7235 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
7236 TYPE_USER_ALIGN (void_type_node) = 0;
7238 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
7239 layout_type (TREE_TYPE (null_pointer_node));
7241 ptr_type_node = build_pointer_type (void_type_node);
7242 const_ptr_type_node
7243 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
7244 fileptr_type_node = ptr_type_node;
7246 float_type_node = make_node (REAL_TYPE);
7247 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
7248 layout_type (float_type_node);
7250 double_type_node = make_node (REAL_TYPE);
7251 if (short_double)
7252 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
7253 else
7254 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
7255 layout_type (double_type_node);
7257 long_double_type_node = make_node (REAL_TYPE);
7258 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
7259 layout_type (long_double_type_node);
7261 float_ptr_type_node = build_pointer_type (float_type_node);
7262 double_ptr_type_node = build_pointer_type (double_type_node);
7263 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
7264 integer_ptr_type_node = build_pointer_type (integer_type_node);
7266 /* Fixed size integer types. */
7267 uint32_type_node = build_nonstandard_integer_type (32, true);
7268 uint64_type_node = build_nonstandard_integer_type (64, true);
7270 /* Decimal float types. */
7271 dfloat32_type_node = make_node (REAL_TYPE);
7272 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
7273 layout_type (dfloat32_type_node);
7274 TYPE_MODE (dfloat32_type_node) = SDmode;
7275 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
7277 dfloat64_type_node = make_node (REAL_TYPE);
7278 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
7279 layout_type (dfloat64_type_node);
7280 TYPE_MODE (dfloat64_type_node) = DDmode;
7281 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
7283 dfloat128_type_node = make_node (REAL_TYPE);
7284 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
7285 layout_type (dfloat128_type_node);
7286 TYPE_MODE (dfloat128_type_node) = TDmode;
7287 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
7289 complex_integer_type_node = build_complex_type (integer_type_node);
7290 complex_float_type_node = build_complex_type (float_type_node);
7291 complex_double_type_node = build_complex_type (double_type_node);
7292 complex_long_double_type_node = build_complex_type (long_double_type_node);
7294 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
7295 #define MAKE_FIXED_TYPE_NODE(KIND,WIDTH,SIZE) \
7296 sat_ ## WIDTH ## KIND ## _type_node = \
7297 make_sat_signed_ ## KIND ## _type (SIZE); \
7298 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
7299 make_sat_unsigned_ ## KIND ## _type (SIZE); \
7300 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
7301 unsigned_ ## WIDTH ## KIND ## _type_node = \
7302 make_unsigned_ ## KIND ## _type (SIZE);
7304 /* Make fixed-point type nodes based on four different widths. */
7305 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
7306 MAKE_FIXED_TYPE_NODE (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
7307 MAKE_FIXED_TYPE_NODE (N1, , N2 ## _TYPE_SIZE) \
7308 MAKE_FIXED_TYPE_NODE (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
7309 MAKE_FIXED_TYPE_NODE (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
7311 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
7312 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
7313 NAME ## _type_node = \
7314 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
7315 u ## NAME ## _type_node = \
7316 make_or_reuse_unsigned_ ## KIND ## _type \
7317 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
7318 sat_ ## NAME ## _type_node = \
7319 make_or_reuse_sat_signed_ ## KIND ## _type \
7320 (GET_MODE_BITSIZE (MODE ## mode)); \
7321 sat_u ## NAME ## _type_node = \
7322 make_or_reuse_sat_unsigned_ ## KIND ## _type \
7323 (GET_MODE_BITSIZE (U ## MODE ## mode));
7325 /* Fixed-point type and mode nodes. */
7326 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
7327 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
7328 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
7329 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
7330 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
7331 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
7332 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
7333 MAKE_FIXED_MODE_NODE (accum, ha, HA)
7334 MAKE_FIXED_MODE_NODE (accum, sa, SA)
7335 MAKE_FIXED_MODE_NODE (accum, da, DA)
7336 MAKE_FIXED_MODE_NODE (accum, ta, TA)
7339 tree t = targetm.build_builtin_va_list ();
7341 /* Many back-ends define record types without setting TYPE_NAME.
7342 If we copied the record type here, we'd keep the original
7343 record type without a name. This breaks name mangling. So,
7344 don't copy record types and let c_common_nodes_and_builtins()
7345 declare the type to be __builtin_va_list. */
7346 if (TREE_CODE (t) != RECORD_TYPE)
7347 t = build_variant_type_copy (t);
7349 va_list_type_node = t;
7353 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
7355 static void
7356 local_define_builtin (const char *name, tree type, enum built_in_function code,
7357 const char *library_name, int ecf_flags)
7359 tree decl;
7361 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
7362 library_name, NULL_TREE);
7363 if (ecf_flags & ECF_CONST)
7364 TREE_READONLY (decl) = 1;
7365 if (ecf_flags & ECF_PURE)
7366 DECL_PURE_P (decl) = 1;
7367 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
7368 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
7369 if (ecf_flags & ECF_NORETURN)
7370 TREE_THIS_VOLATILE (decl) = 1;
7371 if (ecf_flags & ECF_NOTHROW)
7372 TREE_NOTHROW (decl) = 1;
7373 if (ecf_flags & ECF_MALLOC)
7374 DECL_IS_MALLOC (decl) = 1;
7376 built_in_decls[code] = decl;
7377 implicit_built_in_decls[code] = decl;
7380 /* Call this function after instantiating all builtins that the language
7381 front end cares about. This will build the rest of the builtins that
7382 are relied upon by the tree optimizers and the middle-end. */
7384 void
7385 build_common_builtin_nodes (void)
7387 tree tmp, ftype;
7389 if (built_in_decls[BUILT_IN_MEMCPY] == NULL
7390 || built_in_decls[BUILT_IN_MEMMOVE] == NULL)
7392 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
7393 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
7394 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
7395 ftype = build_function_type (ptr_type_node, tmp);
7397 if (built_in_decls[BUILT_IN_MEMCPY] == NULL)
7398 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
7399 "memcpy", ECF_NOTHROW);
7400 if (built_in_decls[BUILT_IN_MEMMOVE] == NULL)
7401 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
7402 "memmove", ECF_NOTHROW);
7405 if (built_in_decls[BUILT_IN_MEMCMP] == NULL)
7407 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
7408 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
7409 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
7410 ftype = build_function_type (integer_type_node, tmp);
7411 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
7412 "memcmp", ECF_PURE | ECF_NOTHROW);
7415 if (built_in_decls[BUILT_IN_MEMSET] == NULL)
7417 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
7418 tmp = tree_cons (NULL_TREE, integer_type_node, tmp);
7419 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
7420 ftype = build_function_type (ptr_type_node, tmp);
7421 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
7422 "memset", ECF_NOTHROW);
7425 if (built_in_decls[BUILT_IN_ALLOCA] == NULL)
7427 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
7428 ftype = build_function_type (ptr_type_node, tmp);
7429 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
7430 "alloca", ECF_NOTHROW | ECF_MALLOC);
7433 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7434 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
7435 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
7436 ftype = build_function_type (void_type_node, tmp);
7437 local_define_builtin ("__builtin_init_trampoline", ftype,
7438 BUILT_IN_INIT_TRAMPOLINE,
7439 "__builtin_init_trampoline", ECF_NOTHROW);
7441 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7442 ftype = build_function_type (ptr_type_node, tmp);
7443 local_define_builtin ("__builtin_adjust_trampoline", ftype,
7444 BUILT_IN_ADJUST_TRAMPOLINE,
7445 "__builtin_adjust_trampoline",
7446 ECF_CONST | ECF_NOTHROW);
7448 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7449 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
7450 ftype = build_function_type (void_type_node, tmp);
7451 local_define_builtin ("__builtin_nonlocal_goto", ftype,
7452 BUILT_IN_NONLOCAL_GOTO,
7453 "__builtin_nonlocal_goto",
7454 ECF_NORETURN | ECF_NOTHROW);
7456 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7457 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
7458 ftype = build_function_type (void_type_node, tmp);
7459 local_define_builtin ("__builtin_setjmp_setup", ftype,
7460 BUILT_IN_SETJMP_SETUP,
7461 "__builtin_setjmp_setup", ECF_NOTHROW);
7463 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7464 ftype = build_function_type (ptr_type_node, tmp);
7465 local_define_builtin ("__builtin_setjmp_dispatcher", ftype,
7466 BUILT_IN_SETJMP_DISPATCHER,
7467 "__builtin_setjmp_dispatcher",
7468 ECF_PURE | ECF_NOTHROW);
7470 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7471 ftype = build_function_type (void_type_node, tmp);
7472 local_define_builtin ("__builtin_setjmp_receiver", ftype,
7473 BUILT_IN_SETJMP_RECEIVER,
7474 "__builtin_setjmp_receiver", ECF_NOTHROW);
7476 ftype = build_function_type (ptr_type_node, void_list_node);
7477 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
7478 "__builtin_stack_save", ECF_NOTHROW);
7480 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
7481 ftype = build_function_type (void_type_node, tmp);
7482 local_define_builtin ("__builtin_stack_restore", ftype,
7483 BUILT_IN_STACK_RESTORE,
7484 "__builtin_stack_restore", ECF_NOTHROW);
7486 ftype = build_function_type (void_type_node, void_list_node);
7487 local_define_builtin ("__builtin_profile_func_enter", ftype,
7488 BUILT_IN_PROFILE_FUNC_ENTER, "profile_func_enter", 0);
7489 local_define_builtin ("__builtin_profile_func_exit", ftype,
7490 BUILT_IN_PROFILE_FUNC_EXIT, "profile_func_exit", 0);
7492 /* Complex multiplication and division. These are handled as builtins
7493 rather than optabs because emit_library_call_value doesn't support
7494 complex. Further, we can do slightly better with folding these
7495 beasties if the real and complex parts of the arguments are separate. */
7497 enum machine_mode mode;
7499 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
7501 char mode_name_buf[4], *q;
7502 const char *p;
7503 enum built_in_function mcode, dcode;
7504 tree type, inner_type;
7506 type = lang_hooks.types.type_for_mode (mode, 0);
7507 if (type == NULL)
7508 continue;
7509 inner_type = TREE_TYPE (type);
7511 tmp = tree_cons (NULL_TREE, inner_type, void_list_node);
7512 tmp = tree_cons (NULL_TREE, inner_type, tmp);
7513 tmp = tree_cons (NULL_TREE, inner_type, tmp);
7514 tmp = tree_cons (NULL_TREE, inner_type, tmp);
7515 ftype = build_function_type (type, tmp);
7517 mcode = BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT;
7518 dcode = BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT;
7520 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
7521 *q = TOLOWER (*p);
7522 *q = '\0';
7524 built_in_names[mcode] = concat ("__mul", mode_name_buf, "3", NULL);
7525 local_define_builtin (built_in_names[mcode], ftype, mcode,
7526 built_in_names[mcode], ECF_CONST | ECF_NOTHROW);
7528 built_in_names[dcode] = concat ("__div", mode_name_buf, "3", NULL);
7529 local_define_builtin (built_in_names[dcode], ftype, dcode,
7530 built_in_names[dcode], ECF_CONST | ECF_NOTHROW);
7535 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
7536 better way.
7538 If we requested a pointer to a vector, build up the pointers that
7539 we stripped off while looking for the inner type. Similarly for
7540 return values from functions.
7542 The argument TYPE is the top of the chain, and BOTTOM is the
7543 new type which we will point to. */
7545 tree
7546 reconstruct_complex_type (tree type, tree bottom)
7548 tree inner, outer;
7550 if (TREE_CODE (type) == POINTER_TYPE)
7552 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
7553 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
7554 TYPE_REF_CAN_ALIAS_ALL (type));
7556 else if (TREE_CODE (type) == REFERENCE_TYPE)
7558 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
7559 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
7560 TYPE_REF_CAN_ALIAS_ALL (type));
7562 else if (TREE_CODE (type) == ARRAY_TYPE)
7564 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
7565 outer = build_array_type (inner, TYPE_DOMAIN (type));
7567 else if (TREE_CODE (type) == FUNCTION_TYPE)
7569 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
7570 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
7572 else if (TREE_CODE (type) == METHOD_TYPE)
7574 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
7575 /* The build_method_type_directly() routine prepends 'this' to argument list,
7576 so we must compensate by getting rid of it. */
7577 outer
7578 = build_method_type_directly
7579 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
7580 inner,
7581 TREE_CHAIN (TYPE_ARG_TYPES (type)));
7583 else if (TREE_CODE (type) == OFFSET_TYPE)
7585 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
7586 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
7588 else
7589 return bottom;
7591 return build_qualified_type (outer, TYPE_QUALS (type));
7594 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
7595 the inner type. */
7596 tree
7597 build_vector_type_for_mode (tree innertype, enum machine_mode mode)
7599 int nunits;
7601 switch (GET_MODE_CLASS (mode))
7603 case MODE_VECTOR_INT:
7604 case MODE_VECTOR_FLOAT:
7605 case MODE_VECTOR_FRACT:
7606 case MODE_VECTOR_UFRACT:
7607 case MODE_VECTOR_ACCUM:
7608 case MODE_VECTOR_UACCUM:
7609 nunits = GET_MODE_NUNITS (mode);
7610 break;
7612 case MODE_INT:
7613 /* Check that there are no leftover bits. */
7614 gcc_assert (GET_MODE_BITSIZE (mode)
7615 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
7617 nunits = GET_MODE_BITSIZE (mode)
7618 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
7619 break;
7621 default:
7622 gcc_unreachable ();
7625 return make_vector_type (innertype, nunits, mode);
7628 /* Similarly, but takes the inner type and number of units, which must be
7629 a power of two. */
7631 tree
7632 build_vector_type (tree innertype, int nunits)
7634 return make_vector_type (innertype, nunits, VOIDmode);
7638 /* Build RESX_EXPR with given REGION_NUMBER. */
7639 tree
7640 build_resx (int region_number)
7642 tree t;
7643 t = build1 (RESX_EXPR, void_type_node,
7644 build_int_cst (NULL_TREE, region_number));
7645 return t;
7648 /* Given an initializer INIT, return TRUE if INIT is zero or some
7649 aggregate of zeros. Otherwise return FALSE. */
7650 bool
7651 initializer_zerop (const_tree init)
7653 tree elt;
7655 STRIP_NOPS (init);
7657 switch (TREE_CODE (init))
7659 case INTEGER_CST:
7660 return integer_zerop (init);
7662 case REAL_CST:
7663 /* ??? Note that this is not correct for C4X float formats. There,
7664 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
7665 negative exponent. */
7666 return real_zerop (init)
7667 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
7669 case FIXED_CST:
7670 return fixed_zerop (init);
7672 case COMPLEX_CST:
7673 return integer_zerop (init)
7674 || (real_zerop (init)
7675 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
7676 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
7678 case VECTOR_CST:
7679 for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
7680 if (!initializer_zerop (TREE_VALUE (elt)))
7681 return false;
7682 return true;
7684 case CONSTRUCTOR:
7686 unsigned HOST_WIDE_INT idx;
7688 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
7689 if (!initializer_zerop (elt))
7690 return false;
7691 return true;
7694 default:
7695 return false;
7699 /* Build an empty statement. */
7701 tree
7702 build_empty_stmt (void)
7704 return build1 (NOP_EXPR, void_type_node, size_zero_node);
7708 /* Build an OpenMP clause with code CODE. */
7710 tree
7711 build_omp_clause (enum omp_clause_code code)
7713 tree t;
7714 int size, length;
7716 length = omp_clause_num_ops[code];
7717 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
7719 t = ggc_alloc (size);
7720 memset (t, 0, size);
7721 TREE_SET_CODE (t, OMP_CLAUSE);
7722 OMP_CLAUSE_SET_CODE (t, code);
7724 #ifdef GATHER_STATISTICS
7725 tree_node_counts[(int) omp_clause_kind]++;
7726 tree_node_sizes[(int) omp_clause_kind] += size;
7727 #endif
7729 return t;
7732 /* Set various status flags when building a CALL_EXPR object T. */
7734 static void
7735 process_call_operands (tree t)
7737 bool side_effects;
7739 side_effects = TREE_SIDE_EFFECTS (t);
7740 if (!side_effects)
7742 int i, n;
7743 n = TREE_OPERAND_LENGTH (t);
7744 for (i = 1; i < n; i++)
7746 tree op = TREE_OPERAND (t, i);
7747 if (op && TREE_SIDE_EFFECTS (op))
7749 side_effects = 1;
7750 break;
7754 if (!side_effects)
7756 int i;
7758 /* Calls have side-effects, except those to const or
7759 pure functions. */
7760 i = call_expr_flags (t);
7761 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
7762 side_effects = 1;
7764 TREE_SIDE_EFFECTS (t) = side_effects;
7767 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
7768 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
7769 Except for the CODE and operand count field, other storage for the
7770 object is initialized to zeros. */
7772 tree
7773 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
7775 tree t;
7776 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
7778 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
7779 gcc_assert (len >= 1);
7781 #ifdef GATHER_STATISTICS
7782 tree_node_counts[(int) e_kind]++;
7783 tree_node_sizes[(int) e_kind] += length;
7784 #endif
7786 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
7788 memset (t, 0, length);
7790 TREE_SET_CODE (t, code);
7792 /* Can't use TREE_OPERAND to store the length because if checking is
7793 enabled, it will try to check the length before we store it. :-P */
7794 t->exp.operands[0] = build_int_cst (sizetype, len);
7796 return t;
7800 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE
7801 and FN and a null static chain slot. ARGLIST is a TREE_LIST of the
7802 arguments. */
7804 tree
7805 build_call_list (tree return_type, tree fn, tree arglist)
7807 tree t;
7808 int i;
7810 t = build_vl_exp (CALL_EXPR, list_length (arglist) + 3);
7811 TREE_TYPE (t) = return_type;
7812 CALL_EXPR_FN (t) = fn;
7813 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
7814 for (i = 0; arglist; arglist = TREE_CHAIN (arglist), i++)
7815 CALL_EXPR_ARG (t, i) = TREE_VALUE (arglist);
7816 process_call_operands (t);
7817 return t;
7820 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
7821 FN and a null static chain slot. NARGS is the number of call arguments
7822 which are specified as "..." arguments. */
7824 tree
7825 build_call_nary (tree return_type, tree fn, int nargs, ...)
7827 tree ret;
7828 va_list args;
7829 va_start (args, nargs);
7830 ret = build_call_valist (return_type, fn, nargs, args);
7831 va_end (args);
7832 return ret;
7835 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
7836 FN and a null static chain slot. NARGS is the number of call arguments
7837 which are specified as a va_list ARGS. */
7839 tree
7840 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
7842 tree t;
7843 int i;
7845 t = build_vl_exp (CALL_EXPR, nargs + 3);
7846 TREE_TYPE (t) = return_type;
7847 CALL_EXPR_FN (t) = fn;
7848 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
7849 for (i = 0; i < nargs; i++)
7850 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
7851 process_call_operands (t);
7852 return t;
7855 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
7856 FN and a null static chain slot. NARGS is the number of call arguments
7857 which are specified as a tree array ARGS. */
7859 tree
7860 build_call_array (tree return_type, tree fn, int nargs, tree *args)
7862 tree t;
7863 int i;
7865 t = build_vl_exp (CALL_EXPR, nargs + 3);
7866 TREE_TYPE (t) = return_type;
7867 CALL_EXPR_FN (t) = fn;
7868 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
7869 for (i = 0; i < nargs; i++)
7870 CALL_EXPR_ARG (t, i) = args[i];
7871 process_call_operands (t);
7872 return t;
7876 /* Returns true if it is possible to prove that the index of
7877 an array access REF (an ARRAY_REF expression) falls into the
7878 array bounds. */
7880 bool
7881 in_array_bounds_p (tree ref)
7883 tree idx = TREE_OPERAND (ref, 1);
7884 tree min, max;
7886 if (TREE_CODE (idx) != INTEGER_CST)
7887 return false;
7889 min = array_ref_low_bound (ref);
7890 max = array_ref_up_bound (ref);
7891 if (!min
7892 || !max
7893 || TREE_CODE (min) != INTEGER_CST
7894 || TREE_CODE (max) != INTEGER_CST)
7895 return false;
7897 if (tree_int_cst_lt (idx, min)
7898 || tree_int_cst_lt (max, idx))
7899 return false;
7901 return true;
7904 /* Returns true if it is possible to prove that the range of
7905 an array access REF (an ARRAY_RANGE_REF expression) falls
7906 into the array bounds. */
7908 bool
7909 range_in_array_bounds_p (tree ref)
7911 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
7912 tree range_min, range_max, min, max;
7914 range_min = TYPE_MIN_VALUE (domain_type);
7915 range_max = TYPE_MAX_VALUE (domain_type);
7916 if (!range_min
7917 || !range_max
7918 || TREE_CODE (range_min) != INTEGER_CST
7919 || TREE_CODE (range_max) != INTEGER_CST)
7920 return false;
7922 min = array_ref_low_bound (ref);
7923 max = array_ref_up_bound (ref);
7924 if (!min
7925 || !max
7926 || TREE_CODE (min) != INTEGER_CST
7927 || TREE_CODE (max) != INTEGER_CST)
7928 return false;
7930 if (tree_int_cst_lt (range_min, min)
7931 || tree_int_cst_lt (max, range_max))
7932 return false;
7934 return true;
7937 /* Return true if T (assumed to be a DECL) must be assigned a memory
7938 location. */
7940 bool
7941 needs_to_live_in_memory (const_tree t)
7943 if (TREE_CODE (t) == SSA_NAME)
7944 t = SSA_NAME_VAR (t);
7946 return (TREE_ADDRESSABLE (t)
7947 || is_global_var (t)
7948 || (TREE_CODE (t) == RESULT_DECL
7949 && aggregate_value_p (t, current_function_decl)));
7952 /* There are situations in which a language considers record types
7953 compatible which have different field lists. Decide if two fields
7954 are compatible. It is assumed that the parent records are compatible. */
7956 bool
7957 fields_compatible_p (const_tree f1, const_tree f2)
7959 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1),
7960 DECL_FIELD_BIT_OFFSET (f2), OEP_ONLY_CONST))
7961 return false;
7963 if (!operand_equal_p (DECL_FIELD_OFFSET (f1),
7964 DECL_FIELD_OFFSET (f2), OEP_ONLY_CONST))
7965 return false;
7967 if (!types_compatible_p (TREE_TYPE (f1), TREE_TYPE (f2)))
7968 return false;
7970 return true;
7973 /* Locate within RECORD a field that is compatible with ORIG_FIELD. */
7975 tree
7976 find_compatible_field (tree record, tree orig_field)
7978 tree f;
7980 for (f = TYPE_FIELDS (record); f ; f = TREE_CHAIN (f))
7981 if (TREE_CODE (f) == FIELD_DECL
7982 && fields_compatible_p (f, orig_field))
7983 return f;
7985 /* ??? Why isn't this on the main fields list? */
7986 f = TYPE_VFIELD (record);
7987 if (f && TREE_CODE (f) == FIELD_DECL
7988 && fields_compatible_p (f, orig_field))
7989 return f;
7991 /* ??? We should abort here, but Java appears to do Bad Things
7992 with inherited fields. */
7993 return orig_field;
7996 /* Return value of a constant X and sign-extend it. */
7998 HOST_WIDE_INT
7999 int_cst_value (const_tree x)
8001 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
8002 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
8004 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
8005 gcc_assert (TREE_INT_CST_HIGH (x) == 0
8006 || TREE_INT_CST_HIGH (x) == -1);
8008 if (bits < HOST_BITS_PER_WIDE_INT)
8010 bool negative = ((val >> (bits - 1)) & 1) != 0;
8011 if (negative)
8012 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
8013 else
8014 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
8017 return val;
8020 /* If TYPE is an integral type, return an equivalent type which is
8021 unsigned iff UNSIGNEDP is true. If TYPE is not an integral type,
8022 return TYPE itself. */
8024 tree
8025 signed_or_unsigned_type_for (int unsignedp, tree type)
8027 tree t = type;
8028 if (POINTER_TYPE_P (type))
8029 t = size_type_node;
8031 if (!INTEGRAL_TYPE_P (t) || TYPE_UNSIGNED (t) == unsignedp)
8032 return t;
8034 return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
8037 /* Returns unsigned variant of TYPE. */
8039 tree
8040 unsigned_type_for (tree type)
8042 return signed_or_unsigned_type_for (1, type);
8045 /* Returns signed variant of TYPE. */
8047 tree
8048 signed_type_for (tree type)
8050 return signed_or_unsigned_type_for (0, type);
8053 /* Returns the largest value obtainable by casting something in INNER type to
8054 OUTER type. */
8056 tree
8057 upper_bound_in_type (tree outer, tree inner)
8059 unsigned HOST_WIDE_INT lo, hi;
8060 unsigned int det = 0;
8061 unsigned oprec = TYPE_PRECISION (outer);
8062 unsigned iprec = TYPE_PRECISION (inner);
8063 unsigned prec;
8065 /* Compute a unique number for every combination. */
8066 det |= (oprec > iprec) ? 4 : 0;
8067 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
8068 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
8070 /* Determine the exponent to use. */
8071 switch (det)
8073 case 0:
8074 case 1:
8075 /* oprec <= iprec, outer: signed, inner: don't care. */
8076 prec = oprec - 1;
8077 break;
8078 case 2:
8079 case 3:
8080 /* oprec <= iprec, outer: unsigned, inner: don't care. */
8081 prec = oprec;
8082 break;
8083 case 4:
8084 /* oprec > iprec, outer: signed, inner: signed. */
8085 prec = iprec - 1;
8086 break;
8087 case 5:
8088 /* oprec > iprec, outer: signed, inner: unsigned. */
8089 prec = iprec;
8090 break;
8091 case 6:
8092 /* oprec > iprec, outer: unsigned, inner: signed. */
8093 prec = oprec;
8094 break;
8095 case 7:
8096 /* oprec > iprec, outer: unsigned, inner: unsigned. */
8097 prec = iprec;
8098 break;
8099 default:
8100 gcc_unreachable ();
8103 /* Compute 2^^prec - 1. */
8104 if (prec <= HOST_BITS_PER_WIDE_INT)
8106 hi = 0;
8107 lo = ((~(unsigned HOST_WIDE_INT) 0)
8108 >> (HOST_BITS_PER_WIDE_INT - prec));
8110 else
8112 hi = ((~(unsigned HOST_WIDE_INT) 0)
8113 >> (2 * HOST_BITS_PER_WIDE_INT - prec));
8114 lo = ~(unsigned HOST_WIDE_INT) 0;
8117 return build_int_cst_wide (outer, lo, hi);
8120 /* Returns the smallest value obtainable by casting something in INNER type to
8121 OUTER type. */
8123 tree
8124 lower_bound_in_type (tree outer, tree inner)
8126 unsigned HOST_WIDE_INT lo, hi;
8127 unsigned oprec = TYPE_PRECISION (outer);
8128 unsigned iprec = TYPE_PRECISION (inner);
8130 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
8131 and obtain 0. */
8132 if (TYPE_UNSIGNED (outer)
8133 /* If we are widening something of an unsigned type, OUTER type
8134 contains all values of INNER type. In particular, both INNER
8135 and OUTER types have zero in common. */
8136 || (oprec > iprec && TYPE_UNSIGNED (inner)))
8137 lo = hi = 0;
8138 else
8140 /* If we are widening a signed type to another signed type, we
8141 want to obtain -2^^(iprec-1). If we are keeping the
8142 precision or narrowing to a signed type, we want to obtain
8143 -2^(oprec-1). */
8144 unsigned prec = oprec > iprec ? iprec : oprec;
8146 if (prec <= HOST_BITS_PER_WIDE_INT)
8148 hi = ~(unsigned HOST_WIDE_INT) 0;
8149 lo = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1);
8151 else
8153 hi = ((~(unsigned HOST_WIDE_INT) 0)
8154 << (prec - HOST_BITS_PER_WIDE_INT - 1));
8155 lo = 0;
8159 return build_int_cst_wide (outer, lo, hi);
8162 /* Return nonzero if two operands that are suitable for PHI nodes are
8163 necessarily equal. Specifically, both ARG0 and ARG1 must be either
8164 SSA_NAME or invariant. Note that this is strictly an optimization.
8165 That is, callers of this function can directly call operand_equal_p
8166 and get the same result, only slower. */
8169 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
8171 if (arg0 == arg1)
8172 return 1;
8173 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
8174 return 0;
8175 return operand_equal_p (arg0, arg1, 0);
8178 /* Returns number of zeros at the end of binary representation of X.
8180 ??? Use ffs if available? */
8182 tree
8183 num_ending_zeros (const_tree x)
8185 unsigned HOST_WIDE_INT fr, nfr;
8186 unsigned num, abits;
8187 tree type = TREE_TYPE (x);
8189 if (TREE_INT_CST_LOW (x) == 0)
8191 num = HOST_BITS_PER_WIDE_INT;
8192 fr = TREE_INT_CST_HIGH (x);
8194 else
8196 num = 0;
8197 fr = TREE_INT_CST_LOW (x);
8200 for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
8202 nfr = fr >> abits;
8203 if (nfr << abits == fr)
8205 num += abits;
8206 fr = nfr;
8210 if (num > TYPE_PRECISION (type))
8211 num = TYPE_PRECISION (type);
8213 return build_int_cst_type (type, num);
8217 #define WALK_SUBTREE(NODE) \
8218 do \
8220 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
8221 if (result) \
8222 return result; \
8224 while (0)
8226 /* This is a subroutine of walk_tree that walks field of TYPE that are to
8227 be walked whenever a type is seen in the tree. Rest of operands and return
8228 value are as for walk_tree. */
8230 static tree
8231 walk_type_fields (tree type, walk_tree_fn func, void *data,
8232 struct pointer_set_t *pset, walk_tree_lh lh)
8234 tree result = NULL_TREE;
8236 switch (TREE_CODE (type))
8238 case POINTER_TYPE:
8239 case REFERENCE_TYPE:
8240 /* We have to worry about mutually recursive pointers. These can't
8241 be written in C. They can in Ada. It's pathological, but
8242 there's an ACATS test (c38102a) that checks it. Deal with this
8243 by checking if we're pointing to another pointer, that one
8244 points to another pointer, that one does too, and we have no htab.
8245 If so, get a hash table. We check three levels deep to avoid
8246 the cost of the hash table if we don't need one. */
8247 if (POINTER_TYPE_P (TREE_TYPE (type))
8248 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
8249 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
8250 && !pset)
8252 result = walk_tree_without_duplicates (&TREE_TYPE (type),
8253 func, data);
8254 if (result)
8255 return result;
8257 break;
8260 /* ... fall through ... */
8262 case COMPLEX_TYPE:
8263 WALK_SUBTREE (TREE_TYPE (type));
8264 break;
8266 case METHOD_TYPE:
8267 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
8269 /* Fall through. */
8271 case FUNCTION_TYPE:
8272 WALK_SUBTREE (TREE_TYPE (type));
8274 tree arg;
8276 /* We never want to walk into default arguments. */
8277 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
8278 WALK_SUBTREE (TREE_VALUE (arg));
8280 break;
8282 case ARRAY_TYPE:
8283 /* Don't follow this nodes's type if a pointer for fear that
8284 we'll have infinite recursion. If we have a PSET, then we
8285 need not fear. */
8286 if (pset
8287 || (!POINTER_TYPE_P (TREE_TYPE (type))
8288 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
8289 WALK_SUBTREE (TREE_TYPE (type));
8290 WALK_SUBTREE (TYPE_DOMAIN (type));
8291 break;
8293 case OFFSET_TYPE:
8294 WALK_SUBTREE (TREE_TYPE (type));
8295 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
8296 break;
8298 default:
8299 break;
8302 return NULL_TREE;
8305 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
8306 called with the DATA and the address of each sub-tree. If FUNC returns a
8307 non-NULL value, the traversal is stopped, and the value returned by FUNC
8308 is returned. If PSET is non-NULL it is used to record the nodes visited,
8309 and to avoid visiting a node more than once. */
8311 tree
8312 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
8313 struct pointer_set_t *pset, walk_tree_lh lh)
8315 enum tree_code code;
8316 int walk_subtrees;
8317 tree result;
8319 #define WALK_SUBTREE_TAIL(NODE) \
8320 do \
8322 tp = & (NODE); \
8323 goto tail_recurse; \
8325 while (0)
8327 tail_recurse:
8328 /* Skip empty subtrees. */
8329 if (!*tp)
8330 return NULL_TREE;
8332 /* Don't walk the same tree twice, if the user has requested
8333 that we avoid doing so. */
8334 if (pset && pointer_set_insert (pset, *tp))
8335 return NULL_TREE;
8337 /* Call the function. */
8338 walk_subtrees = 1;
8339 result = (*func) (tp, &walk_subtrees, data);
8341 /* If we found something, return it. */
8342 if (result)
8343 return result;
8345 code = TREE_CODE (*tp);
8347 /* Even if we didn't, FUNC may have decided that there was nothing
8348 interesting below this point in the tree. */
8349 if (!walk_subtrees)
8351 /* But we still need to check our siblings. */
8352 if (code == TREE_LIST)
8353 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
8354 else if (code == OMP_CLAUSE)
8355 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
8356 else
8357 return NULL_TREE;
8360 if (lh)
8362 result = (*lh) (tp, &walk_subtrees, func, data, pset);
8363 if (result || !walk_subtrees)
8364 return result;
8367 switch (code)
8369 case ERROR_MARK:
8370 case IDENTIFIER_NODE:
8371 case INTEGER_CST:
8372 case REAL_CST:
8373 case FIXED_CST:
8374 case VECTOR_CST:
8375 case STRING_CST:
8376 case BLOCK:
8377 case PLACEHOLDER_EXPR:
8378 case SSA_NAME:
8379 case FIELD_DECL:
8380 case RESULT_DECL:
8381 /* None of these have subtrees other than those already walked
8382 above. */
8383 break;
8385 case TREE_LIST:
8386 WALK_SUBTREE (TREE_VALUE (*tp));
8387 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
8388 break;
8390 case TREE_VEC:
8392 int len = TREE_VEC_LENGTH (*tp);
8394 if (len == 0)
8395 break;
8397 /* Walk all elements but the first. */
8398 while (--len)
8399 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
8401 /* Now walk the first one as a tail call. */
8402 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
8405 case COMPLEX_CST:
8406 WALK_SUBTREE (TREE_REALPART (*tp));
8407 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
8409 case CONSTRUCTOR:
8411 unsigned HOST_WIDE_INT idx;
8412 constructor_elt *ce;
8414 for (idx = 0;
8415 VEC_iterate(constructor_elt, CONSTRUCTOR_ELTS (*tp), idx, ce);
8416 idx++)
8417 WALK_SUBTREE (ce->value);
8419 break;
8421 case SAVE_EXPR:
8422 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
8424 case BIND_EXPR:
8426 tree decl;
8427 for (decl = BIND_EXPR_VARS (*tp); decl; decl = TREE_CHAIN (decl))
8429 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
8430 into declarations that are just mentioned, rather than
8431 declared; they don't really belong to this part of the tree.
8432 And, we can see cycles: the initializer for a declaration
8433 can refer to the declaration itself. */
8434 WALK_SUBTREE (DECL_INITIAL (decl));
8435 WALK_SUBTREE (DECL_SIZE (decl));
8436 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
8438 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
8441 case STATEMENT_LIST:
8443 tree_stmt_iterator i;
8444 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
8445 WALK_SUBTREE (*tsi_stmt_ptr (i));
8447 break;
8449 case OMP_CLAUSE:
8450 switch (OMP_CLAUSE_CODE (*tp))
8452 case OMP_CLAUSE_PRIVATE:
8453 case OMP_CLAUSE_SHARED:
8454 case OMP_CLAUSE_FIRSTPRIVATE:
8455 case OMP_CLAUSE_LASTPRIVATE:
8456 case OMP_CLAUSE_COPYIN:
8457 case OMP_CLAUSE_COPYPRIVATE:
8458 case OMP_CLAUSE_IF:
8459 case OMP_CLAUSE_NUM_THREADS:
8460 case OMP_CLAUSE_SCHEDULE:
8461 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
8462 /* FALLTHRU */
8464 case OMP_CLAUSE_NOWAIT:
8465 case OMP_CLAUSE_ORDERED:
8466 case OMP_CLAUSE_DEFAULT:
8467 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
8469 case OMP_CLAUSE_REDUCTION:
8471 int i;
8472 for (i = 0; i < 4; i++)
8473 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
8474 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
8477 default:
8478 gcc_unreachable ();
8480 break;
8482 case TARGET_EXPR:
8484 int i, len;
8486 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
8487 But, we only want to walk once. */
8488 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
8489 for (i = 0; i < len; ++i)
8490 WALK_SUBTREE (TREE_OPERAND (*tp, i));
8491 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
8494 case DECL_EXPR:
8495 /* If this is a TYPE_DECL, walk into the fields of the type that it's
8496 defining. We only want to walk into these fields of a type in this
8497 case and not in the general case of a mere reference to the type.
8499 The criterion is as follows: if the field can be an expression, it
8500 must be walked only here. This should be in keeping with the fields
8501 that are directly gimplified in gimplify_type_sizes in order for the
8502 mark/copy-if-shared/unmark machinery of the gimplifier to work with
8503 variable-sized types.
8505 Note that DECLs get walked as part of processing the BIND_EXPR. */
8506 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
8508 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
8509 if (TREE_CODE (*type_p) == ERROR_MARK)
8510 return NULL_TREE;
8512 /* Call the function for the type. See if it returns anything or
8513 doesn't want us to continue. If we are to continue, walk both
8514 the normal fields and those for the declaration case. */
8515 result = (*func) (type_p, &walk_subtrees, data);
8516 if (result || !walk_subtrees)
8517 return result;
8519 result = walk_type_fields (*type_p, func, data, pset, lh);
8520 if (result)
8521 return result;
8523 /* If this is a record type, also walk the fields. */
8524 if (TREE_CODE (*type_p) == RECORD_TYPE
8525 || TREE_CODE (*type_p) == UNION_TYPE
8526 || TREE_CODE (*type_p) == QUAL_UNION_TYPE)
8528 tree field;
8530 for (field = TYPE_FIELDS (*type_p); field;
8531 field = TREE_CHAIN (field))
8533 /* We'd like to look at the type of the field, but we can
8534 easily get infinite recursion. So assume it's pointed
8535 to elsewhere in the tree. Also, ignore things that
8536 aren't fields. */
8537 if (TREE_CODE (field) != FIELD_DECL)
8538 continue;
8540 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
8541 WALK_SUBTREE (DECL_SIZE (field));
8542 WALK_SUBTREE (DECL_SIZE_UNIT (field));
8543 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
8544 WALK_SUBTREE (DECL_QUALIFIER (field));
8548 /* Same for scalar types. */
8549 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
8550 || TREE_CODE (*type_p) == ENUMERAL_TYPE
8551 || TREE_CODE (*type_p) == INTEGER_TYPE
8552 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
8553 || TREE_CODE (*type_p) == REAL_TYPE)
8555 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
8556 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
8559 WALK_SUBTREE (TYPE_SIZE (*type_p));
8560 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
8562 /* FALLTHRU */
8564 default:
8565 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code))
8566 || IS_GIMPLE_STMT_CODE_CLASS (TREE_CODE_CLASS (code)))
8568 int i, len;
8570 /* Walk over all the sub-trees of this operand. */
8571 len = TREE_OPERAND_LENGTH (*tp);
8573 /* Go through the subtrees. We need to do this in forward order so
8574 that the scope of a FOR_EXPR is handled properly. */
8575 if (len)
8577 for (i = 0; i < len - 1; ++i)
8578 WALK_SUBTREE (GENERIC_TREE_OPERAND (*tp, i));
8579 WALK_SUBTREE_TAIL (GENERIC_TREE_OPERAND (*tp, len - 1));
8582 /* If this is a type, walk the needed fields in the type. */
8583 else if (TYPE_P (*tp))
8584 return walk_type_fields (*tp, func, data, pset, lh);
8585 break;
8588 /* We didn't find what we were looking for. */
8589 return NULL_TREE;
8591 #undef WALK_SUBTREE_TAIL
8593 #undef WALK_SUBTREE
8595 /* Like walk_tree, but does not walk duplicate nodes more than once. */
8597 tree
8598 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
8599 walk_tree_lh lh)
8601 tree result;
8602 struct pointer_set_t *pset;
8604 pset = pointer_set_create ();
8605 result = walk_tree_1 (tp, func, data, pset, lh);
8606 pointer_set_destroy (pset);
8607 return result;
8611 /* Return true if STMT is an empty statement or contains nothing but
8612 empty statements. */
8614 bool
8615 empty_body_p (tree stmt)
8617 tree_stmt_iterator i;
8618 tree body;
8620 if (IS_EMPTY_STMT (stmt))
8621 return true;
8622 else if (TREE_CODE (stmt) == BIND_EXPR)
8623 body = BIND_EXPR_BODY (stmt);
8624 else if (TREE_CODE (stmt) == STATEMENT_LIST)
8625 body = stmt;
8626 else
8627 return false;
8629 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
8630 if (!empty_body_p (tsi_stmt (i)))
8631 return false;
8633 return true;
8636 tree *
8637 tree_block (tree t)
8639 char const c = TREE_CODE_CLASS (TREE_CODE (t));
8641 if (IS_EXPR_CODE_CLASS (c))
8642 return &t->exp.block;
8643 else if (IS_GIMPLE_STMT_CODE_CLASS (c))
8644 return &GIMPLE_STMT_BLOCK (t);
8645 gcc_unreachable ();
8646 return NULL;
8649 tree *
8650 generic_tree_operand (tree node, int i)
8652 if (GIMPLE_STMT_P (node))
8653 return &GIMPLE_STMT_OPERAND (node, i);
8654 return &TREE_OPERAND (node, i);
8657 tree *
8658 generic_tree_type (tree node)
8660 if (GIMPLE_STMT_P (node))
8661 return &void_type_node;
8662 return &TREE_TYPE (node);
8665 /* Build and return a TREE_LIST of arguments in the CALL_EXPR exp.
8666 FIXME: don't use this function. It exists for compatibility with
8667 the old representation of CALL_EXPRs where a list was used to hold the
8668 arguments. Places that currently extract the arglist from a CALL_EXPR
8669 ought to be rewritten to use the CALL_EXPR itself. */
8670 tree
8671 call_expr_arglist (tree exp)
8673 tree arglist = NULL_TREE;
8674 int i;
8675 for (i = call_expr_nargs (exp) - 1; i >= 0; i--)
8676 arglist = tree_cons (NULL_TREE, CALL_EXPR_ARG (exp, i), arglist);
8677 return arglist;
8680 /* Return true if TYPE has a variable argument list. */
8682 bool
8683 stdarg_p (tree fntype)
8685 function_args_iterator args_iter;
8686 tree n = NULL_TREE, t;
8688 if (!fntype)
8689 return false;
8691 FOREACH_FUNCTION_ARGS(fntype, t, args_iter)
8693 n = t;
8696 return n != NULL_TREE && n != void_type_node;
8699 /* Return true if TYPE has a prototype. */
8701 bool
8702 prototype_p (tree fntype)
8704 tree t;
8706 gcc_assert (fntype != NULL_TREE);
8708 t = TYPE_ARG_TYPES (fntype);
8709 return (t != NULL_TREE);
8712 /* Return the number of arguments that a function has. */
8715 function_args_count (tree fntype)
8717 function_args_iterator args_iter;
8718 tree t;
8719 int num = 0;
8721 if (fntype)
8723 FOREACH_FUNCTION_ARGS(fntype, t, args_iter)
8725 num++;
8729 return num;
8732 /* If BLOCK is inlined from an __attribute__((__artificial__))
8733 routine, return pointer to location from where it has been
8734 called. */
8735 location_t *
8736 block_nonartificial_location (tree block)
8738 location_t *ret = NULL;
8740 while (block && TREE_CODE (block) == BLOCK
8741 && BLOCK_ABSTRACT_ORIGIN (block))
8743 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
8745 while (TREE_CODE (ao) == BLOCK && BLOCK_ABSTRACT_ORIGIN (ao))
8746 ao = BLOCK_ABSTRACT_ORIGIN (ao);
8748 if (TREE_CODE (ao) == FUNCTION_DECL)
8750 /* If AO is an artificial inline, point RET to the
8751 call site locus at which it has been inlined and continue
8752 the loop, in case AO's caller is also an artificial
8753 inline. */
8754 if (DECL_DECLARED_INLINE_P (ao)
8755 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
8756 ret = &BLOCK_SOURCE_LOCATION (block);
8757 else
8758 break;
8760 else if (TREE_CODE (ao) != BLOCK)
8761 break;
8763 block = BLOCK_SUPERCONTEXT (block);
8765 return ret;
8768 #include "gt-tree.h"